diff --git a/examples/cities/css/example.css b/examples/cities/css/example.css
index 170df4fa..7d7c509f 100644
--- a/examples/cities/css/example.css
+++ b/examples/cities/css/example.css
@@ -22,11 +22,11 @@
}
.OxTextList .OxItem .OxCell > div.region {
- width: 12px;
- height: 12px;
- border-width: 1px;
+ width: 14px;
+ height: 14px;
border-radius: 2px;
margin-left: -3px;
+ box-shadow: 0 0 2px rgb(128, 128, 128) inset;
}
.OxTextList .OxItem .OxCell > img.flag {
width: 14px;
diff --git a/examples/cities/js/example.js b/examples/cities/js/example.js
index 6d7582cf..1e53e254 100644
--- a/examples/cities/js/example.js
+++ b/examples/cities/js/example.js
@@ -172,20 +172,19 @@ Ox.load({UI: {showScreen: true}, Geo: {}}, function() {
{
/*
We use the format function to display the region as
- a colored icon with a tooltip. The OxTypeIcon class
- makes the icon themed (its border color will depend
- on the current theme), the region class is added to
- apply our own custom CSS, and Ox.getGeoColor returns
- a color for the region. Note that the actual value
- is 'Continent, Region, Country', which results in a
- nicer sort order than just 'Region'.
+ a colored icon with a tooltip. The region class is
+ added to apply our own custom CSS, and
+ Ox.getGeoColor returns a color for the region. Note
+ that the actual value is 'Continent, Region,
+ Country', which results in a nicer sort order than
+ just 'Region'.
*/
format: function(value) {
var region = value.split(', ')[1];
return Ox.Element({
tooltip: region
})
- .addClass('OxTypeIcon region')
+ .addClass('region')
.css({
background: 'rgb('
+ Ox.getGeoColor(region).join(', ')
@@ -237,7 +236,10 @@ Ox.load({UI: {showScreen: true}, Geo: {}}, function() {
{
format: function(value) {
return value
- ? $('')
+ ? Ox.Element({
+ element: '',
+ tooltip: 'Capital'
+ })
.addClass('capital')
.attr({
src: Ox.UI.getImageURL('symbolStar')
diff --git a/examples/cities/json/cities.json b/examples/cities/json/cities.json
index d2cac25a..10b771c4 100644
--- a/examples/cities/json/cities.json
+++ b/examples/cities/json/cities.json
@@ -3,7 +3,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1796236,
"latitude": 31.22222,
"longitude": 121.45806,
"name": "Shanghai",
@@ -13,7 +12,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3435910,
"latitude": -34.61315,
"longitude": -58.37723,
"name": "Buenos Aires",
@@ -23,7 +21,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1275339,
"latitude": 19.07283,
"longitude": 72.88261,
"name": "Mumbai",
@@ -33,7 +30,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3530597,
"latitude": 19.42847,
"longitude": -99.12766,
"name": "Mexico City",
@@ -43,7 +39,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1174872,
"latitude": 24.9056,
"longitude": 67.0822,
"name": "Karachi",
@@ -53,7 +48,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 745044,
"latitude": 41.01384,
"longitude": 28.94966,
"name": "\u0130stanbul",
@@ -63,7 +57,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273294,
"latitude": 28.66667,
"longitude": 77.21667,
"name": "Delhi",
@@ -73,7 +66,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1701668,
"latitude": 14.6042,
"longitude": 120.9822,
"name": "Manila",
@@ -83,7 +75,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 524901,
"latitude": 55.75222,
"longitude": 37.61556,
"name": "Moscow",
@@ -93,7 +84,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1185241,
"latitude": 23.7104,
"longitude": 90.40744,
"name": "Dhaka",
@@ -103,7 +93,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1835848,
"latitude": 37.56826,
"longitude": 126.97783,
"name": "Seoul",
@@ -113,7 +102,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3448439,
"latitude": -23.5475,
"longitude": -46.63611,
"name": "S\u00e3o Paulo",
@@ -123,7 +111,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2332459,
"latitude": 6.45306,
"longitude": 3.39583,
"name": "Lagos",
@@ -133,7 +120,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1642911,
"latitude": -6.21462,
"longitude": 106.84513,
"name": "Jakarta",
@@ -143,7 +129,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1850147,
"latitude": 35.6895,
"longitude": 139.69171,
"name": "Tokyo",
@@ -153,7 +138,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783873,
"latitude": 32.97944,
"longitude": 114.02944,
"name": "Zhumadian",
@@ -163,7 +147,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 5128581,
"latitude": 40.71427,
"longitude": -74.00597,
"name": "New York City",
@@ -173,7 +156,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1668341,
"latitude": 25.04776,
"longitude": 121.53185,
"name": "Taipei",
@@ -183,9 +165,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2314302,
- "latitude": -4.32459,
- "longitude": 15.32146,
+ "latitude": -4.32142,
+ "longitude": 15.30807,
"name": "Kinshasa",
"population": 7785965
},
@@ -193,7 +174,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3936456,
"latitude": -12.04318,
"longitude": -77.02824,
"name": "Lima",
@@ -203,27 +183,15 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 360630,
"latitude": 30.06263,
"longitude": 31.24967,
"name": "Cairo",
"population": 7734614
},
- {
- "country_code": "GB",
- "elevation": 0,
- "feature_code": "PPLX",
- "geonameid": 2643741,
- "latitude": 51.51279,
- "longitude": -0.09184,
- "name": "City of London",
- "population": 7556900
- },
{
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2643743,
"latitude": 51.50853,
"longitude": -0.12574,
"name": "London",
@@ -233,7 +201,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1816670,
"latitude": 39.9075,
"longitude": 116.39723,
"name": "Beijing",
@@ -243,7 +210,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 112931,
"latitude": 35.69439,
"longitude": 51.42151,
"name": "Tehr\u0101n",
@@ -253,7 +219,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1800146,
"latitude": 30.79508,
"longitude": 106.08474,
"name": "Nanchong",
@@ -263,7 +228,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3688689,
"latitude": 4.60971,
"longitude": -74.08175,
"name": "Bogot\u00e1",
@@ -273,7 +237,6 @@
"country_code": "HK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1819729,
"latitude": 22.28552,
"longitude": 114.15769,
"name": "Hong Kong",
@@ -283,7 +246,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1172451,
"latitude": 31.54972,
"longitude": 74.34361,
"name": "Lahore",
@@ -293,7 +255,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3451190,
"latitude": -22.90278,
"longitude": -43.2075,
"name": "Rio de Janeiro",
@@ -303,7 +264,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 98182,
"latitude": 33.34058,
"longitude": 44.40088,
"name": "Baghdad",
@@ -313,7 +273,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793724,
"latitude": 36.18528,
"longitude": 117.12,
"name": "Tai\u2019an",
@@ -323,7 +282,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1609350,
"latitude": 13.75398,
"longitude": 100.50144,
"name": "Bangkok",
@@ -333,7 +291,6 @@
"country_code": "IN",
"elevation": 920,
"feature_code": "PPLA",
- "geonameid": 1277333,
"latitude": 12.97194,
"longitude": 77.59369,
"name": "Bangalore",
@@ -343,7 +300,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1927639,
"latitude": 29.33333,
"longitude": 113.09194,
"name": "Yueyang",
@@ -353,7 +309,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3871336,
"latitude": -33.45694,
"longitude": -70.64827,
"name": "Santiago",
@@ -363,9 +318,8 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804879,
- "latitude": 34.79111,
- "longitude": 114.34833,
+ "latitude": 34.7986,
+ "longitude": 114.30742,
"name": "Kaifeng",
"population": 4800000
},
@@ -373,7 +327,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1275004,
"latitude": 22.56972,
"longitude": 88.36972,
"name": "Calcutta",
@@ -383,7 +336,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6167865,
"latitude": 43.70011,
"longitude": -79.4163,
"name": "Toronto",
@@ -393,7 +345,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1298824,
"latitude": 16.80528,
"longitude": 96.15611,
"name": "Rangoon",
@@ -403,7 +354,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2147714,
"latitude": -33.86785,
"longitude": 151.20732,
"name": "Sydney",
@@ -413,7 +363,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1264527,
"latitude": 13.08784,
"longitude": 80.27847,
"name": "Chennai",
@@ -423,7 +372,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 108410,
"latitude": 24.68773,
"longitude": 46.72185,
"name": "Riyadh",
@@ -433,7 +381,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1791247,
"latitude": 30.58333,
"longitude": 114.26667,
"name": "Wuhan",
@@ -443,7 +390,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 498817,
"latitude": 59.89444,
"longitude": 30.26417,
"name": "Saint Petersburg",
@@ -453,7 +399,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1814906,
"latitude": 29.56278,
"longitude": 106.55278,
"name": "Chongqing",
@@ -463,7 +408,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1815286,
"latitude": 30.66667,
"longitude": 104.06667,
"name": "Chengdu",
@@ -473,7 +417,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1205733,
"latitude": 22.33306,
"longitude": 91.83639,
"name": "Chittagong",
@@ -483,7 +426,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 361058,
"latitude": 31.21564,
"longitude": 29.95527,
"name": "Alexandria",
@@ -493,7 +435,6 @@
"country_code": "US",
"elevation": 89,
"feature_code": "PPLA2",
- "geonameid": 5368361,
"latitude": 34.05223,
"longitude": -118.24368,
"name": "Los Angeles",
@@ -503,7 +444,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1792947,
"latitude": 39.14222,
"longitude": 117.17667,
"name": "Tianjin",
@@ -513,7 +453,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2158177,
"latitude": -37.814,
"longitude": 144.96332,
"name": "Melbourne",
@@ -523,7 +462,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279233,
"latitude": 23.03333,
"longitude": 72.61667,
"name": "Ahmad\u0101b\u0101d",
@@ -533,7 +471,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1838524,
"latitude": 35.10278,
"longitude": 129.04028,
"name": "Busan",
@@ -543,7 +480,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2293538,
"latitude": 5.30966,
"longitude": -4.01266,
"name": "Abidjan",
@@ -553,7 +489,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2335204,
"latitude": 12.00012,
"longitude": 8.51672,
"name": "Kano",
@@ -563,7 +498,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1269843,
"latitude": 17.37528,
"longitude": 78.47444,
"name": "Hyder\u0101b\u0101d",
@@ -573,7 +507,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798425,
"latitude": 29.46028,
"longitude": 119.88611,
"name": "Puyang",
@@ -583,7 +516,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1848354,
"latitude": 35.44778,
"longitude": 139.6425,
"name": "Yokohama-shi",
@@ -593,7 +525,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2339354,
"latitude": 7.38778,
"longitude": 3.89639,
"name": "Ibadan",
@@ -603,7 +534,6 @@
"country_code": "SG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1880252,
"latitude": 1.28967,
"longitude": 103.85007,
"name": "Singapore",
@@ -613,7 +543,6 @@
"country_code": "TR",
"elevation": 850,
"feature_code": "PPLC",
- "geonameid": 323786,
"latitude": 39.91987,
"longitude": 32.85427,
"name": "Ankara",
@@ -623,7 +552,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2034937,
"latitude": 41.79222,
"longitude": 123.43278,
"name": "Shenyang",
@@ -633,7 +561,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1566083,
"latitude": 10.75,
"longitude": 106.66667,
"name": "Th\u00e0nh ph\u1ed1 H\u1ed3 Ch\u00ed Minh",
@@ -643,7 +570,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1794903,
"latitude": 32.6475,
"longitude": 110.77806,
"name": "Shiyan",
@@ -653,7 +579,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3369157,
"latitude": -33.92584,
"longitude": 18.42322,
"name": "Cape Town",
@@ -663,7 +588,6 @@
"country_code": "DE",
"elevation": 74,
"feature_code": "PPLC",
- "geonameid": 2950159,
"latitude": 52.52437,
"longitude": 13.41053,
"name": "Berlin",
@@ -673,7 +597,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6077243,
"latitude": 45.50884,
"longitude": -73.58781,
"name": "Montr\u00e9al",
@@ -683,7 +606,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3117735,
"latitude": 40.4165,
"longitude": -3.70256,
"name": "Madrid",
@@ -693,7 +615,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2037013,
"latitude": 45.75,
"longitude": 126.65,
"name": "Harbin",
@@ -703,7 +624,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1790630,
"latitude": 34.25833,
"longitude": 108.92861,
"name": "Xi\u2019an",
@@ -713,7 +633,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1871859,
"latitude": 39.03385,
"longitude": 125.75432,
"name": "Pyongyang",
@@ -723,7 +642,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1804430,
"latitude": 36.05639,
"longitude": 103.79222,
"name": "Lanzhou",
@@ -733,7 +651,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1809858,
"latitude": 23.11667,
"longitude": 113.25,
"name": "Guangzhou",
@@ -743,9 +660,8 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2553604,
- "latitude": 33.59278,
- "longitude": -7.61916,
+ "latitude": 33.58831,
+ "longitude": -7.61138,
"name": "Casablanca",
"population": 3144909
},
@@ -753,7 +669,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1007311,
"latitude": -29.8579,
"longitude": 31.0292,
"name": "Durban",
@@ -763,7 +678,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1799962,
"latitude": 32.06167,
"longitude": 118.77778,
"name": "Nanjing",
@@ -773,7 +687,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1138958,
"latitude": 34.52813,
"longitude": 69.17233,
"name": "Kabul",
@@ -783,7 +696,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1795565,
"latitude": 22.54554,
"longitude": 114.0683,
"name": "Shenzhen",
@@ -793,7 +705,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3646738,
"latitude": 10.48801,
"longitude": -66.87919,
"name": "Caracas",
@@ -803,7 +714,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259229,
"latitude": 18.51957,
"longitude": 73.85535,
"name": "Pune",
@@ -813,7 +723,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255364,
"latitude": 21.16667,
"longitude": 72.83333,
"name": "S\u016brat",
@@ -823,7 +732,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 105343,
"latitude": 21.51694,
"longitude": 39.21917,
"name": "Jeddah",
@@ -833,7 +741,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267995,
"latitude": 26.46667,
"longitude": 80.35,
"name": "K\u0101npur",
@@ -843,17 +750,24 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2240449,
"latitude": -8.83682,
"longitude": 13.23432,
"name": "Luanda",
"population": 2776168
},
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 14.6488,
+ "longitude": 121.0509,
+ "name": "Quezon City",
+ "population": 2761720
+ },
{
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 344979,
"latitude": 9.02497,
"longitude": 38.74689,
"name": "Addis Ababa",
@@ -863,7 +777,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 184745,
"latitude": -1.28333,
"longitude": 36.81667,
"name": "Nairobi",
@@ -873,7 +786,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1793511,
"latitude": 37.86944,
"longitude": 112.56028,
"name": "Taiyuan",
@@ -883,7 +795,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3450554,
"latitude": -12.97111,
"longitude": -38.51083,
"name": "Salvador",
@@ -893,7 +804,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1269515,
"latitude": 26.91962,
"longitude": 75.78781,
"name": "Jaipur",
@@ -903,7 +813,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 160263,
"latitude": -6.82349,
"longitude": 39.26951,
"name": "Dar es Salaam",
@@ -913,7 +822,6 @@
"country_code": "US",
"elevation": 179,
"feature_code": "PPLA2",
- "geonameid": 4887398,
"latitude": 41.85003,
"longitude": -87.65005,
"name": "Chicago",
@@ -923,7 +831,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1843564,
"latitude": 37.45361,
"longitude": 126.73167,
"name": "Incheon",
@@ -933,7 +840,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1785725,
"latitude": 22.93056,
"longitude": 112.0373,
"name": "Yunfu",
@@ -943,7 +849,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6619347,
"latitude": 19.03681,
"longitude": 73.01582,
"name": "Navi Mumbai",
@@ -953,9 +858,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 99532,
- "latitude": 30.53488,
- "longitude": 47.78885,
+ "latitude": 30.53302,
+ "longitude": 47.79747,
"name": "Al Ba\u015frah",
"population": 2600000
},
@@ -963,7 +867,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1853909,
"latitude": 34.69374,
"longitude": 135.50218,
"name": "\u014csaka-shi",
@@ -973,7 +876,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 53654,
"latitude": 2.03711,
"longitude": 45.34375,
"name": "Mogadishu",
@@ -983,7 +885,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1835329,
"latitude": 35.87028,
"longitude": 128.59111,
"name": "Daegu",
@@ -993,7 +894,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3169070,
"latitude": 41.89474,
"longitude": 12.4839,
"name": "Roma",
@@ -1003,7 +903,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2038180,
"latitude": 43.88,
"longitude": 125.32278,
"name": "Changchun",
@@ -1013,7 +912,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 703448,
"latitude": 50.45466,
"longitude": 30.5238,
"name": "Kiev",
@@ -1023,7 +921,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1179400,
"latitude": 31.41667,
"longitude": 73.08333,
"name": "Faisal\u0101b\u0101d",
@@ -1033,7 +930,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 311046,
"latitude": 38.41273,
"longitude": 27.13838,
"name": "\u0130zmir",
@@ -1043,7 +939,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1915223,
"latitude": 21.32256,
"longitude": 110.58291,
"name": "Zhongshan",
@@ -1053,7 +948,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2253354,
"latitude": 14.6937,
"longitude": -17.44406,
"name": "Dakar",
@@ -1063,7 +957,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1264733,
"latitude": 26.85,
"longitude": 80.91667,
"name": "Lucknow",
@@ -1073,7 +966,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 360995,
"latitude": 30.00808,
"longitude": 31.21093,
"name": "Al J\u012bzah",
@@ -1083,7 +975,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3399415,
"latitude": -3.71722,
"longitude": -38.54306,
"name": "Fortaleza",
@@ -1093,7 +984,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3687925,
"latitude": 3.43722,
"longitude": -76.5225,
"name": "Cali",
@@ -1103,7 +993,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1625822,
"latitude": -7.24917,
"longitude": 112.75083,
"name": "Surabaya",
@@ -1113,7 +1002,6 @@
"country_code": "BR",
"elevation": 888,
"feature_code": "PPLA",
- "geonameid": 3470127,
"latitude": -19.92083,
"longitude": -43.93778,
"name": "Belo Horizonte",
@@ -1123,7 +1011,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2251339,
"latitude": 14.70889,
"longitude": -17.45528,
"name": "Grand Dakar",
@@ -1133,7 +1020,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 124665,
"latitude": 36.297,
"longitude": 59.6062,
"name": "Mashhad",
@@ -1143,7 +1029,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPLX",
- "geonameid": 5110302,
"latitude": 40.6501,
"longitude": -73.94958,
"name": "Brooklyn",
@@ -1153,7 +1038,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1262180,
"latitude": 21.15,
"longitude": 79.1,
"name": "N\u0101gpur",
@@ -1163,7 +1047,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3633009,
"latitude": 10.63167,
"longitude": -71.64056,
"name": "Maracaibo",
@@ -1173,7 +1056,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259004,
"latitude": 18.25,
"longitude": 73.43333,
"name": "Raigarh Fort",
@@ -1183,7 +1065,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3469058,
"latitude": -15.77972,
"longitude": -47.92972,
"name": "Bras\u00edlia",
@@ -1193,7 +1074,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3492908,
"latitude": 18.50012,
"longitude": -69.98857,
"name": "Santo Domingo",
@@ -1203,7 +1083,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1856057,
"latitude": 35.18147,
"longitude": 136.90641,
"name": "Nagoya-shi",
@@ -1213,7 +1092,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3553478,
"latitude": 23.13302,
"longitude": -82.38304,
"name": "Havana",
@@ -1223,7 +1101,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2988507,
"latitude": 48.85341,
"longitude": 2.3488,
"name": "Paris",
@@ -1233,7 +1110,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPLA2",
- "geonameid": 4699066,
"latitude": 29.76328,
"longitude": -95.36327,
"name": "Houston",
@@ -1243,7 +1119,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1815577,
"latitude": 28.2,
"longitude": 112.96667,
"name": "Changsha",
@@ -1253,7 +1128,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1805753,
"latitude": 36.66833,
"longitude": 116.99722,
"name": "Jinan",
@@ -1263,9 +1137,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 99071,
- "latitude": 36.33464,
- "longitude": 43.09777,
+ "latitude": 36.33091,
+ "longitude": 43.09065,
"name": "Al Maw\u015fil al Jad\u012bdah",
"population": 2065597
},
@@ -1273,7 +1146,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1814087,
"latitude": 38.91222,
"longitude": 121.60222,
"name": "Dalian",
@@ -1283,7 +1155,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 993800,
"latitude": -26.20227,
"longitude": 28.04363,
"name": "Johannesburg",
@@ -1293,7 +1164,6 @@
"country_code": "HK",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1819609,
"latitude": 22.31667,
"longitude": 114.18333,
"name": "Kowloon",
@@ -1303,9 +1173,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 388349,
- "latitude": 30.49721,
- "longitude": 47.81491,
+ "latitude": 30.49528,
+ "longitude": 47.8169,
"name": "Al Ba\u015frat al Qad\u012bmah",
"population": 2015483
},
@@ -1313,7 +1182,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1784658,
"latitude": 34.75778,
"longitude": 113.64861,
"name": "Zhengzhou",
@@ -1323,9 +1191,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1526384,
- "latitude": 43.25,
- "longitude": 76.95,
+ "latitude": 43.25654,
+ "longitude": 76.92848,
"name": "Almaty",
"population": 2000900
},
@@ -1333,7 +1200,6 @@
"country_code": "CO",
"elevation": 1405,
"feature_code": "PPLA",
- "geonameid": 3674962,
"latitude": 6.25184,
"longitude": -75.56359,
"name": "Medell\u00edn",
@@ -1343,7 +1209,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1795270,
"latitude": 38.04139,
"longitude": 114.47861,
"name": "Shijiazhuang",
@@ -1353,7 +1218,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1512569,
"latitude": 41.26465,
"longitude": 69.21627,
"name": "Tashkent",
@@ -1363,7 +1227,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2507480,
"latitude": 36.7525,
"longitude": 3.04197,
"name": "Algiers",
@@ -1373,7 +1236,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 379252,
"latitude": 15.55177,
"longitude": 32.53241,
"name": "Khartoum",
@@ -1383,7 +1245,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2306104,
"latitude": 5.55602,
"longitude": -0.1969,
"name": "Accra",
@@ -1393,7 +1254,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3657509,
"latitude": -2.16667,
"longitude": -79.9,
"name": "Guayaquil",
@@ -1403,7 +1263,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 71137,
"latitude": 15.35472,
"longitude": 44.20667,
"name": "Sanaa",
@@ -1413,7 +1272,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 276781,
"latitude": 33.88894,
"longitude": 35.49442,
"name": "Beirut",
@@ -1423,7 +1281,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2128295,
"latitude": 43.06417,
"longitude": 141.34694,
"name": "Sapporo-shi",
@@ -1433,7 +1290,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036502,
"latitude": 43.85083,
"longitude": 126.56028,
"name": "Jilin",
@@ -1443,7 +1299,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1808926,
"latitude": 30.29365,
"longitude": 120.16142,
"name": "Hangzhou",
@@ -1453,7 +1308,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 683506,
"latitude": 44.43225,
"longitude": 26.10626,
"name": "Bucharest",
@@ -1463,7 +1317,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1800163,
"latitude": 28.68333,
"longitude": 115.88333,
"name": "Nanchang",
@@ -1473,7 +1326,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2422488,
"latitude": 9.535,
"longitude": -13.68778,
"name": "Camayenne",
@@ -1483,7 +1335,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6173331,
"latitude": 49.24966,
"longitude": -123.11934,
"name": "Vancouver",
@@ -1493,7 +1344,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269743,
"latitude": 22.71792,
"longitude": 75.8333,
"name": "Indore",
@@ -1503,7 +1353,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526683,
"latitude": 19.35111,
"longitude": -99.05194,
"name": "Iztapalapa",
@@ -1513,7 +1362,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3529612,
"latitude": 19.60111,
"longitude": -99.0525,
"name": "Ecatepec",
@@ -1523,7 +1371,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2422465,
"latitude": 9.53795,
"longitude": -13.67729,
"name": "Conakry",
@@ -1533,7 +1380,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3632998,
"latitude": 10.24694,
"longitude": -67.59583,
"name": "Maracay",
@@ -1543,7 +1389,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1214520,
"latitude": 3.58333,
"longitude": 98.66667,
"name": "Medan",
@@ -1553,7 +1398,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1166993,
"latitude": 33.6007,
"longitude": 73.0679,
"name": "R\u0101walpindi",
@@ -1563,7 +1407,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 625144,
"latitude": 53.9,
"longitude": 27.56667,
"name": "Minsk",
@@ -1573,7 +1416,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 99072,
"latitude": 36.335,
"longitude": 43.11889,
"name": "Mosul",
@@ -1583,7 +1425,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2911298,
"latitude": 53.55,
"longitude": 10.0,
"name": "Hamburg",
@@ -1593,7 +1434,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3464975,
"latitude": -25.42778,
"longitude": -49.27306,
"name": "Curitiba",
@@ -1603,7 +1443,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 756135,
"latitude": 52.22977,
"longitude": 21.01178,
"name": "Warsaw",
@@ -1613,7 +1452,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1650357,
"latitude": -6.90389,
"longitude": 107.61861,
"name": "Bandung",
@@ -1623,7 +1461,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3054643,
"latitude": 47.49801,
"longitude": 19.03991,
"name": "Budapest",
@@ -1633,7 +1470,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 953781,
"latitude": -26.26781,
"longitude": 27.85849,
"name": "Soweto",
@@ -1643,7 +1479,6 @@
"country_code": "AT",
"elevation": 171,
"feature_code": "PPLC",
- "geonameid": 2761369,
"latitude": 48.20849,
"longitude": 16.37208,
"name": "Vienna",
@@ -1653,7 +1488,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2538475,
"latitude": 34.01325,
"longitude": -6.83255,
"name": "Rabat",
@@ -1663,7 +1497,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797929,
"latitude": 36.09861,
"longitude": 120.37194,
"name": "Qingdao",
@@ -1673,7 +1506,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005539,
"latitude": 20.66667,
"longitude": -103.33333,
"name": "Guadalajara",
@@ -1683,7 +1515,6 @@
"country_code": "ES",
"elevation": 15,
"feature_code": "PPLA",
- "geonameid": 3128760,
"latitude": 41.38879,
"longitude": 2.15899,
"name": "Barcelona",
@@ -1693,7 +1524,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 964137,
"latitude": -25.74486,
"longitude": 28.18783,
"name": "Pretoria",
@@ -1703,7 +1533,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 170063,
"latitude": 36.20124,
"longitude": 37.16117,
"name": "Aleppo",
@@ -1713,7 +1542,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1260086,
"latitude": 25.6,
"longitude": 85.11667,
"name": "Patna",
@@ -1723,7 +1551,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1275841,
"latitude": 23.26667,
"longitude": 77.4,
"name": "Bhop\u0101l",
@@ -1733,7 +1560,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3663517,
"latitude": -3.10194,
"longitude": -60.025,
"name": "Manaus",
@@ -1743,7 +1569,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793346,
"latitude": 39.63333,
"longitude": 118.18333,
"name": "Tangshan",
@@ -1753,7 +1578,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788534,
"latitude": 32.12278,
"longitude": 114.06556,
"name": "Xinyang",
@@ -1763,7 +1587,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3521081,
"latitude": 19.05,
"longitude": -98.2,
"name": "Puebla de Zaragoza",
@@ -1773,7 +1596,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2335727,
"latitude": 10.52224,
"longitude": 7.43828,
"name": "Kaduna",
@@ -1783,7 +1605,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1821306,
"latitude": 11.56245,
"longitude": 104.91601,
"name": "Phnom Penh",
@@ -1793,7 +1614,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 170654,
"latitude": 33.5102,
"longitude": 36.29128,
"name": "Damascus",
@@ -1803,7 +1623,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 418863,
"latitude": 32.65722,
"longitude": 51.67761,
"name": "E\u015ffah\u0101n",
@@ -1813,7 +1632,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264728,
"latitude": 30.9,
"longitude": 75.85,
"name": "Ludhi\u0101na",
@@ -1823,9 +1641,8 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 890299,
- "latitude": -17.82935,
- "longitude": 31.05389,
+ "latitude": -17.82772,
+ "longitude": 31.05337,
"name": "Harare",
"population": 1542813
},
@@ -1833,7 +1650,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 824987,
"latitude": 50.59857,
"longitude": 36.59273,
"name": "Gorod Belgorod",
@@ -1843,7 +1659,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1859171,
"latitude": 34.6913,
"longitude": 135.183,
"name": "K\u014dbe-shi",
@@ -1853,7 +1668,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPLA2",
- "geonameid": 4560349,
"latitude": 39.95234,
"longitude": -75.16379,
"name": "Philadelphia",
@@ -1863,7 +1677,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1649378,
"latitude": -6.2349,
"longitude": 106.9896,
"name": "Bekasi",
@@ -1873,7 +1686,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1673820,
"latitude": 22.61626,
"longitude": 120.31333,
"name": "Kaohsiung",
@@ -1883,7 +1695,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013708,
"latitude": 31.73333,
"longitude": -106.48333,
"name": "Ciudad Ju\u00e1rez",
@@ -1893,7 +1704,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1529102,
"latitude": 43.80096,
"longitude": 87.60046,
"name": "Urunchi",
@@ -1903,7 +1713,6 @@
"country_code": "US",
"elevation": 35,
"feature_code": "PPLX",
- "geonameid": 5125771,
"latitude": 40.78343,
"longitude": -73.96625,
"name": "Manhattan",
@@ -1913,7 +1722,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3439389,
"latitude": -25.30066,
"longitude": -57.63591,
"name": "Asunci\u00f3n",
@@ -1923,7 +1731,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3390760,
"latitude": -8.05389,
"longitude": -34.88111,
"name": "Recife",
@@ -1933,7 +1740,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1835235,
"latitude": 36.32139,
"longitude": 127.41972,
"name": "Daejeon",
@@ -1943,7 +1749,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2298890,
"latitude": 6.68848,
"longitude": -1.62443,
"name": "Kumasi",
@@ -1953,7 +1758,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1857910,
"latitude": 35.02107,
"longitude": 135.75385,
"name": "Kyoto",
@@ -1963,7 +1767,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1735161,
"latitude": 3.1412,
"longitude": 101.68653,
"name": "Kuala Lumpur",
@@ -1973,7 +1776,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 128747,
"latitude": 35.8355,
"longitude": 51.0103,
"name": "Karaj",
@@ -1983,7 +1785,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2063523,
"latitude": -31.95224,
"longitude": 115.8614,
"name": "Perth",
@@ -1993,7 +1794,6 @@
"country_code": "US",
"elevation": 331,
"feature_code": "PPLA",
- "geonameid": 5308655,
"latitude": 33.44838,
"longitude": -112.07404,
"name": "Phoenix",
@@ -2003,7 +1803,6 @@
"country_code": "NP",
"elevation": 1317,
"feature_code": "PPLC",
- "geonameid": 1283240,
"latitude": 27.70169,
"longitude": 85.3206,
"name": "Kathmandu",
@@ -2013,7 +1812,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1633070,
"latitude": -2.91673,
"longitude": 104.7458,
"name": "Palembang",
@@ -2023,7 +1821,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1169825,
"latitude": 30.19556,
"longitude": 71.47528,
"name": "Mult\u0101n",
@@ -2033,7 +1830,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1581130,
"latitude": 21.0245,
"longitude": 105.84117,
"name": "H\u00e0 N\u1ed9i",
@@ -2043,7 +1839,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 706483,
"latitude": 49.98081,
"longitude": 36.25272,
"name": "Kharkiv",
@@ -2053,7 +1848,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1279259,
"latitude": 27.18333,
"longitude": 78.01667,
"name": "\u0100gra",
@@ -2063,7 +1857,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3860259,
"latitude": -31.4135,
"longitude": -64.18105,
"name": "C\u00f3rdoba",
@@ -2073,7 +1866,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 113646,
"latitude": 38.08,
"longitude": 46.2919,
"name": "Tabr\u012bz",
@@ -2083,7 +1875,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1496747,
"latitude": 55.0415,
"longitude": 82.9346,
"name": "Novosibirsk",
@@ -2093,7 +1884,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1841811,
"latitude": 35.15472,
"longitude": 126.91556,
"name": "Gwangju",
@@ -2103,7 +1893,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 750269,
"latitude": 40.19167,
"longitude": 29.06111,
"name": "Bursa",
@@ -2113,7 +1902,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253573,
"latitude": 22.3,
"longitude": 73.2,
"name": "Vadodara",
@@ -2123,7 +1911,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3405870,
"latitude": -1.45583,
"longitude": -48.50444,
"name": "Bel\u00e9m",
@@ -2133,7 +1920,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037355,
"latitude": 41.85583,
"longitude": 123.92333,
"name": "Fushun",
@@ -2143,7 +1929,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3652462,
"latitude": -0.22985,
"longitude": -78.52495,
"name": "Quito",
@@ -2153,7 +1938,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1863967,
"latitude": 33.60639,
"longitude": 130.41806,
"name": "Fukuoka-shi",
@@ -2163,7 +1947,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1070940,
"latitude": -18.91368,
"longitude": 47.53613,
"name": "Antananarivo",
@@ -2173,7 +1956,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801792,
"latitude": 34.68361,
"longitude": 112.45361,
"name": "Luoyang",
@@ -2183,7 +1965,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1808722,
"latitude": 31.86389,
"longitude": 117.28083,
"name": "Hefei",
@@ -2193,17 +1974,24 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1176734,
"latitude": 25.39242,
"longitude": 68.37366,
"name": "Hyder\u0101b\u0101d",
"population": 1386330
},
+ {
+ "country_code": "US",
+ "elevation": 23,
+ "feature_code": "PPLA2",
+ "latitude": 40.84985,
+ "longitude": -73.86641,
+ "name": "Borough of Bronx",
+ "population": 1385108
+ },
{
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3625549,
"latitude": 10.16202,
"longitude": -68.00765,
"name": "Valencia",
@@ -2213,7 +2001,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1177662,
"latitude": 32.16167,
"longitude": 74.18831,
"name": "Gujr\u0101nw\u0101la",
@@ -2223,7 +2010,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3689147,
"latitude": 10.96389,
"longitude": -74.79639,
"name": "Barranquilla",
@@ -2233,7 +2019,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1802875,
"latitude": 28.15,
"longitude": 113.63333,
"name": "Liuyang",
@@ -2243,9 +2028,8 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3981609,
- "latitude": 32.53333,
- "longitude": -117.01667,
+ "latitude": 32.5027,
+ "longitude": -117.00371,
"name": "Tijuana",
"population": 1376457
},
@@ -2253,7 +2037,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 922704,
"latitude": -11.66089,
"longitude": 27.47938,
"name": "Lubumbashi",
@@ -2263,7 +2046,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3452925,
"latitude": -30.03306,
"longitude": -51.23,
"name": "Porto Alegre",
@@ -2273,7 +2055,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1625084,
"latitude": -6.17806,
"longitude": 106.63,
"name": "Tangerang",
@@ -2283,7 +2064,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3904906,
"latitude": -17.8,
"longitude": -63.16667,
"name": "Santa Cruz de la Sierra",
@@ -2293,7 +2073,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808963,
"latitude": 36.60056,
"longitude": 114.46778,
"name": "Handan",
@@ -2303,7 +2082,6 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 232422,
"latitude": 0.31628,
"longitude": 32.58219,
"name": "Kampala",
@@ -2312,10 +2090,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1886760,
- "latitude": 31.31139,
- "longitude": 120.61806,
+ "feature_code": "PPLA2",
+ "latitude": 31.30408,
+ "longitude": 120.59538,
"name": "Suzhou",
"population": 1343091
},
@@ -2323,7 +2100,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1336135,
"latitude": 22.81348,
"longitude": 89.56723,
"name": "Khulna",
@@ -2333,7 +2109,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2232593,
"latitude": 4.04827,
"longitude": 9.70428,
"name": "Douala",
@@ -2343,7 +2118,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1795940,
"latitude": 23.36814,
"longitude": 116.71479,
"name": "Shantou",
@@ -2353,7 +2127,6 @@
"country_code": "US",
"elevation": 198,
"feature_code": "PPLA2",
- "geonameid": 4726206,
"latitude": 29.42412,
"longitude": -98.49363,
"name": "San Antonio",
@@ -2363,7 +2136,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270926,
"latitude": 29.45,
"longitude": 75.68333,
"name": "Gorakhpur",
@@ -2373,7 +2145,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 104515,
"latitude": 21.42667,
"longitude": 39.82611,
"name": "Mecca",
@@ -2383,7 +2154,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1622786,
"latitude": -5.14,
"longitude": 119.4221,
"name": "Makassar",
@@ -2393,7 +2163,6 @@
"country_code": "US",
"elevation": 20,
"feature_code": "PPLA2",
- "geonameid": 5391811,
"latitude": 32.71533,
"longitude": -117.15726,
"name": "San Diego",
@@ -2403,7 +2172,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859642,
"latitude": 35.52056,
"longitude": 139.71722,
"name": "Kawasaki",
@@ -2413,7 +2181,6 @@
"country_code": "IT",
"elevation": 120,
"feature_code": "PPLA",
- "geonameid": 3173435,
"latitude": 45.46427,
"longitude": 9.18951,
"name": "Milan",
@@ -2423,7 +2190,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038432,
"latitude": 40.65222,
"longitude": 109.82222,
"name": "Baotou",
@@ -2433,7 +2199,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 109223,
"latitude": 24.46861,
"longitude": 39.61417,
"name": "Medina",
@@ -2443,7 +2208,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2220957,
"latitude": 3.86667,
"longitude": 11.51667,
"name": "Yaound\u00e9",
@@ -2453,7 +2217,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2460596,
"latitude": 12.65,
"longitude": -8.0,
"name": "Bamako",
@@ -2463,7 +2226,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1261731,
"latitude": 19.98333,
"longitude": 73.8,
"name": "N\u0101sik",
@@ -2473,7 +2235,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1627896,
"latitude": -6.9932,
"longitude": 110.4203,
"name": "Semarang",
@@ -2483,7 +2244,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1486209,
"latitude": 56.8575,
"longitude": 60.6125,
"name": "Yekaterinburg",
@@ -2493,8 +2253,7 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2260535,
- "latitude": -4.26583,
+ "latitude": -4.26613,
"longitude": 15.28318,
"name": "Brazzaville",
"population": 1284609
@@ -2503,7 +2262,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259652,
"latitude": 18.61667,
"longitude": 73.8,
"name": "Pimpri",
@@ -2513,7 +2271,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 520555,
"latitude": 56.32867,
"longitude": 44.00205,
"name": "Nizhniy Novgorod",
@@ -2523,7 +2280,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 250441,
"latitude": 31.95522,
"longitude": 35.94503,
"name": "Amman",
@@ -2533,7 +2289,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1723510,
"latitude": 7.20417,
"longitude": 124.43972,
"name": "Budta",
@@ -2543,7 +2298,6 @@
"country_code": "RS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 792680,
"latitude": 44.80401,
"longitude": 20.46513,
"name": "Belgrade",
@@ -2553,7 +2307,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3441575,
"latitude": -34.83346,
"longitude": -56.16735,
"name": "Montevideo",
@@ -2563,7 +2316,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 909137,
"latitude": -15.40669,
"longitude": 28.28713,
"name": "Lusaka",
@@ -2573,7 +2325,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268295,
"latitude": 19.25,
"longitude": 73.15,
"name": "Kaly\u0101n",
@@ -2583,7 +2334,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254661,
"latitude": 19.2,
"longitude": 72.96667,
"name": "Th\u0101ne",
@@ -2593,7 +2343,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2867714,
"latitude": 48.13743,
"longitude": 11.57549,
"name": "M\u00fcnchen",
@@ -2603,7 +2352,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2673730,
"latitude": 59.33258,
"longitude": 18.0649,
"name": "Stockholm",
@@ -2613,7 +2361,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 268743,
"latitude": 33.9,
"longitude": 35.48333,
"name": "Ra\u2019s Bayr\u016bt",
@@ -2623,7 +2370,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 115019,
"latitude": 29.6036,
"longitude": 52.5388,
"name": "Sh\u012br\u0101z",
@@ -2633,7 +2379,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 325363,
"latitude": 37.00167,
"longitude": 35.32889,
"name": "Adana",
@@ -2643,7 +2388,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1835553,
"latitude": 37.29111,
"longitude": 127.00889,
"name": "Suigen",
@@ -2653,7 +2397,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3718426,
"latitude": 18.53917,
"longitude": -72.335,
"name": "Port-au-Prince",
@@ -2663,7 +2406,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530589,
"latitude": 19.41361,
"longitude": -99.03306,
"name": "Ciudad Nezahualc\u00f3yotl",
@@ -2673,7 +2415,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263214,
"latitude": 28.98333,
"longitude": 77.7,
"name": "Meerut",
@@ -2683,7 +2424,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271951,
"latitude": 28.43333,
"longitude": 77.31667,
"name": "Far\u012bd\u0101b\u0101d",
@@ -2693,7 +2433,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1168197,
"latitude": 34.008,
"longitude": 71.57849,
"name": "Pesh\u0101war",
@@ -2703,7 +2442,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1715348,
"latitude": 7.07306,
"longitude": 125.61278,
"name": "Davao",
@@ -2713,7 +2451,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1311874,
"latitude": 21.97473,
"longitude": 96.08359,
"name": "Mandalay",
@@ -2723,7 +2460,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3492914,
"latitude": 19.45,
"longitude": -70.7,
"name": "Santiago de los Caballeros",
@@ -2733,7 +2469,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 365137,
"latitude": 15.64453,
"longitude": 32.47773,
"name": "Omdurman",
@@ -2743,7 +2478,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038632,
"latitude": 41.12361,
"longitude": 122.99,
"name": "Anshan",
@@ -2753,7 +2487,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1787824,
"latitude": 34.18045,
"longitude": 117.15707,
"name": "Tongshan",
@@ -2763,7 +2496,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271308,
"latitude": 28.66667,
"longitude": 77.43333,
"name": "Gh\u0101zi\u0101b\u0101d",
@@ -2773,7 +2505,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1645524,
"latitude": -6.4,
"longitude": 106.81861,
"name": "Depok",
@@ -2783,7 +2514,6 @@
"country_code": "US",
"elevation": 128,
"feature_code": "PPLA2",
- "geonameid": 4684888,
"latitude": 32.78306,
"longitude": -96.80667,
"name": "Dallas",
@@ -2793,7 +2523,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6940394,
"latitude": 35.90807,
"longitude": 139.65657,
"name": "Saitama",
@@ -2803,7 +2532,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3514674,
"latitude": 19.47861,
"longitude": -99.09583,
"name": "Gustavo A. Madero",
@@ -2813,7 +2541,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272423,
"latitude": 19.21667,
"longitude": 73.08333,
"name": "Dombivli",
@@ -2823,9 +2550,8 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1040652,
- "latitude": -25.96528,
- "longitude": 32.58917,
+ "latitude": -25.96553,
+ "longitude": 32.58322,
"name": "Maputo",
"population": 1191613
},
@@ -2833,7 +2559,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1810821,
"latitude": 26.06139,
"longitude": 119.30611,
"name": "Fuzhou",
@@ -2843,7 +2568,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258847,
"latitude": 22.3,
"longitude": 70.78333,
"name": "R\u0101jkot",
@@ -2853,7 +2577,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3838583,
"latitude": -32.94682,
"longitude": -60.63932,
"name": "Rosario",
@@ -2863,7 +2586,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1809461,
"latitude": 26.58333,
"longitude": 106.71667,
"name": "Guiyang",
@@ -2873,7 +2595,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3462377,
"latitude": -16.67861,
"longitude": -49.25389,
"name": "Goi\u00e2nia",
@@ -2883,7 +2604,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461786,
"latitude": -23.46278,
"longitude": -46.53333,
"name": "Guarulhos",
@@ -2893,7 +2613,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3067696,
"latitude": 50.08804,
"longitude": 14.42076,
"name": "Prague",
@@ -2903,7 +2622,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253405,
"latitude": 25.33333,
"longitude": 83.0,
"name": "Benares",
@@ -2913,7 +2631,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2618425,
"latitude": 55.67594,
"longitude": 12.56553,
"name": "Copenhagen",
@@ -2923,7 +2640,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 727011,
"latitude": 42.69751,
"longitude": 23.32415,
"name": "Sofia",
@@ -2933,7 +2649,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2210247,
"latitude": 32.87519,
"longitude": 13.18746,
"name": "Tripoli",
@@ -2943,7 +2658,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2324774,
"latitude": 4.77742,
"longitude": 7.0134,
"name": "Port Harcourt",
@@ -2953,7 +2667,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1862415,
"latitude": 34.39627,
"longitude": 132.45937,
"name": "Hiroshima-shi",
@@ -2963,7 +2676,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813253,
"latitude": 26.86879,
"longitude": 100.22072,
"name": "Dayan",
@@ -2973,7 +2685,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 292223,
"latitude": 25.25817,
"longitude": 55.30472,
"name": "Dubai",
@@ -2983,7 +2694,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 499099,
"latitude": 53.20006,
"longitude": 50.15,
"name": "Samara",
@@ -2993,7 +2703,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1496153,
"latitude": 55.0,
"longitude": 73.4,
"name": "Omsk",
@@ -3003,7 +2712,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2347283,
"latitude": 6.33504,
"longitude": 5.62749,
"name": "Benin City",
@@ -3013,7 +2721,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3995465,
"latitude": 25.66667,
"longitude": -100.31667,
"name": "Monterrey",
@@ -3023,7 +2730,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1978681,
"latitude": 7.16083,
"longitude": 124.475,
"name": "Malingao",
@@ -3033,7 +2739,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 587084,
"latitude": 40.37767,
"longitude": 49.89201,
"name": "Baku",
@@ -3043,7 +2748,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3998655,
"latitude": 21.11667,
"longitude": -101.66667,
"name": "Le\u00f3n",
@@ -3053,7 +2757,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2331447,
"latitude": 11.84644,
"longitude": 13.16027,
"name": "Maiduguri",
@@ -3062,8 +2765,7 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1790923,
+ "feature_code": "PPLA2",
"latitude": 31.56887,
"longitude": 120.28857,
"name": "Wuxi",
@@ -3073,7 +2775,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 551487,
"latitude": 55.78874,
"longitude": 49.12214,
"name": "Kazan",
@@ -3083,7 +2784,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 616052,
"latitude": 40.18111,
"longitude": 44.51361,
"name": "Yerevan",
@@ -3093,7 +2793,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278710,
"latitude": 31.63306,
"longitude": 74.86556,
"name": "Amritsar",
@@ -3103,9 +2802,8 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2357048,
- "latitude": 12.36423,
- "longitude": -1.53834,
+ "latitude": 12.36566,
+ "longitude": -1.53388,
"name": "Ouagadougou",
"population": 1086505
},
@@ -3113,7 +2811,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848254,
"latitude": 35.88333,
"longitude": 139.63333,
"name": "Yono",
@@ -3123,7 +2820,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 501175,
"latitude": 47.23135,
"longitude": 39.72328,
"name": "Rostov-na-Donu",
@@ -3133,7 +2829,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2078025,
"latitude": -34.92866,
"longitude": 138.59863,
"name": "Adelaide",
@@ -3143,7 +2838,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278994,
"latitude": 25.45,
"longitude": 81.85,
"name": "Allah\u0101b\u0101d",
@@ -3153,7 +2847,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842485,
"latitude": 37.65639,
"longitude": 126.835,
"name": "Goyang",
@@ -3163,7 +2856,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 314830,
"latitude": 37.05944,
"longitude": 37.3825,
"name": "Gaziantep",
@@ -3173,7 +2865,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253102,
"latitude": 17.69004,
"longitude": 83.20925,
"name": "Vish\u0101khapatnam",
@@ -3183,7 +2874,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1508291,
"latitude": 55.15444,
"longitude": 61.42972,
"name": "Chelyabinsk",
@@ -3193,7 +2883,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037799,
"latitude": 40.09361,
"longitude": 113.29139,
"name": "Datong",
@@ -3203,7 +2892,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 611717,
"latitude": 41.69411,
"longitude": 44.83368,
"name": "Tbilisi",
@@ -3213,7 +2901,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7283386,
"latitude": 31.64615,
"longitude": 120.74221,
"name": "Changshu City",
@@ -3223,7 +2910,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1668399,
"latitude": 24.1469,
"longitude": 120.6839,
"name": "Taichung",
@@ -3233,7 +2919,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2111149,
"latitude": 38.26889,
"longitude": 140.87194,
"name": "Sendai-shi",
@@ -3243,7 +2928,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254745,
"latitude": 10.0,
"longitude": 77.48333,
"name": "Teni",
@@ -3253,7 +2937,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1790353,
"latitude": 34.33778,
"longitude": 108.70261,
"name": "Xianyang",
@@ -3263,7 +2946,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 479561,
"latitude": 54.78517,
"longitude": 56.04562,
"name": "Ufa",
@@ -3273,7 +2955,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 709930,
"latitude": 48.45,
"longitude": 34.98333,
"name": "Dnipropetrovsk",
@@ -3283,7 +2964,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1897000,
"latitude": 37.43861,
"longitude": 127.13778,
"name": "Seongnam",
@@ -3293,7 +2973,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3467865,
"latitude": -22.90556,
"longitude": -47.06083,
"name": "Campinas",
@@ -3303,7 +2982,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269633,
"latitude": 23.16697,
"longitude": 79.95006,
"name": "Jabalpur",
@@ -3313,7 +2991,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270396,
"latitude": 22.58917,
"longitude": 88.31028,
"name": "H\u0101ora",
@@ -3323,7 +3000,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807681,
"latitude": 32.62639,
"longitude": 116.99694,
"name": "Huainan",
@@ -3333,7 +3009,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 709717,
"latitude": 48.023,
"longitude": 37.80224,
"name": "Donets\u2019k",
@@ -3343,7 +3018,6 @@
"country_code": "IE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2964574,
"latitude": 53.33306,
"longitude": -6.24889,
"name": "Dublin",
@@ -3353,7 +3027,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1804651,
"latitude": 25.03889,
"longitude": 102.71833,
"name": "Kunming",
@@ -3363,7 +3036,6 @@
"country_code": "CA",
"elevation": 1048,
"feature_code": "PPL",
- "geonameid": 5913490,
"latitude": 51.05011,
"longitude": -114.08529,
"name": "Calgary",
@@ -3373,7 +3045,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2800866,
"latitude": 50.85045,
"longitude": 4.34878,
"name": "Brussels",
@@ -3383,7 +3054,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1278149,
"latitude": 19.88333,
"longitude": 75.33333,
"name": "Aurang\u0101b\u0101d",
@@ -3393,7 +3063,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 472757,
"latitude": 48.71939,
"longitude": 44.50184,
"name": "Volgograd",
@@ -3403,7 +3072,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3456160,
"latitude": -22.75917,
"longitude": -43.45111,
"name": "Nova Igua\u00e7u",
@@ -3413,7 +3081,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1797121,
"latitude": 23.52886,
"longitude": 116.36416,
"name": "Jieyang",
@@ -3423,7 +3090,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 698740,
"latitude": 46.47747,
"longitude": 30.73262,
"name": "Odessa",
@@ -3433,7 +3099,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 7602670,
"latitude": 35.99502,
"longitude": 119.40259,
"name": "Zhu Cheng City",
@@ -3443,7 +3108,6 @@
"country_code": "ID",
"elevation": 3,
"feature_code": "PPLR",
- "geonameid": 7870153,
"latitude": -6.36836,
"longitude": 107.9558,
"name": "Masjid Jamie Baitul Muttaqien",
@@ -3453,7 +3117,6 @@
"country_code": "IN",
"elevation": 1000,
"feature_code": "PPL",
- "geonameid": 6943660,
"latitude": 18.53017,
"longitude": 73.85263,
"name": "Shivaji Nagar",
@@ -3463,7 +3126,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859307,
"latitude": 33.83333,
"longitude": 130.83333,
"name": "Kitaky\u016bsh\u016b",
@@ -3473,7 +3135,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256436,
"latitude": 17.68333,
"longitude": 75.91667,
"name": "Sol\u0101pur",
@@ -3483,7 +3144,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816971,
"latitude": 38.85111,
"longitude": 115.49028,
"name": "Baoding",
@@ -3493,7 +3153,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3598132,
"latitude": 14.64072,
"longitude": -90.51327,
"name": "Guatemala City",
@@ -3503,7 +3162,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3172394,
"latitude": 40.83333,
"longitude": 14.25,
"name": "Napoli",
@@ -3513,7 +3171,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038300,
"latitude": 41.28861,
"longitude": 123.765,
"name": "Benxi",
@@ -3523,7 +3180,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3979770,
"latitude": 20.71667,
"longitude": -103.4,
"name": "Zapopan",
@@ -3533,7 +3189,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2655603,
"latitude": 52.48142,
"longitude": -1.89983,
"name": "Birmingham",
@@ -3543,7 +3198,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 511196,
"latitude": 58.01741,
"longitude": 56.28552,
"name": "Perm\u2019",
@@ -3553,7 +3207,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1255634,
"latitude": 34.09222,
"longitude": 74.80222,
"name": "Sr\u012bnagar",
@@ -3563,7 +3216,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2317765,
"latitude": 11.11128,
"longitude": 7.7227,
"name": "Zaria",
@@ -3573,7 +3225,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3617763,
"latitude": 12.13282,
"longitude": -86.2504,
"name": "Managua",
@@ -3583,7 +3234,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 964420,
"latitude": -33.91799,
"longitude": 25.57007,
"name": "Port Elizabeth",
@@ -3593,7 +3243,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2548885,
"latitude": 34.03715,
"longitude": -4.9998,
"name": "F\u00e8s",
@@ -3603,7 +3252,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2886242,
"latitude": 50.93333,
"longitude": 6.95,
"name": "K\u00f6ln",
@@ -3613,7 +3261,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1833747,
"latitude": 35.53722,
"longitude": 129.31667,
"name": "Ulsan",
@@ -3623,7 +3270,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273865,
"latitude": 10.9925,
"longitude": 76.96139,
"name": "Coimbatore",
@@ -3633,7 +3279,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2174003,
"latitude": -27.46794,
"longitude": 153.02809,
"name": "Brisbane",
@@ -3643,7 +3288,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3395981,
"latitude": -9.66583,
"longitude": -35.73528,
"name": "Macei\u00f3",
@@ -3653,7 +3297,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3687238,
"latitude": 10.39972,
"longitude": -75.51444,
"name": "Cartagena",
@@ -3663,7 +3306,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815456,
"latitude": 31.78333,
"longitude": 119.96667,
"name": "Changzhou",
@@ -3673,7 +3315,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 101760,
"latitude": 24.49258,
"longitude": 39.58572,
"name": "Sul\u0163\u0101nah",
@@ -3683,7 +3324,6 @@
"country_code": "US",
"elevation": 26,
"feature_code": "PPLA2",
- "geonameid": 5392171,
"latitude": 37.33939,
"longitude": -121.89496,
"name": "San Jose",
@@ -3693,7 +3333,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2274895,
"latitude": 6.30054,
"longitude": -10.7969,
"name": "Monrovia",
@@ -3703,7 +3342,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1636556,
"latitude": -2.6748,
"longitude": 118.8885,
"name": "Mamuju",
@@ -3713,7 +3351,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3489854,
"latitude": 17.99702,
"longitude": -76.79358,
"name": "Kingston",
@@ -3723,7 +3360,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 95446,
"latitude": 36.19257,
"longitude": 44.01062,
"name": "Erbil",
@@ -3733,7 +3369,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1502026,
"latitude": 56.00972,
"longitude": 92.79167,
"name": "Krasnoyarsk",
@@ -3743,7 +3378,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 6611854,
"latitude": 19.745,
"longitude": 96.12972,
"name": "Nay Pyi Taw",
@@ -3753,7 +3387,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268865,
"latitude": 26.28667,
"longitude": 73.03,
"name": "Jodhpur",
@@ -3763,7 +3396,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2113015,
"latitude": 35.60472,
"longitude": 140.12333,
"name": "Chiba-shi",
@@ -3773,7 +3405,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3388368,
"latitude": -2.52972,
"longitude": -44.30278,
"name": "S\u00e3o Lu\u00eds",
@@ -3783,7 +3414,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1274746,
"latitude": 30.7343,
"longitude": 76.7933,
"name": "Chand\u012bgarh",
@@ -3793,7 +3423,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264521,
"latitude": 9.93333,
"longitude": 78.11667,
"name": "Madurai",
@@ -3803,7 +3432,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2537763,
"latitude": 34.03892,
"longitude": -6.8166,
"name": "Sal\u00e9",
@@ -3813,7 +3441,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807700,
"latitude": 33.97444,
"longitude": 116.79167,
"name": "Huaibei",
@@ -3823,7 +3450,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3919968,
"latitude": -17.3895,
"longitude": -66.1568,
"name": "Cochabamba",
@@ -3833,7 +3459,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2293521,
"latitude": 5.41613,
"longitude": -4.0159,
"name": "Abobo",
@@ -3843,7 +3468,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 100077,
"latitude": 33.30703,
"longitude": 44.18694,
"name": "Ab\u016b Ghurayb",
@@ -3853,7 +3477,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 119208,
"latitude": 34.6401,
"longitude": 50.8764,
"name": "Qom",
@@ -3863,7 +3486,6 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1528675,
"latitude": 42.87,
"longitude": 74.59,
"name": "Bishkek",
@@ -3873,7 +3495,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271476,
"latitude": 26.18617,
"longitude": 91.75095,
"name": "Guw\u0101h\u0101ti",
@@ -3883,7 +3504,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2353151,
"latitude": 5.10658,
"longitude": 7.36667,
"name": "Aba",
@@ -3893,7 +3513,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798827,
"latitude": 33.73847,
"longitude": 113.30119,
"name": "Pingdingshan",
@@ -3903,7 +3522,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270583,
"latitude": 26.22361,
"longitude": 78.17917,
"name": "Gwalior",
@@ -3913,7 +3531,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035265,
"latitude": 47.34083,
"longitude": 123.96722,
"name": "Qiqihar",
@@ -3923,7 +3540,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1732905,
"latitude": 3.03333,
"longitude": 101.45,
"name": "Klang",
@@ -3933,7 +3549,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3844421,
"latitude": -32.89084,
"longitude": -68.82717,
"name": "Mendoza",
@@ -3943,7 +3558,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 306571,
"latitude": 37.87135,
"longitude": 32.48464,
"name": "Konya",
@@ -3953,9 +3567,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 209228,
- "latitude": -6.15,
- "longitude": 23.6,
+ "latitude": -6.13603,
+ "longitude": 23.58979,
"name": "Mbuji-Mayi",
"population": 874761
},
@@ -3963,7 +3576,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253184,
"latitude": 16.51667,
"longitude": 80.61667,
"name": "Vijayaw\u0101da",
@@ -3973,7 +3585,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2246678,
"latitude": 14.75,
"longitude": -17.4,
"name": "Pikine",
@@ -3983,7 +3594,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262321,
"latitude": 12.29791,
"longitude": 76.63925,
"name": "Mysore",
@@ -3993,7 +3603,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791388,
"latitude": 27.99942,
"longitude": 120.66682,
"name": "Wenzhou",
@@ -4003,7 +3612,6 @@
"country_code": "IT",
"elevation": 240,
"feature_code": "PPLA",
- "geonameid": 3165524,
"latitude": 45.07049,
"longitude": 7.68682,
"name": "Torino",
@@ -4013,7 +3621,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 498677,
"latitude": 51.54056,
"longitude": 46.00861,
"name": "Saratov",
@@ -4023,7 +3630,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3600949,
"latitude": 14.0818,
"longitude": -87.20681,
"name": "Tegucigalpa",
@@ -4033,7 +3639,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1838716,
"latitude": 37.49889,
"longitude": 126.78306,
"name": "Bucheon",
@@ -4043,7 +3648,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 472045,
"latitude": 51.67204,
"longitude": 39.1843,
"name": "Voronezh",
@@ -4053,7 +3657,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1258526,
"latitude": 23.35,
"longitude": 85.33333,
"name": "R\u0101nch\u012b",
@@ -4063,7 +3666,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3522790,
"latitude": 19.47851,
"longitude": -99.23963,
"name": "Naucalpan de Ju\u00e1rez",
@@ -4073,7 +3675,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2028462,
"latitude": 47.90771,
"longitude": 106.88324,
"name": "Ulaanbaatar",
@@ -4083,7 +3684,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 144448,
"latitude": 31.3203,
"longitude": 48.6693,
"name": "Ahv\u0101z",
@@ -4093,7 +3693,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3947322,
"latitude": -16.39889,
"longitude": -71.535,
"name": "Arequipa",
@@ -4103,7 +3702,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1633419,
"latitude": -0.94924,
"longitude": 100.35427,
"name": "Padang",
@@ -4113,7 +3711,6 @@
"country_code": "IN",
"elevation": 627,
"feature_code": "PPL",
- "geonameid": 1269920,
"latitude": 15.34776,
"longitude": 75.13378,
"name": "Hubli",
@@ -4123,17 +3720,15 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2542997,
- "latitude": 31.63148,
- "longitude": -8.00828,
- "name": "Marrakech",
+ "latitude": 31.63416,
+ "longitude": -7.99994,
+ "name": "Marrakesh",
"population": 839296
},
{
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1771023,
"latitude": 3.15,
"longitude": 101.53333,
"name": "Kampung Baru Subang",
@@ -4143,7 +3738,6 @@
"country_code": "US",
"elevation": 218,
"feature_code": "PPLA",
- "geonameid": 4259418,
"latitude": 39.76838,
"longitude": -86.15804,
"name": "Indianapolis",
@@ -4153,7 +3747,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPLA2",
- "geonameid": 4160021,
"latitude": 30.33218,
"longitude": -81.65565,
"name": "Jacksonville",
@@ -4163,7 +3756,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464374,
"latitude": -22.78556,
"longitude": -43.31167,
"name": "Duque de Caxias",
@@ -4173,7 +3765,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2335953,
"latitude": 9.91667,
"longitude": 8.9,
"name": "Jos",
@@ -4183,7 +3774,6 @@
"country_code": "ES",
"elevation": 15,
"feature_code": "PPLA",
- "geonameid": 2509954,
"latitude": 39.46975,
"longitude": -0.37739,
"name": "Valencia",
@@ -4193,7 +3783,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2337639,
"latitude": 8.5,
"longitude": 4.55,
"name": "Ilorin",
@@ -4203,7 +3792,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3946083,
"latitude": -12.06667,
"longitude": -77.15,
"name": "Callao",
@@ -4212,8 +3800,7 @@
{
"country_code": "BO",
"elevation": 0,
- "feature_code": "PPLC",
- "geonameid": 3911925,
+ "feature_code": "PPLG",
"latitude": -16.5,
"longitude": -68.15,
"name": "La Paz",
@@ -4223,7 +3810,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 6094817,
"latitude": 45.41117,
"longitude": -75.69812,
"name": "Ottawa",
@@ -4233,7 +3819,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3648522,
"latitude": 10.07389,
"longitude": -69.32278,
"name": "Barquisimeto",
@@ -4243,7 +3828,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPLA2",
- "geonameid": 5391959,
"latitude": 37.77493,
"longitude": -122.41942,
"name": "San Francisco",
@@ -4253,7 +3837,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1799869,
"latitude": 22.81667,
"longitude": 108.31667,
"name": "Nanning",
@@ -4263,7 +3846,6 @@
"country_code": "SL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2409306,
"latitude": 8.484,
"longitude": -13.22994,
"name": "Freetown",
@@ -4273,7 +3855,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1732752,
"latitude": 1.4655,
"longitude": 103.7578,
"name": "Johor Bahru",
@@ -4283,7 +3864,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1624917,
"latitude": -5.42544,
"longitude": 105.25803,
"name": "Bandarlampung",
@@ -4293,7 +3873,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6618983,
"latitude": 45.81313,
"longitude": 15.97753,
"name": "Zagreb - Centar",
@@ -4303,7 +3882,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648473,
"latitude": -6.59444,
"longitude": 106.78917,
"name": "Bogor",
@@ -4313,7 +3891,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 186301,
"latitude": -4.05466,
"longitude": 39.66359,
"name": "Mombasa",
@@ -4323,7 +3900,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1717512,
"latitude": 10.31672,
"longitude": 123.89071,
"name": "Cebu City",
@@ -4333,7 +3909,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 287286,
"latitude": 23.61387,
"longitude": 58.5922,
"name": "Muscat",
@@ -4343,7 +3918,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 687700,
"latitude": 47.82289,
"longitude": 35.19031,
"name": "Zaporizhzhya",
@@ -4353,7 +3927,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2995469,
"latitude": 43.29695,
"longitude": 5.38107,
"name": "Marseille",
@@ -4363,7 +3936,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 250090,
"latitude": 32.07275,
"longitude": 36.08796,
"name": "Az Zarq\u0101\u2019",
@@ -4373,7 +3945,6 @@
"country_code": "TR",
"elevation": 850,
"feature_code": "PPL",
- "geonameid": 6955677,
"latitude": 39.9179,
"longitude": 32.86268,
"name": "\u00c7ankaya",
@@ -4383,7 +3954,6 @@
"country_code": "US",
"elevation": 149,
"feature_code": "PPLA",
- "geonameid": 4671654,
"latitude": 30.26715,
"longitude": -97.74306,
"name": "Austin",
@@ -4393,7 +3963,6 @@
"country_code": "US",
"elevation": 235,
"feature_code": "PPLA",
- "geonameid": 4509177,
"latitude": 39.96118,
"longitude": -82.99879,
"name": "Columbus",
@@ -4403,7 +3972,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2474141,
"latitude": 36.76639,
"longitude": 3.47717,
"name": "Boumerdas",
@@ -4413,7 +3981,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268782,
"latitude": 31.32556,
"longitude": 75.57917,
"name": "Jalandhar",
@@ -4423,7 +3990,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1254163,
"latitude": 8.50694,
"longitude": 76.95694,
"name": "Thiruvananthapuram",
@@ -4433,7 +3999,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853195,
"latitude": 34.58333,
"longitude": 135.46667,
"name": "Sakai",
@@ -4443,7 +4008,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785294,
"latitude": 36.09944,
"longitude": 114.32889,
"name": "Anyang",
@@ -4453,7 +4017,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3836873,
"latitude": -26.82414,
"longitude": -65.2226,
"name": "San Miguel de Tucum\u00e1n",
@@ -4463,7 +4026,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257629,
"latitude": 11.65,
"longitude": 78.16667,
"name": "Salem",
@@ -4473,7 +4035,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254388,
"latitude": 10.805,
"longitude": 78.68556,
"name": "Tiruchchir\u0101ppalli",
@@ -4483,7 +4044,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 169577,
"latitude": 34.72682,
"longitude": 36.72339,
"name": "Homs",
@@ -4493,7 +4053,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2036892,
"latitude": 40.81056,
"longitude": 111.65222,
"name": "Hohhot",
@@ -4503,7 +4062,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2440485,
"latitude": 13.51366,
"longitude": 2.1098,
"name": "Niamey",
@@ -4513,7 +4071,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1668355,
"latitude": 22.99083,
"longitude": 120.21333,
"name": "Tainan",
@@ -4523,7 +4080,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817720,
"latitude": 30.01556,
"longitude": 120.87111,
"name": "Shangyu",
@@ -4533,7 +4089,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3093133,
"latitude": 51.75,
"longitude": 19.46667,
"name": "\u0141\u00f3d\u017a",
@@ -4543,7 +4098,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 110336,
"latitude": 26.43442,
"longitude": 50.10326,
"name": "Ad Damm\u0101m",
@@ -4553,7 +4107,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1788852,
"latitude": 36.61667,
"longitude": 101.76667,
"name": "Xining",
@@ -4563,7 +4116,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 23814,
"latitude": 34.3838,
"longitude": 47.0553,
"name": "Kahr\u012bz",
@@ -4573,7 +4125,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266049,
"latitude": 25.18333,
"longitude": 75.83333,
"name": "Kota",
@@ -4583,7 +4134,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3394023,
"latitude": -5.795,
"longitude": -35.20944,
"name": "Natal",
@@ -4593,7 +4143,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1275817,
"latitude": 20.23333,
"longitude": 85.83333,
"name": "Bhubaneshwar",
@@ -4603,7 +4152,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797595,
"latitude": 39.93167,
"longitude": 119.58833,
"name": "Qinhuangdao",
@@ -4613,7 +4161,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808370,
"latitude": 26.88806,
"longitude": 112.615,
"name": "Hengyang",
@@ -4623,7 +4170,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 323777,
"latitude": 36.90812,
"longitude": 30.69556,
"name": "Antalya",
@@ -4633,7 +4179,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3094802,
"latitude": 50.08333,
"longitude": 19.91667,
"name": "Krak\u00f3w",
@@ -4643,7 +4188,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279017,
"latitude": 27.88333,
"longitude": 78.08333,
"name": "Al\u012bgarh",
@@ -4653,7 +4197,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1583992,
"latitude": 16.06778,
"longitude": 108.22083,
"name": "Turan",
@@ -4663,7 +4206,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 965301,
"latitude": -29.61678,
"longitude": 30.39278,
"name": "Pietermaritzburg",
@@ -4673,7 +4215,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2365267,
"latitude": 6.13748,
"longitude": 1.21227,
"name": "Lom\u00e9",
@@ -4683,7 +4224,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3691175,
"latitude": -8.11599,
"longitude": -79.02998,
"name": "Trujillo",
@@ -4693,7 +4233,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636722,
"latitude": -7.9797,
"longitude": 112.6304,
"name": "Malang",
@@ -4703,7 +4242,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3645528,
"latitude": 8.35122,
"longitude": -62.64102,
"name": "Ciudad Guayana",
@@ -4713,7 +4251,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277013,
"latitude": 28.35,
"longitude": 79.41667,
"name": "Bareilly",
@@ -4723,7 +4260,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 202061,
"latitude": -1.94995,
"longitude": 30.05885,
"name": "Kigali",
@@ -4733,7 +4269,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3386496,
"latitude": -5.08917,
"longitude": -42.80194,
"name": "Teresina",
@@ -4743,7 +4278,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788572,
"latitude": 35.30889,
"longitude": 113.86722,
"name": "Xinxiang",
@@ -4753,7 +4287,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449344,
"latitude": -23.69389,
"longitude": -46.565,
"name": "S\u00e3o Bernardo do Campo",
@@ -4763,7 +4296,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036986,
"latitude": 47.4,
"longitude": 130.36667,
"name": "Hegang",
@@ -4773,7 +4305,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 456172,
"latitude": 56.946,
"longitude": 24.10589,
"name": "Riga",
@@ -4783,7 +4314,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2759794,
"latitude": 52.37403,
"longitude": 4.88969,
"name": "Amsterdam",
@@ -4793,7 +4323,6 @@
"country_code": "US",
"elevation": 199,
"feature_code": "PPLA2",
- "geonameid": 4691930,
"latitude": 32.72541,
"longitude": -97.32085,
"name": "Fort Worth",
@@ -4803,7 +4332,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2325200,
"latitude": 7.85,
"longitude": 3.93333,
"name": "Oyo",
@@ -4813,7 +4341,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1167528,
"latitude": 30.199,
"longitude": 67.00971,
"name": "Quetta",
@@ -4823,7 +4350,6 @@
"country_code": "US",
"elevation": 229,
"feature_code": "PPLA2",
- "geonameid": 4460243,
"latitude": 35.22709,
"longitude": -80.84313,
"name": "Charlotte",
@@ -4833,7 +4359,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3467747,
"latitude": -20.44278,
"longitude": -54.64639,
"name": "Campo Grande",
@@ -4843,7 +4368,6 @@
"country_code": "GR",
"elevation": 70,
"feature_code": "PPLC",
- "geonameid": 264371,
"latitude": 37.97945,
"longitude": 23.71622,
"name": "Athens",
@@ -4853,7 +4377,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 162183,
"latitude": 37.95,
"longitude": 58.38333,
"name": "Ashgabat",
@@ -4863,7 +4386,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005492,
"latitude": 25.68333,
"longitude": -100.25,
"name": "Guadalupe",
@@ -4873,7 +4395,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 751324,
"latitude": 41.03903,
"longitude": 28.85671,
"name": "Ba\u011fc\u0131lar",
@@ -4883,9 +4404,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 98463,
- "latitude": 35.56113,
- "longitude": 45.43749,
+ "latitude": 35.56496,
+ "longitude": 45.4329,
"name": "As Sulaym\u0101n\u012byah",
"population": 723170
},
@@ -4893,7 +4413,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3685533,
"latitude": 7.89391,
"longitude": -72.50782,
"name": "C\u00facuta",
@@ -4903,7 +4422,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262801,
"latitude": 28.83333,
"longitude": 78.78333,
"name": "Mor\u0101d\u0101b\u0101d",
@@ -4913,7 +4431,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2427123,
"latitude": 12.10672,
"longitude": 15.0444,
"name": "N'Djamena",
@@ -4923,7 +4440,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804540,
"latitude": 39.50972,
"longitude": 116.69472,
"name": "Langfang",
@@ -4933,7 +4449,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1799397,
"latitude": 29.87819,
"longitude": 121.54945,
"name": "Ningbo",
@@ -4943,7 +4458,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787093,
"latitude": 37.53333,
"longitude": 121.4,
"name": "Yantai",
@@ -4953,7 +4467,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 702550,
"latitude": 49.83826,
"longitude": 24.02324,
"name": "L'viv",
@@ -4963,7 +4476,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523349,
"latitude": 20.96667,
"longitude": -89.61667,
"name": "M\u00e9rida",
@@ -4973,7 +4485,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515431,
"latitude": 19.52694,
"longitude": -99.22167,
"name": "Tlalnepantla",
@@ -4983,7 +4494,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 281184,
"latitude": 31.76904,
"longitude": 35.21633,
"name": "Jerusalem",
@@ -4993,7 +4503,6 @@
"country_code": "US",
"elevation": 183,
"feature_code": "PPLA2",
- "geonameid": 4990729,
"latitude": 42.33143,
"longitude": -83.04575,
"name": "Detroit",
@@ -5003,7 +4512,6 @@
"country_code": "CA",
"elevation": 668,
"feature_code": "PPLA",
- "geonameid": 5946768,
"latitude": 53.55014,
"longitude": -113.46871,
"name": "Edmonton",
@@ -5013,7 +4521,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1845457,
"latitude": 35.82194,
"longitude": 127.14889,
"name": "Jeonju",
@@ -5023,7 +4530,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783763,
"latitude": 27.83333,
"longitude": 113.15,
"name": "Zhuzhou",
@@ -5033,7 +4539,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4014338,
"latitude": 28.63333,
"longitude": -106.08333,
"name": "Chihuahua",
@@ -5043,7 +4548,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275901,
"latitude": 19.3,
"longitude": 73.06667,
"name": "Bhiwandi",
@@ -5053,7 +4557,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3514663,
"latitude": 19.37333,
"longitude": -99.225,
"name": "Alvaro Obreg\u00f3n",
@@ -5063,7 +4566,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1631761,
"latitude": 0.53333,
"longitude": 101.45,
"name": "Pekanbaru",
@@ -5073,7 +4575,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2510911,
"latitude": 37.38241,
"longitude": -5.97613,
"name": "Sevilla",
@@ -5083,7 +4584,6 @@
"country_code": "RU",
"elevation": 42,
"feature_code": "PPL",
- "geonameid": 482283,
"latitude": 53.5303,
"longitude": 49.3461,
"name": "Tol\u2019yatti",
@@ -5093,7 +4593,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLL",
- "geonameid": 3397838,
"latitude": -8.18028,
"longitude": -35.00139,
"name": "Jaboat\u00e3o",
@@ -5103,7 +4602,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1851717,
"latitude": 34.97694,
"longitude": 138.38306,
"name": "Shizuoka-shi",
@@ -5113,7 +4611,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1185128,
"latitude": 24.36667,
"longitude": 88.6,
"name": "R\u0101jsh\u0101hi",
@@ -5123,7 +4620,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 8224624,
"latitude": -1.24204,
"longitude": 116.89419,
"name": "City of Balikpapan",
@@ -5133,7 +4629,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815463,
"latitude": 35.20889,
"longitude": 111.73861,
"name": "Changzhi",
@@ -5143,7 +4638,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 894701,
"latitude": -20.15,
"longitude": 28.58333,
"name": "Bulawayo",
@@ -5153,7 +4647,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3186886,
"latitude": 45.81444,
"longitude": 15.97798,
"name": "Zagreb",
@@ -5163,7 +4656,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2561668,
"latitude": 30.42018,
"longitude": -9.59815,
"name": "Agadir",
@@ -5173,7 +4665,6 @@
"country_code": "BA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3191281,
"latitude": 43.84864,
"longitude": 18.35644,
"name": "Sarajevo",
@@ -5183,7 +4674,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3432043,
"latitude": -34.92145,
"longitude": -57.95453,
"name": "La Plata",
@@ -5193,7 +4683,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2464470,
"latitude": 36.81897,
"longitude": 10.16579,
"name": "Tunis",
@@ -5203,7 +4692,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033196,
"latitude": 40.81,
"longitude": 114.87944,
"name": "Zhangjiakou",
@@ -5213,7 +4701,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2394819,
"latitude": 6.36536,
"longitude": 2.41833,
"name": "Cotonou",
@@ -5223,7 +4710,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783745,
"latitude": 29.34162,
"longitude": 104.77689,
"name": "Zigong",
@@ -5233,7 +4719,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037346,
"latitude": 42.01556,
"longitude": 121.65889,
"name": "Fuxin",
@@ -5243,7 +4728,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2343279,
"latitude": 6.4402,
"longitude": 7.4943,
"name": "Enugu",
@@ -5253,9 +4737,8 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2530335,
- "latitude": 35.78058,
- "longitude": -5.81365,
+ "latitude": 35.76727,
+ "longitude": -5.79975,
"name": "Tangier",
"population": 688356
},
@@ -5263,7 +4746,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1807234,
"latitude": 30.20417,
"longitude": 115.07761,
"name": "Huangshi",
@@ -5273,7 +4755,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036113,
"latitude": 41.27194,
"longitude": 123.17306,
"name": "Liaoyang",
@@ -5283,7 +4764,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855503,
"latitude": 35.73333,
"longitude": 139.65,
"name": "Nerima",
@@ -5293,7 +4773,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1858421,
"latitude": 32.78972,
"longitude": 130.74167,
"name": "Kumamoto-shi",
@@ -5303,7 +4782,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1258980,
"latitude": 21.23333,
"longitude": 81.63333,
"name": "Raipur",
@@ -5313,7 +4791,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1713022,
"latitude": 6.11278,
"longitude": 125.17167,
"name": "General Santos",
@@ -5323,7 +4800,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455775,
"latitude": -23.5325,
"longitude": -46.79167,
"name": "Osasco",
@@ -5333,7 +4809,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3985606,
"latitude": 22.15,
"longitude": -100.98333,
"name": "San Luis Potos\u00ed",
@@ -5343,7 +4818,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3104324,
"latitude": 41.65606,
"longitude": -0.87734,
"name": "Zaragoza",
@@ -5353,7 +4827,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270927,
"latitude": 26.755,
"longitude": 83.37389,
"name": "Gorakhpur",
@@ -5363,7 +4836,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790492,
"latitude": 27.85,
"longitude": 112.9,
"name": "Xiangtan",
@@ -5373,7 +4845,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1734634,
"latitude": 4.5841,
"longitude": 101.0829,
"name": "Ipoh",
@@ -5383,7 +4854,6 @@
"country_code": "IT",
"elevation": 20,
"feature_code": "PPLA",
- "geonameid": 2523920,
"latitude": 38.11582,
"longitude": 13.35976,
"name": "Palermo",
@@ -5393,7 +4863,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785286,
"latitude": 36.79056,
"longitude": 118.06333,
"name": "Zibo",
@@ -5403,7 +4872,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6075357,
"latitude": 43.5789,
"longitude": -79.6583,
"name": "Mississauga",
@@ -5413,7 +4881,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798422,
"latitude": 35.70278,
"longitude": 115.00528,
"name": "Puyang",
@@ -5423,7 +4890,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1799722,
"latitude": 32.03028,
"longitude": 120.87472,
"name": "Nantong",
@@ -5433,7 +4899,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035715,
"latitude": 44.58333,
"longitude": 129.6,
"name": "Mudanjiang",
@@ -5443,7 +4908,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449701,
"latitude": -23.66389,
"longitude": -46.53833,
"name": "Santo Andr\u00e9",
@@ -5453,7 +4917,6 @@
"country_code": "MR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2377450,
"latitude": 18.08581,
"longitude": -15.9785,
"name": "Nouakchott",
@@ -5463,7 +4926,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2255414,
"latitude": -4.77609,
"longitude": 11.86352,
"name": "Pointe-Noire",
@@ -5473,7 +4935,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4019233,
"latitude": 21.88333,
"longitude": -102.3,
"name": "Aguascalientes",
@@ -5483,7 +4944,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 703845,
"latitude": 47.90966,
"longitude": 33.38044,
"name": "Kryvyy Rih",
@@ -5493,7 +4953,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3533462,
"latitude": 16.86336,
"longitude": -99.8901,
"name": "Acapulco de Ju\u00e1rez",
@@ -5503,7 +4962,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3397277,
"latitude": -7.115,
"longitude": -34.86306,
"name": "Jo\u00e3o Pessoa",
@@ -5513,7 +4971,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846918,
"latitude": 37.32361,
"longitude": 126.82194,
"name": "Ansan",
@@ -5523,7 +4980,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 88319,
"latitude": 32.11667,
"longitude": 20.06667,
"name": "Benghazi",
@@ -5533,7 +4989,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2925533,
"latitude": 50.11667,
"longitude": 8.68333,
"name": "Frankfurt am Main",
@@ -5543,7 +4998,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 542420,
"latitude": 45.0488,
"longitude": 38.9725,
"name": "Krasnodar",
@@ -5553,7 +5007,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1809498,
"latitude": 25.28194,
"longitude": 110.28639,
"name": "Guilin",
@@ -5563,7 +5016,6 @@
"country_code": "US",
"elevation": 1133,
"feature_code": "PPLA2",
- "geonameid": 5520993,
"latitude": 31.75872,
"longitude": -106.48693,
"name": "El Paso",
@@ -5573,7 +5025,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853295,
"latitude": 35.55306,
"longitude": 139.35444,
"name": "Sagamihara",
@@ -5583,7 +5034,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1248991,
"latitude": 6.93194,
"longitude": 79.84778,
"name": "Colombo",
@@ -5593,7 +5043,6 @@
"country_code": "US",
"elevation": 78,
"feature_code": "PPLA2",
- "geonameid": 4641239,
"latitude": 35.14953,
"longitude": -90.04898,
"name": "Memphis",
@@ -5603,7 +5052,6 @@
"country_code": "MW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 927967,
"latitude": -13.96692,
"longitude": 33.78725,
"name": "Lilongwe",
@@ -5613,7 +5061,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2485926,
"latitude": 35.69111,
"longitude": -0.64167,
"name": "Oran",
@@ -5623,7 +5070,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 316541,
"latitude": 37.91583,
"longitude": 40.21889,
"name": "Diyarbak\u0131r",
@@ -5633,7 +5079,6 @@
"country_code": "US",
"elevation": 79,
"feature_code": "PPL",
- "geonameid": 4645421,
"latitude": 35.08676,
"longitude": -90.05676,
"name": "New South Memphis",
@@ -5643,7 +5088,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 479123,
"latitude": 54.32824,
"longitude": 48.38657,
"name": "Ul\u2019yanovsk",
@@ -5653,7 +5097,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1173055,
"latitude": 33.51667,
"longitude": 73.91667,
"name": "Kotli",
@@ -5663,7 +5106,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1854383,
"latitude": 34.66167,
"longitude": 133.935,
"name": "Okayama-shi",
@@ -5673,7 +5115,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1784990,
"latitude": 21.28145,
"longitude": 110.34271,
"name": "Zhanjiang",
@@ -5683,7 +5124,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1621177,
"latitude": -7.78278,
"longitude": 110.36083,
"name": "Yogyakarta",
@@ -5693,7 +5133,6 @@
"country_code": "CA",
"elevation": 180,
"feature_code": "PPL",
- "geonameid": 6091104,
"latitude": 43.76681,
"longitude": -79.4163,
"name": "North York",
@@ -5703,7 +5142,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 618426,
"latitude": 47.00556,
"longitude": 28.8575,
"name": "Chi\u015fin\u0103u",
@@ -5713,7 +5151,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3081368,
"latitude": 51.1,
"longitude": 17.03333,
"name": "Wroc\u0142aw",
@@ -5723,7 +5160,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1845604,
"latitude": 36.63722,
"longitude": 127.48972,
"name": "Cheongju",
@@ -5733,7 +5169,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846898,
"latitude": 37.3925,
"longitude": 126.92694,
"name": "Anyang",
@@ -5742,10 +5177,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1784642,
- "latitude": 32.20917,
- "longitude": 119.43417,
+ "feature_code": "PPLA2",
+ "latitude": 32.21086,
+ "longitude": 119.45508,
"name": "Zhenjiang",
"population": 632552
},
@@ -5753,7 +5187,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6183235,
"latitude": 49.8844,
"longitude": -97.14704,
"name": "Winnipeg",
@@ -5763,7 +5196,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037886,
"latitude": 40.12917,
"longitude": 124.39472,
"name": "Dandong",
@@ -5773,7 +5205,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 554840,
"latitude": 56.84976,
"longitude": 53.20448,
"name": "Izhevsk",
@@ -5783,7 +5214,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 6317344,
"latitude": -8.11278,
"longitude": -35.01472,
"name": "Jaboat\u00e3o dos Guararapes",
@@ -5793,7 +5223,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1795874,
"latitude": 24.8,
"longitude": 113.58333,
"name": "Shaoguan",
@@ -5803,7 +5232,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787746,
"latitude": 33.38556,
"longitude": 120.12528,
"name": "Yancheng",
@@ -5813,7 +5241,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530139,
"latitude": 19.32889,
"longitude": -99.16028,
"name": "Coyoac\u00e1n",
@@ -5823,7 +5250,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1811103,
"latitude": 23.02677,
"longitude": 113.13148,
"name": "Foshan",
@@ -5833,7 +5259,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465624,
"latitude": -19.93167,
"longitude": -44.05361,
"name": "Contagem",
@@ -5843,7 +5268,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275971,
"latitude": 21.21667,
"longitude": 81.43333,
"name": "Bhilai",
@@ -5853,7 +5277,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035513,
"latitude": 41.18806,
"longitude": 122.04944,
"name": "Panshan",
@@ -5863,9 +5286,8 @@
"country_code": "DJ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 223817,
- "latitude": 11.58767,
- "longitude": 43.14468,
+ "latitude": 11.58901,
+ "longitude": 43.14503,
"name": "Djibouti",
"population": 623891
},
@@ -5873,7 +5295,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3988086,
"latitude": 25.41667,
"longitude": -101.0,
"name": "Saltillo",
@@ -5883,7 +5304,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 128226,
"latitude": 34.31417,
"longitude": 47.065,
"name": "Kerm\u0101nsh\u0101h",
@@ -5893,7 +5313,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPLA2",
- "geonameid": 4347778,
"latitude": 39.29038,
"longitude": -76.61219,
"name": "Baltimore",
@@ -5903,7 +5322,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 79415,
"latitude": 14.79781,
"longitude": 42.95452,
"name": "Al \u1e28udaydah",
@@ -5913,17 +5331,24 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPLA",
- "geonameid": 4930956,
"latitude": 42.35843,
"longitude": -71.05977,
"name": "Boston",
"population": 617594
},
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 14.58691,
+ "longitude": 121.0614,
+ "name": "Pasig City",
+ "population": 617301
+ },
{
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269300,
"latitude": 22.8,
"longitude": 86.18333,
"name": "Jamshedpur",
@@ -5933,7 +5358,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1809078,
"latitude": 20.04583,
"longitude": 110.34167,
"name": "Haikou",
@@ -5943,7 +5367,6 @@
"country_code": "YE",
"elevation": 1400,
"feature_code": "PPLA",
- "geonameid": 70225,
"latitude": 13.57952,
"longitude": 44.02091,
"name": "Ta\u2018izz",
@@ -5953,7 +5376,6 @@
"country_code": "BR",
"elevation": 20,
"feature_code": "PPLA2",
- "geonameid": 3448636,
"latitude": -23.17944,
"longitude": -45.88694,
"name": "S\u00e3o Jos\u00e9 dos Campos",
@@ -5963,9 +5385,8 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1793505,
- "latitude": 32.49333,
- "longitude": 119.91063,
+ "latitude": 32.49069,
+ "longitude": 119.90812,
"name": "Taizhou",
"population": 612356
},
@@ -5973,7 +5394,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3991164,
"latitude": 20.6,
"longitude": -100.38333,
"name": "Quer\u00e9taro",
@@ -5983,7 +5403,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788927,
"latitude": 37.06306,
"longitude": 114.49417,
"name": "Xingtai",
@@ -5993,7 +5412,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2648579,
"latitude": 55.86515,
"longitude": -4.25763,
"name": "Glasgow",
@@ -6003,7 +5421,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275248,
"latitude": 19.23333,
"longitude": 72.85,
"name": "Borivli",
@@ -6013,7 +5430,6 @@
"country_code": "US",
"elevation": 56,
"feature_code": "PPLA2",
- "geonameid": 5809844,
"latitude": 47.60621,
"longitude": -122.33207,
"name": "Seattle",
@@ -6023,7 +5439,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515428,
"latitude": 19.28333,
"longitude": -99.16667,
"name": "Tlalpan",
@@ -6033,7 +5448,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 468902,
"latitude": 57.62987,
"longitude": 39.87368,
"name": "Yaroslavl'",
@@ -6043,7 +5457,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1020098,
"latitude": -26.18848,
"longitude": 28.32078,
"name": "Benoni",
@@ -6053,7 +5466,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863289,
"latitude": 34.7,
"longitude": 137.73333,
"name": "Hamamatsu",
@@ -6063,7 +5475,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273874,
"latitude": 9.93988,
"longitude": 76.26022,
"name": "Cochin",
@@ -6073,7 +5484,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036427,
"latitude": 41.10778,
"longitude": 121.14167,
"name": "Jinzhou",
@@ -6083,7 +5493,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1278718,
"latitude": 20.93333,
"longitude": 77.75,
"name": "Amr\u0101vati",
@@ -6093,7 +5502,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 292968,
"latitude": 24.46667,
"longitude": 54.36667,
"name": "Abu Dhabi",
@@ -6103,7 +5511,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1581298,
"latitude": 20.85611,
"longitude": 106.68222,
"name": "Haiphong",
@@ -6113,7 +5520,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3176219,
"latitude": 44.40632,
"longitude": 8.93386,
"name": "Genova",
@@ -6123,7 +5529,6 @@
"country_code": "US",
"elevation": 7,
"feature_code": "PPLC",
- "geonameid": 4140963,
"latitude": 38.89511,
"longitude": -77.03637,
"name": "Washington, D. C.",
@@ -6133,7 +5538,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1176615,
"latitude": 33.72148,
"longitude": 73.04329,
"name": "Islamabad",
@@ -6143,7 +5547,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 94787,
"latitude": 35.46806,
"longitude": 44.39222,
"name": "Kirkuk",
@@ -6153,7 +5556,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257416,
"latitude": 16.85438,
"longitude": 74.56417,
"name": "S\u0101ngli",
@@ -6163,7 +5565,6 @@
"country_code": "US",
"elevation": 1609,
"feature_code": "PPLA",
- "geonameid": 5419384,
"latitude": 39.73915,
"longitude": -104.9847,
"name": "Denver",
@@ -6173,7 +5574,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034786,
"latitude": 46.63611,
"longitude": 131.15389,
"name": "Shuangyashan",
@@ -6183,7 +5583,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1626801,
"latitude": -7.70623,
"longitude": 114.00976,
"name": "Situbondo",
@@ -6193,7 +5592,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1510853,
"latitude": 53.36056,
"longitude": 83.76361,
"name": "Barnaul",
@@ -6203,7 +5601,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2747891,
"latitude": 51.9225,
"longitude": 4.47917,
"name": "Rotterdam",
@@ -6213,7 +5610,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1802204,
"latitude": 37.87917,
"longitude": 114.65167,
"name": "Luancheng",
@@ -6223,7 +5619,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3996069,
"latitude": 32.65194,
"longitude": -115.46833,
"name": "Mexicali",
@@ -6233,7 +5628,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4004898,
"latitude": 29.06667,
"longitude": -110.96667,
"name": "Hermosillo",
@@ -6243,7 +5637,6 @@
"country_code": "US",
"elevation": 188,
"feature_code": "PPLA2",
- "geonameid": 5263045,
"latitude": 43.0389,
"longitude": -87.90647,
"name": "Milwaukee",
@@ -6253,7 +5646,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 118743,
"latitude": 37.28077,
"longitude": 49.58319,
"name": "Rasht",
@@ -6263,7 +5655,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2352947,
"latitude": 7.15,
"longitude": 3.35,
"name": "Abeokuta",
@@ -6273,7 +5664,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2928810,
"latitude": 51.45,
"longitude": 7.01667,
"name": "Essen",
@@ -6283,7 +5673,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 308464,
"latitude": 38.73222,
"longitude": 35.48528,
"name": "Kayseri",
@@ -6293,7 +5682,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3995402,
"latitude": 19.70078,
"longitude": -101.18443,
"name": "Morelia",
@@ -6303,7 +5691,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2033370,
"latitude": 40.66482,
"longitude": 122.22833,
"name": "Yingkou",
@@ -6313,7 +5700,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2352778,
"latitude": 9.05735,
"longitude": 7.48976,
"name": "Abuja",
@@ -6323,7 +5709,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1785018,
"latitude": 24.51333,
"longitude": 117.65556,
"name": "Zhangzhou",
@@ -6333,7 +5718,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2825297,
"latitude": 48.78232,
"longitude": 9.17702,
"name": "Stuttgart",
@@ -6343,7 +5727,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2935517,
"latitude": 51.51667,
"longitude": 7.45,
"name": "Dortmund",
@@ -6353,7 +5736,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2013348,
"latitude": 43.10562,
"longitude": 131.87353,
"name": "Vladivostok",
@@ -6363,7 +5745,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2023469,
"latitude": 52.29778,
"longitude": 104.29639,
"name": "Irkutsk",
@@ -6373,7 +5754,6 @@
"country_code": "MW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 931755,
"latitude": -15.78499,
"longitude": 35.00854,
"name": "Blantyre",
@@ -6383,7 +5763,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3489297,
"latitude": 18.00747,
"longitude": -76.78319,
"name": "New Kingston",
@@ -6393,7 +5772,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPLA2",
- "geonameid": 5746545,
"latitude": 45.52345,
"longitude": -122.67621,
"name": "Portland",
@@ -6403,7 +5781,6 @@
"country_code": "US",
"elevation": 610,
"feature_code": "PPLA2",
- "geonameid": 5506956,
"latitude": 36.17497,
"longitude": -115.13722,
"name": "Las Vegas",
@@ -6413,7 +5790,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4012176,
"latitude": 24.79944,
"longitude": -107.38972,
"name": "Culiac\u00e1n",
@@ -6423,7 +5799,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273780,
"latitude": 20.46497,
"longitude": 85.87927,
"name": "Cuttack",
@@ -6433,7 +5808,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3143244,
"latitude": 59.91273,
"longitude": 10.74609,
"name": "Oslo",
@@ -6443,7 +5817,6 @@
"country_code": "US",
"elevation": 366,
"feature_code": "PPLA",
- "geonameid": 4544349,
"latitude": 35.46756,
"longitude": -97.51643,
"name": "Oklahoma City",
@@ -6453,7 +5826,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863440,
"latitude": 35.65583,
"longitude": 139.32389,
"name": "Hachi\u014dji",
@@ -6463,7 +5835,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2022890,
"latitude": 48.48083,
"longitude": 135.09278,
"name": "Khabarovsk",
@@ -6473,7 +5844,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1790645,
"latitude": 24.47979,
"longitude": 118.08187,
"name": "Xiamen",
@@ -6483,9 +5853,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2056752,
- "latitude": 48.44306,
- "longitude": 135.13556,
+ "latitude": 48.445,
+ "longitude": 135.1379,
"name": "Khabarovsk Vtoroy",
"population": 578303
},
@@ -6493,9 +5862,8 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2399697,
- "latitude": 0.3925,
- "longitude": 9.45365,
+ "latitude": 0.39241,
+ "longitude": 9.45356,
"name": "Libreville",
"population": 578156
},
@@ -6503,7 +5871,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 128234,
"latitude": 30.28321,
"longitude": 57.07879,
"name": "Kerm\u0101n",
@@ -6513,7 +5880,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3698350,
"latitude": -6.77361,
"longitude": -79.84167,
"name": "Chiclayo",
@@ -6523,7 +5889,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 121801,
"latitude": 37.55274,
"longitude": 45.07605,
"name": "Or\u016bm\u012byeh",
@@ -6533,7 +5898,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7627067,
"latitude": 41.00231,
"longitude": 28.8598,
"name": "Bah\u00e7elievler",
@@ -6543,7 +5907,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816440,
"latitude": 32.94083,
"longitude": 117.36083,
"name": "Bengbu",
@@ -6553,7 +5916,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275665,
"latitude": 28.01667,
"longitude": 73.3,
"name": "B\u012bk\u0101ner",
@@ -6563,7 +5925,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 738377,
"latitude": 41.01643,
"longitude": 29.12476,
"name": "Umraniye",
@@ -6573,7 +5934,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2934246,
"latitude": 51.22172,
"longitude": 6.77616,
"name": "D\u00fcsseldorf",
@@ -6583,7 +5943,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1650213,
"latitude": -3.32442,
"longitude": 114.591,
"name": "Banjarmasin",
@@ -6593,7 +5952,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529195,
"latitude": 44.3,
"longitude": 86.03333,
"name": "Shihezi",
@@ -6603,7 +5961,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3688465,
"latitude": 7.12539,
"longitude": -73.1198,
"name": "Bucaramanga",
@@ -6613,7 +5970,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 4951305,
"latitude": 42.33343,
"longitude": -71.04949,
"name": "South Boston",
@@ -6623,7 +5979,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1735634,
"latitude": 1.55,
"longitude": 110.33333,
"name": "Kuching",
@@ -6633,7 +5988,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3088171,
"latitude": 52.40692,
"longitude": 16.92993,
"name": "Pozna\u0144",
@@ -6643,7 +5997,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3514783,
"latitude": 19.2,
"longitude": -96.13333,
"name": "Veracruz",
@@ -6653,7 +6006,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2514256,
"latitude": 36.72016,
"longitude": -4.42034,
"name": "M\u00e1laga",
@@ -6663,7 +6015,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2290956,
"latitude": 7.69385,
"longitude": -5.03031,
"name": "Bouak\u00e9",
@@ -6673,7 +6024,6 @@
"country_code": "ER",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 343300,
"latitude": 15.33333,
"longitude": 38.93333,
"name": "Asmara",
@@ -6683,7 +6033,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2322911,
"latitude": 13.06092,
"longitude": 5.23902,
"name": "Sokoto",
@@ -6693,7 +6042,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445831,
"latitude": -18.91861,
"longitude": -48.27722,
"name": "Uberl\u00e2ndia",
@@ -6703,7 +6051,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2326016,
"latitude": 6.14543,
"longitude": 6.78845,
"name": "Onitsha",
@@ -6713,7 +6060,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863905,
"latitude": 35.69306,
"longitude": 139.98333,
"name": "Funabashi",
@@ -6723,7 +6069,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1877449,
"latitude": 39.91833,
"longitude": 127.53639,
"name": "Hamh\u016dng",
@@ -6733,7 +6078,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3447399,
"latitude": -23.50167,
"longitude": -47.45806,
"name": "Sorocaba",
@@ -6743,7 +6087,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 658225,
"latitude": 60.16952,
"longitude": 24.93545,
"name": "Helsinki",
@@ -6753,7 +6096,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252948,
"latitude": 18.0,
"longitude": 79.58333,
"name": "Warangal",
@@ -6763,7 +6105,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3536729,
"latitude": 20.02472,
"longitude": -75.82194,
"name": "Santiago de Cuba",
@@ -6773,7 +6114,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034714,
"latitude": 43.16333,
"longitude": 124.36861,
"name": "Siping",
@@ -6783,7 +6123,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1860827,
"latitude": 31.56018,
"longitude": 130.55814,
"name": "Kagoshima-shi",
@@ -6793,7 +6132,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1625812,
"latitude": -7.55611,
"longitude": 110.83167,
"name": "Surakarta",
@@ -6803,7 +6141,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797873,
"latitude": 33.58861,
"longitude": 119.01917,
"name": "Huaiyin",
@@ -6813,7 +6150,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276032,
"latitude": 21.76667,
"longitude": 72.15,
"name": "Bh\u0101vnagar",
@@ -6823,7 +6159,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3430863,
"latitude": -38.00228,
"longitude": -57.55754,
"name": "Mar del Plata",
@@ -6833,7 +6168,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1183880,
"latitude": 29.4,
"longitude": 71.68333,
"name": "Bah\u0101walpur",
@@ -6843,7 +6177,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1159301,
"latitude": 29.4963,
"longitude": 60.8629,
"name": "Z\u0101hed\u0101n",
@@ -6853,7 +6186,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3451328,
"latitude": -21.1775,
"longitude": -47.81028,
"name": "Ribeir\u00e3o Preto",
@@ -6863,7 +6195,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 415189,
"latitude": 12.77944,
"longitude": 45.03667,
"name": "Aden",
@@ -6873,7 +6204,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 515003,
"latitude": 51.7727,
"longitude": 55.0988,
"name": "Orenburg",
@@ -6883,7 +6213,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1846326,
"latitude": 35.22806,
"longitude": 128.68111,
"name": "Changwon",
@@ -6893,7 +6222,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 786714,
"latitude": 42.67272,
"longitude": 21.16688,
"name": "Pristina",
@@ -6903,7 +6231,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036581,
"latitude": 46.83333,
"longitude": 130.35,
"name": "Jiamusi",
@@ -6913,7 +6240,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1730501,
"latitude": 14.58639,
"longitude": 121.17528,
"name": "Antipolo",
@@ -6923,7 +6249,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799491,
"latitude": 29.58354,
"longitude": 105.06216,
"name": "Neijiang",
@@ -6933,7 +6258,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2944388,
"latitude": 53.07516,
"longitude": 8.80777,
"name": "Bremen",
@@ -6943,7 +6267,6 @@
"country_code": "US",
"elevation": 1511,
"feature_code": "PPLA2",
- "geonameid": 5454711,
"latitude": 35.08449,
"longitude": -106.65114,
"name": "Albuquerque",
@@ -6953,7 +6276,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2542715,
"latitude": 33.89352,
"longitude": -5.54727,
"name": "Mekn\u00e8s",
@@ -6963,7 +6285,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1039854,
"latitude": -25.96222,
"longitude": 32.45889,
"name": "Matola",
@@ -6973,7 +6294,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 292672,
"latitude": 25.35731,
"longitude": 55.4033,
"name": "Sharjah",
@@ -6983,7 +6303,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1670029,
"latitude": 25.01427,
"longitude": 121.46719,
"name": "Banqiao",
@@ -6993,7 +6312,6 @@
"country_code": "TJ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1221874,
"latitude": 38.53575,
"longitude": 68.77905,
"name": "Dushanbe",
@@ -7003,7 +6321,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1166000,
"latitude": 32.08361,
"longitude": 72.67111,
"name": "Sargodha",
@@ -7013,7 +6330,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2389853,
"latitude": 4.36122,
"longitude": 18.55496,
"name": "Bangui",
@@ -7023,7 +6339,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 593116,
"latitude": 54.68916,
"longitude": 25.2798,
"name": "Vilnius",
@@ -7033,7 +6348,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3531673,
"latitude": 21.17429,
"longitude": -86.84656,
"name": "Canc\u00fan",
@@ -7043,7 +6357,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787227,
"latitude": 32.39722,
"longitude": 119.43583,
"name": "Yangzhou",
@@ -7053,7 +6366,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1496990,
"latitude": 53.7557,
"longitude": 87.1099,
"name": "Novokuznetsk",
@@ -7063,9 +6375,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 212730,
- "latitude": 0.51667,
- "longitude": 25.2,
+ "latitude": 0.51528,
+ "longitude": 25.19099,
"name": "Kisangani",
"population": 539158
},
@@ -7073,7 +6384,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 358619,
"latitude": 31.25654,
"longitude": 32.28412,
"name": "Port Said",
@@ -7083,7 +6393,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 304531,
"latitude": 36.79526,
"longitude": 34.61792,
"name": "Mercin",
@@ -7093,7 +6402,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2319133,
"latitude": 5.51667,
"longitude": 5.75,
"name": "Warri",
@@ -7103,7 +6411,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1809412,
"latitude": 28.88333,
"longitude": 120.03333,
"name": "Guli",
@@ -7113,7 +6420,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793424,
"latitude": 39.02111,
"longitude": 117.64694,
"name": "Tanggu",
@@ -7123,7 +6429,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1806299,
"latitude": 22.58333,
"longitude": 113.08333,
"name": "Jiangmen",
@@ -7133,7 +6438,6 @@
"country_code": "US",
"elevation": 170,
"feature_code": "PPLA",
- "geonameid": 4644585,
"latitude": 36.16589,
"longitude": -86.78444,
"name": "Nashville",
@@ -7143,7 +6447,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 107968,
"latitude": 21.27028,
"longitude": 40.41583,
"name": "Ta\u2019if",
@@ -7153,7 +6456,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1052373,
"latitude": -19.84361,
"longitude": 34.83889,
"name": "Beira",
@@ -7163,7 +6465,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270668,
"latitude": 16.3,
"longitude": 80.45,
"name": "Gunt\u016br",
@@ -7173,7 +6474,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6325494,
"latitude": 46.81228,
"longitude": -71.21454,
"name": "Qu\u00e9bec",
@@ -7183,7 +6483,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 132144,
"latitude": 34.79922,
"longitude": 48.51456,
"name": "Hamad\u0101n",
@@ -7193,7 +6492,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816080,
"latitude": 38.31667,
"longitude": 116.86667,
"name": "Cangzhou",
@@ -7203,7 +6501,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2165087,
"latitude": -28.00029,
"longitude": 153.43088,
"name": "Gold Coast",
@@ -7213,7 +6510,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3583361,
"latitude": 13.68935,
"longitude": -89.18718,
"name": "San Salvador",
@@ -7223,7 +6519,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3981254,
"latitude": 25.55,
"longitude": -103.43333,
"name": "Torre\u00f3n",
@@ -7233,7 +6528,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1273313,
"latitude": 30.31667,
"longitude": 78.03333,
"name": "Dehra D\u016bn",
@@ -7243,7 +6537,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3465038,
"latitude": -15.59611,
"longitude": -56.09667,
"name": "Cuiab\u00e1",
@@ -7253,7 +6546,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3827409,
"latitude": 19.41722,
"longitude": -99.15694,
"name": "Cuauht\u00e9moc",
@@ -7263,7 +6555,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3532624,
"latitude": 19.55833,
"longitude": -99.26139,
"name": "Ciudad L\u00f3pez Mateos",
@@ -7273,7 +6564,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1735158,
"latitude": 3.10726,
"longitude": 101.60671,
"name": "Petaling Jaya",
@@ -7283,7 +6573,6 @@
"country_code": "MO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1821274,
"latitude": 22.20056,
"longitude": 113.54611,
"name": "Macau",
@@ -7293,7 +6582,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 747340,
"latitude": 41.0435,
"longitude": 28.87619,
"name": "Esenler",
@@ -7303,7 +6591,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 500096,
"latitude": 54.6269,
"longitude": 39.6916,
"name": "Ryazan\u2019",
@@ -7313,7 +6600,6 @@
"country_code": "US",
"elevation": 759,
"feature_code": "PPLA2",
- "geonameid": 5318313,
"latitude": 32.22174,
"longitude": -110.92648,
"name": "Tucson",
@@ -7323,7 +6609,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1488754,
"latitude": 57.15222,
"longitude": 65.52722,
"name": "Tyumen\u2019",
@@ -7333,7 +6618,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272175,
"latitude": 23.48333,
"longitude": 87.31667,
"name": "Durg\u0101pur",
@@ -7343,7 +6627,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3429652,
"latitude": -34.72418,
"longitude": -58.25265,
"name": "Quilmes",
@@ -7353,7 +6636,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279159,
"latitude": 26.45,
"longitude": 74.63333,
"name": "Ajmer",
@@ -7363,7 +6645,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2267057,
"latitude": 38.71667,
"longitude": -9.13333,
"name": "Lisbon",
@@ -7373,7 +6654,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1791121,
"latitude": 29.04638,
"longitude": 111.6783,
"name": "Changde",
@@ -7383,7 +6663,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805987,
"latitude": 35.23972,
"longitude": 113.23306,
"name": "Jiaozuo",
@@ -7393,7 +6672,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253894,
"latitude": 19.21667,
"longitude": 73.15,
"name": "Ulh\u0101snagar",
@@ -7403,7 +6681,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266285,
"latitude": 16.7,
"longitude": 74.21667,
"name": "Kolh\u0101pur",
@@ -7413,7 +6690,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 535121,
"latitude": 52.60311,
"longitude": 39.57076,
"name": "Lipetsk",
@@ -7423,7 +6699,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256525,
"latitude": 26.71611,
"longitude": 88.42361,
"name": "Shiliguri",
@@ -7433,7 +6708,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2910831,
"latitude": 52.37052,
"longitude": 9.73322,
"name": "Hannover",
@@ -7443,7 +6717,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 315202,
"latitude": 39.77667,
"longitude": 30.52056,
"name": "Eski\u015fehir",
@@ -7453,7 +6726,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 14256,
"latitude": 34.79088,
"longitude": 48.57073,
"name": "\u0100z\u0101dshahr",
@@ -7463,7 +6735,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3838233,
"latitude": -24.7859,
"longitude": -65.41166,
"name": "Salta",
@@ -7473,7 +6744,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 511565,
"latitude": 53.20066,
"longitude": 45.00464,
"name": "Penza",
@@ -7483,7 +6753,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 949880,
"latitude": -25.99636,
"longitude": 28.2268,
"name": "Tembisa",
@@ -7493,7 +6762,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 700569,
"latitude": 46.96591,
"longitude": 31.9974,
"name": "Mykolayiv",
@@ -7503,7 +6771,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6316406,
"latitude": -16.82333,
"longitude": -49.24389,
"name": "Aparecida de Goi\u00e2nia",
@@ -7513,17 +6780,24 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3875024,
"latitude": -33.61667,
"longitude": -70.58333,
"name": "Puente Alto",
"population": 510417
},
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 14.55027,
+ "longitude": 121.03269,
+ "name": "Makati City",
+ "population": 510383
+ },
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 523750,
"latitude": 55.72545,
"longitude": 52.41122,
"name": "Naberezhnyye Chelny",
@@ -7533,7 +6807,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3985241,
"latitude": 25.75,
"longitude": -100.3,
"name": "San Nicol\u00e1s de los Garza",
@@ -7543,7 +6816,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1791236,
"latitude": 31.33657,
"longitude": 118.37548,
"name": "Wuhu",
@@ -7553,7 +6825,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3515302,
"latitude": 19.28833,
"longitude": -99.66722,
"name": "Toluca",
@@ -7563,7 +6834,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1855431,
"latitude": 37.90222,
"longitude": 139.02361,
"name": "Niigata-shi",
@@ -7573,7 +6843,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2879139,
"latitude": 51.33962,
"longitude": 12.37129,
"name": "Leipzig",
@@ -7583,7 +6852,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5969785,
"latitude": 43.23341,
"longitude": -79.94964,
"name": "Hamilton",
@@ -7593,7 +6861,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2934691,
"latitude": 51.43333,
"longitude": 6.75,
"name": "Duisburg",
@@ -7603,7 +6870,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278314,
"latitude": 23.68333,
"longitude": 86.98333,
"name": "\u0100sansol",
@@ -7613,7 +6879,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2711537,
"latitude": 57.70716,
"longitude": 11.96679,
"name": "G\u00f6teborg",
@@ -7623,7 +6888,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 143127,
"latitude": 34.09174,
"longitude": 49.68916,
"name": "Ar\u0101k",
@@ -7633,7 +6897,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 580497,
"latitude": 46.34968,
"longitude": 48.04076,
"name": "Astrakhan\u2019",
@@ -7643,7 +6906,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1790437,
"latitude": 22.27694,
"longitude": 113.56778,
"name": "Zhuhai",
@@ -7653,7 +6915,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1839071,
"latitude": 36.03222,
"longitude": 129.365,
"name": "Hoko",
@@ -7663,7 +6924,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2861650,
"latitude": 49.44778,
"longitude": 11.06833,
"name": "Nuremberg",
@@ -7673,7 +6933,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795816,
"latitude": 30.30722,
"longitude": 112.24472,
"name": "Shashi",
@@ -7683,7 +6942,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3520339,
"latitude": 26.08333,
"longitude": -98.28333,
"name": "Reynosa",
@@ -7693,7 +6951,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 532096,
"latitude": 42.97638,
"longitude": 47.50236,
"name": "Makhachkala",
@@ -7703,7 +6960,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2155472,
"latitude": -32.92715,
"longitude": 151.77647,
"name": "Newcastle",
@@ -7713,7 +6969,6 @@
"country_code": "US",
"elevation": 94,
"feature_code": "PPLA2",
- "geonameid": 5350937,
"latitude": 36.74773,
"longitude": -119.77237,
"name": "Fresno",
@@ -7723,7 +6978,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646448,
"latitude": -6.87222,
"longitude": 107.5425,
"name": "Cimahi",
@@ -7733,7 +6987,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3981461,
"latitude": 20.65,
"longitude": -103.31667,
"name": "Tlaquepaque",
@@ -7743,7 +6996,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269317,
"latitude": 22.46667,
"longitude": 70.06667,
"name": "J\u0101mnagar",
@@ -7753,7 +7005,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3471872,
"latitude": -10.91111,
"longitude": -37.07167,
"name": "Aracaju",
@@ -7763,7 +7014,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 377039,
"latitude": 19.61745,
"longitude": 37.21644,
"name": "Port Sudan",
@@ -7773,7 +7023,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3836277,
"latitude": -31.63333,
"longitude": -60.7,
"name": "Santa Fe de la Vera Cruz",
@@ -7783,7 +7032,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3601782,
"latitude": 15.5,
"longitude": -88.03333,
"name": "San Pedro Sula",
@@ -7793,7 +7041,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359796,
"latitude": 29.97371,
"longitude": 32.52627,
"name": "Suez",
@@ -7803,7 +7050,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2935022,
"latitude": 51.05089,
"longitude": 13.73832,
"name": "Dresden",
@@ -7813,7 +7059,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1489425,
"latitude": 56.49417,
"longitude": 84.97417,
"name": "Tomsk",
@@ -7823,7 +7068,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2593460,
"latitude": -4.38361,
"longitude": 15.39139,
"name": "Masina",
@@ -7833,7 +7077,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257806,
"latitude": 29.96667,
"longitude": 77.55,
"name": "Sah\u0101ranpur",
@@ -7843,7 +7086,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270752,
"latitude": 17.33333,
"longitude": 76.83333,
"name": "Gulbarga",
@@ -7853,7 +7095,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276058,
"latitude": 22.87139,
"longitude": 88.40889,
"name": "Bh\u0101tp\u0101ra",
@@ -7863,9 +7104,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 98860,
- "latitude": 31.99854,
- "longitude": 44.33976,
+ "latitude": 31.9892,
+ "longitude": 44.3291,
"name": "An Najaf al Ashraf",
"population": 482576
},
@@ -7873,7 +7113,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463478,
"latitude": -12.26667,
"longitude": -38.96667,
"name": "Feira de Santana",
@@ -7883,7 +7122,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732903,
"latitude": 3.08507,
"longitude": 101.53281,
"name": "Shah Alam",
@@ -7893,7 +7131,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 701822,
"latitude": 47.06667,
"longitude": 37.5,
"name": "Mariupol'",
@@ -7903,7 +7140,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862627,
"latitude": 34.81667,
"longitude": 134.7,
"name": "Himeji",
@@ -7913,7 +7149,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3515001,
"latitude": 16.75,
"longitude": -93.11667,
"name": "Tuxtla Guti\u00e9rrez",
@@ -7923,7 +7158,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 627907,
"latitude": 52.4345,
"longitude": 30.9754,
"name": "Homyel\u2019",
@@ -7933,7 +7167,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1833788,
"latitude": 37.7415,
"longitude": 127.0474,
"name": "Vijongbu",
@@ -7943,7 +7176,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1006984,
"latitude": -33.01529,
"longitude": 27.91162,
"name": "East London",
@@ -7953,7 +7185,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 111822,
"latitude": 31.89722,
"longitude": 54.3675,
"name": "Yazd",
@@ -7963,7 +7194,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 57289,
"latitude": 9.56,
"longitude": 44.065,
"name": "Hargeysa",
@@ -7973,7 +7203,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1164909,
"latitude": 32.5101,
"longitude": 74.54313,
"name": "Si\u0101lkot",
@@ -7983,7 +7212,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1503901,
"latitude": 55.33333,
"longitude": 86.08333,
"name": "Kemerovo",
@@ -7993,7 +7221,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786764,
"latitude": 30.71444,
"longitude": 111.28472,
"name": "Yichang",
@@ -8003,7 +7230,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1843847,
"latitude": 37.20682,
"longitude": 126.8169,
"name": "Hwaseong",
@@ -8013,7 +7239,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515807,
"latitude": 19.64694,
"longitude": -99.24667,
"name": "Cuautitl\u00e1n Izcalli",
@@ -8023,7 +7248,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1786657,
"latitude": 38.46806,
"longitude": 106.27306,
"name": "Yinchuan",
@@ -8033,7 +7257,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 785842,
"latitude": 42.0,
"longitude": 21.43333,
"name": "Skopje",
@@ -8043,7 +7266,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 944385,
"latitude": -26.67313,
"longitude": 27.92615,
"name": "Vereeniging",
@@ -8053,7 +7275,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLG",
- "geonameid": 2747373,
"latitude": 52.07667,
"longitude": 4.29861,
"name": "Den Haag",
@@ -8063,7 +7284,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3592519,
"latitude": 14.63333,
"longitude": -90.60639,
"name": "Mixco",
@@ -8073,7 +7293,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2996944,
"latitude": 45.74846,
"longitude": 4.84671,
"name": "Lyon",
@@ -8083,7 +7302,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3458449,
"latitude": -23.31028,
"longitude": -51.16278,
"name": "Londrina",
@@ -8093,7 +7311,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1809061,
"latitude": 28.68028,
"longitude": 121.44278,
"name": "Jiaojiang",
@@ -8103,7 +7320,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857553,
"latitude": 35.78333,
"longitude": 139.9,
"name": "Matsudo",
@@ -8113,7 +7329,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3459505,
"latitude": -21.76417,
"longitude": -43.35028,
"name": "Juiz de Fora",
@@ -8123,7 +7338,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2644210,
"latitude": 53.41058,
"longitude": -2.97794,
"name": "Liverpool",
@@ -8133,7 +7347,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855207,
"latitude": 34.71667,
"longitude": 135.33333,
"name": "Nishinomiya",
@@ -8143,17 +7356,24 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 480562,
"latitude": 54.20213,
"longitude": 37.64429,
"name": "Tula",
"population": 468825
},
+ {
+ "country_code": "US",
+ "elevation": 21,
+ "feature_code": "PPL",
+ "latitude": 40.56233,
+ "longitude": -74.13986,
+ "name": "Staten Island",
+ "population": 468730
+ },
{
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859730,
"latitude": 35.805,
"longitude": 139.72056,
"name": "Kawaguchi",
@@ -8163,7 +7383,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA",
- "geonameid": 5389489,
"latitude": 38.58157,
"longitude": -121.4944,
"name": "Sacramento",
@@ -8173,7 +7392,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783621,
"latitude": 27.68667,
"longitude": 106.90722,
"name": "Zunyi",
@@ -8183,7 +7401,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1805953,
"latitude": 30.7522,
"longitude": 120.75,
"name": "Jiaxing",
@@ -8193,7 +7410,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470142,
"latitude": -22.76417,
"longitude": -43.39944,
"name": "Belford Roxo",
@@ -8203,7 +7419,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269321,
"latitude": 32.73333,
"longitude": 74.86667,
"name": "Jammu",
@@ -8213,7 +7428,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036109,
"latitude": 42.90361,
"longitude": 125.13583,
"name": "Liaoyuan",
@@ -8223,9 +7437,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 214481,
- "latitude": -5.89583,
- "longitude": 22.41778,
+ "latitude": -5.89624,
+ "longitude": 22.41659,
"name": "Kananga",
"population": 463546
},
@@ -8233,7 +7446,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1018725,
"latitude": -29.12106,
"longitude": 26.214,
"name": "Bloemfontein",
@@ -8243,7 +7455,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1790587,
"latitude": 32.0422,
"longitude": 112.14479,
"name": "Xiangyang",
@@ -8253,7 +7464,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 5367929,
"latitude": 33.76696,
"longitude": -118.18923,
"name": "Long Beach",
@@ -8263,7 +7473,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3099434,
"latitude": 54.35205,
"longitude": 18.64637,
"name": "Gda\u0144sk",
@@ -8273,7 +7482,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2346229,
"latitude": 4.9517,
"longitude": 8.322,
"name": "Calabar",
@@ -8283,7 +7491,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1798998,
"latitude": 26.5479,
"longitude": 101.70539,
"name": "Dadukou",
@@ -8293,7 +7500,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3459712,
"latitude": -26.30444,
"longitude": -48.84556,
"name": "Joinville",
@@ -8303,7 +7509,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 170017,
"latitude": 35.13179,
"longitude": 36.75783,
"name": "\u1e28am\u0101h",
@@ -8313,7 +7518,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2803138,
"latitude": 51.21989,
"longitude": 4.40346,
"name": "Antwerpen",
@@ -8323,7 +7527,6 @@
"country_code": "US",
"elevation": 274,
"feature_code": "PPL",
- "geonameid": 4393217,
"latitude": 39.09973,
"longitude": -94.57857,
"name": "Kansas City",
@@ -8333,7 +7536,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1860243,
"latitude": 36.59444,
"longitude": 136.62556,
"name": "Kanazawa-shi",
@@ -8343,7 +7545,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861968,
"latitude": 35.71972,
"longitude": 139.92472,
"name": "Ichikawa",
@@ -8353,7 +7554,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7701384,
"latitude": 38.37396,
"longitude": 27.1352,
"name": "Karaba\u011flar",
@@ -8363,7 +7563,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1679432,
"latitude": 6.91028,
"longitude": 122.07389,
"name": "Zamboanga",
@@ -8373,7 +7572,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 548408,
"latitude": 58.59665,
"longitude": 49.66007,
"name": "Kirov",
@@ -8383,7 +7581,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253914,
"latitude": 23.18333,
"longitude": 75.76667,
"name": "Ujjain",
@@ -8393,7 +7590,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1733432,
"latitude": 5.9749,
"longitude": 116.0724,
"name": "Kota Kinabalu",
@@ -8403,7 +7599,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4011743,
"latitude": 24.03333,
"longitude": -104.66667,
"name": "Durango",
@@ -8413,7 +7608,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456283,
"latitude": -22.88333,
"longitude": -43.10361,
"name": "Niter\u00f3i",
@@ -8423,7 +7617,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808392,
"latitude": 37.73222,
"longitude": 115.70111,
"name": "Hengshui",
@@ -8433,7 +7626,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 101628,
"latitude": 28.38333,
"longitude": 36.58333,
"name": "Tab\u016bk",
@@ -8443,7 +7635,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1630789,
"latitude": -0.03333,
"longitude": 109.33333,
"name": "Pontianak",
@@ -8453,7 +7644,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2644688,
"latitude": 53.79648,
"longitude": -1.54785,
"name": "Leeds",
@@ -8463,7 +7653,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1873757,
"latitude": 38.7375,
"longitude": 125.40778,
"name": "Namp\u2019o",
@@ -8473,7 +7662,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1729564,
"latitude": 10.66667,
"longitude": 122.95,
"name": "Bacolod City",
@@ -8483,7 +7671,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448877,
"latitude": -22.80389,
"longitude": -43.37222,
"name": "S\u00e3o Jo\u00e3o de Meriti",
@@ -8493,7 +7680,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1701500,
"latitude": 10.63111,
"longitude": 122.97889,
"name": "Mansilingan",
@@ -8503,7 +7689,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 702658,
"latitude": 48.56705,
"longitude": 39.31706,
"name": "Luhans\u2019k",
@@ -8513,37 +7698,24 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1636544,
"latitude": 1.487,
"longitude": 124.8455,
"name": "Manado",
"population": 451893
},
- {
- "country_code": "KZ",
- "elevation": 0,
- "feature_code": "PPL",
- "geonameid": 609655,
- "latitude": 50.06667,
- "longitude": 54.86667,
- "name": "Karagandy",
- "population": 451800
- },
{
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1519942,
- "latitude": 49.79889,
- "longitude": 73.09944,
- "name": "Qaraghandy",
+ "latitude": 49.83333,
+ "longitude": 73.1658,
+ "name": "Karagandy",
"population": 451800
},
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805518,
"latitude": 35.405,
"longitude": 116.58139,
"name": "Jining",
@@ -8553,7 +7725,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2501152,
"latitude": 36.365,
"longitude": 6.61472,
"name": "Constantine",
@@ -8563,7 +7734,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1849053,
"latitude": 36.56583,
"longitude": 139.88361,
"name": "Utsunomiya-shi",
@@ -8573,7 +7743,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 298333,
"latitude": 37.16708,
"longitude": 38.79392,
"name": "\u015eanl\u0131urfa",
@@ -8583,7 +7752,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038087,
"latitude": 40.9725,
"longitude": 117.93611,
"name": "Chengde",
@@ -8593,7 +7761,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788046,
"latitude": 34.01667,
"longitude": 113.81667,
"name": "Xuchang",
@@ -8603,7 +7770,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1854487,
"latitude": 33.23806,
"longitude": 131.6125,
"name": "\u014cita-shi",
@@ -8613,7 +7779,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3827407,
"latitude": 19.43,
"longitude": -99.09917,
"name": "Venustiano Carranza",
@@ -8623,7 +7788,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3837213,
"latitude": -31.5375,
"longitude": -68.53639,
"name": "San Juan",
@@ -8633,7 +7797,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2638077,
"latitude": 53.38297,
"longitude": -1.4659,
"name": "Sheffield",
@@ -8643,7 +7806,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 569696,
"latitude": 56.13222,
"longitude": 47.25194,
"name": "Cheboksary",
@@ -8653,7 +7815,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1017780,
"latitude": -26.21197,
"longitude": 28.25958,
"name": "Boksburg",
@@ -8662,8 +7823,7 @@
{
"country_code": "PH",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1721080,
+ "feature_code": "PPLA",
"latitude": 8.48222,
"longitude": 124.64722,
"name": "Cagayan de Oro",
@@ -8673,7 +7833,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1926099,
"latitude": 33.83916,
"longitude": 132.76574,
"name": "Matsuyama-shi",
@@ -8683,7 +7842,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1865387,
"latitude": 34.71667,
"longitude": 135.41667,
"name": "Amagasaki",
@@ -8693,7 +7851,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3728338,
"latitude": 18.54114,
"longitude": -72.39922,
"name": "Carrefour",
@@ -8703,7 +7860,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1715430,
"latitude": 14.32944,
"longitude": 120.93667,
"name": "Dasmari\u00f1as",
@@ -8713,7 +7869,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 304922,
"latitude": 38.35018,
"longitude": 38.31667,
"name": "Malatya",
@@ -8723,7 +7878,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1348818,
"latitude": 22.50833,
"longitude": 88.21528,
"name": "Nangi",
@@ -8733,7 +7887,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3672486,
"latitude": 4.81333,
"longitude": -75.69611,
"name": "Pereira",
@@ -8743,7 +7896,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265873,
"latitude": 11.25,
"longitude": 75.76667,
"name": "Calicut",
@@ -8753,7 +7905,6 @@
"country_code": "US",
"elevation": 378,
"feature_code": "PPL",
- "geonameid": 5304391,
"latitude": 33.42227,
"longitude": -111.82264,
"name": "Mesa",
@@ -8763,7 +7914,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1308465,
"latitude": 16.49139,
"longitude": 97.62556,
"name": "Mawlamyine",
@@ -8772,8 +7922,7 @@
{
"country_code": "US",
"elevation": 3,
- "feature_code": "PPL",
- "geonameid": 4791259,
+ "feature_code": "PPLA2",
"latitude": 36.85293,
"longitude": -75.97798,
"name": "Virginia Beach",
@@ -8783,7 +7932,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3696183,
"latitude": -3.74806,
"longitude": -73.24722,
"name": "Iquitos",
@@ -8793,7 +7941,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858311,
"latitude": 34.58333,
"longitude": 133.76667,
"name": "Kurashiki",
@@ -8803,7 +7950,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7628416,
"latitude": 41.10652,
"longitude": 28.86847,
"name": "Sultangazi",
@@ -8813,7 +7959,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2231320,
"latitude": 9.3,
"longitude": 13.4,
"name": "Garoua",
@@ -8823,7 +7968,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2513416,
"latitude": 37.98704,
"longitude": -1.13004,
"name": "Murcia",
@@ -8833,7 +7977,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 152224,
"latitude": -2.51667,
"longitude": 32.9,
"name": "Mwanza",
@@ -8843,7 +7986,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254361,
"latitude": 8.73333,
"longitude": 77.7,
"name": "Tirunelveli",
@@ -8853,7 +7995,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2650225,
"latitude": 55.95206,
"longitude": -3.19648,
"name": "Edinburgh",
@@ -8863,7 +8004,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2229798,
"latitude": 12.07689,
"longitude": 15.03063,
"name": "Kouss\u00e9ri",
@@ -8873,7 +8013,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264115,
"latitude": 20.55,
"longitude": 74.53333,
"name": "M\u0101legaon",
@@ -8883,7 +8022,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523466,
"latitude": 25.88333,
"longitude": -97.5,
"name": "Heroica Matamoros",
@@ -8893,7 +8031,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 554234,
"latitude": 54.70649,
"longitude": 20.51095,
"name": "Kaliningrad",
@@ -8903,7 +8040,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 94824,
"latitude": 32.61603,
"longitude": 44.02488,
"name": "Karbala",
@@ -8913,7 +8049,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3407669,
"latitude": -1.36556,
"longitude": -48.37222,
"name": "Ananindeua",
@@ -8923,7 +8058,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650527,
"latitude": -1.26753,
"longitude": 116.82887,
"name": "Balikpapan",
@@ -8933,7 +8067,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5907364,
"latitude": 43.68341,
"longitude": -79.76633,
"name": "Brampton",
@@ -8943,7 +8076,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2972315,
"latitude": 43.60426,
"longitude": 1.44367,
"name": "Toulouse",
@@ -8953,7 +8085,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1513157,
"latitude": 40.9983,
"longitude": 71.67257,
"name": "Namangan",
@@ -8963,7 +8094,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2334802,
"latitude": 12.98943,
"longitude": 7.60063,
"name": "Katsina",
@@ -8973,7 +8103,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 940909,
"latitude": -27.98644,
"longitude": 26.70661,
"name": "Welkom",
@@ -8983,7 +8112,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3668605,
"latitude": 11.24079,
"longitude": -74.19904,
"name": "Santa Marta",
@@ -8993,7 +8121,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360829,
"latitude": 30.9745,
"longitude": 31.16499,
"name": "Al Ma\u1e29allah al Kubr\u00e1",
@@ -9003,7 +8130,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2654675,
"latitude": 51.45523,
"longitude": -2.59665,
"name": "Bristol",
@@ -9013,7 +8139,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269407,
"latitude": 21.01667,
"longitude": 75.56667,
"name": "J\u0101lgaon",
@@ -9023,7 +8148,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848313,
"latitude": 35.28361,
"longitude": 139.66722,
"name": "Yokosuka",
@@ -9033,7 +8157,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279105,
"latitude": 20.73333,
"longitude": 77.0,
"name": "Akola",
@@ -9043,7 +8166,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276533,
"latitude": 15.85212,
"longitude": 74.50447,
"name": "Belgaum",
@@ -9053,7 +8175,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7303419,
"latitude": 31.78336,
"longitude": 35.23388,
"name": "East Jerusalem",
@@ -9063,7 +8184,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801757,
"latitude": 28.58084,
"longitude": 121.37715,
"name": "Luqiao",
@@ -9073,7 +8193,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 571476,
"latitude": 53.25209,
"longitude": 34.37167,
"name": "Bryansk",
@@ -9083,7 +8202,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 741763,
"latitude": 40.93567,
"longitude": 29.15507,
"name": "Maltepe",
@@ -9093,7 +8211,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3532497,
"latitude": 19.48889,
"longitude": -99.18361,
"name": "Azcapotzalco",
@@ -9103,17 +8220,15 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3526617,
"latitude": 19.53333,
"longitude": -96.91667,
- "name": "Jalapa Enr\u00edquez",
+ "name": "Xalapa de Enr\u00edquez",
"population": 425148
},
{
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3648559,
"latitude": 10.13333,
"longitude": -64.7,
"name": "Barcelona",
@@ -9123,7 +8238,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1815395,
"latitude": 23.66513,
"longitude": 116.63786,
"name": "Chaozhou",
@@ -9133,7 +8247,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3060972,
"latitude": 48.14816,
"longitude": 17.10674,
"name": "Bratislava",
@@ -9143,7 +8256,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271439,
"latitude": 24.78333,
"longitude": 85.0,
"name": "Gaya",
@@ -9153,7 +8265,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253986,
"latitude": 24.57117,
"longitude": 73.69183,
"name": "Udaipur",
@@ -9163,7 +8274,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 922741,
"latitude": -10.98139,
"longitude": 26.73333,
"name": "Likasi",
@@ -9173,7 +8283,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 360502,
"latitude": 25.69893,
"longitude": 32.6421,
"name": "Luxor",
@@ -9183,7 +8292,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3680656,
"latitude": 4.43889,
"longitude": -75.23222,
"name": "Ibagu\u00e9",
@@ -9193,7 +8301,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1795855,
"latitude": 30.01102,
"longitude": 120.57153,
"name": "Shaoxing",
@@ -9203,7 +8310,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 555312,
"latitude": 56.99719,
"longitude": 40.97139,
"name": "Ivanovo",
@@ -9213,7 +8319,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 315368,
"latitude": 39.90861,
"longitude": 41.27694,
"name": "Erzurum",
@@ -9223,7 +8328,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2350841,
"latitude": 7.25256,
"longitude": 5.19312,
"name": "Akure",
@@ -9233,7 +8337,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359783,
"latitude": 27.18096,
"longitude": 31.18368,
"name": "Asy\u016b\u0163",
@@ -9243,7 +8346,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1642858,
"latitude": -1.6,
"longitude": 103.61667,
"name": "Jambi",
@@ -9253,7 +8355,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 360761,
"latitude": 31.03637,
"longitude": 31.38069,
"name": "Al Man\u015f\u016brah",
@@ -9263,7 +8364,6 @@
"country_code": "US",
"elevation": 320,
"feature_code": "PPLA",
- "geonameid": 4180439,
"latitude": 33.749,
"longitude": -84.38798,
"name": "Atlanta",
@@ -9273,7 +8373,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266122,
"latitude": 22.35,
"longitude": 82.68333,
"name": "Korba",
@@ -9283,7 +8382,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275362,
"latitude": 23.78333,
"longitude": 85.96667,
"name": "Bok\u0101ro",
@@ -9293,7 +8391,6 @@
"country_code": "PR",
"elevation": 7,
"feature_code": "PPLC",
- "geonameid": 4568127,
"latitude": 18.46633,
"longitude": -66.10572,
"name": "San Juan",
@@ -9303,7 +8400,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 922773,
"latitude": -10.71484,
"longitude": 25.46674,
"name": "Kolwezi",
@@ -9313,7 +8409,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2193733,
"latitude": -36.86667,
"longitude": 174.76667,
"name": "Auckland",
@@ -9323,7 +8418,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1164408,
"latitude": 27.70516,
"longitude": 68.85738,
"name": "Sukkur",
@@ -9333,7 +8427,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263780,
"latitude": 12.91723,
"longitude": 74.85603,
"name": "Mangalore",
@@ -9343,7 +8436,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801934,
"latitude": 33.57167,
"longitude": 114.03528,
"name": "Luohe",
@@ -9353,7 +8445,6 @@
"country_code": "US",
"elevation": 1832,
"feature_code": "PPLA2",
- "geonameid": 5417598,
"latitude": 38.83388,
"longitude": -104.82136,
"name": "Colorado Springs",
@@ -9363,7 +8454,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1518980,
"latitude": 42.3,
"longitude": 69.6,
"name": "Shymkent",
@@ -9373,7 +8463,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1787351,
"latitude": 37.8575,
"longitude": 113.56333,
"name": "Yangquan",
@@ -9383,7 +8472,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 532288,
"latitude": 53.41861,
"longitude": 59.04722,
"name": "Magnitogorsk",
@@ -9393,7 +8481,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269006,
"latitude": 25.43333,
"longitude": 78.58333,
"name": "Jh\u0101nsi",
@@ -9403,7 +8490,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3463237,
"latitude": -27.59667,
"longitude": -48.54917,
"name": "Florian\u00f3polis",
@@ -9413,7 +8499,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2911285,
"latitude": 53.56667,
"longitude": 10.1,
"name": "Wandsbek",
@@ -9423,7 +8508,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3449433,
"latitude": -23.96083,
"longitude": -46.33361,
"name": "Santos",
@@ -9433,7 +8517,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3778045,
"latitude": 9.75,
"longitude": -63.17667,
"name": "Matur\u00edn",
@@ -9443,7 +8526,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 143083,
"latitude": 38.2498,
"longitude": 48.2933,
"name": "Ardab\u012bl",
@@ -9453,7 +8535,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1856177,
"latitude": 32.74472,
"longitude": 129.87361,
"name": "Nagasaki-shi",
@@ -9463,7 +8544,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038120,
"latitude": 41.57028,
"longitude": 120.45861,
"name": "Chaoyang",
@@ -9473,7 +8553,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 281133,
"latitude": 31.5,
"longitude": 34.46667,
"name": "Gaza",
@@ -9483,7 +8562,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 538560,
"latitude": 51.73733,
"longitude": 36.18735,
"name": "Kursk",
@@ -9493,7 +8571,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5992996,
"latitude": 43.42537,
"longitude": -80.5112,
"name": "Kitchener",
@@ -9503,7 +8580,6 @@
"country_code": "US",
"elevation": 323,
"feature_code": "PPLA2",
- "geonameid": 5074472,
"latitude": 41.25861,
"longitude": -95.93779,
"name": "Omaha",
@@ -9513,7 +8589,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 292913,
"latitude": 24.19167,
"longitude": 55.76056,
"name": "Al \u2018Ayn",
@@ -9523,7 +8598,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1846266,
"latitude": 33.50972,
"longitude": 126.52194,
"name": "Jeju",
@@ -9533,7 +8607,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3703443,
"latitude": 8.9936,
"longitude": -79.51973,
"name": "Panam\u00e1",
@@ -9543,7 +8616,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794904,
"latitude": 32.56667,
"longitude": 110.78333,
"name": "Shiyan",
@@ -9553,7 +8625,6 @@
"country_code": "PL",
"elevation": 149,
"feature_code": "PPLA",
- "geonameid": 3083829,
"latitude": 53.42894,
"longitude": 14.55302,
"name": "Szczecin",
@@ -9563,7 +8634,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1587923,
"latitude": 10.95,
"longitude": 106.81667,
"name": "Bi\u00ean H\u00f2a",
@@ -9573,7 +8643,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3587902,
"latitude": 14.52694,
"longitude": -90.5875,
"name": "Villa Nueva",
@@ -9583,7 +8652,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3451353,
"latitude": -19.76694,
"longitude": -44.08667,
"name": "Ribeir\u00e3o das Neves",
@@ -9593,7 +8661,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862540,
"latitude": 34.81352,
"longitude": 135.64914,
"name": "Hirakata",
@@ -9603,7 +8670,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1645528,
"latitude": -8.65,
"longitude": 115.21667,
"name": "Denpasar",
@@ -9613,7 +8679,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2540483,
"latitude": 34.68052,
"longitude": -1.90764,
"name": "Oujda",
@@ -9623,7 +8688,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 347497,
"latitude": 30.78847,
"longitude": 31.00192,
"name": "Tanda",
@@ -9633,7 +8697,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 971421,
"latitude": -27.75796,
"longitude": 29.9318,
"name": "Newcastle",
@@ -9643,7 +8706,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3514450,
"latitude": 19.26222,
"longitude": -99.1075,
"name": "Xochimilco",
@@ -9653,7 +8715,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261529,
"latitude": 14.43333,
"longitude": 79.96667,
"name": "Nellore",
@@ -9663,7 +8724,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1675151,
"latitude": 24.80361,
"longitude": 120.96861,
"name": "Hsinchu",
@@ -9673,7 +8733,6 @@
"country_code": "US",
"elevation": 96,
"feature_code": "PPLA",
- "geonameid": 4487042,
"latitude": 35.7721,
"longitude": -78.63861,
"name": "Raleigh",
@@ -9683,7 +8742,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036389,
"latitude": 45.3,
"longitude": 130.96667,
"name": "Jixi",
@@ -9693,7 +8751,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 148730,
"latitude": -6.16394,
"longitude": 39.19793,
"name": "Zanzibar",
@@ -9703,7 +8760,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6696918,
"latitude": 24.99368,
"longitude": 121.29696,
"name": "Taoyuan City",
@@ -9713,7 +8769,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3981369,
"latitude": 20.61667,
"longitude": -103.23333,
"name": "Tonal\u00e1",
@@ -9723,7 +8778,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 372753,
"latitude": 15.45099,
"longitude": 36.39998,
"name": "Kassala",
@@ -9733,7 +8787,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2512989,
"latitude": 39.56939,
"longitude": 2.65024,
"name": "Palma",
@@ -9743,7 +8796,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 911148,
"latitude": -12.79614,
"longitude": 28.24767,
"name": "Kitwe",
@@ -9753,9 +8805,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 98854,
- "latitude": 31.05205,
- "longitude": 46.26102,
+ "latitude": 31.05799,
+ "longitude": 46.25726,
"name": "An N\u0101\u015fir\u012byah",
"population": 400249
},
@@ -9763,7 +8814,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 480060,
"latitude": 56.86049,
"longitude": 35.87603,
"name": "Tver\u2019",
@@ -9773,7 +8823,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7498240,
"latitude": 31.78199,
"longitude": 35.21961,
"name": "West Jerusalem",
@@ -9783,7 +8832,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857871,
"latitude": 35.54028,
"longitude": 139.45083,
"name": "Machida",
@@ -9793,7 +8841,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1806408,
"latitude": 21.85,
"longitude": 111.96667,
"name": "Yangjiang",
@@ -9803,7 +8850,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPLA2",
- "geonameid": 4164138,
"latitude": 25.77427,
"longitude": -80.19366,
"name": "Miami",
@@ -9813,7 +8859,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 706369,
"latitude": 49.42161,
"longitude": 26.99653,
"name": "Khmel\u2019nyts\u2019kyy",
@@ -9823,7 +8868,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1863641,
"latitude": 35.42291,
"longitude": 136.76039,
"name": "Gifu-shi",
@@ -9833,7 +8877,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254348,
"latitude": 11.11541,
"longitude": 77.35456,
"name": "Tiruppur",
@@ -9843,7 +8886,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1678228,
"latitude": 25.12825,
"longitude": 121.7419,
"name": "Keelung",
@@ -9853,7 +8895,6 @@
"country_code": "US",
"elevation": 199,
"feature_code": "PPLA2",
- "geonameid": 5150529,
"latitude": 41.4995,
"longitude": -81.69541,
"name": "Cleveland",
@@ -9863,7 +8904,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2643123,
"latitude": 53.48095,
"longitude": -2.23743,
"name": "Manchester",
@@ -9873,7 +8913,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526700,
"latitude": 19.39667,
"longitude": -99.08472,
"name": "Iztacalco",
@@ -9883,7 +8922,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6159905,
"latitude": 49.10635,
"longitude": -122.82509,
"name": "Surrey",
@@ -9893,7 +8931,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445026,
"latitude": -20.32972,
"longitude": -40.2925,
"name": "Vila Velha",
@@ -9903,7 +8940,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791681,
"latitude": 36.71,
"longitude": 119.10194,
"name": "Weifang",
@@ -9913,7 +8949,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864092,
"latitude": 35.34194,
"longitude": 139.47,
"name": "Fujisawa",
@@ -9923,7 +8958,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 901344,
"latitude": -12.95867,
"longitude": 28.63659,
"name": "Ndola",
@@ -9933,7 +8967,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259091,
"latitude": 8.88056,
"longitude": 76.59167,
"name": "Kollam",
@@ -9943,7 +8976,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447779,
"latitude": -20.12861,
"longitude": -40.30778,
"name": "Serra",
@@ -9953,7 +8985,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 740264,
"latitude": 41.28667,
"longitude": 36.33,
"name": "Samsun",
@@ -9963,7 +8994,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 588409,
"latitude": 59.43696,
"longitude": 24.75353,
"name": "Tallinn",
@@ -9973,7 +9003,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2234974,
"latitude": 5.95266,
"longitude": 10.15824,
"name": "Bamenda",
@@ -9983,7 +9012,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 379003,
"latitude": 13.18421,
"longitude": 30.21669,
"name": "El Obeid",
@@ -9992,8 +9020,7 @@
{
"country_code": "CO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3688928,
+ "feature_code": "PPLA3",
"latitude": 6.33732,
"longitude": -75.55795,
"name": "Bello",
@@ -10003,7 +9030,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1788694,
"latitude": 34.59972,
"longitude": 119.15944,
"name": "Xinpu",
@@ -10013,7 +9039,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734052,
"latitude": 5.8402,
"longitude": 118.1179,
"name": "Sandakan",
@@ -10023,7 +9048,6 @@
"country_code": "US",
"elevation": 220,
"feature_code": "PPLA2",
- "geonameid": 4553433,
"latitude": 36.15398,
"longitude": -95.99278,
"name": "Tulsa",
@@ -10033,7 +9057,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 107304,
"latitude": 26.32599,
"longitude": 43.97497,
"name": "Buraydah",
@@ -10043,7 +9066,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1138336,
"latitude": 31.61332,
"longitude": 65.71013,
"name": "Kandah\u0101r",
@@ -10053,7 +9075,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPLA2",
- "geonameid": 5378538,
"latitude": 37.80437,
"longitude": -122.2708,
"name": "Oakland",
@@ -10063,7 +9084,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464739,
"latitude": -23.68611,
"longitude": -46.62278,
"name": "Diadema",
@@ -10073,7 +9093,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1812545,
"latitude": 23.04889,
"longitude": 113.74472,
"name": "Dongguan",
@@ -10083,7 +9102,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185186,
"latitude": 23.45778,
"longitude": 91.20444,
"name": "Comilla",
@@ -10093,7 +9111,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606590,
"latitude": 13.59934,
"longitude": 100.59675,
"name": "Samut Prakan",
@@ -10103,7 +9120,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1033356,
"latitude": -15.11646,
"longitude": 39.2666,
"name": "Nampula",
@@ -10113,7 +9129,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2374775,
"latitude": 11.86357,
"longitude": -15.59767,
"name": "Bissau",
@@ -10122,8 +9137,7 @@
{
"country_code": "PH",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1711005,
+ "feature_code": "PPLA",
"latitude": 10.69694,
"longitude": 122.56444,
"name": "Iloilo",
@@ -10133,7 +9147,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 105072,
"latitude": 18.30639,
"longitude": 42.72917,
"name": "Kham\u012bs Mushayt",
@@ -10143,7 +9156,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3467693,
"latitude": -21.75,
"longitude": -41.3,
"name": "Campos",
@@ -10153,7 +9165,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3429577,
"latitude": -27.46056,
"longitude": -58.98389,
"name": "Resistencia",
@@ -10163,7 +9174,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2214846,
"latitude": 32.37535,
"longitude": 15.09254,
"name": "Mi\u015fr\u0101tah",
@@ -10173,7 +9183,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3457381,
"latitude": -23.66778,
"longitude": -46.46139,
"name": "Mau\u00e1",
@@ -10183,7 +9192,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2395914,
"latitude": 6.44852,
"longitude": 2.35566,
"name": "Abomey-Calavi",
@@ -10193,7 +9201,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2947416,
"latitude": 51.48333,
"longitude": 7.21667,
"name": "Bochum",
@@ -10203,7 +9210,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849837,
"latitude": 34.78244,
"longitude": 135.46932,
"name": "Toyonaka",
@@ -10213,7 +9219,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470044,
"latitude": -19.96778,
"longitude": -44.19833,
"name": "Betim",
@@ -10223,7 +9228,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863917,
"latitude": 34.48333,
"longitude": 133.36667,
"name": "Fukuyama",
@@ -10233,7 +9237,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3726786,
"latitude": 18.54472,
"longitude": -72.30278,
"name": "Delmas 73",
@@ -10243,7 +9246,6 @@
"country_code": "US",
"elevation": 253,
"feature_code": "PPLA2",
- "geonameid": 5037649,
"latitude": 44.97997,
"longitude": -93.26384,
"name": "Minneapolis",
@@ -10253,7 +9255,6 @@
"country_code": "US",
"elevation": 396,
"feature_code": "PPLA2",
- "geonameid": 4281730,
"latitude": 37.69224,
"longitude": -97.33754,
"name": "Wichita",
@@ -10263,7 +9264,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3672778,
"latitude": 1.21361,
"longitude": -77.28111,
"name": "Pasto",
@@ -10273,7 +9273,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2179537,
"latitude": -41.28664,
"longitude": 174.77557,
"name": "Wellington",
@@ -10283,7 +9282,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2515270,
"latitude": 28.09973,
"longitude": -15.41343,
"name": "Las Palmas de Gran Canaria",
@@ -10293,7 +9291,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466537,
"latitude": -29.16806,
"longitude": -51.17944,
"name": "Caxias do Sul",
@@ -10303,7 +9300,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 520494,
"latitude": 57.91944,
"longitude": 59.965,
"name": "Nizhniy Tagil",
@@ -10313,7 +9309,6 @@
"country_code": "DE",
"elevation": 51,
"feature_code": "PPLX",
- "geonameid": 6941055,
"latitude": 51.50168,
"longitude": 7.1756,
"name": "Bochum-Hordel",
@@ -10323,7 +9318,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812955,
"latitude": 37.44861,
"longitude": 116.2925,
"name": "Dezhou",
@@ -10333,7 +9327,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 694423,
"latitude": 44.58883,
"longitude": 33.5224,
"name": "Sevastopol\u2019",
@@ -10343,7 +9336,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 986822,
"latitude": -26.08577,
"longitude": 27.77515,
"name": "Krugersdorp",
@@ -10353,7 +9345,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260482,
"latitude": 22.69417,
"longitude": 88.37444,
"name": "P\u0101nih\u0101ti",
@@ -10363,7 +9354,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849846,
"latitude": 34.76667,
"longitude": 137.38333,
"name": "Toyohashi",
@@ -10373,7 +9363,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784130,
"latitude": 33.63333,
"longitude": 114.63333,
"name": "Zhoukou",
@@ -10383,7 +9372,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6050610,
"latitude": 45.56995,
"longitude": -73.692,
"name": "Laval",
@@ -10393,7 +9381,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3939459,
"latitude": -12.06667,
"longitude": -75.23333,
"name": "Huancayo",
@@ -10403,7 +9390,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 702320,
"latitude": 48.04782,
"longitude": 37.92576,
"name": "Makiyivka",
@@ -10413,7 +9399,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1798449,
"latitude": 25.43944,
"longitude": 119.01028,
"name": "Putian",
@@ -10423,7 +9408,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 310859,
"latitude": 37.5847,
"longitude": 36.9264,
"name": "Kahramanmara\u015f",
@@ -10433,7 +9417,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1852383,
"latitude": 34.18333,
"longitude": 135.2,
"name": "Shimminatoch\u014d",
@@ -10443,7 +9426,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3183875,
"latitude": 41.3275,
"longitude": 19.81889,
"name": "Tirana",
@@ -10453,7 +9435,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3448639,
"latitude": -20.81972,
"longitude": -49.37944,
"name": "S\u00e3o Jos\u00e9 do Rio Preto",
@@ -10463,7 +9444,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 598316,
"latitude": 54.9,
"longitude": 23.9,
"name": "Kaunas",
@@ -10473,7 +9453,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033574,
"latitude": 40.61028,
"longitude": 115.04472,
"name": "Xuanhua",
@@ -10483,7 +9462,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1734810,
"latitude": 2.7297,
"longitude": 101.9381,
"name": "Seremban",
@@ -10493,7 +9471,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798654,
"latitude": 27.61667,
"longitude": 113.85,
"name": "Pingxiang",
@@ -10503,7 +9480,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 298117,
"latitude": 38.49239,
"longitude": 43.38311,
"name": "Van",
@@ -10513,7 +9489,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPLA",
- "geonameid": 5856195,
"latitude": 21.30694,
"longitude": -157.85833,
"name": "Honolulu",
@@ -10523,7 +9498,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3176959,
"latitude": 43.76667,
"longitude": 11.25,
"name": "Florence",
@@ -10533,7 +9507,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3181928,
"latitude": 44.49381,
"longitude": 11.33875,
"name": "Bologna",
@@ -10543,7 +9516,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 145459,
"latitude": 30.3392,
"longitude": 48.3043,
"name": "\u0100b\u0101d\u0101n",
@@ -10553,7 +9525,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7304020,
"latitude": 27.93557,
"longitude": 109.59961,
"name": "Fenghuang",
@@ -10563,7 +9534,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3629672,
"latitude": 10.21667,
"longitude": -64.61667,
"name": "Puerto La Cruz",
@@ -10573,7 +9543,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3078610,
"latitude": 49.19522,
"longitude": 16.60796,
"name": "Brno",
@@ -10582,10 +9551,9 @@
{
"country_code": "BY",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 625665,
- "latitude": 53.9141,
- "longitude": 30.33764,
+ "feature_code": "PPLA2",
+ "latitude": 53.9168,
+ "longitude": 30.3449,
"name": "Mahilyow",
"population": 369200
},
@@ -10593,7 +9561,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1855612,
"latitude": 34.68505,
"longitude": 135.80485,
"name": "Nara-shi",
@@ -10603,7 +9570,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279228,
"latitude": 19.08333,
"longitude": 74.73333,
"name": "Ahmadnagar",
@@ -10613,7 +9579,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272691,
"latitude": 20.9,
"longitude": 74.78333,
"name": "Dhule",
@@ -10623,7 +9588,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3393536,
"latitude": -8.00889,
"longitude": -34.85528,
"name": "Olinda",
@@ -10633,7 +9597,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2544571,
"latitude": 34.26101,
"longitude": -6.5802,
"name": "Kenitra",
@@ -10643,7 +9606,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3102014,
"latitude": 53.1235,
"longitude": 18.00762,
"name": "Bydgoszcz",
@@ -10653,7 +9615,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1735227,
"latitude": 3.8077,
"longitude": 103.326,
"name": "Kuantan",
@@ -10663,7 +9624,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3514519,
"latitude": 19.26667,
"longitude": -98.93333,
"name": "Xico",
@@ -10673,7 +9633,6 @@
"country_code": "US",
"elevation": 184,
"feature_code": "PPL",
- "geonameid": 4671240,
"latitude": 32.73569,
"longitude": -97.10807,
"name": "Arlington",
@@ -10683,7 +9642,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1845759,
"latitude": 36.8065,
"longitude": 127.1522,
"name": "Tenan",
@@ -10693,7 +9651,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3630297,
"latitude": 10.47226,
"longitude": -66.80155,
"name": "Petare",
@@ -10703,7 +9660,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1172128,
"latitude": 27.55508,
"longitude": 68.21414,
"name": "L\u0101rk\u0101na",
@@ -10713,7 +9669,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2192362,
"latitude": -43.53333,
"longitude": 172.63333,
"name": "Christchurch",
@@ -10723,7 +9678,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 487846,
"latitude": 45.0428,
"longitude": 41.9734,
"name": "Stavropol\u2019",
@@ -10733,7 +9687,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3514670,
"latitude": 17.98333,
"longitude": -92.91667,
"name": "Villahermosa",
@@ -10743,7 +9696,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1849814,
"latitude": 35.08333,
"longitude": 137.15,
"name": "Toyota",
@@ -10753,7 +9705,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2187404,
"latitude": -36.99282,
"longitude": 174.87986,
"name": "Manukau City",
@@ -10763,7 +9714,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1784853,
"latitude": 23.05116,
"longitude": 112.45972,
"name": "Zhaoqing",
@@ -10773,7 +9723,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6947637,
"latitude": 40.9833,
"longitude": 29.1167,
"name": "Ata\u015fehir",
@@ -10783,7 +9732,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276300,
"latitude": 25.25,
"longitude": 87.0,
"name": "Bh\u0101galpur",
@@ -10793,7 +9741,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1165221,
"latitude": 31.71306,
"longitude": 73.97833,
"name": "Sheikhupura",
@@ -10803,7 +9750,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3466998,
"latitude": -23.5225,
"longitude": -46.83556,
"name": "Carapicu\u00edba",
@@ -10813,7 +9759,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2805753,
"latitude": 51.26667,
"longitude": 7.18333,
"name": "Wuppertal",
@@ -10823,7 +9768,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2294877,
"latitude": 9.40078,
"longitude": -0.8393,
"name": "Tamale",
@@ -10833,7 +9777,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2014407,
"latitude": 51.82605,
"longitude": 107.60979,
"name": "Ulan-Ude",
@@ -10843,7 +9786,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1856215,
"latitude": 36.65139,
"longitude": 138.18111,
"name": "Nagano-shi",
@@ -10853,7 +9795,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2362344,
"latitude": 11.17715,
"longitude": -4.2979,
"name": "Bobo-Dioulasso",
@@ -10863,7 +9804,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 765876,
"latitude": 51.25,
"longitude": 22.56667,
"name": "Lublin",
@@ -10873,7 +9813,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852140,
"latitude": 35.60902,
"longitude": 139.73017,
"name": "Shinagawa-ku",
@@ -10883,7 +9822,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6324729,
"latitude": 44.64533,
"longitude": -63.57239,
"name": "Halifax",
@@ -10893,7 +9831,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817993,
"latitude": 30.50917,
"longitude": 117.05056,
"name": "Anqing",
@@ -10903,7 +9840,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1516905,
"latitude": 42.9,
"longitude": 71.36667,
"name": "Taraz",
@@ -10913,7 +9849,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 693805,
"latitude": 44.95719,
"longitude": 34.11079,
"name": "Simferopol\u2019",
@@ -10923,7 +9858,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1689395,
"latitude": 14.81389,
"longitude": 121.04528,
"name": "San Jose del Monte",
@@ -10933,7 +9867,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3675443,
"latitude": 5.06889,
"longitude": -75.51738,
"name": "Manizales",
@@ -10943,7 +9876,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1948005,
"latitude": 37.47722,
"longitude": 126.86639,
"name": "Kwangmy\u014fng",
@@ -10953,7 +9885,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 111453,
"latitude": 36.6736,
"longitude": 48.4787,
"name": "Zanj\u0101n",
@@ -10963,7 +9894,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112539,
"latitude": 37.05,
"longitude": 140.88333,
"name": "Iwaki",
@@ -10973,7 +9903,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1729524,
"latitude": 14.45903,
"longitude": 120.92903,
"name": "Bacoor",
@@ -10983,7 +9912,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130629,
"latitude": 43.76778,
"longitude": 142.37028,
"name": "Asahikawa",
@@ -10993,7 +9921,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842943,
"latitude": 35.23417,
"longitude": 128.88111,
"name": "Kimhae",
@@ -11003,7 +9930,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 581049,
"latitude": 64.5401,
"longitude": 40.5433,
"name": "Arkhangel\u2019sk",
@@ -11013,7 +9939,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2855598,
"latitude": 52.56926,
"longitude": 13.40186,
"name": "Berlin Pankow",
@@ -11023,7 +9948,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1651531,
"latitude": -3.69543,
"longitude": 128.1814,
"name": "Ambon",
@@ -11033,7 +9957,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1629001,
"latitude": -0.5,
"longitude": 117.15,
"name": "Samarinda",
@@ -11043,7 +9966,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3827406,
"latitude": 19.385,
"longitude": -99.165,
"name": "Benito Juarez",
@@ -11053,7 +9975,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3128026,
"latitude": 43.26271,
"longitude": -2.92528,
"name": "Bilbao",
@@ -11063,7 +9984,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3996322,
"latitude": 23.21667,
"longitude": -106.41667,
"name": "Mazatl\u00e1n",
@@ -11073,7 +9993,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3835869,
"latitude": -27.79511,
"longitude": -64.26149,
"name": "Santiago del Estero",
@@ -11083,7 +10002,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850910,
"latitude": 34.84833,
"longitude": 135.61678,
"name": "Takatsuki",
@@ -11093,7 +10011,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 734077,
"latitude": 40.64028,
"longitude": 22.94389,
"name": "Thessalon\u00edki",
@@ -11103,7 +10020,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3827408,
"latitude": 19.4225,
"longitude": -99.20278,
"name": "Miguel Hidalgo",
@@ -11113,7 +10029,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3673899,
"latitude": 2.9273,
"longitude": -75.28188,
"name": "Neiva",
@@ -11123,7 +10038,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854376,
"latitude": 34.95,
"longitude": 137.16667,
"name": "Okazaki",
@@ -11133,7 +10047,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 141681,
"latitude": 27.1865,
"longitude": 56.2808,
"name": "Bandar \u2018Abb\u0101s",
@@ -11143,7 +10056,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 689558,
"latitude": 49.23278,
"longitude": 28.48097,
"name": "Vinnytsya",
@@ -11153,7 +10065,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4018390,
"latitude": 25.76667,
"longitude": -100.2,
"name": "Apodaca",
@@ -11163,7 +10074,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817968,
"latitude": 26.25,
"longitude": 105.93333,
"name": "Anshun",
@@ -11173,7 +10083,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851483,
"latitude": 34.76143,
"longitude": 135.51567,
"name": "Suita",
@@ -11183,7 +10092,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526682,
"latitude": 19.31667,
"longitude": -98.88333,
"name": "Ixtapaluca",
@@ -11193,7 +10101,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1926004,
"latitude": 34.22611,
"longitude": 135.1675,
"name": "Wakayama-shi",
@@ -11203,7 +10110,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1674504,
"latitude": 23.97694,
"longitude": 121.60444,
"name": "Hualian",
@@ -11213,7 +10119,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259239,
"latitude": 22.23333,
"longitude": 76.4,
"name": "Pun\u0101sa",
@@ -11223,7 +10128,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262332,
"latitude": 29.46667,
"longitude": 77.68333,
"name": "Muzaffarnagar",
@@ -11233,7 +10137,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841245,
"latitude": 35.20806,
"longitude": 128.5725,
"name": "Masan",
@@ -11243,7 +10146,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3522551,
"latitude": 27.47629,
"longitude": -99.51639,
"name": "Nuevo Laredo",
@@ -11253,7 +10155,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 117574,
"latitude": 35.3144,
"longitude": 46.9923,
"name": "Sanandaj",
@@ -11263,7 +10164,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265014,
"latitude": 18.4,
"longitude": 76.58333,
"name": "L\u0101t\u016br",
@@ -11273,7 +10173,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3403642,
"latitude": -7.23056,
"longitude": -35.88111,
"name": "Campina Grande",
@@ -11283,7 +10182,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5950267,
"latitude": 43.65421,
"longitude": -79.56711,
"name": "Etobicoke",
@@ -11293,7 +10191,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3566067,
"latitude": 21.38083,
"longitude": -77.91694,
"name": "Camag\u00fcey",
@@ -11303,7 +10200,6 @@
"country_code": "US",
"elevation": 123,
"feature_code": "PPLA2",
- "geonameid": 5325738,
"latitude": 35.37329,
"longitude": -119.01871,
"name": "Bakersfield",
@@ -11313,7 +10209,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6058560,
"latitude": 42.98339,
"longitude": -81.23304,
"name": "London",
@@ -11323,7 +10218,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2038067,
"latitude": 42.26833,
"longitude": 118.96361,
"name": "Chifeng",
@@ -11333,7 +10227,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1877030,
"latitude": 39.83167,
"longitude": 127.61861,
"name": "H\u016dngnam",
@@ -11343,7 +10236,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1526273,
"latitude": 51.1801,
"longitude": 71.44598,
"name": "Astana",
@@ -11353,7 +10245,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 578072,
"latitude": 50.61074,
"longitude": 36.58015,
"name": "Belgorod",
@@ -11363,7 +10254,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 371760,
"latitude": 13.1629,
"longitude": 32.66347,
"name": "Kosti",
@@ -11373,7 +10263,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035261,
"latitude": 45.8,
"longitude": 130.85,
"name": "Qitaihe",
@@ -11383,7 +10272,6 @@
"country_code": "QA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 290030,
"latitude": 25.27932,
"longitude": 51.52245,
"name": "Doha",
@@ -11393,7 +10281,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3625829,
"latitude": 10.22388,
"longitude": -67.47288,
"name": "Turmero",
@@ -11403,7 +10290,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515463,
"latitude": 19.28167,
"longitude": -99.00333,
"name": "Tlahuac",
@@ -11413,7 +10299,6 @@
"country_code": "US",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 4335045,
"latitude": 29.95465,
"longitude": -90.07507,
"name": "New Orleans",
@@ -11423,7 +10308,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3529947,
"latitude": 18.91667,
"longitude": -99.25,
"name": "Cuernavaca",
@@ -11433,7 +10317,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1501321,
"latitude": 55.45,
"longitude": 65.33333,
"name": "Kurgan",
@@ -11443,7 +10326,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1182637,
"latitude": 32.97568,
"longitude": 74.07926,
"name": "Bhimbar",
@@ -11453,9 +10335,8 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 620127,
- "latitude": 55.19048,
- "longitude": 30.2033,
+ "latitude": 55.1904,
+ "longitude": 30.2049,
"name": "Vitsyebsk",
"population": 342700
},
@@ -11463,7 +10344,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3667849,
"latitude": 10.91843,
"longitude": -74.76459,
"name": "Soledad",
@@ -11473,7 +10353,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1795060,
"latitude": 22.51682,
"longitude": 113.38521,
"name": "Shiqi",
@@ -11483,7 +10362,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3453643,
"latitude": -22.72528,
"longitude": -47.64917,
"name": "Piracicaba",
@@ -11493,7 +10371,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832157,
"latitude": 34.74417,
"longitude": 127.73778,
"name": "Reisui",
@@ -11503,7 +10380,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2657896,
"latitude": 47.36667,
"longitude": 8.55,
"name": "Z\u00fcrich",
@@ -11513,7 +10389,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265767,
"latitude": 17.48333,
"longitude": 78.41667,
"name": "K\u016bkatpalli",
@@ -11523,7 +10398,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1175892,
"latitude": 31.27154,
"longitude": 72.32842,
"name": "Jhang Sadr",
@@ -11533,7 +10407,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 161325,
"latitude": -3.36667,
"longitude": 36.68333,
"name": "Arusha",
@@ -11543,7 +10416,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278840,
"latitude": 13.09833,
"longitude": 80.16222,
"name": "Ambatt\u016br",
@@ -11553,7 +10425,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112141,
"latitude": 37.4,
"longitude": 140.38333,
"name": "K\u014driyama",
@@ -11563,7 +10434,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 728193,
"latitude": 42.15,
"longitude": 24.75,
"name": "Plovdiv",
@@ -11573,7 +10443,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1106542,
"latitude": -18.01274,
"longitude": 31.07555,
"name": "Chitungwiza",
@@ -11583,7 +10452,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859924,
"latitude": 35.85444,
"longitude": 139.96889,
"name": "Kashiwa",
@@ -11593,7 +10461,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 173576,
"latitude": 35.51484,
"longitude": 35.77684,
"name": "Latakia",
@@ -11603,7 +10470,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529660,
"latitude": 41.12306,
"longitude": 80.26444,
"name": "Aksu",
@@ -11613,7 +10479,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4004330,
"latitude": 20.68333,
"longitude": -101.35,
"name": "Irapuato",
@@ -11623,7 +10488,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850181,
"latitude": 35.79916,
"longitude": 139.46903,
"name": "Tokorozawa",
@@ -11633,7 +10497,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2644668,
"latitude": 52.6386,
"longitude": -1.13169,
"name": "Leicester",
@@ -11643,7 +10506,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3435217,
"latitude": -27.4806,
"longitude": -58.8341,
"name": "Corrientes",
@@ -11653,7 +10515,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 553915,
"latitude": 54.5293,
"longitude": 36.27542,
"name": "Kaluga",
@@ -11663,7 +10524,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3396016,
"latitude": 0.03889,
"longitude": -51.06639,
"name": "Macap\u00e1",
@@ -11673,7 +10533,6 @@
"country_code": "US",
"elevation": 122,
"feature_code": "PPLX",
- "geonameid": 4498303,
"latitude": 35.78682,
"longitude": -78.66389,
"name": "West Raleigh",
@@ -11683,7 +10542,6 @@
"country_code": "FR",
"elevation": 25,
"feature_code": "PPLA2",
- "geonameid": 2990440,
"latitude": 43.70313,
"longitude": 7.26608,
"name": "Nice",
@@ -11693,7 +10551,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1876373,
"latitude": 37.97083,
"longitude": 126.55444,
"name": "Kaes\u014fng",
@@ -11703,7 +10560,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3645532,
"latitude": 8.12923,
"longitude": -63.54086,
"name": "Ciudad Bol\u00edvar",
@@ -11713,7 +10569,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859740,
"latitude": 35.90861,
"longitude": 139.48528,
"name": "Kawagoe",
@@ -11723,7 +10578,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185098,
"latitude": 23.89,
"longitude": 90.40583,
"name": "Tungi",
@@ -11733,7 +10587,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276509,
"latitude": 15.15,
"longitude": 76.93333,
"name": "Bellary",
@@ -11743,7 +10596,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460644,
"latitude": -23.48611,
"longitude": -46.34833,
"name": "Itaquaquecetuba",
@@ -11753,7 +10605,6 @@
"country_code": "US",
"elevation": 48,
"feature_code": "PPL",
- "geonameid": 5323810,
"latitude": 33.83529,
"longitude": -117.9145,
"name": "Anaheim",
@@ -11763,7 +10614,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPLA2",
- "geonameid": 4174757,
"latitude": 27.94752,
"longitude": -82.45843,
"name": "Tampa",
@@ -11773,7 +10623,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1859146,
"latitude": 33.55972,
"longitude": 133.53111,
"name": "K\u014dchi-shi",
@@ -11783,7 +10632,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3470279,
"latitude": -22.31472,
"longitude": -49.06056,
"name": "Bauru",
@@ -11793,7 +10641,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3621849,
"latitude": 9.93333,
"longitude": -84.08333,
"name": "San Jos\u00e9",
@@ -11803,7 +10650,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2521978,
"latitude": 38.34517,
"longitude": -0.48149,
"name": "Alicante",
@@ -11813,7 +10659,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1851100,
"latitude": 34.34028,
"longitude": 134.04333,
"name": "Takamatsu-shi",
@@ -11823,7 +10668,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034439,
"latitude": 42.29306,
"longitude": 123.84139,
"name": "Tieling",
@@ -11833,7 +10677,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 119505,
"latitude": 36.2797,
"longitude": 50.0049,
"name": "Qazv\u012bn",
@@ -11843,7 +10686,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262330,
"latitude": 26.11667,
"longitude": 85.4,
"name": "Muzaffarpur",
@@ -11853,7 +10695,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268257,
"latitude": 22.67111,
"longitude": 88.37472,
"name": "K\u0101m\u0101rh\u0101ti",
@@ -11863,7 +10704,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 364103,
"latitude": 14.40118,
"longitude": 33.51989,
"name": "Wad Medani",
@@ -11873,7 +10713,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1805741,
"latitude": 35.50222,
"longitude": 112.83278,
"name": "Jincheng",
@@ -11883,7 +10722,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456814,
"latitude": -16.735,
"longitude": -43.86167,
"name": "Montes Claros",
@@ -11893,7 +10731,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2949186,
"latitude": 52.03333,
"longitude": 8.53333,
"name": "Bielefeld",
@@ -11903,7 +10740,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 425378,
"latitude": -3.3822,
"longitude": 29.3644,
"name": "Bujumbura",
@@ -11913,7 +10749,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 127319,
"latitude": 30.4397,
"longitude": 48.1664,
"name": "Khorramshahr",
@@ -11923,7 +10758,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263364,
"latitude": 27.5,
"longitude": 77.68333,
"name": "Mathura",
@@ -11933,7 +10767,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 127349,
"latitude": 33.48778,
"longitude": 48.35583,
"name": "Khorram\u0101b\u0101d",
@@ -11943,7 +10776,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3583096,
"latitude": 13.73472,
"longitude": -89.15139,
"name": "Soyapango",
@@ -11953,7 +10785,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260107,
"latitude": 30.32667,
"longitude": 76.40028,
"name": "Pati\u0101la",
@@ -11963,7 +10794,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1866923,
"latitude": 39.15278,
"longitude": 127.44361,
"name": "W\u014fnsan",
@@ -11973,7 +10803,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6545310,
"latitude": 52.52003,
"longitude": 13.40489,
"name": "Berlin Mitte",
@@ -11983,9 +10812,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1520240,
- "latitude": 52.3,
- "longitude": 76.95,
+ "latitude": 52.27401,
+ "longitude": 77.00438,
"name": "Pavlodar",
"population": 329002
},
@@ -11993,7 +10821,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2519240,
"latitude": 37.88333,
"longitude": -4.76667,
"name": "C\u00f3rdoba",
@@ -12003,7 +10830,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274693,
"latitude": 19.95,
"longitude": 79.3,
"name": "Chandrapur",
@@ -12013,7 +10839,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3467467,
"latitude": -29.91778,
"longitude": -51.18361,
"name": "Canoas",
@@ -12023,7 +10848,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2172517,
"latitude": -35.28346,
"longitude": 149.12807,
"name": "Canberra",
@@ -12033,7 +10857,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 491422,
"latitude": 43.59917,
"longitude": 39.72569,
"name": "Sochi",
@@ -12043,7 +10866,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2044757,
"latitude": 41.79556,
"longitude": 129.77583,
"name": "Ch\u2019\u014fngjin",
@@ -12053,7 +10875,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033467,
"latitude": 42.9075,
"longitude": 129.50778,
"name": "Yanji",
@@ -12063,7 +10884,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275960,
"latitude": 25.35,
"longitude": 74.63333,
"name": "Bh\u012blw\u0101ra",
@@ -12073,9 +10893,8 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2528910,
- "latitude": 35.57109,
- "longitude": -5.37242,
+ "latitude": 35.57845,
+ "longitude": -5.36837,
"name": "T\u00e9touan",
"population": 326261
},
@@ -12083,17 +10902,15 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2113719,
"latitude": 39.71806,
"longitude": 140.10333,
- "name": "Akita-shi",
+ "name": "Akita Shi",
"population": 325837
},
{
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3457001,
"latitude": -23.52278,
"longitude": -46.18833,
"name": "Mogi das Cruzes",
@@ -12103,7 +10920,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1849876,
"latitude": 36.69528,
"longitude": 137.21139,
"name": "Toyama-shi",
@@ -12113,7 +10929,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3693528,
"latitude": -5.2,
"longitude": -80.63333,
"name": "Piura",
@@ -12123,7 +10938,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1254187,
"latitude": 10.51667,
"longitude": 76.21667,
"name": "Trich\u016br",
@@ -12133,7 +10947,6 @@
"country_code": "US",
"elevation": 1648,
"feature_code": "PPL",
- "geonameid": 5412347,
"latitude": 39.72943,
"longitude": -104.83192,
"name": "Aurora",
@@ -12143,7 +10956,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275198,
"latitude": 19.31667,
"longitude": 84.78333,
"name": "Brahmapur",
@@ -12153,7 +10965,6 @@
"country_code": "US",
"elevation": 35,
"feature_code": "PPLA2",
- "geonameid": 5392900,
"latitude": 33.74557,
"longitude": -117.86783,
"name": "Santa Ana",
@@ -12163,7 +10974,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448136,
"latitude": -23.96306,
"longitude": -46.39194,
"name": "S\u00e3o Vicente",
@@ -12173,7 +10983,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 515012,
"latitude": 52.96508,
"longitude": 36.0785,
"name": "Or\u00ebl",
@@ -12183,7 +10992,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793879,
"latitude": 31.71111,
"longitude": 113.36306,
"name": "Suizhou",
@@ -12193,9 +11001,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 99608,
- "latitude": 31.84064,
- "longitude": 47.1396,
+ "latitude": 31.83588,
+ "longitude": 47.144,
"name": "Al \u2018Am\u0101rah",
"population": 323302
},
@@ -12203,7 +11010,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 472231,
"latitude": 48.78583,
"longitude": 44.77973,
"name": "Volzhskiy",
@@ -12213,7 +11019,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3665900,
"latitude": 4.142,
"longitude": -73.62664,
"name": "Villavicencio",
@@ -12223,7 +11028,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3459462,
"latitude": -23.18639,
"longitude": -46.88417,
"name": "Jundia\u00ed",
@@ -12233,7 +11037,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3701329,
"latitude": 9.03333,
"longitude": -79.5,
"name": "San Miguelito",
@@ -12243,7 +11046,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 491687,
"latitude": 54.7818,
"longitude": 32.0401,
"name": "Smolensk",
@@ -12253,7 +11055,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454244,
"latitude": -31.77194,
"longitude": -52.3425,
"name": "Pelotas",
@@ -12263,7 +11064,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 706448,
"latitude": 46.65581,
"longitude": 32.6178,
"name": "Kherson",
@@ -12273,7 +11073,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256728,
"latitude": 27.88333,
"longitude": 79.91667,
"name": "Sh\u0101hjah\u0101npur",
@@ -12283,7 +11082,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2113126,
"latitude": 39.71667,
"longitude": 140.11667,
"name": "Akita",
@@ -12293,7 +11091,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2228373,
"latitude": 10.59095,
"longitude": 14.31592,
"name": "Maroua",
@@ -12303,7 +11100,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3430545,
"latitude": -34.65344,
"longitude": -58.61975,
"name": "Mor\u00f3n",
@@ -12313,7 +11109,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3472287,
"latitude": -16.32667,
"longitude": -48.95278,
"name": "An\u00e1polis",
@@ -12323,7 +11118,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3522210,
"latitude": 20.11697,
"longitude": -98.73329,
"name": "Pachuca de Soto",
@@ -12333,7 +11127,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256515,
"latitude": 13.93157,
"longitude": 75.56791,
"name": "Shimoga",
@@ -12343,7 +11136,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1216265,
"latitude": 39.65417,
"longitude": 66.95972,
"name": "Samarqand",
@@ -12353,7 +11145,6 @@
"country_code": "US",
"elevation": 142,
"feature_code": "PPLA2",
- "geonameid": 4407066,
"latitude": 38.62727,
"longitude": -90.19789,
"name": "Saint Louis",
@@ -12363,7 +11154,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 524305,
"latitude": 68.97917,
"longitude": 33.09251,
"name": "Murmansk",
@@ -12373,7 +11163,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2646003,
"latitude": 51.53622,
"longitude": -0.10304,
"name": "Islington",
@@ -12383,7 +11172,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3556969,
"latitude": 20.88722,
"longitude": -76.26306,
"name": "Holgu\u00edn",
@@ -12393,7 +11181,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1520316,
"latitude": 49.96466,
"longitude": 82.60898,
"name": "Ust\u2019-Kamenogorsk",
@@ -12403,9 +11190,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 99762,
- "latitude": 31.99051,
- "longitude": 44.93063,
+ "latitude": 31.99289,
+ "longitude": 44.92552,
"name": "Ad D\u012bw\u0101n\u012byah",
"population": 318801
},
@@ -12413,7 +11199,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1787858,
"latitude": 28.45322,
"longitude": 117.9686,
"name": "Shangrao",
@@ -12423,7 +11208,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1635882,
"latitude": -8.58333,
"longitude": 116.11667,
"name": "Mataram",
@@ -12433,7 +11217,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1514588,
"latitude": 40.78206,
"longitude": 72.34424,
"name": "Andijon",
@@ -12442,8 +11225,7 @@
{
"country_code": "RO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 675810,
+ "feature_code": "PPLA2",
"latitude": 47.16667,
"longitude": 27.6,
"name": "Ia\u015fi",
@@ -12453,7 +11235,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3106672,
"latitude": 41.65518,
"longitude": -4.72372,
"name": "Valladolid",
@@ -12463,7 +11244,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 696643,
"latitude": 49.59373,
"longitude": 34.54073,
"name": "Poltava",
@@ -12473,7 +11253,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1261481,
"latitude": 28.63576,
"longitude": 77.22445,
"name": "New Delhi",
@@ -12483,7 +11262,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858729,
"latitude": 35.88333,
"longitude": 139.78333,
"name": "Koshigaya",
@@ -12493,7 +11271,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 473249,
"latitude": 43.03667,
"longitude": 44.66778,
"name": "Vladikavkaz",
@@ -12503,7 +11280,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 627904,
"latitude": 53.6884,
"longitude": 23.8258,
"name": "Hrodna",
@@ -12513,7 +11289,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3096472,
"latitude": 50.25842,
"longitude": 19.02754,
"name": "Katowice",
@@ -12523,7 +11298,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258076,
"latitude": 28.9,
"longitude": 76.56667,
"name": "Rohtak",
@@ -12533,7 +11307,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290251,
"latitude": 52.50097,
"longitude": 13.29097,
"name": "Berlin Wilmersdorf",
@@ -12543,7 +11316,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038569,
"latitude": 45.61667,
"longitude": 122.81667,
"name": "Baicheng",
@@ -12553,7 +11325,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3698304,
"latitude": -9.08528,
"longitude": -78.57833,
"name": "Chimbote",
@@ -12563,7 +11334,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 681290,
"latitude": 46.76667,
"longitude": 23.6,
"name": "Cluj-Napoca",
@@ -12573,7 +11343,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1720681,
"latitude": 14.21167,
"longitude": 121.16528,
"name": "Calamba",
@@ -12583,7 +11352,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3182351,
"latitude": 41.11773,
"longitude": 16.85118,
"name": "Bari",
@@ -12593,7 +11361,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2347470,
"latitude": 10.31344,
"longitude": 9.84327,
"name": "Bauchi",
@@ -12603,7 +11370,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3689560,
"latitude": 4.53389,
"longitude": -75.68111,
"name": "Armenia",
@@ -12613,9 +11379,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 99131,
- "latitude": 32.5147,
- "longitude": 45.81902,
+ "latitude": 32.5128,
+ "longitude": 45.81817,
"name": "Al K\u016bt",
"population": 315162
},
@@ -12623,9 +11388,8 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 665087,
- "latitude": 45.74944,
- "longitude": 21.22722,
+ "latitude": 45.75372,
+ "longitude": 21.22571,
"name": "Timi\u015foara",
"population": 315053
},
@@ -12633,7 +11397,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 739549,
"latitude": 41.06046,
"longitude": 28.98717,
"name": "\u015ei\u015fli",
@@ -12643,7 +11406,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3667905,
"latitude": 4.57937,
"longitude": -74.21682,
"name": "Soacha",
@@ -12653,7 +11415,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2344082,
"latitude": 6.60086,
"longitude": 3.48818,
"name": "Ebute Ikorodu",
@@ -12663,7 +11424,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530569,
"latitude": 19.63167,
"longitude": -99.11028,
"name": "Coacalco",
@@ -12673,7 +11433,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2036434,
"latitude": 40.76432,
"longitude": 120.85327,
"name": "Lianshan",
@@ -12683,7 +11442,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 317109,
"latitude": 37.77417,
"longitude": 29.0875,
"name": "Denizli",
@@ -12693,7 +11451,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2946447,
"latitude": 50.73333,
"longitude": 7.1,
"name": "Bonn",
@@ -12703,7 +11460,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2525068,
"latitude": 37.50213,
"longitude": 15.08719,
"name": "Catania",
@@ -12713,7 +11469,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3068799,
"latitude": 49.83465,
"longitude": 18.28204,
"name": "Ostrava",
@@ -12723,7 +11478,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 726050,
"latitude": 43.21667,
"longitude": 27.91667,
"name": "Varna",
@@ -12733,7 +11487,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3444924,
"latitude": -20.31944,
"longitude": -40.33778,
"name": "Vit\u00f3ria",
@@ -12743,7 +11496,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1792621,
"latitude": 30.95,
"longitude": 117.78333,
"name": "Wusong",
@@ -12753,7 +11505,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1711082,
"latitude": 8.25,
"longitude": 124.4,
"name": "Iligan City",
@@ -12763,7 +11514,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3941584,
"latitude": -13.51833,
"longitude": -71.97806,
"name": "Cusco",
@@ -12773,7 +11523,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3429886,
"latitude": -27.36708,
"longitude": -55.89608,
"name": "Posadas",
@@ -12783,7 +11532,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 569223,
"latitude": 59.13333,
"longitude": 37.9,
"name": "Cherepovets",
@@ -12793,7 +11541,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3457671,
"latitude": -23.42528,
"longitude": -51.93861,
"name": "Maring\u00e1",
@@ -12803,7 +11550,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1856717,
"latitude": 31.91111,
"longitude": 131.42389,
"name": "Miyazaki-shi",
@@ -12813,7 +11559,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214189,
"latitude": 3.6253,
"longitude": 98.864,
"name": "Percut",
@@ -12823,7 +11568,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3693345,
"latitude": -8.37915,
"longitude": -74.55387,
"name": "Pucallpa",
@@ -12833,7 +11577,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1805680,
"latitude": 29.2947,
"longitude": 117.20789,
"name": "Jingdezhen",
@@ -12843,7 +11586,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3461789,
"latitude": -23.99306,
"longitude": -46.25639,
"name": "Guaruj\u00e1",
@@ -12853,7 +11595,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 473247,
"latitude": 56.13655,
"longitude": 40.39658,
"name": "Vladimir",
@@ -12863,7 +11604,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3899539,
"latitude": -23.65,
"longitude": -70.4,
"name": "Antofagasta",
@@ -12873,7 +11613,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1016670,
"latitude": -29.27016,
"longitude": 26.7052,
"name": "Botshabelo",
@@ -12883,7 +11622,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1649150,
"latitude": -3.80044,
"longitude": 102.26554,
"name": "Bengkulu",
@@ -12893,17 +11631,24 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516355,
"latitude": 22.21667,
"longitude": -97.85,
"name": "Tampico",
"population": 309003
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLL",
+ "latitude": 53.37616,
+ "longitude": -3.10501,
+ "name": "Metropolitan Borough of Wirral",
+ "population": 308800
+ },
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2025339,
"latitude": 52.03171,
"longitude": 113.50087,
"name": "Chita",
@@ -12913,7 +11658,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2652221,
"latitude": 52.40656,
"longitude": -1.51217,
"name": "Coventry",
@@ -12923,7 +11667,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3666304,
"latitude": 10.46314,
"longitude": -73.25322,
"name": "Valledupar",
@@ -12933,7 +11676,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005867,
"latitude": 25.81667,
"longitude": -100.33333,
"name": "General Escobedo",
@@ -12943,7 +11685,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2873891,
"latitude": 49.48833,
"longitude": 8.46472,
"name": "Mannheim",
@@ -12953,7 +11694,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 710735,
"latitude": 51.50551,
"longitude": 31.28488,
"name": "Chernihiv",
@@ -12963,7 +11703,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 248946,
"latitude": 32.55556,
"longitude": 35.85,
"name": "Irbid",
@@ -12973,7 +11712,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254089,
"latitude": 13.34222,
"longitude": 77.10167,
"name": "Tumk\u016br",
@@ -12983,7 +11721,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846052,
"latitude": 35.19278,
"longitude": 128.08472,
"name": "Chinju",
@@ -12993,7 +11730,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734199,
"latitude": 4.2498,
"longitude": 117.8871,
"name": "Tawau",
@@ -13003,7 +11739,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812101,
"latitude": 37.45639,
"longitude": 118.48556,
"name": "Dongying",
@@ -13013,7 +11748,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271885,
"latitude": 27.15,
"longitude": 78.41667,
"name": "F\u012broz\u0101b\u0101d",
@@ -13023,7 +11757,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 361320,
"latitude": 29.30995,
"longitude": 30.8418,
"name": "Al Fayy\u016bm",
@@ -13033,7 +11766,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3662762,
"latitude": -8.76194,
"longitude": -63.90389,
"name": "Porto Velho",
@@ -13043,7 +11775,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4014875,
"latitude": 20.51667,
"longitude": -100.81667,
"name": "Celaya",
@@ -13053,7 +11784,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3836564,
"latitude": -24.19456,
"longitude": -65.29712,
"name": "San Salvador de Jujuy",
@@ -13063,7 +11793,6 @@
"country_code": "US",
"elevation": 233,
"feature_code": "PPLA2",
- "geonameid": 5206379,
"latitude": 40.44062,
"longitude": -79.99589,
"name": "Pittsburgh",
@@ -13073,7 +11802,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1016181,
"latitude": -26.23656,
"longitude": 28.36938,
"name": "Brakpan",
@@ -13083,7 +11811,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1701966,
"latitude": 14.5832,
"longitude": 121.0409,
"name": "Mandaluyong City",
@@ -13093,7 +11820,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261258,
"latitude": 18.66667,
"longitude": 78.11667,
"name": "Niz\u0101m\u0101b\u0101d",
@@ -13103,7 +11829,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265711,
"latitude": 23.73333,
"longitude": 86.85,
"name": "Kulti",
@@ -13113,7 +11838,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPLA2",
- "geonameid": 4683416,
"latitude": 27.80058,
"longitude": -97.39638,
"name": "Corpus Christi",
@@ -13123,7 +11847,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3463011,
"latitude": -20.53861,
"longitude": -47.40083,
"name": "Franca",
@@ -13133,7 +11856,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258932,
"latitude": 16.98333,
"longitude": 81.78333,
"name": "R\u0101jahmundry",
@@ -13143,7 +11865,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 680332,
"latitude": 44.31667,
"longitude": 23.8,
"name": "Craiova",
@@ -13153,7 +11874,6 @@
"country_code": "US",
"elevation": 252,
"feature_code": "PPLA2",
- "geonameid": 5387877,
"latitude": 33.95335,
"longitude": -117.39616,
"name": "Riverside",
@@ -13162,8 +11882,7 @@
{
"country_code": "RO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 680963,
+ "feature_code": "PPLA2",
"latitude": 44.18333,
"longitude": 28.65,
"name": "Constan\u0163a",
@@ -13173,7 +11892,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 498698,
"latitude": 54.1838,
"longitude": 45.1749,
"name": "Saransk",
@@ -13183,7 +11901,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1133616,
"latitude": 36.70904,
"longitude": 67.11087,
"name": "Maz\u0101r-e Shar\u012bf",
@@ -13193,7 +11910,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 586523,
"latitude": 40.68278,
"longitude": 46.36056,
"name": "Ganja",
@@ -13203,7 +11919,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2645425,
"latitude": 53.7446,
"longitude": -0.33525,
"name": "Hull",
@@ -13213,7 +11928,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2653822,
"latitude": 51.48,
"longitude": -3.18,
"name": "Cardiff",
@@ -13223,7 +11937,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 321836,
"latitude": 37.88738,
"longitude": 41.13221,
"name": "Batman",
@@ -13233,7 +11946,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277029,
"latitude": 23.24056,
"longitude": 87.86944,
"name": "Barddham\u0101n",
@@ -13243,7 +11955,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1177654,
"latitude": 32.57284,
"longitude": 74.07897,
"name": "Gujr\u0101t",
@@ -13253,7 +11964,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1856035,
"latitude": 26.2125,
"longitude": 127.68111,
"name": "Naha-shi",
@@ -13263,7 +11973,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 629634,
"latitude": 52.09755,
"longitude": 23.68775,
"name": "Brest",
@@ -13273,7 +11982,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1170880,
"latitude": 34.20195,
"longitude": 72.05254,
"name": "Mard\u0101n",
@@ -13283,7 +11991,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1490624,
"latitude": 61.25,
"longitude": 73.41667,
"name": "Surgut",
@@ -13293,7 +12000,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLS",
- "geonameid": 1787323,
"latitude": 24.78081,
"longitude": 110.48967,
"name": "Yangshuo",
@@ -13303,7 +12009,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1519922,
"latitude": 44.85278,
"longitude": 65.50917,
"name": "Qyzylorda",
@@ -13313,7 +12018,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1735106,
"latitude": 5.41123,
"longitude": 100.33543,
"name": "George Town",
@@ -13323,7 +12027,6 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 373303,
"latitude": 4.85165,
"longitude": 31.58247,
"name": "Juba",
@@ -13333,7 +12036,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 442301,
"latitude": 39.96833,
"longitude": 32.73083,
"name": "Batikent",
@@ -13343,7 +12045,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3632308,
"latitude": 8.59524,
"longitude": -71.1434,
"name": "M\u00e9rida",
@@ -13353,7 +12054,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1730737,
"latitude": 15.15,
"longitude": 120.58333,
"name": "Angeles City",
@@ -13363,7 +12063,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2654993,
"latitude": 53.79391,
"longitude": -1.75206,
"name": "Bradford",
@@ -13373,7 +12072,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1687687,
"latitude": 15.16222,
"longitude": 120.5675,
"name": "Santol",
@@ -13383,7 +12081,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859891,
"latitude": 35.24762,
"longitude": 136.97229,
"name": "Kasugai",
@@ -13393,7 +12090,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1642588,
"latitude": -8.16604,
"longitude": 113.70317,
"name": "Jember",
@@ -13403,7 +12099,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2130658,
"latitude": 40.82444,
"longitude": 140.74,
"name": "Aomori-shi",
@@ -13413,7 +12108,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1853574,
"latitude": 35.00444,
"longitude": 135.86833,
"name": "\u014ctsu-shi",
@@ -13423,7 +12117,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277065,
"latitude": 22.71667,
"longitude": 88.51667,
"name": "B\u0101r\u0101sat",
@@ -13433,7 +12126,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 315808,
"latitude": 38.67431,
"longitude": 39.22321,
"name": "Elaz\u0131\u011f",
@@ -13443,7 +12135,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLQ",
- "geonameid": 7281931,
"latitude": 50.36386,
"longitude": -119.34997,
"name": "Okanagan",
@@ -13453,7 +12144,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 710791,
"latitude": 49.42854,
"longitude": 32.06207,
"name": "Cherkasy",
@@ -13463,7 +12153,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3105976,
"latitude": 42.23282,
"longitude": -8.72264,
"name": "Vigo",
@@ -13473,7 +12162,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1847966,
"latitude": 34.63333,
"longitude": 134.98333,
"name": "Akashi",
@@ -13483,7 +12171,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277539,
"latitude": 22.64611,
"longitude": 88.34028,
"name": "B\u0101li",
@@ -13493,7 +12180,6 @@
"country_code": "US",
"elevation": 191,
"feature_code": "PPLA2",
- "geonameid": 4508722,
"latitude": 39.162,
"longitude": -84.45689,
"name": "Cincinnati",
@@ -13503,7 +12189,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270022,
"latitude": 29.16667,
"longitude": 75.71667,
"name": "His\u0101r",
@@ -13513,7 +12198,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258599,
"latitude": 28.81667,
"longitude": 79.03333,
"name": "R\u0101mpur",
@@ -13523,7 +12207,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848373,
"latitude": 34.96667,
"longitude": 136.61667,
"name": "Yokkaichi",
@@ -13533,7 +12216,6 @@
"country_code": "US",
"elevation": 305,
"feature_code": "PPL",
- "geonameid": 4297999,
"latitude": 38.0498,
"longitude": -84.45855,
"name": "Lexington-Fayette",
@@ -13543,7 +12225,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2111834,
"latitude": 39.70361,
"longitude": 141.1525,
"name": "Morioka-shi",
@@ -13553,7 +12234,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 472459,
"latitude": 59.2187,
"longitude": 39.8886,
"name": "Vologda",
@@ -13563,7 +12243,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3868121,
"latitude": -33.02457,
"longitude": -71.55183,
"name": "Vi\u00f1a del Mar",
@@ -13573,7 +12252,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 692194,
"latitude": 50.9216,
"longitude": 34.80029,
"name": "Sumy",
@@ -13583,7 +12261,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2112923,
"latitude": 37.75,
"longitude": 140.46778,
"name": "Fukushima-shi",
@@ -13593,7 +12270,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 677697,
"latitude": 45.45,
"longitude": 28.05,
"name": "Gala\u0163i",
@@ -13603,7 +12279,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3469968,
"latitude": -26.91944,
"longitude": -49.06611,
"name": "Blumenau",
@@ -13613,7 +12288,6 @@
"country_code": "IN",
"elevation": 200,
"feature_code": "PPL",
- "geonameid": 6954929,
"latitude": 28.49615,
"longitude": 77.53601,
"name": "Greater Noida",
@@ -13623,7 +12297,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279746,
"latitude": 28.58,
"longitude": 77.33,
"name": "Noida",
@@ -13633,7 +12306,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3463030,
"latitude": -25.54778,
"longitude": -54.58806,
"name": "Foz do Igua\u00e7u",
@@ -13643,7 +12315,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 109571,
"latitude": 25.36457,
"longitude": 49.56532,
"name": "Al Huf\u016bf",
@@ -13653,7 +12324,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268561,
"latitude": 16.93333,
"longitude": 82.21667,
"name": "K\u0101kin\u0101da",
@@ -13663,7 +12333,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260476,
"latitude": 29.38889,
"longitude": 76.96806,
"name": "P\u0101n\u012bpat",
@@ -13673,7 +12342,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1519422,
"latitude": 50.42675,
"longitude": 80.26669,
"name": "Semey",
@@ -13683,7 +12351,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2331140,
"latitude": 7.7411,
"longitude": 8.5121,
"name": "Makurdi",
@@ -13693,7 +12360,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453186,
"latitude": -25.095,
"longitude": -50.16194,
"name": "Ponta Grossa",
@@ -13703,7 +12369,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2330100,
"latitude": 9.61389,
"longitude": 6.55694,
"name": "Minna",
@@ -13713,7 +12378,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 776069,
"latitude": 53.13333,
"longitude": 23.15,
"name": "Bia\u0142ystok",
@@ -13723,7 +12387,6 @@
"country_code": "US",
"elevation": 31,
"feature_code": "PPLA2",
- "geonameid": 5879400,
"latitude": 61.21806,
"longitude": -149.90028,
"name": "Anchorage",
@@ -13733,7 +12396,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPLA2",
- "geonameid": 5399020,
"latitude": 37.9577,
"longitude": -121.29078,
"name": "Stockton",
@@ -13743,7 +12405,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 154380,
"latitude": -8.9,
"longitude": 33.45,
"name": "Mbeya",
@@ -13753,7 +12414,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608133,
"latitude": 13.86075,
"longitude": 100.51477,
"name": "Mueang Nonthaburi",
@@ -13763,7 +12423,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842225,
"latitude": 36.1136,
"longitude": 128.336,
"name": "Kumi",
@@ -13773,7 +12432,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 484646,
"latitude": 52.73169,
"longitude": 41.44326,
"name": "Tambov",
@@ -13783,7 +12441,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 109101,
"latitude": 25.41,
"longitude": 49.58083,
"name": "Al Mubarraz",
@@ -13793,7 +12450,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2235189,
"latitude": 5.47366,
"longitude": 10.41786,
"name": "Bafoussam",
@@ -13803,7 +12459,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1174625,
"latitude": 31.11556,
"longitude": 74.44667,
"name": "Kas\u016br",
@@ -13813,7 +12468,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2745912,
"latitude": 52.09083,
"longitude": 5.12222,
"name": "Utrecht",
@@ -13823,17 +12477,24 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290245,
"latitude": 52.43485,
"longitude": 13.24183,
"name": "Berlin Steglitz Zehlendorf",
"population": 290506
},
+ {
+ "country_code": "CN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 20.00073,
+ "longitude": 110.29359,
+ "name": "Xiuying",
+ "population": 290000
+ },
{
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3392740,
"latitude": -7.94083,
"longitude": -34.87306,
"name": "Paulista",
@@ -13843,9 +12504,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 99347,
- "latitude": 32.48014,
- "longitude": 44.43526,
+ "latitude": 32.46367,
+ "longitude": 44.41963,
"name": "Al \u1e28illah",
"population": 289709
},
@@ -13853,7 +12513,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458575,
"latitude": -22.56472,
"longitude": -47.40167,
"name": "Limeira",
@@ -13863,7 +12522,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260341,
"latitude": 19.26667,
"longitude": 76.78333,
"name": "Parbhani",
@@ -13873,7 +12531,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6174041,
"latitude": 48.43294,
"longitude": -123.3693,
"name": "Victoria",
@@ -13883,7 +12540,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816705,
"latitude": 21.48333,
"longitude": 109.1,
"name": "Beihai",
@@ -13893,7 +12549,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1806776,
"latitude": 23.08333,
"longitude": 114.4,
"name": "Huizhou",
@@ -13903,7 +12558,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1701947,
"latitude": 10.32361,
"longitude": 123.92222,
"name": "Mandaue City",
@@ -13913,7 +12567,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 737071,
"latitude": 40.99441,
"longitude": 28.90417,
"name": "Zeytinburnu",
@@ -13923,7 +12576,6 @@
"country_code": "HK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1818209,
"latitude": 22.36667,
"longitude": 114.1,
"name": "Tsuen Wan",
@@ -13933,7 +12585,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2537881,
"latitude": 32.29939,
"longitude": -9.23718,
"name": "Safi",
@@ -13943,7 +12594,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2040893,
"latitude": 40.10056,
"longitude": 124.39806,
"name": "Sin\u016diju",
@@ -13953,7 +12603,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1580240,
"latitude": 16.46667,
"longitude": 107.6,
"name": "Hu\u1ebf",
@@ -13963,7 +12612,6 @@
"country_code": "US",
"elevation": 186,
"feature_code": "PPLA2",
- "geonameid": 5174035,
"latitude": 41.66394,
"longitude": -83.55521,
"name": "Toledo",
@@ -13973,7 +12621,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273491,
"latitude": 26.16667,
"longitude": 85.9,
"name": "Darbhanga",
@@ -13983,7 +12630,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2911287,
"latitude": 53.56667,
"longitude": 10.08333,
"name": "Marienthal",
@@ -13993,7 +12639,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 752850,
"latitude": 40.78056,
"longitude": 30.40333,
"name": "Adapazar\u0131",
@@ -14003,7 +12648,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7628419,
"latitude": 40.96072,
"longitude": 29.27067,
"name": "Sultanbeyli",
@@ -14013,7 +12657,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1185188,
"latitude": 25.75,
"longitude": 89.25,
"name": "Rangpur",
@@ -14023,7 +12666,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445156,
"latitude": -30.08111,
"longitude": -51.02333,
"name": "Viam\u00e3o",
@@ -14033,7 +12675,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359493,
"latitude": 30.58768,
"longitude": 31.502,
"name": "Az Zaq\u0101z\u012bq",
@@ -14043,7 +12684,6 @@
"country_code": "US",
"elevation": 242,
"feature_code": "PPLA",
- "geonameid": 5045360,
"latitude": 44.94441,
"longitude": -93.09327,
"name": "Saint Paul",
@@ -14053,7 +12693,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1734705,
"latitude": 5.3302,
"longitude": 103.1408,
"name": "Kuala Terengganu",
@@ -14063,7 +12702,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 361055,
"latitude": 30.60427,
"longitude": 32.27225,
"name": "Ismailia",
@@ -14073,7 +12711,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3487903,
"latitude": 8.5931,
"longitude": -70.2261,
"name": "Alto Barinas",
@@ -14083,7 +12720,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2892794,
"latitude": 49.00472,
"longitude": 8.38583,
"name": "Karlsruhe",
@@ -14093,7 +12729,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2088122,
"latitude": -9.44314,
"longitude": 147.17972,
"name": "Port Moresby",
@@ -14103,7 +12738,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112664,
"latitude": 35.51667,
"longitude": 140.08333,
"name": "Ichihara",
@@ -14113,7 +12747,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1843491,
"latitude": 35.94389,
"longitude": 126.95444,
"name": "Iksan",
@@ -14123,7 +12756,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1572151,
"latitude": 12.25,
"longitude": 109.18333,
"name": "Nha Trang",
@@ -14133,7 +12765,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447212,
"latitude": -23.5425,
"longitude": -46.31083,
"name": "Suzano",
@@ -14143,7 +12774,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278946,
"latitude": 27.56246,
"longitude": 76.625,
"name": "Alwar",
@@ -14153,7 +12783,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1720840,
"latitude": 14.5786,
"longitude": 121.1222,
"name": "Cainta",
@@ -14163,7 +12792,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3719028,
"latitude": 18.5125,
"longitude": -72.28528,
"name": "P\u00e9tionville",
@@ -14173,7 +12801,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1857843,
"latitude": 36.39111,
"longitude": 139.06083,
"name": "Maebashi-shi",
@@ -14183,7 +12810,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275637,
"latitude": 22.08333,
"longitude": 82.15,
"name": "Bil\u0101spur",
@@ -14193,7 +12819,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3868626,
"latitude": -33.03932,
"longitude": -71.62725,
"name": "Valpara\u00edso",
@@ -14203,7 +12828,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1633034,
"latitude": -0.8917,
"longitude": 119.8707,
"name": "Palu",
@@ -14213,7 +12837,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2057087,
"latitude": -10.16667,
"longitude": 123.58333,
"name": "Kupang",
@@ -14223,7 +12846,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 686967,
"latitude": 50.26487,
"longitude": 28.67669,
"name": "Zhytomyr",
@@ -14233,7 +12855,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3680450,
"latitude": 6.17194,
"longitude": -75.61139,
"name": "Itag\u00fc\u00ed",
@@ -14243,7 +12864,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 747014,
"latitude": 40.80276,
"longitude": 29.43068,
"name": "Gebze",
@@ -14253,7 +12873,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185117,
"latitude": 23.92083,
"longitude": 90.71806,
"name": "Narsingdi",
@@ -14263,7 +12882,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2505572,
"latitude": 35.55597,
"longitude": 6.17414,
"name": "Batna",
@@ -14273,7 +12891,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3981941,
"latitude": 21.5,
"longitude": -104.9,
"name": "Tepic",
@@ -14283,7 +12900,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1814757,
"latitude": 32.32194,
"longitude": 118.29778,
"name": "Chuzhou",
@@ -14293,7 +12909,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861949,
"latitude": 35.3,
"longitude": 136.8,
"name": "Ichinomiya",
@@ -14303,7 +12918,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3928128,
"latitude": -18.00556,
"longitude": -70.24833,
"name": "Tacna",
@@ -14313,7 +12927,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343983,
"latitude": 7.65,
"longitude": 4.91667,
"name": "Effon Alaiye",
@@ -14323,7 +12936,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1736376,
"latitude": 6.13328,
"longitude": 102.2386,
"name": "Kota Bharu",
@@ -14333,7 +12945,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 466806,
"latitude": 56.63877,
"longitude": 47.89078,
"name": "Yoshkar-Ola",
@@ -14343,7 +12954,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 484907,
"latitude": 47.23617,
"longitude": 38.89688,
"name": "Taganrog",
@@ -14353,7 +12963,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3627047,
"latitude": 10.23409,
"longitude": -66.66308,
"name": "Santa Teresa",
@@ -14363,7 +12972,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 707753,
"latitude": 48.34698,
"longitude": 38.05419,
"name": "Horlivka",
@@ -14373,7 +12981,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6182962,
"latitude": 42.30008,
"longitude": -83.01654,
"name": "Windsor",
@@ -14383,7 +12990,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337704,
"latitude": 7.61667,
"longitude": 4.73333,
"name": "Ilesa",
@@ -14393,7 +12999,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 543878,
"latitude": 57.76647,
"longitude": 40.92686,
"name": "Kostroma",
@@ -14403,7 +13008,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3121424,
"latitude": 43.53573,
"longitude": -5.66152,
"name": "Gij\u00f3n",
@@ -14413,7 +13017,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 418710,
"latitude": 32.70018,
"longitude": 51.52113,
"name": "Khomeyn\u012b Shahr",
@@ -14423,7 +13026,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2467454,
"latitude": 34.74056,
"longitude": 10.76028,
"name": "Sfax",
@@ -14433,7 +13035,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2990969,
"latitude": 47.21725,
"longitude": -1.55336,
"name": "Nantes",
@@ -14443,7 +13044,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA2",
- "geonameid": 5101798,
"latitude": 40.73566,
"longitude": -74.17237,
"name": "Newark",
@@ -14453,7 +13053,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3658666,
"latitude": -2.88333,
"longitude": -78.98333,
"name": "Cuenca",
@@ -14463,7 +13062,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2325314,
"latitude": 7.1962,
"longitude": 5.58681,
"name": "Owo",
@@ -14473,7 +13071,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3865086,
"latitude": -38.7196,
"longitude": -62.27243,
"name": "Bah\u00eda Blanca",
@@ -14483,7 +13080,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626381,
"latitude": -6.91806,
"longitude": 106.92667,
"name": "Sukabumi",
@@ -14493,7 +13089,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 683844,
"latitude": 45.64861,
"longitude": 25.60613,
"name": "Bra\u015fov",
@@ -14503,7 +13098,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2021851,
"latitude": 50.55199,
"longitude": 137.01524,
"name": "Komsomol\u2019sk-na-Amure",
@@ -14513,7 +13107,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130188,
"latitude": 41.77583,
"longitude": 140.73667,
"name": "Hakodate",
@@ -14523,7 +13116,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2505854,
"latitude": 36.72615,
"longitude": 3.18291,
"name": "Bab Ezzouar",
@@ -14533,7 +13125,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2226275,
"latitude": 10.73978,
"longitude": 13.80188,
"name": "Mokolo",
@@ -14543,7 +13134,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3402429,
"latitude": -3.73611,
"longitude": -38.65306,
"name": "Caucaia",
@@ -14553,7 +13143,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2973783,
"latitude": 48.58342,
"longitude": 7.74296,
"name": "Strasbourg",
@@ -14563,7 +13152,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2655984,
"latitude": 54.58333,
"longitude": -5.93333,
"name": "Belfast",
@@ -14573,7 +13161,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1280849,
"latitude": 39.45472,
"longitude": 75.97972,
"name": "Kashi",
@@ -14583,7 +13170,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 98717,
"latitude": 33.42056,
"longitude": 43.30778,
"name": "Ar Ram\u0101d\u012b",
@@ -14593,7 +13179,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269834,
"latitude": 16.7,
"longitude": 74.46667,
"name": "Ichalkaranji",
@@ -14603,7 +13188,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862033,
"latitude": 34.81641,
"longitude": 135.56828,
"name": "Ibaraki",
@@ -14613,7 +13197,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848522,
"latitude": 34.61667,
"longitude": 135.6,
"name": "Yao",
@@ -14623,7 +13206,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1140026,
"latitude": 34.34817,
"longitude": 62.19967,
"name": "Her\u0101t",
@@ -14633,7 +13215,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3557689,
"latitude": 20.14444,
"longitude": -75.20917,
"name": "Guant\u00e1namo",
@@ -14643,7 +13224,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 523523,
"latitude": 43.49806,
"longitude": 43.61889,
"name": "Nal\u2019chik",
@@ -14653,7 +13233,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1728930,
"latitude": 16.41639,
"longitude": 120.59306,
"name": "Baguio",
@@ -14663,7 +13242,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454031,
"latitude": -22.505,
"longitude": -43.17861,
"name": "Petr\u00f3polis",
@@ -14673,7 +13251,6 @@
"country_code": "QA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 289888,
"latitude": 25.29194,
"longitude": 51.42444,
"name": "Ar Rayy\u0101n",
@@ -14683,7 +13260,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2809346,
"latitude": 50.08333,
"longitude": 8.25,
"name": "Wiesbaden",
@@ -14693,7 +13269,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3674453,
"latitude": 8.74798,
"longitude": -75.88143,
"name": "Monter\u00eda",
@@ -14703,7 +13278,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 128477,
"latitude": 33.98308,
"longitude": 51.43644,
"name": "K\u0101sh\u0101n",
@@ -14713,7 +13287,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860704,
"latitude": 34.76667,
"longitude": 134.85,
"name": "Kakogawa",
@@ -14723,7 +13296,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1624647,
"latitude": -7.3274,
"longitude": 108.2207,
"name": "Tasikmalaya",
@@ -14733,7 +13305,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275701,
"latitude": 16.82442,
"longitude": 75.71537,
"name": "Bijapur",
@@ -14743,7 +13314,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3164603,
"latitude": 45.43861,
"longitude": 12.32667,
"name": "Venice",
@@ -14753,7 +13323,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803318,
"latitude": 35.06306,
"longitude": 118.34278,
"name": "Linyi",
@@ -14763,7 +13332,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1688749,
"latitude": 14.3595,
"longitude": 121.0473,
"name": "San Pedro",
@@ -14773,7 +13341,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2867543,
"latitude": 51.96236,
"longitude": 7.62571,
"name": "M\u00fcnster",
@@ -14783,7 +13350,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2921466,
"latitude": 51.51667,
"longitude": 7.05,
"name": "Gelsenkirchen",
@@ -14793,7 +13359,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3530580,
"latitude": 23.73333,
"longitude": -99.13333,
"name": "Ciudad Victoria",
@@ -14803,7 +13368,6 @@
"country_code": "US",
"elevation": 266,
"feature_code": "PPL",
- "geonameid": 4469146,
"latitude": 36.07264,
"longitude": -79.79198,
"name": "Greensboro",
@@ -14813,7 +13377,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841066,
"latitude": 34.79361,
"longitude": 126.38861,
"name": "Moppo",
@@ -14823,7 +13386,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7838895,
"latitude": 32.01778,
"longitude": 36.04639,
"name": "Russeifa",
@@ -14833,7 +13395,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3352136,
"latitude": -22.55941,
"longitude": 17.08323,
"name": "Windhoek",
@@ -14843,9 +13404,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 204953,
- "latitude": -6.41667,
- "longitude": 20.8,
+ "latitude": -6.41621,
+ "longitude": 20.79995,
"name": "Tshikapa",
"population": 267462
},
@@ -14853,7 +13413,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 354775,
"latitude": 31.13385,
"longitude": 30.12843,
"name": "Kafr ad Daww\u0101r",
@@ -14863,7 +13422,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1850158,
"latitude": 34.06583,
"longitude": 134.55944,
"name": "Tokushima-shi",
@@ -14873,9 +13431,8 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 294801,
- "latitude": 32.81556,
- "longitude": 34.98917,
+ "latitude": 32.81841,
+ "longitude": 34.9885,
"name": "Haifa",
"population": 267300
},
@@ -14883,7 +13440,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 487495,
"latitude": 53.62462,
"longitude": 55.95015,
"name": "Sterlitamak",
@@ -14893,7 +13449,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 106281,
"latitude": 27.52188,
"longitude": 41.69073,
"name": "Hayil",
@@ -14903,7 +13458,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786640,
"latitude": 30.95,
"longitude": 113.55,
"name": "Yingcheng",
@@ -14913,7 +13467,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1790840,
"latitude": 23.48333,
"longitude": 111.31667,
"name": "Wuzhou",
@@ -14923,7 +13476,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036670,
"latitude": 47.20417,
"longitude": 123.63333,
"name": "Hulan Ergi",
@@ -14933,7 +13485,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1279186,
"latitude": 23.72444,
"longitude": 92.7175,
"name": "\u0100\u012bzawl",
@@ -14943,7 +13494,6 @@
"country_code": "DE",
"elevation": 266,
"feature_code": "PPLA3",
- "geonameid": 3247449,
"latitude": 50.77664,
"longitude": 6.08342,
"name": "Aachen",
@@ -14953,7 +13503,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 584923,
"latitude": 40.58972,
"longitude": 49.66861,
"name": "Sumqay\u0131t",
@@ -14963,7 +13512,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1701472,
"latitude": 8.16667,
"longitude": 124.21667,
"name": "Mantampay",
@@ -14973,7 +13521,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 509820,
"latitude": 61.78491,
"longitude": 34.34691,
"name": "Petrozavodsk",
@@ -14983,7 +13530,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2320576,
"latitude": 5.52627,
"longitude": 7.48959,
"name": "Umuahia",
@@ -14993,7 +13539,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1800627,
"latitude": 31.45934,
"longitude": 104.75424,
"name": "Mianyang",
@@ -15003,7 +13548,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 300619,
"latitude": 39.74833,
"longitude": 37.01611,
"name": "Sivas",
@@ -15013,7 +13557,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3522507,
"latitude": 17.05,
"longitude": -96.71667,
"name": "Oaxaca de Ju\u00e1rez",
@@ -15023,7 +13566,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 939270,
"latitude": -25.87133,
"longitude": 29.23323,
"name": "Witbank",
@@ -15033,7 +13575,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6544100,
"latitude": 41.38896,
"longitude": 2.16179,
"name": "Eixample",
@@ -15043,7 +13584,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 610611,
"latitude": 50.27969,
"longitude": 57.20718,
"name": "Aqt\u00f6be",
@@ -15053,7 +13593,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3841956,
"latitude": -31.73197,
"longitude": -60.5238,
"name": "Paran\u00e1",
@@ -15063,7 +13602,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269395,
"latitude": 19.83333,
"longitude": 75.88333,
"name": "J\u0101lna",
@@ -15073,7 +13611,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302826,
"latitude": 17.34769,
"longitude": 78.55757,
"name": "Lal Bahadur Nagar",
@@ -15083,7 +13620,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2869894,
"latitude": 51.2,
"longitude": 6.43333,
"name": "M\u00f6nchengladbach",
@@ -15093,7 +13629,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6066513,
"latitude": 43.86682,
"longitude": -79.2663,
"name": "Markham",
@@ -15103,7 +13638,6 @@
"country_code": "SE",
"elevation": 10,
"feature_code": "PPLA",
- "geonameid": 2692969,
"latitude": 55.60587,
"longitude": 13.00073,
"name": "Malm\u00f6",
@@ -15113,7 +13647,6 @@
"country_code": "US",
"elevation": 183,
"feature_code": "PPLA2",
- "geonameid": 5110629,
"latitude": 42.88645,
"longitude": -78.87837,
"name": "Buffalo",
@@ -15123,7 +13656,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273066,
"latitude": 22.96667,
"longitude": 76.06667,
"name": "Dew\u0101s",
@@ -15133,7 +13665,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3667983,
"latitude": 9.30472,
"longitude": -75.39778,
"name": "Sincelejo",
@@ -15143,7 +13674,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2034400,
"latitude": 43.6125,
"longitude": 122.26528,
"name": "Tongliao",
@@ -15153,7 +13683,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2171507,
"latitude": -34.424,
"longitude": 150.89345,
"name": "Wollongong",
@@ -15163,7 +13692,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445839,
"latitude": -19.74833,
"longitude": -47.93194,
"name": "Uberaba",
@@ -15173,7 +13701,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636841,
"latitude": 53.00415,
"longitude": -2.18538,
"name": "Stoke-on-Trent",
@@ -15183,7 +13710,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1277082,
"latitude": 22.64333,
"longitude": 88.36528,
"name": "Baranagar",
@@ -15193,7 +13719,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529641,
"latitude": 40.51556,
"longitude": 81.26361,
"name": "Aral",
@@ -15203,7 +13728,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 184622,
"latitude": -0.28333,
"longitude": 36.06667,
"name": "Nakuru",
@@ -15213,7 +13737,6 @@
"country_code": "US",
"elevation": 203,
"feature_code": "PPL",
- "geonameid": 4719457,
"latitude": 33.01984,
"longitude": -96.69889,
"name": "Plano",
@@ -15223,7 +13746,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1586203,
"latitude": 10.03333,
"longitude": 105.78333,
"name": "C\u1ea7n Th\u01a1",
@@ -15233,7 +13755,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2954172,
"latitude": 48.36667,
"longitude": 10.88333,
"name": "Augsburg",
@@ -15243,7 +13764,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862462,
"latitude": 35.32306,
"longitude": 139.34222,
"name": "Hiratsuka",
@@ -15253,7 +13773,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302833,
"latitude": 17.7,
"longitude": 83.21667,
"name": "Gajuwaka",
@@ -15263,7 +13782,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1805179,
"latitude": 29.73333,
"longitude": 115.98333,
"name": "Jiujiang",
@@ -15273,7 +13791,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036458,
"latitude": 41.0275,
"longitude": 113.10583,
"name": "Jining",
@@ -15283,7 +13800,6 @@
"country_code": "CO",
"elevation": 1760,
"feature_code": "PPLA",
- "geonameid": 3671916,
"latitude": 2.43823,
"longitude": -76.61316,
"name": "Popay\u00e1n",
@@ -15293,7 +13809,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 103630,
"latitude": 17.4924,
"longitude": 44.12766,
"name": "Najr\u0101n",
@@ -15303,7 +13818,6 @@
"country_code": "US",
"elevation": 367,
"feature_code": "PPLA",
- "geonameid": 5072006,
"latitude": 40.8,
"longitude": -96.66696,
"name": "Lincoln",
@@ -15313,7 +13827,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013704,
"latitude": 27.48333,
"longitude": -109.93333,
"name": "Ciudad Obreg\u00f3n",
@@ -15323,7 +13836,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 78754,
"latitude": 14.54248,
"longitude": 49.12424,
"name": "Al Mukall\u0101",
@@ -15333,7 +13845,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1631766,
"latitude": -6.8886,
"longitude": 109.6753,
"name": "Pekalongan",
@@ -15343,7 +13854,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3644768,
"latitude": 10.46354,
"longitude": -64.1775,
"name": "Cuman\u00e1",
@@ -15353,7 +13863,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257022,
"latitude": 24.58333,
"longitude": 80.83333,
"name": "Satna",
@@ -15363,7 +13872,6 @@
"country_code": "US",
"elevation": 569,
"feature_code": "PPL",
- "geonameid": 5505411,
"latitude": 36.0397,
"longitude": -114.98194,
"name": "Henderson",
@@ -15373,7 +13881,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3662574,
"latitude": -9.97472,
"longitude": -67.81,
"name": "Rio Branco",
@@ -15383,7 +13890,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271987,
"latitude": 26.7769,
"longitude": 79.0239,
"name": "Et\u0101wah",
@@ -15393,7 +13899,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466779,
"latitude": -24.95583,
"longitude": -53.45528,
"name": "Cascavel",
@@ -15403,7 +13908,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3120619,
"latitude": 41.35967,
"longitude": 2.10028,
"name": "L'Hospitalet de Llobregat",
@@ -15413,7 +13917,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2326171,
"latitude": 7.1,
"longitude": 4.83333,
"name": "Ondo",
@@ -15423,7 +13926,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1049261,
"latitude": -19.11639,
"longitude": 33.48333,
"name": "Chimoio",
@@ -15433,7 +13935,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2051523,
"latitude": 56.1325,
"longitude": 101.61417,
"name": "Bratsk",
@@ -15443,9 +13944,8 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4006702,
- "latitude": 31.86667,
- "longitude": -116.61667,
+ "latitude": 31.86612,
+ "longitude": -116.59972,
"name": "Ensenada",
"population": 256565
},
@@ -15453,7 +13953,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 563708,
"latitude": 56.24143,
"longitude": 43.45539,
"name": "Dzerzhinsk",
@@ -15463,7 +13962,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 299817,
"latitude": 36.91876,
"longitude": 34.8784,
"name": "Tarsus",
@@ -15473,7 +13971,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2345521,
"latitude": 11.747,
"longitude": 11.9608,
"name": "Damaturu",
@@ -15483,7 +13980,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 116996,
"latitude": 36.56332,
"longitude": 53.06009,
"name": "Shari-i-Tajan",
@@ -15493,7 +13989,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272181,
"latitude": 21.18333,
"longitude": 81.28333,
"name": "Durg",
@@ -15503,7 +13998,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3196359,
"latitude": 46.05108,
"longitude": 14.50513,
"name": "Ljubljana",
@@ -15513,7 +14007,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 695594,
"latitude": 50.62308,
"longitude": 26.22743,
"name": "Rivne",
@@ -15523,7 +14016,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529114,
"latitude": 42.93333,
"longitude": 89.16667,
"name": "Turpan",
@@ -15533,7 +14025,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2338106,
"latitude": 5.17938,
"longitude": 7.71082,
"name": "Ikot-Ekpene",
@@ -15543,7 +14034,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808198,
"latitude": 35.24306,
"longitude": 115.44111,
"name": "Heze",
@@ -15553,7 +14043,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2110556,
"latitude": 38.24056,
"longitude": 140.36333,
"name": "Yamagata-shi",
@@ -15563,7 +14052,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3984583,
"latitude": 25.67325,
"longitude": -100.45813,
"name": "Santa Catarina",
@@ -15573,7 +14061,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646170,
"latitude": -6.7063,
"longitude": 108.557,
"name": "Cirebon",
@@ -15583,7 +14070,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7281838,
"latitude": -27.63917,
"longitude": 153.10944,
"name": "Logan City",
@@ -15593,7 +14079,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456068,
"latitude": -29.67833,
"longitude": -51.13056,
"name": "Novo Hamburgo",
@@ -15603,7 +14088,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1336134,
"latitude": 21.45324,
"longitude": 91.97977,
"name": "Cox\u2019s B\u0101z\u0101r",
@@ -15613,7 +14097,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3099424,
"latitude": 54.51889,
"longitude": 18.53188,
"name": "Gdynia",
@@ -15623,7 +14106,6 @@
"country_code": "US",
"elevation": 247,
"feature_code": "PPLA2",
- "geonameid": 4920423,
"latitude": 41.1306,
"longitude": -85.12886,
"name": "Fort Wayne",
@@ -15633,7 +14115,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262131,
"latitude": 22.90278,
"longitude": 88.41694,
"name": "Naih\u0101ti",
@@ -15643,7 +14124,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3164527,
"latitude": 45.43419,
"longitude": 10.99779,
"name": "Verona",
@@ -15653,7 +14133,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3444914,
"latitude": -14.86611,
"longitude": -40.83944,
"name": "Vit\u00f3ria da Conquista",
@@ -15663,7 +14142,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804386,
"latitude": 32.38583,
"longitude": 111.66778,
"name": "Laohekou",
@@ -15673,7 +14151,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3870282,
"latitude": -36.71667,
"longitude": -73.11667,
"name": "Talcahuano",
@@ -15683,7 +14160,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 962367,
"latitude": -28.78301,
"longitude": 32.03768,
"name": "Richards Bay",
@@ -15693,7 +14169,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2633691,
"latitude": 52.58547,
"longitude": -2.12296,
"name": "Wolverhampton",
@@ -15703,7 +14178,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 379555,
"latitude": 13.62793,
"longitude": 25.34936,
"name": "El Fasher",
@@ -15713,7 +14187,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2244799,
"latitude": 14.78333,
"longitude": -16.96667,
"name": "Thi\u00e8s Nones",
@@ -15723,7 +14196,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 338832,
"latitude": 9.59306,
"longitude": 41.86611,
"name": "Dir\u0113 Dawa",
@@ -15733,7 +14205,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682385,
"latitude": 7.06222,
"longitude": -73.08644,
"name": "Floridablanca",
@@ -15743,7 +14214,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034655,
"latitude": 46.64056,
"longitude": 126.99694,
"name": "Suihua",
@@ -15753,7 +14223,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2524170,
"latitude": 38.19327,
"longitude": 15.54969,
"name": "Messina",
@@ -15763,7 +14232,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470353,
"latitude": -23.51056,
"longitude": -46.87611,
"name": "Barueri",
@@ -15773,7 +14241,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140044,
"latitude": 33.8973,
"longitude": 48.7516,
"name": "Bor\u016bjerd",
@@ -15783,7 +14250,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2911293,
"latitude": 53.56667,
"longitude": 9.98333,
"name": "Eimsb\u00fcttel",
@@ -15793,7 +14259,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 32767,
"latitude": 35.43944,
"longitude": 51.56889,
"name": "Qarchak",
@@ -15803,7 +14268,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3446682,
"latitude": -23.02639,
"longitude": -45.55528,
"name": "Taubat\u00e9",
@@ -15813,7 +14277,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1799629,
"latitude": 32.99472,
"longitude": 112.53278,
"name": "Nanyang",
@@ -15823,7 +14286,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1690039,
"latitude": 15.0286,
"longitude": 120.6898,
"name": "San Fernando",
@@ -15833,7 +14295,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523908,
"latitude": 19.35,
"longitude": -98.96667,
"name": "Los Reyes",
@@ -15843,9 +14304,8 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 153220,
- "latitude": -6.81667,
- "longitude": 37.66667,
+ "latitude": -6.82102,
+ "longitude": 37.66122,
"name": "Morogoro",
"population": 250902
},
@@ -15853,7 +14313,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3462315,
"latitude": -18.85111,
"longitude": -41.94944,
"name": "Governador Valadares",
@@ -15863,7 +14322,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254360,
"latitude": 13.65,
"longitude": 79.41667,
"name": "Tirupati",
@@ -15873,7 +14331,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1215502,
"latitude": 5.5577,
"longitude": 95.3222,
"name": "Banda Aceh",
@@ -15883,7 +14340,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1792260,
"latitude": 39.61833,
"longitude": 122.00806,
"name": "Wafangdian",
@@ -15893,7 +14349,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255744,
"latitude": 28.98333,
"longitude": 77.01667,
"name": "Son\u012bpat",
@@ -15903,7 +14358,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3537906,
"latitude": 22.4,
"longitude": -79.96667,
"name": "Santa Clara",
@@ -15913,7 +14367,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2336905,
"latitude": 7.63333,
"longitude": 4.18333,
"name": "Iwo",
@@ -15923,7 +14376,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1706684,
"latitude": 8.94417,
"longitude": 125.50194,
"name": "Libertad",
@@ -15933,7 +14385,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2340451,
"latitude": 10.28969,
"longitude": 11.16729,
"name": "Gombe",
@@ -15943,7 +14394,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2911296,
"latitude": 53.55,
"longitude": 9.93333,
"name": "Altona",
@@ -15953,7 +14403,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278130,
"latitude": 13.11556,
"longitude": 80.10167,
"name": "\u0100vadi",
@@ -15963,7 +14412,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3452465,
"latitude": -24.00583,
"longitude": -46.40278,
"name": "Praia Grande",
@@ -15973,7 +14421,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 293397,
"latitude": 32.08088,
"longitude": 34.78057,
"name": "Tel Aviv",
@@ -15983,7 +14430,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7280708,
"latitude": 19.38611,
"longitude": -99.16204,
"name": "Colonia del Valle",
@@ -15992,8 +14438,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 787657,
+ "feature_code": "PPLA2",
"latitude": 43.32472,
"longitude": 21.90333,
"name": "Ni\u0161",
@@ -16003,7 +14448,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3872348,
"latitude": -33.6,
"longitude": -70.71667,
"name": "San Bernardo",
@@ -16013,7 +14457,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445451,
"latitude": -15.64667,
"longitude": -56.1325,
"name": "V\u00e1rzea Grande",
@@ -16023,7 +14466,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2735943,
"latitude": 41.14961,
"longitude": -8.61099,
"name": "Porto",
@@ -16033,7 +14475,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3444876,
"latitude": -22.52306,
"longitude": -44.10417,
"name": "Volta Redonda",
@@ -16043,7 +14484,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 705812,
"latitude": 48.5132,
"longitude": 32.2597,
"name": "Kirovohrad",
@@ -16053,7 +14493,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3450083,
"latitude": -29.68417,
"longitude": -53.80694,
"name": "Santa Maria",
@@ -16063,7 +14502,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1863985,
"latitude": 36.06443,
"longitude": 136.22257,
"name": "Fukui-shi",
@@ -16073,7 +14511,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 709932,
"latitude": 48.51134,
"longitude": 34.6021,
"name": "Dniprodzerzhyns\u2019k",
@@ -16083,7 +14520,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2992166,
"latitude": 43.61092,
"longitude": 3.87723,
"name": "Montpellier",
@@ -16093,7 +14529,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2336056,
"latitude": 9.28333,
"longitude": 12.46667,
"name": "Jimeta",
@@ -16103,7 +14538,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3100946,
"latitude": 50.79646,
"longitude": 19.12409,
"name": "Cz\u0119stochowa",
@@ -16113,7 +14547,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6094578,
"latitude": 43.90012,
"longitude": -78.84957,
"name": "Oshawa",
@@ -16123,7 +14556,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3673164,
"latitude": 3.53944,
"longitude": -76.30361,
"name": "Palmira",
@@ -16133,7 +14565,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1217662,
"latitude": 39.77472,
"longitude": 64.42861,
"name": "Buxoro",
@@ -16143,7 +14574,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA2",
- "geonameid": 5099836,
"latitude": 40.72816,
"longitude": -74.07764,
"name": "Jersey City",
@@ -16153,7 +14583,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257845,
"latitude": 23.83333,
"longitude": 78.71667,
"name": "S\u0101gar",
@@ -16163,7 +14592,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2640194,
"latitude": 50.37153,
"longitude": -4.14305,
"name": "Plymouth",
@@ -16173,7 +14601,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1605239,
"latitude": 17.41567,
"longitude": 102.78589,
"name": "Udon Thani",
@@ -16183,7 +14610,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2940132,
"latitude": 50.83333,
"longitude": 12.91667,
"name": "Chemnitz",
@@ -16193,7 +14619,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3938527,
"latitude": -14.06528,
"longitude": -75.73083,
"name": "Ica",
@@ -16203,7 +14628,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 514734,
"latitude": 51.20487,
"longitude": 58.56685,
"name": "Orsk",
@@ -16213,7 +14637,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 944986,
"latitude": -26.71171,
"longitude": 27.83795,
"name": "Vanderbijlpark",
@@ -16223,7 +14646,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641170,
"latitude": 52.9536,
"longitude": -1.15047,
"name": "Nottingham",
@@ -16233,7 +14655,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3628473,
"latitude": 7.76694,
"longitude": -72.225,
"name": "San Crist\u00f3bal",
@@ -16243,7 +14664,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2111901,
"latitude": 36.34139,
"longitude": 140.44667,
"name": "Mito-shi",
@@ -16253,7 +14673,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797132,
"latitude": 35.4275,
"longitude": 119.45528,
"name": "Rizhao",
@@ -16263,7 +14682,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637487,
"latitude": 50.90395,
"longitude": -1.40428,
"name": "Southampton",
@@ -16273,7 +14691,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3119841,
"latitude": 43.37135,
"longitude": -8.396,
"name": "A Coru\u00f1a",
@@ -16283,7 +14700,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263311,
"latitude": 25.94167,
"longitude": 83.56111,
"name": "Mau",
@@ -16293,7 +14709,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852225,
"latitude": 33.95,
"longitude": 130.95,
"name": "Shimonoseki",
@@ -16303,7 +14718,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3937513,
"latitude": -15.5,
"longitude": -70.13333,
"name": "Juliaca",
@@ -16313,7 +14727,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3522732,
"latitude": 19.62194,
"longitude": -99.31306,
"name": "Nicol\u00e1s Romero",
@@ -16323,7 +14736,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1806445,
"latitude": 27.11716,
"longitude": 114.97927,
"name": "Ji\u2019an",
@@ -16333,7 +14745,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 132892,
"latitude": 36.83866,
"longitude": 54.43475,
"name": "Gorg\u0101n",
@@ -16343,7 +14754,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1497543,
"latitude": 60.9344,
"longitude": 76.5531,
"name": "Nizhnevartovsk",
@@ -16353,7 +14763,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPL",
- "geonameid": 4171563,
"latitude": 27.77086,
"longitude": -82.67927,
"name": "Saint Petersburg",
@@ -16363,7 +14772,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2945024,
"latitude": 52.26667,
"longitude": 10.53333,
"name": "Braunschweig",
@@ -16373,7 +14781,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808770,
"latitude": 35.89917,
"longitude": 114.1925,
"name": "Hebi",
@@ -16383,7 +14790,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1300466,
"latitude": 17.33667,
"longitude": 96.47972,
"name": "Bago",
@@ -16393,7 +14799,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275716,
"latitude": 25.18333,
"longitude": 85.51667,
"name": "Bih\u0101r Shar\u012bf",
@@ -16403,7 +14808,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3648439,
"latitude": 10.43398,
"longitude": -66.87662,
"name": "Baruta",
@@ -16413,7 +14817,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 738648,
"latitude": 41.005,
"longitude": 39.72694,
"name": "Trabzon",
@@ -16423,7 +14826,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2639577,
"latitude": 51.45625,
"longitude": -0.97113,
"name": "Reading",
@@ -16433,7 +14835,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1336140,
"latitude": 23.16869,
"longitude": 89.21315,
"name": "Jessore",
@@ -16443,7 +14844,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 304827,
"latitude": 38.61202,
"longitude": 27.42646,
"name": "Manisa",
@@ -16453,7 +14853,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5336899,
"latitude": 32.64005,
"longitude": -117.0842,
"name": "Chula Vista",
@@ -16463,7 +14862,6 @@
"country_code": "US",
"elevation": 142,
"feature_code": "PPLA2",
- "geonameid": 4299276,
"latitude": 38.25424,
"longitude": -85.75941,
"name": "Louisville",
@@ -16473,7 +14871,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3450144,
"latitude": -19.76972,
"longitude": -43.85139,
"name": "Santa Luzia",
@@ -16483,7 +14880,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842025,
"latitude": 35.97861,
"longitude": 126.71139,
"name": "Kunsan",
@@ -16493,7 +14889,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1833105,
"latitude": 37.35139,
"longitude": 127.94528,
"name": "W\u014fnju",
@@ -16503,7 +14898,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2027667,
"latitude": 52.53667,
"longitude": 103.88639,
"name": "Angarsk",
@@ -16513,7 +14907,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270393,
"latitude": 28.71667,
"longitude": 77.78333,
"name": "H\u0101pur",
@@ -16522,8 +14915,7 @@
{
"country_code": "US",
"elevation": 2,
- "feature_code": "PPL",
- "geonameid": 4776222,
+ "feature_code": "PPLA2",
"latitude": 36.84681,
"longitude": -76.28522,
"name": "Norfolk",
@@ -16533,7 +14925,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276070,
"latitude": 30.2,
"longitude": 74.95,
"name": "Bhatinda",
@@ -16543,7 +14934,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 170794,
"latitude": 35.33588,
"longitude": 40.14084,
"name": "Dayr az Zawr",
@@ -16553,7 +14943,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 64435,
"latitude": 10.43959,
"longitude": 45.01432,
"name": "Berbera",
@@ -16563,7 +14952,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5959974,
"latitude": 45.47723,
"longitude": -75.70164,
"name": "Gatineau",
@@ -16573,7 +14961,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1786770,
"latitude": 28.76667,
"longitude": 104.62383,
"name": "Yibin",
@@ -16583,7 +14970,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3843123,
"latitude": -38.95161,
"longitude": -68.0591,
"name": "Neuqu\u00e9n",
@@ -16593,7 +14979,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 518255,
"latitude": 44.72439,
"longitude": 37.76752,
"name": "Novorossiysk",
@@ -16603,7 +14988,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2848756,
"latitude": 52.56667,
"longitude": 13.33333,
"name": "Berlin Reinickendorf",
@@ -16613,7 +14997,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516109,
"latitude": 18.45,
"longitude": -97.38333,
"name": "Tehuac\u00e1n",
@@ -16623,7 +15006,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1707267,
"latitude": 10.31028,
"longitude": 123.94944,
"name": "Lapu-Lapu City",
@@ -16633,7 +15015,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359792,
"latitude": 24.09343,
"longitude": 32.90704,
"name": "Asw\u0101n",
@@ -16643,7 +15024,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271942,
"latitude": 27.4,
"longitude": 79.56667,
"name": "Farrukh\u0101b\u0101d",
@@ -16653,7 +15033,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7628420,
"latitude": 41.00244,
"longitude": 29.23187,
"name": "Sancaktepe",
@@ -16663,7 +15042,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851002,
"latitude": 36.33333,
"longitude": 139.01667,
"name": "Takasaki",
@@ -16673,7 +15051,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278672,
"latitude": 14.68333,
"longitude": 77.6,
"name": "Anantapur",
@@ -16683,7 +15060,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3688451,
"latitude": 3.8801,
"longitude": -77.03116,
"name": "Buenaventura",
@@ -16693,7 +15069,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864154,
"latitude": 35.66667,
"longitude": 139.48333,
"name": "Fuch\u016b",
@@ -16703,7 +15078,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864134,
"latitude": 35.16667,
"longitude": 138.68333,
"name": "Fuji",
@@ -16713,7 +15087,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7289614,
"latitude": 51.47924,
"longitude": 11.91605,
"name": "Halle Neustadt",
@@ -16723,7 +15096,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790371,
"latitude": 30.38333,
"longitude": 113.4,
"name": "Xiantao",
@@ -16733,7 +15105,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130203,
"latitude": 40.5,
"longitude": 141.5,
"name": "Hachinohe",
@@ -16743,7 +15114,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6173577,
"latitude": 43.8361,
"longitude": -79.49827,
"name": "Vaughan",
@@ -16753,7 +15123,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3462089,
"latitude": -29.94444,
"longitude": -50.99194,
"name": "Gravata\u00ed",
@@ -16763,7 +15132,6 @@
"country_code": "JP",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 6697563,
"latitude": 34.76615,
"longitude": 135.62759,
"name": "Neyagawa",
@@ -16773,7 +15141,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPLA2",
- "geonameid": 4167147,
"latitude": 28.53834,
"longitude": -81.37924,
"name": "Orlando",
@@ -16783,7 +15150,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858088,
"latitude": 33.31667,
"longitude": 130.51667,
"name": "Kurume",
@@ -16793,7 +15159,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 322165,
"latitude": 39.64917,
"longitude": 27.88611,
"name": "Bal\u0131kesir",
@@ -16803,7 +15168,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3870011,
"latitude": -38.73333,
"longitude": -72.6,
"name": "Temuco",
@@ -16813,7 +15177,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2884509,
"latitude": 51.33333,
"longitude": 6.56667,
"name": "Krefeld",
@@ -16823,7 +15186,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 288967,
"latitude": 23.67027,
"longitude": 58.18911,
"name": "As S\u012bb al Jad\u012bdah",
@@ -16833,7 +15195,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2624652,
"latitude": 56.15674,
"longitude": 10.21076,
"name": "\u00c5rhus",
@@ -16843,7 +15204,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852899,
"latitude": 33.15917,
"longitude": 129.72278,
"name": "Sasebo",
@@ -16853,9 +15213,8 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1726280,
- "latitude": 13.75944,
- "longitude": 121.06,
+ "latitude": 13.7567,
+ "longitude": 121.0584,
"name": "Batangas",
"population": 237370
},
@@ -16863,7 +15222,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3980760,
"latitude": 19.41667,
"longitude": -102.06667,
"name": "Uruapan del Progreso",
@@ -16873,7 +15231,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 109435,
"latitude": 27.01122,
"longitude": 49.65826,
"name": "Al Jubayl",
@@ -16883,7 +15240,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1328421,
"latitude": 16.78333,
"longitude": 94.73333,
"name": "Pathein",
@@ -16893,7 +15249,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624494,
"latitude": -6.8694,
"longitude": 109.1402,
"name": "Tegal",
@@ -16903,7 +15258,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1185099,
"latitude": 24.89667,
"longitude": 91.87167,
"name": "Sylhet",
@@ -16913,7 +15267,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258342,
"latitude": 23.31667,
"longitude": 75.06667,
"name": "Ratl\u0101m",
@@ -16923,7 +15276,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 724443,
"latitude": 48.71395,
"longitude": 21.25808,
"name": "Ko\u0161ice",
@@ -16933,7 +15285,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 710719,
"latitude": 48.29149,
"longitude": 25.94034,
"name": "Chernivtsi",
@@ -16943,7 +15294,6 @@
"country_code": "US",
"elevation": 370,
"feature_code": "PPL",
- "geonameid": 5289282,
"latitude": 33.30616,
"longitude": -111.84125,
"name": "Chandler",
@@ -16953,7 +15303,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1180289,
"latitude": 30.05614,
"longitude": 70.63477,
"name": "Dera Gh\u0101zi Kh\u0101n",
@@ -16963,7 +15312,6 @@
"country_code": "US",
"elevation": 126,
"feature_code": "PPLA2",
- "geonameid": 4705349,
"latitude": 27.50641,
"longitude": -99.50754,
"name": "Laredo",
@@ -16973,7 +15321,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785974,
"latitude": 37.68028,
"longitude": 112.73194,
"name": "Yuci",
@@ -16983,7 +15330,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1166548,
"latitude": 30.66667,
"longitude": 73.1,
"name": "Montgomery",
@@ -16993,7 +15339,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 691650,
"latitude": 49.55589,
"longitude": 25.60556,
"name": "Ternopil\u2019",
@@ -17003,17 +15348,15 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3104499,
"latitude": 42.85,
"longitude": -2.66667,
- "name": "Vitoria-Gasteiz",
+ "name": "Gasteiz / Vitoria",
"population": 235661
},
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2013159,
"latitude": 62.03389,
"longitude": 129.73306,
"name": "Yakutsk",
@@ -17023,7 +15366,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3402655,
"latitude": -8.28333,
"longitude": -35.97611,
"name": "Caruaru",
@@ -17033,7 +15375,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 350550,
"latitude": 26.16418,
"longitude": 32.72671,
"name": "Qin\u0101",
@@ -17043,7 +15384,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3664980,
"latitude": 2.81972,
"longitude": -60.67333,
"name": "Boa Vista",
@@ -17053,7 +15393,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1640660,
"latitude": -7.81667,
"longitude": 112.01667,
"name": "Kediri",
@@ -17063,7 +15402,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2651347,
"latitude": 52.92277,
"longitude": -1.47663,
"name": "Derby",
@@ -17073,7 +15411,6 @@
"country_code": "GY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3378644,
"latitude": 6.80448,
"longitude": -58.15527,
"name": "Georgetown",
@@ -17083,7 +15420,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 55671,
"latitude": -0.35817,
"longitude": 42.54536,
"name": "Kismaayo",
@@ -17093,7 +15429,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 74477,
"latitude": 13.96667,
"longitude": 44.18333,
"name": "Ibb",
@@ -17103,7 +15438,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1219649,
"latitude": 39.07328,
"longitude": 63.57862,
"name": "T\u00fcrkmenabat",
@@ -17113,7 +15447,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2517117,
"latitude": 37.18817,
"longitude": -3.60667,
"name": "Granada",
@@ -17123,7 +15456,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 521118,
"latitude": 55.63657,
"longitude": 51.82447,
"name": "Nizhnekamsk",
@@ -17133,7 +15465,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLF",
- "geonameid": 7732959,
"latitude": -20.30285,
"longitude": -40.33433,
"name": "Disney",
@@ -17143,7 +15474,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2392087,
"latitude": 6.49646,
"longitude": 2.60359,
"name": "Porto-Novo",
@@ -17153,17 +15483,15 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2911522,
"latitude": 51.5,
"longitude": 12.0,
- "name": "Halle",
+ "name": "Halle (Saale)",
"population": 234107
},
{
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1105777,
"latitude": -25.85891,
"longitude": 28.18577,
"name": "Centurion",
@@ -17173,7 +15501,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1684269,
"latitude": 7.44778,
"longitude": 125.80778,
"name": "Tagum",
@@ -17183,7 +15510,6 @@
"country_code": "US",
"elevation": 267,
"feature_code": "PPLA",
- "geonameid": 5261457,
"latitude": 43.07305,
"longitude": -89.40123,
"name": "Madison",
@@ -17193,7 +15519,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2294915,
"latitude": 4.88447,
"longitude": -1.75536,
"name": "Takoradi",
@@ -17203,7 +15528,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2891122,
"latitude": 54.32133,
"longitude": 10.13489,
"name": "Kiel",
@@ -17213,7 +15537,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803567,
"latitude": 36.08889,
"longitude": 111.51889,
"name": "Linfen",
@@ -17223,7 +15546,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3031582,
"latitude": 44.84044,
"longitude": -0.5805,
"name": "Bordeaux",
@@ -17233,7 +15555,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271685,
"latitude": 29.91667,
"longitude": 73.88333,
"name": "Gang\u0101nagar",
@@ -17243,7 +15564,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864624,
"latitude": 35.32611,
"longitude": 139.40389,
"name": "Chigasaki",
@@ -17253,7 +15573,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2797656,
"latitude": 51.05,
"longitude": 3.71667,
"name": "Gent",
@@ -17263,7 +15582,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1682598,
"latitude": 14.5678,
"longitude": 121.1394,
"name": "Taytay",
@@ -17273,7 +15591,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851604,
"latitude": 35.82028,
"longitude": 139.80444,
"name": "S\u014dka",
@@ -17283,7 +15600,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2224827,
"latitude": 7.31667,
"longitude": 13.58333,
"name": "Ngaound\u00e9r\u00e9",
@@ -17293,7 +15609,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1835648,
"latitude": 34.94808,
"longitude": 127.48947,
"name": "Sunchun",
@@ -17303,7 +15618,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530517,
"latitude": 18.15,
"longitude": -94.41667,
"name": "Coatzacoalcos",
@@ -17313,7 +15627,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 485239,
"latitude": 61.67642,
"longitude": 50.80994,
"name": "Syktyvkar",
@@ -17323,7 +15636,6 @@
"country_code": "ES",
"elevation": 96,
"feature_code": "PPLA3",
- "geonameid": 2518559,
"latitude": 38.26218,
"longitude": -0.70107,
"name": "Elche",
@@ -17333,7 +15645,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 601294,
"latitude": 42.45306,
"longitude": 59.61028,
"name": "Nukus",
@@ -17343,7 +15654,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 355795,
"latitude": 29.84144,
"longitude": 31.30084,
"name": "\u1e28alw\u0101n",
@@ -17353,7 +15663,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2874545,
"latitude": 52.16667,
"longitude": 11.66667,
"name": "Magdeburg",
@@ -17363,7 +15672,6 @@
"country_code": "US",
"elevation": 293,
"feature_code": "PPLA2",
- "geonameid": 4499612,
"latitude": 36.09986,
"longitude": -80.24422,
"name": "Winston-Salem",
@@ -17373,7 +15681,6 @@
"country_code": "US",
"elevation": 976,
"feature_code": "PPLA2",
- "geonameid": 5525577,
"latitude": 33.57786,
"longitude": -101.85517,
"name": "Lubbock",
@@ -17383,7 +15690,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 660158,
"latitude": 60.2052,
"longitude": 24.6522,
"name": "Espoo",
@@ -17393,7 +15699,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1169116,
"latitude": 26.24833,
"longitude": 68.40955,
"name": "Naw\u0101bsh\u0101h",
@@ -17403,7 +15708,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPLA",
- "geonameid": 4315588,
"latitude": 30.45075,
"longitude": -91.15455,
"name": "Baton Rouge",
@@ -17413,7 +15717,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 266826,
"latitude": 34.43667,
"longitude": 35.84972,
"name": "Tripoli",
@@ -17423,7 +15726,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276128,
"latitude": 27.21731,
"longitude": 77.49009,
"name": "Bharatpur",
@@ -17433,7 +15735,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6059891,
"latitude": 45.53121,
"longitude": -73.51806,
"name": "Longueuil",
@@ -17443,7 +15744,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1847963,
"latitude": 35.43889,
"longitude": 139.35972,
"name": "Atsugi",
@@ -17453,7 +15753,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3727135,
"latitude": 18.575,
"longitude": -72.225,
"name": "Croix des Bouquets",
@@ -17463,7 +15762,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523760,
"latitude": 19.28333,
"longitude": -99.23333,
"name": "Magdalena Contreras",
@@ -17473,7 +15771,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 946877,
"latitude": -33.75757,
"longitude": 25.3971,
"name": "Uitenhage",
@@ -17483,7 +15780,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 670474,
"latitude": 44.95,
"longitude": 26.01667,
"name": "Ploie\u015fti",
@@ -17493,7 +15789,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735498,
"latitude": 5.647,
"longitude": 100.48772,
"name": "Sungai Petani",
@@ -17503,7 +15798,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1215355,
"latitude": 3.6001,
"longitude": 98.4854,
"name": "Binjai",
@@ -17512,8 +15806,7 @@
{
"country_code": "PH",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1705357,
+ "feature_code": "PPLA2",
"latitude": 13.93139,
"longitude": 121.61722,
"name": "Lucena",
@@ -17523,7 +15816,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461144,
"latitude": -19.46833,
"longitude": -42.53667,
"name": "Ipatinga",
@@ -17533,7 +15825,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267755,
"latitude": 18.43333,
"longitude": 79.15,
"name": "Kar\u012bmnagar",
@@ -17543,7 +15834,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005775,
"latitude": 25.56667,
"longitude": -103.5,
"name": "G\u00f3mez Palacio",
@@ -17553,7 +15843,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1568510,
"latitude": 10.01667,
"longitude": 105.08333,
"name": "R\u1ea1ch Gi\u00e1",
@@ -17563,7 +15852,6 @@
"country_code": "US",
"elevation": 123,
"feature_code": "PPLA2",
- "geonameid": 4464368,
"latitude": 35.99403,
"longitude": -78.89862,
"name": "Durham",
@@ -17573,7 +15861,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2998324,
"latitude": 50.63297,
"longitude": 3.05858,
"name": "Lille",
@@ -17583,17 +15870,24 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1738050,
"latitude": 4.4148,
"longitude": 114.0089,
"name": "Miri",
"population": 228212
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLL",
+ "latitude": 51.44162,
+ "longitude": 0.14866,
+ "name": "Bexley",
+ "population": 228000
+ },
{
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3447259,
"latitude": -22.82194,
"longitude": -47.26694,
"name": "Sumar\u00e9",
@@ -17603,7 +15897,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 358448,
"latitude": 31.03917,
"longitude": 30.46914,
"name": "Damanh\u016br",
@@ -17613,7 +15906,6 @@
"country_code": "BS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3571824,
"latitude": 25.05823,
"longitude": -77.34306,
"name": "Nassau",
@@ -17623,7 +15915,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437056,
"latitude": -25.33968,
"longitude": -57.50879,
"name": "San Lorenzo",
@@ -17633,7 +15924,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3887127,
"latitude": -20.22083,
"longitude": -70.14306,
"name": "Iquique",
@@ -17643,7 +15933,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 704147,
"latitude": 49.09725,
"longitude": 33.41972,
"name": "Kremenchuk",
@@ -17653,7 +15942,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1259425,
"latitude": 11.93,
"longitude": 79.83,
"name": "Puducherry",
@@ -17663,7 +15951,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1170395,
"latitude": 34.77584,
"longitude": 72.36249,
"name": "Ming\u0101ora",
@@ -17673,7 +15960,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3085128,
"latitude": 50.28682,
"longitude": 19.10385,
"name": "Sosnowiec",
@@ -17683,7 +15969,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 360686,
"latitude": 28.10988,
"longitude": 30.7503,
"name": "Al Miny\u0101",
@@ -17693,7 +15978,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 487928,
"latitude": 51.29667,
"longitude": 37.84167,
"name": "Staryy Oskol",
@@ -17703,7 +15987,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803834,
"latitude": 36.44389,
"longitude": 115.96472,
"name": "Liaocheng",
@@ -17713,7 +15996,6 @@
"country_code": "US",
"elevation": 168,
"feature_code": "PPL",
- "geonameid": 4693003,
"latitude": 32.91262,
"longitude": -96.63888,
"name": "Garland",
@@ -17723,7 +16005,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2339937,
"latitude": 12.16278,
"longitude": 6.66135,
"name": "Gusau",
@@ -17733,7 +16014,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2864072,
"latitude": 52.15,
"longitude": 11.63333,
"name": "Neue Neustadt",
@@ -17743,7 +16023,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 760778,
"latitude": 51.40253,
"longitude": 21.14714,
"name": "Radom",
@@ -17753,7 +16032,6 @@
"country_code": "US",
"elevation": 351,
"feature_code": "PPL",
- "geonameid": 5295985,
"latitude": 33.53865,
"longitude": -112.18599,
"name": "Glendale",
@@ -17763,7 +16041,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256422,
"latitude": 22.75278,
"longitude": 88.34222,
"name": "Shr\u012br\u0101mpur",
@@ -17773,7 +16050,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035225,
"latitude": 46.65,
"longitude": 124.86667,
"name": "Ranghulu",
@@ -17783,7 +16059,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 118063,
"latitude": 36.2126,
"longitude": 57.68191,
"name": "Sabzev\u0101r",
@@ -17793,7 +16068,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 292932,
"latitude": 25.41111,
"longitude": 55.43504,
"name": "`Ajm\u0101n",
@@ -17803,7 +16077,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3348313,
"latitude": -12.77611,
"longitude": 15.73917,
"name": "Huambo",
@@ -17813,7 +16086,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 558418,
"latitude": 43.30833,
"longitude": 45.70028,
"name": "Groznyy",
@@ -17823,7 +16095,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259012,
"latitude": 16.2,
"longitude": 77.36667,
"name": "R\u0101ich\u016br",
@@ -17833,7 +16104,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1807508,
"latitude": 23.67704,
"longitude": 116.99961,
"name": "Huanggang",
@@ -17843,7 +16113,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302845,
"latitude": 17.50107,
"longitude": 78.45818,
"name": "Quthbullapur",
@@ -17853,7 +16122,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2329821,
"latitude": 10.26761,
"longitude": 13.26436,
"name": "Mubi",
@@ -17863,7 +16131,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 217831,
"latitude": -2.50833,
"longitude": 28.86083,
"name": "Bukavu",
@@ -17873,7 +16140,6 @@
"country_code": "US",
"elevation": 295,
"feature_code": "PPLA2",
- "geonameid": 4297983,
"latitude": 37.98869,
"longitude": -84.47772,
"name": "Lexington",
@@ -17883,7 +16149,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3397147,
"latitude": -7.21306,
"longitude": -39.31528,
"name": "Juazeiro do Norte",
@@ -17893,7 +16158,6 @@
"country_code": "US",
"elevation": 1373,
"feature_code": "PPLA2",
- "geonameid": 5511077,
"latitude": 39.52963,
"longitude": -119.8138,
"name": "Reno",
@@ -17903,7 +16167,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185162,
"latitude": 24.75,
"longitude": 90.4,
"name": "Mymensingh",
@@ -17913,7 +16176,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267708,
"latitude": 29.68333,
"longitude": 76.98333,
"name": "Karn\u0101l",
@@ -17923,7 +16185,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 936374,
"latitude": -26.1625,
"longitude": 27.8725,
"name": "Roodepoort",
@@ -17933,9 +16194,8 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 149606,
- "latitude": -5.06667,
- "longitude": 39.1,
+ "latitude": -5.06893,
+ "longitude": 39.09875,
"name": "Tanga",
"population": 224876
},
@@ -17943,7 +16203,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805618,
"latitude": 30.65,
"longitude": 113.1,
"name": "Jingling",
@@ -17953,7 +16212,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3903987,
"latitude": -19.03332,
"longitude": -65.26274,
"name": "Sucre",
@@ -17963,7 +16221,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1035025,
"latitude": -14.54278,
"longitude": 40.67278,
"name": "Cidade de Nacala",
@@ -17973,7 +16230,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4158476,
"latitude": 25.8576,
"longitude": -80.27811,
"name": "Hialeah",
@@ -17983,7 +16239,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 295629,
"latitude": 31.81667,
"longitude": 34.65,
"name": "Ashdod",
@@ -17993,7 +16248,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857144,
"latitude": 35.48333,
"longitude": 139.45,
"name": "Minami-rinkan",
@@ -18003,7 +16257,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3114711,
"latitude": 43.36029,
"longitude": -5.84476,
"name": "Oviedo",
@@ -18013,7 +16266,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290252,
"latitude": 52.5511,
"longitude": 13.19921,
"name": "Berlin Spandau",
@@ -18023,7 +16275,6 @@
"country_code": "SR",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3383330,
"latitude": 5.86638,
"longitude": -55.16682,
"name": "Paramaribo",
@@ -18033,7 +16284,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 325330,
"latitude": 37.76441,
"longitude": 38.27629,
"name": "Ad\u0131yaman",
@@ -18043,7 +16293,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278483,
"latitude": 25.56667,
"longitude": 84.66667,
"name": "Ara",
@@ -18053,7 +16302,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1168718,
"latitude": 30.80806,
"longitude": 73.44583,
"name": "Ok\u0101ra",
@@ -18063,7 +16311,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185155,
"latitude": 23.62333,
"longitude": 90.50111,
"name": "N\u0101r\u0101yanganj",
@@ -18073,7 +16320,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795196,
"latitude": 35.08056,
"longitude": 109.08972,
"name": "Tongchuan",
@@ -18083,7 +16329,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1269771,
"latitude": 24.81667,
"longitude": 93.95,
"name": "Imph\u0101l",
@@ -18093,7 +16338,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 418606,
"latitude": 32.6344,
"longitude": 51.3668,
"name": "Najaf\u0101b\u0101d",
@@ -18103,7 +16347,6 @@
"country_code": "US",
"elevation": 627,
"feature_code": "PPL",
- "geonameid": 5509952,
"latitude": 36.09719,
"longitude": -115.14666,
"name": "Paradise",
@@ -18113,7 +16356,6 @@
"country_code": "UZ",
"elevation": 374,
"feature_code": "PPLA",
- "geonameid": 1216311,
"latitude": 38.86667,
"longitude": 65.8,
"name": "Qarshi",
@@ -18123,7 +16365,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788618,
"latitude": 35.90056,
"longitude": 117.75194,
"name": "Xintai",
@@ -18133,7 +16374,6 @@
"country_code": "ES",
"elevation": 10,
"feature_code": "PPLA",
- "geonameid": 2511174,
"latitude": 28.46824,
"longitude": -16.25462,
"name": "Santa Cruz de Tenerife",
@@ -18143,7 +16383,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1877615,
"latitude": 38.04056,
"longitude": 125.71472,
"name": "Haeju",
@@ -18153,7 +16392,6 @@
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2778067,
"latitude": 47.06667,
"longitude": 15.45,
"name": "Graz",
@@ -18162,8 +16400,7 @@
{
"country_code": "US",
"elevation": 3,
- "feature_code": "PPL",
- "geonameid": 4752186,
+ "feature_code": "PPLA2",
"latitude": 36.81904,
"longitude": -76.27494,
"name": "Chesapeake",
@@ -18173,7 +16410,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338273,
"latitude": 7.35,
"longitude": 4.18333,
"name": "Ikire",
@@ -18183,7 +16419,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464305,
"latitude": -23.64889,
"longitude": -46.85222,
"name": "Embu",
@@ -18193,7 +16428,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3433899,
"latitude": -26.17753,
"longitude": -58.17814,
"name": "Formosa",
@@ -18203,7 +16437,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 496015,
"latitude": 47.70911,
"longitude": 40.21443,
"name": "Shakhty",
@@ -18213,7 +16446,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2026609,
"latitude": 50.26667,
"longitude": 127.53333,
"name": "Blagoveshchensk",
@@ -18223,7 +16455,6 @@
"country_code": "BA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3204541,
"latitude": 44.77583,
"longitude": 17.18556,
"name": "Banja Luka",
@@ -18233,7 +16464,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6544105,
"latitude": 41.41814,
"longitude": 2.19933,
"name": "Sant Mart\u00ed",
@@ -18243,7 +16473,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 122285,
"latitude": 36.21329,
"longitude": 58.79576,
"name": "Neysh\u0101b\u016br",
@@ -18253,7 +16482,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1790894,
"latitude": 29.85058,
"longitude": 115.5525,
"name": "Wuxue",
@@ -18263,7 +16491,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 630468,
"latitude": 53.1384,
"longitude": 29.2214,
"name": "Babruysk",
@@ -18273,7 +16500,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 293703,
"latitude": 31.96417,
"longitude": 34.80444,
"name": "Rishon Le\u1e94iyyon",
@@ -18283,9 +16509,8 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1721906,
- "latitude": 15.48694,
- "longitude": 120.9675,
+ "latitude": 15.4867,
+ "longitude": 120.9676,
"name": "Cabanatuan",
"population": 220250
},
@@ -18293,7 +16518,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262995,
"latitude": 25.15,
"longitude": 82.58333,
"name": "Mirz\u0101pur",
@@ -18303,7 +16527,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1697175,
"latitude": 14.82917,
"longitude": 120.28278,
"name": "Olongapo",
@@ -18313,7 +16536,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851012,
"latitude": 34.79936,
"longitude": 135.35697,
"name": "Takarazuka",
@@ -18323,7 +16545,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266976,
"latitude": 22.33333,
"longitude": 87.33333,
"name": "Kharagpur",
@@ -18333,7 +16554,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272979,
"latitude": 23.8,
"longitude": 86.45,
"name": "Dhanb\u0101d",
@@ -18343,7 +16563,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254649,
"latitude": 10.8,
"longitude": 79.15,
"name": "Thanj\u0101v\u016br",
@@ -18353,7 +16572,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3129028,
"latitude": 41.45004,
"longitude": 2.24741,
"name": "Badalona",
@@ -18363,7 +16581,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1865714,
"latitude": 35.96972,
"longitude": 139.58861,
"name": "Ageo",
@@ -18373,7 +16590,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1725094,
"latitude": 14.4646,
"longitude": 121.1929,
"name": "Binangonan",
@@ -18383,7 +16599,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2860410,
"latitude": 51.46667,
"longitude": 6.85,
"name": "Oberhausen",
@@ -18393,7 +16608,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1611110,
"latitude": 13.3622,
"longitude": 100.98345,
"name": "Chon Buri",
@@ -18403,7 +16617,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1494114,
"latitude": 53.9059,
"longitude": 86.719,
"name": "Prokop\u2019yevsk",
@@ -18413,7 +16626,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 198629,
"latitude": 0.52036,
"longitude": 35.26992,
"name": "Eldoret",
@@ -18423,7 +16635,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1791249,
"latitude": 39.66472,
"longitude": 106.81222,
"name": "Wuhai",
@@ -18433,9 +16644,8 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2234359,
- "latitude": 4.58333,
- "longitude": 13.68333,
+ "latitude": 4.57728,
+ "longitude": 13.68459,
"name": "Bertoua",
"population": 218111
},
@@ -18443,7 +16653,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3398269,
"latitude": -5.52639,
"longitude": -47.49167,
"name": "Imperatriz",
@@ -18453,7 +16662,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3493032,
"latitude": 18.46156,
"longitude": -69.29718,
"name": "San Pedro de Macor\u00eds",
@@ -18463,7 +16671,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278903,
"latitude": 19.2,
"longitude": 73.16667,
"name": "Amarn\u0101th",
@@ -18473,7 +16680,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734586,
"latitude": 4.85,
"longitude": 100.73333,
"name": "Taiping",
@@ -18483,7 +16689,6 @@
"country_code": "US",
"elevation": 383,
"feature_code": "PPL",
- "geonameid": 5313457,
"latitude": 33.50921,
"longitude": -111.89903,
"name": "Scottsdale",
@@ -18493,7 +16698,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1736309,
"latitude": 6.12104,
"longitude": 100.36014,
"name": "Alor Setar",
@@ -18503,7 +16707,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630328,
"latitude": -7.42139,
"longitude": 109.23444,
"name": "Purwokerto",
@@ -18513,7 +16716,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3465927,
"latitude": -25.29167,
"longitude": -49.22417,
"name": "Colombo",
@@ -18523,17 +16725,24 @@
"country_code": "US",
"elevation": 565,
"feature_code": "PPL",
- "geonameid": 5509403,
"latitude": 36.19886,
"longitude": -115.1175,
"name": "North Las Vegas",
"population": 216961
},
+ {
+ "country_code": "US",
+ "elevation": 13,
+ "feature_code": "PPL",
+ "latitude": 40.69149,
+ "longitude": -73.80569,
+ "name": "Jamaica",
+ "population": 216866
+ },
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 500004,
"latitude": 58.0446,
"longitude": 38.84259,
"name": "Rybinsk",
@@ -18543,7 +16752,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1687894,
"latitude": 14.31222,
"longitude": 121.11139,
"name": "Santa Rosa",
@@ -18553,7 +16761,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 191245,
"latitude": -0.10221,
"longitude": 34.76171,
"name": "Kisumu",
@@ -18563,27 +16770,15 @@
"country_code": "US",
"elevation": 147,
"feature_code": "PPL",
- "geonameid": 4700168,
"latitude": 32.81402,
"longitude": -96.94889,
"name": "Irving",
"population": 216290
},
- {
- "country_code": "GB",
- "elevation": 0,
- "feature_code": "PPL",
- "geonameid": 7535661,
- "latitude": 51.56667,
- "longitude": -0.33333,
- "name": "London Borough of Harrow",
- "population": 216200
- },
{
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1710914,
"latitude": 14.42972,
"longitude": 120.93667,
"name": "Imus",
@@ -18593,7 +16788,6 @@
"country_code": "DE",
"elevation": 278,
"feature_code": "PPLA2",
- "geonameid": 2925177,
"latitude": 47.9959,
"longitude": 7.85222,
"name": "Freiburg",
@@ -18603,7 +16797,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1246321,
"latitude": 6.8293,
"longitude": 79.863,
"name": "Galkissa",
@@ -18613,7 +16806,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630341,
"latitude": -6.55694,
"longitude": 107.44333,
"name": "Purwakarta",
@@ -18623,7 +16815,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 463829,
"latitude": 55.9825,
"longitude": 37.18139,
"name": "Zelenograd",
@@ -18633,7 +16824,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1170295,
"latitude": 25.5251,
"longitude": 69.0159,
"name": "M\u012brpur Kh\u0101s",
@@ -18643,7 +16833,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2290486,
"latitude": 6.87736,
"longitude": -6.45022,
"name": "Daloa",
@@ -18653,7 +16842,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 331180,
"latitude": 13.49667,
"longitude": 39.47528,
"name": "Mek\u2019el\u0113",
@@ -18663,7 +16851,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1510018,
"latitude": 52.53639,
"longitude": 85.20722,
"name": "Biysk",
@@ -18673,7 +16860,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3893894,
"latitude": -36.82699,
"longitude": -73.04977,
"name": "Concepci\u00f3n",
@@ -18683,7 +16869,6 @@
"country_code": "RS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194360,
"latitude": 45.25167,
"longitude": 19.83694,
"name": "Novi Sad",
@@ -18693,7 +16878,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805298,
"latitude": 39.1,
"longitude": 121.71667,
"name": "Jinzhou",
@@ -18703,7 +16887,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3631741,
"latitude": 8.41667,
"longitude": -71.13333,
"name": "Mucumpiz",
@@ -18713,7 +16896,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 519336,
"latitude": 58.51667,
"longitude": 31.28333,
"name": "Velikiy Novgorod",
@@ -18723,7 +16905,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2325330,
"latitude": 5.48333,
"longitude": 7.03041,
"name": "Owerri",
@@ -18733,7 +16914,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3997479,
"latitude": 25.76667,
"longitude": -108.96667,
"name": "Los Mochis",
@@ -18743,7 +16923,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2323411,
"latitude": 6.84323,
"longitude": 3.64776,
"name": "Shagamu",
@@ -18753,7 +16932,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3447186,
"latitude": -23.62611,
"longitude": -46.79167,
"name": "Tabo\u00e3o da Serra",
@@ -18763,7 +16941,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 5350734,
"latitude": 37.54827,
"longitude": -121.98857,
"name": "Fremont",
@@ -18773,7 +16950,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 330186,
"latitude": 8.55,
"longitude": 39.26667,
"name": "Nazr\u0113t",
@@ -18783,7 +16959,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262204,
"latitude": 8.19389,
"longitude": 77.43139,
"name": "N\u0101gercoil",
@@ -18793,7 +16968,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 702569,
"latitude": 50.75932,
"longitude": 25.34244,
"name": "Luts\u2019k",
@@ -18803,7 +16977,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3161732,
"latitude": 60.39299,
"longitude": 5.32415,
"name": "Bergen",
@@ -18813,7 +16986,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 683902,
"latitude": 45.26667,
"longitude": 27.98333,
"name": "Br\u0103ila",
@@ -18823,7 +16995,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 122438,
"latitude": 35.9521,
"longitude": 50.6075,
"name": "Naz\u0327ar\u0101b\u0101d",
@@ -18833,7 +17004,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806466,
"latitude": 32.44202,
"longitude": 105.823,
"name": "Guangyuan",
@@ -18843,7 +17013,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 139889,
"latitude": 36.521,
"longitude": 46.2089,
"name": "B\u016bk\u0101n",
@@ -18853,7 +17022,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460370,
"latitude": -23.30528,
"longitude": -45.96583,
"name": "Jacare\u00ed",
@@ -18863,7 +17031,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864518,
"latitude": 35.65556,
"longitude": 139.55222,
"name": "Ch\u014dfu",
@@ -18873,7 +17040,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1637510,
"latitude": -0.58295,
"longitude": 117.09503,
"name": "Loa Janan",
@@ -18883,7 +17049,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3873775,
"latitude": -34.17083,
"longitude": -70.74444,
"name": "Rancagua",
@@ -18893,7 +17058,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 5359777,
"latitude": 33.66946,
"longitude": -117.82311,
"name": "Irvine",
@@ -18903,7 +17067,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735079,
"latitude": 5.36301,
"longitude": 100.4667,
"name": "Bukit Mertajam",
@@ -18913,7 +17076,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1706090,
"latitude": 13.93944,
"longitude": 121.17389,
"name": "Lipa",
@@ -18923,7 +17085,6 @@
"country_code": "US",
"elevation": 187,
"feature_code": "PPLA2",
- "geonameid": 4049979,
"latitude": 33.52066,
"longitude": -86.80249,
"name": "Birmingham",
@@ -18933,7 +17094,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3457692,
"latitude": -22.21389,
"longitude": -49.94583,
"name": "Mar\u00edlia",
@@ -18943,7 +17103,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2875601,
"latitude": 53.86893,
"longitude": 10.68729,
"name": "L\u00fcbeck",
@@ -18953,7 +17112,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2520058,
"latitude": 37.60512,
"longitude": -0.98623,
"name": "Cartagena",
@@ -18963,7 +17121,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 747323,
"latitude": 41.03333,
"longitude": 28.67528,
"name": "Esenyurt",
@@ -18973,7 +17130,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3165185,
"latitude": 45.64861,
"longitude": 13.78,
"name": "Trieste",
@@ -18983,7 +17139,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 307654,
"latitude": 39.84528,
"longitude": 33.50639,
"name": "K\u0131r\u0131kkale",
@@ -18993,7 +17148,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037078,
"latitude": 49.2,
"longitude": 119.7,
"name": "Hailar",
@@ -19003,7 +17157,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3108286,
"latitude": 41.56667,
"longitude": 2.01667,
"name": "Terrassa",
@@ -19013,7 +17166,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 110690,
"latitude": 18.21639,
"longitude": 42.50528,
"name": "Abh\u0101",
@@ -19023,7 +17175,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2210221,
"latitude": 32.43502,
"longitude": 13.6332,
"name": "Tarhuna",
@@ -19033,7 +17184,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857519,
"latitude": 36.23333,
"longitude": 137.96667,
"name": "Matsumoto",
@@ -19043,7 +17193,6 @@
"country_code": "US",
"elevation": 154,
"feature_code": "PPLA2",
- "geonameid": 5134086,
"latitude": 43.15478,
"longitude": -77.61556,
"name": "Rochester",
@@ -19052,10 +17201,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1814082,
- "latitude": 22.85042,
- "longitude": 113.24701,
+ "feature_code": "PPLA4",
+ "latitude": 22.84067,
+ "longitude": 113.2503,
"name": "Daliang",
"population": 210411
},
@@ -19063,7 +17211,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1568574,
"latitude": 13.76667,
"longitude": 109.23333,
"name": "Quy Nh\u01a1n",
@@ -19073,7 +17220,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260716,
"latitude": 25.77276,
"longitude": 73.32335,
"name": "P\u0101li",
@@ -19083,7 +17229,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1337233,
"latitude": 24.85,
"longitude": 89.36667,
"name": "Bogra",
@@ -19093,9 +17238,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1519928,
- "latitude": 53.16667,
- "longitude": 63.58333,
+ "latitude": 53.21435,
+ "longitude": 63.62463,
"name": "Qostanay",
"population": 210000
},
@@ -19103,7 +17247,6 @@
"country_code": "US",
"elevation": 321,
"feature_code": "PPLA2",
- "geonameid": 5391710,
"latitude": 34.10834,
"longitude": -117.28977,
"name": "San Bernardino",
@@ -19113,7 +17256,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1845136,
"latitude": 37.87472,
"longitude": 127.73417,
"name": "Chuncheon",
@@ -19123,7 +17265,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1562414,
"latitude": 10.34599,
"longitude": 107.08426,
"name": "V\u0169ng T\u00e0u",
@@ -19133,7 +17274,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756253,
"latitude": 51.44083,
"longitude": 5.47778,
"name": "Eindhoven",
@@ -19143,7 +17283,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214204,
"latitude": 2.9595,
"longitude": 99.0687,
"name": "Pematangsiantar",
@@ -19153,7 +17292,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2043572,
"latitude": 40.96946,
"longitude": 126.58523,
"name": "Kanggye-si",
@@ -19163,7 +17301,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3452324,
"latitude": -22.12556,
"longitude": -51.38889,
"name": "Presidente Prudente",
@@ -19173,7 +17310,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1796663,
"latitude": 26.24861,
"longitude": 117.61861,
"name": "Sanming",
@@ -19183,7 +17319,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 347796,
"latitude": 26.55695,
"longitude": 31.69478,
"name": "S\u016bh\u0101j",
@@ -19193,7 +17328,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2983990,
"latitude": 48.11198,
"longitude": -1.67429,
"name": "Rennes",
@@ -19203,7 +17337,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448622,
"latitude": -29.76028,
"longitude": -51.14722,
"name": "S\u00e3o Leopoldo",
@@ -19213,7 +17346,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338400,
"latitude": 6.81609,
"longitude": 3.91588,
"name": "Ijebu-Ode",
@@ -19223,7 +17355,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252797,
"latitude": 30.1,
"longitude": 77.28333,
"name": "Yamun\u0101nagar",
@@ -19233,7 +17364,6 @@
"country_code": "US",
"elevation": 571,
"feature_code": "PPLA2",
- "geonameid": 5811696,
"latitude": 47.65966,
"longitude": -117.42908,
"name": "Spokane",
@@ -19243,7 +17373,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608529,
"latitude": 14.97066,
"longitude": 102.10196,
"name": "Nakhon Ratchasima",
@@ -19253,7 +17382,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3083271,
"latitude": 53.01375,
"longitude": 18.59814,
"name": "Toru\u0144",
@@ -19263,7 +17391,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3909234,
"latitude": -17.98333,
"longitude": -67.15,
"name": "Oruro",
@@ -19273,7 +17400,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 769250,
"latitude": 50.87033,
"longitude": 20.62752,
"name": "Kielce",
@@ -19283,7 +17409,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258182,
"latitude": 24.53333,
"longitude": 81.3,
"name": "Rewa",
@@ -19293,7 +17418,6 @@
"country_code": "US",
"elevation": 377,
"feature_code": "PPL",
- "geonameid": 5295903,
"latitude": 33.35283,
"longitude": -111.78903,
"name": "Gilbert",
@@ -19303,7 +17427,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3500957,
"latitude": 18.42734,
"longitude": -68.97285,
"name": "La Romana",
@@ -19313,7 +17436,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 933773,
"latitude": -24.65451,
"longitude": 25.90859,
"name": "Gaborone",
@@ -19323,17 +17445,24 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808931,
"latitude": 39.24889,
"longitude": 117.78917,
"name": "Hangu",
"population": 208369
},
+ {
+ "country_code": "NZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -36.91754,
+ "longitude": 174.65773,
+ "name": "Waitakere",
+ "population": 208100
+ },
{
"country_code": "AO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3347939,
"latitude": -12.34806,
"longitude": 13.54556,
"name": "Lobito",
@@ -19343,7 +17472,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2185964,
"latitude": -36.8,
"longitude": 174.75,
"name": "North Shore",
@@ -19353,7 +17481,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646194,
"latitude": -6.2375,
"longitude": 106.69556,
"name": "Ciputat",
@@ -19363,7 +17490,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 114259,
"latitude": 29.452,
"longitude": 55.6814,
"name": "S\u012brj\u0101n",
@@ -19373,7 +17499,6 @@
"country_code": "US",
"elevation": 71,
"feature_code": "PPLA2",
- "geonameid": 4744709,
"latitude": 38.88101,
"longitude": -77.10428,
"name": "Arlington",
@@ -19383,7 +17508,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1688830,
"latitude": 14.06694,
"longitude": 121.32583,
"name": "San Pablo",
@@ -19393,7 +17517,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2516326,
"latitude": 36.68645,
"longitude": -6.13606,
"name": "Jerez de la Frontera",
@@ -19403,7 +17526,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7280463,
"latitude": -31.40237,
"longitude": 152.90185,
"name": "North Shore",
@@ -19413,7 +17535,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1647383,
"latitude": -6.55472,
"longitude": 106.70083,
"name": "Ciampea",
@@ -19423,7 +17544,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859884,
"latitude": 35.97639,
"longitude": 139.75361,
"name": "Kasukabe",
@@ -19433,7 +17553,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1626100,
"latitude": -6.85,
"longitude": 107.91667,
"name": "Sumedang Utara",
@@ -19443,7 +17562,6 @@
"country_code": "RO",
"elevation": 126,
"feature_code": "PPLA",
- "geonameid": 671768,
"latitude": 47.06667,
"longitude": 21.93333,
"name": "Oradea",
@@ -19453,7 +17571,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2506999,
"latitude": 36.9,
"longitude": 7.76667,
"name": "Annaba",
@@ -19463,7 +17580,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3111199,
"latitude": 41.54329,
"longitude": 2.10942,
"name": "Sabadell",
@@ -19473,7 +17589,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3116025,
"latitude": 40.32234,
"longitude": -3.86496,
"name": "M\u00f3stoles",
@@ -19483,7 +17598,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1053384,
"latitude": -18.16667,
"longitude": 49.38333,
"name": "Toamasina",
@@ -19493,7 +17607,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1203891,
"latitude": 25.62715,
"longitude": 88.63864,
"name": "Din\u0101jpur",
@@ -19503,7 +17616,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 89055,
"latitude": 32.76272,
"longitude": 21.75506,
"name": "Al Bay\u1e11\u0101\u2019",
@@ -19513,7 +17625,6 @@
"country_code": "US",
"elevation": 73,
"feature_code": "PPLA",
- "geonameid": 4076784,
"latitude": 32.36681,
"longitude": -86.29997,
"name": "Montgomery",
@@ -19523,7 +17634,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460949,
"latitude": -14.78556,
"longitude": -39.28028,
"name": "Itabuna",
@@ -19533,7 +17643,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859383,
"latitude": 34.46667,
"longitude": 135.36667,
"name": "Kishiwada",
@@ -19543,7 +17652,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3531732,
"latitude": 19.85,
"longitude": -90.53333,
"name": "Campeche",
@@ -19553,7 +17661,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793743,
"latitude": 33.63611,
"longitude": 116.97889,
"name": "Suzhou",
@@ -19563,7 +17670,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449319,
"latitude": -22.0175,
"longitude": -47.89083,
"name": "S\u00e3o Carlos",
@@ -19573,7 +17679,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3171728,
"latitude": 45.41519,
"longitude": 11.88181,
"name": "Padova",
@@ -19583,27 +17688,15 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3130616,
"latitude": 40.48205,
"longitude": -3.35996,
"name": "Alcal\u00e1 de Henares",
"population": 204574
},
- {
- "country_code": "NZ",
- "elevation": 0,
- "feature_code": "PPL",
- "geonameid": 7302484,
- "latitude": -36.91754,
- "longitude": 174.65773,
- "name": "Waitakere",
- "population": 204500
- },
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1810437,
"latitude": 30.77576,
"longitude": 106.10294,
"name": "Gaoping",
@@ -19613,7 +17706,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854902,
"latitude": 35.1,
"longitude": 138.86667,
"name": "Numazu",
@@ -19623,7 +17715,6 @@
"country_code": "US",
"elevation": 64,
"feature_code": "PPLA",
- "geonameid": 4781708,
"latitude": 37.55376,
"longitude": -77.46026,
"name": "Richmond",
@@ -19633,7 +17724,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 707471,
"latitude": 48.9215,
"longitude": 24.70972,
"name": "Ivano-Frankivs\u2019k",
@@ -19643,7 +17733,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256922,
"latitude": 17.50427,
"longitude": 78.54263,
"name": "Secunderabad",
@@ -19653,7 +17742,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6825489,
"latitude": 37.14828,
"longitude": 138.23642,
"name": "J\u014detsu",
@@ -19663,7 +17751,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 721472,
"latitude": 47.53333,
"longitude": 21.63333,
"name": "Debrecen",
@@ -19673,7 +17760,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275738,
"latitude": 17.9,
"longitude": 77.55,
"name": "B\u012bdar",
@@ -19683,7 +17769,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3550598,
"latitude": 20.96167,
"longitude": -76.95111,
"name": "Las Tunas",
@@ -19693,7 +17778,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3461655,
"latitude": -22.85833,
"longitude": -47.22,
"name": "Hortol\u00e2ndia",
@@ -19703,7 +17787,6 @@
"country_code": "PR",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 4562831,
"latitude": 18.39856,
"longitude": -66.15572,
"name": "Bayam\u00f3n",
@@ -19713,7 +17796,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037860,
"latitude": 46.58333,
"longitude": 125.0,
"name": "Daqing",
@@ -19723,7 +17805,6 @@
"country_code": "US",
"elevation": 266,
"feature_code": "PPLA",
- "geonameid": 4853828,
"latitude": 41.60054,
"longitude": -93.60911,
"name": "Des Moines",
@@ -19733,7 +17814,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1279290,
"latitude": 23.83639,
"longitude": 91.275,
"name": "Agartala",
@@ -19743,7 +17823,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2929670,
"latitude": 50.98333,
"longitude": 11.03333,
"name": "Erfurt",
@@ -19753,7 +17832,6 @@
"country_code": "US",
"elevation": 161,
"feature_code": "PPL",
- "geonameid": 5377613,
"latitude": 34.16056,
"longitude": -118.26452,
"name": "North Glendale",
@@ -19763,7 +17841,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262482,
"latitude": 25.38333,
"longitude": 86.46667,
"name": "Munger",
@@ -19773,7 +17850,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2232239,
"latitude": 3.8,
"longitude": 10.13333,
"name": "Ed\u00e9a",
@@ -19783,7 +17859,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854747,
"latitude": 35.25556,
"longitude": 139.15972,
"name": "Odawara",
@@ -19793,7 +17868,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2306079,
"latitude": 5.7,
"longitude": -0.33333,
"name": "Achiaman",
@@ -19803,7 +17877,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 303195,
"latitude": 37.07417,
"longitude": 36.24778,
"name": "Osmaniye",
@@ -19813,7 +17886,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2394560,
"latitude": 9.70853,
"longitude": 1.66598,
"name": "Djougou",
@@ -19823,7 +17895,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5911606,
"latitude": 49.26636,
"longitude": -122.95263,
"name": "Burnaby",
@@ -19833,7 +17904,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 142363,
"latitude": 36.55132,
"longitude": 52.67895,
"name": "B\u0101bol",
@@ -19843,7 +17913,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275068,
"latitude": 21.3,
"longitude": 76.23333,
"name": "Burh\u0101npur",
@@ -19853,7 +17922,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 634963,
"latitude": 61.49911,
"longitude": 23.78712,
"name": "Tampere",
@@ -19863,7 +17931,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808316,
"latitude": 28.58917,
"longitude": 112.32833,
"name": "Yiyang",
@@ -19873,7 +17940,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 748893,
"latitude": 41.15917,
"longitude": 27.8,
"name": "\u00c7orlu",
@@ -19883,7 +17949,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2910685,
"latitude": 53.46667,
"longitude": 9.98333,
"name": "Harburg",
@@ -19893,7 +17958,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803331,
"latitude": 35.60028,
"longitude": 103.20639,
"name": "Linxia",
@@ -19903,7 +17967,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1336137,
"latitude": 22.70194,
"longitude": 90.37111,
"name": "Baris\u0101l",
@@ -19913,7 +17976,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646494,
"latitude": -6.39472,
"longitude": 106.95917,
"name": "Cileungsi",
@@ -19923,7 +17985,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262292,
"latitude": 22.7,
"longitude": 72.86667,
"name": "Nadi\u0101d",
@@ -19933,7 +17994,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3165926,
"latitude": 40.47611,
"longitude": 17.22972,
"name": "Taranto",
@@ -19943,7 +18003,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3394682,
"latitude": -5.1875,
"longitude": -37.34417,
"name": "Mossor\u00f3",
@@ -19953,7 +18012,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 504341,
"latitude": 57.8136,
"longitude": 28.3496,
"name": "Pskov",
@@ -19963,7 +18021,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785738,
"latitude": 35.02306,
"longitude": 110.99278,
"name": "Yuncheng",
@@ -19973,7 +18030,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2219905,
"latitude": 32.64861,
"longitude": 14.26191,
"name": "Al Khums",
@@ -19983,7 +18039,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1181096,
"latitude": 31.72,
"longitude": 72.97889,
"name": "Chiniot",
@@ -19993,7 +18048,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3460718,
"latitude": -23.54889,
"longitude": -46.93417,
"name": "Itapevi",
@@ -20003,7 +18057,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1629710,
"latitude": -6.15917,
"longitude": 107.29806,
"name": "Rengasdengklok",
@@ -20013,7 +18066,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447624,
"latitude": -19.46583,
"longitude": -44.24667,
"name": "Sete Lagoas",
@@ -20023,7 +18075,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7281017,
"latitude": -33.58331,
"longitude": -70.63419,
"name": "La Pintana",
@@ -20033,7 +18084,6 @@
"country_code": "US",
"elevation": 28,
"feature_code": "PPLA2",
- "geonameid": 5373900,
"latitude": 37.6391,
"longitude": -120.99688,
"name": "Modesto",
@@ -20043,7 +18093,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1153671,
"latitude": 18.79038,
"longitude": 98.98468,
"name": "Chiang Mai",
@@ -20053,9 +18102,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1520172,
- "latitude": 54.87528,
- "longitude": 69.16278,
+ "latitude": 54.87278,
+ "longitude": 69.143,
"name": "Petropavlovsk",
"population": 200920
},
@@ -20063,7 +18111,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3647651,
"latitude": 10.38828,
"longitude": -71.43992,
"name": "Cabimas",
@@ -20073,7 +18120,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272543,
"latitude": 10.36896,
"longitude": 77.98036,
"name": "Dindigul",
@@ -20083,7 +18129,6 @@
"country_code": "US",
"elevation": 29,
"feature_code": "PPLA2",
- "geonameid": 4466033,
"latitude": 35.05266,
"longitude": -78.87836,
"name": "Fayetteville",
@@ -20093,7 +18138,6 @@
"country_code": "CY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 146268,
"latitude": 35.16667,
"longitude": 33.36667,
"name": "Nicosia",
@@ -20103,7 +18147,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3651297,
"latitude": -0.25,
"longitude": -79.15,
"name": "Santo Domingo de los Colorados",
@@ -20113,7 +18156,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1139715,
"latitude": 34.42647,
"longitude": 70.45153,
"name": "Jal\u0101l\u0101b\u0101d",
@@ -20123,7 +18165,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2320831,
"latitude": 5.8086,
"longitude": 8.0812,
"name": "Ugep",
@@ -20133,7 +18174,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 100425,
"latitude": 24.08912,
"longitude": 38.06374,
"name": "Yanbu\u2018 al Ba\u1e29r",
@@ -20143,7 +18183,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2800481,
"latitude": 50.41136,
"longitude": 4.44448,
"name": "Charleroi",
@@ -20153,7 +18192,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448742,
"latitude": -28.23333,
"longitude": -49.16667,
"name": "S\u00e3o Jos\u00e9",
@@ -20163,7 +18201,6 @@
"country_code": "CA",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 7602078,
"latitude": 49.08938,
"longitude": -123.08241,
"name": "Ladner",
@@ -20173,7 +18210,6 @@
"country_code": "CN",
"elevation": 20,
"feature_code": "PPLA3",
- "geonameid": 7158935,
"latitude": 21.02448,
"longitude": 110.39613,
"name": "\u4e1c\u6d77\u5c9b",
@@ -20183,7 +18219,6 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1527534,
"latitude": 40.51506,
"longitude": 72.80826,
"name": "Osh",
@@ -20193,7 +18228,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 608668,
"latitude": 51.23333,
"longitude": 51.36667,
"name": "Oral",
@@ -20203,7 +18237,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1518543,
"latitude": 45.0,
"longitude": 77.91667,
"name": "Taldyqorghan",
@@ -20213,7 +18246,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1282898,
"latitude": 28.26689,
"longitude": 83.96851,
"name": "Pokhara",
@@ -20223,7 +18255,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256320,
"latitude": 27.61206,
"longitude": 75.13996,
"name": "S\u012bkar",
@@ -20233,7 +18264,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2746301,
"latitude": 51.55551,
"longitude": 5.0913,
"name": "Tilburg",
@@ -20243,7 +18273,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 579492,
"latitude": 52.02782,
"longitude": 47.8007,
"name": "Balakovo",
@@ -20253,7 +18282,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 580922,
"latitude": 44.9892,
"longitude": 41.1234,
"name": "Armavir",
@@ -20263,7 +18291,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1175088,
"latitude": 31.97444,
"longitude": 74.22444,
"name": "Kamoke",
@@ -20273,7 +18300,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6545349,
"latitude": 25.77769,
"longitude": 88.89169,
"name": "Saidpur",
@@ -20283,7 +18309,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 143534,
"latitude": 36.46961,
"longitude": 52.35072,
"name": "\u0100mol",
@@ -20293,7 +18318,6 @@
"country_code": "US",
"elevation": 44,
"feature_code": "PPLA2",
- "geonameid": 4341513,
"latitude": 32.52515,
"longitude": -93.75018,
"name": "Shreveport",
@@ -20303,7 +18327,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 712165,
"latitude": 49.80939,
"longitude": 30.11209,
"name": "Bila Tserkva",
@@ -20313,7 +18336,6 @@
"country_code": "US",
"elevation": 291,
"feature_code": "PPLA2",
- "geonameid": 5145476,
"latitude": 41.08144,
"longitude": -81.51901,
"name": "Akron",
@@ -20323,7 +18345,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2650839,
"latitude": 52.5,
"longitude": -2.08333,
"name": "Dudley",
@@ -20333,7 +18354,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2912621,
"latitude": 51.35,
"longitude": 7.46667,
"name": "Hagen",
@@ -20343,7 +18363,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6141256,
"latitude": 52.11679,
"longitude": -106.63452,
"name": "Saskatoon",
@@ -20353,7 +18372,6 @@
"country_code": "PL",
"elevation": 200,
"feature_code": "PPLA3",
- "geonameid": 3099230,
"latitude": 50.29761,
"longitude": 18.67658,
"name": "Gliwice",
@@ -20363,7 +18381,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529569,
"latitude": 44.01667,
"longitude": 87.31667,
"name": "Changji",
@@ -20373,7 +18390,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1702540,
"latitude": 14.84194,
"longitude": 120.81167,
"name": "Malolos",
@@ -20383,7 +18399,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275120,
"latitude": 28.4,
"longitude": 77.85,
"name": "Bulandshahr",
@@ -20393,7 +18408,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3439214,
"latitude": -25.3552,
"longitude": -57.44545,
"name": "Capiat\u00e1",
@@ -20403,7 +18417,6 @@
"country_code": "ES",
"elevation": 460,
"feature_code": "PPLA",
- "geonameid": 3114472,
"latitude": 42.81687,
"longitude": -1.64323,
"name": "Pamplona",
@@ -20413,7 +18426,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259166,
"latitude": 25.78333,
"longitude": 87.46667,
"name": "P\u016brnia",
@@ -20423,7 +18435,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804850,
"latitude": 23.69767,
"longitude": 103.30372,
"name": "Kaiyuan",
@@ -20433,7 +18444,6 @@
"country_code": "US",
"elevation": 74,
"feature_code": "PPLA2",
- "geonameid": 5812944,
"latitude": 47.25288,
"longitude": -122.44429,
"name": "Tacoma",
@@ -20443,7 +18453,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2844588,
"latitude": 54.0887,
"longitude": 12.14049,
"name": "Rostock",
@@ -20453,7 +18462,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735902,
"latitude": 2.3,
"longitude": 111.81667,
"name": "Sibu",
@@ -20463,7 +18471,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3654533,
"latitude": -3.26667,
"longitude": -79.96667,
"name": "Machala",
@@ -20473,7 +18480,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516266,
"latitude": 14.9,
"longitude": -92.28333,
"name": "Tapachula",
@@ -20483,7 +18489,6 @@
"country_code": "US",
"elevation": 207,
"feature_code": "PPL",
- "geonameid": 4883817,
"latitude": 41.76058,
"longitude": -88.32007,
"name": "Aurora",
@@ -20493,7 +18498,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 5380184,
"latitude": 34.1975,
"longitude": -119.17705,
"name": "Oxnard",
@@ -20503,7 +18507,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269935,
"latitude": 15.26667,
"longitude": 76.4,
"name": "Hospet",
@@ -20513,7 +18516,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3121960,
"latitude": 40.28419,
"longitude": -3.79415,
"name": "Fuenlabrada",
@@ -20523,7 +18525,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800657,
"latitude": 39.93917,
"longitude": 116.09167,
"name": "Mentougou",
@@ -20533,7 +18534,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3870294,
"latitude": -35.43333,
"longitude": -71.66667,
"name": "Talca",
@@ -20543,7 +18543,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270642,
"latitude": 28.46667,
"longitude": 77.03333,
"name": "Gurgaon",
@@ -20553,7 +18552,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641430,
"latitude": 52.25,
"longitude": -0.88333,
"name": "Northampton",
@@ -20563,7 +18561,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1584071,
"latitude": 11.94646,
"longitude": 108.44193,
"name": "\u00d0\u00e0 L\u1ea1t",
@@ -20573,7 +18570,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 140463,
"latitude": 32.86628,
"longitude": 59.22114,
"name": "B\u012brjand",
@@ -20583,7 +18579,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2282006,
"latitude": 4.74851,
"longitude": -6.6363,
"name": "San-P\u00e9dro",
@@ -20593,7 +18588,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1651944,
"latitude": 17.96667,
"longitude": 102.6,
"name": "Vientiane",
@@ -20603,7 +18597,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858296,
"latitude": 34.23333,
"longitude": 132.56667,
"name": "Kure",
@@ -20613,7 +18606,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 745028,
"latitude": 40.76694,
"longitude": 29.91694,
"name": "\u0130zmit",
@@ -20623,7 +18615,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2984114,
"latitude": 49.25,
"longitude": 4.03333,
"name": "Reims",
@@ -20633,7 +18624,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3474574,
"latitude": -10.21278,
"longitude": -48.36028,
"name": "Palmas",
@@ -20643,7 +18633,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1843702,
"latitude": 37.27917,
"longitude": 127.4425,
"name": "Ich'\u014fn",
@@ -20653,7 +18642,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257540,
"latitude": 28.58333,
"longitude": 78.55,
"name": "Sambhal",
@@ -20663,7 +18651,6 @@
"country_code": "US",
"elevation": 377,
"feature_code": "PPL",
- "geonameid": 5349755,
"latitude": 34.09223,
"longitude": -117.43505,
"name": "Fontana",
@@ -20673,7 +18660,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3472343,
"latitude": -22.73917,
"longitude": -47.33139,
"name": "Americana",
@@ -20683,7 +18669,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 563464,
"latitude": 51.48389,
"longitude": 46.10528,
"name": "Engel\u2019s",
@@ -20693,7 +18678,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1271715,
"latitude": 23.21667,
"longitude": 72.68333,
"name": "G\u0101ndh\u012bnagar",
@@ -20703,7 +18687,6 @@
"country_code": "US",
"elevation": 25,
"feature_code": "PPL",
- "geonameid": 5145215,
"latitude": 40.93121,
"longitude": -73.89875,
"name": "Yonkers",
@@ -20713,7 +18696,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 732770,
"latitude": 42.50606,
"longitude": 27.46781,
"name": "Burgas",
@@ -20723,7 +18705,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262395,
"latitude": 23.85,
"longitude": 80.4,
"name": "Murw\u0101ra",
@@ -20733,7 +18714,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3995523,
"latitude": 26.9,
"longitude": -101.41667,
"name": "Monclova",
@@ -20743,7 +18723,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856199,
"latitude": 37.45,
"longitude": 138.85,
"name": "Nagaoka",
@@ -20753,7 +18732,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841988,
"latitude": 37.5986,
"longitude": 127.1394,
"name": "Kuri",
@@ -20763,7 +18741,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3645213,
"latitude": 11.4045,
"longitude": -69.67344,
"name": "Coro",
@@ -20773,7 +18750,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850692,
"latitude": 35.72526,
"longitude": 139.5383,
"name": "Nishi-Tokyo-shi",
@@ -20783,7 +18759,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806882,
"latitude": 22.456,
"longitude": 113.0482,
"name": "Xinhui",
@@ -20793,7 +18768,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPLA2",
- "geonameid": 4076598,
"latitude": 30.69436,
"longitude": -88.04305,
"name": "Mobile",
@@ -20803,7 +18777,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1640344,
"latitude": -3.945,
"longitude": 122.49889,
"name": "Kendari",
@@ -20813,7 +18786,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3392242,
"latitude": -9.39861,
"longitude": -40.50083,
"name": "Petrolina",
@@ -20823,7 +18795,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2279755,
"latitude": 6.82055,
"longitude": -5.27674,
"name": "Yamoussoukro",
@@ -20833,7 +18804,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2892518,
"latitude": 51.31667,
"longitude": 9.5,
"name": "Kassel",
@@ -20843,7 +18813,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261913,
"latitude": 28.68333,
"longitude": 77.06667,
"name": "N\u0101ngloi J\u0101t",
@@ -20853,7 +18822,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 496285,
"latitude": 64.5635,
"longitude": 39.8302,
"name": "Severodvinsk",
@@ -20863,7 +18831,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2639996,
"latitude": 50.79899,
"longitude": -1.09125,
"name": "Portsmouth",
@@ -20873,7 +18840,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3982912,
"latitude": 22.2,
"longitude": -100.95,
"name": "Soledad D\u00edez Guti\u00e9rrez",
@@ -20883,7 +18849,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328765,
"latitude": 6.01986,
"longitude": 6.91478,
"name": "Nnewi",
@@ -20893,7 +18858,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632276,
"latitude": -6.42139,
"longitude": 106.73306,
"name": "Parung",
@@ -20903,7 +18867,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464688,
"latitude": -20.13889,
"longitude": -44.88389,
"name": "Divin\u00f3polis",
@@ -20913,7 +18876,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6947639,
"latitude": 41.09307,
"longitude": 28.80203,
"name": "Ba\u015fak\u015fehir",
@@ -20923,7 +18885,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2643339,
"latitude": 51.87967,
"longitude": -0.41748,
"name": "Luton",
@@ -20933,7 +18894,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811619,
"latitude": 30.4,
"longitude": 114.83333,
"name": "Ezhou",
@@ -20943,7 +18903,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3395473,
"latitude": -3.87667,
"longitude": -38.62556,
"name": "Maracana\u00fa",
@@ -20953,7 +18912,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861310,
"latitude": 34.78427,
"longitude": 135.40126,
"name": "Itami",
@@ -20963,7 +18921,6 @@
"country_code": "US",
"elevation": 102,
"feature_code": "PPLA",
- "geonameid": 4119403,
"latitude": 34.74648,
"longitude": -92.28959,
"name": "Little Rock",
@@ -20973,7 +18930,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1573517,
"latitude": 20.41667,
"longitude": 106.16667,
"name": "Nam \u00d0\u1ecbnh",
@@ -20983,7 +18939,6 @@
"country_code": "US",
"elevation": 497,
"feature_code": "PPL",
- "geonameid": 5374732,
"latitude": 33.93752,
"longitude": -117.23059,
"name": "Moreno Valley",
@@ -20993,7 +18948,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849372,
"latitude": 34.88333,
"longitude": 135.8,
"name": "Uji",
@@ -21003,7 +18957,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264637,
"latitude": 16.16667,
"longitude": 81.13333,
"name": "Machil\u012bpatnam",
@@ -21013,7 +18966,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530594,
"latitude": 22.26667,
"longitude": -97.83333,
"name": "Ciudad Madero",
@@ -21023,7 +18975,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3567597,
"latitude": 20.37917,
"longitude": -76.64333,
"name": "Bayamo",
@@ -21033,7 +18984,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267480,
"latitude": 25.53333,
"longitude": 87.58333,
"name": "Katih\u0101r",
@@ -21043,7 +18993,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1192366,
"latitude": 24.80287,
"longitude": 88.95084,
"name": "P\u0101r Naogaon",
@@ -21053,7 +19002,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641673,
"latitude": 54.97328,
"longitude": -1.61396,
"name": "Newcastle upon Tyne",
@@ -21063,7 +19011,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 598098,
"latitude": 55.71722,
"longitude": 21.1175,
"name": "Klaip\u0117da",
@@ -21073,7 +19020,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3080985,
"latitude": 50.32492,
"longitude": 18.78576,
"name": "Zabrze",
@@ -21083,7 +19029,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 140380,
"latitude": 37.47473,
"longitude": 57.32903,
"name": "Bojn\u016brd",
@@ -21093,7 +19038,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3639898,
"latitude": 10.4762,
"longitude": -66.54266,
"name": "Guatire",
@@ -21103,7 +19047,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1806696,
"latitude": 22.81898,
"longitude": 113.67306,
"name": "Humen",
@@ -21113,7 +19056,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2481007,
"latitude": 35.18994,
"longitude": -0.63085,
"name": "Sidi Bel Abb\u00e8s",
@@ -21123,7 +19065,6 @@
"country_code": "US",
"elevation": 159,
"feature_code": "PPL",
- "geonameid": 5352423,
"latitude": 34.14251,
"longitude": -118.25508,
"name": "Glendale",
@@ -21133,7 +19074,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1610780,
"latitude": 7.00836,
"longitude": 100.47668,
"name": "Hat Yai",
@@ -21143,7 +19083,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2037086,
"latitude": 40.85158,
"longitude": 122.74754,
"name": "Haicheng",
@@ -21153,7 +19092,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851348,
"latitude": 34.88333,
"longitude": 136.58333,
"name": "Suzuka",
@@ -21163,7 +19101,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2437798,
"latitude": 13.80716,
"longitude": 8.9881,
"name": "Zinder",
@@ -21173,7 +19110,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1645895,
"latitude": -6.26583,
"longitude": 106.55639,
"name": "Curug",
@@ -21183,7 +19119,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3689169,
"latitude": 7.06528,
"longitude": -73.85472,
"name": "Barrancabermeja",
@@ -21193,7 +19128,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 462444,
"latitude": 55.17111,
"longitude": 59.65083,
"name": "Zlatoust",
@@ -21203,7 +19137,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275899,
"latitude": 28.78333,
"longitude": 76.13333,
"name": "Bhiw\u0101ni",
@@ -21213,7 +19146,6 @@
"country_code": "US",
"elevation": 1118,
"feature_code": "PPLA2",
- "geonameid": 5516233,
"latitude": 35.222,
"longitude": -101.8313,
"name": "Amarillo",
@@ -21223,7 +19155,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2639912,
"latitude": 53.76667,
"longitude": -2.71667,
"name": "Preston",
@@ -21233,7 +19164,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783633,
"latitude": 35.40056,
"longitude": 116.96556,
"name": "Zoucheng",
@@ -21243,7 +19173,6 @@
"country_code": "IE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2965140,
"latitude": 51.89797,
"longitude": -8.47061,
"name": "Cork",
@@ -21253,7 +19182,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99454,
"latitude": 33.35581,
"longitude": 43.78612,
"name": "Al Fall\u016bjah",
@@ -21263,7 +19191,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337207,
"latitude": 7.4632,
"longitude": 5.4281,
"name": "Ise-Ekiti",
@@ -21273,7 +19200,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 632453,
"latitude": 60.29414,
"longitude": 25.04099,
"name": "Vantaa",
@@ -21283,7 +19209,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1859100,
"latitude": 35.66389,
"longitude": 138.56833,
"name": "K\u014dfu-shi",
@@ -21293,7 +19218,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 5358705,
"latitude": 33.6603,
"longitude": -117.99923,
"name": "Huntington Beach",
@@ -21303,7 +19227,6 @@
"country_code": "US",
"elevation": 82,
"feature_code": "PPLA2",
- "geonameid": 4188985,
"latitude": 32.46098,
"longitude": -84.98771,
"name": "Columbus",
@@ -21313,7 +19236,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1166652,
"latitude": 28.30623,
"longitude": 70.13065,
"name": "S\u0101diq\u0101b\u0101d",
@@ -21323,7 +19245,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359173,
"latitude": 29.07441,
"longitude": 31.09785,
"name": "Ban\u012b Suwayf",
@@ -21333,7 +19254,6 @@
"country_code": "US",
"elevation": 555,
"feature_code": "PPL",
- "geonameid": 5513343,
"latitude": 36.21108,
"longitude": -115.07306,
"name": "Sunrise Manor",
@@ -21343,7 +19263,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 484972,
"latitude": 53.1585,
"longitude": 48.4681,
"name": "Syzran\u2019",
@@ -21353,7 +19272,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3101950,
"latitude": 50.34802,
"longitude": 18.93282,
"name": "Bytom",
@@ -21363,7 +19281,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 207570,
"latitude": -7.0,
"longitude": 23.45,
"name": "Mwene-Ditu",
@@ -21373,7 +19290,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1695743,
"latitude": 11.25111,
"longitude": 125.00639,
"name": "Panalanoy",
@@ -21383,7 +19299,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861107,
"latitude": 34.48333,
"longitude": 135.43333,
"name": "Izumi",
@@ -21393,7 +19308,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3389353,
"latitude": -2.44306,
"longitude": -54.70833,
"name": "Santar\u00e9m",
@@ -21403,7 +19317,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791748,
"latitude": 30.80389,
"longitude": 108.38972,
"name": "Wanxian",
@@ -21413,7 +19326,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 916095,
"latitude": -14.4469,
"longitude": 28.44644,
"name": "Kabwe",
@@ -21423,7 +19335,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1028434,
"latitude": -17.87861,
"longitude": 36.88833,
"name": "Quelimane",
@@ -21433,7 +19344,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6693674,
"latitude": 32.09174,
"longitude": 34.88503,
"name": "Petah Tikva",
@@ -21443,7 +19353,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3837702,
"latitude": -28.46957,
"longitude": -65.78524,
"name": "San Fernando del Valle de Catamarca",
@@ -21453,7 +19362,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2521886,
"latitude": 36.83814,
"longitude": -2.45974,
"name": "Almer\u00eda",
@@ -21463,7 +19371,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468031,
"latitude": -12.6975,
"longitude": -38.32417,
"name": "Cama\u00e7ari",
@@ -21473,7 +19380,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1638868,
"latitude": -8.4964,
"longitude": 119.8877,
"name": "Labuhanbajo",
@@ -21483,7 +19389,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1647003,
"latitude": -6.48167,
"longitude": 106.85417,
"name": "Cibinong",
@@ -21493,7 +19398,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1812521,
"latitude": 22.94594,
"longitude": 115.64204,
"name": "Donghai",
@@ -21503,7 +19407,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817240,
"latitude": 36.55833,
"longitude": 104.20806,
"name": "Baiyin",
@@ -21513,7 +19416,6 @@
"country_code": "EH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2462881,
"latitude": 27.16224,
"longitude": -13.20315,
"name": "La\u00e2youne / El Aai\u00fan",
@@ -21523,7 +19425,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1704703,
"latitude": 15.2216,
"longitude": 120.5736,
"name": "Mabalacat",
@@ -21533,7 +19434,6 @@
"country_code": "US",
"elevation": 195,
"feature_code": "PPLA2",
- "geonameid": 4994358,
"latitude": 42.96336,
"longitude": -85.66809,
"name": "Grand Rapids",
@@ -21543,7 +19443,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3450404,
"latitude": -22.75361,
"longitude": -47.41361,
"name": "Santa B\u00e1rbara d'Oeste",
@@ -21553,7 +19452,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3363613,
"latitude": -33.70468,
"longitude": 18.96552,
"name": "Noorder-Paarl",
@@ -21563,7 +19461,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3451138,
"latitude": -32.035,
"longitude": -52.09861,
"name": "Rio Grande",
@@ -21573,9 +19470,8 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2542051,
- "latitude": 33.70659,
- "longitude": -7.39442,
+ "latitude": 33.68607,
+ "longitude": -7.38298,
"name": "Mohammedia",
"population": 187708
},
@@ -21583,7 +19479,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2636503,
"latitude": 51.35,
"longitude": -0.2,
"name": "Sutton",
@@ -21593,7 +19488,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3181554,
"latitude": 45.52478,
"longitude": 10.22727,
"name": "Brescia",
@@ -21603,7 +19497,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1512979,
"latitude": 40.52861,
"longitude": 70.9425,
"name": "Qo\u2018qon",
@@ -21613,7 +19506,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859116,
"latitude": 35.72639,
"longitude": 139.48389,
"name": "Kodaira",
@@ -21623,7 +19515,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2122104,
"latitude": 53.0452,
"longitude": 158.6483,
"name": "Petropavlovsk-Kamchatskiy",
@@ -21633,7 +19524,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 5380202,
"latitude": 34.19084,
"longitude": -119.2415,
"name": "Oxnard Shores",
@@ -21643,7 +19533,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3991328,
"latitude": 20.62041,
"longitude": -105.23066,
"name": "Puerto Vallarta",
@@ -21653,7 +19542,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468376,
"latitude": -20.84889,
"longitude": -41.11278,
"name": "Cachoeiro de Itapemirim",
@@ -21663,7 +19551,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2314705,
"latitude": -5.04098,
"longitude": 18.81619,
"name": "Kikwit",
@@ -21673,7 +19560,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3544091,
"latitude": 22.4175,
"longitude": -83.69806,
"name": "Pinar del R\u00edo",
@@ -21683,7 +19569,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3564124,
"latitude": 22.14611,
"longitude": -80.43556,
"name": "Cienfuegos",
@@ -21693,7 +19578,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 295530,
"latitude": 31.25181,
"longitude": 34.7913,
"name": "Beersheba",
@@ -21703,7 +19587,6 @@
"country_code": "US",
"elevation": 1299,
"feature_code": "PPLA",
- "geonameid": 5780993,
"latitude": 40.76078,
"longitude": -111.89105,
"name": "Salt Lake City",
@@ -21713,7 +19596,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259064,
"latitude": 26.21667,
"longitude": 81.23333,
"name": "R\u0101e Bareli",
@@ -21723,7 +19605,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 952865,
"latitude": -26.25,
"longitude": 28.4,
"name": "Springs",
@@ -21733,7 +19614,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112708,
"latitude": 36.6,
"longitude": 140.65,
"name": "Hitachi",
@@ -21743,7 +19623,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2216885,
"latitude": 32.75222,
"longitude": 12.72778,
"name": "Zawiya",
@@ -21753,7 +19632,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636930,
"latitude": -7.6298,
"longitude": 111.5239,
"name": "Madiun",
@@ -21763,7 +19641,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270351,
"latitude": 29.96667,
"longitude": 78.16667,
"name": "Haridw\u0101r",
@@ -21773,7 +19650,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3118594,
"latitude": 40.32718,
"longitude": -3.7635,
"name": "Legan\u00e9s",
@@ -21783,7 +19659,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 380174,
"latitude": 11.7891,
"longitude": 34.3592,
"name": "Ad-Damazin",
@@ -21793,7 +19668,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3899361,
"latitude": -18.475,
"longitude": -70.30417,
"name": "Arica",
@@ -21803,7 +19677,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3003796,
"latitude": 49.4938,
"longitude": 0.10767,
"name": "Le Havre",
@@ -21813,7 +19686,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4004886,
"latitude": 31.30862,
"longitude": -110.94217,
"name": "Heroica Nogales",
@@ -21823,7 +19695,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279754,
"latitude": 24.19973,
"longitude": 82.67535,
"name": "Singrauli",
@@ -21833,7 +19704,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6122091,
"latitude": 43.87111,
"longitude": -79.43725,
"name": "Richmond Hill",
@@ -21843,7 +19713,6 @@
"country_code": "IE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2964506,
"latitude": 53.29395,
"longitude": -6.13586,
"name": "D\u00fan Laoghaire",
@@ -21853,17 +19722,15 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3110044,
"latitude": 43.31283,
"longitude": -1.97499,
- "name": "San Sebasti\u00e1n",
+ "name": "Donostia / San Sebasti\u00e1n",
"population": 185357
},
{
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2911240,
"latitude": 51.68033,
"longitude": 7.82089,
"name": "Hamm",
@@ -21873,7 +19740,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 56399,
"latitude": 0.06968,
"longitude": 42.74497,
"name": "Jamaame",
@@ -21883,7 +19749,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1234633,
"latitude": 6.773,
"longitude": 79.8816,
"name": "Moratuwa",
@@ -21893,7 +19758,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 305268,
"latitude": 39.42417,
"longitude": 29.98333,
"name": "K\u00fctahya",
@@ -21903,7 +19767,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2874225,
"latitude": 50.0,
"longitude": 8.27111,
"name": "Mainz",
@@ -21913,7 +19776,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1699802,
"latitude": 14.73694,
"longitude": 120.96083,
"name": "Meycauayan",
@@ -21923,7 +19785,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785462,
"latitude": 32.12722,
"longitude": 112.75417,
"name": "Zaoyang",
@@ -21933,7 +19794,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2642465,
"latitude": 52.04172,
"longitude": -0.75583,
"name": "Milton Keynes",
@@ -21943,7 +19803,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268773,
"latitude": 21.51667,
"longitude": 70.46667,
"name": "J\u016bn\u0101gadh",
@@ -21953,7 +19812,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 884979,
"latitude": -18.9707,
"longitude": 32.67086,
"name": "Mutare",
@@ -21963,7 +19821,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2312895,
"latitude": 0.04865,
"longitude": 18.26034,
"name": "Mbandaka",
@@ -21973,7 +19830,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1631648,
"latitude": -6.9,
"longitude": 109.36667,
"name": "Pemalang",
@@ -21983,7 +19839,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1797353,
"latitude": 24.91389,
"longitude": 118.58583,
"name": "Quanzhou",
@@ -21993,7 +19848,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3837056,
"latitude": -33.29501,
"longitude": -66.33563,
"name": "San Luis",
@@ -22003,7 +19857,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2660646,
"latitude": 46.20222,
"longitude": 6.14569,
"name": "Gen\u00e8ve",
@@ -22013,7 +19866,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1682812,
"latitude": 15.48889,
"longitude": 120.59861,
"name": "Tarlac",
@@ -22023,7 +19875,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1182092,
"latitude": 30.16667,
"longitude": 72.65,
"name": "B\u016brew\u0101la",
@@ -22033,7 +19884,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038584,
"latitude": 41.94306,
"longitude": 126.42861,
"name": "Baishan",
@@ -22043,7 +19893,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2657832,
"latitude": 57.14369,
"longitude": -2.09814,
"name": "Aberdeen",
@@ -22053,7 +19902,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785453,
"latitude": 34.86472,
"longitude": 117.55417,
"name": "Zaozhuang",
@@ -22063,7 +19911,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2129376,
"latitude": 42.975,
"longitude": 144.37472,
"name": "Kushiro",
@@ -22073,7 +19920,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 748879,
"latitude": 40.54889,
"longitude": 34.95333,
"name": "\u00c7orum",
@@ -22083,7 +19929,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272051,
"latitude": 16.7,
"longitude": 81.1,
"name": "El\u016bru",
@@ -22093,7 +19938,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1282931,
"latitude": 27.67658,
"longitude": 85.31417,
"name": "P\u0101tan",
@@ -22103,7 +19947,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3654410,
"latitude": -0.95,
"longitude": -80.73333,
"name": "Manta",
@@ -22113,7 +19956,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1638063,
"latitude": -6.81167,
"longitude": 107.6175,
"name": "Lembang",
@@ -22123,7 +19965,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275778,
"latitude": 21.05,
"longitude": 75.76667,
"name": "Bhus\u0101wal",
@@ -22133,7 +19974,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1608048,
"latitude": 13.91301,
"longitude": 100.49883,
"name": "Pak Kret",
@@ -22143,7 +19983,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856942,
"latitude": 35.68351,
"longitude": 139.55963,
"name": "Mitaka-shi",
@@ -22153,7 +19992,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267031,
"latitude": 21.83333,
"longitude": 76.33333,
"name": "Khandwa",
@@ -22163,7 +20001,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3109718,
"latitude": 43.46472,
"longitude": -3.80444,
"name": "Santander",
@@ -22173,7 +20010,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2792413,
"latitude": 50.63373,
"longitude": 5.56749,
"name": "Li\u00e8ge",
@@ -22183,7 +20019,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3644918,
"latitude": 10.15892,
"longitude": -66.88575,
"name": "C\u00faa",
@@ -22193,7 +20028,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111220,
"latitude": 35.71667,
"longitude": 140.23333,
"name": "Sakura",
@@ -22203,7 +20037,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1504826,
"latitude": 56.4185,
"longitude": 61.9329,
"name": "Kamensk-Ural\u2019skiy",
@@ -22213,7 +20046,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460950,
"latitude": -22.74444,
"longitude": -42.85944,
"name": "Itabora\u00ed",
@@ -22223,7 +20055,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283582,
"latitude": 26.4831,
"longitude": 87.28337,
"name": "Bir\u0101tnagar",
@@ -22233,7 +20064,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1014073,
"latitude": -26.36094,
"longitude": 27.39767,
"name": "Carletonville",
@@ -22243,7 +20073,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277799,
"latitude": 27.58333,
"longitude": 81.6,
"name": "Bahraich",
@@ -22253,7 +20082,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5894171,
"latitude": 44.40011,
"longitude": -79.66634,
"name": "Barrie",
@@ -22263,7 +20091,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1308522,
"latitude": 22.11667,
"longitude": 95.13333,
"name": "Monywa",
@@ -22273,7 +20100,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6122085,
"latitude": 49.17003,
"longitude": -123.13683,
"name": "Richmond",
@@ -22283,7 +20109,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630634,
"latitude": -7.7543,
"longitude": 113.2159,
"name": "Probolinggo",
@@ -22293,7 +20118,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256052,
"latitude": 29.53333,
"longitude": 75.01667,
"name": "Sirsa",
@@ -22303,7 +20127,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3640049,
"latitude": 10.46736,
"longitude": -66.60663,
"name": "Guarenas",
@@ -22313,7 +20136,6 @@
"country_code": "US",
"elevation": 62,
"feature_code": "PPLA",
- "geonameid": 4174715,
"latitude": 30.43826,
"longitude": -84.28073,
"name": "Tallahassee",
@@ -22323,7 +20145,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038650,
"latitude": 46.4,
"longitude": 125.31667,
"name": "Anda",
@@ -22333,7 +20154,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2842647,
"latitude": 49.23333,
"longitude": 7.0,
"name": "Saarbr\u00fccken",
@@ -22343,7 +20163,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783934,
"latitude": 34.45,
"longitude": 115.65,
"name": "Shangqiu",
@@ -22353,7 +20172,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 246013,
"latitude": 31.95126,
"longitude": 35.81979,
"name": "W\u0101d\u012b as S\u012br",
@@ -22363,7 +20181,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2755251,
"latitude": 53.21917,
"longitude": 6.56667,
"name": "Groningen",
@@ -22373,7 +20190,6 @@
"country_code": "AT",
"elevation": 266,
"feature_code": "PPLA",
- "geonameid": 2772400,
"latitude": 48.30639,
"longitude": 14.28611,
"name": "Linz",
@@ -22383,7 +20199,6 @@
"country_code": "US",
"elevation": 147,
"feature_code": "PPL",
- "geonameid": 4956184,
"latitude": 42.26259,
"longitude": -71.80229,
"name": "Worcester",
@@ -22392,8 +20207,7 @@
{
"country_code": "US",
"elevation": 6,
- "feature_code": "PPL",
- "geonameid": 4776024,
+ "feature_code": "PPLA2",
"latitude": 36.97876,
"longitude": -76.428,
"name": "Newport News",
@@ -22403,7 +20217,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734759,
"latitude": 2.196,
"longitude": 102.2405,
"name": "Melaka",
@@ -22413,7 +20226,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274784,
"latitude": 22.86917,
"longitude": 88.37722,
"name": "Chandannagar",
@@ -22423,7 +20235,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1843137,
"latitude": 37.75556,
"longitude": 128.89611,
"name": "Kang-neung",
@@ -22433,7 +20244,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277820,
"latitude": 24.1,
"longitude": 88.25,
"name": "Baharampur",
@@ -22443,7 +20253,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 160196,
"latitude": -6.17221,
"longitude": 35.73947,
"name": "Dodoma",
@@ -22453,7 +20262,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2523630,
"latitude": 38.11047,
"longitude": 15.66129,
"name": "Reggio di Calabria",
@@ -22463,7 +20271,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3451234,
"latitude": -22.41139,
"longitude": -47.56139,
"name": "Rio Claro",
@@ -22473,7 +20280,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1336144,
"latitude": 24.25,
"longitude": 89.91667,
"name": "T\u0101ng\u0101il",
@@ -22483,9 +20289,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2313002,
- "latitude": -5.81667,
- "longitude": 13.45,
+ "latitude": -5.79949,
+ "longitude": 13.44068,
"name": "Matadi",
"population": 180109
},
@@ -22493,7 +20298,6 @@
"country_code": "US",
"elevation": 193,
"feature_code": "PPLA2",
- "geonameid": 4068590,
"latitude": 34.73037,
"longitude": -86.5861,
"name": "Huntsville",
@@ -22503,7 +20307,6 @@
"country_code": "ES",
"elevation": 30,
"feature_code": "PPLA2",
- "geonameid": 2519752,
"latitude": 39.98333,
"longitude": -0.03333,
"name": "Castell\u00f3 de la Plana",
@@ -22513,7 +20316,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 610529,
"latitude": 47.11667,
"longitude": 51.88333,
"name": "Atyrau",
@@ -22523,7 +20325,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832847,
"latitude": 37.83311,
"longitude": 127.06169,
"name": "Yangju",
@@ -22533,7 +20334,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3461311,
"latitude": -23.09028,
"longitude": -47.21806,
"name": "Indaiatuba",
@@ -22543,7 +20343,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255349,
"latitude": 22.7,
"longitude": 71.68333,
"name": "Surendranagar",
@@ -22553,7 +20352,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 112214,
"latitude": 35.3242,
"longitude": 51.6457,
"name": "Var\u0101m\u012bn",
@@ -22563,7 +20361,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3685095,
"latitude": 4.83916,
"longitude": -75.66726,
"name": "Dos Quebradas",
@@ -22573,7 +20370,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454857,
"latitude": -28.26278,
"longitude": -52.40667,
"name": "Passo Fundo",
@@ -22583,7 +20379,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790396,
"latitude": 29.88333,
"longitude": 114.21667,
"name": "Xianning",
@@ -22593,7 +20388,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1706889,
"latitude": 13.13722,
"longitude": 123.73444,
"name": "Legaspi",
@@ -22603,7 +20397,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529376,
"latitude": 41.75972,
"longitude": 86.14694,
"name": "Korla",
@@ -22613,7 +20406,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1716771,
"latitude": 7.22361,
"longitude": 124.24639,
"name": "Cotabato",
@@ -22623,7 +20415,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 508101,
"latitude": 55.42418,
"longitude": 37.55472,
"name": "Podol\u2019sk",
@@ -22633,7 +20424,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253084,
"latitude": 18.11667,
"longitude": 83.41667,
"name": "Vizianagaram",
@@ -22643,7 +20433,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337765,
"latitude": 8.01667,
"longitude": 4.9,
"name": "Ila Orangun",
@@ -22653,7 +20442,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1786067,
"latitude": 30.41513,
"longitude": 112.88595,
"name": "Yuanlin",
@@ -22663,7 +20451,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1815059,
"latitude": 25.8,
"longitude": 113.03333,
"name": "Chenzhou",
@@ -22673,7 +20460,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3127461,
"latitude": 42.35,
"longitude": -3.7,
"name": "Burgos",
@@ -22683,7 +20469,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 989921,
"latitude": -26.85213,
"longitude": 26.66672,
"name": "Klerksdorp",
@@ -22693,7 +20478,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1606250,
"latitude": 13.17372,
"longitude": 100.93111,
"name": "Si Racha",
@@ -22703,7 +20487,6 @@
"country_code": "US",
"elevation": 276,
"feature_code": "PPLA2",
- "geonameid": 4634946,
"latitude": 35.96064,
"longitude": -83.92074,
"name": "Knoxville",
@@ -22713,7 +20496,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2271772,
"latitude": 38.75382,
"longitude": -9.23083,
"name": "Amadora",
@@ -22723,7 +20505,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860437,
"latitude": 35.68333,
"longitude": 139.55,
"name": "Kami-renjaku",
@@ -22733,7 +20514,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2323390,
"latitude": 8.66667,
"longitude": 3.38333,
"name": "Saki",
@@ -22743,7 +20523,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1865294,
"latitude": 34.95828,
"longitude": 137.08054,
"name": "Anj\u014d",
@@ -22753,7 +20532,6 @@
"country_code": "US",
"elevation": 721,
"feature_code": "PPL",
- "geonameid": 5512909,
"latitude": 36.10803,
"longitude": -115.245,
"name": "Spring Valley",
@@ -22763,7 +20541,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 613607,
"latitude": 42.24961,
"longitude": 42.69974,
"name": "K'ut'aisi",
@@ -22773,7 +20550,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPLA",
- "geonameid": 5224151,
"latitude": 41.82399,
"longitude": -71.41283,
"name": "Providence",
@@ -22783,7 +20559,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636531,
"latitude": 54.90465,
"longitude": -1.38222,
"name": "Sunderland",
@@ -22793,7 +20568,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805540,
"latitude": 30.35028,
"longitude": 112.19028,
"name": "Jingzhou",
@@ -22803,7 +20577,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259312,
"latitude": 14.73333,
"longitude": 78.55,
"name": "Proddat\u016br",
@@ -22813,17 +20586,15 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1295765,
"latitude": 20.15,
"longitude": 92.9,
- "name": "Akyab",
+ "name": "Sittwe",
"population": 177743
},
{
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641181,
"latitude": 52.62783,
"longitude": 1.29834,
"name": "Norwich",
@@ -22833,7 +20604,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 172955,
"latitude": 35.95,
"longitude": 39.01667,
"name": "Ar Raqqah",
@@ -22843,7 +20613,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1309793,
"latitude": 20.86667,
"longitude": 95.86667,
"name": "Meiktila",
@@ -22853,7 +20622,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2229152,
"latitude": 4.7182,
"longitude": 9.7351,
"name": "Loum",
@@ -22863,7 +20631,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253286,
"latitude": 12.9184,
"longitude": 79.13255,
"name": "Vellore",
@@ -22873,7 +20640,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269910,
"latitude": 22.89556,
"longitude": 88.4025,
"name": "Hugli",
@@ -22883,7 +20649,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278985,
"latitude": 9.49004,
"longitude": 76.3264,
"name": "Alleppey",
@@ -22893,7 +20658,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3583334,
"latitude": 13.99417,
"longitude": -89.55972,
"name": "Santa Ana",
@@ -22903,7 +20667,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 125185,
"latitude": 34.2969,
"longitude": 48.8235,
"name": "Mal\u0101yer",
@@ -22913,7 +20676,6 @@
"country_code": "PL",
"elevation": 330,
"feature_code": "PPLA3",
- "geonameid": 3103402,
"latitude": 49.82245,
"longitude": 19.04686,
"name": "Bielsko-Bia\u0142a",
@@ -22923,7 +20685,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2119441,
"latitude": 46.95812,
"longitude": 142.73366,
"name": "Yuzhno-Sakhalinsk",
@@ -22933,7 +20694,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759879,
"latitude": 52.37025,
"longitude": 5.21413,
"name": "Almere Stad",
@@ -22943,7 +20703,6 @@
"country_code": "US",
"elevation": 368,
"feature_code": "PPL",
- "geonameid": 5393049,
"latitude": 34.39166,
"longitude": -118.54259,
"name": "Santa Clarita",
@@ -22953,7 +20712,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190261,
"latitude": 43.50891,
"longitude": 16.43915,
"name": "Split",
@@ -22963,7 +20721,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2980291,
"latitude": 45.43333,
"longitude": 4.4,
"name": "Saint-\u00c9tienne",
@@ -22973,7 +20730,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278708,
"latitude": 28.91667,
"longitude": 78.46667,
"name": "Amroha",
@@ -22983,7 +20739,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6119109,
"latitude": 50.45008,
"longitude": -104.6178,
"name": "Regina",
@@ -22992,18 +20747,16 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1784580,
- "latitude": 32.26917,
- "longitude": 119.17889,
- "name": "Yizheng",
+ "feature_code": "PPLA3",
+ "latitude": 32.28034,
+ "longitude": 119.16999,
+ "name": "Zhenzhou",
"population": 176006
},
{
"country_code": "IT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3173529,
"latitude": 45.49028,
"longitude": 12.2425,
"name": "Mestre",
@@ -23013,7 +20766,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2246452,
"latitude": 16.01793,
"longitude": -16.48962,
"name": "Saint-Louis",
@@ -23023,7 +20775,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 633679,
"latitude": 60.45148,
"longitude": 22.26869,
"name": "Turku",
@@ -23033,7 +20784,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789137,
"latitude": 29.81667,
"longitude": 113.46667,
"name": "Xindi",
@@ -23043,7 +20793,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110683,
"latitude": 36.2,
"longitude": 140.1,
"name": "Tsukuba",
@@ -23053,7 +20802,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 116667,
"latitude": 35.0213,
"longitude": 50.3566,
"name": "S\u0101veh",
@@ -23063,7 +20811,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3173331,
"latitude": 44.64783,
"longitude": 10.92539,
"name": "Modena",
@@ -23073,7 +20820,6 @@
"country_code": "US",
"elevation": 157,
"feature_code": "PPL",
- "geonameid": 4694482,
"latitude": 32.74596,
"longitude": -96.99778,
"name": "Grand Prairie",
@@ -23083,7 +20829,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 126972,
"latitude": 38.5503,
"longitude": 44.9521,
"name": "Khvoy",
@@ -23093,7 +20838,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 300614,
"latitude": 37.75502,
"longitude": 39.31667,
"name": "Siverek",
@@ -23103,7 +20847,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036401,
"latitude": 44.1525,
"longitude": 125.83278,
"name": "Jiutai",
@@ -23113,7 +20856,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPLA2",
- "geonameid": 4676740,
"latitude": 25.90175,
"longitude": -97.49748,
"name": "Brownsville",
@@ -23123,7 +20865,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130057,
"latitude": 40.59306,
"longitude": 140.4725,
"name": "Hirosaki",
@@ -23133,7 +20874,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3465284,
"latitude": -23.60389,
"longitude": -46.91917,
"name": "Cotia",
@@ -23143,7 +20883,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2127733,
"latitude": 42.63694,
"longitude": 141.60333,
"name": "Tomakomai",
@@ -23153,7 +20892,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1002145,
"latitude": -33.963,
"longitude": 22.46173,
"name": "George",
@@ -23163,7 +20901,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632937,
"latitude": -6.34278,
"longitude": 106.73833,
"name": "Pamulang",
@@ -23173,7 +20910,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3521168,
"latitude": 20.53315,
"longitude": -97.45946,
"name": "Poza Rica de Hidalgo",
@@ -23183,7 +20919,6 @@
"country_code": "SL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2410048,
"latitude": 7.96472,
"longitude": -11.73833,
"name": "Bo",
@@ -23193,7 +20928,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260137,
"latitude": 32.28333,
"longitude": 75.65,
"name": "Path\u0101nkot",
@@ -23203,7 +20937,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863431,
"latitude": 35.37111,
"longitude": 139.22361,
"name": "Hadano",
@@ -23213,7 +20946,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816234,
"latitude": 33.87722,
"longitude": 115.77028,
"name": "Bozhou",
@@ -23223,7 +20955,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1985663,
"latitude": -6.23639,
"longitude": 106.50833,
"name": "Cikupa",
@@ -23233,7 +20964,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275926,
"latitude": 26.56417,
"longitude": 78.78833,
"name": "Bhind",
@@ -23243,7 +20973,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3629706,
"latitude": 10.47306,
"longitude": -68.0125,
"name": "Puerto Cabello",
@@ -23253,7 +20982,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2128815,
"latitude": 42.91722,
"longitude": 143.20444,
"name": "Obihiro",
@@ -23263,7 +20991,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849498,
"latitude": 33.94306,
"longitude": 131.25111,
"name": "Ube",
@@ -23273,7 +21000,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 704508,
"latitude": 48.72305,
"longitude": 37.55629,
"name": "Kramators\u2019k",
@@ -23283,7 +21009,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851307,
"latitude": 35.69278,
"longitude": 139.41806,
"name": "Tachikawa",
@@ -23293,7 +21018,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530049,
"latitude": 19.35583,
"longitude": -99.30111,
"name": "Cuajimalpa",
@@ -23303,7 +21027,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3518135,
"latitude": 19.66583,
"longitude": -99.09639,
"name": "San Pablo de las Salinas",
@@ -23313,7 +21036,6 @@
"country_code": "US",
"elevation": 85,
"feature_code": "PPLA",
- "geonameid": 4431410,
"latitude": 32.29876,
"longitude": -90.18481,
"name": "Jackson",
@@ -23323,7 +21045,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1256237,
"latitude": 31.10333,
"longitude": 77.17222,
"name": "Shimla",
@@ -23333,7 +21054,6 @@
"country_code": "US",
"elevation": 329,
"feature_code": "PPL",
- "geonameid": 4276873,
"latitude": 38.98223,
"longitude": -94.67079,
"name": "Overland Park",
@@ -23343,7 +21063,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1309611,
"latitude": 12.43333,
"longitude": 98.6,
"name": "Myeik",
@@ -23353,7 +21072,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLX",
- "geonameid": 5115985,
"latitude": 40.66677,
"longitude": -73.88236,
"name": "East New York",
@@ -23363,7 +21081,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 281124,
"latitude": 31.34018,
"longitude": 34.30627,
"name": "Kh\u0101n Y\u016bnis",
@@ -23373,7 +21090,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2310046,
"latitude": 1.86391,
"longitude": 9.76582,
"name": "Bata",
@@ -23383,9 +21099,8 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1105776,
- "latitude": -25.96361,
- "longitude": 28.13778,
+ "latitude": -25.98953,
+ "longitude": 28.12843,
"name": "Midrand",
"population": 173009
},
@@ -23393,7 +21108,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523303,
"latitude": 19.25361,
"longitude": -99.60778,
"name": "Metepec",
@@ -23403,7 +21117,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261045,
"latitude": 15.5,
"longitude": 80.05,
"name": "Ongole",
@@ -23413,7 +21126,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1803791,
"latitude": 23.29554,
"longitude": 113.82836,
"name": "Licheng",
@@ -23423,7 +21135,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1629131,
"latitude": -7.33194,
"longitude": 110.49278,
"name": "Salatiga",
@@ -23433,7 +21144,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 717582,
"latitude": 48.1,
"longitude": 20.78333,
"name": "Miskolc",
@@ -23443,7 +21153,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3169921,
"latitude": 43.88425,
"longitude": 11.09092,
"name": "Prato",
@@ -23453,7 +21162,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 255274,
"latitude": 37.94745,
"longitude": 23.63708,
"name": "Piraeus",
@@ -23463,7 +21171,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 311073,
"latitude": 37.76444,
"longitude": 30.55222,
"name": "Isparta",
@@ -23473,7 +21180,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1791636,
"latitude": 34.50355,
"longitude": 109.50891,
"name": "Weinan",
@@ -23483,7 +21189,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2250805,
"latitude": 14.1825,
"longitude": -16.25333,
"name": "Kaolack",
@@ -23493,7 +21198,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2634853,
"latitude": 52.58528,
"longitude": -1.98396,
"name": "Walsall",
@@ -23503,7 +21207,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2905891,
"latitude": 51.55,
"longitude": 7.21667,
"name": "Herne",
@@ -23513,7 +21216,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 763166,
"latitude": 53.77995,
"longitude": 20.49416,
"name": "Olsztyn",
@@ -23523,7 +21225,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3462980,
"latitude": -23.28167,
"longitude": -46.74528,
"name": "Francisco Morato",
@@ -23533,7 +21234,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862599,
"latitude": 35.67306,
"longitude": 139.40028,
"name": "Hino",
@@ -23543,7 +21243,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294071,
"latitude": 32.33292,
"longitude": 34.85992,
"name": "Netanya",
@@ -23553,7 +21252,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1799846,
"latitude": 26.645,
"longitude": 118.17361,
"name": "Nanping",
@@ -23563,7 +21261,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2347209,
"latitude": 9.08333,
"longitude": 6.01667,
"name": "Bida",
@@ -23573,7 +21270,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4000900,
"latitude": 24.16667,
"longitude": -110.3,
"name": "La Paz",
@@ -23583,7 +21279,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786712,
"latitude": 42.21389,
"longitude": 20.73972,
"name": "Prizren",
@@ -23593,7 +21288,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037620,
"latitude": 41.81444,
"longitude": 123.57583,
"name": "Dongling",
@@ -23603,7 +21297,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 685948,
"latitude": 46.56667,
"longitude": 26.9,
"name": "Bac\u0103u",
@@ -23613,7 +21306,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1607508,
"latitude": 13.65854,
"longitude": 100.53362,
"name": "Phra Pradaeng",
@@ -23623,17 +21315,15 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2867838,
"latitude": 51.43333,
"longitude": 6.88333,
- "name": "M\u00fclheim an der Ruhr",
+ "name": "M\u00fclheim (Ruhr)",
"population": 171000
},
{
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734393,
"latitude": 5.36499,
"longitude": 100.56177,
"name": "Kulim",
@@ -23643,7 +21333,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636432,
"latitude": 51.62079,
"longitude": -3.94323,
"name": "Swansea",
@@ -23653,7 +21342,6 @@
"country_code": "US",
"elevation": 27,
"feature_code": "PPL",
- "geonameid": 5351515,
"latitude": 33.77391,
"longitude": -117.94145,
"name": "Garden Grove",
@@ -23663,7 +21351,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259184,
"latitude": 19.8,
"longitude": 85.85,
"name": "Puri",
@@ -23673,7 +21360,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1344377,
"latitude": 22.06046,
"longitude": 88.10975,
"name": "Haldia",
@@ -23683,9 +21369,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1518262,
- "latitude": 50.05444,
- "longitude": 72.94833,
+ "latitude": 50.05494,
+ "longitude": 72.96464,
"name": "Temirtau",
"population": 170600
},
@@ -23693,7 +21378,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1176515,
"latitude": 28.281,
"longitude": 68.43876,
"name": "Jacob\u0101b\u0101d",
@@ -23703,7 +21387,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267076,
"latitude": 17.25,
"longitude": 80.15,
"name": "Khammam",
@@ -23713,7 +21396,6 @@
"country_code": "PR",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 4563243,
"latitude": 18.38078,
"longitude": -65.95739,
"name": "Carolina",
@@ -23723,7 +21405,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 204405,
"latitude": -3.40667,
"longitude": 29.14583,
"name": "Uvira",
@@ -23733,7 +21414,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3652941,
"latitude": -1.05,
"longitude": -80.45,
"name": "Portoviejo",
@@ -23743,7 +21423,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259009,
"latitude": 25.61667,
"longitude": 88.11667,
"name": "R\u0101iganj",
@@ -23753,7 +21432,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851032,
"latitude": 36.75,
"longitude": 137.01667,
"name": "Takaoka",
@@ -23763,7 +21441,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269723,
"latitude": 25.0,
"longitude": 88.15,
"name": "Ingr\u0101j B\u0101z\u0101r",
@@ -23773,7 +21450,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471859,
"latitude": -21.20889,
"longitude": -50.43278,
"name": "Ara\u00e7atuba",
@@ -23783,7 +21459,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1810845,
"latitude": 32.9,
"longitude": 115.81667,
"name": "Fuyang",
@@ -23793,7 +21468,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732811,
"latitude": 2.0251,
"longitude": 103.3328,
"name": "Kluang",
@@ -23803,7 +21477,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2522258,
"latitude": 38.98333,
"longitude": -1.85,
"name": "Albacete",
@@ -23813,7 +21486,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804586,
"latitude": 36.97583,
"longitude": 120.71361,
"name": "Laiyang",
@@ -23823,7 +21495,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269135,
"latitude": 25.73333,
"longitude": 82.68333,
"name": "Jaunpur",
@@ -23833,7 +21504,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1242833,
"latitude": 9.66845,
"longitude": 80.00742,
"name": "Jaffna",
@@ -23843,7 +21513,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 686254,
"latitude": 46.18333,
"longitude": 21.31667,
"name": "Arad",
@@ -23853,7 +21522,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 342884,
"latitude": 11.59364,
"longitude": 37.39077,
"name": "Bahir Dar",
@@ -23863,7 +21531,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 630429,
"latitude": 53.1327,
"longitude": 26.0139,
"name": "Baranavichy",
@@ -23873,7 +21540,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2972328,
"latitude": 43.11667,
"longitude": 5.93333,
"name": "Toulon",
@@ -23883,7 +21549,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 281129,
"latitude": 31.5272,
"longitude": 34.48347,
"name": "Jab\u0101ly\u0101",
@@ -23893,7 +21558,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471766,
"latitude": -21.79444,
"longitude": -48.17556,
"name": "Araraquara",
@@ -23903,7 +21567,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3037656,
"latitude": 47.46667,
"longitude": -0.55,
"name": "Angers",
@@ -23913,7 +21576,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3130564,
"latitude": 40.34582,
"longitude": -3.82487,
"name": "Alcorc\u00f3n",
@@ -23923,7 +21585,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2498954,
"latitude": 36.19591,
"longitude": 1.25538,
"name": "Ech Chettia",
@@ -23933,7 +21594,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185106,
"latitude": 24.91667,
"longitude": 89.93333,
"name": "Jam\u0101lpur",
@@ -23943,7 +21603,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463422,
"latitude": -23.54083,
"longitude": -46.36861,
"name": "Ferraz de Vasconcelos",
@@ -23953,7 +21612,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1514210,
"latitude": 41.46889,
"longitude": 69.58222,
"name": "Chirchiq",
@@ -23963,7 +21621,6 @@
"country_code": "US",
"elevation": 50,
"feature_code": "PPLA2",
- "geonameid": 5393287,
"latitude": 38.44047,
"longitude": -122.71443,
"name": "Santa Rosa",
@@ -23973,7 +21630,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3658192,
"latitude": -2.2,
"longitude": -79.83333,
"name": "Dur\u00e1n",
@@ -23983,7 +21639,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805611,
"latitude": 31.03361,
"longitude": 112.20472,
"name": "Jingmen",
@@ -23993,9 +21648,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 577206,
- "latitude": 59.41519,
- "longitude": 56.81237,
+ "latitude": 59.4091,
+ "longitude": 56.8204,
"name": "Berezniki",
"population": 167748
},
@@ -24003,7 +21657,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2348773,
"latitude": 6.21009,
"longitude": 7.07411,
"name": "Awka",
@@ -24013,7 +21666,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 472761,
"latitude": 47.51361,
"longitude": 42.15139,
"name": "Volgodonsk",
@@ -24023,7 +21675,6 @@
"country_code": "US",
"elevation": 206,
"feature_code": "PPLA2",
- "geonameid": 4612862,
"latitude": 35.04563,
"longitude": -85.30968,
"name": "Chattanooga",
@@ -24033,7 +21684,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2544248,
"latitude": 32.88108,
"longitude": -6.9063,
"name": "Khouribga",
@@ -24043,7 +21693,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2758401,
"latitude": 51.58656,
"longitude": 4.77596,
"name": "Breda",
@@ -24053,7 +21702,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 670609,
"latitude": 44.85,
"longitude": 24.86667,
"name": "Pite\u015fti",
@@ -24063,7 +21711,6 @@
"country_code": "US",
"elevation": 108,
"feature_code": "PPLX",
- "geonameid": 5357527,
"latitude": 34.09834,
"longitude": -118.32674,
"name": "Hollywood",
@@ -24073,7 +21720,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338385,
"latitude": 7.8139,
"longitude": 5.0742,
"name": "Ijero-Ekiti",
@@ -24083,7 +21729,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1498894,
"latitude": 55.045,
"longitude": 60.10833,
"name": "Miass",
@@ -24093,7 +21738,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2286304,
"latitude": 9.45803,
"longitude": -5.62961,
"name": "Korhogo",
@@ -24103,7 +21747,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1512236,
"latitude": 53.71556,
"longitude": 91.42917,
"name": "Abakan",
@@ -24113,7 +21756,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1064890,
"latitude": -21.43333,
"longitude": 47.08333,
"name": "Fianarantsoa",
@@ -24123,7 +21765,6 @@
"country_code": "ES",
"elevation": 623,
"feature_code": "PPLA3",
- "geonameid": 3121437,
"latitude": 40.30571,
"longitude": -3.73295,
"name": "Getafe",
@@ -24133,7 +21774,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630997,
"latitude": -6.705,
"longitude": 108.47278,
"name": "Plumbon",
@@ -24143,7 +21783,6 @@
"country_code": "US",
"elevation": 20,
"feature_code": "PPL",
- "geonameid": 5378771,
"latitude": 33.19587,
"longitude": -117.37948,
"name": "Oceanside",
@@ -24153,7 +21792,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359280,
"latitude": 30.45906,
"longitude": 31.17858,
"name": "Banh\u0101",
@@ -24163,7 +21801,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 518970,
"latitude": 47.42018,
"longitude": 40.09132,
"name": "Novocherkassk",
@@ -24173,7 +21810,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3407327,
"latitude": -9.7525,
"longitude": -36.66111,
"name": "Arapiraca",
@@ -24183,7 +21819,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1810979,
"latitude": 29.70222,
"longitude": 107.39194,
"name": "Fuling",
@@ -24193,7 +21828,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 601734,
"latitude": 41.83625,
"longitude": 59.96662,
"name": "Da\u015foguz",
@@ -24203,7 +21837,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271912,
"latitude": 25.93333,
"longitude": 80.8,
"name": "Fatehpur",
@@ -24213,7 +21846,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2856883,
"latitude": 52.26667,
"longitude": 8.05,
"name": "Osnabr\u00fcck",
@@ -24223,7 +21855,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2555745,
"latitude": 32.33725,
"longitude": -6.34984,
"name": "Beni Mellal",
@@ -24233,7 +21864,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526485,
"latitude": 18.86667,
"longitude": -99.18333,
"name": "Jiutepec",
@@ -24243,7 +21873,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 411165,
"latitude": 24.98028,
"longitude": 32.87472,
"name": "Idfu",
@@ -24253,7 +21882,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3631412,
"latitude": 10.11649,
"longitude": -66.77609,
"name": "Ocumare del Tuy",
@@ -24263,7 +21891,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1810295,
"latitude": 21.93924,
"longitude": 110.84607,
"name": "Gaozhou",
@@ -24273,7 +21900,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860672,
"latitude": 35.30889,
"longitude": 139.55028,
"name": "Kamakura",
@@ -24283,7 +21909,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034312,
"latitude": 46.08333,
"longitude": 122.08333,
"name": "Ulanhot",
@@ -24293,7 +21918,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 109323,
"latitude": 26.27944,
"longitude": 50.20833,
"name": "Al Khubar",
@@ -24303,7 +21927,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294751,
"latitude": 32.01139,
"longitude": 34.77222,
"name": "H\u0331olon",
@@ -24313,7 +21936,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1795928,
"latitude": 22.78199,
"longitude": 115.3475,
"name": "Shanwei",
@@ -24323,7 +21945,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6092122,
"latitude": 43.45011,
"longitude": -79.68292,
"name": "Oakville",
@@ -24333,7 +21954,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPLA2",
- "geonameid": 4155966,
"latitude": 26.12231,
"longitude": -80.14338,
"name": "Fort Lauderdale",
@@ -24343,7 +21963,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3666645,
"latitude": 4.08466,
"longitude": -76.19536,
"name": "Tulu\u00e1",
@@ -24353,7 +21972,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 139817,
"latitude": 28.9684,
"longitude": 50.8385,
"name": "Bandar B\u016bshehr",
@@ -24363,7 +21981,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261927,
"latitude": 15.48333,
"longitude": 78.48333,
"name": "Nandy\u0101l",
@@ -24373,7 +21990,6 @@
"country_code": "US",
"elevation": 368,
"feature_code": "PPL",
- "geonameid": 5385955,
"latitude": 34.1064,
"longitude": -117.59311,
"name": "Rancho Cucamonga",
@@ -24383,7 +21999,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3530870,
"latitude": 17.55,
"longitude": -99.5,
"name": "Chilpancingo de los Bravos",
@@ -24393,7 +22008,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1853303,
"latitude": 33.24932,
"longitude": 130.2988,
"name": "Saga-shi",
@@ -24403,7 +22017,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1169605,
"latitude": 30.07537,
"longitude": 71.19213,
"name": "Muzaffargarh",
@@ -24413,7 +22026,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806096,
"latitude": 36.28389,
"longitude": 120.00333,
"name": "Jiaozhou",
@@ -24423,7 +22035,6 @@
"country_code": "ES",
"elevation": 85,
"feature_code": "PPLX",
- "geonameid": 6252065,
"latitude": 41.44163,
"longitude": 2.17727,
"name": "Nou Barris",
@@ -24433,7 +22044,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650227,
"latitude": -7.04528,
"longitude": 107.58778,
"name": "Banjaran",
@@ -24443,7 +22053,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 715429,
"latitude": 46.253,
"longitude": 20.14824,
"name": "Szeged",
@@ -24453,7 +22062,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036920,
"latitude": 45.2,
"longitude": 130.91667,
"name": "Hengshan",
@@ -24463,7 +22071,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264773,
"latitude": 28.75,
"longitude": 77.28333,
"name": "Loni",
@@ -24473,7 +22080,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1627549,
"latitude": -6.1149,
"longitude": 106.1502,
"name": "Serang",
@@ -24483,7 +22089,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458930,
"latitude": -27.81611,
"longitude": -50.32611,
"name": "Lages",
@@ -24493,7 +22098,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4169171,
"latitude": 27.29393,
"longitude": -80.35033,
"name": "Port Saint Lucie",
@@ -24503,7 +22107,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2661604,
"latitude": 47.5584,
"longitude": 7.57327,
"name": "Basel",
@@ -24513,7 +22116,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255969,
"latitude": 27.56667,
"longitude": 80.68333,
"name": "S\u012bt\u0101pur",
@@ -24523,9 +22125,8 @@
"country_code": "BA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3186573,
- "latitude": 44.20139,
- "longitude": 17.90639,
+ "latitude": 44.20169,
+ "longitude": 17.90397,
"name": "Zenica",
"population": 164423
},
@@ -24533,7 +22134,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5911592,
"latitude": 43.38621,
"longitude": -79.83713,
"name": "Burlington",
@@ -24543,7 +22143,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2831580,
"latitude": 51.18333,
"longitude": 7.08333,
"name": "Solingen",
@@ -24553,7 +22152,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1514019,
"latitude": 40.38421,
"longitude": 71.78432,
"name": "Farg`ona",
@@ -24563,7 +22161,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 157738,
"latitude": -4.87694,
"longitude": 29.62667,
"name": "Kigoma",
@@ -24573,7 +22170,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2525473,
"latitude": 39.20738,
"longitude": 9.13462,
"name": "Cagliari",
@@ -24583,7 +22179,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1169692,
"latitude": 31.8025,
"longitude": 74.26167,
"name": "Mur\u012bdke",
@@ -24593,7 +22188,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256451,
"latitude": 25.43333,
"longitude": 77.65,
"name": "Shivpur\u012b",
@@ -24603,7 +22197,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3068160,
"latitude": 49.74747,
"longitude": 13.37759,
"name": "Plze\u0148",
@@ -24613,7 +22206,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337490,
"latitude": 7.85,
"longitude": 4.33333,
"name": "Inisa",
@@ -24623,7 +22215,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 523064,
"latitude": 43.22611,
"longitude": 44.765,
"name": "Nazran\u2019",
@@ -24633,7 +22224,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2464915,
"latitude": 35.82539,
"longitude": 10.63699,
"name": "Sousse",
@@ -24643,7 +22233,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2505329,
"latitude": 36.75587,
"longitude": 5.08433,
"name": "Beja\u00efa",
@@ -24653,7 +22242,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1175864,
"latitude": 32.93313,
"longitude": 73.72637,
"name": "Jhelum",
@@ -24663,7 +22251,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470636,
"latitude": -22.54417,
"longitude": -44.17139,
"name": "Barra Mansa",
@@ -24673,7 +22260,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3531200,
"latitude": 19.26667,
"longitude": -98.9,
"name": "Chalco de D\u00edaz Covarrubias",
@@ -24683,7 +22269,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456223,
"latitude": -10.855,
"longitude": -37.12611,
"name": "Nossa Senhora do Socorro",
@@ -24693,7 +22278,6 @@
"country_code": "US",
"elevation": 306,
"feature_code": "PPL",
- "geonameid": 5379439,
"latitude": 34.06334,
"longitude": -117.65089,
"name": "Ontario",
@@ -24703,7 +22287,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276321,
"latitude": 13.86667,
"longitude": 75.71667,
"name": "Bhadr\u0101vati",
@@ -24713,7 +22296,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1562798,
"latitude": 18.66667,
"longitude": 105.66667,
"name": "Vinh",
@@ -24723,7 +22305,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2392204,
"latitude": 9.33716,
"longitude": 2.63031,
"name": "Parakou",
@@ -24733,7 +22314,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279335,
"latitude": 15.63333,
"longitude": 77.28333,
"name": "\u0100doni",
@@ -24743,7 +22323,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2655095,
"latitude": 50.72048,
"longitude": -1.8795,
"name": "Bournemouth",
@@ -24753,7 +22332,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 268064,
"latitude": 33.56306,
"longitude": 35.36889,
"name": "Sidon",
@@ -24763,7 +22341,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2441291,
"latitude": 13.5,
"longitude": 7.10174,
"name": "Maradi",
@@ -24773,7 +22350,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1849796,
"latitude": 34.73028,
"longitude": 136.50861,
"name": "Tsu-shi",
@@ -24783,7 +22359,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3171457,
"latitude": 44.80266,
"longitude": 10.32898,
"name": "Parma",
@@ -24793,7 +22368,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637433,
"latitude": 51.53782,
"longitude": 0.71433,
"name": "Southend-on-Sea",
@@ -24803,7 +22377,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 255683,
"latitude": 38.24444,
"longitude": 21.73444,
"name": "P\u00e1tra",
@@ -24813,7 +22386,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1792520,
"latitude": 39.90528,
"longitude": 116.59944,
"name": "Tongzhou",
@@ -24823,7 +22395,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253237,
"latitude": 20.9,
"longitude": 70.36667,
"name": "Ver\u0101val",
@@ -24833,7 +22404,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2875376,
"latitude": 49.48111,
"longitude": 8.43528,
"name": "Ludwigshafen am Rhein",
@@ -24843,7 +22413,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 286621,
"latitude": 17.01505,
"longitude": 54.09237,
"name": "\u015eal\u0101lah",
@@ -24853,7 +22422,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 6947641,
"latitude": 41.02072,
"longitude": 28.58502,
"name": "B\u00fcy\u00fck\u00e7ekmece",
@@ -24863,7 +22431,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 322830,
"latitude": 37.84501,
"longitude": 27.83963,
"name": "Ayd\u0131n",
@@ -24873,7 +22440,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682631,
"latitude": 6.17064,
"longitude": -75.58531,
"name": "Envigado",
@@ -24883,7 +22449,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 379303,
"latitude": 13.45,
"longitude": 22.45,
"name": "El Geneina",
@@ -24893,7 +22458,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1818116,
"latitude": 23.44895,
"longitude": 116.68092,
"name": "Anbu",
@@ -24903,7 +22467,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257542,
"latitude": 21.45,
"longitude": 83.96667,
"name": "Sambalpur",
@@ -24913,7 +22476,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2878234,
"latitude": 51.03333,
"longitude": 7.0,
"name": "Leverkusen",
@@ -24923,7 +22485,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2479536,
"latitude": 36.87617,
"longitude": 6.90921,
"name": "Skikda",
@@ -24933,7 +22494,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3848950,
"latitude": -29.41105,
"longitude": -66.85067,
"name": "La Rioja",
@@ -24943,7 +22503,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271850,
"latitude": 15.42977,
"longitude": 75.62971,
"name": "Gadag",
@@ -24953,7 +22512,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 125446,
"latitude": 36.7631,
"longitude": 45.7222,
"name": "Mah\u0101b\u0101d",
@@ -24963,7 +22521,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464460,
"latitude": -22.22111,
"longitude": -54.80556,
"name": "Dourados",
@@ -24973,7 +22530,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2322794,
"latitude": 9.18052,
"longitude": 7.17933,
"name": "Suleja",
@@ -24983,7 +22539,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465196,
"latitude": -28.6775,
"longitude": -49.36972,
"name": "Crici\u00fama",
@@ -24993,7 +22548,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1135689,
"latitude": 36.72896,
"longitude": 68.857,
"name": "Kunduz",
@@ -25003,7 +22557,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3583446,
"latitude": 13.48333,
"longitude": -88.18333,
"name": "San Miquel",
@@ -25013,7 +22566,6 @@
"country_code": "US",
"elevation": 52,
"feature_code": "PPLA2",
- "geonameid": 5814616,
"latitude": 45.63873,
"longitude": -122.66149,
"name": "Vancouver",
@@ -25023,7 +22575,6 @@
"country_code": "US",
"elevation": 360,
"feature_code": "PPL",
- "geonameid": 5317058,
"latitude": 33.41477,
"longitude": -111.90931,
"name": "Tempe",
@@ -25033,7 +22584,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2323675,
"latitude": 5.89405,
"longitude": 5.67666,
"name": "Sapele",
@@ -25043,7 +22593,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253747,
"latitude": 26.53333,
"longitude": 80.5,
"name": "Unn\u0101o",
@@ -25053,7 +22602,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275163,
"latitude": 28.05,
"longitude": 79.11667,
"name": "Budaun",
@@ -25063,7 +22611,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3893629,
"latitude": -29.95333,
"longitude": -71.34361,
"name": "Coquimbo",
@@ -25073,7 +22620,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268907,
"latitude": 29.31667,
"longitude": 76.31667,
"name": "J\u012bnd",
@@ -25083,7 +22629,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264543,
"latitude": 22.7,
"longitude": 88.45,
"name": "Madhyamgram",
@@ -25093,7 +22638,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1493467,
"latitude": 51.5,
"longitude": 81.25,
"name": "Rubtsovsk",
@@ -25103,7 +22647,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2165798,
"latitude": -38.14711,
"longitude": 144.36069,
"name": "Geelong",
@@ -25113,7 +22656,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907146,
"latitude": 35.85295,
"longitude": 139.41212,
"name": "Sayama",
@@ -25123,7 +22665,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3691674,
"latitude": -4.90389,
"longitude": -80.68528,
"name": "Sullana",
@@ -25133,7 +22674,6 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 370737,
"latitude": 9.53342,
"longitude": 31.66048,
"name": "Malakal",
@@ -25143,7 +22683,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1571058,
"latitude": 10.93333,
"longitude": 108.1,
"name": "Phan Thi\u1ebft",
@@ -25153,7 +22692,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1577995,
"latitude": 10.66667,
"longitude": 107.78333,
"name": "Lagi",
@@ -25163,7 +22701,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 523812,
"latitude": 55.91163,
"longitude": 37.73076,
"name": "Mytishchi",
@@ -25173,7 +22710,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859675,
"latitude": 34.81667,
"longitude": 135.41667,
"name": "Kawanishi",
@@ -25183,7 +22719,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 285066,
"latitude": 31.52935,
"longitude": 35.0938,
"name": "Hebron",
@@ -25193,7 +22728,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790254,
"latitude": 30.91667,
"longitude": 113.9,
"name": "Xiaogan",
@@ -25203,7 +22737,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3584399,
"latitude": 13.74028,
"longitude": -89.21306,
"name": "Mejicanos",
@@ -25213,7 +22746,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269280,
"latitude": 23.7,
"longitude": 87.08333,
"name": "J\u0101muria",
@@ -25223,7 +22755,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466296,
"latitude": -27.09639,
"longitude": -52.61833,
"name": "Chapec\u00f3",
@@ -25233,7 +22764,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1293960,
"latitude": 20.78333,
"longitude": 97.03333,
"name": "Taunggyi",
@@ -25243,7 +22773,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3874960,
"latitude": -41.46985,
"longitude": -72.94474,
"name": "Puerto Montt",
@@ -25253,7 +22782,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 311111,
"latitude": 36.58718,
"longitude": 36.17347,
"name": "\u0130skenderun",
@@ -25263,7 +22791,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853483,
"latitude": 36.3,
"longitude": 139.8,
"name": "Oyama",
@@ -25273,7 +22800,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 499292,
"latitude": 53.38365,
"longitude": 55.90773,
"name": "Salavat",
@@ -25283,7 +22809,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2243940,
"latitude": 12.58333,
"longitude": -16.27194,
"name": "Ziguinchor",
@@ -25293,9 +22818,8 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732745,
- "latitude": 1.53333,
- "longitude": 103.66667,
+ "latitude": 1.53742,
+ "longitude": 103.65779,
"name": "Sekudai",
"population": 159733
},
@@ -25303,7 +22827,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1865005,
"latitude": 36.33333,
"longitude": 139.45,
"name": "Ashikaga",
@@ -25313,7 +22836,6 @@
"country_code": "US",
"elevation": 396,
"feature_code": "PPLA2",
- "geonameid": 4409896,
"latitude": 37.21533,
"longitude": -93.29824,
"name": "Springfield",
@@ -25323,7 +22845,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 288764,
"latitude": 23.55563,
"longitude": 58.3989,
"name": "Bawshar",
@@ -25333,7 +22854,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1784554,
"latitude": 30.29556,
"longitude": 111.50472,
"name": "Zhicheng",
@@ -25343,7 +22863,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1638284,
"latitude": -7.8353,
"longitude": 112.6947,
"name": "Lawang",
@@ -25353,7 +22872,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3903320,
"latitude": -21.53549,
"longitude": -64.72956,
"name": "Tarija",
@@ -25363,7 +22881,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2857458,
"latitude": 53.16667,
"longitude": 8.2,
"name": "Oldenburg",
@@ -25373,7 +22890,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1839652,
"latitude": 37.15222,
"longitude": 127.07056,
"name": "Osan",
@@ -25383,7 +22899,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2750053,
"latitude": 51.8425,
"longitude": 5.85278,
"name": "Nijmegen",
@@ -25393,7 +22908,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7284820,
"latitude": 26.84766,
"longitude": 89.37558,
"name": "Jaigaon",
@@ -25403,7 +22917,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632033,
"latitude": -7.6453,
"longitude": 112.9075,
"name": "Pasuruan",
@@ -25413,7 +22926,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273802,
"latitude": 11.75,
"longitude": 79.75,
"name": "Cuddalore",
@@ -25423,7 +22935,6 @@
"country_code": "FR",
"elevation": 218,
"feature_code": "PPLA2",
- "geonameid": 3014728,
"latitude": 45.16667,
"longitude": 5.71667,
"name": "Grenoble",
@@ -25433,7 +22944,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 91597,
"latitude": 34.19663,
"longitude": 43.8739,
"name": "S\u0101marr\u0101\u2019",
@@ -25443,17 +22953,24 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 528293,
"latitude": 44.60778,
"longitude": 40.10583,
"name": "Maykop",
"population": 158451
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.4808,
+ "longitude": 13.425,
+ "name": "Neuk\u00f6lln",
+ "population": 158429
+ },
{
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 759734,
"latitude": 50.04132,
"longitude": 21.99901,
"name": "Rzesz\u00f3w",
@@ -25463,7 +22980,6 @@
"country_code": "US",
"elevation": 354,
"feature_code": "PPL",
- "geonameid": 5317071,
"latitude": 33.41421,
"longitude": -111.94348,
"name": "Tempe Junction",
@@ -25473,7 +22989,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2498766,
"latitude": 36.06386,
"longitude": 4.62744,
"name": "El Achir",
@@ -25483,7 +22998,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1806535,
"latitude": 30.8703,
"longitude": 120.0933,
"name": "Huzhou",
@@ -25493,7 +23007,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470583,
"latitude": -12.15278,
"longitude": -44.99,
"name": "Barreiras",
@@ -25503,7 +23016,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261039,
"latitude": 25.98333,
"longitude": 79.46667,
"name": "Orai",
@@ -25513,17 +23025,24 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1575627,
"latitude": 10.38333,
"longitude": 105.41667,
"name": "Long Xuy\u00ean",
"population": 158153
},
+ {
+ "country_code": "CU",
+ "elevation": 45,
+ "feature_code": "PPLX",
+ "latitude": 23.13833,
+ "longitude": -82.36417,
+ "name": "Centro Habana",
+ "population": 158151
+ },
{
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269937,
"latitude": 31.53222,
"longitude": 75.91722,
"name": "Hoshi\u0101rpur",
@@ -25533,7 +23052,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 701404,
"latitude": 46.84891,
"longitude": 35.36533,
"name": "Melitopol\u2019",
@@ -25543,7 +23061,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3387296,
"latitude": -3.68611,
"longitude": -40.34972,
"name": "Sobral",
@@ -25553,7 +23070,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1213614,
"latitude": 3.5765,
"longitude": 98.6151,
"name": "Sunggal",
@@ -25563,7 +23079,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5964700,
"latitude": 46.49,
"longitude": -80.99001,
"name": "Greater Sudbury",
@@ -25573,7 +23088,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 347591,
"latitude": 31.0539,
"longitude": 31.37787,
"name": "\u1e6calkha",
@@ -25583,7 +23097,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214191,
"latitude": 3.5679,
"longitude": 98.956,
"name": "Perbaungan",
@@ -25593,7 +23106,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260692,
"latitude": 12.97611,
"longitude": 80.18361,
"name": "Pall\u0101varam",
@@ -25603,7 +23115,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1692685,
"latitude": 9.73917,
"longitude": 118.73528,
"name": "Puerto Princesa",
@@ -25613,7 +23124,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2014006,
"latitude": 43.8059,
"longitude": 131.9752,
"name": "Ussuriysk",
@@ -25623,7 +23133,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035644,
"latitude": 41.09822,
"longitude": 120.74792,
"name": "Nanpiao",
@@ -25633,7 +23142,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617239,
"latitude": 46.84028,
"longitude": 29.64333,
"name": "Tiraspol",
@@ -25643,7 +23151,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 153209,
"latitude": -3.35,
"longitude": 37.33333,
"name": "Moshi",
@@ -25653,7 +23160,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1681602,
"latitude": 10.37917,
"longitude": 123.64194,
"name": "Toledo",
@@ -25663,7 +23169,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1165108,
"latitude": 27.95706,
"longitude": 68.63789,
"name": "Shik\u0101rpur",
@@ -25673,7 +23178,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 940316,
"latitude": -26.31906,
"longitude": 27.6486,
"name": "Westonaria",
@@ -25683,7 +23187,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1857550,
"latitude": 35.47222,
"longitude": 133.05056,
"name": "Matsue-shi",
@@ -25693,7 +23196,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6822096,
"latitude": 36.39659,
"longitude": 140.53479,
"name": "Hitachi-Naka",
@@ -25703,7 +23205,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831142,
"latitude": 10.60932,
"longitude": 103.52958,
"name": "Sihanoukville",
@@ -25713,7 +23214,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3046526,
"latitude": 46.08333,
"longitude": 18.23333,
"name": "P\u00e9cs",
@@ -25723,7 +23223,6 @@
"country_code": "US",
"elevation": 719,
"feature_code": "PPL",
- "geonameid": 5364940,
"latitude": 34.69804,
"longitude": -118.13674,
"name": "Lancaster",
@@ -25733,7 +23232,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3174659,
"latitude": 43.54264,
"longitude": 10.316,
"name": "Livorno",
@@ -25743,7 +23241,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 727523,
"latitude": 43.85639,
"longitude": 25.97083,
"name": "Ruse",
@@ -25753,7 +23250,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732687,
"latitude": 1.8548,
"longitude": 102.9325,
"name": "Batu Pahat",
@@ -25763,7 +23259,6 @@
"country_code": "US",
"elevation": 131,
"feature_code": "PPLA2",
- "geonameid": 5725846,
"latitude": 44.05207,
"longitude": -123.08675,
"name": "Eugene",
@@ -25773,7 +23268,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1152473,
"latitude": 18.29232,
"longitude": 99.49277,
"name": "Lampang",
@@ -25783,7 +23277,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111687,
"latitude": 35.68333,
"longitude": 140.03333,
"name": "Narashino",
@@ -25793,7 +23286,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856184,
"latitude": 35.8563,
"longitude": 139.90266,
"name": "Nagareyama",
@@ -25803,7 +23295,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112312,
"latitude": 36.38333,
"longitude": 140.53333,
"name": "Katsuta",
@@ -25813,7 +23304,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2309527,
"latitude": 3.75,
"longitude": 8.78333,
"name": "Malabo",
@@ -25823,7 +23313,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858428,
"latitude": 36.13333,
"longitude": 139.38333,
"name": "Kumagaya",
@@ -25833,8 +23322,7 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2294700,
- "latitude": 5.66698,
+ "latitude": 5.6698,
"longitude": -0.01657,
"name": "Tema",
"population": 155782
@@ -25843,7 +23331,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033413,
"latitude": 47.7,
"longitude": 128.9,
"name": "Yichun",
@@ -25853,7 +23340,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460845,
"latitude": -26.90778,
"longitude": -48.66194,
"name": "Itaja\u00ed",
@@ -25863,7 +23349,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270407,
"latitude": 29.58182,
"longitude": 74.32938,
"name": "Hanum\u0101ngarh",
@@ -25873,7 +23358,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3111108,
"latitude": 40.96667,
"longitude": -5.65,
"name": "Salamanca",
@@ -25882,8 +23366,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 783920,
+ "feature_code": "PPLA3",
"latitude": 44.84306,
"longitude": 20.40111,
"name": "Zemun",
@@ -25893,7 +23376,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2334327,
"latitude": 9.08333,
"longitude": 3.85,
"name": "Kishi",
@@ -25903,7 +23385,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461408,
"latitude": -14.78889,
"longitude": -39.04944,
"name": "Ilh\u00e9us",
@@ -25913,7 +23394,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636389,
"latitude": 51.55797,
"longitude": -1.78116,
"name": "Swindon",
@@ -25923,7 +23403,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1712051,
"latitude": 14.83861,
"longitude": 120.97972,
"name": "Guyong",
@@ -25933,7 +23412,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841603,
"latitude": 35.84278,
"longitude": 129.21167,
"name": "Kyonju",
@@ -25943,7 +23421,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 934154,
"latitude": -20.16194,
"longitude": 57.49889,
"name": "Port Louis",
@@ -25953,7 +23430,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3176885,
"latitude": 41.46093,
"longitude": 15.54925,
"name": "Foggia",
@@ -25963,7 +23439,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268159,
"latitude": 12.83515,
"longitude": 79.70006,
"name": "K\u0101nchipuram",
@@ -25973,7 +23448,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1919014,
"latitude": 29.99152,
"longitude": 120.89845,
"name": "Lianghu",
@@ -25983,7 +23457,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038342,
"latitude": 41.79194,
"longitude": 120.77917,
"name": "Beipiao",
@@ -25993,7 +23466,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1870883,
"latitude": 38.50722,
"longitude": 125.75583,
"name": "Sariw\u014fn",
@@ -26003,7 +23475,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 323779,
"latitude": 36.20655,
"longitude": 36.15722,
"name": "Antioch",
@@ -26013,7 +23484,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1809879,
"latitude": 31.6199,
"longitude": 113.9978,
"name": "Guangshui",
@@ -26023,7 +23493,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4168139,
"latitude": 26.00315,
"longitude": -80.22394,
"name": "Pembroke Pines",
@@ -26033,7 +23502,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 976361,
"latitude": -25.77507,
"longitude": 29.46482,
"name": "Middelburg",
@@ -26043,7 +23511,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1062663,
"latitude": -15.71667,
"longitude": 46.31667,
"name": "Mahajanga",
@@ -26053,7 +23520,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 532615,
"latitude": 55.67719,
"longitude": 37.89322,
"name": "Lyubertsy",
@@ -26063,7 +23529,6 @@
"country_code": "US",
"elevation": 49,
"feature_code": "PPLA",
- "geonameid": 5750162,
"latitude": 44.9429,
"longitude": -123.0351,
"name": "Salem",
@@ -26073,9 +23538,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 217562,
- "latitude": 0.15,
- "longitude": 29.28333,
+ "latitude": 0.14164,
+ "longitude": 29.29117,
"name": "Butembo",
"population": 154621
},
@@ -26083,7 +23547,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2640729,
"latitude": 51.75222,
"longitude": -1.25596,
"name": "Oxford",
@@ -26093,7 +23556,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3884373,
"latitude": -29.90778,
"longitude": -71.25417,
"name": "La Serena",
@@ -26103,7 +23565,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804153,
"latitude": 29.56228,
"longitude": 103.76386,
"name": "Leshan",
@@ -26113,7 +23574,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 216449,
"latitude": -6.75,
"longitude": 23.95,
"name": "Gandajika",
@@ -26123,7 +23583,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033168,
"latitude": 46.08333,
"longitude": 125.98333,
"name": "Zhaodong",
@@ -26133,7 +23592,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3660689,
"latitude": -1.24908,
"longitude": -78.61675,
"name": "Ambato",
@@ -26143,7 +23601,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4149962,
"latitude": 26.56285,
"longitude": -81.94953,
"name": "Cape Coral",
@@ -26153,7 +23610,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632228,
"latitude": -6.17028,
"longitude": 106.53028,
"name": "Pasarkemis",
@@ -26163,7 +23619,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2172797,
"latitude": -16.92304,
"longitude": 145.76625,
"name": "Cairns",
@@ -26173,7 +23628,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 543460,
"latitude": 56.35722,
"longitude": 41.31917,
"name": "Kovrov",
@@ -26183,7 +23637,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 298033,
"latitude": 37.23528,
"longitude": 39.76306,
"name": "Viran\u015fehir",
@@ -26193,7 +23646,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1849892,
"latitude": 35.5,
"longitude": 134.23333,
"name": "Tottori",
@@ -26203,7 +23655,6 @@
"country_code": "US",
"elevation": 348,
"feature_code": "PPL",
- "geonameid": 5308480,
"latitude": 33.5806,
"longitude": -112.23738,
"name": "Peoria",
@@ -26213,7 +23664,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3511540,
"latitude": 18.41667,
"longitude": -70.1,
"name": "San Crist\u00f3bal",
@@ -26223,7 +23673,6 @@
"country_code": "US",
"elevation": 208,
"feature_code": "PPL",
- "geonameid": 4619947,
"latitude": 35.06535,
"longitude": -85.24912,
"name": "East Chattanooga",
@@ -26232,8 +23681,7 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1788450,
+ "feature_code": "PPLA3",
"latitude": 38.40917,
"longitude": 112.73333,
"name": "Xinzhou",
@@ -26243,7 +23691,6 @@
"country_code": "CY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 146384,
"latitude": 34.675,
"longitude": 33.03333,
"name": "Limassol",
@@ -26253,7 +23700,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 336014,
"latitude": 12.6,
"longitude": 37.46667,
"name": "Gonder",
@@ -26263,7 +23709,6 @@
"country_code": "US",
"elevation": 448,
"feature_code": "PPLA2",
- "geonameid": 5231851,
"latitude": 43.54997,
"longitude": -96.70033,
"name": "Sioux Falls",
@@ -26273,7 +23718,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1279064,
"latitude": 13.0025,
"longitude": 80.20611,
"name": "Alandur",
@@ -26283,7 +23727,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3838874,
"latitude": -33.13067,
"longitude": -64.34992,
"name": "R\u00edo Cuarto",
@@ -26293,7 +23736,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789273,
"latitude": 23.15486,
"longitude": 112.89161,
"name": "Sanshui",
@@ -26303,7 +23745,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270711,
"latitude": 24.65,
"longitude": 77.31667,
"name": "Guna",
@@ -26313,7 +23754,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1177384,
"latitude": 32.06786,
"longitude": 73.68545,
"name": "H\u0101fiz\u0101b\u0101d",
@@ -26323,7 +23763,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756071,
"latitude": 52.21833,
"longitude": 6.89583,
"name": "Enschede",
@@ -26333,7 +23772,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3472177,
"latitude": -23.00667,
"longitude": -44.31806,
"name": "Angra dos Reis",
@@ -26343,7 +23781,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277835,
"latitude": 28.68333,
"longitude": 76.91667,
"name": "Bah\u0101durgarh",
@@ -26353,7 +23790,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816265,
"latitude": 36.48333,
"longitude": 117.83333,
"name": "Boshan",
@@ -26363,7 +23799,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1814786,
"latitude": 22.16667,
"longitude": 111.78333,
"name": "Yangchun",
@@ -26373,7 +23808,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276100,
"latitude": 21.7,
"longitude": 72.96667,
"name": "Bhar\u016bch",
@@ -26383,7 +23817,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3456166,
"latitude": -22.28194,
"longitude": -42.53111,
"name": "Nova Friburgo",
@@ -26393,7 +23826,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263220,
"latitude": 22.43333,
"longitude": 87.33333,
"name": "Medin\u012bpur",
@@ -26403,7 +23835,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3943789,
"latitude": -13.40985,
"longitude": -76.13235,
"name": "Chincha Alta",
@@ -26413,7 +23844,6 @@
"country_code": "US",
"elevation": 25,
"feature_code": "PPL",
- "geonameid": 4951788,
"latitude": 42.10148,
"longitude": -72.58981,
"name": "Springfield",
@@ -26423,7 +23853,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271976,
"latitude": 26.78333,
"longitude": 82.13333,
"name": "Faiz\u0101b\u0101d",
@@ -26433,7 +23862,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 5346111,
"latitude": 38.4088,
"longitude": -121.37162,
"name": "Elk Grove",
@@ -26443,7 +23871,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273581,
"latitude": 25.63333,
"longitude": 85.05,
"name": "D\u0101n\u0101pur",
@@ -26453,7 +23880,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803422,
"latitude": 28.85,
"longitude": 121.11667,
"name": "Linhai",
@@ -26463,7 +23889,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812728,
"latitude": 38.51306,
"longitude": 114.99556,
"name": "Dingzhou",
@@ -26473,7 +23898,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3450909,
"latitude": -16.47083,
"longitude": -54.63556,
"name": "Rondon\u00f3polis",
@@ -26483,7 +23907,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 98530,
"latitude": 31.33198,
"longitude": 45.2944,
"name": "As Samawah",
@@ -26493,7 +23916,6 @@
"country_code": "US",
"elevation": 218,
"feature_code": "PPLA2",
- "geonameid": 4907959,
"latitude": 42.27113,
"longitude": -89.094,
"name": "Rockford",
@@ -26503,7 +23925,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 298299,
"latitude": 38.67351,
"longitude": 29.4058,
"name": "U\u015fak",
@@ -26513,7 +23934,6 @@
"country_code": "US",
"elevation": 810,
"feature_code": "PPL",
- "geonameid": 5380698,
"latitude": 34.57943,
"longitude": -118.11646,
"name": "Palmdale",
@@ -26523,7 +23943,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1513886,
"latitude": 40.11583,
"longitude": 67.84222,
"name": "Jizzax",
@@ -26533,7 +23952,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2190324,
"latitude": -37.78333,
"longitude": 175.28333,
"name": "Hamilton",
@@ -26543,7 +23961,6 @@
"country_code": "PR",
"elevation": 15,
"feature_code": "PPL",
- "geonameid": 4566880,
"latitude": 18.01108,
"longitude": -66.61406,
"name": "Ponce",
@@ -26553,7 +23970,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791673,
"latitude": 37.50167,
"longitude": 122.11361,
"name": "Weihai",
@@ -26563,7 +23979,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 97990,
"latitude": 33.7466,
"longitude": 44.64366,
"name": "Ba\u2018q\u016bbah",
@@ -26573,7 +23988,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2864118,
"latitude": 51.2,
"longitude": 6.68333,
"name": "Neu\u00df",
@@ -26583,7 +23997,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1815302,
"latitude": 23.46132,
"longitude": 116.77007,
"name": "Chenghua",
@@ -26593,7 +24006,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1869446,
"latitude": 38.75417,
"longitude": 125.645,
"name": "Songnim",
@@ -26603,7 +24015,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256287,
"latitude": 24.81667,
"longitude": 92.8,
"name": "Silchar",
@@ -26613,7 +24024,6 @@
"country_code": "US",
"elevation": 207,
"feature_code": "PPL",
- "geonameid": 5339631,
"latitude": 33.87529,
"longitude": -117.56644,
"name": "Corona",
@@ -26623,7 +24033,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277397,
"latitude": 25.48333,
"longitude": 80.33333,
"name": "B\u0101nda",
@@ -26633,7 +24042,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 324496,
"latitude": 38.37255,
"longitude": 34.02537,
"name": "Aksaray",
@@ -26643,7 +24051,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1586296,
"latitude": 10.61667,
"longitude": 106.66667,
"name": "C\u1ea7n Du\u1ed9c",
@@ -26653,7 +24060,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 706524,
"latitude": 45.3607,
"longitude": 36.4706,
"name": "Kerch",
@@ -26663,7 +24069,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1812961,
"latitude": 31.13019,
"longitude": 104.38198,
"name": "Deyang",
@@ -26673,7 +24078,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1786746,
"latitude": 27.83333,
"longitude": 114.4,
"name": "Yichun",
@@ -26683,7 +24087,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3118150,
"latitude": 42.46667,
"longitude": -2.45,
"name": "Logro\u00f1o",
@@ -26693,7 +24096,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853677,
"latitude": 36.3,
"longitude": 139.36667,
"name": "\u014cta",
@@ -26703,7 +24105,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035980,
"latitude": 46.55,
"longitude": 125.11667,
"name": "Longfeng",
@@ -26713,7 +24114,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262771,
"latitude": 26.49694,
"longitude": 78.0,
"name": "Morena",
@@ -26723,7 +24123,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 667268,
"latitude": 45.8,
"longitude": 24.15,
"name": "Sibiu",
@@ -26733,7 +24132,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3640465,
"latitude": 10.22609,
"longitude": -67.877,
"name": "Guacara",
@@ -26743,7 +24141,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5881791,
"latitude": 49.05798,
"longitude": -122.25257,
"name": "Abbotsford",
@@ -26753,7 +24150,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530757,
"latitude": 19.06406,
"longitude": -98.30352,
"name": "Cholula",
@@ -26763,7 +24159,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1737486,
"latitude": 3.16667,
"longitude": 113.03333,
"name": "Bintulu",
@@ -26773,7 +24168,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460748,
"latitude": -23.71694,
"longitude": -46.84917,
"name": "Itapecerica da Serra",
@@ -26783,7 +24177,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2650752,
"latitude": 56.5,
"longitude": -2.96667,
"name": "Dundee",
@@ -26793,7 +24186,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1173491,
"latitude": 33.58196,
"longitude": 71.44929,
"name": "Koh\u0101t",
@@ -26803,7 +24195,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254241,
"latitude": 26.16638,
"longitude": 75.78824,
"name": "Tonk",
@@ -26813,7 +24204,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1797945,
"latitude": 23.7,
"longitude": 113.03333,
"name": "Qingyuan",
@@ -26823,7 +24213,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 117392,
"latitude": 36.24992,
"longitude": 46.2735,
"name": "Saqqez",
@@ -26833,7 +24222,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3351663,
"latitude": -12.57626,
"longitude": 13.40547,
"name": "Benguela",
@@ -26843,7 +24231,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858926,
"latitude": 35.28333,
"longitude": 136.91667,
"name": "Komaki",
@@ -26853,7 +24240,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3641351,
"latitude": 8.88752,
"longitude": -64.24544,
"name": "El Tigre",
@@ -26863,7 +24249,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626560,
"latitude": -7.03306,
"longitude": 107.51833,
"name": "Soreang",
@@ -26873,7 +24258,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523183,
"latitude": 17.98333,
"longitude": -94.51667,
"name": "Minatitl\u00e1n",
@@ -26883,7 +24267,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461879,
"latitude": -25.39528,
"longitude": -51.45806,
"name": "Guarapuava",
@@ -26893,7 +24276,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1810458,
"latitude": 36.38333,
"longitude": 119.75278,
"name": "Gaomi",
@@ -26903,7 +24285,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258831,
"latitude": 21.1,
"longitude": 81.03333,
"name": "R\u0101j N\u0101ndgaon",
@@ -26913,7 +24294,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1802238,
"latitude": 27.73444,
"longitude": 111.99444,
"name": "Loudi",
@@ -26923,7 +24303,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2511401,
"latitude": 28.4853,
"longitude": -16.32014,
"name": "La Laguna",
@@ -26933,7 +24312,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854703,
"latitude": 35.35,
"longitude": 136.61667,
"name": "\u014cgaki",
@@ -26943,7 +24321,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279570,
"latitude": 35.75459,
"longitude": 139.46852,
"name": "Higashimurayama-shi",
@@ -26953,7 +24330,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302856,
"latitude": 17.49313,
"longitude": 78.30196,
"name": "Serilingampalle",
@@ -26963,7 +24339,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807143,
"latitude": 28.64778,
"longitude": 121.25944,
"name": "Huangyan",
@@ -26973,7 +24348,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831797,
"latitude": 13.10271,
"longitude": 103.19822,
"name": "B\u0103td\u00e2mb\u00e2ng",
@@ -26983,7 +24357,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPLA2",
- "geonameid": 5391295,
"latitude": 36.67774,
"longitude": -121.6555,
"name": "Salinas",
@@ -26993,7 +24366,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2165796,
"latitude": -38.13333,
"longitude": 144.35,
"name": "Geelong West",
@@ -27003,7 +24375,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3895088,
"latitude": -36.60664,
"longitude": -72.10344,
"name": "Chill\u00e1n",
@@ -27013,7 +24384,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253133,
"latitude": 19.46667,
"longitude": 72.8,
"name": "Vir\u0101r",
@@ -27023,7 +24393,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3392998,
"latitude": -5.91556,
"longitude": -35.26278,
"name": "Parnamirim",
@@ -27033,7 +24402,6 @@
"country_code": "AT",
"elevation": 424,
"feature_code": "PPLA",
- "geonameid": 2766824,
"latitude": 47.79941,
"longitude": 13.04399,
"name": "Salzburg",
@@ -27043,7 +24411,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1729085,
"latitude": 10.53333,
"longitude": 122.83333,
"name": "Bago City",
@@ -27053,7 +24420,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630333,
"latitude": -7.0868,
"longitude": 110.9158,
"name": "Purwodadi",
@@ -27063,7 +24429,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 307084,
"latitude": 37.19319,
"longitude": 40.58799,
"name": "K\u0131z\u0131ltepe",
@@ -27073,7 +24438,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1512473,
"latitude": 41.55,
"longitude": 60.63333,
"name": "Urganch",
@@ -27083,7 +24447,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 579464,
"latitude": 55.80945,
"longitude": 37.95806,
"name": "Balashikha",
@@ -27093,7 +24456,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2640101,
"latitude": 50.71667,
"longitude": -2.0,
"name": "Poole",
@@ -27103,7 +24465,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 942470,
"latitude": -27.76952,
"longitude": 30.79165,
"name": "Vryheid",
@@ -27113,7 +24474,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302828,
"latitude": 17.44781,
"longitude": 78.52633,
"name": "Malkajgiri",
@@ -27123,7 +24483,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842944,
"latitude": 36.12176,
"longitude": 128.11981,
"name": "Gimcheon",
@@ -27133,7 +24492,6 @@
"country_code": "TL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1645457,
"latitude": -8.55861,
"longitude": 125.57361,
"name": "Dili",
@@ -27143,7 +24501,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256639,
"latitude": 23.25,
"longitude": 88.46667,
"name": "Sh\u0101ntipur",
@@ -27153,7 +24510,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3021372,
"latitude": 47.31667,
"longitude": 5.01667,
"name": "Dijon",
@@ -27163,7 +24519,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1635283,
"latitude": -5.11306,
"longitude": 105.30667,
"name": "Metro",
@@ -27173,7 +24528,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854162,
"latitude": 35.78389,
"longitude": 139.24306,
"name": "\u014cme",
@@ -27183,7 +24537,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3171180,
"latitude": 43.1122,
"longitude": 12.38878,
"name": "Perugia",
@@ -27193,7 +24546,6 @@
"country_code": "US",
"elevation": 259,
"feature_code": "PPL",
- "geonameid": 5384170,
"latitude": 34.05529,
"longitude": -117.75228,
"name": "Pomona",
@@ -27203,7 +24555,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 4717782,
"latitude": 29.69106,
"longitude": -95.2091,
"name": "Pasadena",
@@ -27213,17 +24564,24 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2646458,
"latitude": 53.64904,
"longitude": -1.78416,
"name": "Huddersfield",
"population": 149017
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.53333,
+ "longitude": 13.4,
+ "name": "Prenzlauer Berg",
+ "population": 148878
+ },
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037534,
"latitude": 43.3725,
"longitude": 128.2425,
"name": "Dunhua",
@@ -27233,7 +24591,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2516548,
"latitude": 37.25833,
"longitude": -6.95083,
"name": "Huelva",
@@ -27243,7 +24600,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 919009,
"latitude": -12.52897,
"longitude": 27.88382,
"name": "Chingola",
@@ -27253,7 +24609,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 108512,
"latitude": 30.97531,
"longitude": 41.03808,
"name": "\u2018Ar\u2018ar",
@@ -27263,17 +24618,24 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785781,
"latitude": 22.63333,
"longitude": 110.15,
"name": "Yulin",
"population": 148485
},
+ {
+ "country_code": "US",
+ "elevation": 310,
+ "feature_code": "PPL",
+ "latitude": 34.44361,
+ "longitude": -118.60953,
+ "name": "Valencia",
+ "population": 148456
+ },
{
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616635,
"latitude": 40.7942,
"longitude": 43.84528,
"name": "Gyumri",
@@ -27283,7 +24645,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1814934,
"latitude": 30.65778,
"longitude": 117.48306,
"name": "Chizhou",
@@ -27293,7 +24654,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856584,
"latitude": 34.73333,
"longitude": 135.56667,
"name": "Moriguchi",
@@ -27303,7 +24663,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2521420,
"latitude": 38.87789,
"longitude": -6.97061,
"name": "Badajoz",
@@ -27313,7 +24672,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3642833,
"latitude": 10.30589,
"longitude": -67.63212,
"name": "El Lim\u00f3n",
@@ -27323,7 +24681,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1637158,
"latitude": -3.3,
"longitude": 102.86667,
"name": "Lubuklinggau",
@@ -27333,7 +24690,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2990363,
"latitude": 43.83333,
"longitude": 4.35,
"name": "N\u00eemes",
@@ -27343,7 +24699,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277100,
"latitude": 22.76139,
"longitude": 88.37194,
"name": "B\u0101r\u0101kpur",
@@ -27353,7 +24708,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1633118,
"latitude": -2.2,
"longitude": 113.83333,
"name": "Palangkaraya",
@@ -27363,7 +24717,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034638,
"latitude": 41.65917,
"longitude": 123.33917,
"name": "Sujiatun",
@@ -27373,7 +24726,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302259,
"latitude": -33.81667,
"longitude": 151.0,
"name": "City of Parramatta",
@@ -27383,7 +24735,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1580410,
"latitude": 20.95111,
"longitude": 107.08,
"name": "H\u1ea1 Long",
@@ -27393,7 +24744,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1651112,
"latitude": -6.8017,
"longitude": 108.6311,
"name": "Astanajapura",
@@ -27403,7 +24753,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4756955,
"latitude": 37.03737,
"longitude": -76.33161,
"name": "East Hampton",
@@ -27413,7 +24762,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036876,
"latitude": 46.46667,
"longitude": 124.86667,
"name": "Honggang",
@@ -27423,7 +24771,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3696417,
"latitude": -9.9329,
"longitude": -76.24153,
"name": "Hu\u00e1nuco",
@@ -27433,7 +24780,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2488835,
"latitude": 36.26417,
"longitude": 2.75393,
"name": "M\u00e9d\u00e9a",
@@ -27443,7 +24789,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 546230,
"latitude": 55.07944,
"longitude": 38.77833,
"name": "Kolomna",
@@ -27453,7 +24798,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 118994,
"latitude": 30.4067,
"longitude": 55.9939,
"name": "Rafsanj\u0101n",
@@ -27463,7 +24807,6 @@
"country_code": "KW",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 285704,
"latitude": 29.33389,
"longitude": 48.07611,
"name": "As S\u0101lim\u012byah",
@@ -27473,7 +24816,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2755003,
"latitude": 52.38084,
"longitude": 4.63683,
"name": "Haarlem",
@@ -27483,7 +24825,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1609776,
"latitude": 16.44671,
"longitude": 102.833,
"name": "Khon Kaen",
@@ -27493,17 +24834,24 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2550078,
"latitude": 33.25492,
"longitude": -8.50602,
"name": "El Jadida",
"population": 147549
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.49973,
+ "longitude": 13.40338,
+ "name": "Kreuzberg",
+ "population": 147532
+ },
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 789128,
+ "feature_code": "PPLA2",
"latitude": 44.01667,
"longitude": 20.91667,
"name": "Kragujevac",
@@ -27513,9 +24861,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 610612,
- "latitude": 43.65,
- "longitude": 51.2,
+ "latitude": 43.64806,
+ "longitude": 51.17222,
"name": "Aktau",
"population": 147443
},
@@ -27523,7 +24870,6 @@
"country_code": "US",
"elevation": 165,
"feature_code": "PPLA2",
- "geonameid": 4898015,
"latitude": 41.52503,
"longitude": -88.08173,
"name": "Joliet",
@@ -27533,7 +24879,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456290,
"latitude": -22.8075,
"longitude": -43.41389,
"name": "Nil\u00f3polis",
@@ -27543,7 +24888,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272013,
"latitude": 11.3428,
"longitude": 77.72741,
"name": "Erode",
@@ -27553,7 +24897,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3133880,
"latitude": 63.43049,
"longitude": 10.39506,
"name": "Trondheim",
@@ -27563,7 +24906,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1698829,
"latitude": 13.61917,
"longitude": 123.18139,
"name": "Naga",
@@ -27573,7 +24915,6 @@
"country_code": "BH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 290340,
"latitude": 26.21536,
"longitude": 50.5832,
"name": "Manama",
@@ -27583,7 +24924,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1586896,
"latitude": 12.66667,
"longitude": 108.05,
"name": "Bu\u00f4n Ma Thu\u1ed9t",
@@ -27593,7 +24933,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 214974,
"latitude": -5.94749,
"longitude": 29.19471,
"name": "Kalemie",
@@ -27603,9 +24942,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2019528,
- "latitude": 42.83333,
- "longitude": 132.89472,
+ "latitude": 42.8118,
+ "longitude": 132.9095,
"name": "Nakhodka",
"population": 146920
},
@@ -27613,7 +24951,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 665004,
"latitude": 46.54245,
"longitude": 24.55747,
"name": "T\u00e2rgu-Mure\u015f",
@@ -27623,7 +24960,6 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 233346,
"latitude": 2.77457,
"longitude": 32.29899,
"name": "Gulu",
@@ -27633,7 +24969,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3038354,
"latitude": 43.5283,
"longitude": 5.44973,
"name": "Aix-en-Provence",
@@ -27643,7 +24978,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278860,
"latitude": 30.37833,
"longitude": 76.78083,
"name": "Amb\u0101la",
@@ -27653,7 +24987,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1586350,
"latitude": 11.92144,
"longitude": 109.15913,
"name": "Cam Ranh",
@@ -27663,7 +24996,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3547398,
"latitude": 23.04111,
"longitude": -81.5775,
"name": "Matanzas",
@@ -27673,7 +25005,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3453303,
"latitude": -21.78778,
"longitude": -46.56139,
"name": "Po\u00e7os de Caldas",
@@ -27683,7 +25014,6 @@
"country_code": "US",
"elevation": 26,
"feature_code": "PPLA2",
- "geonameid": 5102466,
"latitude": 40.91677,
"longitude": -74.17181,
"name": "Paterson",
@@ -27693,7 +25023,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3086800,
"latitude": 50.2584,
"longitude": 18.85632,
"name": "Ruda \u015al\u0105ska",
@@ -27703,7 +25032,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3529982,
"latitude": 18.8,
"longitude": -98.95,
"name": "Cuautla Morelos",
@@ -27713,7 +25041,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 325303,
"latitude": 38.75667,
"longitude": 30.54333,
"name": "Afyonkarahisar",
@@ -27723,7 +25050,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 890422,
"latitude": -19.45,
"longitude": 29.81667,
"name": "Gweru",
@@ -27733,7 +25059,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797318,
"latitude": 25.48333,
"longitude": 103.78333,
"name": "Qujing",
@@ -27743,7 +25068,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3493175,
"latitude": 19.79344,
"longitude": -70.6884,
"name": "Puerto Plata",
@@ -27753,7 +25077,6 @@
"country_code": "US",
"elevation": 823,
"feature_code": "PPLA",
- "geonameid": 5586437,
"latitude": 43.6135,
"longitude": -116.20345,
"name": "Boise",
@@ -27763,7 +25086,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1808857,
"latitude": 33.07278,
"longitude": 107.03028,
"name": "Hanzhong",
@@ -27773,7 +25095,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2615876,
"latitude": 55.39594,
"longitude": 10.38831,
"name": "Odense",
@@ -27783,7 +25104,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265859,
"latitude": 23.4,
"longitude": 88.5,
"name": "Krishnanagar",
@@ -27793,7 +25113,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788816,
"latitude": 37.90278,
"longitude": 115.20361,
"name": "Xinji",
@@ -27803,7 +25122,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3395503,
"latitude": -5.36861,
"longitude": -49.11778,
"name": "Marab\u00e1",
@@ -27813,7 +25131,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 967476,
"latitude": -26.98023,
"longitude": 26.67272,
"name": "Orkney",
@@ -27823,7 +25140,6 @@
"country_code": "US",
"elevation": 266,
"feature_code": "PPLA2",
- "geonameid": 4273837,
"latitude": 39.11417,
"longitude": -94.62746,
"name": "Kansas City",
@@ -27833,7 +25149,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257804,
"latitude": 25.88333,
"longitude": 86.6,
"name": "Saharsa",
@@ -27843,7 +25158,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732721,
"latitude": 1.4726,
"longitude": 103.878,
"name": "Kampung Pasir Gudang Baru",
@@ -27853,7 +25167,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646698,
"latitude": -6.41972,
"longitude": 107.45583,
"name": "Cikampek",
@@ -27863,7 +25176,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1848689,
"latitude": 34.18583,
"longitude": 131.47139,
"name": "Yamaguchi-shi",
@@ -27873,7 +25185,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276720,
"latitude": 31.81861,
"longitude": 75.20278,
"name": "Bat\u0101la",
@@ -27883,17 +25194,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1793700,
"latitude": 22.25135,
"longitude": 112.7799,
- "name": "Taicheng",
+ "name": "Taishan",
"population": 145440
},
{
"country_code": "US",
"elevation": 27,
"feature_code": "PPL",
- "geonameid": 5403022,
"latitude": 33.83585,
"longitude": -118.34063,
"name": "Torrance",
@@ -27903,7 +25212,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2852458,
"latitude": 52.39886,
"longitude": 13.06566,
"name": "Potsdam",
@@ -27913,9 +25221,8 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 149658,
- "latitude": -5.01667,
- "longitude": 32.8,
+ "latitude": -5.01622,
+ "longitude": 32.82663,
"name": "Tabora",
"population": 145292
},
@@ -27923,7 +25230,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3435261,
"latitude": -31.39296,
"longitude": -58.02089,
"name": "Concordia",
@@ -27933,7 +25239,6 @@
"country_code": "US",
"elevation": 121,
"feature_code": "PPLA2",
- "geonameid": 5140405,
"latitude": 43.04812,
"longitude": -76.14742,
"name": "Syracuse",
@@ -27943,7 +25248,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3488465,
"latitude": 17.99107,
"longitude": -76.95742,
"name": "Spanish Town",
@@ -27953,7 +25257,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3030300,
"latitude": 48.4,
"longitude": -4.48333,
"name": "Brest",
@@ -27963,9 +25266,8 @@
"country_code": "TJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1514879,
- "latitude": 40.28527,
- "longitude": 69.62792,
+ "latitude": 40.28256,
+ "longitude": 69.62216,
"name": "Kh\u016djand",
"population": 144865
},
@@ -27973,9 +25275,8 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2451185,
- "latitude": 11.3135,
- "longitude": -5.6697,
+ "latitude": 11.31755,
+ "longitude": -5.66654,
"name": "Sikasso",
"population": 144786
},
@@ -27983,7 +25284,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1796556,
"latitude": 18.24306,
"longitude": 109.505,
"name": "Sanya",
@@ -27993,7 +25293,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013728,
"latitude": 29.32322,
"longitude": -100.95217,
"name": "Ciudad Acu\u00f1a",
@@ -28003,7 +25302,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038679,
"latitude": 45.54545,
"longitude": 126.97703,
"name": "Acheng",
@@ -28013,7 +25311,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 295514,
"latitude": 32.09028,
"longitude": 34.83972,
"name": "Bene Beraq",
@@ -28023,7 +25320,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6947482,
"latitude": 50.9631,
"longitude": 7.00488,
"name": "K\u00f6ln-M\u00fclheim",
@@ -28033,7 +25329,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3618030,
"latitude": 12.43787,
"longitude": -86.87804,
"name": "Le\u00f3n",
@@ -28043,7 +25338,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3003603,
"latitude": 48.0,
"longitude": 0.2,
"name": "Le Mans",
@@ -28053,7 +25347,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2229752,
"latitude": 4.6363,
"longitude": 9.4469,
"name": "Kumba",
@@ -28063,7 +25356,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 563523,
"latitude": 55.78959,
"longitude": 38.44671,
"name": "Elektrostal\u2019",
@@ -28073,7 +25365,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805733,
"latitude": 38.49528,
"longitude": 102.17389,
"name": "Jinchang",
@@ -28083,7 +25374,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 5282804,
"latitude": 41.16704,
"longitude": -73.20483,
"name": "Bridgeport",
@@ -28093,7 +25383,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1800779,
"latitude": 24.29769,
"longitude": 116.10724,
"name": "Meizhou",
@@ -28103,7 +25392,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2633352,
"latitude": 53.95763,
"longitude": -1.08271,
"name": "York",
@@ -28113,7 +25401,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1643837,
"latitude": 0.5412,
"longitude": 123.0595,
"name": "Gorontalo",
@@ -28123,7 +25410,6 @@
"country_code": "US",
"elevation": 34,
"feature_code": "PPL",
- "geonameid": 5355933,
"latitude": 37.66882,
"longitude": -122.0808,
"name": "Hayward",
@@ -28133,7 +25419,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 216281,
"latitude": -1.67917,
"longitude": 29.22278,
"name": "Goma",
@@ -28143,7 +25428,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2294665,
"latitude": 5.58365,
"longitude": -0.10722,
"name": "Teshi",
@@ -28153,7 +25437,6 @@
"country_code": "US",
"elevation": 1525,
"feature_code": "PPLA2",
- "geonameid": 5577147,
"latitude": 40.58526,
"longitude": -105.08442,
"name": "Fort Collins",
@@ -28163,7 +25446,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 354502,
"latitude": 31.1143,
"longitude": 30.94012,
"name": "Kafr ash Shaykh",
@@ -28173,7 +25455,6 @@
"country_code": "US",
"elevation": 197,
"feature_code": "PPL",
- "geonameid": 5346827,
"latitude": 33.11921,
"longitude": -117.08642,
"name": "Escondido",
@@ -28183,7 +25464,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2128574,
"latitude": 43.18944,
"longitude": 141.00222,
"name": "Otaru",
@@ -28193,7 +25473,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2646057,
"latitude": 52.05917,
"longitude": 1.15545,
"name": "Ipswich",
@@ -28203,7 +25482,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1645133,
"latitude": 1.68333,
"longitude": 101.45,
"name": "Dumai",
@@ -28213,7 +25491,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849186,
"latitude": 35.67056,
"longitude": 139.88861,
"name": "Urayasu",
@@ -28223,7 +25500,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3649833,
"latitude": 9.55451,
"longitude": -69.19564,
"name": "Acarigua",
@@ -28233,7 +25509,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6137270,
"latitude": 48.41675,
"longitude": -71.06573,
"name": "Saguenay",
@@ -28243,7 +25518,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1701053,
"latitude": 8.0,
"longitude": 124.28333,
"name": "Marawi City",
@@ -28253,7 +25527,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458329,
"latitude": -16.2525,
"longitude": -47.95028,
"name": "Luzi\u00e2nia",
@@ -28263,7 +25536,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1701054,
"latitude": 7.99861,
"longitude": 124.29278,
"name": "Marawi",
@@ -28273,7 +25545,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 726848,
"latitude": 42.43278,
"longitude": 25.64194,
"name": "Stara Zagora",
@@ -28283,7 +25554,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2505530,
"latitude": 31.61667,
"longitude": -2.21667,
"name": "B\u00e9char",
@@ -28293,7 +25563,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2907911,
"latitude": 49.40768,
"longitude": 8.69079,
"name": "Heidelberg",
@@ -28303,7 +25572,6 @@
"country_code": "SL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2407790,
"latitude": 7.87667,
"longitude": -11.1875,
"name": "Kenema",
@@ -28313,7 +25581,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3404545,
"latitude": -8.28333,
"longitude": -35.03333,
"name": "Cabo",
@@ -28323,7 +25590,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2655459,
"latitude": 53.81667,
"longitude": -3.05,
"name": "Blackpool",
@@ -28333,7 +25599,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3037854,
"latitude": 49.9,
"longitude": 2.3,
"name": "Amiens",
@@ -28343,7 +25608,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3897347,
"latitude": -22.46667,
"longitude": -68.93333,
"name": "Calama",
@@ -28353,7 +25617,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458266,
"latitude": -22.37083,
"longitude": -41.78694,
"name": "Maca\u00e9",
@@ -28363,7 +25626,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2302357,
"latitude": 5.10535,
"longitude": -1.2466,
"name": "Cape Coast",
@@ -28373,7 +25635,6 @@
"country_code": "US",
"elevation": 1682,
"feature_code": "PPL",
- "geonameid": 5427946,
"latitude": 39.70471,
"longitude": -105.08137,
"name": "Lakewood",
@@ -28383,7 +25644,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275947,
"latitude": 16.53333,
"longitude": 81.53333,
"name": "Bh\u012bmavaram",
@@ -28393,7 +25653,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 503550,
"latitude": 44.04861,
"longitude": 43.05944,
"name": "Pyatigorsk",
@@ -28403,7 +25662,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2642607,
"latitude": 54.57623,
"longitude": -1.23483,
"name": "Middlesbrough",
@@ -28413,7 +25671,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 550280,
"latitude": 55.89704,
"longitude": 37.42969,
"name": "Khimki",
@@ -28423,7 +25680,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3086586,
"latitude": 50.09713,
"longitude": 18.54179,
"name": "Rybnik",
@@ -28433,7 +25689,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1213547,
"latitude": 2.96667,
"longitude": 99.8,
"name": "Tanjungbalai",
@@ -28443,7 +25698,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 352951,
"latitude": 27.7314,
"longitude": 30.84165,
"name": "Mallaw\u012b",
@@ -28453,7 +25707,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4333190,
"latitude": 29.97854,
"longitude": -90.16396,
"name": "Metairie Terrace",
@@ -28463,9 +25716,8 @@
"country_code": "BA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3188582,
- "latitude": 44.54278,
- "longitude": 18.66944,
+ "latitude": 44.53842,
+ "longitude": 18.66709,
"name": "Tuzla",
"population": 142486
},
@@ -28473,7 +25725,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1174167,
"latitude": 28.64534,
"longitude": 70.6567,
"name": "Kh\u0101npur",
@@ -28483,7 +25734,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1337240,
"latitude": 24.59112,
"longitude": 88.27102,
"name": "Naw\u0101bganj",
@@ -28493,7 +25743,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805528,
"latitude": 29.10778,
"longitude": 119.65472,
"name": "Jinhua",
@@ -28503,7 +25752,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2855745,
"latitude": 51.71905,
"longitude": 8.75439,
"name": "Paderborn",
@@ -28513,7 +25761,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 990930,
"latitude": -28.73226,
"longitude": 24.76232,
"name": "Kimberley",
@@ -28523,7 +25770,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3564178,
"latitude": 21.84,
"longitude": -78.76194,
"name": "Ciego de \u00c1vila",
@@ -28533,7 +25779,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805844,
"latitude": 33.26338,
"longitude": 115.36108,
"name": "Jieshou",
@@ -28543,7 +25788,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2529317,
"latitude": 34.21,
"longitude": -4.01,
"name": "Taza",
@@ -28553,7 +25797,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3169522,
"latitude": 44.69825,
"longitude": 10.63125,
"name": "Reggio nell'Emilia",
@@ -28563,7 +25806,6 @@
"country_code": "US",
"elevation": 216,
"feature_code": "PPL",
- "geonameid": 4903279,
"latitude": 41.78586,
"longitude": -88.14729,
"name": "Naperville",
@@ -28573,7 +25815,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1005646,
"latitude": -26.53333,
"longitude": 29.06667,
"name": "eMbalenhle",
@@ -28583,7 +25824,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1307835,
"latitude": 21.46667,
"longitude": 95.38333,
"name": "Myingyan",
@@ -28593,7 +25833,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2759661,
"latitude": 51.98,
"longitude": 5.91111,
"name": "Arnhem",
@@ -28603,7 +25842,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2972191,
"latitude": 47.38333,
"longitude": 0.68333,
"name": "Tours",
@@ -28613,7 +25851,6 @@
"country_code": "US",
"elevation": 225,
"feature_code": "PPLA2",
- "geonameid": 4509884,
"latitude": 39.75895,
"longitude": -84.19161,
"name": "Dayton",
@@ -28623,7 +25860,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3591415,
"latitude": 14.50278,
"longitude": -90.55167,
"name": "Petapa",
@@ -28633,7 +25869,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277508,
"latitude": 25.21667,
"longitude": 88.76667,
"name": "B\u0101lurgh\u0101t",
@@ -28643,7 +25878,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461563,
"latitude": -20.02194,
"longitude": -44.05889,
"name": "Ibirit\u00e9",
@@ -28653,7 +25887,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848277,
"latitude": 35.43333,
"longitude": 133.33333,
"name": "Yonago",
@@ -28663,7 +25896,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2655237,
"latitude": 53.58333,
"longitude": -2.43333,
"name": "Bolton",
@@ -28673,7 +25905,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530599,
"latitude": 18.63333,
"longitude": -91.83333,
"name": "Ciudad del Carmen",
@@ -28683,7 +25914,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6317464,
"latitude": -12.89444,
"longitude": -38.32722,
"name": "Lauro de Freitas",
@@ -28693,7 +25923,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3907584,
"latitude": -19.58361,
"longitude": -65.75306,
"name": "Potos\u00ed",
@@ -28703,7 +25932,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2998286,
"latitude": 45.83153,
"longitude": 1.2578,
"name": "Limoges",
@@ -28713,7 +25941,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191648,
"latitude": 45.34306,
"longitude": 14.40917,
"name": "Rijeka",
@@ -28723,7 +25950,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455070,
"latitude": -25.52,
"longitude": -48.50917,
"name": "Paranagu\u00e1",
@@ -28733,7 +25959,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1141269,
"latitude": 33.55356,
"longitude": 68.42689,
"name": "Ghazni",
@@ -28743,7 +25968,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 130802,
"latitude": 33.6374,
"longitude": 46.4227,
"name": "\u012al\u0101m",
@@ -28753,7 +25977,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037222,
"latitude": 43.50075,
"longitude": 124.81979,
"name": "Gongzhuling",
@@ -28763,7 +25986,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3860443,
"latitude": -45.86667,
"longitude": -67.5,
"name": "Comodoro Rivadavia",
@@ -28773,7 +25995,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1764160,
"latitude": 5.32699,
"longitude": 100.27348,
"name": "Kampung Sungai Ara",
@@ -28783,7 +26004,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1497337,
"latitude": 69.3535,
"longitude": 88.2027,
"name": "Noril\u2019sk",
@@ -28793,7 +26013,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4158928,
"latitude": 26.0112,
"longitude": -80.14949,
"name": "Hollywood",
@@ -28803,7 +26022,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 970566,
"latitude": -26.43138,
"longitude": 28.47713,
"name": "Nigel",
@@ -28813,7 +26031,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268593,
"latitude": 29.8,
"longitude": 76.38333,
"name": "Kaithal",
@@ -28823,7 +26040,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 582432,
"latitude": 54.90442,
"longitude": 52.3154,
"name": "Al\u2019met\u2019yevsk",
@@ -28833,7 +26049,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2938913,
"latitude": 49.87056,
"longitude": 8.64944,
"name": "Darmstadt",
@@ -28843,7 +26058,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1215957,
"latitude": 37.22417,
"longitude": 67.27833,
"name": "Tirmiz",
@@ -28853,7 +26067,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3108288,
"latitude": 41.11667,
"longitude": 1.25,
"name": "Tarragona",
@@ -28863,7 +26076,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265242,
"latitude": 27.95,
"longitude": 80.76667,
"name": "Lakh\u012bmpur",
@@ -28873,7 +26085,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2640354,
"latitude": 52.57364,
"longitude": -0.24777,
"name": "Peterborough",
@@ -28883,7 +26094,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 973111,
"latitude": -29.81292,
"longitude": 30.63646,
"name": "Mpumalanga",
@@ -28893,7 +26103,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2744114,
"latitude": 52.45313,
"longitude": 4.81356,
"name": "Zaanstad",
@@ -28903,7 +26112,6 @@
"country_code": "US",
"elevation": 39,
"feature_code": "PPL",
- "geonameid": 5400075,
"latitude": 37.36883,
"longitude": -122.03635,
"name": "Sunnyvale",
@@ -28913,7 +26121,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270164,
"latitude": 23.98333,
"longitude": 85.35,
"name": "Haz\u0101r\u012bb\u0101g",
@@ -28923,7 +26130,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253200,
"latitude": 23.53333,
"longitude": 77.81667,
"name": "Vidisha",
@@ -28933,7 +26139,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3947019,
"latitude": -13.15833,
"longitude": -74.22389,
"name": "Ayacucho",
@@ -28942,8 +26147,7 @@
{
"country_code": "US",
"elevation": 12,
- "feature_code": "PPL",
- "geonameid": 4744091,
+ "feature_code": "PPLA2",
"latitude": 38.80484,
"longitude": -77.04692,
"name": "Alexandria",
@@ -28953,7 +26157,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759821,
"latitude": 52.155,
"longitude": 5.3875,
"name": "Amersfoort",
@@ -28963,7 +26166,6 @@
"country_code": "US",
"elevation": 151,
"feature_code": "PPL",
- "geonameid": 4710826,
"latitude": 32.7668,
"longitude": -96.59916,
"name": "Mesquite",
@@ -28973,7 +26175,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 554233,
"latitude": 55.91417,
"longitude": 37.82556,
"name": "Korol\u00ebv",
@@ -28983,7 +26184,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1180809,
"latitude": 26.73286,
"longitude": 67.77631,
"name": "D\u0101du",
@@ -28993,7 +26193,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1178231,
"latitude": 31.14874,
"longitude": 72.68656,
"name": "Gojra",
@@ -29003,7 +26202,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3992619,
"latitude": 28.7,
"longitude": -100.51667,
"name": "Piedras Negras",
@@ -29013,7 +26211,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270498,
"latitude": 29.21667,
"longitude": 79.51667,
"name": "Haldw\u0101ni",
@@ -29023,7 +26220,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2341355,
"latitude": 7.46667,
"longitude": 4.35,
"name": "Gbongan",
@@ -29033,7 +26229,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1822214,
"latitude": 13.36667,
"longitude": 103.85,
"name": "Si\u0115mr\u00e9ab",
@@ -29043,7 +26238,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2284647,
"latitude": 7.41251,
"longitude": -7.55383,
"name": "Man",
@@ -29053,7 +26247,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529651,
"latitude": 47.86667,
"longitude": 88.11667,
"name": "Altay",
@@ -29063,7 +26256,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270568,
"latitude": 22.83444,
"longitude": 88.6275,
"name": "H\u0101bra",
@@ -29073,7 +26265,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265683,
"latitude": 10.96209,
"longitude": 79.39124,
"name": "Kumbakonam",
@@ -29083,9 +26274,8 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3985604,
- "latitude": 32.46306,
- "longitude": -114.77667,
+ "latitude": 32.45612,
+ "longitude": -114.77186,
"name": "San Luis R\u00edo Colorado",
"population": 139254
},
@@ -29093,7 +26283,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1627253,
"latitude": -7.4478,
"longitude": 112.7183,
"name": "Sidoarjo",
@@ -29103,7 +26292,6 @@
"country_code": "KW",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 412800,
"latitude": 29.25722,
"longitude": 48.05722,
"name": "\u015eab\u0101\u1e29 as S\u0101lim",
@@ -29113,7 +26301,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860034,
"latitude": 34.98333,
"longitude": 136.98333,
"name": "Kariya",
@@ -29123,7 +26310,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3613533,
"latitude": 15.61444,
"longitude": -87.95302,
"name": "Choloma",
@@ -29133,7 +26319,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636882,
"latitude": 53.40979,
"longitude": -2.15761,
"name": "Stockport",
@@ -29143,7 +26328,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284824,
"latitude": 47.47603,
"longitude": 19.03605,
"name": "Budapest XI. ker\u00fclet",
@@ -29153,7 +26337,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036776,
"latitude": 42.96333,
"longitude": 126.74778,
"name": "Huadian",
@@ -29163,7 +26346,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1621613,
"latitude": -6.711,
"longitude": 108.5037,
"name": "Weru",
@@ -29173,7 +26355,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2654710,
"latitude": 50.82838,
"longitude": -0.13947,
"name": "Brighton",
@@ -29183,7 +26364,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2146142,
"latitude": -19.26639,
"longitude": 146.8057,
"name": "Townsville",
@@ -29193,17 +26373,15 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2295458,
"latitude": 4.934,
"longitude": -1.7137,
- "name": "Sekondi",
+ "name": "Sekondi-Takoradi",
"population": 138872
},
{
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259395,
"latitude": 21.64219,
"longitude": 69.60929,
"name": "Porbandar",
@@ -29213,7 +26391,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037335,
"latitude": 45.18333,
"longitude": 124.81667,
"name": "Fuyu",
@@ -29223,7 +26400,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3024635,
"latitude": 45.77966,
"longitude": 3.08628,
"name": "Clermont-Ferrand",
@@ -29233,7 +26409,6 @@
"country_code": "VN",
"elevation": 1500,
"feature_code": "PPL",
- "geonameid": 1568043,
"latitude": 22.34023,
"longitude": 103.84415,
"name": "Sa P\u00e1",
@@ -29243,7 +26418,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3988214,
"latitude": 20.56667,
"longitude": -101.2,
"name": "Salamanca",
@@ -29253,7 +26427,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274056,
"latitude": 14.22262,
"longitude": 76.40038,
"name": "Chitradurga",
@@ -29263,7 +26436,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4333177,
"latitude": 29.98409,
"longitude": -90.15285,
"name": "Metairie",
@@ -29273,7 +26445,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815427,
"latitude": 31.6,
"longitude": 117.86667,
"name": "Chaohu",
@@ -29283,7 +26454,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343784,
"latitude": 7.9,
"longitude": 4.31667,
"name": "Ejigbo",
@@ -29293,7 +26463,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254657,
"latitude": 29.98333,
"longitude": 76.81667,
"name": "Th\u0101nesar",
@@ -29303,7 +26472,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254327,
"latitude": 12.22662,
"longitude": 79.07461,
"name": "Tiruvann\u0101malai",
@@ -29313,7 +26481,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3345439,
"latitude": 52.67659,
"longitude": -2.44926,
"name": "Telford",
@@ -29323,7 +26490,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3168673,
"latitude": 40.67797,
"longitude": 14.76599,
"name": "Salerno",
@@ -29333,7 +26499,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278685,
"latitude": 22.56667,
"longitude": 72.93333,
"name": "\u0100nand",
@@ -29343,7 +26508,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3393001,
"latitude": -2.90472,
"longitude": -41.77667,
"name": "Parna\u00edba",
@@ -29353,7 +26517,6 @@
"country_code": "RO",
"elevation": 228,
"feature_code": "PPL",
- "geonameid": 6697993,
"latitude": 47.65331,
"longitude": 23.57949,
"name": "Baia Mare",
@@ -29363,7 +26526,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3723779,
"latitude": 18.23417,
"longitude": -72.53472,
"name": "Jacmel",
@@ -29373,7 +26535,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1336143,
"latitude": 24.0,
"longitude": 89.25,
"name": "P\u0101bna",
@@ -29383,7 +26544,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2296606,
"latitude": 6.20602,
"longitude": -1.66191,
"name": "Obuasi",
@@ -29393,7 +26553,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 255524,
"latitude": 38.01667,
"longitude": 23.7,
"name": "Perist\u00e9ri",
@@ -29403,7 +26562,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460535,
"latitude": -23.26417,
"longitude": -47.29917,
"name": "Itu",
@@ -29413,7 +26571,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358172,
"latitude": 31.08871,
"longitude": 31.59427,
"name": "Dikirnis",
@@ -29423,7 +26580,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856367,
"latitude": 35.70611,
"longitude": 139.55944,
"name": "Musashino",
@@ -29433,17 +26589,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1805857,
- "latitude": 22.81338,
- "longitude": 115.82574,
+ "latitude": 22.81027,
+ "longitude": 115.83058,
"name": "Jieshi",
"population": 137444
},
{
"country_code": "US",
"elevation": 1,
- "feature_code": "PPL",
- "geonameid": 4762894,
+ "feature_code": "PPLA2",
"latitude": 37.02987,
"longitude": -76.34522,
"name": "Hampton",
@@ -29453,7 +26607,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3402591,
"latitude": -1.29389,
"longitude": -47.92639,
"name": "Castanhal",
@@ -29463,7 +26616,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648636,
"latitude": 1.4451,
"longitude": 125.1824,
"name": "Bitung",
@@ -29473,7 +26625,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1019330,
"latitude": -32.84721,
"longitude": 27.44218,
"name": "Bhisho",
@@ -29483,7 +26634,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1233369,
"latitude": 7.2083,
"longitude": 79.8358,
"name": "Negombo",
@@ -29493,7 +26643,6 @@
"country_code": "RE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 935264,
"latitude": -20.88231,
"longitude": 55.4504,
"name": "Saint-Denis",
@@ -29503,7 +26652,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 261745,
"latitude": 35.32787,
"longitude": 25.14341,
"name": "Ir\u00e1kleion",
@@ -29513,7 +26661,6 @@
"country_code": "US",
"elevation": 263,
"feature_code": "PPL",
- "geonameid": 5381396,
"latitude": 34.14778,
"longitude": -118.14452,
"name": "Pasadena",
@@ -29523,7 +26670,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7303248,
"latitude": 30.84918,
"longitude": 120.92583,
"name": "Jiashan",
@@ -29533,7 +26679,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529484,
"latitude": 42.8,
"longitude": 93.45,
"name": "Hami",
@@ -29543,7 +26688,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 516215,
"latitude": 55.67798,
"longitude": 37.27773,
"name": "Odintsovo",
@@ -29553,7 +26697,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268715,
"latitude": 22.97,
"longitude": 88.43194,
"name": "K\u0101nchr\u0101p\u0101ra",
@@ -29563,7 +26706,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3589885,
"latitude": 14.71889,
"longitude": -90.64417,
"name": "San Juan Sacatep\u00e9quez",
@@ -29573,7 +26715,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2342490,
"latitude": 11.52325,
"longitude": 7.30813,
"name": "Funtua",
@@ -29583,7 +26724,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1293625,
"latitude": 14.08333,
"longitude": 98.2,
"name": "Dawei",
@@ -29593,7 +26733,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338711,
"latitude": 8.83333,
"longitude": 3.75,
"name": "Igboho",
@@ -29603,7 +26742,6 @@
"country_code": "NL",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 2759706,
"latitude": 52.21,
"longitude": 5.96944,
"name": "Apeldoorn",
@@ -29613,7 +26751,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794806,
"latitude": 39.23333,
"longitude": 106.76944,
"name": "Shizuishan",
@@ -29623,7 +26760,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 685826,
"latitude": 47.65729,
"longitude": 23.56808,
"name": "Baia Mare",
@@ -29633,7 +26769,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1709968,
"latitude": 9.98889,
"longitude": 122.81222,
"name": "Kabankalan",
@@ -29643,7 +26778,6 @@
"country_code": "ME",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3193044,
"latitude": 42.44111,
"longitude": 19.26361,
"name": "Podgorica",
@@ -29653,17 +26787,24 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449324,
"latitude": -23.62306,
"longitude": -46.55111,
"name": "S\u00e3o Caetano do Sul",
"population": 136453
},
+ {
+ "country_code": "US",
+ "elevation": 217,
+ "feature_code": "PPL",
+ "latitude": 34.18667,
+ "longitude": -118.44897,
+ "name": "Van Nuys",
+ "population": 136443
+ },
{
"country_code": "US",
"elevation": 58,
"feature_code": "PPL",
- "geonameid": 5379513,
"latitude": 33.78779,
"longitude": -117.85311,
"name": "Orange",
@@ -29673,7 +26814,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 4221552,
"latitude": 32.08354,
"longitude": -81.09983,
"name": "Savannah",
@@ -29683,7 +26823,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1810240,
"latitude": 23.30602,
"longitude": 103.16351,
"name": "Xicheng",
@@ -29693,7 +26832,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264407,
"latitude": 16.73333,
"longitude": 77.98333,
"name": "Mahb\u016bbnagar",
@@ -29703,7 +26841,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 546105,
"latitude": 59.75069,
"longitude": 30.58856,
"name": "Kolpino",
@@ -29713,7 +26850,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 339219,
"latitude": 11.13333,
"longitude": 39.63333,
"name": "Des\u0113",
@@ -29723,7 +26859,6 @@
"country_code": "ES",
"elevation": 155,
"feature_code": "PPLA2",
- "geonameid": 3118514,
"latitude": 41.61667,
"longitude": 0.61667,
"name": "Lleida",
@@ -29733,7 +26868,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272552,
"latitude": 25.9,
"longitude": 93.73333,
"name": "Dim\u0101pur",
@@ -29743,7 +26877,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735093,
"latitude": 5.48032,
"longitude": 100.49849,
"name": "Tasek Glugor",
@@ -29753,7 +26886,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3877949,
"latitude": -40.56667,
"longitude": -73.15,
"name": "Osorno",
@@ -29763,7 +26895,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036597,
"latitude": 50.41667,
"longitude": 124.11667,
"name": "Jagdaqi",
@@ -29773,7 +26904,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3452073,
"latitude": -22.71611,
"longitude": -43.55528,
"name": "Queimados",
@@ -29783,7 +26913,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185191,
"latitude": 23.90105,
"longitude": 89.12207,
"name": "Kushtia",
@@ -29793,7 +26922,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 212902,
"latitude": -2.95,
"longitude": 25.95,
"name": "Kindu",
@@ -29803,7 +26931,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1727995,
"latitude": 14.95472,
"longitude": 120.89694,
"name": "Baliuag",
@@ -29813,7 +26940,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2634491,
"latitude": 52.51868,
"longitude": -1.9945,
"name": "West Bromwich",
@@ -29823,7 +26949,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1586357,
"latitude": 21.01667,
"longitude": 107.3,
"name": "C\u1ea9m Ph\u1ea3 Mines",
@@ -29833,7 +26958,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2346615,
"latitude": 4.73407,
"longitude": 6.86345,
"name": "Buguma",
@@ -29842,10 +26966,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1795055,
- "latitude": 22.93736,
- "longitude": 113.36063,
+ "feature_code": "PPLA4",
+ "latitude": 22.95093,
+ "longitude": 113.35948,
"name": "Shiqiao",
"population": 135308
},
@@ -29853,7 +26976,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1299154,
"latitude": 18.81667,
"longitude": 95.21667,
"name": "Prome",
@@ -29863,7 +26985,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 368277,
"latitude": 13.18087,
"longitude": 32.73999,
"name": "Rabak",
@@ -29873,7 +26994,6 @@
"country_code": "US",
"elevation": 152,
"feature_code": "PPL",
- "geonameid": 4459467,
"latitude": 35.79154,
"longitude": -78.78112,
"name": "Cary",
@@ -29883,7 +27003,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258109,
"latitude": 12.96667,
"longitude": 78.28333,
"name": "Robertsonpet",
@@ -29893,7 +27012,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 267008,
"latitude": 33.27333,
"longitude": 35.19389,
"name": "Tyre",
@@ -29903,7 +27021,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2427455,
"latitude": 8.56667,
"longitude": 16.08333,
"name": "Moundou",
@@ -29913,7 +27030,6 @@
"country_code": "US",
"elevation": 50,
"feature_code": "PPL",
- "geonameid": 5351247,
"latitude": 33.87029,
"longitude": -117.92534,
"name": "Fullerton",
@@ -29923,7 +27039,6 @@
"country_code": "PE",
"elevation": 2700,
"feature_code": "PPLA",
- "geonameid": 3699088,
"latitude": -7.16378,
"longitude": -78.50027,
"name": "Cajamarca",
@@ -29933,7 +27048,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1325211,
"latitude": 17.63333,
"longitude": 95.46667,
"name": "Hinthada",
@@ -29943,7 +27057,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1897007,
"latitude": 37.54,
"longitude": 127.20556,
"name": "Hanam",
@@ -29953,7 +27066,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2082600,
"latitude": -2.53333,
"longitude": 140.7,
"name": "Jayapura",
@@ -29963,7 +27075,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846069,
"latitude": 35.14944,
"longitude": 128.65972,
"name": "Chinhae",
@@ -29973,7 +27084,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274304,
"latitude": 22.06667,
"longitude": 78.93333,
"name": "Chhindw\u0101ra",
@@ -29983,7 +27093,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263814,
"latitude": 12.52417,
"longitude": 76.89583,
"name": "Mandya",
@@ -29993,7 +27102,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3687230,
"latitude": 4.74639,
"longitude": -75.91167,
"name": "Cartago",
@@ -30003,7 +27111,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3728474,
"latitude": 19.75778,
"longitude": -72.20417,
"name": "Cap-Ha\u00eftien",
@@ -30013,7 +27120,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1649593,
"latitude": -4.13333,
"longitude": 104.16667,
"name": "Baturaja",
@@ -30023,7 +27129,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848004,
"latitude": 35.48889,
"longitude": 139.38861,
"name": "Zama",
@@ -30033,7 +27138,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3169561,
"latitude": 44.4175,
"longitude": 12.20111,
"name": "Ravenna",
@@ -30043,7 +27147,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2514169,
"latitude": 36.51543,
"longitude": -4.88583,
"name": "Marbella",
@@ -30053,7 +27156,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2747351,
"latitude": 51.69917,
"longitude": 5.30417,
"name": "'s-Hertogenbosch",
@@ -30063,7 +27165,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1699296,
"latitude": 14.7314,
"longitude": 121.1417,
"name": "Rodriguez",
@@ -30073,7 +27174,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3531023,
"latitude": 18.5,
"longitude": -88.3,
"name": "Chetumal",
@@ -30083,7 +27183,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530240,
"latitude": 18.88333,
"longitude": -96.93333,
"name": "C\u00f3rdoba",
@@ -30093,7 +27192,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515011,
"latitude": 20.95,
"longitude": -97.4,
"name": "Tuxpan de Rodr\u00edguez Cano",
@@ -30103,7 +27201,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 89113,
"latitude": 30.75545,
"longitude": 20.22626,
"name": "Ajdabiya",
@@ -30113,7 +27210,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 522377,
"latitude": 44.6333,
"longitude": 41.9444,
"name": "Nevinnomyssk",
@@ -30123,7 +27219,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1689056,
"latitude": 14.6982,
"longitude": 121.1236,
"name": "San Mateo",
@@ -30133,7 +27228,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3118532,
"latitude": 42.6,
"longitude": -5.56667,
"name": "Le\u00f3n",
@@ -30143,7 +27237,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852663,
"latitude": 35.23333,
"longitude": 137.1,
"name": "Seto",
@@ -30153,7 +27246,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338269,
"latitude": 7.91667,
"longitude": 4.66667,
"name": "Ikirun",
@@ -30163,7 +27255,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3722286,
"latitude": 18.51083,
"longitude": -72.63389,
"name": "L\u00e9og\u00e2ne",
@@ -30173,7 +27264,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1651887,
"latitude": -6.9375,
"longitude": 109.1325,
"name": "Adiwerna",
@@ -30183,7 +27273,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2353099,
"latitude": 6.31625,
"longitude": 8.11691,
"name": "Abakaliki",
@@ -30193,7 +27282,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637627,
"latitude": 51.50949,
"longitude": -0.59541,
"name": "Slough",
@@ -30203,7 +27291,6 @@
"country_code": "US",
"elevation": 191,
"feature_code": "PPL",
- "geonameid": 5014051,
"latitude": 42.47754,
"longitude": -83.0277,
"name": "Warren",
@@ -30213,7 +27300,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1814093,
"latitude": 25.7,
"longitude": 100.18333,
"name": "Dali",
@@ -30223,7 +27309,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277264,
"latitude": 23.25,
"longitude": 87.06667,
"name": "B\u0101nkura",
@@ -30233,7 +27318,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 745169,
"latitude": 40.07806,
"longitude": 29.51333,
"name": "Inegeul",
@@ -30243,7 +27327,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130404,
"latitude": 43.10806,
"longitude": 141.55056,
"name": "Ebetsu",
@@ -30253,7 +27336,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1566319,
"latitude": 21.59278,
"longitude": 105.84417,
"name": "Th\u00e1i Nguy\u00ean",
@@ -30263,7 +27345,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1626932,
"latitude": -8.112,
"longitude": 115.08818,
"name": "Singaraja",
@@ -30273,7 +27354,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2805615,
"latitude": 49.78778,
"longitude": 9.93611,
"name": "W\u00fcrzburg",
@@ -30283,7 +27363,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 963230,
"latitude": -26.1844,
"longitude": 27.70203,
"name": "Randfontein",
@@ -30293,7 +27372,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270525,
"latitude": 25.68333,
"longitude": 85.21667,
"name": "H\u0101j\u012bpur",
@@ -30303,7 +27381,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 510808,
"latitude": 56.90528,
"longitude": 59.94361,
"name": "Pervoural\u2019sk",
@@ -30313,7 +27390,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270996,
"latitude": 27.13333,
"longitude": 81.93333,
"name": "Gonda",
@@ -30323,7 +27399,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1513243,
"latitude": 40.47111,
"longitude": 71.72472,
"name": "Marg\u2018ilon",
@@ -30333,7 +27408,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275812,
"latitude": 23.26667,
"longitude": 69.66667,
"name": "Bhuj",
@@ -30343,7 +27417,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3868707,
"latitude": -39.81422,
"longitude": -73.24589,
"name": "Valdivia",
@@ -30353,7 +27426,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270079,
"latitude": 13.82889,
"longitude": 77.49333,
"name": "Hindupur",
@@ -30363,7 +27435,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2326899,
"latitude": 4.74159,
"longitude": 7.08488,
"name": "Okrika",
@@ -30373,7 +27444,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283581,
"latitude": 27.01043,
"longitude": 84.87735,
"name": "B\u012brganj",
@@ -30383,7 +27453,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1683881,
"latitude": 10.24472,
"longitude": 123.84944,
"name": "Talisay",
@@ -30393,17 +27462,15 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 343137,
- "latitude": 7.05,
- "longitude": 38.46667,
- "name": "\u0100wasa",
+ "latitude": 7.06205,
+ "longitude": 38.47635,
+ "name": "Hawassa",
"population": 133097
},
{
"country_code": "US",
"elevation": 145,
"feature_code": "PPLA2",
- "geonameid": 4613868,
"latitude": 36.52977,
"longitude": -87.35945,
"name": "Clarksville",
@@ -30413,7 +27480,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798473,
"latitude": 29.71667,
"longitude": 113.88333,
"name": "Puqi",
@@ -30423,7 +27489,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850034,
"latitude": 34.5,
"longitude": 135.6,
"name": "Tondabayashi",
@@ -30433,7 +27498,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864132,
"latitude": 34.86667,
"longitude": 138.26667,
"name": "Fujieda",
@@ -30443,7 +27507,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853008,
"latitude": 34.88333,
"longitude": 135.23333,
"name": "Sanda",
@@ -30453,7 +27516,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1256523,
"latitude": 25.56892,
"longitude": 91.88313,
"name": "Shillong",
@@ -30463,7 +27525,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 124085,
"latitude": 36.9694,
"longitude": 46.1027,
"name": "M\u012b\u0101ndow\u0101b",
@@ -30473,7 +27534,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 548114,
"latitude": 43.91333,
"longitude": 42.72083,
"name": "Kislovodsk",
@@ -30483,7 +27543,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2753801,
"latitude": 52.3025,
"longitude": 4.68889,
"name": "Hoofddorp",
@@ -30493,7 +27552,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2416969,
"latitude": 7.75624,
"longitude": -8.8179,
"name": "Nz\u00e9r\u00e9kor\u00e9",
@@ -30503,7 +27561,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260728,
"latitude": 10.7725,
"longitude": 76.65139,
"name": "Palakkad",
@@ -30513,7 +27570,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789065,
"latitude": 32.68,
"longitude": 109.01722,
"name": "Ankang",
@@ -30523,7 +27579,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648580,
"latitude": -8.0983,
"longitude": 112.1681,
"name": "Blitar",
@@ -30533,7 +27588,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2475687,
"latitude": 34.87833,
"longitude": -1.315,
"name": "Tlemcen",
@@ -30543,7 +27597,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860735,
"latitude": 35.41667,
"longitude": 136.86667,
"name": "Kakamigahara",
@@ -30553,7 +27606,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3590979,
"latitude": 14.83333,
"longitude": -91.51667,
"name": "Quetzaltenango",
@@ -30563,7 +27615,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 566199,
"latitude": 54.21386,
"longitude": 49.61838,
"name": "Dimitrovgrad",
@@ -30573,7 +27624,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033225,
"latitude": 48.0,
"longitude": 122.71667,
"name": "Zalantun",
@@ -30583,7 +27633,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453837,
"latitude": -22.92389,
"longitude": -45.46167,
"name": "Pindamonhangaba",
@@ -30593,7 +27642,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1699054,
"latitude": 7.8275,
"longitude": 123.4782,
"name": "Muricay",
@@ -30603,7 +27651,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6155721,
"latitude": 43.16681,
"longitude": -79.24958,
"name": "St. Catharines",
@@ -30613,7 +27660,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854083,
"latitude": 33.03333,
"longitude": 130.45,
"name": "\u014cmuta",
@@ -30623,7 +27669,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271107,
"latitude": 22.75,
"longitude": 73.63333,
"name": "Godhra",
@@ -30633,7 +27678,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 135423,
"latitude": 36.41819,
"longitude": 54.97628,
"name": "Sh\u0101hr\u016bd",
@@ -30643,7 +27687,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813344,
"latitude": 39.04194,
"longitude": 106.39583,
"name": "Dawukou",
@@ -30653,7 +27696,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1722930,
"latitude": 15.08833,
"longitude": 120.66722,
"name": "Bulaon",
@@ -30663,7 +27705,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3629576,
"latitude": 11.6956,
"longitude": -70.19957,
"name": "Punto Fijo",
@@ -30673,7 +27714,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2113164,
"latitude": 35.86667,
"longitude": 140.01667,
"name": "Abiko",
@@ -30683,7 +27723,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266486,
"latitude": 26.5741,
"longitude": 74.86685,
"name": "Kishangarh",
@@ -30693,7 +27732,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860871,
"latitude": 34.73333,
"longitude": 135.58333,
"name": "Kadoma",
@@ -30703,7 +27741,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801401,
"latitude": 25.03333,
"longitude": 102.63611,
"name": "Majie",
@@ -30713,7 +27750,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636022,
"latitude": -3.41667,
"longitude": 114.85,
"name": "Martapura",
@@ -30723,7 +27759,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2968254,
"latitude": 45.76667,
"longitude": 4.88333,
"name": "Villeurbanne",
@@ -30733,7 +27768,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 132938,
"latitude": 37.25004,
"longitude": 55.16721,
"name": "Gonbad-e Q\u0101b\u016bs",
@@ -30743,7 +27777,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258470,
"latitude": 23.61667,
"longitude": 87.13333,
"name": "R\u0101n\u012bganj",
@@ -30753,7 +27786,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1808336,
"latitude": 23.43077,
"longitude": 115.82991,
"name": "Hepo",
@@ -30763,7 +27795,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1160939,
"latitude": 27.20245,
"longitude": 60.68476,
"name": "\u012ar\u0101nshahr",
@@ -30773,7 +27804,6 @@
"country_code": "US",
"elevation": 192,
"feature_code": "PPLA2",
- "geonameid": 4710178,
"latitude": 33.19762,
"longitude": -96.61527,
"name": "McKinney",
@@ -30783,7 +27813,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1314759,
"latitude": 22.93333,
"longitude": 97.75,
"name": "Lashio",
@@ -30793,7 +27822,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259686,
"latitude": 28.63333,
"longitude": 79.8,
"name": "P\u012bl\u012bbh\u012bt",
@@ -30803,7 +27831,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856775,
"latitude": 31.73333,
"longitude": 131.06667,
"name": "Miyakonoj\u014d",
@@ -30813,7 +27840,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3177090,
"latitude": 44.82678,
"longitude": 11.62071,
"name": "Ferrara",
@@ -30823,7 +27849,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 518557,
"latitude": 54.0105,
"longitude": 38.2846,
"name": "Novomoskovsk",
@@ -30833,7 +27858,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 683123,
"latitude": 45.15,
"longitude": 26.83333,
"name": "Buz\u0103u",
@@ -30843,7 +27867,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448031,
"latitude": -29.83333,
"longitude": -51.15,
"name": "Sapucaia",
@@ -30853,7 +27876,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857568,
"latitude": 34.56667,
"longitude": 135.55,
"name": "Matsubara",
@@ -30863,7 +27885,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 623549,
"latitude": 52.1229,
"longitude": 26.0951,
"name": "Pinsk",
@@ -30873,7 +27894,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276634,
"latitude": 26.10119,
"longitude": 74.32028,
"name": "Be\u0101war",
@@ -30883,7 +27903,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1813325,
"latitude": 31.21592,
"longitude": 107.50092,
"name": "Dazhou",
@@ -30893,7 +27912,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 174018,
"latitude": 36.36994,
"longitude": 37.51788,
"name": "Al B\u0101b",
@@ -30903,7 +27921,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034834,
"latitude": 45.35,
"longitude": 126.28333,
"name": "Shuangcheng",
@@ -30913,7 +27930,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861436,
"latitude": 36.31667,
"longitude": 139.2,
"name": "Isesaki",
@@ -30923,7 +27939,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005937,
"latitude": 25.66667,
"longitude": -100.4,
"name": "Garza Garc\u00eda",
@@ -30933,7 +27948,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279403,
"latitude": 30.15,
"longitude": 74.18333,
"name": "Abohar",
@@ -30943,7 +27957,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3100796,
"latitude": 50.31818,
"longitude": 19.2374,
"name": "D\u0105browa G\u00f3rnicza",
@@ -30953,7 +27966,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 594739,
"latitude": 55.93333,
"longitude": 23.31667,
"name": "\u0160iauliai",
@@ -30963,7 +27975,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262951,
"latitude": 30.8,
"longitude": 75.16667,
"name": "Moga",
@@ -30973,7 +27984,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 700051,
"latitude": 47.57119,
"longitude": 34.39637,
"name": "Nikopol\u2019",
@@ -30983,7 +27993,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1791056,
"latitude": 29.26778,
"longitude": 120.22528,
"name": "Dongyang",
@@ -30993,7 +28002,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3675657,
"latitude": 11.38321,
"longitude": -72.24321,
"name": "Maicao",
@@ -31003,7 +28011,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3682426,
"latitude": 1.61438,
"longitude": -75.60623,
"name": "Florencia",
@@ -31013,7 +28020,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 282615,
"latitude": 32.22111,
"longitude": 35.25444,
"name": "Nablus",
@@ -31023,9 +28029,8 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1805935,
- "latitude": 22.87791,
- "longitude": 116.06705,
+ "latitude": 22.87932,
+ "longitude": 116.07318,
"name": "Jiazi",
"population": 130298
},
@@ -31033,7 +28038,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682028,
"latitude": 4.29866,
"longitude": -74.80468,
"name": "Girardot",
@@ -31043,7 +28047,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3874096,
"latitude": -33.045,
"longitude": -71.44944,
"name": "Quilpu\u00e9",
@@ -31052,8 +28055,7 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPLA3",
- "geonameid": 1794035,
+ "feature_code": "PPL",
"latitude": 31.03595,
"longitude": 121.2146,
"name": "Songjiang",
@@ -31063,7 +28065,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3608248,
"latitude": 15.75971,
"longitude": -86.78221,
"name": "La Ceiba",
@@ -31073,7 +28074,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460102,
"latitude": -26.48611,
"longitude": -49.06667,
"name": "Jaragu\u00e1 do Sul",
@@ -31083,7 +28083,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 367644,
"latitude": 13.56907,
"longitude": 33.56718,
"name": "Sinnar",
@@ -31093,7 +28092,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3617723,
"latitude": 11.97444,
"longitude": -86.09417,
"name": "Masaya",
@@ -31103,7 +28101,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2487134,
"latitude": 35.93115,
"longitude": 0.08918,
"name": "Mostaganem",
@@ -31113,7 +28110,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2212775,
"latitude": 27.03766,
"longitude": 14.42832,
"name": "Sabh\u0101",
@@ -31123,7 +28119,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3082914,
"latitude": 50.13717,
"longitude": 18.96641,
"name": "Tychy",
@@ -31133,7 +28128,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 691999,
"latitude": 48.94832,
"longitude": 38.49166,
"name": "Syeverodonets\u2019k",
@@ -31143,7 +28137,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273309,
"latitude": 24.86667,
"longitude": 84.18333,
"name": "Dehri",
@@ -31153,7 +28146,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791325,
"latitude": 39.49944,
"longitude": 106.71167,
"name": "Wuda",
@@ -31163,7 +28155,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214882,
"latitude": 2.9845,
"longitude": 99.6158,
"name": "Kisaran",
@@ -31173,7 +28164,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841598,
"latitude": 35.82333,
"longitude": 128.73778,
"name": "Keizan",
@@ -31183,7 +28173,6 @@
"country_code": "US",
"elevation": 37,
"feature_code": "PPL",
- "geonameid": 4709796,
"latitude": 26.20341,
"longitude": -98.23001,
"name": "McAllen",
@@ -31193,7 +28182,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 64536,
"latitude": 3.11383,
"longitude": 43.6498,
"name": "Baydhabo",
@@ -31203,7 +28191,6 @@
"country_code": "US",
"elevation": 18,
"feature_code": "PPL",
- "geonameid": 4839366,
"latitude": 41.30815,
"longitude": -72.92816,
"name": "New Haven",
@@ -31213,7 +28200,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1171123,
"latitude": 32.58339,
"longitude": 73.48432,
"name": "Mandi Bah\u0101udd\u012bn",
@@ -31223,7 +28209,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1513131,
"latitude": 40.08444,
"longitude": 65.37917,
"name": "Navoiy",
@@ -31233,7 +28218,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 738743,
"latitude": 40.31389,
"longitude": 36.55444,
"name": "Tokat",
@@ -31243,7 +28227,6 @@
"country_code": "US",
"elevation": 187,
"feature_code": "PPL",
- "geonameid": 5011148,
"latitude": 42.58031,
"longitude": -83.0302,
"name": "Sterling Heights",
@@ -31253,7 +28236,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2388873,
"latitude": 4.25671,
"longitude": 18.41583,
"name": "Bimbo",
@@ -31263,7 +28245,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864416,
"latitude": 34.7,
"longitude": 135.61667,
"name": "Dait\u014d",
@@ -31273,7 +28254,6 @@
"country_code": "US",
"elevation": 1312,
"feature_code": "PPL",
- "geonameid": 5784607,
"latitude": 40.69161,
"longitude": -112.00105,
"name": "West Valley City",
@@ -31283,7 +28263,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6146143,
"latitude": 45.40008,
"longitude": -71.89908,
"name": "Sherbrooke",
@@ -31293,7 +28272,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2485801,
"latitude": 31.94932,
"longitude": 5.32502,
"name": "Ouargla",
@@ -31303,7 +28281,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846986,
"latitude": 36.56556,
"longitude": 128.725,
"name": "Andong",
@@ -31313,7 +28290,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1026014,
"latitude": -16.15639,
"longitude": 33.58667,
"name": "Tete",
@@ -31323,7 +28299,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3893656,
"latitude": -27.36667,
"longitude": -70.33333,
"name": "Copiap\u00f3",
@@ -31333,7 +28308,6 @@
"country_code": "US",
"elevation": 89,
"feature_code": "PPLA",
- "geonameid": 4575352,
"latitude": 34.00071,
"longitude": -81.03481,
"name": "Columbia",
@@ -31343,9 +28317,8 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2541479,
- "latitude": 35.17404,
- "longitude": -2.92866,
+ "latitude": 35.16813,
+ "longitude": -2.93352,
"name": "Nador",
"population": 129260
},
@@ -31353,7 +28326,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358840,
"latitude": 30.42039,
"longitude": 31.56223,
"name": "Bilbays",
@@ -31363,7 +28335,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3645854,
"latitude": 10.24247,
"longitude": -66.85723,
"name": "Charallave",
@@ -31373,7 +28344,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 115770,
"latitude": 32.32556,
"longitude": 50.86444,
"name": "Shahr-e Kord",
@@ -31383,7 +28353,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2849483,
"latitude": 49.015,
"longitude": 12.09556,
"name": "Regensburg",
@@ -31393,7 +28362,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857046,
"latitude": 34.82691,
"longitude": 135.47057,
"name": "Mino",
@@ -31403,7 +28371,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1804208,
"latitude": 26.40238,
"longitude": 112.85908,
"name": "Leiyang",
@@ -31413,7 +28380,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253952,
"latitude": 13.33467,
"longitude": 74.74617,
"name": "Udipi",
@@ -31423,17 +28389,15 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1721168,
- "latitude": 10.95056,
- "longitude": 123.28556,
- "name": "Cadiz Viejo",
+ "latitude": 10.9465,
+ "longitude": 123.288,
+ "name": "Cadiz",
"population": 129053
},
{
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3519537,
"latitude": 16.75,
"longitude": -92.63333,
"name": "San Crist\u00f3bal de Las Casas",
@@ -31443,7 +28407,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 295548,
"latitude": 32.02306,
"longitude": 34.75028,
"name": "Bat Yam",
@@ -31453,7 +28416,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185111,
"latitude": 22.71667,
"longitude": 89.1,
"name": "S\u0101tkhira",
@@ -31463,7 +28425,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3630932,
"latitude": 10.17389,
"longitude": -67.54194,
"name": "Palo Negro",
@@ -31473,7 +28434,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3457000,
"latitude": -22.37222,
"longitude": -46.94222,
"name": "Mogi Gua\u00e7u",
@@ -31483,7 +28443,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 361546,
"latitude": 31.13159,
"longitude": 33.79844,
"name": "Al \u2018Ar\u012bsh",
@@ -31493,7 +28452,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 169389,
"latitude": 35.93062,
"longitude": 36.63393,
"name": "Idlib",
@@ -31503,9 +28461,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 90708,
- "latitude": 36.80902,
- "longitude": 43.03886,
+ "latitude": 36.80752,
+ "longitude": 43.03831,
"name": "S\u012bnah",
"population": 128776
},
@@ -31513,7 +28470,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 258576,
"latitude": 39.63722,
"longitude": 22.42028,
"name": "L\u00e1risa",
@@ -31523,7 +28479,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2648404,
"latitude": 51.86568,
"longitude": -2.2431,
"name": "Gloucester",
@@ -31533,7 +28488,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3169361,
"latitude": 44.06333,
"longitude": 12.58083,
"name": "Rimini",
@@ -31543,7 +28497,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 553287,
"latitude": 50.09833,
"longitude": 45.41601,
"name": "Kamyshin",
@@ -31553,7 +28506,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 643492,
"latitude": 65.01236,
"longitude": 25.46816,
"name": "Oulu",
@@ -31563,7 +28515,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270239,
"latitude": 13.00056,
"longitude": 76.09944,
"name": "Hassan",
@@ -31573,7 +28524,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2653941,
"latitude": 52.2,
"longitude": 0.11667,
"name": "Cambridge",
@@ -31583,7 +28533,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 518976,
"latitude": 56.11095,
"longitude": 47.47755,
"name": "Novocheboksarsk",
@@ -31593,7 +28542,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3033123,
"latitude": 47.24878,
"longitude": 6.01815,
"name": "Besan\u00e7on",
@@ -31603,7 +28551,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2498392,
"latitude": 36.15281,
"longitude": 5.69016,
"name": "El Eulma",
@@ -31613,7 +28560,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266945,
"latitude": 22.71861,
"longitude": 88.37806,
"name": "Khardah",
@@ -31623,7 +28569,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 102527,
"latitude": 29.96974,
"longitude": 40.20641,
"name": "Sak\u0101k\u0101",
@@ -31633,7 +28578,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 333772,
"latitude": 7.66667,
"longitude": 36.83333,
"name": "J\u012bma",
@@ -31643,7 +28587,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 379149,
"latitude": 14.2459,
"longitude": 32.9891,
"name": "Al Man\u0101qil",
@@ -31653,7 +28596,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1990589,
"latitude": -6.09889,
"longitude": 106.63806,
"name": "Teluknaga",
@@ -31663,7 +28605,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3052009,
"latitude": 47.68333,
"longitude": 17.63512,
"name": "Gy\u0151r",
@@ -31673,7 +28614,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 355026,
"latitude": 26.33826,
"longitude": 31.89161,
"name": "Jirj\u0101",
@@ -31683,7 +28623,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3547867,
"latitude": 20.34333,
"longitude": -77.11667,
"name": "Manzanillo",
@@ -31693,7 +28632,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252770,
"latitude": 20.4,
"longitude": 78.13333,
"name": "Yavatm\u0101l",
@@ -31703,7 +28641,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270484,
"latitude": 22.94972,
"longitude": 88.41944,
"name": "H\u0101l\u012bsahar",
@@ -31713,7 +28650,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 496527,
"latitude": 54.91578,
"longitude": 37.41114,
"name": "Serpukhov",
@@ -31723,7 +28659,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2210554,
"latitude": 31.20892,
"longitude": 16.58866,
"name": "Surt",
@@ -31733,7 +28668,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 293788,
"latitude": 32.08056,
"longitude": 34.81417,
"name": "Ramat Gan",
@@ -31743,7 +28677,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907299,
"latitude": 35.80472,
"longitude": 139.60194,
"name": "Asaka",
@@ -31753,7 +28686,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260434,
"latitude": 18.98333,
"longitude": 73.1,
"name": "Panvel",
@@ -31763,7 +28695,6 @@
"country_code": "US",
"elevation": 252,
"feature_code": "PPL",
- "geonameid": 4703223,
"latitude": 31.11712,
"longitude": -97.7278,
"name": "Killeen",
@@ -31773,7 +28704,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732869,
"latitude": 2.0442,
"longitude": 102.5689,
"name": "Muar",
@@ -31783,7 +28713,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2289887,
"latitude": 5.83739,
"longitude": -5.35723,
"name": "Divo",
@@ -31793,7 +28722,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1622636,
"latitude": -7.13972,
"longitude": 110.405,
"name": "Ungaran",
@@ -31803,7 +28731,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788081,
"latitude": 30.9525,
"longitude": 118.75528,
"name": "Xuanzhou",
@@ -31813,7 +28740,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254309,
"latitude": 22.73639,
"longitude": 88.37361,
"name": "Tit\u0101garh",
@@ -31823,7 +28749,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3836846,
"latitude": -33.33578,
"longitude": -60.22523,
"name": "San Nicol\u00e1s de los Arroyos",
@@ -31833,7 +28758,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2666199,
"latitude": 59.8585,
"longitude": 17.64543,
"name": "Uppsala",
@@ -31843,7 +28767,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858067,
"latitude": 35.01667,
"longitude": 135.96667,
"name": "Kusatsu",
@@ -31853,7 +28776,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3090048,
"latitude": 50.66667,
"longitude": 17.95,
"name": "Opole",
@@ -31863,7 +28785,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3359041,
"latitude": -33.64651,
"longitude": 19.44852,
"name": "Worcester",
@@ -31873,7 +28794,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3099759,
"latitude": 54.1522,
"longitude": 19.40884,
"name": "Elblag",
@@ -31883,7 +28803,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2482572,
"latitude": 34.83034,
"longitude": 0.15171,
"name": "Sa\u00efda",
@@ -31893,7 +28812,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185115,
"latitude": 24.45,
"longitude": 89.71667,
"name": "Sir\u0101jganj",
@@ -31903,7 +28821,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3459943,
"latitude": -13.8575,
"longitude": -40.08361,
"name": "Jequi\u00e9",
@@ -31913,7 +28830,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3088825,
"latitude": 52.54682,
"longitude": 19.70638,
"name": "P\u0142ock",
@@ -31923,7 +28839,6 @@
"country_code": "US",
"elevation": 288,
"feature_code": "PPLA",
- "geonameid": 4280539,
"latitude": 39.04833,
"longitude": -95.67804,
"name": "Topeka",
@@ -31933,7 +28848,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3082707,
"latitude": 50.77141,
"longitude": 16.28432,
"name": "Wa\u0142brzych",
@@ -31943,7 +28857,6 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 363885,
"latitude": 7.70286,
"longitude": 27.9953,
"name": "Wau",
@@ -31953,7 +28866,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1024552,
"latitude": -25.05194,
"longitude": 33.64417,
"name": "Xai-Xai",
@@ -31963,7 +28875,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807689,
"latitude": 27.54944,
"longitude": 109.95917,
"name": "Huaihua",
@@ -31973,7 +28884,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2350249,
"latitude": 5.78917,
"longitude": 7.83829,
"name": "Amaigbo",
@@ -31983,7 +28893,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2332515,
"latitude": 8.48333,
"longitude": 8.51667,
"name": "Lafia",
@@ -31993,7 +28902,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4013516,
"latitude": 19.23333,
"longitude": -103.71667,
"name": "Colima",
@@ -32003,7 +28911,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1885823,
"latitude": 31.76667,
"longitude": 104.71667,
"name": "Jiangyou",
@@ -32013,7 +28920,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1163965,
"latitude": 25.46263,
"longitude": 68.71923,
"name": "Tando All\u0101hy\u0101r",
@@ -32023,7 +28929,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1150515,
"latitude": 9.14011,
"longitude": 99.33311,
"name": "Surat Thani",
@@ -32033,7 +28938,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3616035,
"latitude": 12.19732,
"longitude": -86.09706,
"name": "Tipitapa",
@@ -32043,7 +28947,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 215771,
"latitude": 2.77391,
"longitude": 27.61603,
"name": "Isiro",
@@ -32053,7 +28956,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3540667,
"latitude": 21.92972,
"longitude": -79.4425,
"name": "Sancti Sp\u00edritus",
@@ -32063,7 +28965,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273800,
"latitude": 14.46667,
"longitude": 78.81667,
"name": "Cuddapah",
@@ -32073,7 +28974,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276393,
"latitude": 26.8,
"longitude": 84.5,
"name": "Bettiah",
@@ -32083,7 +28983,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1514581,
"latitude": 41.01667,
"longitude": 70.14361,
"name": "Angren",
@@ -32093,7 +28992,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1302439,
"latitude": 21.33333,
"longitude": 95.1,
"name": "Pakokku",
@@ -32103,7 +29001,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 524294,
"latitude": 55.575,
"longitude": 42.0426,
"name": "Murom",
@@ -32113,7 +29010,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1180436,
"latitude": 32.32426,
"longitude": 74.34974,
"name": "Daska",
@@ -32123,7 +29019,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630058,
"latitude": -6.3591,
"longitude": 106.2494,
"name": "Rangkasbitung",
@@ -32133,7 +29028,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270216,
"latitude": 27.6,
"longitude": 78.05,
"name": "H\u0101thras",
@@ -32143,7 +29037,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1639900,
"latitude": -7.70583,
"longitude": 110.60639,
"name": "Klaten",
@@ -32153,7 +29046,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 550478,
"latitude": 43.2509,
"longitude": 46.58766,
"name": "Khasavyurt",
@@ -32163,9 +29055,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 522942,
- "latitude": 56.09199,
- "longitude": 54.27032,
+ "latitude": 56.092,
+ "longitude": 54.2661,
"name": "Neftekamsk",
"population": 126805
},
@@ -32173,7 +29064,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1789647,
"latitude": 27.89642,
"longitude": 102.26342,
"name": "Xichang",
@@ -32183,7 +29073,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2520600,
"latitude": 36.53361,
"longitude": -6.29944,
"name": "Cadiz",
@@ -32193,7 +29082,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1168555,
"latitude": 30.34104,
"longitude": 73.38664,
"name": "P\u0101kpattan",
@@ -32203,7 +29091,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1813812,
"latitude": 22.7984,
"longitude": 114.46716,
"name": "Danshui",
@@ -32213,7 +29100,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1332083,
"latitude": 30.55083,
"longitude": 73.39083,
"name": "Bah\u0101walnagar",
@@ -32223,7 +29109,6 @@
"country_code": "US",
"elevation": 270,
"feature_code": "PPL",
- "geonameid": 5402405,
"latitude": 34.17056,
"longitude": -118.83759,
"name": "Thousand Oaks",
@@ -32233,7 +29118,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1183883,
"latitude": 29.99866,
"longitude": 73.2536,
"name": "Bah\u0101walnagar",
@@ -32243,7 +29127,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849429,
"latitude": 36.4,
"longitude": 138.26667,
"name": "Ueda",
@@ -32253,7 +29136,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3667873,
"latitude": 5.71434,
"longitude": -72.93391,
"name": "Sogamoso",
@@ -32263,7 +29145,6 @@
"country_code": "US",
"elevation": 61,
"feature_code": "PPL",
- "geonameid": 5344994,
"latitude": 34.0239,
"longitude": -118.17202,
"name": "East Los Angeles",
@@ -32273,7 +29154,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265157,
"latitude": 24.68333,
"longitude": 78.41667,
"name": "Lalitpur",
@@ -32283,7 +29163,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 747712,
"latitude": 41.67719,
"longitude": 26.55597,
"name": "Edirne",
@@ -32293,7 +29172,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1642414,
"latitude": -7.54595,
"longitude": 112.23307,
"name": "Jombang",
@@ -32303,7 +29181,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 877401,
"latitude": -10.68333,
"longitude": 35.65,
"name": "Songea",
@@ -32313,7 +29190,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266305,
"latitude": 13.13333,
"longitude": 78.13333,
"name": "Kol\u0101r",
@@ -32323,7 +29199,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6325521,
"latitude": 46.80326,
"longitude": -71.17793,
"name": "L\u00e9vis",
@@ -32333,7 +29208,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3620381,
"latitude": 12.62937,
"longitude": -87.13105,
"name": "Chinandega",
@@ -32343,7 +29217,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2219960,
"latitude": 27.05,
"longitude": 14.4,
"name": "Al Jad\u012bd",
@@ -32353,7 +29226,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437863,
"latitude": -25.34682,
"longitude": -57.60647,
"name": "Lambar\u00e9",
@@ -32363,7 +29235,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801582,
"latitude": 31.17833,
"longitude": 115.03194,
"name": "Macheng",
@@ -32373,7 +29244,6 @@
"country_code": "US",
"elevation": 247,
"feature_code": "PPLA2",
- "geonameid": 4850751,
"latitude": 42.00833,
"longitude": -91.64407,
"name": "Cedar Rapids",
@@ -32383,7 +29253,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 281102,
"latitude": 31.287,
"longitude": 34.25952,
"name": "Rafa\u1e29",
@@ -32393,7 +29262,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460728,
"latitude": -23.59167,
"longitude": -48.05306,
"name": "Itapetininga",
@@ -32403,7 +29271,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454783,
"latitude": -18.57889,
"longitude": -46.51806,
"name": "Patos de Minas",
@@ -32413,7 +29280,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632197,
"latitude": -7.1026,
"longitude": 107.7641,
"name": "Paseh",
@@ -32423,7 +29289,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632654,
"latitude": -2.13333,
"longitude": 106.13333,
"name": "Pangkalpinang",
@@ -32433,7 +29298,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1806881,
"latitude": 23.03845,
"longitude": 116.28988,
"name": "Huicheng",
@@ -32443,7 +29307,6 @@
"country_code": "US",
"elevation": 315,
"feature_code": "PPLA2",
- "geonameid": 4276614,
"latitude": 38.8814,
"longitude": -94.81913,
"name": "Olathe",
@@ -32453,7 +29316,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2341656,
"latitude": 12.871,
"longitude": 11.0482,
"name": "Gashua",
@@ -32463,7 +29325,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3728097,
"latitude": 18.2,
"longitude": -73.75,
"name": "Les Cayes",
@@ -32473,7 +29334,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2634677,
"latitude": 51.65531,
"longitude": -0.39602,
"name": "Watford",
@@ -32483,7 +29343,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789703,
"latitude": 34.80222,
"longitude": 117.11167,
"name": "Xiazhen",
@@ -32493,7 +29352,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 112646,
"latitude": 35.27401,
"longitude": 59.21949,
"name": "Torbat-e \u1e28eydar\u012byeh",
@@ -32503,7 +29361,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1163967,
"latitude": 25.76374,
"longitude": 68.66098,
"name": "Tando \u0100dam",
@@ -32513,7 +29370,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 250799,
"latitude": 32.33385,
"longitude": 35.75238,
"name": "\u2018Ajl\u016bn",
@@ -32523,7 +29379,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626542,
"latitude": -0.88333,
"longitude": 131.25,
"name": "Sorong",
@@ -32533,7 +29388,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1708522,
"latitude": 6.50306,
"longitude": 124.84694,
"name": "Koronadal",
@@ -32543,7 +29397,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1894616,
"latitude": 26.33583,
"longitude": 127.80139,
"name": "Okinawa",
@@ -32553,7 +29406,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624863,
"latitude": 0.91667,
"longitude": 104.45,
"name": "Tanjungpinang",
@@ -32563,7 +29415,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3882428,
"latitude": -37.46667,
"longitude": -72.35,
"name": "Los \u00c1ngeles",
@@ -32573,19 +29424,17 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1809062,
- "latitude": 23.19349,
- "longitude": 116.61422,
+ "latitude": 23.19346,
+ "longitude": 116.61219,
"name": "Haimen",
"population": 125427
},
{
"country_code": "BY",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 624079,
- "latitude": 54.5116,
- "longitude": 30.42658,
+ "feature_code": "PPLA2",
+ "latitude": 54.5081,
+ "longitude": 30.4172,
"name": "Orsha",
"population": 125347
},
@@ -32593,7 +29442,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1796421,
"latitude": 36.93833,
"longitude": 114.50583,
"name": "Shahecheng",
@@ -32603,7 +29451,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5990579,
"latitude": 49.88307,
"longitude": -119.48568,
"name": "Kelowna",
@@ -32613,7 +29460,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3469092,
"latitude": -22.95194,
"longitude": -46.54194,
"name": "Bragan\u00e7a Paulista",
@@ -32623,7 +29469,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2395049,
"latitude": 7.17826,
"longitude": 2.0667,
"name": "Bohicon",
@@ -32633,7 +29478,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864750,
"latitude": 33.27361,
"longitude": 131.49194,
"name": "Beppu",
@@ -32643,7 +29487,6 @@
"country_code": "CW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3513090,
"latitude": 12.1084,
"longitude": -68.93354,
"name": "Willemstad",
@@ -32653,7 +29496,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618605,
"latitude": 47.76167,
"longitude": 27.92889,
"name": "B\u0103l\u0163i",
@@ -32663,7 +29505,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263834,
"latitude": 24.06667,
"longitude": 75.06667,
"name": "Mandsaur",
@@ -32673,7 +29514,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 5097598,
"latitude": 40.66399,
"longitude": -74.2107,
"name": "Elizabeth",
@@ -32683,7 +29523,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1963770,
"latitude": -6.83778,
"longitude": 107.47278,
"name": "Padalarang",
@@ -32693,7 +29532,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1793900,
"latitude": 30.50802,
"longitude": 105.57332,
"name": "Suining",
@@ -32703,7 +29541,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3979802,
"latitude": 19.98333,
"longitude": -102.26667,
"name": "Zamora de Hidalgo",
@@ -32713,7 +29550,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270990,
"latitude": 21.45,
"longitude": 80.2,
"name": "Gondia",
@@ -32723,7 +29559,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3827414,
"latitude": 19.36028,
"longitude": -99.35139,
"name": "Huixquilucan",
@@ -32733,7 +29568,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 116402,
"latitude": 35.57291,
"longitude": 53.39714,
"name": "Semn\u0101n",
@@ -32743,7 +29577,6 @@
"country_code": "US",
"elevation": 143,
"feature_code": "PPLA2",
- "geonameid": 4739526,
"latitude": 31.54933,
"longitude": -97.14667,
"name": "Waco",
@@ -32753,7 +29586,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 693468,
"latitude": 48.86667,
"longitude": 37.61667,
"name": "Sloviansk",
@@ -32763,7 +29595,6 @@
"country_code": "US",
"elevation": 18,
"feature_code": "PPLA",
- "geonameid": 4835797,
"latitude": 41.76371,
"longitude": -72.68509,
"name": "Hartford",
@@ -32773,7 +29604,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3493146,
"latitude": 19.29518,
"longitude": -70.25543,
"name": "San Francisco de Macor\u00eds",
@@ -32783,7 +29613,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033242,
"latitude": 44.8,
"longitude": 126.53333,
"name": "Yushu",
@@ -32793,7 +29622,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3584257,
"latitude": 13.67694,
"longitude": -89.27972,
"name": "Santa Tecla",
@@ -32803,7 +29631,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857496,
"latitude": 34.56667,
"longitude": 136.53333,
"name": "Matsuzaka",
@@ -32813,7 +29640,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1162004,
"latitude": 27.52948,
"longitude": 68.7617,
"name": "Khairpur",
@@ -32823,7 +29649,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859951,
"latitude": 34.50896,
"longitude": 135.7929,
"name": "Kashihara-shi",
@@ -32833,7 +29658,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3652350,
"latitude": -1.66667,
"longitude": -78.63333,
"name": "Riobamba",
@@ -32843,9 +29667,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1522203,
- "latitude": 53.2775,
- "longitude": 69.38833,
+ "latitude": 53.28244,
+ "longitude": 69.39692,
"name": "Kokshetau",
"population": 124444
},
@@ -32853,7 +29676,6 @@
"country_code": "US",
"elevation": 101,
"feature_code": "PPLA2",
- "geonameid": 5406567,
"latitude": 36.33023,
"longitude": -119.29206,
"name": "Visalia",
@@ -32863,7 +29685,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3098722,
"latitude": 52.73679,
"longitude": 15.22878,
"name": "Gorz\u00f3w Wielkopolski",
@@ -32873,7 +29694,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3386361,
"latitude": -5.09417,
"longitude": -42.83667,
"name": "Timon",
@@ -32883,7 +29703,6 @@
"country_code": "US",
"elevation": 54,
"feature_code": "PPLA2",
- "geonameid": 4156404,
"latitude": 29.65163,
"longitude": -82.32483,
"name": "Gainesville",
@@ -32892,10 +29711,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1804252,
- "latitude": 25.12383,
- "longitude": 113.32542,
+ "feature_code": "PPLA4",
+ "latitude": 25.11371,
+ "longitude": 113.35408,
"name": "Lecheng",
"population": 124268
},
@@ -32903,7 +29721,6 @@
"country_code": "US",
"elevation": 234,
"feature_code": "PPL",
- "geonameid": 5396003,
"latitude": 34.26945,
"longitude": -118.78148,
"name": "Simi Valley",
@@ -32913,7 +29730,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448632,
"latitude": -25.53472,
"longitude": -49.20639,
"name": "S\u00e3o Jos\u00e9 dos Pinhais",
@@ -32923,7 +29739,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 124862,
"latitude": 38.4329,
"longitude": 45.7749,
"name": "Marand",
@@ -32933,7 +29748,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258916,
"latitude": 9.45296,
"longitude": 77.55335,
"name": "Rajapalaiyam",
@@ -32943,7 +29757,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2989317,
"latitude": 47.90289,
"longitude": 1.90389,
"name": "Orl\u00e9ans",
@@ -32953,7 +29766,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804591,
"latitude": 36.19278,
"longitude": 117.65694,
"name": "Laiwu",
@@ -32963,7 +29775,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 958724,
"latitude": -25.66756,
"longitude": 27.24208,
"name": "Rustenburg",
@@ -32973,9 +29784,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1519843,
- "latitude": 52.95944,
- "longitude": 63.12056,
+ "latitude": 52.9729,
+ "longitude": 63.11677,
"name": "Rudnyy",
"population": 124000
},
@@ -32983,7 +29793,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446606,
"latitude": -22.41222,
"longitude": -42.96556,
"name": "Teres\u00f3polis",
@@ -32993,7 +29802,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2994160,
"latitude": 49.11911,
"longitude": 6.17269,
"name": "Metz",
@@ -33003,7 +29811,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036403,
"latitude": 41.06667,
"longitude": 122.95,
"name": "Jiupu",
@@ -33013,7 +29820,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273467,
"latitude": 27.03333,
"longitude": 88.26667,
"name": "D\u0101rjiling",
@@ -33023,7 +29829,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038438,
"latitude": 46.55861,
"longitude": 131.42444,
"name": "Baoshan",
@@ -33033,7 +29838,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3493240,
"latitude": 18.61501,
"longitude": -68.70798,
"name": "Salvale\u00f3n de Hig\u00fcey",
@@ -33043,7 +29847,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 965289,
"latitude": -23.90448,
"longitude": 29.46885,
"name": "Polokwane",
@@ -33053,7 +29856,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1292288,
"latitude": 16.92056,
"longitude": 97.37139,
"name": "Thaton",
@@ -33063,7 +29865,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284842,
"latitude": 47.54157,
"longitude": 19.04501,
"name": "Budapest III. ker\u00fclet",
@@ -33073,7 +29874,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 964349,
"latitude": -26.71667,
"longitude": 27.1,
"name": "Potchefstroom",
@@ -33083,7 +29883,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2523083,
"latitude": 37.08515,
"longitude": 15.273,
"name": "Siracusa",
@@ -33093,7 +29892,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1647149,
"latitude": -7.3257,
"longitude": 108.3534,
"name": "Ciamis",
@@ -33103,7 +29901,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1637090,
"latitude": -8.1335,
"longitude": 113.2248,
"name": "Lumajang",
@@ -33113,7 +29910,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2495662,
"latitude": 36.46214,
"longitude": 7.42608,
"name": "Guelma",
@@ -33123,7 +29919,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1711982,
"latitude": 14.8321,
"longitude": 120.7336,
"name": "Hagunoy",
@@ -33133,7 +29928,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6992326,
"latitude": 30.67995,
"longitude": 76.72211,
"name": "Mohali",
@@ -33143,7 +29937,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445679,
"latitude": -29.75472,
"longitude": -57.08833,
"name": "Uruguaiana",
@@ -33153,7 +29946,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1613769,
"latitude": 14.02775,
"longitude": 100.75603,
"name": "Ban Rangsit",
@@ -33163,7 +29955,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260777,
"latitude": 24.16667,
"longitude": 72.43333,
"name": "P\u0101lanpur",
@@ -33173,7 +29964,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1643078,
"latitude": -6.32639,
"longitude": 108.32,
"name": "Indramayu",
@@ -33183,7 +29973,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1085510,
"latitude": -17.89,
"longitude": 31.1475,
"name": "Epworth",
@@ -33193,7 +29982,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503661,
"latitude": 36.74871,
"longitude": 3.19248,
"name": "Bordj el Kiffan",
@@ -33203,7 +29991,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2288829,
"latitude": 6.13193,
"longitude": -5.9506,
"name": "Gagnoa",
@@ -33213,7 +30000,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3452640,
"latitude": -16.44972,
"longitude": -39.06472,
"name": "Porto Seguro",
@@ -33223,7 +30009,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1801799,
"latitude": 23.16244,
"longitude": 114.27342,
"name": "Luoyang",
@@ -33233,7 +30018,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2806654,
"latitude": 52.43333,
"longitude": 10.8,
"name": "Wolfsburg",
@@ -33243,7 +30027,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855425,
"latitude": 33.95933,
"longitude": 133.31672,
"name": "Niihama",
@@ -33253,7 +30036,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036536,
"latitude": 43.72861,
"longitude": 127.34472,
"name": "Jiaohe",
@@ -33263,7 +30045,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2518794,
"latitude": 37.28287,
"longitude": -5.92088,
"name": "Dos Hermanas",
@@ -33273,7 +30054,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1631992,
"latitude": -6.7559,
"longitude": 111.038,
"name": "Pati",
@@ -33283,7 +30063,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272243,
"latitude": 22.62222,
"longitude": 88.41694,
"name": "Dam Dam",
@@ -33293,7 +30072,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3472766,
"latitude": -12.13556,
"longitude": -38.41917,
"name": "Alagoinhas",
@@ -33303,9 +30081,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 98245,
- "latitude": 30.39447,
- "longitude": 47.70114,
+ "latitude": 30.39213,
+ "longitude": 47.70174,
"name": "Az Zubayr",
"population": 122676
},
@@ -33313,7 +30090,6 @@
"country_code": "US",
"elevation": 7,
"feature_code": "PPL",
- "geonameid": 4843564,
"latitude": 41.05343,
"longitude": -73.53873,
"name": "Stamford",
@@ -33323,7 +30099,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270370,
"latitude": 27.41667,
"longitude": 80.11667,
"name": "Hardo\u012b",
@@ -33333,7 +30108,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807112,
"latitude": 30.45,
"longitude": 114.8,
"name": "Huangzhou",
@@ -33343,7 +30117,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259163,
"latitude": 23.33333,
"longitude": 86.36667,
"name": "Puruliya",
@@ -33353,7 +30126,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1605245,
"latitude": 15.23844,
"longitude": 104.84866,
"name": "Ubon Ratchathani",
@@ -33363,7 +30135,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859393,
"latitude": 35.37472,
"longitude": 139.9225,
"name": "Kisarazu",
@@ -33373,7 +30144,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 943882,
"latitude": -28.10391,
"longitude": 26.86593,
"name": "Virginia",
@@ -33383,7 +30153,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1015621,
"latitude": -25.63473,
"longitude": 27.78022,
"name": "Brits",
@@ -33393,7 +30162,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6947640,
"latitude": 40.982,
"longitude": 28.6399,
"name": "Beylikd\u00fcz\u00fc",
@@ -33403,7 +30171,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2849647,
"latitude": 51.61667,
"longitude": 7.2,
"name": "Recklinghausen",
@@ -33413,7 +30180,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3455478,
"latitude": -27.64528,
"longitude": -48.66778,
"name": "Palho\u00e7a",
@@ -33423,7 +30189,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788268,
"latitude": 29.71667,
"longitude": 112.4,
"name": "Xiulin",
@@ -33433,7 +30198,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784178,
"latitude": 36.81667,
"longitude": 117.81667,
"name": "Zhoucun",
@@ -33443,7 +30207,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1280957,
"latitude": 39.81667,
"longitude": 98.3,
"name": "Jiayuguan",
@@ -33453,17 +30216,24 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2751283,
"latitude": 50.84833,
"longitude": 5.68889,
"name": "Maastricht",
"population": 122378
},
+ {
+ "country_code": "US",
+ "elevation": 182,
+ "feature_code": "PPL",
+ "latitude": 42.97839,
+ "longitude": -78.79976,
+ "name": "Amherst",
+ "population": 122366
+ },
{
"country_code": "US",
"elevation": 26,
"feature_code": "PPL",
- "geonameid": 5786882,
"latitude": 47.61038,
"longitude": -122.20068,
"name": "Bellevue",
@@ -33473,7 +30243,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1574023,
"latitude": 10.35,
"longitude": 106.35,
"name": "M\u1ef9 Tho",
@@ -33483,7 +30252,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 738927,
"latitude": 40.97801,
"longitude": 27.50852,
"name": "Tekirda\u011f",
@@ -33493,7 +30261,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2624886,
"latitude": 57.048,
"longitude": 9.9187,
"name": "Aalborg",
@@ -33503,7 +30270,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470858,
"latitude": -21.22583,
"longitude": -43.77361,
"name": "Barbacena",
@@ -33513,7 +30279,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1181073,
"latitude": 29.8,
"longitude": 72.86667,
"name": "Chishti\u0101n Mandi",
@@ -33523,7 +30288,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3587923,
"latitude": 14.48139,
"longitude": -90.53167,
"name": "Villa Canales",
@@ -33533,7 +30297,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272648,
"latitude": 27.48167,
"longitude": 94.90278,
"name": "Dibrugarh",
@@ -33543,7 +30306,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2918632,
"latitude": 51.53333,
"longitude": 9.93333,
"name": "G\u00f6ttingen",
@@ -33553,7 +30315,6 @@
"country_code": "US",
"elevation": 23,
"feature_code": "PPL",
- "geonameid": 5339111,
"latitude": 37.97798,
"longitude": -122.03107,
"name": "Concord",
@@ -33563,7 +30324,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4164601,
"latitude": 25.98731,
"longitude": -80.23227,
"name": "Miramar",
@@ -33573,7 +30333,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3185728,
"latitude": 41.32306,
"longitude": 19.44139,
"name": "Durr\u00ebs",
@@ -33583,7 +30342,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1113217,
"latitude": 31.0287,
"longitude": 61.5012,
"name": "Z\u0101bol",
@@ -33593,7 +30351,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260637,
"latitude": 28.15,
"longitude": 77.33333,
"name": "Palwal",
@@ -33603,7 +30360,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855095,
"latitude": 32.58333,
"longitude": 131.66667,
"name": "Nobeoka",
@@ -33613,7 +30369,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262067,
"latitude": 17.05,
"longitude": 79.26667,
"name": "Nalgonda",
@@ -33623,7 +30378,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 615532,
"latitude": 41.64159,
"longitude": 41.63593,
"name": "Bat\u2019umi",
@@ -33633,7 +30387,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3117164,
"latitude": 41.54211,
"longitude": 2.4445,
"name": "Matar\u00f3",
@@ -33643,7 +30396,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276320,
"latitude": 22.82444,
"longitude": 88.35056,
"name": "Bhadreswar",
@@ -33653,7 +30405,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2661552,
"latitude": 46.94809,
"longitude": 7.44744,
"name": "Bern",
@@ -33663,7 +30414,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253315,
"latitude": 22.68333,
"longitude": 73.56667,
"name": "Vejalpur",
@@ -33673,7 +30423,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3137115,
"latitude": 58.97005,
"longitude": 5.73332,
"name": "Stavanger",
@@ -33683,7 +30432,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1631905,
"latitude": -0.22019,
"longitude": 100.63078,
"name": "Payakumbuh",
@@ -33693,7 +30441,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864105,
"latitude": 35.21667,
"longitude": 138.61667,
"name": "Fujinomiya",
@@ -33703,7 +30450,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274220,
"latitude": 13.31667,
"longitude": 75.78333,
"name": "Chikmagal\u016br",
@@ -33713,9 +30459,8 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1524325,
- "latitude": 51.66667,
- "longitude": 75.36667,
+ "latitude": 51.72371,
+ "longitude": 75.32287,
"name": "Ekibastuz",
"population": 121470
},
@@ -33723,7 +30468,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855078,
"latitude": 35.94111,
"longitude": 139.85806,
"name": "Noda",
@@ -33733,7 +30477,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2742032,
"latitude": 41.55032,
"longitude": -8.42005,
"name": "Braga",
@@ -33743,7 +30486,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035669,
"latitude": 47.13333,
"longitude": 129.26667,
"name": "Nancha",
@@ -33753,7 +30495,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3522307,
"latitude": 18.85,
"longitude": -97.1,
"name": "Orizaba",
@@ -33763,7 +30504,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259005,
"latitude": 21.9,
"longitude": 83.4,
"name": "Raigarh",
@@ -33773,7 +30513,6 @@
"country_code": "US",
"elevation": 75,
"feature_code": "PPL",
- "geonameid": 4839745,
"latitude": 41.13815,
"longitude": -73.54346,
"name": "North Stamford",
@@ -33783,7 +30522,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1513064,
"latitude": 40.84472,
"longitude": 69.59833,
"name": "Olmaliq",
@@ -33793,7 +30531,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 152451,
"latitude": -1.5,
"longitude": 33.8,
"name": "Musoma",
@@ -33803,7 +30540,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4151909,
"latitude": 26.27119,
"longitude": -80.2706,
"name": "Coral Springs",
@@ -33813,7 +30549,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468403,
"latitude": -29.95111,
"longitude": -51.09389,
"name": "Cachoeirinha",
@@ -33823,7 +30558,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848774,
"latitude": 34.86667,
"longitude": 138.33333,
"name": "Yaizu",
@@ -33833,7 +30567,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 81302,
"latitude": 32.08361,
"longitude": 23.97639,
"name": "Tobruk",
@@ -33843,7 +30576,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033824,
"latitude": 43.96667,
"longitude": 116.03333,
"name": "Xilin Hot",
@@ -33853,7 +30585,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270670,
"latitude": 15.16667,
"longitude": 77.38333,
"name": "Guntakal",
@@ -33863,7 +30594,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1151933,
"latitude": 8.43333,
"longitude": 99.96667,
"name": "Nakhon Si Thammarat",
@@ -33873,7 +30603,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2907669,
"latitude": 49.14028,
"longitude": 9.22,
"name": "Heilbronn",
@@ -33883,7 +30612,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3167096,
"latitude": 40.72722,
"longitude": 8.56028,
"name": "Sassari",
@@ -33893,7 +30621,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2895992,
"latitude": 48.76667,
"longitude": 11.43333,
"name": "Ingolstadt",
@@ -33903,7 +30630,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPLA2",
- "geonameid": 4330145,
"latitude": 30.22409,
"longitude": -92.01984,
"name": "Lafayette",
@@ -33913,7 +30639,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849845,
"latitude": 34.81667,
"longitude": 137.4,
"name": "Toyokawa",
@@ -33923,7 +30648,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037411,
"latitude": 40.45361,
"longitude": 124.07167,
"name": "Fengcheng",
@@ -33933,7 +30657,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 905395,
"latitude": -12.54982,
"longitude": 28.24071,
"name": "Mufulira",
@@ -33943,7 +30666,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2820256,
"latitude": 48.39841,
"longitude": 9.99155,
"name": "Ulm",
@@ -33953,7 +30675,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735150,
"latitude": 3.3213,
"longitude": 101.5767,
"name": "Rawang",
@@ -33963,7 +30684,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 309527,
"latitude": 37.18111,
"longitude": 33.215,
"name": "Karaman",
@@ -33973,7 +30693,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5913695,
"latitude": 43.3601,
"longitude": -80.31269,
"name": "Cambridge",
@@ -33983,7 +30702,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3081741,
"latitude": 52.64817,
"longitude": 19.0678,
"name": "W\u0142oc\u0142awek",
@@ -33993,7 +30711,6 @@
"country_code": "IT",
"elevation": 162,
"feature_code": "PPLA2",
- "geonameid": 3172629,
"latitude": 45.58248,
"longitude": 9.27485,
"name": "Monza",
@@ -34003,7 +30720,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3438115,
"latitude": -25.32308,
"longitude": -57.54021,
"name": "Fernando de la Mora",
@@ -34013,7 +30729,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284829,
"latitude": 47.5183,
"longitude": 19.10789,
"name": "Budapest XIV. ker\u00fclet",
@@ -34023,7 +30738,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271675,
"latitude": 26.47249,
"longitude": 76.71744,
"name": "Gang\u0101pur",
@@ -34033,7 +30747,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 4574324,
"latitude": 32.77657,
"longitude": -79.93092,
"name": "Charleston",
@@ -34043,7 +30756,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 624400,
"latitude": 53.88333,
"longitude": 27.45,
"name": "Novoye Medvezhino",
@@ -34053,7 +30765,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 278913,
"latitude": 33.37889,
"longitude": 35.48389,
"name": "Nabat\u00eey\u00e9 et Tahta",
@@ -34063,7 +30774,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1185056,
"latitude": 34.14685,
"longitude": 73.21449,
"name": "Abbott\u0101b\u0101d",
@@ -34073,7 +30783,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 515024,
"latitude": 55.80672,
"longitude": 38.96178,
"name": "Orekhovo-Zuyevo",
@@ -34083,7 +30792,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2700791,
"latitude": 59.40316,
"longitude": 17.94479,
"name": "Kista",
@@ -34093,7 +30801,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2468925,
"latitude": 33.80813,
"longitude": 10.99228,
"name": "Midoun",
@@ -34103,7 +30810,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2945756,
"latitude": 51.51667,
"longitude": 6.91667,
"name": "Bottrop",
@@ -34113,7 +30819,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3389321,
"latitude": -7.11389,
"longitude": -34.97806,
"name": "Santa Rita",
@@ -34123,17 +30828,24 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1039536,
"latitude": -23.85972,
"longitude": 35.34722,
"name": "Maxixe",
"population": 119868
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.51667,
+ "longitude": 13.28333,
+ "name": "Charlottenburg",
+ "population": 119857
+ },
{
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2473449,
"latitude": 35.6781,
"longitude": 10.09633,
"name": "Kairouan",
@@ -34143,7 +30855,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1176106,
"latitude": 31.33333,
"longitude": 73.43333,
"name": "Jar\u0101nw\u0101la",
@@ -34153,7 +30864,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3109981,
"latitude": 41.45152,
"longitude": 2.2081,
"name": "Santa Coloma de Gramenet",
@@ -34163,7 +30873,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2751773,
"latitude": 52.15833,
"longitude": 4.49306,
"name": "Leiden",
@@ -34173,7 +30882,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6169141,
"latitude": 46.35006,
"longitude": -72.54912,
"name": "Trois-Rivi\u00e8res",
@@ -34183,7 +30891,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290243,
"latitude": 53.48462,
"longitude": 10.22904,
"name": "Bergedorf",
@@ -34193,7 +30900,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2330028,
"latitude": 7.38333,
"longitude": 4.26667,
"name": "Modakeke",
@@ -34203,7 +30909,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1686547,
"latitude": 14.21567,
"longitude": 120.97137,
"name": "Silang",
@@ -34213,7 +30918,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3652567,
"latitude": -1.03333,
"longitude": -79.45,
"name": "Quevedo",
@@ -34223,7 +30927,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 303873,
"latitude": 37.91631,
"longitude": 28.32225,
"name": "Nazilli",
@@ -34232,10 +30935,9 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230166,
- "latitude": 2.235,
- "longitude": 32.90972,
+ "feature_code": "PPLA2",
+ "latitude": 2.2499,
+ "longitude": 32.89985,
"name": "Lira",
"population": 119323
},
@@ -34243,7 +30945,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2853969,
"latitude": 48.88333,
"longitude": 8.7,
"name": "Pforzheim",
@@ -34253,7 +30954,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756669,
"latitude": 51.81,
"longitude": 4.67361,
"name": "Dordrecht",
@@ -34263,7 +30963,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460005,
"latitude": -22.29639,
"longitude": -48.55778,
"name": "Ja\u00fa",
@@ -34273,7 +30972,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2857807,
"latitude": 50.1,
"longitude": 8.76667,
"name": "Offenbach",
@@ -34283,7 +30981,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255927,
"latitude": 26.21667,
"longitude": 84.36667,
"name": "Siw\u0101n",
@@ -34293,7 +30990,6 @@
"country_code": "US",
"elevation": 161,
"feature_code": "PPL",
- "geonameid": 4679195,
"latitude": 32.95373,
"longitude": -96.89028,
"name": "Carrollton",
@@ -34303,9 +30999,8 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2537406,
- "latitude": 33.0007,
- "longitude": -7.62035,
+ "latitude": 33.00103,
+ "longitude": -7.61662,
"name": "Settat",
"population": 119082
},
@@ -34313,7 +31008,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3647549,
"latitude": 10.18634,
"longitude": -67.45935,
"name": "Cagua",
@@ -34323,7 +31017,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1689510,
"latitude": 12.35275,
"longitude": 121.06761,
"name": "San Jose",
@@ -34333,7 +31026,6 @@
"country_code": "US",
"elevation": 50,
"feature_code": "PPL",
- "geonameid": 5388881,
"latitude": 38.75212,
"longitude": -121.28801,
"name": "Roseville",
@@ -34343,7 +31035,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273587,
"latitude": 23.83333,
"longitude": 79.45,
"name": "Damoh",
@@ -34353,7 +31044,6 @@
"country_code": "US",
"elevation": 1631,
"feature_code": "PPL",
- "geonameid": 5441492,
"latitude": 39.86804,
"longitude": -104.97192,
"name": "Thornton",
@@ -34363,7 +31053,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907301,
"latitude": 35.80944,
"longitude": 139.6925,
"name": "Toda",
@@ -34373,7 +31062,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1280737,
"latitude": 29.65,
"longitude": 91.1,
"name": "Lhasa",
@@ -34383,7 +31071,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2507972,
"latitude": 35.45139,
"longitude": 2.90583,
"name": "A\u00efn Oussera",
@@ -34393,7 +31080,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858964,
"latitude": 35.70222,
"longitude": 139.47556,
"name": "Kokubunji",
@@ -34403,7 +31089,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 728203,
"latitude": 43.41667,
"longitude": 24.61667,
"name": "Pleven",
@@ -34413,7 +31098,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3979844,
"latitude": 22.77559,
"longitude": -102.57218,
"name": "Zacatecas",
@@ -34423,7 +31107,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1609899,
"latitude": 14.06467,
"longitude": 100.64578,
"name": "Khlong Luang",
@@ -34433,7 +31116,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279344,
"latitude": 19.66667,
"longitude": 78.53333,
"name": "\u0100dil\u0101b\u0101d",
@@ -34443,7 +31125,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1627610,
"latitude": -6.11889,
"longitude": 106.575,
"name": "Sepatan",
@@ -34453,7 +31134,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3080165,
"latitude": 51.93548,
"longitude": 15.50643,
"name": "Zielona G\u00f3ra",
@@ -34463,7 +31143,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465059,
"latitude": -23.895,
"longitude": -46.42528,
"name": "Cubat\u00e3o",
@@ -34473,7 +31152,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 932505,
"latitude": -29.31667,
"longitude": 27.48333,
"name": "Maseru",
@@ -34483,7 +31161,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255647,
"latitude": 18.3,
"longitude": 83.9,
"name": "Sr\u012bk\u0101kulam",
@@ -34493,7 +31170,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPLA2",
- "geonameid": 4672989,
"latitude": 30.08605,
"longitude": -94.10185,
"name": "Beaumont",
@@ -34503,7 +31179,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 712451,
"latitude": 46.7663,
"longitude": 36.79882,
"name": "Berdyans\u2019k",
@@ -34513,7 +31188,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253744,
"latitude": 17.40577,
"longitude": 78.55911,
"name": "Uppal Kalan",
@@ -34523,7 +31197,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2317397,
"latitude": -3.31667,
"longitude": 17.36667,
"name": "Bandundu",
@@ -34533,7 +31206,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1230089,
"latitude": 6.8905,
"longitude": 79.9015,
"name": "Pita Kotte",
@@ -34543,7 +31215,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3518692,
"latitude": 20.38333,
"longitude": -100.0,
"name": "San Juan del R\u00edo",
@@ -34553,7 +31224,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3107784,
"latitude": 40.45535,
"longitude": -3.46973,
"name": "Torrej\u00f3n de Ardoz",
@@ -34563,7 +31233,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2347954,
"latitude": 11.5221,
"longitude": 13.68558,
"name": "Bama",
@@ -34573,7 +31242,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337659,
"latitude": 7.83333,
"longitude": 4.48333,
"name": "Ilobu",
@@ -34583,7 +31251,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269065,
"latitude": 21.73333,
"longitude": 70.61667,
"name": "Jetpur",
@@ -34593,7 +31260,6 @@
"country_code": "US",
"elevation": 103,
"feature_code": "PPLA2",
- "geonameid": 5178127,
"latitude": 40.60843,
"longitude": -75.49018,
"name": "Allentown",
@@ -34603,7 +31269,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1802940,
"latitude": 23.31072,
"longitude": 116.16869,
"name": "Puning",
@@ -34613,7 +31278,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262775,
"latitude": 22.81667,
"longitude": 70.83333,
"name": "Morbi",
@@ -34623,7 +31287,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3688256,
"latitude": 3.90089,
"longitude": -76.29783,
"name": "Buga",
@@ -34633,7 +31296,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608534,
"latitude": 13.8196,
"longitude": 100.04427,
"name": "Nakhon Pathom",
@@ -34643,7 +31305,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 690548,
"latitude": 48.61667,
"longitude": 22.3,
"name": "Uzhhorod",
@@ -34653,17 +31314,24 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260173,
"latitude": 23.83333,
"longitude": 72.11667,
"name": "P\u0101tan",
"population": 117863
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.53333,
+ "longitude": 13.43333,
+ "name": "Friedrichshain",
+ "population": 117829
+ },
{
"country_code": "TG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2364104,
"latitude": 8.98333,
"longitude": 1.13333,
"name": "Sokod\u00e9",
@@ -34673,7 +31341,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 757026,
"latitude": 50.01381,
"longitude": 20.98698,
"name": "Tarn\u00f3w",
@@ -34683,7 +31350,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3654667,
"latitude": -3.99313,
"longitude": -79.20422,
"name": "Loja",
@@ -34693,7 +31359,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2336589,
"latitude": 8.88333,
"longitude": 11.36667,
"name": "Jalingo",
@@ -34703,9 +31368,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2315728,
- "latitude": 3.25,
- "longitude": 19.76667,
+ "latitude": 3.25651,
+ "longitude": 19.77234,
"name": "Gemena",
"population": 117639
},
@@ -34713,7 +31377,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1512165,
"latitude": 56.2694,
"longitude": 90.4993,
"name": "Achinsk",
@@ -34723,7 +31386,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034754,
"latitude": 40.125,
"longitude": 116.64528,
"name": "Shunyi",
@@ -34733,7 +31395,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2639093,
"latitude": 53.43012,
"longitude": -1.35678,
"name": "Rotherham",
@@ -34743,7 +31404,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861749,
"latitude": 34.68333,
"longitude": 135.7,
"name": "Ikoma",
@@ -34753,7 +31413,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3486270,
"latitude": 9.43889,
"longitude": -64.47278,
"name": "Anaco",
@@ -34763,7 +31422,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1213500,
"latitude": 3.3285,
"longitude": 99.1625,
"name": "Tebingtinggi",
@@ -34773,7 +31431,6 @@
"country_code": "US",
"elevation": 358,
"feature_code": "PPL",
- "geonameid": 5316428,
"latitude": 33.63059,
"longitude": -112.33322,
"name": "Surprise",
@@ -34783,7 +31440,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3718962,
"latitude": 18.43139,
"longitude": -72.86694,
"name": "Petit Go\u00e2ve",
@@ -34793,7 +31449,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3666608,
"latitude": 5.53528,
"longitude": -73.36778,
"name": "Tunja",
@@ -34803,7 +31458,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2944368,
"latitude": 53.55,
"longitude": 8.58333,
"name": "Bremerhaven",
@@ -34813,7 +31467,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3874787,
"latitude": -53.15,
"longitude": -70.91667,
"name": "Punta Arenas",
@@ -34823,7 +31476,6 @@
"country_code": "US",
"elevation": 118,
"feature_code": "PPLA2",
- "geonameid": 4257227,
"latitude": 37.97476,
"longitude": -87.55585,
"name": "Evansville",
@@ -34833,7 +31485,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 596128,
"latitude": 55.73333,
"longitude": 24.35,
"name": "Panev\u0117\u017eys",
@@ -34843,7 +31494,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641598,
"latitude": 51.58774,
"longitude": -2.99835,
"name": "Newport",
@@ -34853,7 +31503,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1309937,
"latitude": 22.03333,
"longitude": 96.46667,
"name": "Maymyo",
@@ -34863,7 +31512,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1640581,
"latitude": -6.97038,
"longitude": 109.64794,
"name": "Kedungwuni",
@@ -34873,7 +31521,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112576,
"latitude": 38.41667,
"longitude": 141.3,
"name": "Ishinomaki",
@@ -34883,7 +31530,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035966,
"latitude": 42.77139,
"longitude": 129.42333,
"name": "Longjing",
@@ -34893,7 +31539,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267016,
"latitude": 30.70444,
"longitude": 76.22306,
"name": "Khanna",
@@ -34903,7 +31548,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3647444,
"latitude": 8.92416,
"longitude": -67.42929,
"name": "Calabozo",
@@ -34913,7 +31557,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2848273,
"latitude": 51.18333,
"longitude": 7.2,
"name": "Remscheid",
@@ -34923,7 +31566,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2262963,
"latitude": 38.5244,
"longitude": -8.8882,
"name": "Set\u00fabal",
@@ -34932,8 +31574,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 792078,
+ "feature_code": "PPLA2",
"latitude": 43.89139,
"longitude": 20.34972,
"name": "\u010ca\u010dak",
@@ -34943,7 +31584,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2223763,
"latitude": 4.9547,
"longitude": 9.9404,
"name": "Nkongsamba",
@@ -34953,7 +31593,6 @@
"country_code": "US",
"elevation": 524,
"feature_code": "PPLA2",
- "geonameid": 4669635,
"latitude": 32.44874,
"longitude": -99.73314,
"name": "Abilene",
@@ -34963,7 +31602,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2419533,
"latitude": 10.05692,
"longitude": -12.86576,
"name": "Kindia",
@@ -34973,7 +31611,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786731,
"latitude": 36.69667,
"longitude": 118.47972,
"name": "Qingzhou",
@@ -34983,7 +31620,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275218,
"latitude": 22.16667,
"longitude": 71.66667,
"name": "Bot\u0101d",
@@ -34993,7 +31629,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258126,
"latitude": 22.71417,
"longitude": 88.34778,
"name": "Rishra",
@@ -35003,7 +31638,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6317953,
"latitude": -25.44472,
"longitude": -49.1925,
"name": "Pinhais",
@@ -35013,7 +31647,6 @@
"country_code": "US",
"elevation": 212,
"feature_code": "PPL",
- "geonameid": 4692559,
"latitude": 33.15067,
"longitude": -96.82361,
"name": "Frisco",
@@ -35023,7 +31656,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862302,
"latitude": 34.05,
"longitude": 131.56667,
"name": "H\u014dfu",
@@ -35033,7 +31665,6 @@
"country_code": "US",
"elevation": 315,
"feature_code": "PPL",
- "geonameid": 4391812,
"latitude": 39.09112,
"longitude": -94.41551,
"name": "Independence",
@@ -35043,7 +31674,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 741100,
"latitude": 40.98472,
"longitude": 37.87889,
"name": "Ordu",
@@ -35053,7 +31683,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2659994,
"latitude": 46.516,
"longitude": 6.63282,
"name": "Lausanne",
@@ -35063,7 +31692,6 @@
"country_code": "US",
"elevation": 228,
"feature_code": "PPLA2",
- "geonameid": 4180386,
"latitude": 33.96095,
"longitude": -83.37794,
"name": "Athens",
@@ -35073,7 +31701,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2800931,
"latitude": 51.20892,
"longitude": 3.22424,
"name": "Brugge",
@@ -35083,7 +31710,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6318694,
"latitude": -12.78444,
"longitude": -38.40389,
"name": "Sim\u00f5es Filho",
@@ -35093,7 +31719,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278083,
"latitude": 26.06,
"longitude": 83.18611,
"name": "\u0100zamgarh",
@@ -35103,7 +31728,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1184845,
"latitude": 29.14309,
"longitude": 71.25976,
"name": "Ahmadpur East",
@@ -35113,7 +31737,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445487,
"latitude": -21.55139,
"longitude": -45.43028,
"name": "Varginha",
@@ -35123,7 +31746,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1518542,
"latitude": 45.01556,
"longitude": 78.37389,
"name": "Taldyqorghan",
@@ -35133,7 +31755,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2516395,
"latitude": 37.76667,
"longitude": -3.78333,
"name": "Ja\u00e9n",
@@ -35143,7 +31764,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3931276,
"latitude": -15.83333,
"longitude": -70.03333,
"name": "Puno",
@@ -35153,7 +31773,6 @@
"country_code": "US",
"elevation": 23,
"feature_code": "PPL",
- "geonameid": 5393015,
"latitude": 37.35411,
"longitude": -121.95524,
"name": "Santa Clara",
@@ -35163,7 +31782,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252758,
"latitude": 13.1075,
"longitude": 77.60028,
"name": "Yelahanka",
@@ -35173,7 +31791,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807301,
"latitude": 23.10998,
"longitude": 113.44437,
"name": "Dasha",
@@ -35183,7 +31800,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 716935,
"latitude": 47.95539,
"longitude": 21.71671,
"name": "Ny\u00edregyh\u00e1za",
@@ -35193,7 +31809,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290254,
"latitude": 52.47457,
"longitude": 13.34839,
"name": "Berlin Sch\u00f6neberg",
@@ -35203,7 +31818,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3171168,
"latitude": 42.46024,
"longitude": 14.21021,
"name": "Pescara",
@@ -35213,7 +31827,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033536,
"latitude": 49.28333,
"longitude": 120.73333,
"name": "Yakeshi",
@@ -35223,7 +31836,6 @@
"country_code": "US",
"elevation": 182,
"feature_code": "PPLA",
- "geonameid": 4250542,
"latitude": 39.80172,
"longitude": -89.64371,
"name": "Springfield",
@@ -35233,7 +31845,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 569154,
"latitude": 44.22333,
"longitude": 42.05778,
"name": "Cherkessk",
@@ -35243,7 +31854,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2522013,
"latitude": 36.13326,
"longitude": -5.45051,
"name": "Algeciras",
@@ -35253,7 +31863,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270801,
"latitude": 16.45,
"longitude": 80.98333,
"name": "Gudiv\u0101da",
@@ -35263,7 +31872,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1714956,
"latitude": 6.74972,
"longitude": 125.35722,
"name": "Digos",
@@ -35273,7 +31881,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863209,
"latitude": 34.88333,
"longitude": 136.93333,
"name": "Handa",
@@ -35283,7 +31890,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 713716,
"latitude": 48.46893,
"longitude": 38.81669,
"name": "Alchevs\u2019k",
@@ -35293,17 +31899,24 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 520068,
"latitude": 55.86647,
"longitude": 38.4438,
"name": "Noginsk",
"population": 115979
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.46667,
+ "longitude": 13.35,
+ "name": "Sch\u00f6neberg",
+ "population": 115976
+ },
{
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859088,
"latitude": 35.69139,
"longitude": 139.50111,
"name": "Koganei",
@@ -35313,7 +31926,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 291074,
"latitude": 25.78953,
"longitude": 55.9432,
"name": "Ra\u2019s al Khaymah",
@@ -35323,7 +31935,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5405380,
"latitude": 38.10409,
"longitude": -122.25664,
"name": "Vallejo",
@@ -35333,9 +31944,8 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1717641,
- "latitude": 14.4825,
- "longitude": 120.91694,
+ "latitude": 14.47783,
+ "longitude": 120.89322,
"name": "Cavite",
"population": 115932
},
@@ -35343,7 +31953,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 697889,
"latitude": 48.53341,
"longitude": 35.8705,
"name": "Pavlohrad",
@@ -35353,7 +31962,6 @@
"country_code": "US",
"elevation": 832,
"feature_code": "PPL",
- "geonameid": 5406222,
"latitude": 34.53611,
"longitude": -117.29116,
"name": "Victorville",
@@ -35363,7 +31971,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523202,
"latitude": 19.19194,
"longitude": -99.02361,
"name": "Milpa Alta",
@@ -35373,7 +31980,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816336,
"latitude": 37.36667,
"longitude": 118.01667,
"name": "Binzhou",
@@ -35383,7 +31989,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2743856,
"latitude": 52.0575,
"longitude": 4.49306,
"name": "Zoetermeer",
@@ -35393,7 +31998,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1238992,
"latitude": 6.90278,
"longitude": 79.90833,
"name": "Sri Jayewardenepura Kotte",
@@ -35403,7 +32007,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5967629,
"latitude": 43.5501,
"longitude": -80.24967,
"name": "Guelph",
@@ -35413,7 +32016,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 467978,
"latitude": 52.62366,
"longitude": 38.50169,
"name": "Yelets",
@@ -35423,7 +32025,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3114256,
"latitude": 40.23604,
"longitude": -3.76752,
"name": "Parla",
@@ -35433,7 +32034,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1649881,
"latitude": -6.4846,
"longitude": 110.7083,
"name": "Batang",
@@ -35443,7 +32043,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277780,
"latitude": 22.785,
"longitude": 88.32472,
"name": "Baidyab\u0101ti",
@@ -35453,7 +32052,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2327143,
"latitude": 5.83523,
"longitude": 7.35989,
"name": "Okigwi",
@@ -35463,7 +32061,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804169,
"latitude": 27.68806,
"longitude": 111.42944,
"name": "Lengshuijiang",
@@ -35473,7 +32070,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515715,
"latitude": 19.51667,
"longitude": -98.88333,
"name": "Texcoco de Mora",
@@ -35483,7 +32079,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791536,
"latitude": 37.19361,
"longitude": 122.05111,
"name": "Wendeng",
@@ -35493,7 +32088,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1055429,
"latitude": -23.35,
"longitude": 43.66667,
"name": "Toliara",
@@ -35503,7 +32097,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2472706,
"latitude": 37.27442,
"longitude": 9.87391,
"name": "Bizerte",
@@ -35513,7 +32106,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3452525,
"latitude": -22.23,
"longitude": -45.93639,
"name": "Pouso Alegre",
@@ -35523,7 +32115,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276736,
"latitude": 26.8,
"longitude": 82.71667,
"name": "Basti",
@@ -35533,7 +32124,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1680932,
"latitude": 17.61306,
"longitude": 121.72694,
"name": "Tuguegarao City",
@@ -35543,7 +32133,6 @@
"country_code": "US",
"elevation": 153,
"feature_code": "PPLA2",
- "geonameid": 4905687,
"latitude": 40.69365,
"longitude": -89.58899,
"name": "Peoria",
@@ -35553,7 +32142,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1147290,
"latitude": 36.75635,
"longitude": 66.8972,
"name": "Balkh",
@@ -35563,7 +32151,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800498,
"latitude": 36.71667,
"longitude": 117.5,
"name": "Mingshui",
@@ -35573,7 +32160,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 684039,
"latitude": 47.75,
"longitude": 26.66667,
"name": "Boto\u015fani",
@@ -35583,7 +32169,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1218667,
"latitude": 37.59378,
"longitude": 61.83031,
"name": "Mary",
@@ -35593,7 +32178,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5927689,
"latitude": 49.28297,
"longitude": -122.75262,
"name": "Coquitlam",
@@ -35603,7 +32187,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1567788,
"latitude": 9.60333,
"longitude": 105.98,
"name": "S\u00f3c Tr\u0103ng",
@@ -35613,7 +32196,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2191562,
"latitude": -45.87416,
"longitude": 170.50361,
"name": "Dunedin",
@@ -35623,7 +32205,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277599,
"latitude": 21.49417,
"longitude": 86.93167,
"name": "Balasore",
@@ -35633,7 +32214,6 @@
"country_code": "US",
"elevation": 260,
"feature_code": "PPLA",
- "geonameid": 4998830,
"latitude": 42.73254,
"longitude": -84.55553,
"name": "Lansing",
@@ -35643,7 +32223,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632998,
"latitude": -6.28417,
"longitude": 107.81056,
"name": "Pamanukan",
@@ -35653,7 +32232,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1569684,
"latitude": 13.98333,
"longitude": 108.0,
"name": "Pleiku",
@@ -35663,7 +32241,6 @@
"country_code": "CA",
"elevation": 70,
"feature_code": "PPL",
- "geonameid": 5992500,
"latitude": 44.22976,
"longitude": -76.48098,
"name": "Kingston",
@@ -35673,7 +32250,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785545,
"latitude": 30.05,
"longitude": 121.14944,
"name": "Yuyao",
@@ -35683,7 +32259,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1628453,
"latitude": -6.40278,
"longitude": 106.77444,
"name": "Sawangan",
@@ -35693,7 +32268,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272842,
"latitude": 14.43333,
"longitude": 77.71667,
"name": "Dharmavaram",
@@ -35703,7 +32277,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 300822,
"latitude": 37.93262,
"longitude": 41.94025,
"name": "Siirt",
@@ -35713,7 +32286,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 315373,
"latitude": 39.75222,
"longitude": 39.49278,
"name": "Erzincan",
@@ -35723,7 +32295,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2419992,
"latitude": 10.38542,
"longitude": -9.30568,
"name": "Kankan",
@@ -35733,7 +32304,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1281019,
"latitude": 37.09972,
"longitude": 79.92694,
"name": "Hotan",
@@ -35743,7 +32313,6 @@
"country_code": "US",
"elevation": 269,
"feature_code": "PPLA2",
- "geonameid": 4984247,
"latitude": 42.27756,
"longitude": -83.74088,
"name": "Ann Arbor",
@@ -35753,7 +32322,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3413829,
"latitude": 64.13548,
"longitude": -21.89541,
"name": "Reykjav\u00edk",
@@ -35763,7 +32331,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2491191,
"latitude": 33.8,
"longitude": 2.86514,
"name": "Laghouat",
@@ -35773,7 +32340,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3469136,
"latitude": -22.88583,
"longitude": -48.445,
"name": "Botucatu",
@@ -35783,7 +32349,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264111,
"latitude": 30.51667,
"longitude": 75.88333,
"name": "M\u0101ler Kotla",
@@ -35793,7 +32358,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2327879,
"latitude": 8.15,
"longitude": 4.71667,
"name": "Offa",
@@ -35803,7 +32367,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1489530,
"latitude": 58.2,
"longitude": 68.26667,
"name": "Tobol\u2019sk",
@@ -35813,7 +32376,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252942,
"latitude": 20.75,
"longitude": 78.61667,
"name": "Wardha",
@@ -35823,7 +32385,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1798713,
"latitude": 22.99376,
"longitude": 114.71311,
"name": "Pingshan",
@@ -35833,7 +32394,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273193,
"latitude": 26.50472,
"longitude": 83.78722,
"name": "Deoria",
@@ -35843,7 +32403,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3348078,
"latitude": -12.38333,
"longitude": 16.93333,
"name": "Kuito",
@@ -35853,7 +32412,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035399,
"latitude": 45.11712,
"longitude": 124.85676,
"name": "Qianguo",
@@ -35863,7 +32421,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1801615,
"latitude": 24.68412,
"longitude": 113.59839,
"name": "Maba",
@@ -35873,7 +32430,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460170,
"latitude": -23.5275,
"longitude": -46.9025,
"name": "Jandira",
@@ -35883,9 +32439,8 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1714201,
- "latitude": 9.31028,
- "longitude": 123.30806,
+ "latitude": 9.307,
+ "longitude": 123.3074,
"name": "Dumaguete",
"population": 113541
},
@@ -35893,7 +32448,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284830,
"latitude": 47.52978,
"longitude": 19.08068,
"name": "Budapest XIII. ker\u00fclet",
@@ -35903,7 +32457,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856977,
"latitude": 35.11667,
"longitude": 138.91667,
"name": "Mishima",
@@ -35913,7 +32466,6 @@
"country_code": "US",
"elevation": 91,
"feature_code": "PPL",
- "geonameid": 5345743,
"latitude": 34.06862,
"longitude": -118.02757,
"name": "El Monte",
@@ -35923,7 +32475,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3101619,
"latitude": 50.30582,
"longitude": 18.9742,
"name": "Chorz\u00f3w",
@@ -35933,7 +32484,6 @@
"country_code": "US",
"elevation": 201,
"feature_code": "PPLA2",
- "geonameid": 4685907,
"latitude": 33.21484,
"longitude": -97.13307,
"name": "Denton",
@@ -35943,7 +32493,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 909863,
"latitude": -13.13667,
"longitude": 28.41661,
"name": "Luanshya",
@@ -35953,9 +32502,8 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3374333,
- "latitude": 14.92148,
- "longitude": -23.50868,
+ "latitude": 14.93152,
+ "longitude": -23.51254,
"name": "Praia",
"population": 113364
},
@@ -35963,7 +32511,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268936,
"latitude": 28.12559,
"longitude": 75.39797,
"name": "Jhunjhun\u016bn",
@@ -35973,7 +32520,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182164,
"latitude": 45.69798,
"longitude": 9.66895,
"name": "Bergamo",
@@ -35983,7 +32529,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2129537,
"latitude": 43.80306,
"longitude": 143.89083,
"name": "Kitami",
@@ -35993,7 +32538,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2649808,
"latitude": 50.7236,
"longitude": -3.52751,
"name": "Exeter",
@@ -36003,7 +32547,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857968,
"latitude": 35.06667,
"longitude": 136.7,
"name": "Kuwana",
@@ -36013,7 +32556,6 @@
"country_code": "US",
"elevation": 193,
"feature_code": "PPL",
- "geonameid": 4903976,
"latitude": 40.71754,
"longitude": -89.58426,
"name": "North Peoria",
@@ -36023,7 +32565,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 495344,
"latitude": 55.89303,
"longitude": 38.0586,
"name": "Shchelkovo",
@@ -36033,7 +32574,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 324190,
"latitude": 36.54375,
"longitude": 31.99982,
"name": "Alanya",
@@ -36043,7 +32583,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2650497,
"latitude": 50.76871,
"longitude": 0.28453,
"name": "Eastbourne",
@@ -36053,7 +32592,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1162813,
"latitude": 30.03333,
"longitude": 72.35,
"name": "Vih\u0101ri",
@@ -36063,7 +32601,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034497,
"latitude": 45.33333,
"longitude": 122.78333,
"name": "Taonan",
@@ -36073,7 +32610,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257055,
"latitude": 17.68333,
"longitude": 73.98333,
"name": "S\u0101t\u0101ra",
@@ -36083,7 +32619,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2982652,
"latitude": 49.44313,
"longitude": 1.09932,
"name": "Rouen",
@@ -36093,7 +32628,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1809077,
"latitude": 24.77985,
"longitude": 102.57548,
"name": "Haikou",
@@ -36103,7 +32637,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274767,
"latitude": 28.45,
"longitude": 78.76667,
"name": "Chandausi",
@@ -36113,7 +32646,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1497917,
"latitude": 61.09979,
"longitude": 72.60349,
"name": "Nefteyugansk",
@@ -36123,7 +32655,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2847736,
"latitude": 48.49144,
"longitude": 9.20427,
"name": "Reutlingen",
@@ -36133,7 +32664,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795857,
"latitude": 27.34089,
"longitude": 117.4831,
"name": "Shaowu",
@@ -36143,7 +32673,6 @@
"country_code": "US",
"elevation": 52,
"feature_code": "PPL",
- "geonameid": 5327684,
"latitude": 37.87159,
"longitude": -122.27275,
"name": "Berkeley",
@@ -36153,7 +32682,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1635111,
"latitude": -7.4664,
"longitude": 112.4338,
"name": "Mojokerto",
@@ -36163,7 +32691,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 667873,
"latitude": 47.8,
"longitude": 22.88333,
"name": "Satu Mare",
@@ -36173,7 +32700,6 @@
"country_code": "US",
"elevation": 1387,
"feature_code": "PPLA2",
- "geonameid": 5780026,
"latitude": 40.23384,
"longitude": -111.65853,
"name": "Provo",
@@ -36183,7 +32709,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1566166,
"latitude": 19.8,
"longitude": 105.76667,
"name": "Thanh H\u00f3a",
@@ -36193,7 +32718,6 @@
"country_code": "AT",
"elevation": 570,
"feature_code": "PPLA",
- "geonameid": 2775220,
"latitude": 47.26266,
"longitude": 11.39454,
"name": "Innsbruck",
@@ -36203,7 +32727,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036337,
"latitude": 42.53306,
"longitude": 124.04028,
"name": "Kaiyuan",
@@ -36213,7 +32736,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1175156,
"latitude": 30.73333,
"longitude": 72.65,
"name": "Kam\u0101lia",
@@ -36223,27 +32745,15 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3640226,
"latitude": 9.04183,
"longitude": -69.74206,
"name": "Guanare",
"population": 112286
},
- {
- "country_code": "GB",
- "elevation": 0,
- "feature_code": "PPL",
- "geonameid": 7290614,
- "latitude": 53.34914,
- "longitude": -0.9785,
- "name": "Bassetlaw District",
- "population": 112200
- },
{
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1203344,
"latitude": 23.6,
"longitude": 89.83333,
"name": "Far\u012bdpur",
@@ -36253,7 +32763,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3587345,
"latitude": 13.80722,
"longitude": -89.17917,
"name": "Apopa",
@@ -36263,7 +32772,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262710,
"latitude": 26.65,
"longitude": 84.91667,
"name": "Mot\u012bh\u0101ri",
@@ -36273,7 +32781,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274553,
"latitude": 23.63333,
"longitude": 86.16667,
"name": "Ch\u0101s",
@@ -36283,7 +32790,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 625324,
"latitude": 52.0495,
"longitude": 29.2456,
"name": "Mazyr",
@@ -36293,7 +32799,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259297,
"latitude": 10.38128,
"longitude": 78.82141,
"name": "Pudukkottai",
@@ -36303,7 +32808,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526798,
"latitude": 18.35,
"longitude": -99.53333,
"name": "Iguala de la Independencia",
@@ -36313,7 +32817,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3646382,
"latitude": 10.66781,
"longitude": -63.25849,
"name": "Car\u00fapano",
@@ -36323,7 +32826,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258178,
"latitude": 28.18333,
"longitude": 76.61667,
"name": "Rew\u0101ri",
@@ -36333,7 +32835,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1259385,
"latitude": 11.66667,
"longitude": 92.75,
"name": "Port Blair",
@@ -36343,7 +32844,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343093,
"latitude": 4.80293,
"longitude": 8.25341,
"name": "Esuk Oron",
@@ -36353,7 +32853,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2923544,
"latitude": 49.47593,
"longitude": 10.98856,
"name": "F\u00fcrth",
@@ -36363,7 +32862,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816790,
"latitude": 29.82556,
"longitude": 106.43389,
"name": "Beibei",
@@ -36373,7 +32871,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1586443,
"latitude": 9.17694,
"longitude": 105.15,
"name": "C\u00e0 Mau",
@@ -36383,7 +32880,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3451329,
"latitude": -23.71056,
"longitude": -46.41333,
"name": "Ribeir\u00e3o Pires",
@@ -36393,7 +32889,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 170592,
"latitude": 33.57175,
"longitude": 36.4027,
"name": "Douma",
@@ -36403,7 +32898,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 159071,
"latitude": -7.76667,
"longitude": 35.7,
"name": "Iringa",
@@ -36413,7 +32907,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2743477,
"latitude": 52.5125,
"longitude": 6.09444,
"name": "Zwolle",
@@ -36423,7 +32916,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 518659,
"latitude": 53.0959,
"longitude": 49.9462,
"name": "Novokuybyshevsk",
@@ -36433,7 +32925,6 @@
"country_code": "US",
"elevation": 36,
"feature_code": "PPL",
- "geonameid": 5343858,
"latitude": 33.94001,
"longitude": -118.13257,
"name": "Downey",
@@ -36443,7 +32934,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 119115,
"latitude": 37.106,
"longitude": 58.50955,
"name": "Q\u016bch\u0101n",
@@ -36453,7 +32943,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255344,
"latitude": 17.15,
"longitude": 79.61667,
"name": "Suri\u0101pet",
@@ -36463,7 +32952,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1241622,
"latitude": 7.2955,
"longitude": 80.6356,
"name": "Kandy",
@@ -36473,7 +32961,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277324,
"latitude": 23.06667,
"longitude": 88.81667,
"name": "Bangaon",
@@ -36483,7 +32970,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 702972,
"latitude": 48.90485,
"longitude": 38.44207,
"name": "Lisichansk",
@@ -36493,7 +32979,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465644,
"latitude": -20.66028,
"longitude": -43.78611,
"name": "Conselheiro Lafaiete",
@@ -36503,7 +32988,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274337,
"latitude": 24.9,
"longitude": 79.6,
"name": "Chhatarpur",
@@ -36513,7 +32997,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 460413,
"latitude": 55.88333,
"longitude": 26.53333,
"name": "Daugavpils",
@@ -36523,7 +33006,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3451668,
"latitude": -22.46889,
"longitude": -44.44667,
"name": "Resende",
@@ -36533,7 +33015,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 124620,
"latitude": 31.9364,
"longitude": 49.3039,
"name": "Masjed Soleym\u0101n",
@@ -36543,7 +33024,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646492,
"latitude": -6.93889,
"longitude": 107.75278,
"name": "Cileunyi",
@@ -36553,7 +33033,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302861,
"latitude": 22.86416,
"longitude": 88.63701,
"name": "Ashoknagar Kalyangarh",
@@ -36563,7 +33042,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636884,
"latitude": -7.47056,
"longitude": 110.21778,
"name": "Magelang",
@@ -36573,7 +33051,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2991214,
"latitude": 47.75,
"longitude": 7.33333,
"name": "Mulhouse",
@@ -36583,7 +33060,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3835994,
"latitude": -36.61667,
"longitude": -64.28333,
"name": "Santa Rosa",
@@ -36593,7 +33069,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2227613,
"latitude": 5.62578,
"longitude": 10.25517,
"name": "Mbouda",
@@ -36603,7 +33078,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471697,
"latitude": -25.59306,
"longitude": -49.41028,
"name": "Arauc\u00e1ria",
@@ -36613,7 +33087,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6544106,
"latitude": 41.38022,
"longitude": 2.17319,
"name": "Ciutat Vella",
@@ -36623,7 +33096,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279390,
"latitude": 21.25722,
"longitude": 77.50861,
"name": "Achalpur",
@@ -36633,7 +33105,6 @@
"country_code": "US",
"elevation": 848,
"feature_code": "PPLA2",
- "geonameid": 5526337,
"latitude": 31.99735,
"longitude": -102.07791,
"name": "Midland",
@@ -36643,7 +33114,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261669,
"latitude": 23.41667,
"longitude": 88.36667,
"name": "Navadw\u012bp",
@@ -36653,7 +33123,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328684,
"latitude": 6.8561,
"longitude": 7.3927,
"name": "Nsukka",
@@ -36663,7 +33132,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328952,
"latitude": 12.8791,
"longitude": 10.4526,
"name": "Nguru",
@@ -36673,7 +33141,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1812228,
"latitude": 32.85231,
"longitude": 120.30947,
"name": "Dongtai",
@@ -36683,7 +33150,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276856,
"latitude": 18.23333,
"longitude": 75.7,
"name": "B\u0101rsi",
@@ -36693,7 +33159,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3471335,
"latitude": -23.11694,
"longitude": -46.55028,
"name": "Atibaia",
@@ -36703,7 +33168,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6949678,
"latitude": 22.7583,
"longitude": 121.1444,
"name": "Taitung City",
@@ -36713,7 +33177,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445446,
"latitude": -23.21139,
"longitude": -46.82833,
"name": "V\u00e1rzea Paulista",
@@ -36723,7 +33186,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862636,
"latitude": 35.25,
"longitude": 136.25,
"name": "Hikone",
@@ -36733,7 +33195,6 @@
"country_code": "US",
"elevation": 357,
"feature_code": "PPLA2",
- "geonameid": 4543762,
"latitude": 35.22257,
"longitude": -97.43948,
"name": "Norman",
@@ -36742,10 +33203,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1811729,
- "latitude": 22.18389,
- "longitude": 112.3026,
+ "feature_code": "PPLA4",
+ "latitude": 22.18325,
+ "longitude": 112.30615,
"name": "Encheng",
"population": 110921
},
@@ -36753,7 +33213,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 738618,
"latitude": 40.3875,
"longitude": 36.08111,
"name": "Turhal",
@@ -36763,7 +33222,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 141679,
"latitude": 37.4727,
"longitude": 49.4622,
"name": "Bandar-e Anzal\u012b",
@@ -36773,7 +33231,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2339631,
"latitude": 12.4498,
"longitude": 10.0444,
"name": "Hadejia",
@@ -36783,7 +33240,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3996663,
"latitude": 19.05011,
"longitude": -104.31879,
"name": "Manzanillo",
@@ -36793,7 +33249,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1783940,
"latitude": 29.71876,
"longitude": 120.24233,
"name": "Zhuji",
@@ -36803,7 +33258,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2987914,
"latitude": 42.69764,
"longitude": 2.89541,
"name": "Perpignan",
@@ -36813,7 +33267,6 @@
"country_code": "US",
"elevation": 256,
"feature_code": "PPL",
- "geonameid": 4385018,
"latitude": 39.09556,
"longitude": -94.35523,
"name": "East Independence",
@@ -36823,7 +33276,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3029241,
"latitude": 49.18585,
"longitude": -0.35912,
"name": "Caen",
@@ -36833,7 +33285,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1285173,
"latitude": 20.46667,
"longitude": 94.88333,
"name": "Yenangyaung",
@@ -36843,7 +33294,6 @@
"country_code": "SZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934995,
"latitude": -26.48333,
"longitude": 31.36667,
"name": "Manzini",
@@ -36853,7 +33303,6 @@
"country_code": "ES",
"elevation": 183,
"feature_code": "PPLX",
- "geonameid": 6615440,
"latitude": 41.64928,
"longitude": -0.90757,
"name": "Delicias",
@@ -36863,7 +33312,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255491,
"latitude": 26.26667,
"longitude": 82.06667,
"name": "Sult\u0101npur",
@@ -36873,7 +33321,6 @@
"country_code": "US",
"elevation": 82,
"feature_code": "PPL",
- "geonameid": 4845193,
"latitude": 41.55815,
"longitude": -73.0515,
"name": "Waterbury",
@@ -36883,7 +33330,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2208032,
"latitude": -37.68611,
"longitude": 176.16667,
"name": "Tauranga",
@@ -36893,7 +33339,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859405,
"latitude": 36.4,
"longitude": 139.33333,
"name": "Kiry\u016b",
@@ -36903,7 +33348,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1639362,
"latitude": -6.13139,
"longitude": 106.37972,
"name": "Kresek",
@@ -36913,7 +33357,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618577,
"latitude": 46.83056,
"longitude": 29.47111,
"name": "Bender",
@@ -36923,7 +33366,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 971534,
"latitude": -25.47448,
"longitude": 30.97033,
"name": "Nelspruit",
@@ -36933,7 +33375,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646034,
"latitude": -6.48556,
"longitude": 106.88194,
"name": "Citeureup",
@@ -36943,7 +33384,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6947483,
"latitude": 50.963,
"longitude": 6.9541,
"name": "K\u00f6ln-Nippes",
@@ -36953,7 +33393,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3399058,
"latitude": -8.89028,
"longitude": -36.49278,
"name": "Garanhuns",
@@ -36963,7 +33402,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2468369,
"latitude": 33.88146,
"longitude": 10.0982,
"name": "Gab\u00e8s",
@@ -36973,7 +33411,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803367,
"latitude": 36.84556,
"longitude": 115.71167,
"name": "Linqing",
@@ -36983,7 +33420,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6947756,
"latitude": 51.2372,
"longitude": -2.6266,
"name": "Mendip",
@@ -36993,7 +33429,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 933945,
"latitude": -20.29806,
"longitude": 57.47833,
"name": "Vacoas",
@@ -37003,7 +33438,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1496503,
"latitude": 63.19936,
"longitude": 75.45067,
"name": "Noyabr'sk",
@@ -37013,7 +33447,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2208485,
"latitude": 32.46738,
"longitude": 14.56874,
"name": "Zl\u012b\u0163an",
@@ -37023,7 +33456,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1783988,
"latitude": 35.99472,
"longitude": 119.3975,
"name": "Zhucheng",
@@ -37033,7 +33465,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 578740,
"latitude": 47.13975,
"longitude": 39.75181,
"name": "Bataysk",
@@ -37043,7 +33474,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPL",
- "geonameid": 5339840,
"latitude": 33.64113,
"longitude": -117.91867,
"name": "Costa Mesa",
@@ -37053,7 +33483,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803352,
"latitude": 36.42472,
"longitude": 114.20472,
"name": "Linshui",
@@ -37063,7 +33492,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037069,
"latitude": 47.45,
"longitude": 126.93333,
"name": "Hailun",
@@ -37073,7 +33501,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278815,
"latitude": 12.79163,
"longitude": 78.71644,
"name": "Ambur",
@@ -37083,7 +33510,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3050434,
"latitude": 46.90618,
"longitude": 19.69128,
"name": "Kecskem\u00e9t",
@@ -37093,7 +33519,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1538637,
"latitude": 56.60056,
"longitude": 84.88639,
"name": "Seversk",
@@ -37103,7 +33528,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1043893,
"latitude": -13.31278,
"longitude": 35.24056,
"name": "Lichinga",
@@ -37112,10 +33536,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1795184,
- "latitude": 23.11227,
- "longitude": 113.84248,
+ "feature_code": "PPLA4",
+ "latitude": 23.11444,
+ "longitude": 113.84722,
"name": "Shilong",
"population": 109733
},
@@ -37123,7 +33546,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2393693,
"latitude": 11.13417,
"longitude": 2.93861,
"name": "Kandi",
@@ -37133,7 +33555,6 @@
"country_code": "US",
"elevation": 40,
"feature_code": "PPL",
- "geonameid": 5359488,
"latitude": 33.96168,
"longitude": -118.35313,
"name": "Inglewood",
@@ -37143,7 +33564,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471715,
"latitude": -22.87278,
"longitude": -42.34306,
"name": "Araruama",
@@ -37153,7 +33573,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034440,
"latitude": 46.95,
"longitude": 128.05,
"name": "Tieli",
@@ -37163,7 +33582,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466692,
"latitude": -21.13778,
"longitude": -48.97278,
"name": "Catanduva",
@@ -37173,7 +33591,6 @@
"country_code": "US",
"elevation": 80,
"feature_code": "PPL",
- "geonameid": 5089178,
"latitude": 42.99564,
"longitude": -71.45479,
"name": "Manchester",
@@ -37183,7 +33600,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037685,
"latitude": 45.36667,
"longitude": 130.8,
"name": "Didao",
@@ -37193,7 +33609,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530582,
"latitude": 21.98333,
"longitude": -99.01667,
"name": "Ciudad Valles",
@@ -37203,7 +33618,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 580724,
"latitude": 55.39485,
"longitude": 43.83992,
"name": "Arzamas",
@@ -37213,7 +33627,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 965528,
"latitude": -23.94299,
"longitude": 31.14107,
"name": "Phalaborwa",
@@ -37223,7 +33636,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036973,
"latitude": 50.24413,
"longitude": 127.49016,
"name": "Heihe",
@@ -37233,7 +33645,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2652618,
"latitude": 51.88921,
"longitude": 0.90421,
"name": "Colchester",
@@ -37243,7 +33654,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784841,
"latitude": 27.31667,
"longitude": 103.71667,
"name": "Zhaotong",
@@ -37253,7 +33663,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269939,
"latitude": 22.75,
"longitude": 77.71667,
"name": "Hoshang\u0101b\u0101d",
@@ -37263,7 +33672,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2543549,
"latitude": 35.19321,
"longitude": -6.15572,
"name": "Larache",
@@ -37273,7 +33681,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338403,
"latitude": 6.9798,
"longitude": 4.00329,
"name": "Ijebu-Igbo",
@@ -37283,7 +33690,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 496638,
"latitude": 56.3,
"longitude": 38.13333,
"name": "Sergiyev Posad",
@@ -37293,7 +33699,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3691148,
"latitude": -3.56667,
"longitude": -80.44139,
"name": "Tumbes",
@@ -37303,7 +33708,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 910111,
"latitude": -17.84194,
"longitude": 25.85425,
"name": "Livingstone",
@@ -37313,7 +33717,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3836669,
"latitude": -34.61772,
"longitude": -68.33007,
"name": "San Rafael",
@@ -37323,7 +33726,6 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2396518,
"latitude": -0.71933,
"longitude": 8.78151,
"name": "Port-Gentil",
@@ -37333,7 +33735,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036671,
"latitude": 45.98333,
"longitude": 126.6,
"name": "Hulan",
@@ -37343,7 +33744,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3130583,
"latitude": 40.54746,
"longitude": -3.64197,
"name": "Alcobendas",
@@ -37353,7 +33753,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3617708,
"latitude": 12.92559,
"longitude": -85.91747,
"name": "Matagalpa",
@@ -37363,7 +33762,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858910,
"latitude": 36.40263,
"longitude": 136.45088,
"name": "Komatsu",
@@ -37373,7 +33771,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1500665,
"latitude": 54.6567,
"longitude": 86.1737,
"name": "Leninsk-Kuznetskiy",
@@ -37383,7 +33780,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786546,
"latitude": 31.16611,
"longitude": 112.58306,
"name": "Zhongxiang",
@@ -37393,7 +33789,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3462964,
"latitude": -23.32167,
"longitude": -46.72694,
"name": "Franco da Rocha",
@@ -37403,7 +33798,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861164,
"latitude": 35.94278,
"longitude": 139.69194,
"name": "Iwatsuki",
@@ -37413,7 +33807,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037712,
"latitude": 44.53333,
"longitude": 125.7,
"name": "Dehui",
@@ -37423,7 +33816,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3031137,
"latitude": 48.83333,
"longitude": 2.25,
"name": "Boulogne-Billancourt",
@@ -37433,7 +33825,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3096880,
"latitude": 51.76109,
"longitude": 18.09102,
"name": "Kalisz",
@@ -37443,7 +33834,6 @@
"country_code": "US",
"elevation": 186,
"feature_code": "PPLA2",
- "geonameid": 4644312,
"latitude": 35.84562,
"longitude": -86.39027,
"name": "Murfreesboro",
@@ -37453,7 +33843,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2544001,
"latitude": 35.00174,
"longitude": -5.90534,
"name": "Ksar el Kebir",
@@ -37463,7 +33852,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1028918,
"latitude": -12.97395,
"longitude": 40.51775,
"name": "Pemba",
@@ -37473,7 +33861,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3655673,
"latitude": 0.35,
"longitude": -78.11667,
"name": "Ibarra",
@@ -37483,7 +33870,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256949,
"latitude": 26.02301,
"longitude": 76.34408,
"name": "Saw\u0101i M\u0101dhopur",
@@ -37493,7 +33879,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2319668,
"latitude": 6.7,
"longitude": 6.33333,
"name": "Uromi",
@@ -37503,7 +33888,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283460,
"latitude": 26.81248,
"longitude": 87.28355,
"name": "Dhar\u0101n B\u0101z\u0101r",
@@ -37513,7 +33897,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264621,
"latitude": 13.55,
"longitude": 78.5,
"name": "Madanapalle",
@@ -37523,7 +33906,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5920450,
"latitude": 42.40009,
"longitude": -82.1831,
"name": "Chatham-Kent",
@@ -37533,7 +33915,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 158151,
"latitude": -9.23333,
"longitude": 33.61667,
"name": "Katumba",
@@ -37543,7 +33924,6 @@
"country_code": "US",
"elevation": 215,
"feature_code": "PPLA2",
- "geonameid": 4381982,
"latitude": 38.95171,
"longitude": -92.33407,
"name": "Columbia",
@@ -37553,7 +33933,6 @@
"country_code": "US",
"elevation": 778,
"feature_code": "PPL",
- "geonameid": 5503766,
"latitude": 36.02525,
"longitude": -115.24194,
"name": "Enterprise",
@@ -37563,7 +33942,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277240,
"latitude": 22.97194,
"longitude": 88.39944,
"name": "B\u0101nsb\u0101ria",
@@ -37573,7 +33951,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 788886,
"latitude": 42.13222,
"longitude": 21.71444,
"name": "Kumanovo",
@@ -37583,7 +33960,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682018,
"latitude": 7.0682,
"longitude": -73.16981,
"name": "Gir\u00f3n",
@@ -37593,9 +33969,8 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2453348,
- "latitude": 14.49302,
- "longitude": -4.1942,
+ "latitude": 14.4843,
+ "longitude": -4.18296,
"name": "Mopti",
"population": 108456
},
@@ -37603,7 +33978,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1147540,
"latitude": 36.13068,
"longitude": 68.70829,
"name": "Baghl\u0101n",
@@ -37613,7 +33987,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1226260,
"latitude": 8.5711,
"longitude": 81.2335,
"name": "Trincomalee",
@@ -37623,7 +33996,6 @@
"country_code": "PH",
"elevation": 78,
"feature_code": "PPLA3",
- "geonameid": 1687801,
"latitude": 16.68808,
"longitude": 121.5487,
"name": "Santiago",
@@ -37632,10 +34004,9 @@
{
"country_code": "GB",
"elevation": 0,
- "feature_code": "PPLX",
- "geonameid": 6690871,
- "latitude": 51.54062,
- "longitude": 0.14801,
+ "feature_code": "PPLA3",
+ "latitude": 51.55,
+ "longitude": 0.16667,
"name": "Dagenham",
"population": 108368
},
@@ -37643,7 +34014,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3176746,
"latitude": 44.22361,
"longitude": 12.05278,
"name": "Forl\u00ec",
@@ -37653,7 +34023,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 286282,
"latitude": 24.3643,
"longitude": 56.74681,
"name": "Al Sohar",
@@ -37663,7 +34032,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035610,
"latitude": 48.48333,
"longitude": 124.83333,
"name": "Nehe",
@@ -37673,7 +34041,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1500973,
"latitude": 51.7,
"longitude": 94.45,
"name": "Kyzyl",
@@ -37683,7 +34050,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468615,
"latitude": -22.87944,
"longitude": -42.01861,
"name": "Cabo Frio",
@@ -37693,7 +34059,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 515879,
"latitude": 54.48147,
"longitude": 53.47103,
"name": "Oktyabr\u2019skiy",
@@ -37703,7 +34068,6 @@
"country_code": "US",
"elevation": 227,
"feature_code": "PPL",
- "geonameid": 4890864,
"latitude": 42.03725,
"longitude": -88.28119,
"name": "Elgin",
@@ -37713,7 +34077,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255264,
"latitude": 16.83333,
"longitude": 81.5,
"name": "T\u0101depalleg\u016bdem",
@@ -37723,7 +34086,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1650077,
"latitude": -8.2325,
"longitude": 114.35755,
"name": "Banyuwangi",
@@ -37733,7 +34095,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2347059,
"latitude": 12.45389,
"longitude": 4.1975,
"name": "Birnin Kebbi",
@@ -37743,7 +34104,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798760,
"latitude": 35.53917,
"longitude": 106.68611,
"name": "Pingliang",
@@ -37753,7 +34113,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1688253,
"latitude": 14.2814,
"longitude": 121.4161,
"name": "Santa Cruz",
@@ -37763,7 +34122,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 378699,
"latitude": 12.7,
"longitude": 28.43333,
"name": "An Nuh\u016bd",
@@ -37773,7 +34131,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1785623,
"latitude": 31.37762,
"longitude": 120.9543,
"name": "Yushan",
@@ -37783,7 +34140,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 378231,
"latitude": 17.70217,
"longitude": 33.98638,
"name": "Atbara",
@@ -37793,9 +34149,8 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1815251,
- "latitude": 31.92825,
- "longitude": 120.31257,
+ "latitude": 31.91102,
+ "longitude": 120.26302,
"name": "Chengjiang",
"population": 107918
},
@@ -37803,7 +34158,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1591474,
"latitude": 9.285,
"longitude": 105.72444,
"name": "B\u1ea1c Li\u00eau",
@@ -37813,7 +34167,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3175058,
"latitude": 41.46614,
"longitude": 12.9043,
"name": "Latina",
@@ -37823,7 +34176,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269388,
"latitude": 26.51667,
"longitude": 88.73333,
"name": "Jalp\u0101iguri",
@@ -37833,7 +34185,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2036595,
"latitude": 49.45,
"longitude": 117.7,
"name": "Jalai Nur",
@@ -37843,7 +34194,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851193,
"latitude": 35.31667,
"longitude": 137.13333,
"name": "Tajimi",
@@ -37853,7 +34203,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2870221,
"latitude": 51.45,
"longitude": 6.65,
"name": "Moers",
@@ -37863,7 +34212,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 261414,
"latitude": 37.95,
"longitude": 23.7,
"name": "Kallith\u00e9a",
@@ -37873,7 +34221,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3114965,
"latitude": 42.33333,
"longitude": -7.85,
"name": "Ourense",
@@ -37883,7 +34230,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA2",
- "geonameid": 4151316,
"latitude": 27.96585,
"longitude": -82.8001,
"name": "Clearwater",
@@ -37893,7 +34239,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 751077,
"latitude": 40.35222,
"longitude": 27.97667,
"name": "Band\u0131rma",
@@ -37903,9 +34248,8 @@
"country_code": "IQ",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 89824,
- "latitude": 30.04054,
- "longitude": 47.91677,
+ "latitude": 30.0362,
+ "longitude": 47.91951,
"name": "Umm Qa\u015fr",
"population": 107620
},
@@ -37913,7 +34257,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735076,
"latitude": 5.3991,
"longitude": 100.36382,
"name": "Butterworth",
@@ -37922,10 +34265,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1795842,
- "latitude": 22.75452,
- "longitude": 112.95652,
+ "feature_code": "PPLA4",
+ "latitude": 22.77006,
+ "longitude": 112.94653,
"name": "Shaping",
"population": 107589
},
@@ -37933,7 +34275,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 668872,
"latitude": 45.1,
"longitude": 24.36667,
"name": "R\u00e2mnicu V\u00e2lcea",
@@ -37943,7 +34284,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471758,
"latitude": -22.35694,
"longitude": -47.38417,
"name": "Araras",
@@ -37953,7 +34293,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3095049,
"latitude": 54.19438,
"longitude": 16.17222,
"name": "Koszalin",
@@ -37963,7 +34302,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453406,
"latitude": -23.52806,
"longitude": -46.34472,
"name": "Po\u00e1",
@@ -37973,7 +34311,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1337248,
"latitude": 25.01881,
"longitude": 90.01751,
"name": "Sherpur",
@@ -37983,7 +34320,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 516436,
"latitude": 55.09681,
"longitude": 36.61006,
"name": "Obninsk",
@@ -37993,7 +34329,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3384987,
"latitude": -8.11806,
"longitude": -35.29139,
"name": "Vit\u00f3ria de Santo Ant\u00e3o",
@@ -38003,9 +34338,8 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 150006,
- "latitude": -3.66667,
- "longitude": 33.43333,
+ "latitude": -3.66393,
+ "longitude": 33.42118,
"name": "Shinyanga",
"population": 107362
},
@@ -38013,7 +34347,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2886946,
"latitude": 50.35,
"longitude": 7.6,
"name": "Koblenz",
@@ -38023,7 +34356,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2832495,
"latitude": 50.86667,
"longitude": 8.03333,
"name": "Siegen",
@@ -38033,7 +34365,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3164419,
"latitude": 45.55729,
"longitude": 11.5409,
"name": "Vicenza",
@@ -38043,7 +34374,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2664454,
"latitude": 59.61617,
"longitude": 16.55276,
"name": "V\u00e4ster\u00e5s",
@@ -38053,7 +34383,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4164167,
"latitude": 25.94204,
"longitude": -80.2456,
"name": "Miami Gardens",
@@ -38063,7 +34392,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283613,
"latitude": 27.68333,
"longitude": 84.43333,
"name": "Bharatpur",
@@ -38073,7 +34401,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 288955,
"latitude": 23.84944,
"longitude": 57.43861,
"name": "As Suwayq",
@@ -38083,7 +34410,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3111933,
"latitude": 41.15612,
"longitude": 1.10687,
"name": "Reus",
@@ -38093,7 +34419,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861864,
"latitude": 35.51965,
"longitude": 137.82074,
"name": "Iida",
@@ -38103,7 +34428,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 215976,
"latitude": -4.31667,
"longitude": 20.58333,
"name": "Ilebo",
@@ -38113,7 +34437,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471910,
"latitude": -23.55083,
"longitude": -51.46083,
"name": "Apucarana",
@@ -38123,7 +34446,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1560037,
"latitude": 18.66667,
"longitude": 105.66667,
"name": "Y\u00ean Vinh",
@@ -38133,7 +34455,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2652053,
"latitude": 51.11303,
"longitude": -0.18312,
"name": "Crawley",
@@ -38143,7 +34464,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 789225,
"latitude": 42.88333,
"longitude": 20.86667,
"name": "Mitrovic\u00eb",
@@ -38153,7 +34473,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2636486,
"latitude": 52.56667,
"longitude": -1.81667,
"name": "Sutton Coldfield",
@@ -38163,7 +34482,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2558470,
"latitude": 33.82404,
"longitude": -6.06627,
"name": "Khemisset",
@@ -38173,7 +34491,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 563514,
"latitude": 46.30778,
"longitude": 44.25583,
"name": "Elista",
@@ -38183,7 +34500,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1290596,
"latitude": 18.93333,
"longitude": 96.43333,
"name": "Taungoo",
@@ -38193,7 +34509,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3644417,
"latitude": 8.54665,
"longitude": -71.24087,
"name": "Ejido",
@@ -38203,7 +34518,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 361179,
"latitude": 29.9,
"longitude": 31.25,
"name": "Al \u1e28aw\u0101mid\u012byah",
@@ -38213,7 +34527,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3646190,
"latitude": 10.60383,
"longitude": -67.03034,
"name": "Catia La Mar",
@@ -38223,7 +34536,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1803886,
"latitude": 24.92271,
"longitude": 102.48496,
"name": "Lianran",
@@ -38233,7 +34545,6 @@
"country_code": "US",
"elevation": 312,
"feature_code": "PPLA2",
- "geonameid": 5043473,
"latitude": 44.02163,
"longitude": -92.4699,
"name": "Rochester",
@@ -38243,7 +34554,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607017,
"latitude": 12.68095,
"longitude": 101.25798,
"name": "Rayong",
@@ -38253,7 +34563,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274040,
"latitude": 24.88963,
"longitude": 74.62403,
"name": "Chittaurgarh",
@@ -38263,7 +34572,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864031,
"latitude": 36.2,
"longitude": 139.28333,
"name": "Fukaya",
@@ -38273,7 +34581,6 @@
"country_code": "US",
"elevation": 1430,
"feature_code": "PPLA2",
- "geonameid": 5435464,
"latitude": 38.25445,
"longitude": -104.60914,
"name": "Pueblo",
@@ -38283,7 +34590,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2740637,
"latitude": 40.20564,
"longitude": -8.41955,
"name": "Coimbra",
@@ -38293,7 +34599,6 @@
"country_code": "US",
"elevation": 36,
"feature_code": "PPL",
- "geonameid": 4942618,
"latitude": 42.63342,
"longitude": -71.31617,
"name": "Lowell",
@@ -38303,7 +34608,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646678,
"latitude": -6.26111,
"longitude": 107.15278,
"name": "Cikarang",
@@ -38313,7 +34617,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA2",
- "geonameid": 4499379,
"latitude": 34.22573,
"longitude": -77.94471,
"name": "Wilmington",
@@ -38323,7 +34626,6 @@
"country_code": "US",
"elevation": 1629,
"feature_code": "PPL",
- "geonameid": 5412199,
"latitude": 39.80276,
"longitude": -105.08748,
"name": "Arvada",
@@ -38333,7 +34635,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035970,
"latitude": 47.33028,
"longitude": 123.18361,
"name": "Longjiang",
@@ -38343,7 +34644,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6822181,
"latitude": 35.77674,
"longitude": 140.00075,
"name": "Kamagaya-shi",
@@ -38353,7 +34653,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1897118,
"latitude": 37.6525,
"longitude": 127.3075,
"name": "Hwado",
@@ -38363,7 +34662,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1816221,
"latitude": 30.28757,
"longitude": 112.22979,
"name": "Buhe",
@@ -38373,7 +34671,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2324857,
"latitude": 9.98333,
"longitude": 10.93333,
"name": "Pindiga",
@@ -38383,7 +34680,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2790471,
"latitude": 50.4669,
"longitude": 4.86746,
"name": "Namur",
@@ -38393,7 +34689,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271662,
"latitude": 15.43333,
"longitude": 76.53333,
"name": "Gang\u0101wati",
@@ -38403,7 +34698,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 517836,
"latitude": 51.20301,
"longitude": 58.32665,
"name": "Novotroitsk",
@@ -38413,7 +34707,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2950349,
"latitude": 50.98333,
"longitude": 7.13333,
"name": "Bergisch Gladbach",
@@ -38423,7 +34716,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2655524,
"latitude": 53.75,
"longitude": -2.48333,
"name": "Blackburn",
@@ -38433,7 +34725,6 @@
"country_code": "US",
"elevation": 1641,
"feature_code": "PPL",
- "geonameid": 5443910,
"latitude": 39.83665,
"longitude": -105.0372,
"name": "Westminster",
@@ -38443,7 +34734,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3450269,
"latitude": -29.7175,
"longitude": -52.42583,
"name": "Santa Cruz do Sul",
@@ -38453,7 +34743,6 @@
"country_code": "US",
"elevation": 117,
"feature_code": "PPL",
- "geonameid": 5407933,
"latitude": 34.06862,
"longitude": -117.93895,
"name": "West Covina",
@@ -38463,7 +34752,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3093692,
"latitude": 51.21006,
"longitude": 16.1619,
"name": "Legnica",
@@ -38473,7 +34761,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 295620,
"latitude": 31.66926,
"longitude": 34.57149,
"name": "Ashqelon",
@@ -38483,7 +34770,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6354908,
"latitude": 46.1351,
"longitude": -60.1831,
"name": "Sydney",
@@ -38493,7 +34779,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 566532,
"latitude": 42.0678,
"longitude": 48.28987,
"name": "Derbent",
@@ -38503,7 +34788,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784820,
"latitude": 32.93917,
"longitude": 119.83417,
"name": "Xinghua",
@@ -38513,7 +34797,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266607,
"latitude": 28.25,
"longitude": 77.85,
"name": "Khurja",
@@ -38523,7 +34806,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1700360,
"latitude": 6.95508,
"longitude": 126.21655,
"name": "Mati",
@@ -38533,7 +34815,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461859,
"latitude": -22.81639,
"longitude": -45.1925,
"name": "Guaratinguet\u00e1",
@@ -38543,7 +34824,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1651226,
"latitude": -6.64528,
"longitude": 108.41028,
"name": "Arjawinangun",
@@ -38553,7 +34833,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 665850,
"latitude": 47.63333,
"longitude": 26.25,
"name": "Suceava",
@@ -38563,7 +34842,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2508287,
"latitude": 35.79639,
"longitude": 7.39278,
"name": "A\u00efn Be\u00efda",
@@ -38573,7 +34851,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2348595,
"latitude": 11.6765,
"longitude": 10.1948,
"name": "Azare",
@@ -38583,7 +34860,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1671566,
"latitude": 23.91566,
"longitude": 120.66387,
"name": "Nantou",
@@ -38593,7 +34869,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817990,
"latitude": 36.43417,
"longitude": 119.1925,
"name": "Anqiu",
@@ -38603,7 +34878,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1733953,
"latitude": 5.0268,
"longitude": 118.327,
"name": "Lahad Datu",
@@ -38613,7 +34887,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 355628,
"latitude": 31.30782,
"longitude": 30.29901,
"name": "Idk\u016b",
@@ -38623,7 +34896,6 @@
"country_code": "US",
"elevation": 97,
"feature_code": "PPL",
- "geonameid": 5729485,
"latitude": 45.49818,
"longitude": -122.43148,
"name": "Gresham",
@@ -38633,7 +34905,6 @@
"country_code": "US",
"elevation": 276,
"feature_code": "PPLA2",
- "geonameid": 5059163,
"latitude": 46.87719,
"longitude": -96.7898,
"name": "Fargo",
@@ -38643,7 +34914,6 @@
"country_code": "US",
"elevation": 28,
"feature_code": "PPL",
- "geonameid": 5377995,
"latitude": 33.90224,
"longitude": -118.08173,
"name": "Norwalk",
@@ -38653,7 +34923,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259411,
"latitude": 10.76695,
"longitude": 75.92523,
"name": "Ponn\u0101ni",
@@ -38663,7 +34932,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1683013,
"latitude": 14.6753,
"longitude": 120.9389,
"name": "Tanza",
@@ -38673,7 +34941,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4006163,
"latitude": 23.16667,
"longitude": -102.88333,
"name": "Fresnillo de Gonz\u00e1lez Echeverr\u00eda",
@@ -38683,7 +34950,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3632929,
"latitude": 10.29644,
"longitude": -67.71813,
"name": "Mariara",
@@ -38693,7 +34959,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185263,
"latitude": 24.06667,
"longitude": 90.96667,
"name": "Bhairab B\u0101z\u0101r",
@@ -38703,7 +34968,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793036,
"latitude": 35.07706,
"longitude": 117.15176,
"name": "Tengzhou",
@@ -38713,7 +34977,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2505653,
"latitude": 36.66655,
"longitude": 3.09606,
"name": "Baraki",
@@ -38723,7 +34986,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2990999,
"latitude": 48.68333,
"longitude": 6.2,
"name": "Nancy",
@@ -38733,7 +34995,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 5334223,
"latitude": 33.15809,
"longitude": -117.35059,
"name": "Carlsbad",
@@ -38743,7 +35004,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPLA2",
- "geonameid": 5347335,
"latitude": 38.24936,
"longitude": -122.03997,
"name": "Fairfield",
@@ -38753,7 +35013,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 963516,
"latitude": -31.89756,
"longitude": 26.87533,
"name": "Queenstown",
@@ -38763,7 +35022,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1580830,
"latitude": 20.81333,
"longitude": 105.33833,
"name": "H\u00f2a B\u00ecnh",
@@ -38773,7 +35031,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 688105,
"latitude": 45.20091,
"longitude": 33.36655,
"name": "Yevpatoriya",
@@ -38783,7 +35040,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 105299,
"latitude": 16.88917,
"longitude": 42.55111,
"name": "J\u012bz\u0101n",
@@ -38793,7 +35049,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4931972,
"latitude": 42.3751,
"longitude": -71.10561,
"name": "Cambridge",
@@ -38803,7 +35058,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 678015,
"latitude": 45.7,
"longitude": 27.18333,
"name": "Foc\u015fani",
@@ -38813,7 +35067,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458498,
"latitude": -19.39111,
"longitude": -40.07222,
"name": "Linhares",
@@ -38823,7 +35076,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3407357,
"latitude": -7.19111,
"longitude": -48.20722,
"name": "Aragua\u00edna",
@@ -38833,7 +35085,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3165771,
"latitude": 42.56713,
"longitude": 12.64987,
"name": "Terni",
@@ -38843,7 +35094,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276895,
"latitude": 30.38333,
"longitude": 75.55,
"name": "Barn\u0101la",
@@ -38853,7 +35103,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 8020218,
"latitude": 53.8579,
"longitude": 27.4374,
"name": "Malinovka",
@@ -38863,7 +35112,6 @@
"country_code": "US",
"elevation": 230,
"feature_code": "PPL",
- "geonameid": 5404794,
"latitude": 34.1389,
"longitude": -118.35341,
"name": "Universal City",
@@ -38873,7 +35121,6 @@
"country_code": "IT",
"elevation": 195,
"feature_code": "PPLA",
- "geonameid": 3165243,
"latitude": 46.06787,
"longitude": 11.12108,
"name": "Trento",
@@ -38883,7 +35130,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807544,
"latitude": 39.72139,
"longitude": 116.32917,
"name": "Daxing",
@@ -38893,7 +35139,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 141584,
"latitude": 35.9975,
"longitude": 45.8853,
"name": "B\u0101neh",
@@ -38903,7 +35148,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641022,
"latitude": 53.54051,
"longitude": -2.1183,
"name": "Oldham",
@@ -38913,7 +35157,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1665196,
"latitude": 23.70944,
"longitude": 120.54333,
"name": "Douliu",
@@ -38923,7 +35166,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2895044,
"latitude": 50.93333,
"longitude": 11.58333,
"name": "Jena",
@@ -38933,7 +35175,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2921232,
"latitude": 50.88029,
"longitude": 12.08187,
"name": "Gera",
@@ -38943,7 +35184,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277976,
"latitude": 19.15,
"longitude": 73.26667,
"name": "Badlapur",
@@ -38953,9 +35193,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99446,
- "latitude": 29.97763,
- "longitude": 48.47412,
+ "latitude": 29.97421,
+ "longitude": 48.47309,
"name": "Al F\u0101w",
"population": 104569
},
@@ -38963,7 +35202,6 @@
"country_code": "US",
"elevation": 289,
"feature_code": "PPLA2",
- "geonameid": 4741752,
"latitude": 33.91371,
"longitude": -98.49339,
"name": "Wichita Falls",
@@ -38973,7 +35211,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1645518,
"latitude": -7.7625,
"longitude": 110.43167,
"name": "Depok",
@@ -38983,7 +35220,6 @@
"country_code": "BA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3194828,
"latitude": 43.34333,
"longitude": 17.80806,
"name": "Mostar",
@@ -38993,7 +35229,6 @@
"country_code": "US",
"elevation": 281,
"feature_code": "PPL",
- "geonameid": 4471025,
"latitude": 35.95569,
"longitude": -80.00532,
"name": "High Point",
@@ -39003,7 +35238,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1516589,
"latitude": 47.78333,
"longitude": 67.76667,
"name": "Zhezqazghan",
@@ -39013,7 +35247,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848445,
"latitude": 32.5,
"longitude": 130.6,
"name": "Yatsushiro",
@@ -39023,7 +35256,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3427833,
"latitude": -37.32167,
"longitude": -59.13316,
"name": "Tandil",
@@ -39033,7 +35265,6 @@
"country_code": "CL",
"elevation": 508,
"feature_code": "PPL",
- "geonameid": 7281020,
"latitude": -33.4443,
"longitude": -70.72552,
"name": "Lo Prado",
@@ -39043,7 +35274,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798490,
"latitude": 39.39528,
"longitude": 121.96694,
"name": "Pulandian",
@@ -39053,7 +35283,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2178174,
"latitude": -36.07494,
"longitude": 146.92394,
"name": "Albury",
@@ -39063,7 +35292,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1173378,
"latitude": 30.4692,
"longitude": 70.96714,
"name": "Kot Addu",
@@ -39073,7 +35301,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 339666,
"latitude": 8.75,
"longitude": 38.98333,
"name": "Debre Zeyit",
@@ -39083,7 +35310,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2366152,
"latitude": 9.55111,
"longitude": 1.18611,
"name": "Kara",
@@ -39093,7 +35319,6 @@
"country_code": "US",
"elevation": 952,
"feature_code": "PPLA2",
- "geonameid": 5640350,
"latitude": 45.78329,
"longitude": -108.50069,
"name": "Billings",
@@ -39103,7 +35328,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800829,
"latitude": 21.45713,
"longitude": 110.76591,
"name": "Wuchuan",
@@ -39113,7 +35337,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 688148,
"latitude": 48.23331,
"longitude": 38.21137,
"name": "Yenakiyeve",
@@ -39123,7 +35346,6 @@
"country_code": "US",
"elevation": 180,
"feature_code": "PPLA2",
- "geonameid": 5254962,
"latitude": 44.51916,
"longitude": -88.01983,
"name": "Green Bay",
@@ -39133,7 +35355,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3996426,
"latitude": 25.53333,
"longitude": -103.25,
"name": "Matamoros",
@@ -39143,7 +35364,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2293549,
"latitude": 6.72972,
"longitude": -3.49639,
"name": "Abengourou",
@@ -39153,7 +35373,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861212,
"latitude": 34.15,
"longitude": 132.18333,
"name": "Iwakuni",
@@ -39163,7 +35382,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1430991,
"latitude": 34.07917,
"longitude": 74.71111,
"name": "Soy\u012bbug",
@@ -39173,7 +35391,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1503277,
"latitude": 53.99,
"longitude": 86.6621,
"name": "Kisel\u00ebvsk",
@@ -39183,7 +35400,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 986846,
"latitude": -27.65036,
"longitude": 27.23488,
"name": "Kroonstad",
@@ -39193,7 +35409,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036418,
"latitude": 44.31667,
"longitude": 126.8,
"name": "Jishu",
@@ -39203,7 +35418,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 380173,
"latitude": 17.59278,
"longitude": 33.95917,
"name": "Ed Damer",
@@ -39213,7 +35427,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2633709,
"latitude": 51.31903,
"longitude": -0.55893,
"name": "Woking",
@@ -39223,9 +35436,8 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2258261,
- "latitude": -4.19972,
- "longitude": 12.67389,
+ "latitude": -4.19834,
+ "longitude": 12.66664,
"name": "Dolisie",
"population": 103894
},
@@ -39233,7 +35445,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258044,
"latitude": 29.86667,
"longitude": 77.88333,
"name": "Roorkee",
@@ -39243,7 +35454,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277939,
"latitude": 27.1,
"longitude": 84.08333,
"name": "Bagaha",
@@ -39253,17 +35463,24 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1784185,
"latitude": 24.355,
"longitude": 102.54222,
"name": "Yuxi",
"population": 103829
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.55,
+ "longitude": 13.55,
+ "name": "Marzahn",
+ "population": 103768
+ },
{
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328811,
"latitude": 6.15164,
"longitude": 6.84458,
"name": "Nkpor",
@@ -39273,7 +35490,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269934,
"latitude": 12.73647,
"longitude": 77.83264,
"name": "Hos\u016br",
@@ -39283,7 +35499,6 @@
"country_code": "US",
"elevation": 1333,
"feature_code": "PPL",
- "geonameid": 5784549,
"latitude": 40.60967,
"longitude": -111.9391,
"name": "West Jordan",
@@ -39293,7 +35508,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 5387428,
"latitude": 37.93576,
"longitude": -122.34775,
"name": "Richmond",
@@ -39303,7 +35517,6 @@
"country_code": "MV",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1282027,
"latitude": 4.1748,
"longitude": 73.50888,
"name": "Male",
@@ -39313,7 +35526,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516271,
"latitude": 21.35,
"longitude": -98.23333,
"name": "Tantoyuca",
@@ -39323,7 +35535,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1141857,
"latitude": 33.59744,
"longitude": 69.22592,
"name": "Gard\u0113z",
@@ -39333,7 +35544,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358821,
"latitude": 31.21452,
"longitude": 31.35798,
"name": "Bilq\u0101s Qism Awwal",
@@ -39343,7 +35553,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273892,
"latitude": 28.30415,
"longitude": 74.96718,
"name": "Ch\u016bru",
@@ -39353,7 +35562,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262209,
"latitude": 23.45,
"longitude": 75.41667,
"name": "Nagda",
@@ -39363,7 +35571,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 4148757,
"latitude": 27.9378,
"longitude": -82.28592,
"name": "Brandon",
@@ -39373,7 +35580,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1631393,
"latitude": -3.45,
"longitude": 104.25,
"name": "Perabumulih",
@@ -39383,7 +35589,6 @@
"country_code": "US",
"elevation": 334,
"feature_code": "PPL",
- "geonameid": 5375911,
"latitude": 33.55391,
"longitude": -117.21392,
"name": "Murrieta",
@@ -39393,9 +35598,8 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005143,
- "latitude": 27.93333,
- "longitude": -110.9,
+ "latitude": 27.91818,
+ "longitude": -110.89973,
"name": "Guaymas",
"population": 103449
},
@@ -39403,7 +35607,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607708,
"latitude": 16.82481,
"longitude": 100.25858,
"name": "Phitsanulok",
@@ -39413,7 +35616,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3524744,
"latitude": 16.31667,
"longitude": -91.98333,
"name": "Las Margaritas",
@@ -39423,7 +35625,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861449,
"latitude": 35.39056,
"longitude": 139.30778,
"name": "Isehara",
@@ -39433,7 +35634,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2264268,
"latitude": 38.75657,
"longitude": -9.25451,
"name": "Queluz",
@@ -39443,7 +35643,6 @@
"country_code": "US",
"elevation": 185,
"feature_code": "PPL",
- "geonameid": 5331835,
"latitude": 34.18084,
"longitude": -118.30897,
"name": "Burbank",
@@ -39453,7 +35652,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855189,
"latitude": 34.86667,
"longitude": 137.05,
"name": "Nishio",
@@ -39463,7 +35661,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1562693,
"latitude": 10.25,
"longitude": 105.96667,
"name": "V\u0129nh Long",
@@ -39473,7 +35670,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 298806,
"latitude": 38.49533,
"longitude": 27.6997,
"name": "Turgutlu",
@@ -39483,7 +35679,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2653261,
"latitude": 51.9,
"longitude": -2.08333,
"name": "Cheltenham",
@@ -39493,7 +35688,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464008,
"latitude": -19.7625,
"longitude": -44.31389,
"name": "Esmeraldas",
@@ -39503,7 +35697,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4167499,
"latitude": 28.03446,
"longitude": -80.58866,
"name": "Palm Bay",
@@ -39513,7 +35706,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3595803,
"latitude": 14.305,
"longitude": -90.785,
"name": "Escuintla",
@@ -39523,7 +35715,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 476077,
"latitude": 56.34,
"longitude": 30.54517,
"name": "Velikiye Luki",
@@ -39533,7 +35724,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267579,
"latitude": 29.21667,
"longitude": 78.95,
"name": "K\u0101sh\u012bpur",
@@ -39543,7 +35733,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271306,
"latitude": 25.58333,
"longitude": 83.56667,
"name": "Gh\u0101z\u012bpur",
@@ -39553,7 +35742,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276609,
"latitude": 25.41667,
"longitude": 86.13333,
"name": "Begusarai",
@@ -39563,7 +35751,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338287,
"latitude": 7.49133,
"longitude": 5.23225,
"name": "Ikerre",
@@ -39573,7 +35760,6 @@
"country_code": "DE",
"elevation": 93,
"feature_code": "PPL",
- "geonameid": 2904789,
"latitude": 52.15077,
"longitude": 9.95112,
"name": "Hildesheim",
@@ -39583,7 +35769,6 @@
"country_code": "US",
"elevation": 25,
"feature_code": "PPLA2",
- "geonameid": 5793933,
"latitude": 47.97898,
"longitude": -122.20208,
"name": "Everett",
@@ -39593,7 +35778,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214073,
"latitude": 2.1,
"longitude": 99.83333,
"name": "Rantauprapat",
@@ -39603,7 +35787,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 698625,
"latitude": 48.66961,
"longitude": 33.11593,
"name": "Oleksandriya",
@@ -39613,7 +35796,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013720,
"latitude": 28.19013,
"longitude": -105.47012,
"name": "Ciudad Delicias",
@@ -39623,7 +35805,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 108648,
"latitude": 31.33176,
"longitude": 37.34282,
"name": "Al Qurayy\u0101t",
@@ -39633,7 +35814,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3488981,
"latitude": 17.97024,
"longitude": -76.86722,
"name": "Portmore",
@@ -39643,7 +35823,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3545064,
"latitude": 20.21722,
"longitude": -75.99889,
"name": "Palma Soriano",
@@ -39653,7 +35832,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 503977,
"latitude": 56.01722,
"longitude": 37.86667,
"name": "Pushkino",
@@ -39663,7 +35841,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1173687,
"latitude": 32.29667,
"longitude": 72.3525,
"name": "Khush\u0101b",
@@ -39673,7 +35850,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2332504,
"latitude": 8.86667,
"longitude": 5.41667,
"name": "Lafiagi",
@@ -39683,7 +35859,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1215412,
"latitude": 3.7755,
"longitude": 98.6832,
"name": "Belawan",
@@ -39693,7 +35868,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1691444,
"latitude": 11.58528,
"longitude": 122.75111,
"name": "Roxas City",
@@ -39703,7 +35877,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 670889,
"latitude": 46.91667,
"longitude": 26.33333,
"name": "Piatra Neam\u0163",
@@ -39713,7 +35886,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2929567,
"latitude": 49.58972,
"longitude": 11.00389,
"name": "Erlangen",
@@ -39723,7 +35895,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2653266,
"latitude": 51.73575,
"longitude": 0.46958,
"name": "Chelmsford",
@@ -39733,7 +35904,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2638785,
"latitude": 53.45,
"longitude": -2.73333,
"name": "Saint Helens",
@@ -39743,7 +35913,6 @@
"country_code": "US",
"elevation": 27,
"feature_code": "PPL",
- "geonameid": 5097529,
"latitude": 40.51872,
"longitude": -74.4121,
"name": "Edison",
@@ -39753,7 +35922,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3347762,
"latitude": -14.91717,
"longitude": 13.4925,
"name": "Lubango",
@@ -39763,7 +35931,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2425791,
"latitude": 9.1429,
"longitude": 18.3923,
"name": "Sagh",
@@ -39773,7 +35940,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272805,
"latitude": 26.69286,
"longitude": 77.87968,
"name": "Dhaulpur",
@@ -39783,7 +35949,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1162456,
"latitude": 32.44583,
"longitude": 74.11594,
"name": "Waz\u012br\u0101b\u0101d",
@@ -39793,7 +35958,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3892870,
"latitude": -34.98333,
"longitude": -71.23333,
"name": "Curic\u00f3",
@@ -39803,7 +35967,6 @@
"country_code": "US",
"elevation": 229,
"feature_code": "PPLA2",
- "geonameid": 4992982,
"latitude": 43.01253,
"longitude": -83.68746,
"name": "Flint",
@@ -39813,7 +35976,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3509382,
"latitude": 19.22207,
"longitude": -70.52956,
"name": "Concepci\u00f3n de La Vega",
@@ -39823,7 +35985,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185121,
"latitude": 24.16667,
"longitude": 89.6,
"name": "Sh\u0101hz\u0101dpur",
@@ -39833,7 +35994,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515062,
"latitude": 20.08333,
"longitude": -98.36667,
"name": "Tulancingo",
@@ -39843,7 +36003,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPL",
- "geonameid": 5324200,
"latitude": 38.00492,
"longitude": -121.80579,
"name": "Antioch",
@@ -39853,7 +36012,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 678817,
"latitude": 44.63194,
"longitude": 22.65611,
"name": "Drobeta-Turnu Severin",
@@ -39863,7 +36021,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263494,
"latitude": 15.4,
"longitude": 73.8,
"name": "Marmagao",
@@ -39873,7 +36030,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805270,
"latitude": 28.31667,
"longitude": 109.71667,
"name": "Jishou",
@@ -39883,9 +36039,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2027456,
- "latitude": 43.3675,
- "longitude": 132.19861,
+ "latitude": 43.3586,
+ "longitude": 132.1908,
"name": "Art\u00ebm",
"population": 102300
},
@@ -39893,7 +36048,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3469989,
"latitude": -21.28861,
"longitude": -50.34,
"name": "Birigui",
@@ -39903,7 +36057,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 479411,
"latitude": 63.56705,
"longitude": 53.68348,
"name": "Ukhta",
@@ -39913,7 +36066,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271883,
"latitude": 30.91667,
"longitude": 74.6,
"name": "F\u012brozpur",
@@ -39923,7 +36075,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861602,
"latitude": 35.25,
"longitude": 136.78333,
"name": "Inazawa",
@@ -39933,7 +36084,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1707404,
"latitude": 18.19889,
"longitude": 120.59361,
"name": "Laoag",
@@ -39943,7 +36093,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2212771,
"latitude": 32.79335,
"longitude": 12.48845,
"name": "\u015eabr\u0101tah",
@@ -39953,7 +36102,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358108,
"latitude": 31.13305,
"longitude": 30.64649,
"name": "Dis\u016bq",
@@ -39963,7 +36111,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1019760,
"latitude": -26.45794,
"longitude": 29.46553,
"name": "Bethal",
@@ -39973,7 +36120,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1692520,
"latitude": 14.27917,
"longitude": 121.08528,
"name": "Santa Cruz",
@@ -39983,7 +36129,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626916,
"latitude": 0.9,
"longitude": 109.0,
"name": "Singkawang",
@@ -39993,7 +36138,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270994,
"latitude": 21.96667,
"longitude": 70.8,
"name": "Gondal",
@@ -40003,7 +36147,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2510253,
"latitude": 37.97872,
"longitude": -0.68222,
"name": "Torrevieja",
@@ -40013,7 +36156,6 @@
"country_code": "US",
"elevation": 199,
"feature_code": "PPLA2",
- "geonameid": 5188843,
"latitude": 42.12922,
"longitude": -80.08506,
"name": "Erie",
@@ -40023,7 +36165,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4004867,
"latitude": 26.93333,
"longitude": -105.66667,
"name": "Hidalgo del Parral",
@@ -40033,7 +36174,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624041,
"latitude": 0.8,
"longitude": 127.4,
"name": "Ternate",
@@ -40043,7 +36183,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648186,
"latitude": 0.13333,
"longitude": 117.5,
"name": "Bontang",
@@ -40053,7 +36192,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5937615,
"latitude": 49.14399,
"longitude": -122.9068,
"name": "Delta",
@@ -40063,7 +36201,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 121380,
"latitude": 39.6482,
"longitude": 47.9174,
"name": "P\u0101rs\u0101b\u0101d",
@@ -40073,7 +36210,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 287830,
"latitude": 23.22573,
"longitude": 56.51572,
"name": "\u2018Ibr\u012b",
@@ -40083,7 +36219,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1180281,
"latitude": 31.83269,
"longitude": 70.9024,
"name": "Dera Ism\u0101\u012bl Kh\u0101n",
@@ -40093,7 +36228,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 622428,
"latitude": 52.7876,
"longitude": 27.5415,
"name": "Salihorsk",
@@ -40103,7 +36237,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3044774,
"latitude": 47.18995,
"longitude": 18.41034,
"name": "Sz\u00e9kesfeh\u00e9rv\u00e1r",
@@ -40113,7 +36246,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516053,
"latitude": 21.06667,
"longitude": -97.63333,
"name": "Temapache",
@@ -40123,7 +36255,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3675595,
"latitude": 10.85953,
"longitude": -74.77386,
"name": "Malambo",
@@ -40133,7 +36264,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1504682,
"latitude": 56.20167,
"longitude": 95.7175,
"name": "Kansk",
@@ -40143,7 +36273,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3037044,
"latitude": 48.95,
"longitude": 2.25,
"name": "Argenteuil",
@@ -40153,7 +36282,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2846032,
"latitude": 50.88333,
"longitude": 6.98333,
"name": "K\u00f6ln Rodenkirchen",
@@ -40163,7 +36291,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256826,
"latitude": 22.08333,
"longitude": 79.53333,
"name": "Seon\u012b",
@@ -40173,7 +36300,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2656194,
"latitude": 51.56844,
"longitude": 0.45782,
"name": "Basildon",
@@ -40183,7 +36309,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5935277,
"latitude": 44.67134,
"longitude": -63.57719,
"name": "Dartmouth",
@@ -40192,10 +36317,9 @@
{
"country_code": "BY",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 625625,
- "latitude": 54.32052,
- "longitude": 26.86436,
+ "feature_code": "PPLA2",
+ "latitude": 54.3167,
+ "longitude": 26.854,
"name": "Maladzyechna",
"population": 101300
},
@@ -40203,7 +36327,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269605,
"latitude": 30.16667,
"longitude": 77.3,
"name": "Jag\u0101dhri",
@@ -40213,7 +36336,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3069011,
"latitude": 49.59552,
"longitude": 17.25175,
"name": "Olomouc",
@@ -40223,7 +36345,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2807363,
"latitude": 51.43333,
"longitude": 7.33333,
"name": "Witten",
@@ -40233,7 +36354,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263012,
"latitude": 16.86667,
"longitude": 79.58333,
"name": "Miri\u0101lg\u016bda",
@@ -40243,7 +36363,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470451,
"latitude": -20.55722,
"longitude": -48.56778,
"name": "Barretos",
@@ -40253,7 +36372,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2298330,
"latitude": 5.68234,
"longitude": -0.16413,
"name": "Madina",
@@ -40263,7 +36381,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1181636,
"latitude": 32.93338,
"longitude": 72.85853,
"name": "Chakw\u0101l",
@@ -40273,7 +36390,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2188164,
"latitude": -41.21667,
"longitude": 174.91667,
"name": "Lower Hutt",
@@ -40283,7 +36399,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465944,
"latitude": -19.53944,
"longitude": -40.63056,
"name": "Colatina",
@@ -40293,7 +36408,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2648657,
"latitude": 51.38914,
"longitude": 0.54863,
"name": "Gillingham",
@@ -40303,7 +36417,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446621,
"latitude": -17.8575,
"longitude": -41.50528,
"name": "Te\u00f3filo Otoni",
@@ -40313,7 +36426,6 @@
"country_code": "US",
"elevation": 211,
"feature_code": "PPLA2",
- "geonameid": 4926563,
"latitude": 41.68338,
"longitude": -86.25001,
"name": "South Bend",
@@ -40323,7 +36435,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3985620,
"latitude": 21.3,
"longitude": -100.51667,
"name": "San Luis de la Paz",
@@ -40333,7 +36444,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850152,
"latitude": 34.05,
"longitude": 131.81667,
"name": "Tokuyama",
@@ -40343,7 +36453,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1892823,
"latitude": 37.54389,
"longitude": 129.10694,
"name": "Tonghae",
@@ -40353,7 +36462,6 @@
"country_code": "US",
"elevation": 124,
"feature_code": "PPL",
- "geonameid": 5341430,
"latitude": 37.70577,
"longitude": -122.46192,
"name": "Daly City",
@@ -40363,7 +36471,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616530,
"latitude": 40.80456,
"longitude": 44.4939,
"name": "Vanadzor",
@@ -40373,7 +36480,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 588335,
"latitude": 58.38062,
"longitude": 26.72509,
"name": "Tartu",
@@ -40383,7 +36489,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 964315,
"latitude": -24.19436,
"longitude": 29.00974,
"name": "Mokopane",
@@ -40393,7 +36498,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253958,
"latitude": 18.38333,
"longitude": 77.11667,
"name": "Udg\u012br",
@@ -40403,7 +36507,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1680197,
"latitude": 15.97611,
"longitude": 120.57111,
"name": "Urdaneta",
@@ -40413,7 +36516,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1498920,
"latitude": 53.69417,
"longitude": 88.06028,
"name": "Mezhdurechensk",
@@ -40423,7 +36525,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3473964,
"latitude": -30.11389,
"longitude": -51.325,
"name": "Gua\u00edba",
@@ -40433,7 +36534,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013714,
"latitude": 19.68333,
"longitude": -103.48333,
"name": "Ciudad Guzm\u00e1n",
@@ -40443,7 +36543,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1710141,
"latitude": 6.05222,
"longitude": 121.00222,
"name": "Jolo",
@@ -40453,7 +36552,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797551,
"latitude": 21.95,
"longitude": 108.61667,
"name": "Qinzhou",
@@ -40463,9 +36561,8 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461888,
- "latitude": -20.66667,
- "longitude": -40.4975,
+ "latitude": -20.65367,
+ "longitude": -40.50204,
"name": "Guarapari",
"population": 100925
},
@@ -40473,7 +36570,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465476,
"latitude": -19.51861,
"longitude": -42.62889,
"name": "Coronel Fabriciano",
@@ -40483,7 +36579,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3172189,
"latitude": 45.44056,
"longitude": 8.61684,
"name": "Novara",
@@ -40493,7 +36588,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 783263,
"latitude": 41.1125,
"longitude": 20.08222,
"name": "Elbasan",
@@ -40503,7 +36597,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 624784,
"latitude": 55.5318,
"longitude": 28.5987,
"name": "Navapolatsk",
@@ -40513,7 +36606,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2267827,
"latitude": 32.63333,
"longitude": -16.9,
"name": "Funchal",
@@ -40523,7 +36615,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2484620,
"latitude": 35.87541,
"longitude": 7.11353,
"name": "Oum el Bouaghi",
@@ -40533,9 +36624,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 491023,
- "latitude": 59.61956,
- "longitude": 56.77289,
+ "latitude": 59.6316,
+ "longitude": 56.7685,
"name": "Solikamsk",
"population": 100812
},
@@ -40543,7 +36633,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3610613,
"latitude": 15.4,
"longitude": -87.8,
"name": "El Progreso",
@@ -40553,7 +36642,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 417594,
"latitude": 32.03389,
"longitude": 51.87944,
"name": "Sh\u0101hre\u1e95\u0101",
@@ -40563,7 +36651,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269374,
"latitude": 25.3,
"longitude": 86.5,
"name": "Jam\u0101lpur",
@@ -40573,7 +36660,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784953,
"latitude": 37.35917,
"longitude": 120.39639,
"name": "Zhaoyuan",
@@ -40583,7 +36669,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460899,
"latitude": -22.85222,
"longitude": -43.77528,
"name": "Itagua\u00ed",
@@ -40593,7 +36678,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261931,
"latitude": 21.36667,
"longitude": 74.25,
"name": "Nandurb\u0101r",
@@ -40603,7 +36687,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 362485,
"latitude": 30.72508,
"longitude": 31.67148,
"name": "Ab\u016b Kab\u012br",
@@ -40613,9 +36696,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 561347,
- "latitude": 58.13941,
- "longitude": 52.65842,
+ "latitude": 58.1393,
+ "longitude": 52.658,
"name": "Glazov",
"population": 100676
},
@@ -40623,7 +36705,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2292852,
"latitude": 5.49462,
"longitude": -4.05183,
"name": "Anyama",
@@ -40633,7 +36714,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111684,
"latitude": 35.78333,
"longitude": 140.31667,
"name": "Narita",
@@ -40643,7 +36723,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1643761,
"latitude": -7.60111,
"longitude": 110.81861,
"name": "Grogol",
@@ -40653,7 +36732,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269653,
"latitude": 22.61667,
"longitude": 77.75,
"name": "It\u0101rsi",
@@ -40663,7 +36741,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214369,
"latitude": 1.36667,
"longitude": 99.26667,
"name": "Padangsidempuan",
@@ -40673,7 +36750,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3183089,
"latitude": 43.59816,
"longitude": 13.51008,
"name": "Ancona",
@@ -40683,7 +36759,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 350789,
"latitude": 30.17922,
"longitude": 31.2056,
"name": "Qaly\u016bb",
@@ -40693,7 +36768,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253367,
"latitude": 15.39585,
"longitude": 73.81568,
"name": "V\u0101sco Da G\u0101ma",
@@ -40703,7 +36777,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853140,
"latitude": 38.91667,
"longitude": 139.855,
"name": "Sakata",
@@ -40713,7 +36786,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858836,
"latitude": 35.33165,
"longitude": 136.87042,
"name": "K\u014dnan",
@@ -40723,7 +36795,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3521342,
"latitude": 20.6274,
"longitude": -87.07987,
"name": "Playa del Carmen",
@@ -40733,7 +36804,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523513,
"latitude": 20.06667,
"longitude": -97.05,
"name": "Mart\u00ednez de La Torre",
@@ -40743,7 +36813,6 @@
"country_code": "US",
"elevation": 1777,
"feature_code": "PPL",
- "geonameid": 5416541,
"latitude": 39.57916,
"longitude": -104.87692,
"name": "Centennial",
@@ -40753,7 +36822,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864572,
"latitude": 33.49631,
"longitude": 130.5156,
"name": "Chikushino-shi",
@@ -40763,7 +36831,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804120,
"latitude": 21.64673,
"longitude": 110.28172,
"name": "Lianjiang",
@@ -40773,7 +36840,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803334,
"latitude": 39.7,
"longitude": 118.43333,
"name": "Linxi",
@@ -40783,7 +36849,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3675692,
"latitude": 9.24202,
"longitude": -74.75467,
"name": "Magangu\u00e9",
@@ -40793,7 +36858,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2244616,
"latitude": 14.63333,
"longitude": -16.23333,
"name": "Ti\u00e9bo",
@@ -40803,7 +36867,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2013952,
"latitude": 58.00056,
"longitude": 102.66194,
"name": "Ust\u2019-Ilimsk",
@@ -40813,7 +36876,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 737022,
"latitude": 41.45139,
"longitude": 31.79305,
"name": "Zonguldak",
@@ -40823,9 +36885,8 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 126409,
- "latitude": 33.535,
- "longitude": 47.6061,
+ "latitude": 33.53335,
+ "longitude": 47.60999,
"name": "K\u016bhdasht",
"population": 100208
},
@@ -40833,7 +36894,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1242110,
"latitude": 7.41667,
"longitude": 81.81667,
"name": "Kalmunai",
@@ -40843,7 +36903,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259827,
"latitude": 31.21778,
"longitude": 75.76944,
"name": "Phagw\u0101ra",
@@ -40853,7 +36912,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2821164,
"latitude": 49.75565,
"longitude": 6.63935,
"name": "Trier",
@@ -40863,7 +36921,6 @@
"country_code": "US",
"elevation": 310,
"feature_code": "PPL",
- "geonameid": 5401395,
"latitude": 33.49364,
"longitude": -117.14836,
"name": "Temecula",
@@ -40873,7 +36930,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3494242,
"latitude": 18.58182,
"longitude": -68.40431,
"name": "Punta Cana",
@@ -40883,7 +36939,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2633563,
"latitude": 52.18935,
"longitude": -2.22001,
"name": "Worcester",
@@ -40893,7 +36948,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2510542,
"latitude": 27.99242,
"longitude": -15.41915,
"name": "Telde",
@@ -40902,18 +36956,16 @@
{
"country_code": "BY",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 630376,
- "latitude": 54.23123,
- "longitude": 28.50485,
- "name": "Barysaw",
+ "feature_code": "PPLA2",
+ "latitude": 54.2279,
+ "longitude": 28.505,
+ "name": "Horad Barysaw",
"population": 100000
},
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1802171,
"latitude": 30.05127,
"longitude": 101.96033,
"name": "Kangding",
@@ -40923,7 +36975,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3569370,
"latitude": 23.15833,
"longitude": -82.27694,
"name": "Alamar",
@@ -40933,7 +36984,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6690870,
"latitude": 51.5529,
"longitude": 0.129,
"name": "Becontree",
@@ -40943,7 +36993,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 293253,
"latitude": 32.05043,
"longitude": 34.75224,
"name": "Yafo",
@@ -40953,7 +37002,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279599,
"latitude": 19.15096,
"longitude": 72.99625,
"name": "Airoli",
@@ -40963,7 +37011,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2210394,
"latitude": 32.88167,
"longitude": 13.35056,
"name": "Tagiura",
@@ -40973,7 +37020,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7280711,
"latitude": 19.49156,
"longitude": -99.12475,
"name": "Colonia Lindavista",
@@ -40982,8 +37028,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3189595,
+ "feature_code": "PPLA2",
"latitude": 46.1,
"longitude": 19.66667,
"name": "Subotica",
@@ -40993,7 +37038,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 463355,
"latitude": 55.744,
"longitude": 38.01684,
"name": "Zheleznodorozhnyy",
@@ -41003,7 +37047,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1538634,
"latitude": 55.75556,
"longitude": 60.70278,
"name": "Oz\u00ebrsk",
@@ -41013,7 +37056,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 706950,
"latitude": 48.6845,
"longitude": 26.58559,
"name": "Kamieniec Podolski",
@@ -41023,7 +37065,6 @@
"country_code": "US",
"elevation": 884,
"feature_code": "PPLA2",
- "geonameid": 5527554,
"latitude": 31.84568,
"longitude": -102.36764,
"name": "Odessa",
@@ -41033,7 +37074,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPLA2",
- "geonameid": 4177887,
"latitude": 26.71534,
"longitude": -80.05337,
"name": "West Palm Beach",
@@ -41043,7 +37083,6 @@
"country_code": "US",
"elevation": 224,
"feature_code": "PPL",
- "geonameid": 4724129,
"latitude": 30.50826,
"longitude": -97.6789,
"name": "Round Rock",
@@ -41053,7 +37092,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 4169014,
"latitude": 26.23786,
"longitude": -80.12477,
"name": "Pompano Beach",
@@ -41063,7 +37101,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3440714,
"latitude": -31.38333,
"longitude": -57.96667,
"name": "Salto",
@@ -41073,7 +37110,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849563,
"latitude": 38.72167,
"longitude": 139.82167,
"name": "Tsuruoka",
@@ -41083,7 +37119,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1611269,
"latitude": 12.60961,
"longitude": 102.10447,
"name": "Chanthaburi",
@@ -41093,7 +37128,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812256,
"latitude": 39.81608,
"longitude": 109.97763,
"name": "Dongsheng",
@@ -41103,7 +37137,6 @@
"country_code": "US",
"elevation": 183,
"feature_code": "PPL",
- "geonameid": 4989133,
"latitude": 42.58698,
"longitude": -82.91992,
"name": "Clinton",
@@ -41113,7 +37146,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278715,
"latitude": 21.61667,
"longitude": 71.23333,
"name": "Amreli",
@@ -41123,7 +37155,6 @@
"country_code": "US",
"elevation": 180,
"feature_code": "PPLA2",
- "geonameid": 4853423,
"latitude": 41.52364,
"longitude": -90.57764,
"name": "Davenport",
@@ -41133,7 +37164,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256529,
"latitude": 27.1,
"longitude": 78.6,
"name": "Shikoh\u0101b\u0101d",
@@ -41143,7 +37173,6 @@
"country_code": "US",
"elevation": 124,
"feature_code": "PPL",
- "geonameid": 4352053,
"latitude": 39.24038,
"longitude": -76.83942,
"name": "Columbia",
@@ -41153,7 +37182,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 463835,
"latitude": 55.84376,
"longitude": 48.51784,
"name": "Zel\u00ebnodol\u2019sk",
@@ -41163,7 +37191,6 @@
"country_code": "US",
"elevation": 67,
"feature_code": "PPL",
- "geonameid": 5393180,
"latitude": 34.95303,
"longitude": -120.43572,
"name": "Santa Maria",
@@ -41173,7 +37200,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 107797,
"latitude": 26.30324,
"longitude": 50.13528,
"name": "Dhahran",
@@ -41183,7 +37209,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460960,
"latitude": -19.61917,
"longitude": -43.22694,
"name": "Itabira",
@@ -41193,7 +37218,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3098218,
"latitude": 53.48411,
"longitude": 18.75366,
"name": "Grudzi\u0105dz",
@@ -41203,7 +37227,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2487772,
"latitude": 34.15429,
"longitude": 3.50309,
"name": "Messaad",
@@ -41213,7 +37236,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 517963,
"latitude": 47.76037,
"longitude": 39.93335,
"name": "Novoshakhtinsk",
@@ -41223,7 +37245,6 @@
"country_code": "US",
"elevation": 133,
"feature_code": "PPL",
- "geonameid": 5345529,
"latitude": 32.79477,
"longitude": -116.96253,
"name": "El Cajon",
@@ -41233,7 +37254,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861795,
"latitude": 34.82208,
"longitude": 135.4298,
"name": "Ikeda",
@@ -41243,7 +37263,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267588,
"latitude": 27.81667,
"longitude": 78.65,
"name": "K\u0101sganj",
@@ -41253,7 +37272,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 361661,
"latitude": 26.56217,
"longitude": 31.74503,
"name": "Akhm\u012bm",
@@ -41263,7 +37281,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035801,
"latitude": 42.52722,
"longitude": 125.67528,
"name": "Meihekou",
@@ -41273,7 +37290,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3444866,
"latitude": -23.54667,
"longitude": -47.43778,
"name": "Votorantim",
@@ -41283,7 +37299,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360716,
"latitude": 31.18287,
"longitude": 32.03108,
"name": "Al Ma\u0163ar\u012byah",
@@ -41293,7 +37308,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2454268,
"latitude": 12.39173,
"longitude": -5.46421,
"name": "Koutiala",
@@ -41303,7 +37317,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6166142,
"latitude": 48.4001,
"longitude": -89.31683,
"name": "Thunder Bay",
@@ -41313,7 +37326,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 179330,
"latitude": -1.03326,
"longitude": 37.06933,
"name": "Thika",
@@ -41323,7 +37335,6 @@
"country_code": "RE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 935221,
"latitude": -21.00963,
"longitude": 55.27071,
"name": "Saint-Paul",
@@ -41333,7 +37344,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256913,
"latitude": 23.2,
"longitude": 77.08333,
"name": "Sehore",
@@ -41343,7 +37353,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 63795,
"latitude": 9.52212,
"longitude": 45.53363,
"name": "Burco",
@@ -41353,7 +37362,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 141736,
"latitude": 29.106,
"longitude": 58.357,
"name": "Bam",
@@ -41363,7 +37371,6 @@
"country_code": "US",
"elevation": 192,
"feature_code": "PPL",
- "geonameid": 4722625,
"latitude": 32.94818,
"longitude": -96.72972,
"name": "Richardson",
@@ -41373,7 +37380,6 @@
"country_code": "US",
"elevation": 184,
"feature_code": "PPLA2",
- "geonameid": 5258393,
"latitude": 42.58474,
"longitude": -87.82119,
"name": "Kenosha",
@@ -41383,7 +37389,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447651,
"latitude": -21.13778,
"longitude": -47.99028,
"name": "Sert\u00e3ozinho",
@@ -41393,7 +37398,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6324733,
"latitude": 47.56494,
"longitude": -52.70931,
"name": "St. John's",
@@ -41403,7 +37407,6 @@
"country_code": "US",
"elevation": 383,
"feature_code": "PPL",
- "geonameid": 5387288,
"latitude": 34.1064,
"longitude": -117.37032,
"name": "Rialto",
@@ -41413,7 +37416,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 888710,
"latitude": -18.9281,
"longitude": 29.81486,
"name": "Kwekwe",
@@ -41423,7 +37425,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2633521,
"latitude": 50.81448,
"longitude": -0.37126,
"name": "Worthing",
@@ -41433,7 +37434,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258474,
"latitude": 14.61667,
"longitude": 75.61667,
"name": "R\u0101n\u012bbennur",
@@ -41443,7 +37443,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1336136,
"latitude": 22.68333,
"longitude": 90.65,
"name": "Bhola",
@@ -41453,7 +37452,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3691582,
"latitude": -4.57722,
"longitude": -81.27194,
"name": "Talara",
@@ -41463,7 +37461,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4780011,
"latitude": 36.82098,
"longitude": -76.36883,
"name": "Portsmouth Heights",
@@ -41473,7 +37470,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269562,
"latitude": 18.8,
"longitude": 78.93333,
"name": "Jagti\u0101l",
@@ -41483,7 +37479,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449948,
"latitude": -23.44417,
"longitude": -46.91778,
"name": "Santana de Parna\u00edba",
@@ -41493,7 +37488,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033766,
"latitude": 40.61667,
"longitude": 120.71667,
"name": "Xingcheng",
@@ -41503,7 +37497,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1803245,
"latitude": 28.46042,
"longitude": 119.91029,
"name": "Lishui",
@@ -41513,7 +37506,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471196,
"latitude": -31.33139,
"longitude": -54.10694,
"name": "Bag\u00e9",
@@ -41523,7 +37515,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 746881,
"latitude": 40.91698,
"longitude": 38.38741,
"name": "Giresun",
@@ -41533,7 +37524,6 @@
"country_code": "US",
"elevation": 230,
"feature_code": "PPL",
- "geonameid": 4531405,
"latitude": 36.0526,
"longitude": -95.79082,
"name": "Broken Arrow",
@@ -41543,7 +37533,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2505629,
"latitude": 35.38901,
"longitude": 5.36584,
"name": "Barika",
@@ -41553,7 +37542,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 498687,
"latitude": 56.47633,
"longitude": 53.79782,
"name": "Sarapul",
@@ -41563,7 +37551,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 649360,
"latitude": 60.98267,
"longitude": 25.66151,
"name": "Lahti",
@@ -41573,7 +37560,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2803560,
"latitude": 50.73333,
"longitude": 12.5,
"name": "Zwickau",
@@ -41583,7 +37569,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2334008,
"latitude": 10.39989,
"longitude": 5.46949,
"name": "Kontagora",
@@ -41593,7 +37578,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454847,
"latitude": -20.71889,
"longitude": -46.60972,
"name": "Passos",
@@ -41603,7 +37587,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1647866,
"latitude": -0.30907,
"longitude": 100.37055,
"name": "Bukittinggi",
@@ -41613,7 +37596,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2894003,
"latitude": 49.45,
"longitude": 7.75,
"name": "Kaiserslautern",
@@ -41623,7 +37605,6 @@
"country_code": "BT",
"elevation": 2320,
"feature_code": "PPLC",
- "geonameid": 1252416,
"latitude": 27.46609,
"longitude": 89.64191,
"name": "Thimphu",
@@ -41633,7 +37614,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1724489,
"latitude": 14.79833,
"longitude": 120.92611,
"name": "Bocaue",
@@ -41643,7 +37623,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276325,
"latitude": 21.05278,
"longitude": 86.52,
"name": "Bhadrakh",
@@ -41653,7 +37632,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 471430,
"latitude": 57.04865,
"longitude": 53.98717,
"name": "Votkinsk",
@@ -41663,7 +37641,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 4173838,
"latitude": 28.47688,
"longitude": -82.52546,
"name": "Spring Hill",
@@ -41673,7 +37650,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3085450,
"latitude": 54.46405,
"longitude": 17.02872,
"name": "S\u0142upsk",
@@ -41683,7 +37659,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2686657,
"latitude": 59.27412,
"longitude": 15.2066,
"name": "\u00d6rebro",
@@ -41693,7 +37668,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797181,
"latitude": 38.69889,
"longitude": 116.09361,
"name": "Renqiu",
@@ -41703,7 +37677,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275103,
"latitude": 25.43855,
"longitude": 75.63735,
"name": "B\u016bndi",
@@ -41713,7 +37686,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3565432,
"latitude": 23.0375,
"longitude": -81.20472,
"name": "C\u00e1rdenas",
@@ -41723,7 +37695,6 @@
"country_code": "BB",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3374036,
"latitude": 13.1,
"longitude": -59.61667,
"name": "Bridgetown",
@@ -41733,7 +37704,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3109453,
"latitude": 43.29564,
"longitude": -2.99729,
"name": "Barakaldo",
@@ -41743,7 +37713,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1492663,
"latitude": 59.60334,
"longitude": 60.5787,
"name": "Serov",
@@ -41753,7 +37722,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 274874,
"latitude": 33.4075,
"longitude": 35.48278,
"name": "Habbo\u00fbch",
@@ -41763,7 +37731,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1788638,
"latitude": 31.04704,
"longitude": 113.14098,
"name": "Xinshi",
@@ -41773,7 +37740,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4018400,
"latitude": 19.08333,
"longitude": -102.35,
"name": "Apatzing\u00e1n de la Constituci\u00f3n",
@@ -41783,7 +37749,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3450594,
"latitude": -23.20083,
"longitude": -47.28694,
"name": "Salto",
@@ -41793,7 +37758,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284831,
"latitude": 47.56182,
"longitude": 19.08909,
"name": "Budapest IV. ker\u00fclet",
@@ -41803,7 +37767,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 144410,
"latitude": 29.2464,
"longitude": 52.7793,
"name": "Akbar\u0101b\u0101d",
@@ -41813,7 +37776,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812057,
"latitude": 22.37303,
"longitude": 110.94746,
"name": "Xinyi",
@@ -41823,7 +37785,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 108927,
"latitude": 26.5208,
"longitude": 50.02452,
"name": "Al Qa\u0163\u012bf",
@@ -41833,7 +37794,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253993,
"latitude": 11.4134,
"longitude": 76.69521,
"name": "Ooty",
@@ -41843,7 +37803,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2548526,
"latitude": 28.98696,
"longitude": -10.05738,
"name": "Guelmim",
@@ -41853,7 +37812,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861901,
"latitude": 34.76855,
"longitude": 136.13013,
"name": "Iga",
@@ -41863,7 +37821,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038080,
"latitude": 45.33333,
"longitude": 131.06667,
"name": "Chengzihe",
@@ -41873,7 +37830,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1292037,
"latitude": 19.31667,
"longitude": 95.18333,
"name": "Thayetmyo",
@@ -41883,7 +37839,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803616,
"latitude": 27.66667,
"longitude": 113.5,
"name": "Liling",
@@ -41893,7 +37848,6 @@
"country_code": "US",
"elevation": 180,
"feature_code": "PPL",
- "geonameid": 4990510,
"latitude": 42.32226,
"longitude": -83.17631,
"name": "Dearborn",
@@ -41903,7 +37857,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 579460,
"latitude": 51.5502,
"longitude": 43.1667,
"name": "Balashov",
@@ -41913,7 +37866,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1645154,
"latitude": -6.9,
"longitude": 109.08333,
"name": "Dukuhturi",
@@ -41923,7 +37875,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 134721,
"latitude": 28.9383,
"longitude": 53.6482,
"name": "Fas\u0101",
@@ -41933,7 +37884,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262634,
"latitude": 25.3,
"longitude": 83.11667,
"name": "Mughal Sar\u0101i",
@@ -41943,7 +37893,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 626081,
"latitude": 53.88333,
"longitude": 25.29972,
"name": "Lida",
@@ -41953,7 +37902,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3176059,
"latitude": 40.92741,
"longitude": 14.19103,
"name": "Giugliano in Campania",
@@ -41963,7 +37911,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256671,
"latitude": 29.45,
"longitude": 77.31667,
"name": "Sh\u0101mli",
@@ -41973,7 +37920,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2895669,
"latitude": 51.36667,
"longitude": 7.7,
"name": "Iserlohn",
@@ -41983,7 +37929,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 463343,
"latitude": 52.331,
"longitude": 35.3711,
"name": "Zheleznogorsk",
@@ -41993,7 +37938,6 @@
"country_code": "US",
"elevation": 45,
"feature_code": "PPLA",
- "geonameid": 5106834,
"latitude": 42.65258,
"longitude": -73.75623,
"name": "Albany",
@@ -42003,7 +37947,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446370,
"latitude": -24.71361,
"longitude": -53.74306,
"name": "Toledo",
@@ -42013,7 +37956,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445859,
"latitude": -21.12,
"longitude": -42.94278,
"name": "Ub\u00e1",
@@ -42023,7 +37965,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455729,
"latitude": -22.97889,
"longitude": -49.87056,
"name": "Ourinhos",
@@ -42033,7 +37974,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2043835,
"latitude": 41.39756,
"longitude": 128.17873,
"name": "Hyesan-dong",
@@ -42043,7 +37983,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3071961,
"latitude": 50.76711,
"longitude": 15.05619,
"name": "Liberec",
@@ -42053,7 +37992,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1839726,
"latitude": 36.78361,
"longitude": 127.00417,
"name": "Asan",
@@ -42063,7 +38001,6 @@
"country_code": "US",
"elevation": 1191,
"feature_code": "PPLA2",
- "geonameid": 5475352,
"latitude": 32.31232,
"longitude": -106.77834,
"name": "Las Cruces",
@@ -42073,7 +38010,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808212,
"latitude": 29.99472,
"longitude": 106.25722,
"name": "Hechuan",
@@ -42083,7 +38019,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270077,
"latitude": 20.56667,
"longitude": 78.83333,
"name": "Hingangh\u0101t",
@@ -42093,7 +38028,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2639272,
"latitude": 53.61766,
"longitude": -2.1552,
"name": "Rochdale",
@@ -42103,7 +38037,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446038,
"latitude": -16.64944,
"longitude": -49.48889,
"name": "Trindade",
@@ -42113,7 +38046,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471798,
"latitude": -23.41944,
"longitude": -51.42444,
"name": "Arapongas",
@@ -42123,7 +38055,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3723593,
"latitude": 18.65,
"longitude": -74.11667,
"name": "J\u00e9r\u00e9mie",
@@ -42133,9 +38064,8 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 229268,
- "latitude": -0.608,
- "longitude": 30.65,
+ "latitude": -0.60467,
+ "longitude": 30.64851,
"name": "Mbarara",
"population": 97500
},
@@ -42143,7 +38073,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 744562,
"latitude": 41.20488,
"longitude": 32.62768,
"name": "Karab\u00fck",
@@ -42153,7 +38082,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1788508,
"latitude": 27.80429,
"longitude": 114.93335,
"name": "Xinyu",
@@ -42163,7 +38091,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624725,
"latitude": 3.3,
"longitude": 117.63333,
"name": "Tarakan",
@@ -42173,7 +38100,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6176823,
"latitude": 43.4668,
"longitude": -80.51639,
"name": "Waterloo",
@@ -42183,7 +38109,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 4589387,
"latitude": 32.88856,
"longitude": -80.00751,
"name": "North Charleston",
@@ -42193,7 +38118,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2455516,
"latitude": 14.4586,
"longitude": -11.4352,
"name": "Kayes Ndi",
@@ -42203,7 +38127,6 @@
"country_code": "BH",
"elevation": 0,
"feature_code": "PPLS",
- "geonameid": 290332,
"latitude": 26.25722,
"longitude": 50.61194,
"name": "Al Mu\u1e29arraq",
@@ -42213,7 +38136,6 @@
"country_code": "US",
"elevation": 60,
"feature_code": "PPL",
- "geonameid": 4161438,
"latitude": 28.03947,
"longitude": -81.9498,
"name": "Lakeland",
@@ -42223,7 +38145,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 980921,
"latitude": -25.49768,
"longitude": 28.10065,
"name": "Mabopane",
@@ -42233,7 +38154,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1298987,
"latitude": 19.73333,
"longitude": 96.21667,
"name": "Pyinmana",
@@ -42243,7 +38163,6 @@
"country_code": "US",
"elevation": 1624,
"feature_code": "PPLA2",
- "geonameid": 5574991,
"latitude": 40.01499,
"longitude": -105.27055,
"name": "Boulder",
@@ -42253,7 +38172,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253166,
"latitude": 11.93975,
"longitude": 79.49244,
"name": "Villupuram",
@@ -42263,7 +38181,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861464,
"latitude": 32.84111,
"longitude": 130.04306,
"name": "Isahaya",
@@ -42273,7 +38190,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278931,
"latitude": 21.05,
"longitude": 75.06667,
"name": "Amalner",
@@ -42283,7 +38199,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1164216,
"latitude": 34.11988,
"longitude": 72.46987,
"name": "Sw\u0101bi",
@@ -42293,7 +38208,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1517945,
"latitude": 43.33333,
"longitude": 68.25,
"name": "Turkestan",
@@ -42303,7 +38217,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756987,
"latitude": 52.255,
"longitude": 6.16389,
"name": "Deventer",
@@ -42312,8 +38225,7 @@
{
"country_code": "CL",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3868192,
+ "feature_code": "PPLA3",
"latitude": -33.04222,
"longitude": -71.37333,
"name": "Villa Alemana",
@@ -42323,7 +38235,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111855,
"latitude": 35.41667,
"longitude": 140.3,
"name": "Mobara",
@@ -42333,7 +38244,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861450,
"latitude": 34.48333,
"longitude": 136.7,
"name": "Ise",
@@ -42343,7 +38253,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1614295,
"latitude": 12.93333,
"longitude": 100.88333,
"name": "Phatthaya",
@@ -42353,7 +38262,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277936,
"latitude": 16.18673,
"longitude": 75.69614,
"name": "Bagalkot",
@@ -42363,7 +38271,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1171965,
"latitude": 29.54051,
"longitude": 71.63357,
"name": "Lodhr\u0101n",
@@ -42373,7 +38280,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPL",
- "geonameid": 5392423,
"latitude": 37.56299,
"longitude": -122.32553,
"name": "San Mateo",
@@ -42383,7 +38289,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254780,
"latitude": 11.74778,
"longitude": 75.48833,
"name": "Thalassery",
@@ -42393,7 +38298,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 462755,
"latitude": 55.59528,
"longitude": 38.12028,
"name": "Zhukovskiy",
@@ -42403,7 +38307,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261848,
"latitude": 16.25,
"longitude": 80.06667,
"name": "Narasaraopet",
@@ -42413,7 +38316,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860635,
"latitude": 35.0,
"longitude": 135.58333,
"name": "Kameoka",
@@ -42423,7 +38325,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 665010,
"latitude": 45.05,
"longitude": 23.28333,
"name": "T\u00e2rgu Jiu",
@@ -42433,7 +38334,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3598529,
"latitude": 14.70833,
"longitude": -90.49944,
"name": "Chinautla",
@@ -42443,7 +38343,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2758602,
"latitude": 51.03167,
"longitude": 5.80972,
"name": "Born",
@@ -42452,8 +38351,7 @@
{
"country_code": "US",
"elevation": 285,
- "feature_code": "PPL",
- "geonameid": 4782167,
+ "feature_code": "PPLA2",
"latitude": 37.27097,
"longitude": -79.94143,
"name": "Roanoke",
@@ -42463,7 +38361,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811542,
"latitude": 39.69833,
"longitude": 115.9925,
"name": "Fangshan",
@@ -42473,7 +38370,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1312609,
"latitude": 20.15,
"longitude": 94.91667,
"name": "Magway",
@@ -42483,7 +38379,6 @@
"country_code": "US",
"elevation": 195,
"feature_code": "PPL",
- "geonameid": 4999837,
"latitude": 42.36837,
"longitude": -83.35271,
"name": "Livonia",
@@ -42493,7 +38388,6 @@
"country_code": "US",
"elevation": 164,
"feature_code": "PPLA2",
- "geonameid": 4738214,
"latitude": 32.35126,
"longitude": -95.30106,
"name": "Tyler",
@@ -42503,7 +38397,6 @@
"country_code": "US",
"elevation": 339,
"feature_code": "PPLA2",
- "geonameid": 4540737,
"latitude": 34.60869,
"longitude": -98.39033,
"name": "Lawton",
@@ -42513,7 +38406,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262216,
"latitude": 27.2,
"longitude": 73.73333,
"name": "N\u0101gaur",
@@ -42523,7 +38415,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7116866,
"latitude": -33.67571,
"longitude": -65.45783,
"name": "Villa Mercedes",
@@ -42533,7 +38424,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1912209,
"latitude": 37.58972,
"longitude": 127.22028,
"name": "Wabu",
@@ -42543,7 +38433,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPLA2",
- "geonameid": 5405878,
"latitude": 34.27834,
"longitude": -119.29317,
"name": "Ventura",
@@ -42553,7 +38442,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1341204,
"latitude": 33.99829,
"longitude": 71.99834,
"name": "Nowshera Cantonment",
@@ -42563,9 +38451,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 217695,
- "latitude": 1.56667,
- "longitude": 30.25,
+ "latitude": 1.55941,
+ "longitude": 30.25224,
"name": "Bunia",
"population": 96764
},
@@ -42573,7 +38460,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2694762,
"latitude": 58.41086,
"longitude": 15.62157,
"name": "Link\u00f6ping",
@@ -42583,7 +38469,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261631,
"latitude": 24.88333,
"longitude": 85.53333,
"name": "Naw\u0101da",
@@ -42593,7 +38478,6 @@
"country_code": "US",
"elevation": 1732,
"feature_code": "PPL",
- "geonameid": 5425043,
"latitude": 39.55388,
"longitude": -104.96943,
"name": "Highlands Ranch",
@@ -42603,7 +38487,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3117814,
"latitude": 43.0,
"longitude": -7.56667,
"name": "Lugo",
@@ -42613,7 +38496,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853209,
"latitude": 35.95694,
"longitude": 139.38889,
"name": "Sakado",
@@ -42623,7 +38505,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2834282,
"latitude": 53.62937,
"longitude": 11.41316,
"name": "Schwerin",
@@ -42633,7 +38514,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 750516,
"latitude": 40.73583,
"longitude": 31.60611,
"name": "Bolu",
@@ -42643,7 +38523,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 877747,
"latitude": -10.26667,
"longitude": 40.18333,
"name": "Mtwara",
@@ -42653,7 +38532,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471830,
"latitude": -18.64722,
"longitude": -48.18722,
"name": "Araguari",
@@ -42663,7 +38541,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3097333,
"latitude": 50.20528,
"longitude": 19.27498,
"name": "Jaworzno",
@@ -42673,7 +38550,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1560349,
"latitude": 21.7,
"longitude": 104.86667,
"name": "Y\u00ean B\u00e1i",
@@ -42683,7 +38559,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465342,
"latitude": -19.00917,
"longitude": -57.65333,
"name": "Corumb\u00e1",
@@ -42693,7 +38568,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5339066,
"latitude": 33.89585,
"longitude": -118.22007,
"name": "Compton",
@@ -42703,7 +38577,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3619194,
"latitude": 13.09185,
"longitude": -86.35384,
"name": "Estel\u00ed",
@@ -42713,7 +38586,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269557,
"latitude": 25.21667,
"longitude": 84.98333,
"name": "Jah\u0101n\u0101b\u0101d",
@@ -42723,7 +38595,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274868,
"latitude": 20.46667,
"longitude": 75.01667,
"name": "Ch\u0101lisgaon",
@@ -42733,7 +38604,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 727079,
"latitude": 42.68583,
"longitude": 26.32917,
"name": "Sliven",
@@ -42743,7 +38613,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2511388,
"latitude": 36.4759,
"longitude": -6.19817,
"name": "San Fernando",
@@ -42753,7 +38622,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2656192,
"latitude": 51.26249,
"longitude": -1.08708,
"name": "Basingstoke",
@@ -42763,7 +38631,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 273140,
"latitude": 33.98083,
"longitude": 35.61778,
"name": "Djounie",
@@ -42773,7 +38640,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 318675,
"latitude": 37.02472,
"longitude": 35.8175,
"name": "Ceyhan",
@@ -42783,7 +38649,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637546,
"latitude": 52.41426,
"longitude": -1.78094,
"name": "Solihull",
@@ -42793,7 +38658,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2299522,
"latitude": 6.09408,
"longitude": -0.25913,
"name": "Koforidua",
@@ -42803,7 +38667,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785036,
"latitude": 38.93417,
"longitude": 100.45167,
"name": "Zhangye",
@@ -42813,7 +38676,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2129101,
"latitude": 42.31722,
"longitude": 140.98806,
"name": "Muroran",
@@ -42823,7 +38685,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3121456,
"latitude": 41.98311,
"longitude": 2.82493,
"name": "Girona",
@@ -42833,7 +38694,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2913366,
"latitude": 51.9,
"longitude": 8.38333,
"name": "G\u00fctersloh",
@@ -42843,7 +38703,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 128447,
"latitude": 35.23831,
"longitude": 58.46558,
"name": "K\u0101shmar",
@@ -42853,7 +38712,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437842,
"latitude": -25.16611,
"longitude": -57.48562,
"name": "Limpio",
@@ -42863,7 +38721,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2980916,
"latitude": 48.93333,
"longitude": 2.36667,
"name": "Saint-Denis",
@@ -42873,7 +38730,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1136469,
"latitude": 33.33951,
"longitude": 69.92041,
"name": "Kh\u014dst",
@@ -42883,7 +38739,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275019,
"latitude": 25.58333,
"longitude": 83.98333,
"name": "Buxar",
@@ -42893,7 +38748,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2232444,
"latitude": 5.44559,
"longitude": 10.055,
"name": "Dschang",
@@ -42903,7 +38757,6 @@
"country_code": "BR",
"elevation": 786,
"feature_code": "PPL",
- "geonameid": 3464073,
"latitude": -27.63417,
"longitude": -52.27389,
"name": "Erechim",
@@ -42913,7 +38766,6 @@
"country_code": "CZ",
"elevation": 381,
"feature_code": "PPLA",
- "geonameid": 3077916,
"latitude": 48.97447,
"longitude": 14.47434,
"name": "\u010cesk\u00e9 Bud\u011bjovice",
@@ -42923,7 +38775,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 304854,
"latitude": 36.78667,
"longitude": 31.44306,
"name": "Manavgat",
@@ -42933,7 +38784,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1713014,
"latitude": 14.38694,
"longitude": 120.88167,
"name": "General Trias",
@@ -42943,7 +38793,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2318044,
"latitude": 9.2,
"longitude": 12.48333,
"name": "Yola",
@@ -42953,7 +38802,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2365560,
"latitude": 6.9,
"longitude": 0.63333,
"name": "Kpalim\u00e9",
@@ -42963,7 +38811,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278148,
"latitude": 24.75,
"longitude": 84.36667,
"name": "Aurang\u0101b\u0101d",
@@ -42973,7 +38820,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1625929,
"latitude": -2.08333,
"longitude": 101.38333,
"name": "Sungaipenuh",
@@ -42983,7 +38829,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257794,
"latitude": 25.25,
"longitude": 87.65,
"name": "S\u0101hibganj",
@@ -42992,20 +38837,18 @@
{
"country_code": "SY",
"elevation": 0,
- "feature_code": "PPLA3",
- "geonameid": 172503,
+ "feature_code": "PPLA2",
"latitude": 36.07696,
"longitude": 37.37251,
- "name": "As Saf\u012brah",
+ "name": "Saf\u012brah",
"population": 95832
},
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1802177,
- "latitude": 23.17422,
- "longitude": 112.28094,
+ "feature_code": "PPLA4",
+ "latitude": 23.17233,
+ "longitude": 112.28298,
"name": "Lubu",
"population": 95820
},
@@ -43013,7 +38856,6 @@
"country_code": "PL",
"elevation": 260,
"feature_code": "PPLA2",
- "geonameid": 3097391,
"latitude": 49.95542,
"longitude": 18.57479,
"name": "Jastrz\u0119bie Zdr\u00f3j",
@@ -43023,7 +38865,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1705536,
"latitude": 14.1798,
"longitude": 121.2234,
"name": "Los Ba\u00f1os",
@@ -43033,7 +38874,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2982681,
"latitude": 50.69421,
"longitude": 3.17456,
"name": "Roubaix",
@@ -43043,7 +38883,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260546,
"latitude": 17.66667,
"longitude": 75.33333,
"name": "Pandharpur",
@@ -43053,7 +38892,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3183072,
"latitude": 41.23063,
"longitude": 16.29087,
"name": "Andria",
@@ -43063,7 +38901,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1805408,
"latitude": 32.08982,
"longitude": 121.07355,
"name": "Jinsha",
@@ -43073,7 +38910,6 @@
"country_code": "US",
"elevation": 110,
"feature_code": "PPL",
- "geonameid": 5338122,
"latitude": 36.82523,
"longitude": -119.70292,
"name": "Clovis",
@@ -43083,7 +38919,6 @@
"country_code": "US",
"elevation": 135,
"feature_code": "PPL",
- "geonameid": 5338683,
"latitude": 36.86634,
"longitude": -119.62069,
"name": "Clovis",
@@ -43093,7 +38928,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3652881,
"latitude": 0.93333,
"longitude": -79.68333,
"name": "Propicia",
@@ -43103,7 +38937,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 361291,
"latitude": 27.25738,
"longitude": 33.81291,
"name": "Al Ghardaqah",
@@ -43113,7 +38946,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3171058,
"latitude": 45.04676,
"longitude": 9.69937,
"name": "Piacenza",
@@ -43123,7 +38955,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270090,
"latitude": 26.73411,
"longitude": 77.03519,
"name": "Hindaun",
@@ -43132,8 +38963,7 @@
{
"country_code": "US",
"elevation": 3,
- "feature_code": "PPL",
- "geonameid": 4779999,
+ "feature_code": "PPLA2",
"latitude": 36.83543,
"longitude": -76.29827,
"name": "Portsmouth",
@@ -43143,7 +38973,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786760,
"latitude": 31.37053,
"longitude": 119.87027,
"name": "Yicheng",
@@ -43153,7 +38982,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1811929,
"latitude": 23.23729,
"longitude": 111.53172,
"name": "Ducheng",
@@ -43163,9 +38991,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 217745,
- "latitude": 2.18333,
- "longitude": 22.46667,
+ "latitude": 2.18771,
+ "longitude": 22.46827,
"name": "Bumba",
"population": 95520
},
@@ -43173,7 +39000,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 585514,
"latitude": 40.76395,
"longitude": 47.05953,
"name": "Mingelchaur",
@@ -43183,17 +39009,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1795632,
"latitude": 29.95762,
"longitude": 122.29802,
- "name": "Shenjiamen Jiedao",
+ "name": "Shenjiamen",
"population": 95433
},
{
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 7647007,
"latitude": -41.14557,
"longitude": -71.30822,
"name": "San Carlos de Bariloche",
@@ -43203,7 +39027,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1181439,
"latitude": 34.14345,
"longitude": 71.73173,
"name": "Ch\u0101rsadda",
@@ -43213,7 +39036,6 @@
"country_code": "US",
"elevation": 160,
"feature_code": "PPL",
- "geonameid": 4706057,
"latitude": 33.04623,
"longitude": -96.99417,
"name": "Lewisville",
@@ -43223,7 +39045,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2123628,
"latitude": 59.56667,
"longitude": 150.8,
"name": "Magadan",
@@ -43233,7 +39054,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038274,
"latitude": 45.76667,
"longitude": 130.51667,
"name": "Boli",
@@ -43243,7 +39063,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2525059,
"latitude": 38.89079,
"longitude": 16.5987,
"name": "Catanzaro",
@@ -43253,7 +39072,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1789998,
"latitude": 30.16746,
"longitude": 120.25883,
"name": "Xiaoshan",
@@ -43263,7 +39081,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811720,
"latitude": 30.3,
"longitude": 109.48333,
"name": "Enshi",
@@ -43273,7 +39090,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3074967,
"latitude": 50.20923,
"longitude": 15.83277,
"name": "Hradec Kr\u00e1lov\u00e9",
@@ -43283,7 +39099,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460132,
"latitude": -22.64306,
"longitude": -43.65333,
"name": "Japeri",
@@ -43293,7 +39108,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3109642,
"latitude": 42.88052,
"longitude": -8.54569,
"name": "Santiago de Compostela",
@@ -43303,7 +39117,6 @@
"country_code": "US",
"elevation": 29,
"feature_code": "PPL",
- "geonameid": 4945121,
"latitude": 41.63622,
"longitude": -70.9342,
"name": "New Bedford",
@@ -43313,7 +39126,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2757345,
"latitude": 52.00667,
"longitude": 4.35556,
"name": "Delft",
@@ -43323,9 +39135,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 89570,
- "latitude": 37.14817,
- "longitude": 42.70008,
+ "latitude": 37.14805,
+ "longitude": 42.70355,
"name": "Z\u0101kh\u016b",
"population": 95052
},
@@ -43333,7 +39144,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 149129,
"latitude": -3.49194,
"longitude": 31.96389,
"name": "Ushirombo",
@@ -43343,7 +39153,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 250774,
"latitude": 29.52667,
"longitude": 35.00778,
"name": "Aqaba",
@@ -43353,7 +39162,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3980194,
"latitude": 19.25,
"longitude": -103.73333,
"name": "Villa de Alvarez",
@@ -43363,7 +39171,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3165072,
"latitude": 46.06194,
"longitude": 13.24222,
"name": "Udine",
@@ -43373,7 +39180,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2621942,
"latitude": 55.67938,
"longitude": 12.53463,
"name": "Frederiksberg",
@@ -43383,7 +39189,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 986083,
"latitude": -27.83333,
"longitude": 26.75,
"name": "Kutloanong",
@@ -43393,7 +39198,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2346995,
"latitude": 10.61285,
"longitude": 12.19458,
"name": "Biu",
@@ -43403,7 +39207,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2326302,
"latitude": 7.6,
"longitude": 4.18333,
"name": "Olupona",
@@ -43413,7 +39216,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 119374,
"latitude": 26.9581,
"longitude": 56.2719,
"name": "Qeshm",
@@ -43423,7 +39225,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3181913,
"latitude": 46.49272,
"longitude": 11.33358,
"name": "Bolzano - Bozen",
@@ -43433,7 +39234,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266928,
"latitude": 21.81667,
"longitude": 75.6,
"name": "Khargon",
@@ -43443,7 +39243,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6822146,
"latitude": 33.53567,
"longitude": 130.47861,
"name": "\u014cnoj\u014d",
@@ -43453,7 +39252,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860098,
"latitude": 36.55,
"longitude": 139.73333,
"name": "Kanuma",
@@ -43463,7 +39261,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 164947,
"latitude": 35.01127,
"longitude": 37.05324,
"name": "Salam\u012byah",
@@ -43473,7 +39270,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260290,
"latitude": 18.85,
"longitude": 76.53333,
"name": "Parli Vaijn\u0101th",
@@ -43483,7 +39279,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759899,
"latitude": 52.63167,
"longitude": 4.74861,
"name": "Alkmaar",
@@ -43493,17 +39288,15 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1710544,
- "latitude": 13.425,
- "longitude": 123.41778,
- "name": "Iriga",
+ "latitude": 13.4324,
+ "longitude": 123.4115,
+ "name": "Iriga City",
"population": 94846
},
{
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 726418,
"latitude": 43.56667,
"longitude": 27.83333,
"name": "Dobrich",
@@ -43513,7 +39306,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266489,
"latitude": 26.11667,
"longitude": 87.93333,
"name": "Kishanganj",
@@ -43523,7 +39315,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2034141,
"latitude": 44.91428,
"longitude": 127.15001,
"name": "Wuchang",
@@ -43533,7 +39324,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2154787,
"latitude": -34.88422,
"longitude": 150.60036,
"name": "Nowra",
@@ -43542,8 +39332,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 788709,
+ "feature_code": "PPLA2",
"latitude": 42.99806,
"longitude": 21.94611,
"name": "Leskovac",
@@ -43553,7 +39342,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445162,
"latitude": -19.69194,
"longitude": -43.92333,
"name": "Vespasiano",
@@ -43563,7 +39351,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 723819,
"latitude": 48.99839,
"longitude": 21.23393,
"name": "Pre\u0161ov",
@@ -43573,7 +39360,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6163012,
"latitude": 45.70004,
"longitude": -73.64732,
"name": "Terrebonne",
@@ -43583,7 +39369,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3467736,
"latitude": -25.45861,
"longitude": -49.52833,
"name": "Campo Largo",
@@ -43593,7 +39378,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437665,
"latitude": -25.3949,
"longitude": -57.53574,
"name": "Nemby",
@@ -43603,7 +39387,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 136014,
"latitude": 30.3586,
"longitude": 50.7981,
"name": "Do Gonbad\u0101n",
@@ -43613,7 +39396,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264292,
"latitude": 27.23333,
"longitude": 79.01667,
"name": "Mainpuri",
@@ -43623,7 +39405,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682516,
"latitude": 4.81367,
"longitude": -74.35453,
"name": "Facatativ\u00e1",
@@ -43633,7 +39414,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 256429,
"latitude": 37.96667,
"longitude": 23.65,
"name": "N\u00edkaia",
@@ -43643,7 +39423,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267084,
"latitude": 20.68333,
"longitude": 76.56667,
"name": "Kh\u0101mgaon",
@@ -43653,7 +39432,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 128321,
"latitude": 29.61949,
"longitude": 51.65415,
"name": "K\u0101zer\u016bn",
@@ -43663,7 +39441,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110498,
"latitude": 37.91667,
"longitude": 140.11667,
"name": "Yonezawa",
@@ -43673,7 +39450,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786378,
"latitude": 29.35139,
"longitude": 105.89472,
"name": "Yongchuan",
@@ -43683,7 +39459,6 @@
"country_code": "US",
"elevation": 35,
"feature_code": "PPL",
- "geonameid": 5397603,
"latitude": 33.95474,
"longitude": -118.21202,
"name": "South Gate",
@@ -43693,7 +39468,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647461,
"latitude": 51.77655,
"longitude": 0.11158,
"name": "Harlow",
@@ -43703,7 +39477,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 144616,
"latitude": 38.4774,
"longitude": 47.0699,
"name": "Ahar",
@@ -43713,7 +39486,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 307515,
"latitude": 39.14583,
"longitude": 34.16389,
"name": "K\u0131r\u015fehir",
@@ -43723,7 +39495,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789289,
"latitude": 24.96389,
"longitude": 118.37944,
"name": "Ximei",
@@ -43733,7 +39504,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3361025,
"latitude": -33.93462,
"longitude": 18.86676,
"name": "Stellenbosch",
@@ -43743,7 +39513,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262260,
"latitude": 10.76667,
"longitude": 79.83333,
"name": "N\u0101gappattinam",
@@ -43753,7 +39522,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1496511,
"latitude": 66.08333,
"longitude": 76.63333,
"name": "Novyy Urengoy",
@@ -43763,7 +39531,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1674199,
"latitude": 24.757,
"longitude": 121.753,
"name": "Yilan",
@@ -43773,17 +39540,24 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786455,
"latitude": 35.78472,
"longitude": 118.62806,
"name": "Yishui",
"population": 94115
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.48333,
+ "longitude": 13.31667,
+ "name": "Wilmersdorf",
+ "population": 94113
+ },
{
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3063548,
"latitude": 50.6607,
"longitude": 14.03227,
"name": "\u00dast\u00ed nad Labem",
@@ -43793,7 +39567,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005509,
"latitude": 22.75,
"longitude": -102.51667,
"name": "Guadalupe",
@@ -43803,7 +39576,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1567723,
"latitude": 13.45,
"longitude": 109.21667,
"name": "S\u00f4ng C\u1ea7u",
@@ -43813,7 +39585,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274213,
"latitude": 16.08333,
"longitude": 80.16667,
"name": "Chilakal\u016brupet",
@@ -43823,7 +39594,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2270503,
"latitude": 38.76698,
"longitude": -9.29793,
"name": "Cac\u00e9m",
@@ -43833,7 +39603,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270800,
"latitude": 12.94601,
"longitude": 78.87377,
"name": "Gudiyatham",
@@ -43843,7 +39612,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2556272,
"latitude": 33.26553,
"longitude": -7.58754,
"name": "Berrechid",
@@ -43853,7 +39621,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264206,
"latitude": 27.04361,
"longitude": 74.72445,
"name": "Makr\u0101na",
@@ -43863,7 +39630,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1176368,
"latitude": 32.63744,
"longitude": 74.21829,
"name": "Jal\u0101lpur",
@@ -43873,7 +39639,6 @@
"country_code": "US",
"elevation": 103,
"feature_code": "PPL",
- "geonameid": 4682464,
"latitude": 30.62798,
"longitude": -96.33441,
"name": "College Station",
@@ -43883,7 +39648,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112227,
"latitude": 39.28333,
"longitude": 141.11667,
"name": "Kitakami",
@@ -43893,7 +39657,6 @@
"country_code": "US",
"elevation": 333,
"feature_code": "PPL",
- "geonameid": 4221333,
"latitude": 33.92427,
"longitude": -84.37854,
"name": "Sandy Springs",
@@ -43903,7 +39666,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1538636,
"latitude": 57.24389,
"longitude": 60.08389,
"name": "Novoural\u2019sk",
@@ -43913,7 +39675,6 @@
"country_code": "US",
"elevation": 43,
"feature_code": "PPL",
- "geonameid": 4736476,
"latitude": 30.15799,
"longitude": -95.48938,
"name": "The Woodlands",
@@ -43923,7 +39684,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1538635,
"latitude": 56.25111,
"longitude": 93.53194,
"name": "Zheleznogorsk",
@@ -43933,7 +39693,6 @@
"country_code": "US",
"elevation": 100,
"feature_code": "PPL",
- "geonameid": 5406602,
"latitude": 33.20004,
"longitude": -117.24254,
"name": "Vista",
@@ -43943,7 +39702,6 @@
"country_code": "US",
"elevation": 35,
"feature_code": "PPL",
- "geonameid": 4931429,
"latitude": 42.08343,
"longitude": -71.01838,
"name": "Brockton",
@@ -43953,7 +39711,6 @@
"country_code": "US",
"elevation": 61,
"feature_code": "PPL",
- "geonameid": 5143620,
"latitude": 42.68313,
"longitude": -73.77845,
"name": "West Albany",
@@ -43963,7 +39720,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3646487,
"latitude": 10.17554,
"longitude": -70.08274,
"name": "Carora",
@@ -43973,7 +39729,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283318,
"latitude": 26.71828,
"longitude": 85.90646,
"name": "Janakpur",
@@ -43983,7 +39738,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3625542,
"latitude": 9.31778,
"longitude": -70.60361,
"name": "Valera",
@@ -43993,7 +39747,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6049430,
"latitude": 49.08297,
"longitude": -122.58589,
"name": "Langley",
@@ -44003,7 +39756,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1786112,
"latitude": 23.73333,
"longitude": 114.68333,
"name": "Heyuan",
@@ -44013,7 +39765,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1529626,
"latitude": 45.63333,
"longitude": 85.18333,
"name": "Baijiantan",
@@ -44023,7 +39774,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033135,
"latitude": 43.50639,
"longitude": 123.50639,
"name": "Zhengjiatun",
@@ -44033,7 +39783,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277214,
"latitude": 23.54109,
"longitude": 74.4425,
"name": "B\u0101nsw\u0101ra",
@@ -44043,7 +39792,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 333373,
"latitude": 11.08155,
"longitude": 39.74339,
"name": "Kombolcha",
@@ -44053,7 +39801,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3446692,
"latitude": -23.35556,
"longitude": -47.85694,
"name": "Tatu\u00ed",
@@ -44063,7 +39810,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1604870,
"latitude": 6.53995,
"longitude": 101.28128,
"name": "Yala",
@@ -44073,9 +39819,8 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1714674,
- "latitude": 8.58944,
- "longitude": 123.34139,
+ "latitude": 8.5883,
+ "longitude": 123.3409,
"name": "Dipolog",
"population": 93549
},
@@ -44083,7 +39828,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277044,
"latitude": 29.1,
"longitude": 77.26667,
"name": "Baraut",
@@ -44093,7 +39837,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258744,
"latitude": 12.71667,
"longitude": 77.3,
"name": "R\u0101managaram",
@@ -44103,7 +39846,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140918,
"latitude": 36.69235,
"longitude": 53.55262,
"name": "Behshahr",
@@ -44113,7 +39855,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 527191,
"latitude": 52.8978,
"longitude": 40.4907,
"name": "Michurinsk",
@@ -44123,7 +39864,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1562820,
"latitude": 21.30654,
"longitude": 105.41885,
"name": "Vi\u1ec7t Tr\u00ec",
@@ -44133,7 +39873,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3833883,
"latitude": -43.24895,
"longitude": -65.30505,
"name": "Trelew",
@@ -44143,7 +39882,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2934486,
"latitude": 50.8,
"longitude": 6.48333,
"name": "D\u00fcren",
@@ -44153,7 +39891,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626183,
"latitude": -6.76028,
"longitude": 108.48306,
"name": "Sumber",
@@ -44163,7 +39900,6 @@
"country_code": "US",
"elevation": 121,
"feature_code": "PPL",
- "geonameid": 5373763,
"latitude": 33.60002,
"longitude": -117.672,
"name": "Mission Viejo",
@@ -44173,7 +39909,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037930,
"latitude": 45.5,
"longitude": 124.3,
"name": "Dalai",
@@ -44183,7 +39918,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2332079,
"latitude": 10.38697,
"longitude": 8.57262,
"name": "Lere",
@@ -44193,7 +39927,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 302525,
"latitude": 39.57716,
"longitude": 32.14132,
"name": "Polatl\u0131",
@@ -44203,7 +39936,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2656173,
"latitude": 51.37795,
"longitude": -2.35907,
"name": "Bath",
@@ -44213,7 +39945,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284836,
"latitude": 47.44417,
"longitude": 19.17595,
"name": "Budapest XVIII. ker\u00fclet",
@@ -44223,7 +39954,6 @@
"country_code": "US",
"elevation": 562,
"feature_code": "PPLA2",
- "geonameid": 5530022,
"latitude": 31.46377,
"longitude": -100.43704,
"name": "San Angelo",
@@ -44233,7 +39963,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268293,
"latitude": 22.98333,
"longitude": 88.48333,
"name": "Kalyani",
@@ -44243,7 +39972,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038154,
"latitude": 40.21861,
"longitude": 116.21972,
"name": "Changping",
@@ -44253,7 +39981,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2520611,
"latitude": 39.47649,
"longitude": -6.37224,
"name": "C\u00e1ceres",
@@ -44263,7 +39990,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1246294,
"latitude": 6.0367,
"longitude": 80.217,
"name": "Galle",
@@ -44273,7 +39999,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 952192,
"latitude": -26.84493,
"longitude": 26.76829,
"name": "Stilfontein",
@@ -44283,7 +40008,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2754652,
"latitude": 50.88365,
"longitude": 5.98154,
"name": "Heerlen",
@@ -44293,7 +40017,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1696899,
"latitude": 8.14583,
"longitude": 123.84444,
"name": "Ozamis",
@@ -44303,7 +40026,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2073124,
"latitude": -12.46113,
"longitude": 130.84185,
"name": "Darwin",
@@ -44313,7 +40035,6 @@
"country_code": "US",
"elevation": 43,
"feature_code": "PPLA2",
- "geonameid": 5322053,
"latitude": 32.72532,
"longitude": -114.6244,
"name": "Yuma",
@@ -44323,7 +40044,6 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 233114,
"latitude": 0.43902,
"longitude": 33.20317,
"name": "Jinja",
@@ -44333,7 +40053,6 @@
"country_code": "NC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2139521,
"latitude": -22.27631,
"longitude": 166.4572,
"name": "Noum\u00e9a",
@@ -44343,7 +40062,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637343,
"latitude": 53.64779,
"longitude": -3.00648,
"name": "Southport",
@@ -44353,7 +40071,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255254,
"latitude": 14.91667,
"longitude": 78.01667,
"name": "T\u0101dpatri",
@@ -44363,7 +40080,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1621395,
"latitude": -7.36,
"longitude": 109.9025,
"name": "Wonosobo",
@@ -44373,7 +40089,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 548605,
"latitude": 57.43914,
"longitude": 42.12894,
"name": "Kineshma",
@@ -44383,7 +40098,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 751335,
"latitude": 41.56778,
"longitude": 35.90694,
"name": "Bafra",
@@ -44393,7 +40107,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130452,
"latitude": 42.81944,
"longitude": 141.65222,
"name": "Chitose",
@@ -44403,7 +40116,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3893532,
"latitude": -37.01667,
"longitude": -73.13333,
"name": "Coronel",
@@ -44413,7 +40125,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2318921,
"latitude": 7.85,
"longitude": 9.78333,
"name": "Wukari",
@@ -44423,7 +40134,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 542374,
"latitude": 55.82036,
"longitude": 37.33017,
"name": "Krasnogorsk",
@@ -44433,7 +40143,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2792482,
"latitude": 50.87959,
"longitude": 4.70093,
"name": "Leuven",
@@ -44443,7 +40152,6 @@
"country_code": "US",
"elevation": 1425,
"feature_code": "PPLA2",
- "geonameid": 5577592,
"latitude": 40.42331,
"longitude": -104.70913,
"name": "Greeley",
@@ -44453,7 +40161,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3546791,
"latitude": 20.65694,
"longitude": -74.94028,
"name": "Moa",
@@ -44463,7 +40170,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1803841,
"latitude": 24.78111,
"longitude": 112.3825,
"name": "Lianzhou",
@@ -44473,7 +40179,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2146268,
"latitude": -27.56056,
"longitude": 151.95386,
"name": "Toowoomba",
@@ -44483,7 +40188,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 740483,
"latitude": 41.02083,
"longitude": 40.52194,
"name": "Rize",
@@ -44493,7 +40197,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2504622,
"latitude": 36.52389,
"longitude": 2.86131,
"name": "Beni Mered",
@@ -44503,7 +40206,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338669,
"latitude": 7.43333,
"longitude": 3.28333,
"name": "Igbo Ora",
@@ -44513,7 +40215,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2231506,
"latitude": 5.7291,
"longitude": 10.90011,
"name": "Foumban",
@@ -44523,7 +40224,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 346030,
"latitude": 30.7142,
"longitude": 31.24425,
"name": "Zift\u00e1",
@@ -44533,7 +40233,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267911,
"latitude": 31.37944,
"longitude": 75.38472,
"name": "Kap\u016brthala",
@@ -44543,17 +40242,24 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860765,
"latitude": 34.45,
"longitude": 135.35,
"name": "Kaizuka",
"population": 92632
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLL",
+ "latitude": 53.36797,
+ "longitude": -1.84536,
+ "name": "High Peak",
+ "population": 92600
+ },
{
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1633056,
"latitude": -6.70694,
"longitude": 108.42417,
"name": "Palimanan",
@@ -44563,7 +40269,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3392887,
"latitude": -7.02444,
"longitude": -37.28,
"name": "Patos",
@@ -44573,7 +40278,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2451478,
"latitude": 13.4317,
"longitude": -6.2157,
"name": "S\u00e9gou",
@@ -44583,7 +40287,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 664518,
"latitude": 45.16667,
"longitude": 28.8,
"name": "Tulcea",
@@ -44593,7 +40296,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857766,
"latitude": 35.45,
"longitude": 135.33333,
"name": "Maizuru",
@@ -44603,7 +40305,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3832694,
"latitude": -32.40751,
"longitude": -63.24016,
"name": "Villa Mar\u00eda",
@@ -44613,7 +40314,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1150954,
"latitude": 13.53671,
"longitude": 99.81712,
"name": "Ratchaburi",
@@ -44623,7 +40323,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632978,
"latitude": -7.1568,
"longitude": 113.4746,
"name": "Pamekasan",
@@ -44633,7 +40332,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3670745,
"latitude": 11.54444,
"longitude": -72.90722,
"name": "R\u00edohacha",
@@ -44643,7 +40341,6 @@
"country_code": "US",
"elevation": 53,
"feature_code": "PPL",
- "geonameid": 5405228,
"latitude": 38.35658,
"longitude": -121.98774,
"name": "Vacaville",
@@ -44653,7 +40350,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPL",
- "geonameid": 5799625,
"latitude": 47.38093,
"longitude": -122.23484,
"name": "Kent",
@@ -44663,7 +40359,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2745641,
"latitude": 51.37,
"longitude": 6.16806,
"name": "Venlo",
@@ -44673,7 +40368,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99369,
"latitude": 30.71861,
"longitude": 47.72083,
"name": "Al H\u0101rithah",
@@ -44683,7 +40377,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2928751,
"latitude": 48.73961,
"longitude": 9.30473,
"name": "Esslingen",
@@ -44693,7 +40386,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1697018,
"latitude": 11.00639,
"longitude": 124.6075,
"name": "Ormoc",
@@ -44703,7 +40395,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1632823,
"latitude": -6.3084,
"longitude": 106.1067,
"name": "Pandeglang",
@@ -44713,7 +40404,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283467,
"latitude": 28.70792,
"longitude": 80.59611,
"name": "Dhangarhi",
@@ -44723,7 +40413,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812621,
"latitude": 36.77667,
"longitude": 121.15972,
"name": "Dongcun",
@@ -44733,7 +40422,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 4948247,
"latitude": 42.25288,
"longitude": -71.00227,
"name": "Quincy",
@@ -44743,7 +40431,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272513,
"latitude": 24.25,
"longitude": 72.16667,
"name": "D\u012bsa",
@@ -44753,7 +40440,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 7260806,
"latitude": 38.6025,
"longitude": -121.37854,
"name": "Arden-Arcade",
@@ -44763,7 +40449,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1632334,
"latitude": -0.61898,
"longitude": 100.11997,
"name": "Pariaman",
@@ -44773,7 +40458,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1639215,
"latitude": -6.8048,
"longitude": 110.8405,
"name": "Kudus",
@@ -44783,7 +40467,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1277557,
"latitude": 19.83333,
"longitude": 79.35,
"name": "Ball\u0101lpur",
@@ -44793,7 +40476,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907307,
"latitude": 35.32528,
"longitude": 139.89111,
"name": "Kimitsu",
@@ -44803,7 +40485,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3518723,
"latitude": 18.1,
"longitude": -96.11667,
"name": "San Juan Bautista Tuxtepec",
@@ -44813,7 +40494,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 315498,
"latitude": 37.51333,
"longitude": 34.04672,
"name": "Ere\u011fli",
@@ -44823,7 +40503,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1266366,
"latitude": 25.66667,
"longitude": 94.11667,
"name": "Koh\u012bma",
@@ -44833,7 +40512,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182340,
"latitude": 41.31183,
"longitude": 16.29077,
"name": "Barletta",
@@ -44843,7 +40521,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1011031,
"latitude": -26.1466,
"longitude": 28.68322,
"name": "Delmas",
@@ -44853,7 +40530,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3685084,
"latitude": 5.8245,
"longitude": -73.03408,
"name": "Duitama",
@@ -44863,7 +40539,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 309647,
"latitude": 39.71944,
"longitude": 43.05139,
"name": "A\u011fr\u0131",
@@ -44873,7 +40548,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813828,
"latitude": 32.54278,
"longitude": 111.50861,
"name": "Danjiangkou",
@@ -44883,7 +40557,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4152820,
"latitude": 26.06287,
"longitude": -80.2331,
"name": "Davie",
@@ -44893,7 +40566,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276389,
"latitude": 21.91528,
"longitude": 77.89611,
"name": "Bet\u016bl",
@@ -44903,7 +40575,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 315530,
"latitude": 39.02869,
"longitude": 43.35864,
"name": "Erci\u015f",
@@ -44913,7 +40584,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2657970,
"latitude": 47.5,
"longitude": 8.75,
"name": "Winterthur",
@@ -44923,7 +40593,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267885,
"latitude": 10.06667,
"longitude": 78.78333,
"name": "K\u0101raikkudi",
@@ -44933,7 +40602,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2514891,
"latitude": 37.67119,
"longitude": -1.7017,
"name": "Lorca",
@@ -44943,7 +40611,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 571170,
"latitude": 54.5378,
"longitude": 52.7985,
"name": "Bugul\u2019ma",
@@ -44953,7 +40620,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 157403,
"latitude": -6.83333,
"longitude": 36.98333,
"name": "Kilosa",
@@ -44963,7 +40629,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1647298,
"latitude": -6.70611,
"longitude": 106.82139,
"name": "Caringin",
@@ -44973,7 +40638,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1720034,
"latitude": 14.91639,
"longitude": 120.76583,
"name": "Calumpit",
@@ -44983,7 +40647,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608527,
"latitude": 15.70472,
"longitude": 100.13717,
"name": "Nakhon Sawan",
@@ -44993,7 +40656,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863627,
"latitude": 26.26265,
"longitude": 127.76147,
"name": "Ginowan",
@@ -45003,7 +40665,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 705135,
"latitude": 51.24032,
"longitude": 33.20263,
"name": "Konotop",
@@ -45013,7 +40674,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1784310,
"latitude": 24.51667,
"longitude": 103.76667,
"name": "Zhongshu",
@@ -45023,7 +40683,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283562,
"latitude": 27.70055,
"longitude": 83.44836,
"name": "Butw\u0101l",
@@ -45033,7 +40692,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446445,
"latitude": -19.5825,
"longitude": -42.64444,
"name": "Tim\u00f3teo",
@@ -45043,7 +40701,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 5334519,
"latitude": 33.83141,
"longitude": -118.28202,
"name": "Carson",
@@ -45053,7 +40710,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806960,
"latitude": 21.63333,
"longitude": 110.58333,
"name": "Huazhou",
@@ -45062,8 +40718,7 @@
{
"country_code": "GR",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 736083,
+ "feature_code": "PPLA3",
"latitude": 40.5825,
"longitude": 22.95028,
"name": "Kalamari\u00e1",
@@ -45073,7 +40728,6 @@
"country_code": "US",
"elevation": 59,
"feature_code": "PPLA2",
- "geonameid": 5731371,
"latitude": 45.52289,
"longitude": -122.98983,
"name": "Hillsboro",
@@ -45083,7 +40737,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2850174,
"latitude": 51.29724,
"longitude": 6.84929,
"name": "Ratingen",
@@ -45093,7 +40746,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182884,
"latitude": 43.46139,
"longitude": 11.87691,
"name": "Arezzo",
@@ -45103,7 +40755,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2972284,
"latitude": 50.72391,
"longitude": 3.16117,
"name": "Tourcoing",
@@ -45113,7 +40764,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1000501,
"latitude": -33.30422,
"longitude": 26.53276,
"name": "Grahamstown",
@@ -45123,7 +40773,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1802476,
"latitude": 24.67192,
"longitude": 102.1613,
"name": "Longquan",
@@ -45133,7 +40782,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1571067,
"latitude": 11.56667,
"longitude": 108.98333,
"name": "Phan Rang-Th\u00e1p Ch\u00e0m",
@@ -45143,7 +40791,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786855,
"latitude": 37.15,
"longitude": 122.38333,
"name": "Yatou",
@@ -45153,7 +40800,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2751792,
"latitude": 53.20139,
"longitude": 5.80859,
"name": "Leeuwarden",
@@ -45163,7 +40809,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036075,
"latitude": 41.24,
"longitude": 119.40111,
"name": "Lingyuan",
@@ -45173,7 +40818,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2873263,
"latitude": 51.65,
"longitude": 7.08333,
"name": "Marl",
@@ -45183,7 +40827,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3175081,
"latitude": 44.11054,
"longitude": 9.84339,
"name": "La Spezia",
@@ -45193,7 +40836,6 @@
"country_code": "US",
"elevation": 316,
"feature_code": "PPL",
- "geonameid": 4394870,
"latitude": 38.91084,
"longitude": -94.38217,
"name": "Lees Summit",
@@ -45203,7 +40845,6 @@
"country_code": "US",
"elevation": 112,
"feature_code": "PPLA2",
- "geonameid": 4207400,
"latitude": 32.84069,
"longitude": -83.6324,
"name": "Macon",
@@ -45213,7 +40854,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2790869,
"latitude": 50.45413,
"longitude": 3.95229,
"name": "Mons",
@@ -45223,7 +40863,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 705104,
"latitude": 48.5277,
"longitude": 37.7069,
"name": "Kostyantynivka",
@@ -45233,7 +40872,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPL",
- "geonameid": 4718097,
"latitude": 29.56357,
"longitude": -95.28605,
"name": "Pearland",
@@ -45243,7 +40881,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277643,
"latitude": 20.71667,
"longitude": 83.48333,
"name": "Bal\u0101ng\u012br",
@@ -45253,7 +40890,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3665542,
"latitude": 5.02208,
"longitude": -74.00481,
"name": "Zipaquir\u00e1",
@@ -45263,7 +40899,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456500,
"latitude": -21.13056,
"longitude": -42.36639,
"name": "Muria\u00e9",
@@ -45273,7 +40908,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811764,
"latitude": 26.26667,
"longitude": 107.51667,
"name": "Duyun",
@@ -45283,7 +40917,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3171173,
"latitude": 43.90357,
"longitude": 12.89026,
"name": "Pesaro",
@@ -45293,7 +40926,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3467978,
"latitude": -23.27583,
"longitude": -51.27833,
"name": "Camb\u00e9",
@@ -45303,7 +40935,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798821,
"latitude": 36.78444,
"longitude": 119.94639,
"name": "Pingdu",
@@ -45313,7 +40944,6 @@
"country_code": "US",
"elevation": 326,
"feature_code": "PPLA2",
- "geonameid": 5816605,
"latitude": 46.60207,
"longitude": -120.5059,
"name": "Yakima",
@@ -45323,7 +40953,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516035,
"latitude": 18.85,
"longitude": -99.23333,
"name": "Temixco",
@@ -45333,7 +40962,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3405940,
"latitude": -7.125,
"longitude": -34.93222,
"name": "Bayeux",
@@ -45343,7 +40971,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 912764,
"latitude": -10.21289,
"longitude": 31.18084,
"name": "Kasama",
@@ -45353,7 +40980,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 143921,
"latitude": 33.40063,
"longitude": 49.6949,
"name": "Al\u012bg\u016bdarz",
@@ -45363,7 +40989,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 303827,
"latitude": 37.96583,
"longitude": 34.67935,
"name": "Ni\u011fde",
@@ -45373,7 +40998,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2706767,
"latitude": 56.04673,
"longitude": 12.69437,
"name": "Helsingborg",
@@ -45383,7 +41007,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2875107,
"latitude": 51.61667,
"longitude": 7.51667,
"name": "L\u00fcnen",
@@ -45393,7 +41016,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1565022,
"latitude": 10.96667,
"longitude": 106.65,
"name": "Th\u1ee7 D\u1ea7u M\u1ed9t",
@@ -45403,7 +41025,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3178957,
"latitude": 44.1391,
"longitude": 12.24315,
"name": "Cesena",
@@ -45413,7 +41034,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853992,
"latitude": 34.41667,
"longitude": 133.2,
"name": "Onomichi",
@@ -45423,7 +41043,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 5808189,
"latitude": 47.48288,
"longitude": -122.21707,
"name": "Renton",
@@ -45432,10 +41051,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1810309,
- "latitude": 32.78583,
- "longitude": 119.42778,
+ "feature_code": "PPLA3",
+ "latitude": 32.78933,
+ "longitude": 119.44182,
"name": "Gaoyou",
"population": 90911
},
@@ -45443,7 +41061,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 741855,
"latitude": 41.40385,
"longitude": 27.35918,
"name": "Luleburgaz",
@@ -45453,7 +41070,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2643179,
"latitude": 51.26667,
"longitude": 0.51667,
"name": "Maidstone",
@@ -45463,7 +41079,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1307741,
"latitude": 25.38333,
"longitude": 97.4,
"name": "Myitkyin\u0101",
@@ -45473,7 +41088,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785777,
"latitude": 38.29056,
"longitude": 109.74944,
"name": "Yulin",
@@ -45483,7 +41097,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1327659,
"latitude": 20.88333,
"longitude": 94.81667,
"name": "Chauk",
@@ -45493,7 +41106,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470073,
"latitude": -29.17139,
"longitude": -51.51917,
"name": "Bento Gon\u00e7alves",
@@ -45503,7 +41115,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3467081,
"latitude": -23.62028,
"longitude": -45.41306,
"name": "Caraguatatuba",
@@ -45513,7 +41124,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1308937,
"latitude": 22.91667,
"longitude": 96.5,
"name": "Mogok",
@@ -45523,9 +41133,8 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4012406,
- "latitude": 28.41667,
- "longitude": -106.86667,
+ "latitude": 28.40884,
+ "longitude": -106.86319,
"name": "Cuauht\u00e9moc",
"population": 90835
},
@@ -45533,7 +41142,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1897122,
"latitude": 37.63667,
"longitude": 127.21417,
"name": "Yanggok",
@@ -45543,7 +41151,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3159016,
"latitude": 59.74389,
"longitude": 10.20449,
"name": "Drammen",
@@ -45553,7 +41160,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1337249,
"latitude": 24.43333,
"longitude": 90.76667,
"name": "Kishorganj",
@@ -45563,7 +41169,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2992090,
"latitude": 48.86415,
"longitude": 2.44322,
"name": "Montreuil",
@@ -45573,7 +41178,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343299,
"latitude": 7.43614,
"longitude": 5.45932,
"name": "Emure-Ekiti",
@@ -45583,7 +41187,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808879,
"latitude": 36.77083,
"longitude": 119.21083,
"name": "Hanting",
@@ -45593,7 +41196,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273403,
"latitude": 25.66667,
"longitude": 78.46667,
"name": "Datia",
@@ -45603,7 +41205,6 @@
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2774326,
"latitude": 46.62472,
"longitude": 14.30528,
"name": "Klagenfurt am W\u00f6rthersee",
@@ -45613,7 +41214,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3165456,
"latitude": 40.78392,
"longitude": 14.3708,
"name": "Torre del Greco",
@@ -45623,7 +41223,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1816269,
"latitude": 23.89972,
"longitude": 106.61333,
"name": "Baicheng",
@@ -45633,7 +41232,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1792592,
"latitude": 27.71722,
"longitude": 109.18528,
"name": "Tongren",
@@ -45643,7 +41241,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 347634,
"latitude": 26.7693,
"longitude": 31.50214,
"name": "\u0162ah\u0163\u0101",
@@ -45653,7 +41250,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 737961,
"latitude": 40.77667,
"longitude": 29.72972,
"name": "K\u00f6rfez",
@@ -45663,7 +41259,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 537737,
"latitude": 53.11675,
"longitude": 46.60037,
"name": "Kuznetsk",
@@ -45673,7 +41268,6 @@
"country_code": "US",
"elevation": 68,
"feature_code": "PPLA2",
- "geonameid": 4094455,
"latitude": 33.20984,
"longitude": -87.56917,
"name": "Tuscaloosa",
@@ -45683,7 +41277,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 349717,
"latitude": 28.31214,
"longitude": 30.71007,
"name": "Sam\u0101l\u016b\u0163",
@@ -45693,7 +41286,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1789462,
"latitude": 31.68636,
"longitude": 113.46585,
"name": "Xihe",
@@ -45703,7 +41295,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3460791,
"latitude": -24.18306,
"longitude": -46.78889,
"name": "Itanha\u00e9m",
@@ -45713,7 +41304,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253472,
"latitude": 10.32691,
"longitude": 76.95116,
"name": "Valparai",
@@ -45723,7 +41313,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 4942807,
"latitude": 42.46676,
"longitude": -70.94949,
"name": "Lynn",
@@ -45733,7 +41322,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265891,
"latitude": 9.17167,
"longitude": 77.86989,
"name": "Kovilpatti",
@@ -45743,7 +41331,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253437,
"latitude": 12.68162,
"longitude": 78.62014,
"name": "Vaniyambadi",
@@ -45753,7 +41340,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3124408,
"latitude": 40.42378,
"longitude": -3.56129,
"name": "Coslada",
@@ -45763,7 +41349,6 @@
"country_code": "US",
"elevation": 1345,
"feature_code": "PPL",
- "geonameid": 5512862,
"latitude": 39.53491,
"longitude": -119.75269,
"name": "Sparks",
@@ -45773,7 +41358,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1811829,
"latitude": 30.67,
"longitude": 112.68952,
"name": "Duobao",
@@ -45783,7 +41367,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 548395,
"latitude": 58.55386,
"longitude": 50.03986,
"name": "Kirovo-Chepetsk",
@@ -45793,7 +41376,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1510350,
"latitude": 54.7551,
"longitude": 83.0967,
"name": "Berdsk",
@@ -45803,7 +41385,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 335035,
"latitude": 9.30944,
"longitude": 42.12583,
"name": "H\u0101rer",
@@ -45813,7 +41394,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 941966,
"latitude": -24.88333,
"longitude": 28.28333,
"name": "Warmbaths",
@@ -45823,7 +41403,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3429594,
"latitude": -29.15,
"longitude": -59.65,
"name": "Reconquista",
@@ -45833,7 +41412,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276191,
"latitude": 21.16667,
"longitude": 79.65,
"name": "Bhand\u0101ra",
@@ -45843,7 +41421,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2704620,
"latitude": 59.23705,
"longitude": 17.98192,
"name": "Huddinge",
@@ -45853,7 +41430,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794140,
"latitude": 35.64889,
"longitude": 117.27583,
"name": "Sishui",
@@ -45863,7 +41439,6 @@
"country_code": "US",
"elevation": 971,
"feature_code": "PPL",
- "geonameid": 5356576,
"latitude": 34.42639,
"longitude": -117.30088,
"name": "Hesperia",
@@ -45873,7 +41448,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5882873,
"latitude": 43.85012,
"longitude": -79.03288,
"name": "Ajax",
@@ -45883,7 +41457,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1804578,
"latitude": 37.17167,
"longitude": 119.92139,
"name": "Weichanglu",
@@ -45893,7 +41466,6 @@
"country_code": "IE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2962943,
"latitude": 52.66472,
"longitude": -8.62306,
"name": "Luimneach",
@@ -45903,7 +41475,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 704202,
"latitude": 48.13954,
"longitude": 38.93715,
"name": "Krasnyy Luch",
@@ -45913,7 +41484,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258099,
"latitude": 18.43333,
"longitude": 73.11667,
"name": "Roha",
@@ -45923,27 +41493,15 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3174741,
"latitude": 41.73212,
"longitude": 12.27654,
"name": "Lido di Roma",
"population": 90000
},
- {
- "country_code": "RO",
- "elevation": 280,
- "feature_code": "PPL",
- "geonameid": 6697994,
- "latitude": 44.92142,
- "longitude": 25.45575,
- "name": "Targoviste",
- "population": 90000
- },
{
"country_code": "MQ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3570675,
"latitude": 14.60892,
"longitude": -61.07334,
"name": "Fort-de-France",
@@ -45953,7 +41511,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337148,
"latitude": 6.37831,
"longitude": 8.03524,
"name": "Isieke",
@@ -45963,7 +41520,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933778,
"latitude": -21.16995,
"longitude": 27.50788,
"name": "Francistown",
@@ -45973,7 +41529,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807695,
"latitude": 33.43333,
"longitude": 115.03333,
"name": "Huaidian",
@@ -45983,7 +41538,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854093,
"latitude": 32.92139,
"longitude": 129.95389,
"name": "\u014cmura",
@@ -45993,7 +41547,6 @@
"country_code": "US",
"elevation": 172,
"feature_code": "PPLA2",
- "geonameid": 5570160,
"latitude": 40.58654,
"longitude": -122.39168,
"name": "Redding",
@@ -46003,7 +41556,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262578,
"latitude": 30.48333,
"longitude": 74.51667,
"name": "Muktsar",
@@ -46013,7 +41565,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1229989,
"latitude": 9.81667,
"longitude": 80.23333,
"name": "Point Pedro",
@@ -46023,7 +41574,6 @@
"country_code": "US",
"elevation": 58,
"feature_code": "PPL",
- "geonameid": 5713376,
"latitude": 45.48706,
"longitude": -122.80371,
"name": "Beaverton",
@@ -46033,7 +41583,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3035681,
"latitude": 43.94834,
"longitude": 4.80892,
"name": "Avignon",
@@ -46043,7 +41592,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 561887,
"latitude": 59.57639,
"longitude": 30.12833,
"name": "Gatchina",
@@ -46053,7 +41601,6 @@
"country_code": "US",
"elevation": 615,
"feature_code": "PPL",
- "geonameid": 5811729,
"latitude": 47.67323,
"longitude": -117.23937,
"name": "Spokane Valley",
@@ -46063,7 +41610,6 @@
"country_code": "US",
"elevation": 32,
"feature_code": "PPL",
- "geonameid": 5393212,
"latitude": 34.01945,
"longitude": -118.49119,
"name": "Santa Monica",
@@ -46073,7 +41619,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849519,
"latitude": 35.05,
"longitude": 134.0,
"name": "Tsuyama",
@@ -46083,7 +41628,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 5408406,
"latitude": 33.75918,
"longitude": -118.00673,
"name": "Westminster",
@@ -46093,7 +41637,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449936,
"latitude": -30.89083,
"longitude": -55.53278,
"name": "Santana do Livramento",
@@ -46103,7 +41646,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3170647,
"latitude": 43.71553,
"longitude": 10.39659,
"name": "Pisa",
@@ -46113,7 +41655,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445782,
"latitude": -23.76639,
"longitude": -53.325,
"name": "Umuarama",
@@ -46123,7 +41664,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3625207,
"latitude": 10.08,
"longitude": -69.12611,
"name": "Yaritagua",
@@ -46133,9 +41673,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 219057,
- "latitude": 0.5,
- "longitude": 29.46667,
+ "latitude": 0.49113,
+ "longitude": 29.47306,
"name": "Beni",
"population": 89648
},
@@ -46143,7 +41682,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1814870,
"latitude": 29.31506,
"longitude": 120.07676,
"name": "Yiwu",
@@ -46153,7 +41691,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1303406,
"latitude": 17.95,
"longitude": 96.73333,
"name": "Nyaunglebin",
@@ -46163,7 +41700,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797658,
"latitude": 24.81978,
"longitude": 118.57414,
"name": "Jinjiang",
@@ -46173,7 +41709,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 203112,
"latitude": -2.59667,
"longitude": 29.73944,
"name": "Butare",
@@ -46183,7 +41718,6 @@
"country_code": "US",
"elevation": 1452,
"feature_code": "PPLX",
- "geonameid": 5781070,
"latitude": 40.58106,
"longitude": -111.85077,
"name": "Sandy Hills",
@@ -46193,7 +41727,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1170425,
"latitude": 32.5741,
"longitude": 71.52639,
"name": "Mi\u0101nw\u0101li",
@@ -46203,7 +41736,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3183719,
"latitude": 40.46667,
"longitude": 19.48972,
"name": "Vlor\u00eb",
@@ -46213,7 +41745,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264735,
"latitude": 25.18333,
"longitude": 86.08333,
"name": "Luckeesarai",
@@ -46223,7 +41754,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3472518,
"latitude": -25.32472,
"longitude": -49.31,
"name": "Almirante Tamandar\u00e9",
@@ -46233,7 +41763,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276901,
"latitude": 25.75,
"longitude": 71.38333,
"name": "B\u0101rmer",
@@ -46243,7 +41772,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262453,
"latitude": 28.78333,
"longitude": 77.5,
"name": "Mur\u0101dnagar",
@@ -46253,7 +41781,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 163345,
"latitude": 34.88902,
"longitude": 35.88659,
"name": "Tartouss",
@@ -46263,7 +41790,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037375,
"latitude": 47.26,
"longitude": 132.03222,
"name": "Fujin",
@@ -46273,7 +41799,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3619136,
"latitude": 11.92988,
"longitude": -85.95602,
"name": "Granada",
@@ -46283,7 +41808,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254432,
"latitude": 27.5,
"longitude": 95.36667,
"name": "Tinsukia",
@@ -46293,7 +41817,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 286647,
"latitude": 24.17222,
"longitude": 56.88861,
"name": "\u015ea\u1e29am",
@@ -46303,7 +41826,6 @@
"country_code": "US",
"elevation": 141,
"feature_code": "PPL",
- "geonameid": 5794245,
"latitude": 47.32232,
"longitude": -122.31262,
"name": "Federal Way",
@@ -46313,7 +41835,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1807687,
"latitude": 23.90513,
"longitude": 112.19314,
"name": "Huaicheng",
@@ -46323,7 +41844,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256739,
"latitude": 23.28333,
"longitude": 81.35,
"name": "Shahdol",
@@ -46333,7 +41853,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861084,
"latitude": 35.36667,
"longitude": 132.76667,
"name": "Izumo",
@@ -46343,7 +41862,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841775,
"latitude": 34.97528,
"longitude": 127.58917,
"name": "Kwangyang",
@@ -46353,7 +41871,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2644487,
"latitude": 53.22683,
"longitude": -0.53792,
"name": "Lincoln",
@@ -46363,7 +41880,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3720824,
"latitude": 18.44232,
"longitude": -73.08758,
"name": "Mirago\u00e2ne",
@@ -46373,7 +41889,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263694,
"latitude": 11.11667,
"longitude": 76.11667,
"name": "Manjeri",
@@ -46383,7 +41898,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734815,
"latitude": 2.5228,
"longitude": 101.7959,
"name": "Port Dickson",
@@ -46393,7 +41907,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264359,
"latitude": 25.28333,
"longitude": 79.86667,
"name": "Mahoba",
@@ -46403,7 +41916,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 149703,
"latitude": -7.96667,
"longitude": 31.61667,
"name": "Sumbawanga",
@@ -46413,7 +41925,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1308415,
"latitude": 16.25778,
"longitude": 97.71639,
"name": "Mudon",
@@ -46423,7 +41934,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1802068,
"latitude": 31.23357,
"longitude": 117.28057,
"name": "Lucheng",
@@ -46433,7 +41943,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808744,
"latitude": 33.76806,
"longitude": 120.25167,
"name": "Hede",
@@ -46443,7 +41952,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 650224,
"latitude": 62.89238,
"longitude": 27.67703,
"name": "Kuopio",
@@ -46453,7 +41961,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647356,
"latitude": 50.85519,
"longitude": 0.57292,
"name": "Hastings",
@@ -46463,7 +41970,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3181528,
"latitude": 40.62773,
"longitude": 17.93682,
"name": "Brindisi",
@@ -46473,7 +41979,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3625515,
"latitude": 9.21554,
"longitude": -66.00734,
"name": "Valle de La Pascua",
@@ -46483,7 +41988,6 @@
"country_code": "US",
"elevation": 199,
"feature_code": "PPLA2",
- "geonameid": 4915734,
"latitude": 42.36363,
"longitude": -87.84479,
"name": "Waukegan",
@@ -46493,7 +41997,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1151254,
"latitude": 7.89059,
"longitude": 98.3981,
"name": "Phuket",
@@ -46503,7 +42006,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195506,
"latitude": 46.55472,
"longitude": 15.64667,
"name": "Maribor",
@@ -46513,7 +42015,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1836553,
"latitude": 38.20833,
"longitude": 128.59111,
"name": "Sogcho",
@@ -46523,7 +42024,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650232,
"latitude": -8.19,
"longitude": 114.9675,
"name": "Banjar",
@@ -46533,7 +42033,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 303750,
"latitude": 37.0778,
"longitude": 41.2178,
"name": "Nusaybin",
@@ -46543,7 +42042,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214658,
"latitude": 5.1801,
"longitude": 97.1507,
"name": "Lhokseumawe",
@@ -46553,7 +42051,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1646893,
"latitude": -6.78139,
"longitude": 106.7825,
"name": "Cicurug",
@@ -46563,7 +42060,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6955345,
"latitude": -25.90432,
"longitude": 153.09174,
"name": "Rainbow Beach",
@@ -46573,7 +42069,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804162,
"latitude": 26.4111,
"longitude": 111.59559,
"name": "Lengshuitan",
@@ -46583,7 +42078,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2010985,
"latitude": -7.55194,
"longitude": 110.73778,
"name": "Kartasura",
@@ -46593,7 +42087,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1296736,
"latitude": 22.56667,
"longitude": 95.7,
"name": "Shwebo",
@@ -46603,7 +42096,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 302043,
"latitude": 38.48258,
"longitude": 28.14774,
"name": "Salihli",
@@ -46613,7 +42105,6 @@
"country_code": "US",
"elevation": 33,
"feature_code": "PPL",
- "geonameid": 4936159,
"latitude": 41.70149,
"longitude": -71.15505,
"name": "Fall River",
@@ -46623,7 +42114,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2510693,
"latitude": 39.96348,
"longitude": -4.83076,
"name": "Talavera de la Reina",
@@ -46633,7 +42123,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453420,
"latitude": -15.45278,
"longitude": -47.61417,
"name": "Planaltina",
@@ -46643,7 +42132,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 747471,
"latitude": 41.28262,
"longitude": 31.41806,
"name": "Ere\u011fli",
@@ -46653,7 +42141,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682274,
"latitude": 4.33646,
"longitude": -74.36378,
"name": "Fusagasuga",
@@ -46663,7 +42150,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1701872,
"latitude": 16.07,
"longitude": 120.4025,
"name": "Mangaldan",
@@ -46673,7 +42159,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 4504476,
"latitude": 39.95373,
"longitude": -74.19792,
"name": "Toms River",
@@ -46683,7 +42168,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3401545,
"latitude": -7.23417,
"longitude": -39.40944,
"name": "Crato",
@@ -46693,7 +42177,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3427213,
"latitude": -34.09814,
"longitude": -59.02858,
"name": "Z\u00e1rate",
@@ -46703,7 +42186,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185209,
"latitude": 24.38333,
"longitude": 91.41667,
"name": "Habiganj",
@@ -46713,7 +42195,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3068582,
"latitude": 50.04075,
"longitude": 15.77659,
"name": "Pardubice",
@@ -46723,7 +42204,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2034221,
"latitude": 43.32179,
"longitude": 129.76342,
"name": "Wangqing",
@@ -46733,7 +42213,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284843,
"latitude": 47.51291,
"longitude": 19.03184,
"name": "Budapest II. ker\u00fclet",
@@ -46743,7 +42222,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3839479,
"latitude": -31.25033,
"longitude": -61.4867,
"name": "Rafaela",
@@ -46753,7 +42231,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1344069,
"latitude": 21.77861,
"longitude": 87.75361,
"name": "Contai",
@@ -46763,7 +42240,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2911007,
"latitude": 50.13333,
"longitude": 8.91667,
"name": "Hanau am Main",
@@ -46773,7 +42249,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445578,
"latitude": -22.97056,
"longitude": -46.99583,
"name": "Valinhos",
@@ -46783,7 +42258,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3910027,
"latitude": -17.33333,
"longitude": -63.25,
"name": "Montero",
@@ -46793,7 +42267,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257402,
"latitude": 30.23333,
"longitude": 75.83333,
"name": "Sangr\u016br",
@@ -46803,7 +42276,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3943423,
"latitude": -11.94306,
"longitude": -76.70944,
"name": "Chosica",
@@ -46813,7 +42285,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864985,
"latitude": 34.72807,
"longitude": 135.30264,
"name": "Ashiya",
@@ -46823,7 +42294,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1181611,
"latitude": 30.9236,
"longitude": 66.45116,
"name": "Chaman",
@@ -46833,7 +42303,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2447938,
"latitude": 17.0187,
"longitude": 8.0168,
"name": "Alaghsas",
@@ -46843,7 +42312,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3700563,
"latitude": 9.08333,
"longitude": -79.38333,
"name": "Tocumen",
@@ -46853,7 +42321,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861171,
"latitude": 34.7,
"longitude": 137.85,
"name": "Iwata",
@@ -46863,7 +42330,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 711390,
"latitude": 50.51809,
"longitude": 30.80671,
"name": "Brovary",
@@ -46873,7 +42339,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858794,
"latitude": 36.05,
"longitude": 139.51667,
"name": "K\u014dnosu",
@@ -46883,7 +42348,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1175021,
"latitude": 28.24396,
"longitude": 69.18235,
"name": "Kandhkot",
@@ -46893,9 +42357,8 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 665024,
- "latitude": 44.93333,
- "longitude": 25.45,
+ "latitude": 44.92543,
+ "longitude": 25.4567,
"name": "T\u00e2rgovi\u015fte",
"population": 88435
},
@@ -46903,7 +42366,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 109953,
"latitude": 20.01288,
"longitude": 41.46767,
"name": "Al B\u0101\u1e29ah",
@@ -46913,7 +42375,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3388376,
"latitude": -8.00222,
"longitude": -35.01833,
"name": "S\u00e3o Louren\u00e7o da Mata",
@@ -46923,7 +42384,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPLA2",
- "geonameid": 5392952,
"latitude": 34.42083,
"longitude": -119.69819,
"name": "Santa Barbara",
@@ -46933,7 +42393,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456147,
"latitude": -19.98556,
"longitude": -43.84667,
"name": "Nova Lima",
@@ -46943,7 +42402,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283095,
"latitude": 28.91667,
"longitude": 80.33333,
"name": "Mahendranagar",
@@ -46953,7 +42411,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1639925,
"latitude": -6.70944,
"longitude": 108.44,
"name": "Klangenan",
@@ -46963,7 +42420,6 @@
"country_code": "US",
"elevation": 328,
"feature_code": "PPL",
- "geonameid": 4219934,
"latitude": 34.02316,
"longitude": -84.36159,
"name": "Roswell",
@@ -46973,7 +42429,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1654379,
"latitude": 15.11667,
"longitude": 105.78333,
"name": "Pakx\u00e9",
@@ -46983,7 +42438,6 @@
"country_code": "US",
"elevation": 1455,
"feature_code": "PPL",
- "geonameid": 5779334,
"latitude": 40.2969,
"longitude": -111.69465,
"name": "Orem",
@@ -46993,7 +42447,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3686279,
"latitude": 11.00703,
"longitude": -74.24765,
"name": "Ci\u00e9naga",
@@ -47003,7 +42456,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468879,
"latitude": -27.09806,
"longitude": -48.9175,
"name": "Brusque",
@@ -47013,7 +42465,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338876,
"latitude": 6.81437,
"longitude": 3.19575,
"name": "Ifo",
@@ -47023,7 +42474,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3184081,
"latitude": 42.06828,
"longitude": 19.51258,
"name": "Shkod\u00ebr",
@@ -47033,7 +42483,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259440,
"latitude": 10.65825,
"longitude": 77.0085,
"name": "Pollachi",
@@ -47043,7 +42492,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273265,
"latitude": 29.7,
"longitude": 77.68333,
"name": "Deoband",
@@ -47053,7 +42501,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3193935,
"latitude": 45.55111,
"longitude": 18.69389,
"name": "Osijek",
@@ -47063,7 +42510,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856293,
"latitude": 34.61667,
"longitude": 136.08333,
"name": "Nabari",
@@ -47073,7 +42519,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 306112,
"latitude": 37.45517,
"longitude": 35.81573,
"name": "Kozan",
@@ -47083,7 +42528,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261470,
"latitude": 8.4,
"longitude": 77.08333,
"name": "Neyy\u0101ttinkara",
@@ -47093,7 +42537,6 @@
"country_code": "US",
"elevation": 93,
"feature_code": "PPLA2",
- "geonameid": 5207728,
"latitude": 40.33565,
"longitude": -75.92687,
"name": "Reading",
@@ -47103,7 +42546,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255024,
"latitude": 26.55,
"longitude": 82.65,
"name": "T\u0101nd\u0101",
@@ -47113,7 +42555,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1177042,
"latitude": 29.71222,
"longitude": 72.55528,
"name": "H\u0101silpur",
@@ -47123,7 +42564,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 498525,
"latitude": 54.93583,
"longitude": 43.32352,
"name": "Sarov",
@@ -47133,7 +42573,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1730225,
"latitude": 15.1505,
"longitude": 120.7697,
"name": "Arayat",
@@ -47143,7 +42582,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785566,
"latitude": 34.16278,
"longitude": 113.46389,
"name": "Yuzhou",
@@ -47153,7 +42591,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 119161,
"latitude": 35.1664,
"longitude": 47.8045,
"name": "Qorveh",
@@ -47163,7 +42600,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 296562,
"latitude": 39.82,
"longitude": 34.80444,
"name": "Yozgat",
@@ -47172,18 +42608,16 @@
{
"country_code": "SY",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 172374,
+ "feature_code": "PPLA2",
"latitude": 35.84688,
"longitude": 38.54427,
- "name": "Ath Thawrah",
+ "name": "Thawrah",
"population": 87880
},
{
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2232283,
"latitude": 2.9,
"longitude": 11.15,
"name": "\u00c9bolowa",
@@ -47193,7 +42627,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6138517,
"latitude": 45.27271,
"longitude": -66.06766,
"name": "Saint John",
@@ -47203,7 +42636,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6104111,
"latitude": 43.90012,
"longitude": -79.13289,
"name": "Pickering",
@@ -47213,7 +42645,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1685218,
"latitude": 9.78389,
"longitude": 125.48889,
"name": "Surigao",
@@ -47223,7 +42654,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 161616,
"latitude": 39.51075,
"longitude": 54.36713,
"name": "Balkanabat",
@@ -47233,7 +42663,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 466885,
"latitude": 46.7055,
"longitude": 38.2739,
"name": "Yeysk",
@@ -47243,7 +42672,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 749780,
"latitude": 40.14556,
"longitude": 26.40639,
"name": "\u00c7anakkale",
@@ -47253,7 +42681,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4164143,
"latitude": 25.79065,
"longitude": -80.13005,
"name": "Miami Beach",
@@ -47263,7 +42690,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5907990,
"latitude": 43.1334,
"longitude": -80.26636,
"name": "Brantford",
@@ -47273,7 +42699,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3628053,
"latitude": 9.91152,
"longitude": -67.35381,
"name": "San Juan de los Morros",
@@ -47283,7 +42708,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808977,
"latitude": 30.65,
"longitude": 113.76667,
"name": "Hanchuan",
@@ -47293,7 +42717,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636816,
"latitude": -6.83611,
"longitude": 108.22778,
"name": "Majalengka",
@@ -47303,7 +42726,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 570427,
"latitude": 52.7807,
"longitude": 52.2635,
"name": "Buzuluk",
@@ -47313,7 +42735,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2518207,
"latitude": 36.59389,
"longitude": -6.23298,
"name": "El Puerto de Santa Mar\u00eda",
@@ -47323,7 +42744,6 @@
"country_code": "SL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2406407,
"latitude": 8.88333,
"longitude": -12.05,
"name": "Makeni",
@@ -47333,7 +42753,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2817724,
"latitude": 51.33333,
"longitude": 7.05,
"name": "Velbert",
@@ -47343,7 +42762,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470691,
"latitude": -22.47,
"longitude": -43.82556,
"name": "Barra do Pira\u00ed",
@@ -47353,7 +42771,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 373141,
"latitude": 11.01667,
"longitude": 29.71667,
"name": "Kadugli",
@@ -47363,7 +42780,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 690688,
"latitude": 48.74838,
"longitude": 30.22184,
"name": "Uman\u2019",
@@ -47373,7 +42789,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797535,
"latitude": 20.00583,
"longitude": 110.35417,
"name": "Qiongshan",
@@ -47383,7 +42798,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3841490,
"latitude": -33.88995,
"longitude": -60.57357,
"name": "Pergamino",
@@ -47393,7 +42807,6 @@
"country_code": "US",
"elevation": 263,
"feature_code": "PPLA2",
- "geonameid": 4274277,
"latitude": 38.97167,
"longitude": -95.23525,
"name": "Lawrence",
@@ -47403,7 +42816,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 202217,
"latitude": -2.07444,
"longitude": 29.75667,
"name": "Gitarama",
@@ -47413,7 +42825,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2875392,
"latitude": 48.89731,
"longitude": 9.19161,
"name": "Ludwigsburg",
@@ -47423,7 +42834,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790471,
"latitude": 27.73333,
"longitude": 112.53333,
"name": "Xiangxiang",
@@ -47433,7 +42843,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1812981,
"latitude": 30.54485,
"longitude": 119.9599,
"name": "Deqing",
@@ -47443,7 +42852,6 @@
"country_code": "SL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2407660,
"latitude": 8.41667,
"longitude": -10.83333,
"name": "Koidu",
@@ -47453,7 +42861,6 @@
"country_code": "US",
"elevation": 1610,
"feature_code": "PPL",
- "geonameid": 5487811,
"latitude": 35.23338,
"longitude": -106.66447,
"name": "Rio Rancho",
@@ -47463,7 +42870,6 @@
"country_code": "US",
"elevation": 1500,
"feature_code": "PPL",
- "geonameid": 7839240,
"latitude": 35.33676,
"longitude": -106.59296,
"name": "Enchanted Hills",
@@ -47473,7 +42879,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277084,
"latitude": 25.1,
"longitude": 76.51667,
"name": "B\u0101r\u0101n",
@@ -47483,7 +42888,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471374,
"latitude": -22.66167,
"longitude": -50.41222,
"name": "Assis",
@@ -47493,17 +42897,24 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6076211,
"latitude": 46.11594,
"longitude": -64.80186,
"name": "Moncton",
"population": 87467
},
+ {
+ "country_code": "US",
+ "elevation": 1361,
+ "feature_code": "PPL",
+ "latitude": 40.57204,
+ "longitude": -111.86056,
+ "name": "Sandy City",
+ "population": 87461
+ },
{
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 302819,
"latitude": 39.23361,
"longitude": 42.86344,
"name": "Patnos",
@@ -47513,7 +42924,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1783683,
"latitude": 30.12108,
"longitude": 104.64811,
"name": "Yanjiang",
@@ -47523,7 +42933,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1184370,
"latitude": 30.29399,
"longitude": 73.07354,
"name": "\u0100rifw\u0101la",
@@ -47533,7 +42942,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2358946,
"latitude": 12.25,
"longitude": -2.36667,
"name": "Koudougou",
@@ -47543,7 +42951,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3097257,
"latitude": 50.89973,
"longitude": 15.72899,
"name": "Jelenia G\u00f3ra",
@@ -47553,7 +42960,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 727233,
"latitude": 43.27064,
"longitude": 26.92286,
"name": "Shumen",
@@ -47563,7 +42969,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338630,
"latitude": 7.66676,
"longitude": 5.13205,
"name": "Igede-Ekiti",
@@ -47573,7 +42978,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035746,
"latitude": 45.55,
"longitude": 131.88333,
"name": "Mishan",
@@ -47583,7 +42987,6 @@
"country_code": "BR",
"elevation": 102,
"feature_code": "PPL",
- "geonameid": 3472638,
"latitude": -29.78306,
"longitude": -55.79194,
"name": "Alegrete",
@@ -47593,7 +42996,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035601,
"latitude": 49.18333,
"longitude": 125.21667,
"name": "Nenjiang",
@@ -47603,7 +43005,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2651513,
"latitude": 54.52429,
"longitude": -1.55039,
"name": "Darlington",
@@ -47613,7 +43014,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1730713,
"latitude": 14.5266,
"longitude": 121.1536,
"name": "Angono",
@@ -47623,7 +43023,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468215,
"latitude": -23.36417,
"longitude": -46.74056,
"name": "Caieiras",
@@ -47633,7 +43032,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2643734,
"latitude": 54.99721,
"longitude": -7.30917,
"name": "Londonderry County Borough",
@@ -47643,7 +43041,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272997,
"latitude": 20.70722,
"longitude": 81.54972,
"name": "Dhamtari",
@@ -47653,7 +43050,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254385,
"latitude": 11.38016,
"longitude": 77.89444,
"name": "Tiruchengode",
@@ -47663,7 +43059,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3629965,
"latitude": 10.95796,
"longitude": -63.84906,
"name": "Porlamar",
@@ -47673,7 +43068,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 380129,
"latitude": 14.0012,
"longitude": 32.3116,
"name": "Ad Diwem",
@@ -47683,7 +43077,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2239862,
"latitude": -9.54015,
"longitude": 16.34096,
"name": "Malanje",
@@ -47693,7 +43086,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3634922,
"latitude": 10.21844,
"longitude": -67.33017,
"name": "La Victoria",
@@ -47703,7 +43095,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647428,
"latitude": 53.99078,
"longitude": -1.5373,
"name": "Harrogate",
@@ -47713,7 +43104,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274106,
"latitude": 15.81667,
"longitude": 80.35,
"name": "Ch\u012br\u0101la",
@@ -47723,7 +43113,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2457163,
"latitude": 16.27167,
"longitude": -0.04472,
"name": "Gao",
@@ -47733,7 +43122,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 558146,
"latitude": 51.28167,
"longitude": 37.54583,
"name": "Gubkin",
@@ -47743,7 +43131,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2392897,
"latitude": 6.63869,
"longitude": 1.71674,
"name": "Lokossa",
@@ -47753,7 +43140,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343985,
"latitude": 6.62917,
"longitude": 8.05925,
"name": "Effium",
@@ -47763,7 +43149,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268988,
"latitude": 23.75,
"longitude": 86.4,
"name": "Jharia",
@@ -47773,7 +43158,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3696378,
"latitude": -9.53333,
"longitude": -77.53333,
"name": "Huaraz",
@@ -47783,7 +43167,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279094,
"latitude": 21.09639,
"longitude": 77.05861,
"name": "Akot",
@@ -47793,7 +43176,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1182829,
"latitude": 31.2,
"longitude": 73.95,
"name": "Bh\u0101i Pheru",
@@ -47803,7 +43185,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1601579,
"latitude": 7.20411,
"longitude": 100.54508,
"name": "Ban Mai",
@@ -47813,7 +43194,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 981827,
"latitude": -23.04385,
"longitude": 29.90319,
"name": "Louis Trichardt",
@@ -47823,7 +43203,6 @@
"country_code": "US",
"elevation": 207,
"feature_code": "PPL",
- "geonameid": 4987990,
"latitude": 42.30865,
"longitude": -83.48216,
"name": "Canton",
@@ -47833,7 +43212,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258803,
"latitude": 30.48306,
"longitude": 76.595,
"name": "R\u0101jpura",
@@ -47843,7 +43221,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264588,
"latitude": 15.3,
"longitude": 73.95,
"name": "Madgaon",
@@ -47853,7 +43230,6 @@
"country_code": "PR",
"elevation": 65,
"feature_code": "PPL",
- "geonameid": 4563008,
"latitude": 18.23412,
"longitude": -66.0485,
"name": "Caguas",
@@ -47863,7 +43239,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 4161785,
"latitude": 26.62535,
"longitude": -81.6248,
"name": "Lehigh Acres",
@@ -47873,7 +43248,6 @@
"country_code": "US",
"elevation": 52,
"feature_code": "PPL",
- "geonameid": 5119347,
"latitude": 41.03288,
"longitude": -73.84291,
"name": "Greenburgh",
@@ -47883,7 +43257,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794825,
"latitude": 35.17111,
"longitude": 118.82889,
"name": "Shizilu",
@@ -47893,7 +43266,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3036572,
"latitude": 48.91667,
"longitude": 2.28333,
"name": "Asni\u00e8res-sur-Seine",
@@ -47903,7 +43275,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1250161,
"latitude": 7.7102,
"longitude": 81.6924,
"name": "Batticaloa",
@@ -47913,7 +43284,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2990970,
"latitude": 48.89198,
"longitude": 2.20675,
"name": "Nanterre",
@@ -47923,7 +43293,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3666640,
"latitude": 1.79861,
"longitude": -78.81556,
"name": "Tumaco",
@@ -47933,7 +43302,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2647400,
"latitude": 54.68611,
"longitude": -1.2125,
"name": "Hartlepool",
@@ -47943,7 +43311,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 569742,
"latitude": 56.76864,
"longitude": 54.11484,
"name": "Chaykovskiy",
@@ -47953,7 +43320,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110480,
"latitude": 35.65,
"longitude": 140.16667,
"name": "Yotsukaid\u014d",
@@ -47963,7 +43329,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 201521,
"latitude": -1.49984,
"longitude": 29.63497,
"name": "Ruhengeri",
@@ -47973,7 +43338,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257198,
"latitude": 28.44062,
"longitude": 74.491,
"name": "Sard\u0101rshahr",
@@ -47983,7 +43347,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263247,
"latitude": 11.10354,
"longitude": 79.655,
"name": "Mayiladuthurai",
@@ -47993,7 +43356,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2656046,
"latitude": 52.13459,
"longitude": -0.46632,
"name": "Bedford",
@@ -48003,7 +43365,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358600,
"latitude": 29.14816,
"longitude": 31.12733,
"name": "B\u016bsh",
@@ -48013,7 +43374,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648451,
"latitude": -7.1502,
"longitude": 111.8817,
"name": "Bojonegoro",
@@ -48023,7 +43383,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784929,
"latitude": 39.76667,
"longitude": 118.4,
"name": "Zhaogezhuang",
@@ -48033,7 +43392,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792578,
"latitude": 41.03111,
"longitude": 21.34028,
"name": "Bitola",
@@ -48043,7 +43401,6 @@
"country_code": "KW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 285815,
"latitude": 29.2775,
"longitude": 47.95861,
"name": "Al Farw\u0101n\u012byah",
@@ -48053,7 +43410,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3124569,
"latitude": 41.35,
"longitude": 2.08333,
"name": "Cornell\u00e0 de Llobregat",
@@ -48063,7 +43419,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1680007,
"latitude": 10.9,
"longitude": 123.07778,
"name": "Victorias City",
@@ -48073,7 +43428,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863293,
"latitude": 34.8,
"longitude": 137.78333,
"name": "Hamakita",
@@ -48083,7 +43437,6 @@
"country_code": "US",
"elevation": 49,
"feature_code": "PPL",
- "geonameid": 5090046,
"latitude": 42.76537,
"longitude": -71.46757,
"name": "Nashua",
@@ -48093,7 +43446,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2339150,
"latitude": 7.1127,
"longitude": 5.1159,
"name": "Idanre",
@@ -48103,7 +43455,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3398352,
"latitude": -7.83417,
"longitude": -34.90639,
"name": "Igarassu",
@@ -48113,7 +43464,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3689798,
"latitude": 7.88299,
"longitude": -76.62587,
"name": "Apartad\u00f3",
@@ -48123,7 +43473,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1684497,
"latitude": 9.6475,
"longitude": 123.85556,
"name": "Tagbilaran",
@@ -48133,7 +43482,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1670310,
"latitude": 23.96639,
"longitude": 120.96952,
"name": "Buli",
@@ -48143,7 +43491,6 @@
"country_code": "US",
"elevation": 134,
"feature_code": "PPL",
- "geonameid": 4356050,
"latitude": 39.17316,
"longitude": -77.27165,
"name": "Germantown",
@@ -48153,7 +43500,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3672328,
"latitude": 6.98789,
"longitude": -73.04953,
"name": "Piedecuesta",
@@ -48163,9 +43509,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2312888,
- "latitude": -5.25,
- "longitude": 14.86667,
+ "latitude": -5.25837,
+ "longitude": 14.85838,
"name": "Mbanza-Ngungu",
"population": 86356
},
@@ -48173,7 +43518,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863482,
"latitude": 36.13333,
"longitude": 139.45,
"name": "Gy\u014dda",
@@ -48183,7 +43527,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3118848,
"latitude": 40.49292,
"longitude": -3.87371,
"name": "Las Rozas de Madrid",
@@ -48193,7 +43536,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3058531,
"latitude": 48.30763,
"longitude": 18.08453,
"name": "Nitra",
@@ -48203,7 +43545,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3842670,
"latitude": -36.89272,
"longitude": -60.32254,
"name": "Olavarr\u00eda",
@@ -48213,7 +43554,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1280281,
"latitude": 31.16667,
"longitude": 97.23333,
"name": "Qamdo",
@@ -48223,7 +43563,6 @@
"country_code": "US",
"elevation": 1519,
"feature_code": "PPL",
- "geonameid": 5579276,
"latitude": 40.16721,
"longitude": -105.10193,
"name": "Longmont",
@@ -48233,7 +43572,6 @@
"country_code": "US",
"elevation": 214,
"feature_code": "PPLA2",
- "geonameid": 5024719,
"latitude": 46.78327,
"longitude": -92.10658,
"name": "Duluth",
@@ -48243,7 +43581,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863183,
"latitude": 35.85194,
"longitude": 139.31806,
"name": "Hann\u014d",
@@ -48253,7 +43590,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1514402,
"latitude": 40.22083,
"longitude": 69.26972,
"name": "Bekobod",
@@ -48263,7 +43599,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 712441,
"latitude": 49.89928,
"longitude": 28.60235,
"name": "Berdychiv",
@@ -48273,7 +43608,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2005237,
"latitude": -7.82694,
"longitude": 110.32917,
"name": "Kasihan",
@@ -48283,7 +43617,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268205,
"latitude": 21.23333,
"longitude": 79.2,
"name": "K\u0101mthi",
@@ -48293,7 +43626,6 @@
"country_code": "US",
"elevation": 134,
"feature_code": "PPL",
- "geonameid": 4111410,
"latitude": 35.38592,
"longitude": -94.39855,
"name": "Fort Smith",
@@ -48303,7 +43635,6 @@
"country_code": "US",
"elevation": 60,
"feature_code": "PPL",
- "geonameid": 5336269,
"latitude": 39.72849,
"longitude": -121.83748,
"name": "Chico",
@@ -48313,7 +43644,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859908,
"latitude": 37.36667,
"longitude": 138.55,
"name": "Kashiwazaki",
@@ -48323,7 +43653,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2513076,
"latitude": 38.08483,
"longitude": -0.94401,
"name": "Orihuela",
@@ -48332,10 +43661,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1800088,
- "latitude": 23.74344,
- "longitude": 111.79593,
+ "feature_code": "PPLA4",
+ "latitude": 23.72695,
+ "longitude": 111.79723,
"name": "Nanfeng",
"population": 86129
},
@@ -48343,7 +43671,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1813171,
"latitude": 29.12944,
"longitude": 110.47833,
"name": "Zhangjiajie",
@@ -48353,7 +43680,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140097,
"latitude": 29.2666,
"longitude": 51.2159,
"name": "Bor\u0101zj\u0101n",
@@ -48363,7 +43689,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2324767,
"latitude": 11.7091,
"longitude": 11.0694,
"name": "Potiskum",
@@ -48372,8 +43697,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 787595,
+ "feature_code": "PPLA3",
"latitude": 43.13667,
"longitude": 20.51222,
"name": "Novi Pazar",
@@ -48383,7 +43707,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3056508,
"latitude": 49.22315,
"longitude": 18.73941,
"name": "\u017dilina",
@@ -48393,7 +43716,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 918702,
"latitude": -13.63333,
"longitude": 32.65,
"name": "Chipata",
@@ -48403,7 +43725,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2986495,
"latitude": 46.58333,
"longitude": 0.33333,
"name": "Poitiers",
@@ -48413,7 +43734,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2334652,
"latitude": 8.84861,
"longitude": 7.87361,
"name": "Keffi",
@@ -48423,7 +43743,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2014022,
"latitude": 52.75194,
"longitude": 103.64528,
"name": "Usol\u2019ye-Sibirskoye",
@@ -48433,7 +43752,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3532592,
"latitude": 18.90815,
"longitude": -98.43613,
"name": "Atlixco",
@@ -48443,7 +43761,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 328689,
"latitude": 7.2,
"longitude": 38.6,
"name": "Shashemen\u0113",
@@ -48453,7 +43770,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260393,
"latitude": 20.31667,
"longitude": 86.61667,
"name": "Par\u0101d\u012bp Garh",
@@ -48463,7 +43779,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2926271,
"latitude": 54.78333,
"longitude": 9.43333,
"name": "Flensburg",
@@ -48473,7 +43788,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111258,
"latitude": 35.9,
"longitude": 140.18333,
"name": "Ry\u016bgasaki",
@@ -48483,7 +43797,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2036933,
"latitude": 42.53974,
"longitude": 128.99722,
"name": "Helong",
@@ -48493,7 +43806,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3838859,
"latitude": -51.62261,
"longitude": -69.21813,
"name": "R\u00edo Gallegos",
@@ -48503,7 +43815,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260387,
"latitude": 9.54633,
"longitude": 78.5907,
"name": "Paramagudi",
@@ -48513,7 +43824,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3872395,
"latitude": -33.59333,
"longitude": -71.62167,
"name": "San Antonio",
@@ -48523,7 +43833,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647138,
"latitude": 51.75369,
"longitude": -0.47517,
"name": "Hemel Hempstead",
@@ -48533,7 +43842,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPL",
- "geonameid": 4839822,
"latitude": 41.1176,
"longitude": -73.4079,
"name": "Norwalk",
@@ -48543,7 +43851,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037075,
"latitude": 44.58333,
"longitude": 129.41667,
"name": "Hailin",
@@ -48553,7 +43860,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261012,
"latitude": 18.16667,
"longitude": 76.05,
"name": "Osm\u0101n\u0101b\u0101d",
@@ -48563,7 +43869,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800107,
"latitude": 36.74833,
"longitude": 118.05583,
"name": "Nanding",
@@ -48573,7 +43878,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3520271,
"latitude": 25.98333,
"longitude": -98.1,
"name": "R\u00edo Bravo",
@@ -48583,7 +43887,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1184249,
"latitude": 33.77311,
"longitude": 72.3741,
"name": "Attock City",
@@ -48593,7 +43896,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3183299,
"latitude": 44.91245,
"longitude": 8.61894,
"name": "Alessandria",
@@ -48603,7 +43905,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 693942,
"latitude": 51.86296,
"longitude": 33.4698,
"name": "Shostka",
@@ -48613,7 +43914,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2969679,
"latitude": 48.8,
"longitude": 2.13333,
"name": "Versailles",
@@ -48623,27 +43923,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1809263,
"latitude": 34.36591,
"longitude": 107.35904,
"name": "Guozhen",
"population": 85415
},
- {
- "country_code": "US",
- "elevation": 1361,
- "feature_code": "PPL",
- "geonameid": 5781061,
- "latitude": 40.57204,
- "longitude": -111.86056,
- "name": "Sandy City",
- "population": 85406
- },
{
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 101554,
"latitude": 26.57332,
"longitude": 50.03694,
"name": "T\u0101r\u016bt",
@@ -48653,7 +43941,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278340,
"latitude": 9.51667,
"longitude": 78.1,
"name": "Aruppukkottai",
@@ -48663,7 +43950,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 356000,
"latitude": 30.9128,
"longitude": 30.29018,
"name": "\u1e28awsh \u2018\u012as\u00e1",
@@ -48673,7 +43959,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3392734,
"latitude": -9.40611,
"longitude": -38.21472,
"name": "Paulo Afonso",
@@ -48683,7 +43968,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3531576,
"latitude": 17.98333,
"longitude": -93.36667,
"name": "C\u00e1rdenas",
@@ -48693,7 +43977,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460523,
"latitude": -18.96889,
"longitude": -49.465,
"name": "Ituiutaba",
@@ -48703,7 +43986,6 @@
"country_code": "US",
"elevation": 112,
"feature_code": "PPL",
- "geonameid": 5409059,
"latitude": 33.97918,
"longitude": -118.03284,
"name": "Whittier",
@@ -48713,7 +43995,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 88903,
"latitude": 32.48798,
"longitude": 20.83174,
"name": "Al Marj",
@@ -48723,7 +44004,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812988,
"latitude": 37.80861,
"longitude": 120.75083,
"name": "Penglai",
@@ -48733,7 +44013,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 454432,
"latitude": 56.53333,
"longitude": 21.01667,
"name": "Vec-Liep\u0101ja",
@@ -48743,7 +44022,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2217362,
"latitude": 32.17222,
"longitude": 13.02028,
"name": "Ghary\u0101n",
@@ -48753,7 +44031,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 468250,
"latitude": 55.38283,
"longitude": 39.03233,
"name": "Yegor\u2019yevsk",
@@ -48763,7 +44040,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 5376890,
"latitude": 33.61891,
"longitude": -117.92895,
"name": "Newport Beach",
@@ -48773,7 +44049,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 4153146,
"latitude": 28.90054,
"longitude": -81.26367,
"name": "Deltona",
@@ -48783,7 +44058,6 @@
"country_code": "US",
"elevation": 252,
"feature_code": "PPL",
- "geonameid": 7506758,
"latitude": 44.84096,
"longitude": -93.29843,
"name": "BloomingtonMn",
@@ -48793,7 +44067,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3023141,
"latitude": 48.89672,
"longitude": 2.25666,
"name": "Courbevoie",
@@ -48803,7 +44076,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPL",
- "geonameid": 4945283,
"latitude": 42.33704,
"longitude": -71.20922,
"name": "Newton",
@@ -48813,7 +44085,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797333,
"latitude": 35.59667,
"longitude": 116.99111,
"name": "Qufu",
@@ -48823,7 +44094,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 457954,
"latitude": 56.51667,
"longitude": 21.01667,
"name": "Liep\u0101ja",
@@ -48833,7 +44103,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2177091,
"latitude": -37.56622,
"longitude": 143.84957,
"name": "Ballarat",
@@ -48843,7 +44112,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2129870,
"latitude": 43.20028,
"longitude": 141.75972,
"name": "Iwamizawa",
@@ -48853,7 +44121,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 655194,
"latitude": 62.23333,
"longitude": 25.73333,
"name": "Jyv\u00e4skyl\u00e4",
@@ -48863,7 +44130,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3853354,
"latitude": -34.58382,
"longitude": -60.94332,
"name": "Jun\u00edn",
@@ -48873,7 +44139,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3674470,
"latitude": 7.98288,
"longitude": -75.42293,
"name": "Montel\u00edbano",
@@ -48883,7 +44148,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3724696,
"latitude": 19.45,
"longitude": -72.68333,
"name": "Gona\u00efves",
@@ -48893,7 +44157,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4168782,
"latitude": 26.13421,
"longitude": -80.23184,
"name": "Plantation",
@@ -48903,7 +44166,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPL",
- "geonameid": 5392263,
"latitude": 37.72493,
"longitude": -122.15608,
"name": "San Leandro",
@@ -48913,7 +44175,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3075921,
"latitude": 49.77984,
"longitude": 18.43688,
"name": "Hav\u00ed\u0159ov",
@@ -48923,7 +44184,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPLA",
- "geonameid": 5105496,
"latitude": 40.21705,
"longitude": -74.74294,
"name": "Trenton",
@@ -48933,7 +44193,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2540689,
"latitude": 32.8627,
"longitude": -6.57359,
"name": "Oued Zem",
@@ -48943,7 +44202,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6085772,
"latitude": 49.16634,
"longitude": -123.93601,
"name": "Nanaimo",
@@ -48953,7 +44211,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463859,
"latitude": -29.86139,
"longitude": -51.17917,
"name": "Esteio",
@@ -48963,7 +44220,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276829,
"latitude": 25.48333,
"longitude": 85.98333,
"name": "B\u0101runi",
@@ -48973,7 +44229,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3022530,
"latitude": 48.78333,
"longitude": 2.46667,
"name": "Cr\u00e9teil",
@@ -48983,7 +44238,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6544881,
"latitude": 52.3075,
"longitude": 4.97222,
"name": "Amsterdam-Zuidoost",
@@ -48993,17 +44247,24 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1337245,
"latitude": 23.17528,
"longitude": 90.20722,
"name": "M\u0101d\u0101r\u012bpur",
"population": 84789
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.55035,
+ "longitude": 13.39139,
+ "name": "Gesundbrunnen",
+ "population": 84789
+ },
{
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283339,
"latitude": 27.42839,
"longitude": 85.03219,
"name": "Hitura",
@@ -49013,7 +44274,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1280757,
"latitude": 39.83333,
"longitude": 97.73333,
"name": "Laojunmiao",
@@ -49023,9 +44283,8 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2939811,
- "latitude": 51.76667,
- "longitude": 14.33333,
+ "latitude": 51.75769,
+ "longitude": 14.32888,
"name": "Cottbus",
"population": 84754
},
@@ -49033,7 +44292,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1695804,
"latitude": 7.30806,
"longitude": 125.68417,
"name": "Panabo",
@@ -49043,7 +44301,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3529986,
"latitude": 19.67111,
"longitude": -99.18278,
"name": "Cuautitl\u00e1n",
@@ -49053,7 +44310,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343252,
"latitude": 6.58412,
"longitude": 3.98336,
"name": "Epe",
@@ -49063,7 +44319,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447998,
"latitude": -23.44361,
"longitude": -51.87389,
"name": "Sarandi",
@@ -49073,7 +44328,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2508737,
"latitude": 34.1128,
"longitude": 2.10228,
"name": "Aflou",
@@ -49083,7 +44337,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4002224,
"latitude": 21.35,
"longitude": -101.91667,
"name": "Lagos de Moreno",
@@ -49093,7 +44346,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2342192,
"latitude": 12.37066,
"longitude": 14.21731,
"name": "Gambaru",
@@ -49103,7 +44355,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3815415,
"latitude": 19.31389,
"longitude": -98.24167,
"name": "Tlaxcala",
@@ -49113,7 +44364,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 324698,
"latitude": 38.91852,
"longitude": 27.84006,
"name": "Akhisar",
@@ -49123,7 +44373,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626099,
"latitude": -7.01667,
"longitude": 113.86667,
"name": "Sumenep",
@@ -49133,7 +44382,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2636940,
"latitude": 51.90224,
"longitude": -0.20256,
"name": "Stevenage",
@@ -49143,7 +44391,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2230876,
"latitude": 9.93417,
"longitude": 13.94861,
"name": "Guider",
@@ -49153,7 +44400,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1240935,
"latitude": 7.1643,
"longitude": 79.8757,
"name": "Katunayaka North",
@@ -49163,7 +44409,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832384,
"latitude": 36.82167,
"longitude": 128.63083,
"name": "Eisen",
@@ -49173,7 +44418,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275679,
"latitude": 29.36667,
"longitude": 78.13333,
"name": "Bijnor",
@@ -49182,8 +44426,7 @@
{
"country_code": "US",
"elevation": 15,
- "feature_code": "PPL",
- "geonameid": 4788158,
+ "feature_code": "PPLA2",
"latitude": 36.72821,
"longitude": -76.58356,
"name": "Suffolk",
@@ -49193,7 +44436,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1700868,
"latitude": 14.4361,
"longitude": 120.4857,
"name": "Mariveles",
@@ -49203,7 +44445,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2638867,
"latitude": 51.75,
"longitude": -0.33333,
"name": "Saint Albans",
@@ -49213,7 +44454,6 @@
"country_code": "US",
"elevation": 18,
"feature_code": "PPLA2",
- "geonameid": 4469160,
"latitude": 35.61266,
"longitude": -77.36635,
"name": "Greenville",
@@ -49223,7 +44463,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1668467,
"latitude": 24.88373,
"longitude": 121.29043,
"name": "Daxi",
@@ -49233,7 +44472,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 4833505,
"latitude": 41.10565,
"longitude": -73.39845,
"name": "East Norwalk",
@@ -49243,7 +44481,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530937,
"latitude": 19.41667,
"longitude": -98.9,
"name": "Chicoloapan de Ju\u00e1rez",
@@ -49253,7 +44490,6 @@
"country_code": "US",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4174402,
"latitude": 26.15767,
"longitude": -80.28611,
"name": "Sunrise",
@@ -49263,7 +44499,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460733,
"latitude": -21.205,
"longitude": -41.88778,
"name": "Itaperuna",
@@ -49273,7 +44508,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 251833,
"latitude": 39.36667,
"longitude": 22.94583,
"name": "V\u00f3los",
@@ -49283,7 +44517,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 692975,
"latitude": 48.56818,
"longitude": 38.64352,
"name": "Stakhanov",
@@ -49293,7 +44526,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1007400,
"latitude": -28.16678,
"longitude": 30.23371,
"name": "Dundee",
@@ -49303,7 +44535,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2808720,
"latitude": 53.51667,
"longitude": 8.13333,
"name": "Wilhelmshaven",
@@ -49313,7 +44544,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 4148411,
"latitude": 26.35869,
"longitude": -80.0831,
"name": "Boca Raton",
@@ -49323,17 +44553,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1886762,
"latitude": 30.01075,
"longitude": 122.20465,
- "name": "Zhoushan Shi",
+ "name": "Zhoushan",
"population": 84380
},
{
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1651555,
"latitude": -7.26333,
"longitude": 110.3975,
"name": "Ambarawa",
@@ -49343,7 +44571,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 763534,
"latitude": 49.62177,
"longitude": 20.69705,
"name": "Nowy S\u0105cz",
@@ -49353,7 +44580,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2327827,
"latitude": 7.59464,
"longitude": 6.22476,
"name": "Ogaminan",
@@ -49363,7 +44589,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278688,
"latitude": 17.68333,
"longitude": 83.01667,
"name": "Anak\u0101palle",
@@ -49373,7 +44598,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 965241,
"latitude": -27.00706,
"longitude": 30.81323,
"name": "Piet Retief",
@@ -49383,7 +44607,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1813088,
"latitude": 33.19973,
"longitude": 120.4578,
"name": "Dazhong",
@@ -49393,7 +44616,6 @@
"country_code": "US",
"elevation": 22,
"feature_code": "PPL",
- "geonameid": 5355828,
"latitude": 33.9164,
"longitude": -118.35257,
"name": "Hawthorne",
@@ -49403,7 +44625,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3170621,
"latitude": 43.92125,
"longitude": 10.92361,
"name": "Pistoia",
@@ -49413,7 +44634,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606147,
"latitude": 7.19882,
"longitude": 100.5951,
"name": "Songkhla",
@@ -49423,7 +44643,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3902377,
"latitude": -14.83333,
"longitude": -64.9,
"name": "La Santisima Trinidad",
@@ -49433,7 +44652,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 965401,
"latitude": -28.52423,
"longitude": 28.81582,
"name": "Phuthaditjhaba",
@@ -49443,7 +44661,6 @@
"country_code": "US",
"elevation": 201,
"feature_code": "PPL",
- "geonameid": 4670300,
"latitude": 33.10317,
"longitude": -96.67055,
"name": "Allen",
@@ -49453,7 +44670,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3129135,
"latitude": 43.55473,
"longitude": -5.92483,
"name": "Avil\u00e9s",
@@ -49463,7 +44679,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805334,
"latitude": 27.43265,
"longitude": 120.60625,
"name": "Jinxiang",
@@ -49473,7 +44688,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2518494,
"latitude": 36.77629,
"longitude": -2.81456,
"name": "El Ejido",
@@ -49483,7 +44697,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1485724,
"latitude": 55.72306,
"longitude": 84.88611,
"name": "Yurga",
@@ -49493,7 +44706,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 934570,
"latitude": -20.31472,
"longitude": 57.52028,
"name": "Curepipe",
@@ -49503,7 +44715,6 @@
"country_code": "US",
"elevation": 57,
"feature_code": "PPL",
- "geonameid": 5096699,
"latitude": 40.85843,
"longitude": -74.16376,
"name": "Clifton",
@@ -49513,7 +44724,6 @@
"country_code": "US",
"elevation": 203,
"feature_code": "PPL",
- "geonameid": 5014681,
"latitude": 42.3242,
"longitude": -83.40021,
"name": "Westland",
@@ -49523,7 +44733,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2548830,
"latitude": 32.50093,
"longitude": -6.69062,
"name": "Fkih Ben Salah",
@@ -49533,7 +44742,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2231504,
"latitude": 5.50787,
"longitude": 10.6356,
"name": "Foumbot",
@@ -49543,7 +44751,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185224,
"latitude": 23.01861,
"longitude": 91.41,
"name": "Feni",
@@ -49553,7 +44760,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1833466,
"latitude": 35.84509,
"longitude": 127.14752,
"name": "Wanju",
@@ -49563,7 +44769,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262109,
"latitude": 29.63333,
"longitude": 78.33333,
"name": "Naj\u012bb\u0101b\u0101d",
@@ -49573,7 +44778,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860728,
"latitude": 34.76667,
"longitude": 138.01667,
"name": "Kakegawa",
@@ -49583,7 +44787,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4026082,
"latitude": 17.95833,
"longitude": -102.2,
"name": "L\u00e1zaro C\u00e1rdenas",
@@ -49593,7 +44796,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1724933,
"latitude": 10.77306,
"longitude": 122.98278,
"name": "Binonga",
@@ -49603,7 +44805,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273687,
"latitude": 22.83333,
"longitude": 74.26667,
"name": "D\u0101hod",
@@ -49612,18 +44813,16 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1790392,
- "latitude": 32.43667,
- "longitude": 119.55083,
- "name": "Jiangdu",
+ "feature_code": "PPLA3",
+ "latitude": 32.42806,
+ "longitude": 119.56048,
+ "name": "Xiann\u00fc",
"population": 83936
},
{
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3391360,
"latitude": -0.05833,
"longitude": -51.18167,
"name": "Santana",
@@ -49633,7 +44832,6 @@
"country_code": "US",
"elevation": 184,
"feature_code": "PPL",
- "geonameid": 4888015,
"latitude": 41.84559,
"longitude": -87.75394,
"name": "Cicero",
@@ -49643,7 +44841,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258686,
"latitude": 23.63333,
"longitude": 85.51667,
"name": "R\u0101mgarh",
@@ -49653,7 +44850,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863528,
"latitude": 35.3,
"longitude": 138.93333,
"name": "Gotemba",
@@ -49663,7 +44859,6 @@
"country_code": "US",
"elevation": 177,
"feature_code": "PPL",
- "geonameid": 5392368,
"latitude": 33.14337,
"longitude": -117.16614,
"name": "San Marcos",
@@ -49673,7 +44868,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2497849,
"latitude": 36.26333,
"longitude": 6.69361,
"name": "El Khroub",
@@ -49683,7 +44877,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3981984,
"latitude": 20.81667,
"longitude": -102.73333,
"name": "Tepatitl\u00e1n de Morelos",
@@ -49693,7 +44886,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637329,
"latitude": 54.99859,
"longitude": -1.4323,
"name": "South Shields",
@@ -49703,7 +44895,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1019704,
"latitude": -28.23078,
"longitude": 28.30707,
"name": "Bethlehem",
@@ -49713,7 +44904,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2643736,
"latitude": 54.9981,
"longitude": -7.30934,
"name": "Derry",
@@ -49723,7 +44913,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 352354,
"latitude": 30.46579,
"longitude": 30.93164,
"name": "Min\u016bf",
@@ -49733,7 +44922,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2754064,
"latitude": 52.22333,
"longitude": 5.17639,
"name": "Hilversum",
@@ -49743,7 +44931,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036081,
"latitude": 46.56694,
"longitude": 131.14528,
"name": "Lingdong",
@@ -49753,7 +44940,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 202905,
"latitude": -1.70278,
"longitude": 29.25639,
"name": "Gisenyi",
@@ -49763,7 +44949,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799574,
"latitude": 31.78394,
"longitude": 111.82752,
"name": "Nanzhang Chengguanzhen",
@@ -49773,7 +44958,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294778,
"latitude": 32.16583,
"longitude": 34.83667,
"name": "Herzliyya",
@@ -49783,7 +44967,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1680116,
"latitude": 7.90639,
"longitude": 125.09417,
"name": "Valencia",
@@ -49793,7 +44976,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 4705692,
"latitude": 29.50745,
"longitude": -95.09493,
"name": "League City",
@@ -49803,7 +44985,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3673662,
"latitude": 8.23773,
"longitude": -73.35604,
"name": "Oca\u00f1a",
@@ -49813,7 +44994,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2392308,
"latitude": 6.36307,
"longitude": 2.08506,
"name": "Ouidah",
@@ -49823,7 +45003,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2820860,
"latitude": 48.52266,
"longitude": 9.05222,
"name": "T\u00fcbingen",
@@ -49833,7 +45012,6 @@
"country_code": "US",
"elevation": 649,
"feature_code": "PPLA2",
- "geonameid": 4453066,
"latitude": 35.60095,
"longitude": -82.55402,
"name": "Asheville",
@@ -49843,7 +45021,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832830,
"latitude": 37.48972,
"longitude": 127.49056,
"name": "Yangp'y\u014fng",
@@ -49853,7 +45030,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1912205,
"latitude": 35.40611,
"longitude": 129.16861,
"name": "Ungsang",
@@ -49863,7 +45039,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267394,
"latitude": 14.91667,
"longitude": 79.98333,
"name": "K\u0101vali",
@@ -49873,7 +45048,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110579,
"latitude": 35.65,
"longitude": 140.31667,
"name": "Yachimata",
@@ -49883,7 +45057,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3174953,
"latitude": 40.35703,
"longitude": 18.17202,
"name": "Lecce",
@@ -49893,7 +45066,6 @@
"country_code": "US",
"elevation": 50,
"feature_code": "PPL",
- "geonameid": 5337561,
"latitude": 38.70712,
"longitude": -121.28106,
"name": "Citrus Heights",
@@ -49903,7 +45075,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3402000,
"latitude": -4.45528,
"longitude": -43.88556,
"name": "Cod\u00f3",
@@ -49913,7 +45084,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1700917,
"latitude": 14.75778,
"longitude": 120.94833,
"name": "Marilao",
@@ -49923,7 +45093,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1787837,
"latitude": 20.35,
"longitude": 110.12884,
"name": "Xucheng",
@@ -49933,7 +45102,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338497,
"latitude": 5.85377,
"longitude": 6.86026,
"name": "Ihiala",
@@ -49943,7 +45111,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2702979,
"latitude": 57.78145,
"longitude": 14.15618,
"name": "J\u00f6nk\u00f6ping",
@@ -49953,7 +45120,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112319,
"latitude": 35.89767,
"longitude": 140.49943,
"name": "Katori-shi",
@@ -49963,7 +45129,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271910,
"latitude": 27.99486,
"longitude": 74.95628,
"name": "Fatehpur",
@@ -49973,7 +45138,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636125,
"latitude": -6.97083,
"longitude": 107.5675,
"name": "Margahayukencana",
@@ -49983,7 +45147,6 @@
"country_code": "US",
"elevation": 150,
"feature_code": "PPL",
- "geonameid": 5323060,
"latitude": 34.09529,
"longitude": -118.12701,
"name": "Alhambra",
@@ -49993,7 +45156,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1644605,
"latitude": -5.3166,
"longitude": 119.3661,
"name": "Galesong",
@@ -50003,7 +45165,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3121070,
"latitude": 40.63333,
"longitude": -3.16667,
"name": "Guadalajara",
@@ -50013,7 +45174,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808747,
"latitude": 36.53333,
"longitude": 114.11111,
"name": "Hecun",
@@ -50023,7 +45183,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1690033,
"latitude": 16.61591,
"longitude": 120.31663,
"name": "San Fernando",
@@ -50033,7 +45192,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 8125829,
"latitude": 35.02954,
"longitude": 135.75666,
"name": "Kamigy\u014d-ku",
@@ -50043,7 +45201,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 710554,
"latitude": 50.39105,
"longitude": 24.23514,
"name": "Chervonograd",
@@ -50053,7 +45210,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6141190,
"latitude": 42.97866,
"longitude": -82.40407,
"name": "Sarnia",
@@ -50063,7 +45219,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1799348,
"latitude": 35.76417,
"longitude": 116.79139,
"name": "Ningyang",
@@ -50073,7 +45228,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1069129,
"latitude": -12.2787,
"longitude": 49.29171,
"name": "Antsiran\u0308ana",
@@ -50083,7 +45237,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 5403191,
"latitude": 37.73965,
"longitude": -121.42522,
"name": "Tracy",
@@ -50093,7 +45246,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1805379,
"latitude": 29.60487,
"longitude": 111.87012,
"name": "Jinshi",
@@ -50103,7 +45255,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2634308,
"latitude": 51.34603,
"longitude": -2.97665,
"name": "Weston-super-Mare",
@@ -50113,7 +45264,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2688368,
"latitude": 58.59419,
"longitude": 16.1826,
"name": "Norrk\u00f6ping",
@@ -50123,7 +45273,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 752015,
"latitude": 40.65333,
"longitude": 35.83306,
"name": "Amasya",
@@ -50133,7 +45282,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852984,
"latitude": 37.61667,
"longitude": 138.95,
"name": "Sanj\u014d",
@@ -50143,7 +45291,6 @@
"country_code": "US",
"elevation": 252,
"feature_code": "PPL",
- "geonameid": 5018739,
"latitude": 44.8408,
"longitude": -93.29828,
"name": "Bloomington",
@@ -50153,7 +45300,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786060,
"latitude": 38.71528,
"longitude": 112.7575,
"name": "Yuanping",
@@ -50163,7 +45309,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2871039,
"latitude": 52.28333,
"longitude": 8.91667,
"name": "Minden",
@@ -50173,7 +45318,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3489460,
"latitude": 18.47116,
"longitude": -77.91883,
"name": "Montego Bay",
@@ -50183,7 +45327,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3711668,
"latitude": 8.42729,
"longitude": -82.43085,
"name": "David",
@@ -50192,8 +45335,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 789107,
+ "feature_code": "PPLA2",
"latitude": 43.72583,
"longitude": 20.68944,
"name": "Kraljevo",
@@ -50203,7 +45345,6 @@
"country_code": "US",
"elevation": 1311,
"feature_code": "PPLA2",
- "geonameid": 5779206,
"latitude": 41.223,
"longitude": -111.97383,
"name": "Ogden",
@@ -50213,7 +45354,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3901178,
"latitude": -22.03799,
"longitude": -63.67968,
"name": "Yacuiba",
@@ -50223,7 +45363,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1181163,
"latitude": 30.53333,
"longitude": 72.7,
"name": "Ch\u012bch\u0101watni",
@@ -50233,9 +45372,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 98622,
- "latitude": 31.41171,
- "longitude": 46.17418,
+ "latitude": 31.40906,
+ "longitude": 46.1727,
"name": "Ash Sha\u0163rah",
"population": 82732
},
@@ -50243,7 +45381,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1685755,
"latitude": 12.97389,
"longitude": 123.99333,
"name": "Sorsogon",
@@ -50253,7 +45390,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2988358,
"latitude": 43.3,
"longitude": -0.36667,
"name": "Pau",
@@ -50263,7 +45399,6 @@
"country_code": "US",
"elevation": 366,
"feature_code": "PPLA2",
- "geonameid": 4876523,
"latitude": 42.49999,
"longitude": -96.40031,
"name": "Sioux City",
@@ -50273,7 +45408,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPL",
- "geonameid": 5225507,
"latitude": 41.7001,
"longitude": -71.41617,
"name": "Warwick",
@@ -50283,7 +45417,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2511716,
"latitude": 36.76419,
"longitude": -2.61475,
"name": "Roquetas de Mar",
@@ -50293,7 +45426,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3114531,
"latitude": 42.01667,
"longitude": -4.53333,
"name": "Palencia",
@@ -50303,7 +45435,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785716,
"latitude": 34.31139,
"longitude": 117.95028,
"name": "Pizhou",
@@ -50313,7 +45444,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3130380,
"latitude": 43.34927,
"longitude": -3.0094,
"name": "Algorta",
@@ -50323,7 +45453,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2647632,
"latitude": 53.71667,
"longitude": -1.85,
"name": "Halifax",
@@ -50333,7 +45462,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815585,
"latitude": 36.5575,
"longitude": 116.72722,
"name": "Changqing",
@@ -50343,7 +45471,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471691,
"latitude": -19.59333,
"longitude": -46.94056,
"name": "Arax\u00e1",
@@ -50353,7 +45480,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1882056,
"latitude": 34.8825,
"longitude": 128.62667,
"name": "Sinhyeon",
@@ -50363,7 +45489,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789118,
"latitude": 36.7975,
"longitude": 118.29444,
"name": "Xindian",
@@ -50373,7 +45498,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3836992,
"latitude": -33.08103,
"longitude": -68.46814,
"name": "San Mart\u00edn",
@@ -50383,7 +45507,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269247,
"latitude": 24.46667,
"longitude": 88.06667,
"name": "Jangipur",
@@ -50393,7 +45516,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3895138,
"latitude": -36.91667,
"longitude": -73.01667,
"name": "Chiguayante",
@@ -50403,7 +45525,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 304081,
"latitude": 38.74525,
"longitude": 41.50693,
"name": "Mu\u015f",
@@ -50413,7 +45534,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852964,
"latitude": 36.31667,
"longitude": 139.58333,
"name": "Sano",
@@ -50423,7 +45543,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1511494,
"latitude": 56.081,
"longitude": 86.0285,
"name": "Anzhero-Sudzhensk",
@@ -50433,7 +45552,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2530048,
"latitude": 34.4073,
"longitude": -2.89732,
"name": "Taourirt",
@@ -50443,7 +45561,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1280037,
"latitude": 38.41667,
"longitude": 77.24056,
"name": "Shache",
@@ -50453,7 +45570,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786676,
"latitude": 34.73806,
"longitude": 111.88389,
"name": "Yima",
@@ -50463,7 +45579,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360048,
"latitude": 30.29857,
"longitude": 30.97635,
"name": "Ashm\u016bn",
@@ -50473,7 +45588,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 707308,
"latitude": 45.34929,
"longitude": 28.84079,
"name": "Izmayil",
@@ -50483,7 +45597,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 728330,
"latitude": 42.6,
"longitude": 23.03333,
"name": "Pernik",
@@ -50493,7 +45606,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272892,
"latitude": 22.6,
"longitude": 75.3,
"name": "Dh\u0101r",
@@ -50503,7 +45615,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3110834,
"latitude": 41.34357,
"longitude": 2.03659,
"name": "Sant Boi de Llobregat",
@@ -50513,7 +45624,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3112989,
"latitude": 40.43293,
"longitude": -3.81338,
"name": "Pozuelo de Alarc\u00f3n",
@@ -50523,7 +45633,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 161290,
"latitude": -6.43333,
"longitude": 38.9,
"name": "Bagamoyo",
@@ -50533,7 +45642,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732945,
"latitude": 4.25,
"longitude": 103.41667,
"name": "Cukai",
@@ -50543,7 +45651,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035002,
"latitude": 45.21667,
"longitude": 127.96667,
"name": "Shangzhi",
@@ -50553,7 +45660,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 504003,
"latitude": 59.68733,
"longitude": 30.34046,
"name": "Pushkin",
@@ -50563,7 +45669,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270417,
"latitude": 29.1,
"longitude": 75.96667,
"name": "H\u0101nsi",
@@ -50573,7 +45678,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800065,
"latitude": 37.35806,
"longitude": 115.37444,
"name": "Nangong",
@@ -50583,7 +45687,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 265488,
"latitude": 38.08333,
"longitude": 23.73333,
"name": "Acharnes",
@@ -50593,7 +45696,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3598572,
"latitude": 14.66861,
"longitude": -90.81667,
"name": "Chimaltenango",
@@ -50603,7 +45705,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801722,
"latitude": 38.8,
"longitude": 121.26667,
"name": "L\u00fcshun",
@@ -50613,7 +45714,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1489246,
"latitude": 54.0979,
"longitude": 61.5773,
"name": "Troitsk",
@@ -50623,7 +45723,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3061186,
"latitude": 48.73946,
"longitude": 19.15349,
"name": "Bansk\u00e1 Bystrica",
@@ -50633,7 +45732,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 248370,
"latitude": 31.71667,
"longitude": 35.8,
"name": "M\u0101dab\u0101",
@@ -50643,7 +45741,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860112,
"latitude": 31.38333,
"longitude": 130.85,
"name": "Kanoya",
@@ -50653,7 +45750,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 303798,
"latitude": 37.00972,
"longitude": 37.79417,
"name": "Nizip",
@@ -50663,7 +45759,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 307864,
"latitude": 36.71611,
"longitude": 37.115,
"name": "Kilis",
@@ -50673,7 +45768,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3024266,
"latitude": 48.91882,
"longitude": 2.25404,
"name": "Colombes",
@@ -50683,7 +45777,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2510409,
"latitude": 39.8581,
"longitude": -4.02263,
"name": "Toledo",
@@ -50693,7 +45786,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185183,
"latitude": 23.24722,
"longitude": 91.1425,
"name": "L\u0101ksh\u0101m",
@@ -50703,7 +45795,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 623317,
"latitude": 55.4879,
"longitude": 28.7856,
"name": "Polatsk",
@@ -50713,7 +45804,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284826,
"latitude": 47.48919,
"longitude": 19.07012,
"name": "Budapest VIII. ker\u00fclet",
@@ -50723,7 +45813,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797264,
"latitude": 28.95944,
"longitude": 118.86861,
"name": "Quzhou",
@@ -50733,7 +45822,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 747155,
"latitude": 41.02778,
"longitude": 37.50139,
"name": "Fatsa",
@@ -50743,7 +45831,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2395915,
"latitude": 7.18286,
"longitude": 1.99119,
"name": "Abomey",
@@ -50753,7 +45840,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3626219,
"latitude": 9.91861,
"longitude": -68.30472,
"name": "Tinaquillo",
@@ -50763,7 +45849,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850311,
"latitude": 36.38333,
"longitude": 139.73333,
"name": "Tochigi",
@@ -50773,7 +45858,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 580054,
"latitude": 47.10779,
"longitude": 39.41648,
"name": "Azov",
@@ -50783,7 +45867,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2337352,
"latitude": 7.87377,
"longitude": 5.07692,
"name": "Ipoti",
@@ -50793,7 +45876,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850693,
"latitude": 35.72389,
"longitude": 139.52222,
"name": "Tanashi",
@@ -50803,7 +45885,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857665,
"latitude": 34.28333,
"longitude": 133.78333,
"name": "Marugame",
@@ -50812,10 +45893,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1794947,
- "latitude": 22.99693,
- "longitude": 113.07988,
+ "feature_code": "PPLA4",
+ "latitude": 23.00107,
+ "longitude": 113.077,
"name": "Shiwan",
"population": 82031
},
@@ -50823,17 +45903,24 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6087892,
"latitude": 43.10012,
"longitude": -79.06627,
"name": "Niagara Falls",
"population": 82000
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.40878,
+ "longitude": -0.02526,
+ "name": "Beckenham",
+ "population": 82000
+ },
{
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185207,
"latitude": 24.13333,
"longitude": 89.08333,
"name": "Ishurdi",
@@ -50843,7 +45930,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2473457,
"latitude": 35.16758,
"longitude": 8.83651,
"name": "Kasserine",
@@ -50853,7 +45939,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607532,
"latitude": 14.35167,
"longitude": 100.57739,
"name": "Phra Nakhon Si Ayutthaya",
@@ -50863,7 +45948,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3408404,
"latitude": -7.91167,
"longitude": -34.90278,
"name": "Abreu e Lima",
@@ -50873,7 +45957,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3679277,
"latitude": 5.44783,
"longitude": -74.66311,
"name": "La Dorada",
@@ -50883,7 +45966,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1182815,
"latitude": 31.62525,
"longitude": 71.06574,
"name": "Bhakkar",
@@ -50893,7 +45975,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3179806,
"latitude": 40.90664,
"longitude": 14.29587,
"name": "Casoria",
@@ -50903,7 +45984,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3840300,
"latitude": -26.78522,
"longitude": -60.43876,
"name": "Presidencia Roque S\u00e1enz Pe\u00f1a",
@@ -50913,7 +45993,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460834,
"latitude": -22.42556,
"longitude": -45.45278,
"name": "Itajub\u00e1",
@@ -50923,7 +46002,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3174530,
"latitude": 43.84357,
"longitude": 10.50585,
"name": "Lucca",
@@ -50933,7 +46011,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 103369,
"latitude": 20.00054,
"longitude": 42.6052,
"name": "Qal\u2018at B\u012bshah",
@@ -50943,7 +46020,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2655613,
"latitude": 53.39337,
"longitude": -3.01479,
"name": "Birkenhead",
@@ -50953,7 +46029,6 @@
"country_code": "XK",
"elevation": 516,
"feature_code": "PPL",
- "geonameid": 787157,
"latitude": 42.65913,
"longitude": 20.28828,
"name": "Pej\u00eb",
@@ -50963,7 +46038,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841810,
"latitude": 37.41,
"longitude": 127.25722,
"name": "Kwangju",
@@ -50973,7 +46047,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2293268,
"latitude": 5.92801,
"longitude": -4.21319,
"name": "Agboville",
@@ -50983,9 +46056,8 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2817220,
- "latitude": 48.06667,
- "longitude": 8.45,
+ "latitude": 48.06226,
+ "longitude": 8.49358,
"name": "Villingen-Schwenningen",
"population": 81770
},
@@ -50993,7 +46065,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 551847,
"latitude": 42.88165,
"longitude": 47.63919,
"name": "Kaspiysk",
@@ -51003,7 +46074,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3430988,
"latitude": -34.57028,
"longitude": -59.105,
"name": "Luj\u00e1n",
@@ -51012,10 +46082,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1793364,
- "latitude": 22.02647,
- "longitude": 111.93229,
+ "feature_code": "PPLA4",
+ "latitude": 22.03177,
+ "longitude": 111.93537,
"name": "Tangping",
"population": 81729
},
@@ -51023,7 +46092,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 108435,
"latitude": 25.86944,
"longitude": 43.4973,
"name": "Ar Rass",
@@ -51033,7 +46101,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2176187,
"latitude": -36.75818,
"longitude": 144.28024,
"name": "Bendigo",
@@ -51043,7 +46110,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 256601,
"latitude": 38.03333,
"longitude": 23.7,
"name": "\u00cdlion",
@@ -51053,7 +46119,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 288789,
"latitude": 23.70739,
"longitude": 57.88908,
"name": "Bark\u0101\u2019",
@@ -51063,7 +46128,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 700646,
"latitude": 48.43919,
"longitude": 22.71779,
"name": "Mukacheve",
@@ -51073,7 +46137,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1621884,
"latitude": -4.5386,
"longitude": 120.3279,
"name": "Watampone",
@@ -51083,7 +46146,6 @@
"country_code": "US",
"elevation": 176,
"feature_code": "PPL",
- "geonameid": 4067994,
"latitude": 33.40539,
"longitude": -86.81138,
"name": "Hoover",
@@ -51093,7 +46155,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3435810,
"latitude": -34.16874,
"longitude": -58.95914,
"name": "Campana",
@@ -51103,7 +46164,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 117656,
"latitude": 38.1973,
"longitude": 44.7653,
"name": "Salm\u0101s",
@@ -51113,7 +46173,6 @@
"country_code": "US",
"elevation": 264,
"feature_code": "PPL",
- "geonameid": 5166177,
"latitude": 41.40477,
"longitude": -81.72291,
"name": "Parma",
@@ -51123,7 +46182,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3113209,
"latitude": 42.431,
"longitude": -8.64435,
"name": "Pontevedra",
@@ -51133,7 +46191,6 @@
"country_code": "US",
"elevation": 767,
"feature_code": "PPL",
- "geonameid": 5601933,
"latitude": 43.54072,
"longitude": -116.56346,
"name": "Nampa",
@@ -51143,7 +46200,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 611847,
"latitude": 43.00697,
"longitude": 40.9893,
"name": "Sokhumi",
@@ -51153,7 +46209,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 173811,
"latitude": 36.50237,
"longitude": 40.74772,
"name": "Al \u1e28asakah",
@@ -51163,7 +46218,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3994489,
"latitude": 20.35,
"longitude": -102.76667,
"name": "Ocotl\u00e1n",
@@ -51173,7 +46227,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1840886,
"latitude": 36.59458,
"longitude": 128.19946,
"name": "Mungyeong",
@@ -51183,7 +46236,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268673,
"latitude": 14.11667,
"longitude": 78.16667,
"name": "Kadiri",
@@ -51193,7 +46245,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458696,
"latitude": -21.24528,
"longitude": -44.99972,
"name": "Lavras",
@@ -51203,7 +46254,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272720,
"latitude": 21.73333,
"longitude": 70.45,
"name": "Dhor\u0101ji",
@@ -51213,7 +46263,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1174042,
"latitude": 32.81493,
"longitude": 73.86359,
"name": "Kh\u0101ri\u0101n",
@@ -51223,7 +46272,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258291,
"latitude": 14.05,
"longitude": 78.75,
"name": "R\u0101yachoti",
@@ -51233,7 +46281,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785964,
"latitude": 29.385,
"longitude": 106.51944,
"name": "Yudong",
@@ -51243,7 +46290,6 @@
"country_code": "US",
"elevation": 367,
"feature_code": "PPL",
- "geonameid": 4535740,
"latitude": 35.65283,
"longitude": -97.4781,
"name": "Edmond",
@@ -51253,7 +46299,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1525798,
"latitude": 46.84806,
"longitude": 74.995,
"name": "Balqash",
@@ -51263,7 +46308,6 @@
"country_code": "PR",
"elevation": 47,
"feature_code": "PPL",
- "geonameid": 4565119,
"latitude": 18.35745,
"longitude": -66.111,
"name": "Guaynabo",
@@ -51273,7 +46317,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848499,
"latitude": 35.82255,
"longitude": 139.83905,
"name": "Yashio-shi",
@@ -51283,7 +46326,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267090,
"latitude": 22.3,
"longitude": 72.61667,
"name": "Khambh\u0101t",
@@ -51293,7 +46335,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1188569,
"latitude": 24.73333,
"longitude": 89.83333,
"name": "Sarish\u0101b\u0101ri",
@@ -51303,7 +46344,6 @@
"country_code": "US",
"elevation": 462,
"feature_code": "PPL",
- "geonameid": 7310164,
"latitude": 33.1911,
"longitude": -111.528,
"name": "San Tan Valley",
@@ -51313,7 +46353,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 684657,
"latitude": 47.13316,
"longitude": 24.50011,
"name": "Bistri\u0163a",
@@ -51323,7 +46362,6 @@
"country_code": "BR",
"elevation": 780,
"feature_code": "PPL",
- "geonameid": 3471291,
"latitude": -23.09861,
"longitude": -48.92583,
"name": "Avar\u00e9",
@@ -51333,7 +46371,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2885679,
"latitude": 47.66033,
"longitude": 9.17582,
"name": "Konstanz",
@@ -51343,7 +46380,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850559,
"latitude": 36.25,
"longitude": 139.53333,
"name": "Tatebayashi",
@@ -51353,7 +46389,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3095321,
"latitude": 52.22338,
"longitude": 18.25121,
"name": "Konin",
@@ -51363,7 +46398,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2634739,
"latitude": 53.39254,
"longitude": -2.58024,
"name": "Warrington",
@@ -51373,7 +46407,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463140,
"latitude": -15.53722,
"longitude": -47.33444,
"name": "Formosa",
@@ -51383,7 +46416,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2468353,
"latitude": 34.425,
"longitude": 8.78417,
"name": "Gafsa",
@@ -51393,7 +46425,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 668954,
"latitude": 45.30083,
"longitude": 21.88917,
"name": "Re\u015fi\u0163a",
@@ -51403,17 +46434,24 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458662,
"latitude": -22.18556,
"longitude": -47.39028,
"name": "Leme",
"population": 81209
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.52131,
+ "longitude": 13.39784,
+ "name": "Mitte",
+ "population": 81205
+ },
{
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2332357,
"latitude": 7.46667,
"longitude": 4.06667,
"name": "Lalupon",
@@ -51423,7 +46461,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2806142,
"latitude": 49.63556,
"longitude": 8.35972,
"name": "Worms",
@@ -51433,7 +46470,6 @@
"country_code": "US",
"elevation": 225,
"feature_code": "PPL",
- "geonameid": 4887158,
"latitude": 40.11642,
"longitude": -88.24338,
"name": "Champaign",
@@ -51443,7 +46479,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 466990,
"latitude": 44.04444,
"longitude": 42.86056,
"name": "Yessentuki",
@@ -51453,7 +46488,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2967849,
"latitude": 48.78716,
"longitude": 2.40332,
"name": "Vitry-sur-Seine",
@@ -51463,7 +46497,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 318253,
"latitude": 37.32722,
"longitude": 42.19028,
"name": "Cizre",
@@ -51473,7 +46506,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1925936,
"latitude": 35.24972,
"longitude": 128.52,
"name": "Naes\u014f",
@@ -51483,7 +46515,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261288,
"latitude": 19.1,
"longitude": 78.35,
"name": "Nirmal",
@@ -51493,7 +46524,6 @@
"country_code": "US",
"elevation": 228,
"feature_code": "PPL",
- "geonameid": 5012639,
"latitude": 42.60559,
"longitude": -83.14993,
"name": "Troy",
@@ -51503,7 +46533,6 @@
"country_code": "US",
"elevation": 150,
"feature_code": "PPL",
- "geonameid": 5367440,
"latitude": 37.68187,
"longitude": -121.76801,
"name": "Livermore",
@@ -51513,9 +46542,8 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 934131,
- "latitude": -20.26444,
- "longitude": 57.47194,
+ "latitude": -20.26381,
+ "longitude": 57.4791,
"name": "Quatre Bornes",
"population": 80961
},
@@ -51523,7 +46551,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272045,
"latitude": 15.73333,
"longitude": 77.48333,
"name": "Emmigan\u016bru",
@@ -51533,7 +46560,6 @@
"country_code": "MW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 923295,
"latitude": -15.38596,
"longitude": 35.3188,
"name": "Zomba",
@@ -51543,7 +46569,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811440,
"latitude": 35.26056,
"longitude": 117.9675,
"name": "Feicheng",
@@ -51553,7 +46578,6 @@
"country_code": "US",
"elevation": 121,
"feature_code": "PPL",
- "geonameid": 4832353,
"latitude": 41.39482,
"longitude": -73.45401,
"name": "Danbury",
@@ -51563,7 +46587,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2392601,
"latitude": 10.30416,
"longitude": 1.37962,
"name": "Natitingou",
@@ -51573,7 +46596,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPLA2",
- "geonameid": 5786899,
"latitude": 48.75955,
"longitude": -122.48822,
"name": "Bellingham",
@@ -51583,7 +46605,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795941,
"latitude": 35.07528,
"longitude": 117.45778,
"name": "Shanting",
@@ -51593,7 +46614,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269092,
"latitude": 18.85,
"longitude": 82.58333,
"name": "Jaypur",
@@ -51603,7 +46623,6 @@
"country_code": "US",
"elevation": 183,
"feature_code": "PPL",
- "geonameid": 4921100,
"latitude": 41.58337,
"longitude": -87.50004,
"name": "Hammond",
@@ -51613,7 +46632,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2754394,
"latitude": 52.26583,
"longitude": 6.79306,
"name": "Hengelo",
@@ -51623,7 +46641,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852607,
"latitude": 37.95,
"longitude": 139.33333,
"name": "Shibata",
@@ -51633,7 +46650,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2633948,
"latitude": 53.53333,
"longitude": -2.61667,
"name": "Wigan",
@@ -51643,7 +46659,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863693,
"latitude": 34.83333,
"longitude": 137.23333,
"name": "Gamag\u014dri",
@@ -51653,7 +46668,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2482886,
"latitude": 31.92427,
"longitude": 5.35018,
"name": "Rouissat",
@@ -51663,7 +46677,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 547523,
"latitude": 56.33333,
"longitude": 36.73333,
"name": "Klin",
@@ -51673,7 +46686,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294514,
"latitude": 32.175,
"longitude": 34.90694,
"name": "Kfar Saba",
@@ -51683,7 +46695,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861095,
"latitude": 34.5,
"longitude": 135.4,
"name": "Izumi\u014dtsu",
@@ -51693,7 +46704,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3121007,
"latitude": 43.35689,
"longitude": -3.01146,
"name": "Getxo",
@@ -51703,7 +46713,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279734,
"latitude": 30.5819,
"longitude": 74.83298,
"name": "Kotkapura",
@@ -51713,7 +46722,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2555467,
"latitude": 34.92,
"longitude": -2.32,
"name": "Berkane",
@@ -51723,7 +46731,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110729,
"latitude": 35.9,
"longitude": 140.08333,
"name": "Toride",
@@ -51733,7 +46740,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 4786714,
"latitude": 36.71709,
"longitude": -76.59023,
"name": "South Suffolk",
@@ -51743,7 +46749,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2235196,
"latitude": 5.15625,
"longitude": 10.17882,
"name": "Bafang",
@@ -51753,7 +46758,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2367886,
"latitude": 7.53333,
"longitude": 1.13333,
"name": "Atakpam\u00e9",
@@ -51763,7 +46767,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6822131,
"latitude": 35.72878,
"longitude": 139.29415,
"name": "Akiruno-shi",
@@ -51773,7 +46776,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3036145,
"latitude": 48.93814,
"longitude": 2.49402,
"name": "Aulnay-sous-Bois",
@@ -51783,7 +46785,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734798,
"latitude": 2.9516,
"longitude": 101.843,
"name": "Semenyih",
@@ -51793,7 +46794,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2504099,
"latitude": 36.13516,
"longitude": 2.91085,
"name": "Berrouaghia",
@@ -51803,7 +46803,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 321082,
"latitude": 38.88472,
"longitude": 40.49389,
"name": "Bing\u00f6l",
@@ -51813,7 +46812,6 @@
"country_code": "US",
"elevation": 23,
"feature_code": "PPL",
- "geonameid": 5331575,
"latitude": 33.86751,
"longitude": -117.99812,
"name": "Buena Park",
@@ -51823,7 +46821,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3164699,
"latitude": 45.82908,
"longitude": 8.82193,
"name": "Varese",
@@ -51833,7 +46830,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 713174,
"latitude": 48.59559,
"longitude": 37.99987,
"name": "Artemivs\u2019k",
@@ -51843,7 +46839,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3430443,
"latitude": -38.54726,
"longitude": -58.73675,
"name": "Necochea",
@@ -51853,7 +46848,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 315795,
"latitude": 38.20591,
"longitude": 37.1983,
"name": "Elbistan",
@@ -51863,7 +46857,6 @@
"country_code": "US",
"elevation": 113,
"feature_code": "PPLA2",
- "geonameid": 4707814,
"latitude": 32.5007,
"longitude": -94.74049,
"name": "Longview",
@@ -51873,7 +46866,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253956,
"latitude": 32.93333,
"longitude": 75.13333,
"name": "Udhampur",
@@ -51883,7 +46875,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268601,
"latitude": 29.4,
"longitude": 77.2,
"name": "Kair\u0101na",
@@ -51893,7 +46884,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2439376,
"latitude": 14.8888,
"longitude": 5.2692,
"name": "Tahoua",
@@ -51903,7 +46893,6 @@
"country_code": "US",
"elevation": 235,
"feature_code": "PPLA2",
- "geonameid": 4254679,
"latitude": 39.16532,
"longitude": -86.52639,
"name": "Bloomington",
@@ -51913,7 +46902,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857334,
"latitude": 34.4,
"longitude": 133.08333,
"name": "Mihara",
@@ -51923,7 +46911,6 @@
"country_code": "US",
"elevation": 19,
"feature_code": "PPL",
- "geonameid": 5221659,
"latitude": 41.77982,
"longitude": -71.43728,
"name": "Cranston",
@@ -51933,7 +46920,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784055,
"latitude": 39.70083,
"longitude": 122.99111,
"name": "Zhuanghe",
@@ -51943,7 +46929,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277661,
"latitude": 21.8,
"longitude": 80.18333,
"name": "B\u0101l\u0101gh\u0101t",
@@ -51953,7 +46938,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140889,
"latitude": 37.3404,
"longitude": 46.0561,
"name": "Bon\u0101b",
@@ -51963,7 +46947,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2646914,
"latitude": 51.62907,
"longitude": -0.74934,
"name": "High Wycombe",
@@ -51973,7 +46956,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1792516,
"latitude": 28.1375,
"longitude": 106.82,
"name": "Loushanguan",
@@ -51983,7 +46965,6 @@
"country_code": "US",
"elevation": 183,
"feature_code": "PPL",
- "geonameid": 4920607,
"latitude": 41.59337,
"longitude": -87.34643,
"name": "Gary",
@@ -51993,7 +46974,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816890,
"latitude": 33.22917,
"longitude": 119.30917,
"name": "Baoying",
@@ -52003,7 +46983,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1640585,
"latitude": -8.06667,
"longitude": 111.91667,
"name": "Kedungwaru",
@@ -52013,7 +46992,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2221030,
"latitude": 10.34107,
"longitude": 15.23288,
"name": "Yagoua",
@@ -52023,7 +47001,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2037823,
"latitude": 40.63732,
"longitude": 122.50251,
"name": "Dashiqiao",
@@ -52033,7 +47010,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284832,
"latitude": 47.56263,
"longitude": 19.11681,
"name": "Budapest XV. ker\u00fclet",
@@ -52043,7 +47019,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2228079,
"latitude": 3.51667,
"longitude": 11.5,
"name": "Mbalmayo",
@@ -52053,7 +47028,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035511,
"latitude": 42.94222,
"longitude": 126.05611,
"name": "Panshi",
@@ -52063,7 +47037,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1627459,
"latitude": -6.31694,
"longitude": 106.66417,
"name": "Serpong",
@@ -52073,7 +47046,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 250258,
"latitude": 32.03917,
"longitude": 35.72722,
"name": "As Sal\u0163",
@@ -52083,17 +47055,24 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3347019,
"latitude": -15.19611,
"longitude": 12.15222,
"name": "Namibe",
"population": 80149
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.4333,
+ "longitude": 13.30762,
+ "name": "Lichterfelde",
+ "population": 80149
+ },
{
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3165201,
"latitude": 45.66667,
"longitude": 12.245,
"name": "Treviso",
@@ -52103,7 +47082,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3088972,
"latitude": 51.40547,
"longitude": 19.70321,
"name": "Piotrk\u00f3w Trybunalski",
@@ -52113,7 +47091,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 725578,
"latitude": 42.48333,
"longitude": 26.5,
"name": "Yambol",
@@ -52123,7 +47100,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2227402,
"latitude": 6.51667,
"longitude": 14.3,
"name": "Me\u00efganga",
@@ -52133,7 +47109,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 5364855,
"latitude": 33.85363,
"longitude": -118.13396,
"name": "Lakewood",
@@ -52143,7 +47118,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1486910,
"latitude": 67.5,
"longitude": 64.0,
"name": "Vorkuta",
@@ -52153,7 +47127,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3803449,
"latitude": 10.46941,
"longitude": -66.83063,
"name": "El Cafetal",
@@ -52163,7 +47136,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2517367,
"latitude": 38.96667,
"longitude": -0.18333,
"name": "Gandia",
@@ -52173,7 +47145,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110629,
"latitude": 35.96667,
"longitude": 140.13333,
"name": "Ushiku",
@@ -52183,7 +47154,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263622,
"latitude": 29.98333,
"longitude": 75.38333,
"name": "M\u0101nsa",
@@ -52193,7 +47163,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1279715,
"latitude": 29.25,
"longitude": 88.88333,
"name": "Rikaze",
@@ -52203,7 +47172,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2320829,
"latitude": 5.48986,
"longitude": 6.00743,
"name": "Ughelli",
@@ -52213,7 +47181,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2935530,
"latitude": 51.66667,
"longitude": 6.96667,
"name": "Dorsten",
@@ -52223,7 +47190,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3528756,
"latitude": 22.73333,
"longitude": -98.96667,
"name": "El Mante",
@@ -52233,7 +47199,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636876,
"latitude": 54.56848,
"longitude": -1.3187,
"name": "Stockton-on-Tees",
@@ -52243,7 +47208,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530367,
"latitude": 16.25,
"longitude": -92.13333,
"name": "Comit\u00e1n de Dom\u00ednguez",
@@ -52253,7 +47217,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278667,
"latitude": 33.73333,
"longitude": 75.15,
"name": "Anantn\u0101g",
@@ -52263,7 +47226,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2470656,
"latitude": 36.81806,
"longitude": 10.305,
"name": "La Goulette",
@@ -52272,8 +47234,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 783814,
+ "feature_code": "PPLA2",
"latitude": 45.38361,
"longitude": 20.38194,
"name": "Zrenjanin",
@@ -52283,7 +47244,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3598655,
"latitude": 14.93333,
"longitude": -91.11667,
"name": "Chichicastenango",
@@ -52293,7 +47253,6 @@
"country_code": "US",
"elevation": 259,
"feature_code": "PPL",
- "geonameid": 4992523,
"latitude": 42.48531,
"longitude": -83.37716,
"name": "Farmington Hills",
@@ -52303,7 +47262,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1213855,
"latitude": 1.7427,
"longitude": 98.7792,
"name": "Sibolga",
@@ -52313,7 +47271,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 730435,
"latitude": 41.94028,
"longitude": 25.56944,
"name": "Khaskovo",
@@ -52323,7 +47280,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1793533,
"latitude": 32.16667,
"longitude": 120.01361,
"name": "Taixing",
@@ -52333,7 +47289,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267887,
"latitude": 10.91667,
"longitude": 79.83333,
"name": "k\u0101raik\u0101l",
@@ -52343,7 +47298,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1644178,
"latitude": -8.36667,
"longitude": 114.15,
"name": "Genteng",
@@ -52353,7 +47307,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1708824,
"latitude": 7.00833,
"longitude": 125.08944,
"name": "Kidapawan",
@@ -52363,7 +47316,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2031405,
"latitude": 49.03333,
"longitude": 104.08333,
"name": "Erdenet",
@@ -52373,7 +47325,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759798,
"latitude": 52.30083,
"longitude": 4.86389,
"name": "Amstelveen",
@@ -52383,7 +47334,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2347303,
"latitude": 5.55718,
"longitude": 7.63676,
"name": "Bende",
@@ -52393,7 +47343,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 540761,
"latitude": 45.4375,
"longitude": 40.57556,
"name": "Kropotkin",
@@ -52403,7 +47352,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460522,
"latitude": -18.41917,
"longitude": -49.21528,
"name": "Itumbiara",
@@ -52413,7 +47361,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3982213,
"latitude": 18.91667,
"longitude": -103.88333,
"name": "Tecom\u00e1n",
@@ -52423,7 +47370,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2327223,
"latitude": 7.81667,
"longitude": 4.91667,
"name": "Oke Mesi",
@@ -52433,7 +47379,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3457708,
"latitude": -22.91944,
"longitude": -42.81861,
"name": "Maric\u00e1",
@@ -52443,7 +47388,6 @@
"country_code": "BH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 385038,
"latitude": 26.13,
"longitude": 50.555,
"name": "Ar Rif\u0101\u2018",
@@ -52453,7 +47397,6 @@
"country_code": "HU",
"elevation": 230,
"feature_code": "PPLA",
- "geonameid": 3044310,
"latitude": 47.23088,
"longitude": 16.62155,
"name": "Szombathely",
@@ -52463,7 +47406,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2335713,
"latitude": 9.58333,
"longitude": 8.3,
"name": "Kafachan",
@@ -52473,7 +47415,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 688533,
"latitude": 44.50013,
"longitude": 34.16148,
"name": "Yalta",
@@ -52483,7 +47424,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1697497,
"latitude": 14.9109,
"longitude": 121.0493,
"name": "Norzagaray",
@@ -52493,7 +47433,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268977,
"latitude": 21.85,
"longitude": 84.03333,
"name": "Jh\u0101rsuguda",
@@ -52503,7 +47442,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793385,
"latitude": 39.73333,
"longitude": 118.45,
"name": "Tangjiazhuang",
@@ -52513,7 +47451,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1492517,
"latitude": 56.0852,
"longitude": 63.6335,
"name": "Shadrinsk",
@@ -52523,7 +47460,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2532945,
"latitude": 34.26478,
"longitude": -5.92598,
"name": "Sidi Slimane",
@@ -52533,7 +47469,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3595416,
"latitude": 15.31972,
"longitude": -91.47083,
"name": "Huehuetenango",
@@ -52543,7 +47478,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275194,
"latitude": 21.81667,
"longitude": 83.91667,
"name": "Br\u0101jar\u0101jnagar",
@@ -52553,7 +47487,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 709611,
"latitude": 49.34991,
"longitude": 23.50561,
"name": "Drogobych",
@@ -52563,7 +47496,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2875457,
"latitude": 51.21667,
"longitude": 7.61667,
"name": "L\u00fcdenscheid",
@@ -52573,7 +47505,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 289011,
"latitude": 23.39083,
"longitude": 57.42444,
"name": "Ar Rust\u0101q",
@@ -52583,7 +47514,6 @@
"country_code": "US",
"elevation": 165,
"feature_code": "PPL",
- "geonameid": 4401242,
"latitude": 38.81061,
"longitude": -90.69985,
"name": "O'Fallon",
@@ -52593,7 +47523,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140951,
"latitude": 30.5959,
"longitude": 50.2417,
"name": "Behbah\u0101n",
@@ -52603,7 +47532,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2470173,
"latitude": 33.50398,
"longitude": 11.11216,
"name": "Zarzis",
@@ -52613,7 +47541,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284834,
"latitude": 47.4791,
"longitude": 19.15835,
"name": "Budapest X. ker\u00fclet",
@@ -52623,7 +47550,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3110718,
"latitude": 41.46667,
"longitude": 2.08333,
"name": "Sant Cugat del Vall\u00e8s",
@@ -52633,7 +47559,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265938,
"latitude": 17.55,
"longitude": 80.63333,
"name": "Kottag\u016bdem",
@@ -52643,7 +47568,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261641,
"latitude": 26.93333,
"longitude": 81.21667,
"name": "Naw\u0101bganj",
@@ -52653,7 +47577,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1644349,
"latitude": -7.39083,
"longitude": 112.72667,
"name": "Gedangan",
@@ -52663,7 +47586,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794794,
"latitude": 36.88,
"longitude": 118.7375,
"name": "Shouguang",
@@ -52673,7 +47595,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795579,
"latitude": 36.24111,
"longitude": 115.66722,
"name": "Shenxian",
@@ -52683,7 +47604,6 @@
"country_code": "US",
"elevation": 260,
"feature_code": "PPL",
- "geonameid": 4255466,
"latitude": 39.97837,
"longitude": -86.11804,
"name": "Carmel",
@@ -52693,7 +47613,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3061369,
"latitude": 49.22665,
"longitude": 17.66633,
"name": "Zl\u00edn",
@@ -52703,7 +47622,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 889453,
"latitude": -18.33328,
"longitude": 29.91534,
"name": "Kadoma",
@@ -52713,7 +47631,6 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 233730,
"latitude": -0.59167,
"longitude": 30.62861,
"name": "Bwizibwera",
@@ -52722,18 +47639,16 @@
{
"country_code": "GN",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2420562,
- "latitude": 8.5625,
- "longitude": -10.1325,
- "name": "Gu\u00e9ck\u00e9dou",
+ "feature_code": "PPLA2",
+ "latitude": 8.56744,
+ "longitude": -10.1336,
+ "name": "Gueckedou",
"population": 79140
},
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797438,
"latitude": 37.2975,
"longitude": 120.82556,
"name": "Qixia",
@@ -52743,7 +47658,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338242,
"latitude": 5.96669,
"longitude": 8.70632,
"name": "Ikom",
@@ -52753,7 +47667,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278471,
"latitude": 13.08449,
"longitude": 79.67053,
"name": "Arakkonam",
@@ -52763,7 +47676,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790885,
"latitude": 31.9925,
"longitude": 116.24722,
"name": "Wuyang",
@@ -52773,7 +47685,6 @@
"country_code": "US",
"elevation": 228,
"feature_code": "PPLA2",
- "geonameid": 4461574,
"latitude": 35.40875,
"longitude": -80.57951,
"name": "Concord",
@@ -52783,7 +47694,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1713226,
"latitude": 15.3072,
"longitude": 120.9464,
"name": "Gapan",
@@ -52793,7 +47703,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859952,
"latitude": 34.58333,
"longitude": 135.61667,
"name": "Kashihara",
@@ -52803,7 +47712,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1788402,
"latitude": 25.11667,
"longitude": 114.3,
"name": "Xiongzhou",
@@ -52813,7 +47721,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630798,
"latitude": -7.8685,
"longitude": 111.462,
"name": "Ponorogo",
@@ -52823,7 +47730,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2351740,
"latitude": 6.11,
"longitude": 7.0724,
"name": "Agulu",
@@ -52833,7 +47739,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185116,
"latitude": 24.88333,
"longitude": 90.71667,
"name": "Netrakona",
@@ -52843,7 +47748,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3445847,
"latitude": -23.43389,
"longitude": -45.07111,
"name": "Ubatuba",
@@ -52853,7 +47757,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1830194,
"latitude": 13.65611,
"longitude": 102.5625,
"name": "Pa\u00f4y P\u00eat",
@@ -52863,7 +47766,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 666767,
"latitude": 44.43333,
"longitude": 24.36667,
"name": "Slatina",
@@ -52873,7 +47775,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2634910,
"latitude": 53.68331,
"longitude": -1.49768,
"name": "Wakefield",
@@ -52883,7 +47784,6 @@
"country_code": "US",
"elevation": 52,
"feature_code": "PPLA2",
- "geonameid": 5372253,
"latitude": 37.30216,
"longitude": -120.48297,
"name": "Merced",
@@ -52893,7 +47793,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1172035,
"latitude": 30.96128,
"longitude": 70.93904,
"name": "Leiah",
@@ -52903,7 +47802,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4004885,
"latitude": 19.4,
"longitude": -100.36667,
"name": "Heroica Zit\u00e1cuaro",
@@ -52913,7 +47811,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3944797,
"latitude": -10.68333,
"longitude": -76.26667,
"name": "Cerro de Pasco",
@@ -52923,7 +47820,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2873759,
"latitude": 50.81667,
"longitude": 8.76667,
"name": "Marburg an der Lahn",
@@ -52933,7 +47829,6 @@
"country_code": "US",
"elevation": 188,
"feature_code": "PPLA2",
- "geonameid": 5268249,
"latitude": 42.72613,
"longitude": -87.78285,
"name": "Racine",
@@ -52943,7 +47838,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3166598,
"latitude": 45.53449,
"longitude": 9.23401,
"name": "Sesto San Giovanni",
@@ -52953,7 +47847,6 @@
"country_code": "US",
"elevation": 23,
"feature_code": "PPL",
- "geonameid": 4734825,
"latitude": 29.61968,
"longitude": -95.63495,
"name": "Sugar Land",
@@ -52963,9 +47856,8 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2244991,
- "latitude": 13.75389,
- "longitude": -13.75861,
+ "latitude": 13.77073,
+ "longitude": -13.66734,
"name": "Tambacounda",
"population": 78800
},
@@ -52973,9 +47865,8 @@
"country_code": "TJ",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1221194,
- "latitude": 37.91453,
- "longitude": 69.78303,
+ "latitude": 37.91458,
+ "longitude": 69.78454,
"name": "K\u016dlob",
"population": 78786
},
@@ -52983,7 +47874,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 87205,
"latitude": 32.76704,
"longitude": 22.63669,
"name": "Darnah",
@@ -52993,7 +47883,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3805673,
"latitude": 7.88782,
"longitude": -67.47236,
"name": "San Fernando Apure",
@@ -53003,7 +47892,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788452,
"latitude": 30.86667,
"longitude": 114.8,
"name": "Xinzhou",
@@ -53013,7 +47901,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794971,
"latitude": 39.23417,
"longitude": 106.34389,
"name": "Shitanjing",
@@ -53023,7 +47910,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3061370,
"latitude": 49.21667,
"longitude": 17.66667,
"name": "Zl\u00edn",
@@ -53033,7 +47919,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1153669,
"latitude": 19.90858,
"longitude": 99.8325,
"name": "Chiang Rai",
@@ -53043,7 +47928,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3169984,
"latitude": 40.83196,
"longitude": 14.11001,
"name": "Pozzuoli",
@@ -53053,7 +47937,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 352913,
"latitude": 27.3104,
"longitude": 30.97004,
"name": "Manfal\u016b\u0163",
@@ -53063,7 +47946,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1298482,
"latitude": 21.8787,
"longitude": 95.97965,
"name": "Sagaing",
@@ -53073,7 +47955,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266436,
"latitude": 26.31667,
"longitude": 89.43333,
"name": "Koch Bih\u0101r",
@@ -53083,7 +47964,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034340,
"latitude": 42.96611,
"longitude": 129.8425,
"name": "Tumen",
@@ -53093,7 +47973,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446098,
"latitude": -20.75111,
"longitude": -51.67833,
"name": "Tr\u00eas Lagoas",
@@ -53103,7 +47982,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3178229,
"latitude": 45.80998,
"longitude": 9.08744,
"name": "Como",
@@ -53113,7 +47991,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3433658,
"latitude": -33.00938,
"longitude": -58.51722,
"name": "Gualeguaych\u00fa",
@@ -53123,7 +48000,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272473,
"latitude": 13.29194,
"longitude": 77.54306,
"name": "Dod Ball\u0101pur",
@@ -53133,7 +48009,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6362987,
"latitude": 35.88933,
"longitude": -5.31979,
"name": "Ceuta",
@@ -53143,7 +48018,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 946058,
"latitude": -31.58893,
"longitude": 28.78443,
"name": "Umtata",
@@ -53153,7 +48027,6 @@
"country_code": "US",
"elevation": 486,
"feature_code": "PPL",
- "geonameid": 5356277,
"latitude": 33.74752,
"longitude": -116.97197,
"name": "Hemet",
@@ -53163,7 +48036,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1024696,
"latitude": -19.60944,
"longitude": 34.74306,
"name": "Dondo",
@@ -53173,7 +48045,6 @@
"country_code": "PR",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 4566385,
"latitude": 18.20107,
"longitude": -67.13962,
"name": "Mayag\u00fcez",
@@ -53183,7 +48054,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 470546,
"latitude": 60.70763,
"longitude": 28.75283,
"name": "Vyborg",
@@ -53193,7 +48063,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2521582,
"latitude": 28.09962,
"longitude": -16.68102,
"name": "Arona",
@@ -53203,7 +48072,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448879,
"latitude": -21.13556,
"longitude": -44.26167,
"name": "S\u00e3o Jo\u00e3o del Rei",
@@ -53213,7 +48081,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276335,
"latitude": 25.41667,
"longitude": 82.56667,
"name": "Bhadoh\u012b",
@@ -53223,7 +48090,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2510279,
"latitude": 39.43705,
"longitude": -0.46546,
"name": "Torrent",
@@ -53233,7 +48099,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4175538,
"latitude": 28.01057,
"longitude": -82.57732,
"name": "Town 'n' Country",
@@ -53243,7 +48108,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267457,
"latitude": 23.65,
"longitude": 88.13333,
"name": "K\u0101toya",
@@ -53253,7 +48117,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2455518,
"latitude": 14.4417,
"longitude": -11.4341,
"name": "Kayes",
@@ -53263,7 +48126,6 @@
"country_code": "US",
"elevation": 34,
"feature_code": "PPL",
- "geonameid": 5392528,
"latitude": 33.73585,
"longitude": -118.29229,
"name": "San Pedro",
@@ -53273,7 +48135,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033301,
"latitude": 47.86667,
"longitude": 128.83333,
"name": "Youhao",
@@ -53283,7 +48144,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2864475,
"latitude": 54.06667,
"longitude": 9.98333,
"name": "Neum\u00fcnster",
@@ -53293,7 +48153,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 502018,
"latitude": 55.76111,
"longitude": 37.8575,
"name": "Reutov",
@@ -53303,7 +48162,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4005270,
"latitude": 21.01858,
"longitude": -101.2591,
"name": "Guanajuato",
@@ -53313,7 +48171,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1733440,
"latitude": 5.9258,
"longitude": 116.06094,
"name": "Putatan",
@@ -53323,7 +48180,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1860063,
"latitude": 33.4425,
"longitude": 129.96972,
"name": "Karatsu",
@@ -53333,17 +48189,24 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1619434,
"latitude": 13.805,
"longitude": 100.47283,
"name": "Bang Kruai",
"population": 78305
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.55,
+ "longitude": 13.36667,
+ "name": "Wedding",
+ "population": 78290
+ },
{
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2345096,
"latitude": 11.5538,
"longitude": 11.4085,
"name": "Daura",
@@ -53353,9 +48216,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99350,
- "latitude": 32.17349,
- "longitude": 46.0433,
+ "latitude": 32.17419,
+ "longitude": 46.04345,
"name": "Al \u1e28ayy",
"population": 78272
},
@@ -53363,7 +48225,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798634,
"latitude": 35.50056,
"longitude": 117.63083,
"name": "Pingyi",
@@ -53373,7 +48234,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284841,
"latitude": 47.47997,
"longitude": 19.25388,
"name": "Budapest XVII. ker\u00fclet",
@@ -53383,7 +48243,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456998,
"latitude": -22.43194,
"longitude": -46.95778,
"name": "Mogi Mirim",
@@ -53393,7 +48252,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861835,
"latitude": 33.63333,
"longitude": 130.68333,
"name": "Iizuka",
@@ -53403,7 +48261,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1225142,
"latitude": 9.81667,
"longitude": 80.16667,
"name": "Valvedditturai",
@@ -53413,7 +48270,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269291,
"latitude": 24.91667,
"longitude": 86.21667,
"name": "Jam\u016bi",
@@ -53423,7 +48279,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803374,
"latitude": 30.4225,
"longitude": 120.29722,
"name": "Linping",
@@ -53433,7 +48288,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 266045,
"latitude": 33.84972,
"longitude": 35.90417,
"name": "Zahl\u00e9",
@@ -53443,7 +48297,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1716287,
"latitude": 14.1122,
"longitude": 122.9553,
"name": "Daet",
@@ -53453,7 +48306,6 @@
"country_code": "US",
"elevation": 24,
"feature_code": "PPL",
- "geonameid": 6332439,
"latitude": 28.5641,
"longitude": -81.2114,
"name": "Alafaya",
@@ -53463,7 +48315,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2294206,
"latitude": 10.06069,
"longitude": -2.50192,
"name": "Wa",
@@ -53473,7 +48324,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907165,
"latitude": 35.67444,
"longitude": 139.435,
"name": "Kunitachi",
@@ -53483,7 +48333,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3408424,
"latitude": -1.71806,
"longitude": -48.8825,
"name": "Abaetetuba",
@@ -53493,7 +48342,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270349,
"latitude": 14.51667,
"longitude": 75.8,
"name": "Harihar",
@@ -53503,7 +48351,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263936,
"latitude": 18.86667,
"longitude": 79.43333,
"name": "Mancher\u0101l",
@@ -53513,7 +48360,6 @@
"country_code": "US",
"elevation": 222,
"feature_code": "PPL",
- "geonameid": 5336537,
"latitude": 34.01223,
"longitude": -117.68894,
"name": "Chino",
@@ -53523,7 +48369,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2940231,
"latitude": 51.55,
"longitude": 7.31667,
"name": "Castrop-Rauxel",
@@ -53533,17 +48378,24 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854803,
"latitude": 35.0,
"longitude": 136.96667,
"name": "\u014cbu",
"population": 77864
},
+ {
+ "country_code": "US",
+ "elevation": 196,
+ "feature_code": "PPL",
+ "latitude": 34.17223,
+ "longitude": -118.37897,
+ "name": "North Hollywood",
+ "population": 77848
+ },
{
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2524245,
"latitude": 37.79664,
"longitude": 12.43518,
"name": "Marsala",
@@ -53553,7 +48405,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268707,
"latitude": 9.07277,
"longitude": 77.34152,
"name": "Kadayanallur",
@@ -53563,7 +48414,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1964032,
"latitude": -6.82,
"longitude": 107.25722,
"name": "Ciranjang-hilir",
@@ -53573,7 +48423,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036066,
"latitude": 45.3,
"longitude": 130.28333,
"name": "Linkou",
@@ -53583,7 +48432,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3680539,
"latitude": 0.83018,
"longitude": -77.64959,
"name": "Ipiales",
@@ -53593,7 +48441,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2747930,
"latitude": 51.53083,
"longitude": 4.46528,
"name": "Roosendaal",
@@ -53603,7 +48450,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273626,
"latitude": 24.03333,
"longitude": 84.06667,
"name": "D\u0101ltenganj",
@@ -53613,7 +48459,6 @@
"country_code": "GM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2413753,
"latitude": 13.27136,
"longitude": -16.64944,
"name": "Brikama",
@@ -53623,7 +48468,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 318137,
"latitude": 37.57444,
"longitude": 43.74083,
"name": "Hakkari",
@@ -53633,7 +48477,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734098,
"latitude": 5.3378,
"longitude": 116.1602,
"name": "Keningau",
@@ -53643,7 +48486,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2648773,
"latitude": 54.96209,
"longitude": -1.60168,
"name": "Gateshead",
@@ -53653,7 +48495,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 4161580,
"latitude": 27.90947,
"longitude": -82.78732,
"name": "Largo",
@@ -53663,7 +48504,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816373,
"latitude": 27.3125,
"longitude": 105.29417,
"name": "Bijie",
@@ -53673,7 +48513,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907306,
"latitude": 35.63639,
"longitude": 139.57444,
"name": "Komae",
@@ -53683,7 +48522,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1807339,
"latitude": 30.19235,
"longitude": 116.02496,
"name": "Huangmei",
@@ -53693,7 +48531,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328617,
"latitude": 9.46667,
"longitude": 12.03333,
"name": "Numan",
@@ -53703,7 +48540,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789176,
"latitude": 36.24861,
"longitude": 116.76583,
"name": "Feicheng",
@@ -53713,7 +48549,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449350,
"latitude": -26.25028,
"longitude": -49.37861,
"name": "S\u00e3o Bento do Sul",
@@ -53723,7 +48558,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3097872,
"latitude": 52.79886,
"longitude": 18.26388,
"name": "Inowroc\u0142aw",
@@ -53733,7 +48567,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 738349,
"latitude": 41.13139,
"longitude": 37.2825,
"name": "Unieh",
@@ -53743,7 +48576,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1898494,
"latitude": 31.1933,
"longitude": 120.71758,
"name": "Songling",
@@ -53753,7 +48585,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805267,
"latitude": 33.73333,
"longitude": 115.4,
"name": "Jishui",
@@ -53763,7 +48594,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2803448,
"latitude": 50.93604,
"longitude": 4.0355,
"name": "Aalst",
@@ -53773,7 +48603,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3092931,
"latitude": 51.40089,
"longitude": 16.20149,
"name": "Lubin",
@@ -53783,7 +48612,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2791537,
"latitude": 51.02574,
"longitude": 4.47762,
"name": "Mechelen",
@@ -53793,7 +48621,6 @@
"country_code": "US",
"elevation": 452,
"feature_code": "PPL",
- "geonameid": 5372205,
"latitude": 33.72835,
"longitude": -117.14642,
"name": "Menifee",
@@ -53803,7 +48630,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 114584,
"latitude": 32.0455,
"longitude": 48.8567,
"name": "Sh\u016bshtar",
@@ -53813,7 +48639,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2644411,
"latitude": 54.52337,
"longitude": -6.03527,
"name": "Lisburn",
@@ -53823,7 +48648,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 743952,
"latitude": 40.60199,
"longitude": 43.09495,
"name": "Kars",
@@ -53833,7 +48657,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1167622,
"latitude": 27.58676,
"longitude": 68.00103,
"name": "Kambar",
@@ -53843,7 +48666,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803364,
"latitude": 36.51556,
"longitude": 118.53972,
"name": "Linqu",
@@ -53853,7 +48675,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271949,
"latitude": 30.66667,
"longitude": 74.75,
"name": "Far\u012bdkot",
@@ -53863,7 +48684,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907300,
"latitude": 35.78944,
"longitude": 139.62333,
"name": "Wako",
@@ -53873,7 +48693,6 @@
"country_code": "US",
"elevation": 62,
"feature_code": "PPLA2",
- "geonameid": 4179320,
"latitude": 31.57851,
"longitude": -84.15574,
"name": "Albany",
@@ -53883,7 +48702,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 127403,
"latitude": 33.64226,
"longitude": 50.0789,
"name": "Khomeyn",
@@ -53893,7 +48711,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034761,
"latitude": 44.41667,
"longitude": 126.95,
"name": "Shulan",
@@ -53903,7 +48720,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1730413,
"latitude": 14.95333,
"longitude": 120.77,
"name": "Apalit",
@@ -53913,7 +48729,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460584,
"latitude": -20.07528,
"longitude": -44.57639,
"name": "Ita\u00fana",
@@ -53923,7 +48738,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277525,
"latitude": 27.43333,
"longitude": 82.18333,
"name": "Balr\u0101mpur",
@@ -53933,7 +48747,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6138610,
"latitude": 45.50008,
"longitude": -73.66585,
"name": "Saint-Laurent",
@@ -53943,7 +48756,6 @@
"country_code": "FJ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2198148,
"latitude": -18.14161,
"longitude": 178.44149,
"name": "Suva",
@@ -53953,7 +48765,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 4501018,
"latitude": 39.92595,
"longitude": -75.11962,
"name": "Camden",
@@ -53963,7 +48774,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863018,
"latitude": 34.35,
"longitude": 132.33333,
"name": "Hatsukaichi",
@@ -53973,7 +48783,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2937959,
"latitude": 51.83864,
"longitude": 12.24555,
"name": "Dessau",
@@ -53983,7 +48792,6 @@
"country_code": "ES",
"elevation": 42,
"feature_code": "PPLA3",
- "geonameid": 2519513,
"latitude": 36.41915,
"longitude": -6.14941,
"name": "Chiclana de la Frontera",
@@ -53993,7 +48801,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787031,
"latitude": 35.55278,
"longitude": 116.82861,
"name": "Yanzhou",
@@ -54003,7 +48810,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277085,
"latitude": 34.21111,
"longitude": 74.34083,
"name": "B\u0101ram\u016bla",
@@ -54013,7 +48819,6 @@
"country_code": "US",
"elevation": 148,
"feature_code": "PPL",
- "geonameid": 5364514,
"latitude": 33.64697,
"longitude": -117.68922,
"name": "Lake Forest",
@@ -54023,7 +48828,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 260204,
"latitude": 37.9625,
"longitude": 23.61972,
"name": "Kerats\u00edni",
@@ -54033,7 +48837,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1644932,
"latitude": -8.8432,
"longitude": 121.6623,
"name": "Ende",
@@ -54043,7 +48846,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3628503,
"latitude": 9.66124,
"longitude": -68.58268,
"name": "San Carlos",
@@ -54053,7 +48855,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1692565,
"latitude": 14.90167,
"longitude": 120.84917,
"name": "Pulilan",
@@ -54063,7 +48864,6 @@
"country_code": "PL",
"elevation": 155,
"feature_code": "PPLA2",
- "geonameid": 759412,
"latitude": 52.16772,
"longitude": 22.29006,
"name": "Siedlce",
@@ -54073,7 +48873,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805833,
"latitude": 37.02444,
"longitude": 111.9125,
"name": "Jiexiu",
@@ -54083,7 +48882,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2491323,
"latitude": 35.88889,
"longitude": 2.74905,
"name": "Ksar el Boukhari",
@@ -54093,7 +48891,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3492985,
"latitude": 18.20854,
"longitude": -71.10077,
"name": "Santa Cruz de Barahona",
@@ -54103,7 +48900,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3877918,
"latitude": -30.59833,
"longitude": -71.20028,
"name": "Ovalle",
@@ -54113,7 +48909,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2639557,
"latitude": 52.3065,
"longitude": -1.94569,
"name": "Redditch",
@@ -54123,7 +48918,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1693136,
"latitude": 13.2923,
"longitude": 123.4855,
"name": "Polangui",
@@ -54133,7 +48927,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448519,
"latitude": -18.71611,
"longitude": -39.85889,
"name": "S\u00e3o Mateus",
@@ -54142,8 +48935,7 @@
{
"country_code": "GN",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2422457,
+ "feature_code": "PPLA2",
"latitude": 9.70556,
"longitude": -13.37694,
"name": "Coyah",
@@ -54153,7 +48945,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPLA2",
- "geonameid": 4688275,
"latitude": 26.30174,
"longitude": -98.16334,
"name": "Edinburg",
@@ -54163,7 +48954,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 471656,
"latitude": 55.31733,
"longitude": 38.65264,
"name": "Voskresensk",
@@ -54173,7 +48963,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272689,
"latitude": 24.68333,
"longitude": 87.96667,
"name": "Dhuli\u0101n",
@@ -54183,7 +48972,6 @@
"country_code": "US",
"elevation": 26,
"feature_code": "PPL",
- "geonameid": 5128549,
"latitude": 40.91149,
"longitude": -73.78235,
"name": "New Rochelle",
@@ -54193,7 +48981,6 @@
"country_code": "US",
"elevation": 43,
"feature_code": "PPL",
- "geonameid": 4711725,
"latitude": 26.21591,
"longitude": -98.32529,
"name": "Mission",
@@ -54203,7 +48990,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2653228,
"latitude": 53.1905,
"longitude": -2.89189,
"name": "Chester",
@@ -54213,7 +48999,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2036653,
"latitude": 42.8675,
"longitude": 130.35806,
"name": "Hunchun",
@@ -54223,7 +49008,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 957487,
"latitude": -26.81358,
"longitude": 27.81695,
"name": "Sasolburg",
@@ -54233,7 +49017,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2335614,
"latitude": 9.6,
"longitude": 8.38333,
"name": "Kagoro",
@@ -54243,7 +49026,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1792359,
"latitude": 29.71139,
"longitude": 118.3125,
"name": "Huangshan",
@@ -54253,7 +49035,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263275,
"latitude": 29.1,
"longitude": 77.91667,
"name": "Maw\u0101na",
@@ -54263,7 +49044,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849561,
"latitude": 33.24,
"longitude": 131.68444,
"name": "Tsurusaki",
@@ -54273,7 +49053,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2920236,
"latitude": 51.56667,
"longitude": 6.98333,
"name": "Gladbeck",
@@ -54283,7 +49062,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1519691,
"latitude": 45.41126,
"longitude": 79.91545,
"name": "Sarkand",
@@ -54293,7 +49071,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267648,
"latitude": 10.95771,
"longitude": 78.08095,
"name": "Karur",
@@ -54303,7 +49080,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 5376095,
"latitude": 38.29714,
"longitude": -122.28553,
"name": "Napa",
@@ -54313,7 +49089,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 358048,
"latitude": 31.41648,
"longitude": 31.81332,
"name": "Damietta",
@@ -54323,7 +49098,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3543299,
"latitude": 21.195,
"longitude": -76.60278,
"name": "Puerto Padre",
@@ -54333,7 +49107,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3714637,
"latitude": 8.95,
"longitude": -79.65,
"name": "Arraij\u00e1n",
@@ -54343,7 +49116,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPLA2",
- "geonameid": 5386834,
"latitude": 37.48522,
"longitude": -122.23635,
"name": "Redwood City",
@@ -54353,7 +49125,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3006787,
"latitude": 46.16667,
"longitude": -1.15,
"name": "La Rochelle",
@@ -54363,7 +49134,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265605,
"latitude": 21.33333,
"longitude": 71.3,
"name": "Kundla",
@@ -54373,7 +49143,6 @@
"country_code": "US",
"elevation": 249,
"feature_code": "PPL",
- "geonameid": 4257494,
"latitude": 39.95559,
"longitude": -86.01387,
"name": "Fishers",
@@ -54383,7 +49152,6 @@
"country_code": "US",
"elevation": 270,
"feature_code": "PPLA2",
- "geonameid": 4407010,
"latitude": 39.76861,
"longitude": -94.84663,
"name": "Saint Joseph",
@@ -54393,7 +49161,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 640999,
"latitude": 61.48333,
"longitude": 21.78333,
"name": "Pori",
@@ -54403,7 +49170,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3628423,
"latitude": 10.33991,
"longitude": -68.74247,
"name": "San Felipe",
@@ -54413,7 +49179,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1170013,
"latitude": 26.66459,
"longitude": 68.00156,
"name": "Moro",
@@ -54423,7 +49188,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 975436,
"latitude": -25.85,
"longitude": 25.63333,
"name": "Mmabatho",
@@ -54433,7 +49197,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2748413,
"latitude": 52.505,
"longitude": 4.95972,
"name": "Purmerend",
@@ -54443,7 +49206,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803948,
"latitude": 39.73194,
"longitude": 116.14,
"name": "Liangxiang",
@@ -54453,7 +49215,6 @@
"country_code": "US",
"elevation": 286,
"feature_code": "PPL",
- "geonameid": 6331909,
"latitude": 34.02893,
"longitude": -84.19858,
"name": "Johns Creek",
@@ -54463,7 +49224,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3027105,
"latitude": 48.81642,
"longitude": 2.49366,
"name": "Champigny-sur-Marne",
@@ -54473,7 +49233,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263664,
"latitude": 20.25,
"longitude": 74.45,
"name": "Manm\u0101d",
@@ -54483,7 +49242,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268011,
"latitude": 27.0546,
"longitude": 79.922,
"name": "Kannauj",
@@ -54493,7 +49251,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 967106,
"latitude": -33.59067,
"longitude": 22.2014,
"name": "Oudtshoorn",
@@ -54503,7 +49260,6 @@
"country_code": "LU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2960316,
"latitude": 49.61167,
"longitude": 6.13,
"name": "Luxembourg",
@@ -54513,7 +49269,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2793508,
"latitude": 50.48657,
"longitude": 4.18785,
"name": "La Louvi\u00e8re",
@@ -54523,7 +49278,6 @@
"country_code": "RE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 935214,
"latitude": -21.3393,
"longitude": 55.47811,
"name": "Saint-Pierre",
@@ -54532,8 +49286,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 787237,
+ "feature_code": "PPLA2",
"latitude": 44.87083,
"longitude": 20.64028,
"name": "Pan\u010devo",
@@ -54543,17 +49296,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1813658,
"latitude": 29.65628,
"longitude": 121.4064,
- "name": "Fenghua Shi",
+ "name": "Fenghua",
"population": 76653
},
{
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3712076,
"latitude": 9.35917,
"longitude": -79.90139,
"name": "Col\u00f3n",
@@ -54563,7 +49314,6 @@
"country_code": "US",
"elevation": 1106,
"feature_code": "PPLA2",
- "geonameid": 5713587,
"latitude": 44.05817,
"longitude": -121.31531,
"name": "Bend",
@@ -54573,7 +49323,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2982235,
"latitude": 48.8765,
"longitude": 2.18967,
"name": "Rueil-Malmaison",
@@ -54583,7 +49332,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264138,
"latitude": 30.21667,
"longitude": 74.48333,
"name": "Malaut",
@@ -54593,7 +49341,6 @@
"country_code": "US",
"elevation": 22,
"feature_code": "PPL",
- "geonameid": 5327422,
"latitude": 33.88168,
"longitude": -118.11701,
"name": "Bellflower",
@@ -54603,7 +49350,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3625341,
"latitude": 10.03863,
"longitude": -67.48938,
"name": "Villa de Cura",
@@ -54613,7 +49359,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1712531,
"latitude": 14.83333,
"longitude": 120.88333,
"name": "Guiguinto",
@@ -54623,7 +49368,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2955471,
"latitude": 51.38333,
"longitude": 8.08333,
"name": "Arnsberg",
@@ -54633,7 +49377,6 @@
"country_code": "US",
"elevation": 243,
"feature_code": "PPLA2",
- "geonameid": 4885164,
"latitude": 40.4842,
"longitude": -88.99369,
"name": "Bloomington",
@@ -54643,7 +49386,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262200,
"latitude": 29.45,
"longitude": 78.45,
"name": "Nag\u012bna",
@@ -54653,7 +49395,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3117533,
"latitude": 41.72498,
"longitude": 1.82656,
"name": "Manresa",
@@ -54663,7 +49404,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460064,
"latitude": -17.88139,
"longitude": -51.71444,
"name": "Jata\u00ed",
@@ -54673,7 +49413,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448902,
"latitude": -21.96917,
"longitude": -46.79806,
"name": "S\u00e3o Jo\u00e3o da Boa Vista",
@@ -54683,7 +49422,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458425,
"latitude": -22.73083,
"longitude": -45.12472,
"name": "Lorena",
@@ -54693,7 +49431,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2648970,
"latitude": 53.83333,
"longitude": -2.91667,
"name": "Fylde",
@@ -54703,7 +49440,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278023,
"latitude": 11.6,
"longitude": 75.58333,
"name": "Badagara",
@@ -54712,8 +49448,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229278,
+ "feature_code": "PPLA2",
"latitude": 1.08209,
"longitude": 34.17503,
"name": "Mbale",
@@ -54723,7 +49458,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2847645,
"latitude": 52.28333,
"longitude": 7.45,
"name": "Rheine",
@@ -54733,7 +49467,6 @@
"country_code": "IL",
"elevation": 262,
"feature_code": "PPL",
- "geonameid": 6693679,
"latitude": 31.89825,
"longitude": 35.01051,
"name": "Modiin",
@@ -54743,7 +49476,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269578,
"latitude": 19.06667,
"longitude": 82.03333,
"name": "Jagdalpur",
@@ -54753,7 +49485,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3389652,
"latitude": -7.9575,
"longitude": -36.20472,
"name": "Santa Cruz do Capibaribe",
@@ -54763,7 +49494,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1809532,
"latitude": 23.09639,
"longitude": 109.60917,
"name": "Guigang",
@@ -54773,7 +49503,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2749234,
"latitude": 51.765,
"longitude": 5.51806,
"name": "Oss",
@@ -54783,7 +49512,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038854,
"latitude": 40.02472,
"longitude": 128.15972,
"name": "Yuktae-dong",
@@ -54793,7 +49521,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3037456,
"latitude": 43.56241,
"longitude": 7.12777,
"name": "Antibes",
@@ -54803,7 +49530,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787437,
"latitude": 39.1375,
"longitude": 116.99972,
"name": "Yangliuqing",
@@ -54813,7 +49539,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 4941720,
"latitude": 42.70704,
"longitude": -71.16311,
"name": "Lawrence",
@@ -54823,7 +49548,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3448257,
"latitude": -23.76,
"longitude": -45.40972,
"name": "S\u00e3o Sebasti\u00e3o",
@@ -54833,7 +49557,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268775,
"latitude": 24.43333,
"longitude": 85.51667,
"name": "Jumri Tilaiy\u0101",
@@ -54843,7 +49566,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284839,
"latitude": 47.43047,
"longitude": 19.07098,
"name": "Budapest XXI. ker\u00fclet",
@@ -54853,7 +49575,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3385935,
"latitude": -3.76611,
"longitude": -49.6725,
"name": "Tucuru\u00ed",
@@ -54863,7 +49584,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112899,
"latitude": 38.57167,
"longitude": 140.95556,
"name": "Furukawa",
@@ -54873,7 +49593,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464304,
"latitude": -23.83222,
"longitude": -46.81139,
"name": "Embu Gua\u00e7u",
@@ -54883,7 +49602,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 886763,
"latitude": -20.06373,
"longitude": 30.82766,
"name": "Masvingo",
@@ -54893,7 +49611,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 526480,
"latitude": 44.21028,
"longitude": 43.13528,
"name": "Mineral\u2019nyye Vody",
@@ -54903,7 +49620,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3660418,
"latitude": -1.81667,
"longitude": -79.51667,
"name": "Babahoyo",
@@ -54913,7 +49629,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 304382,
"latitude": 37.4247,
"longitude": 41.33934,
"name": "Midyat",
@@ -54923,7 +49638,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2693678,
"latitude": 55.70584,
"longitude": 13.19321,
"name": "Lund",
@@ -54933,7 +49647,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2092740,
"latitude": -6.72208,
"longitude": 146.98469,
"name": "Lae",
@@ -54943,7 +49656,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1235846,
"latitude": 5.94851,
"longitude": 80.53528,
"name": "Matara",
@@ -54953,7 +49665,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 122915,
"latitude": 34.1885,
"longitude": 48.377,
"name": "Nah\u0101vand",
@@ -54963,7 +49674,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1623180,
"latitude": -6.8976,
"longitude": 112.0649,
"name": "Tuban",
@@ -54973,7 +49683,6 @@
"country_code": "US",
"elevation": 297,
"feature_code": "PPL",
- "geonameid": 5552301,
"latitude": 33.4356,
"longitude": -112.3496,
"name": "Avondale",
@@ -54983,7 +49692,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6119518,
"latitude": 45.74222,
"longitude": -73.45008,
"name": "Repentigny",
@@ -54993,7 +49701,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606790,
"latitude": 17.16116,
"longitude": 104.14725,
"name": "Sakon Nakhon",
@@ -55003,7 +49710,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1170486,
"latitude": 30.44004,
"longitude": 72.35431,
"name": "Mi\u0101n Chann\u016bn",
@@ -55013,7 +49719,6 @@
"country_code": "SZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 934985,
"latitude": -26.31667,
"longitude": 31.13333,
"name": "Mbabane",
@@ -55023,7 +49728,6 @@
"country_code": "US",
"elevation": 114,
"feature_code": "PPLA2",
- "geonameid": 4677008,
"latitude": 30.67436,
"longitude": -96.36996,
"name": "Bryan",
@@ -55033,7 +49737,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277723,
"latitude": 22.47472,
"longitude": 88.17028,
"name": "Baj Baj",
@@ -55043,7 +49746,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1797793,
"latitude": 30.45113,
"longitude": 115.25593,
"name": "Qingquan",
@@ -55053,7 +49755,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2817311,
"latitude": 51.25,
"longitude": 6.38333,
"name": "Viersen",
@@ -55063,7 +49764,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2026643,
"latitude": 48.7916,
"longitude": 132.9247,
"name": "Birobidzhan",
@@ -55073,7 +49773,6 @@
"country_code": "US",
"elevation": 205,
"feature_code": "PPLA2",
- "geonameid": 4236895,
"latitude": 39.84031,
"longitude": -88.9548,
"name": "Decatur",
@@ -55083,7 +49782,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2655009,
"latitude": 51.41363,
"longitude": -0.75054,
"name": "Bracknell",
@@ -55093,7 +49791,6 @@
"country_code": "US",
"elevation": 230,
"feature_code": "PPLA2",
- "geonameid": 5211303,
"latitude": 41.40897,
"longitude": -75.66241,
"name": "Scranton",
@@ -55103,7 +49800,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266179,
"latitude": 22.7,
"longitude": 88.3475,
"name": "Konnagar",
@@ -55113,7 +49809,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 4163971,
"latitude": 28.08363,
"longitude": -80.60811,
"name": "Melbourne",
@@ -55123,7 +49818,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448063,
"latitude": -29.63806,
"longitude": -51.00694,
"name": "Sapiranga",
@@ -55133,7 +49827,6 @@
"country_code": "US",
"elevation": -4,
"feature_code": "PPL",
- "geonameid": 5359446,
"latitude": 33.72058,
"longitude": -116.21556,
"name": "Indio",
@@ -55143,7 +49836,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5955895,
"latitude": 56.72676,
"longitude": -111.38103,
"name": "Fort McMurray",
@@ -55153,7 +49845,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3046619,
"latitude": 47.9126,
"longitude": 19.97709,
"name": "Par\u00e1dsasv\u00e1r",
@@ -55163,7 +49854,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2185018,
"latitude": -40.35,
"longitude": 175.61667,
"name": "Palmerston North",
@@ -55173,7 +49863,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258338,
"latitude": 16.98333,
"longitude": 73.3,
"name": "Ratn\u0101giri",
@@ -55183,7 +49872,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1640765,
"latitude": -7.16667,
"longitude": 112.6333,
"name": "Kebomas",
@@ -55193,7 +49881,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 728378,
"latitude": 42.2,
"longitude": 24.33333,
"name": "Pazardzhik",
@@ -55203,7 +49890,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2391893,
"latitude": 8.04253,
"longitude": 2.48599,
"name": "Sav\u00e9",
@@ -55213,7 +49899,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2159220,
"latitude": -21.15345,
"longitude": 149.16554,
"name": "Mackay",
@@ -55223,7 +49908,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3181355,
"latitude": 45.61128,
"longitude": 8.84914,
"name": "Busto Arsizio",
@@ -55233,7 +49917,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3110040,
"latitude": 40.54433,
"longitude": -3.61588,
"name": "San Sebasti\u00e1n de los Reyes",
@@ -55243,7 +49926,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3518407,
"latitude": 19.28333,
"longitude": -98.43333,
"name": "San Mart\u00edn Texmelucan de Labastida",
@@ -55253,7 +49935,6 @@
"country_code": "AF",
"elevation": 877,
"feature_code": "PPLA",
- "geonameid": 1133453,
"latitude": 35.92139,
"longitude": 64.78361,
"name": "Maymana",
@@ -55263,7 +49944,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2938323,
"latitude": 53.05,
"longitude": 8.61667,
"name": "Delmenhorst",
@@ -55273,7 +49953,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1803266,
"latitude": 34.37803,
"longitude": 109.20892,
"name": "Lintong",
@@ -55283,7 +49962,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3655131,
"latitude": -2.23333,
"longitude": -80.9,
"name": "La Libertad",
@@ -55293,7 +49971,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270072,
"latitude": 19.71667,
"longitude": 77.15,
"name": "Hingoli",
@@ -55303,7 +49980,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6101645,
"latitude": 44.30012,
"longitude": -78.31623,
"name": "Peterborough",
@@ -55313,7 +49989,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3613528,
"latitude": 13.30028,
"longitude": -87.19083,
"name": "Ciudad Choluteca",
@@ -55323,7 +49998,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2491911,
"latitude": 36.26104,
"longitude": 2.22015,
"name": "Khemis Miliana",
@@ -55333,7 +50007,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1641184,
"latitude": -6.8487,
"longitude": 108.6422,
"name": "Karangsembung",
@@ -55343,7 +50016,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294946,
"latitude": 32.43645,
"longitude": 34.91956,
"name": "H\u0331adera",
@@ -55353,7 +50025,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1794479,
"latitude": 36.85917,
"longitude": 120.52694,
"name": "Laixi",
@@ -55363,7 +50034,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 553399,
"latitude": 48.31779,
"longitude": 40.25948,
"name": "Kamensk-Shakhtinskiy",
@@ -55373,7 +50043,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1219762,
"latitude": 37.61852,
"longitude": 62.16715,
"name": "Bayramaly",
@@ -55383,7 +50052,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2641674,
"latitude": 53.0,
"longitude": -2.23333,
"name": "Newcastle under Lyme",
@@ -55393,7 +50061,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455161,
"latitude": -19.86028,
"longitude": -44.60833,
"name": "Par\u00e1 de Minas",
@@ -55403,7 +50070,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852472,
"latitude": 34.81667,
"longitude": 138.18333,
"name": "Shimada",
@@ -55413,7 +50079,6 @@
"country_code": "US",
"elevation": 265,
"feature_code": "PPL",
- "geonameid": 5019335,
"latitude": 45.09413,
"longitude": -93.35634,
"name": "Brooklyn Park",
@@ -55423,7 +50088,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1510469,
"latitude": 54.4165,
"longitude": 86.2976,
"name": "Belovo",
@@ -55433,7 +50097,6 @@
"country_code": "US",
"elevation": 28,
"feature_code": "PPL",
- "geonameid": 4951257,
"latitude": 42.3876,
"longitude": -71.0995,
"name": "Somerville",
@@ -55443,7 +50106,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850872,
"latitude": 35.90393,
"longitude": 136.16687,
"name": "Takefu",
@@ -55453,7 +50115,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624668,
"latitude": -6.93333,
"longitude": 109.16667,
"name": "Tarub",
@@ -55463,7 +50124,6 @@
"country_code": "US",
"elevation": 294,
"feature_code": "PPL",
- "geonameid": 5014130,
"latitude": 42.70225,
"longitude": -83.40272,
"name": "Waterford",
@@ -55473,7 +50133,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 311665,
"latitude": 39.92371,
"longitude": 44.045,
"name": "I\u011fd\u0131r",
@@ -55483,7 +50142,6 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1528249,
"latitude": 40.93333,
"longitude": 73.0,
"name": "Jalal-Abad",
@@ -55493,7 +50151,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1163054,
"latitude": 26.00228,
"longitude": 63.04399,
"name": "Turbat",
@@ -55503,7 +50160,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275388,
"latitude": 10.01171,
"longitude": 77.34976,
"name": "Bodin\u0101yakkan\u016br",
@@ -55513,7 +50169,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1792087,
"latitude": 35.87861,
"longitude": 119.97528,
"name": "Jiaonan",
@@ -55523,7 +50178,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267195,
"latitude": 18.56667,
"longitude": 73.86667,
"name": "Khadki",
@@ -55533,7 +50187,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6690602,
"latitude": 51.47475,
"longitude": -0.15547,
"name": "Battersea",
@@ -55543,7 +50196,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 569591,
"latitude": 55.1477,
"longitude": 37.47728,
"name": "Chekhov",
@@ -55553,7 +50205,6 @@
"country_code": "BA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3204222,
"latitude": 44.81694,
"longitude": 15.87083,
"name": "Biha\u0107",
@@ -55563,9 +50214,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 97417,
- "latitude": 35.53653,
- "longitude": 44.83167,
+ "latitude": 35.53356,
+ "longitude": 44.8343,
"name": "Chamcham\u0101l",
"population": 75634
},
@@ -55573,7 +50223,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1250164,
"latitude": 6.8964,
"longitude": 79.9181,
"name": "Battaramulla South",
@@ -55583,7 +50232,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1649824,
"latitude": -7.87,
"longitude": 112.52833,
"name": "Batu",
@@ -55593,7 +50241,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272701,
"latitude": 22.98333,
"longitude": 71.46667,
"name": "Dhr\u0101ngadhra",
@@ -55602,8 +50249,7 @@
{
"country_code": "US",
"elevation": 192,
- "feature_code": "PPL",
- "geonameid": 4771075,
+ "feature_code": "PPLA2",
"latitude": 37.41375,
"longitude": -79.14225,
"name": "Lynchburg",
@@ -55613,7 +50259,6 @@
"country_code": "US",
"elevation": 43,
"feature_code": "PPL",
- "geonameid": 5404119,
"latitude": 33.74585,
"longitude": -117.82617,
"name": "Tustin",
@@ -55623,7 +50268,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3089033,
"latitude": 53.15145,
"longitude": 16.73782,
"name": "Pi\u0142a",
@@ -55633,7 +50277,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 303831,
"latitude": 38.625,
"longitude": 34.71222,
"name": "Nev\u015fehir",
@@ -55643,7 +50286,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2653305,
"latitude": 51.37891,
"longitude": 0.52786,
"name": "Chatham",
@@ -55653,7 +50295,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 699942,
"latitude": 51.04801,
"longitude": 31.88688,
"name": "Nizhyn",
@@ -55663,7 +50304,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 715126,
"latitude": 47.18333,
"longitude": 20.2,
"name": "Szolnok",
@@ -55673,7 +50313,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328090,
"latitude": 7.7899,
"longitude": 5.7117,
"name": "Ode",
@@ -55683,7 +50322,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734781,
"latitude": 2.81667,
"longitude": 101.5,
"name": "Banting",
@@ -55693,7 +50331,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2747596,
"latitude": 51.91917,
"longitude": 4.38889,
"name": "Schiedam",
@@ -55703,17 +50340,24 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 256575,
"latitude": 37.95,
"longitude": 23.71667,
"name": "N\u00e9a Sm\u00fdrni",
"population": 75421
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.57171,
+ "longitude": 13.34525,
+ "name": "Reinickendorf",
+ "population": 75414
+ },
{
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1165638,
"latitude": 27.84771,
"longitude": 67.9055,
"name": "Sh\u0101hd\u0101dkot",
@@ -55723,7 +50367,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2978179,
"latitude": 48.79394,
"longitude": 2.49323,
"name": "Saint-Maur-des-Foss\u00e9s",
@@ -55733,7 +50376,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3467717,
"latitude": -24.04556,
"longitude": -52.38306,
"name": "Campo Mour\u00e3o",
@@ -55743,7 +50385,6 @@
"country_code": "US",
"elevation": 114,
"feature_code": "PPL",
- "geonameid": 5325866,
"latitude": 34.08529,
"longitude": -117.9609,
"name": "Baldwin Park",
@@ -55753,7 +50394,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 4160711,
"latitude": 25.67927,
"longitude": -80.31727,
"name": "Kendall",
@@ -55763,7 +50403,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1738294,
"latitude": 1.6,
"longitude": 103.81667,
"name": "Ulu Tiram",
@@ -55773,7 +50412,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038118,
"latitude": 42.66223,
"longitude": 126.0263,
"name": "Chaoyang",
@@ -55783,7 +50421,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2505915,
"latitude": 36.73944,
"longitude": 7.10528,
"name": "Azzaba",
@@ -55793,7 +50430,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 300808,
"latitude": 36.37778,
"longitude": 33.93444,
"name": "Silifke",
@@ -55803,7 +50439,6 @@
"country_code": "PL",
"elevation": 336,
"feature_code": "PPL",
- "geonameid": 3091232,
"latitude": 50.20745,
"longitude": 19.16668,
"name": "Mys\u0142owice",
@@ -55812,8 +50447,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 788975,
+ "feature_code": "PPLA2",
"latitude": 43.58,
"longitude": 21.33389,
"name": "Kru\u0161evac",
@@ -55823,7 +50457,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1844191,
"latitude": 37.6918,
"longitude": 127.8857,
"name": "Hongch\u2019\u014fn",
@@ -55833,7 +50466,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831167,
"latitude": 12.25,
"longitude": 104.66667,
"name": "K\u00e2mp\u00f3ng Chhn\u0103ng",
@@ -55843,7 +50475,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1788869,
"latitude": 27.74278,
"longitude": 111.29556,
"name": "Shangmei",
@@ -55853,7 +50484,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260667,
"latitude": 17.6,
"longitude": 80.68333,
"name": "P\u0101loncha",
@@ -55863,7 +50493,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338640,
"latitude": 6.01669,
"longitude": 7.02654,
"name": "Igbo-Ukwu",
@@ -55873,7 +50502,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3179866,
"latitude": 41.08322,
"longitude": 14.33493,
"name": "Caserta",
@@ -55883,7 +50511,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4167538,
"latitude": 29.58497,
"longitude": -81.20784,
"name": "Palm Coast",
@@ -55893,7 +50520,6 @@
"country_code": "US",
"elevation": 198,
"feature_code": "PPL",
- "geonameid": 5112375,
"latitude": 42.90339,
"longitude": -78.75475,
"name": "Cheektowaga",
@@ -55903,7 +50529,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2646504,
"latitude": 50.83088,
"longitude": -0.1672,
"name": "Hove",
@@ -55913,7 +50538,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037334,
"latitude": 47.78333,
"longitude": 124.45,
"name": "Fuyu",
@@ -55923,7 +50547,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 191220,
"latitude": 1.01572,
"longitude": 35.00622,
"name": "Kitale",
@@ -55933,7 +50556,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3671116,
"latitude": 5.69472,
"longitude": -76.66111,
"name": "Quibd\u00f3",
@@ -55943,7 +50565,6 @@
"country_code": "US",
"elevation": 214,
"feature_code": "PPL",
- "geonameid": 4883555,
"latitude": 42.08836,
"longitude": -87.98063,
"name": "Arlington Heights",
@@ -55953,7 +50574,6 @@
"country_code": "US",
"elevation": 794,
"feature_code": "PPL",
- "geonameid": 5600685,
"latitude": 43.61211,
"longitude": -116.39151,
"name": "Meridian",
@@ -55963,7 +50583,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3861056,
"latitude": -38.93392,
"longitude": -67.99032,
"name": "Cipolletti",
@@ -55973,7 +50592,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854371,
"latitude": 36.0,
"longitude": 139.55722,
"name": "Okegawa",
@@ -55983,7 +50601,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2951825,
"latitude": 49.94806,
"longitude": 11.57833,
"name": "Bayreuth",
@@ -55993,7 +50610,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3175678,
"latitude": 42.01667,
"longitude": 12.75,
"name": "Guidonia",
@@ -56003,7 +50619,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 4153071,
"latitude": 26.31841,
"longitude": -80.09977,
"name": "Deerfield Beach",
@@ -56013,7 +50628,6 @@
"country_code": "EH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2463447,
"latitude": 23.68477,
"longitude": -15.95798,
"name": "Ad Dakhla",
@@ -56023,7 +50637,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1584661,
"latitude": 10.96667,
"longitude": 106.46667,
"name": "C\u1ee7 Chi",
@@ -56033,7 +50646,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2746932,
"latitude": 51.845,
"longitude": 4.32917,
"name": "Spijkenisse",
@@ -56042,10 +50654,9 @@
{
"country_code": "PY",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3438735,
- "latitude": -27.33333,
- "longitude": -55.9,
+ "feature_code": "PPLA",
+ "latitude": -27.33056,
+ "longitude": -55.86667,
"name": "Encarnaci\u00f3n",
"population": 74983
},
@@ -56053,7 +50664,6 @@
"country_code": "US",
"elevation": 109,
"feature_code": "PPL",
- "geonameid": 5180225,
"latitude": 40.62593,
"longitude": -75.37046,
"name": "Bethlehem",
@@ -56063,7 +50673,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2707953,
"latitude": 59.16775,
"longitude": 18.14478,
"name": "Haninge",
@@ -56073,7 +50682,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6141439,
"latitude": 46.51677,
"longitude": -84.33325,
"name": "Sault Ste. Marie",
@@ -56083,7 +50691,6 @@
"country_code": "US",
"elevation": 421,
"feature_code": "PPLA2",
- "geonameid": 5740099,
"latitude": 42.32652,
"longitude": -122.87559,
"name": "Medford",
@@ -56093,7 +50700,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 250336,
"latitude": 32.55917,
"longitude": 36.00694,
"name": "Ar Ramth\u0101",
@@ -56103,7 +50709,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 143748,
"latitude": 36.3187,
"longitude": 49.1678,
"name": "Alvand",
@@ -56113,17 +50718,24 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270791,
"latitude": 14.13333,
"longitude": 79.85,
"name": "G\u016bd\u016br",
"population": 74851
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.51667,
+ "longitude": 13.56667,
+ "name": "Hellersdorf",
+ "population": 74847
+ },
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1806840,
"latitude": 31.81111,
"longitude": 121.655,
"name": "Huilong",
@@ -56133,7 +50745,6 @@
"country_code": "ER",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 333287,
"latitude": 15.77778,
"longitude": 38.45806,
"name": "Keren",
@@ -56143,7 +50754,6 @@
"country_code": "US",
"elevation": 262,
"feature_code": "PPL",
- "geonameid": 5336545,
"latitude": 33.9938,
"longitude": -117.75888,
"name": "Chino Hills",
@@ -56153,7 +50763,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 300797,
"latitude": 37.24972,
"longitude": 42.46944,
"name": "Silopi",
@@ -56163,7 +50772,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1816751,
"latitude": 34.56861,
"longitude": 105.89333,
"name": "Beidao",
@@ -56173,7 +50781,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2533191,
"latitude": 34.22149,
"longitude": -5.70775,
"name": "Sidi Qacem",
@@ -56183,7 +50790,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2821029,
"latitude": 50.81667,
"longitude": 7.16667,
"name": "Troisdorf",
@@ -56193,7 +50799,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1182787,
"latitude": 32.27204,
"longitude": 72.90425,
"name": "Bhalw\u0101l",
@@ -56203,7 +50808,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278553,
"latitude": 21.6,
"longitude": 73.0,
"name": "Ankleshwar",
@@ -56213,7 +50817,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2754447,
"latitude": 51.48167,
"longitude": 5.66111,
"name": "Helmond",
@@ -56223,7 +50826,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787601,
"latitude": 36.11056,
"longitude": 115.77528,
"name": "Yanggu",
@@ -56233,7 +50835,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254534,
"latitude": 24.745,
"longitude": 78.8333,
"name": "T\u012bkamgarh",
@@ -56243,7 +50844,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1625958,
"latitude": -1.85,
"longitude": 106.13333,
"name": "Sungailiat",
@@ -56253,7 +50853,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857276,
"latitude": 34.8,
"longitude": 134.98333,
"name": "Miki",
@@ -56263,7 +50862,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468436,
"latitude": -30.03917,
"longitude": -52.89389,
"name": "Cachoeira do Sul",
@@ -56273,7 +50871,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6903078,
"latitude": 35.54145,
"longitude": 128.49506,
"name": "Changnyeong",
@@ -56283,7 +50880,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3854985,
"latitude": -33.03016,
"longitude": -60.64045,
"name": "Gobernador G\u00e1lvez",
@@ -56293,7 +50889,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1179760,
"latitude": 30.67091,
"longitude": 73.65292,
"name": "D\u012bp\u0101lpur",
@@ -56303,7 +50898,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1052944,
"latitude": -16.2325,
"longitude": 39.90861,
"name": "Ant\u00f3nio Enes",
@@ -56313,7 +50907,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1511330,
"latitude": 57.00993,
"longitude": 61.45776,
"name": "Asbest",
@@ -56323,7 +50916,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2656719,
"latitude": 51.81665,
"longitude": -0.81458,
"name": "Aylesbury",
@@ -56333,7 +50925,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5989818,
"latitude": 44.58342,
"longitude": -78.83288,
"name": "Kawartha Lakes",
@@ -56343,7 +50934,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 321031,
"latitude": 37.84861,
"longitude": 40.66583,
"name": "Bismil",
@@ -56353,7 +50943,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2349529,
"latitude": 7.70927,
"longitude": 5.04474,
"name": "Araomoko Ekiti",
@@ -56363,7 +50952,6 @@
"country_code": "US",
"elevation": 187,
"feature_code": "PPL",
- "geonameid": 4891382,
"latitude": 42.04114,
"longitude": -87.69006,
"name": "Evanston",
@@ -56373,7 +50961,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795919,
"latitude": 34.79528,
"longitude": 116.08167,
"name": "Shancheng",
@@ -56383,7 +50970,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3029162,
"latitude": 50.9581,
"longitude": 1.85205,
"name": "Calais",
@@ -56393,7 +50979,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2920512,
"latitude": 50.58333,
"longitude": 8.65,
"name": "Gie\u00dfen",
@@ -56403,7 +50988,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1799897,
"latitude": 36.18167,
"longitude": 118.15833,
"name": "Nanma",
@@ -56413,7 +50997,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255616,
"latitude": 9.51272,
"longitude": 77.63369,
"name": "Srivilliputhur",
@@ -56423,7 +51006,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2031964,
"latitude": 49.48667,
"longitude": 105.92278,
"name": "Darhan",
@@ -56433,7 +51015,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6087701,
"latitude": 44.05011,
"longitude": -79.46631,
"name": "Newmarket",
@@ -56443,7 +51024,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 64013,
"latitude": 11.28421,
"longitude": 49.18158,
"name": "Boosaaso",
@@ -56453,7 +51033,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255947,
"latitude": 9.44999,
"longitude": 77.79797,
"name": "Sivakasi",
@@ -56463,7 +51042,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3123493,
"latitude": 43.48321,
"longitude": -8.23689,
"name": "Ferrol",
@@ -56473,7 +51051,6 @@
"country_code": "US",
"elevation": 239,
"feature_code": "PPLA2",
- "geonameid": 4997787,
"latitude": 42.29171,
"longitude": -85.58723,
"name": "Kalamazoo",
@@ -56483,7 +51060,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2650405,
"latitude": 55.76667,
"longitude": -4.16667,
"name": "East Kilbride",
@@ -56493,7 +51069,6 @@
"country_code": "US",
"elevation": 242,
"feature_code": "PPL",
- "geonameid": 4910713,
"latitude": 42.03336,
"longitude": -88.08341,
"name": "Schaumburg",
@@ -56503,7 +51078,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259680,
"latitude": 28.71667,
"longitude": 77.65,
"name": "Pilkhua",
@@ -56513,7 +51087,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 260172,
"latitude": 38.03058,
"longitude": 23.79793,
"name": "Khal\u00e1ndrion",
@@ -56523,7 +51096,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1835895,
"latitude": 36.78167,
"longitude": 126.45222,
"name": "Suisan",
@@ -56533,7 +51105,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2509769,
"latitude": 36.77262,
"longitude": -4.10045,
"name": "V\u00e9lez-M\u00e1laga",
@@ -56543,7 +51114,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1631271,
"latitude": -6.88333,
"longitude": 109.43333,
"name": "Petarukan",
@@ -56553,7 +51123,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 245785,
"latitude": 13.82916,
"longitude": 20.8324,
"name": "Ab\u00e9ch\u00e9",
@@ -56563,7 +51132,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1793889,
"latitude": 33.89067,
"longitude": 116.77472,
"name": "Suixi",
@@ -56573,7 +51141,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033675,
"latitude": 41.99083,
"longitude": 122.82528,
"name": "Xinmin",
@@ -56583,7 +51150,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2636276,
"latitude": 52.63399,
"longitude": -1.69587,
"name": "Tamworth",
@@ -56593,7 +51159,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338810,
"latitude": 7.50251,
"longitude": 5.06258,
"name": "Igbara-Odo",
@@ -56603,7 +51168,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278862,
"latitude": 18.73333,
"longitude": 76.38333,
"name": "Amb\u0101jog\u0101i",
@@ -56613,7 +51177,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2248698,
"latitude": 14.79032,
"longitude": -15.90803,
"name": "Mbak\u00e9",
@@ -56623,7 +51186,6 @@
"country_code": "US",
"elevation": 207,
"feature_code": "PPL",
- "geonameid": 5009586,
"latitude": 42.67087,
"longitude": -83.03298,
"name": "Shelby",
@@ -56633,7 +51195,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3032833,
"latitude": 43.34762,
"longitude": 3.21899,
"name": "B\u00e9ziers",
@@ -56643,7 +51204,6 @@
"country_code": "US",
"elevation": 32,
"feature_code": "PPL",
- "geonameid": 5375480,
"latitude": 37.38605,
"longitude": -122.08385,
"name": "Mountain View",
@@ -56653,7 +51213,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3836620,
"latitude": -23.13223,
"longitude": -64.32598,
"name": "San Ram\u00f3n de la Nueva Or\u00e1n",
@@ -56663,7 +51222,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1809610,
"latitude": 32.26604,
"longitude": 111.63476,
"name": "Gucheng Chengguanzhen",
@@ -56673,7 +51231,6 @@
"country_code": "GR",
"elevation": 250,
"feature_code": "PPL",
- "geonameid": 6324534,
"latitude": 38.03381,
"longitude": 23.82962,
"name": "Vrilissia",
@@ -56683,7 +51240,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790379,
"latitude": 38.985,
"longitude": 117.38278,
"name": "Xianshuigu",
@@ -56693,7 +51249,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 952747,
"latitude": -26.93366,
"longitude": 29.24152,
"name": "Standerton",
@@ -56703,7 +51258,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3906466,
"latitude": -10.98333,
"longitude": -66.1,
"name": "Riberalta",
@@ -56713,7 +51267,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2519402,
"latitude": 38.98333,
"longitude": -3.93333,
"name": "Ciudad Real",
@@ -56723,7 +51276,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 602150,
"latitude": 63.82842,
"longitude": 20.25972,
"name": "Ume\u00e5",
@@ -56733,7 +51285,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861528,
"latitude": 35.37995,
"longitude": 136.94295,
"name": "Inuyama",
@@ -56743,7 +51294,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276574,
"latitude": 25.93333,
"longitude": 81.98333,
"name": "Bela",
@@ -56753,7 +51303,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 762863,
"latitude": 50.92936,
"longitude": 21.38525,
"name": "Ostrowiec \u015awi\u0119tokrzyski",
@@ -56763,7 +51312,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449521,
"latitude": -12.96889,
"longitude": -39.26139,
"name": "Santo Ant\u00f4nio de Jesus",
@@ -56773,7 +51321,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2947421,
"latitude": 51.83333,
"longitude": 6.6,
"name": "Bocholt",
@@ -56783,7 +51330,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275391,
"latitude": 18.66667,
"longitude": 77.9,
"name": "Bodhan",
@@ -56793,7 +51339,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3530103,
"latitude": 20.50833,
"longitude": -86.94583,
"name": "San Miguel de Cozumel",
@@ -56803,7 +51348,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785655,
"latitude": 33.44743,
"longitude": 112.71422,
"name": "Yunyang",
@@ -56813,7 +51357,6 @@
"country_code": "US",
"elevation": 124,
"feature_code": "PPL",
- "geonameid": 5799610,
"latitude": 46.21125,
"longitude": -119.13723,
"name": "Kennewick",
@@ -56823,7 +51366,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2544333,
"latitude": 32.9391,
"longitude": -5.6686,
"name": "Khenifra",
@@ -56833,7 +51375,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1045114,
"latitude": -23.865,
"longitude": 35.38333,
"name": "Inhambane",
@@ -56843,7 +51384,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2794055,
"latitude": 50.82803,
"longitude": 3.26487,
"name": "Kortrijk",
@@ -56853,7 +51393,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259083,
"latitude": 16.46667,
"longitude": 75.1,
"name": "Rabkavi",
@@ -56863,7 +51402,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3861416,
"latitude": -31.48333,
"longitude": -68.53333,
"name": "Chimbas",
@@ -56873,7 +51411,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786735,
"latitude": 41.34639,
"longitude": 21.55444,
"name": "Prilep",
@@ -56883,7 +51420,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2325161,
"latitude": 5.95666,
"longitude": 6.84904,
"name": "Ozubulu",
@@ -56893,7 +51429,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 5322737,
"latitude": 37.76521,
"longitude": -122.24164,
"name": "Alameda",
@@ -56903,7 +51438,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2745467,
"latitude": 51.9125,
"longitude": 4.34167,
"name": "Vlaardingen",
@@ -56913,7 +51447,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2513882,
"latitude": 36.59575,
"longitude": -4.63728,
"name": "Mijas",
@@ -56923,7 +51456,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2288115,
"latitude": 5.2118,
"longitude": -3.73884,
"name": "Grand-Bassam",
@@ -56933,7 +51465,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2350886,
"latitude": 6.7081,
"longitude": 7.3167,
"name": "Aku",
@@ -56943,7 +51474,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1788406,
"latitude": 28.28857,
"longitude": 117.21329,
"name": "Guixi",
@@ -56953,7 +51483,6 @@
"country_code": "US",
"elevation": 377,
"feature_code": "PPL",
- "geonameid": 5404915,
"latitude": 34.09751,
"longitude": -117.64839,
"name": "Upland",
@@ -56963,7 +51492,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 354365,
"latitude": 30.8248,
"longitude": 30.81805,
"name": "Kafr az Zayy\u0101t",
@@ -56973,7 +51501,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267819,
"latitude": 26.49831,
"longitude": 77.02755,
"name": "Karauli",
@@ -56983,17 +51510,24 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804442,
"latitude": 29.21946,
"longitude": 119.47695,
"name": "Lanxi",
"population": 73706
},
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.54895,
+ "longitude": -98.88236,
+ "name": "Chiautla",
+ "population": 73696
+ },
{
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2937936,
"latitude": 51.93855,
"longitude": 8.87318,
"name": "Detmold",
@@ -57003,7 +51537,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 289317,
"latitude": 24.25088,
"longitude": 55.79312,
"name": "Al Buraym\u012b",
@@ -57013,7 +51546,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1733782,
"latitude": 5.27667,
"longitude": 115.24167,
"name": "Victoria",
@@ -57023,7 +51555,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3520064,
"latitude": 16.16667,
"longitude": -95.2,
"name": "Salina Cruz",
@@ -57033,7 +51564,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2037252,
"latitude": 50.78333,
"longitude": 121.51667,
"name": "Genhe",
@@ -57043,7 +51573,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1643776,
"latitude": -7.15389,
"longitude": 112.65611,
"name": "Gresik",
@@ -57053,7 +51582,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2325249,
"latitude": 8.05,
"longitude": 4.76667,
"name": "Oyan",
@@ -57063,7 +51591,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256755,
"latitude": 27.65,
"longitude": 79.95,
"name": "Sh\u0101h\u0101b\u0101d",
@@ -57073,7 +51600,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6118158,
"latitude": 52.26682,
"longitude": -113.802,
"name": "Red Deer",
@@ -57083,7 +51609,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1627357,
"latitude": -7.87639,
"longitude": 110.35889,
"name": "Sewon",
@@ -57093,7 +51618,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801983,
"latitude": 29.38481,
"longitude": 104.02862,
"name": "Luocheng",
@@ -57103,7 +51627,6 @@
"country_code": "US",
"elevation": 427,
"feature_code": "PPLA2",
- "geonameid": 4110486,
"latitude": 36.06258,
"longitude": -94.15743,
"name": "Fayetteville",
@@ -57113,7 +51636,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1184055,
"latitude": 24.65599,
"longitude": 68.83841,
"name": "Bad\u012bn",
@@ -57123,7 +51645,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 214614,
"latitude": -8.73861,
"longitude": 24.99056,
"name": "Kamina",
@@ -57133,7 +51654,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2641157,
"latitude": 52.52323,
"longitude": -1.46523,
"name": "Nuneaton",
@@ -57143,7 +51663,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274714,
"latitude": 29.15,
"longitude": 78.26667,
"name": "Ch\u0101ndpur",
@@ -57153,7 +51672,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 24851,
"latitude": 34.0734,
"longitude": 47.9725,
"name": "N\u016br\u0101b\u0101d",
@@ -57163,7 +51681,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 122698,
"latitude": 36.9553,
"longitude": 45.388,
"name": "Naqadeh",
@@ -57173,7 +51690,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2336237,
"latitude": 12.2175,
"longitude": 4.37917,
"name": "Jega",
@@ -57183,7 +51699,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2654264,
"latitude": 53.8,
"longitude": -2.23333,
"name": "Burnley",
@@ -57193,7 +51708,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271067,
"latitude": 16.16901,
"longitude": 74.82393,
"name": "Gokak",
@@ -57203,7 +51717,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2513947,
"latitude": 35.29369,
"longitude": -2.93833,
"name": "Melilla",
@@ -57213,7 +51726,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256329,
"latitude": 28.45,
"longitude": 77.7,
"name": "Sikandar\u0101b\u0101d",
@@ -57223,7 +51735,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2349276,
"latitude": 6.20064,
"longitude": 6.73384,
"name": "Asaba",
@@ -57233,7 +51744,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858445,
"latitude": 36.06667,
"longitude": 139.66667,
"name": "Kuki",
@@ -57243,7 +51753,6 @@
"country_code": "US",
"elevation": 214,
"feature_code": "PPL",
- "geonameid": 4885265,
"latitude": 41.69864,
"longitude": -88.0684,
"name": "Bolingbrook",
@@ -57253,7 +51762,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3690465,
"latitude": 8.30844,
"longitude": -73.6166,
"name": "Aguachica",
@@ -57263,7 +51771,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2067119,
"latitude": -32.5269,
"longitude": 115.7217,
"name": "Mandurah",
@@ -57273,7 +51780,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2327494,
"latitude": 5.61455,
"longitude": 7.81191,
"name": "Ohafia-Ifigh",
@@ -57283,9 +51789,8 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 153176,
- "latitude": -6.36546,
- "longitude": 31.04091,
+ "latitude": -6.34379,
+ "longitude": 31.06951,
"name": "Mpanda",
"population": 73338
},
@@ -57293,7 +51798,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1804979,
"latitude": 32.31737,
"longitude": 121.18552,
"name": "Juegang",
@@ -57303,7 +51807,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253113,
"latitude": 9.58509,
"longitude": 77.95787,
"name": "Virudunagar",
@@ -57313,7 +51816,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3511233,
"latitude": 18.93687,
"longitude": -70.40923,
"name": "Bonao",
@@ -57323,7 +51825,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1047660,
"latitude": -14.80306,
"longitude": 36.53722,
"name": "Cuamba",
@@ -57333,7 +51834,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 321580,
"latitude": 36.86278,
"longitude": 31.05556,
"name": "Belek",
@@ -57343,7 +51843,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3441243,
"latitude": -32.32139,
"longitude": -58.07556,
"name": "Paysand\u00fa",
@@ -57353,7 +51852,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 299582,
"latitude": 38.50667,
"longitude": 42.28167,
"name": "Tatvan",
@@ -57363,7 +51861,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3855065,
"latitude": -39.03333,
"longitude": -67.58333,
"name": "General Roca",
@@ -57373,7 +51870,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1709003,
"latitude": 14.44426,
"longitude": 120.90164,
"name": "Kawit",
@@ -57383,7 +51879,6 @@
"country_code": "US",
"elevation": 51,
"feature_code": "PPL",
- "geonameid": 4839292,
"latitude": 41.66121,
"longitude": -72.77954,
"name": "New Britain",
@@ -57393,7 +51888,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732741,
"latitude": 1.6006,
"longitude": 103.6419,
"name": "Taman Senai",
@@ -57403,7 +51897,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852736,
"latitude": 31.81667,
"longitude": 130.3,
"name": "Sendai",
@@ -57413,7 +51906,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2478216,
"latitude": 22.785,
"longitude": 5.52278,
"name": "Tamanrasset",
@@ -57423,7 +51915,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3086024,
"latitude": 50.32738,
"longitude": 19.02901,
"name": "Siemianowice \u015al\u0105skie",
@@ -57433,7 +51924,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112823,
"latitude": 39.38333,
"longitude": 141.11667,
"name": "Hanamaki",
@@ -57443,7 +51933,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 310855,
"latitude": 37.78552,
"longitude": 38.6237,
"name": "K\u00e2hta",
@@ -57453,7 +51942,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 699445,
"latitude": 48.63798,
"longitude": 35.24548,
"name": "Novomoskovs\u2019k",
@@ -57463,7 +51951,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 618806,
"latitude": 52.8926,
"longitude": 30.024,
"name": "Zhlobin",
@@ -57473,7 +51960,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2640677,
"latitude": 55.83173,
"longitude": -4.43254,
"name": "Paisley",
@@ -57483,7 +51969,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185206,
"latitude": 25.09433,
"longitude": 89.02169,
"name": "Joypurhat",
@@ -57493,7 +51978,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3649017,
"latitude": 9.56009,
"longitude": -69.21475,
"name": "Araure",
@@ -57503,7 +51987,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273369,
"latitude": 26.89,
"longitude": 76.33584,
"name": "Dausa",
@@ -57513,7 +51996,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1642726,
"latitude": -6.47472,
"longitude": 108.31528,
"name": "Jatibarang",
@@ -57523,7 +52005,6 @@
"country_code": "US",
"elevation": 323,
"feature_code": "PPLA2",
- "geonameid": 5149222,
"latitude": 40.79895,
"longitude": -81.37845,
"name": "Canton",
@@ -57533,7 +52014,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 610824,
"latitude": 42.5088,
"longitude": 41.87088,
"name": "Zugdidi",
@@ -57543,7 +52023,6 @@
"country_code": "RS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 790698,
"latitude": 44.03972,
"longitude": 21.31639,
"name": "Glogovac",
@@ -57553,7 +52032,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2524907,
"latitude": 39.30999,
"longitude": 16.25019,
"name": "Cosenza",
@@ -57563,7 +52041,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7290013,
"latitude": 24.94824,
"longitude": 114.06572,
"name": "Shixing",
@@ -57573,7 +52050,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842859,
"latitude": 35.43333,
"longitude": 126.7,
"name": "Koch'ang",
@@ -57583,7 +52059,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 585103,
"latitude": 40.39667,
"longitude": 49.97361,
"name": "Qara\u00e7uxur",
@@ -57593,7 +52068,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3111294,
"latitude": 41.49226,
"longitude": 2.03305,
"name": "Rub\u00ed",
@@ -57603,7 +52077,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812597,
"latitude": 35.85,
"longitude": 117.7,
"name": "Dongdu",
@@ -57613,7 +52086,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1728523,
"latitude": 14.67611,
"longitude": 120.53611,
"name": "Balanga",
@@ -57623,7 +52095,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3493081,
"latitude": 18.80588,
"longitude": -71.22991,
"name": "San Juan de la Maguana",
@@ -57633,7 +52104,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785082,
"latitude": 42.01056,
"longitude": 20.97139,
"name": "Tetovo",
@@ -57643,7 +52113,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253468,
"latitude": 20.63333,
"longitude": 72.93333,
"name": "Vals\u0101d",
@@ -57653,7 +52122,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3089684,
"latitude": 51.65501,
"longitude": 17.80686,
"name": "Ostr\u00f3w Wielkopolski",
@@ -57663,7 +52131,6 @@
"country_code": "US",
"elevation": 823,
"feature_code": "PPL",
- "geonameid": 5546220,
"latitude": 37.10415,
"longitude": -113.58412,
"name": "Saint George",
@@ -57673,7 +52140,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1168412,
"latitude": 27.85685,
"longitude": 69.11156,
"name": "P\u0101no \u0100qil",
@@ -57683,7 +52149,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455051,
"latitude": -23.07306,
"longitude": -52.46528,
"name": "Paranava\u00ed",
@@ -57693,7 +52158,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278827,
"latitude": 23.11667,
"longitude": 83.2,
"name": "Ambik\u0101pur",
@@ -57703,7 +52167,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1609395,
"latitude": 13.6533,
"longitude": 100.25972,
"name": "Krathum Baen",
@@ -57713,7 +52176,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812427,
"latitude": 33.99972,
"longitude": 119.83083,
"name": "Dongkan",
@@ -57723,7 +52185,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1498693,
"latitude": 53.71028,
"longitude": 91.6875,
"name": "Minusinsk",
@@ -57733,7 +52194,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2524653,
"latitude": 37.08034,
"longitude": 14.23068,
"name": "Gela",
@@ -57743,7 +52203,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3459796,
"latitude": -19.81,
"longitude": -43.17361,
"name": "Jo\u00e3o Monlevade",
@@ -57753,7 +52212,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3156529,
"latitude": 59.2181,
"longitude": 10.9298,
"name": "Fredrikstad",
@@ -57763,7 +52221,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2638671,
"latitude": 53.48771,
"longitude": -2.29042,
"name": "Salford",
@@ -57773,7 +52230,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1279945,
"latitude": 39.74318,
"longitude": 98.51736,
"name": "Suzhou",
@@ -57783,7 +52239,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759887,
"latitude": 52.35667,
"longitude": 6.6625,
"name": "Almelo",
@@ -57793,7 +52248,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1172904,
"latitude": 25.366,
"longitude": 68.31216,
"name": "Kotri",
@@ -57803,7 +52257,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1807553,
"latitude": 32.12722,
"longitude": 115.03944,
"name": "Huangchuan",
@@ -57813,7 +52266,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1163952,
"latitude": 25.12301,
"longitude": 68.53577,
"name": "Tando Muhammad Kh\u0101n",
@@ -57823,7 +52275,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803782,
"latitude": 30.3,
"longitude": 108.85,
"name": "Lichuan",
@@ -57833,7 +52284,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 561627,
"latitude": 44.15194,
"longitude": 43.46972,
"name": "Georgiyevsk",
@@ -57843,7 +52293,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 468082,
"latitude": 55.76127,
"longitude": 52.06493,
"name": "Yelabuga",
@@ -57853,7 +52302,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2653775,
"latitude": 54.8951,
"longitude": -2.9382,
"name": "Carlisle",
@@ -57863,7 +52311,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 523426,
"latitude": 55.38752,
"longitude": 36.73307,
"name": "Naro-Fominsk",
@@ -57873,7 +52320,6 @@
"country_code": "US",
"elevation": 242,
"feature_code": "PPLA2",
- "geonameid": 5244080,
"latitude": 44.26193,
"longitude": -88.41538,
"name": "Appleton",
@@ -57883,7 +52329,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2235029,
"latitude": 5.88724,
"longitude": 10.01248,
"name": "Bali",
@@ -57893,7 +52338,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 700019,
"latitude": 45.44789,
"longitude": 34.73839,
"name": "Nyzhn\u2019ohirs\u2019kyy",
@@ -57903,7 +52347,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036226,
"latitude": 46.26222,
"longitude": 126.28556,
"name": "Lanxi",
@@ -57913,7 +52356,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2638324,
"latitude": 53.57905,
"longitude": -0.65437,
"name": "Scunthorpe",
@@ -57923,7 +52365,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1800430,
"latitude": 24.40417,
"longitude": 103.44278,
"name": "Miyang",
@@ -57933,17 +52374,24 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3457509,
"latitude": -21.60333,
"longitude": -48.36583,
"name": "Mat\u00e3o",
"population": 72468
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.46667,
+ "longitude": 13.33333,
+ "name": "Steglitz",
+ "population": 72464
+ },
{
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2160517,
"latitude": -41.43876,
"longitude": 147.13467,
"name": "Launceston",
@@ -57953,7 +52401,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2037391,
"latitude": 40.43944,
"longitude": 113.15361,
"name": "Beichengqu",
@@ -57963,7 +52410,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842616,
"latitude": 36.45556,
"longitude": 127.12472,
"name": "Kongju",
@@ -57973,7 +52419,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1177073,
"latitude": 29.61333,
"longitude": 73.13889,
"name": "Haru Zbad",
@@ -57983,7 +52428,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3406910,
"latitude": -4.29167,
"longitude": -44.79167,
"name": "Bacabal",
@@ -57993,7 +52437,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1711146,
"latitude": 17.14854,
"longitude": 121.88924,
"name": "Ilagan",
@@ -58003,7 +52446,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3833062,
"latitude": -33.74556,
"longitude": -61.96884,
"name": "Venado Tuerto",
@@ -58013,7 +52455,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468562,
"latitude": -23.10083,
"longitude": -45.70694,
"name": "Ca\u00e7apava",
@@ -58023,7 +52464,6 @@
"country_code": "MR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2377457,
"latitude": 20.93098,
"longitude": -17.03465,
"name": "Nou\u00e2dhibou",
@@ -58033,7 +52473,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260730,
"latitude": 19.68333,
"longitude": 72.75,
"name": "P\u0101lghar",
@@ -58043,7 +52482,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 265533,
"latitude": 37.98333,
"longitude": 23.68333,
"name": "Aig\u00e1leo",
@@ -58053,7 +52491,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 265243,
"latitude": 38.05,
"longitude": 23.8,
"name": "Maro\u00fasi",
@@ -58063,7 +52500,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788462,
"latitude": 36.49889,
"longitude": 111.70472,
"name": "Xinzhi",
@@ -58073,7 +52509,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272873,
"latitude": 10.73828,
"longitude": 77.53223,
"name": "Dharapuram",
@@ -58083,7 +52518,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2507877,
"latitude": 35.37675,
"longitude": 5.90001,
"name": "A\u00efn Touta",
@@ -58093,7 +52527,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1037125,
"latitude": -13.12556,
"longitude": 38.99972,
"name": "Montepuez",
@@ -58103,7 +52536,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1802788,
"latitude": 31.4308,
"longitude": 119.52399,
"name": "Licheng",
@@ -58113,7 +52545,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785238,
"latitude": 42.35861,
"longitude": 20.825,
"name": "Suva Reka",
@@ -58123,7 +52554,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2622447,
"latitude": 55.46667,
"longitude": 8.45,
"name": "Esbjerg",
@@ -58133,7 +52563,6 @@
"country_code": "US",
"elevation": 67,
"feature_code": "PPL",
- "geonameid": 5349705,
"latitude": 38.67796,
"longitude": -121.17606,
"name": "Folsom",
@@ -58143,7 +52572,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1691150,
"latitude": 10.94472,
"longitude": 123.42417,
"name": "Sagay",
@@ -58153,7 +52581,6 @@
"country_code": "US",
"elevation": 148,
"feature_code": "PPL",
- "geonameid": 5392593,
"latitude": 37.77993,
"longitude": -121.97802,
"name": "San Ramon",
@@ -58163,7 +52590,6 @@
"country_code": "US",
"elevation": 196,
"feature_code": "PPL",
- "geonameid": 5015618,
"latitude": 42.91336,
"longitude": -85.70531,
"name": "Wyoming",
@@ -58173,7 +52599,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1842754,
"latitude": 34.85028,
"longitude": 128.58861,
"name": "Kyosai",
@@ -58183,7 +52608,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2229411,
"latitude": 4.0242,
"longitude": 9.2149,
"name": "Limbe",
@@ -58193,7 +52617,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2501404,
"latitude": 35.27306,
"longitude": 7.75194,
"name": "Cheria",
@@ -58203,7 +52626,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1639094,
"latitude": -6.97583,
"longitude": 108.48306,
"name": "Kuningan",
@@ -58213,7 +52635,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3471393,
"latitude": -23.39611,
"longitude": -46.32083,
"name": "Aruj\u00e1",
@@ -58223,7 +52644,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 286987,
"latitude": 22.93333,
"longitude": 57.53333,
"name": "Nizw\u00e1",
@@ -58233,7 +52653,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1920772,
"latitude": 35.91222,
"longitude": 116.31167,
"name": "Zhoucheng",
@@ -58243,7 +52662,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1718722,
"latitude": 15.32936,
"longitude": 120.59123,
"name": "Capas",
@@ -58253,7 +52671,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 709161,
"latitude": 45.03677,
"longitude": 35.37789,
"name": "Feodosiya",
@@ -58263,7 +52680,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3178671,
"latitude": 45.55707,
"longitude": 9.22185,
"name": "Cinisello Balsamo",
@@ -58273,7 +52689,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037331,
"latitude": 46.43333,
"longitude": 127.08333,
"name": "Fuyuan",
@@ -58283,7 +52698,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465090,
"latitude": -22.57611,
"longitude": -44.96278,
"name": "Cruzeiro",
@@ -58293,7 +52707,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3438995,
"latitude": -25.16667,
"longitude": -57.55,
"name": "Colonia Mariano Roque Alonso",
@@ -58303,17 +52716,24 @@
"country_code": "CY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 146400,
"latitude": 34.91667,
"longitude": 33.62917,
"name": "Larnaca",
"population": 72000
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.33678,
+ "longitude": -0.11201,
+ "name": "Purley",
+ "population": 72000
+ },
{
"country_code": "US",
"elevation": 4,
"feature_code": "PPLA2",
- "geonameid": 4330236,
"latitude": 30.21309,
"longitude": -93.2044,
"name": "Lake Charles",
@@ -58323,7 +52743,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454763,
"latitude": -18.94389,
"longitude": -46.9925,
"name": "Patroc\u00ednio",
@@ -58333,7 +52752,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2755420,
"latitude": 52.01667,
"longitude": 4.70833,
"name": "Gouda",
@@ -58343,7 +52761,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446065,
"latitude": -22.11667,
"longitude": -43.20917,
"name": "Tr\u00eas Rios",
@@ -58353,7 +52770,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832828,
"latitude": 35.33861,
"longitude": 129.03861,
"name": "Yangsan",
@@ -58363,7 +52779,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1016698,
"latitude": -27.3887,
"longitude": 26.61701,
"name": "Bothaville",
@@ -58373,7 +52788,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1816176,
"latitude": 30.58333,
"longitude": 114.03333,
"name": "Caidian",
@@ -58383,7 +52797,6 @@
"country_code": "GB",
"elevation": 45,
"feature_code": "PPL",
- "geonameid": 2647793,
"latitude": 51.23536,
"longitude": -0.57427,
"name": "Guildford",
@@ -58393,7 +52806,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2352250,
"latitude": 5.89312,
"longitude": 7.93735,
"name": "Afikpo",
@@ -58403,7 +52815,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470264,
"latitude": -20.94944,
"longitude": -48.47917,
"name": "Bebedouro",
@@ -58413,7 +52824,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 515083,
"latitude": 43.32111,
"longitude": 45.05222,
"name": "Ordzhonikidzevskaya",
@@ -58423,7 +52833,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3599735,
"latitude": 14.4875,
"longitude": -90.61528,
"name": "Amatitl\u00e1n",
@@ -58433,7 +52842,6 @@
"country_code": "US",
"elevation": 8,
"feature_code": "PPL",
- "geonameid": 4672731,
"latitude": 29.7355,
"longitude": -94.97743,
"name": "Baytown",
@@ -58443,7 +52851,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274129,
"latitude": 13.4,
"longitude": 78.06667,
"name": "Chint\u0101mani",
@@ -58453,7 +52860,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271947,
"latitude": 28.21667,
"longitude": 79.55,
"name": "Far\u012bdpur",
@@ -58463,7 +52869,6 @@
"country_code": "US",
"elevation": 245,
"feature_code": "PPLA2",
- "geonameid": 4467732,
"latitude": 35.26208,
"longitude": -81.1873,
"name": "Gastonia",
@@ -58473,7 +52878,6 @@
"country_code": "US",
"elevation": 208,
"feature_code": "PPL",
- "geonameid": 5010636,
"latitude": 42.47337,
"longitude": -83.22187,
"name": "Southfield",
@@ -58483,7 +52887,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 296173,
"latitude": 37.57362,
"longitude": 44.28716,
"name": "Y\u00fcksekova",
@@ -58493,7 +52896,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503847,
"latitude": 36.71499,
"longitude": 3.05002,
"name": "Birkhadem",
@@ -58503,7 +52905,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2744118,
"latitude": 52.43854,
"longitude": 4.82643,
"name": "Zaandam",
@@ -58513,7 +52914,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 694382,
"latitude": 48.06252,
"longitude": 38.51665,
"name": "Shakht\u00ebrsk",
@@ -58523,7 +52923,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2501541,
"latitude": 36.16286,
"longitude": 6.16651,
"name": "Chelghoum el A\u00efd",
@@ -58533,7 +52932,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848439,
"latitude": 34.87009,
"longitude": 135.7027,
"name": "Yawata",
@@ -58543,7 +52941,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2349558,
"latitude": 7.33333,
"longitude": 4.18333,
"name": "Apomu",
@@ -58553,7 +52950,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033602,
"latitude": 40.29278,
"longitude": 123.27444,
"name": "Xiuyan",
@@ -58563,7 +52959,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6138495,
"latitude": 45.31678,
"longitude": -73.26586,
"name": "Saint-Jean-sur-Richelieu",
@@ -58572,18 +52967,16 @@
{
"country_code": "SY",
"elevation": 0,
- "feature_code": "PPLA3",
- "geonameid": 170892,
+ "feature_code": "PPLA2",
"latitude": 33.45897,
"longitude": 36.23742,
- "name": "D\u0101ray\u0101",
+ "name": "D\u0101rayy\u0101",
"population": 71596
},
{
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3586814,
"latitude": 13.72417,
"longitude": -89.17028,
"name": "Delgado",
@@ -58593,7 +52986,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259154,
"latitude": 19.9,
"longitude": 77.58333,
"name": "Pusad",
@@ -58603,7 +52995,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1733438,
"latitude": 5.90702,
"longitude": 116.10146,
"name": "Donggongon",
@@ -58613,7 +53004,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264555,
"latitude": 26.36667,
"longitude": 86.08333,
"name": "Madhubani",
@@ -58623,7 +53013,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1508054,
"latitude": 53.82361,
"longitude": 91.28417,
"name": "Chernogorsk",
@@ -58633,7 +53022,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861290,
"latitude": 34.96667,
"longitude": 139.08333,
"name": "It\u014d",
@@ -58643,9 +53031,8 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2473493,
- "latitude": 35.78333,
- "longitude": 10.83333,
+ "latitude": 35.77799,
+ "longitude": 10.82617,
"name": "Monastir",
"population": 71546
},
@@ -58653,7 +53040,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449310,
"latitude": -11.01472,
"longitude": -37.20639,
"name": "S\u00e3o Crist\u00f3v\u00e3o",
@@ -58663,7 +53049,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1137168,
"latitude": 36.6825,
"longitude": 69.11556,
"name": "Khanabad",
@@ -58673,7 +53058,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3639747,
"latitude": 10.08528,
"longitude": -67.77917,
"name": "G\u00fcig\u00fce",
@@ -58683,7 +53067,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626498,
"latitude": -7.42639,
"longitude": 111.02222,
"name": "Sragen",
@@ -58693,7 +53076,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256039,
"latitude": 18.38333,
"longitude": 78.83333,
"name": "Sirsilla",
@@ -58703,7 +53085,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 113491,
"latitude": 36.0696,
"longitude": 49.6959,
"name": "T\u0101kest\u0101n",
@@ -58713,7 +53094,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2517595,
"latitude": 36.53998,
"longitude": -4.62473,
"name": "Fuengirola",
@@ -58723,7 +53103,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2643490,
"latitude": 52.4752,
"longitude": 1.75159,
"name": "Lowestoft",
@@ -58733,7 +53112,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1685880,
"latitude": 17.6528,
"longitude": 121.691,
"name": "Solana",
@@ -58743,7 +53121,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2342628,
"latitude": 7.71361,
"longitude": 3.91722,
"name": "Fiditi",
@@ -58753,7 +53130,6 @@
"country_code": "US",
"elevation": 104,
"feature_code": "PPL",
- "geonameid": 4369596,
"latitude": 38.99067,
"longitude": -77.02609,
"name": "Silver Spring",
@@ -58763,7 +53139,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2656284,
"latitude": 53.55,
"longitude": -1.48333,
"name": "Barnsley",
@@ -58772,8 +53147,7 @@
{
"country_code": "DE",
"elevation": 0,
- "feature_code": "PPLX",
- "geonameid": 2862026,
+ "feature_code": "PPL",
"latitude": 53.7,
"longitude": 10.01667,
"name": "Norderstedt",
@@ -58783,7 +53157,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3665657,
"latitude": 3.58234,
"longitude": -76.49146,
"name": "Yumbo",
@@ -58793,7 +53166,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1803842,
"latitude": 21.6682,
"longitude": 109.16946,
"name": "Lianzhou",
@@ -58803,7 +53175,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3472603,
"latitude": -21.42917,
"longitude": -45.94722,
"name": "Alfenas",
@@ -58813,7 +53184,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279741,
"latitude": 20.37175,
"longitude": 72.90493,
"name": "Vapi",
@@ -58823,7 +53193,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 749748,
"latitude": 40.59995,
"longitude": 33.6153,
"name": "Khanjarah",
@@ -58833,7 +53202,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 304797,
"latitude": 37.31309,
"longitude": 40.74357,
"name": "Mardin",
@@ -58843,7 +53211,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 945945,
"latitude": -28.44776,
"longitude": 21.25612,
"name": "Upington",
@@ -58853,7 +53220,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1488253,
"latitude": 56.11472,
"longitude": 94.58611,
"name": "Zelenogorsk",
@@ -58863,7 +53229,6 @@
"country_code": "US",
"elevation": 8,
"feature_code": "PPL",
- "geonameid": 4450687,
"latitude": 30.40409,
"longitude": -89.0942,
"name": "West Gulfport",
@@ -58873,7 +53238,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 966166,
"latitude": -26.9033,
"longitude": 27.45727,
"name": "Parys",
@@ -58883,7 +53247,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 733191,
"latitude": 42.01667,
"longitude": 23.1,
"name": "Blagoevgrad",
@@ -58893,7 +53256,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859586,
"latitude": 36.11667,
"longitude": 139.6,
"name": "Kazo",
@@ -58903,7 +53265,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 738025,
"latitude": 40.65502,
"longitude": 29.27693,
"name": "Yalova",
@@ -58913,7 +53274,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3020686,
"latitude": 51.05,
"longitude": 2.36667,
"name": "Dunkerque",
@@ -58923,7 +53283,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038139,
"latitude": 42.77884,
"longitude": 124.09545,
"name": "Changtu",
@@ -58933,7 +53292,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848087,
"latitude": 33.72873,
"longitude": 130.983,
"name": "Yukuhashi",
@@ -58943,7 +53301,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182714,
"latitude": 44.89795,
"longitude": 8.20684,
"name": "Asti",
@@ -58953,7 +53310,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1723066,
"latitude": 14.79278,
"longitude": 120.87889,
"name": "Bulacan",
@@ -58963,7 +53319,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3175786,
"latitude": 42.77142,
"longitude": 11.10794,
"name": "Grosseto",
@@ -58973,7 +53328,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2875115,
"latitude": 53.25,
"longitude": 10.4,
"name": "L\u00fcneburg",
@@ -58983,7 +53337,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3186952,
"latitude": 44.11972,
"longitude": 15.24222,
"name": "Zadar",
@@ -58993,7 +53346,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 362004,
"latitude": 27.04411,
"longitude": 31.31897,
"name": "Ab\u016b T\u012bj",
@@ -59003,7 +53355,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 621074,
"latitude": 52.6329,
"longitude": 29.7389,
"name": "Svyetlahorsk",
@@ -59013,7 +53364,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3084840,
"latitude": 53.33672,
"longitude": 15.0499,
"name": "Stargard Szczeci\u0144ski",
@@ -59023,7 +53373,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3171366,
"latitude": 45.18446,
"longitude": 9.16145,
"name": "Pavia",
@@ -59033,7 +53382,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461444,
"latitude": -28.38778,
"longitude": -53.91472,
"name": "Iju\u00ed",
@@ -59043,7 +53391,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1818016,
"latitude": 31.2575,
"longitude": 113.67833,
"name": "Anlu",
@@ -59053,7 +53400,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033403,
"latitude": 46.31667,
"longitude": 129.56667,
"name": "Yilan",
@@ -59063,7 +53409,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 286245,
"latitude": 22.56667,
"longitude": 59.52889,
"name": "\u015e\u016br",
@@ -59073,7 +53418,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPL",
- "geonameid": 5223869,
"latitude": 41.87871,
"longitude": -71.38256,
"name": "Pawtucket",
@@ -59083,7 +53427,6 @@
"country_code": "US",
"elevation": 108,
"feature_code": "PPL",
- "geonameid": 4751839,
"latitude": 38.84039,
"longitude": -77.42888,
"name": "Centreville",
@@ -59093,7 +53436,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2529649,
"latitude": 30.47028,
"longitude": -8.87695,
"name": "Taroudant",
@@ -59103,7 +53445,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185092,
"latitude": 26.03333,
"longitude": 88.46667,
"name": "Th\u0101kurgaon",
@@ -59113,7 +53454,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 431748,
"latitude": -2.8451,
"longitude": 30.3414,
"name": "Muyinga",
@@ -59123,7 +53463,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1809486,
"latitude": 23.3925,
"longitude": 110.08139,
"name": "Guiping",
@@ -59133,7 +53472,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 746958,
"latitude": 40.43094,
"longitude": 29.15969,
"name": "Gemlik",
@@ -59143,7 +53481,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808872,
"latitude": 27.08917,
"longitude": 119.64528,
"name": "Fu\u2019an",
@@ -59153,7 +53490,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850396,
"latitude": 34.58333,
"longitude": 135.83333,
"name": "Tenri",
@@ -59163,7 +53499,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4170156,
"latitude": 27.86614,
"longitude": -82.32648,
"name": "Riverview",
@@ -59173,7 +53508,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268259,
"latitude": 18.31667,
"longitude": 78.35,
"name": "K\u0101m\u0101reddi",
@@ -59183,7 +53517,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2521088,
"latitude": 38.53816,
"longitude": -0.13098,
"name": "Benidorm",
@@ -59193,7 +53526,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2325733,
"latitude": 7.55,
"longitude": 3.43333,
"name": "Orita Eruwa",
@@ -59203,7 +53535,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2940213,
"latitude": 52.62264,
"longitude": 10.08047,
"name": "Celle",
@@ -59213,7 +53544,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275346,
"latitude": 23.66667,
"longitude": 87.71667,
"name": "Bolpur",
@@ -59223,7 +53553,6 @@
"country_code": "US",
"elevation": 251,
"feature_code": "PPL",
- "geonameid": 5007402,
"latitude": 42.65837,
"longitude": -83.14993,
"name": "Rochester Hills",
@@ -59233,7 +53562,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258546,
"latitude": 23.18333,
"longitude": 88.58333,
"name": "R\u0101n\u0101gh\u0101t",
@@ -59243,7 +53571,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2648182,
"latitude": 51.47566,
"longitude": 0.32521,
"name": "Grays",
@@ -59253,7 +53580,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2044050,
"latitude": 40.02528,
"longitude": 127.95583,
"name": "Hongw\u014fn",
@@ -59263,17 +53589,24 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3036386,
"latitude": 48.91667,
"longitude": 2.38333,
"name": "Aubervilliers",
"population": 70914
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.52635,
+ "longitude": 13.33903,
+ "name": "Moabit",
+ "population": 70911
+ },
{
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3407882,
"latitude": -3.20333,
"longitude": -52.20639,
"name": "Altamira",
@@ -59283,7 +53616,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271891,
"latitude": 30.4,
"longitude": 74.03333,
"name": "F\u0101zilka",
@@ -59293,7 +53625,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3177838,
"latitude": 45.13617,
"longitude": 10.02797,
"name": "Cremona",
@@ -59303,7 +53634,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036283,
"latitude": 40.72861,
"longitude": 124.78472,
"name": "Kuandian",
@@ -59313,7 +53643,6 @@
"country_code": "US",
"elevation": 28,
"feature_code": "PPLA2",
- "geonameid": 4145381,
"latitude": 39.74595,
"longitude": -75.54659,
"name": "Wilmington",
@@ -59323,7 +53652,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515696,
"latitude": 19.81667,
"longitude": -97.35,
"name": "Teziutl\u00e1n",
@@ -59333,7 +53661,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2732544,
"latitude": 41.13363,
"longitude": -8.61742,
"name": "Vila Nova de Gaia",
@@ -59343,7 +53670,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2648272,
"latitude": 50.79509,
"longitude": -1.12902,
"name": "Gosport",
@@ -59353,7 +53679,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 123941,
"latitude": 27.1467,
"longitude": 57.0801,
"name": "M\u012bn\u0101b",
@@ -59363,7 +53688,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1798548,
"latitude": 28.99242,
"longitude": 116.66754,
"name": "Poyang",
@@ -59373,7 +53697,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1786357,
"latitude": 27.42829,
"longitude": 112.18338,
"name": "Yongfeng",
@@ -59383,7 +53706,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1693239,
"latitude": 14.88722,
"longitude": 120.85722,
"name": "Plaridel",
@@ -59393,7 +53715,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1502603,
"latitude": 55.131,
"longitude": 61.6792,
"name": "Kopeysk",
@@ -59403,7 +53724,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343822,
"latitude": 6.65915,
"longitude": 7.75961,
"name": "Eha Amufu",
@@ -59413,7 +53733,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037240,
"latitude": 41.11667,
"longitude": 123.45,
"name": "Gongchangling",
@@ -59423,7 +53742,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455168,
"latitude": -17.22222,
"longitude": -46.87472,
"name": "Paracatu",
@@ -59433,7 +53751,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276378,
"latitude": 11.18333,
"longitude": 75.81667,
"name": "Beypore",
@@ -59443,7 +53760,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 601084,
"latitude": 54.4,
"longitude": 24.05,
"name": "Alytus",
@@ -59453,7 +53769,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 697593,
"latitude": 48.04433,
"longitude": 30.85073,
"name": "Pervomays\u2019k",
@@ -59463,7 +53778,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2751738,
"latitude": 52.50833,
"longitude": 5.475,
"name": "Lelystad",
@@ -59473,7 +53787,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805757,
"latitude": 36.38972,
"longitude": 120.46222,
"name": "Jimo",
@@ -59483,7 +53796,6 @@
"country_code": "US",
"elevation": 248,
"feature_code": "PPLA2",
- "geonameid": 5278052,
"latitude": 43.01168,
"longitude": -88.23148,
"name": "Waukesha",
@@ -59493,7 +53805,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2331005,
"latitude": 11.78529,
"longitude": 7.62175,
"name": "Malumfashi",
@@ -59503,7 +53814,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3402721,
"latitude": -7.85083,
"longitude": -35.25472,
"name": "Carpina",
@@ -59513,7 +53823,6 @@
"country_code": "IE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2964180,
"latitude": 53.27194,
"longitude": -9.04889,
"name": "Gaillimh",
@@ -59523,7 +53832,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2653225,
"latitude": 53.25,
"longitude": -1.41667,
"name": "Chesterfield",
@@ -59533,7 +53841,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2549263,
"latitude": 31.5125,
"longitude": -9.77,
"name": "Essaouira",
@@ -59543,7 +53850,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 160961,
"latitude": -1.33167,
"longitude": 31.81222,
"name": "Bukoba",
@@ -59553,7 +53859,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1070661,
"latitude": -19.65,
"longitude": 47.31667,
"name": "Antanifotsy",
@@ -59563,7 +53868,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6053154,
"latitude": 49.69999,
"longitude": -112.81856,
"name": "Lethbridge",
@@ -59573,7 +53877,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3374462,
"latitude": 16.89014,
"longitude": -24.98042,
"name": "Mindelo",
@@ -59583,7 +53886,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273724,
"latitude": 28.56667,
"longitude": 77.55,
"name": "D\u0101dri",
@@ -59593,7 +53895,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 203104,
"latitude": -1.5763,
"longitude": 30.0675,
"name": "Byumba",
@@ -59603,7 +53904,6 @@
"country_code": "US",
"elevation": 296,
"feature_code": "PPL",
- "geonameid": 5041926,
"latitude": 45.01052,
"longitude": -93.45551,
"name": "Plymouth",
@@ -59613,7 +53913,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2936871,
"latitude": 51.56667,
"longitude": 6.73333,
"name": "Dinslaken",
@@ -59623,7 +53922,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2658822,
"latitude": 47.42391,
"longitude": 9.37477,
"name": "Sankt Gallen",
@@ -59633,7 +53931,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3089578,
"latitude": 51.66446,
"longitude": 19.35473,
"name": "Pabianice",
@@ -59643,7 +53940,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3044082,
"latitude": 47.58494,
"longitude": 18.39325,
"name": "Tatab\u00e1nya",
@@ -59653,7 +53949,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1700980,
"latitude": 8.83333,
"longitude": 125.11667,
"name": "Mariano",
@@ -59663,7 +53958,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278152,
"latitude": 26.46667,
"longitude": 79.51667,
"name": "Auraiya",
@@ -59673,7 +53967,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 6534232,
"latitude": 38.96589,
"longitude": 16.3092,
"name": "Lamezia Terme",
@@ -59683,7 +53976,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 472278,
"latitude": 52.04541,
"longitude": 47.37993,
"name": "Vol\u2019sk",
@@ -59693,7 +53985,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2296969,
"latitude": 5.60106,
"longitude": -0.07713,
"name": "Nungua",
@@ -59703,7 +53994,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 4501198,
"latitude": 39.93484,
"longitude": -75.03073,
"name": "Cherry Hill",
@@ -59713,7 +54003,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038541,
"latitude": 47.58333,
"longitude": 126.08333,
"name": "Baiquan",
@@ -59723,7 +54012,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 577881,
"latitude": 53.96306,
"longitude": 58.39806,
"name": "Beloretsk",
@@ -59733,7 +54021,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2652002,
"latitude": 53.09787,
"longitude": -2.44161,
"name": "Crewe",
@@ -59743,7 +54030,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2643097,
"latitude": 53.13333,
"longitude": -1.2,
"name": "Mansfield",
@@ -59753,7 +54039,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3563504,
"latitude": 20.29778,
"longitude": -76.24139,
"name": "Contramaestre",
@@ -59763,7 +54048,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1168226,
"latitude": 31.01667,
"longitude": 73.85,
"name": "Pattoki",
@@ -59773,7 +54057,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 555980,
"latitude": 53.45446,
"longitude": 56.04149,
"name": "Ishimbay",
@@ -59783,7 +54066,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 743882,
"latitude": 41.37805,
"longitude": 33.77528,
"name": "Kastamonu",
@@ -59793,7 +54075,6 @@
"country_code": "US",
"elevation": 34,
"feature_code": "PPL",
- "geonameid": 4718721,
"latitude": 26.1948,
"longitude": -98.18362,
"name": "Pharr",
@@ -59803,7 +54084,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1633308,
"latitude": -4.01667,
"longitude": 103.26667,
"name": "Pagaralam",
@@ -59813,7 +54093,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3398331,
"latitude": -6.35944,
"longitude": -39.29861,
"name": "Iguatu",
@@ -59823,7 +54102,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1806218,
"latitude": 32.50611,
"longitude": 120.14278,
"name": "Jiangyan",
@@ -59833,7 +54111,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2034918,
"latitude": 40.70583,
"longitude": 110.28556,
"name": "Shiguai",
@@ -59843,7 +54120,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857844,
"latitude": 33.55,
"longitude": 130.2,
"name": "Maebaru",
@@ -59853,7 +54129,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2295021,
"latitude": 7.33991,
"longitude": -2.32676,
"name": "Sunyani",
@@ -59863,7 +54138,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2757347,
"latitude": 51.90488,
"longitude": 4.45315,
"name": "Delfshaven",
@@ -59873,7 +54147,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2524013,
"latitude": 38.98333,
"longitude": 16.31667,
"name": "Nicastro",
@@ -59883,7 +54156,6 @@
"country_code": "US",
"elevation": 106,
"feature_code": "PPL",
- "geonameid": 5383777,
"latitude": 37.66243,
"longitude": -121.87468,
"name": "Pleasanton",
@@ -59893,7 +54165,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1715804,
"latitude": 10.52083,
"longitude": 124.02722,
"name": "Danao",
@@ -59903,7 +54174,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3099112,
"latitude": 52.53481,
"longitude": 17.58259,
"name": "Gniezno",
@@ -59913,7 +54183,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759875,
"latitude": 52.12917,
"longitude": 4.65546,
"name": "Alphen aan den Rijn",
@@ -59923,7 +54192,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 310892,
"latitude": 37.37389,
"longitude": 36.09611,
"name": "Kadirli",
@@ -59933,7 +54201,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3433715,
"latitude": -29.14003,
"longitude": -59.26256,
"name": "Goya",
@@ -59943,7 +54210,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1585660,
"latitude": 10.7,
"longitude": 105.11667,
"name": "Ch\u00e2u \u00d0\u1ed1c",
@@ -59953,7 +54219,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4000821,
"latitude": 20.35,
"longitude": -102.0,
"name": "La Piedad Cavadas",
@@ -59963,7 +54228,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 148565,
"latitude": 39.93788,
"longitude": 48.92855,
"name": "Zubovka",
@@ -59973,7 +54237,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 956907,
"latitude": -27.18871,
"longitude": 25.32931,
"name": "Schweizer-Reneke",
@@ -59983,7 +54246,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 584243,
"latitude": 43.42896,
"longitude": 39.92391,
"name": "Adler",
@@ -59993,7 +54255,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1810846,
"latitude": 30.05333,
"longitude": 119.95194,
"name": "Fuyang",
@@ -60003,7 +54264,6 @@
"country_code": "US",
"elevation": 25,
"feature_code": "PPL",
- "geonameid": 5785965,
"latitude": 47.30732,
"longitude": -122.22845,
"name": "Auburn",
@@ -60013,7 +54273,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1789799,
"latitude": 30.53629,
"longitude": 120.68638,
"name": "Xiashi",
@@ -60023,7 +54282,6 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1528121,
"latitude": 42.49068,
"longitude": 78.39362,
"name": "Karakol",
@@ -60033,7 +54291,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 316411,
"latitude": 39.54694,
"longitude": 44.08417,
"name": "Do\u011fubayaz\u0131t",
@@ -60043,7 +54300,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2522165,
"latitude": 37.33791,
"longitude": -5.83951,
"name": "Alcal\u00e1 de Guadaira",
@@ -60053,7 +54309,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 569955,
"latitude": 52.9771,
"longitude": 49.7086,
"name": "Chapayevsk",
@@ -60063,7 +54318,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPLA2",
- "geonameid": 4473083,
"latitude": 34.75405,
"longitude": -77.43024,
"name": "Jacksonville",
@@ -60073,7 +54327,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277183,
"latitude": 15.9,
"longitude": 80.46667,
"name": "B\u0101patla",
@@ -60083,7 +54336,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1294041,
"latitude": 20.01667,
"longitude": 95.55,
"name": "Taungdwingyi",
@@ -60093,9 +54345,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 211734,
- "latitude": 2.15,
- "longitude": 21.51667,
+ "latitude": 2.15127,
+ "longitude": 21.51672,
"name": "Lisala",
"population": 70087
},
@@ -60103,7 +54354,6 @@
"country_code": "US",
"elevation": 284,
"feature_code": "PPLA2",
- "geonameid": 4924006,
"latitude": 40.19338,
"longitude": -85.38636,
"name": "Muncie",
@@ -60113,7 +54363,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259994,
"latitude": 12.1,
"longitude": 75.2,
"name": "Payyann\u016br",
@@ -60123,9 +54372,8 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2952984,
- "latitude": 49.87948,
- "longitude": 10.88634,
+ "latitude": 49.89873,
+ "longitude": 10.90067,
"name": "Bamberg",
"population": 70047
},
@@ -60133,7 +54381,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99169,
"latitude": 33.80809,
"longitude": 44.53344,
"name": "Kh\u0101li\u015f",
@@ -60143,7 +54390,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1816338,
"latitude": 23.22378,
"longitude": 108.80216,
"name": "Luxu",
@@ -60153,7 +54399,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3828262,
"latitude": 12.15889,
"longitude": -86.34417,
"name": "Ciudad Sandino",
@@ -60163,7 +54408,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3028808,
"latitude": 43.55135,
"longitude": 7.01275,
"name": "Cannes",
@@ -60173,7 +54417,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2528659,
"latitude": 33.89469,
"longitude": -6.3065,
"name": "Tiflet",
@@ -60183,7 +54426,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3073699,
"latitude": 50.14734,
"longitude": 14.10285,
"name": "Kladno",
@@ -60193,17 +54435,24 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6065686,
"latitude": 49.21939,
"longitude": -122.60193,
"name": "Maple Ridge",
"population": 70000
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.50896,
+ "longitude": -0.3713,
+ "name": "Southall",
+ "population": 70000
+ },
{
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1521368,
"latitude": 45.61667,
"longitude": 63.31667,
"name": "Baykonyr",
@@ -60213,7 +54462,6 @@
"country_code": "LT",
"elevation": 100,
"feature_code": "PPLX",
- "geonameid": 6618486,
"latitude": 54.91525,
"longitude": 23.96831,
"name": "Dainava (Kaunas)",
@@ -60223,19 +54471,26 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3099654,
"latitude": 53.14821,
"longitude": 18.17036,
"name": "Fordon",
"population": 70000
},
+ {
+ "country_code": "US",
+ "elevation": 273,
+ "feature_code": "PPL",
+ "latitude": 34.16834,
+ "longitude": -118.60592,
+ "name": "Woodland Hills",
+ "population": 70000
+ },
{
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2300379,
- "latitude": 6.6,
- "longitude": 0.46667,
+ "latitude": 6.60084,
+ "longitude": 0.4713,
"name": "Ho",
"population": 69998
},
@@ -60243,7 +54498,6 @@
"country_code": "RE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 935582,
"latitude": -21.28309,
"longitude": 55.51802,
"name": "Le Tampon",
@@ -60253,7 +54507,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1800764,
"latitude": 33.26611,
"longitude": 116.56605,
"name": "Mengcheng Chengguanzhen",
@@ -60263,7 +54516,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034228,
"latitude": 46.83333,
"longitude": 126.5,
"name": "Wangkui",
@@ -60273,7 +54525,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 145034,
"latitude": 36.1468,
"longitude": 49.218,
"name": "Abhar",
@@ -60283,7 +54534,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3557347,
"latitude": 22.79056,
"longitude": -82.50528,
"name": "G\u00fcira de Melena",
@@ -60293,7 +54543,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255121,
"latitude": 12.05,
"longitude": 75.35,
"name": "Taliparamba",
@@ -60303,7 +54552,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1635342,
"latitude": -7.52,
"longitude": 110.22639,
"name": "Mertoyudan",
@@ -60313,7 +54561,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3444864,
"latitude": -20.42278,
"longitude": -49.97278,
"name": "Votuporanga",
@@ -60323,7 +54570,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3563559,
"latitude": 22.50472,
"longitude": -83.51361,
"name": "Consolaci\u00f3n del Sur",
@@ -60333,7 +54579,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254444,
"latitude": 12.234,
"longitude": 79.65551,
"name": "Tindivanam",
@@ -60343,7 +54588,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732846,
"latitude": 2.5148,
"longitude": 102.8158,
"name": "Segamat",
@@ -60353,7 +54597,6 @@
"country_code": "US",
"elevation": 403,
"feature_code": "PPL",
- "geonameid": 4132093,
"latitude": 36.18674,
"longitude": -94.12881,
"name": "Springdale",
@@ -60363,7 +54606,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2994393,
"latitude": 44.83248,
"longitude": -0.63381,
"name": "M\u00e9rignac",
@@ -60373,7 +54615,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3057124,
"latitude": 48.3774,
"longitude": 17.58723,
"name": "Trnava",
@@ -60383,7 +54624,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648266,
"latitude": -7.91346,
"longitude": 113.82145,
"name": "Bondowoso",
@@ -60393,7 +54633,6 @@
"country_code": "US",
"elevation": 34,
"feature_code": "PPL",
- "geonameid": 5102443,
"latitude": 40.85677,
"longitude": -74.12848,
"name": "Passaic",
@@ -60403,7 +54642,6 @@
"country_code": "US",
"elevation": 28,
"feature_code": "PPL",
- "geonameid": 5369367,
"latitude": 33.93029,
"longitude": -118.21146,
"name": "Lynwood",
@@ -60413,7 +54651,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1175446,
"latitude": 29.62382,
"longitude": 71.91673,
"name": "Kohror Pakka",
@@ -60423,7 +54660,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2481246,
"latitude": 35.88548,
"longitude": 3.77236,
"name": "Sidi A\u00efssa",
@@ -60433,7 +54669,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3588258,
"latitude": 14.91667,
"longitude": -91.36667,
"name": "Totonicap\u00e1n",
@@ -60443,7 +54678,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 136987,
"latitude": 30.7949,
"longitude": 50.56458,
"name": "Dehdasht",
@@ -60453,7 +54687,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2334756,
"latitude": 12.58979,
"longitude": 6.57791,
"name": "Kaura Namoda",
@@ -60463,7 +54696,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2294727,
"latitude": 7.58616,
"longitude": -1.94137,
"name": "Techiman",
@@ -60473,7 +54705,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3442057,
"latitude": -34.72639,
"longitude": -56.22,
"name": "Las Piedras",
@@ -60483,7 +54714,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2290582,
"latitude": 5.32556,
"longitude": -4.37685,
"name": "Dabou",
@@ -60493,7 +54723,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848903,
"latitude": 35.82639,
"longitude": 139.70444,
"name": "Warabi",
@@ -60503,7 +54732,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 139223,
"latitude": 36.655,
"longitude": 51.4204,
"name": "Ch\u0101l\u016bs",
@@ -60513,7 +54741,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 343663,
"latitude": 6.03333,
"longitude": 37.55,
"name": "\u0100rba Minch\u2019",
@@ -60523,7 +54750,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3393106,
"latitude": -2.96667,
"longitude": -47.48333,
"name": "Paragominas",
@@ -60533,7 +54759,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1160571,
"latitude": 28.22107,
"longitude": 61.21582,
"name": "Kh\u0101sh",
@@ -60543,7 +54768,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1563281,
"latitude": 13.08333,
"longitude": 109.3,
"name": "Tuy H\u00f2a",
@@ -60553,7 +54777,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5909629,
"latitude": 45.45008,
"longitude": -73.46583,
"name": "Brossard",
@@ -60563,7 +54786,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850708,
"latitude": 33.73333,
"longitude": 135.36667,
"name": "Tanabe",
@@ -60573,7 +54795,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256475,
"latitude": 21.35,
"longitude": 74.88333,
"name": "Shirpur",
@@ -60583,7 +54804,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3883167,
"latitude": -35.85,
"longitude": -71.6,
"name": "Linares",
@@ -60593,7 +54813,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637891,
"latitude": 52.71009,
"longitude": -2.75208,
"name": "Shrewsbury",
@@ -60603,7 +54822,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5404554,
"latitude": 37.59583,
"longitude": -122.01917,
"name": "Union City",
@@ -60613,7 +54831,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5404555,
"latitude": 37.59577,
"longitude": -122.01913,
"name": "Union City",
@@ -60623,7 +54840,6 @@
"country_code": "GR",
"elevation": 230,
"feature_code": "PPL",
- "geonameid": 7522530,
"latitude": 38.05404,
"longitude": 23.806,
"name": "Marousi",
@@ -60633,7 +54849,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3832791,
"latitude": -31.42414,
"longitude": -64.49778,
"name": "Villa Carlos Paz",
@@ -60643,7 +54858,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3458494,
"latitude": -21.67861,
"longitude": -49.7425,
"name": "Lins",
@@ -60653,7 +54867,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1295395,
"latitude": 16.77222,
"longitude": 96.23778,
"name": "Syriam",
@@ -60663,7 +54876,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 70979,
"latitude": 15.17177,
"longitude": 44.32442,
"name": "Sayy\u0101n",
@@ -60673,7 +54885,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460441,
"latitude": -21.25472,
"longitude": -48.32222,
"name": "Jaboticabal",
@@ -60683,7 +54894,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1177682,
"latitude": 33.25579,
"longitude": 73.30255,
"name": "G\u016bjar Kh\u0101n",
@@ -60693,7 +54903,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1172993,
"latitude": 30.19438,
"longitude": 66.99299,
"name": "Kot Malik",
@@ -60703,7 +54912,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 355449,
"latitude": 25.29336,
"longitude": 32.55402,
"name": "Isn\u0101",
@@ -60713,7 +54921,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1180983,
"latitude": 31.75,
"longitude": 73.8,
"name": "Ch\u016bhar K\u0101na",
@@ -60723,7 +54930,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1771304,
"latitude": 3.03333,
"longitude": 101.75,
"name": "Kampong Baharu Balakong",
@@ -60733,7 +54939,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2491050,
"latitude": 36.56471,
"longitude": 3.15434,
"name": "L\u2019Arba",
@@ -60743,7 +54948,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276752,
"latitude": 23.85,
"longitude": 77.93333,
"name": "B\u0101soda",
@@ -60753,7 +54957,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2235194,
"latitude": 4.75,
"longitude": 11.23333,
"name": "Bafia",
@@ -60763,7 +54966,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3689718,
"latitude": 7.08471,
"longitude": -70.75908,
"name": "Arauca",
@@ -60773,7 +54975,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846912,
"latitude": 37.01083,
"longitude": 127.27028,
"name": "Anseong",
@@ -60783,7 +54984,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805884,
"latitude": 35.54278,
"longitude": 118.455,
"name": "Jiehu",
@@ -60793,7 +54993,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 663118,
"latitude": 46.63333,
"longitude": 27.73333,
"name": "Vaslui",
@@ -60803,7 +55002,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2796491,
"latitude": 50.93106,
"longitude": 5.33781,
"name": "Hasselt",
@@ -60813,7 +55011,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 757718,
"latitude": 54.11175,
"longitude": 22.93087,
"name": "Suwa\u0142ki",
@@ -60823,7 +55020,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5921357,
"latitude": 49.17468,
"longitude": -121.94427,
"name": "Chilliwack",
@@ -60833,7 +55029,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863451,
"latitude": 35.12861,
"longitude": 136.0976,
"name": "\u014cmihachiman",
@@ -60843,7 +55038,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2036069,
"latitude": 41.80694,
"longitude": 126.90778,
"name": "Linjiang",
@@ -60853,7 +55047,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 675918,
"latitude": 45.75,
"longitude": 22.9,
"name": "Hunedoara",
@@ -60863,7 +55056,6 @@
"country_code": "US",
"elevation": 898,
"feature_code": "PPL",
- "geonameid": 5324363,
"latitude": 34.50083,
"longitude": -117.18588,
"name": "Apple Valley",
@@ -60873,7 +55065,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3706567,
"latitude": 9.08333,
"longitude": -79.53333,
"name": "Las Cumbres",
@@ -60883,7 +55074,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 677106,
"latitude": 43.88333,
"longitude": 25.96667,
"name": "Giurgiu",
@@ -60893,7 +55083,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1163272,
"latitude": 30.97433,
"longitude": 72.48269,
"name": "Toba Tek Singh",
@@ -60903,7 +55092,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3170027,
"latitude": 40.64432,
"longitude": 15.80857,
"name": "Potenza",
@@ -60913,7 +55101,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793230,
"latitude": 26.03139,
"longitude": 119.59861,
"name": "Tantou",
@@ -60923,7 +55110,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268820,
"latitude": 26.75,
"longitude": 94.21667,
"name": "Jorh\u0101t",
@@ -60933,7 +55119,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2789786,
"latitude": 51.22339,
"longitude": 2.91185,
"name": "Oostende",
@@ -60943,7 +55128,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1634131,
"latitude": -7.6051,
"longitude": 111.9035,
"name": "Nganjuk",
@@ -60953,7 +55137,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2786578,
"latitude": 51.16509,
"longitude": 4.1437,
"name": "Sint-Niklaas",
@@ -60963,7 +55146,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2033934,
"latitude": 41.29711,
"longitude": 124.12092,
"name": "Xiaoshi",
@@ -60973,7 +55155,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1217474,
"latitude": 38.26667,
"longitude": 67.9,
"name": "Denov",
@@ -60983,7 +55164,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1704067,
"latitude": 15.2151,
"longitude": 120.6596,
"name": "Magalang",
@@ -60993,7 +55173,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2523650,
"latitude": 36.92824,
"longitude": 14.71719,
"name": "Ragusa",
@@ -61003,7 +55182,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1328121,
"latitude": 16.28333,
"longitude": 95.4,
"name": "Bogale",
@@ -61013,7 +55191,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3557378,
"latitude": 22.83611,
"longitude": -82.02806,
"name": "G\u00fcines",
@@ -61023,7 +55200,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 167357,
"latitude": 36.52815,
"longitude": 37.95495,
"name": "Manbij",
@@ -61033,7 +55209,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853081,
"latitude": 36.21667,
"longitude": 138.48333,
"name": "Saku",
@@ -61043,7 +55218,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862912,
"latitude": 34.88333,
"longitude": 136.98333,
"name": "Hekinan",
@@ -61053,7 +55227,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2753638,
"latitude": 52.6425,
"longitude": 5.05972,
"name": "Hoorn",
@@ -61063,7 +55236,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1706609,
"latitude": 13.2997,
"longitude": 123.4386,
"name": "Libon",
@@ -61073,7 +55245,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2221053,
"latitude": 6.38333,
"longitude": 10.06667,
"name": "Wum",
@@ -61083,7 +55254,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3698105,
"latitude": -5.0925,
"longitude": -80.1625,
"name": "Chulucanas",
@@ -61093,7 +55263,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2487452,
"latitude": 36.45028,
"longitude": 6.26444,
"name": "Mila",
@@ -61103,7 +55272,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 480089,
"latitude": 54.60666,
"longitude": 53.7097,
"name": "Tuymazy",
@@ -61113,7 +55281,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256207,
"latitude": 15.78333,
"longitude": 76.76667,
"name": "Sindhn\u016br",
@@ -61123,7 +55290,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110959,
"latitude": 37.28333,
"longitude": 140.38333,
"name": "Sukagawa",
@@ -61133,7 +55299,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343270,
"latitude": 6.17851,
"longitude": 7.01156,
"name": "Enugu-Ukwu",
@@ -61143,7 +55308,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1002851,
"latitude": -25.61692,
"longitude": 27.99471,
"name": "Ga-Rankuwa",
@@ -61153,7 +55317,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 362973,
"latitude": 27.2696,
"longitude": 31.15105,
"name": "Abn\u016bb",
@@ -61163,7 +55326,6 @@
"country_code": "US",
"elevation": 414,
"feature_code": "PPL",
- "geonameid": 5386754,
"latitude": 34.05557,
"longitude": -117.18254,
"name": "Redlands",
@@ -61173,7 +55335,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3113236,
"latitude": 42.54664,
"longitude": -6.59619,
"name": "Ponferrada",
@@ -61183,7 +55344,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864009,
"latitude": 35.3,
"longitude": 135.11667,
"name": "Fukuchiyama",
@@ -61193,7 +55353,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805505,
"latitude": 19.72917,
"longitude": 110.00639,
"name": "Jinjiang",
@@ -61203,7 +55362,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5989045,
"latitude": 50.66648,
"longitude": -120.3192,
"name": "Kamloops",
@@ -61213,7 +55371,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503878,
"latitude": 34.74488,
"longitude": 8.06024,
"name": "Bir el Ater",
@@ -61223,7 +55380,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2339156,
"latitude": 7.10651,
"longitude": 6.73415,
"name": "Idah",
@@ -61233,7 +55389,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445133,
"latitude": -20.75389,
"longitude": -42.88194,
"name": "Vi\u00e7osa",
@@ -61243,7 +55398,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276988,
"latitude": 21.33333,
"longitude": 83.61667,
"name": "Bargarh",
@@ -61253,7 +55407,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 532675,
"latitude": 58.10861,
"longitude": 57.80528,
"name": "Lys\u2019va",
@@ -61263,7 +55416,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2479247,
"latitude": 35.18568,
"longitude": 1.49612,
"name": "Sougueur",
@@ -61273,7 +55425,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2712414,
"latitude": 60.67452,
"longitude": 17.14174,
"name": "G\u00e4vle",
@@ -61283,7 +55434,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252908,
"latitude": 20.1,
"longitude": 77.15,
"name": "W\u0101sh\u012bm",
@@ -61293,7 +55443,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253095,
"latitude": 23.7,
"longitude": 72.55,
"name": "Visnagar",
@@ -61303,7 +55452,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036959,
"latitude": 41.68917,
"longitude": 122.11278,
"name": "Heishan",
@@ -61313,7 +55461,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3518387,
"latitude": 19.26167,
"longitude": -99.53528,
"name": "San Mateo Atenco",
@@ -61323,7 +55470,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 572525,
"latitude": 51.36713,
"longitude": 42.08494,
"name": "Borisoglebsk",
@@ -61333,7 +55479,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856569,
"latitude": 35.06667,
"longitude": 135.98333,
"name": "Moriyama",
@@ -61343,7 +55488,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328185,
"latitude": 4.70844,
"longitude": 6.79307,
"name": "Obonoma",
@@ -61353,7 +55497,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 490172,
"latitude": 59.8996,
"longitude": 29.08574,
"name": "Sosnovyy Bor",
@@ -61363,7 +55506,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302847,
"latitude": 17.58152,
"longitude": 80.67651,
"name": "Palwancha",
@@ -61373,7 +55515,6 @@
"country_code": "US",
"elevation": 226,
"feature_code": "PPL",
- "geonameid": 4905211,
"latitude": 42.1103,
"longitude": -88.03424,
"name": "Palatine",
@@ -61383,7 +55524,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2955272,
"latitude": 49.97389,
"longitude": 9.14917,
"name": "Aschaffenburg",
@@ -61393,7 +55533,6 @@
"country_code": "US",
"elevation": 31,
"feature_code": "PPL",
- "geonameid": 5404024,
"latitude": 37.49466,
"longitude": -120.84659,
"name": "Turlock",
@@ -61403,7 +55542,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3670502,
"latitude": 10.62962,
"longitude": -74.92063,
"name": "Sabanalarga",
@@ -61413,7 +55551,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3099213,
"latitude": 51.66361,
"longitude": 16.0845,
"name": "G\u0142og\u00f3w",
@@ -61423,7 +55560,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267227,
"latitude": 21.3,
"longitude": 70.25,
"name": "Keshod",
@@ -61433,7 +55569,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793419,
"latitude": 32.68833,
"longitude": 112.8275,
"name": "Tanghe",
@@ -61443,7 +55578,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3686561,
"latitude": 4.9825,
"longitude": -75.60361,
"name": "Chinchin\u00e1",
@@ -61453,7 +55587,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3175121,
"latitude": 42.35055,
"longitude": 13.39954,
"name": "L\u2019Aquila",
@@ -61463,7 +55596,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284833,
"latitude": 47.51482,
"longitude": 19.17028,
"name": "Budapest XVI. ker\u00fclet",
@@ -61473,7 +55605,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849592,
"latitude": 35.64547,
"longitude": 136.0558,
"name": "Tsuruga",
@@ -61483,7 +55614,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1683340,
"latitude": 14.08627,
"longitude": 121.14975,
"name": "Tanauan",
@@ -61493,7 +55623,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268015,
"latitude": 12.30814,
"longitude": 75.10632,
"name": "K\u0101nnang\u0101d",
@@ -61503,7 +55632,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005219,
"latitude": 25.56667,
"longitude": -108.45,
"name": "Guasave",
@@ -61513,7 +55641,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4019260,
"latitude": 31.3,
"longitude": -109.56667,
"name": "Agua Prieta",
@@ -61523,7 +55650,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798946,
"latitude": 36.43111,
"longitude": 114.17,
"name": "Pengcheng",
@@ -61533,7 +55659,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2508102,
"latitude": 35.97108,
"longitude": 6.87374,
"name": "A\u00efn Fakroun",
@@ -61543,7 +55668,6 @@
"country_code": "US",
"elevation": 261,
"feature_code": "PPLA2",
- "geonameid": 4880889,
"latitude": 42.49276,
"longitude": -92.34296,
"name": "Waterloo",
@@ -61553,7 +55677,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3107112,
"latitude": 40.32605,
"longitude": -3.51088,
"name": "Vaciamadrid",
@@ -61563,7 +55686,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360526,
"latitude": 27.4402,
"longitude": 30.81841,
"name": "Al Q\u016b\u015f\u012byah",
@@ -61573,7 +55695,6 @@
"country_code": "US",
"elevation": 443,
"feature_code": "PPL",
- "geonameid": 5382146,
"latitude": 33.78252,
"longitude": -117.22865,
"name": "Perris",
@@ -61583,7 +55704,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 361029,
"latitude": 31.18086,
"longitude": 31.86518,
"name": "Al Jam\u0101l\u012byah",
@@ -61593,7 +55713,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1795166,
"latitude": 24.44778,
"longitude": 117.81111,
"name": "Shima",
@@ -61603,7 +55722,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275481,
"latitude": 28.3,
"longitude": 79.8,
"name": "B\u012bsalpur",
@@ -61613,7 +55731,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800519,
"latitude": 32.78017,
"longitude": 117.96378,
"name": "Mingguang",
@@ -61623,7 +55740,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2522876,
"latitude": 38.01584,
"longitude": 12.51077,
"name": "Trapani",
@@ -61633,7 +55749,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799384,
"latitude": 29.28917,
"longitude": 121.42472,
"name": "Ninghai",
@@ -61643,7 +55758,6 @@
"country_code": "US",
"elevation": 53,
"feature_code": "PPL",
- "geonameid": 4937230,
"latitude": 42.27926,
"longitude": -71.41617,
"name": "Framingham",
@@ -61653,7 +55767,6 @@
"country_code": "PE",
"elevation": 109,
"feature_code": "PPL",
- "geonameid": 3929631,
"latitude": -12.11667,
"longitude": -77.05,
"name": "San Isidro",
@@ -61663,9 +55776,8 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 187968,
- "latitude": -3.21748,
- "longitude": 40.1191,
+ "latitude": -3.21799,
+ "longitude": 40.11692,
"name": "Malindi",
"population": 68304
},
@@ -61673,7 +55785,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 601594,
"latitude": 40.02216,
"longitude": 52.95518,
"name": "T\u00fcrkmenba\u015fy",
@@ -61683,7 +55794,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1169278,
"latitude": 32.1,
"longitude": 74.88333,
"name": "N\u0101row\u0101l",
@@ -61693,7 +55803,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254953,
"latitude": 16.75,
"longitude": 81.7,
"name": "Tanuku",
@@ -61703,7 +55812,6 @@
"country_code": "KW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 285811,
"latitude": 29.0825,
"longitude": 48.13028,
"name": "Al Fa\u1e29\u0101\u1e29\u012bl",
@@ -61713,7 +55821,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3361934,
"latitude": -33.01167,
"longitude": 17.9442,
"name": "Saldanha",
@@ -61723,7 +55830,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 704422,
"latitude": 48.28198,
"longitude": 37.17585,
"name": "Krasnoarmiys\u2019k",
@@ -61733,7 +55839,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 565614,
"latitude": 55.90411,
"longitude": 37.56064,
"name": "Dolgoprudnyy",
@@ -61743,7 +55848,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2475612,
"latitude": 34.72224,
"longitude": 5.37845,
"name": "Tolga",
@@ -61753,7 +55857,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 211647,
"latitude": -3.48333,
"longitude": 23.43333,
"name": "Lodja",
@@ -61763,7 +55866,6 @@
"country_code": "TR",
"elevation": 38,
"feature_code": "PPL",
- "geonameid": 300399,
"latitude": 37.7482,
"longitude": 27.40614,
"name": "S\u00f6ke",
@@ -61773,7 +55875,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 4148677,
"latitude": 26.52535,
"longitude": -80.06643,
"name": "Boynton Beach",
@@ -61783,7 +55884,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1857470,
"latitude": 36.51667,
"longitude": 136.56667,
"name": "Matsut\u014d",
@@ -61793,7 +55893,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 125897,
"latitude": 37.19701,
"longitude": 50.15351,
"name": "Langer\u016bd",
@@ -61803,7 +55902,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277527,
"latitude": 25.83242,
"longitude": 72.24,
"name": "B\u0101lotra",
@@ -61813,7 +55911,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3117667,
"latitude": 40.47353,
"longitude": -3.87182,
"name": "Majadahonda",
@@ -61823,7 +55920,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1529363,
"latitude": 41.72778,
"longitude": 82.93639,
"name": "Kuqa",
@@ -61833,7 +55929,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2497060,
"latitude": 35.64779,
"longitude": -0.62397,
"name": "Es Senia",
@@ -61843,7 +55938,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2866135,
"latitude": 53.56667,
"longitude": 13.26667,
"name": "Neubrandenburg",
@@ -61853,7 +55947,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1717911,
"latitude": 11.77528,
"longitude": 124.88611,
"name": "Catbalogan",
@@ -61863,7 +55956,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3568312,
"latitude": 22.81306,
"longitude": -82.76194,
"name": "Artemisa",
@@ -61873,7 +55965,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2653883,
"latitude": 52.69045,
"longitude": -2.03085,
"name": "Cannock",
@@ -61883,7 +55974,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3406545,
"latitude": -7.5325,
"longitude": -46.03556,
"name": "Balsas",
@@ -61893,7 +55983,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279595,
"latitude": 22.60197,
"longitude": 75.69649,
"name": "Pithampur",
@@ -61903,7 +55992,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 774558,
"latitude": 51.14312,
"longitude": 23.4716,
"name": "Che\u0142m",
@@ -61913,7 +56001,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2523665,
"latitude": 39.24194,
"longitude": 9.18389,
"name": "Quartu Sant\u2019Elena",
@@ -61923,7 +56010,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 691374,
"latitude": 48.03876,
"longitude": 38.59685,
"name": "Torez",
@@ -61933,7 +56019,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503874,
"latitude": 35.72,
"longitude": -0.545,
"name": "Bir el Djir",
@@ -61943,7 +56028,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262463,
"latitude": 10.1,
"longitude": 77.06667,
"name": "Munnar",
@@ -61953,7 +56037,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 692105,
"latitude": 48.08964,
"longitude": 39.65243,
"name": "Sverdlovs\u2019k",
@@ -61963,7 +56046,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3589452,
"latitude": 14.56889,
"longitude": -90.49528,
"name": "Santa Catarina Pinula",
@@ -61973,7 +56055,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3531865,
"latitude": 25.58333,
"longitude": -99.98333,
"name": "Cadereyta",
@@ -61983,7 +56064,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274821,
"latitude": 11.92312,
"longitude": 76.93949,
"name": "Chamrajnagar",
@@ -61993,7 +56073,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3031005,
"latitude": 47.08333,
"longitude": 2.4,
"name": "Bourges",
@@ -62003,7 +56082,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260040,
"latitude": 10.42358,
"longitude": 79.31949,
"name": "Pattukkottai",
@@ -62013,7 +56091,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 751949,
"latitude": 41.19111,
"longitude": 40.9875,
"name": "Arde\u015fen",
@@ -62023,7 +56100,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038198,
"latitude": 44.76667,
"longitude": 129.7,
"name": "Chaihe",
@@ -62033,7 +56109,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 571306,
"latitude": 44.78389,
"longitude": 44.16583,
"name": "Bud\u00ebnnovsk",
@@ -62043,7 +56118,6 @@
"country_code": "US",
"elevation": 988,
"feature_code": "PPLA2",
- "geonameid": 5768233,
"latitude": 44.08054,
"longitude": -103.23101,
"name": "Rapid City",
@@ -62053,7 +56127,6 @@
"country_code": "US",
"elevation": 2132,
"feature_code": "PPLA",
- "geonameid": 5490263,
"latitude": 35.68698,
"longitude": -105.9378,
"name": "Santa Fe",
@@ -62063,7 +56136,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800521,
"latitude": 32.45861,
"longitude": 114.04861,
"name": "Minggang",
@@ -62073,7 +56145,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793286,
"latitude": 34.43278,
"longitude": 116.59111,
"name": "Tangzhai",
@@ -62083,7 +56154,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3460598,
"latitude": -23.00583,
"longitude": -46.83889,
"name": "Itatiba",
@@ -62093,7 +56163,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1021086,
"latitude": -25.78842,
"longitude": 31.05319,
"name": "Barberton",
@@ -62103,17 +56172,15 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1720402,
- "latitude": 12.06722,
- "longitude": 124.60417,
- "name": "Calbayog",
+ "latitude": 12.0668,
+ "longitude": 124.5962,
+ "name": "Calbayog City",
"population": 67921
},
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2026895,
"latitude": 50.91583,
"longitude": 128.46111,
"name": "Belogorsk",
@@ -62123,7 +56190,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3070291,
"latitude": 50.50301,
"longitude": 13.63617,
"name": "Most",
@@ -62133,7 +56199,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3435264,
"latitude": -32.48249,
"longitude": -58.23722,
"name": "Concepci\u00f3n del Uruguay",
@@ -62143,7 +56208,6 @@
"country_code": "US",
"elevation": 204,
"feature_code": "PPLA2",
- "geonameid": 4862034,
"latitude": 41.66113,
"longitude": -91.53017,
"name": "Iowa City",
@@ -62153,9 +56217,8 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 197745,
- "latitude": -0.45355,
- "longitude": 39.64011,
+ "latitude": -0.45275,
+ "longitude": 39.64601,
"name": "Garissa",
"population": 67861
},
@@ -62163,7 +56226,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4588165,
"latitude": 32.79407,
"longitude": -79.86259,
"name": "Mount Pleasant",
@@ -62173,7 +56235,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 256614,
"latitude": 38.03333,
"longitude": 23.75,
"name": "N\u00e9a Ion\u00eda",
@@ -62183,7 +56244,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2037658,
"latitude": 42.64031,
"longitude": 125.51176,
"name": "Dongfeng",
@@ -62192,8 +56252,7 @@
{
"country_code": "RO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 668732,
+ "feature_code": "PPLA2",
"latitude": 46.91667,
"longitude": 26.91667,
"name": "Roman",
@@ -62202,18 +56261,16 @@
{
"country_code": "RO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 684802,
+ "feature_code": "PPLA2",
"latitude": 46.23333,
"longitude": 27.66667,
- "name": "B\u00eerlad",
+ "name": "B\u00e2rlad",
"population": 67818
},
{
"country_code": "RO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 679452,
+ "feature_code": "PPLA2",
"latitude": 45.88333,
"longitude": 22.9,
"name": "Deva",
@@ -62223,7 +56280,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1503772,
"latitude": 61.00417,
"longitude": 69.00194,
"name": "Khanty-Mansiysk",
@@ -62233,7 +56289,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 4428667,
"latitude": 30.36742,
"longitude": -89.09282,
"name": "Gulfport",
@@ -62243,7 +56298,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358269,
"latitude": 27.55602,
"longitude": 30.80764,
"name": "Dayr\u016b\u0163",
@@ -62253,7 +56307,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850742,
"latitude": 34.48333,
"longitude": 133.95,
"name": "Tamano",
@@ -62263,7 +56316,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3874119,
"latitude": -32.88333,
"longitude": -71.26667,
"name": "Quillota",
@@ -62273,7 +56325,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2650096,
"latitude": 53.27875,
"longitude": -2.90134,
"name": "Ellesmere Port",
@@ -62283,7 +56334,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606418,
"latitude": 14.53333,
"longitude": 100.91667,
"name": "Saraburi",
@@ -62293,7 +56343,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1505453,
"latitude": 56.11281,
"longitude": 69.49015,
"name": "Ishim",
@@ -62303,7 +56352,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2033128,
"latitude": 45.84955,
"longitude": 123.2973,
"name": "Zhenlai",
@@ -62313,7 +56361,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2745673,
"latitude": 52.46,
"longitude": 4.65,
"name": "Velsen-Zuid",
@@ -62323,7 +56370,6 @@
"country_code": "US",
"elevation": 64,
"feature_code": "PPL",
- "geonameid": 4372599,
"latitude": 38.62456,
"longitude": -76.93914,
"name": "Waldorf",
@@ -62333,7 +56379,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3050616,
"latitude": 46.36667,
"longitude": 17.8,
"name": "Kaposv\u00e1r",
@@ -62343,7 +56388,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2785341,
"latitude": 50.60715,
"longitude": 3.38932,
"name": "Tournai",
@@ -62353,7 +56397,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3996387,
"latitude": 23.65,
"longitude": -100.65,
"name": "Matehuala",
@@ -62363,7 +56406,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 707099,
"latitude": 49.01187,
"longitude": 24.37308,
"name": "Kalush",
@@ -62373,7 +56415,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 138025,
"latitude": 36.1683,
"longitude": 54.348,
"name": "D\u0101mgh\u0101n",
@@ -62383,7 +56424,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3523149,
"latitude": 22.33333,
"longitude": -97.86667,
"name": "Miramar",
@@ -62393,7 +56433,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2034691,
"latitude": 42.1859,
"longitude": 127.47895,
"name": "Songjianghe",
@@ -62403,7 +56442,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2651123,
"latitude": 53.52327,
"longitude": -1.13691,
"name": "Doncaster",
@@ -62413,7 +56451,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756429,
"latitude": 52.03333,
"longitude": 5.65833,
"name": "Ede",
@@ -62423,7 +56460,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1685577,
"latitude": 14.87999,
"longitude": 120.23433,
"name": "Subic",
@@ -62433,7 +56469,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1849539,
"latitude": 35.16667,
"longitude": 136.71667,
"name": "Tsushima",
@@ -62443,7 +56478,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1191368,
"latitude": 23.21667,
"longitude": 90.35,
"name": "P\u0101lang",
@@ -62453,7 +56487,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 4356188,
"latitude": 39.16261,
"longitude": -76.62469,
"name": "Glen Burnie",
@@ -62463,7 +56496,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2208791,
"latitude": 32.06329,
"longitude": 12.52859,
"name": "Yafran",
@@ -62473,7 +56505,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526357,
"latitude": 16.43333,
"longitude": -95.01667,
"name": "Juchit\u00e1n de Zaragoza",
@@ -62483,7 +56514,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2351979,
"latitude": 6.25183,
"longitude": 6.19337,
"name": "Agbor",
@@ -62493,7 +56523,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269507,
"latitude": 26.91763,
"longitude": 70.90387,
"name": "Jaisalmer",
@@ -62503,7 +56532,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 347236,
"latitude": 30.35394,
"longitude": 31.20071,
"name": "Toukh",
@@ -62513,7 +56541,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801850,
"latitude": 24.40583,
"longitude": 109.60861,
"name": "Luorong",
@@ -62523,7 +56550,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1724767,
"latitude": 8.21528,
"longitude": 126.31639,
"name": "Bislig",
@@ -62533,7 +56559,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 693457,
"latitude": 49.22242,
"longitude": 31.88714,
"name": "Smila",
@@ -62543,7 +56568,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 6534228,
"latitude": 41.99362,
"longitude": 12.72238,
"name": "Guidonia Montecelio",
@@ -62553,7 +56577,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2236967,
"latitude": -6.1349,
"longitude": 12.36894,
"name": "Soio",
@@ -62563,7 +56586,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360754,
"latitude": 31.15815,
"longitude": 31.937,
"name": "Al Manzilah",
@@ -62573,7 +56595,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278446,
"latitude": 26.15,
"longitude": 87.51667,
"name": "Ar\u0101ria",
@@ -62583,7 +56604,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1690315,
"latitude": 15.2462,
"longitude": 120.8496,
"name": "San Antonio",
@@ -62593,7 +56613,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1164987,
"latitude": 31.90991,
"longitude": 70.87741,
"name": "Shorko",
@@ -62603,7 +56622,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791464,
"latitude": 28.36694,
"longitude": 121.36,
"name": "Wenling",
@@ -62613,7 +56631,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3574810,
"latitude": 10.51667,
"longitude": -61.41667,
"name": "Chaguanas",
@@ -62623,7 +56640,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3389609,
"latitude": -3.66667,
"longitude": -45.38,
"name": "Santa In\u00eas",
@@ -62633,17 +56649,24 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2342883,
"latitude": 6.4373,
"longitude": 8.0862,
"name": "Ezza Ohu",
"population": 67414
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLL",
+ "latitude": 53.68456,
+ "longitude": -2.2769,
+ "name": "Rossendale",
+ "population": 67400
+ },
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797120,
"latitude": 25.725,
"longitude": 119.37944,
"name": "Fuqing",
@@ -62653,7 +56676,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270375,
"latitude": 22.33333,
"longitude": 77.1,
"name": "Harda",
@@ -62663,7 +56685,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855757,
"latitude": 33.59811,
"longitude": 131.1883,
"name": "Nakatsu",
@@ -62673,7 +56694,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1816026,
"latitude": 30.2297,
"longitude": 115.43346,
"name": "Caohe",
@@ -62683,7 +56703,6 @@
"country_code": "US",
"elevation": 24,
"feature_code": "PPL",
- "geonameid": 4711801,
"latitude": 29.61857,
"longitude": -95.53772,
"name": "Missouri City",
@@ -62693,7 +56712,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2289983,
"latitude": 6.64678,
"longitude": -4.70519,
"name": "Dimbokro",
@@ -62703,7 +56721,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1710519,
"latitude": 6.7085,
"longitude": 121.9711,
"name": "Isabela",
@@ -62713,7 +56730,6 @@
"country_code": "US",
"elevation": 1326,
"feature_code": "PPL",
- "geonameid": 5777107,
"latitude": 41.06022,
"longitude": -111.97105,
"name": "Layton",
@@ -62723,7 +56739,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257436,
"latitude": 19.56667,
"longitude": 74.21667,
"name": "Sangamner",
@@ -62733,7 +56748,6 @@
"country_code": "TM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1218239,
"latitude": 37.38338,
"longitude": 60.50544,
"name": "Tejen",
@@ -62743,7 +56757,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3539093,
"latitude": 20.1875,
"longitude": -75.85083,
"name": "San Luis",
@@ -62753,7 +56766,6 @@
"country_code": "US",
"elevation": 33,
"feature_code": "PPL",
- "geonameid": 5127835,
"latitude": 40.9126,
"longitude": -73.83708,
"name": "Mount Vernon",
@@ -62762,8 +56774,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 228853,
+ "feature_code": "PPLA2",
"latitude": 0.35333,
"longitude": 32.75528,
"name": "Mukono",
@@ -62773,7 +56784,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035453,
"latitude": 42.03722,
"longitude": 119.28889,
"name": "Pingzhuang",
@@ -62782,8 +56792,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232066,
+ "feature_code": "PPLA2",
"latitude": 0.18333,
"longitude": 30.08333,
"name": "Kasese",
@@ -62793,7 +56802,6 @@
"country_code": "US",
"elevation": 99,
"feature_code": "PPL",
- "geonameid": 4116834,
"latitude": 35.8423,
"longitude": -90.70428,
"name": "Jonesboro",
@@ -62803,7 +56811,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1165635,
"latitude": 25.92406,
"longitude": 68.61999,
"name": "Sh\u0101hd\u0101dpur",
@@ -62813,7 +56820,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445993,
"latitude": -28.46667,
"longitude": -49.00694,
"name": "Tubar\u00e3o",
@@ -62823,7 +56829,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 540103,
"latitude": 56.14733,
"longitude": 44.19787,
"name": "Kstovo",
@@ -62833,7 +56838,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2876865,
"latitude": 51.66667,
"longitude": 8.35,
"name": "Lippstadt",
@@ -62843,7 +56847,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269217,
"latitude": 23.63333,
"longitude": 75.13333,
"name": "Jaor\u0101",
@@ -62853,7 +56856,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 756867,
"latitude": 51.53131,
"longitude": 20.00855,
"name": "Tomasz\u00f3w Mazowiecki",
@@ -62863,7 +56865,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852003,
"latitude": 36.1,
"longitude": 137.96667,
"name": "Shiojiri",
@@ -62873,7 +56874,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 303700,
"latitude": 38.2278,
"longitude": 27.96955,
"name": "Hypaepa",
@@ -62883,7 +56883,6 @@
"country_code": "US",
"elevation": 211,
"feature_code": "PPLA2",
- "geonameid": 4922462,
"latitude": 40.4167,
"longitude": -86.87529,
"name": "Lafayette",
@@ -62893,7 +56892,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811305,
"latitude": 30.08333,
"longitude": 113.26667,
"name": "Fengkou",
@@ -62903,7 +56901,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2384770,
"latitude": 3.86781,
"longitude": 17.98923,
"name": "Mba\u00efki",
@@ -62913,7 +56910,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 295432,
"latitude": 31.74959,
"longitude": 34.98877,
"name": "Bet Shemesh",
@@ -62923,7 +56919,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPL",
- "geonameid": 5370164,
"latitude": 37.79743,
"longitude": -121.21605,
"name": "Manteca",
@@ -62933,7 +56928,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1635660,
"latitude": -7.73333,
"longitude": 110.36667,
"name": "Melati",
@@ -62943,7 +56937,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2959927,
"latitude": 48.83777,
"longitude": 10.0933,
"name": "Aalen",
@@ -62953,7 +56946,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 749274,
"latitude": 41.285,
"longitude": 28.00028,
"name": "\u00c7erkezk\u00f6y",
@@ -62963,7 +56955,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864549,
"latitude": 35.0,
"longitude": 137.03333,
"name": "Chiry\u016b",
@@ -62973,7 +56964,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2977921,
"latitude": 47.28333,
"longitude": -2.2,
"name": "Saint-Nazaire",
@@ -62983,7 +56973,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 761168,
"latitude": 49.78498,
"longitude": 22.76728,
"name": "Przemy\u015bl",
@@ -62993,7 +56982,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275117,
"latitude": 20.53333,
"longitude": 76.18333,
"name": "Buld\u0101na",
@@ -63003,7 +56991,6 @@
"country_code": "US",
"elevation": 259,
"feature_code": "PPLA2",
- "geonameid": 5177568,
"latitude": 41.09978,
"longitude": -80.64952,
"name": "Youngstown",
@@ -63013,7 +57000,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 590031,
"latitude": 59.37722,
"longitude": 28.19028,
"name": "Narva",
@@ -63023,7 +57009,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2036033,
"latitude": 42.24007,
"longitude": 125.71717,
"name": "Liuhe",
@@ -63033,7 +57018,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648759,
"latitude": -8.46667,
"longitude": 118.71667,
"name": "Bima",
@@ -63043,7 +57027,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3986984,
"latitude": 21.01667,
"longitude": -101.85,
"name": "San Francisco del Rinc\u00f3n",
@@ -63053,7 +57036,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263103,
"latitude": 11.29971,
"longitude": 76.93485,
"name": "Mettupalayam",
@@ -63063,7 +57045,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3179661,
"latitude": 40.71551,
"longitude": 14.48914,
"name": "Castellammare di Stabia",
@@ -63073,7 +57054,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2675397,
"latitude": 59.36004,
"longitude": 18.00086,
"name": "Solna",
@@ -63083,7 +57063,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278573,
"latitude": 23.13333,
"longitude": 70.01667,
"name": "Anj\u0101r",
@@ -63093,7 +57072,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4161625,
"latitude": 26.14036,
"longitude": -80.21338,
"name": "Lauderhill",
@@ -63103,7 +57081,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 582750,
"latitude": 54.50503,
"longitude": 37.0674,
"name": "Aleksin",
@@ -63113,7 +57090,6 @@
"country_code": "US",
"elevation": 1519,
"feature_code": "PPL",
- "geonameid": 5579368,
"latitude": 40.39776,
"longitude": -105.07498,
"name": "Loveland",
@@ -63123,7 +57099,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789427,
"latitude": 33.78333,
"longitude": 114.51667,
"name": "Xihua",
@@ -63133,7 +57108,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2539134,
"latitude": 30.39467,
"longitude": -9.20897,
"name": "Oulad Te\u00efma",
@@ -63143,7 +57117,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1079048,
"latitude": -25.16667,
"longitude": 46.08333,
"name": "Ambovombe",
@@ -63153,7 +57126,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2863840,
"latitude": 50.43333,
"longitude": 7.46667,
"name": "Neuwied",
@@ -63163,7 +57135,6 @@
"country_code": "US",
"elevation": 735,
"feature_code": "PPL",
- "geonameid": 5288661,
"latitude": 32.32341,
"longitude": -110.9951,
"name": "Casas Adobes",
@@ -63173,7 +57144,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 5373327,
"latitude": 37.42827,
"longitude": -121.90662,
"name": "Milpitas",
@@ -63183,7 +57153,6 @@
"country_code": "US",
"elevation": 978,
"feature_code": "PPLA2",
- "geonameid": 5666639,
"latitude": 46.87215,
"longitude": -113.994,
"name": "Missoula",
@@ -63193,7 +57162,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3512128,
"latitude": 18.41538,
"longitude": -70.03317,
"name": "Bajos de Haina",
@@ -63203,7 +57171,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3173775,
"latitude": 44.02204,
"longitude": 10.11409,
"name": "Massa",
@@ -63213,7 +57180,6 @@
"country_code": "US",
"elevation": 19,
"feature_code": "PPL",
- "geonameid": 5386785,
"latitude": 33.84918,
"longitude": -118.38841,
"name": "Redondo Beach",
@@ -63223,7 +57189,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2820087,
"latitude": 51.53333,
"longitude": 7.68333,
"name": "Unna",
@@ -63233,7 +57198,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1248749,
"latitude": 7.86,
"longitude": 80.65167,
"name": "Dambulla",
@@ -63243,7 +57207,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1150007,
"latitude": 7.55633,
"longitude": 99.61141,
"name": "Trang",
@@ -63253,7 +57216,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3512067,
"latitude": 18.28333,
"longitude": -70.33333,
"name": "Ban\u00ed",
@@ -63263,7 +57225,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 102318,
"latitude": 26.48522,
"longitude": 50.04046,
"name": "Sayh\u0101t",
@@ -63273,7 +57234,6 @@
"country_code": "US",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4329753,
"latitude": 29.99409,
"longitude": -90.24174,
"name": "Kenner",
@@ -63283,7 +57243,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 824003,
"latitude": 40.42167,
"longitude": 49.96444,
"name": "Bak\u0131xanov",
@@ -63293,7 +57252,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1714766,
"latitude": 14.8732,
"longitude": 120.4651,
"name": "Dinalupihan",
@@ -63303,7 +57261,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302806,
"latitude": 19.05577,
"longitude": 79.493,
"name": "Bellampalli",
@@ -63313,7 +57270,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2507646,
"latitude": 36.4575,
"longitude": 4.53494,
"name": "Akbou",
@@ -63323,7 +57279,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274641,
"latitude": 12.65,
"longitude": 77.21667,
"name": "Channapatna",
@@ -63333,7 +57288,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850892,
"latitude": 36.13333,
"longitude": 137.25,
"name": "Takayama",
@@ -63343,7 +57297,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258366,
"latitude": 28.08137,
"longitude": 74.61854,
"name": "Ratangarh",
@@ -63353,7 +57306,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034599,
"latitude": 46.38333,
"longitude": 123.4,
"name": "Tailai",
@@ -63363,7 +57315,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2473499,
"latitude": 36.67446,
"longitude": 10.15633,
"name": "La Mohammedia",
@@ -63373,7 +57324,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294421,
"latitude": 31.95139,
"longitude": 34.89528,
"name": "Lod",
@@ -63383,7 +57333,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815184,
"latitude": 35.57944,
"longitude": 118.83278,
"name": "Chengyang",
@@ -63393,7 +57342,6 @@
"country_code": "US",
"elevation": 94,
"feature_code": "PPL",
- "geonameid": 4229476,
"latitude": 32.62098,
"longitude": -83.5999,
"name": "Warner Robins",
@@ -63403,7 +57351,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035182,
"latitude": 42.08167,
"longitude": 126.60028,
"name": "Sanchazi",
@@ -63413,7 +57360,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1236854,
"latitude": 6.848,
"longitude": 79.9265,
"name": "Maharagama",
@@ -63423,7 +57369,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 914959,
"latitude": -12.83778,
"longitude": 28.09192,
"name": "Kalulushi",
@@ -63433,7 +57378,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 134518,
"latitude": 28.8438,
"longitude": 52.5707,
"name": "F\u012br\u016bz\u0101b\u0101d",
@@ -63443,7 +57387,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1653316,
"latitude": 16.56598,
"longitude": 104.751,
"name": "Savannakh\u00e9t",
@@ -63453,7 +57396,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1165744,
"latitude": 34.2139,
"longitude": 71.55523,
"name": "Shabqadar",
@@ -63463,7 +57405,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1804451,
"latitude": 27.68833,
"longitude": 111.66417,
"name": "Lianyuan",
@@ -63473,7 +57414,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 758445,
"latitude": 50.58286,
"longitude": 22.05334,
"name": "Stalowa Wola",
@@ -63483,7 +57423,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1170951,
"latitude": 34.33333,
"longitude": 73.2,
"name": "M\u0101nsehra",
@@ -63493,7 +57432,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626312,
"latitude": -7.45806,
"longitude": 109.28806,
"name": "Sokaraja",
@@ -63503,7 +57441,6 @@
"country_code": "US",
"elevation": 53,
"feature_code": "PPL",
- "geonameid": 5105634,
"latitude": 40.77955,
"longitude": -74.02375,
"name": "Union City",
@@ -63513,7 +57450,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6180961,
"latitude": 49.01636,
"longitude": -122.8026,
"name": "White Rock",
@@ -63523,7 +57459,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1797417,
"latitude": 26.57307,
"longitude": 111.84184,
"name": "Wuxi",
@@ -63533,7 +57468,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265863,
"latitude": 12.51921,
"longitude": 78.21382,
"name": "Krishnagiri",
@@ -63543,7 +57477,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2853292,
"latitude": 50.5,
"longitude": 12.13333,
"name": "Plauen",
@@ -63553,7 +57486,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 704617,
"latitude": 51.21526,
"longitude": 24.70867,
"name": "Kovel\u2019",
@@ -63563,7 +57495,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258128,
"latitude": 30.11667,
"longitude": 78.31667,
"name": "Rish\u012bkesh",
@@ -63573,7 +57504,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 539147,
"latitude": 57.4368,
"longitude": 56.9593,
"name": "Kungur",
@@ -63583,7 +57513,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270845,
"latitude": 26.69984,
"longitude": 89.02565,
"name": "Goyerk\u0101ta",
@@ -63593,7 +57522,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 547475,
"latitude": 52.76019,
"longitude": 32.23934,
"name": "Klintsy",
@@ -63603,7 +57531,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110774,
"latitude": 35.55,
"longitude": 140.36667,
"name": "T\u014dgane",
@@ -63613,7 +57540,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2019309,
"latitude": 56.6709,
"longitude": 124.6491,
"name": "Neryungri",
@@ -63623,7 +57549,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036685,
"latitude": 42.6225,
"longitude": 126.26139,
"name": "Huinan",
@@ -63633,7 +57558,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3985344,
"latitude": 20.91667,
"longitude": -100.75,
"name": "San Miguel de Allende",
@@ -63643,7 +57567,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6690877,
"latitude": 51.46593,
"longitude": -0.10652,
"name": "Brixton",
@@ -63653,7 +57576,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3104342,
"latitude": 41.5,
"longitude": -5.75,
"name": "Zamora",
@@ -63663,7 +57585,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 256075,
"latitude": 37.92066,
"longitude": 23.70916,
"name": "Palai\u00f3 F\u00e1liro",
@@ -63673,7 +57594,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853338,
"latitude": 35.94647,
"longitude": 136.18498,
"name": "Sabae",
@@ -63683,7 +57603,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2504072,
"latitude": 36.70222,
"longitude": 7.84722,
"name": "Besbes",
@@ -63693,7 +57612,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 536162,
"latitude": 54.60256,
"longitude": 52.46087,
"name": "Leninogorsk",
@@ -63703,7 +57621,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2759145,
"latitude": 51.495,
"longitude": 4.29167,
"name": "Bergen op Zoom",
@@ -63713,7 +57630,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274928,
"latitude": 22.56667,
"longitude": 85.81667,
"name": "Ch\u0101\u012bb\u0101sa",
@@ -63723,7 +57639,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2266977,
"latitude": 38.83091,
"longitude": -9.16845,
"name": "Loures",
@@ -63733,7 +57648,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3717588,
"latitude": 19.10819,
"longitude": -72.69379,
"name": "Saint-Marc",
@@ -63743,7 +57657,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2042645,
"latitude": 42.24889,
"longitude": 130.30028,
"name": "Najin",
@@ -63753,7 +57666,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 725993,
"latitude": 43.08124,
"longitude": 25.62904,
"name": "Veliko T\u016drnovo",
@@ -63763,7 +57675,6 @@
"country_code": "US",
"elevation": 19,
"feature_code": "PPLA2",
- "geonameid": 4975802,
"latitude": 43.66147,
"longitude": -70.25533,
"name": "Portland",
@@ -63773,7 +57684,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801797,
"latitude": 24.95938,
"longitude": 118.683,
"name": "Luoyang",
@@ -63783,7 +57693,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302829,
"latitude": 18.96506,
"longitude": 79.47475,
"name": "Mandamarri",
@@ -63793,7 +57702,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 731549,
"latitude": 42.87472,
"longitude": 25.33417,
"name": "Gabrovo",
@@ -63803,7 +57711,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038482,
"latitude": 44.93333,
"longitude": 130.53333,
"name": "Bamiantong",
@@ -63813,7 +57720,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 320392,
"latitude": 37.72028,
"longitude": 30.29083,
"name": "Burdur",
@@ -63823,7 +57729,6 @@
"country_code": "US",
"elevation": 207,
"feature_code": "PPL",
- "geonameid": 4593142,
"latitude": 34.92487,
"longitude": -81.02508,
"name": "Rock Hill",
@@ -63833,7 +57738,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036713,
"latitude": 41.26472,
"longitude": 125.36667,
"name": "Huanren",
@@ -63843,7 +57747,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797543,
"latitude": 28.84298,
"longitude": 112.35217,
"name": "Yuanjiang",
@@ -63853,7 +57756,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 172082,
"latitude": 36.58662,
"longitude": 37.04628,
"name": "I\u2018z\u0101z",
@@ -63863,7 +57765,6 @@
"country_code": "US",
"elevation": 74,
"feature_code": "PPLA2",
- "geonameid": 5136454,
"latitude": 42.81424,
"longitude": -73.93957,
"name": "Schenectady",
@@ -63873,7 +57774,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2005057,
"latitude": -7.79556,
"longitude": 110.32639,
"name": "Gamping Lor",
@@ -63883,7 +57783,6 @@
"country_code": "US",
"elevation": 219,
"feature_code": "PPL",
- "geonameid": 4735966,
"latitude": 31.09823,
"longitude": -97.34278,
"name": "Temple",
@@ -63893,7 +57792,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036753,
"latitude": 46.21667,
"longitude": 130.51667,
"name": "Huanan",
@@ -63903,7 +57801,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260671,
"latitude": 10.45034,
"longitude": 77.5209,
"name": "Palani",
@@ -63913,7 +57810,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 686578,
"latitude": 46.06667,
"longitude": 23.58333,
"name": "Alba Iulia",
@@ -63923,7 +57819,6 @@
"country_code": "US",
"elevation": 234,
"feature_code": "PPLA2",
- "geonameid": 5265838,
"latitude": 44.02471,
"longitude": -88.54261,
"name": "Oshkosh",
@@ -63933,7 +57828,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 558082,
"latitude": 48.05306,
"longitude": 39.93111,
"name": "Gukovo",
@@ -63943,7 +57837,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2511619,
"latitude": 39.68333,
"longitude": -0.26667,
"name": "Sagunto",
@@ -63953,7 +57846,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3546434,
"latitude": 22.10944,
"longitude": -78.6275,
"name": "Mor\u00f3n",
@@ -63963,7 +57855,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1628884,
"latitude": -2.53333,
"longitude": 112.95,
"name": "Sampit",
@@ -63973,7 +57864,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261772,
"latitude": 28.04444,
"longitude": 76.10833,
"name": "N\u0101rnaul",
@@ -63983,7 +57873,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787331,
"latitude": 31.865,
"longitude": 120.53889,
"name": "Zhangjiagang",
@@ -63993,7 +57882,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 753866,
"latitude": 50.72314,
"longitude": 23.25196,
"name": "Zamo\u015b\u0107",
@@ -64002,10 +57890,9 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1790100,
- "latitude": 32.03333,
- "longitude": 118.85,
+ "feature_code": "PPLA4",
+ "latitude": 32.03244,
+ "longitude": 118.854,
"name": "Xiaolingwei",
"population": 66031
},
@@ -64013,7 +57900,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2243271,
"latitude": -5.55,
"longitude": 12.2,
"name": "Cabinda",
@@ -64023,7 +57909,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3988392,
"latitude": 32.36044,
"longitude": -117.04645,
"name": "Rosarito",
@@ -64033,7 +57918,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272847,
"latitude": 12.1277,
"longitude": 78.15794,
"name": "Dharmapuri",
@@ -64043,7 +57927,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271934,
"latitude": 29.51667,
"longitude": 75.45,
"name": "Fateh\u0101b\u0101d",
@@ -64053,7 +57936,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1720561,
"latitude": 13.4117,
"longitude": 121.1803,
"name": "Calapan",
@@ -64063,7 +57945,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816753,
"latitude": 39.82222,
"longitude": 119.51806,
"name": "Beidaihehaibin",
@@ -64073,7 +57954,6 @@
"country_code": "US",
"elevation": 70,
"feature_code": "PPL",
- "geonameid": 4755158,
"latitude": 38.63706,
"longitude": -77.31109,
"name": "Dale City",
@@ -64083,7 +57963,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 300796,
"latitude": 38.14194,
"longitude": 41.00806,
"name": "Silvan",
@@ -64093,7 +57972,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1164970,
"latitude": 29.87967,
"longitude": 71.29313,
"name": "Shuj\u0101\u0101b\u0101d",
@@ -64103,7 +57981,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1500607,
"latitude": 58.23583,
"longitude": 92.48278,
"name": "Lesosibirsk",
@@ -64113,7 +57990,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 300371,
"latitude": 39.18554,
"longitude": 27.60945,
"name": "Soma",
@@ -64123,7 +57999,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 169304,
"latitude": 35.36137,
"longitude": 35.92562,
"name": "Jablah",
@@ -64133,7 +58008,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855410,
"latitude": 37.8,
"longitude": 139.11667,
"name": "Niitsu",
@@ -64143,7 +58017,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1638775,
"latitude": -3.8,
"longitude": 103.53333,
"name": "Lahat",
@@ -64153,7 +58026,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850707,
"latitude": 34.81667,
"longitude": 135.76667,
"name": "Tanabe",
@@ -64162,8 +58034,7 @@
{
"country_code": "NZ",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 6241325,
+ "feature_code": "PPLA2",
"latitude": -38.13874,
"longitude": 176.24516,
"name": "Rotorua",
@@ -64173,7 +58044,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3105184,
"latitude": 41.22392,
"longitude": 1.72511,
"name": "Vilanova i la Geltr\u00fa",
@@ -64183,7 +58053,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800675,
"latitude": 35.70694,
"longitude": 117.92639,
"name": "Mengyin",
@@ -64193,7 +58062,6 @@
"country_code": "US",
"elevation": 240,
"feature_code": "PPLA2",
- "geonameid": 5251436,
"latitude": 44.81135,
"longitude": -91.49849,
"name": "Eau Claire",
@@ -64203,7 +58071,6 @@
"country_code": "US",
"elevation": 2104,
"feature_code": "PPLA2",
- "geonameid": 5294810,
"latitude": 35.19807,
"longitude": -111.65127,
"name": "Flagstaff",
@@ -64213,7 +58080,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 982899,
"latitude": -26.152,
"longitude": 26.15968,
"name": "Lichtenburg",
@@ -64223,7 +58089,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2151437,
"latitude": -23.38032,
"longitude": 150.50595,
"name": "Rockhampton",
@@ -64233,7 +58098,6 @@
"country_code": "US",
"elevation": 22,
"feature_code": "PPL",
- "geonameid": 4671524,
"latitude": 29.99883,
"longitude": -95.1766,
"name": "Atascocita",
@@ -64243,7 +58107,6 @@
"country_code": "US",
"elevation": 314,
"feature_code": "PPLA2",
- "geonameid": 5044407,
"latitude": 45.5608,
"longitude": -94.16249,
"name": "Saint Cloud",
@@ -64253,7 +58116,6 @@
"country_code": "US",
"elevation": 55,
"feature_code": "PPLA2",
- "geonameid": 4354265,
"latitude": 39.26733,
"longitude": -76.79831,
"name": "Ellicott City",
@@ -64263,7 +58125,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1790601,
"latitude": 33.84703,
"longitude": 113.4778,
"name": "Xiangcheng",
@@ -64273,7 +58134,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260771,
"latitude": 18.76667,
"longitude": 84.41667,
"name": "Pal\u0101sa",
@@ -64283,7 +58143,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 1860748,
"latitude": 35.96536,
"longitude": 140.64474,
"name": "Kashima-shi",
@@ -64293,7 +58152,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2511306,
"latitude": 36.77808,
"longitude": -6.3515,
"name": "Sanl\u00facar de Barrameda",
@@ -64303,7 +58161,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276783,
"latitude": 17.86667,
"longitude": 76.95,
"name": "Basavakaly\u0101n",
@@ -64313,7 +58170,6 @@
"country_code": "US",
"elevation": 147,
"feature_code": "PPLA2",
- "geonameid": 4406831,
"latitude": 38.78394,
"longitude": -90.48123,
"name": "Saint Charles",
@@ -64323,7 +58179,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1494573,
"latitude": 56.44222,
"longitude": 60.18778,
"name": "Polevskoy",
@@ -64333,7 +58188,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454818,
"latitude": -26.22861,
"longitude": -52.67056,
"name": "Pato Branco",
@@ -64343,7 +58197,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111836,
"latitude": 36.43333,
"longitude": 140.01667,
"name": "Mooka",
@@ -64353,7 +58206,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274430,
"latitude": 12.7,
"longitude": 79.98333,
"name": "Chengalpattu",
@@ -64363,7 +58215,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037820,
"latitude": 43.30667,
"longitude": 128.51139,
"name": "Dashitou",
@@ -64373,7 +58224,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1689832,
"latitude": 15.0809,
"longitude": 120.941,
"name": "San Ildefonso",
@@ -64383,7 +58233,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1688954,
"latitude": 15.1454,
"longitude": 120.9789,
"name": "San Miguel",
@@ -64393,7 +58242,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2473540,
"latitude": 36.87818,
"longitude": 10.32466,
"name": "Al Mars\u00e1",
@@ -64403,7 +58251,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3096372,
"latitude": 50.34984,
"longitude": 18.22606,
"name": "K\u0119dzierzyn-Ko\u017ale",
@@ -64413,7 +58260,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1810920,
"latitude": 37.49583,
"longitude": 121.25806,
"name": "Fushan",
@@ -64423,7 +58269,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 5341704,
"latitude": 38.54491,
"longitude": -121.74052,
"name": "Davis",
@@ -64433,7 +58278,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817858,
"latitude": 24.41667,
"longitude": 111.51667,
"name": "Babu",
@@ -64443,7 +58287,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1299237,
"latitude": 16.28333,
"longitude": 95.68333,
"name": "Pyapon",
@@ -64453,7 +58296,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273992,
"latitude": 21.25,
"longitude": 75.3,
"name": "Chopda",
@@ -64463,7 +58305,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3454690,
"latitude": -22.76111,
"longitude": -47.15417,
"name": "Paul\u00ednia",
@@ -64473,7 +58314,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1728772,
"latitude": 9.59111,
"longitude": 123.12278,
"name": "Bais",
@@ -64483,7 +58323,6 @@
"country_code": "ES",
"elevation": 69,
"feature_code": "PPLA3",
- "geonameid": 2517816,
"latitude": 36.42764,
"longitude": -5.14589,
"name": "Estepona",
@@ -64493,7 +58332,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1260607,
"latitude": 15.48333,
"longitude": 73.83333,
"name": "Panaji",
@@ -64503,7 +58341,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3687952,
"latitude": 6.09106,
"longitude": -75.63569,
"name": "Caldas",
@@ -64513,7 +58350,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6113365,
"latitude": 53.9166,
"longitude": -122.75301,
"name": "Prince George",
@@ -64523,7 +58359,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033423,
"latitude": 41.3975,
"longitude": 119.64083,
"name": "Yebaishou",
@@ -64533,7 +58368,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1807645,
"latitude": 32.95893,
"longitude": 117.16566,
"name": "Huaiyuan Chengguanzhen",
@@ -64543,7 +58377,6 @@
"country_code": "US",
"elevation": 226,
"feature_code": "PPL",
- "geonameid": 4792867,
"latitude": 37.4032,
"longitude": -79.17808,
"name": "West Lynchburg",
@@ -64553,7 +58386,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254744,
"latitude": 8.96003,
"longitude": 77.31525,
"name": "Thenkasi",
@@ -64563,7 +58395,6 @@
"country_code": "US",
"elevation": 98,
"feature_code": "PPLA2",
- "geonameid": 4059102,
"latitude": 31.22323,
"longitude": -85.39049,
"name": "Dothan",
@@ -64573,7 +58404,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3876685,
"latitude": -33.61667,
"longitude": -70.91667,
"name": "Pe\u00f1aflor",
@@ -64583,7 +58413,6 @@
"country_code": "BH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 290269,
"latitude": 26.06861,
"longitude": 50.50389,
"name": "D\u0101r Kulayb",
@@ -64593,7 +58422,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 65785,
"latitude": 2.1381,
"longitude": 45.1212,
"name": "Afgooye",
@@ -64603,7 +58431,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2510281,
"latitude": 36.62035,
"longitude": -4.49976,
"name": "Torremolinos",
@@ -64613,7 +58440,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1606386,
"latitude": 12.66644,
"longitude": 100.90073,
"name": "Sattahip",
@@ -64623,7 +58449,6 @@
"country_code": "US",
"elevation": 79,
"feature_code": "PPL",
- "geonameid": 4937232,
"latitude": 42.29732,
"longitude": -71.43701,
"name": "Framingham Center",
@@ -64633,7 +58458,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813892,
"latitude": 33.63333,
"longitude": 115.18333,
"name": "Dancheng",
@@ -64643,7 +58467,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852502,
"latitude": 35.83333,
"longitude": 139.58333,
"name": "Shiki",
@@ -64653,7 +58476,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3459035,
"latitude": -29.46694,
"longitude": -51.96139,
"name": "Lajeado",
@@ -64663,7 +58485,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3024297,
"latitude": 48.08333,
"longitude": 7.36667,
"name": "Colmar",
@@ -64673,7 +58494,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 622794,
"latitude": 52.3617,
"longitude": 30.3916,
"name": "Rechytsa",
@@ -64683,7 +58503,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2110793,
"latitude": 38.35361,
"longitude": 140.36972,
"name": "Tend\u014d",
@@ -64693,7 +58512,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2655262,
"latitude": 50.78206,
"longitude": -0.67978,
"name": "Bognor Regis",
@@ -64703,7 +58521,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2758007,
"latitude": 51.91667,
"longitude": 4.56667,
"name": "Capelle-West",
@@ -64713,7 +58530,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2635650,
"latitude": 50.46384,
"longitude": -3.51434,
"name": "Torquay",
@@ -64723,7 +58539,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2234865,
"latitude": 5.14091,
"longitude": 10.51975,
"name": "Bangangt\u00e9",
@@ -64733,7 +58548,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816406,
"latitude": 34.84861,
"longitude": 118.04472,
"name": "Bianzhuang",
@@ -64743,7 +58557,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252822,
"latitude": 16.76667,
"longitude": 77.13333,
"name": "Y\u0101dg\u012br",
@@ -64752,8 +58565,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229380,
+ "feature_code": "PPLA2",
"latitude": -0.33379,
"longitude": 31.73409,
"name": "Masaka",
@@ -64763,7 +58575,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 527717,
"latitude": 52.96667,
"longitude": 55.91667,
"name": "Meleuz",
@@ -64773,7 +58584,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4178003,
"latitude": 26.10037,
"longitude": -80.39977,
"name": "Weston",
@@ -64783,7 +58593,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 539283,
"latitude": 52.76667,
"longitude": 55.78333,
"name": "Kumertau",
@@ -64793,7 +58602,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271670,
"latitude": 25.4,
"longitude": 88.51667,
"name": "Gang\u0101r\u0101mpur",
@@ -64803,7 +58611,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258740,
"latitude": 9.37158,
"longitude": 78.83077,
"name": "Ramanathapuram",
@@ -64813,7 +58620,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2905560,
"latitude": 51.6,
"longitude": 7.13333,
"name": "Herten",
@@ -64823,7 +58629,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269564,
"latitude": 30.78333,
"longitude": 75.48333,
"name": "Jagraon",
@@ -64833,7 +58638,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735077,
"latitude": 5.38333,
"longitude": 100.38333,
"name": "Perai",
@@ -64843,7 +58647,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2034226,
"latitude": 42.05972,
"longitude": 126.91583,
"name": "Hepingjie",
@@ -64853,7 +58656,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2637142,
"latitude": 52.80521,
"longitude": -2.11636,
"name": "Stafford",
@@ -64863,7 +58665,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1176997,
"latitude": 30.45016,
"longitude": 73.69888,
"name": "Haveli",
@@ -64873,7 +58674,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465108,
"latitude": -28.63861,
"longitude": -53.60639,
"name": "Cruz Alta",
@@ -64883,7 +58683,6 @@
"country_code": "US",
"elevation": 295,
"feature_code": "PPL",
- "geonameid": 5296266,
"latitude": 33.43532,
"longitude": -112.35821,
"name": "Goodyear",
@@ -64893,7 +58692,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1683877,
"latitude": 10.73722,
"longitude": 122.96639,
"name": "Talisay",
@@ -64903,7 +58701,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1623080,
"latitude": -8.0657,
"longitude": 111.9025,
"name": "Tulungagung",
@@ -64913,7 +58710,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2758012,
"latitude": 51.92917,
"longitude": 4.57778,
"name": "Capelle aan den IJssel",
@@ -64923,7 +58719,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863495,
"latitude": 26.35444,
"longitude": 127.86861,
"name": "Gushikawa",
@@ -64933,7 +58728,6 @@
"country_code": "US",
"elevation": 87,
"feature_code": "PPLA2",
- "geonameid": 4355585,
"latitude": 39.41427,
"longitude": -77.41054,
"name": "Frederick",
@@ -64943,7 +58737,6 @@
"country_code": "US",
"elevation": 125,
"feature_code": "PPLA2",
- "geonameid": 4632595,
"latitude": 35.61452,
"longitude": -88.81395,
"name": "Jackson",
@@ -64953,7 +58746,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 722437,
"latitude": 46.68333,
"longitude": 21.1,
"name": "B\u00e9k\u00e9scsaba",
@@ -64963,7 +58755,6 @@
"country_code": "US",
"elevation": 54,
"feature_code": "PPL",
- "geonameid": 5333180,
"latitude": 34.21639,
"longitude": -119.0376,
"name": "Camarillo",
@@ -64973,7 +58764,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1172318,
"latitude": 32.70235,
"longitude": 73.96,
"name": "L\u0101la M\u016bsa",
@@ -64983,7 +58773,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 492094,
"latitude": 45.2558,
"longitude": 38.1256,
"name": "Slavyansk-na-Kubani",
@@ -64993,7 +58782,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3983058,
"latitude": 20.93333,
"longitude": -101.43333,
"name": "Silao",
@@ -65003,7 +58791,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1806097,
"latitude": 26.66167,
"longitude": 119.52278,
"name": "Ningde",
@@ -65013,7 +58800,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907123,
"latitude": 35.97556,
"longitude": 139.65083,
"name": "Hasuda",
@@ -65023,7 +58809,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1811260,
"latitude": 39.83333,
"longitude": 118.11667,
"name": "Fengrun",
@@ -65033,7 +58818,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2537545,
"latitude": 33.83186,
"longitude": -4.828,
"name": "Sefrou",
@@ -65043,7 +58827,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185181,
"latitude": 25.91244,
"longitude": 89.44729,
"name": "Lalmanirhat",
@@ -65053,7 +58836,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3407407,
"latitude": -3.90139,
"longitude": -38.39111,
"name": "Aquiraz",
@@ -65063,7 +58845,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266162,
"latitude": 19.88333,
"longitude": 74.48333,
"name": "Kopargaon",
@@ -65073,7 +58854,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3180423,
"latitude": 44.06294,
"longitude": 10.06069,
"name": "Carrara",
@@ -65083,7 +58863,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3628966,
"latitude": 10.3258,
"longitude": -72.31343,
"name": "La Villa del Rosario",
@@ -65093,7 +58872,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804645,
"latitude": 27.66583,
"longitude": 120.56583,
"name": "Kunyang",
@@ -65103,7 +58881,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 345149,
"latitude": 14.277,
"longitude": 39.462,
"name": "\u0100d\u012bgrat",
@@ -65113,7 +58890,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 106909,
"latitude": 27.35134,
"longitude": 35.69014,
"name": "Zbe",
@@ -65123,7 +58899,6 @@
"country_code": "TJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1220747,
"latitude": 37.83399,
"longitude": 68.78186,
"name": "Q\u016drghonteppa",
@@ -65133,7 +58908,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 704901,
"latitude": 50.95937,
"longitude": 28.63855,
"name": "Korosten\u2019",
@@ -65143,7 +58917,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437918,
"latitude": -25.38333,
"longitude": -57.33333,
"name": "Itaugu\u00e1",
@@ -65153,7 +58926,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3980180,
"latitude": 26.93333,
"longitude": -101.45,
"name": "Villa Frontera",
@@ -65163,7 +58935,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1514192,
"latitude": 41.00936,
"longitude": 71.2287,
"name": "Chust Shahri",
@@ -65173,7 +58944,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791779,
"latitude": 18.80028,
"longitude": 110.39667,
"name": "Wanning",
@@ -65183,7 +58953,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3665913,
"latitude": 7.83389,
"longitude": -72.47417,
"name": "Villa del Rosario",
@@ -65193,7 +58962,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 725712,
"latitude": 43.21,
"longitude": 23.5625,
"name": "Vratsa",
@@ -65203,7 +58971,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3397893,
"latitude": -3.14306,
"longitude": -58.44417,
"name": "Itacoatiara",
@@ -65213,7 +58980,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1136575,
"latitude": 36.69736,
"longitude": 67.69826,
"name": "Khulm",
@@ -65223,7 +58989,6 @@
"country_code": "US",
"elevation": 18,
"feature_code": "PPLA2",
- "geonameid": 5411015,
"latitude": 39.14045,
"longitude": -121.61691,
"name": "Yuba City",
@@ -65233,7 +58998,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2526488,
"latitude": 32.24634,
"longitude": -8.52941,
"name": "Youssoufia",
@@ -65243,7 +59007,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275321,
"latitude": 26.47822,
"longitude": 90.55676,
"name": "Bongaigaon",
@@ -65253,7 +59016,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2906121,
"latitude": 52.13333,
"longitude": 8.68333,
"name": "Herford",
@@ -65263,7 +59025,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1803560,
"latitude": 19.90778,
"longitude": 109.68583,
"name": "Lincheng",
@@ -65273,7 +59034,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 4696233,
"latitude": 26.19063,
"longitude": -97.6961,
"name": "Harlingen",
@@ -65283,7 +59043,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264071,
"latitude": 20.88333,
"longitude": 76.2,
"name": "Malk\u0101pur",
@@ -65293,7 +59052,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1567069,
"latitude": 10.53333,
"longitude": 106.41667,
"name": "T\u00e2n An",
@@ -65303,17 +59061,24 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 294098,
- "latitude": 32.70361,
- "longitude": 35.29556,
+ "latitude": 32.69925,
+ "longitude": 35.30483,
"name": "Nazareth",
"population": 64800
},
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 59.88333,
+ "longitude": 29.9,
+ "name": "Peterhof",
+ "population": 64800
+ },
{
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2645418,
"latitude": 51.45278,
"longitude": -2.50833,
"name": "Kingswood",
@@ -65323,7 +59088,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461724,
"latitude": -11.72917,
"longitude": -49.06861,
"name": "Gurupi",
@@ -65333,7 +59097,6 @@
"country_code": "US",
"elevation": 185,
"feature_code": "PPL",
- "geonameid": 4911600,
"latitude": 42.03336,
"longitude": -87.73339,
"name": "Skokie",
@@ -65343,7 +59106,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2917540,
"latitude": 51.09102,
"longitude": 6.5827,
"name": "Grevenbroich",
@@ -65353,7 +59115,6 @@
"country_code": "US",
"elevation": 27,
"feature_code": "PPL",
- "geonameid": 5385941,
"latitude": 38.58907,
"longitude": -121.30273,
"name": "Rancho Cordova",
@@ -65363,7 +59124,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3397967,
"latitude": -4.27611,
"longitude": -55.98361,
"name": "Itaituba",
@@ -65373,7 +59133,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 147429,
"latitude": 39.20889,
"longitude": 45.41222,
"name": "Nakhchivan",
@@ -65383,7 +59142,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267853,
"latitude": 20.48333,
"longitude": 77.48333,
"name": "K\u0101ranja",
@@ -65393,7 +59151,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266849,
"latitude": 29.28333,
"longitude": 77.71667,
"name": "Khatauli",
@@ -65403,7 +59160,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2812482,
"latitude": 50.98333,
"longitude": 11.31667,
"name": "Weimar",
@@ -65413,7 +59169,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278297,
"latitude": 24.56667,
"longitude": 77.71667,
"name": "Ashoknagar",
@@ -65423,7 +59178,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1925943,
"latitude": 35.80167,
"longitude": 128.50083,
"name": "Hwaw\u014fn",
@@ -65433,7 +59187,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035196,
"latitude": 40.54139,
"longitude": 110.51083,
"name": "Salaqi",
@@ -65443,17 +59196,24 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 325103,
"latitude": 38.75178,
"longitude": 42.48135,
"name": "Ahlat",
"population": 64695
},
+ {
+ "country_code": "US",
+ "elevation": 296,
+ "feature_code": "PPL",
+ "latitude": 42.56891,
+ "longitude": -83.38356,
+ "name": "West Bloomfield Township",
+ "population": 64690
+ },
{
"country_code": "US",
"elevation": 184,
"feature_code": "PPL",
- "geonameid": 4691585,
"latitude": 33.01457,
"longitude": -97.09696,
"name": "Flower Mound",
@@ -65463,7 +59223,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255955,
"latitude": 23.91667,
"longitude": 87.53333,
"name": "Siuri",
@@ -65473,7 +59232,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185236,
"latitude": 23.05,
"longitude": 90.76667,
"name": "R\u0101ipur",
@@ -65483,7 +59241,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2644737,
"latitude": 52.3,
"longitude": -1.53333,
"name": "Royal Leamington Spa",
@@ -65493,7 +59250,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262319,
"latitude": 30.37472,
"longitude": 76.14861,
"name": "N\u0101bha",
@@ -65503,7 +59259,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3440781,
"latitude": -30.90534,
"longitude": -55.55076,
"name": "Rivera",
@@ -65513,7 +59268,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1684016,
"latitude": 15.5883,
"longitude": 120.9192,
"name": "Talavera",
@@ -65523,7 +59277,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3645981,
"latitude": 10.49598,
"longitude": -66.85347,
"name": "Chacao",
@@ -65533,7 +59286,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449696,
"latitude": -28.29917,
"longitude": -54.26306,
"name": "Santo \u00c2ngelo",
@@ -65543,7 +59295,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2515812,
"latitude": 36.16809,
"longitude": -5.34777,
"name": "La L\u00ednea de la Concepci\u00f3n",
@@ -65553,7 +59304,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1787901,
"latitude": 28.45433,
"longitude": 104.71498,
"name": "Xunchang",
@@ -65563,7 +59313,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3686675,
"latitude": 4.85876,
"longitude": -74.05866,
"name": "Ch\u00eda",
@@ -65573,7 +59322,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1239047,
"latitude": 6.9269,
"longitude": 79.9095,
"name": "Kotikawatta",
@@ -65583,7 +59331,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2469140,
"latitude": 35.72917,
"longitude": 10.58082,
"name": "Mas\u0101kin",
@@ -65593,7 +59340,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256377,
"latitude": 18.1,
"longitude": 78.85,
"name": "Siddipet",
@@ -65603,7 +59349,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3840092,
"latitude": -42.7692,
"longitude": -65.03851,
"name": "Puerto Madryn",
@@ -65613,7 +59358,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1171502,
"latitude": 29.80028,
"longitude": 72.17583,
"name": "Mailsi",
@@ -65623,7 +59367,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2128787,
"latitude": 40.26861,
"longitude": 140.56833,
"name": "\u014cdate",
@@ -65633,7 +59376,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1634718,
"latitude": -8.43333,
"longitude": 114.33333,
"name": "Muncar",
@@ -65643,7 +59385,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 350203,
"latitude": 31.40444,
"longitude": 30.41639,
"name": "Rosetta",
@@ -65653,7 +59394,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815656,
"latitude": 39.70417,
"longitude": 119.15056,
"name": "Changli",
@@ -65663,7 +59403,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2480368,
"latitude": 34.387,
"longitude": 4.98785,
"name": "Sidi Khaled",
@@ -65673,7 +59412,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276023,
"latitude": 19.9,
"longitude": 83.16667,
"name": "Bhaw\u0101nipatna",
@@ -65683,7 +59421,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266666,
"latitude": 18.78333,
"longitude": 73.33333,
"name": "Khopoli",
@@ -65693,7 +59430,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267635,
"latitude": 14.81361,
"longitude": 74.12972,
"name": "Karwar",
@@ -65703,7 +59439,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 324490,
"latitude": 38.3575,
"longitude": 31.41639,
"name": "Ak\u015fehir",
@@ -65713,7 +59448,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3393008,
"latitude": -2.62833,
"longitude": -56.73583,
"name": "Parintins",
@@ -65723,7 +59457,6 @@
"country_code": "BN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1820906,
"latitude": 4.94029,
"longitude": 114.94806,
"name": "Bandar Seri Begawan",
@@ -65733,7 +59466,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1804874,
"latitude": 23.3687,
"longitude": 104.28,
"name": "Kaihua",
@@ -65743,7 +59475,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 5380748,
"latitude": 37.44188,
"longitude": -122.14302,
"name": "Palo Alto",
@@ -65753,7 +59484,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1716995,
"latitude": 15.32546,
"longitude": 120.65723,
"name": "Concepcion",
@@ -65763,7 +59493,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6941099,
"latitude": 28.05,
"longitude": 81.61667,
"name": "Nepalgunj",
@@ -65773,7 +59502,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1785698,
"latitude": 31.06251,
"longitude": 113.76545,
"name": "Yunmeng Chengguanzhen",
@@ -65783,7 +59511,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 483029,
"latitude": 45.85472,
"longitude": 40.12528,
"name": "Tikhoretsk",
@@ -65793,7 +59520,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2634686,
"latitude": 50.88067,
"longitude": -1.0304,
"name": "Waterlooville",
@@ -65803,7 +59529,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3175537,
"latitude": 44.35227,
"longitude": 11.71582,
"name": "Imola",
@@ -65813,7 +59538,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861699,
"latitude": 36.71667,
"longitude": 139.68333,
"name": "Imaichi",
@@ -65823,7 +59547,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 501215,
"latitude": 51.1209,
"longitude": 38.5116,
"name": "Rossosh\u2019",
@@ -65833,7 +59556,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1165388,
"latitude": 32.26232,
"longitude": 75.16682,
"name": "Shakargarr",
@@ -65843,7 +59565,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1178456,
"latitude": 28.00604,
"longitude": 69.31608,
"name": "Ghotki",
@@ -65853,7 +59574,6 @@
"country_code": "IE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2961284,
"latitude": 53.2859,
"longitude": -6.37344,
"name": "Tallaght",
@@ -65863,7 +59583,6 @@
"country_code": "US",
"elevation": 48,
"feature_code": "PPL",
- "geonameid": 5097441,
"latitude": 40.76732,
"longitude": -74.20487,
"name": "East Orange",
@@ -65873,7 +59592,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1123004,
"latitude": 36.73605,
"longitude": 69.53451,
"name": "Taloqan",
@@ -65883,7 +59601,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1873172,
"latitude": 37.93472,
"longitude": 125.36194,
"name": "Ongjin",
@@ -65893,7 +59610,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 480716,
"latitude": 44.1053,
"longitude": 39.0802,
"name": "Tuapse",
@@ -65903,7 +59619,6 @@
"country_code": "US",
"elevation": 116,
"feature_code": "PPL",
- "geonameid": 5410902,
"latitude": 33.88863,
"longitude": -117.81311,
"name": "Yorba Linda",
@@ -65913,7 +59628,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2891524,
"latitude": 50.86667,
"longitude": 6.7,
"name": "Kerpen",
@@ -65923,7 +59637,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2467246,
"latitude": 35.78333,
"longitude": 10.8,
"name": "\u015eaq\u0101nis",
@@ -65933,7 +59646,6 @@
"country_code": "US",
"elevation": 292,
"feature_code": "PPL",
- "geonameid": 5024825,
"latitude": 44.80413,
"longitude": -93.16689,
"name": "Eagan",
@@ -65943,7 +59655,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 997151,
"latitude": -26.50476,
"longitude": 28.35921,
"name": "Heidelberg",
@@ -65953,7 +59664,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267360,
"latitude": 9.18333,
"longitude": 76.5,
"name": "K\u0101yankulam",
@@ -65963,7 +59673,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035325,
"latitude": 46.68333,
"longitude": 126.08333,
"name": "Qinggang",
@@ -65973,7 +59682,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2320920,
"latitude": 5.93576,
"longitude": 7.0793,
"name": "Uga",
@@ -65983,7 +59691,6 @@
"country_code": "US",
"elevation": 52,
"feature_code": "PPL",
- "geonameid": 5406990,
"latitude": 37.90631,
"longitude": -122.06496,
"name": "Walnut Creek",
@@ -65993,7 +59700,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3183178,
"latitude": 40.82923,
"longitude": 16.55368,
"name": "Altamura",
@@ -66003,7 +59709,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3436728,
"latitude": -25.3676,
"longitude": -57.59274,
"name": "Villa Elisa",
@@ -66013,7 +59718,6 @@
"country_code": "US",
"elevation": 186,
"feature_code": "PPL",
- "geonameid": 5161262,
"latitude": 41.45282,
"longitude": -82.18237,
"name": "Lorain",
@@ -66023,7 +59727,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 583350,
"latitude": 56.39516,
"longitude": 38.71216,
"name": "Aleksandrov",
@@ -66033,7 +59736,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855580,
"latitude": 34.18333,
"longitude": 134.61667,
"name": "Naruto",
@@ -66043,7 +59745,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1164896,
"latitude": 29.5448,
"longitude": 67.8764,
"name": "Sibi",
@@ -66053,7 +59754,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2513759,
"latitude": 38.05456,
"longitude": -1.20763,
"name": "Molina de Segura",
@@ -66063,7 +59763,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302830,
"latitude": 14.47516,
"longitude": 78.8354,
"name": "Chinnachowk",
@@ -66073,7 +59772,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275462,
"latitude": 23.08333,
"longitude": 87.31667,
"name": "Bishnupur",
@@ -66083,7 +59781,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 121925,
"latitude": 30.11405,
"longitude": 51.52174,
"name": "N\u016br\u0101b\u0101d",
@@ -66093,7 +59790,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2512862,
"latitude": 39.5,
"longitude": -0.43333,
"name": "Paterna",
@@ -66103,7 +59799,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 261779,
"latitude": 39.6675,
"longitude": 20.85083,
"name": "Io\u00e1nnina",
@@ -66113,7 +59808,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 907111,
"latitude": -15.85601,
"longitude": 27.748,
"name": "Mazabuka",
@@ -66123,7 +59817,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 706466,
"latitude": 48.04243,
"longitude": 38.14728,
"name": "Khartsyzsk",
@@ -66133,7 +59826,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1693077,
"latitude": 6.22167,
"longitude": 125.06398,
"name": "Polomolok",
@@ -66143,7 +59835,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263504,
"latitude": 15.73333,
"longitude": 79.28333,
"name": "M\u0101rk\u0101pur",
@@ -66153,7 +59844,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276757,
"latitude": 19.31667,
"longitude": 77.16667,
"name": "Basmat",
@@ -66163,7 +59853,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3464891,
"latitude": -18.75639,
"longitude": -44.43083,
"name": "Curvelo",
@@ -66173,7 +59862,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277814,
"latitude": 28.78333,
"longitude": 79.5,
"name": "Baheri",
@@ -66183,7 +59871,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265579,
"latitude": 10.65,
"longitude": 76.08333,
"name": "Kunnamkulam",
@@ -66193,7 +59880,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1623096,
"latitude": -7.4737,
"longitude": 112.6505,
"name": "Tulangan Utara",
@@ -66203,7 +59889,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460974,
"latitude": -10.685,
"longitude": -37.42528,
"name": "Itabaiana",
@@ -66213,7 +59898,6 @@
"country_code": "RW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 202326,
"latitude": -2.4846,
"longitude": 28.9075,
"name": "Cyangugu",
@@ -66223,7 +59907,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3563843,
"latitude": 22.71917,
"longitude": -80.90583,
"name": "Col\u00f3n",
@@ -66233,7 +59916,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259056,
"latitude": 24.45,
"longitude": 77.2,
"name": "R\u0101ghogarh",
@@ -66243,7 +59925,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3628550,
"latitude": 10.38854,
"longitude": -66.95179,
"name": "San Antonio de Los Altos",
@@ -66253,7 +59934,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1736278,
"latitude": 6.4414,
"longitude": 100.19862,
"name": "Kangar",
@@ -66263,7 +59943,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2971053,
"latitude": 44.93333,
"longitude": 4.9,
"name": "Valence",
@@ -66273,7 +59952,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 359576,
"latitude": 30.12303,
"longitude": 31.13571,
"name": "Aws\u012bm",
@@ -66283,7 +59961,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2641520,
"latitude": 54.65983,
"longitude": -5.90858,
"name": "Newtownabbey",
@@ -66293,7 +59970,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 293768,
"latitude": 31.92528,
"longitude": 34.86694,
"name": "Ramla",
@@ -66303,7 +59979,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2984701,
"latitude": 48.0,
"longitude": -4.1,
"name": "Quimper",
@@ -66313,7 +59988,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1563241,
"latitude": 21.03333,
"longitude": 106.78333,
"name": "U\u00f4ng B\u00ed",
@@ -66323,7 +59997,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3149318,
"latitude": 58.14671,
"longitude": 7.9956,
"name": "Kristiansand",
@@ -66333,7 +60006,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 361329,
"latitude": 28.82431,
"longitude": 30.89948,
"name": "Al Fashn",
@@ -66343,7 +60015,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1176241,
"latitude": 29.64414,
"longitude": 70.59544,
"name": "J\u0101mpur",
@@ -66353,7 +60024,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1586151,
"latitude": 10.45,
"longitude": 105.63333,
"name": "Cao L\u00e3nh",
@@ -66363,7 +60033,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732742,
"latitude": 1.6561,
"longitude": 103.6032,
"name": "Kulai",
@@ -66373,7 +60042,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2923822,
"latitude": 50.55162,
"longitude": 9.67518,
"name": "Fulda",
@@ -66383,7 +60051,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1787646,
"latitude": 39.36389,
"longitude": 117.06028,
"name": "Yangcun",
@@ -66393,7 +60060,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1784553,
"latitude": 31.00611,
"longitude": 119.90361,
"name": "Zhicheng",
@@ -66403,7 +60069,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468570,
"latitude": -26.77528,
"longitude": -51.015,
"name": "Ca\u00e7ador",
@@ -66413,7 +60078,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270965,
"latitude": 26.46667,
"longitude": 84.43333,
"name": "Gop\u0101lganj",
@@ -66423,7 +60087,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 766027,
"latitude": 53.17806,
"longitude": 22.05935,
"name": "\u0141om\u017ca",
@@ -66433,7 +60096,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1153081,
"latitude": 14.00412,
"longitude": 99.54832,
"name": "Kanchanaburi",
@@ -66443,7 +60105,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1048364,
"latitude": -24.53333,
"longitude": 32.98333,
"name": "Chokw\u00e9",
@@ -66453,7 +60114,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3455671,
"latitude": -20.39484,
"longitude": -43.50517,
"name": "Ouro Preto",
@@ -66463,7 +60123,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3073789,
"latitude": 49.854,
"longitude": 18.54169,
"name": "Karvin\u00e1",
@@ -66473,7 +60132,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3468100,
"latitude": -17.74167,
"longitude": -48.625,
"name": "Caldas Novas",
@@ -66483,7 +60141,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2797670,
"latitude": 50.965,
"longitude": 5.50082,
"name": "Genk",
@@ -66493,7 +60150,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852347,
"latitude": 36.3,
"longitude": 139.98333,
"name": "Shimodate",
@@ -66503,7 +60159,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2043484,
"latitude": 40.96417,
"longitude": 129.32778,
"name": "Kilju",
@@ -66513,7 +60168,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254046,
"latitude": 25.51983,
"longitude": 90.22007,
"name": "Tura",
@@ -66523,7 +60177,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2511150,
"latitude": 27.91174,
"longitude": -15.54071,
"name": "Santa Luc\u00eda",
@@ -66533,7 +60186,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 5397765,
"latitude": 37.65466,
"longitude": -122.40775,
"name": "South San Francisco",
@@ -66543,7 +60195,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1817701,
"latitude": 22.15,
"longitude": 107.23333,
"name": "Baihe",
@@ -66553,7 +60204,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461013,
"latitude": -11.30417,
"longitude": -41.85583,
"name": "Irec\u00ea",
@@ -66563,7 +60213,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608232,
"latitude": 17.87847,
"longitude": 102.742,
"name": "Nong Khai",
@@ -66573,7 +60222,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4353765,
"latitude": 39.25066,
"longitude": -76.52052,
"name": "Dundalk",
@@ -66583,7 +60231,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849904,
"latitude": 33.36667,
"longitude": 130.51667,
"name": "Tosu",
@@ -66593,7 +60240,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2935825,
"latitude": 51.1,
"longitude": 6.83333,
"name": "Dormagen",
@@ -66603,7 +60249,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 464625,
"latitude": 53.20356,
"longitude": 45.19227,
"name": "Zarechnyy",
@@ -66612,8 +60257,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3188434,
+ "feature_code": "PPLA2",
"latitude": 43.85861,
"longitude": 19.84878,
"name": "U\u017eice",
@@ -66623,7 +60267,6 @@
"country_code": "US",
"elevation": 255,
"feature_code": "PPLA2",
- "geonameid": 5257754,
"latitude": 42.68279,
"longitude": -89.01872,
"name": "Janesville",
@@ -66633,7 +60276,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1818004,
"latitude": 23.01279,
"longitude": 104.45081,
"name": "Mabai",
@@ -66643,7 +60285,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3093524,
"latitude": 51.84034,
"longitude": 16.57494,
"name": "Leszno",
@@ -66653,7 +60294,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2950438,
"latitude": 50.95572,
"longitude": 6.63986,
"name": "Bergheim",
@@ -66663,7 +60303,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466696,
"latitude": -18.16583,
"longitude": -47.94639,
"name": "Catal\u00e3o",
@@ -66673,7 +60312,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013706,
"latitude": 25.53333,
"longitude": -103.53333,
"name": "Ciudad Lerdo",
@@ -66683,7 +60321,6 @@
"country_code": "US",
"elevation": 71,
"feature_code": "PPL",
- "geonameid": 5391791,
"latitude": 33.42697,
"longitude": -117.61199,
"name": "San Clemente",
@@ -66693,7 +60330,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606588,
"latitude": 13.54753,
"longitude": 100.27362,
"name": "Samut Sakhon",
@@ -66703,7 +60339,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3105935,
"latitude": 41.31405,
"longitude": 2.01427,
"name": "Viladecans",
@@ -66713,7 +60348,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1736302,
"latitude": 6.26812,
"longitude": 100.42167,
"name": "Jitra",
@@ -66723,7 +60357,6 @@
"country_code": "US",
"elevation": 64,
"feature_code": "PPL",
- "geonameid": 5101879,
"latitude": 40.80427,
"longitude": -74.01208,
"name": "North Bergen",
@@ -66733,7 +60366,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446138,
"latitude": -21.69694,
"longitude": -45.25333,
"name": "Tr\u00eas Cora\u00e7\u00f5es",
@@ -66743,7 +60375,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 195272,
"latitude": 0.28422,
"longitude": 34.75228,
"name": "Kakamega",
@@ -66753,7 +60384,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2507943,
"latitude": 32.75,
"longitude": -0.58333,
"name": "A\u00efn Sefra",
@@ -66763,7 +60393,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3123329,
"latitude": 41.32784,
"longitude": 2.09472,
"name": "El Prat de Llobregat",
@@ -66773,7 +60402,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258797,
"latitude": 25.07145,
"longitude": 73.8798,
"name": "R\u0101jsamand",
@@ -66783,7 +60411,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799908,
"latitude": 31.35333,
"longitude": 106.06309,
"name": "Nanlong",
@@ -66793,7 +60420,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3390288,
"latitude": -9.47833,
"longitude": -35.85333,
"name": "Rio Largo",
@@ -66803,7 +60429,6 @@
"country_code": "US",
"elevation": 44,
"feature_code": "PPL",
- "geonameid": 7261268,
"latitude": 33.96772,
"longitude": -118.24438,
"name": "Florence-Graham",
@@ -66813,7 +60438,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284840,
"latitude": 47.43674,
"longitude": 19.10093,
"name": "Budapest XX. ker\u00fclet",
@@ -66823,7 +60447,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283621,
"latitude": 27.5,
"longitude": 83.45,
"name": "Bhair\u0101haw\u0101",
@@ -66833,7 +60456,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864099,
"latitude": 36.25,
"longitude": 139.08333,
"name": "Fujioka",
@@ -66843,7 +60465,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2922586,
"latitude": 52.41667,
"longitude": 9.6,
"name": "Garbsen",
@@ -66853,7 +60474,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735459,
"latitude": 4.0259,
"longitude": 101.0213,
"name": "Teluk Intan",
@@ -66863,7 +60483,6 @@
"country_code": "US",
"elevation": 184,
"feature_code": "PPL",
- "geonameid": 4715292,
"latitude": 32.8343,
"longitude": -97.2289,
"name": "North Richland Hills",
@@ -66873,7 +60492,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 827329,
"latitude": 55.9686,
"longitude": 43.0912,
"name": "Pavlovo",
@@ -66883,7 +60501,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2638978,
"latitude": 52.37092,
"longitude": -1.26417,
"name": "Rugby",
@@ -66893,7 +60510,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2496232,
"latitude": 35.06544,
"longitude": 1.04945,
"name": "Frenda",
@@ -66903,7 +60519,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 137956,
"latitude": 28.75194,
"longitude": 54.54444,
"name": "D\u0101r\u0101b",
@@ -66913,7 +60528,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 356806,
"latitude": 31.20291,
"longitude": 30.55018,
"name": "Fuwah",
@@ -66923,7 +60537,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789693,
"latitude": 34.91611,
"longitude": 118.63889,
"name": "Xiazhuang",
@@ -66933,7 +60546,6 @@
"country_code": "US",
"elevation": 40,
"feature_code": "PPL",
- "geonameid": 4845411,
"latitude": 41.76204,
"longitude": -72.74204,
"name": "West Hartford",
@@ -66943,7 +60555,6 @@
"country_code": "US",
"elevation": 8,
"feature_code": "PPL",
- "geonameid": 5383465,
"latitude": 38.02798,
"longitude": -121.88468,
"name": "Pittsburg",
@@ -66953,7 +60564,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1792585,
"latitude": 27.32734,
"longitude": 120.214,
"name": "Fuding",
@@ -66963,7 +60573,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933305,
"latitude": -24.40659,
"longitude": 25.49508,
"name": "Molepolole",
@@ -66973,7 +60582,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255004,
"latitude": 17.23333,
"longitude": 77.58333,
"name": "T\u0101nd\u016br",
@@ -66983,7 +60591,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 662334,
"latitude": 47.2,
"longitude": 23.05,
"name": "Zal\u0103u",
@@ -66993,7 +60600,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445597,
"latitude": -13.37028,
"longitude": -39.07306,
"name": "Valen\u00e7a",
@@ -67003,7 +60609,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3924679,
"latitude": -12.74056,
"longitude": -60.14583,
"name": "Vilhena",
@@ -67013,7 +60618,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2720501,
"latitude": 57.72101,
"longitude": 12.9401,
"name": "Bor\u00e5s",
@@ -67023,7 +60627,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 305359,
"latitude": 37.85562,
"longitude": 27.2566,
"name": "Ku\u015fadas\u0131",
@@ -67033,7 +60636,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3080004,
"latitude": 50.04523,
"longitude": 18.70062,
"name": "\u017bory",
@@ -67043,7 +60645,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1643981,
"latitude": -7.76972,
"longitude": 110.29389,
"name": "Godean",
@@ -67053,7 +60654,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503147,
"latitude": 36.54178,
"longitude": 3.081,
"name": "Bougara",
@@ -67063,7 +60663,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255361,
"latitude": 29.3215,
"longitude": 73.89979,
"name": "S\u016bratgarh",
@@ -67073,7 +60672,6 @@
"country_code": "US",
"elevation": 498,
"feature_code": "PPL",
- "geonameid": 4633419,
"latitude": 36.31344,
"longitude": -82.35347,
"name": "Johnson City",
@@ -67083,7 +60681,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263659,
"latitude": 10.66626,
"longitude": 79.45064,
"name": "Mannargudi",
@@ -67093,7 +60690,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6071618,
"latitude": 50.05006,
"longitude": -110.66834,
"name": "Medicine Hat",
@@ -67103,7 +60699,6 @@
"country_code": "US",
"elevation": 187,
"feature_code": "PPL",
- "geonameid": 5011908,
"latitude": 42.24087,
"longitude": -83.26965,
"name": "Taylor",
@@ -67113,7 +60708,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 988698,
"latitude": -34.03627,
"longitude": 23.04713,
"name": "Knysna",
@@ -67123,7 +60717,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3880107,
"latitude": -33.7,
"longitude": -71.21667,
"name": "Melipilla",
@@ -67133,7 +60726,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 579514,
"latitude": 56.48989,
"longitude": 43.60114,
"name": "Novaya Balakhna",
@@ -67143,7 +60735,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3622247,
"latitude": 10.0,
"longitude": -83.03333,
"name": "Puerto Lim\u00f3n",
@@ -67153,7 +60744,6 @@
"country_code": "GP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3578959,
"latitude": 16.27095,
"longitude": -61.50451,
"name": "Les Abymes",
@@ -67163,9 +60753,8 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1527199,
- "latitude": 42.84172,
- "longitude": 75.30158,
+ "latitude": 42.84194,
+ "longitude": 75.30149,
"name": "Tokmok",
"population": 63047
},
@@ -67173,7 +60762,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816256,
"latitude": 38.06667,
"longitude": 116.56667,
"name": "Botou",
@@ -67183,7 +60771,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863945,
"latitude": 34.75,
"longitude": 137.91667,
"name": "Fukuroi",
@@ -67193,7 +60780,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255714,
"latitude": 34.3,
"longitude": 74.46667,
"name": "Sopur",
@@ -67203,7 +60789,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3140321,
"latitude": 58.85244,
"longitude": 5.73521,
"name": "Sandnes",
@@ -67213,7 +60798,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4150066,
"latitude": 25.94065,
"longitude": -80.2456,
"name": "Carol City",
@@ -67223,7 +60807,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454061,
"latitude": -24.32,
"longitude": -46.99833,
"name": "Peru\u00edbe",
@@ -67233,7 +60816,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1896953,
"latitude": 37.29167,
"longitude": 127.50778,
"name": "Pubal",
@@ -67243,7 +60825,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPL",
- "geonameid": 5095445,
"latitude": 40.66871,
"longitude": -74.11431,
"name": "Bayonne",
@@ -67253,7 +60834,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2494610,
"latitude": 36.41205,
"longitude": 6.59603,
"name": "Hamma Bouziane",
@@ -67263,7 +60843,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3558771,
"latitude": 21.52472,
"longitude": -78.22583,
"name": "Florida",
@@ -67273,7 +60852,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 695274,
"latitude": 49.01229,
"longitude": 38.37967,
"name": "Rubizhne",
@@ -67283,7 +60861,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038446,
"latitude": 46.33167,
"longitude": 132.21111,
"name": "Baoqing",
@@ -67293,7 +60870,6 @@
"country_code": "US",
"elevation": 121,
"feature_code": "PPL",
- "geonameid": 5364329,
"latitude": 33.52253,
"longitude": -117.70755,
"name": "Laguna Niguel",
@@ -67303,7 +60879,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2171085,
"latitude": -30.29626,
"longitude": 153.11351,
"name": "Coffs Harbour",
@@ -67313,7 +60888,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2328790,
"latitude": 5.75555,
"longitude": 7.10627,
"name": "Nkwerre",
@@ -67323,7 +60897,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112656,
"latitude": 38.91667,
"longitude": 141.13333,
"name": "Ichinoseki",
@@ -67333,7 +60906,6 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 233508,
"latitude": 0.06444,
"longitude": 32.44694,
"name": "Entebbe",
@@ -67343,7 +60915,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3633444,
"latitude": 10.06444,
"longitude": -72.545,
"name": "Machiques",
@@ -67353,7 +60924,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853066,
"latitude": 34.5,
"longitude": 135.85,
"name": "Sakurai",
@@ -67363,7 +60933,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460723,
"latitude": -23.98222,
"longitude": -48.87556,
"name": "Itapeva",
@@ -67373,7 +60942,6 @@
"country_code": "US",
"elevation": 50,
"feature_code": "PPL",
- "geonameid": 5382496,
"latitude": 33.98307,
"longitude": -118.09674,
"name": "Pico Rivera",
@@ -67383,7 +60951,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2348892,
"latitude": 7.06667,
"longitude": 6.26667,
"name": "Auchi",
@@ -67393,7 +60960,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3103709,
"latitude": 51.36883,
"longitude": 19.35671,
"name": "Be\u0142chat\u00f3w",
@@ -67403,7 +60969,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1000543,
"latitude": -32.25215,
"longitude": 24.53075,
"name": "Graaff-Reinet",
@@ -67413,7 +60978,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1166265,
"latitude": 32.47455,
"longitude": 74.35209,
"name": "Sambri\u0101l",
@@ -67423,7 +60987,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 300352,
"latitude": 39.81012,
"longitude": 35.18596,
"name": "Sorgun",
@@ -67433,7 +60996,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278454,
"latitude": 12.66667,
"longitude": 79.28333,
"name": "\u0100rani",
@@ -67443,7 +61005,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1698030,
"latitude": 14.0722,
"longitude": 120.6332,
"name": "Nasugbu",
@@ -67453,7 +61014,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274987,
"latitude": 11.86752,
"longitude": 75.35763,
"name": "Cannanore",
@@ -67463,7 +61023,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 696108,
"latitude": 50.59324,
"longitude": 32.38761,
"name": "Pryluky",
@@ -67473,7 +61032,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 356989,
"latitude": 30.73006,
"longitude": 31.80182,
"name": "F\u0101q\u016bs",
@@ -67483,7 +61041,6 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1528182,
"latitude": 42.81423,
"longitude": 73.84813,
"name": "Kara-Balta",
@@ -67493,7 +61050,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2656955,
"latitude": 51.14586,
"longitude": 0.87281,
"name": "Ashford",
@@ -67503,7 +61059,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 118367,
"latitude": 35.4846,
"longitude": 51.0829,
"name": "Rob\u0101\u0163 Kar\u012bm",
@@ -67513,7 +61068,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3106868,
"latitude": 40.19081,
"longitude": -3.67887,
"name": "Valdemoro",
@@ -67523,7 +61077,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 557775,
"latitude": 55.61113,
"longitude": 40.65186,
"name": "Gus\u2019-Khrustal\u2019nyy",
@@ -67533,7 +61086,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 582978,
"latitude": 56.4,
"longitude": 38.71667,
"name": "Aleksandrow",
@@ -67543,7 +61095,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 570479,
"latitude": 42.819,
"longitude": 47.1192,
"name": "Buynaksk",
@@ -67553,7 +61104,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1733697,
"latitude": 4.48178,
"longitude": 118.61118,
"name": "Semporna",
@@ -67563,7 +61113,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1217180,
"latitude": 39.72278,
"longitude": 64.55167,
"name": "Kogon",
@@ -67573,7 +61122,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466698,
"latitude": -21.38917,
"longitude": -42.69667,
"name": "Cataguases",
@@ -67583,7 +61131,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 748870,
"latitude": 40.23861,
"longitude": 33.03222,
"name": "\u00c7ubuk",
@@ -67593,7 +61140,6 @@
"country_code": "RU",
"elevation": 201,
"feature_code": "PPL",
- "geonameid": 1502061,
"latitude": 59.7666,
"longitude": 60.2086,
"name": "Krasnotur\u2019insk",
@@ -67603,7 +61149,6 @@
"country_code": "US",
"elevation": 29,
"feature_code": "PPLA2",
- "geonameid": 4739157,
"latitude": 28.80527,
"longitude": -97.0036,
"name": "Victoria",
@@ -67613,7 +61158,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2470384,
"latitude": 33.87576,
"longitude": 10.85745,
"name": "Houmt Souk",
@@ -67623,7 +61167,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 578120,
"latitude": 54.11667,
"longitude": 54.11667,
"name": "Belebey",
@@ -67633,7 +61176,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2464701,
"latitude": 32.92967,
"longitude": 10.45177,
"name": "Tataouine",
@@ -67643,7 +61185,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3173287,
"latitude": 41.20023,
"longitude": 16.59748,
"name": "Molfetta",
@@ -67653,7 +61194,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2036338,
"latitude": 44.81351,
"longitude": 123.15,
"name": "Kaitong",
@@ -67663,7 +61203,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284827,
"latitude": 47.50045,
"longitude": 19.06875,
"name": "Budapest VII. ker\u00fclet",
@@ -67673,7 +61212,6 @@
"country_code": "US",
"elevation": 260,
"feature_code": "PPL",
- "geonameid": 5052361,
"latitude": 45.15969,
"longitude": -93.34967,
"name": "West Coon Rapids",
@@ -67683,7 +61221,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272694,
"latitude": 26.03333,
"longitude": 89.96667,
"name": "Dhuburi",
@@ -67693,7 +61230,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650319,
"latitude": -7.59939,
"longitude": 112.8186,
"name": "Bangil",
@@ -67703,7 +61239,6 @@
"country_code": "US",
"elevation": 61,
"feature_code": "PPL",
- "geonameid": 5374322,
"latitude": 34.00946,
"longitude": -118.10535,
"name": "Montebello",
@@ -67713,7 +61248,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259263,
"latitude": 9.17489,
"longitude": 77.39799,
"name": "Puliyangudi",
@@ -67723,7 +61257,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3020839,
"latitude": 48.92578,
"longitude": 2.44533,
"name": "Drancy",
@@ -67733,7 +61266,6 @@
"country_code": "US",
"elevation": 196,
"feature_code": "PPLA2",
- "geonameid": 4623560,
"latitude": 35.92506,
"longitude": -86.86889,
"name": "Franklin",
@@ -67743,7 +61275,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1798733,
"latitude": 23.5543,
"longitude": 110.39757,
"name": "Pingnan",
@@ -67753,7 +61284,6 @@
"country_code": "US",
"elevation": 181,
"feature_code": "PPLA2",
- "geonameid": 4513575,
"latitude": 39.3995,
"longitude": -84.56134,
"name": "Hamilton",
@@ -67763,7 +61293,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1840179,
"latitude": 38.37881,
"longitude": 128.4676,
"name": "Kosong",
@@ -67773,7 +61302,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360928,
"latitude": 30.21035,
"longitude": 31.36812,
"name": "Al Kh\u0101nkah",
@@ -67783,9 +61311,8 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 149879,
- "latitude": -4.81667,
- "longitude": 34.75,
+ "latitude": -4.81629,
+ "longitude": 34.74358,
"name": "Singida",
"population": 62432
},
@@ -67793,7 +61320,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2990189,
"latitude": 48.84979,
"longitude": 2.56266,
"name": "Noisy-le-Grand",
@@ -67803,7 +61329,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256593,
"latitude": 25.66667,
"longitude": 76.7,
"name": "Sheopur",
@@ -67813,7 +61338,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1004109,
"latitude": -26.48862,
"longitude": 27.49387,
"name": "Fochville",
@@ -67823,7 +61347,6 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 292878,
"latitude": 25.11641,
"longitude": 56.34141,
"name": "Al Fujayrah",
@@ -67833,7 +61356,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258207,
"latitude": 24.2,
"longitude": 83.03333,
"name": "Renuk\u016bt",
@@ -67843,7 +61365,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3053281,
"latitude": 47.39489,
"longitude": 18.9136,
"name": "\u00c9rd",
@@ -67853,7 +61374,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1281368,
"latitude": 29.96178,
"longitude": 90.71875,
"name": "D\u00eaq\u00ean",
@@ -67863,7 +61383,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6543862,
"latitude": 50.61669,
"longitude": 3.16664,
"name": "Villeneuve-d'Ascq",
@@ -67873,7 +61392,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813016,
"latitude": 34.45528,
"longitude": 113.02806,
"name": "Dengfeng",
@@ -67883,7 +61401,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624877,
"latitude": -2.75,
"longitude": 107.65,
"name": "Tanjungpandan",
@@ -67893,7 +61410,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033147,
"latitude": 45.68333,
"longitude": 125.31667,
"name": "Zhaozhou",
@@ -67903,7 +61419,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2130054,
"latitude": 42.97583,
"longitude": 141.56722,
"name": "Kitahiroshima",
@@ -67913,7 +61428,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2567529,
"latitude": 39.64167,
"longitude": -0.23889,
"name": "Groa de Murviedro",
@@ -67923,7 +61437,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785980,
"latitude": 34.92889,
"longitude": 116.46528,
"name": "Yucheng",
@@ -67933,7 +61446,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 922806,
"latitude": -11.76667,
"longitude": 27.23333,
"name": "Kipushi",
@@ -67943,7 +61455,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3006414,
"latitude": 43.09818,
"longitude": 5.88472,
"name": "La Seyne-sur-Mer",
@@ -67953,7 +61464,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3183455,
"latitude": 40.92601,
"longitude": 14.31083,
"name": "Afragola",
@@ -67963,7 +61473,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 616743,
"latitude": 48.63013,
"longitude": 37.55259,
"name": "Druzhkovka",
@@ -67973,7 +61482,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 702760,
"latitude": 48.88937,
"longitude": 36.31755,
"name": "Lozova",
@@ -67983,7 +61491,6 @@
"country_code": "US",
"elevation": 81,
"feature_code": "PPL",
- "geonameid": 4124112,
"latitude": 34.76954,
"longitude": -92.26709,
"name": "North Little Rock",
@@ -67993,7 +61500,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPLA2",
- "geonameid": 4155995,
"latitude": 26.62168,
"longitude": -81.84059,
"name": "Fort Myers",
@@ -68003,7 +61509,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907148,
"latitude": 35.73667,
"longitude": 139.32361,
"name": "Fussa",
@@ -68013,7 +61518,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3670730,
"latitude": 6.15515,
"longitude": -75.37371,
"name": "Rionegro",
@@ -68023,7 +61527,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2082727,
"latitude": -2.63333,
"longitude": 140.58333,
"name": "Abepura",
@@ -68033,7 +61536,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 499717,
"latitude": 56.26241,
"longitude": 34.32817,
"name": "Rzhev",
@@ -68043,7 +61545,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2759633,
"latitude": 52.99667,
"longitude": 6.5625,
"name": "Assen",
@@ -68053,7 +61554,6 @@
"country_code": "US",
"elevation": 139,
"feature_code": "PPLA2",
- "geonameid": 5142056,
"latitude": 43.1009,
"longitude": -75.23266,
"name": "Utica",
@@ -68063,7 +61563,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272780,
"latitude": 20.66667,
"longitude": 85.6,
"name": "Dhenk\u0101n\u0101l",
@@ -68073,7 +61572,6 @@
"country_code": "US",
"elevation": 301,
"feature_code": "PPLA2",
- "geonameid": 4852832,
"latitude": 41.26194,
"longitude": -95.86083,
"name": "Council Bluffs",
@@ -68083,7 +61581,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 621741,
"latitude": 53.0274,
"longitude": 27.5597,
"name": "Slutsk",
@@ -68093,7 +61590,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185920,
"latitude": 22.9,
"longitude": 89.91667,
"name": "Tungip\u0101ra",
@@ -68103,7 +61599,6 @@
"country_code": "US",
"elevation": 325,
"feature_code": "PPL",
- "geonameid": 4279247,
"latitude": 39.04167,
"longitude": -94.72024,
"name": "Shawnee",
@@ -68113,7 +61608,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 567990,
"latitude": 55.36311,
"longitude": 50.64244,
"name": "Chistopol\u2019",
@@ -68123,7 +61617,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585170,
"latitude": 41.19194,
"longitude": 47.17056,
"name": "Sheki",
@@ -68133,7 +61626,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2483746,
"latitude": 33.56391,
"longitude": 6.70326,
"name": "Reguiba",
@@ -68143,7 +61635,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2998975,
"latitude": 48.89389,
"longitude": 2.28864,
"name": "Levallois-Perret",
@@ -68153,7 +61644,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650298,
"latitude": -7.0455,
"longitude": 112.7351,
"name": "Bangkalan",
@@ -68163,7 +61653,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3939285,
"latitude": -11.495,
"longitude": -77.20778,
"name": "Huaral",
@@ -68173,7 +61662,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3687964,
"latitude": 4.52949,
"longitude": -75.64091,
"name": "Calarc\u00e1",
@@ -68183,7 +61671,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3167022,
"latitude": 44.30905,
"longitude": 8.47715,
"name": "Savona",
@@ -68193,7 +61680,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 831165,
"latitude": 53.13333,
"longitude": 46.58333,
"name": "Zarechnyy",
@@ -68203,7 +61689,6 @@
"country_code": "US",
"elevation": 1306,
"feature_code": "PPL",
- "geonameid": 5778352,
"latitude": 40.68689,
"longitude": -111.87549,
"name": "Millcreek",
@@ -68213,7 +61698,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034791,
"latitude": 43.52417,
"longitude": 125.67361,
"name": "Shuangyang",
@@ -68223,7 +61707,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPL",
- "geonameid": 5367565,
"latitude": 38.1302,
"longitude": -121.27245,
"name": "Lodi",
@@ -68233,7 +61716,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035593,
"latitude": 47.51667,
"longitude": 122.88333,
"name": "Nianzishan",
@@ -68243,7 +61725,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3628142,
"latitude": 8.88724,
"longitude": -64.16512,
"name": "San Jos\u00e9 de Guanipa",
@@ -68253,7 +61734,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273745,
"latitude": 29.95,
"longitude": 74.73333,
"name": "Dabw\u0101li",
@@ -68263,7 +61743,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1785710,
"latitude": 21.99102,
"longitude": 100.73409,
"name": "Jinghong",
@@ -68273,7 +61752,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256388,
"latitude": 26.98333,
"longitude": 94.63333,
"name": "Sibs\u0101gar",
@@ -68283,7 +61761,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861641,
"latitude": 35.82756,
"longitude": 137.95378,
"name": "Ina",
@@ -68293,7 +61770,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3589289,
"latitude": 14.33333,
"longitude": -91.01667,
"name": "Santa Luc\u00eda Cotzumalguapa",
@@ -68303,7 +61779,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856243,
"latitude": 35.38333,
"longitude": 136.26667,
"name": "Nagahama",
@@ -68313,7 +61788,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3125897,
"latitude": 41.27794,
"longitude": 1.97033,
"name": "Castelldefels",
@@ -68323,7 +61797,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 483019,
"latitude": 59.64511,
"longitude": 33.52937,
"name": "Tikhvin",
@@ -68333,7 +61806,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3541440,
"latitude": 22.80667,
"longitude": -80.07556,
"name": "Sagua la Grande",
@@ -68343,7 +61815,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1699572,
"latitude": 10.24498,
"longitude": 123.7964,
"name": "Minglanilla",
@@ -68353,7 +61824,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448011,
"latitude": -22.92,
"longitude": -42.51028,
"name": "Saquarema",
@@ -68363,7 +61833,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798632,
"latitude": 36.28306,
"longitude": 116.44528,
"name": "Pingyin",
@@ -68373,7 +61842,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 352733,
"latitude": 31.35254,
"longitude": 27.24528,
"name": "Mars\u00e1 Ma\u0163r\u016b\u1e29",
@@ -68383,7 +61851,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1835447,
"latitude": 36.34931,
"longitude": 126.59772,
"name": "Taisen-ri",
@@ -68393,7 +61860,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445942,
"latitude": -21.93472,
"longitude": -50.51361,
"name": "Tup\u00e3",
@@ -68403,7 +61869,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1166164,
"latitude": 26.04656,
"longitude": 68.9481,
"name": "S\u0101nghar",
@@ -68413,7 +61878,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042929,
"latitude": 47.09327,
"longitude": 17.91149,
"name": "Veszpr\u00e9m",
@@ -68423,7 +61887,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038283,
"latitude": 45.75281,
"longitude": 127.47986,
"name": "Binzhou",
@@ -68433,7 +61896,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2289049,
"latitude": 9.5928,
"longitude": -5.19449,
"name": "Ferkess\u00e9dougou",
@@ -68442,8 +61904,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 785756,
+ "feature_code": "PPLA2",
"latitude": 44.66278,
"longitude": 20.93,
"name": "Smederevo",
@@ -68453,7 +61914,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 501231,
"latitude": 50.19828,
"longitude": 39.56726,
"name": "Rossosh\u2019",
@@ -68463,7 +61923,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1784647,
"latitude": 29.9695,
"longitude": 121.68753,
"name": "Zhaobaoshan",
@@ -68473,7 +61932,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036619,
"latitude": 41.93222,
"longitude": 123.51139,
"name": "Hushitai",
@@ -68483,7 +61941,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 121110,
"latitude": 36.701,
"longitude": 45.1413,
"name": "P\u012br\u0101nshahr",
@@ -68493,7 +61950,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 510225,
"latitude": 59.87966,
"longitude": 29.90257,
"name": "Petrodvorets",
@@ -68503,7 +61959,6 @@
"country_code": "US",
"elevation": 324,
"feature_code": "PPL",
- "geonameid": 5053358,
"latitude": 44.92386,
"longitude": -92.95938,
"name": "Woodbury",
@@ -68513,7 +61968,6 @@
"country_code": "UG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 227812,
"latitude": 0.41861,
"longitude": 33.17306,
"name": "Njeru",
@@ -68523,7 +61977,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 537281,
"latitude": 44.63417,
"longitude": 40.73556,
"name": "Labinsk",
@@ -68533,7 +61986,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463432,
"latitude": -20.28389,
"longitude": -50.24639,
"name": "Fernand\u00f3polis",
@@ -68543,7 +61995,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2530241,
"latitude": 28.43799,
"longitude": -11.10321,
"name": "Tan-Tan",
@@ -68553,7 +62004,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1806651,
"latitude": 32.35473,
"longitude": 116.2939,
"name": "Huoqiu Chengguanzhen",
@@ -68563,9 +62013,8 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1898359,
- "latitude": 31.25196,
- "longitude": 120.51179,
+ "latitude": 31.25597,
+ "longitude": 120.51857,
"name": "Mudu",
"population": 61902
},
@@ -68573,7 +62022,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042638,
"latitude": 46.84,
"longitude": 16.84389,
"name": "Zalaegerszeg",
@@ -68583,7 +62031,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 251948,
"latitude": 37.96667,
"longitude": 23.75,
"name": "V\u00fdronas",
@@ -68593,7 +62040,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2293342,
"latitude": 6.10694,
"longitude": -3.86194,
"name": "Adzop\u00e9",
@@ -68603,7 +62049,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1800101,
"latitude": 22.8525,
"longitude": 110.82333,
"name": "Nandu",
@@ -68613,7 +62058,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3932145,
"latitude": -13.7,
"longitude": -76.21667,
"name": "Pisco",
@@ -68623,7 +62067,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862198,
"latitude": 36.23333,
"longitude": 139.18333,
"name": "Honj\u014d",
@@ -68633,7 +62076,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813206,
"latitude": 30.08333,
"longitude": 114.95,
"name": "Daye",
@@ -68643,7 +62085,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3517517,
"latitude": 17.01667,
"longitude": -96.73333,
"name": "Santa Cruz Xoxocotl\u00e1n",
@@ -68653,7 +62094,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1707944,
"latitude": 7.9745,
"longitude": 123.7458,
"name": "Lala",
@@ -68663,7 +62103,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2367568,
"latitude": 9.25,
"longitude": 0.78333,
"name": "Bassar",
@@ -68673,7 +62112,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3496331,
"latitude": 19.39352,
"longitude": -70.52598,
"name": "Moca",
@@ -68683,7 +62121,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1505429,
"latitude": 54.6366,
"longitude": 83.3045,
"name": "Iskitim",
@@ -68693,7 +62130,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2389086,
"latitude": 4.26116,
"longitude": 15.79216,
"name": "Berb\u00e9rati",
@@ -68703,7 +62139,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447854,
"latitude": -16.70806,
"longitude": -49.09306,
"name": "Senador Canedo",
@@ -68713,7 +62148,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182179,
"latitude": 41.12952,
"longitude": 14.78614,
"name": "Benevento",
@@ -68723,7 +62157,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 459279,
"latitude": 56.65,
"longitude": 23.71278,
"name": "Jelgava",
@@ -68733,7 +62166,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 502011,
"latitude": 56.80097,
"longitude": 59.93028,
"name": "Revda",
@@ -68743,7 +62175,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 705392,
"latitude": 48.53115,
"longitude": 25.03649,
"name": "Kolomyya",
@@ -68753,7 +62184,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 534595,
"latitude": 56.00972,
"longitude": 37.48194,
"name": "Lobnya",
@@ -68763,7 +62193,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1786587,
"latitude": 32.62945,
"longitude": 116.27014,
"name": "Yingshang Chengguanzhen",
@@ -68773,7 +62202,6 @@
"country_code": "US",
"elevation": 37,
"feature_code": "PPL",
- "geonameid": 5334336,
"latitude": 38.61713,
"longitude": -121.32828,
"name": "Carmichael",
@@ -68783,7 +62211,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831173,
"latitude": 11.99339,
"longitude": 105.4635,
"name": "K\u00e2mp\u00f3ng Cham",
@@ -68793,7 +62220,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264154,
"latitude": 11.06667,
"longitude": 76.06667,
"name": "Malappuram",
@@ -68803,7 +62229,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 893697,
"latitude": -17.36667,
"longitude": 30.2,
"name": "Chinhoyi",
@@ -68813,7 +62238,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360542,
"latitude": 30.61618,
"longitude": 31.73514,
"name": "Al Qurayn",
@@ -68823,7 +62247,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258352,
"latitude": 25.58333,
"longitude": 79.56667,
"name": "R\u0101th",
@@ -68833,7 +62256,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1196292,
"latitude": 22.95,
"longitude": 90.83333,
"name": "Lakshm\u012bpur",
@@ -68843,7 +62265,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2190224,
"latitude": -39.6381,
"longitude": 176.84918,
"name": "Hastings",
@@ -68853,7 +62274,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1798480,
"latitude": 22.75,
"longitude": 108.48333,
"name": "Pumiao",
@@ -68863,7 +62283,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269328,
"latitude": 16.51667,
"longitude": 75.3,
"name": "Jamkhandi",
@@ -68873,7 +62292,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2810678,
"latitude": 51.66667,
"longitude": 6.61667,
"name": "Wesel",
@@ -68883,7 +62301,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 470444,
"latitude": 55.3175,
"longitude": 42.17444,
"name": "Vyksa",
@@ -68893,7 +62310,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 128905,
"latitude": 34.7956,
"longitude": 46.9355,
"name": "K\u0101my\u0101r\u0101n",
@@ -68903,7 +62319,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3027422,
"latitude": 45.56667,
"longitude": 5.93333,
"name": "Chamb\u00e9ry",
@@ -68913,7 +62328,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788522,
"latitude": 32.51861,
"longitude": 112.35222,
"name": "Xinye",
@@ -68923,7 +62337,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284835,
"latitude": 47.45293,
"longitude": 19.14943,
"name": "Budapest XIX. ker\u00fclet",
@@ -68933,7 +62346,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460699,
"latitude": -22.43611,
"longitude": -46.82167,
"name": "Itapira",
@@ -68943,7 +62355,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256047,
"latitude": 14.61667,
"longitude": 74.85,
"name": "Sirsi",
@@ -68953,7 +62364,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 565955,
"latitude": 56.35,
"longitude": 37.51667,
"name": "Dmitrov",
@@ -68963,7 +62373,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 713259,
"latitude": 48.11503,
"longitude": 39.09128,
"name": "Antratsit",
@@ -68973,7 +62382,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1849414,
"latitude": 34.75,
"longitude": 136.13333,
"name": "Ueno",
@@ -68983,7 +62391,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 493160,
"latitude": 52.71806,
"longitude": 58.66583,
"name": "Sibay",
@@ -68993,7 +62400,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2036055,
"latitude": 43.30472,
"longitude": 124.32778,
"name": "Lishu",
@@ -69003,7 +62409,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038665,
"latitude": 50.56667,
"longitude": 123.71667,
"name": "Alihe",
@@ -69013,7 +62418,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284825,
"latitude": 47.48299,
"longitude": 19.06591,
"name": "Budapest IX. ker\u00fclet",
@@ -69023,7 +62427,6 @@
"country_code": "US",
"elevation": 287,
"feature_code": "PPL",
- "geonameid": 5036493,
"latitude": 45.07246,
"longitude": -93.45579,
"name": "Maple Grove",
@@ -69033,7 +62436,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2522098,
"latitude": 38.70545,
"longitude": -0.47432,
"name": "Alcoy",
@@ -69043,7 +62445,6 @@
"country_code": "GF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3382160,
"latitude": 4.93333,
"longitude": -52.33333,
"name": "Cayenne",
@@ -69053,7 +62454,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1176800,
"latitude": 30.74179,
"longitude": 73.82358,
"name": "Hujra",
@@ -69063,7 +62463,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1790413,
"latitude": 28.85,
"longitude": 120.73333,
"name": "Xianju",
@@ -69073,7 +62472,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2420056,
"latitude": 10.66667,
"longitude": -14.6,
"name": "Kamsar",
@@ -69083,7 +62481,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1702934,
"latitude": 8.15,
"longitude": 125.08333,
"name": "Malaybalay",
@@ -69093,7 +62490,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253080,
"latitude": 11.5,
"longitude": 79.33333,
"name": "Vriddh\u0101chalam",
@@ -69103,7 +62499,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2750325,
"latitude": 52.02917,
"longitude": 5.08056,
"name": "Nieuwegein",
@@ -69113,7 +62508,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862373,
"latitude": 33.3213,
"longitude": 130.94098,
"name": "Hita",
@@ -69123,7 +62517,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3180445,
"latitude": 44.78237,
"longitude": 10.8777,
"name": "Carpi",
@@ -69133,7 +62526,6 @@
"country_code": "US",
"elevation": 262,
"feature_code": "PPL",
- "geonameid": 5022025,
"latitude": 45.11997,
"longitude": -93.28773,
"name": "Coon Rapids",
@@ -69143,7 +62535,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806248,
"latitude": 28.19377,
"longitude": 115.7836,
"name": "Jianguang",
@@ -69153,7 +62544,6 @@
"country_code": "BZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3582677,
"latitude": 17.49952,
"longitude": -88.19756,
"name": "Belize City",
@@ -69163,7 +62553,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3012649,
"latitude": 48.82104,
"longitude": 2.27718,
"name": "Issy-les-Moulineaux",
@@ -69173,7 +62562,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2037611,
"latitude": 44.06219,
"longitude": 131.12075,
"name": "Dongning",
@@ -69183,7 +62571,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2525448,
"latitude": 37.48774,
"longitude": 14.04497,
"name": "Caltanissetta",
@@ -69193,7 +62580,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1793899,
"latitude": 33.8963,
"longitude": 117.93307,
"name": "Suicheng",
@@ -69203,7 +62589,6 @@
"country_code": "US",
"elevation": 83,
"feature_code": "PPLA2",
- "geonameid": 5369568,
"latitude": 36.96134,
"longitude": -120.06072,
"name": "Madera",
@@ -69213,17 +62598,15 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 692372,
"latitude": 49.26223,
"longitude": 23.85609,
- "name": "Stryy",
+ "name": "Stryi",
"population": 61404
},
{
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2891621,
"latitude": 47.72674,
"longitude": 10.31389,
"name": "Kempten (Allg\u00e4u)",
@@ -69233,7 +62616,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850207,
"latitude": 35.35,
"longitude": 137.18333,
"name": "Toki",
@@ -69243,7 +62625,6 @@
"country_code": "US",
"elevation": 50,
"feature_code": "PPL",
- "geonameid": 5334928,
"latitude": 37.6941,
"longitude": -122.08635,
"name": "Castro Valley",
@@ -69253,7 +62634,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515942,
"latitude": 19.74556,
"longitude": -99.18333,
"name": "Teoloyucan",
@@ -69263,7 +62643,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2657540,
"latitude": 51.24827,
"longitude": -0.76389,
"name": "Aldershot",
@@ -69273,7 +62652,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2835482,
"latitude": 48.79947,
"longitude": 9.79809,
"name": "Schw\u00e4bisch Gm\u00fcnd",
@@ -69283,7 +62661,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2515045,
"latitude": 38.09519,
"longitude": -3.63602,
"name": "Linares",
@@ -69293,7 +62670,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253150,
"latitude": 16.05,
"longitude": 79.75,
"name": "Vinukonda",
@@ -69303,7 +62679,6 @@
"country_code": "US",
"elevation": 47,
"feature_code": "PPL",
- "geonameid": 5099724,
"latitude": 40.73232,
"longitude": -74.23487,
"name": "Irvington",
@@ -69313,7 +62688,6 @@
"country_code": "US",
"elevation": 53,
"feature_code": "PPL",
- "geonameid": 4317639,
"latitude": 32.51599,
"longitude": -93.73212,
"name": "Bossier City",
@@ -69323,7 +62697,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2831948,
"latitude": 48.7,
"longitude": 9.01667,
"name": "Sindelfingen",
@@ -69333,7 +62706,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3979673,
"latitude": 17.63333,
"longitude": -101.55,
"name": "Zihuatanejo",
@@ -69343,9 +62715,8 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2990611,
- "latitude": 48.88333,
- "longitude": 2.26667,
+ "latitude": 48.8846,
+ "longitude": 2.26965,
"name": "Neuilly-sur-Seine",
"population": 61300
},
@@ -69353,7 +62724,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805563,
"latitude": 37.99806,
"longitude": 114.01556,
"name": "Tianchang",
@@ -69363,7 +62733,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111859,
"latitude": 39.13333,
"longitude": 141.13333,
"name": "Mizusawa",
@@ -69373,7 +62742,6 @@
"country_code": "US",
"elevation": 514,
"feature_code": "PPLA",
- "geonameid": 5688025,
"latitude": 46.80833,
"longitude": -100.78374,
"name": "Bismarck",
@@ -69383,7 +62751,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2745774,
"latitude": 52.02863,
"longitude": 5.55891,
"name": "Veenendaal",
@@ -69393,7 +62760,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3398691,
"latitude": -8.20111,
"longitude": -35.56472,
"name": "Gravat\u00e1",
@@ -69403,7 +62769,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3707961,
"latitude": 8.88028,
"longitude": -79.78333,
"name": "La Chorrera",
@@ -69413,7 +62778,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112077,
"latitude": 36.96667,
"longitude": 140.05,
"name": "Kuroiso",
@@ -69423,7 +62787,6 @@
"country_code": "US",
"elevation": 137,
"feature_code": "PPLA2",
- "geonameid": 4367175,
"latitude": 39.084,
"longitude": -77.15276,
"name": "Rockville",
@@ -69433,7 +62796,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626758,
"latitude": -6.9816,
"longitude": 109.1407,
"name": "Slawi",
@@ -69443,7 +62805,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 59611,
"latitude": 6.76972,
"longitude": 47.43083,
"name": "Gaalkacyo",
@@ -69453,7 +62814,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 581357,
"latitude": 67.56414,
"longitude": 33.4031,
"name": "Apatity",
@@ -69463,7 +62823,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 362277,
"latitude": 27.9312,
"longitude": 30.83841,
"name": "Ab\u016b Qurq\u0101\u015f",
@@ -69473,7 +62832,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805798,
"latitude": 29.29056,
"longitude": 106.25417,
"name": "Jiangjin",
@@ -69483,7 +62841,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445596,
"latitude": -22.24556,
"longitude": -43.70028,
"name": "Valen\u00e7a",
@@ -69493,7 +62850,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360773,
"latitude": 26.47686,
"longitude": 31.8035,
"name": "Al Mansh\u0101h",
@@ -69503,7 +62859,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3164433,
"latitude": 43.87354,
"longitude": 10.2558,
"name": "Viareggio",
@@ -69513,7 +62868,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2357043,
"latitude": 13.58278,
"longitude": -2.42158,
"name": "Ouahigouya",
@@ -69523,7 +62877,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033866,
"latitude": 42.73722,
"longitude": 124.72222,
"name": "Xifeng",
@@ -69533,7 +62886,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813451,
"latitude": 32.62082,
"longitude": 117.06318,
"name": "Datong",
@@ -69543,7 +62895,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2639022,
"latitude": 51.13245,
"longitude": 0.26333,
"name": "Royal Tunbridge Wells",
@@ -69553,7 +62904,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1497173,
"latitude": 53.3917,
"longitude": 83.9363,
"name": "Novoaltaysk",
@@ -69563,7 +62913,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1631851,
"latitude": -6.6978,
"longitude": 110.7107,
"name": "Pecangaan",
@@ -69573,7 +62922,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2654187,
"latitude": 53.6,
"longitude": -2.3,
"name": "Bury",
@@ -69582,8 +62930,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3188402,
+ "feature_code": "PPLA2",
"latitude": 44.27513,
"longitude": 19.89821,
"name": "Valjevo",
@@ -69593,7 +62940,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3665688,
"latitude": 5.33775,
"longitude": -72.39586,
"name": "Yopal",
@@ -69603,7 +62949,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1786759,
"latitude": 31.70472,
"longitude": 112.25611,
"name": "Yicheng",
@@ -69613,7 +62958,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2015833,
"latitude": 51.38167,
"longitude": 128.12222,
"name": "Svobodnyy",
@@ -69622,28 +62966,34 @@
{
"country_code": "BY",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 618800,
- "latitude": 54.09658,
- "longitude": 28.3341,
- "name": "Zhodzina",
+ "feature_code": "PPLA2",
+ "latitude": 54.0985,
+ "longitude": 28.3331,
+ "name": "Horad Zhodzina",
"population": 61007
},
{
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 4152872,
"latitude": 29.21081,
"longitude": -81.02283,
"name": "Daytona Beach",
"population": 61005
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.53333,
+ "longitude": 0.08333,
+ "name": "Barking",
+ "population": 61000
+ },
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 499161,
"latitude": 46.4747,
"longitude": 41.54114,
"name": "Sal\u2019sk",
@@ -69653,7 +63003,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2719111,
"latitude": 59.34,
"longitude": 17.94,
"name": "Bromma",
@@ -69663,7 +63012,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 486968,
"latitude": 54.90083,
"longitude": 38.07083,
"name": "Stupino",
@@ -69673,7 +63021,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3185670,
"latitude": 40.71667,
"longitude": 19.56667,
"name": "Fier-\u00c7if\u00e7i",
@@ -69683,7 +63030,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 764849,
"latitude": 50.28709,
"longitude": 21.4239,
"name": "Mielec",
@@ -69693,7 +63039,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1846095,
"latitude": 36.85667,
"longitude": 127.44333,
"name": "Chinch'\u014fn",
@@ -69703,7 +63048,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2290964,
"latitude": 6.99041,
"longitude": -5.7442,
"name": "Bouafl\u00e9",
@@ -69713,7 +63057,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254420,
"latitude": 13.25861,
"longitude": 76.47833,
"name": "Tipt\u016br",
@@ -69723,7 +63066,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257800,
"latitude": 28.08333,
"longitude": 78.75,
"name": "Sahasw\u0101n",
@@ -69733,7 +63075,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3120304,
"latitude": 43.33904,
"longitude": -1.78938,
"name": "Irun",
@@ -69743,7 +63084,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2743977,
"latitude": 52.09,
"longitude": 5.23333,
"name": "Zeist",
@@ -69753,7 +63093,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1251081,
"latitude": 8.35647,
"longitude": 80.41726,
"name": "Anuradhapura",
@@ -69763,7 +63102,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3083440,
"latitude": 50.44548,
"longitude": 18.86147,
"name": "Tarnowskie G\u00f3ry",
@@ -69773,7 +63111,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 307657,
"latitude": 36.49939,
"longitude": 36.35755,
"name": "K\u0131r\u0131khan",
@@ -69783,7 +63120,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1787144,
"latitude": 34.65918,
"longitude": 109.22921,
"name": "Yanliang",
@@ -69792,8 +63128,7 @@
{
"country_code": "PH",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1719274,
+ "feature_code": "PPLA3",
"latitude": 13.93111,
"longitude": 121.42333,
"name": "Candelaria",
@@ -69803,7 +63138,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 4939085,
"latitude": 42.7762,
"longitude": -71.07728,
"name": "Haverhill",
@@ -69813,7 +63147,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034615,
"latitude": 52.33333,
"longitude": 124.73333,
"name": "Tahe",
@@ -69823,7 +63156,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266154,
"latitude": 15.35,
"longitude": 76.15,
"name": "Koppal",
@@ -69833,7 +63165,6 @@
"country_code": "US",
"elevation": 54,
"feature_code": "PPL",
- "geonameid": 4838524,
"latitude": 41.53815,
"longitude": -72.80704,
"name": "Meriden",
@@ -69843,7 +63174,6 @@
"country_code": "US",
"elevation": 97,
"feature_code": "PPL",
- "geonameid": 4348599,
"latitude": 38.98067,
"longitude": -77.10026,
"name": "Bethesda",
@@ -69853,7 +63183,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 149027,
"latitude": -3.28333,
"longitude": 31.52583,
"name": "Uyovu",
@@ -69863,7 +63192,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6089125,
"latitude": 42.8334,
"longitude": -80.38297,
"name": "Norfolk County",
@@ -69873,7 +63201,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256087,
"latitude": 30.64556,
"longitude": 76.3825,
"name": "Sirhind",
@@ -69883,7 +63210,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273751,
"latitude": 25.9,
"longitude": 78.33333,
"name": "Dabra",
@@ -69893,7 +63219,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037494,
"latitude": 41.77639,
"longitude": 126.03194,
"name": "Erdaojiang",
@@ -69903,7 +63228,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268246,
"latitude": 9.73647,
"longitude": 77.2847,
"name": "Cumbum",
@@ -69913,7 +63237,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3834601,
"latitude": -22.51636,
"longitude": -63.80131,
"name": "Tartagal",
@@ -69923,7 +63246,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3058780,
"latitude": 49.06651,
"longitude": 18.92399,
"name": "Martin",
@@ -69933,7 +63255,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 504935,
"latitude": 43.75741,
"longitude": 44.0297,
"name": "Prokhladnyy",
@@ -69943,7 +63264,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1792916,
"latitude": 30.98664,
"longitude": 103.93933,
"name": "Tianpeng",
@@ -69953,7 +63273,6 @@
"country_code": "US",
"elevation": 270,
"feature_code": "PPL",
- "geonameid": 5025219,
"latitude": 44.85469,
"longitude": -93.47079,
"name": "Eden Prairie",
@@ -69963,7 +63282,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2971549,
"latitude": 48.3,
"longitude": 4.08333,
"name": "Troyes",
@@ -69973,7 +63291,6 @@
"country_code": "US",
"elevation": 152,
"feature_code": "PPLA2",
- "geonameid": 4265737,
"latitude": 39.4667,
"longitude": -87.41391,
"name": "Terre Haute",
@@ -69983,7 +63300,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1640185,
"latitude": -7.58333,
"longitude": 112.1,
"name": "Kertosono",
@@ -69993,7 +63309,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1175560,
"latitude": 30.40677,
"longitude": 71.8667,
"name": "Kab\u012brw\u0101la",
@@ -70003,7 +63318,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1788206,
"latitude": 35.16278,
"longitude": 112.865,
"name": "Xixiang",
@@ -70013,7 +63327,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190586,
"latitude": 45.16028,
"longitude": 18.01556,
"name": "Slavonski Brod",
@@ -70023,7 +63336,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2786824,
"latitude": 50.58362,
"longitude": 5.50115,
"name": "Seraing",
@@ -70033,7 +63345,6 @@
"country_code": "US",
"elevation": 33,
"feature_code": "PPL",
- "geonameid": 4504621,
"latitude": 39.48623,
"longitude": -75.02573,
"name": "Vineland",
@@ -70043,7 +63354,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 493231,
"latitude": 56.84865,
"longitude": 41.38833,
"name": "Shuya",
@@ -70053,7 +63363,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 495394,
"latitude": 54.00513,
"longitude": 37.52194,
"name": "Shch\u00ebkino",
@@ -70063,7 +63372,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1617111,
"latitude": 13.97738,
"longitude": 100.77776,
"name": "Ban Lam Luk Ka",
@@ -70073,7 +63381,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 667303,
"latitude": 45.86667,
"longitude": 25.78333,
"name": "Sf\u00e2ntu-Gheorghe",
@@ -70083,7 +63390,6 @@
"country_code": "US",
"elevation": 24,
"feature_code": "PPL",
- "geonameid": 5110077,
"latitude": 40.78121,
"longitude": -73.24623,
"name": "Brentwood",
@@ -70093,7 +63399,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 264194,
"latitude": 38.01667,
"longitude": 23.83333,
"name": "Ag\u00eda Paraskev\u00ed",
@@ -70103,7 +63408,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3121145,
"latitude": 41.60797,
"longitude": 2.28773,
"name": "Granollers",
@@ -70113,7 +63417,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 572665,
"latitude": 56.35808,
"longitude": 44.07477,
"name": "Bor",
@@ -70123,7 +63426,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278466,
"latitude": 22.88333,
"longitude": 87.78333,
"name": "Ar\u0101mb\u0101gh",
@@ -70133,7 +63435,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270099,
"latitude": 23.6,
"longitude": 72.95,
"name": "Himatnagar",
@@ -70143,7 +63444,6 @@
"country_code": "US",
"elevation": 20,
"feature_code": "PPL",
- "geonameid": 4954380,
"latitude": 42.37649,
"longitude": -71.23561,
"name": "Waltham",
@@ -70153,7 +63453,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035707,
"latitude": 42.11667,
"longitude": 118.78333,
"name": "Mujiayingzi",
@@ -70163,7 +63462,6 @@
"country_code": "US",
"elevation": 298,
"feature_code": "PPLA2",
- "geonameid": 4525353,
"latitude": 39.92423,
"longitude": -83.80882,
"name": "Springfield",
@@ -70173,7 +63471,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 564719,
"latitude": 56.73333,
"longitude": 37.16667,
"name": "Dubna",
@@ -70183,7 +63480,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2331939,
"latitude": 7.80236,
"longitude": 6.743,
"name": "Lokoja",
@@ -70193,7 +63489,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1680505,
"latitude": 10.57396,
"longitude": 123.3933,
"name": "Ualog",
@@ -70203,7 +63498,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1816924,
"latitude": 31.55037,
"longitude": 105.99381,
"name": "Langzhong",
@@ -70213,7 +63507,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3980605,
"latitude": 20.38333,
"longitude": -101.2,
"name": "Valle de Santiago",
@@ -70223,7 +63516,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4153132,
"latitude": 26.46146,
"longitude": -80.07282,
"name": "Delray Beach",
@@ -70233,7 +63525,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4159050,
"latitude": 25.46872,
"longitude": -80.47756,
"name": "Homestead",
@@ -70243,7 +63534,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851125,
"latitude": 34.51667,
"longitude": 135.43333,
"name": "Takaishi",
@@ -70253,7 +63543,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848188,
"latitude": 35.88528,
"longitude": 139.83944,
"name": "Yoshikawa",
@@ -70263,7 +63552,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265331,
"latitude": 27.65312,
"longitude": 74.39993,
"name": "L\u0101dn\u016bn",
@@ -70273,7 +63561,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2881485,
"latitude": 48.53333,
"longitude": 12.15,
"name": "Landshut",
@@ -70283,7 +63570,6 @@
"country_code": "US",
"elevation": 93,
"feature_code": "PPL",
- "geonameid": 5282835,
"latitude": 41.67176,
"longitude": -72.94927,
"name": "Bristol",
@@ -70293,7 +63579,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1802550,
"latitude": 37.65083,
"longitude": 120.32861,
"name": "Longkou",
@@ -70303,7 +63588,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 314967,
"latitude": 36.62167,
"longitude": 29.11639,
"name": "Fethiye",
@@ -70313,7 +63597,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2636177,
"latitude": 51.02111,
"longitude": -3.10472,
"name": "Taunton",
@@ -70323,7 +63606,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4174738,
"latitude": 26.21286,
"longitude": -80.24977,
"name": "Tamarac",
@@ -70333,7 +63615,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453639,
"latitude": -21.99611,
"longitude": -47.42583,
"name": "Pirassununga",
@@ -70343,7 +63624,6 @@
"country_code": "US",
"elevation": 222,
"feature_code": "PPL",
- "geonameid": 5278420,
"latitude": 43.01668,
"longitude": -88.00703,
"name": "West Allis",
@@ -70353,7 +63633,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2656396,
"latitude": 54.65338,
"longitude": -5.66895,
"name": "Bangor",
@@ -70363,7 +63642,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261309,
"latitude": 16.4,
"longitude": 74.38333,
"name": "Nip\u0101ni",
@@ -70373,7 +63651,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3084093,
"latitude": 50.84378,
"longitude": 16.48859,
"name": "\u015awidnica",
@@ -70383,7 +63660,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1813851,
"latitude": 31.55978,
"longitude": 118.48289,
"name": "Gushu",
@@ -70393,7 +63669,6 @@
"country_code": "US",
"elevation": 296,
"feature_code": "PPL",
- "geonameid": 5019767,
"latitude": 44.76774,
"longitude": -93.27772,
"name": "Burnsville",
@@ -70403,7 +63678,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2362909,
"latitude": 10.63333,
"longitude": -4.76667,
"name": "Banfora",
@@ -70413,7 +63687,6 @@
"country_code": "ES",
"elevation": 34,
"feature_code": "PPLA3",
- "geonameid": 2513477,
"latitude": 36.75066,
"longitude": -3.5179,
"name": "Motril",
@@ -70423,7 +63696,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2676176,
"latitude": 59.19554,
"longitude": 17.62525,
"name": "S\u00f6dert\u00e4lje",
@@ -70433,7 +63705,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275230,
"latitude": 22.41667,
"longitude": 72.9,
"name": "Borsad",
@@ -70443,7 +63714,6 @@
"country_code": "US",
"elevation": 117,
"feature_code": "PPL",
- "geonameid": 5374406,
"latitude": 34.06251,
"longitude": -118.12285,
"name": "Monterey Park",
@@ -70453,7 +63723,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3370352,
"latitude": -33.56668,
"longitude": 18.48335,
"name": "Atlantis",
@@ -70463,7 +63732,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3068927,
"latitude": 49.93866,
"longitude": 17.90257,
"name": "Opava",
@@ -70473,7 +63741,6 @@
"country_code": "US",
"elevation": 91,
"feature_code": "PPL",
- "geonameid": 5363922,
"latitude": 33.93196,
"longitude": -117.94617,
"name": "La Habra",
@@ -70483,7 +63750,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266124,
"latitude": 18.81667,
"longitude": 78.71667,
"name": "Koratla",
@@ -70493,7 +63759,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266509,
"latitude": 29.51667,
"longitude": 78.2,
"name": "K\u012bratpur",
@@ -70503,7 +63768,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3170116,
"latitude": 40.81563,
"longitude": 14.33716,
"name": "Portici",
@@ -70513,7 +63777,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1791347,
"latitude": 29.60077,
"longitude": 118.17495,
"name": "Wucheng",
@@ -70523,7 +63786,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 1785572,
"latitude": 34.06154,
"longitude": 108.62905,
"name": "Yuxia",
@@ -70533,7 +63795,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3534915,
"latitude": 21.80194,
"longitude": -79.98417,
"name": "Trinidad",
@@ -70543,7 +63804,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445764,
"latitude": -16.3575,
"longitude": -46.90611,
"name": "Una\u00ed",
@@ -70553,7 +63813,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797038,
"latitude": 33.00111,
"longitude": 114.35417,
"name": "Runan",
@@ -70563,7 +63822,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253079,
"latitude": 27.58333,
"longitude": 77.7,
"name": "Vrind\u0101van",
@@ -70573,7 +63831,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650064,
"latitude": -2.58333,
"longitude": 115.38333,
"name": "Barabai",
@@ -70583,7 +63840,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2581754,
"latitude": 36.44766,
"longitude": 10.7557,
"name": "Douane",
@@ -70593,7 +63849,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 350422,
"latitude": 25.91407,
"longitude": 32.76362,
"name": "Kousa",
@@ -70603,7 +63858,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1225018,
"latitude": 8.7514,
"longitude": 80.4971,
"name": "Vavuniya",
@@ -70613,7 +63867,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1801455,
"latitude": 30.42139,
"longitude": 111.75333,
"name": "Zhijiang",
@@ -70623,7 +63876,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2844988,
"latitude": 47.85637,
"longitude": 12.12247,
"name": "Rosenheim",
@@ -70633,7 +63885,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270171,
"latitude": 14.8,
"longitude": 75.4,
"name": "H\u0101veri",
@@ -70643,7 +63894,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793089,
"latitude": 34.85,
"longitude": 117.33333,
"name": "Taozhuang",
@@ -70653,7 +63903,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2643044,
"latitude": 51.38132,
"longitude": 1.38617,
"name": "Margate",
@@ -70663,17 +63912,24 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3083426,
"latitude": 54.09242,
"longitude": 18.77787,
"name": "Tczew",
"population": 60133
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.45,
+ "longitude": 13.58333,
+ "name": "K\u00f6penick",
+ "population": 60128
+ },
{
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 400769,
"latitude": 8.47738,
"longitude": 47.35971,
"name": "Laascaanood",
@@ -70683,7 +63939,6 @@
"country_code": "US",
"elevation": 35,
"feature_code": "PPL",
- "geonameid": 4168459,
"latitude": 28.55778,
"longitude": -81.4534,
"name": "Pine Hills",
@@ -70693,7 +63948,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1568212,
"latitude": 10.3,
"longitude": 105.76667,
"name": "Sa \u00d0\u00e9c",
@@ -70703,7 +63957,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466988,
"latitude": -19.78972,
"longitude": -42.13917,
"name": "Caratinga",
@@ -70713,17 +63966,15 @@
"country_code": "KW",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 285787,
"latitude": 29.36972,
"longitude": 47.97833,
- "name": "Kuwait",
+ "name": "Kuwait City",
"population": 60064
},
{
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1847968,
"latitude": 35.29167,
"longitude": 139.58556,
"name": "Zushi",
@@ -70733,7 +63984,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 512023,
"latitude": 55.78071,
"longitude": 38.65448,
"name": "Pavlovskiy Posad",
@@ -70743,7 +63993,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859094,
"latitude": 33.73333,
"longitude": 130.46667,
"name": "Koga",
@@ -70753,7 +64002,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255396,
"latitude": 26.11667,
"longitude": 86.6,
"name": "Supaul",
@@ -70763,7 +64011,6 @@
"country_code": "US",
"elevation": 6,
"feature_code": "PPL",
- "geonameid": 5802570,
"latitude": 48.05176,
"longitude": -122.17708,
"name": "Marysville",
@@ -70773,7 +64020,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2524881,
"latitude": 39.0851,
"longitude": 17.11781,
"name": "Crotone",
@@ -70783,7 +64029,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2236568,
"latitude": -7.60874,
"longitude": 15.06131,
"name": "U\u00edge",
@@ -70793,7 +64038,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2207259,
"latitude": -27.48333,
"longitude": 153.01667,
"name": "South Brisbane",
@@ -70803,7 +64047,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302628,
"latitude": -34.91118,
"longitude": 138.70735,
"name": "Adelaide Hills",
@@ -70813,7 +64056,6 @@
"country_code": "ES",
"elevation": 140,
"feature_code": "PPL",
- "geonameid": 6618856,
"latitude": 43.25347,
"longitude": -2.9161,
"name": "Santutxu",
@@ -70823,7 +64065,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2653265,
"latitude": 51.48755,
"longitude": -0.16936,
"name": "Chelsea",
@@ -70833,7 +64074,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271175,
"latitude": 24.18333,
"longitude": 86.3,
"name": "Gir\u012bd\u012bh",
@@ -70843,7 +64083,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7280718,
"latitude": 19.38119,
"longitude": -99.13685,
"name": "Colonia Nativitas",
@@ -70853,7 +64092,6 @@
"country_code": "US",
"elevation": 4,
"feature_code": "PPL",
- "geonameid": 5108815,
"latitude": 40.60177,
"longitude": -73.99403,
"name": "Bensonhurst",
@@ -70863,7 +64101,6 @@
"country_code": "US",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5113481,
"latitude": 40.57788,
"longitude": -73.99403,
"name": "Coney Island",
@@ -70873,7 +64110,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1512339,
"latitude": 41.11202,
"longitude": 69.0471,
"name": "Yangiy\u016dl",
@@ -70883,7 +64119,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2488722,
"latitude": 36.6204,
"longitude": 3.22248,
"name": "Meftah",
@@ -70893,7 +64128,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258290,
"latitude": 14.7,
"longitude": 76.86667,
"name": "R\u0101yadrug",
@@ -70903,7 +64137,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1683319,
"latitude": 14.4968,
"longitude": 121.2846,
"name": "Tanay",
@@ -70913,7 +64146,6 @@
"country_code": "US",
"elevation": 11,
"feature_code": "PPLA2",
- "geonameid": 5393052,
"latitude": 36.97412,
"longitude": -122.0308,
"name": "Santa Cruz",
@@ -70923,7 +64155,6 @@
"country_code": "US",
"elevation": 153,
"feature_code": "PPL",
- "geonameid": 4355843,
"latitude": 39.14344,
"longitude": -77.20137,
"name": "Gaithersburg",
@@ -70933,7 +64164,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1697376,
"latitude": 14.7098,
"longitude": 120.9362,
"name": "Obando",
@@ -70943,7 +64173,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 339708,
"latitude": 10.35,
"longitude": 37.73333,
"name": "Debre Mark\u2019os",
@@ -70953,7 +64182,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2281606,
"latitude": 6.61667,
"longitude": -5.91667,
"name": "Sinfra",
@@ -70963,7 +64191,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1735022,
"latitude": 3.4506,
"longitude": 102.4176,
"name": "Temerluh",
@@ -70973,7 +64200,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1843841,
"latitude": 35.05944,
"longitude": 126.985,
"name": "Hwasun",
@@ -70983,7 +64209,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806327,
"latitude": 25.48722,
"longitude": 119.19861,
"name": "Jiangkou",
@@ -70993,7 +64218,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2649672,
"latitude": 51.29424,
"longitude": -0.75565,
"name": "Farnborough",
@@ -71003,7 +64227,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 952734,
"latitude": -29.32816,
"longitude": 31.28954,
"name": "Stanger",
@@ -71013,9 +64236,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 90026,
- "latitude": 34.89046,
- "longitude": 44.62994,
+ "latitude": 34.88808,
+ "longitude": 44.63256,
"name": "Tozkhurmato",
"population": 59886
},
@@ -71023,7 +64245,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1285899,
"latitude": 20.43333,
"longitude": 96.15,
"name": "Yamethin",
@@ -71033,7 +64254,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2485582,
"latitude": 35.96124,
"longitude": 0.91896,
"name": "Oued Rhiou",
@@ -71043,7 +64263,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648084,
"latitude": -7.53306,
"longitude": 110.59583,
"name": "Boyolali",
@@ -71053,7 +64272,6 @@
"country_code": "US",
"elevation": 31,
"feature_code": "PPL",
- "geonameid": 4835654,
"latitude": 41.39593,
"longitude": -72.89677,
"name": "Hamden",
@@ -71063,7 +64281,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3037423,
"latitude": 48.75,
"longitude": 2.3,
"name": "Antony",
@@ -71073,7 +64290,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261181,
"latitude": 27.23333,
"longitude": 94.11667,
"name": "North Lakhimpur",
@@ -71083,27 +64299,15 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804609,
"latitude": 23.7,
"longitude": 109.26667,
"name": "Laibin",
"population": 59835
},
- {
- "country_code": "BG",
- "elevation": 0,
- "feature_code": "PPLX",
- "geonameid": 726409,
- "latitude": 42.9,
- "longitude": 25.31667,
- "name": "Tonchevtsi",
- "population": 59834
- },
{
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799832,
"latitude": 27.92333,
"longitude": 118.53333,
"name": "Pucheng",
@@ -71113,7 +64317,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2945358,
"latitude": 52.41667,
"longitude": 12.55,
"name": "Brandenburg an der Havel",
@@ -71123,7 +64326,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1728584,
"latitude": 14.81667,
"longitude": 120.86667,
"name": "Balagtas",
@@ -71133,7 +64335,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 353802,
"latitude": 24.47669,
"longitude": 32.94626,
"name": "Kawm Umb\u016b",
@@ -71143,7 +64344,6 @@
"country_code": "US",
"elevation": 118,
"feature_code": "PPLA2",
- "geonameid": 5806298,
"latitude": 46.23958,
"longitude": -119.10057,
"name": "Pasco",
@@ -71153,7 +64353,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4156091,
"latitude": 25.77288,
"longitude": -80.34783,
"name": "Fountainebleau",
@@ -71163,7 +64362,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3089125,
"latitude": 50.38017,
"longitude": 18.92653,
"name": "Piekary \u015al\u0105skie",
@@ -71173,7 +64371,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254274,
"latitude": 29.7,
"longitude": 75.9,
"name": "Toh\u0101na",
@@ -71183,7 +64380,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503181,
"latitude": 36.57412,
"longitude": 2.91214,
"name": "Boufarik",
@@ -71193,7 +64389,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2842884,
"latitude": 49.9925,
"longitude": 8.435,
"name": "R\u00fcsselsheim",
@@ -71203,7 +64398,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460730,
"latitude": -15.24889,
"longitude": -40.24778,
"name": "Itapetinga",
@@ -71213,7 +64407,6 @@
"country_code": "US",
"elevation": 177,
"feature_code": "PPL",
- "geonameid": 5010978,
"latitude": 42.49698,
"longitude": -82.88881,
"name": "Saint Clair Shores",
@@ -71223,7 +64416,6 @@
"country_code": "US",
"elevation": 20,
"feature_code": "PPLA2",
- "geonameid": 4160983,
"latitude": 28.30468,
"longitude": -81.41667,
"name": "Kissimmee",
@@ -71233,7 +64425,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1217007,
"latitude": 39.0375,
"longitude": 65.585,
"name": "Koson",
@@ -71243,7 +64434,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2638960,
"latitude": 53.34174,
"longitude": -2.73124,
"name": "Runcorn",
@@ -71253,7 +64443,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 135298,
"latitude": 37.07645,
"longitude": 57.51009,
"name": "Esfar\u0101yen",
@@ -71263,7 +64452,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3457025,
"latitude": -21.46778,
"longitude": -47.00472,
"name": "Mococa",
@@ -71273,7 +64461,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2287298,
"latitude": 8.13728,
"longitude": -5.10095,
"name": "Katiola",
@@ -71283,7 +64470,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2343641,
"latitude": 6.74206,
"longitude": 6.139,
"name": "Ekpoma",
@@ -71293,7 +64479,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 142872,
"latitude": 34.78241,
"longitude": 48.11853,
"name": "Asad\u0101b\u0101d",
@@ -71303,7 +64488,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449340,
"latitude": -28.66056,
"longitude": -56.00444,
"name": "S\u00e3o Borja",
@@ -71313,7 +64497,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647984,
"latitude": 52.60831,
"longitude": 1.73052,
"name": "Great Yarmouth",
@@ -71323,7 +64506,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2663536,
"latitude": 56.87767,
"longitude": 14.80906,
"name": "V\u00e4xj\u00f6",
@@ -71333,7 +64515,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856068,
"latitude": 26.58806,
"longitude": 127.97611,
"name": "Nago",
@@ -71343,7 +64524,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3540680,
"latitude": 22.71417,
"longitude": -83.04806,
"name": "San Crist\u00f3bal",
@@ -71353,7 +64533,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2757220,
"latitude": 52.95988,
"longitude": 4.75933,
"name": "Den Helder",
@@ -71363,7 +64542,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2885657,
"latitude": 52.44254,
"longitude": 13.58228,
"name": "Berlin K\u00f6penick",
@@ -71373,7 +64551,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111049,
"latitude": 38.31667,
"longitude": 141.03333,
"name": "Shiogama",
@@ -71383,7 +64560,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1626921,
"latitude": -4.1279,
"longitude": 120.0297,
"name": "Sengkang",
@@ -71393,7 +64569,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271644,
"latitude": 29.76667,
"longitude": 77.25,
"name": "Gangoh",
@@ -71403,7 +64578,6 @@
"country_code": "US",
"elevation": 25,
"feature_code": "PPL",
- "geonameid": 5346646,
"latitude": 33.03699,
"longitude": -117.29198,
"name": "Encinitas",
@@ -71413,7 +64587,6 @@
"country_code": "US",
"elevation": 281,
"feature_code": "PPLA2",
- "geonameid": 5006166,
"latitude": 42.63892,
"longitude": -83.29105,
"name": "Pontiac",
@@ -71423,7 +64596,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 281141,
"latitude": 31.41783,
"longitude": 34.35033,
"name": "Dayr al Bala\u1e29",
@@ -71433,7 +64605,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784759,
"latitude": 42.37056,
"longitude": 21.15528,
"name": "Ferizaj",
@@ -71443,7 +64614,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5942845,
"latitude": 45.88336,
"longitude": -72.48241,
"name": "Drummondville",
@@ -71453,7 +64623,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3583102,
"latitude": 13.71889,
"longitude": -89.72417,
"name": "Sonsonate",
@@ -71463,7 +64632,6 @@
"country_code": "US",
"elevation": 1856,
"feature_code": "PPLA",
- "geonameid": 5821086,
"latitude": 41.13998,
"longitude": -104.82025,
"name": "Cheyenne",
@@ -71473,7 +64641,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2643186,
"latitude": 51.52279,
"longitude": -0.71986,
"name": "Maidenhead",
@@ -71483,7 +64650,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1791428,
"latitude": 35.7275,
"longitude": 116.49611,
"name": "Wenshang",
@@ -71493,7 +64659,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2639447,
"latitude": 51.65896,
"longitude": -3.44885,
"name": "Rhondda",
@@ -71503,7 +64668,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4942939,
"latitude": 42.4251,
"longitude": -71.06616,
"name": "Malden",
@@ -71513,7 +64677,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1587976,
"latitude": 10.23333,
"longitude": 106.38333,
"name": "B\u1ebfn Tre",
@@ -71523,7 +64686,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265911,
"latitude": 9.58333,
"longitude": 76.51667,
"name": "Kottayam",
@@ -71533,7 +64695,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2691459,
"latitude": 57.6554,
"longitude": 12.01378,
"name": "M\u00f6lndal",
@@ -71543,7 +64704,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466978,
"latitude": -28.28389,
"longitude": -52.78639,
"name": "Carazinho",
@@ -71553,7 +64713,6 @@
"country_code": "CZ",
"elevation": 291,
"feature_code": "PPL",
- "geonameid": 3076127,
"latitude": 49.68333,
"longitude": 18.35,
"name": "Fr\u00fddek-M\u00edstek",
@@ -71563,7 +64722,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3006767,
"latitude": 46.66667,
"longitude": -1.43333,
"name": "La Roche-sur-Yon",
@@ -71573,7 +64731,6 @@
"country_code": "US",
"elevation": 140,
"feature_code": "PPL",
- "geonameid": 5754005,
"latitude": 44.04624,
"longitude": -123.02203,
"name": "Springfield",
@@ -71583,7 +64740,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263797,
"latitude": 16.43333,
"longitude": 80.55,
"name": "Mangalagiri",
@@ -71593,7 +64749,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1216982,
"latitude": 39.89889,
"longitude": 66.25611,
"name": "Kattaqo\u2019rg\u2019on",
@@ -71603,7 +64758,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2881085,
"latitude": 51.1,
"longitude": 6.95,
"name": "Langenfeld",
@@ -71613,7 +64767,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033149,
"latitude": 45.5,
"longitude": 125.13333,
"name": "Zhaoyuan",
@@ -71623,7 +64776,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035758,
"latitude": 47.16667,
"longitude": 125.91667,
"name": "Mingshui",
@@ -71633,7 +64785,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812990,
"latitude": 32.68222,
"longitude": 112.08194,
"name": "Dengzhou",
@@ -71643,7 +64794,6 @@
"country_code": "US",
"elevation": 110,
"feature_code": "PPLA2",
- "geonameid": 5197079,
"latitude": 40.03788,
"longitude": -76.30551,
"name": "Lancaster",
@@ -71653,7 +64803,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2643567,
"latitude": 52.76667,
"longitude": -1.2,
"name": "Loughborough",
@@ -71663,7 +64812,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3164039,
"latitude": 42.41783,
"longitude": 12.10856,
"name": "Viterbo",
@@ -71673,7 +64821,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261852,
"latitude": 16.45,
"longitude": 81.66667,
"name": "Narasapur",
@@ -71683,7 +64830,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3872255,
"latitude": -32.75,
"longitude": -70.73333,
"name": "San Felipe",
@@ -71693,7 +64839,6 @@
"country_code": "US",
"elevation": 88,
"feature_code": "PPL",
- "geonameid": 5403783,
"latitude": 36.20773,
"longitude": -119.34734,
"name": "Tulare",
@@ -71703,7 +64848,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 648900,
"latitude": 61.05871,
"longitude": 28.18871,
"name": "Lappeenranta",
@@ -71713,7 +64857,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4005297,
"latitude": 25.46667,
"longitude": -108.1,
"name": "Guam\u00fachil",
@@ -71723,7 +64866,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2701680,
"latitude": 59.3793,
"longitude": 13.50357,
"name": "Karlstad",
@@ -71733,7 +64875,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 735861,
"latitude": 40.93972,
"longitude": 24.40194,
"name": "Kav\u00e1la",
@@ -71743,7 +64884,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037311,
"latitude": 47.91472,
"longitude": 123.50306,
"name": "Gannan",
@@ -71753,7 +64893,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2857798,
"latitude": 48.48333,
"longitude": 7.93333,
"name": "Offenburg",
@@ -71763,7 +64902,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3345440,
"latitude": 54.44709,
"longitude": -6.387,
"name": "Craigavon",
@@ -71773,7 +64911,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1638562,
"latitude": -7.11667,
"longitude": 112.41667,
"name": "Lamongan",
@@ -71783,7 +64920,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2186280,
"latitude": -41.28333,
"longitude": 173.28333,
"name": "Nelson",
@@ -71793,7 +64929,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808106,
"latitude": 27.11,
"longitude": 109.99556,
"name": "Hongjiang",
@@ -71803,7 +64938,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257431,
"latitude": 17.62944,
"longitude": 78.09167,
"name": "Sang\u0101reddi",
@@ -71813,7 +64947,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 493702,
"latitude": 45.12833,
"longitude": 42.02556,
"name": "Mikhaylovsk",
@@ -71823,7 +64956,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3670419,
"latitude": 8.94616,
"longitude": -75.44275,
"name": "Sahag\u00fan",
@@ -71833,7 +64965,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806167,
"latitude": 27.04694,
"longitude": 118.32528,
"name": "Jian\u2019ou",
@@ -71843,7 +64974,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 543704,
"latitude": 61.25745,
"longitude": 46.64963,
"name": "Kotlas",
@@ -71853,7 +64983,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682292,
"latitude": 10.52066,
"longitude": -74.18504,
"name": "Fundaci\u00f3n",
@@ -71863,7 +64992,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266416,
"latitude": 16.98333,
"longitude": 79.96667,
"name": "Kod\u0101r",
@@ -71873,7 +65001,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1049861,
"latitude": -24.68667,
"longitude": 33.53056,
"name": "Chibuto",
@@ -71883,7 +65010,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037370,
"latitude": 46.72167,
"longitude": 131.13944,
"name": "Fuli",
@@ -71893,7 +65019,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3512208,
"latitude": 18.45319,
"longitude": -70.7349,
"name": "Azua de Compostela",
@@ -71903,7 +65028,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2521570,
"latitude": 28.96302,
"longitude": -13.54769,
"name": "Arrecife",
@@ -71913,7 +65037,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 601417,
"latitude": 43.06874,
"longitude": 58.90372,
"name": "Oltinko\u2019l",
@@ -71923,7 +65046,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253888,
"latitude": 12.8108,
"longitude": 74.8629,
"name": "Ullal",
@@ -71933,7 +65055,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1702096,
"latitude": 16.0438,
"longitude": 120.4861,
"name": "Manaoag",
@@ -71943,7 +65064,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1809003,
"latitude": 34.58167,
"longitude": 119.12889,
"name": "Haizhou",
@@ -71953,7 +65073,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3641099,
"latitude": 8.61366,
"longitude": -71.65284,
"name": "El Vig\u00eda",
@@ -71963,7 +65082,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3192224,
"latitude": 44.86833,
"longitude": 13.84806,
"name": "Pula",
@@ -71973,7 +65091,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786720,
"latitude": 35.81139,
"longitude": 114.31667,
"name": "Yigou",
@@ -71983,7 +65100,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3835793,
"latitude": -31.66274,
"longitude": -60.7653,
"name": "Santo Tom\u00e9",
@@ -71993,7 +65109,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3837675,
"latitude": -31.42797,
"longitude": -62.08266,
"name": "San Francisco",
@@ -72003,7 +65118,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1487281,
"latitude": 56.97047,
"longitude": 60.58219,
"name": "Verkhnyaya Pyshma",
@@ -72013,7 +65127,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 172408,
"latitude": 32.70896,
"longitude": 36.56951,
"name": "As Suwayd\u0101\u2019",
@@ -72023,7 +65136,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 4834157,
"latitude": 41.14121,
"longitude": -73.26373,
"name": "Fairfield",
@@ -72033,7 +65145,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1490256,
"latitude": 69.4865,
"longitude": 88.3972,
"name": "Talnakh",
@@ -72043,7 +65154,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036241,
"latitude": 40.02611,
"longitude": 124.32861,
"name": "Langtou",
@@ -72053,7 +65163,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2715953,
"latitude": 59.36661,
"longitude": 16.5077,
"name": "Eskilstuna",
@@ -72063,7 +65172,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 215527,
"latitude": -6.13333,
"longitude": 24.48333,
"name": "Kabinda",
@@ -72073,7 +65181,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3803515,
"latitude": 10.35782,
"longitude": -66.80252,
"name": "Caucaguita",
@@ -72083,7 +65190,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1567148,
"latitude": 15.56667,
"longitude": 108.48333,
"name": "Tam K\u1ef3",
@@ -72093,7 +65199,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263752,
"latitude": 21.11667,
"longitude": 70.11667,
"name": "M\u0101ngrol",
@@ -72103,7 +65208,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271049,
"latitude": 28.08333,
"longitude": 80.46667,
"name": "Gola Gokarann\u0101th",
@@ -72113,7 +65217,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 111421,
"latitude": 30.81271,
"longitude": 56.56399,
"name": "Zarand",
@@ -72123,7 +65226,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2826287,
"latitude": 54.30911,
"longitude": 13.0818,
"name": "Stralsund",
@@ -72133,7 +65235,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1926020,
"latitude": 33.22375,
"longitude": 132.56001,
"name": "Uwajima",
@@ -72143,7 +65244,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262958,
"latitude": 23.46667,
"longitude": 73.3,
"name": "Mod\u0101sa",
@@ -72153,7 +65253,6 @@
"country_code": "US",
"elevation": 287,
"feature_code": "PPL",
- "geonameid": 4846834,
"latitude": 42.03471,
"longitude": -93.61994,
"name": "Ames",
@@ -72163,7 +65262,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449822,
"latitude": -27.87083,
"longitude": -54.48139,
"name": "Santa Rosa",
@@ -72173,7 +65271,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1159362,
"latitude": 35.244,
"longitude": 60.6225,
"name": "Torbat-e J\u0101m",
@@ -72183,7 +65280,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3629614,
"latitude": 11.65806,
"longitude": -70.215,
"name": "Punta Card\u00f3n",
@@ -72193,7 +65289,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789945,
"latitude": 26.19028,
"longitude": 107.5125,
"name": "Xiaoweizhai",
@@ -72203,7 +65298,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650670,
"latitude": -7.61278,
"longitude": 110.78389,
"name": "Baki",
@@ -72213,7 +65307,6 @@
"country_code": "US",
"elevation": 95,
"feature_code": "PPLA2",
- "geonameid": 4106458,
"latitude": 35.0887,
"longitude": -92.4421,
"name": "Conway",
@@ -72223,7 +65316,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 527012,
"latitude": 50.06,
"longitude": 43.2379,
"name": "Mikhaylovka",
@@ -72233,7 +65325,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2675408,
"latitude": 59.42804,
"longitude": 17.95093,
"name": "Sollentuna",
@@ -72243,7 +65334,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 490996,
"latitude": 56.18333,
"longitude": 36.98333,
"name": "Solnechnogorsk",
@@ -72253,7 +65343,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111325,
"latitude": 36.86667,
"longitude": 140.03333,
"name": "\u014ctawara",
@@ -72263,7 +65352,6 @@
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2762372,
"latitude": 46.61028,
"longitude": 13.85583,
"name": "Villach",
@@ -72273,7 +65361,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446652,
"latitude": -24.32389,
"longitude": -50.61556,
"name": "Tel\u00eamaco Borba",
@@ -72283,7 +65370,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461973,
"latitude": -14.22333,
"longitude": -42.78139,
"name": "Guanambi",
@@ -72293,7 +65379,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2479609,
"latitude": 35.52832,
"longitude": -0.19369,
"name": "Sig",
@@ -72303,7 +65388,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2826595,
"latitude": 50.76667,
"longitude": 6.23333,
"name": "Stolberg",
@@ -72313,7 +65397,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2035754,
"latitude": 43.10694,
"longitude": 128.92167,
"name": "Mingyue",
@@ -72323,7 +65406,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1727400,
"latitude": 6.42389,
"longitude": 124.77833,
"name": "Ba\u00f1ga",
@@ -72333,7 +65415,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2521139,
"latitude": 36.59548,
"longitude": -4.56937,
"name": "Benalm\u00e1dena",
@@ -72343,7 +65424,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254710,
"latitude": 26.63333,
"longitude": 92.8,
"name": "Tezpur",
@@ -72353,7 +65433,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 143860,
"latitude": 35.6596,
"longitude": 51.0593,
"name": "Shahr\u012b\u0101r",
@@ -72363,7 +65442,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 143073,
"latitude": 32.31001,
"longitude": 54.01747,
"name": "Ardak\u0101n",
@@ -72373,7 +65451,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPL",
- "geonameid": 5351549,
"latitude": 33.88835,
"longitude": -118.30896,
"name": "Gardena",
@@ -72383,7 +65460,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1926054,
"latitude": 33.91667,
"longitude": 133.18333,
"name": "Saij\u014d",
@@ -72393,7 +65469,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6694821,
"latitude": 36.56922,
"longitude": 136.91162,
"name": "Nanto-shi",
@@ -72403,7 +65478,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2249782,
"latitude": 12.88333,
"longitude": -14.95,
"name": "Kolda",
@@ -72413,7 +65487,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2634873,
"latitude": 53.42324,
"longitude": -3.06497,
"name": "Wallasey",
@@ -72423,7 +65496,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1153090,
"latitude": 16.48344,
"longitude": 99.52153,
"name": "Kamphaeng Phet",
@@ -72433,7 +65505,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4166232,
"latitude": 25.89009,
"longitude": -80.18671,
"name": "North Miami",
@@ -72443,7 +65514,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3613321,
"latitude": 14.45,
"longitude": -87.63333,
"name": "Comayagua",
@@ -72453,7 +65523,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254589,
"latitude": 10.77269,
"longitude": 79.6368,
"name": "Thiruvarur",
@@ -72463,7 +65532,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1793774,
"latitude": 36.95389,
"longitude": 118.10472,
"name": "Suozhen",
@@ -72473,7 +65541,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3109402,
"latitude": 41.49109,
"longitude": 2.14079,
"name": "Cerdanyola del Vall\u00e8s",
@@ -72483,7 +65550,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2259383,
"latitude": -4.16556,
"longitude": 13.29278,
"name": "Kayes",
@@ -72493,7 +65559,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 4931482,
"latitude": 42.33176,
"longitude": -71.12116,
"name": "Brookline",
@@ -72503,7 +65568,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2644319,
"latitude": 50.80691,
"longitude": -0.53782,
"name": "Littlehampton",
@@ -72513,7 +65577,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278173,
"latitude": 11.59414,
"longitude": 78.60143,
"name": "Attur",
@@ -72523,9 +65586,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2027468,
- "latitude": 44.16306,
- "longitude": 133.27333,
+ "latitude": 44.1616,
+ "longitude": 133.2767,
"name": "Arsen\u2019yev",
"population": 58700
},
@@ -72533,7 +65595,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863173,
"latitude": 36.16667,
"longitude": 139.53333,
"name": "Hany\u016b",
@@ -72543,7 +65604,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2540810,
"latitude": 34.79711,
"longitude": -5.58224,
"name": "Ouazzane",
@@ -72553,7 +65613,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1769612,
"latitude": 3.21667,
"longitude": 101.31667,
"name": "Kampong Dungun",
@@ -72563,7 +65622,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2911271,
"latitude": 52.10397,
"longitude": 9.35623,
"name": "Hameln",
@@ -72573,7 +65631,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3675975,
"latitude": 7.83793,
"longitude": -72.5037,
"name": "Los Patios",
@@ -72583,7 +65640,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650119,
"latitude": -7.88806,
"longitude": 110.32889,
"name": "Bantul",
@@ -72593,7 +65649,6 @@
"country_code": "US",
"elevation": 1310,
"feature_code": "PPL",
- "geonameid": 5782476,
"latitude": 40.66772,
"longitude": -111.93883,
"name": "Taylorsville",
@@ -72603,7 +65658,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274256,
"latitude": 11.4,
"longitude": 79.7,
"name": "Chidambaram",
@@ -72613,7 +65667,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 262135,
"latitude": 38.01667,
"longitude": 23.75,
"name": "Gal\u00e1tsi",
@@ -72623,7 +65676,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254868,
"latitude": 31.45,
"longitude": 74.92528,
"name": "Tarn T\u0101ran",
@@ -72633,7 +65685,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5376200,
"latitude": 32.67811,
"longitude": -117.0992,
"name": "National City",
@@ -72643,7 +65694,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253944,
"latitude": 10.58806,
"longitude": 77.24779,
"name": "Udumalaippettai",
@@ -72653,7 +65703,6 @@
"country_code": "US",
"elevation": 1400,
"feature_code": "PPLA2",
- "geonameid": 5423573,
"latitude": 39.06387,
"longitude": -108.55065,
"name": "Grand Junction",
@@ -72663,7 +65712,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264793,
"latitude": 18.75,
"longitude": 73.41667,
"name": "Lon\u0101vale",
@@ -72673,7 +65721,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6087844,
"latitude": 49.20678,
"longitude": -122.91092,
"name": "New Westminster",
@@ -72683,7 +65730,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6692413,
"latitude": 34.26545,
"longitude": 67.34516,
"name": "Cool \u0171rhaj\u00f3",
@@ -72693,7 +65739,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036519,
"latitude": 45.21667,
"longitude": 131.08333,
"name": "Jidong",
@@ -72703,7 +65748,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3988258,
"latitude": 20.06667,
"longitude": -102.71667,
"name": "Sahuayo de Jos\u00e9 Mar\u00eda Morelos",
@@ -72713,7 +65757,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864637,
"latitude": 35.99028,
"longitude": 139.07639,
"name": "Chichibu",
@@ -72723,7 +65766,6 @@
"country_code": "US",
"elevation": 1015,
"feature_code": "PPLA2",
- "geonameid": 5655240,
"latitude": 47.50024,
"longitude": -111.30081,
"name": "Great Falls",
@@ -72733,7 +65775,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2598243,
"latitude": 5.78556,
"longitude": -6.60833,
"name": "Soubr\u00e9",
@@ -72743,7 +65784,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3028097,
"latitude": 49.55858,
"longitude": 1.62803,
"name": "Cayenne",
@@ -72753,7 +65793,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1811114,
"latitude": 27.81117,
"longitude": 114.66805,
"name": "Fenyi",
@@ -72763,17 +65802,24 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2491335,
"latitude": 35.21222,
"longitude": 2.31889,
"name": "Ksar Chellala",
"population": 58478
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.43333,
+ "longitude": 13.25,
+ "name": "Zehlendorf",
+ "population": 58469
+ },
{
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3087584,
"latitude": 50.09195,
"longitude": 18.21928,
"name": "Racib\u00f3rz",
@@ -72783,7 +65829,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859990,
"latitude": 34.5,
"longitude": 133.5,
"name": "Kasaoka",
@@ -72793,7 +65838,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 477494,
"latitude": 53.98179,
"longitude": 38.17118,
"name": "Uzlovaya",
@@ -72803,7 +65847,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2871983,
"latitude": 51.43333,
"longitude": 7.8,
"name": "Menden",
@@ -72813,7 +65856,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1621655,
"latitude": -6.9713,
"longitude": 110.0666,
"name": "Weleri",
@@ -72823,7 +65865,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1814919,
"latitude": 29.78062,
"longitude": 104.85224,
"name": "Chonglong",
@@ -72833,7 +65874,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033739,
"latitude": 43.95611,
"longitude": 125.46611,
"name": "Xinglongshan",
@@ -72843,7 +65883,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3836772,
"latitude": -24.23127,
"longitude": -64.86614,
"name": "San Pedro",
@@ -72853,7 +65892,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1003953,
"latitude": -32.77477,
"longitude": 26.63376,
"name": "Fort Beaufort",
@@ -72863,7 +65901,6 @@
"country_code": "US",
"elevation": 307,
"feature_code": "PPLA2",
- "geonameid": 4580543,
"latitude": 34.85262,
"longitude": -82.39401,
"name": "Greenville",
@@ -72873,7 +65910,6 @@
"country_code": "US",
"elevation": 100,
"feature_code": "PPL",
- "geonameid": 4781530,
"latitude": 38.96872,
"longitude": -77.3411,
"name": "Reston",
@@ -72883,7 +65919,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2924585,
"latitude": 47.65,
"longitude": 9.48333,
"name": "Friedrichshafen",
@@ -72893,7 +65928,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256750,
"latitude": 21.55,
"longitude": 74.46667,
"name": "Sh\u0101h\u0101da",
@@ -72903,7 +65937,6 @@
"country_code": "US",
"elevation": 193,
"feature_code": "PPL",
- "geonameid": 4889772,
"latitude": 42.03336,
"longitude": -87.8834,
"name": "Des Plaines",
@@ -72913,7 +65946,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1611407,
"latitude": 15.81047,
"longitude": 102.02881,
"name": "Chaiyaphum",
@@ -72923,7 +65955,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1792692,
"latitude": 31.09407,
"longitude": 105.08731,
"name": "Tongchuan",
@@ -72933,7 +65964,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261613,
"latitude": 27.85,
"longitude": 75.26667,
"name": "Nawalgarh",
@@ -72943,7 +65973,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1605215,
"latitude": 17.62557,
"longitude": 100.09421,
"name": "Uttaradit",
@@ -72953,7 +65982,6 @@
"country_code": "US",
"elevation": 72,
"feature_code": "PPL",
- "geonameid": 5341145,
"latitude": 37.323,
"longitude": -122.03218,
"name": "Cupertino",
@@ -72963,9 +65991,8 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3982266,
- "latitude": 32.56667,
- "longitude": -116.63333,
+ "latitude": 32.56716,
+ "longitude": -116.62509,
"name": "Tecate",
"population": 58300
},
@@ -72973,7 +66000,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2291136,
"latitude": 8.0402,
"longitude": -2.80003,
"name": "Bondoukou",
@@ -72983,7 +66009,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1798082,
"latitude": 26.76837,
"longitude": 112.10814,
"name": "Hongqiao",
@@ -72993,7 +66018,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 356945,
"latitude": 31.32977,
"longitude": 31.71507,
"name": "F\u0101rask\u016br",
@@ -73003,7 +66027,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2647074,
"latitude": 52.05684,
"longitude": -2.71482,
"name": "Hereford",
@@ -73013,7 +66036,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261553,
"latitude": 8.6,
"longitude": 77.0,
"name": "Nedumang\u0101d",
@@ -73023,7 +66045,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3057140,
"latitude": 48.89452,
"longitude": 18.04436,
"name": "Tren\u010d\u00edn",
@@ -73033,7 +66054,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3471848,
"latitude": -19.82028,
"longitude": -40.27333,
"name": "Aracruz",
@@ -73043,7 +66063,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 782756,
"latitude": 40.61861,
"longitude": 20.78083,
"name": "Kor\u00e7\u00eb",
@@ -73053,7 +66072,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3670218,
"latitude": 12.58472,
"longitude": -81.70056,
"name": "San Andr\u00e9s",
@@ -73063,7 +66081,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3103719,
"latitude": 50.32607,
"longitude": 19.12565,
"name": "B\u0119dzin",
@@ -73073,7 +66090,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 743166,
"latitude": 41.73508,
"longitude": 27.22521,
"name": "K\u0131rklareli",
@@ -73083,7 +66099,6 @@
"country_code": "ME",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3194494,
"latitude": 42.7731,
"longitude": 18.94446,
"name": "Nik\u0161i\u0107",
@@ -73093,7 +66108,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1812754,
"latitude": 35.06833,
"longitude": 115.5625,
"name": "Dingtao",
@@ -73103,7 +66117,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630935,
"latitude": -3.4324,
"longitude": 119.3435,
"name": "Polewali",
@@ -73113,7 +66126,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3353383,
"latitude": -17.93333,
"longitude": 19.76667,
"name": "Rundu",
@@ -73123,7 +66135,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3634184,
"latitude": 10.49389,
"longitude": -66.82863,
"name": "Los Dos Caminos",
@@ -73133,7 +66144,6 @@
"country_code": "US",
"elevation": 80,
"feature_code": "PPL",
- "geonameid": 5800420,
"latitude": 47.17176,
"longitude": -122.51846,
"name": "Lakewood",
@@ -73143,7 +66153,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 359212,
"latitude": 28.5036,
"longitude": 30.8004,
"name": "Ban\u012b Maz\u0101r",
@@ -73153,7 +66162,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1320944,
"latitude": 16.70528,
"longitude": 96.00167,
"name": "Kanbe",
@@ -73163,7 +66171,6 @@
"country_code": "US",
"elevation": 187,
"feature_code": "PPL",
- "geonameid": 7259084,
"latitude": 42.98499,
"longitude": -78.87798,
"name": "Tonawanda",
@@ -73173,7 +66180,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2669772,
"latitude": 59.4439,
"longitude": 18.06872,
"name": "T\u00e4by",
@@ -73183,7 +66189,6 @@
"country_code": "US",
"elevation": 28,
"feature_code": "PPL",
- "geonameid": 4504225,
"latitude": 39.44595,
"longitude": -75.02879,
"name": "South Vineland",
@@ -73193,7 +66198,6 @@
"country_code": "US",
"elevation": 52,
"feature_code": "PPL",
- "geonameid": 5358736,
"latitude": 33.98168,
"longitude": -118.22507,
"name": "Huntington Park",
@@ -73203,7 +66207,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2997577,
"latitude": 47.75,
"longitude": -3.36667,
"name": "Lorient",
@@ -73213,7 +66216,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1804892,
"latitude": 35.39472,
"longitude": 116.08833,
"name": "Juye",
@@ -73223,7 +66225,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3665199,
"latitude": -9.91333,
"longitude": -63.04083,
"name": "Ariquemes",
@@ -73233,7 +66234,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261369,
"latitude": 24.62166,
"longitude": 74.67999,
"name": "N\u012bmb\u0101hera",
@@ -73243,7 +66243,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1239593,
"latitude": 6.9329,
"longitude": 79.8848,
"name": "Kolonnawa",
@@ -73253,7 +66252,6 @@
"country_code": "US",
"elevation": 161,
"feature_code": "PPLA2",
- "geonameid": 4285268,
"latitude": 36.99032,
"longitude": -86.4436,
"name": "Bowling Green",
@@ -73263,7 +66261,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268680,
"latitude": 23.3,
"longitude": 72.33333,
"name": "Kadi",
@@ -73273,7 +66270,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1840379,
"latitude": 35.41,
"longitude": 127.38583,
"name": "Nangen",
@@ -73283,7 +66279,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1808981,
"latitude": 35.46028,
"longitude": 110.42917,
"name": "Hancheng",
@@ -73293,7 +66288,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2919054,
"latitude": 48.7028,
"longitude": 9.65488,
"name": "G\u00f6ppingen",
@@ -73303,7 +66297,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3080251,
"latitude": 51.85561,
"longitude": 19.40623,
"name": "Zgierz",
@@ -73313,7 +66306,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3687025,
"latitude": 7.98654,
"longitude": -75.19349,
"name": "Caucasia",
@@ -73323,7 +66315,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1581326,
"latitude": 20.93333,
"longitude": 106.31667,
"name": "H\u1ea3i D\u01b0\u01a1ng",
@@ -73333,7 +66324,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3833367,
"latitude": -54.8,
"longitude": -68.3,
"name": "Ushuaia",
@@ -73343,7 +66333,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1859093,
"latitude": 36.18333,
"longitude": 139.71667,
"name": "Koga",
@@ -73353,7 +66342,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1734576,
"latitude": 4.95,
"longitude": 100.63333,
"name": "Simpang Empat",
@@ -73363,7 +66351,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 472234,
"latitude": 55.86638,
"longitude": 48.3594,
"name": "Volzhsk",
@@ -73373,7 +66360,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2976043,
"latitude": 49.0,
"longitude": 2.38333,
"name": "Sarcelles",
@@ -73383,7 +66369,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1642684,
"latitude": -6.73361,
"longitude": 108.26278,
"name": "Jatiwangi",
@@ -73393,7 +66378,6 @@
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2761524,
"latitude": 48.16667,
"longitude": 14.03333,
"name": "Wels",
@@ -73403,7 +66387,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2987805,
"latitude": 44.81011,
"longitude": -0.64129,
"name": "Pessac",
@@ -73413,7 +66396,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 5382232,
"latitude": 38.23242,
"longitude": -122.63665,
"name": "Petaluma",
@@ -73423,7 +66405,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861677,
"latitude": 33.26667,
"longitude": 129.88333,
"name": "Imari",
@@ -73433,7 +66414,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3668454,
"latitude": 4.86806,
"longitude": -75.62139,
"name": "Santa Rosa de Cabal",
@@ -73443,7 +66423,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2479966,
"latitude": 36.60637,
"longitude": 3.08783,
"name": "Sidi Moussa",
@@ -73453,7 +66432,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256104,
"latitude": 13.74528,
"longitude": 76.90917,
"name": "S\u012bra",
@@ -73463,7 +66441,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650815,
"latitude": -6.7674,
"longitude": 110.8541,
"name": "Baekrajan",
@@ -73473,7 +66450,6 @@
"country_code": "US",
"elevation": 53,
"feature_code": "PPL",
- "geonameid": 5106160,
"latitude": 40.92538,
"longitude": -74.27654,
"name": "Wayne",
@@ -73483,7 +66459,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2754861,
"latitude": 52.57583,
"longitude": 6.61944,
"name": "Hardenberg",
@@ -73493,7 +66468,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3012621,
"latitude": 48.81568,
"longitude": 2.38487,
"name": "Ivry-sur-Seine",
@@ -73503,7 +66477,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1329239,
"latitude": 19.36667,
"longitude": 95.21667,
"name": "Myaydo",
@@ -73513,7 +66486,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858972,
"latitude": 31.73333,
"longitude": 130.76667,
"name": "Kokubu",
@@ -73523,7 +66495,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 785058,
"latitude": 41.71556,
"longitude": 21.77556,
"name": "Veles",
@@ -73533,7 +66504,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1685117,
"latitude": 13.35861,
"longitude": 123.73361,
"name": "Tabaco",
@@ -73543,7 +66513,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274243,
"latitude": 13.43417,
"longitude": 77.72417,
"name": "Chik Ball\u0101pur",
@@ -73553,7 +66522,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277022,
"latitude": 21.11667,
"longitude": 73.11667,
"name": "B\u0101rdoli",
@@ -73563,7 +66531,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6695754,
"latitude": 62.26537,
"longitude": 74.47906,
"name": "Kogalym",
@@ -73573,7 +66540,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 699035,
"latitude": 50.72576,
"longitude": 24.16265,
"name": "Novovolyns\u2019k",
@@ -73583,7 +66549,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268990,
"latitude": 22.45,
"longitude": 86.98333,
"name": "Jh\u0101rgr\u0101m",
@@ -73593,7 +66558,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3019265,
"latitude": 49.02414,
"longitude": 1.15082,
"name": "\u00c9vreux",
@@ -73603,7 +66567,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626899,
"latitude": -7.8924,
"longitude": 112.6658,
"name": "Singosari",
@@ -73613,7 +66576,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2655198,
"latitude": 53.46667,
"longitude": -3.01667,
"name": "Bootle",
@@ -73623,7 +66585,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 339734,
"latitude": 9.68333,
"longitude": 39.53333,
"name": "Debre Birhan",
@@ -73633,7 +66594,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3173721,
"latitude": 40.66852,
"longitude": 16.60158,
"name": "Matera",
@@ -73643,7 +66603,6 @@
"country_code": "US",
"elevation": 189,
"feature_code": "PPL",
- "geonameid": 4990512,
"latitude": 42.33698,
"longitude": -83.27326,
"name": "Dearborn Heights",
@@ -73653,7 +66612,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1817952,
"latitude": 29.4,
"longitude": 112.15,
"name": "Anxiang",
@@ -73663,7 +66621,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1609032,
"latitude": 14.79808,
"longitude": 100.65397,
"name": "Lop Buri",
@@ -73673,7 +66630,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2918987,
"latitude": 51.15518,
"longitude": 14.98853,
"name": "G\u00f6rlitz",
@@ -73683,7 +66639,6 @@
"country_code": "US",
"elevation": 192,
"feature_code": "PPLA2",
- "geonameid": 4714131,
"latitude": 29.703,
"longitude": -98.12445,
"name": "New Braunfels",
@@ -73693,7 +66648,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 747764,
"latitude": 40.83889,
"longitude": 31.16389,
"name": "D\u00fczce",
@@ -73703,7 +66657,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3524348,
"latitude": 24.85778,
"longitude": -99.56778,
"name": "Linares",
@@ -73713,7 +66666,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6155033,
"latitude": 53.63344,
"longitude": -113.63533,
"name": "St. Albert",
@@ -73723,7 +66675,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPLA2",
- "geonameid": 5392567,
"latitude": 37.97353,
"longitude": -122.53109,
"name": "San Rafael",
@@ -73733,7 +66684,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3174092,
"latitude": 41.62594,
"longitude": 15.90936,
"name": "Manfredonia",
@@ -73743,9 +66693,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 98629,
- "latitude": 31.96362,
- "longitude": 44.59904,
+ "latitude": 31.96257,
+ "longitude": 44.60075,
"name": "Ash Sh\u0101m\u012byah",
"population": 57661
},
@@ -73753,7 +66702,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463605,
"latitude": -29.225,
"longitude": -51.34778,
"name": "Farroupilha",
@@ -73763,7 +66711,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 131962,
"latitude": 34.2721,
"longitude": 47.5861,
"name": "Hars\u012bn",
@@ -73773,7 +66720,6 @@
"country_code": "US",
"elevation": 189,
"feature_code": "PPLA2",
- "geonameid": 4854529,
"latitude": 42.50056,
"longitude": -90.66457,
"name": "Dubuque",
@@ -73783,7 +66729,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3462996,
"latitude": -26.08111,
"longitude": -53.055,
"name": "Francisco Beltr\u00e3o",
@@ -73793,7 +66738,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3643031,
"latitude": 10.42994,
"longitude": -66.8161,
"name": "El Hatillo",
@@ -73803,7 +66747,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2970072,
"latitude": 45.70254,
"longitude": 4.87147,
"name": "V\u00e9nissieux",
@@ -73813,7 +66756,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3027883,
"latitude": 49.03645,
"longitude": 2.07613,
"name": "Cergy",
@@ -73823,7 +66765,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257551,
"latitude": 25.85,
"longitude": 85.78333,
"name": "Samast\u012bpur",
@@ -73833,7 +66774,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 174448,
"latitude": 34.45,
"longitude": 40.91861,
"name": "\u0100lb\u016b Kam\u0101l",
@@ -73843,7 +66783,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1155139,
"latitude": 13.81629,
"longitude": 99.87739,
"name": "Ban Pong",
@@ -73853,7 +66792,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 540251,
"latitude": 44.92934,
"longitude": 37.99117,
"name": "Krymsk",
@@ -73863,7 +66801,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1807308,
"latitude": 30.88453,
"longitude": 114.37789,
"name": "Huangpi",
@@ -73873,7 +66810,6 @@
"country_code": "US",
"elevation": 347,
"feature_code": "PPL",
- "geonameid": 4179574,
"latitude": 34.07538,
"longitude": -84.29409,
"name": "Alpharetta",
@@ -73883,7 +66819,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034995,
"latitude": 44.7,
"longitude": 127.2,
"name": "Shanhetun",
@@ -73893,7 +66828,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2548489,
"latitude": 34.22568,
"longitude": -3.35361,
"name": "Guercif",
@@ -73903,7 +66837,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 776175,
"latitude": 52.03238,
"longitude": 23.11652,
"name": "Bia\u0142a Podlaska",
@@ -73913,7 +66846,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3177219,
"latitude": 43.82036,
"longitude": 13.01206,
"name": "Fano",
@@ -73923,7 +66855,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270947,
"latitude": 11.45496,
"longitude": 77.4422,
"name": "Gobichettipalayam",
@@ -73933,7 +66864,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033449,
"latitude": 43.29194,
"longitude": 126.00944,
"name": "Yantongshan",
@@ -73943,7 +66873,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3392167,
"latitude": -7.07694,
"longitude": -41.46694,
"name": "Picos",
@@ -73953,7 +66882,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99344,
"latitude": 32.54217,
"longitude": 44.22111,
"name": "Al Hind\u012byah",
@@ -73963,7 +66891,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270251,
"latitude": 28.71667,
"longitude": 78.28333,
"name": "Hasanpur",
@@ -73973,7 +66900,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPL",
- "geonameid": 4488762,
"latitude": 35.93821,
"longitude": -77.79053,
"name": "Rocky Mount",
@@ -73983,7 +66909,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851606,
"latitude": 34.66667,
"longitude": 133.75,
"name": "S\u014dja",
@@ -73993,7 +66918,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3024597,
"latitude": 48.90018,
"longitude": 2.30952,
"name": "Clichy",
@@ -74003,7 +66927,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3164376,
"latitude": 45.31166,
"longitude": 8.86114,
"name": "Vigevano",
@@ -74013,7 +66936,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3174021,
"latitude": 40.89761,
"longitude": 14.19053,
"name": "Marano di Napoli",
@@ -74023,7 +66945,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1809483,
"latitude": 33.66972,
"longitude": 118.18889,
"name": "Guiren",
@@ -74033,7 +66954,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185166,
"latitude": 24.48333,
"longitude": 91.78333,
"name": "Moulvi B\u0101z\u0101r",
@@ -74043,7 +66963,6 @@
"country_code": "US",
"elevation": 15,
"feature_code": "PPL",
- "geonameid": 4167545,
"latitude": 28.07807,
"longitude": -82.76371,
"name": "Palm Harbor",
@@ -74053,7 +66972,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1687534,
"latitude": 14.1079,
"longitude": 121.14136,
"name": "Santo Tomas",
@@ -74063,7 +66981,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 723846,
"latitude": 49.06144,
"longitude": 20.29798,
"name": "Poprad",
@@ -74073,7 +66990,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1522751,
"latitude": 43.52061,
"longitude": 68.5094,
"name": "Kentau",
@@ -74083,7 +66999,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1563926,
"latitude": 9.93472,
"longitude": 106.34528,
"name": "Tr\u00e0 Vinh",
@@ -74093,7 +67008,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2025527,
"latitude": 53.15611,
"longitude": 103.0675,
"name": "Cheremkhovo",
@@ -74103,7 +67017,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2649692,
"latitude": 50.85162,
"longitude": -1.17929,
"name": "Fareham",
@@ -74113,7 +67026,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2642189,
"latitude": 53.74013,
"longitude": -1.59877,
"name": "Morley",
@@ -74123,7 +67035,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3458645,
"latitude": -22.59861,
"longitude": -48.80028,
"name": "Len\u00e7\u00f3is Paulista",
@@ -74133,7 +67044,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2653232,
"latitude": 51.70791,
"longitude": -0.03739,
"name": "Cheshunt",
@@ -74143,7 +67053,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3179075,
"latitude": 41.26403,
"longitude": 15.90046,
"name": "Cerignola",
@@ -74153,7 +67062,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269551,
"latitude": 28.41667,
"longitude": 78.1,
"name": "Jah\u0101ng\u012br\u0101b\u0101d",
@@ -74163,7 +67071,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3532881,
"latitude": 19.03333,
"longitude": -98.05,
"name": "Amozoc de Mota",
@@ -74173,7 +67080,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256569,
"latitude": 29.35,
"longitude": 78.58333,
"name": "Sherkot",
@@ -74183,7 +67089,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4166274,
"latitude": 27.04422,
"longitude": -82.23593,
"name": "North Port",
@@ -74193,7 +67098,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037345,
"latitude": 42.05889,
"longitude": 121.745,
"name": "Fuxin",
@@ -74203,7 +67107,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2507901,
"latitude": 35.29749,
"longitude": -1.14037,
"name": "\u2019A\u00efn Temouchent",
@@ -74213,7 +67116,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267439,
"latitude": 23.8,
"longitude": 86.28333,
"name": "K\u0101tr\u0101s",
@@ -74223,7 +67125,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1309289,
"latitude": 20.18333,
"longitude": 94.88333,
"name": "Minbu",
@@ -74233,7 +67134,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260792,
"latitude": 16.53333,
"longitude": 81.73333,
"name": "P\u0101lakollu",
@@ -74243,7 +67143,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1784253,
"latitude": 33.70389,
"longitude": 118.67917,
"name": "Zhongxing",
@@ -74253,7 +67152,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 96205,
"latitude": 35.17778,
"longitude": 45.98611,
"name": "\u1e28alabjah",
@@ -74263,7 +67161,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 919544,
"latitude": -12.36475,
"longitude": 27.82286,
"name": "Chililabombwe",
@@ -74273,7 +67170,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036237,
"latitude": 46.95,
"longitude": 128.88333,
"name": "Langxiang",
@@ -74283,7 +67179,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1180942,
"latitude": 30.96397,
"longitude": 73.98029,
"name": "Ch\u016bni\u0101n",
@@ -74293,7 +67188,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3698658,
"latitude": -5.26667,
"longitude": -80.68333,
"name": "Catacaos",
@@ -74303,7 +67197,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2129909,
"latitude": 43.23972,
"longitude": 141.35389,
"name": "Ishikari",
@@ -74313,7 +67206,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252960,
"latitude": 20.06667,
"longitude": 78.95,
"name": "Wani",
@@ -74323,7 +67215,6 @@
"country_code": "IN",
"elevation": 152,
"feature_code": "PPL",
- "geonameid": 1262092,
"latitude": 26.68333,
"longitude": 88.21667,
"name": "Naksalb\u0101ri",
@@ -74333,7 +67224,6 @@
"country_code": "US",
"elevation": 120,
"feature_code": "PPLA2",
- "geonameid": 4303436,
"latitude": 37.77422,
"longitude": -87.11333,
"name": "Owensboro",
@@ -74343,7 +67233,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2540850,
"latitude": 30.91894,
"longitude": -6.89341,
"name": "Ouarzazat",
@@ -74353,7 +67242,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448221,
"latitude": -20.91694,
"longitude": -46.99139,
"name": "S\u00e3o Sebasti\u00e3o do Para\u00edso",
@@ -74363,7 +67251,6 @@
"country_code": "US",
"elevation": 202,
"feature_code": "PPL",
- "geonameid": 5007804,
"latitude": 42.48948,
"longitude": -83.14465,
"name": "Royal Oak",
@@ -74373,7 +67260,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2472774,
"latitude": 36.72564,
"longitude": 9.18169,
"name": "B\u00e9ja",
@@ -74383,7 +67269,6 @@
"country_code": "US",
"elevation": 148,
"feature_code": "PPL",
- "geonameid": 4460162,
"latitude": 35.9132,
"longitude": -79.05584,
"name": "Chapel Hill",
@@ -74393,7 +67278,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254335,
"latitude": 9.38333,
"longitude": 76.56667,
"name": "Tiruvalla",
@@ -74403,7 +67287,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3045190,
"latitude": 47.68501,
"longitude": 16.59049,
"name": "Sopron",
@@ -74413,7 +67296,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3839982,
"latitude": -38.87588,
"longitude": -62.07359,
"name": "Punta Alta",
@@ -74423,7 +67305,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 321426,
"latitude": 39.12074,
"longitude": 27.18052,
"name": "Bergama",
@@ -74433,7 +67314,6 @@
"country_code": "US",
"elevation": 276,
"feature_code": "PPL",
- "geonameid": 5018651,
"latitude": 45.1608,
"longitude": -93.23495,
"name": "Blaine",
@@ -74443,7 +67323,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861280,
"latitude": 26.12472,
"longitude": 127.66944,
"name": "Itoman",
@@ -74453,7 +67332,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259408,
"latitude": 16.06667,
"longitude": 80.56667,
"name": "Ponn\u016bru",
@@ -74463,7 +67341,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3405006,
"latitude": -1.05361,
"longitude": -46.76556,
"name": "Bragan\u00e7a",
@@ -74473,7 +67350,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3407216,
"latitude": -8.41889,
"longitude": -37.05389,
"name": "Arcoverde",
@@ -74483,7 +67359,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214965,
"latitude": 3.1001,
"longitude": 98.4908,
"name": "Kabanjahe",
@@ -74493,7 +67368,6 @@
"country_code": "US",
"elevation": 54,
"feature_code": "PPL",
- "geonameid": 5397841,
"latitude": 33.96085,
"longitude": -118.04173,
"name": "South Whittier",
@@ -74503,7 +67377,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1811200,
"latitude": 34.70388,
"longitude": 116.58717,
"name": "Fengxian",
@@ -74513,7 +67386,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 323828,
"latitude": 36.07508,
"longitude": 32.83691,
"name": "Anamur",
@@ -74523,7 +67395,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034651,
"latitude": 47.25,
"longitude": 127.08333,
"name": "Suileng",
@@ -74533,7 +67404,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 250582,
"latitude": 32.34289,
"longitude": 36.20804,
"name": "Al Mafraq",
@@ -74543,7 +67413,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1790451,
"latitude": 28.66667,
"longitude": 112.88333,
"name": "Wenxing",
@@ -74553,17 +67422,24 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863082,
"latitude": 34.31667,
"longitude": 135.61667,
"name": "Hashimoto",
"population": 57115
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.56715,
+ "longitude": 13.41455,
+ "name": "Pankow",
+ "population": 57113
+ },
{
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272525,
"latitude": 25.83333,
"longitude": 93.43333,
"name": "Diphu",
@@ -74573,7 +67449,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255983,
"latitude": 26.6,
"longitude": 85.48333,
"name": "S\u012bt\u0101marhi",
@@ -74583,7 +67458,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 463082,
"latitude": 53.39972,
"longitude": 49.49528,
"name": "Zhigulevsk",
@@ -74593,7 +67467,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1853190,
"latitude": 34.31667,
"longitude": 133.85,
"name": "Sakaide",
@@ -74603,7 +67476,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 886990,
"latitude": -18.18527,
"longitude": 31.55193,
"name": "Marondera",
@@ -74613,7 +67485,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274315,
"latitude": 27.1483,
"longitude": 79.4979,
"name": "Chhibr\u0101mau",
@@ -74623,7 +67494,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2659811,
"latitude": 47.05048,
"longitude": 8.30635,
"name": "Luzern",
@@ -74633,7 +67503,6 @@
"country_code": "US",
"elevation": 161,
"feature_code": "PPL",
- "geonameid": 5363990,
"latitude": 32.76783,
"longitude": -117.02308,
"name": "La Mesa",
@@ -74643,7 +67512,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932614,
"latitude": -29.823,
"longitude": 27.23744,
"name": "Mafeteng",
@@ -74653,7 +67521,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1216187,
"latitude": 39.05778,
"longitude": 66.83417,
"name": "Shahrisabz",
@@ -74663,7 +67530,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254481,
"latitude": 27.98333,
"longitude": 79.73333,
"name": "Tilhar",
@@ -74673,7 +67539,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3855075,
"latitude": -35.65662,
"longitude": -63.75682,
"name": "General Pico",
@@ -74683,7 +67548,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 632978,
"latitude": 63.096,
"longitude": 21.61577,
"name": "Vaasa",
@@ -74693,7 +67557,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756136,
"latitude": 52.77917,
"longitude": 6.90694,
"name": "Emmen",
@@ -74703,7 +67566,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1607512,
"latitude": 14.72526,
"longitude": 100.79536,
"name": "Phra Phutthabat",
@@ -74713,7 +67575,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1166146,
"latitude": 31.71667,
"longitude": 73.38333,
"name": "S\u0101ngla",
@@ -74723,7 +67584,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3435356,
"latitude": -34.57365,
"longitude": -58.44924,
"name": "Colegiales",
@@ -74733,7 +67593,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 302355,
"latitude": 36.26917,
"longitude": 36.56722,
"name": "Reyhanl\u0131",
@@ -74743,7 +67602,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2038529,
"latitude": 43.58333,
"longitude": 127.56667,
"name": "Baishishan",
@@ -74753,7 +67611,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 145449,
"latitude": 31.1608,
"longitude": 52.6506,
"name": "\u0100b\u0101deh",
@@ -74763,7 +67620,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1244397,
"latitude": 6.9909,
"longitude": 79.883,
"name": "Hendala",
@@ -74773,7 +67629,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1177107,
"latitude": 33.99997,
"longitude": 72.93409,
"name": "Har\u012bpur",
@@ -74783,7 +67638,6 @@
"country_code": "US",
"elevation": 79,
"feature_code": "PPL",
- "geonameid": 5388319,
"latitude": 38.79073,
"longitude": -121.23578,
"name": "Rocklin",
@@ -74793,7 +67647,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 501283,
"latitude": 53.95278,
"longitude": 32.86389,
"name": "Roslavl\u2019",
@@ -74803,7 +67656,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856697,
"latitude": 35.08333,
"longitude": 137.06667,
"name": "Miyoshi",
@@ -74813,7 +67665,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 352344,
"latitude": 31.12294,
"longitude": 31.6399,
"name": "Minyat an Na\u015fr",
@@ -74823,7 +67674,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1799383,
"latitude": 37.38333,
"longitude": 121.58333,
"name": "Ninghai",
@@ -74833,7 +67683,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269784,
"latitude": 15.96667,
"longitude": 76.13333,
"name": "Ilkal",
@@ -74843,7 +67692,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3181995,
"latitude": 41.11083,
"longitude": 16.68938,
"name": "Bitonto",
@@ -74853,7 +67701,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 281145,
"latitude": 31.5464,
"longitude": 34.49514,
"name": "Bayt L\u0101hy\u0101",
@@ -74863,7 +67710,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1630366,
"latitude": -7.38806,
"longitude": 109.36389,
"name": "Purbalingga",
@@ -74872,8 +67718,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230893,
+ "feature_code": "PPLA2",
"latitude": 3.27833,
"longitude": 32.88667,
"name": "Kitgum",
@@ -74883,7 +67728,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 349156,
"latitude": 30.31269,
"longitude": 31.32018,
"name": "Shib\u012bn al Qan\u0101\u0163ir",
@@ -74893,7 +67737,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278026,
"latitude": 22.11667,
"longitude": 85.4,
"name": "Bada Barab\u012bl",
@@ -74903,7 +67746,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2909230,
"latitude": 51.4,
"longitude": 7.16667,
"name": "Hattingen",
@@ -74913,7 +67755,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3882434,
"latitude": -32.83369,
"longitude": -70.59827,
"name": "Los Andes",
@@ -74923,7 +67764,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3129136,
"latitude": 40.65,
"longitude": -4.7,
"name": "\u00c1vila de los Caballeros",
@@ -74933,7 +67773,6 @@
"country_code": "US",
"elevation": 65,
"feature_code": "PPLA2",
- "geonameid": 5144336,
"latitude": 41.03399,
"longitude": -73.76291,
"name": "White Plains",
@@ -74943,7 +67782,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3803651,
"latitude": 10.4883,
"longitude": -66.78608,
"name": "La Dolorita",
@@ -74953,7 +67791,6 @@
"country_code": "PH",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 1709632,
"latitude": 11.70611,
"longitude": 122.36444,
"name": "Kalibo (poblacion)",
@@ -74963,7 +67800,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2303287,
"latitude": 11.0616,
"longitude": -0.24168,
"name": "Bawku",
@@ -74973,7 +67809,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 333795,
"latitude": 9.35,
"longitude": 42.8,
"name": "Jijiga",
@@ -74983,7 +67818,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855066,
"latitude": 33.73333,
"longitude": 130.73333,
"name": "N\u014dgata",
@@ -74993,7 +67827,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1805515,
"latitude": 23.22806,
"longitude": 110.82611,
"name": "Jinji",
@@ -75003,7 +67836,6 @@
"country_code": "US",
"elevation": 1434,
"feature_code": "PPLA2",
- "geonameid": 5596475,
"latitude": 43.46658,
"longitude": -112.03414,
"name": "Idaho Falls",
@@ -75013,7 +67845,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2656070,
"latitude": 53.35,
"longitude": -3.01667,
"name": "Bebington",
@@ -75023,7 +67854,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2186313,
"latitude": -39.48333,
"longitude": 176.91667,
"name": "Napier",
@@ -75033,7 +67863,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPL",
- "geonameid": 5105608,
"latitude": 40.6976,
"longitude": -74.2632,
"name": "Union",
@@ -75043,7 +67872,6 @@
"country_code": "US",
"elevation": 215,
"feature_code": "PPL",
- "geonameid": 4904937,
"latitude": 41.63031,
"longitude": -87.85394,
"name": "Orland Park",
@@ -75053,7 +67881,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445630,
"latitude": -28.51222,
"longitude": -50.93389,
"name": "Vacaria",
@@ -75063,7 +67890,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 125188,
"latitude": 35.6659,
"longitude": 50.9767,
"name": "Mal\u0101rd",
@@ -75073,7 +67899,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1816028,
"latitude": 26.85,
"longitude": 104.23333,
"name": "Weining",
@@ -75083,7 +67908,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263101,
"latitude": 11.78796,
"longitude": 77.8008,
"name": "Mettur",
@@ -75093,7 +67917,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3177363,
"latitude": 40.80631,
"longitude": 14.36093,
"name": "Ercolano",
@@ -75103,7 +67926,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1513271,
"latitude": 40.64153,
"longitude": 72.23868,
"name": "Asaka",
@@ -75113,7 +67935,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2483936,
"latitude": 35.9441,
"longitude": 5.03107,
"name": "R\u00e2s el Oued",
@@ -75123,7 +67944,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265828,
"latitude": 27.14745,
"longitude": 74.85655,
"name": "Kuch\u0101man",
@@ -75133,7 +67953,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2491134,
"latitude": 36.56463,
"longitude": 3.5933,
"name": "Lakhdaria",
@@ -75143,7 +67962,6 @@
"country_code": "US",
"elevation": 213,
"feature_code": "PPL",
- "geonameid": 4913723,
"latitude": 41.57337,
"longitude": -87.78449,
"name": "Tinley Park",
@@ -75153,7 +67971,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632358,
"latitude": -7.7679,
"longitude": 112.198,
"name": "Pare",
@@ -75163,7 +67980,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2651500,
"latitude": 51.44352,
"longitude": 0.21964,
"name": "Dartford",
@@ -75173,7 +67989,6 @@
"country_code": "US",
"elevation": 182,
"feature_code": "PPL",
- "geonameid": 4904365,
"latitude": 41.71087,
"longitude": -87.75811,
"name": "Oak Lawn",
@@ -75183,7 +67998,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3468158,
"latitude": -23.35611,
"longitude": -46.87694,
"name": "Cajamar",
@@ -75193,17 +68007,24 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2653558,
"latitude": 54.5735,
"longitude": -5.88472,
"name": "Castlereagh",
"population": 56679
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.46667,
+ "longitude": 13.4,
+ "name": "Tempelhof",
+ "population": 56669
+ },
{
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3109256,
"latitude": 40.95,
"longitude": -4.11667,
"name": "Segovia",
@@ -75213,7 +68034,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2645724,
"latitude": 52.38819,
"longitude": -2.25,
"name": "Kidderminster",
@@ -75223,7 +68043,6 @@
"country_code": "US",
"elevation": 188,
"feature_code": "PPL",
- "geonameid": 4884597,
"latitude": 41.85059,
"longitude": -87.79367,
"name": "Berwyn",
@@ -75233,7 +68052,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 721239,
"latitude": 47.90265,
"longitude": 20.37329,
"name": "Eger",
@@ -75243,7 +68061,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2651286,
"latitude": 53.69076,
"longitude": -1.62907,
"name": "Dewsbury",
@@ -75253,7 +68070,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1813775,
"latitude": 35.56389,
"longitude": 114.50583,
"name": "Huaxian",
@@ -75263,7 +68079,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1839873,
"latitude": 36.3012,
"longitude": 127.568,
"name": "\uc625\ucc9c\uad70",
@@ -75273,7 +68088,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1786867,
"latitude": 22.1975,
"longitude": 109.94194,
"name": "Yashan",
@@ -75283,7 +68097,6 @@
"country_code": "US",
"elevation": 252,
"feature_code": "PPL",
- "geonameid": 4881346,
"latitude": 41.57199,
"longitude": -93.74531,
"name": "West Des Moines",
@@ -75293,7 +68106,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3591062,
"latitude": 15.71667,
"longitude": -88.6,
"name": "Puerto Barrios",
@@ -75303,7 +68115,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260448,
"latitude": 11.77662,
"longitude": 79.55269,
"name": "Panruti",
@@ -75313,7 +68124,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3628489,
"latitude": 9.00003,
"longitude": -71.91352,
"name": "San Carlos del Zulia",
@@ -75323,7 +68133,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1706188,
"latitude": 16.02182,
"longitude": 120.23194,
"name": "Lingayen",
@@ -75333,7 +68142,6 @@
"country_code": "US",
"elevation": 344,
"feature_code": "PPLA2",
- "geonameid": 4207783,
"latitude": 33.9526,
"longitude": -84.54993,
"name": "Marietta",
@@ -75343,7 +68151,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3460174,
"latitude": -15.8025,
"longitude": -43.30889,
"name": "Jana\u00faba",
@@ -75353,7 +68160,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 572154,
"latitude": 58.38778,
"longitude": 33.91546,
"name": "Borovichi",
@@ -75363,7 +68169,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864557,
"latitude": 35.9944,
"longitude": 138.15428,
"name": "Chino",
@@ -75373,7 +68178,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111831,
"latitude": 35.93333,
"longitude": 140.0,
"name": "Moriya",
@@ -75383,7 +68187,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2904795,
"latitude": 51.16667,
"longitude": 6.93333,
"name": "Hilden",
@@ -75393,7 +68196,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253783,
"latitude": 20.81667,
"longitude": 71.03333,
"name": "Una",
@@ -75403,7 +68205,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284823,
"latitude": 47.49192,
"longitude": 19.01493,
"name": "Budapest XII. ker\u00fclet",
@@ -75413,7 +68214,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3430340,
"latitude": -27.48706,
"longitude": -55.11994,
"name": "Ober\u00e1",
@@ -75423,7 +68223,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2386012,
"latitude": 6.98961,
"longitude": 19.18744,
"name": "Kaga Bandoro",
@@ -75433,7 +68232,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 316284,
"latitude": 36.86158,
"longitude": 36.22885,
"name": "D\u00f6rtyol",
@@ -75443,7 +68241,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4177703,
"latitude": 26.65868,
"longitude": -80.24144,
"name": "Wellington",
@@ -75453,7 +68250,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302844,
"latitude": 16.07114,
"longitude": 80.54944,
"name": "Ponnur",
@@ -75463,7 +68259,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266267,
"latitude": 12.15,
"longitude": 77.11667,
"name": "Kolleg\u0101l",
@@ -75473,7 +68268,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3445014,
"latitude": -23.02972,
"longitude": -46.97528,
"name": "Vinhedo",
@@ -75483,7 +68277,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA4",
- "geonameid": 2035635,
"latitude": 40.9241,
"longitude": 122.80437,
"name": "Nantai",
@@ -75493,7 +68286,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1650600,
"latitude": 1.05,
"longitude": 101.28333,
"name": "Balaipungut",
@@ -75503,7 +68295,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256620,
"latitude": 20.78333,
"longitude": 76.68333,
"name": "Shegaon",
@@ -75513,7 +68304,6 @@
"country_code": "TW",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1672228,
"latitude": 23.5654,
"longitude": 119.58627,
"name": "Ma-kung",
@@ -75523,7 +68313,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1815667,
"latitude": 28.7,
"longitude": 115.81667,
"name": "Changleng",
@@ -75533,7 +68322,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463174,
"latitude": -20.46444,
"longitude": -45.42639,
"name": "Formiga",
@@ -75542,8 +68330,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226234,
+ "feature_code": "PPLA2",
"latitude": 1.71464,
"longitude": 33.61113,
"name": "Soroti",
@@ -75553,7 +68340,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2513917,
"latitude": 38.91611,
"longitude": -6.34366,
"name": "M\u00e9rida",
@@ -75563,7 +68349,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2468579,
"latitude": 36.45606,
"longitude": 10.73763,
"name": "Nabeul",
@@ -75573,7 +68358,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3574116,
"latitude": 10.283,
"longitude": -61.44605,
"name": "Mon Repos",
@@ -75583,7 +68367,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1806591,
"latitude": 31.53333,
"longitude": 119.48333,
"name": "Hutang",
@@ -75593,7 +68376,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1130490,
"latitude": 35.94458,
"longitude": 68.71512,
"name": "Pul-e Khumr\u012b",
@@ -75603,7 +68385,6 @@
"country_code": "US",
"elevation": 184,
"feature_code": "PPL",
- "geonameid": 4709013,
"latitude": 32.56319,
"longitude": -97.14168,
"name": "Mansfield",
@@ -75613,7 +68394,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1169372,
"latitude": 31.4475,
"longitude": 73.69722,
"name": "Nank\u0101na S\u0101hib",
@@ -75623,7 +68403,6 @@
"country_code": "US",
"elevation": 147,
"feature_code": "PPL",
- "geonameid": 5324477,
"latitude": 34.13973,
"longitude": -118.03534,
"name": "Arcadia",
@@ -75633,7 +68412,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4012721,
"latitude": 20.48333,
"longitude": -100.93333,
"name": "Cortazar",
@@ -75643,7 +68421,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253736,
"latitude": 21.73333,
"longitude": 70.28333,
"name": "Upleta",
@@ -75653,7 +68430,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPLA2",
- "geonameid": 4166673,
"latitude": 29.1872,
"longitude": -82.14009,
"name": "Ocala",
@@ -75663,7 +68439,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253918,
"latitude": 28.01667,
"longitude": 79.01667,
"name": "Ujh\u0101ni",
@@ -75673,7 +68448,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 360615,
"latitude": 30.19327,
"longitude": 31.13703,
"name": "Al Qan\u0101\u0163ir al Khayr\u012byah",
@@ -75683,7 +68457,6 @@
"country_code": "SB",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2108502,
"latitude": -9.43333,
"longitude": 159.95,
"name": "Honiara",
@@ -75693,7 +68466,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3185672,
"latitude": 40.72389,
"longitude": 19.55611,
"name": "Fier",
@@ -75703,7 +68475,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2636769,
"latitude": 52.45608,
"longitude": -2.14317,
"name": "Stourbridge",
@@ -75713,7 +68484,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1348747,
"latitude": 22.6275,
"longitude": 88.29806,
"name": "Bankra",
@@ -75723,7 +68493,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1636507,
"latitude": -1.03333,
"longitude": 103.58333,
"name": "Mandahara",
@@ -75733,7 +68502,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4019827,
"latitude": 20.03333,
"longitude": -100.73333,
"name": "Ac\u00e1mbaro",
@@ -75743,7 +68511,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273766,
"latitude": 22.18333,
"longitude": 73.43333,
"name": "Dabhoi",
@@ -75753,7 +68520,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626754,
"latitude": -7.71556,
"longitude": 110.35556,
"name": "Sleman",
@@ -75762,8 +68528,7 @@
{
"country_code": "CN",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1810553,
+ "feature_code": "PPLA4",
"latitude": 34.0175,
"longitude": 119.18861,
"name": "Gaogou",
@@ -75773,7 +68538,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682573,
"latitude": 4.14924,
"longitude": -74.88429,
"name": "Espinal",
@@ -75783,7 +68547,6 @@
"country_code": "US",
"elevation": 67,
"feature_code": "PPLA2",
- "geonameid": 4682991,
"latitude": 30.31188,
"longitude": -95.45605,
"name": "Conroe",
@@ -75792,8 +68555,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 784227,
+ "feature_code": "PPLA2",
"latitude": 42.55139,
"longitude": 21.90028,
"name": "Vranje",
@@ -75803,7 +68565,6 @@
"country_code": "US",
"elevation": 154,
"feature_code": "PPL",
- "geonameid": 4724194,
"latitude": 32.9029,
"longitude": -96.56388,
"name": "Rowlett",
@@ -75813,7 +68574,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 548442,
"latitude": 59.44712,
"longitude": 32.02049,
"name": "Kirishi",
@@ -75823,7 +68583,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 746666,
"latitude": 40.71667,
"longitude": 29.82861,
"name": "Geulzuk",
@@ -75833,7 +68592,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2037913,
"latitude": 41.16528,
"longitude": 121.36667,
"name": "Linghai",
@@ -75843,7 +68601,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPL",
- "geonameid": 4943629,
"latitude": 42.41843,
"longitude": -71.10616,
"name": "Medford",
@@ -75853,7 +68610,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3666577,
"latitude": 10.32944,
"longitude": -75.41137,
"name": "Turbaco",
@@ -75863,7 +68619,6 @@
"country_code": "US",
"elevation": 307,
"feature_code": "PPL",
- "geonameid": 4515843,
"latitude": 39.6895,
"longitude": -84.16883,
"name": "Kettering",
@@ -75873,7 +68628,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3694112,
"latitude": -5.08917,
"longitude": -81.11444,
"name": "Paita",
@@ -75883,7 +68637,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4160705,
"latitude": 25.70816,
"longitude": -80.407,
"name": "Kendale Lakes",
@@ -75893,7 +68646,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276948,
"latitude": 26.65,
"longitude": 77.6,
"name": "B\u0101ri",
@@ -75903,7 +68655,6 @@
"country_code": "US",
"elevation": 268,
"feature_code": "PPLA2",
- "geonameid": 4917592,
"latitude": 40.10532,
"longitude": -85.68025,
"name": "Anderson",
@@ -75913,7 +68664,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 400666,
"latitude": 36.44083,
"longitude": 28.2225,
"name": "R\u00f3dos",
@@ -75923,7 +68673,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261086,
"latitude": 24.41667,
"longitude": 82.98333,
"name": "Obra",
@@ -75933,7 +68682,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2633954,
"latitude": 53.3618,
"longitude": -2.73406,
"name": "Widnes",
@@ -75943,7 +68691,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2841648,
"latitude": 50.76667,
"longitude": 7.18333,
"name": "Sankt Augustin",
@@ -75953,7 +68700,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271079,
"latitude": 29.13333,
"longitude": 76.7,
"name": "Goh\u0101na",
@@ -75963,7 +68709,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4169156,
"latitude": 29.13832,
"longitude": -80.99561,
"name": "Port Orange",
@@ -75973,7 +68718,6 @@
"country_code": "US",
"elevation": 30,
"feature_code": "PPL",
- "geonameid": 5102713,
"latitude": 40.49927,
"longitude": -74.39904,
"name": "Piscataway",
@@ -75983,7 +68727,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1632861,
"latitude": -7.91306,
"longitude": 110.29361,
"name": "Pandak",
@@ -75993,7 +68736,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1789897,
"latitude": 34.76,
"longitude": 112.97139,
"name": "Gongyi",
@@ -76003,7 +68745,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3182957,
"latitude": 41.58951,
"longitude": 12.65009,
"name": "Aprilia",
@@ -76013,7 +68754,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2787889,
"latitude": 50.94653,
"longitude": 3.12269,
"name": "Roeselare",
@@ -76023,7 +68763,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832617,
"latitude": 35.9675,
"longitude": 128.93083,
"name": "Eisen",
@@ -76033,7 +68772,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269154,
"latitude": 20.16667,
"longitude": 85.7,
"name": "Jatani",
@@ -76043,7 +68781,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 563379,
"latitude": 61.81281,
"longitude": 50.72834,
"name": "Ezhva",
@@ -76053,7 +68790,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262039,
"latitude": 11.22126,
"longitude": 78.16524,
"name": "N\u0101makkal",
@@ -76063,7 +68799,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3466174,
"latitude": -23.66333,
"longitude": -52.605,
"name": "Cianorte",
@@ -76073,7 +68808,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1576633,
"latitude": 21.83333,
"longitude": 106.73333,
"name": "L\u1ea1ng S\u01a1n",
@@ -76083,7 +68817,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3456102,
"latitude": -17.89194,
"longitude": -39.37194,
"name": "Nova Vi\u00e7osa",
@@ -76093,7 +68826,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1797575,
"latitude": 33.25306,
"longitude": 119.91333,
"name": "Qinnan",
@@ -76103,7 +68835,6 @@
"country_code": "US",
"elevation": 417,
"feature_code": "PPL",
- "geonameid": 4128894,
"latitude": 36.33202,
"longitude": -94.11854,
"name": "Rogers",
@@ -76113,7 +68844,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 200067,
"latitude": 0.5635,
"longitude": 34.56055,
"name": "Bungoma",
@@ -76123,7 +68853,6 @@
"country_code": "US",
"elevation": 296,
"feature_code": "PPL",
- "geonameid": 5034059,
"latitude": 44.64969,
"longitude": -93.24272,
"name": "Lakeville",
@@ -76133,7 +68862,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271819,
"latitude": 16.23333,
"longitude": 77.8,
"name": "Gadw\u0101l",
@@ -76143,7 +68871,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3107775,
"latitude": 43.34944,
"longitude": -4.04785,
"name": "Torrelavega",
@@ -76153,7 +68880,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 534838,
"latitude": 50.98405,
"longitude": 39.51545,
"name": "Liski",
@@ -76163,7 +68889,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 699553,
"latitude": 50.59412,
"longitude": 27.6165,
"name": "Novohrad-Volyns\u2019kyy",
@@ -76173,7 +68898,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3621911,
"latitude": 9.99299,
"longitude": -84.12934,
"name": "San Francisco",
@@ -76183,7 +68907,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2221504,
"latitude": 4.0745,
"longitude": 9.3699,
"name": "Tiko",
@@ -76193,7 +68916,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260707,
"latitude": 21.51667,
"longitude": 71.83333,
"name": "P\u0101lit\u0101na",
@@ -76203,7 +68925,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261227,
"latitude": 27.56155,
"longitude": 73.47141,
"name": "Nokha",
@@ -76213,7 +68934,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1265310,
"latitude": 27.71667,
"longitude": 80.9,
"name": "L\u0101harpur",
@@ -76223,7 +68943,6 @@
"country_code": "US",
"elevation": 1644,
"feature_code": "PPLA2",
- "geonameid": 5415035,
"latitude": 39.92054,
"longitude": -105.08665,
"name": "Broomfield",
@@ -76233,7 +68952,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732891,
"latitude": 3.35,
"longitude": 101.25,
"name": "Kuala Selangor",
@@ -76243,7 +68961,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1718306,
"latitude": 14.3132,
"longitude": 121.0576,
"name": "Carmona",
@@ -76253,7 +68970,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 734330,
"latitude": 41.08556,
"longitude": 23.54972,
"name": "S\u00e9rres",
@@ -76263,7 +68979,6 @@
"country_code": "US",
"elevation": 5,
"feature_code": "PPLA2",
- "geonameid": 4952629,
"latitude": 41.9001,
"longitude": -71.08977,
"name": "Taunton",
@@ -76272,8 +68987,7 @@
{
"country_code": "TR",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 320879,
+ "feature_code": "PPLA2",
"latitude": 38.71111,
"longitude": 31.04861,
"name": "Bolvadin",
@@ -76283,7 +68997,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3124132,
"latitude": 40.06667,
"longitude": -2.13333,
"name": "Cuenca",
@@ -76293,7 +69006,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3167731,
"latitude": 41.68974,
"longitude": 15.37604,
"name": "San Severo",
@@ -76303,7 +69015,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261739,
"latitude": 29.61667,
"longitude": 76.11667,
"name": "Narw\u0101na",
@@ -76313,7 +69024,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1921372,
"latitude": 39.02861,
"longitude": 121.695,
"name": "Dalianwan",
@@ -76323,7 +69033,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038158,
"latitude": 44.26532,
"longitude": 124.00045,
"name": "Changling",
@@ -76333,9 +69042,8 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1153557,
- "latitude": 10.5,
- "longitude": 99.16667,
+ "latitude": 10.4957,
+ "longitude": 99.17971,
"name": "Chumphon",
"population": 55835
},
@@ -76343,7 +69051,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2527645,
"latitude": 35.23619,
"longitude": -3.95453,
"name": "Tirhanim\u00eene",
@@ -76353,7 +69060,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 709276,
"latitude": 47.49865,
"longitude": 34.6574,
"name": "Energodar",
@@ -76363,7 +69069,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3397909,
"latitude": -3.49444,
"longitude": -39.57861,
"name": "Itapipoca",
@@ -76373,7 +69078,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2615006,
"latitude": 56.46667,
"longitude": 10.05,
"name": "Randers",
@@ -76383,7 +69087,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2928963,
"latitude": 50.81667,
"longitude": 6.28333,
"name": "Eschweiler",
@@ -76393,7 +69096,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2363534,
"latitude": 6.42611,
"longitude": 1.21333,
"name": "Ts\u00e9vi\u00e9",
@@ -76403,7 +69105,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 772621,
"latitude": 53.82824,
"longitude": 22.36469,
"name": "E\u0142k",
@@ -76413,7 +69114,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453150,
"latitude": -22.53611,
"longitude": -55.72556,
"name": "Ponta Por\u00e3",
@@ -76423,7 +69123,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437127,
"latitude": -25.42126,
"longitude": -57.54725,
"name": "San Antonio",
@@ -76433,17 +69132,15 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 364706,
"latitude": 12.9061,
"longitude": 31.2158,
- "name": "Um Ruww\u0101ba",
+ "name": "Umm Ruwaba",
"population": 55742
},
{
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850108,
"latitude": 26.185,
"longitude": 127.675,
"name": "Tomigusuku",
@@ -76453,7 +69150,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3519907,
"latitude": 18.45,
"longitude": -95.21667,
"name": "San Andr\u00e9s Tuxtla",
@@ -76463,7 +69159,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269665,
"latitude": 26.26667,
"longitude": 88.2,
"name": "Isl\u0101mpur",
@@ -76473,7 +69168,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2638678,
"latitude": 53.42519,
"longitude": -2.32443,
"name": "Sale",
@@ -76483,7 +69177,6 @@
"country_code": "US",
"elevation": 171,
"feature_code": "PPLA2",
- "geonameid": 4058553,
"latitude": 34.60593,
"longitude": -86.98334,
"name": "Decatur",
@@ -76493,7 +69186,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 737054,
"latitude": 40.30306,
"longitude": 35.88639,
"name": "Zile",
@@ -76503,7 +69195,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267904,
"latitude": 17.28333,
"longitude": 74.2,
"name": "Kar\u0101d",
@@ -76513,7 +69204,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2708365,
"latitude": 56.67446,
"longitude": 12.85676,
"name": "Halmstad",
@@ -76523,7 +69213,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1770351,
"latitude": 2.2152,
"longitude": 102.2851,
"name": "Kampung Bukit Baharu",
@@ -76533,7 +69222,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3463900,
"latitude": -11.26833,
"longitude": -37.43833,
"name": "Est\u00e2ncia",
@@ -76543,7 +69231,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1705440,
"latitude": 14.9405,
"longitude": 120.6011,
"name": "Lubao",
@@ -76553,7 +69240,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1125444,
"latitude": 36.66757,
"longitude": 65.7529,
"name": "Shibirgh\u0101n",
@@ -76563,7 +69249,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1837706,
"latitude": 36.41528,
"longitude": 128.16056,
"name": "Sangju",
@@ -76573,7 +69258,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1861244,
"latitude": 34.25,
"longitude": 135.31667,
"name": "Iwade",
@@ -76583,7 +69267,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2268406,
"latitude": 38.56667,
"longitude": -7.9,
"name": "\u00c9vora",
@@ -76593,7 +69276,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1609610,
"latitude": 12.77972,
"longitude": 101.64831,
"name": "Klaeng",
@@ -76603,7 +69285,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3083988,
"latitude": 50.29636,
"longitude": 18.91726,
"name": "\u015awi\u0119toch\u0142owice",
@@ -76613,7 +69294,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLS",
- "geonameid": 1803365,
"latitude": 30.41587,
"longitude": 103.46088,
"name": "Linqiong",
@@ -76623,7 +69303,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 693381,
"latitude": 48.02612,
"longitude": 38.77225,
"name": "Snizhne",
@@ -76632,8 +69311,7 @@
{
"country_code": "UG",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235039,
+ "feature_code": "PPLA2",
"latitude": 3.02013,
"longitude": 30.91105,
"name": "Arua",
@@ -76643,7 +69321,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1513604,
"latitude": 41.37833,
"longitude": 60.36389,
"name": "Khiwa",
@@ -76653,7 +69330,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 4845419,
"latitude": 41.27065,
"longitude": -72.94705,
"name": "West Haven",
@@ -76663,7 +69339,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 172349,
"latitude": 33.61033,
"longitude": 36.3107,
"name": "At Tall",
@@ -76673,7 +69348,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3925212,
"latitude": -11.43861,
"longitude": -61.44722,
"name": "Cacoal",
@@ -76683,7 +69357,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1651461,
"latitude": -2.41773,
"longitude": 115.24941,
"name": "Amuntai",
@@ -76693,7 +69366,6 @@
"country_code": "US",
"elevation": 212,
"feature_code": "PPL",
- "geonameid": 5342992,
"latitude": 34.02862,
"longitude": -117.81034,
"name": "Diamond Bar",
@@ -76703,7 +69375,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3703647,
"latitude": 9.08333,
"longitude": -79.28333,
"name": "Pacora",
@@ -76713,7 +69384,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358970,
"latitude": 30.93976,
"longitude": 30.81338,
"name": "Basy\u016bn",
@@ -76723,7 +69393,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3686922,
"latitude": 8.88479,
"longitude": -75.79052,
"name": "Ceret\u00e9",
@@ -76733,7 +69402,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 470676,
"latitude": 55.21039,
"longitude": 34.29508,
"name": "Vyaz\u2019ma",
@@ -76743,7 +69411,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3441894,
"latitude": -34.9,
"longitude": -54.95,
"name": "Maldonado",
@@ -76753,7 +69420,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPLA2",
- "geonameid": 5410430,
"latitude": 38.67852,
"longitude": -121.7733,
"name": "Woodland",
@@ -76763,7 +69429,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1648918,
"latitude": -7.73379,
"longitude": 113.69785,
"name": "Besuki",
@@ -76773,7 +69438,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 617486,
"latitude": 47.76639,
"longitude": 29.00111,
"name": "R\u00eebni\u0163a",
@@ -76783,7 +69447,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3897774,
"latitude": -33.73333,
"longitude": -70.75,
"name": "Buin",
@@ -76793,7 +69456,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3449099,
"latitude": -30.33639,
"longitude": -54.32,
"name": "S\u00e3o Gabriel",
@@ -76803,7 +69465,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1818051,
"latitude": 27.31944,
"longitude": 110.10306,
"name": "Anjiang",
@@ -76813,7 +69474,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1865309,
"latitude": 33.91667,
"longitude": 134.65,
"name": "Anan",
@@ -76823,7 +69483,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573738,
"latitude": 10.28333,
"longitude": -61.46667,
"name": "San Fernando",
@@ -76833,7 +69492,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2033667,
"latitude": 48.23333,
"longitude": 129.5,
"name": "Xinqing",
@@ -76843,7 +69501,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1843082,
"latitude": 37.83101,
"longitude": 127.51059,
"name": "Gapyeong",
@@ -76853,7 +69510,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 64460,
"latitude": 4.73583,
"longitude": 45.20361,
"name": "Beledweyne",
@@ -76863,7 +69519,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3543961,
"latitude": 22.31194,
"longitude": -79.65333,
"name": "Placetas",
@@ -76873,7 +69528,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2977295,
"latitude": 49.84889,
"longitude": 3.28757,
"name": "Saint-Quentin",
@@ -76883,7 +69537,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2145110,
"latitude": -35.12577,
"longitude": 147.35374,
"name": "Wagga Wagga",
@@ -76893,7 +69546,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 761228,
"latitude": 52.17072,
"longitude": 20.81214,
"name": "Pruszk\u00f3w",
@@ -76903,7 +69555,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3465721,
"latitude": -27.23417,
"longitude": -52.02778,
"name": "Conc\u00f3rdia",
@@ -76912,8 +69563,7 @@
{
"country_code": "TR",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 320557,
+ "feature_code": "PPLA2",
"latitude": 39.90778,
"longitude": 30.03667,
"name": "Boz\u00fcy\u00fck",
@@ -76923,7 +69573,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2618528,
"latitude": 55.4904,
"longitude": 9.47216,
"name": "Kolding",
@@ -76933,7 +69582,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2522713,
"latitude": 36.95374,
"longitude": 14.53318,
"name": "Vittoria",
@@ -76943,7 +69591,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2034600,
"latitude": 46.83333,
"longitude": 124.41667,
"name": "Taikang",
@@ -76953,7 +69600,6 @@
"country_code": "US",
"elevation": 1560,
"feature_code": "PPLA2",
- "geonameid": 5820705,
"latitude": 42.86663,
"longitude": -106.31308,
"name": "Casper",
@@ -76963,7 +69609,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111018,
"latitude": 35.8,
"longitude": 140.06667,
"name": "Shiroi",
@@ -76973,7 +69618,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 5350207,
"latitude": 33.70918,
"longitude": -117.95367,
"name": "Fountain Valley",
@@ -76983,7 +69627,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799352,
"latitude": 28.25,
"longitude": 112.55,
"name": "Yutan",
@@ -76993,7 +69636,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1621678,
"latitude": -7.74306,
"longitude": 110.57944,
"name": "Wedi",
@@ -77003,7 +69645,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269422,
"latitude": 26.1451,
"longitude": 79.3366,
"name": "J\u0101laun",
@@ -77013,7 +69654,6 @@
"country_code": "US",
"elevation": 26,
"feature_code": "PPL",
- "geonameid": 4933002,
"latitude": 42.17256,
"longitude": -72.59491,
"name": "Chicopee",
@@ -77023,7 +69663,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3393400,
"latitude": -3.98417,
"longitude": -38.62028,
"name": "Pacatuba",
@@ -77033,7 +69672,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267758,
"latitude": 24.86667,
"longitude": 92.35,
"name": "Kar\u012bmganj",
@@ -77043,7 +69681,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1852849,
"latitude": 36.06667,
"longitude": 139.71667,
"name": "Satte",
@@ -77053,7 +69690,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2959223,
"latitude": 51.76338,
"longitude": 7.8887,
"name": "Ahlen",
@@ -77063,7 +69699,6 @@
"country_code": "US",
"elevation": 1427,
"feature_code": "PPLA",
- "geonameid": 5501344,
"latitude": 39.1638,
"longitude": -119.7674,
"name": "Carson City",
@@ -77073,7 +69708,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4174744,
"latitude": 25.75871,
"longitude": -80.39839,
"name": "Tamiami",
@@ -77083,7 +69717,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2187454,
"latitude": -36.96807,
"longitude": 174.79875,
"name": "Mangere",
@@ -77093,7 +69726,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647639,
"latitude": 52.44859,
"longitude": -2.04938,
"name": "Halesowen",
@@ -77103,7 +69735,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1497951,
"latitude": 56.00639,
"longitude": 90.39139,
"name": "Nazarovo",
@@ -77113,7 +69744,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185127,
"latitude": 23.1,
"longitude": 90.85,
"name": "R\u0101mganj",
@@ -77123,7 +69753,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2229761,
"latitude": 2.95,
"longitude": 9.91667,
"name": "Kribi",
@@ -77133,7 +69762,6 @@
"country_code": "US",
"elevation": 277,
"feature_code": "PPL",
- "geonameid": 5004062,
"latitude": 42.48059,
"longitude": -83.47549,
"name": "Novi",
@@ -77143,7 +69771,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2225991,
"latitude": 11.04611,
"longitude": 14.14011,
"name": "Mora",
@@ -77153,7 +69780,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 547560,
"latitude": 55.36352,
"longitude": 37.52984,
"name": "Klimovsk",
@@ -77163,17 +69789,24 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262852,
"latitude": 25.4,
"longitude": 85.91667,
"name": "Mok\u0101ma",
"population": 55203
},
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLL",
+ "latitude": 51.36217,
+ "longitude": -0.09421,
+ "name": "South Croydon",
+ "population": 55198
+ },
{
"country_code": "US",
"elevation": 141,
"feature_code": "PPLA2",
- "geonameid": 4371582,
"latitude": 39.4015,
"longitude": -76.60191,
"name": "Towson",
@@ -77183,7 +69816,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 730496,
"latitude": 42.61667,
"longitude": 25.4,
"name": "Kazanl\u016dk",
@@ -77193,7 +69825,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 997140,
"latitude": -27.28115,
"longitude": 27.9709,
"name": "Heilbron",
@@ -77203,7 +69834,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1698548,
"latitude": 14.31812,
"longitude": 120.76609,
"name": "Naic",
@@ -77213,7 +69843,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2038421,
"latitude": 46.08333,
"longitude": 127.4,
"name": "Bayan",
@@ -77223,7 +69852,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275582,
"latitude": 24.1855,
"longitude": 78.2031,
"name": "Et\u0101wa",
@@ -77233,7 +69861,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252956,
"latitude": 16.36667,
"longitude": 78.06667,
"name": "Wanparti",
@@ -77243,7 +69870,6 @@
"country_code": "US",
"elevation": 26,
"feature_code": "PPLA2",
- "geonameid": 5101717,
"latitude": 40.48622,
"longitude": -74.45182,
"name": "New Brunswick",
@@ -77253,7 +69879,6 @@
"country_code": "US",
"elevation": 47,
"feature_code": "PPL",
- "geonameid": 4945588,
"latitude": 42.18343,
"longitude": -72.59953,
"name": "North Chicopee",
@@ -77263,7 +69888,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2518505,
"latitude": 38.47783,
"longitude": -0.79157,
"name": "Elda",
@@ -77273,7 +69897,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4160610,
"latitude": 26.93422,
"longitude": -80.09421,
"name": "Jupiter",
@@ -77283,7 +69906,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2499055,
"latitude": 36.68482,
"longitude": 7.75111,
"name": "Drean",
@@ -77293,7 +69915,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4023117,
"latitude": 21.15611,
"longitude": -100.93083,
"name": "Dolores Hidalgo",
@@ -77303,7 +69924,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1586288,
"latitude": 10.41667,
"longitude": 106.96667,
"name": "C\u1ea7n Gi\u1edd",
@@ -77313,7 +69933,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 144794,
"latitude": 36.06667,
"longitude": 50.55,
"name": "\u0100byek",
@@ -77323,7 +69942,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3445153,
"latitude": -20.39028,
"longitude": -40.49611,
"name": "Viana",
@@ -77333,17 +69951,15 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 213940,
- "latitude": -4.45,
- "longitude": 26.66667,
+ "latitude": -4.42741,
+ "longitude": 26.66656,
"name": "Kasongo",
"population": 55118
},
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 3191376,
+ "feature_code": "PPLA2",
"latitude": 44.74667,
"longitude": 19.69,
"name": "\u0160abac",
@@ -77353,7 +69969,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185293,
"latitude": 23.16667,
"longitude": 89.5,
"name": "Narail",
@@ -77363,7 +69978,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3948642,
"latitude": -13.63389,
"longitude": -72.88139,
"name": "Abancay",
@@ -77373,7 +69987,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1610469,
"latitude": 16.43281,
"longitude": 103.50658,
"name": "Kalasin",
@@ -77383,7 +69996,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6853140,
"latitude": 57.6198,
"longitude": 63.0784,
"name": "Lesnoy",
@@ -77393,7 +70005,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257565,
"latitude": 17.05,
"longitude": 82.18333,
"name": "S\u0101malkot",
@@ -77403,7 +70014,6 @@
"country_code": "MA",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2527089,
"latitude": 29.69742,
"longitude": -9.73162,
"name": "Tiznit",
@@ -77413,7 +70023,6 @@
"country_code": "US",
"elevation": 382,
"feature_code": "PPL",
- "geonameid": 4542975,
"latitude": 35.33951,
"longitude": -97.4867,
"name": "Moore",
@@ -77423,7 +70032,6 @@
"country_code": "CA",
"elevation": 729,
"feature_code": "PPL",
- "geonameid": 6146279,
"latitude": 53.51684,
"longitude": -113.3187,
"name": "Sherwood Park",
@@ -77433,7 +70041,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1647179,
"latitude": -7.1475,
"longitude": 111.5906,
"name": "Cepu",
@@ -77443,7 +70050,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3124794,
"latitude": 40.63506,
"longitude": -4.00486,
"name": "Collado-Villalba",
@@ -77453,7 +70059,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3448351,
"latitude": -22.83917,
"longitude": -42.10278,
"name": "S\u00e3o Pedro da Aldeia",
@@ -77463,7 +70068,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1855753,
"latitude": 35.48333,
"longitude": 137.5,
"name": "Nakatsugawa",
@@ -77473,7 +70077,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1510205,
"latitude": 55.6,
"longitude": 86.2,
"name": "Ber\u00ebzovskiy",
@@ -77483,7 +70086,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 711660,
"latitude": 50.35269,
"longitude": 30.95501,
"name": "Boryspil\u2019",
@@ -77493,7 +70095,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278580,
"latitude": 21.16306,
"longitude": 77.30944,
"name": "Anjangaon",
@@ -77503,7 +70104,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4013712,
"latitude": 19.68333,
"longitude": -100.56667,
"name": "Ciudad Hidalgo",
@@ -77513,7 +70113,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 349715,
"latitude": 30.96033,
"longitude": 31.24332,
"name": "Samann\u016bd",
@@ -77523,7 +70122,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272733,
"latitude": 22.71667,
"longitude": 72.46667,
"name": "Dholka",
@@ -77533,7 +70131,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2483757,
"latitude": 36.73587,
"longitude": 3.34018,
"name": "Regha\u00efa",
@@ -77543,7 +70140,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036734,
"latitude": 43.55833,
"longitude": 128.02389,
"name": "Huangnihe",
@@ -77553,7 +70149,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 943960,
"latitude": -27.20841,
"longitude": 26.94855,
"name": "Viljoenskroon",
@@ -77563,7 +70158,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3533005,
"latitude": 22.4,
"longitude": -97.91667,
"name": "Altamira",
@@ -77573,7 +70167,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6138501,
"latitude": 45.78036,
"longitude": -74.00365,
"name": "Saint-J\u00e9r\u00f4me",
@@ -77583,7 +70176,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3404117,
"latitude": -6.45833,
"longitude": -37.09778,
"name": "Caic\u00f3",
@@ -77593,7 +70185,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254346,
"latitude": 10.9,
"longitude": 75.91667,
"name": "Tir\u016br",
@@ -77603,7 +70194,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1506271,
"latitude": 51.95611,
"longitude": 85.955,
"name": "Gorno-Altaysk",
@@ -77613,7 +70203,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787487,
"latitude": 41.11722,
"longitude": 20.80194,
"name": "Ohrid",
@@ -77623,7 +70212,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2953358,
"latitude": 52.0862,
"longitude": 8.74434,
"name": "Bad Salzuflen",
@@ -77633,7 +70221,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2928396,
"latitude": 50.66667,
"longitude": 6.78333,
"name": "Euskirchen",
@@ -77643,7 +70230,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 109380,
"latitude": 28.43905,
"longitude": 48.49132,
"name": "Al Khafj\u012b",
@@ -77653,7 +70239,6 @@
"country_code": "US",
"elevation": 37,
"feature_code": "PPL",
- "geonameid": 4502434,
"latitude": 39.7765,
"longitude": -74.86238,
"name": "Jackson",
@@ -77663,7 +70248,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1803551,
"latitude": 22.70722,
"longitude": 110.34917,
"name": "Lingcheng",
@@ -77673,7 +70257,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268135,
"latitude": 23.95,
"longitude": 88.03333,
"name": "K\u0101ndi",
@@ -77683,7 +70266,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3539560,
"latitude": 22.96139,
"longitude": -82.15111,
"name": "San Jos\u00e9 de las Lajas",
@@ -77693,7 +70275,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3447785,
"latitude": -22.74389,
"longitude": -43.7075,
"name": "Serop\u00e9dica",
@@ -77703,7 +70284,6 @@
"country_code": "CA",
"elevation": 146,
"feature_code": "PPL",
- "geonameid": 7303786,
"latitude": 48.41648,
"longitude": -71.24884,
"name": "Jonqui\u00e8re",
@@ -77713,7 +70293,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3404558,
"latitude": -6.98111,
"longitude": -34.83389,
"name": "Cabedelo",
@@ -77723,7 +70302,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 921815,
"latitude": -12.77944,
"longitude": 45.22722,
"name": "Mamoudzou",
@@ -77733,7 +70311,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2872504,
"latitude": 51.28333,
"longitude": 6.66667,
"name": "Meerbusch",
@@ -77743,7 +70320,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2035836,
"latitude": 49.6,
"longitude": 117.43333,
"name": "Manzhouli",
@@ -77753,7 +70329,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3439317,
"latitude": -25.45,
"longitude": -56.01667,
"name": "Caaguaz\u00fa",
@@ -77763,7 +70338,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3515044,
"latitude": 19.68472,
"longitude": -99.12917,
"name": "Tultepec",
@@ -77773,7 +70347,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302815,
"latitude": 5.28883,
"longitude": 115.26924,
"name": "Bandar Labuan",
@@ -77783,7 +70356,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2806914,
"latitude": 52.16667,
"longitude": 10.55,
"name": "Wolfenb\u00fcttel",
@@ -77793,7 +70365,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2646329,
"latitude": 53.4115,
"longitude": -2.83935,
"name": "Huyton",
@@ -77803,7 +70374,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851368,
"latitude": 36.03799,
"longitude": 138.11308,
"name": "Suwa",
@@ -77813,7 +70383,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3618908,
"latitude": 12.10629,
"longitude": -85.36452,
"name": "Juigalpa",
@@ -77823,7 +70392,6 @@
"country_code": "US",
"elevation": 42,
"feature_code": "PPL",
- "geonameid": 4349159,
"latitude": 38.94278,
"longitude": -76.73028,
"name": "Bowie",
@@ -77833,7 +70401,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2263827,
"latitude": 38.77457,
"longitude": -9.3276,
"name": "Rio de Mouro",
@@ -77843,7 +70410,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2036106,
"latitude": 41.50611,
"longitude": 122.72417,
"name": "Liaozhong",
@@ -77853,7 +70419,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2897216,
"latitude": 50.87079,
"longitude": 6.86761,
"name": "H\u00fcrth",
@@ -77863,7 +70428,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 349114,
"latitude": 31.19544,
"longitude": 31.52127,
"name": "Shirb\u00een",
@@ -77873,7 +70437,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2652974,
"latitude": 51.78967,
"longitude": 1.15597,
"name": "Clacton-on-Sea",
@@ -77883,7 +70446,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503755,
"latitude": 36.54222,
"longitude": 3.95306,
"name": "Boghni",
@@ -77893,7 +70455,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2990355,
"latitude": 46.32313,
"longitude": -0.45877,
"name": "Niort",
@@ -77903,7 +70464,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271346,
"latitude": 22.66667,
"longitude": 87.71667,
"name": "Gh\u0101t\u0101l",
@@ -77913,7 +70473,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1684681,
"latitude": 6.6925,
"longitude": 124.67639,
"name": "Tacurong",
@@ -77923,7 +70482,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290253,
"latitude": 52.47693,
"longitude": 13.41027,
"name": "Berlin Tempelhof",
@@ -77933,7 +70491,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2265467,
"latitude": 38.79269,
"longitude": -9.1838,
"name": "Odivelas",
@@ -77943,7 +70500,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253750,
"latitude": 23.8,
"longitude": 72.4,
"name": "Unjha",
@@ -77953,7 +70509,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2525764,
"latitude": 37.32084,
"longitude": 13.58876,
"name": "Agrigento",
@@ -77963,7 +70518,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 650946,
"latitude": 60.46667,
"longitude": 26.91667,
"name": "Kotka",
@@ -77973,7 +70527,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3583480,
"latitude": 13.65889,
"longitude": -89.18306,
"name": "San Marcos",
@@ -77983,7 +70536,6 @@
"country_code": "US",
"elevation": 85,
"feature_code": "PPL",
- "geonameid": 4604183,
"latitude": 35.20453,
"longitude": -89.87398,
"name": "Bartlett",
@@ -77993,7 +70545,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3457952,
"latitude": -20.25806,
"longitude": -42.03361,
"name": "Manhua\u00e7u",
@@ -78003,7 +70554,6 @@
"country_code": "RO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 664460,
"latitude": 46.56667,
"longitude": 23.78333,
"name": "Turda",
@@ -78013,7 +70563,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 260114,
"latitude": 35.51222,
"longitude": 24.01556,
"name": "Chani\u00e1",
@@ -78023,7 +70572,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3033791,
"latitude": 47.63333,
"longitude": 6.86667,
"name": "Belfort",
@@ -78033,7 +70581,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 260133,
"latitude": 38.46361,
"longitude": 23.59944,
"name": "Chalk\u00edda",
@@ -78043,7 +70590,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3940002,
"latitude": -11.10667,
"longitude": -77.605,
"name": "Huacho",
@@ -78053,7 +70599,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 173480,
"latitude": 35.02089,
"longitude": 40.45346,
"name": "May\u0101d\u012bn",
@@ -78063,7 +70608,6 @@
"country_code": "US",
"elevation": 218,
"feature_code": "PPLA2",
- "geonameid": 5153207,
"latitude": 41.36838,
"longitude": -82.10765,
"name": "Elyria",
@@ -78073,7 +70617,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256854,
"latitude": 21.68333,
"longitude": 75.1,
"name": "Sendhwa",
@@ -78083,7 +70626,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 577893,
"latitude": 44.76733,
"longitude": 39.87424,
"name": "Belorechensk",
@@ -78093,7 +70635,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3684917,
"latitude": 9.00114,
"longitude": -73.97581,
"name": "El Banco",
@@ -78103,7 +70644,6 @@
"country_code": "US",
"elevation": 67,
"feature_code": "PPLA2",
- "geonameid": 4228147,
"latitude": 30.8327,
"longitude": -83.27849,
"name": "Valdosta",
@@ -78113,7 +70653,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3934608,
"latitude": -17.19556,
"longitude": -70.93528,
"name": "Moquegua",
@@ -78123,7 +70662,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3861344,
"latitude": -34.89566,
"longitude": -60.01667,
"name": "Chivilcoy",
@@ -78133,7 +70671,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1862612,
"latitude": 36.85,
"longitude": 136.98333,
"name": "Himi",
@@ -78143,7 +70680,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254343,
"latitude": 9.48333,
"longitude": 77.83333,
"name": "Tiruttangal",
@@ -78153,7 +70689,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3590219,
"latitude": 14.95,
"longitude": -91.45,
"name": "San Francisco El Alto",
@@ -78163,7 +70698,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3454235,
"latitude": -21.41972,
"longitude": -50.0775,
"name": "Pen\u00e1polis",
@@ -78173,7 +70707,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 110325,
"latitude": 24.50772,
"longitude": 44.39237,
"name": "Ad Daw\u0101dim\u012b",
@@ -78183,7 +70716,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214724,
"latitude": 4.4683,
"longitude": 97.9683,
"name": "Langsa",
@@ -78193,7 +70725,6 @@
"country_code": "US",
"elevation": 71,
"feature_code": "PPLA2",
- "geonameid": 5720727,
"latitude": 44.56457,
"longitude": -123.26204,
"name": "Corvallis",
@@ -78203,7 +70734,6 @@
"country_code": "CN",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1799552,
"latitude": 29.35955,
"longitude": 112.40243,
"name": "Nanzhou",
@@ -78213,7 +70743,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2302821,
"latitude": 10.78556,
"longitude": -0.85139,
"name": "Bolgatanga",
@@ -78223,7 +70752,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3682281,
"latitude": 4.71638,
"longitude": -74.21195,
"name": "Funza",
@@ -78233,7 +70761,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185138,
"latitude": 22.56667,
"longitude": 89.98333,
"name": "Pirojpur",
@@ -78243,7 +70770,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3458131,
"latitude": -23.31861,
"longitude": -46.58667,
"name": "Mairipor\u00e3",
@@ -78253,7 +70779,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 725905,
"latitude": 43.99,
"longitude": 22.8725,
"name": "Vidin",
@@ -78263,7 +70788,6 @@
"country_code": "US",
"elevation": 31,
"feature_code": "PPL",
- "geonameid": 4955336,
"latitude": 42.22093,
"longitude": -70.93977,
"name": "Weymouth",
@@ -78273,7 +70797,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4169130,
"latitude": 26.97617,
"longitude": -82.09064,
"name": "Port Charlotte",
@@ -78283,7 +70806,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1292313,
"latitude": 17.65,
"longitude": 95.8,
"name": "Tharyarwady",
@@ -78293,7 +70815,6 @@
"country_code": "US",
"elevation": 382,
"feature_code": "PPL",
- "geonameid": 4542765,
"latitude": 35.44951,
"longitude": -97.3967,
"name": "Midwest City",
@@ -78303,7 +70824,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3038334,
"latitude": 41.92723,
"longitude": 8.73462,
"name": "Ajaccio",
@@ -78313,7 +70833,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3556437,
"latitude": 22.52694,
"longitude": -81.12861,
"name": "Jag\u00fcey Grande",
@@ -78323,7 +70842,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 288899,
"latitude": 22.97339,
"longitude": 57.29958,
"name": "Bahl\u0101\u2019",
@@ -78333,7 +70851,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2021618,
"latitude": 50.0979,
"longitude": 118.0369,
"name": "Krasnokamensk",
@@ -78343,7 +70860,6 @@
"country_code": "MZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1037390,
"latitude": -15.03417,
"longitude": 40.73583,
"name": "Ilha de Mo\u00e7ambique",
@@ -78353,7 +70869,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256382,
"latitude": 23.91667,
"longitude": 72.38333,
"name": "Siddhapur",
@@ -78363,7 +70878,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272670,
"latitude": 30.36667,
"longitude": 75.86667,
"name": "Dh\u016bri",
@@ -78373,7 +70887,6 @@
"country_code": "US",
"elevation": 37,
"feature_code": "PPL",
- "geonameid": 4733624,
"latitude": 30.07994,
"longitude": -95.41716,
"name": "Spring",
@@ -78383,7 +70896,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3437444,
"latitude": -25.53333,
"longitude": -54.61667,
"name": "Presidente Franco",
@@ -78393,7 +70905,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854384,
"latitude": 36.05659,
"longitude": 138.0451,
"name": "Okaya",
@@ -78403,7 +70914,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2648187,
"latitude": 51.44138,
"longitude": 0.37371,
"name": "Gravesend",
@@ -78413,7 +70923,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 6295533,
"latitude": 47.42326,
"longitude": 8.52166,
"name": "Z\u00fcrich (Kreis 11)",
@@ -78423,7 +70932,6 @@
"country_code": "US",
"elevation": 1360,
"feature_code": "PPLA2",
- "geonameid": 5604045,
"latitude": 42.8713,
"longitude": -112.44553,
"name": "Pocatello",
@@ -78433,7 +70941,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2222230,
"latitude": 2.93333,
"longitude": 11.98333,
"name": "Sangm\u00e9lima",
@@ -78443,7 +70950,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256369,
"latitude": 24.41667,
"longitude": 81.88333,
"name": "Sidhi",
@@ -78453,7 +70959,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2953504,
"latitude": 48.75,
"longitude": 8.25,
"name": "Baden-Baden",
@@ -78463,7 +70968,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2650396,
"latitude": 50.96667,
"longitude": -1.35,
"name": "Eastleigh",
@@ -78473,7 +70977,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3518221,
"latitude": 19.28194,
"longitude": -99.73861,
"name": "San Miguel Zinacantepec",
@@ -78483,7 +70986,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358115,
"latitude": 26.12467,
"longitude": 32.47598,
"name": "Dishn\u0101",
@@ -78493,7 +70995,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3429790,
"latitude": -26.40842,
"longitude": -54.69463,
"name": "Puerto Eldorado",
@@ -78503,7 +71004,6 @@
"country_code": "PR",
"elevation": 20,
"feature_code": "PPL",
- "geonameid": 4568451,
"latitude": 18.35467,
"longitude": -66.00739,
"name": "Trujillo Alto",
@@ -78513,7 +71013,6 @@
"country_code": "US",
"elevation": 204,
"feature_code": "PPL",
- "geonameid": 4903024,
"latitude": 42.06642,
"longitude": -87.93729,
"name": "Mount Prospect",
@@ -78523,7 +71022,6 @@
"country_code": "US",
"elevation": 140,
"feature_code": "PPL",
- "geonameid": 5384471,
"latitude": 36.06523,
"longitude": -119.01677,
"name": "Porterville",
@@ -78533,7 +71031,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2742611,
"latitude": 40.64427,
"longitude": -8.64554,
"name": "Aveiro",
@@ -78543,7 +71040,6 @@
"country_code": "US",
"elevation": 13,
"feature_code": "PPL",
- "geonameid": 5808079,
"latitude": 47.67399,
"longitude": -122.12151,
"name": "Redmond",
@@ -78553,7 +71049,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 102651,
"latitude": 17.1495,
"longitude": 42.62537,
"name": "\u015eaby\u0101",
@@ -78563,7 +71058,6 @@
"country_code": "US",
"elevation": 14,
"feature_code": "PPL",
- "geonameid": 4154047,
"latitude": 30.42881,
"longitude": -87.17997,
"name": "East Pensacola Heights",
@@ -78573,7 +71067,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 707688,
"latitude": 46.30495,
"longitude": 30.65478,
"name": "Illichivs\u2019k",
@@ -78583,7 +71076,6 @@
"country_code": "US",
"elevation": 21,
"feature_code": "PPL",
- "geonameid": 5381110,
"latitude": 33.88946,
"longitude": -118.15979,
"name": "Paramount",
@@ -78593,7 +71085,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 459201,
"latitude": 56.968,
"longitude": 23.77038,
"name": "J\u016brmala",
@@ -78603,7 +71094,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3129857,
"latitude": 40.03108,
"longitude": -3.60246,
"name": "Aranjuez",
@@ -78613,7 +71103,6 @@
"country_code": "US",
"elevation": 138,
"feature_code": "PPL",
- "geonameid": 5354819,
"latitude": 33.99307,
"longitude": -117.96868,
"name": "Hacienda Heights",
@@ -78623,7 +71112,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3545841,
"latitude": 21.54528,
"longitude": -77.26444,
"name": "Nuevitas",
@@ -78633,7 +71121,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2500904,
"latitude": 34.89638,
"longitude": 3.48543,
"name": "Dar Chioukh",
@@ -78643,7 +71130,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851357,
"latitude": 36.65,
"longitude": 138.31667,
"name": "Suzaka",
@@ -78653,7 +71139,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2970777,
"latitude": 47.66667,
"longitude": -2.75,
"name": "Vannes",
@@ -78663,7 +71148,6 @@
"country_code": "DE",
"elevation": 250,
"feature_code": "PPL",
- "geonameid": 2834498,
"latitude": 50.05,
"longitude": 10.23333,
"name": "Schweinfurt",
@@ -78673,7 +71157,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1252840,
"latitude": 26.1,
"longitude": 94.26667,
"name": "Wokha",
@@ -78683,7 +71166,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2392505,
"latitude": 9.94009,
"longitude": 3.21075,
"name": "Nikki",
@@ -78693,7 +71175,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2864054,
"latitude": 49.35667,
"longitude": 8.13778,
"name": "Neustadt an der Weinstra\u00dfe",
@@ -78703,7 +71184,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2975921,
"latitude": 48.9482,
"longitude": 2.19169,
"name": "Sartrouville",
@@ -78713,7 +71193,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 5964215,
"latitude": 45.40008,
"longitude": -72.73243,
"name": "Granby",
@@ -78723,7 +71202,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2229748,
"latitude": 6.2,
"longitude": 10.66667,
"name": "Kumbo",
@@ -78733,7 +71211,6 @@
"country_code": "US",
"elevation": 76,
"feature_code": "PPLA2",
- "geonameid": 5355180,
"latitude": 36.32745,
"longitude": -119.64568,
"name": "Hanford",
@@ -78743,7 +71220,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2996568,
"latitude": 48.81171,
"longitude": 2.43945,
"name": "Maisons-Alfort",
@@ -78753,7 +71229,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268341,
"latitude": 23.21667,
"longitude": 88.36667,
"name": "K\u0101lna",
@@ -78763,7 +71238,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3436199,
"latitude": -36.77698,
"longitude": -59.85854,
"name": "Azul",
@@ -78773,7 +71247,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 482965,
"latitude": 45.61694,
"longitude": 38.94528,
"name": "Timash\u00ebvsk",
@@ -78783,7 +71256,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 496278,
"latitude": 69.06889,
"longitude": 33.41622,
"name": "Severomorsk",
@@ -78793,7 +71265,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1277091,
"latitude": 18.15,
"longitude": 74.58333,
"name": "B\u0101r\u0101mati",
@@ -78803,7 +71274,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 5120478,
"latitude": 40.70621,
"longitude": -73.61874,
"name": "Hempstead",
@@ -78813,7 +71283,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 565381,
"latitude": 55.4413,
"longitude": 37.75367,
"name": "Domodedovo",
@@ -78823,7 +71292,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140521,
"latitude": 35.8668,
"longitude": 47.60506,
"name": "B\u012bj\u0101r",
@@ -78833,7 +71301,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 120972,
"latitude": 35.308,
"longitude": 51.7267,
"name": "P\u012bshv\u0101",
@@ -78843,7 +71310,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 356933,
"latitude": 26.05494,
"longitude": 32.16329,
"name": "Farsh\u016b\u0163",
@@ -78853,7 +71319,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4720039,
"latitude": 29.89883,
"longitude": -93.92878,
"name": "Port Arthur",
@@ -78863,7 +71328,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2994798,
"latitude": 48.96014,
"longitude": 2.87885,
"name": "Meaux",
@@ -78873,7 +71337,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2290462,
"latitude": 7.25957,
"longitude": -8.15498,
"name": "Danan\u00e9",
@@ -78883,7 +71346,6 @@
"country_code": "US",
"elevation": 23,
"feature_code": "PPL",
- "geonameid": 5100280,
"latitude": 40.09789,
"longitude": -74.21764,
"name": "Lakewood",
@@ -78893,7 +71355,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 470252,
"latitude": 57.59125,
"longitude": 34.56453,
"name": "Vyshniy Voloch\u00ebk",
@@ -78903,7 +71364,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2644204,
"latitude": 55.90288,
"longitude": -3.52261,
"name": "Livingston",
@@ -78913,7 +71373,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3174921,
"latitude": 45.59597,
"longitude": 8.90784,
"name": "Legnano",
@@ -78923,7 +71382,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 707292,
"latitude": 49.20875,
"longitude": 37.24848,
"name": "Izyum",
@@ -78933,7 +71391,6 @@
"country_code": "US",
"elevation": 97,
"feature_code": "PPL",
- "geonameid": 5388867,
"latitude": 34.08057,
"longitude": -118.07285,
"name": "Rosemead",
@@ -78943,7 +71400,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2851746,
"latitude": 51.0,
"longitude": 6.8,
"name": "Pulheim",
@@ -78953,7 +71409,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1587919,
"latitude": 20.07806,
"longitude": 105.86028,
"name": "B\u1ec9m S\u01a1n",
@@ -78963,7 +71418,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 762909,
"latitude": 53.08621,
"longitude": 21.57566,
"name": "Ostro\u0142\u0119ka",
@@ -78973,7 +71427,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 758390,
"latitude": 51.0374,
"longitude": 21.07126,
"name": "Starachowice",
@@ -78983,7 +71436,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2453662,
"latitude": 13.7021,
"longitude": -6.0659,
"name": "Markala",
@@ -78993,7 +71445,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2473744,
"latitude": 36.4,
"longitude": 10.61667,
"name": "Al \u1e28amm\u0101m\u0101t",
@@ -79003,7 +71454,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1591527,
"latitude": 21.26667,
"longitude": 106.2,
"name": "B\u1eafc Giang",
@@ -79013,9 +71463,8 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 933099,
- "latitude": -21.97903,
- "longitude": 27.84983,
+ "latitude": -21.97895,
+ "longitude": 27.84296,
"name": "Selebi-Phikwe",
"population": 53727
},
@@ -79023,7 +71472,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 584649,
"latitude": 40.61832,
"longitude": 47.15014,
"name": "Yevlakh",
@@ -79033,7 +71481,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2657697,
"latitude": 51.50901,
"longitude": -0.2762,
"name": "Acton",
@@ -79043,7 +71490,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3672110,
"latitude": 1.84966,
"longitude": -76.04785,
"name": "Pitalito",
@@ -79053,7 +71499,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3625710,
"latitude": 8.00861,
"longitude": -62.39889,
"name": "Upata",
@@ -79063,7 +71508,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1145352,
"latitude": 35.01361,
"longitude": 69.17139,
"name": "Charikar",
@@ -79073,7 +71517,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3671315,
"latitude": 3.23114,
"longitude": -76.41668,
"name": "Puerto Tejada",
@@ -79083,7 +71526,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268111,
"latitude": 15.21667,
"longitude": 79.91667,
"name": "Kanduk\u016br",
@@ -79093,7 +71535,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3032213,
"latitude": 47.58333,
"longitude": 1.33333,
"name": "Blois",
@@ -79103,7 +71544,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1255449,
"latitude": 30.13333,
"longitude": 75.8,
"name": "Sun\u0101m",
@@ -79113,7 +71553,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3177300,
"latitude": 44.2857,
"longitude": 11.88334,
"name": "Faenza",
@@ -79123,7 +71562,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7302810,
"latitude": 17.36687,
"longitude": 78.5242,
"name": "Gaddi Annaram",
@@ -79133,7 +71571,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257001,
"latitude": 16.4,
"longitude": 80.18333,
"name": "Sattenapalle",
@@ -79143,7 +71580,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 582182,
"latitude": 44.89084,
"longitude": 37.3239,
"name": "Anapa",
@@ -79153,7 +71589,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 695379,
"latitude": 48.08332,
"longitude": 39.37764,
"name": "Roven\u2019ki",
@@ -79163,7 +71598,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3673045,
"latitude": 7.37565,
"longitude": -72.64795,
"name": "Pamplona",
@@ -79173,7 +71607,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA2",
- "geonameid": 4172086,
"latitude": 28.80055,
"longitude": -81.27312,
"name": "Sanford",
@@ -79183,7 +71616,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 367308,
"latitude": 16.6915,
"longitude": 33.4341,
"name": "Shendi",
@@ -79193,7 +71625,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2634715,
"latitude": 54.9,
"longitude": -1.51667,
"name": "Washington",
@@ -79203,7 +71634,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1270032,
"latitude": 13.94556,
"longitude": 76.61917,
"name": "Hiriy\u016br",
@@ -79213,7 +71643,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 571159,
"latitude": 53.6554,
"longitude": 52.442,
"name": "Buguruslan",
@@ -79223,7 +71652,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274862,
"latitude": 14.31667,
"longitude": 76.65,
"name": "Challakere",
@@ -79233,7 +71661,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3619267,
"latitude": 12.6633,
"longitude": -87.16722,
"name": "El Viejo",
@@ -79243,7 +71670,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 304612,
"latitude": 38.60754,
"longitude": 27.06938,
"name": "Menemen",
@@ -79253,7 +71679,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3938415,
"latitude": -17.63944,
"longitude": -71.3375,
"name": "Ilo",
@@ -79263,7 +71688,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258581,
"latitude": 24.16667,
"longitude": 87.78333,
"name": "R\u0101mpur H\u0101t",
@@ -79273,7 +71697,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3029974,
"latitude": 45.15,
"longitude": 1.53333,
"name": "Brive-la-Gaillarde",
@@ -79283,7 +71706,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263427,
"latitude": 25.35,
"longitude": 85.03333,
"name": "Masaurhi Buzurg",
@@ -79293,7 +71715,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3036938,
"latitude": 43.67681,
"longitude": 4.63031,
"name": "Arles",
@@ -79303,7 +71724,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 128831,
"latitude": 34.5043,
"longitude": 47.9653,
"name": "Kang\u0101var",
@@ -79313,7 +71733,6 @@
"country_code": "US",
"elevation": 107,
"feature_code": "PPL",
- "geonameid": 5393429,
"latitude": 32.83838,
"longitude": -116.97392,
"name": "Santee",
@@ -79323,7 +71742,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606033,
"latitude": 14.47418,
"longitude": 100.12218,
"name": "Suphan Buri",
@@ -79333,7 +71751,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3034006,
"latitude": 49.43333,
"longitude": 2.08333,
"name": "Beauvais",
@@ -79343,7 +71760,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261110,
"latitude": 16.78333,
"longitude": 80.85,
"name": "N\u016bzv\u012bd",
@@ -79353,7 +71769,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3838793,
"latitude": -32.17301,
"longitude": -64.11406,
"name": "R\u00edo Tercero",
@@ -79363,7 +71778,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 655808,
"latitude": 62.60118,
"longitude": 29.76316,
"name": "Joensuu",
@@ -79373,7 +71787,6 @@
"country_code": "US",
"elevation": 215,
"feature_code": "PPL",
- "geonameid": 4830796,
"latitude": 32.60986,
"longitude": -85.48078,
"name": "Auburn",
@@ -79383,17 +71796,24 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3598119,
"latitude": 15.48333,
"longitude": -90.36667,
"name": "Cob\u00e1n",
"population": 53375
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.56681,
+ "longitude": 13.51255,
+ "name": "Neu-Hohensch\u00f6nhausen",
+ "population": 53374
+ },
{
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1513966,
"latitude": 40.48972,
"longitude": 68.78417,
"name": "Guliston",
@@ -79403,7 +71823,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3182640,
"latitude": 40.97321,
"longitude": 14.20493,
"name": "Aversa",
@@ -79413,7 +71832,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3398115,
"latitude": -8.39889,
"longitude": -35.06389,
"name": "Ipojuca",
@@ -79423,7 +71841,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1168307,
"latitude": 32.26413,
"longitude": 74.66342,
"name": "Pasr\u016br",
@@ -79433,7 +71850,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3173180,
"latitude": 44.99625,
"longitude": 7.69032,
"name": "Moncalieri",
@@ -79443,7 +71859,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256693,
"latitude": 23.43333,
"longitude": 76.26667,
"name": "Sh\u0101j\u0101pur",
@@ -79453,7 +71868,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259124,
"latitude": 12.76667,
"longitude": 75.21667,
"name": "Putt\u016br",
@@ -79463,7 +71877,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1879487,
"latitude": 38.39917,
"longitude": 125.61556,
"name": "Chaery\u014fng-\u016dp",
@@ -79473,7 +71886,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2645753,
"latitude": 52.39836,
"longitude": -0.72571,
"name": "Kettering",
@@ -79483,7 +71895,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3467684,
"latitude": -22.73944,
"longitude": -45.59139,
"name": "Campos do Jord\u00e3o",
@@ -79493,7 +71904,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2482090,
"latitude": 36.12868,
"longitude": 7.53376,
"name": "Sedrata",
@@ -79503,7 +71913,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267616,
"latitude": 12.5,
"longitude": 75.0,
"name": "K\u0101saragod",
@@ -79513,7 +71922,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3026204,
"latitude": 46.81667,
"longitude": 1.7,
"name": "Ch\u00e2teauroux",
@@ -79523,7 +71931,6 @@
"country_code": "ST",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2410763,
"latitude": 0.33654,
"longitude": 6.72732,
"name": "S\u00e3o Tom\u00e9",
@@ -79533,7 +71940,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 735914,
"latitude": 40.27194,
"longitude": 22.5025,
"name": "Kater\u00edni",
@@ -79543,7 +71949,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278094,
"latitude": 26.8,
"longitude": 82.2,
"name": "Ayodhya",
@@ -79553,7 +71958,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4163407,
"latitude": 26.24453,
"longitude": -80.20644,
"name": "Margate",
@@ -79563,7 +71967,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1628899,
"latitude": -7.1872,
"longitude": 113.2394,
"name": "Sampang",
@@ -79573,7 +71976,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1262678,
"latitude": 26.09,
"longitude": 83.29222,
"name": "Mub\u0101rakpur",
@@ -79583,7 +71985,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111568,
"latitude": 35.51667,
"longitude": 140.31667,
"name": "\u014cami",
@@ -79593,7 +71994,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1856456,
"latitude": 34.96545,
"longitude": 135.70415,
"name": "Muk\u014d",
@@ -79603,7 +72003,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3516225,
"latitude": 18.55,
"longitude": -99.6,
"name": "Taxco de Alarc\u00f3n",
@@ -79613,7 +72012,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 562321,
"latitude": 55.73321,
"longitude": 38.46458,
"name": "Fryazevo",
@@ -79623,7 +72021,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259811,
"latitude": 17.98333,
"longitude": 74.43333,
"name": "Phaltan",
@@ -79633,7 +72030,6 @@
"country_code": "US",
"elevation": 20,
"feature_code": "PPL",
- "geonameid": 4168930,
"latitude": 28.14029,
"longitude": -81.45841,
"name": "Poinciana",
@@ -79643,7 +72039,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1636308,
"latitude": -0.86667,
"longitude": 134.08333,
"name": "Manokwari",
@@ -79653,7 +72048,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257459,
"latitude": 27.08333,
"longitude": 80.51667,
"name": "Sand\u012bla",
@@ -79663,7 +72057,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3691348,
"latitude": -9.28951,
"longitude": -76.00876,
"name": "Tingo Mar\u00eda",
@@ -79673,7 +72066,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3468014,
"latitude": -30.85111,
"longitude": -51.81222,
"name": "Camaqu\u00e3",
@@ -79683,7 +72075,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 739634,
"latitude": 41.08022,
"longitude": 28.22605,
"name": "Silivri",
@@ -79693,7 +72084,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3025053,
"latitude": 47.06667,
"longitude": -0.88333,
"name": "Cholet",
@@ -79703,7 +72093,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3080526,
"latitude": 50.48766,
"longitude": 19.41679,
"name": "Zawiercie",
@@ -79713,7 +72102,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 172946,
"latitude": 34.92653,
"longitude": 36.73238,
"name": "Ar Rastan",
@@ -79723,7 +72111,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257851,
"latitude": 14.16667,
"longitude": 75.03333,
"name": "S\u0101gar",
@@ -79733,7 +72120,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6395804,
"latitude": 34.8262,
"longitude": 126.10863,
"name": "Sinan",
@@ -79743,7 +72129,6 @@
"country_code": "SA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 107781,
"latitude": 26.29945,
"longitude": 44.81542,
"name": "Az Zulfi",
@@ -79753,7 +72138,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3165322,
"latitude": 41.27273,
"longitude": 16.41537,
"name": "Trani",
@@ -79763,7 +72147,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2913761,
"latitude": 51.03333,
"longitude": 7.55,
"name": "Gummersbach",
@@ -79773,7 +72156,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2511032,
"latitude": 38.3964,
"longitude": -0.5255,
"name": "San Vicent del Raspeig",
@@ -79783,7 +72165,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624987,
"latitude": -3.93333,
"longitude": 103.8,
"name": "Tanjungagung",
@@ -79793,7 +72174,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2749450,
"latitude": 51.645,
"longitude": 4.85972,
"name": "Oosterhout",
@@ -79803,7 +72183,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1283368,
"latitude": 28.23333,
"longitude": 81.33333,
"name": "Gulariy\u0101",
@@ -79813,7 +72192,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3567869,
"latitude": 20.9625,
"longitude": -75.71861,
"name": "Banes",
@@ -79823,7 +72201,6 @@
"country_code": "US",
"elevation": 399,
"feature_code": "PPL",
- "geonameid": 5356868,
"latitude": 34.12834,
"longitude": -117.20865,
"name": "Highland",
@@ -79833,7 +72210,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1841149,
"latitude": 35.49333,
"longitude": 128.74889,
"name": "Miryang",
@@ -79843,7 +72219,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 146970,
"latitude": 39.8177,
"longitude": 46.7528,
"name": "Xank\u01ddndi",
@@ -79853,7 +72228,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3641275,
"latitude": 9.78734,
"longitude": -69.7937,
"name": "El Tocuyo",
@@ -79863,7 +72237,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3017253,
"latitude": 43.43286,
"longitude": 6.73524,
"name": "Fr\u00e9jus",
@@ -79873,7 +72246,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1566346,
"latitude": 20.45,
"longitude": 106.33333,
"name": "Th\u00e1i B\u00ecnh",
@@ -79883,7 +72255,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 88835,
"latitude": 32.76162,
"longitude": 22.24237,
"name": "Al Qubbah",
@@ -79893,7 +72264,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863023,
"latitude": 35.83417,
"longitude": 139.73639,
"name": "Hatogaya",
@@ -79903,7 +72273,6 @@
"country_code": "US",
"elevation": 96,
"feature_code": "PPL",
- "geonameid": 5342485,
"latitude": 35.76884,
"longitude": -119.24705,
"name": "Delano",
@@ -79912,8 +72281,7 @@
{
"country_code": "RO",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 673634,
+ "feature_code": "PPLA2",
"latitude": 46.16667,
"longitude": 24.35,
"name": "Media\u015f",
@@ -79923,7 +72291,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264839,
"latitude": 23.43333,
"longitude": 84.68333,
"name": "Loh\u0101rdaga",
@@ -79933,7 +72300,6 @@
"country_code": "US",
"elevation": 147,
"feature_code": "PPL",
- "geonameid": 5810301,
"latitude": 47.75565,
"longitude": -122.34152,
"name": "Shoreline",
@@ -79943,7 +72309,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 155101,
"latitude": -8.85,
"longitude": 34.83333,
"name": "Makumbako",
@@ -79953,7 +72318,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2494029,
"latitude": 31.68041,
"longitude": 6.07286,
"name": "Hassi Messaoud",
@@ -79963,7 +72327,6 @@
"country_code": "SK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3058000,
"latitude": 48.77446,
"longitude": 18.6275,
"name": "Prievidza",
@@ -79973,7 +72336,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 5197796,
"latitude": 40.15511,
"longitude": -74.82877,
"name": "Levittown",
@@ -79983,7 +72345,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 736928,
"latitude": 40.8475,
"longitude": 25.87444,
"name": "Alexandro\u00fapoli",
@@ -79993,7 +72354,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273232,
"latitude": 19.95,
"longitude": 73.83333,
"name": "Deol\u0101li",
@@ -80003,7 +72363,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256759,
"latitude": 17.1307,
"longitude": 76.94361,
"name": "Sh\u0101h\u0101b\u0101d",
@@ -80013,7 +72372,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3430708,
"latitude": -34.65146,
"longitude": -59.43068,
"name": "Mercedes",
@@ -80023,7 +72381,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2815330,
"latitude": 48.83241,
"longitude": 9.31641,
"name": "Waiblingen",
@@ -80033,7 +72390,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3401548,
"latitude": -5.17833,
"longitude": -40.6775,
"name": "Crate\u00fas",
@@ -80043,7 +72399,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3617459,
"latitude": 11.68758,
"longitude": -84.45616,
"name": "Nueva Guinea",
@@ -80053,7 +72408,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2988621,
"latitude": 48.89437,
"longitude": 2.40935,
"name": "Pantin",
@@ -80063,7 +72417,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 534701,
"latitude": 52.42534,
"longitude": 37.60689,
"name": "Livny",
@@ -80073,7 +72426,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 4151455,
"latitude": 26.25175,
"longitude": -80.17894,
"name": "Coconut Creek",
@@ -80083,7 +72435,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1150275,
"latitude": 13.9,
"longitude": 99.76667,
"name": "Tha Maka",
@@ -80093,7 +72444,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 4004887,
"latitude": 30.71667,
"longitude": -112.15,
"name": "Heroica Caborca",
@@ -80103,7 +72453,6 @@
"country_code": "US",
"elevation": 231,
"feature_code": "PPLA2",
- "geonameid": 4916288,
"latitude": 41.86614,
"longitude": -88.10701,
"name": "Wheaton",
@@ -80113,7 +72462,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1694290,
"latitude": 14.11667,
"longitude": 120.96667,
"name": "Patuto",
@@ -80123,7 +72471,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2500282,
"latitude": 33.53388,
"longitude": 5.99306,
"name": "Djamaa",
@@ -80133,7 +72480,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 160833,
"latitude": -3.02361,
"longitude": 31.87472,
"name": "Buseresere",
@@ -80142,8 +72488,7 @@
{
"country_code": "TJ",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 1220253,
+ "feature_code": "PPLA2",
"latitude": 39.9142,
"longitude": 69.00328,
"name": "Istaravshan",
@@ -80153,7 +72498,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275406,
"latitude": 18.56667,
"longitude": 83.36667,
"name": "Bobbili",
@@ -80163,7 +72507,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274237,
"latitude": 20.35,
"longitude": 76.25,
"name": "Chikhli",
@@ -80173,7 +72516,6 @@
"country_code": "US",
"elevation": 253,
"feature_code": "PPLA2",
- "geonameid": 5059429,
"latitude": 47.92526,
"longitude": -97.03285,
"name": "Grand Forks",
@@ -80183,7 +72525,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2784821,
"latitude": 50.58907,
"longitude": 5.86241,
"name": "Verviers",
@@ -80193,7 +72534,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1706361,
"latitude": 14.56194,
"longitude": 120.59833,
"name": "Limay",
@@ -80203,7 +72543,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2861934,
"latitude": 52.43333,
"longitude": 7.08333,
"name": "Nordhorn",
@@ -80213,7 +72552,6 @@
"country_code": "ZA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 964406,
"latitude": -30.74137,
"longitude": 30.45499,
"name": "Port Shepstone",
@@ -80223,7 +72561,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 325336,
"latitude": 38.80389,
"longitude": 42.73422,
"name": "Adilcevaz",
@@ -80233,7 +72570,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2981280,
"latitude": 48.51667,
"longitude": -2.78333,
"name": "Saint-Brieuc",
@@ -80243,7 +72579,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266217,
"latitude": 25.98333,
"longitude": 79.15,
"name": "Konch",
@@ -80253,7 +72588,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1858498,
"latitude": 34.0,
"longitude": 131.86667,
"name": "Kudamatsu",
@@ -80263,7 +72597,6 @@
"country_code": "US",
"elevation": 8,
"feature_code": "PPL",
- "geonameid": 4838652,
"latitude": 41.22232,
"longitude": -73.0565,
"name": "Milford",
@@ -80273,7 +72606,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 134217,
"latitude": 29.5791,
"longitude": 50.517,
"name": "Bandar-e Gan\u0101veh",
@@ -80283,7 +72615,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732738,
"latitude": 1.7381,
"longitude": 103.8999,
"name": "Kota Tinggi",
@@ -80293,7 +72624,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 300640,
"latitude": 37.52278,
"longitude": 42.45944,
"name": "\u015e\u0131rnak",
@@ -80303,7 +72633,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2917788,
"latitude": 54.1,
"longitude": 13.38333,
"name": "Greifswald",
@@ -80313,7 +72642,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264688,
"latitude": 22.88333,
"longitude": 92.73333,
"name": "Lunglei",
@@ -80323,7 +72651,6 @@
"country_code": "BH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 290247,
"latitude": 26.11528,
"longitude": 50.50694,
"name": "Mad\u012bnat \u1e28amad",
@@ -80333,7 +72660,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259508,
"latitude": 17.11667,
"longitude": 82.26667,
"name": "Pith\u0101puram",
@@ -80343,7 +72669,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 468866,
"latitude": 55.06667,
"longitude": 32.69639,
"name": "Yartsevo",
@@ -80353,7 +72678,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182650,
"latitude": 40.91442,
"longitude": 14.78874,
"name": "Avellino",
@@ -80363,7 +72687,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278935,
"latitude": 16.58333,
"longitude": 82.01667,
"name": "Amal\u0101puram",
@@ -80373,9 +72696,8 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 542327,
- "latitude": 58.08016,
- "longitude": 55.75411,
+ "latitude": 58.0796,
+ "longitude": 55.7552,
"name": "Krasnokamsk",
"population": 52689
},
@@ -80383,7 +72705,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 315468,
"latitude": 38.26533,
"longitude": 39.76212,
"name": "Ergani",
@@ -80393,7 +72714,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2939658,
"latitude": 53.87176,
"longitude": 8.69087,
"name": "Cuxhaven",
@@ -80403,7 +72723,6 @@
"country_code": "US",
"elevation": 202,
"feature_code": "PPL",
- "geonameid": 5395244,
"latitude": 34.15112,
"longitude": -118.44925,
"name": "Sherman Oaks",
@@ -80413,7 +72732,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1521370,
"latitude": 50.34413,
"longitude": 83.51287,
"name": "Ridder",
@@ -80423,7 +72741,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254054,
"latitude": 17.35,
"longitude": 82.55,
"name": "Tuni",
@@ -80433,7 +72750,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2809889,
"latitude": 50.55,
"longitude": 8.5,
"name": "Wetzlar",
@@ -80443,7 +72759,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1626185,
"latitude": -8.5,
"longitude": 117.43333,
"name": "Sumbawa Besar",
@@ -80453,7 +72768,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 140046,
"latitude": 31.96523,
"longitude": 51.2873,
"name": "Bor\u016bjen",
@@ -80463,7 +72777,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2524119,
"latitude": 36.84594,
"longitude": 14.77399,
"name": "Modica",
@@ -80473,7 +72786,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3166548,
"latitude": 43.32004,
"longitude": 11.33283,
"name": "Siena",
@@ -80483,7 +72795,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3179337,
"latitude": 40.70091,
"longitude": 14.70564,
"name": "Cava de' Tirreni",
@@ -80493,7 +72804,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 255377,
"latitude": 38.04187,
"longitude": 23.68494,
"name": "Petro\u00fapolis",
@@ -80503,7 +72813,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256343,
"latitude": 21.7,
"longitude": 71.96667,
"name": "Sihor",
@@ -80513,7 +72822,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 702723,
"latitude": 50.01625,
"longitude": 32.99694,
"name": "Lubny",
@@ -80523,7 +72831,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272606,
"latitude": 18.55,
"longitude": 77.6,
"name": "D\u012bgl\u016br",
@@ -80533,7 +72840,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3815453,
"latitude": 19.11944,
"longitude": -98.17083,
"name": "Vicente Guerrero",
@@ -80543,7 +72849,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 69500,
"latitude": 14.1951,
"longitude": 43.31518,
"name": "Zab\u012bd",
@@ -80553,7 +72858,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 7279597,
"latitude": 21.65685,
"longitude": 85.64349,
"name": "Barbil",
@@ -80563,7 +72867,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2271680,
"latitude": 38.62961,
"longitude": -9.11557,
"name": "Amora",
@@ -80573,7 +72876,6 @@
"country_code": "US",
"elevation": 297,
"feature_code": "PPL",
- "geonameid": 4377664,
"latitude": 39.01695,
"longitude": -94.28161,
"name": "Blue Springs",
@@ -80583,7 +72885,6 @@
"country_code": "US",
"elevation": 134,
"feature_code": "PPL",
- "geonameid": 4407237,
"latitude": 38.80033,
"longitude": -90.62651,
"name": "Saint Peters",
@@ -80593,7 +72894,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1624058,
"latitude": -4.86667,
"longitude": 105.23333,
"name": "Terbanggi-besar",
@@ -80603,7 +72903,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3633341,
"latitude": 10.59621,
"longitude": -66.95485,
"name": "Maiquet\u00eda",
@@ -80613,7 +72912,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3646169,
"latitude": 10.48666,
"longitude": -66.73799,
"name": "Caucag\u00fcito",
@@ -80623,7 +72921,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 906054,
"latitude": -15.24835,
"longitude": 23.12741,
"name": "Mongu",
@@ -80633,7 +72930,6 @@
"country_code": "US",
"elevation": 225,
"feature_code": "PPL",
- "geonameid": 5301388,
"latitude": 34.4839,
"longitude": -114.32245,
"name": "Lake Havasu City",
@@ -80643,7 +72939,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3629710,
"latitude": 5.66389,
"longitude": -67.62361,
"name": "Puerto Ayacucho",
@@ -80653,7 +72948,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2269041,
"latitude": 38.64502,
"longitude": -9.14843,
"name": "Corroios",
@@ -80663,7 +72957,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275435,
"latitude": 27.5,
"longitude": 81.0,
"name": "Bisw\u0101n",
@@ -80673,7 +72966,6 @@
"country_code": "US",
"elevation": 244,
"feature_code": "PPL",
- "geonameid": 4903780,
"latitude": 40.5142,
"longitude": -88.99063,
"name": "Normal",
@@ -80683,7 +72975,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1291193,
"latitude": 16.76194,
"longitude": 96.52778,
"name": "Thongwa",
@@ -80693,7 +72984,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3696150,
"latitude": -5.70806,
"longitude": -78.80472,
"name": "Ja\u00e9n",
@@ -80703,7 +72993,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1266073,
"latitude": 27.8,
"longitude": 77.43333,
"name": "Kosi",
@@ -80713,7 +73002,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3178796,
"latitude": 42.36094,
"longitude": 14.13801,
"name": "Chieti",
@@ -80723,7 +73011,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3116553,
"latitude": 41.54026,
"longitude": 2.21306,
"name": "Mollet del Vall\u00e8s",
@@ -80733,7 +73020,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1822768,
"latitude": 12.53878,
"longitude": 103.9192,
"name": "Pursat",
@@ -80743,7 +73029,6 @@
"country_code": "AU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2173323,
"latitude": -24.86621,
"longitude": 152.3479,
"name": "Bundaberg",
@@ -80753,7 +73038,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3663529,
"latitude": -3.29972,
"longitude": -60.62056,
"name": "Manacapuru",
@@ -80763,7 +73047,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3133895,
"latitude": 69.6489,
"longitude": 18.95508,
"name": "Troms\u00f8",
@@ -80773,7 +73056,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2993002,
"latitude": 44.01667,
"longitude": 1.35,
"name": "Montauban",
@@ -80783,7 +73065,6 @@
"country_code": "US",
"elevation": 163,
"feature_code": "PPL",
- "geonameid": 5811456,
"latitude": 47.14121,
"longitude": -122.27012,
"name": "South Hill",
@@ -80793,7 +73074,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1317397,
"latitude": 16.43333,
"longitude": 95.73333,
"name": "Kyaiklat",
@@ -80803,7 +73083,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3026613,
"latitude": 49.76667,
"longitude": 4.71667,
"name": "Charleville-M\u00e9zi\u00e8res",
@@ -80813,7 +73092,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3190966,
"latitude": 45.83111,
"longitude": 16.11639,
"name": "Sesvete",
@@ -80823,7 +73101,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3038261,
"latitude": 43.9298,
"longitude": 2.148,
"name": "Albi",
@@ -80833,7 +73110,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 115781,
"latitude": 30.1165,
"longitude": 55.1186,
"name": "Shahr-e B\u0101bak",
@@ -80843,7 +73119,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3472248,
"latitude": -20.89611,
"longitude": -51.37944,
"name": "Andradina",
@@ -80853,7 +73128,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470709,
"latitude": -15.89,
"longitude": -52.25667,
"name": "Barra do Gar\u00e7as",
@@ -80863,7 +73137,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2649911,
"latitude": 51.36926,
"longitude": -0.36572,
"name": "Esher",
@@ -80873,7 +73146,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3402613,
"latitude": -4.13306,
"longitude": -38.24194,
"name": "Cascavel",
@@ -80883,7 +73155,6 @@
"country_code": "US",
"elevation": 255,
"feature_code": "PPL",
- "geonameid": 4985153,
"latitude": 42.32115,
"longitude": -85.17971,
"name": "Battle Creek",
@@ -80893,7 +73164,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 5957776,
"latitude": 45.94541,
"longitude": -66.66558,
"name": "Fredericton",
@@ -80903,7 +73173,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3177700,
"latitude": 44.39733,
"longitude": 7.54453,
"name": "Cuneo",
@@ -80913,7 +73182,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2950344,
"latitude": 51.63333,
"longitude": 7.63333,
"name": "Bergkamen",
@@ -80923,7 +73191,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907125,
"latitude": 35.8725,
"longitude": 139.50972,
"name": "Kamifukuoka",
@@ -80933,7 +73200,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257951,
"latitude": 30.96639,
"longitude": 76.53306,
"name": "R\u016bpnagar",
@@ -80943,7 +73209,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112571,
"latitude": 36.18333,
"longitude": 140.26667,
"name": "Ishioka",
@@ -80953,7 +73218,6 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1527592,
"latitude": 41.42866,
"longitude": 75.99111,
"name": "Naryn",
@@ -80963,7 +73227,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273574,
"latitude": 15.26667,
"longitude": 74.61667,
"name": "Dandeli",
@@ -80973,7 +73236,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2490183,
"latitude": 34.86158,
"longitude": -1.33935,
"name": "Manso\u00fbra",
@@ -80983,7 +73245,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 114593,
"latitude": 32.1942,
"longitude": 48.2436,
"name": "Sh\u016bsh",
@@ -80993,7 +73254,6 @@
"country_code": "US",
"elevation": 311,
"feature_code": "PPLA2",
- "geonameid": 4274994,
"latitude": 39.18361,
"longitude": -96.57167,
"name": "Manhattan",
@@ -81003,7 +73263,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 562319,
"latitude": 55.96056,
"longitude": 38.04556,
"name": "Fryazino",
@@ -81013,7 +73272,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1702442,
"latitude": 6.27917,
"longitude": 125.28167,
"name": "Malu\u00f1gun",
@@ -81023,7 +73281,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1485439,
"latitude": 53.7074,
"longitude": 84.9493,
"name": "Zarinsk",
@@ -81033,7 +73290,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1117652,
"latitude": 7.88481,
"longitude": 98.40008,
"name": "Ban Talat Yai",
@@ -81043,7 +73299,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 747489,
"latitude": 40.66889,
"longitude": 36.5675,
"name": "Erbaa",
@@ -81053,7 +73308,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 299545,
"latitude": 39.54237,
"longitude": 29.49866,
"name": "Tav\u015fanl\u0131",
@@ -81063,7 +73317,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 733618,
"latitude": 42.01667,
"longitude": 24.86667,
"name": "Asenovgrad",
@@ -81073,7 +73326,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2511440,
"latitude": 27.92481,
"longitude": -15.57329,
"name": "San Bartolom\u00e9",
@@ -81083,7 +73335,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3140084,
"latitude": 59.28391,
"longitude": 11.10962,
"name": "Sarpsborg",
@@ -81093,7 +73344,6 @@
"country_code": "US",
"elevation": 175,
"feature_code": "PPL",
- "geonameid": 4386802,
"latitude": 38.78922,
"longitude": -90.32261,
"name": "Florissant",
@@ -81103,7 +73353,6 @@
"country_code": "US",
"elevation": 306,
"feature_code": "PPL",
- "geonameid": 5338783,
"latitude": 34.0739,
"longitude": -117.31365,
"name": "Colton",
@@ -81113,7 +73362,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185120,
"latitude": 22.46778,
"longitude": 91.45611,
"name": "Sandw\u012bp",
@@ -81123,7 +73371,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3209584,
"latitude": 53.47778,
"longitude": -3.03333,
"name": "Crosby",
@@ -81133,7 +73380,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1496476,
"latitude": 62.14056,
"longitude": 65.39361,
"name": "Nyagan\u2019",
@@ -81143,7 +73389,6 @@
"country_code": "US",
"elevation": 215,
"feature_code": "PPL",
- "geonameid": 5160315,
"latitude": 41.48199,
"longitude": -81.79819,
"name": "Lakewood",
@@ -81153,7 +73398,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2639506,
"latitude": 51.23758,
"longitude": -0.2078,
"name": "Reigate",
@@ -81163,7 +73407,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1127110,
"latitude": 36.21544,
"longitude": 65.93249,
"name": "Sar-e Pul",
@@ -81173,7 +73416,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2973385,
"latitude": 43.23333,
"longitude": 0.08333,
"name": "Tarbes",
@@ -81183,7 +73425,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1260222,
"latitude": 18.78333,
"longitude": 83.43333,
"name": "P\u0101rvat\u012bpuram",
@@ -81193,7 +73434,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3017910,
"latitude": 48.85442,
"longitude": 2.48268,
"name": "Fontenay-sous-Bois",
@@ -81203,7 +73443,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2282827,
"latitude": 6.38309,
"longitude": -5.41759,
"name": "Oum\u00e9",
@@ -81213,7 +73452,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 548652,
"latitude": 56.86667,
"longitude": 37.35,
"name": "Kimry",
@@ -81223,7 +73461,6 @@
"country_code": "BE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2790595,
"latitude": 50.74497,
"longitude": 3.20639,
"name": "Mouscron",
@@ -81233,7 +73470,6 @@
"country_code": "KW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 285728,
"latitude": 29.14583,
"longitude": 48.09472,
"name": "Ar Riqqah",
@@ -81243,7 +73479,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1821935,
"latitude": 11.48333,
"longitude": 104.95,
"name": "Ta Khmau",
@@ -81253,7 +73488,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3120514,
"latitude": 42.13615,
"longitude": -0.4087,
"name": "Huesca",
@@ -81263,7 +73497,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3077244,
"latitude": 50.78215,
"longitude": 14.21478,
"name": "D\u011b\u010d\u00edn",
@@ -81273,7 +73506,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3359638,
"latitude": -22.9575,
"longitude": 14.50528,
"name": "Walvis Bay",
@@ -81283,7 +73515,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 884141,
"latitude": -17.88333,
"longitude": 30.7,
"name": "Norton",
@@ -81293,7 +73524,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3716667,
"latitude": 18.65194,
"longitude": -72.09472,
"name": "Thomazeau",
@@ -81303,7 +73533,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1865412,
"latitude": 34.75,
"longitude": 134.4,
"name": "Ak\u014d",
@@ -81313,7 +73542,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1336133,
"latitude": 22.0796,
"longitude": 92.0572,
"name": "S\u0101tkania",
@@ -81323,7 +73551,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470003,
"latitude": -27.49417,
"longitude": -48.65556,
"name": "Bigua\u00e7u",
@@ -81333,7 +73560,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3470324,
"latitude": -20.89111,
"longitude": -47.585,
"name": "Batatais",
@@ -81343,7 +73569,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2650657,
"latitude": 51.886,
"longitude": -0.52099,
"name": "Dunstable",
@@ -81353,7 +73578,6 @@
"country_code": "US",
"elevation": 233,
"feature_code": "PPLA2",
- "geonameid": 4924198,
"latitude": 40.04559,
"longitude": -86.0086,
"name": "Noblesville",
@@ -81363,7 +73587,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3451152,
"latitude": -27.21417,
"longitude": -49.64306,
"name": "Rio do Sul",
@@ -81373,7 +73596,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278432,
"latitude": 12.90569,
"longitude": 79.31897,
"name": "Arcot",
@@ -81383,7 +73605,6 @@
"country_code": "US",
"elevation": 31,
"feature_code": "PPLA2",
- "geonameid": 4168228,
"latitude": 30.42131,
"longitude": -87.21691,
"name": "Pensacola",
@@ -81393,7 +73614,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 711369,
"latitude": 48.511,
"longitude": 38.67222,
"name": "Bryanka",
@@ -81403,7 +73623,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1640296,
"latitude": -8.1303,
"longitude": 112.5727,
"name": "Kepanjen",
@@ -81413,7 +73632,6 @@
"country_code": "US",
"elevation": 7,
"feature_code": "PPLA2",
- "geonameid": 4172131,
"latitude": 27.33643,
"longitude": -82.53065,
"name": "Sarasota",
@@ -81423,7 +73641,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 790674,
"latitude": 42.46045,
"longitude": 21.46986,
"name": "Gjilan",
@@ -81433,7 +73650,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3582883,
"latitude": 13.35,
"longitude": -88.45,
"name": "Usulut\u00e1n",
@@ -81443,7 +73659,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPL",
- "geonameid": 5378044,
"latitude": 38.10742,
"longitude": -122.5697,
"name": "Novato",
@@ -81453,7 +73668,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1177446,
"latitude": 25.12163,
"longitude": 62.32541,
"name": "Gw\u0101dar",
@@ -81463,7 +73677,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3019256,
"latitude": 48.63333,
"longitude": 2.45,
"name": "\u00c9vry",
@@ -81473,7 +73686,6 @@
"country_code": "US",
"elevation": 239,
"feature_code": "PPL",
- "geonameid": 4896075,
"latitude": 42.04281,
"longitude": -88.0798,
"name": "Hoffman Estates",
@@ -81483,7 +73695,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269027,
"latitude": 24.6,
"longitude": 76.15,
"name": "Jh\u0101l\u0101w\u0101r",
@@ -81493,7 +73704,6 @@
"country_code": "CU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3563317,
"latitude": 22.98194,
"longitude": -80.58556,
"name": "Corralillo",
@@ -81503,7 +73713,6 @@
"country_code": "US",
"elevation": 25,
"feature_code": "PPL",
- "geonameid": 5124276,
"latitude": 40.72593,
"longitude": -73.51429,
"name": "Levittown",
@@ -81513,7 +73722,6 @@
"country_code": "US",
"elevation": 189,
"feature_code": "PPL",
- "geonameid": 4904381,
"latitude": 41.88503,
"longitude": -87.7845,
"name": "Oak Park",
@@ -81523,7 +73731,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 124193,
"latitude": 32.25014,
"longitude": 54.01658,
"name": "Meybod",
@@ -81533,7 +73740,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2953436,
"latitude": 50.22667,
"longitude": 8.61963,
"name": "Bad Homburg vor der H\u00f6he",
@@ -81543,7 +73749,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3440034,
"latitude": -31.73333,
"longitude": -55.98333,
"name": "Tacuaremb\u00f3",
@@ -81553,7 +73758,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2808559,
"latitude": 51.26667,
"longitude": 6.55,
"name": "Willich",
@@ -81563,7 +73767,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2512177,
"latitude": 38.68712,
"longitude": -4.10734,
"name": "Puertollano",
@@ -81573,7 +73776,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 358095,
"latitude": 30.75422,
"longitude": 31.43925,
"name": "Diyarb Najm",
@@ -81583,7 +73785,6 @@
"country_code": "US",
"elevation": 395,
"feature_code": "PPL",
- "geonameid": 5364499,
"latitude": 33.66808,
"longitude": -117.32726,
"name": "Lake Elsinore",
@@ -81593,7 +73794,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1259841,
"latitude": 22.46667,
"longitude": 72.8,
"name": "Petl\u0101d",
@@ -81603,7 +73803,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1648568,
"latitude": -6.9698,
"longitude": 111.4186,
"name": "Blora",
@@ -81613,7 +73812,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3073803,
"latitude": 50.23271,
"longitude": 12.87117,
"name": "Karlovy Vary",
@@ -81623,7 +73821,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1253807,
"latitude": 20.85,
"longitude": 79.33333,
"name": "Umred",
@@ -81633,7 +73830,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 741045,
"latitude": 40.48917,
"longitude": 29.30889,
"name": "Orhangazi",
@@ -81643,9 +73839,8 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3178784,
- "latitude": 45.22556,
- "longitude": 12.28889,
+ "latitude": 45.21857,
+ "longitude": 12.27774,
"name": "Chioggia",
"population": 51779
},
@@ -81653,7 +73848,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2520493,
"latitude": 39.5657,
"longitude": 2.50621,
"name": "Calvi\u00e0",
@@ -81663,7 +73857,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3870306,
"latitude": -33.66667,
"longitude": -70.93333,
"name": "Talagante",
@@ -81673,7 +73866,6 @@
"country_code": "US",
"elevation": 3,
"feature_code": "PPL",
- "geonameid": 4832294,
"latitude": 42.40843,
"longitude": -71.01199,
"name": "Revere",
@@ -81683,7 +73875,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1276084,
"latitude": 21.73333,
"longitude": 81.93333,
"name": "Bh\u0101t\u0101p\u0101ra",
@@ -81693,7 +73884,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268383,
"latitude": 25.63333,
"longitude": 88.31667,
"name": "K\u0101liy\u0101ganj",
@@ -81703,7 +73893,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261727,
"latitude": 26.30473,
"longitude": 74.73364,
"name": "Nas\u012br\u0101b\u0101d",
@@ -81713,7 +73902,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6559559,
"latitude": 49.00973,
"longitude": 33.64546,
"name": "Komsomolsk",
@@ -81723,7 +73911,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2643266,
"latitude": 53.26023,
"longitude": -2.12564,
"name": "Macclesfield",
@@ -81733,7 +73920,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2338401,
"latitude": 7.68333,
"longitude": 4.81667,
"name": "Ijebu Ijesha",
@@ -81743,7 +73929,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2111884,
"latitude": 39.63667,
"longitude": 141.9525,
"name": "Miyako",
@@ -81753,7 +73938,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 473778,
"latitude": 55.55239,
"longitude": 37.70966,
"name": "Vidnoye",
@@ -81763,7 +73947,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 52867,
"latitude": 1.78784,
"longitude": 44.52999,
"name": "Qoryooley",
@@ -81773,7 +73956,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3182007,
"latitude": 41.24203,
"longitude": 16.50438,
"name": "Bisceglie",
@@ -81783,7 +73965,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3654870,
"latitude": -0.93333,
"longitude": -78.61667,
"name": "Latacunga",
@@ -81793,7 +73974,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2477255,
"latitude": 36.11653,
"longitude": 6.35434,
"name": "Telerghma",
@@ -81803,7 +73983,6 @@
"country_code": "US",
"elevation": 116,
"feature_code": "PPL",
- "geonameid": 5122331,
"latitude": 43.2134,
"longitude": -77.57972,
"name": "Irondequoit",
@@ -81813,7 +73992,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2925535,
"latitude": 52.34714,
"longitude": 14.55062,
"name": "Frankfurt (Oder)",
@@ -81823,7 +74001,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2656235,
"latitude": 51.40667,
"longitude": -3.26944,
"name": "Barry",
@@ -81833,7 +74010,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3453546,
"latitude": -17.345,
"longitude": -44.94194,
"name": "Pirapora",
@@ -81843,7 +74019,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1863713,
"latitude": 35.30528,
"longitude": 139.81861,
"name": "Futtsu",
@@ -81853,7 +74028,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2642214,
"latitude": 54.06835,
"longitude": -2.86108,
"name": "Morecambe",
@@ -81863,7 +74037,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269819,
"latitude": 11.58624,
"longitude": 77.83891,
"name": "Idappadi",
@@ -81873,7 +74046,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271083,
"latitude": 26.42611,
"longitude": 78.44472,
"name": "Gohad",
@@ -81883,7 +74055,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 120931,
"latitude": 34.46109,
"longitude": 45.86264,
"name": "Sarpol-e Z\u0304ah\u0101b",
@@ -81893,7 +74064,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851273,
"latitude": 33.63333,
"longitude": 130.8,
"name": "Tagawa",
@@ -81903,7 +74073,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608900,
"latitude": 16.18483,
"longitude": 103.30067,
"name": "Maha Sarakham",
@@ -81913,7 +74082,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267187,
"latitude": 25.58333,
"longitude": 85.05,
"name": "Khagaul",
@@ -81923,7 +74091,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1848096,
"latitude": 36.3,
"longitude": 139.88333,
"name": "Y\u016bki",
@@ -81933,7 +74100,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 359710,
"latitude": 30.54448,
"longitude": 31.78525,
"name": "At Tall al Kab\u012br",
@@ -81943,7 +74109,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3628952,
"latitude": 7.70131,
"longitude": -72.35569,
"name": "Rubio",
@@ -81953,7 +74118,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2639545,
"latitude": 51.24048,
"longitude": -0.17044,
"name": "Redhill",
@@ -81963,7 +74127,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 687196,
"latitude": 48.34731,
"longitude": 33.50034,
"name": "Zhovti Vody",
@@ -81973,7 +74136,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6822217,
"latitude": 35.48199,
"longitude": 137.02166,
"name": "Minokamo",
@@ -81983,7 +74145,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1310362,
"latitude": 16.73333,
"longitude": 95.65,
"name": "Maubin",
@@ -81993,7 +74154,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 113508,
"latitude": 36.4009,
"longitude": 47.1133,
"name": "Tak\u0101b",
@@ -82003,7 +74163,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3625929,
"latitude": 9.06222,
"longitude": -62.05102,
"name": "Tucupita",
@@ -82013,7 +74172,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2930596,
"latitude": 53.36667,
"longitude": 7.21667,
"name": "Emden",
@@ -82023,7 +74181,6 @@
"country_code": "MG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1078446,
"latitude": -17.58333,
"longitude": 48.21667,
"name": "Amparafaravola",
@@ -82033,7 +74190,6 @@
"country_code": "US",
"elevation": 177,
"feature_code": "PPLA2",
- "geonameid": 5007989,
"latitude": 43.41947,
"longitude": -83.95081,
"name": "Saginaw",
@@ -82043,7 +74199,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 347612,
"latitude": 30.68025,
"longitude": 30.94292,
"name": "Tal\u0101",
@@ -82053,7 +74208,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3129636,
"latitude": 40.30076,
"longitude": -3.43722,
"name": "Arganda",
@@ -82063,7 +74217,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1907309,
"latitude": 35.14,
"longitude": 139.61917,
"name": "Miura",
@@ -82073,7 +74226,6 @@
"country_code": "US",
"elevation": 24,
"feature_code": "PPL",
- "geonameid": 5330642,
"latitude": 37.92687,
"longitude": -121.72577,
"name": "Brentwood",
@@ -82083,7 +74235,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3792383,
"latitude": 10.03409,
"longitude": -73.23611,
"name": "Agust\u00edn Codazzi",
@@ -82093,7 +74244,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3461519,
"latitude": -28.71333,
"longitude": -49.3,
"name": "I\u00e7ara",
@@ -82103,7 +74253,6 @@
"country_code": "US",
"elevation": 22,
"feature_code": "PPL",
- "geonameid": 4175179,
"latitude": 28.93408,
"longitude": -81.95994,
"name": "The Villages",
@@ -82113,7 +74262,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274119,
"latitude": 17.53333,
"longitude": 73.51667,
"name": "Chipl\u016bn",
@@ -82123,7 +74271,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3405738,
"latitude": -8.23333,
"longitude": -35.79694,
"name": "Bezerros",
@@ -82133,7 +74280,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 621754,
"latitude": 53.0869,
"longitude": 25.3163,
"name": "Slonim",
@@ -82143,7 +74289,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274664,
"latitude": 9.46667,
"longitude": 76.55,
"name": "Changan\u0101cheri",
@@ -82153,7 +74298,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2470088,
"latitude": 36.50114,
"longitude": 8.78024,
"name": "Jendouba",
@@ -82163,7 +74307,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3024783,
"latitude": 48.80299,
"longitude": 2.26692,
"name": "Clamart",
@@ -82173,7 +74316,6 @@
"country_code": "US",
"elevation": 182,
"feature_code": "PPLA",
- "geonameid": 4801859,
"latitude": 38.34982,
"longitude": -81.63262,
"name": "Charleston",
@@ -82183,7 +74325,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1699323,
"latitude": 7.81528,
"longitude": 126.05444,
"name": "Monkayo",
@@ -82193,7 +74334,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2863941,
"latitude": 48.39279,
"longitude": 10.01112,
"name": "Neu-Ulm",
@@ -82203,7 +74343,6 @@
"country_code": "US",
"elevation": 7,
"feature_code": "PPL",
- "geonameid": 4843811,
"latitude": 41.18454,
"longitude": -73.13317,
"name": "Stratford",
@@ -82213,7 +74352,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3182749,
"latitude": 42.85483,
"longitude": 13.5749,
"name": "Ascoli Piceno",
@@ -82223,7 +74361,6 @@
"country_code": "US",
"elevation": 147,
"feature_code": "PPL",
- "geonameid": 4628735,
"latitude": 36.30477,
"longitude": -86.62,
"name": "Hendersonville",
@@ -82233,7 +74370,6 @@
"country_code": "US",
"elevation": 798,
"feature_code": "PPL",
- "geonameid": 5411046,
"latitude": 34.03362,
"longitude": -117.04309,
"name": "Yucaipa",
@@ -82243,7 +74379,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185148,
"latitude": 22.29312,
"longitude": 91.97621,
"name": "Patiya",
@@ -82253,7 +74388,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3994616,
"latitude": 30.41667,
"longitude": -107.91667,
"name": "Nuevo Casas Grandes",
@@ -82263,7 +74397,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3927758,
"latitude": -11.41972,
"longitude": -75.69083,
"name": "Tarma",
@@ -82273,7 +74406,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2014927,
"latitude": 54.5559,
"longitude": 100.5905,
"name": "Tulun",
@@ -82283,7 +74415,6 @@
"country_code": "US",
"elevation": 204,
"feature_code": "PPLA2",
- "geonameid": 5258957,
"latitude": 43.80136,
"longitude": -91.23958,
"name": "La Crosse",
@@ -82293,7 +74424,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2877088,
"latitude": 52.51667,
"longitude": 7.31667,
"name": "Lingen",
@@ -82303,7 +74433,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 2807748,
"latitude": 53.6,
"longitude": 10.0,
"name": "Winterhude",
@@ -82313,9 +74442,8 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3438819,
- "latitude": -25.41667,
- "longitude": -56.45,
+ "latitude": -25.44444,
+ "longitude": -56.44028,
"name": "Coronel Oviedo",
"population": 51286
},
@@ -82323,7 +74451,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2271071,
"latitude": 38.66314,
"longitude": -9.0724,
"name": "Barreiro",
@@ -82333,7 +74460,6 @@
"country_code": "US",
"elevation": 179,
"feature_code": "PPL",
- "geonameid": 4689550,
"latitude": 32.83707,
"longitude": -97.08195,
"name": "Euless",
@@ -82343,7 +74469,6 @@
"country_code": "US",
"elevation": 323,
"feature_code": "PPL",
- "geonameid": 4223379,
"latitude": 33.88399,
"longitude": -84.51438,
"name": "Smyrna",
@@ -82353,7 +74478,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3027487,
"latitude": 48.95393,
"longitude": 4.36724,
"name": "Ch\u00e2lons-en-Champagne",
@@ -82363,7 +74487,6 @@
"country_code": "US",
"elevation": 16,
"feature_code": "PPL",
- "geonameid": 4833403,
"latitude": 41.78232,
"longitude": -72.61203,
"name": "East Hartford",
@@ -82373,7 +74496,6 @@
"country_code": "US",
"elevation": 8,
"feature_code": "PPL",
- "geonameid": 4946863,
"latitude": 42.52787,
"longitude": -70.92866,
"name": "Peabody",
@@ -82383,7 +74505,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1258637,
"latitude": 29.4,
"longitude": 79.11667,
"name": "R\u0101mnagar",
@@ -82393,7 +74514,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2483649,
"latitude": 35.06196,
"longitude": -1.43362,
"name": "Remchi",
@@ -82403,7 +74523,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3064288,
"latitude": 50.6404,
"longitude": 13.82451,
"name": "Teplice",
@@ -82413,7 +74532,6 @@
"country_code": "KZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 609123,
"latitude": 46.95307,
"longitude": 54.01978,
"name": "Qulsary",
@@ -82423,7 +74541,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2503852,
"latitude": 35.635,
"longitude": 3.225,
"name": "Birine",
@@ -82433,7 +74550,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2929671,
"latitude": 50.81667,
"longitude": 6.76667,
"name": "Erftstadt",
@@ -82443,7 +74559,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2509509,
"latitude": 39.93333,
"longitude": -0.1,
"name": "Vila-real",
@@ -82453,7 +74568,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3387786,
"latitude": -7.99194,
"longitude": -38.29833,
"name": "Serra Talhada",
@@ -82463,7 +74577,6 @@
"country_code": "US",
"elevation": 100,
"feature_code": "PPL",
- "geonameid": 5335006,
"latitude": 33.77974,
"longitude": -116.46529,
"name": "Cathedral City",
@@ -82473,7 +74586,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPL",
- "geonameid": 5407529,
"latitude": 36.91023,
"longitude": -121.75689,
"name": "Watsonville",
@@ -82483,7 +74595,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3113268,
"latitude": 43.39228,
"longitude": -5.66335,
"name": "Pola de Siero",
@@ -82493,7 +74604,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2610613,
"latitude": 55.70927,
"longitude": 9.5357,
"name": "Vejle",
@@ -82503,7 +74613,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 355648,
"latitude": 29.35804,
"longitude": 30.68142,
"name": "Ibshaw\u0101y",
@@ -82513,7 +74622,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3398450,
"latitude": -4.1,
"longitude": -38.48333,
"name": "Horizonte",
@@ -82523,7 +74631,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2596934,
"latitude": 7.96111,
"longitude": -6.67306,
"name": "S\u00e9gu\u00e9la",
@@ -82533,7 +74640,6 @@
"country_code": "US",
"elevation": 101,
"feature_code": "PPL",
- "geonameid": 5102427,
"latitude": 40.85788,
"longitude": -74.42599,
"name": "Parsippany",
@@ -82543,7 +74649,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 709248,
"latitude": 50.0767,
"longitude": 29.9177,
"name": "Fastiv",
@@ -82553,7 +74658,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3176854,
"latitude": 42.94404,
"longitude": 12.70107,
"name": "Foligno",
@@ -82563,7 +74667,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 261604,
"latitude": 37.03889,
"longitude": 22.11417,
"name": "Kalam\u00e1ta",
@@ -82573,7 +74676,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1645976,
"latitude": -6.9053,
"longitude": 109.5347,
"name": "Comal",
@@ -82583,7 +74685,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 301010,
"latitude": 37.41926,
"longitude": 31.84527,
"name": "Seydi\u015fehir",
@@ -82593,7 +74694,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 555111,
"latitude": 55.97111,
"longitude": 37.92083,
"name": "Ivanteyevka",
@@ -82603,7 +74703,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 182701,
"latitude": -0.42013,
"longitude": 36.94759,
"name": "Nyeri",
@@ -82613,7 +74712,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2128867,
"latitude": 40.20389,
"longitude": 140.02417,
"name": "Noshiro",
@@ -82623,7 +74721,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3618929,
"latitude": 13.09171,
"longitude": -86.00177,
"name": "Jinotega",
@@ -82633,7 +74730,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1256269,
"latitude": 20.3,
"longitude": 75.65,
"name": "Sillod",
@@ -82643,7 +74739,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2637126,
"latitude": 51.43092,
"longitude": -0.50606,
"name": "Staines",
@@ -82653,7 +74748,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264647,
"latitude": 16.48333,
"longitude": 79.43333,
"name": "M\u0101cherla",
@@ -82663,7 +74757,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 128008,
"latitude": 37.6189,
"longitude": 48.5258,
"name": "Herow\u0101b\u0101d",
@@ -82673,7 +74766,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3165803,
"latitude": 42.66123,
"longitude": 13.69901,
"name": "Teramo",
@@ -82683,7 +74775,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3441702,
"latitude": -32.36667,
"longitude": -54.18333,
"name": "Melo",
@@ -82693,7 +74784,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 163808,
"latitude": 34.56077,
"longitude": 38.28055,
"name": "Tadmur",
@@ -82703,7 +74793,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3450964,
"latitude": -23.30972,
"longitude": -51.36917,
"name": "Rol\u00e2ndia",
@@ -82713,7 +74802,6 @@
"country_code": "US",
"elevation": 1,
"feature_code": "PPL",
- "geonameid": 4175117,
"latitude": 25.67149,
"longitude": -80.4445,
"name": "The Hammocks",
@@ -82723,7 +74811,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 729794,
"latitude": 41.65,
"longitude": 25.36667,
"name": "K\u016drdzhali",
@@ -82733,7 +74820,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851883,
"latitude": 36.01667,
"longitude": 139.66667,
"name": "Shiraoka",
@@ -82743,7 +74829,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 790295,
"latitude": 41.79722,
"longitude": 20.90833,
"name": "Gostivar",
@@ -82753,7 +74838,6 @@
"country_code": "US",
"elevation": 229,
"feature_code": "PPL",
- "geonameid": 4919987,
"latitude": 41.68199,
"longitude": -85.97667,
"name": "Elkhart",
@@ -82763,7 +74847,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 160892,
"latitude": -2.05,
"longitude": 33.86667,
"name": "Bunda",
@@ -82773,7 +74856,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1254069,
"latitude": 27.2,
"longitude": 78.28333,
"name": "T\u016bndla",
@@ -82783,7 +74865,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1514387,
"latitude": 41.69111,
"longitude": 60.7525,
"name": "Beruniy",
@@ -82793,7 +74874,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1263661,
"latitude": 10.98333,
"longitude": 76.46667,
"name": "Mann\u0101rakk\u0101t",
@@ -82803,7 +74883,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2184397,
"latitude": -41.13333,
"longitude": 174.85,
"name": "Porirua",
@@ -82813,7 +74892,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261008,
"latitude": 10.76667,
"longitude": 76.38333,
"name": "Ottapp\u0101lam",
@@ -82823,7 +74901,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6230919,
"latitude": -35.73167,
"longitude": 174.32391,
"name": "Whangarei",
@@ -82833,7 +74910,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1581364,
"latitude": 20.9725,
"longitude": 105.77722,
"name": "H\u00e0 \u00d0\u00f4ng",
@@ -82843,7 +74919,6 @@
"country_code": "US",
"elevation": 265,
"feature_code": "PPL",
- "geonameid": 5287262,
"latitude": 33.37032,
"longitude": -112.58378,
"name": "Buckeye",
@@ -82853,7 +74928,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2525628,
"latitude": 38.07935,
"longitude": 13.50935,
"name": "Bagheria",
@@ -82863,7 +74937,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 565348,
"latitude": 48.33372,
"longitude": 39.94776,
"name": "Donetsk",
@@ -82873,7 +74946,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2112232,
"latitude": 36.78333,
"longitude": 140.75,
"name": "Kitaibaraki",
@@ -82883,7 +74955,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1732711,
"latitude": 1.4866,
"longitude": 103.3896,
"name": "Pontian Kechil",
@@ -82893,7 +74964,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3436124,
"latitude": -27.48299,
"longitude": -58.93579,
"name": "Barranqueras",
@@ -82903,7 +74973,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3047679,
"latitude": 46.45347,
"longitude": 16.99104,
"name": "Nagykanizsa",
@@ -82913,7 +74982,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPL",
- "geonameid": 5102578,
"latitude": 40.50677,
"longitude": -74.26542,
"name": "Perth Amboy",
@@ -82923,7 +74991,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2656168,
"latitude": 53.70291,
"longitude": -1.6337,
"name": "Batley",
@@ -82933,7 +75000,6 @@
"country_code": "US",
"elevation": 785,
"feature_code": "PPL",
- "geonameid": 5288786,
"latitude": 32.29785,
"longitude": -110.9187,
"name": "Catalina Foothills",
@@ -82943,7 +75009,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 766555,
"latitude": 52.40149,
"longitude": 20.92664,
"name": "Legionowo",
@@ -82953,7 +75018,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3832260,
"latitude": -26.81667,
"longitude": -65.31667,
"name": "Yerba Buena",
@@ -82963,7 +75027,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2990919,
"latitude": 43.18333,
"longitude": 3.0,
"name": "Narbonne",
@@ -82973,7 +75036,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3168309,
"latitude": 40.83071,
"longitude": 14.33763,
"name": "San Giorgio a Cremano",
@@ -82983,7 +75045,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3180991,
"latitude": 41.56003,
"longitude": 14.66753,
"name": "Campobasso",
@@ -82993,7 +75054,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271151,
"latitude": 26.16667,
"longitude": 90.61667,
"name": "Go\u0101lp\u0101ra",
@@ -83003,7 +75063,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1268189,
"latitude": 12.55,
"longitude": 77.41667,
"name": "Kanakapura",
@@ -83013,7 +75072,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1864155,
"latitude": 34.56667,
"longitude": 133.23333,
"name": "Fuch\u016b",
@@ -83023,7 +75081,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 561667,
"latitude": 44.5622,
"longitude": 38.0848,
"name": "Gelendzhik",
@@ -83033,7 +75090,6 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 99062,
"latitude": 33.97861,
"longitude": 44.93694,
"name": "Al Miqd\u0101d\u012byah",
@@ -83043,7 +75099,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2291580,
"latitude": 5.35581,
"longitude": -3.88537,
"name": "Bingerville",
@@ -83053,7 +75108,6 @@
"country_code": "BY",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 627145,
"latitude": 52.2138,
"longitude": 24.3564,
"name": "Kobryn",
@@ -83063,7 +75117,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1167380,
"latitude": 29.10351,
"longitude": 70.32504,
"name": "R\u0101janpur",
@@ -83073,7 +75126,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2646557,
"latitude": 51.06395,
"longitude": -0.32719,
"name": "Horsham",
@@ -83083,7 +75135,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2978640,
"latitude": 48.65,
"longitude": -2.01667,
"name": "Saint-Malo",
@@ -83093,9 +75144,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 207596,
- "latitude": -4.85,
- "longitude": 21.56667,
+ "latitude": -4.85187,
+ "longitude": 21.5595,
"name": "Mweka",
"population": 50675
},
@@ -83103,7 +75153,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1726339,
"latitude": 18.0554,
"longitude": 120.56489,
"name": "Batac City",
@@ -83113,7 +75162,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 699839,
"latitude": 46.75451,
"longitude": 33.34864,
"name": "Nova Kakhovka",
@@ -83123,7 +75171,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264551,
"latitude": 24.25,
"longitude": 86.65,
"name": "Madhupur",
@@ -83133,7 +75180,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1641333,
"latitude": -7.64889,
"longitude": 110.625,
"name": "Karanganom",
@@ -83143,7 +75189,6 @@
"country_code": "ES",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2510073,
"latitude": 37.18516,
"longitude": -5.78093,
"name": "Utrera",
@@ -83153,7 +75198,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 121795,
"latitude": 37.0397,
"longitude": 45.0983,
"name": "Oshnav\u012byeh",
@@ -83163,7 +75207,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 741609,
"latitude": 40.87333,
"longitude": 35.46306,
"name": "Merzifon",
@@ -83173,7 +75216,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607737,
"latitude": 16.41904,
"longitude": 101.16056,
"name": "Phetchabun",
@@ -83183,7 +75225,6 @@
"country_code": "KR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1832697,
"latitude": 38.09404,
"longitude": 127.07577,
"name": "\uc5f0\ucc9c\uad70",
@@ -83193,7 +75234,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1166827,
"latitude": 27.69223,
"longitude": 68.89506,
"name": "Rohri",
@@ -83203,7 +75243,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 532657,
"latitude": 55.58271,
"longitude": 37.90516,
"name": "Lytkarino",
@@ -83213,7 +75252,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3167777,
"latitude": 43.81725,
"longitude": 7.7772,
"name": "San Remo",
@@ -83223,7 +75261,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3139075,
"latitude": 59.20962,
"longitude": 9.60897,
"name": "Skien",
@@ -83233,7 +75270,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854530,
"latitude": 35.85111,
"longitude": 139.51667,
"name": "\u014ci",
@@ -83243,7 +75279,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2896817,
"latitude": 52.26667,
"longitude": 7.73333,
"name": "Ibbenb\u00fcren",
@@ -83253,7 +75288,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3395395,
"latitude": -9.71028,
"longitude": -35.895,
"name": "Marechal Deodoro",
@@ -83263,7 +75297,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264570,
"latitude": 25.91667,
"longitude": 86.78333,
"name": "Madhipura",
@@ -83273,7 +75306,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 548602,
"latitude": 59.37331,
"longitude": 28.61343,
"name": "Kingisepp",
@@ -83283,7 +75315,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 547840,
"latitude": 43.84712,
"longitude": 46.71445,
"name": "Kizlyar",
@@ -83293,7 +75324,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2855328,
"latitude": 48.57116,
"longitude": 13.44898,
"name": "Passau",
@@ -83303,7 +75333,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1274571,
"latitude": 28.6,
"longitude": 76.26667,
"name": "Charkhi D\u0101dri",
@@ -83313,7 +75342,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1640902,
"latitude": -7.3817,
"longitude": 108.2082,
"name": "Kawalu",
@@ -83323,7 +75351,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3448300,
"latitude": -23.52917,
"longitude": -47.13528,
"name": "S\u00e3o Roque",
@@ -83333,7 +75360,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1162105,
"latitude": 31.34111,
"longitude": 69.44806,
"name": "Zhob",
@@ -83343,7 +75369,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3176923,
"latitude": 41.76747,
"longitude": 12.22907,
"name": "Fiumicino",
@@ -83353,7 +75378,6 @@
"country_code": "US",
"elevation": 83,
"feature_code": "PPL",
- "geonameid": 5383527,
"latitude": 33.87224,
"longitude": -117.87034,
"name": "Placentia",
@@ -83363,7 +75387,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 41210,
"latitude": 36.213,
"longitude": 49.196,
"name": "Khorram Darreh",
@@ -83373,7 +75396,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272225,
"latitude": 25.55,
"longitude": 84.15,
"name": "Dumraon",
@@ -83383,9 +75405,8 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1715542,
- "latitude": 8.64639,
- "longitude": 123.42083,
+ "latitude": 8.6561,
+ "longitude": 123.4227,
"name": "Dapitan",
"population": 50514
},
@@ -83393,7 +75414,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3666570,
"latitude": 8.09368,
"longitude": -76.72691,
"name": "Turbo",
@@ -83403,7 +75423,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 743818,
"latitude": 41.09258,
"longitude": 28.33172,
"name": "Kavakl\u0131",
@@ -83413,7 +75432,6 @@
"country_code": "XK",
"elevation": 612,
"feature_code": "PPL",
- "geonameid": 791580,
"latitude": 42.54018,
"longitude": 20.28793,
"name": "De\u00e7an",
@@ -83423,7 +75441,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7284838,
"latitude": 47.42698,
"longitude": 19.04016,
"name": "Budapest XXII. ker\u00fclet",
@@ -83433,9 +75450,8 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 216404,
- "latitude": 4.28333,
- "longitude": 21.01667,
+ "latitude": 4.279,
+ "longitude": 21.00284,
"name": "Gbadolite",
"population": 50493
},
@@ -83443,7 +75459,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3664539,
"latitude": -4.085,
"longitude": -63.14139,
"name": "Coari",
@@ -83453,7 +75468,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3005866,
"latitude": 48.06667,
"longitude": -0.76667,
"name": "Laval",
@@ -83463,7 +75477,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3012937,
"latitude": 43.11954,
"longitude": 6.13897,
"name": "Hy\u00e8res",
@@ -83473,7 +75486,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1316703,
"latitude": 21.6,
"longitude": 96.13333,
"name": "Kyaukse",
@@ -83483,7 +75495,6 @@
"country_code": "US",
"elevation": 197,
"feature_code": "PPL",
- "geonameid": 5264870,
"latitude": 43.84635,
"longitude": -91.24819,
"name": "North La Crosse",
@@ -83493,7 +75504,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 757033,
"latitude": 50.57304,
"longitude": 21.67937,
"name": "Tarnobrzeg",
@@ -83503,7 +75513,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 749704,
"latitude": 41.19889,
"longitude": 36.72194,
"name": "\u00c7ar\u015famba",
@@ -83513,7 +75522,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2294938,
"latitude": 6.73453,
"longitude": -1.61275,
"name": "Tafo",
@@ -83523,7 +75531,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1153269,
"latitude": 12.57065,
"longitude": 99.95876,
"name": "Hua Hin",
@@ -83533,7 +75540,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 701855,
"latitude": 47.63543,
"longitude": 34.62769,
"name": "Marhanets\u2019",
@@ -83543,7 +75549,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1264414,
"latitude": 21.1,
"longitude": 82.1,
"name": "Mah\u0101samund",
@@ -83553,7 +75558,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2881062,
"latitude": 52.45,
"longitude": 9.75,
"name": "Langenhagen",
@@ -83563,7 +75567,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3675707,
"latitude": 4.73244,
"longitude": -74.26419,
"name": "Madrid",
@@ -83573,7 +75576,6 @@
"country_code": "US",
"elevation": 1353,
"feature_code": "PPL",
- "geonameid": 5781770,
"latitude": 40.56217,
"longitude": -111.92966,
"name": "South Jordan",
@@ -83583,7 +75585,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3689570,
"latitude": 10.25444,
"longitude": -75.34389,
"name": "Arjona",
@@ -83593,7 +75594,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3627968,
"latitude": 10.21302,
"longitude": -67.42365,
"name": "San Mateo",
@@ -83603,7 +75603,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2834265,
"latitude": 51.45,
"longitude": 7.56667,
"name": "Schwerte",
@@ -83613,7 +75612,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1170667,
"latitude": 25.04312,
"longitude": 68.65568,
"name": "M\u0101tli",
@@ -83623,7 +75621,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1271780,
"latitude": 28.85,
"longitude": 78.23333,
"name": "Gajraula",
@@ -83633,7 +75630,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2524205,
"latitude": 37.66414,
"longitude": 12.58804,
"name": "Mazara del Vallo",
@@ -83643,7 +75639,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185252,
"latitude": 23.1,
"longitude": 91.96667,
"name": "Khagr\u0101chari",
@@ -83653,7 +75648,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3182272,
"latitude": 40.61091,
"longitude": 14.98515,
"name": "Battipaglia",
@@ -83663,9 +75657,8 @@
"country_code": "TJ",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1514891,
- "latitude": 40.28434,
- "longitude": 70.44257,
+ "latitude": 40.29414,
+ "longitude": 70.43122,
"name": "Konibodom",
"population": 50359
},
@@ -83673,7 +75666,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2830582,
"latitude": 49.32972,
"longitude": 8.42778,
"name": "Speyer",
@@ -83683,7 +75675,6 @@
"country_code": "CM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2223734,
"latitude": 4.51667,
"longitude": 12.03333,
"name": "Nkoteng",
@@ -83693,7 +75684,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6177869,
"latitude": 42.98342,
"longitude": -79.24958,
"name": "Welland",
@@ -83703,7 +75693,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6138374,
"latitude": 45.61678,
"longitude": -72.94914,
"name": "Saint-Hyacinthe",
@@ -83713,7 +75702,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2287790,
"latitude": 6.49224,
"longitude": -6.58558,
"name": "Issia",
@@ -83723,7 +75711,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 298935,
"latitude": 38.1519,
"longitude": 27.36223,
"name": "Torbal\u0131",
@@ -83733,7 +75720,6 @@
"country_code": "GH",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2294962,
"latitude": 5.53711,
"longitude": -0.69984,
"name": "Swedru",
@@ -83743,7 +75729,6 @@
"country_code": "US",
"elevation": 20,
"feature_code": "PPL",
- "geonameid": 4951473,
"latitude": 42.50982,
"longitude": -70.94949,
"name": "South Peabody",
@@ -83753,7 +75738,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3168843,
"latitude": 45.07998,
"longitude": 11.79301,
"name": "Rovigo",
@@ -83763,7 +75747,6 @@
"country_code": "IL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 294117,
"latitude": 33.00586,
"longitude": 35.09409,
"name": "Nahariyya",
@@ -83773,7 +75756,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1279394,
"latitude": 24.48333,
"longitude": 72.78333,
"name": "\u0100bu Road",
@@ -83783,7 +75765,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2634202,
"latitude": 50.61136,
"longitude": -2.45334,
"name": "Weymouth",
@@ -83793,7 +75774,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3077685,
"latitude": 50.46048,
"longitude": 13.41779,
"name": "Chomutov",
@@ -83803,7 +75783,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3169447,
"latitude": 45.53087,
"longitude": 9.04014,
"name": "Rho",
@@ -83813,7 +75792,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 147622,
"latitude": 38.75428,
"longitude": 48.85062,
"name": "L\u01ddnk\u01ddran",
@@ -83823,7 +75801,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1261910,
"latitude": 12.11972,
"longitude": 76.68278,
"name": "Nanjang\u016bd",
@@ -83833,7 +75810,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1854026,
"latitude": 34.85,
"longitude": 134.93333,
"name": "Ono",
@@ -83843,7 +75819,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 289199,
"latitude": 23.98864,
"longitude": 57.09838,
"name": "Al Kh\u0101b\u016brah",
@@ -83853,7 +75828,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257587,
"latitude": 18.53333,
"longitude": 83.21667,
"name": "S\u0101l\u016br",
@@ -83863,7 +75837,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 567434,
"latitude": 58.3013,
"longitude": 57.8131,
"name": "Chusovoy",
@@ -83873,7 +75846,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2479161,
"latitude": 36.14766,
"longitude": 3.69123,
"name": "Sour el Ghozlane",
@@ -83883,7 +75855,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 712160,
"latitude": 46.1952,
"longitude": 30.34938,
"name": "Bilhorod-Dnistrovs\u2019kyy",
@@ -83893,7 +75864,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1879613,
"latitude": 39.61778,
"longitude": 125.66472,
"name": "Anju",
@@ -83903,7 +75873,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2655351,
"latitude": 51.99334,
"longitude": -0.73471,
"name": "Bletchley",
@@ -83913,7 +75882,6 @@
"country_code": "US",
"elevation": 187,
"feature_code": "PPL",
- "geonameid": 5128723,
"latitude": 43.0945,
"longitude": -79.05671,
"name": "Niagara Falls",
@@ -83923,7 +75891,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2525790,
"latitude": 37.60666,
"longitude": 15.16279,
"name": "Acireale",
@@ -83933,7 +75900,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 2645889,
"latitude": 53.86791,
"longitude": -1.90664,
"name": "Keighley",
@@ -83943,7 +75909,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6089426,
"latitude": 46.3168,
"longitude": -79.46633,
"name": "North Bay",
@@ -83953,7 +75918,6 @@
"country_code": "US",
"elevation": 65,
"feature_code": "PPLA2",
- "geonameid": 5710756,
"latitude": 44.63651,
"longitude": -123.10593,
"name": "Albany",
@@ -83963,7 +75927,6 @@
"country_code": "US",
"elevation": 306,
"feature_code": "PPL",
- "geonameid": 4392768,
"latitude": 37.08423,
"longitude": -94.51328,
"name": "Joplin",
@@ -83973,7 +75936,6 @@
"country_code": "US",
"elevation": 315,
"feature_code": "PPL",
- "geonameid": 5063805,
"latitude": 41.13667,
"longitude": -95.89084,
"name": "Bellevue",
@@ -83983,7 +75945,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3166988,
"latitude": 43.75423,
"longitude": 11.18794,
"name": "Scandicci",
@@ -83993,7 +75954,6 @@
"country_code": "CD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 217570,
"latitude": 2.78582,
"longitude": 24.72998,
"name": "Buta",
@@ -84003,7 +75963,6 @@
"country_code": "US",
"elevation": 10,
"feature_code": "PPLA2",
- "geonameid": 5141502,
"latitude": 42.72841,
"longitude": -73.69179,
"name": "Troy",
@@ -84013,7 +75972,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 513883,
"latitude": 53.37596,
"longitude": 51.3452,
"name": "Otradnyy",
@@ -84023,7 +75981,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2487620,
"latitude": 32.26667,
"longitude": 3.63333,
"name": "Metlili Chaamba",
@@ -84033,7 +75990,6 @@
"country_code": "US",
"elevation": 288,
"feature_code": "PPL",
- "geonameid": 5037790,
"latitude": 44.94107,
"longitude": -93.4419,
"name": "Minnetonka Mills",
@@ -84043,7 +75999,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1728336,
"latitude": 13.93714,
"longitude": 120.73224,
"name": "Balayan",
@@ -84053,7 +76008,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3979846,
"latitude": 19.83333,
"longitude": -101.71667,
"name": "Zacap\u00fa",
@@ -84063,7 +76017,6 @@
"country_code": "CZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3074199,
"latitude": 49.3961,
"longitude": 15.59124,
"name": "Jihlava",
@@ -84073,7 +76026,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3446753,
"latitude": -21.40611,
"longitude": -48.50472,
"name": "Taquaritinga",
@@ -84083,7 +76035,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1275848,
"latitude": 17.51083,
"longitude": 78.88889,
"name": "Bhong\u012br",
@@ -84093,7 +76044,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1536289,
"latitude": 56.085,
"longitude": 60.73139,
"name": "Snezhinsk",
@@ -84103,7 +76053,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3053438,
"latitude": 46.98333,
"longitude": 18.93333,
"name": "Duna\u00fajv\u00e1ros",
@@ -84113,7 +76062,6 @@
"country_code": "KP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2039623,
"latitude": 40.19944,
"longitude": 124.53167,
"name": "\u016ciju",
@@ -84123,7 +76071,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 334227,
"latitude": 14.10307,
"longitude": 38.28289,
"name": "Inda Silas\u0113",
@@ -84133,7 +76080,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 2619771,
"latitude": 55.86066,
"longitude": 9.85034,
"name": "Horsens",
@@ -84143,7 +76089,6 @@
"country_code": "US",
"elevation": 236,
"feature_code": "PPL",
- "geonameid": 5352439,
"latitude": 34.13612,
"longitude": -117.86534,
"name": "Glendora",
@@ -84153,7 +76098,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2907851,
"latitude": 48.67798,
"longitude": 10.15162,
"name": "Heidenheim an der Brenz",
@@ -84163,7 +76107,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1850523,
"latitude": 34.98333,
"longitude": 139.86667,
"name": "Tateyama",
@@ -84173,7 +76116,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1642692,
"latitude": -7.88333,
"longitude": 111.11667,
"name": "Jatiroto",
@@ -84183,7 +76125,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3178587,
"latitude": 42.09325,
"longitude": 11.79674,
"name": "Civitavecchia",
@@ -84193,7 +76134,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2652381,
"latitude": 52.49637,
"longitude": -0.68939,
"name": "Corby",
@@ -84203,7 +76143,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1278498,
"latitude": 28.28333,
"longitude": 79.15,
"name": "Aonla",
@@ -84213,7 +76152,6 @@
"country_code": "US",
"elevation": 2,
"feature_code": "PPL",
- "geonameid": 5099133,
"latitude": 40.74399,
"longitude": -74.03236,
"name": "Hoboken",
@@ -84223,7 +76161,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 7290255,
"latitude": 52.49376,
"longitude": 13.44469,
"name": "Berlin Treptow",
@@ -84233,7 +76170,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2647261,
"latitude": 51.51579,
"longitude": -0.4234,
"name": "Hayes",
@@ -84243,7 +76179,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 612287,
"latitude": 41.54949,
"longitude": 44.99323,
"name": "Rust\u2019avi",
@@ -84253,7 +76188,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPLX",
- "geonameid": 3521305,
"latitude": 19.41667,
"longitude": -99.2,
"name": "Polanco",
@@ -84263,7 +76197,6 @@
"country_code": "MY",
"elevation": 0,
"feature_code": "PPLG",
- "geonameid": 6697380,
"latitude": 2.93527,
"longitude": 101.69112,
"name": "Putrajaya",
@@ -84273,7 +76206,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 1161983,
"latitude": 33.85782,
"longitude": 73.76043,
"name": "R\u0101wala Kot",
@@ -84283,7 +76215,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2266249,
"latitude": 39.46203,
"longitude": -8.7118,
"name": "Monsanto",
@@ -84293,7 +76224,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1512086,
"latitude": 54.8523,
"longitude": 83.106,
"name": "Akademgorodok",
@@ -84303,7 +76233,6 @@
"country_code": "TR",
"elevation": 350,
"feature_code": "PPLX",
- "geonameid": 6354984,
"latitude": 41.01295,
"longitude": 28.88593,
"name": "merter keresteciler",
@@ -84313,7 +76242,6 @@
"country_code": "TR",
"elevation": 340,
"feature_code": "PPLX",
- "geonameid": 6354985,
"latitude": 41.00711,
"longitude": 28.88795,
"name": "g\u00fcng\u00f6ren merter",
@@ -84323,7 +76251,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 6640202,
"latitude": -3.56182,
"longitude": 36.97895,
"name": "Merelani",
@@ -84333,7 +76260,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 601339,
"latitude": 42.40043,
"longitude": 59.46005,
"name": "Kh\u016djayli",
@@ -84343,7 +76269,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 113659,
"latitude": 33.59586,
"longitude": 56.92437,
"name": "\u0162abas",
@@ -84353,7 +76278,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1267189,
"latitude": 25.5,
"longitude": 86.48333,
"name": "Khagaria",
@@ -84363,7 +76287,6 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1721636,
"latitude": 15.2488,
"longitude": 120.8548,
"name": "Cabiao",
@@ -84373,7 +76296,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1273002,
"latitude": 29.31667,
"longitude": 78.51667,
"name": "Dh\u0101mpur",
@@ -84383,7 +76305,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2735083,
"latitude": 41.18259,
"longitude": -8.55811,
"name": "Rio Tinto",
@@ -84393,7 +76314,6 @@
"country_code": "US",
"elevation": 198,
"feature_code": "PPL",
- "geonameid": 4458228,
"latitude": 36.09569,
"longitude": -79.4378,
"name": "Burlington",
@@ -84403,7 +76323,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2855047,
"latitude": 52.31667,
"longitude": 10.23333,
"name": "Peine",
@@ -84413,7 +76332,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933366,
"latitude": -19.98333,
"longitude": 23.41667,
"name": "Maun",
@@ -84423,7 +76341,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1492893,
"latitude": 53.0875,
"longitude": 91.39972,
"name": "Sayanogorsk",
@@ -84433,7 +76350,6 @@
"country_code": "US",
"elevation": 191,
"feature_code": "PPL",
- "geonameid": 5006917,
"latitude": 42.38337,
"longitude": -83.2966,
"name": "Redford",
@@ -84443,17 +76359,24 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3405812,
"latitude": -8.33556,
"longitude": -36.42417,
"name": "Belo Jardim",
"population": 49922
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.4378,
+ "longitude": 13.38109,
+ "name": "Mariendorf",
+ "population": 49917
+ },
{
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2756767,
"latitude": 51.965,
"longitude": 6.28889,
"name": "Doetinchem",
@@ -84463,7 +76386,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2640681,
"latitude": 50.43565,
"longitude": -3.56789,
"name": "Paignton",
@@ -84473,7 +76395,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 553216,
"latitude": 55.50962,
"longitude": 47.49127,
"name": "Kanash",
@@ -84483,7 +76404,6 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2335843,
"latitude": 7.82873,
"longitude": 6.0731,
"name": "Kabba",
@@ -84493,7 +76413,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 525404,
"latitude": 67.93972,
"longitude": 32.87389,
"name": "Monchegorsk",
@@ -84503,7 +76422,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 741304,
"latitude": 40.59167,
"longitude": 36.95167,
"name": "Niksar",
@@ -84513,7 +76431,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2283016,
"latitude": 9.50511,
"longitude": -7.56433,
"name": "Odienn\u00e9",
@@ -84523,7 +76440,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1257196,
"latitude": 29.15,
"longitude": 77.61667,
"name": "Sardhana",
@@ -84533,7 +76449,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1272640,
"latitude": 27.40096,
"longitude": 74.57537,
"name": "D\u012bdw\u0101na",
@@ -84543,7 +76458,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3526992,
"latitude": 20.18333,
"longitude": -98.05,
"name": "Huauchinango",
@@ -84553,7 +76467,6 @@
"country_code": "UZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1514258,
"latitude": 41.06656,
"longitude": 71.85527,
"name": "Chortoq",
@@ -84563,7 +76476,6 @@
"country_code": "DE",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2864435,
"latitude": 49.35,
"longitude": 7.18333,
"name": "Neunkirchen",
@@ -84573,7 +76485,6 @@
"country_code": "IR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 418851,
"latitude": 32.5553,
"longitude": 51.50974,
"name": "Moll\u0101varj\u0101n",
@@ -84583,7 +76494,6 @@
"country_code": "UA",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 713749,
"latitude": 50.31036,
"longitude": 34.89879,
"name": "Okhtyrka",
@@ -84593,7 +76503,6 @@
"country_code": "JP",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1851504,
"latitude": 36.03333,
"longitude": 139.73333,
"name": "Sugito",
@@ -84603,7 +76512,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 252664,
"latitude": 39.55528,
"longitude": 21.7675,
"name": "Tr\u00edkala",
@@ -84613,7 +76521,6 @@
"country_code": "US",
"elevation": 34,
"feature_code": "PPL",
- "geonameid": 5102720,
"latitude": 40.61682,
"longitude": -74.41727,
"name": "Plainfield",
@@ -84622,8 +76529,7 @@
{
"country_code": "RS",
"elevation": 0,
- "feature_code": "PPL",
- "geonameid": 784024,
+ "feature_code": "PPLA2",
"latitude": 43.90358,
"longitude": 22.26405,
"name": "Zaje\u010dar",
@@ -84633,7 +76539,6 @@
"country_code": "BR",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3405792,
"latitude": -1.36139,
"longitude": -48.24472,
"name": "Benevides",
@@ -84643,7 +76548,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 3169231,
"latitude": 45.07155,
"longitude": 7.52622,
"name": "Rivoli",
@@ -84653,7 +76557,6 @@
"country_code": "US",
"elevation": 245,
"feature_code": "PPL",
- "geonameid": 4258313,
"latitude": 39.61366,
"longitude": -86.10665,
"name": "Greenwood",
@@ -84663,7 +76566,6 @@
"country_code": "GB",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2634578,
"latitude": 52.30273,
"longitude": -0.69446,
"name": "Wellingborough",
@@ -84673,7 +76575,6 @@
"country_code": "NL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2752923,
"latitude": 50.86583,
"longitude": 6.0625,
"name": "Kerkrade",
@@ -84683,7 +76584,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3881276,
"latitude": -37.08333,
"longitude": -73.16667,
"name": "Lota",
@@ -84693,7 +76593,6 @@
"country_code": "PL",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 760924,
"latitude": 51.41655,
"longitude": 21.96939,
"name": "Pu\u0142awy",
@@ -84703,7 +76602,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 2491913,
"latitude": 36.64997,
"longitude": 3.3308,
"name": "Khemis el Khechna",
@@ -84713,7 +76611,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2445488,
"latitude": 13.049,
"longitude": 3.1937,
"name": "Dosso",
@@ -84723,7 +76620,6 @@
"country_code": "MX",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 3980777,
"latitude": 20.15,
"longitude": -101.18333,
"name": "Uriangato",
@@ -84733,7 +76629,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1611439,
"latitude": 13.6882,
"longitude": 101.07156,
"name": "Chachoengsao",
@@ -84743,7 +76638,6 @@
"country_code": "BD",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1185247,
"latitude": 25.55592,
"longitude": 89.67152,
"name": "Chilm\u0101ri",
@@ -84753,7 +76647,6 @@
"country_code": "US",
"elevation": 275,
"feature_code": "PPL",
- "geonameid": 5037784,
"latitude": 44.9133,
"longitude": -93.50329,
"name": "Minnetonka",
@@ -84763,7 +76656,6 @@
"country_code": "US",
"elevation": 53,
"feature_code": "PPL",
- "geonameid": 5106292,
"latitude": 40.78788,
"longitude": -74.01431,
"name": "West New York",
@@ -84773,7 +76665,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 158160,
"latitude": -3.02028,
"longitude": 31.89583,
"name": "Katoro",
@@ -84783,7 +76674,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1269392,
"latitude": 25.34558,
"longitude": 72.61559,
"name": "Jalor",
@@ -84793,7 +76683,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 308024,
"latitude": 39.67306,
"longitude": 33.61361,
"name": "Keskin",
@@ -84803,7 +76692,6 @@
"country_code": "ID",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1214800,
"latitude": 3.7278,
"longitude": 98.6738,
"name": "Labuhan Deli",
@@ -84813,7 +76701,6 @@
"country_code": "PK",
"elevation": 0,
"feature_code": "PPL",
- "geonameid": 1177397,
"latitude": 32.64132,
"longitude": 74.56904,
"name": "Had\u0101li",
@@ -84823,7 +76710,6 @@
"country_code": "US",
"elevation": 312,
"feature_code": "PPL",
- "geonameid": 5151613,
"latitude": 41.13394,
"longitude": -81.48456,
"name": "Cuyahoga Falls",
@@ -84833,7 +76719,6 @@
"country_code": "FR",
"elevation": 0,
"feature_code": "PPLA2",
- "geonameid": 3028641,
"latitude": 43.21667,
"longitude": 2.35,
"name": "Carcassonne",
@@ -84843,87 +76728,1626 @@
"country_code": "PH",
"elevation": 0,
"feature_code": "PPLA3",
- "geonameid": 1699205,
"latitude": 14.5115,
"longitude": 121.2393,
"name": "Morong",
"population": 49589
},
+ {
+ "country_code": "ZA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -26.95659,
+ "longitude": 24.7284,
+ "name": "Vryburg",
+ "population": 49588
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 28.64201,
+ "longitude": 75.38612,
+ "name": "R\u0101jgarh",
+ "population": 49583
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.48333,
+ "longitude": 85.71667,
+ "name": "B\u0101rh",
+ "population": 49557
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 34.88333,
+ "longitude": 136.85,
+ "name": "Tokoname",
+ "population": 49554
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.74167,
+ "longitude": 88.78583,
+ "name": "Bad\u016bria",
+ "population": 49547
+ },
+ {
+ "country_code": "US",
+ "elevation": 1,
+ "feature_code": "PPLA2",
+ "latitude": 27.49893,
+ "longitude": -82.57482,
+ "name": "Bradenton",
+ "population": 49546
+ },
+ {
+ "country_code": "TZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -8.13333,
+ "longitude": 36.68333,
+ "name": "Ifakara",
+ "population": 49528
+ },
{
"country_code": "US",
"elevation": 101,
"feature_code": "PPLA",
- "geonameid": 5192726,
"latitude": 40.2737,
"longitude": -76.88442,
"name": "Harrisburg",
"population": 49528
},
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 50.00377,
+ "longitude": 18.47205,
+ "name": "Wodzis\u0142aw \u015al\u0105ski",
+ "population": 49521
+ },
+ {
+ "country_code": "AM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 40.16557,
+ "longitude": 44.29462,
+ "name": "Ejmiatsin",
+ "population": 49513
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.2,
+ "longitude": 8.8,
+ "name": "Bad Oeynhausen",
+ "population": 49513
+ },
+ {
+ "country_code": "TR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 37.71596,
+ "longitude": 33.55064,
+ "name": "Karap\u0131nar",
+ "population": 49509
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 16.51667,
+ "longitude": 76.75,
+ "name": "Shor\u0101pur",
+ "population": 49501
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.23455,
+ "longitude": 52.30942,
+ "name": "\u012astg\u0101h-e Garms\u0101r",
+ "population": 49491
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.39844,
+ "longitude": 13.40637,
+ "name": "Lichtenrade",
+ "population": 49489
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 45.65,
+ "longitude": 0.15,
+ "name": "Angoul\u00eame",
+ "population": 49468
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -22.7775,
+ "longitude": -47.29583,
+ "name": "Nova Odessa",
+ "population": 49432
+ },
+ {
+ "country_code": "BD",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.96881,
+ "longitude": 89.69299,
+ "name": "Nageswari",
+ "population": 49425
+ },
+ {
+ "country_code": "US",
+ "elevation": 65,
+ "feature_code": "PPL",
+ "latitude": 45.49428,
+ "longitude": -122.86705,
+ "name": "Aloha",
+ "population": 49425
+ },
+ {
+ "country_code": "ET",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 7.93333,
+ "longitude": 38.71667,
+ "name": "Ziway",
+ "population": 49416
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 22.76667,
+ "longitude": 86.18333,
+ "name": "Jugs\u0101lai",
+ "population": 49410
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 51.11311,
+ "longitude": 20.87162,
+ "name": "Skar\u017cysko-Kamienna",
+ "population": 49410
+ },
+ {
+ "country_code": "TR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 36.64389,
+ "longitude": 33.43885,
+ "name": "Mut",
+ "population": 49397
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 55.94685,
+ "longitude": -3.99051,
+ "name": "Cumbernauld",
+ "population": 49392
+ },
+ {
+ "country_code": "CO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.15769,
+ "longitude": -75.64317,
+ "name": "La Estrella",
+ "population": 49386
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 55.0425,
+ "longitude": 59.04,
+ "name": "Satka",
+ "population": 49384
+ },
+ {
+ "country_code": "DK",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 55.65719,
+ "longitude": 12.47364,
+ "name": "Hvidovre",
+ "population": 49380
+ },
+ {
+ "country_code": "US",
+ "elevation": 378,
+ "feature_code": "PPLA2",
+ "latitude": 36.39559,
+ "longitude": -97.87839,
+ "name": "Enid",
+ "population": 49379
+ },
+ {
+ "country_code": "TH",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 12.8,
+ "longitude": 99.96667,
+ "name": "Cha-am",
+ "population": 49375
+ },
+ {
+ "country_code": "SY",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 34.02547,
+ "longitude": 36.72837,
+ "name": "An Nabk",
+ "population": 49372
+ },
+ {
+ "country_code": "ZA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -27.1974,
+ "longitude": 25.98311,
+ "name": "Wolmaransstad",
+ "population": 49366
+ },
+ {
+ "country_code": "UA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.29229,
+ "longitude": 39.73729,
+ "name": "Krasnodon",
+ "population": 49352
+ },
{
"country_code": "RO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 686502,
"latitude": 43.98333,
"longitude": 25.33333,
"name": "Alexandria",
"population": 49346
},
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 41.96092,
+ "longitude": 12.79888,
+ "name": "Tivoli",
+ "population": 49342
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 10.3,
+ "longitude": 76.35,
+ "name": "Kizhake Ch\u0101lakudi",
+ "population": 49330
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -4.97139,
+ "longitude": -39.01528,
+ "name": "Quixad\u00e1",
+ "population": 49328
+ },
+ {
+ "country_code": "PR",
+ "elevation": 7,
+ "feature_code": "PPL",
+ "latitude": 18.47244,
+ "longitude": -66.71573,
+ "name": "Arecibo",
+ "population": 49318
+ },
+ {
+ "country_code": "PK",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 28.02271,
+ "longitude": 69.54886,
+ "name": "M\u012brpur M\u0101thelo",
+ "population": 49311
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 54.06387,
+ "longitude": 44.9509,
+ "name": "Ruzayevka",
+ "population": 49311
+ },
+ {
+ "country_code": "HT",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 18.42889,
+ "longitude": -72.77056,
+ "name": "Grand Go\u00e2ve",
+ "population": 49288
+ },
+ {
+ "country_code": "US",
+ "elevation": 192,
+ "feature_code": "PPLA2",
+ "latitude": 43.75083,
+ "longitude": -87.71453,
+ "name": "Sheboygan",
+ "population": 49288
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.25,
+ "longitude": 138.9,
+ "name": "Tomioka",
+ "population": 49281
+ },
+ {
+ "country_code": "AR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -23.80644,
+ "longitude": -64.78757,
+ "name": "Libertador General San Mart\u00edn",
+ "population": 49267
+ },
+ {
+ "country_code": "ZA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -28.87097,
+ "longitude": 31.89961,
+ "name": "eSikhawini",
+ "population": 49265
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -19.61806,
+ "longitude": -44.04306,
+ "name": "Pedro Leopoldo",
+ "population": 49261
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.31667,
+ "longitude": 11.91667,
+ "name": "Hof",
+ "population": 49239
+ },
+ {
+ "country_code": "DZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 29.26388,
+ "longitude": 0.23098,
+ "name": "Timimoun",
+ "population": 49237
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 45.9,
+ "longitude": 6.11667,
+ "name": "Annecy",
+ "population": 49232
+ },
+ {
+ "country_code": "DZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 27.19351,
+ "longitude": 2.46069,
+ "name": "I-n-Salah",
+ "population": 49223
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 41.28944,
+ "longitude": 141.21694,
+ "name": "Mutsu",
+ "population": 49220
+ },
+ {
+ "country_code": "MY",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 3.51667,
+ "longitude": 101.9,
+ "name": "Bentong Town",
+ "population": 49213
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 27.85,
+ "longitude": -101.11667,
+ "name": "Sabinas",
+ "population": 49199
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 10.3991,
+ "longitude": 123.9992,
+ "name": "Liloan",
+ "population": 49198
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.06713,
+ "longitude": 19.44477,
+ "name": "Radomsko",
+ "population": 49175
+ },
+ {
+ "country_code": "SA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 16.96887,
+ "longitude": 42.83251,
+ "name": "Ab\u016b \u2018Ar\u012bsh",
+ "population": 49171
+ },
+ {
+ "country_code": "CO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.34633,
+ "longitude": -75.50888,
+ "name": "Municipio de Copacabana",
+ "population": 49169
+ },
{
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2186239,
"latitude": -39.06667,
"longitude": 174.08333,
"name": "New Plymouth",
"population": 49168
},
+ {
+ "country_code": "US",
+ "elevation": 33,
+ "feature_code": "PPLA2",
+ "latitude": 35.72127,
+ "longitude": -77.91554,
+ "name": "Wilson",
+ "population": 49167
+ },
+ {
+ "country_code": "CA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 46.56675,
+ "longitude": -72.74913,
+ "name": "Shawinigan",
+ "population": 49161
+ },
+ {
+ "country_code": "AF",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 34.5875,
+ "longitude": 68.95333,
+ "name": "Paghm\u0101n",
+ "population": 49157
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 32.68462,
+ "longitude": 51.60129,
+ "name": "Rehn\u0101n",
+ "population": 49143
+ },
+ {
+ "country_code": "US",
+ "elevation": 173,
+ "feature_code": "PPLA2",
+ "latitude": 38.41925,
+ "longitude": -82.44515,
+ "name": "Huntington",
+ "population": 49138
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -21.85389,
+ "longitude": -47.47917,
+ "name": "Porto Ferreira",
+ "population": 49127
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 45.96389,
+ "longitude": 12.6575,
+ "name": "Pordenone",
+ "population": 49122
+ },
+ {
+ "country_code": "US",
+ "elevation": 45,
+ "feature_code": "PPL",
+ "latitude": 40.80677,
+ "longitude": -74.18542,
+ "name": "Bloomfield",
+ "population": 49120
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -7.76667,
+ "longitude": 112.01667,
+ "name": "Gampengrejo",
+ "population": 49118
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.38806,
+ "longitude": 77.86278,
+ "name": "Sidlaghatta",
+ "population": 49114
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 40.80444,
+ "longitude": 140.44139,
+ "name": "Goshogawara",
+ "population": 49110
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.50575,
+ "longitude": 13.50812,
+ "name": "Friedrichsfelde",
+ "population": 49109
+ },
+ {
+ "country_code": "CL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -32.78333,
+ "longitude": -71.21667,
+ "name": "Hacienda La Calera",
+ "population": 49106
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -26.99056,
+ "longitude": -48.63472,
+ "name": "Balne\u00e1rio Cambori\u00fa",
+ "population": 49100
+ },
+ {
+ "country_code": "US",
+ "elevation": 291,
+ "feature_code": "PPL",
+ "latitude": 44.73191,
+ "longitude": -93.21772,
+ "name": "Apple Valley",
+ "population": 49084
+ },
+ {
+ "country_code": "US",
+ "elevation": 67,
+ "feature_code": "PPLA2",
+ "latitude": 34.22843,
+ "longitude": -92.0032,
+ "name": "Pine Bluff",
+ "population": 49083
+ },
+ {
+ "country_code": "US",
+ "elevation": 4,
+ "feature_code": "PPL",
+ "latitude": 27.8428,
+ "longitude": -82.69954,
+ "name": "Pinellas Park",
+ "population": 49079
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -11.66417,
+ "longitude": -39.0075,
+ "name": "Serrinha",
+ "population": 49078
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -21.75778,
+ "longitude": -48.82889,
+ "name": "Ibitinga",
+ "population": 49074
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.78333,
+ "longitude": 6.15,
+ "name": "Kleve",
+ "population": 49072
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 32.95,
+ "longitude": 131.9,
+ "name": "Saiki",
+ "population": 49065
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.96667,
+ "longitude": 72.73333,
+ "name": "D\u0101h\u0101nu",
+ "population": 49048
+ },
+ {
+ "country_code": "US",
+ "elevation": 203,
+ "feature_code": "PPL",
+ "latitude": 32.58986,
+ "longitude": -96.85695,
+ "name": "DeSoto",
+ "population": 49047
+ },
+ {
+ "country_code": "DZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 33.10527,
+ "longitude": 6.05796,
+ "name": "Touggourt",
+ "population": 49044
+ },
+ {
+ "country_code": "RS",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 43.61694,
+ "longitude": 21.0025,
+ "name": "Trstenik",
+ "population": 49043
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 51.95485,
+ "longitude": 20.15837,
+ "name": "Skierniewice",
+ "population": 49042
+ },
+ {
+ "country_code": "US",
+ "elevation": 14,
+ "feature_code": "PPL",
+ "latitude": 33.85835,
+ "longitude": -118.06479,
+ "name": "Cerritos",
+ "population": 49041
+ },
{
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3573890,
"latitude": 10.66617,
"longitude": -61.51657,
"name": "Port-of-Spain",
"population": 49031
},
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.51667,
+ "longitude": -101.6,
+ "name": "P\u00e1tzcuaro",
+ "population": 49016
+ },
+ {
+ "country_code": "PK",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 32.98541,
+ "longitude": 70.6027,
+ "name": "Bannu",
+ "population": 49008
+ },
{
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2766429,
"latitude": 48.2,
"longitude": 15.63333,
"name": "Sankt P\u00f6lten",
"population": 49001
},
+ {
+ "country_code": "SS",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 3.86512,
+ "longitude": 32.48212,
+ "name": "Pajok",
+ "population": 49000
+ },
+ {
+ "country_code": "SS",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 3.76763,
+ "longitude": 32.51732,
+ "name": "PAJOK Pogee,",
+ "population": 49000
+ },
+ {
+ "country_code": "TH",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 14.70802,
+ "longitude": 101.41614,
+ "name": "Pak Chong",
+ "population": 48999
+ },
+ {
+ "country_code": "US",
+ "elevation": 160,
+ "feature_code": "PPL",
+ "latitude": 33.97612,
+ "longitude": -117.90534,
+ "name": "Rowland Heights",
+ "population": 48993
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 58.04874,
+ "longitude": 60.55949,
+ "name": "Verkhnyaya Salda",
+ "population": 48992
+ },
+ {
+ "country_code": "US",
+ "elevation": 95,
+ "feature_code": "PPL",
+ "latitude": 34.98898,
+ "longitude": -90.01259,
+ "name": "Southaven",
+ "population": 48982
+ },
+ {
+ "country_code": "NL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.555,
+ "longitude": 5.91111,
+ "name": "Kampen",
+ "population": 48980
+ },
+ {
+ "country_code": "SY",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 35.44208,
+ "longitude": 36.65095,
+ "name": "Kh\u0101n Shaykh\u016bn",
+ "population": 48975
+ },
+ {
+ "country_code": "IL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 32.81034,
+ "longitude": 35.11255,
+ "name": "Qiryat Ata",
+ "population": 48966
+ },
+ {
+ "country_code": "KR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 37.1759,
+ "longitude": 128.9889,
+ "name": "T\u2019aebaek",
+ "population": 48962
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -7.59083,
+ "longitude": 110.70444,
+ "name": "Gatak",
+ "population": 48959
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 11.46009,
+ "longitude": 78.18635,
+ "name": "Rasipuram",
+ "population": 48950
+ },
{
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3832899,
"latitude": -40.81345,
"longitude": -62.99668,
"name": "Viedma",
"population": 48940
},
+ {
+ "country_code": "US",
+ "elevation": 276,
+ "feature_code": "PPL",
+ "latitude": 30.5052,
+ "longitude": -97.82029,
+ "name": "Cedar Park",
+ "population": 48937
+ },
+ {
+ "country_code": "CA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 45.49452,
+ "longitude": -73.82419,
+ "name": "Dollard-Des Ormeaux",
+ "population": 48930
+ },
+ {
+ "country_code": "US",
+ "elevation": 188,
+ "feature_code": "PPL",
+ "latitude": 41.5931,
+ "longitude": -81.52679,
+ "name": "Euclid",
+ "population": 48920
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 53.6239,
+ "longitude": 87.3598,
+ "name": "Osinniki",
+ "population": 48919
+ },
+ {
+ "country_code": "US",
+ "elevation": 404,
+ "feature_code": "PPLA2",
+ "latitude": 38.44957,
+ "longitude": -78.86892,
+ "name": "Harrisonburg",
+ "population": 48914
+ },
+ {
+ "country_code": "UZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 41.55,
+ "longitude": 61.01667,
+ "name": "Novyy Turtkul\u2019",
+ "population": 48908
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -5.5,
+ "longitude": -45.25,
+ "name": "Barra do Corda",
+ "population": 48901
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": -7.3515,
+ "longitude": 108.111,
+ "name": "Singaparna",
+ "population": 48882
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.36667,
+ "longitude": 78.58333,
+ "name": "Pungan\u016bru",
+ "population": 48865
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 21.93333,
+ "longitude": -99.98333,
+ "name": "R\u00edo Verde",
+ "population": 48854
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 16.86667,
+ "longitude": 81.93333,
+ "name": "Mandapeta",
+ "population": 48852
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.65079,
+ "longitude": 53.29905,
+ "name": "Nek\u0101\u2019",
+ "population": 48847
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.04888,
+ "longitude": 80.11488,
+ "name": "Poonamalle",
+ "population": 48837
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": -9.6567,
+ "longitude": 120.2641,
+ "name": "Waingapu",
+ "population": 48828
+ },
+ {
+ "country_code": "US",
+ "elevation": 109,
+ "feature_code": "PPLX",
+ "latitude": 39.53316,
+ "longitude": -76.33746,
+ "name": "South Bel Air",
+ "population": 48828
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 47.78333,
+ "longitude": 9.61667,
+ "name": "Ravensburg",
+ "population": 48825
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.55295,
+ "longitude": 0.55962,
+ "name": "South Benfleet",
+ "population": 48824
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.31667,
+ "longitude": 91.0,
+ "name": "Barpeta",
+ "population": 48824
+ },
+ {
+ "country_code": "CA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 44.17876,
+ "longitude": -77.37053,
+ "name": "Belleville",
+ "population": 48821
+ },
+ {
+ "country_code": "CA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 45.01809,
+ "longitude": -74.72815,
+ "name": "Cornwall",
+ "population": 48821
+ },
+ {
+ "country_code": "US",
+ "elevation": 61,
+ "feature_code": "PPL",
+ "latitude": 37.00578,
+ "longitude": -121.56828,
+ "name": "Gilroy",
+ "population": 48821
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -20.49972,
+ "longitude": -43.85778,
+ "name": "Congonhas",
+ "population": 48819
+ },
+ {
+ "country_code": "US",
+ "elevation": 23,
+ "feature_code": "PPLA2",
+ "latitude": 32.50931,
+ "longitude": -92.1193,
+ "name": "Monroe",
+ "population": 48815
+ },
+ {
+ "country_code": "EG",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.23568,
+ "longitude": 32.00347,
+ "name": "Al Balyan\u0101",
+ "population": 48801
+ },
+ {
+ "country_code": "US",
+ "elevation": 47,
+ "feature_code": "PPL",
+ "latitude": 47.68149,
+ "longitude": -122.20874,
+ "name": "Kirkland",
+ "population": 48787
+ },
+ {
+ "country_code": "ML",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.5728,
+ "longitude": -8.0339,
+ "name": "Kolokani",
+ "population": 48774
+ },
+ {
+ "country_code": "US",
+ "elevation": 100,
+ "feature_code": "PPL",
+ "latitude": 39.07955,
+ "longitude": -77.07303,
+ "name": "Aspen Hill",
+ "population": 48759
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 40.70313,
+ "longitude": 17.3339,
+ "name": "Martina Franca",
+ "population": 48756
+ },
+ {
+ "country_code": "EC",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -1.05,
+ "longitude": -79.61667,
+ "name": "Velasco Ibarra",
+ "population": 48754
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": -23.28333,
+ "longitude": -47.67222,
+ "name": "Boituva",
+ "population": 48750
+ },
+ {
+ "country_code": "US",
+ "elevation": 6,
+ "feature_code": "PPL",
+ "latitude": 38.58046,
+ "longitude": -121.53023,
+ "name": "West Sacramento",
+ "population": 48744
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -26.23,
+ "longitude": -51.08639,
+ "name": "Uni\u00e3o da Vit\u00f3ria",
+ "population": 48741
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.91667,
+ "longitude": 6.81667,
+ "name": "Frechen",
+ "population": 48733
+ },
{
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3716044,
"latitude": 19.05,
"longitude": -72.46667,
"name": "Verrettes",
"population": 48724
},
+ {
+ "country_code": "US",
+ "elevation": 210,
+ "feature_code": "PPL",
+ "latitude": 42.86947,
+ "longitude": -85.64475,
+ "name": "Kentwood",
+ "population": 48707
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 53.75,
+ "longitude": 9.65,
+ "name": "Elmshorn",
+ "population": 48703
+ },
+ {
+ "country_code": "US",
+ "elevation": 200,
+ "feature_code": "PPL",
+ "latitude": 39.51506,
+ "longitude": -84.39828,
+ "name": "Middletown",
+ "population": 48694
+ },
+ {
+ "country_code": "SY",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 36.51194,
+ "longitude": 36.86954,
+ "name": "\u2018Afr\u012bn",
+ "population": 48693
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 61.0296,
+ "longitude": 76.1136,
+ "name": "Megion",
+ "population": 48691
+ },
+ {
+ "country_code": "ES",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 38.90883,
+ "longitude": 1.43296,
+ "name": "Ibiza",
+ "population": 48684
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 14.5833,
+ "longitude": 120.9667,
+ "name": "Port Area",
+ "population": 48684
+ },
+ {
+ "country_code": "PK",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 31.83587,
+ "longitude": 71.43625,
+ "name": "Dullew\u0101la",
+ "population": 48682
+ },
+ {
+ "country_code": "RE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -20.96333,
+ "longitude": 55.65031,
+ "name": "Saint-Andr\u00e9",
+ "population": 48674
+ },
+ {
+ "country_code": "NL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.25167,
+ "longitude": 5.70694,
+ "name": "Weert",
+ "population": 48662
+ },
+ {
+ "country_code": "MM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 17.3,
+ "longitude": 97.01667,
+ "name": "Kyaikto",
+ "population": 48658
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.3,
+ "longitude": 87.91667,
+ "name": "Taml\u016bk",
+ "population": 48646
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.05,
+ "longitude": 83.61667,
+ "name": "Bhabua",
+ "population": 48641
+ },
+ {
+ "country_code": "IL",
+ "elevation": 280,
+ "feature_code": "PPL",
+ "latitude": 31.93221,
+ "longitude": 35.04416,
+ "name": "Modiin Ilit",
+ "population": 48639
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 10.3766,
+ "longitude": 123.9573,
+ "name": "Consolacion",
+ "population": 48638
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 41.64002,
+ "longitude": 13.3401,
+ "name": "Frosinone",
+ "population": 48636
+ },
+ {
+ "country_code": "MM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 16.53139,
+ "longitude": 97.61111,
+ "name": "Martaban",
+ "population": 48629
+ },
+ {
+ "country_code": "CH",
+ "elevation": 434,
+ "feature_code": "PPL",
+ "latitude": 47.1324,
+ "longitude": 7.24411,
+ "name": "Biel",
+ "population": 48614
+ },
+ {
+ "country_code": "CO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 9.79029,
+ "longitude": -74.78244,
+ "name": "Plato",
+ "population": 48606
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -6.76694,
+ "longitude": -43.0225,
+ "name": "Floriano",
+ "population": 48587
+ },
+ {
+ "country_code": "US",
+ "elevation": 261,
+ "feature_code": "PPL",
+ "latitude": 42.73698,
+ "longitude": -84.48387,
+ "name": "East Lansing",
+ "population": 48579
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 34.66667,
+ "longitude": 131.85,
+ "name": "Masuda",
+ "population": 48576
+ },
+ {
+ "country_code": "US",
+ "elevation": 426,
+ "feature_code": "PPL",
+ "latitude": 32.8795,
+ "longitude": -111.75735,
+ "name": "Casa Grande",
+ "population": 48571
+ },
+ {
+ "country_code": "UA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.75104,
+ "longitude": 33.47471,
+ "name": "Romny",
+ "population": 48570
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -29.62861,
+ "longitude": -50.83472,
+ "name": "Parob\u00e9",
+ "population": 48559
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 32.36667,
+ "longitude": 75.51667,
+ "name": "Kathua",
+ "population": 48551
+ },
+ {
+ "country_code": "AU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -31.43084,
+ "longitude": 152.90894,
+ "name": "Port Macquarie",
+ "population": 48547
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 57.0436,
+ "longitude": 34.96221,
+ "name": "Torzhok",
+ "population": 48546
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 17.57472,
+ "longitude": 120.38694,
+ "name": "Vigan",
+ "population": 48545
+ },
+ {
+ "country_code": "BD",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.33338,
+ "longitude": 88.55777,
+ "name": "Panchagarh",
+ "population": 48531
+ },
+ {
+ "country_code": "US",
+ "elevation": 59,
+ "feature_code": "PPL",
+ "latitude": 33.91724,
+ "longitude": -118.01201,
+ "name": "La Mirada",
+ "population": 48527
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.76667,
+ "longitude": 7.0,
+ "name": "Bornheim",
+ "population": 48523
+ },
+ {
+ "country_code": "US",
+ "elevation": 567,
+ "feature_code": "PPLA2",
+ "latitude": 40.92501,
+ "longitude": -98.34201,
+ "name": "Grand Island",
+ "population": 48520
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 23.05888,
+ "longitude": -109.69771,
+ "name": "San Jos\u00e9 del Cabo",
+ "population": 48518
+ },
+ {
+ "country_code": "US",
+ "elevation": 40,
+ "feature_code": "PPL",
+ "latitude": 40.42788,
+ "longitude": -74.41598,
+ "name": "East Brunswick",
+ "population": 48495
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -10.46139,
+ "longitude": -40.18944,
+ "name": "Senhor do Bonfim",
+ "population": 48471
+ },
+ {
+ "country_code": "SE",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 62.39129,
+ "longitude": 17.3063,
+ "name": "Sundsvall",
+ "population": 48463
+ },
+ {
+ "country_code": "AR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -26.73201,
+ "longitude": -65.25921,
+ "name": "Taf\u00ed Viejo",
+ "population": 48459
+ },
+ {
+ "country_code": "RS",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 45.77417,
+ "longitude": 19.11222,
+ "name": "Sombor",
+ "population": 48454
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.45,
+ "longitude": -96.96667,
+ "name": "Coatepec",
+ "population": 48453
+ },
+ {
+ "country_code": "US",
+ "elevation": 5,
+ "feature_code": "PPL",
+ "latitude": 26.82339,
+ "longitude": -80.13865,
+ "name": "Palm Beach Gardens",
+ "population": 48452
+ },
+ {
+ "country_code": "US",
+ "elevation": 67,
+ "feature_code": "PPL",
+ "latitude": 33.72224,
+ "longitude": -116.37446,
+ "name": "Palm Desert",
+ "population": 48445
+ },
+ {
+ "country_code": "CO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 7.66638,
+ "longitude": -76.68106,
+ "name": "Chigorod\u00f3",
+ "population": 48443
+ },
+ {
+ "country_code": "NL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.085,
+ "longitude": 4.88333,
+ "name": "Woerden",
+ "population": 48431
+ },
{
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3586977,
"latitude": 13.71667,
"longitude": -88.93333,
"name": "Cojutepeque",
@@ -84933,237 +78357,2310 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1148311,
"latitude": 34.87311,
"longitude": 71.14697,
"name": "Asad\u0101b\u0101d",
"population": 48400
},
+ {
+ "country_code": "NL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.99833,
+ "longitude": 5.86944,
+ "name": "Sittard",
+ "population": 48400
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 29.33333,
+ "longitude": 78.38333,
+ "name": "Nihtaur",
+ "population": 48389
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -7.51417,
+ "longitude": 109.29417,
+ "name": "Banyumas",
+ "population": 48378
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": -0.79183,
+ "longitude": 100.65932,
+ "name": "Solok",
+ "population": 48372
+ },
+ {
+ "country_code": "US",
+ "elevation": 1090,
+ "feature_code": "PPLA2",
+ "latitude": 33.39427,
+ "longitude": -104.52302,
+ "name": "Roswell",
+ "population": 48366
+ },
+ {
+ "country_code": "CU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 20.34667,
+ "longitude": -74.49583,
+ "name": "Baracoa",
+ "population": 48362
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.53333,
+ "longitude": 136.61667,
+ "name": "Nonoichi",
+ "population": 48354
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.43333,
+ "longitude": 133.81667,
+ "name": "Kurayoshi",
+ "population": 48347
+ },
+ {
+ "country_code": "CD",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -4.55,
+ "longitude": 18.6,
+ "name": "Bulungu",
+ "population": 48344
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 52.23064,
+ "longitude": 19.36409,
+ "name": "Kutno",
+ "population": 48323
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.48333,
+ "longitude": 139.0,
+ "name": "Shibukawa",
+ "population": 48322
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.31667,
+ "longitude": -98.18333,
+ "name": "Santa Ana Chiautempan",
+ "population": 48322
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.92979,
+ "longitude": -1.12537,
+ "name": "West Bridgford",
+ "population": 48314
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.40474,
+ "longitude": -0.16404,
+ "name": "Mitcham",
+ "population": 48311
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 55.44753,
+ "longitude": 78.32181,
+ "name": "Kuybyshev",
+ "population": 48308
+ },
+ {
+ "country_code": "BD",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.23322,
+ "longitude": 90.71323,
+ "name": "Uttar Char Fasson",
+ "population": 48305
+ },
+ {
+ "country_code": "DO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.55186,
+ "longitude": -71.07813,
+ "name": "Mao",
+ "population": 48297
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -7.01833,
+ "longitude": 107.60389,
+ "name": "Pameungpeuk",
+ "population": 48294
+ },
{
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 729730,
"latitude": 42.28389,
"longitude": 22.69111,
"name": "Kyustendil",
"population": 48286
},
+ {
+ "country_code": "US",
+ "elevation": 142,
+ "feature_code": "PPL",
+ "latitude": 39.03983,
+ "longitude": -77.05526,
+ "name": "Wheaton",
+ "population": 48284
+ },
{
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785482,
"latitude": 41.74583,
"longitude": 22.19583,
"name": "Shtip",
"population": 48279
},
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.9018,
+ "longitude": 2.48931,
+ "name": "Bondy",
+ "population": 48268
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 45.53004,
+ "longitude": 9.27795,
+ "name": "Cologno Monzese",
+ "population": 48262
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 15.6689,
+ "longitude": 120.5806,
+ "name": "Paniqui",
+ "population": 48261
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.03333,
+ "longitude": 140.2,
+ "name": "Ami",
+ "population": 48256
+ },
+ {
+ "country_code": "US",
+ "elevation": 220,
+ "feature_code": "PPL",
+ "latitude": 41.66199,
+ "longitude": -86.15862,
+ "name": "Mishawaka",
+ "population": 48252
+ },
+ {
+ "country_code": "MA",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 33.43443,
+ "longitude": -5.22126,
+ "name": "Azrou",
+ "population": 48249
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 41.66922,
+ "longitude": 12.77929,
+ "name": "Velletri",
+ "population": 48236
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.31667,
+ "longitude": 138.9,
+ "name": "Annaka",
+ "population": 48235
+ },
+ {
+ "country_code": "US",
+ "elevation": 1897,
+ "feature_code": "PPLA2",
+ "latitude": 39.37221,
+ "longitude": -104.85609,
+ "name": "Castle Rock",
+ "population": 48231
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 60.02043,
+ "longitude": 30.63716,
+ "name": "Vsevolozhsk",
+ "population": 48224
+ },
+ {
+ "country_code": "GR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 41.14139,
+ "longitude": 24.88361,
+ "name": "X\u00e1nthi",
+ "population": 48221
+ },
{
"country_code": "MP",
"elevation": 5,
"feature_code": "PPLC",
- "geonameid": 7828758,
"latitude": 15.21233,
"longitude": 145.7545,
"name": "Saipan",
"population": 48220
},
+ {
+ "country_code": "YE",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 15.05835,
+ "longitude": 43.28506,
+ "name": "B\u0101jil",
+ "population": 48218
+ },
+ {
+ "country_code": "US",
+ "elevation": 369,
+ "feature_code": "PPL",
+ "latitude": 36.54843,
+ "longitude": -82.56182,
+ "name": "Kingsport",
+ "population": 48205
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 53.96396,
+ "longitude": 18.52638,
+ "name": "Starogard Gda\u0144ski",
+ "population": 48202
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 56.7938,
+ "longitude": 105.7672,
+ "name": "Ust\u2019-Kut",
+ "population": 48202
+ },
+ {
+ "country_code": "AR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -24.25648,
+ "longitude": -65.21163,
+ "name": "Palpal\u00e1",
+ "population": 48199
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 16.4812,
+ "longitude": 121.1497,
+ "name": "Bayombong",
+ "population": 48199
+ },
+ {
+ "country_code": "US",
+ "elevation": 314,
+ "feature_code": "PPL",
+ "latitude": 38.95362,
+ "longitude": -94.73357,
+ "name": "Lenexa",
+ "population": 48190
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -20.41639,
+ "longitude": -42.90861,
+ "name": "Ponte Nova",
+ "population": 48187
+ },
{
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 304184,
"latitude": 37.21807,
"longitude": 28.3665,
"name": "Mu\u011fla",
"population": 48183
},
+ {
+ "country_code": "US",
+ "elevation": 1382,
+ "feature_code": "PPLA2",
+ "latitude": 41.73549,
+ "longitude": -111.83439,
+ "name": "Logan",
+ "population": 48174
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 51.65446,
+ "longitude": -3.02281,
+ "name": "Cwmbran",
+ "population": 48157
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -7.4281,
+ "longitude": 112.7234,
+ "name": "Buduran",
+ "population": 48152
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 27.81667,
+ "longitude": 75.03333,
+ "name": "Lachhmangarh S\u012bkar",
+ "population": 48142
+ },
+ {
+ "country_code": "US",
+ "elevation": 135,
+ "feature_code": "PPL",
+ "latitude": 40.79871,
+ "longitude": -74.23904,
+ "name": "West Orange",
+ "population": 48131
+ },
{
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3198259,
"latitude": 45.48722,
"longitude": 15.54778,
"name": "Karlovac",
"population": 48123
},
+ {
+ "country_code": "PY",
+ "elevation": 0,
+ "feature_code": "PPLA",
+ "latitude": -23.40556,
+ "longitude": -57.44028,
+ "name": "Concepci\u00f3n",
+ "population": 48123
+ },
+ {
+ "country_code": "US",
+ "elevation": 87,
+ "feature_code": "PPL",
+ "latitude": 38.93428,
+ "longitude": -77.17748,
+ "name": "McLean",
+ "population": 48115
+ },
+ {
+ "country_code": "ES",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 43.32099,
+ "longitude": -3.02064,
+ "name": "Portugalete",
+ "population": 48105
+ },
+ {
+ "country_code": "NE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.79562,
+ "longitude": 5.2553,
+ "name": "Birni N Konni",
+ "population": 48103
+ },
+ {
+ "country_code": "MM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 16.08,
+ "longitude": 97.5675,
+ "name": "Kyaikkami",
+ "population": 48100
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.14376,
+ "longitude": 79.90889,
+ "name": "Tiruvallur",
+ "population": 48095
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -8.35917,
+ "longitude": -35.22361,
+ "name": "Escada",
+ "population": 48083
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.93872,
+ "longitude": 2.46138,
+ "name": "Le Blanc-Mesnil",
+ "population": 48077
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 30.42983,
+ "longitude": 49.07628,
+ "name": "Bandar Em\u0101m Khomeyn\u012b",
+ "population": 48061
+ },
+ {
+ "country_code": "EG",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 30.59618,
+ "longitude": 30.89875,
+ "name": "Ash Shuhad\u0101\u2019",
+ "population": 48060
+ },
+ {
+ "country_code": "US",
+ "elevation": 117,
+ "feature_code": "PPL",
+ "latitude": 46.28569,
+ "longitude": -119.28446,
+ "name": "Richland",
+ "population": 48058
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -29.65056,
+ "longitude": -50.78056,
+ "name": "Taquara",
+ "population": 48051
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.70251,
+ "longitude": 52.6576,
+ "name": "B\u0101bolsar",
+ "population": 48051
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.7939,
+ "longitude": 2.35992,
+ "name": "Villejuif",
+ "population": 48048
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.57558,
+ "longitude": 8.10619,
+ "name": "Soest",
+ "population": 48037
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 28.0958,
+ "longitude": 74.01195,
+ "name": "Sri Dungargarh",
+ "population": 48036
+ },
+ {
+ "country_code": "US",
+ "elevation": 51,
+ "feature_code": "PPL",
+ "latitude": 45.43123,
+ "longitude": -122.77149,
+ "name": "Tigard",
+ "population": 48035
+ },
{
"country_code": "RW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 202065,
"latitude": -2.0597,
"longitude": 29.3482,
"name": "Kibuye",
"population": 48024
},
+ {
+ "country_code": "BD",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.66491,
+ "longitude": 88.9247,
+ "name": "Parbatipur",
+ "population": 48020
+ },
+ {
+ "country_code": "HN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 15.83333,
+ "longitude": -87.95,
+ "name": "Puerto Cortez",
+ "population": 48013
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 40.74971,
+ "longitude": 14.46464,
+ "name": "Torre Annunziata",
+ "population": 48011
+ },
+ {
+ "country_code": "OM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 24.74333,
+ "longitude": 56.46583,
+ "name": "Shin\u0101\u015f",
+ "population": 48009
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.28333,
+ "longitude": 136.86667,
+ "name": "Iwakura",
+ "population": 48007
+ },
+ {
+ "country_code": "CA",
+ "elevation": 68,
+ "feature_code": "PPL",
+ "latitude": 49.31636,
+ "longitude": -123.06934,
+ "name": "North Vancouver",
+ "population": 48000
+ },
+ {
+ "country_code": "IL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 32.06972,
+ "longitude": 34.81167,
+ "name": "Giv\u2018atayim",
+ "population": 48000
+ },
+ {
+ "country_code": "EG",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 31.27105,
+ "longitude": 30.78665,
+ "name": "S\u012bd\u012b S\u0101lim",
+ "population": 47998
+ },
+ {
+ "country_code": "NP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.66667,
+ "longitude": 87.28333,
+ "name": "Ithari",
+ "population": 47984
+ },
{
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2473634,
"latitude": 36.17424,
"longitude": 8.70486,
"name": "El Kef",
"population": 47979
},
+ {
+ "country_code": "VN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 11.28333,
+ "longitude": 106.13333,
+ "name": "Ph\u00fa Kh\u01b0\u01a1ng",
+ "population": 47966
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.98333,
+ "longitude": 84.85,
+ "name": "Raxaul",
+ "population": 47965
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 20.45,
+ "longitude": -97.31667,
+ "name": "Papantla de Olarte",
+ "population": 47958
+ },
+ {
+ "country_code": "CO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 9.7174,
+ "longitude": -75.12023,
+ "name": "El Carmen de Bol\u00edvar",
+ "population": 47957
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.4575,
+ "longitude": 17.31308,
+ "name": "Nysa Zam\u0142ynie",
+ "population": 47954
+ },
+ {
+ "country_code": "UA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 49.04894,
+ "longitude": 33.24106,
+ "name": "Svitlovods\u2019k",
+ "population": 47946
+ },
+ {
+ "country_code": "US",
+ "elevation": 281,
+ "feature_code": "PPL",
+ "latitude": 44.88969,
+ "longitude": -93.34995,
+ "name": "Edina",
+ "population": 47941
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 40.90921,
+ "longitude": 14.34573,
+ "name": "Casalnuovo di Napoli",
+ "population": 47940
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -6.75917,
+ "longitude": -38.22806,
+ "name": "Sousa",
+ "population": 47927
+ },
+ {
+ "country_code": "MM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 24.26667,
+ "longitude": 97.23333,
+ "name": "Bhamo",
+ "population": 47920
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 15.63333,
+ "longitude": 76.9,
+ "name": "Siruguppa",
+ "population": 47917
+ },
+ {
+ "country_code": "PK",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.81308,
+ "longitude": 68.42273,
+ "name": "H\u0101la",
+ "population": 47915
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.85,
+ "longitude": 8.2,
+ "name": "Rastatt",
+ "population": 47906
+ },
+ {
+ "country_code": "IE",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 52.25833,
+ "longitude": -7.11194,
+ "name": "Waterford",
+ "population": 47904
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.89855,
+ "longitude": -1.27136,
+ "name": "Long Eaton",
+ "population": 47898
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -21.30528,
+ "longitude": -46.71278,
+ "name": "Guaxup\u00e9",
+ "population": 47889
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -15.3175,
+ "longitude": -49.1175,
+ "name": "Goian\u00e9sia",
+ "population": 47883
+ },
+ {
+ "country_code": "RE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -21.28585,
+ "longitude": 55.41124,
+ "name": "Saint-Louis",
+ "population": 47881
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.34972,
+ "longitude": 88.43917,
+ "name": "B\u0101ruipur",
+ "population": 47874
+ },
+ {
+ "country_code": "AU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -34.18551,
+ "longitude": 142.16251,
+ "name": "Mildura",
+ "population": 47867
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.83333,
+ "longitude": 69.36667,
+ "name": "M\u0101ndvi",
+ "population": 47853
+ },
+ {
+ "country_code": "US",
+ "elevation": 289,
+ "feature_code": "PPL",
+ "latitude": 33.64086,
+ "longitude": -117.6031,
+ "name": "Rancho Santa Margarita",
+ "population": 47853
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.15,
+ "longitude": 76.23333,
+ "name": "Manjlegaon",
+ "population": 47845
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -12.67,
+ "longitude": -39.10194,
+ "name": "Cruz das Almas",
+ "population": 47844
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 17.8,
+ "longitude": -97.76667,
+ "name": "Huajuapan de Le\u00f3n",
+ "population": 47844
+ },
+ {
+ "country_code": "US",
+ "elevation": 226,
+ "feature_code": "PPL",
+ "latitude": 41.80892,
+ "longitude": -88.01117,
+ "name": "Downers Grove",
+ "population": 47833
+ },
+ {
+ "country_code": "LK",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.68278,
+ "longitude": 80.39917,
+ "name": "Ratnapura",
+ "population": 47832
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.66667,
+ "longitude": -97.83333,
+ "name": "Valle Hermoso",
+ "population": 47831
+ },
{
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1127768,
"latitude": 36.26468,
"longitude": 68.01551,
"name": "A\u012bbak",
"population": 47823
},
+ {
+ "country_code": "US",
+ "elevation": 143,
+ "feature_code": "PPL",
+ "latitude": 33.56504,
+ "longitude": -117.72712,
+ "name": "Aliso Viejo",
+ "population": 47823
+ },
+ {
+ "country_code": "EG",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.67319,
+ "longitude": 31.4976,
+ "name": "Juhaynah",
+ "population": 47821
+ },
+ {
+ "country_code": "US",
+ "elevation": 11,
+ "feature_code": "PPLA2",
+ "latitude": 41.70011,
+ "longitude": -70.29947,
+ "name": "Barnstable",
+ "population": 47821
+ },
+ {
+ "country_code": "US",
+ "elevation": 379,
+ "feature_code": "PPLA2",
+ "latitude": 40.75839,
+ "longitude": -82.51545,
+ "name": "Mansfield",
+ "population": 47821
+ },
+ {
+ "country_code": "PK",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 27.80296,
+ "longitude": 68.28708,
+ "name": "Ratodero",
+ "population": 47819
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 21.46667,
+ "longitude": 78.26667,
+ "name": "Warud",
+ "population": 47817
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.21667,
+ "longitude": 6.9,
+ "name": "Erkrath",
+ "population": 47815
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.61667,
+ "longitude": 70.93333,
+ "name": "W\u0101nk\u0101ner",
+ "population": 47814
+ },
+ {
+ "country_code": "US",
+ "elevation": 157,
+ "feature_code": "PPL",
+ "latitude": 32.96282,
+ "longitude": -117.03586,
+ "name": "Poway",
+ "population": 47811
+ },
+ {
+ "country_code": "US",
+ "elevation": 12,
+ "feature_code": "PPL",
+ "latitude": 33.81696,
+ "longitude": -118.03729,
+ "name": "Cypress",
+ "population": 47802
+ },
+ {
+ "country_code": "US",
+ "elevation": 170,
+ "feature_code": "PPL",
+ "latitude": 34.09001,
+ "longitude": -117.89034,
+ "name": "Covina",
+ "population": 47796
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 44.99404,
+ "longitude": 7.64182,
+ "name": "Nichelino",
+ "population": 47791
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 45.16031,
+ "longitude": 10.79784,
+ "name": "Mantova",
+ "population": 47790
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 49.68866,
+ "longitude": 21.77058,
+ "name": "Krosno",
+ "population": 47784
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -26.89889,
+ "longitude": -48.65417,
+ "name": "Navegantes",
+ "population": 47781
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -0.9516,
+ "longitude": 122.7875,
+ "name": "Luwuk",
+ "population": 47778
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 24.33333,
+ "longitude": 93.66667,
+ "name": "Chur\u0101ch\u0101ndpur",
+ "population": 47774
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -22.64583,
+ "longitude": -47.19611,
+ "name": "Cosm\u00f3polis",
+ "population": 47772
+ },
{
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608409,
"latitude": 6.42639,
"longitude": 101.82308,
"name": "Narathiwat",
"population": 47771
},
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -1.19583,
+ "longitude": -47.18083,
+ "name": "Capanema",
+ "population": 47766
+ },
+ {
+ "country_code": "TN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.72866,
+ "longitude": 10.34163,
+ "name": "Hammam-Lif",
+ "population": 47760
+ },
+ {
+ "country_code": "US",
+ "elevation": 2,
+ "feature_code": "PPLA2",
+ "latitude": 29.30135,
+ "longitude": -94.7977,
+ "name": "Galveston",
+ "population": 47743
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 0.7,
+ "longitude": 108.9,
+ "name": "Sungairaya",
+ "population": 47735
+ },
+ {
+ "country_code": "US",
+ "elevation": 23,
+ "feature_code": "PPLA2",
+ "latitude": 31.31129,
+ "longitude": -92.44514,
+ "name": "Alexandria",
+ "population": 47723
+ },
+ {
+ "country_code": "OM",
+ "elevation": 0,
+ "feature_code": "PPLS",
+ "latitude": 23.31667,
+ "longitude": 58.01667,
+ "name": "Suf\u0101lat Sam\u0101\u2019il",
+ "population": 47718
+ },
+ {
+ "country_code": "US",
+ "elevation": 99,
+ "feature_code": "PPL",
+ "latitude": 39.50506,
+ "longitude": -76.31976,
+ "name": "Bel Air South",
+ "population": 47709
+ },
+ {
+ "country_code": "US",
+ "elevation": 373,
+ "feature_code": "PPLA2",
+ "latitude": 38.84028,
+ "longitude": -97.61142,
+ "name": "Salina",
+ "population": 47707
+ },
{
"country_code": "AU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2163355,
"latitude": -42.87936,
"longitude": 147.32941,
"name": "Hobart",
"population": 47700
},
+ {
+ "country_code": "US",
+ "elevation": 27,
+ "feature_code": "PPL",
+ "latitude": 21.39722,
+ "longitude": -157.97333,
+ "name": "Pearl City",
+ "population": 47698
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPLX",
+ "latitude": 52.55632,
+ "longitude": 13.46649,
+ "name": "Wei\u00dfensee",
+ "population": 47693
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 44.88,
+ "longitude": 40.59861,
+ "name": "Kurganinsk",
+ "population": 47681
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 62.09611,
+ "longitude": 77.475,
+ "name": "Raduzhnyy",
+ "population": 47679
+ },
{
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932698,
"latitude": -28.87185,
"longitude": 28.04501,
"name": "Leribe",
"population": 47675
},
+ {
+ "country_code": "DK",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 55.58333,
+ "longitude": 12.3,
+ "name": "Greve",
+ "population": 47671
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 24.26667,
+ "longitude": 87.25,
+ "name": "Dumka",
+ "population": 47663
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -3.33333,
+ "longitude": 128.91667,
+ "name": "Amahai",
+ "population": 47653
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 18.71667,
+ "longitude": 73.68333,
+ "name": "Talegaon D\u0101bh\u0101de",
+ "population": 47653
+ },
+ {
+ "country_code": "US",
+ "elevation": 12,
+ "feature_code": "PPL",
+ "latitude": 41.56232,
+ "longitude": -72.65065,
+ "name": "Middletown",
+ "population": 47648
+ },
+ {
+ "country_code": "DZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.63106,
+ "longitude": 5.91186,
+ "name": "Merouana",
+ "population": 47646
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 12.3075,
+ "longitude": 76.28778,
+ "name": "Huns\u016br",
+ "population": 47644
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -11.18056,
+ "longitude": -40.51833,
+ "name": "Jacobina",
+ "population": 47637
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -7.73333,
+ "longitude": 113.91667,
+ "name": "Balung",
+ "population": 47631
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -17.03917,
+ "longitude": -39.53111,
+ "name": "Itamaraju",
+ "population": 47628
+ },
+ {
+ "country_code": "AR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -28.13306,
+ "longitude": -58.76733,
+ "name": "San Lorenzo",
+ "population": 47626
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 55.76667,
+ "longitude": -4.03333,
+ "name": "Hamilton",
+ "population": 47615
+ },
{
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 597231,
"latitude": 54.56667,
"longitude": 23.35,
"name": "Marijampol\u0117",
"population": 47613
},
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 53.27657,
+ "longitude": 36.57334,
+ "name": "Mtsensk",
+ "population": 47609
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.62127,
+ "longitude": 0.30556,
+ "name": "Brentwood",
+ "population": 47606
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": -8.6199,
+ "longitude": 122.2111,
+ "name": "Maumere",
+ "population": 47598
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 37.08701,
+ "longitude": 55.17397,
+ "name": "Sh\u0101h Pasand",
+ "population": 47590
+ },
+ {
+ "country_code": "MY",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 5.72744,
+ "longitude": 100.50876,
+ "name": "Bedong",
+ "population": 47585
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 43.66667,
+ "longitude": 6.91667,
+ "name": "Grasse",
+ "population": 47581
+ },
+ {
+ "country_code": "NL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.67144,
+ "longitude": 4.84862,
+ "name": "Heerhugowaard",
+ "population": 47580
+ },
+ {
+ "country_code": "TG",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.23333,
+ "longitude": 1.6,
+ "name": "An\u00e9ho",
+ "population": 47579
+ },
+ {
+ "country_code": "US",
+ "elevation": 254,
+ "feature_code": "PPLA2",
+ "latitude": 40.05812,
+ "longitude": -82.40126,
+ "name": "Newark",
+ "population": 47573
+ },
+ {
+ "country_code": "TR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 40.83128,
+ "longitude": 35.64788,
+ "name": "Suluova",
+ "population": 47572
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 29.58333,
+ "longitude": 80.21667,
+ "name": "Pithor\u0101garh",
+ "population": 47571
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 17.71667,
+ "longitude": 79.18333,
+ "name": "Jangaon",
+ "population": 47558
+ },
+ {
+ "country_code": "AU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -25.28333,
+ "longitude": 152.86667,
+ "name": "Torquay",
+ "population": 47556
+ },
+ {
+ "country_code": "ZM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -15.76911,
+ "longitude": 28.18136,
+ "name": "Kafue",
+ "population": 47554
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.18585,
+ "longitude": 40.77424,
+ "name": "Belaya Kalitva",
+ "population": 47521
+ },
+ {
+ "country_code": "US",
+ "elevation": 10,
+ "feature_code": "PPL",
+ "latitude": 38.49602,
+ "longitude": -121.40884,
+ "name": "Florin",
+ "population": 47513
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 28.03333,
+ "longitude": 78.28333,
+ "name": "Atrauli",
+ "population": 47512
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.95,
+ "longitude": 79.2,
+ "name": "Narsimhapur",
+ "population": 47511
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 19.79778,
+ "longitude": -99.10167,
+ "name": "Zumpango de Ocampo",
+ "population": 47509
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 37.13761,
+ "longitude": 50.288,
+ "name": "R\u016bdsar",
+ "population": 47502
+ },
+ {
+ "country_code": "DE",
+ "elevation": 300,
+ "feature_code": "PPL",
+ "latitude": 48.78363,
+ "longitude": 9.21032,
+ "name": "Stuttgart-Ost",
+ "population": 47500
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.83333,
+ "longitude": 7.3,
+ "name": "D\u00fclmen",
+ "population": 47495
+ },
{
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3624955,
"latitude": 10.01667,
"longitude": -84.21667,
"name": "Alajuela",
"population": 47494
},
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -20.89722,
+ "longitude": -45.27722,
+ "name": "Campo Belo",
+ "population": 47491
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 12.36667,
+ "longitude": 123.61667,
+ "name": "Masbate",
+ "population": 47490
+ },
+ {
+ "country_code": "HU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 46.41667,
+ "longitude": 20.33333,
+ "name": "H\u00f3dmez\u0151v\u00e1s\u00e1rhely",
+ "population": 47485
+ },
+ {
+ "country_code": "US",
+ "elevation": 144,
+ "feature_code": "PPL",
+ "latitude": 38.66311,
+ "longitude": -90.57707,
+ "name": "Chesterfield",
+ "population": 47484
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 33.6095,
+ "longitude": 48.9307,
+ "name": "Azn\u0101",
+ "population": 47482
+ },
+ {
+ "country_code": "CM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 4.0913,
+ "longitude": 9.3144,
+ "name": "Mutengene",
+ "population": 47478
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 13.16667,
+ "longitude": 78.4,
+ "name": "Mulb\u0101gal",
+ "population": 47462
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.21389,
+ "longitude": 104.1,
+ "name": "Shelekhov",
+ "population": 47459
+ },
+ {
+ "country_code": "IL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 31.60998,
+ "longitude": 34.76422,
+ "name": "Qiryat Gat",
+ "population": 47450
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 12.4989,
+ "longitude": 124.6377,
+ "name": "Catarman",
+ "population": 47449
+ },
{
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 729114,
"latitude": 43.4125,
"longitude": 23.225,
"name": "Montana",
"population": 47445
},
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 49.53722,
+ "longitude": 8.355,
+ "name": "Frankenthal",
+ "population": 47438
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 16.35,
+ "longitude": 75.28333,
+ "name": "Mudhol",
+ "population": 47427
+ },
{
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933088,
- "latitude": -22.38333,
- "longitude": 26.71667,
+ "latitude": -22.38754,
+ "longitude": 26.71077,
"name": "Serowe",
"population": 47419
},
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 9.67826,
+ "longitude": 77.24951,
+ "name": "Gudalur",
+ "population": 47419
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.49657,
+ "longitude": 39.93593,
+ "name": "Gryazi",
+ "population": 47413
+ },
{
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1578500,
"latitude": 14.35,
"longitude": 108.0,
"name": "Kon Tum",
"population": 47409
},
+ {
+ "country_code": "US",
+ "elevation": 1391,
+ "feature_code": "PPL",
+ "latitude": 40.39162,
+ "longitude": -111.85077,
+ "name": "Lehi",
+ "population": 47407
+ },
+ {
+ "country_code": "US",
+ "elevation": 230,
+ "feature_code": "PPLA2",
+ "latitude": 30.63269,
+ "longitude": -97.67723,
+ "name": "Georgetown",
+ "population": 47400
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.87067,
+ "longitude": 6.10136,
+ "name": "Herzogenrath",
+ "population": 47381
+ },
+ {
+ "country_code": "AR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -38.94688,
+ "longitude": -69.20889,
+ "name": "Cutral-C\u00f3",
+ "population": 47380
+ },
{
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655559,
"latitude": 19.88556,
"longitude": 102.13472,
"name": "Louangphabang",
"population": 47378
},
+ {
+ "country_code": "US",
+ "elevation": 264,
+ "feature_code": "PPLA2",
+ "latitude": 42.09869,
+ "longitude": -75.91797,
+ "name": "Binghamton",
+ "population": 47376
+ },
+ {
+ "country_code": "CZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 49.47188,
+ "longitude": 17.11184,
+ "name": "Prost\u011bjov",
+ "population": 47374
+ },
+ {
+ "country_code": "UZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 39.40222,
+ "longitude": 67.24306,
+ "name": "Urgut",
+ "population": 47373
+ },
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 50.05146,
+ "longitude": 21.41141,
+ "name": "D\u0119bica",
+ "population": 47366
+ },
+ {
+ "country_code": "TR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 40.28833,
+ "longitude": 38.42361,
+ "name": "\u015eebinkarahisar",
+ "population": 47360
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.03333,
+ "longitude": 74.9,
+ "name": "Barw\u0101ni",
+ "population": 47343
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 48.94472,
+ "longitude": 2.52746,
+ "name": "Sevran",
+ "population": 47334
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 21.88333,
+ "longitude": 70.03333,
+ "name": "Jodhpur",
+ "population": 47329
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 15.0956,
+ "longitude": 120.8267,
+ "name": "Candaba",
+ "population": 47326
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 21.3,
+ "longitude": -100.51667,
+ "name": "San Luis de la Paz",
+ "population": 47321
+ },
+ {
+ "country_code": "CZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 49.45511,
+ "longitude": 17.4509,
+ "name": "P\u0159erov",
+ "population": 47311
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -12.5275,
+ "longitude": -40.30694,
+ "name": "Itaberaba",
+ "population": 47301
+ },
+ {
+ "country_code": "BY",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 53.1561,
+ "longitude": 24.4513,
+ "name": "Vawkavysk",
+ "population": 47300
+ },
{
"country_code": "CM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2233410,
"latitude": 4.1527,
"longitude": 9.241,
"name": "Buea",
"population": 47300
},
+ {
+ "country_code": "NL",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.03634,
+ "longitude": 4.32501,
+ "name": "Rijswijk",
+ "population": 47299
+ },
+ {
+ "country_code": "US",
+ "elevation": 187,
+ "feature_code": "PPL",
+ "latitude": 42.49726,
+ "longitude": -82.93714,
+ "name": "Roseville",
+ "population": 47299
+ },
+ {
+ "country_code": "ZW",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -18.13021,
+ "longitude": 30.14074,
+ "name": "Chegutu",
+ "population": 47294
+ },
+ {
+ "country_code": "TH",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 12.38487,
+ "longitude": 99.90158,
+ "name": "Pran Buri",
+ "population": 47293
+ },
+ {
+ "country_code": "KZ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.93818,
+ "longitude": 70.1895,
+ "name": "Shch\u016bch\u012bnsk",
+ "population": 47290
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 25.2919,
+ "longitude": 60.643,
+ "name": "Ch\u0101h Bah\u0101r",
+ "population": 47287
+ },
{
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2189529,
"latitude": -46.4,
"longitude": 168.35,
"name": "Invercargill",
"population": 47287
},
+ {
+ "country_code": "PL",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 50.47379,
+ "longitude": 17.33437,
+ "name": "Nysa",
+ "population": 47283
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 43.6,
+ "longitude": 2.25,
+ "name": "Castres",
+ "population": 47275
+ },
+ {
+ "country_code": "CA",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.25809,
+ "longitude": -119.26905,
+ "name": "Vernon",
+ "population": 47274
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 56.44469,
+ "longitude": 52.22763,
+ "name": "Mozhga",
+ "population": 47270
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 54.11667,
+ "longitude": -3.23333,
+ "name": "Barrow in Furness",
+ "population": 47264
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 9.0,
+ "longitude": 76.93333,
+ "name": "Punal\u016br",
+ "population": 47263
+ },
{
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 659180,
"latitude": 60.99596,
"longitude": 24.46434,
"name": "H\u00e4meenlinna",
"population": 47261
},
+ {
+ "country_code": "GH",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 5.65003,
+ "longitude": -0.2361,
+ "name": "Dom",
+ "population": 47260
+ },
+ {
+ "country_code": "US",
+ "elevation": 34,
+ "feature_code": "PPL",
+ "latitude": 42.7262,
+ "longitude": -71.19089,
+ "name": "Methuen",
+ "population": 47255
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 46.78333,
+ "longitude": 4.85,
+ "name": "Chalon-sur-Sa\u00f4ne",
+ "population": 47251
+ },
+ {
+ "country_code": "IQ",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 31.52845,
+ "longitude": 45.20377,
+ "name": "Ar Rumaythah",
+ "population": 47248
+ },
+ {
+ "country_code": "GT",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 14.54611,
+ "longitude": -90.41139,
+ "name": "San Jos\u00e9 Pinula",
+ "population": 47247
+ },
{
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 258620,
"latitude": 38.9,
"longitude": 22.43333,
"name": "Lam\u00eda",
"population": 47246
},
+ {
+ "country_code": "KE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 0.04626,
+ "longitude": 37.65587,
+ "name": "Meru",
+ "population": 47226
+ },
+ {
+ "country_code": "TR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 38.08877,
+ "longitude": 27.73508,
+ "name": "Tire",
+ "population": 47220
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 51.68195,
+ "longitude": -4.16191,
+ "name": "Llanelli",
+ "population": 47206
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.06667,
+ "longitude": 135.21667,
+ "name": "Sasayama",
+ "population": 47204
+ },
{
"country_code": "RW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 201463,
"latitude": -1.9487,
"longitude": 30.4347,
"name": "Rwamagana",
"population": 47203
},
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 20.53333,
+ "longitude": -100.45,
+ "name": "El Pueblito",
+ "population": 47201
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.88333,
+ "longitude": 140.5,
+ "name": "Sawara",
+ "population": 47199
+ },
+ {
+ "country_code": "CI",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.74202,
+ "longitude": -7.34918,
+ "name": "Duekou\u00e9",
+ "population": 47198
+ },
+ {
+ "country_code": "FI",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 60.39233,
+ "longitude": 25.66507,
+ "name": "Porvoo",
+ "population": 47192
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 26.9025,
+ "longitude": 83.98194,
+ "name": "Padrauna",
+ "population": 47181
+ },
+ {
+ "country_code": "CO",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 3.3223,
+ "longitude": -76.2348,
+ "name": "Florida",
+ "population": 47173
+ },
+ {
+ "country_code": "CU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 22.80444,
+ "longitude": -81.19444,
+ "name": "Jovellanos",
+ "population": 47164
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 54.06667,
+ "longitude": -2.83333,
+ "name": "Lancaster",
+ "population": 47162
+ },
+ {
+ "country_code": "GH",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.55121,
+ "longitude": -0.7662,
+ "name": "Nkawkaw",
+ "population": 47162
+ },
+ {
+ "country_code": "US",
+ "elevation": 211,
+ "feature_code": "PPL",
+ "latitude": 41.66616,
+ "longitude": -81.33955,
+ "name": "Mentor",
+ "population": 47159
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 15.0955,
+ "longitude": 120.767,
+ "name": "Santa Ana",
+ "population": 47158
+ },
+ {
+ "country_code": "GE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 42.14616,
+ "longitude": 41.67197,
+ "name": "P\u2019ot\u2019i",
+ "population": 47149
+ },
+ {
+ "country_code": "PK",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 29.51654,
+ "longitude": 70.85032,
+ "name": "Jatoi Shim\u0101li",
+ "population": 47144
+ },
+ {
+ "country_code": "AR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -38.37394,
+ "longitude": -60.27978,
+ "name": "Tres Arroyos",
+ "population": 47136
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 21.28333,
+ "longitude": -89.66667,
+ "name": "Progreso",
+ "population": 47124
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 23.78333,
+ "longitude": 85.81667,
+ "name": "Gumia",
+ "population": 47121
+ },
+ {
+ "country_code": "JM",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 18.04168,
+ "longitude": -77.50714,
+ "name": "Mandeville",
+ "population": 47115
+ },
+ {
+ "country_code": "ID",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": -1.3959,
+ "longitude": 120.7524,
+ "name": "Poso",
+ "population": 47110
+ },
+ {
+ "country_code": "US",
+ "elevation": 1,
+ "feature_code": "PPL",
+ "latitude": 25.94815,
+ "longitude": -80.317,
+ "name": "Country Club",
+ "population": 47105
+ },
+ {
+ "country_code": "TN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 36.83408,
+ "longitude": 10.04057,
+ "name": "Oued Lill",
+ "population": 47101
+ },
{
"country_code": "GN",
"elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2419472,
+ "feature_code": "PPLA2",
"latitude": 9.1848,
"longitude": -10.09987,
"name": "Kissidougou",
@@ -85173,17 +80670,195 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 56335,
"latitude": 2.78087,
"longitude": 45.50048,
"name": "Jawhar",
"population": 47086
},
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 40.75281,
+ "longitude": 14.53384,
+ "name": "Scafati",
+ "population": 47082
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 15.81667,
+ "longitude": 74.86667,
+ "name": "Bail Hongal",
+ "population": 47063
+ },
+ {
+ "country_code": "IN",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 23.4,
+ "longitude": 76.71667,
+ "name": "Shuj\u0101lpur",
+ "population": 47058
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 50.29301,
+ "longitude": 2.78186,
+ "name": "Arras",
+ "population": 47052
+ },
+ {
+ "country_code": "TR",
+ "elevation": 0,
+ "feature_code": "PPLA2",
+ "latitude": 39.09514,
+ "longitude": 33.07989,
+ "name": "Kulu",
+ "population": 47037
+ },
+ {
+ "country_code": "US",
+ "elevation": 19,
+ "feature_code": "PPL",
+ "latitude": 41.81371,
+ "longitude": -71.37005,
+ "name": "East Providence",
+ "population": 47037
+ },
+ {
+ "country_code": "ET",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.41667,
+ "longitude": 38.31667,
+ "name": "D\u012bla",
+ "population": 47021
+ },
+ {
+ "country_code": "FR",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 50.71667,
+ "longitude": 1.61667,
+ "name": "Boulogne-sur-Mer",
+ "population": 47013
+ },
+ {
+ "country_code": "GR",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 38.06667,
+ "longitude": 23.76667,
+ "name": "Ir\u00e1kleio",
+ "population": 47006
+ },
+ {
+ "country_code": "DE",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 47.61497,
+ "longitude": 7.66457,
+ "name": "L\u00f6rrach",
+ "population": 47002
+ },
+ {
+ "country_code": "GB",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 52.52956,
+ "longitude": -2.06773,
+ "name": "Tipton",
+ "population": 47000
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 56.9083,
+ "longitude": 60.8019,
+ "name": "Ber\u00ebzovskiy",
+ "population": 47000
+ },
+ {
+ "country_code": "NG",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 6.88653,
+ "longitude": 3.0205,
+ "name": "Ilaro",
+ "population": 46999
+ },
+ {
+ "country_code": "JP",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 35.95633,
+ "longitude": 140.32356,
+ "name": "Inashiki",
+ "population": 46994
+ },
+ {
+ "country_code": "RU",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 50.22611,
+ "longitude": 136.89944,
+ "name": "Amursk",
+ "population": 46993
+ },
+ {
+ "country_code": "PH",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 14.62056,
+ "longitude": 120.58167,
+ "name": "Orion",
+ "population": 46991
+ },
+ {
+ "country_code": "MX",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 17.95,
+ "longitude": -94.91667,
+ "name": "Acayucan",
+ "population": 46990
+ },
+ {
+ "country_code": "BR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": -21.59556,
+ "longitude": -46.88861,
+ "name": "S\u00e3o Jos\u00e9 do Rio Pardo",
+ "population": 46989
+ },
+ {
+ "country_code": "IR",
+ "elevation": 0,
+ "feature_code": "PPL",
+ "latitude": 30.75972,
+ "longitude": 49.705,
+ "name": "Om\u012bd\u012byeh",
+ "population": 46983
+ },
+ {
+ "country_code": "IT",
+ "elevation": 0,
+ "feature_code": "PPLA3",
+ "latitude": 45.14025,
+ "longitude": 7.76802,
+ "name": "Settimo Torinese",
+ "population": 46982
+ },
{
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3186084,
"latitude": 40.70583,
"longitude": 19.95222,
"name": "Berat",
@@ -85193,7 +80868,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606030,
"latitude": 14.88181,
"longitude": 103.49364,
"name": "Surin",
@@ -85203,7 +80877,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1149698,
"latitude": 13.11189,
"longitude": 99.94467,
"name": "Phetchaburi",
@@ -85213,27 +80886,15 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 646005,
"latitude": 61.68857,
"longitude": 27.27227,
"name": "Mikkeli",
"population": 46550
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2418362,
- "latitude": 11.31823,
- "longitude": -12.28332,
- "name": "Lab\u00e9",
- "population": 46510
- },
{
"country_code": "NL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2750896,
"latitude": 51.5,
"longitude": 3.61389,
"name": "Middelburg",
@@ -85243,7 +80904,6 @@
"country_code": "US",
"elevation": 29,
"feature_code": "PPLA",
- "geonameid": 5805687,
"latitude": 47.03787,
"longitude": -122.9007,
"name": "Olympia",
@@ -85253,7 +80913,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2473572,
"latitude": 35.50472,
"longitude": 11.06222,
"name": "Mahdia",
@@ -85263,7 +80922,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2277060,
"latitude": 6.99556,
"longitude": -9.47222,
"name": "Gbarnga",
@@ -85273,7 +80931,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3595237,
"latitude": 14.63333,
"longitude": -89.98333,
"name": "Jalapa",
@@ -85283,7 +80940,6 @@
"country_code": "CL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3894426,
"latitude": -45.57524,
"longitude": -72.06619,
"name": "Coihaique",
@@ -85293,7 +80949,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 735640,
"latitude": 41.12278,
"longitude": 25.39639,
"name": "Komotin\u00ed",
@@ -85303,7 +80958,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 604490,
"latitude": 65.58415,
"longitude": 22.15465,
"name": "Lule\u00e5",
@@ -85313,7 +80967,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785380,
"latitude": 41.4375,
"longitude": 22.64333,
"name": "Strumica",
@@ -85323,7 +80976,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3623076,
"latitude": 10.63504,
"longitude": -85.43772,
"name": "Liberia",
@@ -85333,7 +80985,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3588698,
"latitude": 14.76667,
"longitude": -91.18333,
"name": "Solol\u00e1",
@@ -85343,7 +80994,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3701117,
"latitude": 8.1,
"longitude": -80.98333,
"name": "Santiago de Veraguas",
@@ -85353,7 +81003,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2361477,
"latitude": 12.46667,
"longitude": -3.46667,
"name": "D\u00e9dougou",
@@ -85363,27 +81012,15 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2267095,
"latitude": 39.74362,
"longitude": -8.80705,
"name": "Leiria",
"population": 45112
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233275,
- "latitude": 0.60917,
- "longitude": 33.46861,
- "name": "Iganga",
- "population": 45024
- },
{
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2208425,
"latitude": 32.9312,
"longitude": 12.08199,
"name": "Zuw\u0101rah",
@@ -85393,7 +81030,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1269655,
"latitude": 27.1,
"longitude": 93.61667,
"name": "It\u0101nagar",
@@ -85403,7 +81039,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3489523,
"latitude": 17.96454,
"longitude": -77.24515,
"name": "May Pen",
@@ -85413,7 +81048,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606239,
"latitude": 15.11481,
"longitude": 104.32938,
"name": "Si Sa Ket",
@@ -85423,7 +81057,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933685,
"latitude": -24.96675,
"longitude": 25.33274,
"name": "Kanye",
@@ -85433,7 +81066,6 @@
"country_code": "SD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 366847,
"latitude": 13.15,
"longitude": 33.93333,
"name": "Sinja",
@@ -85443,7 +81075,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1142170,
"latitude": 37.11664,
"longitude": 70.58002,
"name": "Fayzabad",
@@ -85453,27 +81084,15 @@
"country_code": "AE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 290594,
"latitude": 25.56473,
"longitude": 55.55517,
"name": "Umm al Qaywayn",
"population": 44411
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2420884,
- "latitude": 10.45,
- "longitude": -13.53333,
- "name": "Fria",
- "population": 44369
- },
{
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3694564,
"latitude": -6.05,
"longitude": -76.96667,
"name": "Moyobamba",
@@ -85483,7 +81102,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 589580,
"latitude": 58.38588,
"longitude": 24.49711,
"name": "P\u00e4rnu",
@@ -85493,7 +81111,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3592609,
"latitude": 14.53333,
"longitude": -91.5,
"name": "Mazatenango",
@@ -85503,7 +81120,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3712384,
"latitude": 7.96667,
"longitude": -80.43333,
"name": "Chitr\u00e9",
@@ -85513,7 +81129,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1134720,
"latitude": 31.59382,
"longitude": 64.37161,
"name": "Lashkar G\u0101h",
@@ -85523,7 +81138,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2214603,
"latitude": 25.91552,
"longitude": 13.91839,
"name": "Murzuq",
@@ -85533,27 +81147,15 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607978,
"latitude": 6.86814,
"longitude": 101.25009,
"name": "Pattani",
"population": 43690
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2415703,
- "latitude": 11.42282,
- "longitude": -9.16852,
- "name": "Siguiri",
- "population": 43601
- },
{
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1591449,
"latitude": 21.18333,
"longitude": 106.05,
"name": "B\u1eafc Ninh",
@@ -85563,7 +81165,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1142264,
"latitude": 32.37451,
"longitude": 62.11638,
"name": "Far\u0101h",
@@ -85573,7 +81174,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 75337,
"latitude": 15.69425,
"longitude": 43.60582,
"name": "\u1e28ajjah",
@@ -85583,57 +81183,24 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607779,
"latitude": 7.61786,
"longitude": 100.07792,
"name": "Phatthalung",
"population": 43522
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233070,
- "latitude": -1.24857,
- "longitude": 29.98993,
- "name": "Kabale",
- "population": 43500
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234077,
- "latitude": 0.45444,
- "longitude": 34.07583,
- "name": "Busia",
- "population": 43200
- },
{
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1152468,
"latitude": 18.58054,
"longitude": 99.00745,
"name": "Lamphun",
"population": 43196
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2417988,
- "latitude": 8.54351,
- "longitude": -9.47099,
- "name": "Macenta",
- "population": 43102
- },
{
"country_code": "US",
"elevation": 192,
"feature_code": "PPLA",
- "geonameid": 4392388,
"latitude": 38.5767,
"longitude": -92.17352,
"name": "Jefferson City",
@@ -85643,7 +81210,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2219235,
"latitude": 26.59206,
"longitude": 12.78049,
"name": "Awb\u0101r\u012b",
@@ -85653,7 +81219,6 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2400555,
"latitude": -1.63333,
"longitude": 13.58357,
"name": "Franceville",
@@ -85663,7 +81228,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2685750,
"latitude": 63.1792,
"longitude": 14.63566,
"name": "\u00d6stersund",
@@ -85673,7 +81237,6 @@
"country_code": "KM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 921772,
"latitude": -11.70216,
"longitude": 43.25506,
"name": "Moroni",
@@ -85683,27 +81246,15 @@
"country_code": "US",
"elevation": 83,
"feature_code": "PPLA",
- "geonameid": 5084868,
"latitude": 43.20814,
"longitude": -71.53757,
"name": "Concord",
"population": 42695
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233476,
- "latitude": 0.66174,
- "longitude": 30.2748,
- "name": "Fort Portal",
- "population": 42670
- },
{
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 454310,
"latitude": 57.38944,
"longitude": 21.56056,
"name": "Ventspils",
@@ -85713,7 +81264,6 @@
"country_code": "CY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 146617,
"latitude": 35.125,
"longitude": 33.95,
"name": "Famagusta",
@@ -85723,9 +81273,8 @@
"country_code": "IQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 90150,
- "latitude": 34.60712,
- "longitude": 43.67822,
+ "latitude": 34.61581,
+ "longitude": 43.67861,
"name": "Tikr\u012bt",
"population": 42477
},
@@ -85733,7 +81282,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 5920288,
"latitude": 46.23525,
"longitude": -63.12671,
"name": "Charlottetown",
@@ -85743,7 +81291,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 337405,
"latitude": 8.25,
"longitude": 34.58333,
"name": "Gamb\u0113la",
@@ -85753,7 +81300,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3441684,
"latitude": -33.2524,
"longitude": -58.03047,
"name": "Mercedes",
@@ -85763,7 +81309,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 907770,
"latitude": -11.19976,
"longitude": 28.89431,
"name": "Mansa",
@@ -85773,7 +81318,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 729559,
"latitude": 43.13333,
"longitude": 24.71667,
"name": "Lovech",
@@ -85783,27 +81327,15 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2465840,
"latitude": 35.03823,
"longitude": 9.48494,
"name": "Sidi Bouzid",
"population": 42098
},
- {
- "country_code": "RO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 6942372,
- "latitude": 46.35795,
- "longitude": 25.80405,
- "name": "Miercurea Ciuc",
- "population": 42030
- },
{
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 878281,
"latitude": -10.0,
"longitude": 39.71667,
"name": "Lindi",
@@ -85813,7 +81345,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3443758,
"latitude": -30.4,
"longitude": -56.46667,
"name": "Artigas",
@@ -85823,7 +81354,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3188383,
"latitude": 46.30444,
"longitude": 16.33778,
"name": "Vara\u017edin",
@@ -85833,7 +81363,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3509207,
"latitude": 19.05272,
"longitude": -70.14939,
"name": "Cotu\u00ed",
@@ -85843,7 +81372,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2417833,
"latitude": 10.37546,
"longitude": -12.09148,
"name": "Mamou",
@@ -85853,7 +81381,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3939470,
"latitude": -12.76667,
"longitude": -74.98333,
"name": "Huancavelica",
@@ -85863,7 +81390,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3598465,
"latitude": 14.8,
"longitude": -89.55,
"name": "Chiquimula",
@@ -85873,7 +81399,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2268339,
"latitude": 37.01937,
"longitude": -7.93223,
"name": "Faro",
@@ -85883,27 +81408,24 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2394545,
"latitude": 6.81667,
"longitude": 1.78333,
"name": "Dogbo",
"population": 41312
},
{
- "country_code": "UG",
+ "country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 229139,
- "latitude": 0.4175,
- "longitude": 32.02278,
- "name": "Mityana",
- "population": 41131
+ "latitude": -25.78056,
+ "longitude": -56.44861,
+ "name": "Villarrica",
+ "population": 41157
},
{
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1586185,
"latitude": 22.66667,
"longitude": 106.25,
"name": "Cao B\u1eb1ng",
@@ -85913,7 +81435,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616629,
"latitude": 40.49748,
"longitude": 44.7662,
"name": "Hrazdan",
@@ -85923,7 +81444,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 145531,
"latitude": -9.66078,
"longitude": 20.39155,
"name": "Saurimo",
@@ -85933,7 +81453,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608597,
"latitude": 16.54531,
"longitude": 104.72351,
"name": "Mukdahan",
@@ -85943,27 +81462,15 @@
"country_code": "WS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4035413,
"latitude": -13.83333,
"longitude": -171.76666,
"name": "Apia",
"population": 40407
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226110,
- "latitude": 0.69299,
- "longitude": 34.18085,
- "name": "Tororo",
- "population": 40400
- },
{
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 363656,
"latitude": 4.57213,
"longitude": 28.39549,
"name": "Yambio",
@@ -85973,7 +81480,6 @@
"country_code": "KI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2110257,
"latitude": 1.3278,
"longitude": 172.97696,
"name": "Tarawa",
@@ -85983,7 +81489,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 750598,
"latitude": 40.14192,
"longitude": 29.97932,
"name": "Bilecik",
@@ -85993,7 +81498,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1583477,
"latitude": 21.38333,
"longitude": 103.01667,
"name": "Di\u1ec7n Bi\u00ean Ph\u1ee7",
@@ -86003,7 +81507,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1580142,
"latitude": 20.65,
"longitude": 106.06667,
"name": "H\u01b0ng Y\u00ean",
@@ -86013,7 +81516,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2387546,
"latitude": 6.31933,
"longitude": 16.37992,
"name": "Bozoum",
@@ -86023,17 +81525,15 @@
"country_code": "DJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 225284,
"latitude": 11.15583,
"longitude": 42.7125,
- "name": "\u2018Ali Sabieh",
+ "name": "'Ali Sabieh",
"population": 40074
},
{
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789996,
"latitude": 42.78083,
"longitude": 20.4875,
"name": "Istok",
@@ -86043,7 +81543,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1273618,
"latitude": 20.41667,
"longitude": 72.85,
"name": "Dam\u0101n",
@@ -86053,7 +81552,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 727221,
"latitude": 44.11667,
"longitude": 27.26667,
"name": "Silistra",
@@ -86063,27 +81561,15 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3045643,
"latitude": 48.09872,
"longitude": 19.80303,
"name": "Salg\u00f3tarj\u00e1n",
"population": 39640
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233312,
- "latitude": 1.43556,
- "longitude": 31.34361,
- "name": "Hoima",
- "population": 39625
- },
{
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3582805,
"latitude": 13.5,
"longitude": -88.86667,
"name": "Zacatecoluca",
@@ -86093,7 +81579,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 148619,
"latitude": 39.99096,
"longitude": 46.92736,
"name": "A\u011fdam",
@@ -86103,7 +81588,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3599699,
"latitude": 14.56111,
"longitude": -90.73444,
"name": "Antigua Guatemala",
@@ -86113,7 +81597,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607001,
"latitude": 16.0567,
"longitude": 103.65309,
"name": "Roi Et",
@@ -86123,7 +81606,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2359608,
"latitude": 13.09167,
"longitude": -1.08444,
"name": "Kaya",
@@ -86133,7 +81615,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2287958,
"latitude": 6.54368,
"longitude": -7.4935,
"name": "Guiglo",
@@ -86143,7 +81624,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1652203,
"latitude": 20.41972,
"longitude": 104.04389,
"name": "Xam Nua",
@@ -86153,7 +81633,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3134331,
"latitude": 59.26754,
"longitude": 10.40762,
"name": "T\u00f8nsberg",
@@ -86163,17 +81642,15 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 364367,
"latitude": 8.76816,
"longitude": 27.40019,
- "name": "Awel",
+ "name": "Aweil",
"population": 38745
},
{
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607552,
"latitude": 18.14589,
"longitude": 100.14103,
"name": "Phrae",
@@ -86183,7 +81660,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 426700,
"latitude": -3.47639,
"longitude": 30.24861,
"name": "Ruyigi",
@@ -86193,7 +81669,6 @@
"country_code": "US",
"elevation": 12,
"feature_code": "PPLA",
- "geonameid": 4347242,
"latitude": 38.97845,
"longitude": -76.49218,
"name": "Annapolis",
@@ -86203,7 +81678,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 456202,
"latitude": 56.5,
"longitude": 27.31667,
"name": "R\u0113zekne",
@@ -86213,7 +81687,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 727696,
"latitude": 43.53333,
"longitude": 26.51667,
"name": "Razgrad",
@@ -86223,7 +81696,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3625979,
"latitude": 9.37084,
"longitude": -70.43472,
"name": "Trujillo",
@@ -86233,7 +81705,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1493197,
"latitude": 66.53,
"longitude": 66.60194,
"name": "Salekhard",
@@ -86243,7 +81714,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3441665,
"latitude": -34.37589,
"longitude": -55.23771,
"name": "Minas",
@@ -86253,7 +81723,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 79836,
"latitude": 13.98523,
"longitude": 45.57272,
"name": "Al Bay\u1e11\u0101\u2019",
@@ -86263,7 +81732,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2361082,
"latitude": 14.0354,
"longitude": -0.0345,
"name": "Dori",
@@ -86273,7 +81741,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 726174,
"latitude": 43.25917,
"longitude": 26.58917,
"name": "T\u016drgovishte",
@@ -86283,7 +81750,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2354675,
"latitude": 11.78,
"longitude": -0.36972,
"name": "Tenkodogo",
@@ -86293,7 +81759,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3931470,
"latitude": -12.6,
"longitude": -69.18333,
"name": "Puerto Maldonado",
@@ -86303,7 +81768,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 751057,
"latitude": 41.63583,
"longitude": 32.3375,
"name": "Bart\u0131n",
@@ -86313,7 +81777,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 895061,
"latitude": -17.30192,
"longitude": 31.33056,
"name": "Bindura",
@@ -86323,7 +81786,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785387,
"latitude": 41.17806,
"longitude": 20.67611,
"name": "Struga",
@@ -86333,7 +81795,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587057,
"latitude": 40.37444,
"longitude": 47.12667,
"name": "Barda",
@@ -86343,7 +81804,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190941,
"latitude": 43.72722,
"longitude": 15.90583,
"name": "\u0160ibenik",
@@ -86353,7 +81813,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1150533,
"latitude": 17.00778,
"longitude": 99.823,
"name": "Sukhothai",
@@ -86363,7 +81822,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933340,
"latitude": -24.41667,
"longitude": 26.15,
"name": "Mochudi",
@@ -86373,7 +81831,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1571968,
"latitude": 20.25389,
"longitude": 105.975,
"name": "Ninh B\u00ecnh",
@@ -86383,7 +81840,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3590858,
"latitude": 14.53333,
"longitude": -91.68333,
"name": "Retalhuleu",
@@ -86393,7 +81849,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3440639,
"latitude": -34.3375,
"longitude": -56.71361,
"name": "San Jos\u00e9 de Mayo",
@@ -86403,7 +81858,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1576303,
"latitude": 22.48333,
"longitude": 103.95,
"name": "L\u00e0o Cai",
@@ -86413,7 +81867,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 735563,
"latitude": 40.30111,
"longitude": 21.78639,
"name": "Koz\u00e1ni",
@@ -86423,7 +81876,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2715459,
"latitude": 60.60357,
"longitude": 15.62597,
"name": "Falun",
@@ -86433,7 +81885,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1566559,
"latitude": 11.3,
"longitude": 106.1,
"name": "T\u00e2y Ninh",
@@ -86443,7 +81894,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1563287,
"latitude": 21.82333,
"longitude": 105.21806,
"name": "Tuy\u00ean Quang",
@@ -86453,7 +81903,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2429605,
"latitude": 8.91256,
"longitude": 17.55392,
"name": "Koumra",
@@ -86463,7 +81912,6 @@
"country_code": "SY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 173334,
"latitude": 33.12594,
"longitude": 35.82461,
"name": "Al Qunay\u0163irah",
@@ -86473,7 +81921,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3587587,
"latitude": 14.96667,
"longitude": -89.53333,
"name": "Zacapa",
@@ -86483,7 +81930,6 @@
"country_code": "US",
"elevation": 9,
"feature_code": "PPLA",
- "geonameid": 4142290,
"latitude": 39.15817,
"longitude": -75.52437,
"name": "Dover",
@@ -86493,7 +81939,6 @@
"country_code": "CY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 146214,
"latitude": 34.76667,
"longitude": 32.41667,
"name": "Paphos",
@@ -86503,7 +81948,6 @@
"country_code": "VU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2135171,
"latitude": -17.73381,
"longitude": 168.32188,
"name": "Port-Vila",
@@ -86513,7 +81957,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607725,
"latitude": 16.44184,
"longitude": 100.34879,
"name": "Phichit",
@@ -86523,7 +81966,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190813,
"latitude": 45.46611,
"longitude": 16.37833,
"name": "Sisak",
@@ -86533,7 +81975,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3622228,
"latitude": 9.97625,
"longitude": -84.83836,
"name": "Puntarenas",
@@ -86543,7 +81984,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2426240,
"latitude": 9.3642,
"longitude": 14.9046,
"name": "Pala",
@@ -86553,7 +81993,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585152,
"latitude": 40.82972,
"longitude": 46.01889,
"name": "Shamkhor",
@@ -86563,7 +82002,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 586427,
"latitude": 40.65306,
"longitude": 47.74056,
"name": "Geoktschai",
@@ -86573,7 +82011,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1609071,
"latitude": 17.49052,
"longitude": 101.72749,
"name": "Loei",
@@ -86583,9 +82020,8 @@
"country_code": "KG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1527299,
- "latitude": 42.52222,
- "longitude": 72.24194,
+ "latitude": 42.52277,
+ "longitude": 72.24274,
"name": "Talas",
"population": 35172
},
@@ -86593,7 +82029,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3480908,
"latitude": 11.03333,
"longitude": -63.86278,
"name": "La Asunci\u00f3n",
@@ -86603,7 +82038,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606586,
"latitude": 13.41456,
"longitude": 100.00264,
"name": "Samut Songkhram",
@@ -86613,7 +82047,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575051,
"latitude": 10.63333,
"longitude": -61.28333,
"name": "Arima",
@@ -86623,8 +82056,7 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791122,
- "latitude": 42.0625,
+ "latitude": 42.0265,
"longitude": 20.65333,
"name": "Dragash",
"population": 35000
@@ -86633,7 +82065,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587384,
"latitude": 40.05278,
"longitude": 47.46139,
"name": "Agdzhabedy",
@@ -86643,7 +82074,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2464648,
"latitude": 33.91968,
"longitude": 8.13352,
"name": "Tozeur",
@@ -86653,7 +82083,6 @@
"country_code": "KE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 198476,
"latitude": -0.53112,
"longitude": 37.4506,
"name": "Embu",
@@ -86663,7 +82092,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3660434,
"latitude": -2.73333,
"longitude": -78.83333,
"name": "Azogues",
@@ -86673,7 +82101,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 739600,
"latitude": 42.02683,
"longitude": 35.16252,
"name": "Sinop",
@@ -86683,7 +82110,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2610319,
"latitude": 56.45319,
"longitude": 9.40201,
"name": "Viborg",
@@ -86693,7 +82119,6 @@
"country_code": "FI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 638936,
"latitude": 66.5,
"longitude": 25.71667,
"name": "Rovaniemi",
@@ -86703,7 +82128,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1621060,
"latitude": 15.85851,
"longitude": 104.62883,
"name": "Amnat Charoen",
@@ -86713,7 +82137,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2702261,
"latitude": 56.66157,
"longitude": 16.36163,
"name": "Kalmar",
@@ -86723,7 +82146,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608531,
"latitude": 17.41081,
"longitude": 104.77856,
"name": "Nakhon Phanom",
@@ -86733,7 +82155,6 @@
"country_code": "GM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2413876,
"latitude": 13.45274,
"longitude": -16.57803,
"name": "Banjul",
@@ -86743,7 +82164,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606376,
"latitude": 6.62314,
"longitude": 100.06676,
"name": "Satun",
@@ -86753,7 +82173,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618456,
"latitude": 45.9075,
"longitude": 28.19444,
"name": "Cahul",
@@ -86763,7 +82182,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3145375,
"latitude": 59.43403,
"longitude": 10.65771,
"name": "Moss",
@@ -86773,7 +82191,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617180,
"latitude": 47.20417,
"longitude": 27.79583,
"name": "Ungheni",
@@ -86783,7 +82200,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608269,
"latitude": 17.20406,
"longitude": 102.44068,
"name": "Nong Bua Lamphu",
@@ -86793,7 +82209,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2742027,
"latitude": 41.80582,
"longitude": -6.75719,
"name": "Bragan\u00e7a",
@@ -86803,7 +82218,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3595069,
"latitude": 14.28333,
"longitude": -89.9,
"name": "Jutiapa",
@@ -86813,7 +82227,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 161312,
"latitude": -4.21667,
"longitude": 35.75,
"name": "Babati",
@@ -86823,7 +82236,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2206854,
"latitude": -38.65333,
"longitude": 178.00417,
"name": "Gisborne",
@@ -86833,7 +82245,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2383119,
"latitude": 5.71801,
"longitude": 19.07389,
"name": "Sibut",
@@ -86843,7 +82254,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789403,
"latitude": 41.91639,
"longitude": 22.41278,
"name": "Kochani",
@@ -86853,7 +82263,6 @@
"country_code": "HU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3044760,
"latitude": 46.35014,
"longitude": 18.70905,
"name": "Szeksz\u00e1rd",
@@ -86863,7 +82272,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3587426,
"latitude": 13.92139,
"longitude": -89.845,
"name": "Ahuachap\u00e1n",
@@ -86873,7 +82281,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3160881,
"latitude": 67.28,
"longitude": 14.40501,
"name": "Bod\u00f8",
@@ -86883,7 +82290,6 @@
"country_code": "IT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3182997,
"latitude": 45.73736,
"longitude": 7.3166,
"name": "Aosta",
@@ -86893,7 +82299,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2276086,
"latitude": 6.53,
"longitude": -10.35167,
"name": "Kakata",
@@ -86903,7 +82308,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3617448,
"latitude": 13.63208,
"longitude": -86.47516,
"name": "Ocotal",
@@ -86913,7 +82317,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3442727,
"latitude": -33.41306,
"longitude": -56.50056,
"name": "Durazno",
@@ -86923,7 +82326,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2360886,
"latitude": 12.06222,
"longitude": 0.35778,
"name": "Fada N\u2019Gourma",
@@ -86933,7 +82335,6 @@
"country_code": "CH",
"elevation": 403,
"feature_code": "PPLA",
- "geonameid": 2658761,
"latitude": 47.69732,
"longitude": 8.63493,
"name": "Schaffhausen",
@@ -86943,7 +82344,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3496021,
"latitude": 19.3832,
"longitude": -69.8474,
"name": "Nagua",
@@ -86953,7 +82353,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 62691,
"latitude": 10.61616,
"longitude": 47.36795,
"name": "Ceerigaabo",
@@ -86963,7 +82362,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3608503,
"latitude": 14.65,
"longitude": -86.2,
"name": "Juticalpa",
@@ -86973,7 +82371,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2090409,
"latitude": -5.8581,
"longitude": 144.22744,
"name": "Mount Hagen",
@@ -86983,7 +82380,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3354021,
"latitude": -17.78333,
"longitude": 15.68333,
"name": "Oshakati",
@@ -86993,7 +82389,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1151074,
"latitude": 11.82098,
"longitude": 99.7841,
"name": "Prachuap Khiri Khan",
@@ -87003,7 +82398,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2269514,
"latitude": 39.82219,
"longitude": -7.49087,
"name": "Castelo Branco",
@@ -87013,7 +82407,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 547849,
"latitude": 43.20697,
"longitude": 46.8679,
"name": "Kizilyurt",
@@ -87023,7 +82416,6 @@
"country_code": "TG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2367164,
"latitude": 10.86389,
"longitude": 0.205,
"name": "Dapaong",
@@ -87033,7 +82425,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3346015,
"latitude": -11.20605,
"longitude": 13.84371,
"name": "Sumbe",
@@ -87043,7 +82434,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 593672,
"latitude": 55.5,
"longitude": 25.6,
"name": "Utena",
@@ -87053,7 +82443,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831133,
"latitude": 11.45,
"longitude": 104.53333,
"name": "K\u00e2mp\u00f3ng Sp\u0153",
@@ -87063,7 +82452,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 174875,
"latitude": 39.20754,
"longitude": 46.40576,
"name": "Kapan",
@@ -87073,7 +82461,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1830468,
"latitude": 11.6175,
"longitude": 102.98056,
"name": "Kr\u014fng Ka\u00f4h K\u014fng",
@@ -87083,7 +82470,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1568770,
"latitude": 15.11667,
"longitude": 108.8,
"name": "Qu\u1ea3ng Ng\u00e3i",
@@ -87093,7 +82479,6 @@
"country_code": "MC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2993458,
"latitude": 43.73333,
"longitude": 7.41667,
"name": "Monaco",
@@ -87103,7 +82488,6 @@
"country_code": "CH",
"elevation": 610,
"feature_code": "PPLA",
- "geonameid": 2660718,
"latitude": 46.80237,
"longitude": 7.15128,
"name": "Fribourg",
@@ -87113,7 +82497,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1581349,
"latitude": 22.83333,
"longitude": 104.98333,
"name": "H\u00e0 Giang",
@@ -87123,7 +82506,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2276492,
"latitude": 4.375,
"longitude": -7.71694,
"name": "Harper",
@@ -87133,7 +82515,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607280,
"latitude": 14.04992,
"longitude": 101.36864,
"name": "Prachin Buri",
@@ -87143,7 +82524,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 240604,
"latitude": 5.76795,
"longitude": 20.67565,
"name": "Bambari",
@@ -87153,17 +82533,15 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2449067,
"latitude": 16.77348,
"longitude": -3.00742,
- "name": "Tombouctou",
+ "name": "Timbuktu",
"population": 32460
},
{
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2661169,
"latitude": 46.84986,
"longitude": 9.53287,
"name": "Chur",
@@ -87173,7 +82551,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2701713,
"latitude": 56.16156,
"longitude": 15.58661,
"name": "Karlskrona",
@@ -87183,7 +82560,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 746425,
"latitude": 40.46028,
"longitude": 39.48139,
"name": "Gumushkhane",
@@ -87193,7 +82569,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3442585,
"latitude": -34.09556,
"longitude": -56.21417,
"name": "Florida",
@@ -87203,7 +82578,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3347353,
"latitude": -14.6585,
"longitude": 17.69099,
"name": "Menongue",
@@ -87213,7 +82587,6 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 367927,
"latitude": 6.802,
"longitude": 29.69123,
"name": "Rumbek",
@@ -87223,7 +82596,6 @@
"country_code": "BG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 727030,
"latitude": 41.58528,
"longitude": 24.69194,
"name": "Smolyan",
@@ -87233,37 +82605,15 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1570449,
"latitude": 20.54111,
"longitude": 105.91389,
"name": "Ph\u1ee7 L\u00fd",
"population": 31801
},
- {
- "country_code": "RU",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 539817,
- "latitude": 59.01729,
- "longitude": 54.656,
- "name": "Kudymkar",
- "population": 31596
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229362,
- "latitude": 1.67444,
- "longitude": 31.715,
- "name": "Masindi",
- "population": 31486
- },
{
"country_code": "NP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6254843,
"latitude": 28.60194,
"longitude": 81.63389,
"name": "Birendranagar",
@@ -87273,7 +82623,6 @@
"country_code": "US",
"elevation": 17,
"feature_code": "PPLA",
- "geonameid": 5554072,
"latitude": 58.30194,
"longitude": -134.41972,
"name": "Juneau",
@@ -87283,7 +82632,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2659496,
"latitude": 46.99179,
"longitude": 6.931,
"name": "Neuch\u00e2tel",
@@ -87293,7 +82641,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 750938,
"latitude": 40.25889,
"longitude": 40.22778,
"name": "Bayburt",
@@ -87303,7 +82650,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1152633,
"latitude": 8.07257,
"longitude": 98.91052,
"name": "Krabi",
@@ -87313,7 +82659,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789527,
"latitude": 41.51444,
"longitude": 20.96333,
"name": "Ki\u010devo",
@@ -87323,7 +82668,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1582886,
"latitude": 17.48333,
"longitude": 106.6,
"name": "\u00d0\u1ed3ng H\u1edbi",
@@ -87333,7 +82677,6 @@
"country_code": "LB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 277130,
"latitude": 34.00583,
"longitude": 36.21806,
"name": "Baalbek",
@@ -87343,7 +82686,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3162955,
"latitude": 58.46151,
"longitude": 8.77253,
"name": "Arendal",
@@ -87353,27 +82695,15 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2396646,
"latitude": 1.5995,
"longitude": 11.57933,
"name": "Oyem",
"population": 30870
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226823,
- "latitude": 1.145,
- "longitude": 33.70944,
- "name": "Pallisa",
- "population": 30745
- },
{
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1271631,
"latitude": 27.33333,
"longitude": 88.61667,
"name": "Gangtok",
@@ -87383,7 +82713,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784097,
"latitude": 42.82306,
"longitude": 20.9675,
"name": "Vushtrri",
@@ -87393,7 +82722,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 343292,
"latitude": 10.06667,
"longitude": 34.53333,
"name": "\u0100sosa",
@@ -87403,37 +82731,15 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1516048,
"latitude": 48.00556,
"longitude": 91.64194,
"name": "Hovd",
"population": 30500
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 227904,
- "latitude": 2.47826,
- "longitude": 31.08894,
- "name": "Nebbi",
- "population": 30354
- },
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2414926,
- "latitude": 10.9,
- "longitude": -13.03333,
- "name": "T\u00e9lim\u00e9l\u00e9",
- "population": 30311
- },
{
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3617052,
"latitude": 11.43716,
"longitude": -85.82632,
"name": "Rivas",
@@ -87443,7 +82749,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2391895,
"latitude": 7.92807,
"longitude": 1.97558,
"name": "Savalou",
@@ -87453,7 +82758,6 @@
"country_code": "BJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2392009,
"latitude": 6.73618,
"longitude": 2.65866,
"name": "Sak\u00e9t\u00e9",
@@ -87463,7 +82767,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 593926,
"latitude": 55.98139,
"longitude": 22.24722,
"name": "Tel\u0161iai",
@@ -87473,7 +82776,6 @@
"country_code": "TJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1221328,
"latitude": 37.48974,
"longitude": 71.55304,
"name": "Khorugh",
@@ -87483,7 +82785,6 @@
"country_code": "AW",
"elevation": 5,
"feature_code": "PPLC",
- "geonameid": 3577154,
"latitude": 12.52398,
"longitude": -70.02703,
"name": "Oranjestad",
@@ -87493,7 +82794,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3676623,
"latitude": -4.21528,
"longitude": -69.94056,
"name": "Leticia",
@@ -87503,7 +82803,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187047,
"latitude": 45.34333,
"longitude": 18.99972,
"name": "Vukovar",
@@ -87513,7 +82812,6 @@
"country_code": "NI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3618926,
"latitude": 11.84962,
"longitude": -86.19903,
"name": "Jinotepe",
@@ -87523,7 +82821,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3154084,
"latitude": 60.7945,
"longitude": 11.06798,
"name": "Hamar",
@@ -87533,7 +82830,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585156,
"latitude": 40.63141,
"longitude": 48.64137,
"name": "Shamakhi",
@@ -87543,7 +82839,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2263480,
"latitude": 39.23333,
"longitude": -8.68333,
"name": "Santar\u00e9m",
@@ -87553,7 +82848,6 @@
"country_code": "KY",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3580661,
"latitude": 19.28692,
"longitude": -81.36706,
"name": "George Town",
@@ -87563,7 +82857,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 298846,
"latitude": 39.10829,
"longitude": 39.54711,
"name": "Tunceli",
@@ -87573,7 +82866,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 239899,
"latitude": 6.54233,
"longitude": 21.98633,
"name": "Bria",
@@ -87583,27 +82875,15 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 245338,
"latitude": 11.0297,
"longitude": 20.2827,
"name": "Am Timan",
"population": 28885
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235489,
- "latitude": 3.37786,
- "longitude": 31.7909,
- "name": "Adjumani",
- "population": 28700
- },
{
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2387926,
"latitude": 5.93404,
"longitude": 15.59599,
"name": "Bouar",
@@ -87613,7 +82893,6 @@
"country_code": "LK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1237980,
"latitude": 7.4863,
"longitude": 80.3623,
"name": "Kurunegala",
@@ -87623,7 +82902,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606807,
"latitude": 13.81411,
"longitude": 102.07222,
"name": "Sa Kaeo",
@@ -87633,7 +82911,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3201047,
"latitude": 42.64807,
"longitude": 18.09216,
"name": "Dubrovnik",
@@ -87643,27 +82920,15 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1515436,
"latitude": 48.96833,
"longitude": 89.9625,
"name": "\u00d6lgiy",
"population": 28400
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229746,
- "latitude": 0.84917,
- "longitude": 32.47306,
- "name": "Luwero",
- "population": 28338
- },
{
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 256866,
"latitude": 39.11,
"longitude": 26.55472,
"name": "Mytil\u00edni",
@@ -87673,7 +82938,6 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2620320,
"latitude": 55.92667,
"longitude": 12.31091,
"name": "Hiller\u00f8d",
@@ -87683,7 +82947,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932438,
"latitude": -30.15137,
"longitude": 27.47691,
"name": "Mohale\u2019s Hoek",
@@ -87693,7 +82956,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3203982,
"latitude": 45.89861,
"longitude": 16.84889,
"name": "Bjelovar",
@@ -87703,7 +82965,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2242001,
"latitude": -8.57848,
"longitude": 13.66425,
"name": "Caxito",
@@ -87713,7 +82974,6 @@
"country_code": "US",
"elevation": 1237,
"feature_code": "PPLA",
- "geonameid": 5656882,
"latitude": 46.59271,
"longitude": -112.03611,
"name": "Helena",
@@ -87723,7 +82983,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 788654,
"latitude": 42.15639,
"longitude": 21.58528,
"name": "\u041b\u0438\u043f\u043a\u043e\u0432\u043e",
@@ -87733,7 +82992,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1515029,
"latitude": 49.98111,
"longitude": 92.06667,
"name": "Ulaangom",
@@ -87743,7 +83001,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2658576,
"latitude": 46.22908,
"longitude": 7.35942,
"name": "Sion",
@@ -87753,7 +83010,6 @@
"country_code": "JE",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3042091,
"latitude": 49.18804,
"longitude": -2.10491,
"name": "Saint Helier",
@@ -87763,7 +83019,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2445704,
"latitude": 13.31536,
"longitude": 12.61134,
"name": "Diffa",
@@ -87773,7 +83028,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2434910,
"latitude": 10.28056,
"longitude": 15.37222,
"name": "Bongor",
@@ -87783,7 +83037,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2427637,
"latitude": 12.18441,
"longitude": 18.69303,
"name": "Mongo",
@@ -87793,7 +83046,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3601494,
"latitude": 14.76667,
"longitude": -88.78333,
"name": "Santa Rosa de Cop\u00e1n",
@@ -87803,7 +83055,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1581047,
"latitude": 18.33333,
"longitude": 105.9,
"name": "H\u00e0 T\u0129nh",
@@ -87813,7 +83064,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2029945,
"latitude": 49.63417,
"longitude": 100.1625,
"name": "Murun-kuren",
@@ -87823,7 +83073,6 @@
"country_code": "LT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 593959,
"latitude": 55.25222,
"longitude": 22.28972,
"name": "Taurag\u0117",
@@ -87833,7 +83082,6 @@
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2781503,
"latitude": 47.50311,
"longitude": 9.7471,
"name": "Bregenz",
@@ -87843,7 +83091,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2687700,
"latitude": 58.753,
"longitude": 17.00788,
"name": "Nyk\u00f6ping",
@@ -87853,7 +83100,6 @@
"country_code": "CI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2280376,
"latitude": 8.28333,
"longitude": -7.68333,
"name": "Touba",
@@ -87863,7 +83109,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2388036,
"latitude": 6.49263,
"longitude": 17.45518,
"name": "Bossangoa",
@@ -87873,7 +83118,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617367,
"latitude": 48.15583,
"longitude": 28.2975,
"name": "Soroca",
@@ -87883,7 +83127,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2091996,
"latitude": -5.22465,
"longitude": 145.79656,
"name": "Madang",
@@ -87893,7 +83136,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1256259,
"latitude": 20.26667,
"longitude": 73.01667,
"name": "Silvassa",
@@ -87903,7 +83145,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2463679,
"latitude": 39.62,
"longitude": 19.91972,
"name": "K\u00e9rkyra",
@@ -87913,7 +83154,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2465030,
"latitude": 36.08497,
"longitude": 9.37082,
"name": "Siliana",
@@ -87923,7 +83163,6 @@
"country_code": "BS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3572375,
"latitude": 26.53333,
"longitude": -78.7,
"name": "Freeport",
@@ -87933,7 +83172,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2383827,
"latitude": 3.52716,
"longitude": 16.04,
"name": "Nola",
@@ -87943,7 +83181,6 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 377241,
"latitude": 6.20593,
"longitude": 31.55633,
"name": "Bor",
@@ -87953,7 +83190,6 @@
"country_code": "CY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 146412,
"latitude": 35.34167,
"longitude": 33.31667,
"name": "Kyrenia",
@@ -87963,7 +83199,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3624370,
"latitude": 9.86667,
"longitude": -83.91667,
"name": "Cartago",
@@ -87973,7 +83208,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2273312,
"latitude": 8.42194,
"longitude": -9.74778,
"name": "Voinjama",
@@ -87983,7 +83217,6 @@
"country_code": "BO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3919998,
"latitude": -11.02671,
"longitude": -68.76918,
"name": "Cobija",
@@ -87993,7 +83226,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 252601,
"latitude": 37.50889,
"longitude": 22.37944,
"name": "Tr\u00edpoli",
@@ -88003,7 +83235,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6243926,
"latitude": -41.51603,
"longitude": 173.9528,
"name": "Blenheim",
@@ -88013,7 +83244,6 @@
"country_code": "GI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2411585,
"latitude": 36.14474,
"longitude": -5.35257,
"name": "Gibraltar",
@@ -88023,7 +83253,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 148842,
"latitude": -5.05589,
"longitude": 39.72938,
"name": "Wete",
@@ -88033,7 +83262,6 @@
"country_code": "QA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 289915,
"latitude": 25.17151,
"longitude": 51.60337,
"name": "Al Wakrah",
@@ -88043,7 +83271,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3189075,
"latitude": 46.35917,
"longitude": 15.11028,
"name": "Velenje",
@@ -88053,7 +83280,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2732265,
"latitude": 40.66101,
"longitude": -7.90971,
"name": "Viseu",
@@ -88063,7 +83289,6 @@
"country_code": "PF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4033936,
"latitude": -17.53333,
"longitude": -149.56667,
"name": "Papeete",
@@ -88073,7 +83298,6 @@
"country_code": "AR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3839307,
"latitude": -43.30016,
"longitude": -65.10228,
"name": "Rawson",
@@ -88083,7 +83307,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2093685,
"latitude": -4.35202,
"longitude": 152.26327,
"name": "Kokopo",
@@ -88093,7 +83316,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2214433,
"latitude": 31.86848,
"longitude": 10.9812,
"name": "N\u0101l\u016bt",
@@ -88103,7 +83325,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2090990,
"latitude": -6.17608,
"longitude": 143.65134,
"name": "Mendi",
@@ -88113,7 +83334,6 @@
"country_code": "IM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3042237,
"latitude": 54.15,
"longitude": -4.48333,
"name": "Douglas",
@@ -88123,7 +83343,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655199,
"latitude": 17.41027,
"longitude": 104.83068,
"name": "Thakh\u00e8k",
@@ -88133,7 +83352,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616631,
"latitude": 40.15446,
"longitude": 44.03815,
"name": "Armavir",
@@ -88143,7 +83361,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2278158,
"latitude": 5.88083,
"longitude": -10.04667,
"name": "Buchanan",
@@ -88153,7 +83370,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2272491,
"latitude": 6.06667,
"longitude": -8.12806,
"name": "Zwedru",
@@ -88163,7 +83379,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3439781,
"latitude": -33.23333,
"longitude": -54.38333,
"name": "Treinta y Tres",
@@ -88173,7 +83388,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3197728,
"latitude": 46.16278,
"longitude": 16.8275,
"name": "Koprivnica",
@@ -88183,27 +83397,15 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932218,
"latitude": -30.11537,
"longitude": 28.68936,
"name": "Qacha\u2019s Nek",
"population": 25573
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2414545,
- "latitude": 11.45,
- "longitude": -11.68333,
- "name": "Tougu\u00e9",
- "population": 25531
- },
{
"country_code": "US",
"elevation": 155,
"feature_code": "PPLA",
- "geonameid": 4292188,
"latitude": 38.20091,
"longitude": -84.87328,
"name": "Frankfort",
@@ -88213,7 +83415,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3440777,
"latitude": -34.48333,
"longitude": -54.33333,
"name": "Rocha",
@@ -88223,7 +83424,6 @@
"country_code": "JO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 250198,
"latitude": 30.83752,
"longitude": 35.60442,
"name": "A\u0163 \u0162af\u012blah",
@@ -88233,7 +83433,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 783926,
"latitude": 41.98028,
"longitude": 21.06417,
"name": "\u0416\u0435\u043b\u0438\u043d\u043e",
@@ -88243,7 +83442,6 @@
"country_code": "MH",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2113779,
"latitude": 7.08971,
"longitude": 171.38027,
"name": "Majuro",
@@ -88253,7 +83451,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786093,
"latitude": 42.0,
"longitude": 21.32778,
"name": "\u0421\u0430\u0440\u0430\u0458",
@@ -88263,7 +83460,6 @@
"country_code": "VE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3637721,
"latitude": 10.59901,
"longitude": -66.9346,
"name": "La Guaira",
@@ -88273,7 +83469,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2577162,
"latitude": 10.29917,
"longitude": -3.25083,
"name": "Gaoua",
@@ -88283,7 +83478,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3589805,
"latitude": 14.96667,
"longitude": -91.8,
"name": "San Marcos",
@@ -88293,7 +83487,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 877178,
"latitude": -17.5,
"longitude": 24.26667,
"name": "Katima Mulilo",
@@ -88303,7 +83496,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1822029,
"latitude": 13.52586,
"longitude": 105.9683,
"name": "St\u0153\u0306ng Tr\u00eang",
@@ -88313,7 +83505,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655078,
"latitude": 20.7,
"longitude": 101.98333,
"name": "Muang Xai",
@@ -88323,7 +83514,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786565,
"latitude": 41.63833,
"longitude": 22.46472,
"name": "\u0420\u0430\u0434\u043e\u0432\u0438\u0448",
@@ -88333,7 +83523,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2469274,
"latitude": 36.80803,
"longitude": 10.0972,
"name": "Manouba",
@@ -88343,7 +83532,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617638,
"latitude": 47.38306,
"longitude": 28.82306,
"name": "Orhei",
@@ -88353,7 +83541,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3652584,
"latitude": -1.46667,
"longitude": -77.98333,
"name": "Puyo",
@@ -88363,7 +83550,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2309332,
"latitude": 2.15106,
"longitude": 11.33528,
"name": "Ebebiy\u00edn",
@@ -88373,9 +83559,8 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608452,
- "latitude": 18.79292,
- "longitude": 100.72972,
+ "latitude": 18.78378,
+ "longitude": 100.77899,
"name": "Nan",
"population": 24670
},
@@ -88383,7 +83568,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1150965,
"latitude": 9.96583,
"longitude": 98.63476,
"name": "Ranong",
@@ -88393,7 +83577,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1607983,
"latitude": 14.01346,
"longitude": 100.53049,
"name": "Pathum Thani",
@@ -88403,7 +83586,6 @@
"country_code": "VC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3577887,
"latitude": 13.15872,
"longitude": -61.22475,
"name": "Kingstown",
@@ -88413,7 +83595,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1830098,
"latitude": 13.81667,
"longitude": 104.96667,
"name": "Phnum Tb\u00eang M\u00e9anchey",
@@ -88423,7 +83604,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 240498,
"latitude": 4.74132,
"longitude": 22.81838,
"name": "Bangassou",
@@ -88433,7 +83613,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2217351,
"latitude": 24.96472,
"longitude": 10.17278,
"name": "Gh\u0101t",
@@ -88443,7 +83622,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2433437,
"latitude": 8.65,
"longitude": 16.85,
"name": "Doba",
@@ -88453,27 +83631,15 @@
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2318123,
"latitude": 4.92472,
"longitude": 6.26417,
"name": "Yenagoa",
"population": 24335
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 225835,
- "latitude": 3.46506,
- "longitude": 31.24689,
- "name": "Yumbe",
- "population": 24300
- },
{
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 751817,
"latitude": 41.18222,
"longitude": 41.81944,
"name": "Artvin",
@@ -88483,7 +83649,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2029156,
"latitude": 50.23139,
"longitude": 106.20778,
"name": "S\u00fchbaatar",
@@ -88493,7 +83658,6 @@
"country_code": "AG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3576022,
"latitude": 17.11667,
"longitude": -61.85,
"name": "Saint John\u2019s",
@@ -88503,7 +83667,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2239520,
"latitude": -6.26703,
"longitude": 14.2401,
"name": "Mbanza Congo",
@@ -88513,7 +83676,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3655185,
"latitude": 0.08472,
"longitude": -76.88278,
"name": "Nueva Loja",
@@ -88523,7 +83685,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1150490,
"latitude": 16.86968,
"longitude": 99.12898,
"name": "Tak",
@@ -88533,7 +83694,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932183,
"latitude": -30.40001,
"longitude": 27.70027,
"name": "Quthing",
@@ -88543,7 +83703,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2436400,
"latitude": 13.2154,
"longitude": 18.3353,
"name": "Ati",
@@ -88553,7 +83712,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1582436,
"latitude": 11.53333,
"longitude": 106.91667,
"name": "D\u1ed3ng Xo\u00e0i",
@@ -88563,7 +83721,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2255542,
"latitude": -0.48193,
"longitude": 15.89988,
"name": "Owando",
@@ -88573,7 +83730,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2454530,
"latitude": 12.86273,
"longitude": -7.55985,
"name": "Koulikoro",
@@ -88583,7 +83739,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2255564,
"latitude": 1.61361,
"longitude": 16.05167,
"name": "Ou\u00e9sso",
@@ -88593,7 +83748,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3654541,
"latitude": -2.31667,
"longitude": -78.11667,
"name": "Macas",
@@ -88603,7 +83757,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 158027,
"latitude": -6.76667,
"longitude": 38.91667,
"name": "Kibaha",
@@ -88613,7 +83766,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3589404,
"latitude": 15.03056,
"longitude": -91.14889,
"name": "Santa Cruz del Quich\u00e9",
@@ -88623,7 +83775,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587378,
"latitude": 40.65,
"longitude": 47.47611,
"name": "A\u011fda\u015f",
@@ -88633,7 +83784,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 783148,
"latitude": 40.07583,
"longitude": 20.13889,
"name": "Gjirokast\u00ebr",
@@ -88643,7 +83793,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2657908,
"latitude": 47.17242,
"longitude": 8.51744,
"name": "Zug",
@@ -88653,7 +83802,6 @@
"country_code": "YE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 73560,
"latitude": 13.05667,
"longitude": 44.88194,
"name": "La\u1e29ij",
@@ -88663,7 +83811,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3442568,
"latitude": -33.1325,
"longitude": -58.29556,
"name": "Fray Bentos",
@@ -88673,7 +83820,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3197753,
"latitude": 45.54694,
"longitude": 13.72944,
"name": "Koper",
@@ -88683,7 +83829,6 @@
"country_code": "CA",
"elevation": 707,
"feature_code": "PPLA",
- "geonameid": 6180550,
"latitude": 60.71611,
"longitude": -135.05375,
"name": "Whitehorse",
@@ -88693,7 +83838,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1822207,
"latitude": 13.58588,
"longitude": 102.97369,
"name": "Sis\u014fph\u014fn",
@@ -88703,7 +83847,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 426272,
"latitude": -3.4264,
"longitude": 29.9308,
"name": "Gitega",
@@ -88713,7 +83856,6 @@
"country_code": "ER",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 330546,
"latitude": 15.60972,
"longitude": 39.45,
"name": "Massawa",
@@ -88723,7 +83865,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785113,
"latitude": 42.07444,
"longitude": 21.0525,
"name": "\u0422\u0435\u0430\u0440\u0446\u0435",
@@ -88733,7 +83874,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618405,
"latitude": 46.30028,
"longitude": 28.65722,
"name": "Comrat",
@@ -88743,7 +83883,6 @@
"country_code": "SC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 241131,
"latitude": -4.61667,
"longitude": 55.45,
"name": "Victoria",
@@ -88753,7 +83892,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617076,
"latitude": 48.16806,
"longitude": 27.305,
"name": "Edine\u0163",
@@ -88763,7 +83901,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2257990,
"latitude": -4.15361,
"longitude": 13.55,
"name": "Madingou",
@@ -88773,7 +83910,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831112,
"latitude": 10.61667,
"longitude": 104.18333,
"name": "K\u00e2mp\u00f4t",
@@ -88783,27 +83919,15 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2375254,
"latitude": 12.16667,
"longitude": -14.66667,
"name": "Bafat\u00e1",
"population": 22521
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234565,
- "latitude": 0.57139,
- "longitude": 33.74167,
- "name": "Bugiri",
- "population": 22500
- },
{
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2398073,
"latitude": -1.86846,
"longitude": 11.05594,
"name": "Mouila",
@@ -88813,7 +83937,6 @@
"country_code": "TO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4032402,
"latitude": -21.13333,
"longitude": -175.2,
"name": "Nuku\u2018alofa",
@@ -88823,7 +83946,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1605221,
"latitude": 15.37939,
"longitude": 100.0245,
"name": "Uthai Thani",
@@ -88833,7 +83955,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3657571,
"latitude": -1.6,
"longitude": -79.0,
"name": "Guaranda",
@@ -88843,7 +83964,6 @@
"country_code": "DJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 220782,
"latitude": 11.78528,
"longitude": 42.88444,
"name": "Tadjoura",
@@ -88853,7 +83973,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3828545,
"latitude": 2.57286,
"longitude": -72.64591,
"name": "San Jos\u00e9 del Guaviare",
@@ -88863,7 +83982,6 @@
"country_code": "NP",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1283465,
"latitude": 26.98333,
"longitude": 87.33333,
"name": "Dhankut\u0101",
@@ -88873,7 +83991,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787456,
"latitude": 42.39944,
"longitude": 20.65472,
"name": "Orahovac",
@@ -88883,7 +84000,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3674654,
"latitude": 1.14933,
"longitude": -76.64661,
"name": "Mocoa",
@@ -88893,7 +84009,6 @@
"country_code": "CH",
"elevation": 417,
"feature_code": "PPLA",
- "geonameid": 2660727,
"latitude": 47.55816,
"longitude": 8.89854,
"name": "Frauenfeld",
@@ -88903,7 +84018,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2662689,
"latitude": 57.64089,
"longitude": 18.29602,
"name": "Visby",
@@ -88913,7 +84027,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655140,
"latitude": 18.37778,
"longitude": 103.66007,
"name": "Muang Pakxan",
@@ -88923,7 +84036,6 @@
"country_code": "CR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3623486,
"latitude": 10.0,
"longitude": -84.11667,
"name": "Heredia",
@@ -88933,7 +84045,6 @@
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 611694,
"latitude": 41.91978,
"longitude": 45.47315,
"name": "T\u2019elavi",
@@ -88943,29 +84054,17 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3443013,
"latitude": -34.46667,
"longitude": -57.85,
"name": "Colonia del Sacramento",
"population": 21714
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231696,
- "latitude": 0.7025,
- "longitude": 32.88861,
- "name": "Kayunga",
- "population": 21704
- },
{
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3439320,
- "latitude": -25.38333,
- "longitude": -57.15,
+ "latitude": -25.38611,
+ "longitude": -57.14028,
"name": "Caacup\u00e9",
"population": 21696
},
@@ -88973,7 +84072,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618120,
"latitude": 46.64417,
"longitude": 29.41389,
"name": "C\u0103u\u015feni",
@@ -88983,7 +84081,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 160677,
"latitude": -5.24586,
"longitude": 39.76659,
"name": "Chake Chake",
@@ -88993,7 +84090,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616599,
"latitude": 40.35398,
"longitude": 45.12386,
"name": "Gavarr",
@@ -89003,7 +84099,6 @@
"country_code": "JO",
"elevation": 930,
"feature_code": "PPLA",
- "geonameid": 6946409,
"latitude": 31.16368,
"longitude": 35.76204,
"name": "Karak City",
@@ -89013,7 +84108,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1604769,
"latitude": 15.79408,
"longitude": 104.1451,
"name": "Yasothon",
@@ -89023,7 +84117,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1605279,
"latitude": 12.24364,
"longitude": 102.51514,
"name": "Trat",
@@ -89033,7 +84126,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1608539,
"latitude": 14.20463,
"longitude": 101.21295,
"name": "Nakhon Nayok",
@@ -89043,7 +84135,6 @@
"country_code": "ER",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 343386,
"latitude": 13.00917,
"longitude": 42.73944,
"name": "Assab",
@@ -89053,7 +84144,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190589,
"latitude": 45.34028,
"longitude": 17.68528,
"name": "Po\u017eega",
@@ -89063,7 +84153,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3347719,
"latitude": -11.78333,
"longitude": 19.91667,
"name": "Luena",
@@ -89073,7 +84162,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1151426,
"latitude": 19.19203,
"longitude": 99.87883,
"name": "Phayao",
@@ -89083,7 +84171,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 751952,
"latitude": 41.10871,
"longitude": 42.70222,
"name": "Ardahan",
@@ -89093,7 +84180,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 433635,
"latitude": -3.9279,
"longitude": 29.992,
"name": "Rutana",
@@ -89103,7 +84189,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2259655,
"latitude": 1.63806,
"longitude": 18.06667,
"name": "Impfondo",
@@ -89113,7 +84198,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789045,
"latitude": 42.20194,
"longitude": 22.33194,
"name": "\u041a\u0440\u0438\u0432\u0430 \u041f\u0430\u043b\u0430\u043d\u043a\u0430",
@@ -89123,7 +84207,6 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2399888,
"latitude": -0.7001,
"longitude": 10.24055,
"name": "Lambar\u00e9n\u00e9",
@@ -89133,7 +84216,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 790744,
"latitude": 41.13917,
"longitude": 22.5025,
"name": "Gevgelija",
@@ -89143,27 +84225,15 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 174979,
"latitude": 39.96144,
"longitude": 44.54447,
"name": "Artashat",
"population": 20562
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 225964,
- "latitude": 0.40444,
- "longitude": 32.45944,
- "name": "Wakiso",
- "population": 20530
- },
{
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3595725,
"latitude": 16.92258,
"longitude": -89.89941,
"name": "Flores",
@@ -89173,7 +84243,6 @@
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3041563,
"latitude": 42.50779,
"longitude": 1.52109,
"name": "Andorra la Vella",
@@ -89183,7 +84252,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3583158,
"latitude": 13.86667,
"longitude": -88.63333,
"name": "Sensuntepeque",
@@ -89193,7 +84261,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587577,
"latitude": 58.36389,
"longitude": 25.59,
"name": "Viljandi",
@@ -89203,7 +84270,6 @@
"country_code": "PE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3698540,
"latitude": -6.23169,
"longitude": -77.86903,
"name": "Chachapoyas",
@@ -89213,7 +84279,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 145724,
"latitude": -8.41915,
"longitude": 20.74466,
"name": "Lucapa",
@@ -89223,27 +84288,15 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3372783,
"latitude": 37.73333,
"longitude": -25.66667,
"name": "Ponta Delgada",
"population": 20056
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2416443,
- "latitude": 11.08333,
- "longitude": -12.4,
- "name": "Pita",
- "population": 20052
- },
{
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 365742,
"latitude": 4.41333,
"longitude": 32.56778,
"name": "Torit",
@@ -89253,7 +84306,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1606270,
"latitude": 14.88786,
"longitude": 100.40464,
"name": "Sing Buri",
@@ -89263,7 +84315,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3136947,
"latitude": 64.01487,
"longitude": 11.49537,
"name": "Steinkjer",
@@ -89273,7 +84324,6 @@
"country_code": "VI",
"elevation": 6,
"feature_code": "PPLC",
- "geonameid": 4795467,
"latitude": 18.3419,
"longitude": -64.9307,
"name": "Charlotte Amalie",
@@ -89283,7 +84333,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1830564,
"latitude": 12.48811,
"longitude": 106.01879,
"name": "Krati\u00e9",
@@ -89293,7 +84342,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1831125,
"latitude": 12.71112,
"longitude": 104.88873,
"name": "K\u00e2mp\u00f3ng Thum",
@@ -89303,7 +84351,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2032081,
"latitude": 44.88239,
"longitude": 110.11631,
"name": "Saynshand",
@@ -89313,7 +84360,6 @@
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2468018,
"latitude": 33.70439,
"longitude": 8.96903,
"name": "Kebili",
@@ -89323,7 +84369,6 @@
"country_code": "PS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 284899,
"latitude": 31.86667,
"longitude": 35.45,
"name": "Jericho",
@@ -89333,7 +84378,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 423328,
"latitude": -3.94877,
"longitude": 29.62438,
"name": "Bururi",
@@ -89343,7 +84387,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2245704,
"latitude": 12.70806,
"longitude": -15.55694,
"name": "S\u00e9dhiou",
@@ -89353,7 +84396,6 @@
"country_code": "UY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3443413,
"latitude": -34.52278,
"longitude": -56.27778,
"name": "Canelones",
@@ -89363,7 +84405,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 422232,
"latitude": -4.1348,
"longitude": 29.804,
"name": "Makamba",
@@ -89373,7 +84414,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787716,
"latitude": 41.48389,
"longitude": 22.08917,
"name": "Negotino",
@@ -89383,7 +84423,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 430952,
"latitude": -2.9221,
"longitude": 29.6293,
"name": "Kayanza",
@@ -89393,7 +84432,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 237478,
"latitude": 4.31902,
"longitude": 21.17861,
"name": "Mobaye",
@@ -89403,7 +84441,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2429296,
"latitude": 9.3952,
"longitude": 16.2989,
"name": "La\u00ef",
@@ -89413,7 +84450,6 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2396253,
"latitude": -2.85,
"longitude": 11.03333,
"name": "Tchibanga",
@@ -89423,7 +84459,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3587091,
"latitude": 14.03333,
"longitude": -88.93333,
"name": "Chalatenango",
@@ -89433,7 +84468,6 @@
"country_code": "NE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2438678,
"latitude": 14.21167,
"longitude": 1.45306,
"name": "Tillab\u00e9ri",
@@ -89443,7 +84477,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617302,
"latitude": 47.14139,
"longitude": 28.61028,
"name": "Str\u0103\u015feni",
@@ -89453,7 +84486,6 @@
"country_code": "US",
"elevation": 38,
"feature_code": "PPLA",
- "geonameid": 4957003,
"latitude": 44.31062,
"longitude": -69.77949,
"name": "Augusta",
@@ -89463,7 +84495,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3147474,
"latitude": 61.11514,
"longitude": 10.46628,
"name": "Lillehammer",
@@ -89473,7 +84504,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2255285,
"latitude": -3.68192,
"longitude": 13.34985,
"name": "Sibiti",
@@ -89483,7 +84513,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573899,
"latitude": 10.18333,
"longitude": -61.68333,
"name": "Point Fortin",
@@ -89493,7 +84522,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1567681,
"latitude": 21.31667,
"longitude": 103.9,
"name": "S\u01a1n La",
@@ -89503,27 +84531,15 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 788731,
"latitude": 43.10389,
"longitude": 20.80278,
"name": "Leposaviq",
"population": 19000
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 228971,
- "latitude": 0.56055,
- "longitude": 31.39,
- "name": "Mubende",
- "population": 18936
- },
{
"country_code": "QA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 289962,
"latitude": 25.68389,
"longitude": 51.50583,
"name": "Al Khawr",
@@ -89533,7 +84549,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585226,
"latitude": 41.09333,
"longitude": 45.36611,
"name": "Qazax",
@@ -89543,7 +84558,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2216645,
"latitude": 29.12684,
"longitude": 15.94772,
"name": "H\u016bn",
@@ -89553,37 +84567,15 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2093967,
"latitude": -5.55021,
"longitude": 150.14285,
"name": "Kimbe",
"population": 18847
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229059,
- "latitude": 3.66088,
- "longitude": 31.72474,
- "name": "Moyo",
- "population": 18800
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230617,
- "latitude": 2.98056,
- "longitude": 34.13306,
- "name": "Kotido",
- "population": 18800
- },
{
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616877,
"latitude": 40.2991,
"longitude": 44.36204,
"name": "Ashtarak",
@@ -89593,7 +84585,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3184935,
"latitude": 41.78361,
"longitude": 19.64361,
"name": "Lezh\u00eb",
@@ -89603,7 +84594,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3495857,
"latitude": 18.48138,
"longitude": -71.41965,
"name": "Neiba",
@@ -89613,7 +84603,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 147425,
"latitude": 39.37417,
"longitude": 49.24722,
"name": "Neft\u00e7ala",
@@ -89623,27 +84612,15 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2208330,
"latitude": -37.95855,
"longitude": 176.98545,
"name": "Whakatane",
"population": 18602
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230299,
- "latitude": 0.63278,
- "longitude": 30.62139,
- "name": "Kyenjojo",
- "population": 18600
- },
{
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3145580,
"latitude": 62.73752,
"longitude": 7.15912,
"name": "Molde",
@@ -89653,7 +84630,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3723841,
"latitude": 19.15,
"longitude": -72.01667,
"name": "Hinche",
@@ -89663,7 +84639,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2096742,
"latitude": -6.08336,
"longitude": 145.38735,
"name": "Goroka",
@@ -89673,7 +84648,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 454768,
"latitude": 56.96694,
"longitude": 23.15528,
"name": "Tukums",
@@ -89683,7 +84657,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 584596,
"latitude": 41.63361,
"longitude": 46.64333,
"name": "Zaqatala",
@@ -89693,7 +84666,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2083537,
"latitude": -3.55342,
"longitude": 143.62678,
"name": "Wewak",
@@ -89703,7 +84675,6 @@
"country_code": "SR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3383714,
"latitude": 5.7,
"longitude": -55.23333,
"name": "Lelydorp",
@@ -89713,7 +84684,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785345,
"latitude": 41.91583,
"longitude": 21.53056,
"name": "\u0421\u0442\u0443\u0434\u0435\u043d\u0438\u0447\u0430\u043d\u0438",
@@ -89723,7 +84693,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784424,
"latitude": 41.88278,
"longitude": 22.50917,
"name": "Vinica",
@@ -89733,7 +84702,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 584871,
"latitude": 40.345,
"longitude": 46.92889,
"name": "Terter",
@@ -89743,7 +84711,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090225,
"latitude": -12.73361,
"longitude": 45.20417,
"name": "Koungou",
@@ -89753,7 +84720,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791606,
"latitude": 41.525,
"longitude": 20.5275,
"name": "\u0414\u0435\u0431\u0430\u0440",
@@ -89763,7 +84729,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 425551,
"latitude": -3.2682,
"longitude": 29.6079,
"name": "Muramvya",
@@ -89773,7 +84738,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 523392,
"latitude": 67.67126,
"longitude": 53.08697,
"name": "Nar'yan-Mar",
@@ -89783,7 +84747,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2428394,
"latitude": 14.12116,
"longitude": 15.3103,
"name": "Mao",
@@ -89793,7 +84756,6 @@
"country_code": "SN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2250645,
"latitude": 12.5579,
"longitude": -12.1743,
"name": "K\u00e9dougou",
@@ -89803,7 +84765,6 @@
"country_code": "OM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 287614,
"latitude": 26.17993,
"longitude": 56.24774,
"name": "Kha\u015fab",
@@ -89813,7 +84774,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1562548,
"latitude": 21.31,
"longitude": 105.59667,
"name": "V\u0129nh Y\u00ean",
@@ -89823,7 +84783,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1830205,
"latitude": 12.84895,
"longitude": 102.60928,
"name": "Pail\u012dn",
@@ -89833,7 +84792,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 782661,
"latitude": 42.07694,
"longitude": 20.42194,
"name": "Kuk\u00ebs",
@@ -89843,7 +84801,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 584716,
"latitude": 40.58694,
"longitude": 46.31583,
"name": "Xanlar",
@@ -89853,7 +84810,6 @@
"country_code": "ER",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 344901,
"latitude": 14.88722,
"longitude": 38.81528,
"name": "Mendefera",
@@ -89863,7 +84819,6 @@
"country_code": "DJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 221527,
"latitude": 11.96306,
"longitude": 43.29056,
"name": "Obock",
@@ -89873,7 +84828,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573576,
"latitude": 10.63333,
"longitude": -61.38333,
"name": "Tunapuna",
@@ -89883,7 +84837,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934631,
"latitude": -20.18972,
"longitude": 57.71444,
"name": "Centre de Flacq",
@@ -89893,7 +84846,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1591538,
"latitude": 22.13333,
"longitude": 105.83333,
"name": "B\u1eafc K\u1ea1n",
@@ -89903,7 +84855,6 @@
"country_code": "VN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1582926,
"latitude": 16.81625,
"longitude": 107.10031,
"name": "\u00d0\u00f4ng H\u00e0",
@@ -89913,7 +84864,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791559,
"latitude": 41.96722,
"longitude": 22.76944,
"name": "\u0414\u0435\u043b\u0447\u0435\u0432\u043e",
@@ -89923,7 +84873,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2032201,
"latitude": 48.8125,
"longitude": 103.53472,
"name": "Bulgan",
@@ -89933,7 +84882,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1133574,
"latitude": 34.67139,
"longitude": 70.20944,
"name": "Mehtar L\u0101m",
@@ -89943,7 +84891,6 @@
"country_code": "MM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1313479,
"latitude": 19.67417,
"longitude": 97.20944,
"name": "Loikaw",
@@ -89953,7 +84900,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374218,
"latitude": 16.6,
"longitude": -22.9,
"name": "Santa Maria",
@@ -89963,27 +84909,15 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587361,
"latitude": 40.57028,
"longitude": 48.40087,
"name": "Aghsu",
"population": 17209
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232371,
- "latitude": 0.1866,
- "longitude": 30.45393,
- "name": "Kamwenge",
- "population": 17169
- },
{
"country_code": "NG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2344245,
"latitude": 11.7594,
"longitude": 9.33921,
"name": "Dutse",
@@ -89993,7 +84927,6 @@
"country_code": "SE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2707684,
"latitude": 62.63228,
"longitude": 17.93794,
"name": "H\u00e4rn\u00f6sand",
@@ -90003,7 +84936,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2732438,
"latitude": 41.30062,
"longitude": -7.74413,
"name": "Vila Real",
@@ -90013,27 +84945,15 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573703,
"latitude": 11.18333,
"longitude": -60.73333,
"name": "Scarborough",
"population": 17000
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234178,
- "latitude": 0.74139,
- "longitude": 30.04167,
- "name": "Bundibugyo",
- "population": 16919
- },
{
"country_code": "TN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2464041,
"latitude": 36.40291,
"longitude": 10.14292,
"name": "Zaghouan",
@@ -90043,7 +84963,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618329,
"latitude": 47.89333,
"longitude": 28.30139,
"name": "Flore\u015fti",
@@ -90053,7 +84972,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 589165,
"latitude": 59.34639,
"longitude": 26.35583,
"name": "Rakvere",
@@ -90063,7 +84981,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2661567,
"latitude": 46.19278,
"longitude": 9.01703,
"name": "Bellinzona",
@@ -90073,7 +84990,6 @@
"country_code": "DM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3575635,
"latitude": 15.30174,
"longitude": -61.38808,
"name": "Roseau",
@@ -90083,7 +84999,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2633274,
"latitude": 65.68353,
"longitude": -18.0878,
"name": "Akureyri",
@@ -90093,7 +85008,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786341,
"latitude": 41.08889,
"longitude": 21.01222,
"name": "\u0420\u0435\u0441\u0435\u043d",
@@ -90103,7 +85017,6 @@
"country_code": "GG",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3042287,
"latitude": 49.45981,
"longitude": -2.53527,
"name": "Saint Peter Port",
@@ -90113,7 +85026,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3597804,
"latitude": 14.27639,
"longitude": -90.30028,
"name": "Cuilapa",
@@ -90123,7 +85035,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2276600,
"latitude": 5.01111,
"longitude": -9.03889,
"name": "Greenville",
@@ -90133,7 +85044,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 833357,
"latitude": 41.99611,
"longitude": 21.58222,
"name": "\u0418\u043b\u0438\u043d\u0434\u0435\u043d",
@@ -90143,7 +85053,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3493383,
"latitude": 19.47793,
"longitude": -71.34125,
"name": "Sabaneta",
@@ -90153,7 +85062,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932886,
"latitude": -28.76659,
"longitude": 28.24936,
"name": "Butha-Buthe",
@@ -90163,7 +85071,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3357247,
"latitude": -22.45,
"longitude": 18.96667,
"name": "Gobabis",
@@ -90173,7 +85080,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792227,
"latitude": 41.96722,
"longitude": 20.98083,
"name": "Brvenica",
@@ -90183,7 +85089,6 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2399959,
"latitude": -1.13032,
"longitude": 12.47359,
"name": "Koulamoutou",
@@ -90193,8 +85098,7 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789228,
- "latitude": 42.63944,
+ "latitude": 42.66394,
"longitude": 21.09611,
"name": "Kosovo Polje",
"population": 16154
@@ -90203,7 +85107,6 @@
"country_code": "SV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3583747,
"latitude": 13.7,
"longitude": -88.1,
"name": "San Francisco",
@@ -90213,7 +85116,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618370,
"latitude": 48.035,
"longitude": 27.81611,
"name": "Drochia",
@@ -90223,7 +85125,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3188915,
"latitude": 46.155,
"longitude": 15.05333,
"name": "Trbovlje",
@@ -90233,7 +85134,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573732,
"latitude": 10.58333,
"longitude": -61.11667,
"name": "Sangre Grande",
@@ -90243,7 +85143,6 @@
"country_code": "ER",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 342711,
"latitude": 15.11389,
"longitude": 37.59278,
"name": "Barentu",
@@ -90253,7 +85152,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3202888,
"latitude": 46.38444,
"longitude": 16.43389,
"name": "\u010cakovec",
@@ -90263,7 +85161,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6185377,
"latitude": 62.456,
"longitude": -114.35255,
"name": "Yellowknife",
@@ -90273,7 +85170,6 @@
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3040051,
"latitude": 42.50729,
"longitude": 1.53414,
"name": "les Escaldes",
@@ -90283,7 +85179,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2032614,
"latitude": 46.68056,
"longitude": 113.27917,
"name": "Baruun-Urt",
@@ -90293,7 +85188,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 584791,
"latitude": 40.51902,
"longitude": 47.65423,
"name": "Ujar",
@@ -90303,7 +85197,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187694,
"latitude": 45.83194,
"longitude": 17.38389,
"name": "Virovitica",
@@ -90313,7 +85206,6 @@
"country_code": "NA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3356264,
"latitude": -26.58333,
"longitude": 18.13333,
"name": "Keetmanshoop",
@@ -90323,7 +85215,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2264508,
"latitude": 39.29379,
"longitude": -7.43122,
"name": "Portalegre",
@@ -90333,7 +85224,6 @@
"country_code": "PT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2732773,
"latitude": 41.69323,
"longitude": -8.83287,
"name": "Viana do Castelo",
@@ -90343,7 +85233,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2661881,
"latitude": 47.39254,
"longitude": 8.04422,
"name": "Aarau",
@@ -90353,7 +85242,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1611416,
"latitude": 15.18636,
"longitude": 100.12353,
"name": "Chai Nat",
@@ -90363,7 +85251,6 @@
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2422924,
"latitude": 10.94094,
"longitude": -14.29665,
"name": "Bok\u00e9",
@@ -90373,7 +85260,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2660365,
"latitude": 47.38615,
"longitude": 9.27916,
"name": "Herisau",
@@ -90383,7 +85269,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2030065,
"latitude": 45.7625,
"longitude": 106.27083,
"name": "Mandalgov\u012d",
@@ -90393,27 +85278,15 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2428228,
"latitude": 12.996,
"longitude": 15.72927,
"name": "Massakory",
"population": 15406
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 227593,
- "latitude": -0.87944,
- "longitude": 30.26417,
- "name": "Ntungamo",
- "population": 15300
- },
{
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2098329,
"latitude": -9.07628,
"longitude": 143.20919,
"name": "Daru",
@@ -90423,7 +85296,6 @@
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2358100,
"latitude": 11.66361,
"longitude": -1.07306,
"name": "Manga",
@@ -90433,7 +85305,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792501,
"latitude": 41.92361,
"longitude": 20.91361,
"name": "Bogovinje",
@@ -90443,7 +85314,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2032007,
"latitude": 43.57083,
"longitude": 104.425,
"name": "Dalandzadgad",
@@ -90453,7 +85323,6 @@
"country_code": "EG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 359678,
"latitude": 28.23638,
"longitude": 33.6254,
"name": "Tor",
@@ -90463,7 +85332,6 @@
"country_code": "KM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 921889,
"latitude": -12.28,
"longitude": 43.7425,
"name": "Fomboni",
@@ -90473,7 +85341,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 590939,
"latitude": 58.24806,
"longitude": 22.50389,
"name": "Kuressaare",
@@ -90483,7 +85350,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618196,
"latitude": 46.94306,
"longitude": 28.77778,
"name": "Ialoveni",
@@ -90493,7 +85359,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2658564,
"latitude": 47.20791,
"longitude": 7.53714,
"name": "Solothurn",
@@ -90503,7 +85368,6 @@
"country_code": "AL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 782061,
"latitude": 41.685,
"longitude": 20.42889,
"name": "Peshkopi",
@@ -90513,7 +85377,6 @@
"country_code": "GL",
"elevation": 5,
"feature_code": "PPLC",
- "geonameid": 3421319,
"latitude": 64.18347,
"longitude": -51.72157,
"name": "Nuuk",
@@ -90523,7 +85386,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616627,
"latitude": 40.87832,
"longitude": 45.14922,
"name": "Ijevan",
@@ -90533,7 +85395,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2029656,
"latitude": 47.31944,
"longitude": 110.65556,
"name": "Zezen Khana",
@@ -90543,7 +85404,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587450,
"latitude": 57.83389,
"longitude": 27.01944,
"name": "V\u00f5ru",
@@ -90553,37 +85413,15 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617914,
"latitude": 47.64056,
"longitude": 28.14194,
"name": "S\u00eengerei",
"population": 14600
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232287,
- "latitude": -0.9575,
- "longitude": 29.78972,
- "name": "Kanungu",
- "population": 14600
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231550,
- "latitude": 0.91611,
- "longitude": 31.77417,
- "name": "Kiboga",
- "population": 14512
- },
{
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2094342,
"latitude": -2.57444,
"longitude": 150.79669,
"name": "Kavieng",
@@ -90593,7 +85431,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 890516,
"latitude": -20.93333,
"longitude": 29.0,
"name": "Gwanda",
@@ -90603,7 +85440,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2372532,
"latitude": 12.28333,
"longitude": -14.21667,
"name": "Gab\u00fa",
@@ -90613,7 +85449,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3489005,
"latitude": 18.17998,
"longitude": -76.46121,
"name": "Port Antonio",
@@ -90623,7 +85458,6 @@
"country_code": "GM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2413818,
"latitude": 13.30995,
"longitude": -14.21373,
"name": "Basse Santa Su",
@@ -90633,7 +85467,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618344,
"latitude": 47.57361,
"longitude": 27.70917,
"name": "F\u0103le\u015fti",
@@ -90643,27 +85476,15 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617904,
"latitude": 46.47861,
"longitude": 28.25528,
"name": "Leova",
"population": 14301
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2418437,
- "latitude": 10.65,
- "longitude": -9.88333,
- "name": "Kouroussa",
- "population": 14223
- },
{
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 430021,
"latitude": -2.8869,
"longitude": 29.1248,
"name": "Cibitoke",
@@ -90673,7 +85494,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2658665,
"latitude": 47.02786,
"longitude": 8.65611,
"name": "Schwyz",
@@ -90683,7 +85503,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618454,
"latitude": 47.25444,
"longitude": 28.30806,
"name": "C\u0103l\u0103ra\u015fi",
@@ -90693,47 +85512,15 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2183472,
"latitude": -41.33333,
"longitude": 173.18333,
"name": "Richmond",
"population": 14000
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226267,
- "latitude": 1.23132,
- "longitude": 34.24773,
- "name": "Sironko",
- "population": 14000
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226600,
- "latitude": -0.84111,
- "longitude": 29.94194,
- "name": "Rukungiri",
- "population": 14000
- },
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2418596,
- "latitude": 12.48333,
- "longitude": -13.3,
- "name": "Koundara",
- "population": 13990
- },
{
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587876,
"latitude": 57.77781,
"longitude": 26.0473,
"name": "Valga",
@@ -90743,7 +85530,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3604522,
"latitude": 13.53611,
"longitude": -87.4875,
"name": "Nacaome",
@@ -90753,7 +85539,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2258984,
"latitude": -4.36139,
"longitude": 14.76444,
"name": "Kinkala",
@@ -90763,7 +85548,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792656,
"latitude": 41.70306,
"longitude": 22.85778,
"name": "\u0411\u0435\u0440\u043e\u0432\u043e",
@@ -90773,7 +85557,6 @@
"country_code": "FM",
"elevation": 5,
"feature_code": "PPLA",
- "geonameid": 7668886,
"latitude": 7.4564,
"longitude": 151.84346,
"name": "Weno - Chuuk State Legislature",
@@ -90783,7 +85566,6 @@
"country_code": "US",
"elevation": 451,
"feature_code": "PPLA",
- "geonameid": 5767918,
"latitude": 44.36832,
"longitude": -100.35097,
"name": "Pierre",
@@ -90793,7 +85575,6 @@
"country_code": "GA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2399371,
"latitude": 0.57381,
"longitude": 12.86419,
"name": "Makokou",
@@ -90803,7 +85584,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617270,
"latitude": 45.9,
"longitude": 28.66889,
"name": "Taraclia",
@@ -90813,7 +85593,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1653894,
"latitude": 21.68333,
"longitude": 102.10583,
"name": "Ph\u00f4ngsali",
@@ -90823,7 +85602,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655084,
"latitude": 19.25,
"longitude": 101.75,
"name": "Xaignabouli",
@@ -90833,7 +85611,6 @@
"country_code": "GT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3596421,
"latitude": 14.85389,
"longitude": -90.06472,
"name": "Guastatoya",
@@ -90843,7 +85620,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2432678,
"latitude": 17.9257,
"longitude": 19.10428,
"name": "Largeau",
@@ -90853,7 +85629,6 @@
"country_code": "VU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2136150,
"latitude": -15.53333,
"longitude": 167.16667,
"name": "Luganville",
@@ -90863,7 +85638,6 @@
"country_code": "BZ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3582672,
"latitude": 17.25,
"longitude": -88.76667,
"name": "Belmopan",
@@ -90873,7 +85647,6 @@
"country_code": "CK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4035715,
"latitude": -21.20778,
"longitude": -159.775,
"name": "Avarua",
@@ -90883,7 +85656,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785201,
"latitude": 41.86956,
"longitude": 21.95274,
"name": "Sveti Nikole",
@@ -90893,7 +85665,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1130497,
"latitude": 33.99529,
"longitude": 69.02274,
"name": "Pul-e \u2018Alam",
@@ -90903,7 +85674,6 @@
"country_code": "FO",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2611396,
"latitude": 62.00973,
"longitude": -6.77164,
"name": "T\u00f3rshavn",
@@ -90913,27 +85683,15 @@
"country_code": "SR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3383427,
"latitude": 5.95,
"longitude": -56.98333,
"name": "Nieuw Nickerie",
"population": 13143
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2422442,
- "latitude": 10.75,
- "longitude": -11.11667,
- "name": "Dabola",
- "population": 13057
- },
{
"country_code": "KN",
"elevation": -22,
"feature_code": "PPLC",
- "geonameid": 3575551,
"latitude": 17.29484,
"longitude": -62.7261,
"name": "Basseterre",
@@ -90943,7 +85701,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617482,
"latitude": 47.95722,
"longitude": 27.55389,
"name": "R\u00ee\u015fcani",
@@ -90953,7 +85710,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 236950,
"latitude": 5.39978,
"longitude": 26.48688,
"name": "Obo",
@@ -90963,7 +85719,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2659891,
"latitude": 47.48455,
"longitude": 7.73446,
"name": "Liestal",
@@ -90973,27 +85728,15 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 793113,
"latitude": 42.02639,
"longitude": 21.56194,
"name": "\u0410\u0440\u0430\u0447\u0438\u043d\u043e\u0432\u043e",
"population": 12800
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232397,
- "latitude": 0.94722,
- "longitude": 33.11972,
- "name": "Kamuli",
- "population": 12764
- },
{
"country_code": "BF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2353257,
"latitude": 12.58222,
"longitude": -1.29833,
"name": "Ziniar\u00e9",
@@ -91003,7 +85746,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786700,
"latitude": 42.00306,
"longitude": 22.17861,
"name": "Probishtip",
@@ -91013,7 +85755,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2374759,
"latitude": 12.22306,
"longitude": -15.4475,
"name": "Bissor\u00e3",
@@ -91023,7 +85764,6 @@
"country_code": "SO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 58994,
"latitude": 3.32892,
"longitude": 42.22091,
"name": "Garbahaarrey",
@@ -91033,7 +85773,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 584821,
"latitude": 40.99222,
"longitude": 45.62889,
"name": "Tovuz",
@@ -91043,7 +85782,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934072,
"latitude": -20.40028,
"longitude": 57.59667,
"name": "Rose Belle",
@@ -91053,7 +85791,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 457052,
"latitude": 56.78528,
"longitude": 23.93806,
"name": "Olaine",
@@ -91063,7 +85800,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587362,
"latitude": 41.11889,
"longitude": 45.45389,
"name": "Aghstafa",
@@ -91073,7 +85809,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3198647,
"latitude": 46.43056,
"longitude": 14.06694,
"name": "Jesenice",
@@ -91083,7 +85818,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1663526,
"latitude": 20.2775,
"longitude": 100.41278,
"name": "Ban Houayxay",
@@ -91093,7 +85827,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618406,
"latitude": 46.52,
"longitude": 28.78417,
"name": "Cimi\u015flia",
@@ -91103,7 +85836,6 @@
"country_code": "GY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 7303406,
"latitude": 7.26439,
"longitude": -58.50769,
"name": "Anna Regina",
@@ -91113,7 +85845,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792419,
"latitude": 41.44056,
"longitude": 22.72778,
"name": "Bosilovo",
@@ -91123,27 +85854,15 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194648,
"latitude": 46.6625,
"longitude": 16.16639,
"name": "Murska Sobota",
"population": 12412
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230993,
- "latitude": -1.28538,
- "longitude": 29.68497,
- "name": "Kisoro",
- "population": 12400
- },
{
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3703068,
"latitude": 8.51667,
"longitude": -80.36667,
"name": "Penonom\u00e9",
@@ -91153,27 +85872,15 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784700,
"latitude": 41.47611,
"longitude": 22.64167,
"name": "\u0412\u0430\u0441\u0438\u043b\u0435\u0432\u043e",
"population": 12382
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2420985,
- "latitude": 9.43056,
- "longitude": -13.08806,
- "name": "For\u00e9cariah",
- "population": 12358
- },
{
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573965,
"latitude": 10.16667,
"longitude": -61.46667,
"name": "Pe\u00f1al",
@@ -91183,17 +85890,15 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784027,
"latitude": 41.60722,
"longitude": 20.93833,
- "name": "\u0417\u0430\u0458\u0430\u0441",
+ "name": "Zajas",
"population": 12218
},
{
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1130131,
"latitude": 32.10575,
"longitude": 66.90833,
"name": "Qal\u0101t",
@@ -91203,7 +85908,6 @@
"country_code": "AT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2780190,
"latitude": 47.84565,
"longitude": 16.52327,
"name": "Eisenstadt",
@@ -91213,7 +85917,6 @@
"country_code": "DJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 223890,
"latitude": 11.10861,
"longitude": 42.37389,
"name": "Dikhil",
@@ -91223,7 +85926,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585227,
"latitude": 41.4225,
"longitude": 46.92417,
"name": "Qax",
@@ -91233,7 +85935,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2274275,
"latitude": 6.75333,
"longitude": -11.36861,
"name": "Robertsport",
@@ -91243,7 +85944,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585231,
"latitude": 40.98139,
"longitude": 47.84583,
"name": "Qutqashen",
@@ -91253,7 +85953,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787574,
"latitude": 41.41389,
"longitude": 22.88111,
"name": "\u041d\u043e\u0432\u043e \u0421\u0435\u043b\u043e",
@@ -91263,27 +85962,15 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 592225,
"latitude": 58.94306,
"longitude": 23.54139,
"name": "Haapsalu",
"population": 11805
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235130,
- "latitude": 1.97556,
- "longitude": 32.53861,
- "name": "Apac",
- "population": 11776
- },
{
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 237379,
"latitude": 8.41091,
"longitude": 20.64728,
"name": "Nd\u00e9l\u00e9",
@@ -91293,7 +85980,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617753,
"latitude": 47.08139,
"longitude": 28.17833,
"name": "Nisporeni",
@@ -91303,7 +85989,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2434979,
"latitude": 13.45861,
"longitude": 14.71472,
"name": "Bol",
@@ -91313,7 +85998,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934091,
"latitude": -20.10306,
"longitude": 57.68472,
"name": "Rivi\u00e8re du Rempart",
@@ -91323,7 +86007,6 @@
"country_code": "KH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1830467,
"latitude": 10.48333,
"longitude": 104.31667,
"name": "Kr\u014fng K\u00eab",
@@ -91333,7 +86016,6 @@
"country_code": "ML",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2455290,
"latitude": 18.44111,
"longitude": 1.40778,
"name": "Kidal",
@@ -91343,57 +86025,24 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787534,
"latitude": 42.68694,
"longitude": 21.07028,
"name": "Obiliq",
"population": 11612
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 448227,
- "latitude": 3.05,
- "longitude": 33.21667,
- "name": "Pader",
- "population": 11600
- },
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2423126,
- "latitude": 8.68333,
- "longitude": -8.63333,
- "name": "Beyla",
- "population": 11566
- },
{
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791363,
"latitude": 41.42528,
"longitude": 21.45472,
"name": "\u0414\u043e\u043b\u043d\u0435\u043d\u0438",
"population": 11534
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229292,
- "latitude": 0.45972,
- "longitude": 33.48028,
- "name": "Mayuge",
- "population": 11503
- },
{
"country_code": "AS",
"elevation": 2,
"feature_code": "PPLC",
- "geonameid": 5881576,
"latitude": -14.27806,
"longitude": -170.7025,
"name": "Pago Pago",
@@ -91403,7 +86052,6 @@
"country_code": "GP",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3579732,
"latitude": 15.99854,
"longitude": -61.72548,
"name": "Basse-Terre",
@@ -91413,7 +86061,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 591893,
"latitude": 59.35917,
"longitude": 27.42111,
"name": "J\u00f5hvi",
@@ -91423,7 +86070,6 @@
"country_code": "HT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3725170,
"latitude": 19.66778,
"longitude": -71.83972,
"name": "Fort Libert\u00e9",
@@ -91433,27 +86079,15 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2274129,
"latitude": 7.36222,
"longitude": -8.70611,
"name": "Sanniquellie",
"population": 11415
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230584,
- "latitude": 1.46083,
- "longitude": 33.93611,
- "name": "Kumi",
- "population": 11400
- },
{
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 262603,
"latitude": 37.44227,
"longitude": 24.94248,
"name": "Ermo\u00fapolis",
@@ -91463,27 +86097,15 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2661035,
"latitude": 47.36493,
"longitude": 7.34453,
"name": "Del\u00e9mont",
"population": 11315
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232235,
- "latitude": 1.39651,
- "longitude": 34.45093,
- "name": "Kapchorwa",
- "population": 11300
- },
{
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 460312,
"latitude": 56.625,
"longitude": 23.27861,
"name": "Dobele",
@@ -91493,9 +86115,8 @@
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3040686,
- "latitude": 42.53451,
- "longitude": 1.5767,
+ "latitude": 42.53474,
+ "longitude": 1.58014,
"name": "Encamp",
"population": 11223
},
@@ -91503,9 +86124,8 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3439403,
- "latitude": -25.3,
- "longitude": -57.41667,
+ "latitude": -25.3125,
+ "longitude": -57.38472,
"name": "Aregu\u00e1",
"population": 11222
},
@@ -91513,27 +86133,15 @@
"country_code": "GY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3379507,
"latitude": 6.4,
"longitude": -58.61667,
"name": "Bartica",
"population": 11157
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229024,
- "latitude": 0.225,
- "longitude": 32.31361,
- "name": "Mpigi",
- "population": 11082
- },
{
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 244878,
"latitude": 14.53333,
"longitude": 20.91667,
"name": "Biltine",
@@ -91543,7 +86151,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618594,
"latitude": 46.33111,
"longitude": 28.97278,
"name": "Basarabeasca",
@@ -91553,7 +86160,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2374688,
"latitude": 11.58333,
"longitude": -15.46667,
"name": "Bolama",
@@ -91563,7 +86169,6 @@
"country_code": "BZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3582228,
"latitude": 16.96921,
"longitude": -88.23206,
"name": "Dangriga",
@@ -91573,7 +86178,6 @@
"country_code": "IN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1267390,
"latitude": 10.56688,
"longitude": 72.64203,
"name": "Kavaratti",
@@ -91583,7 +86187,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3041732,
"latitude": 60.09726,
"longitude": 19.93481,
"name": "Mariehamn",
@@ -91593,27 +86196,15 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 584586,
"latitude": 40.21833,
"longitude": 47.70833,
"name": "Zardob",
"population": 10612
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2417795,
- "latitude": 10.63333,
- "longitude": -8.68333,
- "name": "Mandiana",
- "population": 10609
- },
{
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 461114,
"latitude": 56.4075,
"longitude": 24.19056,
"name": "Bauska",
@@ -91623,7 +86214,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 457776,
"latitude": 56.55,
"longitude": 27.71667,
"name": "Ludza",
@@ -91633,7 +86223,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2374311,
"latitude": 12.27056,
"longitude": -16.16583,
"name": "Cacheu",
@@ -91643,7 +86232,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 455718,
"latitude": 57.15194,
"longitude": 24.86472,
"name": "Sigulda",
@@ -91653,27 +86241,15 @@
"country_code": "NC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2137690,
"latitude": -20.91687,
"longitude": 167.26461,
"name": "W\u00e9",
"population": 10375
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2421535,
- "latitude": 9.79111,
- "longitude": -13.52333,
- "name": "Dubr\u00e9ka",
- "population": 10363
- },
{
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199017,
"latitude": 45.53694,
"longitude": 13.66194,
"name": "Izola",
@@ -91683,27 +86259,15 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2127202,
"latitude": 64.75,
"longitude": 177.48333,
"name": "Anadyr\u2019",
"population": 10332
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229112,
- "latitude": 2.53453,
- "longitude": 34.66659,
- "name": "Moroto",
- "population": 10300
- },
{
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789091,
"latitude": 42.07917,
"longitude": 22.18139,
"name": "Kratovo",
@@ -91713,7 +86277,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3671519,
"latitude": 6.18903,
"longitude": -67.48588,
"name": "Puerto Carre\u00f1o",
@@ -91723,7 +86286,6 @@
"country_code": "CF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 240210,
"latitude": 10.28488,
"longitude": 22.78818,
"name": "Birao",
@@ -91733,7 +86295,6 @@
"country_code": "AO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3346821,
"latitude": -17.06667,
"longitude": 15.73333,
"name": "Ondjiva",
@@ -91743,7 +86304,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618261,
"latitude": 47.77083,
"longitude": 27.51444,
"name": "Glodeni",
@@ -91753,7 +86313,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655124,
"latitude": 18.49278,
"longitude": 102.41722,
"name": "Muang Ph\u00f4n-H\u00f4ng",
@@ -91763,9 +86322,8 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3437600,
- "latitude": -25.63333,
- "longitude": -57.15,
+ "latitude": -25.62083,
+ "longitude": -57.14722,
"name": "Paraguar\u00ed",
"population": 10079
},
@@ -91773,7 +86331,6 @@
"country_code": "LC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3576812,
"latitude": 13.9957,
"longitude": -61.00614,
"name": "Castries",
@@ -91783,7 +86340,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573882,
"latitude": 10.26667,
"longitude": -61.38333,
"name": "Princes Town",
@@ -91793,27 +86349,15 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933759,
"latitude": -21.56667,
"longitude": 21.78333,
"name": "Ghanzi",
"population": 9934
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2418764,
- "latitude": 11.58333,
- "longitude": -11.9,
- "name": "Koubia",
- "population": 9909
- },
{
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 586765,
"latitude": 40.49472,
"longitude": 46.07722,
"name": "Yukhary-Dashkesan",
@@ -91823,7 +86367,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2373526,
"latitude": 11.28333,
"longitude": -15.25,
"name": "Cati\u00f3",
@@ -91833,7 +86376,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2032050,
"latitude": 46.36111,
"longitude": 108.36111,
"name": "Choyr",
@@ -91843,7 +86385,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090340,
"latitude": -12.85055,
"longitude": 45.10205,
"name": "Sada",
@@ -91853,7 +86394,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617502,
"latitude": 47.74917,
"longitude": 28.96222,
"name": "Rezina",
@@ -91863,7 +86403,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789721,
"latitude": 42.23194,
"longitude": 21.25944,
"name": "Ka\u010danik",
@@ -91873,7 +86412,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 589709,
"latitude": 58.88556,
"longitude": 25.55722,
"name": "Paide",
@@ -91883,7 +86421,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1151464,
"latitude": 8.4509,
"longitude": 98.52985,
"name": "Phangnga",
@@ -91893,7 +86430,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2260401,
"latitude": -2.54472,
"longitude": 14.75333,
"name": "Djambala",
@@ -91903,7 +86439,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785679,
"latitude": 41.95472,
"longitude": 21.4275,
"name": "\u0421\u043e\u043f\u0438\u0448\u0442\u0435",
@@ -91913,7 +86448,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618382,
"latitude": 48.24268,
"longitude": 27.6101,
"name": "Dondu\u015feni",
@@ -91923,7 +86457,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2206895,
"latitude": -42.46667,
"longitude": 171.2,
"name": "Greymouth",
@@ -91933,7 +86466,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2658786,
"latitude": 46.89851,
"longitude": 8.25068,
"name": "Sarnen",
@@ -91943,7 +86475,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2093059,
"latitude": -6.01667,
"longitude": 144.96667,
"name": "Kundiawa",
@@ -91953,17 +86484,24 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3489440,
"latitude": 17.88145,
"longitude": -76.40927,
"name": "Morant Bay",
"population": 9368
},
+ {
+ "country_code": "PY",
+ "elevation": 0,
+ "feature_code": "PPLA",
+ "latitude": -24.09167,
+ "longitude": -57.07639,
+ "name": "San Pedro de Ycuamandiy\u00fa",
+ "population": 9360
+ },
{
"country_code": "GN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2421273,
"latitude": 10.04036,
"longitude": -10.74343,
"name": "Faranah",
@@ -91973,7 +86511,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789227,
"latitude": 42.57806,
"longitude": 21.58028,
"name": "Kamenica",
@@ -91983,7 +86520,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3166645,
"latitude": 43.96897,
"longitude": 12.48167,
"name": "Serravalle",
@@ -91993,7 +86529,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 587070,
"latitude": 41.72583,
"longitude": 46.40833,
"name": "Belokany",
@@ -92003,7 +86538,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786238,
"latitude": 41.61,
"longitude": 20.6,
"name": "\u0420\u043e\u0441\u0442\u0443\u0448\u0430",
@@ -92013,7 +86547,6 @@
"country_code": "TH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1152222,
"latitude": 19.30029,
"longitude": 97.96852,
"name": "Mae Hong Son",
@@ -92023,7 +86556,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 788652,
"latitude": 42.52167,
"longitude": 21.12583,
"name": "Lipljan",
@@ -92033,7 +86565,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1129867,
"latitude": 34.98735,
"longitude": 63.12891,
"name": "Qala i Naw",
@@ -92043,7 +86574,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3197943,
"latitude": 45.64333,
"longitude": 14.86333,
"name": "Ko\u010devje",
@@ -92053,7 +86583,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932416,
"latitude": -29.28939,
"longitude": 29.06751,
"name": "Mokhotlong",
@@ -92063,7 +86592,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3604384,
"latitude": 14.43333,
"longitude": -89.18333,
"name": "Nueva Ocotepeque",
@@ -92073,7 +86601,6 @@
"country_code": "CH",
"elevation": 458,
"feature_code": "PPLA",
- "geonameid": 2661780,
"latitude": 46.88042,
"longitude": 8.64441,
"name": "Altdorf",
@@ -92083,7 +86610,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 586573,
"latitude": 40.56556,
"longitude": 45.81611,
"name": "Kyadabek",
@@ -92093,7 +86619,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2309528,
"latitude": 3.45683,
"longitude": 8.55465,
"name": "Luba",
@@ -92103,7 +86628,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784212,
"latitude": 41.83389,
"longitude": 20.88528,
"name": "Vrap\u010di\u0161te",
@@ -92113,7 +86637,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791720,
"latitude": 42.10361,
"longitude": 21.38222,
"name": "\u0427\u0443\u0447\u0435\u0440 - \u0421\u0430\u043d\u0434\u0435\u0432\u043e",
@@ -92123,7 +86646,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792523,
"latitude": 41.20306,
"longitude": 22.57556,
"name": "\u0411\u043e\u0433\u0434\u0430\u043d\u0446\u0438",
@@ -92133,7 +86655,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192673,
"latitude": 45.77694,
"longitude": 14.21667,
"name": "Postojna",
@@ -92143,7 +86664,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3706208,
"latitude": 7.76667,
"longitude": -80.28333,
"name": "Las Tablas",
@@ -92153,7 +86673,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3573681,
"latitude": 10.13333,
"longitude": -61.5,
"name": "Siparia",
@@ -92163,7 +86682,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2308994,
"latitude": 1.43677,
"longitude": 10.55124,
"name": "Evinayong",
@@ -92173,7 +86691,6 @@
"country_code": "VG",
"elevation": 9,
"feature_code": "PPLC",
- "geonameid": 3577430,
"latitude": 18.41667,
"longitude": -64.61667,
"name": "Road Town",
@@ -92183,7 +86700,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 586268,
"latitude": 40.10667,
"longitude": 46.03833,
"name": "Kerbakhiar",
@@ -92193,7 +86709,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2486523,
"latitude": 33.26667,
"longitude": -0.31667,
"name": "Naama",
@@ -92203,7 +86718,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787072,
"latitude": 41.93889,
"longitude": 21.615,
"name": "\u041f\u0435\u0442\u0440\u043e\u0432\u0435\u0446",
@@ -92213,7 +86727,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617702,
"latitude": 46.87889,
"longitude": 29.22472,
"name": "Anenii Noi",
@@ -92223,7 +86736,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 174710,
"latitude": 39.76389,
"longitude": 45.33239,
"name": "Yeghegnadzor",
@@ -92233,7 +86745,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789629,
"latitude": 42.02,
"longitude": 22.59194,
"name": "Makedonska Kamenica",
@@ -92243,27 +86754,24 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789455,
"latitude": 42.62167,
"longitude": 20.57778,
"name": "Klina",
"population": 8050
},
{
- "country_code": "UG",
+ "country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 229599,
- "latitude": -0.40306,
- "longitude": 31.15722,
- "name": "Lyantonde",
- "population": 8039
+ "latitude": -22.35,
+ "longitude": -60.03333,
+ "name": "Filadelfia",
+ "population": 8048
},
{
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3039163,
"latitude": 42.46372,
"longitude": 1.49129,
"name": "Sant Juli\u00e0 de L\u00f2ria",
@@ -92273,7 +86781,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3218907,
"latitude": 45.91444,
"longitude": 14.22583,
"name": "Logatec",
@@ -92283,7 +86790,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190536,
"latitude": 46.51028,
"longitude": 15.08056,
"name": "Slovenj Gradec",
@@ -92293,7 +86799,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3415496,
"latitude": 64.00492,
"longitude": -22.56242,
"name": "Keflav\u00edk",
@@ -92303,7 +86808,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374888,
"latitude": 15.1,
"longitude": -23.68333,
"name": "Assomada",
@@ -92313,7 +86817,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3488985,
"latitude": 18.36849,
"longitude": -76.88946,
"name": "Port Maria",
@@ -92323,7 +86826,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090119,
"latitude": -12.7044,
"longitude": 45.12231,
"name": "Bandraboua",
@@ -92333,7 +86835,6 @@
"country_code": "US",
"elevation": 160,
"feature_code": "PPLA",
- "geonameid": 5238685,
"latitude": 44.26006,
"longitude": -72.57539,
"name": "Montpelier",
@@ -92343,7 +86844,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2374588,
"latitude": 11.58333,
"longitude": -15.0,
"name": "Buba",
@@ -92353,7 +86853,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090126,
"latitude": -12.69982,
"longitude": 45.06894,
"name": "Mtsamboro",
@@ -92363,7 +86862,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617284,
"latitude": 46.51528,
"longitude": 29.66306,
"name": "\u015etefan Vod\u0103",
@@ -92373,7 +86871,6 @@
"country_code": "SS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 377472,
"latitude": 9.23333,
"longitude": 29.83333,
"name": "Bentiu",
@@ -92383,7 +86880,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187214,
"latitude": 45.96611,
"longitude": 14.29556,
"name": "Vrhnika",
@@ -92393,7 +86889,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090177,
"latitude": -12.78722,
"longitude": 45.10278,
"name": "Tsingoni",
@@ -92403,7 +86898,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3602736,
"latitude": 16.32437,
"longitude": -86.53656,
"name": "Roat\u00e1n",
@@ -92413,7 +86907,6 @@
"country_code": "GD",
"elevation": 6,
"feature_code": "PPLC",
- "geonameid": 3579925,
"latitude": 12.05644,
"longitude": -61.74849,
"name": "Saint George's",
@@ -92423,27 +86916,15 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2658504,
"latitude": 46.95845,
"longitude": 8.366,
"name": "Stans",
"population": 7475
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2420826,
- "latitude": 11.75,
- "longitude": -13.2,
- "name": "Gaoual",
- "population": 7461
- },
{
"country_code": "GE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 612890,
"latitude": 41.84514,
"longitude": 44.71875,
"name": "Mts\u2019khet\u2019a",
@@ -92453,9 +86934,8 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3437148,
- "latitude": -24.05,
- "longitude": -54.35,
+ "latitude": -24.0625,
+ "longitude": -54.30694,
"name": "Salto del Guair\u00e1",
"population": 7385
},
@@ -92463,7 +86943,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 586430,
"latitude": 40.61028,
"longitude": 46.78972,
"name": "Goranboy",
@@ -92473,7 +86952,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789822,
"latitude": 42.07361,
"longitude": 21.12361,
"name": "\u0408\u0435\u0433\u0443\u043d\u043e\u0432\u0446\u0435",
@@ -92483,7 +86961,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3671450,
"latitude": 3.86528,
"longitude": -67.92389,
"name": "In\u00edrida",
@@ -92493,27 +86970,15 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090311,
"latitude": -12.84639,
"longitude": 45.13611,
"name": "Ouangani",
"population": 7272
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2419622,
- "latitude": 9.26667,
- "longitude": -9.01667,
- "name": "K\u00e9rouan\u00e9",
- "population": 7228
- },
{
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3040132,
"latitude": 42.54499,
"longitude": 1.51483,
"name": "la Massana",
@@ -92523,7 +86988,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090322,
"latitude": -12.83333,
"longitude": 45.11056,
"name": "Chiconi",
@@ -92533,47 +86997,33 @@
"country_code": "DK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2612862,
"latitude": 55.43184,
"longitude": 11.55547,
"name": "Sor\u00f8",
"population": 7167
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2422383,
- "latitude": 10.7,
- "longitude": -12.25,
- "name": "Dalaba",
- "population": 7036
- },
{
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618403,
"latitude": 47.21444,
"longitude": 29.16139,
"name": "Criuleni",
"population": 6932
},
{
- "country_code": "UG",
+ "country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 228418,
- "latitude": 1.30889,
- "longitude": 32.45639,
- "name": "Nakasongola",
- "population": 6921
+ "latitude": 39.34396,
+ "longitude": 46.58196,
+ "name": "Qubadl\u0131",
+ "population": 6890
},
{
"country_code": "MT",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2562305,
"latitude": 35.89972,
"longitude": 14.51472,
"name": "Valletta",
@@ -92583,7 +87033,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617254,
"latitude": 47.49972,
"longitude": 28.36556,
"name": "Telene\u015fti",
@@ -92593,7 +87042,6 @@
"country_code": "DZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2493456,
"latitude": 26.48333,
"longitude": 8.46667,
"name": "Illizi",
@@ -92603,7 +87051,6 @@
"country_code": "AZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 585333,
"latitude": 41.07083,
"longitude": 47.45833,
"name": "O\u011fuz",
@@ -92613,7 +87060,6 @@
"country_code": "BW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932987,
"latitude": -26.05,
"longitude": 22.45,
"name": "Tshabong",
@@ -92623,7 +87069,6 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 427701,
"latitude": -3.2186,
"longitude": 30.5528,
"name": "Cankuzo",
@@ -92633,7 +87078,6 @@
"country_code": "DO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3504077,
"latitude": 18.49169,
"longitude": -71.85022,
"name": "Jiman\u00ed",
@@ -92643,7 +87087,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190534,
"latitude": 46.39278,
"longitude": 15.57444,
"name": "Slovenska Bistrica",
@@ -92653,7 +87096,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3204854,
"latitude": 45.88601,
"longitude": 13.90946,
"name": "Ajdov\u0161\u010dina",
@@ -92663,7 +87105,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 589375,
"latitude": 58.06028,
"longitude": 27.06944,
"name": "P\u00f5lva",
@@ -92673,9 +87114,8 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374166,
- "latitude": 15.28333,
- "longitude": -23.76667,
+ "latitude": 15.27591,
+ "longitude": -23.75381,
"name": "Tarrafal",
"population": 6463
},
@@ -92683,7 +87123,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3196425,
"latitude": 46.05861,
"longitude": 14.8225,
"name": "Litija",
@@ -92693,7 +87132,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934133,
"latitude": -20.24389,
"longitude": 57.58917,
"name": "Quartier Militaire",
@@ -92703,7 +87141,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3181793,
"latitude": 43.94193,
"longitude": 12.44738,
"name": "Borgo Maggiore",
@@ -92713,7 +87150,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 591902,
"latitude": 58.74667,
"longitude": 26.39389,
"name": "J\u00f5geva",
@@ -92723,7 +87159,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2307795,
"latitude": 1.62742,
"longitude": 11.31346,
"name": "Mongomo",
@@ -92733,7 +87168,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090397,
"latitude": -12.90667,
"longitude": 45.19139,
"name": "Bandr\u00e9l\u00e9",
@@ -92743,7 +87177,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3203412,
"latitude": 45.90333,
"longitude": 15.59111,
"name": "Bre\u017eice",
@@ -92753,7 +87186,6 @@
"country_code": "JM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3489657,
"latitude": 18.45095,
"longitude": -78.17356,
"name": "Lucea",
@@ -92763,7 +87195,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3413604,
"latitude": 63.93311,
"longitude": -20.99712,
"name": "Selfoss",
@@ -92773,7 +87204,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199523,
"latitude": 45.95556,
"longitude": 14.65889,
"name": "Grosuplje",
@@ -92783,7 +87213,6 @@
"country_code": "LU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2960657,
"latitude": 49.86778,
"longitude": 6.15583,
"name": "Diekirch",
@@ -92793,9 +87222,8 @@
"country_code": "PM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3424934,
- "latitude": 46.76544,
- "longitude": -56.16949,
+ "latitude": 46.78091,
+ "longitude": -56.17196,
"name": "Saint-Pierre",
"population": 6200
},
@@ -92803,7 +87231,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090415,
"latitude": -12.93194,
"longitude": 45.14833,
"name": "Chirongui",
@@ -92813,7 +87240,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 617372,
"latitude": 47.81528,
"longitude": 28.79667,
"name": "\u015eold\u0103ne\u015fti",
@@ -92823,7 +87249,6 @@
"country_code": "SZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934851,
"latitude": -26.45,
"longitude": 31.95,
"name": "Siteki",
@@ -92833,7 +87258,6 @@
"country_code": "CA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 5983720,
"latitude": 63.75059,
"longitude": -68.51449,
"name": "Iqaluit",
@@ -92843,7 +87267,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199873,
"latitude": 44.54611,
"longitude": 15.37472,
"name": "Gospi\u0107",
@@ -92853,27 +87276,15 @@
"country_code": "BI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 432456,
"latitude": -2.5845,
"longitude": 30.0959,
"name": "Kirundo",
"population": 6083
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2421903,
- "latitude": 11.3,
- "longitude": -10.71667,
- "name": "Dinguiraye",
- "population": 6062
- },
{
"country_code": "DJ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 225037,
"latitude": 11.52222,
"longitude": 42.84194,
"name": "\u2018Arta",
@@ -92883,7 +87294,6 @@
"country_code": "MR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2376193,
"latitude": 18.55644,
"longitude": -11.42715,
"name": "Tidjikja",
@@ -92893,7 +87303,6 @@
"country_code": "BL",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3579132,
"latitude": 17.89618,
"longitude": -62.84978,
"name": "Gustavia",
@@ -92903,7 +87312,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192063,
"latitude": 46.34444,
"longitude": 14.17444,
"name": "Radovljica",
@@ -92913,7 +87321,6 @@
"country_code": "CO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3674676,
"latitude": 1.19833,
"longitude": -70.17333,
"name": "Mit\u00fa",
@@ -92923,7 +87330,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789028,
"latitude": 41.33611,
"longitude": 21.33306,
"name": "Krivogashtani",
@@ -92933,7 +87339,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2028606,
"latitude": 47.475,
"longitude": 101.45417,
"name": "Tsetserleg",
@@ -92943,7 +87348,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3202333,
"latitude": 45.57111,
"longitude": 15.18889,
"name": "\u010crnomelj",
@@ -92953,7 +87357,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2092164,
"latitude": -2.02259,
"longitude": 147.27119,
"name": "Lorengau",
@@ -92963,7 +87366,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199297,
"latitude": 46.14611,
"longitude": 15.08139,
"name": "Hrastnik",
@@ -92973,7 +87375,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199171,
"latitude": 46.00278,
"longitude": 14.03056,
"name": "Idrija",
@@ -92983,7 +87384,6 @@
"country_code": "SZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 934881,
"latitude": -25.96667,
"longitude": 31.25,
"name": "Piggs Peak",
@@ -92993,7 +87393,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042041,
"latitude": 47.16498,
"longitude": 9.50867,
"name": "Schaan",
@@ -93003,7 +87402,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195250,
"latitude": 46.16694,
"longitude": 14.575,
"name": "Menge\u0161",
@@ -93013,7 +87411,6 @@
"country_code": "MF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3578851,
"latitude": 18.06667,
"longitude": -63.08333,
"name": "Marigot",
@@ -93023,7 +87420,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 589116,
"latitude": 59.00722,
"longitude": 24.79278,
"name": "Rapla",
@@ -93033,7 +87429,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2660594,
"latitude": 47.04057,
"longitude": 9.06804,
"name": "Glarus",
@@ -93043,7 +87438,6 @@
"country_code": "CH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2661740,
"latitude": 47.33103,
"longitude": 9.40996,
"name": "Appenzell",
@@ -93053,7 +87447,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2094144,
"latitude": -7.96309,
"longitude": 145.77851,
"name": "Kerema",
@@ -93063,7 +87456,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 461602,
"latitude": 56.71667,
"longitude": 21.6,
"name": "Aizpute",
@@ -93073,7 +87465,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 792257,
"latitude": 41.51361,
"longitude": 21.21528,
"name": "Makedonski Brod",
@@ -93083,7 +87474,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374336,
"latitude": 17.01969,
"longitude": -25.06471,
"name": "Porto Novo",
@@ -93093,27 +87483,15 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1653334,
"latitude": 15.71667,
"longitude": 106.41667,
"name": "Salavan",
"population": 5521
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2417886,
- "latitude": 12.079,
- "longitude": -12.2982,
- "name": "Mali",
- "population": 5479
- },
{
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2014833,
"latitude": 64.28333,
"longitude": 100.25,
"name": "Tura",
@@ -93123,7 +87501,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1106835,
"latitude": -29.52204,
"longitude": 28.6084,
"name": "Thaba-Tseka",
@@ -93133,7 +87510,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090467,
"latitude": -12.9025,
"longitude": 45.07611,
"name": "Bou\u00e9ni",
@@ -93143,7 +87519,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374121,
"latitude": 16.61667,
"longitude": -24.3,
"name": "Vila da Ribeira Brava",
@@ -93153,7 +87528,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3607966,
"latitude": 14.3,
"longitude": -88.18333,
"name": "La Esperanza",
@@ -93163,7 +87537,6 @@
"country_code": "GL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3419842,
"latitude": 66.93946,
"longitude": -53.6735,
"name": "Sisimiut",
@@ -93173,7 +87546,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 788961,
"latitude": 41.36889,
"longitude": 21.24889,
"name": "\u041a\u0440\u0443\u0448\u0435\u0432\u043e",
@@ -93183,27 +87555,15 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3203925,
"latitude": 46.36917,
"longitude": 14.11361,
"name": "Bled",
"population": 5205
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231617,
- "latitude": 0.8,
- "longitude": 31.06667,
- "name": "Kibale",
- "population": 5200
- },
{
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3042030,
"latitude": 47.14151,
"longitude": 9.52154,
"name": "Vaduz",
@@ -93213,7 +87573,6 @@
"country_code": "TT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3574724,
"latitude": 10.42248,
"longitude": -61.46748,
"name": "Couva",
@@ -93223,7 +87582,6 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 777073,
"latitude": 70.07436,
"longitude": 29.74872,
"name": "Vads\u00f8",
@@ -93233,7 +87591,6 @@
"country_code": "LS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 932035,
"latitude": -29.14719,
"longitude": 27.74895,
"name": "Teyateyaneng",
@@ -93243,7 +87600,6 @@
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785642,
"latitude": 42.74667,
"longitude": 20.78861,
"name": "Srbica",
@@ -93253,7 +87609,6 @@
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3193561,
"latitude": 45.24028,
"longitude": 13.93667,
"name": "Pazin",
@@ -93263,7 +87618,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195281,
"latitude": 46.13333,
"longitude": 14.43333,
"name": "Medvode",
@@ -93273,7 +87627,6 @@
"country_code": "CG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2260009,
"latitude": -0.8725,
"longitude": 14.82056,
"name": "Ewo",
@@ -93283,7 +87636,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3603157,
"latitude": 15.26667,
"longitude": -83.76667,
"name": "Puerto Lempira",
@@ -93293,7 +87645,6 @@
"country_code": "YT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1090476,
"latitude": -12.95361,
"longitude": 45.10333,
"name": "Kani K\u00e9li",
@@ -93303,7 +87654,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199131,
"latitude": 45.56972,
"longitude": 14.24083,
"name": "Ilirska Bistrica",
@@ -93313,7 +87663,6 @@
"country_code": "ZM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 897045,
"latitude": -12.1688,
"longitude": 26.38938,
"name": "Solwezi",
@@ -93323,7 +87672,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190950,
"latitude": 46.00778,
"longitude": 15.31556,
"name": "Sevnica",
@@ -93333,27 +87681,15 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190530,
"latitude": 46.33667,
"longitude": 15.42583,
"name": "Slovenske Konjice",
"population": 4830
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2578880,
- "latitude": 11.18333,
- "longitude": -12.93333,
- "name": "L\u00e9louma",
- "population": 4777
- },
{
"country_code": "HR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3197369,
"latitude": 46.16083,
"longitude": 15.87889,
"name": "Krapina",
@@ -93363,7 +87699,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191580,
"latitude": 46.2375,
"longitude": 15.63972,
"name": "Roga\u0161ka Slatina",
@@ -93373,7 +87708,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191029,
"latitude": 46.21722,
"longitude": 15.3975,
"name": "\u0160entjur",
@@ -93383,7 +87717,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042035,
"latitude": 47.1,
"longitude": 9.53333,
"name": "Triesen",
@@ -93393,7 +87726,6 @@
"country_code": "FO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2618795,
"latitude": 62.22655,
"longitude": -6.58901,
"name": "Klaksv\u00edk",
@@ -93403,7 +87735,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2220309,
"latitude": 27.5,
"longitude": 13.26667,
"name": "Idr\u012b",
@@ -93413,7 +87744,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787016,
"latitude": 41.46722,
"longitude": 21.12306,
"name": "\u041f\u043b\u0430\u0441\u043d\u0438\u0446\u0430",
@@ -93423,7 +87753,6 @@
"country_code": "NC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2140691,
"latitude": -21.05951,
"longitude": 164.86582,
"name": "Kon\u00e9",
@@ -93433,9 +87762,8 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3168070,
- "latitude": 43.93333,
- "longitude": 12.45,
+ "latitude": 43.93667,
+ "longitude": 12.44639,
"name": "San Marino",
"population": 4500
},
@@ -93443,7 +87771,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191401,
"latitude": 46.53944,
"longitude": 15.51583,
"name": "Ru\u0161e",
@@ -93453,7 +87780,6 @@
"country_code": "TV",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2110394,
"latitude": -8.52425,
"longitude": 179.19417,
"name": "Funafuti",
@@ -93463,7 +87789,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192484,
"latitude": 46.54694,
"longitude": 14.92083,
"name": "Prevalje",
@@ -93473,7 +87798,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1659990,
"latitude": 15.41667,
"longitude": 106.7,
"name": "Lamam",
@@ -93483,7 +87807,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791542,
"latitude": 41.405,
"longitude": 22.24889,
"name": "\u0414\u0435\u043c\u0438\u0440 \u041a\u0430\u043f\u0438\u0458\u0430",
@@ -93493,7 +87816,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042073,
"latitude": 47.06667,
"longitude": 9.5,
"name": "Balzers",
@@ -93503,7 +87825,6 @@
"country_code": "GQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2306774,
"latitude": -1.40139,
"longitude": 5.6325,
"name": "Pal\u00e9",
@@ -93513,7 +87834,6 @@
"country_code": "GL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3423146,
"latitude": 69.21667,
"longitude": -51.1,
"name": "Ilulissat",
@@ -93523,7 +87843,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787877,
"latitude": 41.10833,
"longitude": 21.37861,
"name": "\u041c\u043e\u0433\u0438\u043b\u0430",
@@ -93533,27 +87852,15 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933995,
"latitude": -20.51667,
"longitude": 57.51667,
"name": "Souillac",
"population": 4392
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226361,
- "latitude": -0.07722,
- "longitude": 31.45667,
- "name": "Sembabule",
- "population": 4320
- },
{
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1665046,
"latitude": 14.8,
"longitude": 106.83333,
"name": "Attapu",
@@ -93563,7 +87870,6 @@
"country_code": "EC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3652758,
"latitude": -0.9,
"longitude": -89.6,
"name": "Puerto Baquerizo Moreno",
@@ -93573,7 +87879,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785515,
"latitude": 42.19806,
"longitude": 21.82861,
"name": "\u0421\u0442\u0430\u0440\u043e \u041d\u0430\u0433\u043e\u0440\u0438\u0447\u0430\u043d\u0435",
@@ -93583,7 +87888,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786239,
"latitude": 41.51611,
"longitude": 21.94972,
"name": "Rosoman",
@@ -93593,7 +87897,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 786477,
"latitude": 42.16964,
"longitude": 22.11617,
"name": "\u0420\u0430\u043d\u043a\u043e\u0432\u0446\u0435",
@@ -93603,7 +87906,6 @@
"country_code": "PR",
"elevation": 18,
"feature_code": "PPLA",
- "geonameid": 4562502,
"latitude": 18.37939,
"longitude": -67.18824,
"name": "Aguada",
@@ -93613,7 +87915,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3193341,
"latitude": 45.52778,
"longitude": 13.57056,
"name": "Pirano",
@@ -93623,7 +87924,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 783938,
"latitude": 41.88667,
"longitude": 21.58694,
"name": "\u0417\u0435\u043b\u0435\u043d\u0438\u043a\u043e\u0432\u043e",
@@ -93633,7 +87933,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042068,
"latitude": 47.21071,
"longitude": 9.52223,
"name": "Eschen",
@@ -93643,7 +87942,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 459624,
"latitude": 56.59861,
"longitude": 24.20222,
"name": "Iecava",
@@ -93653,7 +87951,6 @@
"country_code": "LY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2220139,
"latitude": 32.53194,
"longitude": 13.0175,
"name": "Al \u2018Az\u012bz\u012byah",
@@ -93663,7 +87960,6 @@
"country_code": "SR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3384792,
"latitude": 5.5,
"longitude": -54.05,
"name": "Albina",
@@ -93673,7 +87969,6 @@
"country_code": "LU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2960515,
"latitude": 49.67472,
"longitude": 6.44194,
"name": "Grevenmacher",
@@ -93683,7 +87978,6 @@
"country_code": "PG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2084246,
"latitude": -5.47808,
"longitude": 143.70215,
"name": "Wabag",
@@ -93693,7 +87987,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789563,
"latitude": 41.81667,
"longitude": 22.2375,
"name": "Karbinci",
@@ -93703,7 +87996,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191063,
"latitude": 45.9275,
"longitude": 13.64111,
"name": "\u0160empeter pri Gorici",
@@ -93713,7 +88005,6 @@
"country_code": "TR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 324470,
"latitude": 37.79889,
"longitude": 31.07111,
"name": "Aksu",
@@ -93723,7 +88014,6 @@
"country_code": "MD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 618452,
"latitude": 46.27806,
"longitude": 28.20083,
"name": "Cantemir",
@@ -93733,7 +88023,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195162,
"latitude": 46.50583,
"longitude": 15.69722,
"name": "Miklav\u017e na Dravskem Polju",
@@ -93743,7 +88032,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784733,
"latitude": 41.31694,
"longitude": 22.56111,
"name": "Valandovo",
@@ -93753,7 +88041,6 @@
"country_code": "MU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 933982,
"latitude": -20.32556,
"longitude": 57.37056,
"name": "Tamarin",
@@ -93763,7 +88050,6 @@
"country_code": "EE",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 591632,
"latitude": 58.99778,
"longitude": 22.74917,
"name": "K\u00e4rdla",
@@ -93773,7 +88059,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 790217,
"latitude": 41.5775,
"longitude": 21.94278,
"name": "Gradsko",
@@ -93783,7 +88068,6 @@
"country_code": "TC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3576994,
"latitude": 21.46122,
"longitude": -71.14188,
"name": "Cockburn Town",
@@ -93793,7 +88077,6 @@
"country_code": "TD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2428216,
"latitude": 11.4039,
"longitude": 16.1705,
"name": "Massenya",
@@ -93803,7 +88086,6 @@
"country_code": "RU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2122262,
"latitude": 59.11667,
"longitude": 159.96667,
"name": "Palana",
@@ -93813,7 +88095,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3041760,
"latitude": 60.14902,
"longitude": 19.951,
"name": "Jomala",
@@ -93823,27 +88104,15 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042055,
"latitude": 47.21805,
"longitude": 9.5442,
"name": "Mauren",
"population": 3626
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2414079,
- "latitude": 7.56028,
- "longitude": -9.26528,
- "name": "Yomou",
- "population": 3614
- },
{
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3186450,
"latitude": 46.04222,
"longitude": 14.10722,
"name": "\u017diri",
@@ -93853,7 +88122,6 @@
"country_code": "GM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2413437,
"latitude": 13.53333,
"longitude": -14.76667,
"name": "Georgetown",
@@ -93863,7 +88131,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3202709,
"latitude": 45.79306,
"longitude": 14.3625,
"name": "Cerknica",
@@ -93873,7 +88140,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 460786,
"latitude": 56.7,
"longitude": 22.53333,
"name": "Broc\u0113ni",
@@ -93883,7 +88149,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191685,
"latitude": 45.73861,
"longitude": 14.7275,
"name": "Ribnica",
@@ -93893,7 +88158,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 789342,
"latitude": 41.49583,
"longitude": 22.385,
"name": "Kon\u010de",
@@ -93903,7 +88167,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195202,
"latitude": 46.52139,
"longitude": 14.85444,
"name": "Me\u017eica",
@@ -93913,7 +88176,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 455910,
"latitude": 57.75361,
"longitude": 24.35806,
"name": "Salacgr\u012bva",
@@ -93923,7 +88185,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3188684,
"latitude": 46.13333,
"longitude": 14.56667,
"name": "Trzin",
@@ -93933,7 +88194,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 456954,
"latitude": 56.68639,
"longitude": 23.78778,
"name": "Ozolnieki",
@@ -93943,7 +88203,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3196307,
"latitude": 46.52083,
"longitude": 16.1975,
"name": "Ljutomer",
@@ -93953,7 +88212,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3201253,
"latitude": 46.58806,
"longitude": 15.01917,
"name": "Dravograd",
@@ -93963,7 +88221,6 @@
"country_code": "GD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3580279,
"latitude": 12.16462,
"longitude": -61.72965,
"name": "Gouyave",
@@ -93973,7 +88230,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 459598,
"latitude": 56.83333,
"longitude": 24.5,
"name": "Ik\u0161\u0137ile",
@@ -93983,7 +88239,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 785537,
"latitude": 41.1875,
"longitude": 22.72083,
"name": "Star Dojran",
@@ -93993,7 +88248,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2273638,
"latitude": 5.19639,
"longitude": -7.87556,
"name": "Fish Town",
@@ -94003,9 +88257,8 @@
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3041204,
- "latitude": 42.5669,
- "longitude": 1.59556,
+ "latitude": 42.5676,
+ "longitude": 1.59756,
"name": "Canillo",
"population": 3292
},
@@ -94013,7 +88266,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195214,
"latitude": 45.64722,
"longitude": 15.31417,
"name": "Metlika",
@@ -94023,7 +88275,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 783809,
"latitude": 41.85417,
"longitude": 22.44444,
"name": "Zrnovci",
@@ -94033,7 +88284,6 @@
"country_code": "LA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1655562,
"latitude": 20.94972,
"longitude": 101.40111,
"name": "Louang Namtha",
@@ -94043,7 +88293,6 @@
"country_code": "GL",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3420846,
"latitude": 60.71667,
"longitude": -46.03333,
"name": "Qaqortoq",
@@ -94053,7 +88302,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3200197,
"latitude": 46.67333,
"longitude": 15.99222,
"name": "Gornja Radgona",
@@ -94063,7 +88311,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3186607,
"latitude": 46.23333,
"longitude": 14.16667,
"name": "\u017delezniki",
@@ -94073,7 +88320,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3188886,
"latitude": 45.90417,
"longitude": 15.02167,
"name": "Trebnje",
@@ -94083,7 +88329,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3177542,
"latitude": 43.95279,
"longitude": 12.47008,
"name": "Domagnano",
@@ -94093,7 +88338,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2273435,
"latitude": 6.87083,
"longitude": -10.81722,
"name": "Tubmanburg",
@@ -94103,7 +88347,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791009,
"latitude": 41.48417,
"longitude": 20.92333,
"name": "\u0414\u0440\u0443\u0433\u043e\u0432\u043e",
@@ -94113,7 +88356,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3203611,
"latitude": 46.3375,
"longitude": 13.55278,
"name": "Bovec",
@@ -94123,7 +88365,6 @@
"country_code": "GW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2370358,
"latitude": 11.88333,
"longitude": -15.85,
"name": "Quinh\u00e1mel",
@@ -94133,7 +88374,6 @@
"country_code": "BQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3513563,
"latitude": 12.15,
"longitude": -68.26667,
"name": "Kralendijk",
@@ -94143,7 +88383,6 @@
"country_code": "AD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3039678,
"latitude": 42.55623,
"longitude": 1.53319,
"name": "Ordino",
@@ -94153,7 +88392,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252422,
"latitude": 27.6116,
"longitude": 91.498,
"name": "Trashi Yangtse",
@@ -94163,7 +88401,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374120,
"latitude": 15.13333,
"longitude": -23.21667,
"name": "Vila do Maio",
@@ -94173,7 +88410,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252514,
"latitude": 27.27471,
"longitude": 91.23963,
"name": "Mongar",
@@ -94183,7 +88419,6 @@
"country_code": "NC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2140466,
"latitude": -21.71079,
"longitude": 165.82764,
"name": "La Foa",
@@ -94193,7 +88428,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2278248,
"latitude": 7.06667,
"longitude": -10.4875,
"name": "Bopolu",
@@ -94203,7 +88437,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 790848,
"latitude": 41.78389,
"longitude": 21.90556,
"name": "\u041b\u043e\u0437\u043e\u0432\u043e",
@@ -94213,7 +88446,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252408,
"latitude": 27.5026,
"longitude": 90.50716,
"name": "Trongsa",
@@ -94223,7 +88455,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 454714,
"latitude": 56.94111,
"longitude": 24.28972,
"name": "Ulbroka",
@@ -94233,7 +88464,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190311,
"latitude": 46.38,
"longitude": 15.04861,
"name": "\u0160o\u0161tanj",
@@ -94243,7 +88473,6 @@
"country_code": "AM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 616902,
"latitude": 40.08658,
"longitude": 44.05363,
"name": "Armavir",
@@ -94253,7 +88482,6 @@
"country_code": "GM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2412992,
"latitude": 13.4898,
"longitude": -16.08879,
"name": "Kerewan",
@@ -94263,7 +88491,6 @@
"country_code": "SZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 935081,
"latitude": -26.96667,
"longitude": 31.31667,
"name": "Hlatikulu",
@@ -94273,7 +88500,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191059,
"latitude": 46.24556,
"longitude": 14.41972,
"name": "\u0160en\u010dur",
@@ -94283,7 +88509,6 @@
"country_code": "LR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2278889,
"latitude": 4.67972,
"longitude": -8.23389,
"name": "Barclayville",
@@ -94293,7 +88518,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042033,
"latitude": 47.11815,
"longitude": 9.54197,
"name": "Triesenberg",
@@ -94303,7 +88527,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2627309,
"latitude": 65.74611,
"longitude": -19.63944,
"name": "Sau\u00f0\u00e1rkr\u00f3kur",
@@ -94313,7 +88536,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192121,
"latitude": 46.61417,
"longitude": 15.22639,
"name": "Radlje ob Dravi",
@@ -94323,7 +88545,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 455520,
"latitude": 56.68333,
"longitude": 22.01667,
"name": "Skrunda",
@@ -94333,7 +88554,6 @@
"country_code": "TZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 153585,
"latitude": -5.87671,
"longitude": 39.25467,
"name": "Mkokotoni",
@@ -94343,7 +88563,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3196682,
"latitude": 46.57611,
"longitude": 15.83139,
"name": "Lenart v Slovenskih Goricah",
@@ -94353,7 +88572,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3415667,
"latitude": 66.07549,
"longitude": -23.124,
"name": "\u00cdsafj\u00f6r\u00f0ur",
@@ -94363,7 +88581,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3176966,
"latitude": 43.91001,
"longitude": 12.45738,
"name": "Fiorentino",
@@ -94373,7 +88590,6 @@
"country_code": "LV",
"elevation": 35,
"feature_code": "PPLA",
- "geonameid": 454273,
"latitude": 56.60639,
"longitude": 24.52222,
"name": "Vecumnieki",
@@ -94383,7 +88599,6 @@
"country_code": "PY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3438102,
"latitude": -21.04153,
"longitude": -57.87377,
"name": "Fuerte Olimpo",
@@ -94393,7 +88608,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787147,
"latitude": 41.75944,
"longitude": 22.89056,
"name": "Peh\u010devo",
@@ -94403,7 +88617,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784462,
"latitude": 41.24056,
"longitude": 20.59333,
"name": "Vev\u010dani",
@@ -94413,7 +88626,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3041798,
"latitude": 60.26667,
"longitude": 19.93333,
"name": "Finstr\u00f6m",
@@ -94423,7 +88635,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194622,
"latitude": 46.61139,
"longitude": 15.16611,
"name": "Muta",
@@ -94433,7 +88644,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 791954,
"latitude": 41.87139,
"longitude": 22.28917,
"name": "\u010ce\u0161inovo",
@@ -94443,7 +88653,6 @@
"country_code": "HN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3600165,
"latitude": 13.93333,
"longitude": -86.85,
"name": "Yuscar\u00e1n",
@@ -94453,7 +88662,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192762,
"latitude": 46.28333,
"longitude": 15.06667,
"name": "Polzela",
@@ -94463,7 +88671,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787624,
"latitude": 41.04194,
"longitude": 21.45611,
"name": "Novaci",
@@ -94473,27 +88680,15 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3203338,
"latitude": 46.03333,
"longitude": 14.4,
"name": "Brezovica",
"population": 2345
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2422968,
- "latitude": 10.16667,
- "longitude": -14.03333,
- "name": "Boffa",
- "population": 2332
- },
{
"country_code": "XK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 788239,
"latitude": 42.48222,
"longitude": 20.74583,
"name": "Mali\u0161evo",
@@ -94503,7 +88698,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192144,
"latitude": 46.06806,
"longitude": 15.18389,
"name": "Rade\u010de",
@@ -94513,7 +88707,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 787778,
"latitude": 41.22167,
"longitude": 21.20306,
"name": "Demir Hisar",
@@ -94523,7 +88716,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6354943,
"latitude": 65.26533,
"longitude": -14.39484,
"name": "Egilssta\u00f0ir",
@@ -94533,7 +88725,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 461528,
"latitude": 57.41667,
"longitude": 27.05,
"name": "Al\u016bksne",
@@ -94543,7 +88734,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3204303,
"latitude": 46.60528,
"longitude": 16.24056,
"name": "Beltinci",
@@ -94553,7 +88743,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192165,
"latitude": 46.45194,
"longitude": 15.68139,
"name": "Ra\u010de",
@@ -94563,7 +88752,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252433,
"latitude": 27.07529,
"longitude": 89.87688,
"name": "Daga",
@@ -94573,7 +88761,6 @@
"country_code": "FK",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3426691,
"latitude": -51.7,
"longitude": -57.85,
"name": "Stanley",
@@ -94583,7 +88770,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3193965,
"latitude": 46.41139,
"longitude": 16.15444,
"name": "Ormo\u017e",
@@ -94593,7 +88779,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252490,
"latitude": 27.4305,
"longitude": 89.41334,
"name": "Paro",
@@ -94603,7 +88788,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374725,
"latitude": 14.91667,
"longitude": -23.61667,
"name": "Cidade Velha",
@@ -94613,7 +88797,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374235,
"latitude": 16.18333,
"longitude": -22.91667,
"name": "Sal Rei",
@@ -94623,7 +88806,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3203677,
"latitude": 45.91583,
"longitude": 14.36306,
"name": "Borovnica",
@@ -94633,7 +88815,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190219,
"latitude": 46.5,
"longitude": 15.65,
"name": "Spodnje Ho\u010de",
@@ -94643,7 +88824,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199162,
"latitude": 45.96028,
"longitude": 14.52889,
"name": "Ig",
@@ -94653,7 +88833,6 @@
"country_code": "SJ",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2729907,
"latitude": 78.2186,
"longitude": 15.64007,
"name": "Longyearbyen",
@@ -94663,7 +88842,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3193299,
"latitude": 45.68292,
"longitude": 14.19588,
"name": "Pivka",
@@ -94673,7 +88851,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 461224,
"latitude": 56.74278,
"longitude": 24.39444,
"name": "Baldone",
@@ -94683,7 +88860,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3196165,
"latitude": 46.54056,
"longitude": 15.39306,
"name": "Lovrenc na Pohorju",
@@ -94693,27 +88869,15 @@
"country_code": "NO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3152884,
"latitude": 61.18461,
"longitude": 6.85016,
"name": "Hermansverk",
"population": 2000
},
- {
- "country_code": "GN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2418092,
- "latitude": 7.8,
- "longitude": -8.53333,
- "name": "Lola",
- "population": 1982
- },
{
"country_code": "GM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2412605,
"latitude": 13.46667,
"longitude": -15.55,
"name": "Mansa Konko",
@@ -94723,7 +88887,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3200385,
"latitude": 45.78,
"longitude": 15.07278,
"name": "Stra\u017ea",
@@ -94733,7 +88896,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3190712,
"latitude": 45.98333,
"longitude": 14.57667,
"name": "\u0160kofljica",
@@ -94743,7 +88905,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187448,
"latitude": 46.29333,
"longitude": 15.30333,
"name": "Vojnik",
@@ -94753,7 +88914,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194792,
"latitude": 46.33944,
"longitude": 14.96333,
"name": "Mozirje",
@@ -94763,7 +88923,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 459402,
"latitude": 56.61667,
"longitude": 25.08333,
"name": "Jaunjelgava",
@@ -94773,27 +88932,15 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 457799,
"latitude": 56.9,
"longitude": 26.71667,
"name": "Lub\u0101na",
"population": 1918
},
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235191,
- "latitude": 1.95,
- "longitude": 34.95,
- "name": "Amudat",
- "population": 1873
- },
{
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3189798,
"latitude": 46.22083,
"longitude": 15.31389,
"name": "\u0160tore",
@@ -94803,7 +88950,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042046,
"latitude": 47.23333,
"longitude": 9.51667,
"name": "Ruggell",
@@ -94813,7 +88959,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195011,
"latitude": 46.44111,
"longitude": 15.19556,
"name": "Mislinja",
@@ -94823,7 +88968,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374211,
"latitude": 15.02438,
"longitude": -23.5625,
"name": "S\u00e3o Domingos",
@@ -94833,7 +88977,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3707058,
"latitude": 8.40278,
"longitude": -78.14528,
"name": "La Palma",
@@ -94843,7 +88986,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 648382,
"latitude": 60.07178,
"longitude": 20.08472,
"name": "Lemland",
@@ -94853,7 +88995,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374351,
"latitude": 17.15026,
"longitude": -25.02007,
"name": "Pombas",
@@ -94863,7 +89004,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 460568,
"latitude": 56.96667,
"longitude": 26.31667,
"name": "Cesvaine",
@@ -94873,7 +89013,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 456107,
"latitude": 57.5,
"longitude": 22.81667,
"name": "Roja",
@@ -94883,7 +89022,6 @@
"country_code": "IS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3418076,
"latitude": 64.53834,
"longitude": -21.92064,
"name": "Borgarnes",
@@ -94893,7 +89031,6 @@
"country_code": "BS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3572640,
"latitude": 23.1,
"longitude": -74.98333,
"name": "Clarence Town",
@@ -94903,7 +89040,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 637878,
"latitude": 60.28333,
"longitude": 20.05,
"name": "Saltvik",
@@ -94913,7 +89049,6 @@
"country_code": "SR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3382867,
"latitude": 5.88333,
"longitude": -56.31667,
"name": "Totness",
@@ -94923,7 +89058,6 @@
"country_code": "VC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3577900,
"latitude": 13.2879,
"longitude": -61.1302,
"name": "Georgetown",
@@ -94933,7 +89067,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3218364,
"latitude": 46.12556,
"longitude": 13.98167,
"name": "Cerkno",
@@ -94943,7 +89076,6 @@
"country_code": "AG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3576361,
"latitude": 17.06565,
"longitude": -61.87466,
"name": "Bolands",
@@ -94953,7 +89085,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187020,
"latitude": 46.59639,
"longitude": 15.16722,
"name": "Vuzenica",
@@ -94963,7 +89094,6 @@
"country_code": "AF",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1456960,
"latitude": 34.39561,
"longitude": 68.86618,
"name": "Ma\u012bd\u0101n Shahr",
@@ -94973,7 +89103,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194213,
"latitude": 46.58667,
"longitude": 16.28028,
"name": "Odranci",
@@ -94983,7 +89112,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192570,
"latitude": 46.23694,
"longitude": 15.0925,
"name": "Prebold",
@@ -94993,7 +89121,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3188606,
"latitude": 46.62778,
"longitude": 16.32028,
"name": "Turni\u0161\u010de",
@@ -95003,7 +89130,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187706,
"latitude": 45.84667,
"longitude": 13.96306,
"name": "Vipava",
@@ -95013,7 +89139,6 @@
"country_code": "FO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2621808,
"latitude": 62.24398,
"longitude": -6.81395,
"name": "Fuglafj\u00f8r\u00f0ur",
@@ -95023,7 +89148,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3183500,
"latitude": 43.94593,
"longitude": 12.4185,
"name": "Acquaviva",
@@ -95033,7 +89157,6 @@
"country_code": "LV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 461539,
"latitude": 57.76694,
"longitude": 24.8825,
"name": "Aloja",
@@ -95043,7 +89166,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3195054,
"latitude": 45.89556,
"longitude": 13.6075,
"name": "Miren",
@@ -95053,7 +89175,6 @@
"country_code": "VU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2136825,
"latitude": -19.55,
"longitude": 169.26667,
"name": "Isangel",
@@ -95063,7 +89184,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3197373,
"latitude": 46.48389,
"longitude": 13.78944,
"name": "Kranjska Gora",
@@ -95073,7 +89193,6 @@
"country_code": "SX",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3513392,
"latitude": 18.026,
"longitude": -63.04582,
"name": "Philipsburg",
@@ -95083,7 +89202,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3041776,
"latitude": 60.21667,
"longitude": 19.75,
"name": "Hammarland",
@@ -95093,7 +89211,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3191039,
"latitude": 46.68167,
"longitude": 15.64806,
"name": "\u0160entilj",
@@ -95103,7 +89220,6 @@
"country_code": "BB",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3373790,
"latitude": 13.18672,
"longitude": -59.63808,
"name": "Holetown",
@@ -95113,7 +89229,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194086,
"latitude": 46.38778,
"longitude": 15.44667,
"name": "Oplotnica",
@@ -95123,7 +89238,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3198354,
"latitude": 46.08861,
"longitude": 13.63972,
"name": "Kanal",
@@ -95133,7 +89247,6 @@
"country_code": "GD",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3579891,
"latitude": 12.21667,
"longitude": -61.63333,
"name": "Sauteurs",
@@ -95143,7 +89256,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3202019,
"latitude": 45.68472,
"longitude": 13.97028,
"name": "Diva\u010da",
@@ -95153,7 +89265,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042062,
"latitude": 47.22038,
"longitude": 9.50935,
"name": "Gamprin",
@@ -95163,7 +89274,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 784239,
"latitude": 41.44528,
"longitude": 21.02667,
"name": "Vrane\u0161tica",
@@ -95173,7 +89283,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3198165,
"latitude": 46.40361,
"longitude": 15.79111,
"name": "Kidri\u010devo",
@@ -95183,7 +89292,6 @@
"country_code": "LC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3576894,
"latitude": 13.93333,
"longitude": -61.03333,
"name": "Anse La Raye",
@@ -95193,7 +89301,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3197983,
"latitude": 46.24806,
"longitude": 13.57722,
"name": "Kobarid",
@@ -95203,7 +89310,6 @@
"country_code": "FO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2611060,
"latitude": 61.55557,
"longitude": -6.81109,
"name": "Tv\u00f8royri",
@@ -95213,7 +89319,6 @@
"country_code": "DM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575660,
"latitude": 15.25,
"longitude": -61.38333,
"name": "Pointe Michel",
@@ -95223,7 +89328,6 @@
"country_code": "WF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4034821,
"latitude": -13.28163,
"longitude": -176.17453,
"name": "Mata-Utu",
@@ -95233,7 +89337,6 @@
"country_code": "ZW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 888225,
"latitude": -18.93149,
"longitude": 27.80696,
"name": "Lupane",
@@ -95243,7 +89346,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3199347,
"latitude": 46.02361,
"longitude": 14.29917,
"name": "Horjul",
@@ -95253,7 +89355,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3177299,
"latitude": 43.92831,
"longitude": 12.49798,
"name": "Faetano",
@@ -95263,7 +89364,6 @@
"country_code": "AI",
"elevation": 7,
"feature_code": "PPLC",
- "geonameid": 3573374,
"latitude": 18.21704,
"longitude": -63.05783,
"name": "The Valley",
@@ -95273,7 +89373,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3202524,
"latitude": 46.57444,
"longitude": 16.29056,
"name": "\u010cren\u0161ovci",
@@ -95283,7 +89382,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192802,
"latitude": 46.31194,
"longitude": 15.57917,
"name": "Polj\u010dane",
@@ -95293,7 +89391,6 @@
"country_code": "BQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3513426,
"latitude": 17.48268,
"longitude": -62.98324,
"name": "Oranjestad",
@@ -95303,7 +89400,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 635815,
"latitude": 60.25,
"longitude": 20.11667,
"name": "Sund",
@@ -95313,7 +89409,6 @@
"country_code": "GU",
"elevation": 3,
"feature_code": "PPLC",
- "geonameid": 4044012,
"latitude": 13.47567,
"longitude": 144.74886,
"name": "Hag\u00e5t\u00f1a",
@@ -95323,7 +89418,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3186270,
"latitude": 45.83389,
"longitude": 14.92917,
"name": "\u017du\u017eemberk",
@@ -95333,17 +89427,24 @@
"country_code": "FO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2616914,
"latitude": 62.05111,
"longitude": -7.19389,
"name": "Mi\u00f0v\u00e1gur",
"population": 1040
},
+ {
+ "country_code": "PR",
+ "elevation": 291,
+ "feature_code": "PPLA",
+ "latitude": 18.2519,
+ "longitude": -66.99212,
+ "name": "Las Mar\u00edas",
+ "population": 1031
+ },
{
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3041807,
"latitude": 60.21249,
"longitude": 19.61442,
"name": "Ecker\u00f6",
@@ -95353,7 +89454,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042037,
"latitude": 47.23123,
"longitude": 9.54678,
"name": "Schellenberg",
@@ -95363,7 +89463,6 @@
"country_code": "AG",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3576074,
"latitude": 17.09682,
"longitude": -61.77046,
"name": "Parham",
@@ -95373,7 +89472,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187840,
"latitude": 46.58361,
"longitude": 16.16528,
"name": "Ver\u017eej",
@@ -95383,7 +89481,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3170472,
"latitude": 43.90451,
"longitude": 12.42142,
"name": "Poggio di Chiesanuova",
@@ -95393,7 +89490,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3201897,
"latitude": 46.65139,
"longitude": 16.3525,
"name": "Dobrovnik",
@@ -95403,7 +89499,6 @@
"country_code": "SM",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3172906,
"latitude": 43.90878,
"longitude": 12.48201,
"name": "Monte Giardino",
@@ -95413,7 +89508,6 @@
"country_code": "BM",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3573197,
"latitude": 32.29149,
"longitude": -64.77797,
"name": "Hamilton",
@@ -95423,7 +89517,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3201901,
"latitude": 46.055,
"longitude": 14.41722,
"name": "Dobrova",
@@ -95433,7 +89526,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3201355,
"latitude": 46.43667,
"longitude": 15.95361,
"name": "Dornava",
@@ -95443,7 +89535,6 @@
"country_code": "NF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2161314,
"latitude": -29.05459,
"longitude": 167.96628,
"name": "Kingston",
@@ -95453,7 +89544,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252423,
"latitude": 27.3331,
"longitude": 91.55424,
"name": "Trashigang",
@@ -95463,7 +89553,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252451,
"latitude": 27.21689,
"longitude": 90.65794,
"name": "Shemgang",
@@ -95473,7 +89562,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3187598,
"latitude": 46.38167,
"longitude": 15.29583,
"name": "Vitanje",
@@ -95483,7 +89571,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3192560,
"latitude": 46.3025,
"longitude": 14.42306,
"name": "Preddvor",
@@ -95493,7 +89580,6 @@
"country_code": "VC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3577844,
"latitude": 13.01667,
"longitude": -61.23333,
"name": "Port Elizabeth",
@@ -95503,7 +89589,6 @@
"country_code": "ET",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 6913519,
"latitude": 11.50099,
"longitude": 41.20098,
"name": "Semera",
@@ -95513,7 +89598,6 @@
"country_code": "BS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3572627,
"latitude": 24.03333,
"longitude": -74.51667,
"name": "Cockburn Town",
@@ -95523,7 +89607,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3194873,
"latitude": 46.13694,
"longitude": 14.745,
"name": "Morav\u010de",
@@ -95533,7 +89616,6 @@
"country_code": "VA",
"elevation": 55,
"feature_code": "PPLC",
- "geonameid": 6691831,
"latitude": 41.90236,
"longitude": 12.45332,
"name": "Vatican City",
@@ -95543,7 +89625,6 @@
"country_code": "SI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3193463,
"latitude": 46.60694,
"longitude": 15.67667,
"name": "Pesnica pri Mariboru",
@@ -95553,7 +89634,6 @@
"country_code": "KN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575487,
"latitude": 17.35,
"longitude": -62.73333,
"name": "Cayon",
@@ -95563,7 +89643,6 @@
"country_code": "KN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575156,
"latitude": 17.35,
"longitude": -62.83333,
"name": "Sandy Point Town",
@@ -95573,7 +89652,6 @@
"country_code": "VC",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3577933,
"latitude": 13.28333,
"longitude": -61.25,
"name": "Chateaubelair",
@@ -95583,7 +89661,6 @@
"country_code": "GY",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3377301,
"latitude": 8.2,
"longitude": -59.78333,
"name": "Mabaruma",
@@ -95593,7 +89670,6 @@
"country_code": "VU",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2136697,
"latitude": -16.09992,
"longitude": 167.41636,
"name": "Lakatoro",
@@ -95603,7 +89679,6 @@
"country_code": "SH",
"elevation": 10,
"feature_code": "PPLC",
- "geonameid": 3370903,
"latitude": -15.93872,
"longitude": -5.71675,
"name": "Jamestown",
@@ -95613,7 +89688,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 659949,
"latitude": 60.01667,
"longitude": 20.41667,
"name": "F\u00f6gl\u00f6",
@@ -95623,7 +89697,6 @@
"country_code": "NU",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4036284,
"latitude": -19.05952,
"longitude": -169.91867,
"name": "Alofi",
@@ -95633,7 +89706,6 @@
"country_code": "FO",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2614212,
"latitude": 61.8425,
"longitude": -6.80778,
"name": "Sandur",
@@ -95643,7 +89715,6 @@
"country_code": "KN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575284,
"latitude": 17.31667,
"longitude": -62.71667,
"name": "Monkey Hill",
@@ -95653,7 +89724,6 @@
"country_code": "KN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575441,
"latitude": 17.41297,
"longitude": -62.81528,
"name": "Dieppe Bay Town",
@@ -95663,7 +89733,6 @@
"country_code": "BT",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 1252578,
"latitude": 27.90372,
"longitude": 89.72689,
"name": "Gasa",
@@ -95673,17 +89742,24 @@
"country_code": "SH",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2411397,
"latitude": -7.93333,
"longitude": -14.41667,
"name": "Georgetown",
"population": 538
},
+ {
+ "country_code": "TK",
+ "elevation": 0,
+ "feature_code": "PPLA",
+ "latitude": -8.54212,
+ "longitude": -172.51591,
+ "name": "Atafu Village",
+ "population": 524
+ },
{
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 660521,
"latitude": 60.41165,
"longitude": 21.04534,
"name": "Br\u00e4nd\u00f6",
@@ -95693,7 +89769,6 @@
"country_code": "CX",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 2078127,
"latitude": -10.42172,
"longitude": 105.67912,
"name": "Flying Fish Cove",
@@ -95703,7 +89778,6 @@
"country_code": "BQ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3513173,
"latitude": 17.6259,
"longitude": -63.24919,
"name": "The Bottom",
@@ -95713,7 +89787,6 @@
"country_code": "CV",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3374338,
"latitude": 15.03333,
"longitude": -24.33333,
"name": "Porto dos Mosteiros",
@@ -95723,7 +89796,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3041792,
"latitude": 60.37453,
"longitude": 19.84455,
"name": "Geta",
@@ -95733,7 +89805,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 632421,
"latitude": 60.25,
"longitude": 20.38333,
"name": "V\u00e5rd\u00f6",
@@ -95743,7 +89814,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 650395,
"latitude": 60.26013,
"longitude": 20.77892,
"name": "Kumlinge",
@@ -95753,7 +89823,6 @@
"country_code": "KN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3575458,
"latitude": 17.16667,
"longitude": -62.61667,
"name": "Cotton Ground",
@@ -95763,7 +89832,6 @@
"country_code": "LI",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3042049,
"latitude": 47.18516,
"longitude": 9.54437,
"name": "Planken",
@@ -95773,7 +89841,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 651986,
"latitude": 59.92051,
"longitude": 20.90883,
"name": "K\u00f6kar",
@@ -95783,7 +89850,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 647455,
"latitude": 60.11695,
"longitude": 20.25819,
"name": "Lumparland",
@@ -95793,7 +89859,6 @@
"country_code": "NZ",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 4032804,
"latitude": -43.95353,
"longitude": -176.55973,
"name": "Waitangi",
@@ -95803,7 +89868,6 @@
"country_code": "PW",
"elevation": 3,
"feature_code": "PPLA",
- "geonameid": 1559804,
"latitude": 7.49567,
"longitude": 134.63671,
"name": "Melekeok Village",
@@ -95813,7 +89877,6 @@
"country_code": "SH",
"elevation": 10,
"feature_code": "PPLA",
- "geonameid": 3370726,
"latitude": -37.06757,
"longitude": -12.31155,
"name": "Edinburgh of the Seven Seas",
@@ -95823,7 +89886,6 @@
"country_code": "BS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3572620,
"latitude": 22.76667,
"longitude": -74.21667,
"name": "Colonel Hill",
@@ -95833,7 +89895,6 @@
"country_code": "GR",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 735972,
"latitude": 40.25715,
"longitude": 24.24498,
"name": "Karyes",
@@ -95843,7 +89904,6 @@
"country_code": "PW",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 7670994,
"latitude": 8.08228,
"longitude": 134.71725,
"name": "Kayangel",
@@ -95853,7 +89913,6 @@
"country_code": "AX",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 636158,
"latitude": 60.13023,
"longitude": 20.66683,
"name": "Sottunga",
@@ -95863,7 +89922,6 @@
"country_code": "CC",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 7304591,
"latitude": -12.15681,
"longitude": 96.82251,
"name": "West Island",
@@ -95873,7 +89931,6 @@
"country_code": "MK",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 796037,
"latitude": 41.57722,
"longitude": 21.0,
"name": "Oslomej",
@@ -95883,7 +89940,6 @@
"country_code": "BS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3571650,
"latitude": 23.63333,
"longitude": -74.83333,
"name": "Port Nelson",
@@ -95893,7 +89949,6 @@
"country_code": "PN",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 4030723,
"latitude": -25.06597,
"longitude": -130.10147,
"name": "Adamstown",
@@ -95903,7 +89958,6 @@
"country_code": "TF",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 1546102,
"latitude": -49.35,
"longitude": 70.21667,
"name": "Port-aux-Fran\u00e7ais",
@@ -95913,7 +89967,6 @@
"country_code": "AS",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 5881150,
"latitude": -11.05528,
"longitude": -171.08833,
"name": "Taulaga",
@@ -95923,7 +89976,6 @@
"country_code": "MN",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 2032054,
"latitude": 48.06667,
"longitude": 114.5,
"name": "Choybalsan",
@@ -95933,7 +89985,6 @@
"country_code": "PA",
"elevation": 0,
"feature_code": "PPLA",
- "geonameid": 3710114,
"latitude": 9.56528,
"longitude": -78.95333,
"name": "El Porvenir",
@@ -95943,4060 +89994,9 @@
"country_code": "GS",
"elevation": 0,
"feature_code": "PPLC",
- "geonameid": 3426466,
"latitude": -54.28111,
"longitude": -36.5092,
"name": "Grytviken",
"population": 2
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1120985,
- "latitude": 30.96667,
- "longitude": 61.88333,
- "name": "Zaranj",
- "population": 0
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1122747,
- "latitude": 32.62675,
- "longitude": 65.87331,
- "name": "Tarinkot",
- "population": 0
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1130469,
- "latitude": 35.4207,
- "longitude": 70.92214,
- "name": "P\u0101r\u016bn",
- "population": 0
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1131833,
- "latitude": 33.72178,
- "longitude": 66.13023,
- "name": "N\u012bl\u012b",
- "population": 0
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1145904,
- "latitude": 34.51952,
- "longitude": 65.25094,
- "name": "Chaghchar\u0101n",
- "population": 0
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1147242,
- "latitude": 34.82417,
- "longitude": 67.82167,
- "name": "B\u0101my\u0101n",
- "population": 0
- },
- {
- "country_code": "AF",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1429434,
- "latitude": 35.31292,
- "longitude": 69.51519,
- "name": "B\u0101z\u0101rak",
- "population": 0
- },
- {
- "country_code": "AG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3576057,
- "latitude": 17.11667,
- "longitude": -61.8,
- "name": "Piggotts",
- "population": 0
- },
- {
- "country_code": "AG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3576260,
- "latitude": 17.02741,
- "longitude": -61.78136,
- "name": "Falmouth",
- "population": 0
- },
- {
- "country_code": "AO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2239076,
- "latitude": -9.29782,
- "longitude": 14.91162,
- "name": "N\u2019dalatando",
- "population": 0
- },
- {
- "country_code": "AS",
- "elevation": 6,
- "feature_code": "PPLA",
- "geonameid": 5881165,
- "latitude": -14.23361,
- "longitude": -169.51444,
- "name": "Ta`\u016b",
- "population": 0
- },
- {
- "country_code": "AZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 585915,
- "latitude": 40.44808,
- "longitude": 49.75502,
- "name": "Khirdalan",
- "population": 0
- },
- {
- "country_code": "BB",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3373430,
- "latitude": 13.18333,
- "longitude": -59.56667,
- "name": "Welchman Hall",
- "population": 0
- },
- {
- "country_code": "BS",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3572233,
- "latitude": 26.31667,
- "longitude": -77.56667,
- "name": "Hard Bargain",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1252395,
- "latitude": 27.48615,
- "longitude": 89.89915,
- "name": "Wangdue Phodrang",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1252460,
- "latitude": 26.86395,
- "longitude": 90.26745,
- "name": "Sarpang",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1252526,
- "latitude": 27.66787,
- "longitude": 91.18393,
- "name": "Lhuentse",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1252608,
- "latitude": 27.0219,
- "longitude": 90.12291,
- "name": "Tsirang",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1252610,
- "latitude": 27.0989,
- "longitude": 89.53604,
- "name": "Tsimasham",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1337301,
- "latitude": 27.54918,
- "longitude": 90.7525,
- "name": "Jakar",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1337360,
- "latitude": 26.89903,
- "longitude": 89.09951,
- "name": "Samtse",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1337379,
- "latitude": 27.03795,
- "longitude": 91.40305,
- "name": "Pemagatshel",
- "population": 0
- },
- {
- "country_code": "BT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1337388,
- "latitude": 26.80069,
- "longitude": 91.50519,
- "name": "Samdrup Jongkhar",
- "population": 0
- },
- {
- "country_code": "CV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3374117,
- "latitude": 14.86667,
- "longitude": -24.71667,
- "name": "Vila Nova Sintra",
- "population": 0
- },
- {
- "country_code": "CV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3374165,
- "latitude": 16.56667,
- "longitude": -24.36667,
- "name": "Tarrafal de S\u00e3o Nicolau",
- "population": 0
- },
- {
- "country_code": "CV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3374275,
- "latitude": 17.18561,
- "longitude": -25.07243,
- "name": "Ribeira Grande",
- "population": 0
- },
- {
- "country_code": "CV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3374360,
- "latitude": 15.0836,
- "longitude": -23.63236,
- "name": "Picos",
- "population": 0
- },
- {
- "country_code": "CV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3374707,
- "latitude": 14.89054,
- "longitude": -24.29343,
- "name": "Cova Figueira",
- "population": 0
- },
- {
- "country_code": "CV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3374794,
- "latitude": 15.18333,
- "longitude": -23.6,
- "name": "Calheta",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2475744,
- "latitude": 36.71182,
- "longitude": 4.04591,
- "name": "Tizi Ouzou",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2475860,
- "latitude": 35.60722,
- "longitude": 1.81081,
- "name": "Tissemsilt",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2476028,
- "latitude": 36.58972,
- "longitude": 2.4475,
- "name": "Tipasa",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2476301,
- "latitude": 27.67111,
- "longitude": -8.14744,
- "name": "Tindouf",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2476897,
- "latitude": 35.37103,
- "longitude": 1.31699,
- "name": "Tiaret",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2477461,
- "latitude": 35.40417,
- "longitude": 8.12417,
- "name": "T\u00e9bessa",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2479215,
- "latitude": 36.28639,
- "longitude": 7.95111,
- "name": "Souk Ahras",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2481700,
- "latitude": 36.19112,
- "longitude": 5.41373,
- "name": "S\u00e9tif",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2483668,
- "latitude": 35.73734,
- "longitude": 0.55599,
- "name": "Relizane",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2486690,
- "latitude": 35.70583,
- "longitude": 4.54194,
- "name": "M\u2019Sila",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2490098,
- "latitude": 35.39664,
- "longitude": 0.14027,
- "name": "Mascara",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2491889,
- "latitude": 35.43583,
- "longitude": 7.14333,
- "name": "Khenchela",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2492913,
- "latitude": 36.82055,
- "longitude": 5.76671,
- "name": "Jijel",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2497323,
- "latitude": 36.7672,
- "longitude": 8.31377,
- "name": "El Tarf",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2497411,
- "latitude": 33.35608,
- "longitude": 6.86319,
- "name": "El Oued",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2498543,
- "latitude": 33.68318,
- "longitude": 1.01927,
- "name": "El Bayadh",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2498611,
- "latitude": 36.16525,
- "longitude": 1.33452,
- "name": "Chlef",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2500017,
- "latitude": 34.67279,
- "longitude": 3.263,
- "name": "Djelfa",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2502958,
- "latitude": 36.37489,
- "longitude": 3.902,
- "name": "Bouira",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2503701,
- "latitude": 36.07322,
- "longitude": 4.76108,
- "name": "Bordj Bou Arreridj",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2503769,
- "latitude": 36.47004,
- "longitude": 2.8277,
- "name": "Blida",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2503826,
- "latitude": 34.85038,
- "longitude": 5.72805,
- "name": "Biskra",
- "population": 0
- },
- {
- "country_code": "DZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2508228,
- "latitude": 36.26406,
- "longitude": 1.9679,
- "name": "A\u00efn Defla",
- "population": 0
- },
- {
- "country_code": "EC",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3650472,
- "latitude": 0.8,
- "longitude": -77.71667,
- "name": "Tulc\u00e1n",
- "population": 0
- },
- {
- "country_code": "EC",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3652743,
- "latitude": -0.46667,
- "longitude": -76.96667,
- "name": "Puerto Francisco de Orellana",
- "population": 0
- },
- {
- "country_code": "EG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 349158,
- "latitude": 30.55258,
- "longitude": 31.00904,
- "name": "Shib\u012bn al Kawm",
- "population": 0
- },
- {
- "country_code": "EG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 360923,
- "latitude": 25.4514,
- "longitude": 30.54635,
- "name": "Al Kh\u0101rijah",
- "population": 0
- },
- {
- "country_code": "FJ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2204506,
- "latitude": -17.61667,
- "longitude": 177.46667,
- "name": "Lautoka",
- "population": 0
- },
- {
- "country_code": "FM",
- "elevation": 5,
- "feature_code": "PPLA",
- "geonameid": 2081342,
- "latitude": 5.32479,
- "longitude": 163.00781,
- "name": "Kosrae State Legislature",
- "population": 0
- },
- {
- "country_code": "FM",
- "elevation": 90,
- "feature_code": "PPLC",
- "geonameid": 2081986,
- "latitude": 6.92477,
- "longitude": 158.16109,
- "name": "Palikir - National Government Center",
- "population": 0
- },
- {
- "country_code": "FM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 4043034,
- "latitude": 6.964,
- "longitude": 158.2062,
- "name": "Kolonia",
- "population": 0
- },
- {
- "country_code": "FM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7648112,
- "latitude": 9.51638,
- "longitude": 138.12167,
- "name": "Colonia",
- "population": 0
- },
- {
- "country_code": "GT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3590616,
- "latitude": 15.1,
- "longitude": -90.26667,
- "name": "Salam\u00e1",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 57,
- "feature_code": "PPLA",
- "geonameid": 4044121,
- "latitude": 13.44689,
- "longitude": 144.80144,
- "name": "Mangilao Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 55,
- "feature_code": "PPLA",
- "geonameid": 7267954,
- "latitude": 13.46274,
- "longitude": 144.75461,
- "name": "Sinajana Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 3,
- "feature_code": "PPLA",
- "geonameid": 7267962,
- "latitude": 13.29851,
- "longitude": 144.6633,
- "name": "Umatac Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 98,
- "feature_code": "PPLA",
- "geonameid": 7840191,
- "latitude": 13.51744,
- "longitude": 144.83912,
- "name": "Dededo Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 90,
- "feature_code": "PPLA",
- "geonameid": 7854557,
- "latitude": 13.40983,
- "longitude": 144.77543,
- "name": "Yona Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 90,
- "feature_code": "PPLA",
- "geonameid": 7869842,
- "latitude": 13.3548,
- "longitude": 144.75589,
- "name": "Talofofo Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 75,
- "feature_code": "PPLA",
- "geonameid": 7869850,
- "latitude": 13.27126,
- "longitude": 144.6745,
- "name": "Merizo Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 5,
- "feature_code": "PPLA",
- "geonameid": 7869852,
- "latitude": 13.47188,
- "longitude": 144.71657,
- "name": "Asan-Maina Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 107,
- "feature_code": "PPLA",
- "geonameid": 7870492,
- "latitude": 13.29987,
- "longitude": 144.76207,
- "name": "Inarajan Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 3,
- "feature_code": "PPLA",
- "geonameid": 7870639,
- "latitude": 13.38801,
- "longitude": 144.65929,
- "name": "Agat Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 120,
- "feature_code": "PPLA",
- "geonameid": 7871342,
- "latitude": 13.53565,
- "longitude": 144.89309,
- "name": "Yigo Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 65,
- "feature_code": "PPLA",
- "geonameid": 7871406,
- "latitude": 13.46912,
- "longitude": 144.79961,
- "name": "Barrigada Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 13,
- "feature_code": "PPLA",
- "geonameid": 7871474,
- "latitude": 13.48715,
- "longitude": 144.78077,
- "name": "Tamuning-Tumon-Harmon Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 43,
- "feature_code": "PPLA",
- "geonameid": 7873865,
- "latitude": 13.46796,
- "longitude": 144.78218,
- "name": "Mongmong-Toto-Maite Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 3,
- "feature_code": "PPLA",
- "geonameid": 7873868,
- "latitude": 13.47215,
- "longitude": 144.75803,
- "name": "Hagatna Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 52,
- "feature_code": "PPLA",
- "geonameid": 7873952,
- "latitude": 13.46494,
- "longitude": 144.74758,
- "name": "Agana Heights Mayor's Office",
- "population": 0
- },
- {
- "country_code": "GU",
- "elevation": 38,
- "feature_code": "PPLA",
- "geonameid": 7874392,
- "latitude": 13.44682,
- "longitude": 144.75898,
- "name": "Chalan Pago-Ordot Mayor's Office",
- "population": 0
- },
- {
- "country_code": "IN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1272508,
- "latitude": 26.1425,
- "longitude": 91.78889,
- "name": "Dispur",
- "population": 0
- },
- {
- "country_code": "IQ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 96994,
- "latitude": 36.8695,
- "longitude": 42.99398,
- "name": "Dah\u016bk",
- "population": 0
- },
- {
- "country_code": "IR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 66093,
- "latitude": 30.66824,
- "longitude": 51.58796,
- "name": "Y\u0101s\u016bj",
- "population": 0
- },
- {
- "country_code": "JM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3488613,
- "latitude": 18.21895,
- "longitude": -78.1332,
- "name": "Savanna-la-Mar",
- "population": 0
- },
- {
- "country_code": "JM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3488713,
- "latitude": 18.43581,
- "longitude": -77.20098,
- "name": "Saint Ann\u2019s Bay",
- "population": 0
- },
- {
- "country_code": "KH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1821940,
- "latitude": 10.98333,
- "longitude": 104.78333,
- "name": "Tak\u00eav",
- "population": 0
- },
- {
- "country_code": "KH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1821993,
- "latitude": 11.08785,
- "longitude": 105.79935,
- "name": "Svay Ri\u0115ng",
- "population": 0
- },
- {
- "country_code": "KH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1822331,
- "latitude": 12.45262,
- "longitude": 105.58726,
- "name": "S\u00e2mra\u00f4ng",
- "population": 0
- },
- {
- "country_code": "KH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1822610,
- "latitude": 11.48682,
- "longitude": 105.32533,
- "name": "Prey V\u00eang",
- "population": 0
- },
- {
- "country_code": "KH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 6690237,
- "latitude": 12.44756,
- "longitude": 107.24768,
- "name": "Sen monorom",
- "population": 0
- },
- {
- "country_code": "KH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 6942076,
- "latitude": 13.7468,
- "longitude": 107.00452,
- "name": "Banlung",
- "population": 0
- },
- {
- "country_code": "KP",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1871871,
- "latitude": 39.24639,
- "longitude": 125.87194,
- "name": "P\u2019y\u014fngs\u014fng",
- "population": 0
- },
- {
- "country_code": "KP",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2043837,
- "latitude": 41.40167,
- "longitude": 128.17778,
- "name": "Hyesan-si",
- "population": 0
- },
- {
- "country_code": "KR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1840982,
- "latitude": 34.98972,
- "longitude": 126.47139,
- "name": "Muan",
- "population": 0
- },
- {
- "country_code": "LA",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1655123,
- "latitude": 19.45,
- "longitude": 103.21667,
- "name": "Muang Ph\u00f4nsavan",
- "population": 0
- },
- {
- "country_code": "LB",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 274723,
- "latitude": 34.54278,
- "longitude": 36.07972,
- "name": "Halba",
- "population": 0
- },
- {
- "country_code": "LB",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 277226,
- "latitude": 33.83389,
- "longitude": 35.54417,
- "name": "Baabda",
- "population": 0
- },
- {
- "country_code": "LR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2274288,
- "latitude": 5.46,
- "longitude": -9.58278,
- "name": "River Cess",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 454372,
- "latitude": 56.18333,
- "longitude": 26.51667,
- "name": "Vecv\u0101rkava",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 454602,
- "latitude": 56.43333,
- "longitude": 21.86667,
- "name": "Vai\u0146ode",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 456015,
- "latitude": 57.0,
- "longitude": 27.13333,
- "name": "Rug\u0101ji",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 456090,
- "latitude": 56.97389,
- "longitude": 24.63361,
- "name": "Ropa\u017ei",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 456685,
- "latitude": 56.94194,
- "longitude": 23.91083,
- "name": "Pi\u0146\u0137i",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 456698,
- "latitude": 56.41667,
- "longitude": 24.0,
- "name": "Pilsrund\u0101le",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 457211,
- "latitude": 57.48333,
- "longitude": 25.48333,
- "name": "Murmui\u017ea",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 457676,
- "latitude": 57.01111,
- "longitude": 24.96306,
- "name": "M\u0101lpils",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 457822,
- "latitude": 57.15444,
- "longitude": 24.64444,
- "name": "Loja",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 458687,
- "latitude": 56.65,
- "longitude": 25.43333,
- "name": "Koknese",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 459357,
- "latitude": 56.7325,
- "longitude": 23.01361,
- "name": "Jaunpils",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 459359,
- "latitude": 57.18333,
- "longitude": 26.05,
- "name": "Jaunpiebalga",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 459563,
- "latitude": 57.09806,
- "longitude": 24.68639,
- "name": "In\u010dukalns",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 459984,
- "latitude": 56.55,
- "longitude": 27.88333,
- "name": "Cibla",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 460187,
- "latitude": 57.51667,
- "longitude": 22.35,
- "name": "Dundaga",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 460659,
- "latitude": 57.12944,
- "longitude": 24.27444,
- "name": "Carnikava",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 461180,
- "latitude": 56.95,
- "longitude": 27.65,
- "name": "Baltinava",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 461631,
- "latitude": 56.13333,
- "longitude": 27.01667,
- "name": "Aglona",
- "population": 0
- },
- {
- "country_code": "LV",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 461650,
- "latitude": 57.07583,
- "longitude": 24.32139,
- "name": "\u0100da\u017ei",
- "population": 0
- },
- {
- "country_code": "LY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 88930,
- "latitude": 24.16667,
- "longitude": 23.26962,
- "name": "Al Kufrah",
- "population": 0
- },
- {
- "country_code": "LY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2218970,
- "latitude": 32.7571,
- "longitude": 12.72764,
- "name": "Az Z\u0101w\u012byah",
- "population": 0
- },
- {
- "country_code": "MA",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2558545,
- "latitude": 35.24333,
- "longitude": -3.93092,
- "name": "Al Hoce\u00efma",
- "population": 0
- },
- {
- "country_code": "MD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 617659,
- "latitude": 48.38528,
- "longitude": 27.43917,
- "name": "Ocni\u0163a",
- "population": 0
- },
- {
- "country_code": "MD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 617993,
- "latitude": 46.82583,
- "longitude": 28.59361,
- "name": "H\u00eence\u015fti",
- "population": 0
- },
- {
- "country_code": "MD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 618057,
- "latitude": 47.3075,
- "longitude": 29.11028,
- "name": "Cocieri",
- "population": 0
- },
- {
- "country_code": "MD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 618510,
- "latitude": 48.36278,
- "longitude": 27.085,
- "name": "Briceni",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2080115,
- "latitude": 9.82511,
- "longitude": 169.31065,
- "name": "Likiep",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2080422,
- "latitude": 5.92098,
- "longitude": 169.64335,
- "name": "Jabor",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2080970,
- "latitude": 10.21972,
- "longitude": 169.97967,
- "name": "Ailuk",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 4039539,
- "latitude": 8.70576,
- "longitude": 171.2275,
- "name": "Taroa",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7304467,
- "latitude": 8.77479,
- "longitude": 167.73919,
- "name": "Ebaye",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306511,
- "latitude": 11.34735,
- "longitude": 162.33733,
- "name": "Enewetak",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306512,
- "latitude": 4.58199,
- "longitude": 168.69636,
- "name": "Ebon",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306513,
- "latitude": 8.1499,
- "longitude": 171.16869,
- "name": "Aur",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306514,
- "latitude": 7.06691,
- "longitude": 171.55413,
- "name": "Arno",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306515,
- "latitude": 7.27717,
- "longitude": 168.8203,
- "name": "Airuk",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306516,
- "latitude": 6.0815,
- "longitude": 171.73502,
- "name": "Mili",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306517,
- "latitude": 8.92217,
- "longitude": 166.26344,
- "name": "Lae",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306518,
- "latitude": 11.22778,
- "longitude": 169.84739,
- "name": "Utrik",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306519,
- "latitude": 8.93218,
- "longitude": 165.76416,
- "name": "Ujae",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306520,
- "latitude": 11.16351,
- "longitude": 166.89408,
- "name": "Rongelap",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306521,
- "latitude": 7.76007,
- "longitude": 168.23072,
- "name": "Loen",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306522,
- "latitude": 5.59944,
- "longitude": 168.10282,
- "name": "Namdrik",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306523,
- "latitude": 10.27531,
- "longitude": 170.86461,
- "name": "Mejit",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306524,
- "latitude": 8.31221,
- "longitude": 167.37662,
- "name": "Lib",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306525,
- "latitude": 5.64387,
- "longitude": 169.12109,
- "name": "Kili",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306526,
- "latitude": 7.75003,
- "longitude": 168.97513,
- "name": "Jabat",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306528,
- "latitude": 9.45429,
- "longitude": 170.23674,
- "name": "Wotje",
- "population": 0
- },
- {
- "country_code": "MH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7306529,
- "latitude": 10.16575,
- "longitude": 166.01022,
- "name": "Wotho",
- "population": 0
- },
- {
- "country_code": "MK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 833258,
- "latitude": 42.04,
- "longitude": 21.425,
- "name": "\u0428\u0443\u0442\u043e \u041e\u0440\u0438\u0437\u0430\u0440\u0438",
- "population": 0
- },
- {
- "country_code": "MM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1302849,
- "latitude": 16.89056,
- "longitude": 97.63333,
- "name": "Hpa-an",
- "population": 0
- },
- {
- "country_code": "MM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1325443,
- "latitude": 22.65,
- "longitude": 93.61667,
- "name": "Hakha",
- "population": 0
- },
- {
- "country_code": "MN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1515007,
- "latitude": 47.74167,
- "longitude": 96.84444,
- "name": "Uliastay",
- "population": 0
- },
- {
- "country_code": "MN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1516393,
- "latitude": 46.37222,
- "longitude": 96.25833,
- "name": "Altai",
- "population": 0
- },
- {
- "country_code": "MN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2031517,
- "latitude": 47.70694,
- "longitude": 106.95278,
- "name": "Dzuunmod",
- "population": 0
- },
- {
- "country_code": "MN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2032533,
- "latitude": 46.19444,
- "longitude": 100.71806,
- "name": "Bayanhongor",
- "population": 0
- },
- {
- "country_code": "MN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2032814,
- "latitude": 46.26389,
- "longitude": 102.775,
- "name": "Arvayheer",
- "population": 0
- },
- {
- "country_code": "MP",
- "elevation": 4,
- "feature_code": "PPLA",
- "geonameid": 7828739,
- "latitude": 15.20833,
- "longitude": 145.71664,
- "name": "Northern Islands Municipality - Mayor's Office",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2375558,
- "latitude": 22.71873,
- "longitude": -12.45205,
- "name": "Zou\u00e9rate",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2376719,
- "latitude": 15.15895,
- "longitude": -12.1829,
- "name": "S\u00e9libabi",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2376898,
- "latitude": 16.52004,
- "longitude": -15.80727,
- "name": "Rosso",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2377539,
- "latitude": 16.6162,
- "longitude": -7.2535,
- "name": "N\u00e9ma",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2378538,
- "latitude": 16.61659,
- "longitude": -11.40453,
- "name": "Kiffa",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2378736,
- "latitude": 16.14653,
- "longitude": -13.50474,
- "name": "Ka\u00e9di",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2381291,
- "latitude": 16.6614,
- "longitude": -9.6149,
- "name": "\u2019Ayo\u00fbn el \u2019Atro\u00fbs",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2381334,
- "latitude": 20.51686,
- "longitude": -13.04986,
- "name": "Atar",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2381659,
- "latitude": 17.0481,
- "longitude": -13.9209,
- "name": "Aleg",
- "population": 0
- },
- {
- "country_code": "MR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2381690,
- "latitude": 19.69694,
- "longitude": -14.41639,
- "name": "Akjoujt",
- "population": 0
- },
- {
- "country_code": "MS",
- "elevation": 0,
- "feature_code": "PPLC",
- "geonameid": 3578069,
- "latitude": 16.70555,
- "longitude": -62.21292,
- "name": "Plymouth",
- "population": 0
- },
- {
- "country_code": "MU",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1545752,
- "latitude": -19.68333,
- "longitude": 63.41667,
- "name": "Port Mathurin",
- "population": 0
- },
- {
- "country_code": "MW",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 925475,
- "latitude": -11.46556,
- "longitude": 34.02071,
- "name": "Mzuzu",
- "population": 0
- },
- {
- "country_code": "NA",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3357804,
- "latitude": -17.46667,
- "longitude": 16.33333,
- "name": "Eenhana",
- "population": 0
- },
- {
- "country_code": "NG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2319480,
- "latitude": 5.03333,
- "longitude": 7.92657,
- "name": "Uyo",
- "population": 0
- },
- {
- "country_code": "NG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2325590,
- "latitude": 7.76667,
- "longitude": 4.56667,
- "name": "Osogbo",
- "population": 0
- },
- {
- "country_code": "NG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2338313,
- "latitude": 6.59422,
- "longitude": 3.33748,
- "name": "Ikeja",
- "population": 0
- },
- {
- "country_code": "NG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2352379,
- "latitude": 7.621,
- "longitude": 5.2215,
- "name": "Ado-Ekiti",
- "population": 0
- },
- {
- "country_code": "NP",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 6254845,
- "latitude": 29.26083,
- "longitude": 80.94,
- "name": "Dipayal",
- "population": 0
- },
- {
- "country_code": "OM",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 287939,
- "latitude": 19.93333,
- "longitude": 56.31667,
- "name": "Haym\u0101\u2019",
- "population": 0
- },
- {
- "country_code": "PH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1696710,
- "latitude": 7.8257,
- "longitude": 123.437,
- "name": "Pagadian",
- "population": 0
- },
- {
- "country_code": "PH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1722186,
- "latitude": 8.94917,
- "longitude": 125.54361,
- "name": "Butuan",
- "population": 0
- },
- {
- "country_code": "PR",
- "elevation": 12,
- "feature_code": "PPLA",
- "geonameid": 4565575,
- "latitude": 18.14913,
- "longitude": -65.44266,
- "name": "Isabel Segunda",
- "population": 0
- },
- {
- "country_code": "PT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2270985,
- "latitude": 38.01506,
- "longitude": -7.86323,
- "name": "Beja",
- "population": 0
- },
- {
- "country_code": "PT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2738785,
- "latitude": 40.53733,
- "longitude": -7.26575,
- "name": "Guarda",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 20,
- "feature_code": "PPLA",
- "geonameid": 1559446,
- "latitude": 7.33978,
- "longitude": 134.47326,
- "name": "Koror State",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1559543,
- "latitude": 7.62416,
- "longitude": 134.64208,
- "name": "Ulimang",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 15,
- "feature_code": "PPLA",
- "geonameid": 1559820,
- "latitude": 7.48826,
- "longitude": 134.48562,
- "name": "Ngereklmadel",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 3,
- "feature_code": "PPLA",
- "geonameid": 1559864,
- "latitude": 7.53134,
- "longitude": 134.52713,
- "name": "Imeong Hamlet",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 3,
- "feature_code": "PPLA",
- "geonameid": 4038014,
- "latitude": 7.55456,
- "longitude": 134.63612,
- "name": "Ngerkeai",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 53,
- "feature_code": "PPLA",
- "geonameid": 4038170,
- "latitude": 7.6957,
- "longitude": 134.63054,
- "name": "Mengellang",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 4038282,
- "latitude": 6.90601,
- "longitude": 134.12997,
- "name": "Angaur State",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 70,
- "feature_code": "PPLC",
- "geonameid": 7303944,
- "latitude": 7.50043,
- "longitude": 134.62355,
- "name": "Melekeok - Palau State Capital",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 3,
- "feature_code": "PPLA",
- "geonameid": 7671223,
- "latitude": 7.04192,
- "longitude": 134.25561,
- "name": "Kloulklubed",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7701549,
- "latitude": 7.36451,
- "longitude": 134.51484,
- "name": "Ngetkib",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 10,
- "feature_code": "PPLA",
- "geonameid": 7732276,
- "latitude": 7.44613,
- "longitude": 134.47678,
- "name": "Ngchemiangel",
- "population": 0
- },
- {
- "country_code": "PW",
- "elevation": 6,
- "feature_code": "PPLA",
- "geonameid": 7732297,
- "latitude": 7.60986,
- "longitude": 134.5744,
- "name": "Ngardmau",
- "population": 0
- },
- {
- "country_code": "PY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3436725,
- "latitude": -25.1,
- "longitude": -57.56667,
- "name": "Villa Hayes",
- "population": 0
- },
- {
- "country_code": "PY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3439101,
- "latitude": -25.51667,
- "longitude": -54.61667,
- "name": "Ciudad del Este",
- "population": 0
- },
- {
- "country_code": "PY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3439297,
- "latitude": -26.15,
- "longitude": -56.4,
- "name": "Caazap\u00e1",
- "population": 0
- },
- {
- "country_code": "QA",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 289524,
- "latitude": 25.46972,
- "longitude": 51.3975,
- "name": "Umm \u015eal\u0101l \u2018Al\u012b",
- "population": 0
- },
- {
- "country_code": "QA",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 289739,
- "latitude": 26.12933,
- "longitude": 51.2009,
- "name": "Mad\u012bnat ash Sham\u0101l",
- "population": 0
- },
- {
- "country_code": "QA",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 289847,
- "latitude": 25.57744,
- "longitude": 51.48306,
- "name": "Az\u0327 Z\u0327a\u2018\u0101yin",
- "population": 0
- },
- {
- "country_code": "RU",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 515805,
- "latitude": 43.06451,
- "longitude": 44.74171,
- "name": "Oktyabr\u2019skoye",
- "population": 0
- },
- {
- "country_code": "RU",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 6283098,
- "latitude": 57.74456,
- "longitude": 41.00193,
- "name": "Oktyabr\u2019skiy",
- "population": 0
- },
- {
- "country_code": "RU",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 6313621,
- "latitude": 43.22257,
- "longitude": 44.77261,
- "name": "Magas",
- "population": 0
- },
- {
- "country_code": "RW",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7062967,
- "latitude": -2.35187,
- "longitude": 29.75089,
- "name": "Nyanza",
- "population": 0
- },
- {
- "country_code": "SB",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2109528,
- "latitude": -8.14497,
- "longitude": 159.59212,
- "name": "Buala",
- "population": 0
- },
- {
- "country_code": "SD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 363417,
- "latitude": 19.16667,
- "longitude": 30.48333,
- "name": "Dongola",
- "population": 0
- },
- {
- "country_code": "SD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 369004,
- "latitude": 12.05,
- "longitude": 24.88333,
- "name": "Nyala",
- "population": 0
- },
- {
- "country_code": "SD",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 379062,
- "latitude": 14.03493,
- "longitude": 35.38344,
- "name": "Al Qadarif",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3186442,
- "latitude": 46.40472,
- "longitude": 14.14,
- "name": "\u017dirovnica",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3186498,
- "latitude": 46.38333,
- "longitude": 15.36667,
- "name": "Zre\u010de",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3186509,
- "latitude": 46.38333,
- "longitude": 14.46667,
- "name": "Zgornje Jezersko",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3186538,
- "latitude": 46.63917,
- "longitude": 15.61556,
- "name": "Zgornja Kungota",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3186557,
- "latitude": 46.275,
- "longitude": 15.79389,
- "name": "\u017detale",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3186705,
- "latitude": 46.39167,
- "longitude": 16.04972,
- "name": "Zavr\u010d",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3187336,
- "latitude": 46.24389,
- "longitude": 14.95139,
- "name": "Vransko",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3187428,
- "latitude": 45.90694,
- "longitude": 13.6775,
- "name": "Vol\u010dja Draga",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3187575,
- "latitude": 46.5275,
- "longitude": 15.93944,
- "name": "Vitomarci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3187813,
- "latitude": 45.85,
- "longitude": 14.69417,
- "name": "Videm",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3188128,
- "latitude": 45.83222,
- "longitude": 14.63639,
- "name": "Velike La\u0161\u010de",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3188181,
- "latitude": 46.57194,
- "longitude": 16.34694,
- "name": "Velika Polana",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3189014,
- "latitude": 46.48417,
- "longitude": 16.08361,
- "name": "Toma\u017e pri Ormo\u017eu",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3189098,
- "latitude": 46.65806,
- "longitude": 16.09167,
- "name": "Ti\u0161ina",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3189227,
- "latitude": 46.23611,
- "longitude": 15.01833,
- "name": "Tabor",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3189403,
- "latitude": 46.64917,
- "longitude": 15.84417,
- "name": "Sveta Ana v Slovenskih Goricah",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3189917,
- "latitude": 46.46583,
- "longitude": 15.76722,
- "name": "Star\u0161e",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190150,
- "latitude": 46.39417,
- "longitude": 16.26806,
- "name": "Sredi\u0161\u010de ob Dravi",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190199,
- "latitude": 46.50306,
- "longitude": 15.74528,
- "name": "Spodnji Duplek",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190249,
- "latitude": 46.40889,
- "longitude": 15.84694,
- "name": "Spodnja Hajdina",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190360,
- "latitude": 46.41944,
- "longitude": 14.69361,
- "name": "Sol\u010dava",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190391,
- "latitude": 45.76111,
- "longitude": 14.63556,
- "name": "Sodra\u017eica",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190495,
- "latitude": 46.04444,
- "longitude": 14.84417,
- "name": "\u0160martno pri Litiji",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190498,
- "latitude": 46.33333,
- "longitude": 15.03333,
- "name": "\u0160martno ob Paki",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190510,
- "latitude": 46.22722,
- "longitude": 15.51917,
- "name": "\u0160marje pri Jel\u0161ah",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3190722,
- "latitude": 45.90667,
- "longitude": 15.29139,
- "name": "\u0160kocjan",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191024,
- "latitude": 45.97778,
- "longitude": 15.09556,
- "name": "\u0160entrupert",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191033,
- "latitude": 45.84,
- "longitude": 15.33611,
- "name": "\u0160entjernej",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191072,
- "latitude": 45.64611,
- "longitude": 15.18222,
- "name": "Semi\u010d",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191329,
- "latitude": 46.825,
- "longitude": 16.29806,
- "name": "\u0160alovci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191578,
- "latitude": 46.22944,
- "longitude": 15.70028,
- "name": "Rogatec",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191579,
- "latitude": 46.8,
- "longitude": 16.03333,
- "name": "Roga\u0161ovci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191678,
- "latitude": 46.535,
- "longitude": 15.27278,
- "name": "Ribnica na Pohorju",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191756,
- "latitude": 46.31667,
- "longitude": 14.91667,
- "name": "Re\u010dica ob Savinji",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3191839,
- "latitude": 46.54306,
- "longitude": 14.96917,
- "name": "Ravne na Koro\u0161kem",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3192230,
- "latitude": 46.70667,
- "longitude": 16.15639,
- "name": "Puconci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3192899,
- "latitude": 46.58694,
- "longitude": 15.33056,
- "name": "Podvelka",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3192986,
- "latitude": 46.33528,
- "longitude": 15.88,
- "name": "Podlehnik",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3193075,
- "latitude": 46.15694,
- "longitude": 15.59861,
- "name": "Pod\u010detrtek",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3194403,
- "latitude": 45.77167,
- "longitude": 14.50583,
- "name": "Nova Vas",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3194595,
- "latitude": 46.27278,
- "longitude": 14.31722,
- "name": "Naklo",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3194904,
- "latitude": 45.93417,
- "longitude": 15.14083,
- "name": "Mokronog",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3195036,
- "latitude": 45.86028,
- "longitude": 15.08333,
- "name": "Mirna Pe\u010d",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3195460,
- "latitude": 46.38333,
- "longitude": 15.95,
- "name": "Markovci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3195883,
- "latitude": 46.31722,
- "longitude": 15.66722,
- "name": "Makole",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3195898,
- "latitude": 46.35167,
- "longitude": 15.73361,
- "name": "Maj\u0161perk",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3196049,
- "latitude": 46.16667,
- "longitude": 14.7,
- "name": "Lukovica pri Dom\u017ealah",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3196133,
- "latitude": 46.35611,
- "longitude": 14.74667,
- "name": "Lu\u010de",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3196281,
- "latitude": 46.01667,
- "longitude": 14.36667,
- "name": "Log pri Brezovici",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3196842,
- "latitude": 46.83694,
- "longitude": 16.08333,
- "name": "Kuzma",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3197226,
- "latitude": 46.56833,
- "longitude": 16.13861,
- "name": "Kri\u017eevci pri Ljutomeru",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3197442,
- "latitude": 46.075,
- "longitude": 15.56028,
- "name": "Kozje",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3197462,
- "latitude": 45.61,
- "longitude": 13.93556,
- "name": "Kozina",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3197581,
- "latitude": 45.84611,
- "longitude": 15.42222,
- "name": "Kostanjevica na Krki",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3197842,
- "latitude": 45.81528,
- "longitude": 13.74833,
- "name": "Komen",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3197959,
- "latitude": 46.68472,
- "longitude": 16.39778,
- "name": "Kobilje",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3198531,
- "latitude": 46.48472,
- "longitude": 15.97139,
- "name": "Jur\u0161inci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3198549,
- "latitude": 46.5695,
- "longitude": 16.02347,
- "name": "Sveti Jurij ob \u0160\u010davnici",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3199078,
- "latitude": 45.93833,
- "longitude": 14.80444,
- "name": "Ivan\u010dna Gorica",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3199268,
- "latitude": 45.70111,
- "longitude": 14.59111,
- "name": "Hrib-Lo\u0161ki Potok",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3199361,
- "latitude": 46.82333,
- "longitude": 16.33417,
- "name": "Hodo\u0161",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3199685,
- "latitude": 46.57667,
- "longitude": 15.87694,
- "name": "Sveta Trojica v Slovenskih Goricah",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3199765,
- "latitude": 46.8,
- "longitude": 16.1,
- "name": "Grad",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3199948,
- "latitude": 46.80528,
- "longitude": 16.2225,
- "name": "Gornji Petrovci",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3200016,
- "latitude": 46.29528,
- "longitude": 14.80833,
- "name": "Gornji Grad",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3200307,
- "latitude": 46.41472,
- "longitude": 16.01389,
- "name": "Gori\u0161nica",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3200379,
- "latitude": 46.10722,
- "longitude": 14.14806,
- "name": "Gorenja Vas",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3201748,
- "latitude": 46.08861,
- "longitude": 14.60083,
- "name": "Dol pri Ljubljani",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3201896,
- "latitude": 45.99639,
- "longitude": 13.52639,
- "name": "Dobrovo",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3201927,
- "latitude": 46.3375,
- "longitude": 15.22639,
- "name": "Dobrna",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3201988,
- "latitude": 46.13667,
- "longitude": 15.40889,
- "name": "Dobje pri Planini",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3202058,
- "latitude": 46.50056,
- "longitude": 15.875,
- "name": "Destrnik",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3202704,
- "latitude": 46.57056,
- "longitude": 15.94361,
- "name": "Cerkvenjak",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3202711,
- "latitude": 46.25417,
- "longitude": 14.48861,
- "name": "Cerklje na Gorenjskem",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3202877,
- "latitude": 46.72083,
- "longitude": 16.0225,
- "name": "Cankova",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3203550,
- "latitude": 46.28972,
- "longitude": 15.03889,
- "name": "Braslov\u010de",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3204044,
- "latitude": 46.05889,
- "longitude": 15.66417,
- "name": "Bistrica ob Sotli",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3204296,
- "latitude": 46.60861,
- "longitude": 15.88833,
- "name": "Benedikt v Slovenskih Goricah",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3204796,
- "latitude": 46.69722,
- "longitude": 15.91056,
- "name": "Apa\u010de",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3215453,
- "latitude": 46.52167,
- "longitude": 16.28111,
- "name": "Razkri\u017eje",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3339111,
- "latitude": 46.36861,
- "longitude": 15.90639,
- "name": "Videm pri Ptuju",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3339128,
- "latitude": 46.55,
- "longitude": 15.495,
- "name": "Selnica ob Dravi",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8198423,
- "latitude": 46.34529,
- "longitude": 15.99517,
- "name": "Cirkulane",
- "population": 0
- },
- {
- "country_code": "SI",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8198424,
- "latitude": 45.86196,
- "longitude": 15.22308,
- "name": "\u0160marje\u0161ke Toplice",
- "population": 0
- },
- {
- "country_code": "SN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2244802,
- "latitude": 14.83417,
- "longitude": -17.10611,
- "name": "Thi\u00e8s",
- "population": 0
- },
- {
- "country_code": "SN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2248752,
- "latitude": 15.6175,
- "longitude": -13.33028,
- "name": "Matam",
- "population": 0
- },
- {
- "country_code": "SN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2249222,
- "latitude": 15.61867,
- "longitude": -16.22436,
- "name": "Louga",
- "population": 0
- },
- {
- "country_code": "SN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2251007,
- "latitude": 14.10594,
- "longitude": -15.5508,
- "name": "Kaffrine",
- "population": 0
- },
- {
- "country_code": "SN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2251911,
- "latitude": 14.35806,
- "longitude": -16.58583,
- "name": "Fatick",
- "population": 0
- },
- {
- "country_code": "SN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2252309,
- "latitude": 14.66278,
- "longitude": -16.3925,
- "name": "Diourbel",
- "population": 0
- },
- {
- "country_code": "SO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 49747,
- "latitude": 4.12129,
- "longitude": 43.88945,
- "name": "Xuddur",
- "population": 0
- },
- {
- "country_code": "SO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 54225,
- "latitude": 1.71594,
- "longitude": 44.77166,
- "name": "Marka",
- "population": 0
- },
- {
- "country_code": "SO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 58933,
- "latitude": 8.40536,
- "longitude": 48.48446,
- "name": "Garoowe",
- "population": 0
- },
- {
- "country_code": "SO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 63949,
- "latitude": 1.08333,
- "longitude": 42.58333,
- "name": "Bu\u2019aale",
- "population": 0
- },
- {
- "country_code": "SO",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8045596,
- "latitude": 9.89206,
- "longitude": 43.38531,
- "name": "Baki",
- "population": 0
- },
- {
- "country_code": "SR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3384482,
- "latitude": 5.06667,
- "longitude": -54.96667,
- "name": "Brokopondo",
- "population": 0
- },
- {
- "country_code": "SS",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 371712,
- "latitude": 8.30016,
- "longitude": 27.99028,
- "name": "Kajok",
- "population": 0
- },
- {
- "country_code": "ST",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2410805,
- "latitude": 1.63726,
- "longitude": 7.41783,
- "name": "Santo Ant\u00f3nio",
- "population": 0
- },
- {
- "country_code": "SY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 170905,
- "latitude": 32.61889,
- "longitude": 36.10213,
- "name": "Dar\u2018\u0101",
- "population": 0
- },
- {
- "country_code": "TH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1611453,
- "latitude": 14.99433,
- "longitude": 103.10392,
- "name": "Buriram",
- "population": 0
- },
- {
- "country_code": "TH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1611475,
- "latitude": 18.36304,
- "longitude": 103.65194,
- "name": "Bueng Kan",
- "population": 0
- },
- {
- "country_code": "TH",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1621035,
- "latitude": 14.58839,
- "longitude": 100.45283,
- "name": "Ang Thong",
- "population": 0
- },
- {
- "country_code": "TK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 4031110,
- "latitude": -9.38516,
- "longitude": -171.24675,
- "name": "Fale old settlement",
- "population": 0
- },
- {
- "country_code": "TK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7522183,
- "latitude": -8.54212,
- "longitude": -172.51591,
- "name": "Atafu Village",
- "population": 0
- },
- {
- "country_code": "TL",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1651810,
- "latitude": -8.99241,
- "longitude": 125.50816,
- "name": "Ainaro",
- "population": 0
- },
- {
- "country_code": "TL",
- "elevation": 913,
- "feature_code": "PPLA",
- "geonameid": 1651816,
- "latitude": -8.72806,
- "longitude": 125.56639,
- "name": "Aileu",
- "population": 0
- },
- {
- "country_code": "TL",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1937274,
- "latitude": -8.51861,
- "longitude": 127.0025,
- "name": "Lospalos",
- "population": 0
- },
- {
- "country_code": "TN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2469473,
- "latitude": 33.35495,
- "longitude": 10.50548,
- "name": "Medenine",
- "population": 0
- },
- {
- "country_code": "TN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2472479,
- "latitude": 36.75306,
- "longitude": 10.21889,
- "name": "Ben Arous",
- "population": 0
- },
- {
- "country_code": "TN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 2473247,
- "latitude": 36.86012,
- "longitude": 10.19337,
- "name": "Ariana",
- "population": 0
- },
- {
- "country_code": "TR",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 321025,
- "latitude": 38.40115,
- "longitude": 42.10784,
- "name": "Bitlis",
- "population": 0
- },
- {
- "country_code": "TT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3573819,
- "latitude": 11.25,
- "longitude": -60.58333,
- "name": "Roxborough",
- "population": 0
- },
- {
- "country_code": "TT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3573840,
- "latitude": 10.3,
- "longitude": -61.18333,
- "name": "Rio Claro",
- "population": 0
- },
- {
- "country_code": "TT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3573935,
- "latitude": 10.7,
- "longitude": -61.53333,
- "name": "Petit Valley",
- "population": 0
- },
- {
- "country_code": "TT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3574309,
- "latitude": 10.64917,
- "longitude": -61.49889,
- "name": "Laventille",
- "population": 0
- },
- {
- "country_code": "TZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 156589,
- "latitude": -6.13333,
- "longitude": 39.28333,
- "name": "Koani",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 225797,
- "latitude": 2.51355,
- "longitude": 30.90909,
- "name": "Zombo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226330,
- "latitude": 1.49417,
- "longitude": 33.45528,
- "name": "Serere",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226676,
- "latitude": -0.29889,
- "longitude": 30.13361,
- "name": "Rubirizi",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 226727,
- "latitude": -0.72,
- "longitude": 31.48389,
- "name": "Rakai",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 227605,
- "latitude": 1.04111,
- "longitude": 30.48111,
- "name": "Ntoroko",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 227843,
- "latitude": 1.43139,
- "longitude": 33.77722,
- "name": "Ngora",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 228094,
- "latitude": 0.83611,
- "longitude": 33.68611,
- "name": "Namutumba",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 228429,
- "latitude": 0.75167,
- "longitude": 32.385,
- "name": "Nakaseke",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229144,
- "latitude": -0.68417,
- "longitude": 30.07,
- "name": "Mitoma",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229397,
- "latitude": 3.27042,
- "longitude": 30.95532,
- "name": "Maracha",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 229630,
- "latitude": -0.41611,
- "longitude": 31.40806,
- "name": "Lwengo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230331,
- "latitude": 0.50222,
- "longitude": 31.04139,
- "name": "Kyegegwa",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 230725,
- "latitude": 3.41364,
- "longitude": 30.95994,
- "name": "Koboko",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231083,
- "latitude": 1.87633,
- "longitude": 32.06225,
- "name": "Kiryandongo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231532,
- "latitude": 1.04333,
- "longitude": 33.7975,
- "name": "Kibuku",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231554,
- "latitude": -0.62602,
- "longitude": 30.43594,
- "name": "Kibingo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 231947,
- "latitude": 1.89111,
- "longitude": 33.96611,
- "name": "Katakwi",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232307,
- "latitude": 0.17722,
- "longitude": 31.88111,
- "name": "Kanoni",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232490,
- "latitude": -0.16969,
- "longitude": 31.75847,
- "name": "Kalungu",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232526,
- "latitude": 0.89444,
- "longitude": 33.49944,
- "name": "Kaliro",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 232571,
- "latitude": -0.30889,
- "longitude": 32.225,
- "name": "Kalangala",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233019,
- "latitude": 1.73889,
- "longitude": 33.15944,
- "name": "Kaberamaido",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233093,
- "latitude": 3.48361,
- "longitude": 34.14917,
- "name": "Kaabong",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233382,
- "latitude": 0.20333,
- "longitude": 32.08806,
- "name": "Gombe",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233563,
- "latitude": 1.89833,
- "longitude": 33.1775,
- "name": "Dokolo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 233840,
- "latitude": 1.15167,
- "longitude": 33.155,
- "name": "Buyende",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234004,
- "latitude": 0.91194,
- "longitude": 33.95111,
- "name": "Butaleja",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234081,
- "latitude": -0.58528,
- "longitude": 30.21139,
- "name": "Bushenyi",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234259,
- "latitude": 2.11781,
- "longitude": 31.41163,
- "name": "Bulisa",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234306,
- "latitude": 1.16667,
- "longitude": 34.38333,
- "name": "Bulambuli",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234328,
- "latitude": 1.25917,
- "longitude": 34.75389,
- "name": "Bukwa",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234371,
- "latitude": -0.15778,
- "longitude": 31.60417,
- "name": "Bukomansimbi",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234412,
- "latitude": 1.31694,
- "longitude": 34.05056,
- "name": "Bukedea",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234480,
- "latitude": 0.3375,
- "longitude": 33.01056,
- "name": "Buikwe",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234637,
- "latitude": 1.01118,
- "longitude": 34.33112,
- "name": "Bududa",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234658,
- "latitude": 1.00389,
- "longitude": 33.92556,
- "name": "Budaka",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 234769,
- "latitude": 1.41667,
- "longitude": 34.53333,
- "name": "Binyin",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235186,
- "latitude": 2.00361,
- "longitude": 33.65111,
- "name": "Amuria",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235203,
- "latitude": 1.61556,
- "longitude": 32.83972,
- "name": "Amolatar",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235293,
- "latitude": 2.24472,
- "longitude": 33.25472,
- "name": "Alebtong",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 235574,
- "latitude": 2.70167,
- "longitude": 33.67611,
- "name": "Abim",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 448226,
- "latitude": 1.91667,
- "longitude": 34.78333,
- "name": "Nakapiripirit",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 448243,
- "latitude": 2.63422,
- "longitude": 32.00106,
- "name": "Nwoya",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7911405,
- "latitude": -0.86864,
- "longitude": 30.83019,
- "name": "Isingiro",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7911406,
- "latitude": 0.97842,
- "longitude": 34.3743,
- "name": "Manafwa",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 7911407,
- "latitude": 2.235,
- "longitude": 32.38495,
- "name": "Oyam",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8015635,
- "latitude": 2.81388,
- "longitude": 31.93868,
- "name": "Amuru",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051532,
- "latitude": 0.23983,
- "longitude": 33.88491,
- "name": "Namayingo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051533,
- "latitude": 0.22216,
- "longitude": 33.20608,
- "name": "Kitamilo",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051534,
- "latitude": 1.20062,
- "longitude": 31.80062,
- "name": "Kyankwanzi",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051535,
- "latitude": 2.40015,
- "longitude": 32.80034,
- "name": "Kole",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051536,
- "latitude": 2.50038,
- "longitude": 33.50065,
- "name": "Otuke",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051537,
- "latitude": 2.25139,
- "longitude": 34.25012,
- "name": "Napak",
- "population": 0
- },
- {
- "country_code": "UG",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 8051538,
- "latitude": 0.70076,
- "longitude": 33.3002,
- "name": "Luuka Town",
- "population": 0
- },
- {
- "country_code": "UY",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3439748,
- "latitude": -33.5165,
- "longitude": -56.89957,
- "name": "Trinidad",
- "population": 0
- },
- {
- "country_code": "UZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1514027,
- "latitude": 41.01944,
- "longitude": 68.94083,
- "name": "Amir Timur",
- "population": 0
- },
- {
- "country_code": "UZ",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1538229,
- "latitude": 40.09294,
- "longitude": 65.3712,
- "name": "Navoiy Shahri",
- "population": 0
- },
- {
- "country_code": "VC",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3577879,
- "latitude": 13.2,
- "longitude": -61.26667,
- "name": "Layou",
- "population": 0
- },
- {
- "country_code": "VC",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3577962,
- "latitude": 13.23333,
- "longitude": -61.26667,
- "name": "Barrouallie",
- "population": 0
- },
- {
- "country_code": "VE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3633622,
- "latitude": 10.34447,
- "longitude": -67.04325,
- "name": "Los Teques",
- "population": 0
- },
- {
- "country_code": "VE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 3648546,
- "latitude": 8.62261,
- "longitude": -70.20749,
- "name": "Barinas",
- "population": 0
- },
- {
- "country_code": "VI",
- "elevation": 6,
- "feature_code": "PPLA",
- "geonameid": 4795577,
- "latitude": 18.33134,
- "longitude": -64.79375,
- "name": "Cruz Bay",
- "population": 0
- },
- {
- "country_code": "VN",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1570815,
- "latitude": 22.53333,
- "longitude": 103.35,
- "name": "Phong Th\u1ed5",
- "population": 0
- },
- {
- "country_code": "XK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 783770,
- "latitude": 42.9075,
- "longitude": 20.84028,
- "name": "Zve\u010dan",
- "population": 0
- },
- {
- "country_code": "XK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 783802,
- "latitude": 42.91444,
- "longitude": 20.68972,
- "name": "Zubin Potok",
- "population": 0
- },
- {
- "country_code": "XK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 784372,
- "latitude": 42.32139,
- "longitude": 21.35833,
- "name": "Vitina",
- "population": 0
- },
- {
- "country_code": "XK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 785388,
- "latitude": 42.23944,
- "longitude": 21.02722,
- "name": "\u0160trpce",
- "population": 0
- },
- {
- "country_code": "XK",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 790701,
- "latitude": 42.62833,
- "longitude": 20.89389,
- "name": "Glogovac",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 30789,
- "latitude": 14.70401,
- "longitude": 43.59904,
- "name": "Al Jab\u012bn",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 69426,
- "latitude": 13.12871,
- "longitude": 45.38073,
- "name": "Zinjib\u0101r",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 71334,
- "latitude": 16.94021,
- "longitude": 43.76394,
- "name": "\u015ea\u2018dah",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 76184,
- "latitude": 14.54274,
- "longitude": 44.40514,
- "name": "Dham\u0101r",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 77726,
- "latitude": 14.53766,
- "longitude": 46.83187,
- "name": "\u2018Ataq",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 78428,
- "latitude": 15.6594,
- "longitude": 43.94385,
- "name": "\u2018Amr\u0101n",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 78977,
- "latitude": 15.47007,
- "longitude": 43.54481,
- "name": "Al Ma\u1e29w\u012bt",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 79455,
- "latitude": 16.16406,
- "longitude": 44.77692,
- "name": "Al \u1e28azm",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 79700,
- "latitude": 16.20787,
- "longitude": 52.17605,
- "name": "Al Ghayz\u0327ah",
- "population": 0
- },
- {
- "country_code": "YE",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 80384,
- "latitude": 13.69572,
- "longitude": 44.73137,
- "name": "Dhalie",
- "population": 0
- },
- {
- "country_code": "YT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 921707,
- "latitude": -12.79674,
- "longitude": 45.27938,
- "name": "Pamanzi Be",
- "population": 0
- },
- {
- "country_code": "YT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 921900,
- "latitude": -12.7887,
- "longitude": 45.26994,
- "name": "Dzaoudzi",
- "population": 0
- },
- {
- "country_code": "YT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 921917,
- "latitude": -12.8436,
- "longitude": 45.18436,
- "name": "Dembeni",
- "population": 0
- },
- {
- "country_code": "YT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 922015,
- "latitude": -12.72391,
- "longitude": 45.05819,
- "name": "Acoua",
- "population": 0
- },
- {
- "country_code": "YT",
- "elevation": 0,
- "feature_code": "PPLA",
- "geonameid": 1090161,
- "latitude": -12.75944,
- "longitude": 45.08361,
- "name": "M'Tsangamouji",
- "population": 0
}
]
\ No newline at end of file
diff --git a/examples/cities/py/txt2json.py b/examples/cities/py/txt2json.py
deleted file mode 100644
index a11be8ac..00000000
--- a/examples/cities/py/txt2json.py
+++ /dev/null
@@ -1,74 +0,0 @@
-import json
-import math
-import re
-from ox.geo import get_country
-
-def read_table(source, target, keys, filter_=lambda x: True, map_=lambda x: x, sort_=lambda x: x):
- def parse_value(str, t):
- if type(t) == float:
- str = float(str) if str else t
- elif type(t) == int:
- str = int(str) if str else t
- return str
- data = []
- f = open(source)
- for r, row in enumerate(f):
- if row and row[0] != '#':
- item = {}
- cols = row[:-1].split('\t')
- for c, col in enumerate(cols):
- key = keys[c]
- if type(key['type']) == list:
- if col:
- col = col.split(',')
- value = map(lambda x: parse_value(x, key['type'][0]), col)
- else:
- value = []
- else:
- value = parse_value(col, key['type'])
- item[key['name']] = value
- if filter_(item):
- data.append(map_(item))
- data = sorted(data, key=sort_)
- f = open(target, 'w')
- f.write(json.dumps(data, indent=4, sort_keys=True))
- f.close()
- print len(data), 'cities'
-
-# http://download.geonames.org/export/dump/
-# http://www.geonames.org/export/codes.html
-source = '../txt/cities1000.txt'
-target = '../json/cities.json'
-keys = [
- {'name': 'geonameid', 'type': 0},
- {'name': 'name', 'type': ''},
- {'name': 'asciiname', 'type': ''},
- {'name': 'alternatenames', 'type': ['']},
- {'name': 'latitude', 'type': 0.0},
- {'name': 'longitude', 'type': 0.0},
- {'name': 'feature_class', 'type': ''},
- {'name': 'feature_code', 'type': ''},
- {'name': 'country_code', 'type': ''},
- {'name': 'cc2', 'type': ['']},
- {'name': 'admin1_code', 'type': ''},
- {'name': 'admin2_code', 'type': ''},
- {'name': 'admin3_code', 'type': ''},
- {'name': 'admin4_code', 'type': ''},
- {'name': 'population', 'type': 0},
- {'name': 'elevation', 'type': 0},
- {'name': 'gtopo30', 'type': 0},
- {'name': 'timezone', 'type': ''},
- {'name': 'modification_date', 'type': ''}
-]
-filter_ = lambda x: re.search('^PPL(C|A)$', x['feature_code']) or x['population'] >= 49589
-def map_(x):
- data = {}
- for key in [
- 'country_code', 'elevation', 'feature_code'
- 'latitude', 'longitude', 'name', 'population'
- ]:
- data[key] = x[key]
- return data
-sort_ = lambda x: -x['population']
-
-read_table(source, target, keys, filter_, map_, sort_)
\ No newline at end of file
diff --git a/examples/cities/txt/cities1000.txt b/examples/cities/txt/cities1000.txt
deleted file mode 100755
index 564a2ed6..00000000
--- a/examples/cities/txt/cities1000.txt
+++ /dev/null
@@ -1,122949 +0,0 @@
-3039163 Sant Julià de Lòria Sant Julia de Loria San Julia,San Julià,San-Dzhulija-de-Lorija,San-Khulija-de-Lorija,Sant Julia de Loria,Sant Julià de Lòria,sheng hu li ya-de luo li ya,Сан-Джулия-де-Лория,Сан-Хулия-де-Лория,サン・ジュリア・デ・ロリア教区,圣胡利娅-德洛里亚,圣胡利娅-德洛里亚 42.46372 1.49129 P PPLA AD 06 8022 921 Europe/Andorra 2008-10-15
-3039604 Pas de la Casa Pas de la Casa Pas de la Kasa,Пас де ла Каса 42.54277 1.73361 P PPL AD 03 2363 2050 2106 Europe/Andorra 2008-06-09
-3039678 Ordino Ordino Ordino,ao er di nuo,orudino jiao qu,Ордино,オルディノ教区,奥尔迪诺 42.55623 1.53319 P PPLA AD 05 3066 1296 Europe/Andorra 2009-12-11
-3040051 les Escaldes les Escaldes Ehskal'des-Ehndzhordani,Escaldes,Escaldes-Engordany,Les Escaldes,esukarudesu=engorudani jiao qu,lai sai si ka er de-en ge er da,Эскальдес-Энджордани,エスカルデス=エンゴルダニ教区,萊塞斯卡爾德-恩戈爾達,萊塞斯卡爾德-恩戈爾達 42.50729 1.53414 P PPLA AD 08 15853 1033 Europe/Andorra 2008-10-15
-3040132 la Massana la Massana La Macana,La Massana,La Maçana,La-Massana,la Massana,ma sa na,Ла-Массана,ラ・マサナ教区,马萨纳 42.54499 1.51483 P PPLA AD 04 7211 1245 Europe/Andorra 2008-10-15
-3040686 Encamp Encamp Ehnkam,Encamp,en kan pu,enkanpu jiao qu,Энкам,エンカンプ教区,恩坎普 42.53451 1.5767 P PPLA AD 03 11223 1241 Europe/Andorra 2012-01-18
-3041204 Canillo Canillo Canillo,Kanil'o,ka ni e,kaniryo jiao qu,Канильо,カニーリョ教区,卡尼略 42.5669 1.59556 P PPLA AD 02 3292 1538 Europe/Andorra 2012-01-18
-3041519 Arinsal Arinsal Arinsal,Аринсал 42.57205 1.48453 P PPL AD 04 1419 1465 Europe/Andorra 2010-01-29
-3041563 Andorra la Vella Andorra la Vella Ando-la-Vyey,Andora,Andora la Vela,Andora la Velja,Andora lja Vehl'ja,Andoro Malnova,Andorra,Andorra Tuan,Andorra a Vella,Andorra la Biella,Andorra la Vella,Andorra la Vielha,Andorra-a-Velha,Andorra-la-Vel'ja,Andorra-la-Vielye,Andorre-la-Vieille,Andò-la-Vyèy,Andòrra la Vièlha,an dao er cheng,andolalabeya,andwra la fyla,Ανδόρρα,Андора ла Веля,Андора ла Веља,Андора ля Вэлья,Андорра-ла-Велья,אנדורה לה וולה,أندورا لا فيلا,አንዶራ ላ ቬላ,アンドラ・ラ・ヴェリャ,安道爾城,안도라라베야 42.50779 1.52109 P PPLC AD 07 20430 1037 Europe/Andorra 2010-05-30
-290594 Umm al Qaywayn Umm al Qaywayn Um al Quweim,Umm al Qaiwain,Umm al Qawain,Umm al Qaywayn,Yumul al Quwain,am alqywyn,أم القيوين 25.56473 55.55517 P PPLA AE 07 44411 2 Asia/Dubai 2012-01-18
-291074 Ra’s al Khaymah Ra's al Khaymah Julfa,Khaimah,Ra's al Khaymah,Ras al Khaima,Ras al Khaimah,Ra’s al Khaymah,Rās al Khaima,ras alkhymt,رأس الخيمة 25.78953 55.9432 P PPLA AE 05 115949 2 Asia/Dubai 2012-01-18
-291279 Muzayri‘ Muzayri` Mezaira'a,Mezaira’a,Mizeir`ah,Mizeir‘ah,Mozayri`,Mozayri‘,Muzayri`,Muzayri‘ 23.14355 53.7881 P PPL AE 01 10000 123 Asia/Dubai 2012-01-18
-291696 Khawr Fakkān Khawr Fakkan Fakkan,Fakkān,Khawr Fakkan,Khawr Fakkān,Khawr al Fakkan,Khawr al Fakkān,Khor Fakhan,Khor Fakkan,Khor Fakkān,Khor al Fakhan,Khor al Fakkan,Khor al Fākhān,Khorfakan,Khorfakhan,Port Khor Fakkan 25.33132 56.34199 P PPL AE 06 33575 20 Asia/Dubai 2012-01-18
-292223 Dubai Dubai DXB,Dabei,Dibai,Dibay,Doubayi,Dubae,Dubai,Dubai emiraat,Dubaj,Dubajo,Dubajus,Dubay,Dubayy,Dubaï,Dúbæ,Fort Dabei,dby,dbyy,di bai,dobai,du bai,duba'i,dubai,dubi,tupay,Дубаи,Дубай,דובאי,دبئی,دبي,دبی,दुबई,துபாய்,ดูไบ,ドバイ,杜拜,迪拜,두바이 25.25817 55.30472 P PPLA AE 03 1137347 11 Asia/Dubai 2012-02-03
-292239 Dibā Diba Daba,Daba al-Hisn,Dabā,Dabā al-Ḥiṣn,Diba,Diba al Hisn,Dibah,Dibba,Dibba Al'-Khisn,Dibbah,Dibā,Dibā al Ḩişn,Dībā al Ḩişn,Hisn Diba,Husn Dibba,Дибба Аль-Хисн,Ḩişn Dibā 25.61955 56.27291 P PPL AE 06 26395 4 Asia/Dubai 2012-01-18
-292672 Sharjah Sharjah Al Sharjah,Ash 'Mariqah,Ash Shariqa,Ash Shariqah,Ash Shāriqa,Ash Shāriqah,Ash ’Mariqah,Ash-Shariqah' emiraat,Ash-Shāriqah' emiraat,Sarjo,Schardscha,Shardzha,Sharga,Sharijah,Shariqah,Sharja,Sharjah,Sharzha,Shārijah,Shāriqah,Shārja,alsharqt,carja,sharjh,sharqt,sharuja,xia er jia,Ŝarĵo,Шарджа,Шаржа,שארג'ה,الشارقة,شارجه,شارقة,சார்ஜா,シャールジャ,夏尔迦 25.35731 55.4033 P PPLA AE 06 543733 12 Asia/Dubai 2012-01-18
-292688 Ar Ruways Ar Ruways Ar Ru'ays,Ar Ruways,Ar Ru’ays,Ruwais 24.11028 52.73056 P PPL AE AE 01 16000 16 Asia/Dubai 2012-01-18
-292878 Al Fujayrah Al Fujayrah Al Fujayrah,Al-Fudjayra,Al-Fujayrah' emiraat,Fudschaira,Fudzhejra,Fujaira,Fujairah,Fujajro,Fujayrah,Fuĵajro,alfjyrt,fjyrt,fu ji la,fujaira,Фуджейра,الفجيرة,فجيرة,フジャイラ,富吉拉 25.11641 56.34141 P PPLA AE 04 62415 15 Asia/Dubai 2012-01-18
-292913 Al ‘Ayn Al `Ayn Al Ain,Al Ajn,Al `Ayn,Al ‘Ayn,Al'-Ajn,Al-Ain,Al-Ayn,Аль-Айн,العين 24.19167 55.76056 P PPL AE 01 408733 275 Asia/Dubai 2012-01-18
-292932 `Ajmān `Ajman Ajman,Al Ajman,`Ujman,`Ujmān 25.41111 55.43504 P PPLA AE 02 226172 4 Asia/Dubai 2009-03-03
-292953 Adh Dhayd Adh Dhayd Adh Dhaid,Adh Dhayd,Al Daid,Al-Dhayd,Dayd,Dhaid,Dhayd,Duhayd,Ihaid,aldhyd,الذيد,Ḑayd 25.28812 55.88157 P PPL AE 06 24716 114 Asia/Dubai 2012-01-18
-292968 Abu Dhabi Abu Dhabi AEbu Saby,Abu Dabi,Abu Dabis,Abu Dhabi,Abu Dhabi emiraat,Abu Zabi,Abu Zaby,Abu Zabye,Abu Zabyo,Abu Ḑabi,Abu-Dabi,Abu-Dabio,Abud Dhabi,Abú Dabí,Abú Dhabí,Abú Zabí,Abū Z̧aby,Abū Z̧abye,Abū Z̧abyo,Abū Z̧abī,Ampou Ntampi,Emirato de Abu Dabi,a bu zha bi,abudabi,abwzby,Äbu Saby,Αμπου Νταμπι,Αμπού Ντάμπι,Абу Даби,Абу-Даби,Абу-Дабі,אבו דאבי,أبوظبي,アブダビ,阿布扎比,아부다비 24.46667 54.36667 P PPLC AE 01 603492 6 Asia/Dubai 2012-01-18
-1120471 Zorkot Zorkot Vulusvali-Zorkot,Woludwali Zorkot,Woludwālī Zōṟkōt,Woluswali Zorkot,Woluswali Zurkowt,Woluswalī Zūrkowt,Woluswālī Zōṟkōt,Wuleswali Zor Kot,Wulêswālī Zōr Kōṯ,Zarkot,Zor Kot,Zorkot,Zowr Kowt,Zowṟ Kowṯ,Zur Kowt,Zurkot,Zōr Kōṯ,Zūr Kowṯ,Zūrkōt,zwr kwټ,زور کوټ 33.54222 69.73417 P PPLA2 AF 37 0 1844 Asia/Kabul 2012-02-28
-1120473 Wuluswālī Bihsūd Wuluswali Bihsud Behsud,Behsūd,Markaz-e Bihsud,Markaz-e Bihsūd,Olusvali Behsowd,Olusvālī Behsowd,Oluswali Behsud,Oluswālī Behsūḏ,Ulusvali-Bikhsud,Wuluswali Bihsud,Wuluswālī Bihsūd,mrkz bhswd,wlswaly bhswd,مرکز بهسود,ولسوالی بهسود 34.34528 67.90639 P PPLA2 AF 27 0 2941 Asia/Kabul 2012-02-28
-1120483 Kōhistān Kohistan Kohistan,Kohsan,Kohsān,Koshan,Kuhestan,Kuhsan,Kuhsān,Kōhistān,Kūhestān,khsan,kwhstan,Кошан,کهسان,کوهستان 34.65389 61.19778 P PPLA2 AF 11 12087 740 Asia/Kabul 2012-02-28
-1120484 Lāsh Lash Kohestan,Kohestān,Laorlash,Laorlush,Las,Lash,Las̄,Laurlas,Laurlash,Lawlas,Lawlash,Lawlāsh,Lawlās̄,Lowlash,Lowlāsh,Lowr Lash,Lowr Lāsh,Lāorlash,Lāorlush,Lāsh,lash,lwlash,لاش,لولاش 35.3782 64.77457 P PPLA2 AF 07 0 1927 Asia/Kabul 2012-02-28
-1120487 Tukzār Tukzar Kala Sangcharak,Kala Sangchārak,Qal`eh Sangcharek,Qala Sangcharak,Qal‘eh Sangchārek,Sangcarak,Sangcharak,Sangcārak,Takzar,Tokzar,Tokzār,Tuksar,Tukzar,Tukzār,Tākzār,Tūkzār,tkzar,twkzar,Токзар,توکزار,تکزار 35.94831 66.42132 P PPLA2 AF 33 12021 1210 Asia/Kabul 2012-02-28
-1120500 Mīray Miray Miray,Miri,Miṟay,Mīray,Mīrī,Salgar,Shalgar,S̄algaṟ,myry,ميری 33.32361 68.43944 P PPLA2 AF 08 0 2077 Asia/Kabul 2012-02-28
-1120501 Āq Kupruk Aq Kupruk Ak Kuprak,Ak Kupruk,Aq Kubruk,Aq Kupruk,Keshendah,Keshende,Keshendeh,Keshindeh,Keshīndeh,aq kbrk,aq kprk,Āq Kubruk,Āq Kupruk,آق کبرک,آق کپرک 36.08352 66.84029 P PPLA2 AF 30 0 719 Asia/Kabul 2012-02-28
-1120543 Zurmat Zurmat Bazar-e Zurmat,Bāzār-e Zurmat,Zarmal,Zormat,Zurmat,Zuṟmat,bazar zrmt,zrmt,بازار زرمت,زرمت 33.43778 69.02774 P PPLA2 AF 36 0 2150 Asia/Kabul 2012-02-28
-1120616 Zaybāk Zaybak Zaybak,Zaybāk,Zebak,Zeybak,Zeybāk,Zibak,Zēbāk,Zībāk,zybak,زیباک 36.52944 71.34833 P PPLA2 AF 01 0 2634 Asia/Kabul 2012-02-28
-1120627 Zīārat-e Shāh Maqşūd Ziarat-e Shah Maqsud Sah Agha,Shab Maqsud,Shah Agha,Shah Maksud,Shah Maqsud,Shakhaga,Shāb Maqsūd,Shāh Maqsūd,Shāh Āghā,Ziarat Shah Maqsud,Ziarat-Shakh-Maksud,Ziarat-e Shah Maqsud,Ziārat Shāh Maqsūd,Zyarate Sah Maqsud,Zyārate Šāh Maqsūd,Zīārat-e Shāh Maqşūd,shah agha,zyart shah mqswd,Šah Āghā,زيارتٔ شاه مقصود,زیارت شاه مقصود,شاه آغا 31.9848 65.4736 P PPLA2 AF 23 0 1577 Asia/Kabul 2012-02-28
-1120711 Zindah Jān Zindah Jan Fusanj,Fushanj,Fus̄anj,Fūshanj,Zendajan,Zendeh Jan,Zendeh Jān,Zenḏajān,Zindah Jan,Zindah Jān,Zindajan,Zindajān,zndh jan,زنده جان 34.34264 61.74675 P PPLA2 AF 11 10104 834 Asia/Kabul 2012-02-28
-1120863 Zarghūn Shahr Zarghun Shahr Katawaz,Katāwāz,Khayr Kot,Khayr Kut,Khayr Kūṯ,Khayṟ Kot,Zaraghun Sahr,Zaraghūn S̄ahr,Zarghun Sahr,Zarghun Shahr,Zarghūn Shahr,Zargun Shahr,Zargunsahr,Zaṟghun Sahr,Zaṟgūns̄ahr,zrghwn shhr,زرغون شهر 32.84734 68.44573 P PPL AF 29 13737 2120 Asia/Kabul 2012-01-16
-1120879 Zaṟah Sharan Zarah Sharan Sharan,Sharnah,Sherana,Sheranna,Zara Saran,Zara Šaran,Zara-Sharan,Zarah Sharan,Zareh Sharan,Zaṟah Sharan,زړه شرن 33.14667 68.79167 P PPL AF 29 7366 2153 Asia/Kabul 2012-01-16
-1120985 Zaranj Zaranj Zaranas,Zarani,Zaranj,Zhazang,zrnj,Зарани,زرنج 30.96667 61.88333 P PPLA AF 19 0 486 Asia/Kabul 2012-01-16
-1121045 Zamtō Kêlay Zamto Kelay Zamto,Zamto Kalay,Zamto Kelay,Zamtukalay,Zamtō,Zamtō Kêlay,zmtw,zmtw kly,زمتو,زمتو کلی 32.3726 66.17708 P PPLA2 AF 23 0 1925 Asia/Kabul 2012-02-28
-1121271 Yangī Qal‘ah Yangi Qal`ah Yangi Kala,Yangi Qal`ah,Yangi Qal`eh,Yangi Qala,Yangī Qal‘ah,Yangī Qal‘eh,Yengi Qal`eh,Yengī Qal‘eh,ینگی قلعه 37.46572 69.61131 P PPL AF 26 6541 471 Asia/Kabul 2012-01-16
-1121418 Yaḩyá Khēl Yahya Khel Ya Khel,Yahya Khel,Yahya Kheyl,Yahyakhel,Yakh'yakheyl',Yakh’yakheyl’,Yaḩyá Khēl,Yaḩyā Kheyl,Yaḩyākhēl,Yehyakhel,Yeḩyākhēl,یحیى خېل 32.93742 68.64622 P PPLA2 AF 29 0 2136 Asia/Kabul 2012-02-28
-1121855 Wāshēr Washer Vashir,Vāshīr,Waser,Washar,Washayr,Washer,Washār,Wāshayr,Wāshēr,Wāsēṟ,washyr,واشیر 32.25122 63.85553 P PPLA2 AF 10 0 1175 Asia/Kabul 2012-02-28
-1122068 Tōrmay Tormay Qal'ah-ye Tormay,Qal’ah-ye Tōrmay,Tormay,Turmay,Tōrmay,Tōṟmay,Tūrmay,qlʿh twrmy,twrmy,تورمی,قلعه تورمی 33.68824 68.40221 P PPLA2 AF 08 0 2290 Asia/Kabul 2012-02-28
-1122189 Tūlak Tulak Tulak,Tūlak,twlk,تولک 33.97509 63.72868 P PPLA2 AF 09 0 2275 Asia/Kabul 2012-02-28
-1122402 Tītān Titan Deh Titan,Deh Titān,Saghar,Sāghar,Titan,Tītān,saghr,tytan,تیتان,ساغر 33.69032 63.86361 P PPLA2 AF 09 0 2194 Asia/Kabul 2012-02-28
-1122408 Tīr Pul Tir Pul Tir Pol,Tir Pul,Tirpul,Tīr Pol,Tīr Pul,tyr pl,تیر پل 34.59431 61.26895 P PPL AF 11 6979 751 Asia/Kabul 2012-01-16
-1122464 Taywarah Taywarah Qal`eh-i-Ghor,Qal‘eh-i-Ghor,Taiwara,Taiwāra,Taywarah,Teyvareh,tywrh,تيوره 33.52118 64.42116 P PPLA2 AF 09 0 2174 Asia/Kabul 2012-02-28
-1122705 Bāzār-e Tayshkān Bazar-e Tayshkan Bazar-e Tagan,Bazar-e Tashgan,Bazar-e Tayshkan,Bazar-i-Teskan,Bāzār-e Tagān,Bāzār-e Tashgān,Bāzār-e Tayshkān,Bāzāṟ-i-Tēs̄kān,Tashkan,Tashkān,Taskan,Tas̄kān,Teshkan,Teshkān,bazar tyshkan,tshkan,بازار تیشکان,تشکان 36.88168 70.27674 P PPLA2 AF 01 0 1285 Asia/Kabul 2012-02-28
-1122747 Tarinkot Tarinkot Tarin Kot,Tarin Kowt,Tarinkot,Tarīn Kowt,Tarīn Kōṯ,Taṟīn Kōt,Terin Kowt,Terīn Kowt,Tirin,Tirinkot,Tori,Tōrī,Tōṟi,tryn kwt,ترين كوت,توری 32.62675 65.87331 P PPLA AF 39 0 1327 Asia/Kabul 2008-03-27
-1123004 Taloqan Taloqan Khanabad,Taikhan,Taleqan,Talikan,Talikhan,Taliqan,Talkan,Taloqan,Talugan,Talukan,Taluqan,Tologan,Tāleqān,Tāloqān,Tāluqān,Tālīqān,talqan,Таликан,تالقان 36.73605 69.53451 P PPLA AF 26 64256 801 Asia/Kabul 2012-01-14
-1123343 Tagāw-Bāy Tagaw-Bay Bai,Bay,Bāy,Tagaw-Bay,Tagaw-bay,Tagaw-bāy,Tagow Bay,Tagow Bāy,Tagāw-Bāy,tgaw bay,تگاو بای 35.69941 66.06164 P PPL AF 33 9096 1666 Asia/Kabul 2012-01-16
-1123424 Tagāb Tagab Pagab,Tagab,Tagao,Tagāb,tgab,تگاب 34.85501 69.64917 P PPL AF 14 6400 1335 Asia/Kabul 2012-01-16
-1123666 Markaz-e Ḩukūmat-e Sulţān-e Bakwāh Markaz-e Hukumat-e Sultan-e Bakwah Bakva,Bakvā,Bakwah,Bakwāh,Markaz-e Hokumat-e Soltan-e Bakva,Markaz-e Hukumat-e Sultan-e Bakwa,Markaz-e Hukumat-e Sultan-e Bakwah,Markaz-e Ḩokūmat-e Solţān-e Bakvā,Markaz-e Ḩukūmat-e Sulţān-e Bakwā,Markaz-e Ḩukūmat-e Sulţān-e Bakwāh,Markaze Hokumate Sultane Bakwa,Markazi-Khukumati-Sultani-Bakva,Maṟkaze Ḩokūmate Sulṯāne Bakwā,Soltan Bakvah,Soltan-e Bakva,Solţān Bakvāh,Solţān-e Bakvā,Sultan Bakhwa,Sultan Bakwa,Sultan-e Bakwah,Sultane Bakwa,Sultān Bakhwa,Sultān Bakwa,Sulţān-e Bakwāh,Sulţāne Bakwā,mrkz hkwmt sltan bkwa,mrkz hkwmt sltan bkwah,sltan bkwah,سلطان بکواه,مرکز حکومت سلطان بکوا,مرکز حکومت سلطان بکواه 32.24139 62.94936 P PPLA2 AF 06 0 724 Asia/Kabul 2012-02-28
-1123906 Spīn Bōldak Spin Boldak Spin Baldak,Spin Boldak,Spin Buldak,Spīn Baldak,Spīn Bōldak,Spīn Būldak,spyn bwldk,سپین بولدک 31.00575 66.40001 P PPLA2 AF 23 0 1218 Asia/Kabul 2012-02-28
-1123935 Spērah Sperah Spera,Sperah,Speyrah,Spērah,Spēṟa,spyrh,سپيره,سپېره 33.20222 69.51528 P PPLA2 AF 37 0 1727 Asia/Kabul 2012-02-28
-1123963 Sōzmah Qal‘ah Sozmah Qal`ah Saozma Kala,Saozma Qala,Sowzmeh Qal`eh,Sowzmeh Qal‘eh,Sozmah Qal`ah,Sāozma Kala,Sōzmah Qal‘ah,سوزمه قلعه 36.09916 66.20823 P PPLA2 AF 33 0 870 Asia/Kabul 2012-02-28
-1124621 Sīāh Gird Siah Gird Siah Gerd,Siah Gird,Siakhgird,Siāh Gird,Syahgerd,Syāhgerd,Sīāh Gerd,Sīāh Gird,syah grd,سیاه گرد 35.00553 68.85578 P PPLA2 AF 40 0 1878 Asia/Kabul 2012-02-28
-1124973 Sheywah Sheywah Kuz Konar,Kūz Konar,Sewa,Sheva,Shewa,Shewah,Sheywah,Shiveh,Shēwah,Shīveh,S̲h̲ēwah,shywh,Šēwa,شيوه,ښېوه 34.57169 70.58859 P PPLA2 AF 18 0 602 Asia/Kabul 2012-02-28
-1125155 Shīnḏanḏ Shindand Asfazar,Asfazār,Sabzavar,Sabzavār,Sabzawar,Sabzevar,Sabzevār,Shindand,Shīndand,Shīnḏanḏ,Sindand,shyndnd,Šīndand,Шинданд,شيندند,شیندند,شینډنډ 33.30294 62.1474 P PPLA2 AF 11 29264 1071 Asia/Kabul 2012-02-28
-1125267 Shaykh Amīr Kêlay Shaykh Amir Kelay Sekhamir Kalay,Shaykh Amir,Shaykh Amir Kelay,Shaykh Amīr,Shaykh Amīr Kêlay,Shekh Amir Kelay,Sheykh Amir Kalay,Sheykh Amīr Kalay,Sheykhamirkalay,Shēkh Amīr Kêlay,shykh amyr,shykh amyr kly,Šēkhāmir Kalay,شیخ امیر,شیخ امیر کلی,قريۀ شيخ امير 33.28744 69.91283 P PPLA2 AF 37 0 1207 Asia/Kabul 2012-02-28
-1125362 Qāshqāl Qashqal Kakshal,Kashkal',Kashkal’,Qaqshal,Qaryah-ye Qashqal,Qaryah-ye Qāshqāl,Qashqal,Qasqal,Qāqshāl,Qāshqāl,Qāšqal,Senwari,Shenvari,Shenvārī,Shenwari,Shenwārī,Shinvari,Shinwari,Shinwārī,Sinwar,S̄inwāṟ,qashqal,qryh qashqal,shnwary,Šenwāri,شنواری,قاشقال,قريه قاشقال 35.03975 69.00685 P PPLA2 AF 40 0 1733 Asia/Kabul 2012-02-28
-1125444 Shibirghān Shibirghan Seberghan,Sebeṟghān,Shahr-e Sheberghan,Shahr-e Sheberghān,Shayurgan,Shebergan,Sheberghan,Sheberghān,Sheberkhan,Shefrogan,Shibarghan,Shibarghān,Shibergan,Shibirghan,Shibirghān,shbrghan,shbrghn,Шеберган,شبرغان,شبرغن 36.66757 65.7529 P PPLA AF 31 55641 360 Asia/Kabul 2012-01-16
-1125497 Shvak Shvak Shavak,Shavāk,Shvak,Shwak,Swak,S̲h̲wāk,shwak,Šwāk,شواك,ښواک 33.42386 69.37684 P PPLA2 AF 36 0 2300 Asia/Kabul 2012-02-28
-1125866 Shahr-e Şafā Shahr-e Safa Sahre Safa,Schachri Ssafa,Shahr-e Safa,Shahr-e Şafā,Shahr-i-Safa,Shahr-i-Sāfa,Shakhri-Safa,shhr sfa,Šahre Şafā,شهر صفا 31.80347 66.32376 P PPLA2 AF 28 0 1257 Asia/Kabul 2012-02-28
-1125890 Shahrān Shahran Sahran,Sahṟān,Shaharan,Shaharān,Shahran,Shahrān,shhran,شهران 36.97984 70.73928 P PPLA2 AF 01 0 2093 Asia/Kabul 2012-02-28
-1125896 Shahrak Shahrak Bati Dara,Kala Shaharak,Kala Shahrak,Kala Shahārak,Markaz-e Shahrak,Qal`eh Shaharak,Qal`eh-ye Bati Darrah,Qala Bati Dara,Qala Batī Dara,Qala Shaharak,Qala Shahārak,Qala Sharak,Qal‘eh Shahārak,Qal‘eh-ye Bati Darrah,Sahrak,Shahrag,Shahrak,Shakhrak,Sharak,Shāhrag,Shāhrak,Wala Shahrak,shhrk,Šahrak,شهرک 34.10738 64.3052 P PPLA2 AF 09 15967 2357 Asia/Kabul 2012-02-28
-1125962 ‘Alāqahdārī Shāh Jōy `Alaqahdari Shah Joy Alakadari-Shakhdzhoy,Alaqadari Sahjoy,Alāqadārī Šāhjoy,Sahjoy,Sha Joi,Shah Joy,Shah Juy,Shahjui,Shajuy,Shāh Jōy,Shāh Jūy,Shāhjui,Shājūy,S̄āhjōy,`Alaqahdari Shah Joy,shah jwy,شاه جوی,علاقه داری شاه جوی,‘Alāqahdārī Shāh Jōy 32.52154 67.41315 P PPLA2 AF 28 0 1865 Asia/Kabul 2012-02-28
-1126216 Wolêswālī Sayyid Karam Woleswali Sayyid Karam Sayd Karam,Sayed Karam,Sayḏ Kaṟam,Seyyed Karam,Vulusvali Saidkaram,Woleswali Sayyid Karam,Woluswali Saydkaram,Woluswali Seyyed Karam,Woluswāli Sayḏkaṟam,Woluswālī Seyyed Karam,Wolêswālī Sayyid Karam,wlswaly syd krm,wlwswly syd krm,ولسوالی سید کرم,ولوسولی سيد كرم 33.69056 69.36881 P PPLA2 AF 36 0 2458 Asia/Kabul 2012-02-28
-1126263 Markaz-e Sayyidābād Markaz-e Sayyidabad Markaz-e Sayyidabad,Markaz-e Sayyidābād,Markaz-e Seyydabad,Markaz-e Seyydābād,Markaz-e Seyyedabad,Markaz-e Seyyedābād,Markaze Saydabad,Markazi-Saidabad,Maṟkaze Sayḏābāḏ,Saydabad,Sayyidabad,Sayyidābād,Sayḏābāḏ,Seyyedabad,Seyyedābād,mrkz syd abad,syd abad,سيد آباد,مرکز سيد آباد 34.00037 68.71346 P PPLA2 AF 27 0 2119 Asia/Kabul 2012-02-28
-1126266 Şayād Sayad Saiad,Saiyid,Sayad,Seyyed,syad,Şayād,صیاد 36.13529 65.8297 P PPLA2 AF 33 0 946 Asia/Kabul 2012-02-28
-1126710 Sāyagaz Sayagaz Sagaz,Sayagaz,Sāgaz,Sāyagaz,sagz,saygz,ساگز,سایگز 32.56521 67.03324 P PPLA2 AF 28 0 1673 Asia/Kabul 2012-02-28
-1126796 Sar-e Tayghān Sar-e Tayghan Sar Teghan,Sar-e Tayghan,Sar-e Tayghān,Saṟ Tēghān,sr tyghan,سر تیغان 33.50998 65.67632 P PPLA2 AF 41 0 1423 Asia/Kabul 2012-02-28
-1126884 Sarōbī Sarobi Markaz-e Sorubi,Markaz-e Sorūbī,Sarobi,Sarowbi,Sarowbī,Sarubi,Sarōbī,Sorubay,Sorubi,Sorūbay,Sorūbī,Surawbi,Surobay,Surubay,Surūbay,Sūrāwbī,Sūṟōbay,srwby,سروبی 34.58962 69.76005 P PPLA2 AF 13 0 987 Asia/Kabul 2012-02-28
-1126935 Sarkani Sarkani Sarkani,Sarkanu,Sarkānī,Sarkānū,Serkani,Seṟkāṉi,Sirkhani,Sirkhānī,Sêrkāṉī,srkany,سركانی,سرکاڼی 34.79023 71.10962 P PPLA2 AF 34 0 792 Asia/Kabul 2012-02-28
-1127001 Sarfirāz Kalā Sarfiraz Kala Qal'ah-ye Sar Firaz,Qal’ah-ye Sar Firāz,Sarferaz Kala,Sarferāz Kalā,Sarfiraz Kala,Sarfirazkala,Sarfirāz Kalā,qlʿh sr fraz,srfraz kla,سرفراز کلا,قلعه سر فراز 32.98333 67.96517 P PPLA2 AF 08 0 2106 Asia/Kabul 2012-02-28
-1127110 Sar-e Pul Sar-e Pul Sar-e Pol,Sar-e Pul,Sar-i-Pul,Sari-Pul',sr pl,Сари-Пуль,سر پل 36.21544 65.93249 P PPLA AF 33 52121 636 Asia/Kabul 2012-01-16
-1127451 Sar Chakān Sar Chakan Sar Cakan,Sar Chakan,Sar Chakān,Saṟ Cakān,sr chkan,سر چکان 35.70178 65.23055 P PPLA2 AF 07 0 1348 Asia/Kabul 2012-02-28
-1127547 Sangīn Sangin Sandzhin,Sangin,Sangīn,Sarban Qal`eh,Sārbān Qal‘eh,sngyn,Санджин,سنگین 32.07275 64.8359 P PPLA2 AF 10 13579 885 Asia/Kabul 2012-02-28
-1127604 Sang-e Māshah Sang-e Mashah Sang-e Mashah,Sang-e Masheh,Sang-e Māshah,Sang-e Māsheh,Sang-i-Macha,Sang-i-Masha,Sang-i-Māsha,Sange Masa,Sange Māša,sng mashh,سنگ ماشه 33.1396 67.44046 P PPLA2 AF 08 0 2484 Asia/Kabul 2012-02-28
-1127628 Sang-e Chārak Sang-e Charak 35.84972 66.43694 P PPL AF 33 15377 1483 Asia/Kabul 2006-01-27
-1127664 Sang Atesh Sang Atesh Sang Ates Mamaka,Sang Atesh Mamakah,Sang Atish Mamakah,Sang Ātesh Māmākah,Sang Ātes̄ Māmāka,Sang Ātish Māmākah,سنگ آتش ماماکه 35.248 63.0044 P PPLA2 AF 02 0 634 Asia/Kabul 2010-08-16
-1127667 Sangar Sarāy Sangar Saray Sang-i-Sarai,Sang-i-Sarāi,Sangar,Sangar Sarai,Sangar Saray,Sangar Sarāy,Sangar Sarāī,Sangarsaray,sngr sray,سنگر سرای 34.40744 70.63937 P PPLA2 AF 18 0 517 Asia/Kabul 2012-02-28
-1127768 Aībak Aibak Aibak,Aybak,Aībak,Eybak,Haibak,Samagan,Samangan,Samangān,aybk,smngan,Āybak,Саманган,آیبک,ایبک,سمنگان 36.26468 68.01551 P PPLA AF 32 47823 969 Asia/Kabul 2012-01-16
-1128186 Rū-ye Sang Ru-ye Sang Roysang,Ru-ye Sang,Ruisang,Ruy Sang,Rū-ye Sang,Rūisang,Rūy Sang,rwy sng,روی سنگ,Ṟōysang 35.31999 67.63387 P PPLA2 AF 05 0 1751 Asia/Kabul 2012-02-28
-1128239 Rūdbār Rudbar 30.15 62.6 P PPL AF 19 11034 556 Asia/Kabul 2006-01-17
-1128265 Rustāq Rustaq Rostaq,Rostāq,Rustak,Rustaq,Rustāq,rstaq,رستاق,Ṟustāq 37.12604 69.83045 P PPLA2 AF 26 25636 1314 Asia/Kabul 2012-02-28
-1128310 Rabāţ-e Sangī-ye Pā’īn Rabat-e Sangi-ye Pa'in Rabat-e Sangi,Rabat-e Sangi-ye Pa'in,Rabat-i-Sangi-Pa'in,Rabati-Sangiyi-Pain,Rabāţ-e Sangī,Rabāţ-e Sangī-ye Pā’īn,Rabāṯ-i-Sangi-Pā’īn,Robat-e Sangi-ye Pa'in,Robāţ-e Sangī-ye Pā’īn,rbat sngy,rbat sngy payyn,رباط سنگی,رباط سنگی پائین 34.79951 62.13917 P PPLA2 AF 11 0 1192 Asia/Kabul 2012-02-28
-1128565 Rāmak Ramak Rahmak,Ramak,Rāmak,ramk,رامک 33.52234 68.6264 P PPLA2 AF 08 0 2183 Asia/Kabul 2012-02-28
-1128954 Qurghān Qurghan Bazar-e Qurghan,Bāzār-e Qurghān,Kurghan,Kurghān,Qorghan,Qorghān,Qurghan,Qurghān,Quṟghān,bazar qrghan,qrghan,بازار قرغان,قرغان 36.91939 65.0649 P PPLA2 AF 07 0 312 Asia/Kabul 2012-02-28
-1129013 Quchanghī Quchanghi Kuchangi,Qocanghi,Qocangli,Qochanghi,Qochanghī,Qochangi,Qochangī,Qočanghi,Quchanghi,Quchanghī,Qōchanghī,qchnghy,qwchnghy,قوچنغی,قچنغی 34.06183 66.27801 P PPLA2 AF 41 0 2516 Asia/Kabul 2012-02-28
-1129077 Qayşār Qaysar Qaisar,Qaysar,Qaysāṟ,Qayşār,Qeysar,Qeyşār,Sangalak-i-Kaisar,qysar,قیصار 35.68747 64.29318 P PPLA2 AF 07 0 1258 Asia/Kabul 2012-02-28
-1129516 Qarqīn Qarqin Karkin,Karkin Bazar,Kkhanika,Qarkin,Qarqin,Qarqīn,Quarkin,qrqyn,Кханика,قرقین 37.41853 66.04358 P PPLA2 AF 31 15018 263 Asia/Kabul 2012-02-28
-1129555 Qarghah’ī Qarghah'i Deh Mazang,Dekhmazang,Kargay,Karghai,Qargha'i,Qarghah,Qarghah'i,Qarghah’ī,Qaṟghah’ī,Qaṟgha’i,dh mzng,qrghh yy,ده مزنگ,قرغه ئی 34.55402 70.24292 P PPLA2 AF 35 0 659 Asia/Kabul 2012-02-28
-1129636 Qarchī Gak Qarchi Gak Qarchi Gak,Qarchī Gak,qrchy gk,قرچی گک 37.03999 66.78891 P PPL AF 30 8942 306 Asia/Kabul 2012-01-16
-1129648 Qarāwul Qarawul Hazrat Imam,Hazrat Imam Saiyid,Hazrat Imām,Karaul,Qaravol,Qarawul,Qarāvol,Qarāwul,Qaṟāwul,qrawl,قراول 37.22019 68.78041 P PPL AF 24 24544 337 Asia/Kabul 2012-01-16
-1129678 Qarah Bāgh Qarah Bagh Karabagh,Karabāgh,Kharabagh,Qara Baqh,Qarabagh,Qarabāgh,Qarah Bagh,Qarah Bāgh,Qareh Bagh,Qareh Bāgh,Qaṟa Bāqh,qrh bagh,قره باغ 34.94023 61.77589 P PPLA2 AF 11 12412 952 Asia/Kabul 2012-02-28
-1129680 Qarah Bāgh Qarah Bagh Karabag,Qarabagh,Qarah Bagh,Qarah Bāgh,Qarehbagh,Qarehbāgh,Qaṟabāgh,qrh bagh,قره باغ 33.19801 68.10798 P PPLA2 AF 08 0 2083 Asia/Kabul 2012-02-28
-1129867 Qala i Naw Qala i Naw Kala Nao,Kalai-Naw,Kalayi-Nau,Qal'eh Now,Qal`a-i-Naw,Qal`ah-ye Now,Qal`eh Nau,Qal`eh-ye Now,Qala Nau,Qala Naw,Qala-e-Nau,Qala-i-Nau,Qalaenaw,Qal‘a-i-Naw,Qal‘ah-ye Now,Qal‘eh Nau,Qal‘eh-ye Now,Qal’eh Now,Qula-i-nau,Shehr Qaleh,Shehr Qeleh,قلعۀ نو 34.98735 63.12891 P PPLA AF 02 9000 887 Asia/Kabul 2012-02-03
-1129928 Qal‘ah-ye Kūf Qal`ah-ye Kuf Kala Kuf,Qal'a-i-Kuf,Qal`ah-ye Kuf,Qal`eh-ye Kuf,Qala-i-Kof,Qala-i-Kot,Qal‘ah-ye Kūf,Qal‘eh-ye Kūf,Qal’a-i-Kūf,قلعۀ کوف 38.04119 70.47298 P PPLA2 AF 01 0 1569 Asia/Kabul 2012-02-28
-1129932 Qal‘ah-ye Kuhnah Qal`ah-ye Kuhnah Qal`a-i- Kuhna,Qal`ah-ye Kuhnah,Qal`eh-ye Kohneh,Qal‘a-i- Kuhna,Qal‘ah-ye Kuhnah,Qal‘eh-ye Kohneh,قلعۀ کهنه 32.61591 63.66681 P PPLA2 AF 06 0 1429 Asia/Kabul 2012-02-28
-1130065 Qal‘ah-ye Shahr Qal`ah-ye Shahr Faoghan,Fāoghān,Kala Shahar,Kala Shāhar,Qal`a-i-Sahr,Qal`ah-ye Shahr,Qal`eh Shahar,Qal`eh Shahr,Qala Sahr,Qala Shahar,Qala Shāhār,Qala S̄ahṟ,Qal‘a-i-S̄ahṟ,Qal‘ah-ye Shahr,Qal‘eh Shahr,Qal‘eh Shāhār,قلعۀ شهر 35.54729 65.5676 P PPL AF 33 7756 2136 Asia/Kabul 2012-01-16
-1130131 Qalāt Qalat Kalat,Kalat-i-Ghilzai,Kalāt-i-Ghilzai,Qalat,Qalāt,qlat,قلات 32.10575 66.90833 P PPLA AF 28 12191 1568 Asia/Kabul 2012-01-16
-1130132 Qal‘ah-ye Shāhī Qal`ah-ye Shahi Kalashakhi,Qal`a Sahi,Qal`ah-ye Shahi,Qal`eh-ye Shahi,Qalla-ISahi,Qalła-IŠāhi,Qal‘a S̄āhi,Qal‘a Šāhi,Qal‘ah-ye Shāhī,Qal‘eh-ye Shāhī,قلعۀ شاهی 34.64921 70.5914 P PPLA2 AF 18 0 894 Asia/Kabul 2012-02-28
-1130233 Qādis Qadis Kadis,Qaddis,Qades,Qadis,Qādes,Qādis,Qāḏis,قادس 34.8085 63.43003 P PPLA2 AF 02 0 1300 Asia/Kabul 2010-08-16
-1130469 Pārūn Parun Parun,Poruns,Puruns,Pārūn,parwn,prns,پارون,پرنس 35.4207 70.92214 P PPLA AF 38 0 2756 Asia/Kabul 2012-01-16
-1130490 Pul-e Khumrī Pul-e Khumri Pol-e Khomri,Pol-e Khomrī,Pul-e Khumri,Pul-e Khumrī,Pul-i-Khomri,Pul-i-Khumri,Pule Khumri,Pule Khumṟi,Puli-Khumri,pl khmry,Пули-Хумри,پل خمری 35.94458 68.71512 P PPLA AF 03 56369 638 Asia/Kabul 2012-01-16
-1130497 Pul-e ‘Alam Pul-e `Alam Pol-e `Alam,Pol-e ‘Alam,Pul-e `Alam,Pul-e ‘Alam,Pul-i-Alam,Pule Alam,پل علم 33.99529 69.02274 P PPLA AF 17 13247 1921 Asia/Kabul 2012-01-16
-1130981 Pasnay Pasnay Kohistanat,Kōhistānāt,Pasnay,kwhstanat,psny,پسنی,کوهستانات 35.76664 65.76486 P PPLA2 AF 33 0 1759 Asia/Kabul 2012-02-28
-1130997 Pāshmūl Pashmul Pashmol,Pashmul,Pasmul,Pašmūl,Pāshmūl,pashmwl,pshmwl,پاشمول,پشمول 31.5572 65.4343 P PPLA2 AF 23 0 946 Asia/Kabul 2012-02-28
-1131045 Pasāband Pasaband Pasaband,Pasāband,psabnd,پسابند 33.68956 64.8531 P PPLA2 AF 09 0 2468 Asia/Kabul 2012-02-28
-1131162 Panjāb Panjab Pandzhab,Pandzhau,Panjab,Panjao,Panjaw,Panjāb,pnjab,Панджаб,پنجاب 34.38795 67.02327 P PPLA2 AF 05 13471 2728 Asia/Kabul 2012-02-28
-1131316 Paghmān Paghman Paghman,Paghman Palace,Paghmān,Pagman,Пагман 34.5875 68.95333 P PPL AF 13 49157 2311 Asia/Kabul 2012-01-16
-1131389 Ōmnah Omnah Omna,Omnah,Owmneh,awmnh,Ōmna,Ōmnah,اومنه 32.90029 68.79626 P PPLA2 AF 29 0 2595 Asia/Kabul 2012-02-28
-1131406 Qaryeh-ye Owbeh Qaryeh-ye Owbeh Caharmahale Obe,Cahāṟmahale Ōbē,Chahar Mahall-e Obeh,Chahār Maḩall-e Obeh,Obe,Obeh,Owbey,Owbi,Owbī,Qaryeh-ye Owbeh,awbh,Ōbêh,Ōbē,اوبه 34.36972 63.17639 P PPLA2 AF 11 0 1287 Asia/Kabul 2012-02-28
-1131462 Uruzgān Uruzgan Orozgan,Orozgān,Oruzgan,Orūzgān,Qala-i-Hazar Qadam,Qala-i-Hazār Qadam,Uruzgan,Uruzgān,arwzgan,arzgan,ارزگان,اروزگان 32.92775 66.63253 P PPL AF 39 13388 2026 Asia/Kabul 2012-01-16
-1131479 Urgūn Urgun Orgun,Orgūn,Urgun,Urgūn,argwn,ارگون 32.94111 69.18 P PPLA2 AF 29 0 2220 Asia/Kabul 2012-01-16
-1131591 Nūsay Nusay Kusai,Nesay Darwaz,Nesay Ḏaṟwāz,Nusai,Nusay,Nūsay,Qaryah-ye Nusay,nwsy,qryh nsy,قريه نسی,نوسی 38.44294 70.80541 P PPLA2 AF 01 0 1261 Asia/Kabul 2012-02-28
-1131625 Nūr Gal Nur Gal Nur Gal,Nur Gol,Nurgal,Nurgal',Nurgal’,Nurgul,Nuṟgal,Nūr Gal,Nūr Gol,Nūrgul,nwr gl,نور گل 34.61341 70.76498 P PPLA2 AF 34 0 679 Asia/Kabul 2012-02-28
-1131649 Now Zād Now Zad Naozad,Nau-Zad,Nauzad,Nauzād,Naw Zad,Naw Zāḏ,Now Zad,Now Zād,Nozad,Nāozād,nw zad,نو زاد 32.40314 64.46959 P PPLA2 AF 10 0 1220 Asia/Kabul 2012-02-28
-1131833 Nīlī Nili Nili,Nīlī,Qaryah-e Nili,Qaryah-e Nīlī,nyly,نیلی 33.72178 66.13023 P PPLA AF 41 0 2069 Asia/Kabul 2012-01-16
-1132034 Nayak Nayak Naiak,Naik,Nayak,Neyak,Nāik,Nāyak,nayk,nyk,نايک,نيک 34.73414 66.95292 P PPLA2 AF 05 0 2554 Asia/Kabul 2012-02-28
-1132046 Nāyak Nayak Nayak,Nāyak,nayk,نایک 32.5723 66.77403 P PPLA2 AF 28 0 2116 Asia/Kabul 2012-02-28
-1132127 Now Dahānak Now Dahanak Navadanak,Naw Danak,Nawdanak,Nawdānak,Now Dahanak,Now Dahānak,Now Danak,Now Dānak,Nāw Dānak,nw dank,nw dhank,نو دانک,نو دهانک 35.62398 70.00511 P PPLA2 AF 42 0 2629 Asia/Kabul 2012-02-28
-1132172 Ōkak Okak Navar,Navor,Nawur,Nāvar,Nāvor,Nāwuṟ,Okak,Owkak,awkk,Ōkak,Окак,اوکک 33.89794 67.95652 P PPLA2 AF 08 0 3068 Asia/Kabul 2012-02-28
-1132336 Nāṟay Naray Narai,Naray,Naray Kelay,Nari,Nāray,Nāraī,Nāṟay,Nāṟay Kelay,naړy,nry,ناړی,نری 35.221 71.5225 P PPLA2 AF 34 0 1084 Asia/Kabul 2012-02-28
-1132344 Narang Narang Narang,Naṟang,nrng,نرنگ 34.76009 71.04738 P PPLA2 AF 34 0 779 Asia/Kabul 2012-02-28
-1132465 Nakah Nakah Naka,Nakah,Nekah,Nikeh,Nīkêh,nkh,nykh,نيکه,نکه 33.18934 69.27179 P PPLA2 AF 29 0 2488 Asia/Kabul 2012-02-28
-1132495 Nahrīn Nahrin Nahrin,Nahrīn,Nakhrin,Narain,Narin,Narīn,nhryn,Нахрин,نهرین 36.0649 69.13343 P PPLA2 AF 03 22363 1138 Asia/Kabul 2012-02-28
-1132550 Ḩukūmat-e Nād ‘Alī Hukumat-e Nad `Ali Hokumat-e Nad `Ali,Hokumat-e Nad-e `Ali,Hokumati Nad-e `Ali,Hukumat-e Nad `Ali,Khukumati-Nadi-Ali,Nad `Ali,Nad-e `Ali,Nad-i-Ali,Nad`ali,Nade Ali,Nād ‘Alī,Nād-e ‘Alī,Nād-i-Alī,Nāde Ali,Nād‘alī,nad ʿly,حكومت ناد علی,حكومتٔ نادٔ علی,حکومتی ناد علی,ناد علی,Ḩokūmat-e Nād ‘Alī,Ḩokūmat-e Nād-e ‘Alī,Ḩokūmatī Nād-e ‘Ali,Ḩokūmatī Nād-e ‘Alī,Ḩukūmat-e Nād ‘Alī 31.64286 64.23982 P PPLA2 AF 10 0 797 Asia/Kabul 2012-02-28
-1132604 Mūsá Qal‘ah Musa Qal`ah De Musa Qal`eh,De Mūsá Qal‘eh,Musa Kala,Musa Qal`a,Musa Qal`ah,Musa Qal`eh,Musa Qala,Musa Qaleh,Musakala,Mūsa Qal‘a,Mūsá Qal‘ah,Mūsá Qal‘eh,Mūsā Qal‘ah,Takhta Pul,موسى قلعه 32.44565 64.74486 P PPLA2 AF 10 0 1053 Asia/Kabul 2012-02-28
-1132770 Bala Murghab Bala Murghab Bala Murghab,Bālā Murghāb,Bālā Muṟghāb,Morghab,Morghāb,بالا مرغاب 35.58408 63.32886 P PPLA2 AF 02 0 466 Asia/Kabul 2010-08-16
-1132807 Muqêr Muqer Moqor,Moqur,Moquṟ,Mukar,Mukur,Muqer,Muqur,Muqêr,Qala-i-Sarkari,Qala-i-Sarkāri,mqr,مقر 32.82009 67.76934 P PPLA2 AF 08 0 2000 Asia/Kabul 2012-02-28
-1133105 Muḩammad Āghah Wuluswālī Muhammad Aghah Wuluswali Deh-e Muhammad Aghah,Deh-e Muḩammad Āghah,Mohammad Agha,Mohammad Aghah,Moḩammad Āghah,Moḩammad Āghā,Muhammad Agha,Muhammad Aghah Wuluswali,Muhammad Āgha,Muḩammad Āghah Wuluswālī,mhmd aghh wlswaly,محمد آغه ولسوالی 34.21472 69.1 P PPLA2 AF 17 0 1854 Asia/Kabul 2012-02-28
-1133154 Mīzān ‘Alāqahdārī Mizan `Alaqahdari Mizan,Mizan `Alaqadari,Mizan `Alaqahdari,Mizan-Alakadari,Mizani,Mizān ‘Alāqadārī,Mizān ‘Alāqahdārī,Mīzān,Mīzān ‘Alāqahdārī,Mīzānī,`Alaqadari,myzan,ميزان,ميزان علاقه داری,‘Alāqadārī 32.17635 66.51271 P PPLA2 AF 28 0 1409 Asia/Kabul 2012-02-28
-1133270 Mīr Bachah Kōṯ Mir Bachah Kot Mir Bachah Kot,Mir Bachcheh Kowt,Mir Bachcheh Kut,Mir Bachchen Kut,Mir Bacheh Kowt,Mir Bacheh Kut,Mir Dacha Kote,Mirbaca Kot,Mirbachakot,Mīr Bachah Kōṯ,Mīr Bachcheh Kowt,Mīr Bachcheh Kūt,Mīr Bachchen Kūt,Mīr Bacheh Kowt,Mīr Bacheh Kūt,Mīrbača Kot,Sara-ye Khvajeh,Sara-ye Khwajah,Sarai Khwaja,Saray Khvajah,Saray-Khwaja,Saraykhodzha,Sarā-ye Khvājeh,Sarā-ye Khwājah,Sarāi Khwāja,Sarāy Khvājah,Saṟāy-Khwāja,myr bchh kwt,sray khwajh,سرای خواجه,مير بچه كوت,میر بچه کوټ 34.74999 69.11899 P PPLA2 AF 13 5405 1673 Asia/Kabul 2012-02-28
-1133279 Mīrān Miran Miran,Mīrān,myran,ميران 34.2203 68.31252 P PPLA2 AF 27 0 2457 Asia/Kabul 2012-02-28
-1133310 Mīrābād Mirabad Mirabad,Mirabad-e Mohammad Akbar,Mīrābād,Mīrābād-e Moḩammad Akbar,myr abad,میر آباد 30.43624 61.8383 P PPL AF 19 14160 514 Asia/Kabul 2012-01-16
-1133453 Maymana Maymana Maimana,Maimanah,Maimāna,Maymana,Maīmanah,Mejmene,Meymaneh,Mimana,mai ma na,mymnh,Меймене,میمنه,迈马纳 35.92139 64.78361 P PPLA AF 07 75900 877 864 Asia/Kabul 2010-08-16
-1133456 Maīdān Khūlah Maidan Khulah Maidan Khulah,Maydan Kholeh,Maydankhula,Mayḏān Kholeh,Maīdān Khūlah,Meydan Kholeh,Meydan Khvolah,Meydān Kholeh,Meydān Khvolah,mydan khwlh,میدان خوله 33.64916 69.7812 P PPLA2 AF 36 0 2026 Asia/Kabul 2012-02-28
-1133544 Mingajik Mingajik Mengajik,Mengajīk,Mengeh Jek,Mingajek,Mingajik,Mungajik,mngjk,منگجک 37.0279 66.12817 P PPLA2 AF 31 0 280 Asia/Kabul 2012-02-28
-1133574 Mehtar Lām Mehtar Lam Laghman,Mehtar Lam,Mehtar Lām,Mekhtarlam,Metarlam,Mir Talam Saheb Ziarat,Mitarlam,Miterlam,Mīr Talām Şāḩeb Zīārat,Nawar Lam,Nāwar Lam,mhtr lam,Митарлам,مهتر لام 34.67139 70.20944 P PPLA AF 35 17345 795 Asia/Kabul 2012-01-16
-1133616 Mazār-e Sharīf Mazar-e Sharif Masar-e Scharif,Mazar-e Sarif,Mazar-e Sharif,Mazar-e Šarif,Mazar-e-Sharif,Mazar-i Szarif,Mazar-i-Sharif,Mazare Srif,Mazari Sharif,Mazari-Sharif,Mazār-e Sharīf,Mazār-e Šarīf,Mazār-i-Sharīf,Mazāre S̄rīf,majaleu-isyalipeu,mazarisharifu,mzar shryf,Мазари-Шариф,مزار شريف,مزار شریف,マザーリシャリーフ,마자르이샤리프 36.70904 67.11087 P PPLA AF 30 303282 361 Asia/Kabul 2012-01-16
-1133657 Māymay Maymay Mah Mayk,Mahmai,Mahmey,Maymay,Maymey,Māh Mayk,Māymay,Māymey,Māymāy,maymy,مایمی 38.40856 71.03838 P PPLA2 AF 01 0 1636 Asia/Kabul 2012-02-28
-1133689 Muṯā Khān Muta Khan Mata Khan,Matā Khān,Metakhan,Metākhān,Motakhan,Motākhān,Muta Khan,Mutakhan,Muṯā Khān,مټا خان 33.24167 68.86639 P PPLA2 AF 29 0 2125 Asia/Kabul 2012-02-28
-1133749 Mashhad Mashhad Mashad,Mashhad,mshhd,مشهد 36.81665 70.10211 P PPLA2 AF 01 0 932 Asia/Kabul 2012-02-28
-1133856 Murdīān Murdian Mardian,Mardyan,Mardīān,Maṟḏyān,Mordian (2),Mordīān (2),Murdian,Murdīān,mrdyan,مردیان 36.99286 66.29685 P PPLA2 AF 31 0 287 Asia/Kabul 2012-02-28
-1133987 Munḏōl Mundol Mandol,Mandul,Mandōl,Mandūl,Manḏōl,Mundol,Mundol',Mundol’,Mundul,Mundūl,Munḏōl,mndwl,مندول,منډول 35.28403 70.17017 P PPLA2 AF 38 0 2003 Asia/Kabul 2012-02-28
-1134074 Māmā Khēl Mama Khel Hashem Kheyl,Hasim Khel,Hāsim Khel,Mama Khel,Mamakheyl,Mamakheyl',Mamakheyl’,Māmā Khēl,Māmākheyl,Sheyrzad,Sheyrzād,mama khyl,ماما خيل,ماما خېل 34.24494 69.9968 P PPLA2 AF 18 0 1531 Asia/Kabul 2012-02-28
-1134720 Lashkar Gāh Lashkar Gah Bist,Bost,Bust,Lashkar Gah,Lashkar Gāh,Lashkargah Bust,Lashkargakh,Laskargah,Las̲h̲kargāh Busṯ,Laškargāh,Nawab City,lshkr gah,لشكر گاه,لښکرگاه بسټ 31.59382 64.37161 P PPLA AF 10 43934 786 Asia/Kabul 2012-01-16
-1134724 Lāsh-e Juwayn Lash-e Juwayn Jawain,Joveyn,Juwain,Juwayn,Juwāin,Lase Jowayn,Lash,Lash Jovayn,Lash-e Joveyn,Lash-e Joway,Lash-e Juwayn,Laso-joayn,Lāsh,Lāsh Jovayn,Lāsh-e Joveyn,Lāsh-e Joway,Lāsh-e Juwayn,Lās̄e Jowayn,Lās̄o-joayn,jwyn,lash jwy,lashi chwyn,جوين,لاش جوی,لاشِ چوين 31.71382 61.62272 P PPLA2 AF 06 0 513 Asia/Kabul 2012-02-28
-1134762 Larkird Larkird Lar Gerd,Largird,Largirid,Larkerd,Larkird,lrkrd,Лар Герд,لرکرد 35.48936 66.66409 P PPL AF 33 11635 1508 Asia/Kabul 2012-01-16
-1134887 La‘l La`l La`l,La`l va Sar Jangal,La`l wa Sar Jangal,La`losarjangal,Lal',Lal’,La‘l,La‘l va Sar Jangal,La‘l wa Sar Jangal,La‘losaṟjangal,Qaryeh-ye La`l,Qaryeh-ye La‘l,lʿl w sr jngl,لعل,لعل و سر جنگل 34.50141 66.27996 P PPLA2 AF 09 0 2797 Asia/Kabul 2012-02-28
-1135158 Kushk Kushk Kushk,Kusk,Kus̄k,Kūshk,kshk,Кушк,کشک 33.29565 61.95221 P PPL AF 11 16952 1115 Asia/Kabul 2012-01-16
-1135514 Kōṯowāl Kotowal Kotaval',Kotaval’,Kotawal,Kotowal,Kowtawal,Kowtawāl,Kōtawāl,Kōṯowāl,kwtwal,کوتوال,کوټوال 34.10319 70.46073 P PPLA2 AF 18 0 1461 Asia/Kabul 2012-02-28
-1135625 Kushk-e Kuhnah Kushk-e Kuhnah Koshk,Koshk-e Kohneh,Kushk,Kushk-e Kuhnah,Kusk,Kusk-i-Kohna,Kuske Kuhna,Kus̄k-i-Kohna,Kus̄ke Kuhna,kshk khnh,کشک کهنه 34.8711 62.54762 P PPLA2 AF 11 0 1076 Asia/Kabul 2012-02-28
-1135656 ‘Alāqahdārī Kirān wa Munjān `Alaqahdari Kiran wa Munjan Keran va Menjan,Kerana va Manjah,Kerān va Menjān,Koran va Monjan,Koranomunjan,Korān va Monjān,Koṟānomunjān,`Alaqahdari Kiran wa Munjan,`Alaqehdari-ye Koran va Monjan,علاقه داری کران و منجان,‘Alāqahdārī Kirān wa Munjān,‘Alāqehdārī-ye Korān va Monjān 36.02866 70.77258 P PPLA2 AF 01 0 2550 Asia/Kabul 2012-02-28
-1135689 Kunduz Kunduz Kondoz,Konduz,Kondūz,Kundus,Kunduz,Kundūz,Qonduz,Qondūz,Qunduz,Qunḏūz,Shahr-e Qondoz,kndwz,kndz,kundo~uzu zhou,kundujeu ju,qndz,Кундуз,قندز,كندز,کندوز,クンドゥズ州,쿤두즈 주 36.72896 68.857 P PPLA AF 24 161902 402 Asia/Kabul 2012-01-16
-1135960 Khōshī Khoshi Khoshi,Khosi,Khoši,Khushi,Khvoshi,Khvoshī,Khōshī,Kushi,khwshy,خوشی 33.99889 69.21194 P PPLA2 AF 17 0 2237 Asia/Kabul 2012-02-28
-1135980 Khōshāmand Khoshamand Khosamand,Khoshamand,Khos̄āmanḏ,Khus Amad,Khusamand,Khush Amad,Khushamand,Khus̄ Āmad,Khus̄āmand,Khvosh Amad,Khvosh Mand,Khvosh Āmad,Khvoshamand,Khvoshāmand,Khōshāmand,Khūsh Āmad,khwsh amd,khwshamnd,خوش آمد,خوشامند 32.68567 68.23801 P PPLA2 AF 29 0 2011 Asia/Kabul 2012-02-28
-1136235 Khwājah Ghār Khwajah Ghar Khodzhagar,Khoja-i-Gar,Khvajeh Ghar,Khvājeh Ghar,Khwaja Gar,Khwaja Ghar,Khwaja-i-Gar,Khwaja-i-Ghar,Khwajah Ghar,Khwāja-i-Gar,Khwāja-i-Ghar,Khwājah Ghār,khwajh ghar,خواجه غار 37.06588 69.42126 P PPLA2 AF 26 0 512 Asia/Kabul 2012-02-28
-1136250 Khwājah Dū Kōh Khwajah Du Koh Khodja-Bunak,Khodzha-Dokukh,Khvajeh Do Kuh,Khvājeh Do Kūh,Khwaja Do Koh,Khwaja Du Koh,Khwajah Do Koh,Khwajah Du Koh,Khwajah-ye Do Ku,Khwajah-ye Do Kū,Khwāja Do Koh,Khwājah Dō Kōh,Khwājah Dū Kōh,Khwājā Du Koh,khwajh dw kwh,خواجه دو کوه 36.82881 65.62432 P PPLA2 AF 31 0 307 Asia/Kabul 2012-02-28
-1136354 Deh Khāhān Deh Khahan Deh Khahan,Deh Khāhān,Khvahan,Khvāhān,Khwahan,Khwāhān,Qala Khwahan,dh khahan,khawahan,khwahan,خواهان,خَواهَان,ده خاهان,Ḏeh Khāhān 37.88965 70.21875 P PPLA2 AF 01 0 1047 Asia/Kabul 2012-02-28
-1136414 Khulbisāt Khulbisat Khalbesat,Kholbesat,Kholbesāt,Kholbisat,Khul'besat,Khulbesat,Khulbesāt,Khulbisat,Khulbisāt,Khul’besat,Khālbêsāt,Khōlbisāt,khlbsat,khwlbsat,خلبسات,خولبسات 33.4948 70.00605 P PPLA2 AF 37 0 1148 Asia/Kabul 2012-02-28
-1136442 Khūgyāṉī Khugyani Khug'yani,Khugyani,Khug’yani,Khukyani,Khūgyānī,Khūgyāṉi,Khūgyāṉī,Khūkyānī,khwgyany,خوگیانی,خوگیاڼی 31.56267 66.5814 P PPLA2 AF 23 0 1311 Asia/Kabul 2012-02-28
-1136469 Khōst Khost Khost,Khowst,Khōst,Matun,Matūn,khwst,mtwn,Хост,خوست,متون 33.33951 69.92041 P PPLA AF 37 96123 1183 Asia/Kabul 2012-01-16
-1136575 Khulm Khulm Bazar-e Khulm,Bāzār-e Khulm,Kholm,Khulm,Tashkurgan,Tashkurghan,Tashqorghan,Tashqurghan,Tāshkurghān,Tāshqorghān,Tāshqurghān,bazar khlm,khlm,tashqrghan,Ташкурган,بازار خلم,تاشقرغان,خلم 36.69736 67.69826 P PPLA2 AF 30 64933 445 Asia/Kabul 2012-02-28
-1136604 Khudāydād Khēl Khudaydad Khel Khodaydad Khel,Khodaydad Kheyl,Khodaydadkhel,Khodāydād Kheyl,Khodāydād Khēl,Khoḏāyḏāḏkhēl,Khuda Dad Khel,Khudaydad Khel,Khudā Dād Khēl,Khudāydād Khēl,khda dad khېl,خدا داد خېل,خدایداد خېل 35.17835 67.68758 P PPLA2 AF 05 0 2030 Asia/Kabul 2012-02-28
-1136723 Khinjān Khinjan Khenjan,Khenjān,Khindzhan,Khinjan,Khinjān,khnjan,خنجان 35.58908 68.90093 P PPLA2 AF 03 0 1132 Asia/Kabul 2012-02-28
-1136737 Khinj Khinj Khenj,Khindzh,Khinj,khnj,Хиндж,خنج 35.42898 69.73482 P PPLA2 AF 42 0 2225 Asia/Kabul 2012-02-28
-1136863 Khāsh Khash Khas,Khash,Khāsh,Khās̄,khash,خاش 31.52919 62.79055 P PPL AF 19 15133 579 Asia/Kabul 2012-01-16
-1137079 Khān Neshīn Khan Neshin Khan Nashim,Khan Nashin,Khan Neshin,Khan Nishin,Khaneshin,Khannesin,Khān Nashīn,Khān Neshīn,Khān Nishīn,Khāneshīn,Khānnešīn,khan nshyn,خان نشین 30.5488 63.7888 P PPLA2 AF 10 0 635 Asia/Kabul 2012-02-28
-1137121 Khānaqāh Khanaqah Khanaka,Khanaqa,Khanaqah,Khanega,Khanehqah,Khaneqa,Khānaqā,Khānaqāh,Khānegā,Khānehqāh,Khāneqā,khanhqah,khanqah,Ханака,خانقاه,خانهقاه 36.62587 69.53695 P PPLA2 AF 26 0 1378 Asia/Kabul 2012-02-28
-1137147 Chahār Bāgh Chahar Bagh Chahar Bagh,Chahār Bāgh,Char Bagh,Chār Bāgh,Khan Chahar Bagh,Khan'-charbag',Khan-Chekhar-Bar,Khan-e Chahar Bagh,Khan-e Char Bagh,Khancarbagh,Khan’-charbag’,Khān Chahār Bāgh,Khān-e Chahār Bāgh,Khān-e Chār Bāgh,Khāncārbāgh,Qani Chahar Bagh,Qanī Chahār Bāgh,chhar bagh,چهار باغ 37.00108 65.22392 P PPLA2 AF 07 0 284 Asia/Kabul 2012-02-28
-1137148 Khandūd Khandud Khandud,Khandut,Khandūd,Khanḏūḏ,khndwd,خندود 36.95127 72.318 P PPLA2 AF 01 5521 2807 Asia/Kabul 2012-02-28
-1137160 Khānaqah Khanaqah Khanaka,Khananqa,Khanaqa,Khanaqah,Khaneqah,Khānaka,Khānanqā,Khānaqah,Khānaqā,Khāneqāh,khanqah,khanqh,خانقاه,خانقه 36.8589 66.16755 P PPLA2 AF 31 0 299 Asia/Kabul 2012-02-28
-1137168 Khanabad Khanabad Khanabad,Khānābād,Ханабад,خان آباد 36.6825 69.11556 P PPL AF 24 71531 503 Asia/Kabul 2009-03-03
-1137247 Khām Āb Kham Ab Kham Ab,Kham-e Ab,Kham-e Āb,Kham-i-Ab,Kham-i-Āb,Khamyab,Khamyāb,Khām Āb,kham ab,khmyab,خام آب,خمياب 37.5275 65.75833 P PPLA2 AF 31 0 254 Asia/Kabul 2012-02-28
-1137359 Khākirān Khakiran Khakeran,Khakiran,Khākerān,Khākirān,khakran,خاکران 32.8385 67.07377 P PPLA2 AF 28 0 2673 Asia/Kabul 2012-02-28
-1137548 Kaz̲h̲ah Kazhah Kaga,Kagd,Kaza,Kazhah,Kaz̲h̲ah,Kaža,Khazha,Khowgiani,Khowgīānī,Nawe Kaza,Nawē Kaža,kzhh,كژه,کږه 34.24088 70.18274 P PPLA2 AF 18 0 1276 Asia/Kabul 2012-02-28
-1137745 Kishk-e Nakhūd Kishk-e Nakhud Kashk-e Nokhowd,Keshk-e Nakhud,Keshk-e Nakhūd,Keskenakhud,Keškenakhud,Kishk-e Nakhud,Kishk-e Nakhūd,Kishkinakhud,Kishkinakhūd,Kuchki-Nalud,Kushk-e Nakhud,Kushk-e Nakhūd,Kuske Nakhud,Kus̄ke Nakhuḏ,kshk nkhwd,کشک نخود 31.62519 65.05511 P PPLA2 AF 23 0 944 Asia/Kabul 2012-02-01
-1137807 Karukh Karukh Karokh,Karrukh,Karukh,Kaṟukh,krkh,کرخ 34.48108 62.5863 P PPLA2 AF 11 17484 1340 Asia/Kabul 2012-02-28
-1138321 Kanḏay Kanday Kanday,Kanḏay,kndy,كندی,کنډی 34.9536 70.77897 P PPLA2 AF 34 0 1222 Asia/Kabul 2012-02-28
-1138336 Kandahār Kandahar Candahar,Kandagar,Kandahar,Kandaharo,Kandahār,Kandhar,Qandahar,Qandahār,Qanḏahāṟ,kan da ha,kandaharu,kndhar,qndhar,Кандагар,קנדאהר,قندهار,كندهار,カンダハール,坎大哈 31.61332 65.71013 P PPLA AF 23 391190 1007 Asia/Kabul 2012-01-16
-1138590 Kalān Deh Kalan Deh Kalan Deh,Kalan-Dekh,Kalān Deh,dh klan,klan dh,دهٔ كلان,کلان ده 33.83676 68.40233 P PPLA2 AF 27 0 2502 Asia/Kabul 2012-02-28
-1138636 Kalakān Kalakan Bazar-e Kalakan,Bāzār-e Kalakān,Kala Chan,Kala Khan,Kala Khān,Kalakan,Kalakān,Qal`eh-ye Khan,Qala Khan,Qala Khān,Qal‘eh-ye Khān,bazar klkan,klkan,بازار کلکان,کلکان 34.78371 69.15001 P PPLA2 AF 13 0 1593 Asia/Kabul 2012-02-28
-1138657 Kalafgān Kalafgan Kalafgan,Kalafgān,Kalefgan,Kalefgān,Kalifgan,Kalifgān,klfgan,کلفگان 36.77274 69.945 P PPLA2 AF 26 0 1590 Asia/Kabul 2012-02-28
-1138714 Kajrān Kajran Kadzhiran,Kajiran,Kajran,Kajrān,Kajīrān,kjran,Каджиран,کجران 33.20357 65.47311 P PPLA2 AF 41 0 1364 Asia/Kabul 2012-02-28
-1138801 Kai Kai Ka'i,Kahi,Kahī,Kai,Ka’i,Kāhī,Kā’ī,kayy,khy,کائی,کهی 34.12819 70.71828 P PPLA2 AF 18 0 945 Asia/Kabul 2012-02-28
-1138958 Kabul Kabul Cabool,Caboul,Cabul,Cabul - kabl,Cabul - کابل,Cabúl,Caubul,Kabil,Kaboel,Kabol,Kaboul,Kabul,Kabula,Kabulas,Kabuli,Kabulo,Kabura,Kabúl,Kabûl,Kampoul,Kobul,Kubha,Kábul,Kābol,kabl,kabul,kabula,kabuli,kaburu,kabwl,kapul,ke bu er,khabul,Καμπούλ,Кабул,Кобул,Քաբուլ,קאבול,كابل,كابول,کابل,काबुल,কাবুল,காபூல்,คาบูล,ཀ་བུར,ქაბული,ካቡል,カブール,カーブル,喀布尔,카불 34.52813 69.17233 P PPLC AF 13 3043532 1798 Asia/Kabul 2010-05-30
-1139085 Jarm Jarm Jarm,Jorm,Jurm,Jurn,Shahr-e Jorm,jrm,جرم 36.86477 70.83421 P PPLA2 AF 01 12106 1564 Asia/Kabul 2012-02-28
-1139335 Jawand Jawand Javand,Jawand,Jowand,jwnd,جوند 35.06361 64.14917 P PPLA2 AF 02 0 945 Asia/Kabul 2011-11-05
-1139500 Jānī Khēl Jani Khel Dzhanikheyl',Dzhanikheyl’,Jani Khel,Jani Kheyl,Janikhel,Jānikhēl,Jānī Kheyl,Jānī Khēl,جانی خېل 32.76315 68.39722 P PPLA2 AF 29 0 2048 Asia/Kabul 2012-02-28
-1139683 Jalrayz Jalrayz Dzhalez,Jalez,Jaliz,Jalrayz,Jalreyz,Jalrez,Jalriz,Jalrīz,Jalēz,Jalīz,jlryz,جلريز 34.47306 68.64333 P PPLA2 AF 27 0 2365 Asia/Kabul 2012-02-28
-1139715 Jalālābād Jalalabad Djelalabad,Dschalalabad,Dzalalabad,Dzhalalabad,Dzhelalabad,Dżalalabad,Jalakot,Jalal-Kut,Jalalabad,Jalalkoat,Jalalkot,Jalālkot,Jalālābād,Jelalabad,Tarun City,jalalabada,jlal abad,Джалалабад,جلال آباد,جلالآباد,জালালাবাদ 34.42647 70.45153 P PPLA AF 18 200331 575 Asia/Kabul 2012-01-16
-1139807 Jabal os Saraj Jabal os Saraj Djabal-ul-Seradj,Dzhabal'-Ussaradzh,Dzhabal’-Ussaradzh,Jabal Saraj,Jabal os Saraj,Jabal os Sarāj,Jabal us Siraj,Jabal us Sirāj,Jabal-us-Sirai,Jabalussaraj,Jabalussaṟāj,Jabl-us-Seraj,Jabl-us-Siraj,Jabul Saraj,Jibal-as-Seraj,Parwan,jbl alsraj,جبل السراج 35.11833 69.23778 P PPL AF 40 15032 1612 Asia/Kabul 2010-03-29
-1139967 Ḩukūmat-e Shīnkaī Hukumat-e Shinkai Hokumat-e Shinkay,Hokumate Sinkay,Hokūmate Šinkay,Hukumat-e Shinkai,Hukumat-e Shinkay,Khukumati-Shinkay,Shinkai,Shīnkaī,hkwmt shynky,shynky,حکومت شینکی,شینکی,Ḩokūmat-e Shinkay,Ḩukūmat-e Shīnkay,Ḩukūmat-e Shīnkaī 31.98303 67.33558 P PPLA2 AF 28 0 1936 Asia/Kabul 2012-02-28
-1140026 Herāt Herat Gerat,Herat,Herāt,Hérat,Kherat,Shahr-e Herat,Shahr-e Herāt,he la te,herato,hrat,Герат,Херат,هرات,ヘラート,赫拉特 34.34817 62.19967 P PPLA AF 11 272806 927 Asia/Kabul 2012-01-16
-1140341 Ḩājī Khēl Haji Khel Haji Khel,Hajikhel,Hajjikheyl,Khadzhikheyl',Khadzhikheyl’,hajy khyl,حاجی خيل,حاجی خېل,Ḩājikhēl,Ḩājjīkheyl,Ḩājī Khēl 35.10922 69.43341 P PPLA2 AF 14 0 1914 Asia/Kabul 2012-02-28
-1140433 Ḩāfiz̧ Moghul Hafiz Moghul Hafez Moghol,Hafez Mughul,Hafiz Moghul,Hāfeẕ Mughul,hafz mghl,حافظ مغل,Ḩāfez̧ Moghol,Ḩāfiz̧ Moghul 37.05643 70.40061 P PPLA2 AF 01 0 1700 Asia/Kabul 2012-02-28
-1140435 Khafizan Khafizan Hafezan,Hafizan,Khafizan,hafzan,حافظان,Ḩāfez̧ān,Ḩāfiz̧ān 34.28665 70.37247 P PPLA2 AF 18 0 909 Asia/Kabul 2012-02-28
-1140605 Guz̄arah Guzarah Gozara,Gozareh,Goz̄areh,Goz̄aṟa,Guzarah,Guz̄arah,gdhrh,گذره 34.21223 62.21235 P PPLA2 AF 11 0 983 Asia/Kabul 2012-02-28
-1140614 Gōshtah Goshtah Goshta,Goshtah,Goshteh,Gosta,Gowshtah,Gošta,Gōshtah,gwshth,گوشته 34.35822 70.76264 P PPLA2 AF 18 0 483 Asia/Kabul 2012-02-28
-1140623 Gōmal Kêlay Gomal Kelay Gomal,Gomal Kalay,Gomal Katay,Gomal Kelay,Gowmal,Gumal,Gumal'kalay,Gumal’kalay,Gōmal Kalay,Gōmal Katay,Gōmal Kêlay,Qashlah `Askari Gowmol,Qashlah ‘Askarī Gowmol,Zor Domandi,gwml kly,گومل کلی 32.50989 68.85598 P PPLA2 AF 29 0 1828 Asia/Kabul 2012-02-28
-1140919 ‘Alāqahdārī Gēlān `Alaqahdari Gelan Alakadari-Gelan,Gelan,Gilan,Gēlān,Gīlān,Janda,Jaṉda,`Alaqadari Gelan,`Alaqahdari Gelan,`Alaqahdari Jandah,gېlan,علاقه داری جڼډه,علاقه داری گېلان,گېلان,‘Alāqahdārī Gēlān,‘Alāqahdārī Jaṉḏah,‘Alāqaḏāṟī Gēlān 32.72692 67.63696 P PPLA2 AF 08 0 1987 Asia/Kabul 2012-02-28
-1140970 Ghūriyān Ghuriyan Ghorian,Ghoriyan,Ghoriān,Ghoryan,Ghurian,Ghuriyan,Ghuryan,Ghōriyān,Ghōṟyān,Ghūriyān,Ghūryān,Ghūrīān,Gorian,ghwryan,غوریان 34.3448 61.49321 P PPLA2 AF 11 0 796 Asia/Kabul 2012-02-28
-1141089 Ghormach Ghormach Garmak,Ghormac,Ghormach,Ghormāch,Ghowrmach,Ghowrmāch,Ghōrmāc,Ghōrmāch,ghwrmch,غورماچ,غورمچ 35.73062 63.78264 P PPLA2 AF 02 7052787 30000 659 Asia/Kabul 2011-12-21
-1141098 Ghurayd Gharamē Ghurayd Gharame Garm,Gharmai,Gharmi,Gharmī,Ghoraydgharame,Ghowrayd Gharami,Ghowrayd Gharamī,Ghoṟayḏghaṟamē,Ghurayd Gharame,Ghurayd Gharamē,Ghurmay,ghrmy,غرمی,غرید غرمې 36.5222 70.79064 P PPLA2 AF 01 0 1884 Asia/Kabul 2012-02-28
-1141269 Ghazni Ghazni Gazni,Ghazni,Ghaznī,Shahr-e Ghazni,Shahr-e Ghaznī,gazni,gazuni,ghznt,ghznyn,Газни,غزنة,غزنی,غزنین,ガズニー 33.55356 68.42689 P PPLA AF 08 141000 2181 Asia/Kabul 2008-04-09
-1141540 Gereshk Gereshk Gereshk,Geresk,Gerešk,Girishk,Nahr-e Saraj,Nahr-e Sarāj,grshk,Герешк,گرشک 31.82089 64.57005 P PPLA2 AF 10 43588 830 Asia/Kabul 2012-02-28
-1141857 Gardēz Gardez Gardeyz,Gardez,Gardiz,Gardêz,Gardēz,Gardīz,Gaṟḏēz,grdyz,Гардез,گرديز,گردېز 33.59744 69.22592 P PPLA AF 36 103601 2308 Asia/Kabul 2012-01-16
-1142170 Fayzabad Fayzabad Faizabad,Faizābād,Fajzabad,Faydz Abad,Fayḏẕ Ābāḏ,Fazelabad,Faīẕābād,Feyzabad,Feyẕābād,fyd abad,Файзабад,فیض آباد 37.11664 70.58002 P PPLA AF 01 44421 1210 Asia/Kabul 2010-08-16
-1142171 Faīẕābād Faizabad Faizabad,Faizābād,Faydzabad,Fayḏẕābāḏ,Fazilabad,Faīẕābād,Feyzabad,Feyẕābād,Fāzilābād,fyd abad,فیض آباد 36.82103 66.45964 P PPLA2 AF 31 0 313 Asia/Kabul 2012-02-28
-1142172 Fayẕābād Fayzabad Faizabad,Faizābād,Faydz Abad,Fayzabad,Fayḏz Ābād,Fayẕābād,Feyzabad,Feyẕābād,qyd abad,قيض آباد 36.29111 64.86222 P PPLA2 AF 07 0 495 Asia/Kabul 2012-02-28
-1142234 Qal‘ah-ye Fārsī Qal`ah-ye Farsi Farsi,Farsī,Kalafarsi,Qal`a Farsi,Qal`a-i-Farsi,Qal`ah-ye Farsi,Qal`eh Farsi,Qal`eh-ye Farsi,Qal‘a Fāṟsi,Qal‘a-i-Fāṟsi,Qal‘ah-ye Farsī,Qal‘ah-ye Fārsī,Qal‘eh Fāṟsi,Qal‘eh-ye Farsī,قلعۀ فارسی,قلعۀ فرسی 33.78529 63.24735 P PPLA2 AF 11 0 2286 Asia/Kabul 2012-02-28
-1142239 Farkhār Farkhar Farkhar,Farkhār,frkhar,فرخار 36.57288 69.85783 P PPLA2 AF 26 10480 1153 Asia/Kabul 2012-02-28
-1142264 Farāh Farah Farah,Farakh,Farāh,frah,فراه 32.37451 62.11638 P PPLA AF 06 43561 662 Asia/Kabul 2012-01-16
-1142330 Istālif Istalif Estalef,Estālef,Istalef,Istalif,Istilif,Istālef,Istālif,Takht-e Istalif,Takht-e Istālif,astalf,tkht astalf,استالف,تخت استالف 34.83268 69.07756 P PPLA2 AF 13 0 1891 Asia/Kabul 2012-02-28
-1142404 Kafir Qala Kafir Qala Eslam Qal`eh,Eslamqal`a,Eslamqal‘a,Eslām Qal‘eh,Islam Kala,Islam Killa,Islam Qal`ah,Islam Qala,Islām Kala,Islām Qala,Islām Qal‘ah,Kafar Qal`eh,Kafir Kala,Kafir Qala,Kāfar Qal‘eh 34.66667 61.06667 P PPL AF 11 18086 726 Asia/Kabul 2012-01-16
-1142517 Injīl Injil Enjeel,Enjil,Enjīl,Injil,Injīl,anjyl,انجيل 34.30157 62.2465 P PPLA2 AF 11 0 937 Asia/Kabul 2012-02-28
-1142545 Imām Şāḩib Imam Sahib Emam Saheb,Emām Şāḩeb,Hazrat,Imam Saheb,Imam Sahib,Imamsakhib,Imām Sāẖeb,Imām Şāḩib,Khwaja,Khwaja Imam Saiyid,Khwaja Iman Saiyid,Khwāja Imām Saiyid,Khwāja Imān Saiyid,amam sahb,امام صاحب 37.18897 68.93644 P PPLA2 AF 24 9659 358 Asia/Kabul 2012-02-28
-1142738 Dōshī Doshi Doshi,Dosi,Dowshi,Dowshī,Doši,Dōshī,dwshy,دوشی 35.60918 68.68473 P PPLA2 AF 03 0 836 Asia/Kabul 2012-02-28
-1142758 Dowlatyār Dowlatyar Daolat Yar,Daulat Yar,Daulat Yār,Dawlatyar,Dawtatyar,Dowlat Yar,Dowlat Yār,Dowlatyar,Dowlatyār,Dāolat Yar,Taht-e Dowlatyar,Taḩt-e Dowlatyār,dwlt yar,dwltyar,دولت یار,دولتیار,Ḏawlatyāṟ,Ḏawtatyāṟ 34.55132 65.79302 P PPLA2 AF 09 0 2456 Asia/Kabul 2012-02-28
-1142761 Dowlat Shāh Dowlat Shah Daulat Shah,Daulat Shāh,Daulatshakh,Dawlat Shah,Dawlat Shāh,Dawlatsah,Dawlatšāh,Dowlat Shah,Dowlat Shāh,dwlt shah,دولت شاه 34.9504 70.07102 P PPLA2 AF 35 0 1551 Asia/Kabul 2012-02-28
-1142776 Dowlātābād Dowlatabad Daulatabad,Daulatābād,Davletabad,Dawlatabad,Dawlatābād,Dowlatabad,Dowlatābād,Dowlātābād,dwlat abad,Даулатабад,دولات آباد 36.98782 66.82066 P PPLA2 AF 30 0 313 Asia/Kabul 2012-02-28
-1142777 Dowlatābād Dowlatabad Danlatabad,Danlatābād,Daolatabad,Daulatabad,Daulatābād,Dawlatabad,Dowlatabad,Dowlatābād,Shirin Tagao,Shīrīn Tagāo,dwlt abad,دولت آباد,Ḏawlatābād 36.43259 64.92071 P PPLA2 AF 07 0 413 Asia/Kabul 2012-02-28
-1142852 Dū Qal‘ah Du Qal`ah Do Qal`eh,Do Qal‘eh,Doqal`a,Du Qal`ah,Dū Qal‘ah,Kala-i-Kah,Kala-i-Kāh,Qal`ah-ye Kah,Qal`eh Kah,Qal`eh-ye Ka,Qala-i-Kah,Qala-i-Kāh,Qal‘ah-ye Kāh,Qal‘eh Kāh,Qal‘eh-ye Kā,دو قلعه,قلعه کاه,Ḏoqal‘a 32.14237 61.4469 P PPLA2 AF 06 0 557 Asia/Kabul 2012-02-28
-1142964 Dūāb Duab Do Ab,Do Āb,Doab-i-Shahpasand,Dow Ab-e Shah Pasand,Dow Āb-e Shāh Pasand,Doāb-i-Shāhpasand,Duab,Dūāb,Tatar,Tātār,Tātāṟ,dwab,tatar,تاتار,دواب 35.56277 67.82191 P PPLA2 AF 32 0 2238 Asia/Kabul 2012-02-28
-1143057 Deh-e Shū Deh-e Shu Deh Shu,Deh Shuy,Deh Shū,Deh Shūy,Deh-e Shu,Deh-e Shū,Dehe Su,Deshu,Dishu,Disu,Dīshū,dh shw,dyshw,ده شو,ديشو,Ḏehe S̄u,Ḏis̄u 30.43295 63.31738 P PPLA2 AF 10 0 600 Asia/Kabul 2012-02-28
-1143255 Dê Nārkhēl Kêlay De Narkhel Kelay De Narkhel Kalay,De Narkhel Kelay,De Narkheyl Kalay,De Nārkheyl Kalay,Dinarkhil,Dê Nārkhēl Kêlay,Dīnārkhīl,Narkheyl'kalay,Narkheyl’kalay,d nar khyl kly,dynarkhyl,د نار خيل كلی,د نارخېل کلی,دينارخيل,Ḏe Nāṟkhēl Kalay 32.43205 65.63484 P PPLA2 AF 23 0 1478 Asia/Kabul 2012-02-28
-1143477 Dehī Dehi Dehi,Dehī,dhy,دهی 35.95806 67.27998 P PPLA2 AF 32 0 1271 Asia/Kabul 2012-02-28
-1143529 Deh-e Şalāḩ Deh-e Salah Deh Salah,Deh Saleh,Deh Sāleh,Deh Şalāḩ,Deh-e Salah,Deh-e Şalāḩ,dh slah,ده صلاح 35.69031 69.3151 P PPLA2 AF 03 0 1632 Asia/Kabul 2012-02-28
-1143548 Deh-e Now Deh-e Now Dakhi-Nau,Deh-e Now,Dehe Naw,dh nw,ده نو,دهٔ نو,Ḏehe Naw 34.74767 69.04784 P PPLA2 AF 13 0 1974 Asia/Kabul 2012-02-28
-1143630 Dehdādī Dehdadi Chahar Sarakah-ye Dehdadi,Chahār Sarakah-ye Dehdādī,Dehdadi,Dehdādī,Dekhdadi,chhar srkh dhdady,dhdady,Дехдади,دهدادی,چهار سرکه دهدادی 36.66308 66.99376 P PPLA2 AF 30 0 397 Asia/Kabul 2012-02-28
-1143782 Dwah Manḏay Dwah Manday Davamandi,Davamandī,Domandao,Domandi,Dowmandi,Dowmandī,Du Mandah,Dvamanday,Dwah Manday,Dwah Manḏay,Dwamanday,Dū Mandah,dw mndh,dwh mndy,dwmndy,دو منده,دومندی,دوه مندی,Ḏwamanday 33.28167 69.585 P PPLA2 AF 37 0 1543 Asia/Kabul 2012-02-28
-1143814 Dasht-e Qal‘ah Dasht-e Qal`ah Dasht Qala,Dasht-e Qal`ah,Dasht-e Qal`eh,Dasht-e Qal‘ah,Dasht-e Qal‘eh,Dashti-Kala,Dast-i-Qal'a,Daste Qal`a,Shahr-e Dasht-e Qal`eh,Shahr-e Dasht-e Qal‘eh,دشت قلعه,Ḏas̄t-i-Qal’a,Ḏas̄te Qal‘a 37.1539 69.4435 P PPLA2 AF 26 0 449 Asia/Kabul 2012-02-28
-1143816 Dasht-e Qal‘ah Dasht-e Qal`ah Dasht-e Qal`ah,Dasht-e Qal`eh,Dasht-e Qal‘ah,Dasht-e Qal‘eh,Daste Qal`a,دشت قلعه,Ḏas̄te Qal‘a 33.02978 63.8395 P PPLA2 AF 06 0 1718 Asia/Kabul 2012-02-28
-1143838 Dasht-e Archī Dasht-e Archi 37.13333 69.16667 P PPL AF 24 8263 379 Asia/Kabul 2006-01-27
-1143874 Darz Āb Darz Ab Darz Ab,Darz Āb,Darzab,Darẕāb,Durzab,Durzāb,drz ab,درز آب 35.97744 65.37828 P PPLA2 AF 31 9642 1179 Asia/Kabul 2012-02-28
-1143901 Markaz-e Ḩukūmat-e Darwēshān Markaz-e Hukumat-e Darweshan Darvishan,Darvīshān,Darwesan,Markaz-e Hukumat-e Darwayshan,Markaz-e Hukumat-e Darweshan,Markaz-e Hukumati Darwayshan,Markaz-e Ḩukūmat-e Darwayshān,Markaz-e Ḩukūmat-e Darwēshān,Markaz-e Ḩukūmatī Darwayshān,Markaze Hokumati Darwesan,Maṟkaze Hokūmatī Darwēsān,mrkz hkwmty drwyshan,mrkzi hkwmti drwyshan,مرکز حکومتی درویشان,مرکزِ حکومتِ درويشان,Ḏaṟwes̄ān 31.13232 64.1934 P PPL AF 10 9012 714 Asia/Kabul 2012-01-16
-1144040 Darqad Darqad Darkat,Darqad,Qeshlaq-e Darqad,Qeshlāq-e Darqad,drqd,درقد 37.38414 69.45294 P PPLA2 AF 26 0 435 Asia/Kabul 2012-02-28
-1144121 Darāyim Darayim Daraim,Darayim,Darāyim,draym,درايم 36.86667 70.38333 P PPLA2 AF 01 0 1693 Asia/Kabul 2012-02-28
-1144166 Dangam Dangam Dangam,Dāngām,dangam,دانگام,ډانگام,Ḏāngām 34.99231 71.41943 P PPLA2 AF 34 0 1250 Asia/Kabul 2012-02-28
-1144185 Ḏanḏar Dandar Dandar,Qaryah-ye Dandar,Qaryah-ye Danḏar,dndar,qryh dnډr,دندار,قريه دنډر,ډنډر,Ḏanḏar 34.79095 69.47504 P PPLA2 AF 40 0 1724 Asia/Kabul 2012-02-28
-1144559 Ḩukūmatī Dahānah-ye Ghōrī Hukumati Dahanah-ye Ghori Dahana,Dahana Ghori,Dahana-i-Ghori,Dahanae Ghori,Dahaneh-ye Ghowri,Dahaneh-ye Ghowṟī,Dahna,Dahāna,Dananeh-ye Ghowri,Dananeh-ye Ghowrī,Hokumati Dahana-i-Ghori Dahana,Hokūmatī Ḏahana-i-Ghōṟi Dahana,Hukumati Dahanah-ye Ghori,حکومتی دهانۀ غوری,Ḏahana-i-Ghōṟi,Ḏahanae Ghōṟi,Ḩukūmatī Dahānah-ye Ghōrī 35.90617 68.48869 P PPLA2 AF 03 3307 801 Asia/Kabul 2012-02-28
-1144905 Tsowkêy Tsowkey Cawkae,Cawkay,Chaukai,Chauki,Chowkay,Chowkey,Chowki,Chowkī,Tsowkey,Tsowkêy,chwky,Čawkae,څوکۍ,چوكی 34.69246 70.92688 P PPLA2 AF 34 0 725 Asia/Kabul 2012-02-28
-1144942 Chīras Chiras Chiras,Chīras,Ciras,Cīras 35.41674 65.98234 P PPL AF 33 12779 2691 Asia/Kabul 2012-01-16
-1145007 Chisht-e Sharīf Chisht-e Sharif Ceste Sarif,Ces̄te S̄aṟīf,Chesht-e Sharif,Chesht-e Sharīf,Chest-e Sharif,Chisht-e Sharif,Chisht-e Sharīf,Chusht-e Sharif,Chusht-e Sharīf,Khvajeh Chesht,Khvājeh Chesht,Khwaja Chist,Qaryeh-ye Chest-e Sharif,Qaryeh-ye Chest-e Sharīf,chsht shryf,چشت شریف 34.34731 63.73966 P PPLA2 AF 11 0 1572 Asia/Kabul 2012-02-28
-1145124 Chinār Chinar Cenar,Chenar,Chenār,Chinar,Chinār,Chīnār,chnar,chynar,Čenār,چنار,چینار 32.01583 65.10721 P PPLA2 AF 23 0 1132 Asia/Kabul 2012-02-28
-1145128 Chimtāl Chimtal Ahan Qal`eh,Cemtal,Cemtāl,Chemtal,Chemtāl,Chimtal,Chimtal',Chimtāl,chmtal,chmtl,Āhan Qal‘eh,Чимталь,چمتال,چمتل 36.67818 66.80325 P PPLA2 AF 30 0 355 Asia/Kabul 2012-02-28
-1145348 Charkh Charkh Carkh,Charkh,chrkh,Čarkh,چرخ 33.79639 68.93806 P PPLA2 AF 17 0 2086 Asia/Kabul 2012-02-28
-1145352 Charikar Charikar Caharikar,Carikar,Chaharikar,Chahārīkār,Chairkar,Charekar,Charikar,Chāirkār,Chārīkār,Cāṟikāṟ,Čahārikār,Чарикар,چاريكار 35.01361 69.17139 P PPLA AF 40 53676 1554 Asia/Kabul 2010-01-29
-1145364 Dowr-e Rabāţ Dowr-e Rabat Cardara,Chahar Darreh,Chahār Darreh,Char Darah,Char Darreh,Chār Darah,Chār Darreh,Cāṟḏaṟa,Davri-Rabat,Dawr-i-Rabat,Dawṟ-i-Ṟabāṯ,Dowr-e Rabat,Dowr-e Rabāţ,Ribat,Ribāt,char drh,dwr rbat,Даври-Рабат,دور رباط,دورٔ رباط,چار دره 36.69132 68.79093 P PPLA2 AF 24 0 390 Asia/Kabul 2012-02-28
-1145417 Tsapêraī Tsaperai Capare,Capaṟē,Chapare,Chapray,Chhapri,Tsapare,Tsaparē,Tsaperai,Tsapêraī,څپری,څپرې 33.83003 69.9192 P PPLA2 AF 36 0 1679 Asia/Kabul 2012-02-28
-1145511 Chamkanī Chamkani Camkani,Chakmani,Chamkani,Chamkanī,Dzamkani,Dzamkanī,Pir Sarai,Pir Serai,Pīr Sarāi,Qal`eh-ye Chamkani,Qal‘eh-ye Chamkanī,Sakmanni Parao,Tsamkani,Tsamkanī,chmkny,Čamkani,چمکنی 33.80298 69.81671 P PPLA2 AF 36 0 1716 Asia/Kabul 2012-02-28
-1145605 Chakaray Chakaray Cakaray,Chakarai,Chakaray,Chakari,Chakarī,Chakaṟaī,Charkari,Dasht-e Chakaray,chkry,dsht chkry,Čakaray,دشت چکری,چکری 34.34099 69.4377 P PPLA2 AF 13 0 2372 Asia/Kabul 2012-02-28
-1145607 Chākarān Chakaran Cakaran,Chakaran,Chākarān,Cākaṟān,Khakaran,Khākarān,chakran,چاکران 36.91047 71.06878 P PPLA2 AF 01 0 1759 Asia/Kabul 2012-02-28
-1145799 Chahār Qal‘ah Chahar Qal`ah Caharqal`a,Chahar Qal`ah,Chahar Qal`eh,Chahār Qal‘ah,Chahār Qal‘eh,Chakharkala,Čahārqal‘a,چهار قلعه 33.55278 68.29833 P PPLA2 AF 08 0 2376 Asia/Kabul 2012-02-28
-1145866 Chahār Burj Chahar Burj Car Burj,Chahar Borj,Chahar Burj,Chahar Burjak,Chahār Borj,Chahār Burj,Chahār Burjak,Char Burj,Charburdzh,Chār Burj,chhar brj,Čār Burj,چهار برج 34.24475 62.19165 P PPL AF 11 11935 943 Asia/Kabul 2012-01-16
-1145897 Chāh-e Āb Chah-e Ab Cah Ab,Cah-i-Ab,Chah Ab,Chah-e Ab,Chah-i-Ab,Chayab,Chāh Āb,Chāh-e Āb,Chāh-i-Āb,Cāh Āb,Cāh-i-Āb,chah ab,چاه آب 37.39773 69.81464 P PPLA2 AF 26 0 1034 Asia/Kabul 2012-02-28
-1145904 Chaghcharān Chaghcharan Caghcaran,Caghcaṟān,Cakhcaran,Cakhcaṟān,Chaghcharan,Chaghcharān,Chakcharan,Chakhcharan,Chekcheran,chghchran,چغچران 34.51952 65.25094 P PPLA AF 09 0 2263 Asia/Kabul 2012-01-16
-1146336 Bulōlah Bulolah Bolola,Bolowleh,Boluleh,Bolōla,Bolūleh,Bulola,Bulolah,Bulōlah,blwlh,بلوله 34.87706 68.0879 P PPLA2 AF 05 0 2430 Asia/Kabul 2012-02-28
-1146576 Bēlchirāgh Belchiragh Belceragh,Belcheragh,Belcherāgh,Belchirag,Belchiragh,Belchirāg,Belchirāgh,Bilchiragh,Bilchirāgh,Bēlceṟāgh,Bēlchirāgh,bl chragh,بل چراغ,بېل چراغ 35.84026 65.2309 P PPLA2 AF 07 0 1163 Asia/Kabul 2012-02-28
-1146694 Bāzār-e Tālah Bazar-e Talah Bazar-e Talah,Bazar-e Taleh,Bazare Tala,Bāzār-e Tālah,Bāzār-e Tāleh,Bāzāṟe Tāla,Tala,Tala Barfaq,bazar talh,بازار تاله 35.39205 68.22317 P PPLA2 AF 03 0 1178 Asia/Kabul 2012-02-28
-1146822 Bāsawul Basawul Basavul',Basavul’,Basawul,Basowl,Bāsawul,Bāsowl,Mohmand Darrah,baswl,باسول 34.24749 70.87218 P PPLA2 AF 18 6835 464 Asia/Kabul 2012-02-28
-1146911 Būrkah Burkah Barkah,Borkeh,Burka,Burkah,Buṟka,Būrkah,bwrkh,بورکه 36.22242 69.15038 P PPLA2 AF 03 0 1188 Asia/Kabul 2012-02-28
-1146979 Barg-e Matāl Barg-e Matal Barg-e Matal,Barg-e Matāl,Barg-e Maṯāl,Barge Matal,Bargi-Matal',Bargi-Matal’,Baṟge Matāl,Bragamata,Bragamatal,Lutdeh,brg mtal,برگ متال 35.67283 71.34339 P PPLA2 AF 38 0 2077 Asia/Kabul 2012-02-28
-1147066 Barakī Barak Baraki Barak Barah Ki Barak,Barah Kī Barak,Baraki Barak,Baraki Burak,Barakibarak,Barakī Barak,Barqi Barq,brh ky brk,brky brk,بره کی برک,برکی برک 33.9675 68.94861 P PPLA2 AF 17 22305 1937 Asia/Kabul 2012-02-28
-1147118 Banū Banu Andarab,Andarāb,Banow,Banu,Banū,bnw,بنو 35.63348 69.2602 P PPLA2 AF 03 0 1510 Asia/Kabul 2012-02-28
-1147242 Bāmyān Bamyan Bamian,Bamiyan,Bamyan,Bāmyān,Bāmīān,Kala Sarkari,Qal`a Sarkarit,Qala Sarkari,Qala Sarkāri,Qal‘a Sarkārit,bamyan,باميان 34.82417 67.82167 P PPLA AF 05 0 2509 Asia/Kabul 2012-01-16
-1147290 Balkh Balkh Bactra,Bactresh,Bakhtar,Balch,Balh,Balhika,Balkh,Bamik,Bazirabad,Bkahdi,Bākhtar,Vazirabad,ba er he,blkh,Балх,Вазирабад,بلخ,巴尔赫 36.75635 66.8972 P PPLA2 AF 30 114883 348 Asia/Kabul 2012-02-28
-1147489 Bahārak Baharak Baharak,Bahārak,Barak,Becharek,Bekharek,bhark,بهارک 37.00254 70.90664 P PPLA2 AF 01 0 1552 Asia/Kabul 2012-02-28
-1147511 Bagrāmī Bagrami Bagrame,Bagrami,Bagrāmē,Bagrāmī,Bigrami,Bigrāmī,Qaryeh-ye Bagrami,Qaryeh-ye Bagrāmī,bgramy,بگرامی 34.49376 69.27427 P PPLA2 AF 13 0 1788 Asia/Kabul 2012-02-28
-1147540 Baghlān Baghlan Baghlan,Baghlan - bghlan,Baghlan - بغلان,Baghlan-e Jadid,Baghlin,Baghlān,Baghlān-e Jadīd,Baglan,Bagolaggo,Sana `Ati,Sana`ati,bghlan,bghlan jdyd,Şanā ‘Ati,Şanā‘atī,Баглан,بغلان,بغلان جديد,صناعتی 36.13068 68.70829 P PPLA2 AF 03 108449 531 Asia/Kabul 2012-02-28
-1147851 Ḩukūmatī Azrow Hukumati Azrow Azra,Azrah,Azraw,Azreh,Azrow,Azru,Azrū,Azṟa,Azṟaw,Hazrah,Hazro,Hokumati Azraw,Hokumati Azrow,Hukumati Azrow,Khukumati-Azrau,azrh,azrw,hkwmty azrw,Āzreh,ازره,ازرو,حکومتی ازرو,Ḩokūmatī Azṟaw,Ḩokūmatī Āzrow,Ḩukūmatī Azrow 34.17355 69.64573 P PPLA2 AF 17 12526 2330 Asia/Kabul 2012-02-28
-1148106 Ārt Khwājah Art Khwajah Art Khvajeh (1),Art Khwajah,At Khvajeh,At Khwaja,art khwajh,Ārt Khwājah,Āt Khvājeh,Āt Khwāja,Āṟt Khvājeh (1),آرت خواجه 37.08571 69.47958 P PPL AF 26 18623 481 Asia/Kabul 2012-01-16
-1148114 ‘Alāqahdārī Aţghar `Alaqahdari Atghar Alakadari-Atgar,Arghar,Ataghar,Atghar,Aţghar,Aṯaghaṟ,`Alaqadari Atghar,`Alaqahdari Atghar,`Alaqehdari-ye Atghar,atghr,اتغر,اطغر,علاقهدارئ اطغر,‘Alāqahdārī Aţghar,‘Alāqaḏāri Aṯghar,‘Alāqehḏārī-ye Aţghar 31.73506 67.3574 P PPLA2 AF 28 0 1827 Asia/Kabul 2012-02-28
-1148205 Āsmār Asmar Asma,Asmar,Asmār,asmar,Āsmā,Āsmār,آسمار,اسمار 35.03333 71.35809 P PPLA2 AF 34 15708 913 Asia/Kabul 2012-02-28
-1148268 Ashkāsham Ashkasham 36.68333 71.53333 P PPL AF 01 12120 3057 Asia/Kabul 2006-01-27
-1148311 Asadābād Asadabad Asadabad,Asadābād,Assad-Abad,Caghasaray,Chagha Serai,Chagha-Sari,Chaghah Saray,Chaghah Sarāy,Chaghasarai,Chaghasaray,Chaghasarāy,Chagsarai,Chegheh Saray,Chegheh Sarāy,Chigha Sarai,Chigha Sarāi,Chigha Serai,Chigkhasaray,asd abad,chghh sray,Čaghasarāy,Асадабад,اسد آباد,چغه سرای 34.87311 71.14697 P PPLA AF 34 48400 837 Asia/Kabul 2012-02-24
-1148560 Āqchah Aqchah Ag Chah,Akcha,Akcheh,Aqca,Aqcha,Aqchah,Aqcheh,aqchh,Āg Chāh,Ākchā,Āqca,Āqchah,Āqcheh,آقچه 36.92196 66.17647 P PPLA2 AF 31 0 288 Asia/Kabul 2012-02-28
-1148658 Andkhōy Andkhoy Andkhoi,Andkhoy,Andkhui,Andkhvoy,Andkhōy,Andkhōī,Andkhūi,Ankhoi,andkhwy,اندخوی 36.95293 65.12376 P PPLA2 AF 07 29208 306 Asia/Kabul 2012-02-28
-1148695 Ānāwah Anawah 'Unabah,Anava,Anawa,Anawah,anawh,Ānāwa,Ānāwah,ʿnabh,آناوه,عنابه,’Unābah 35.23251 69.37719 P PPLA2 AF 42 0 1770 Asia/Kabul 2012-02-28
-1148709 Anār Darah Anar Darah Anar Dara,Anar Darah,Anar Darrah,Anar Darreh,Anardara,Anardarra,Anār Darah,Anār Darrah,Anār Darreh,Anārdarra,Saykh Abad,Shaykh Abad,Shaykh Ābād,S̄aykh Ābāḏ,anar drh,shykh abad,Анар Дара,انار دره,شیخ آباد 32.7587 61.65397 P PPLA2 AF 06 10023 778 Asia/Kabul 2012-02-28
-1148792 Amānzī Amanzi Amanzai,Amanzey,Amanzi,Amin Za'i,Amin Za’ī,Amānzaī,Amānzey,Amānzi,Amānzī,amanzy,amn zyy,امانزی,امن زئی 30.21144 66.04765 P PPLA2 AF 23 0 993 Asia/Kabul 2012-02-28
-1148863 ‘Alāqahdārī-ye Almār `Alaqahdari-ye Almar Alaqadari-i-Almar,Almar,Almar Bazar,Almar Bāzār,Almār,Alāqaḏāṟi-i-Almāṟ,`Alaqahdari-ye Almar,almar,المار,علاقه داری المار,‘Alāqahdārī-ye Almār 35.84616 64.53074 P PPLA2 AF 07 0 840 Asia/Kabul 2012-02-28
-1148893 ‘Alī Shēr ‘Alāqahdārī `Ali Sher `Alaqahdari Aliser 'Alaqadari,Alishahr,Alisheralakadari,Ališēr ’Alāqadāri,Alīshahr,`Ali Sher,`Ali Sher `Alaqahdari,`Ali Shir `Alaqehdari,ʿly shېr,علی شير علاقهداری,علی شېر,علی شېر علاقه داری,‘Alī Shēr,‘Alī Shēr ‘Alāqahdārī,‘Alī Shīr ‘Alāqehdārī 33.4362 70.06711 P PPLA2 AF 37 0 1082 Asia/Kabul 2012-02-28
-1148911 Wuluswālī Alīngār Wuluswali Alingar Oluswali Alingar,Oluswāli Alīngāṟ,Ulusvali-Alingar,Wuluswali Alingar,Wuluswālī Alīngār,`Alingar,wlswaly alyngar,ولسوالی الینگار,‘Alīngār 34.8347 70.35946 P PPLA2 AF 35 0 937 Asia/Kabul 2012-02-28
-1148939 ‘Alī Khēl `Ali Khel Alikheyl',Alikheyl’,`Ali Khel,`Ali Kheyl,`Alikhel,علی خېل,‘Alikhēl,‘Alī Kheyl,‘Alī Khēl 33.94253 69.71908 P PPLA2 AF 36 0 2144 Asia/Kabul 2012-02-28
-1149049 ‘Alāqahdārī Yōsuf Khēl `Alaqahdari Yosuf Khel Alakadari-Yusufkheyl',Alakadari-Yusufkheyl’,Yosuf Khel,Yōsuf Khēl,`Aaqadari Yosufkhel,`Alaqadari Yosufkhel,`Alaqahdari Yosuf Khel,`Alaqehdari Yusofkheyl,`Alaqehdari-ye Yusof Kheyl,علاقه داری یوسف خېل,‘Alāqahdārī Yōsuf Khēl,‘Alāqaḏāṟī Yōsufkhēl,‘Alāqehdārī Yūsofkheyl,‘Alāqehdārī-ye Yūsof Kheyl,‘Aāqaḏāṟī Yōsufkhēl 33.05194 68.65 P PPLA2 AF 29 0 2239 Asia/Kabul 2012-02-28
-1149052 ‘Alāqahdārī Deh-e Shū `Alaqahdari Deh-e Shu `Alaqadari Dehe Su,`Alaqahdari Deh-e Shu,`Alaqehdari Deh-e Shu,علاقهداری ده شو,‘Alāqahdārī Deh-e Shū,‘Alāqaḏāṟī Dehe S̄u,‘Alāqehdārī Deh-e Shū 30.43741 63.31298 P PPL AF 10 9196 600 Asia/Kabul 2012-01-16
-1149107 Alah Sāy Alah Say Alah Say,Alah Sāy,Alasay,Alasāy,alh say,اله سای,شيلۀ اله 34.8965 69.72049 P PPLA2 AF 14 0 1602 Asia/Kabul 2012-02-28
-1149348 Pachīrō Agām Pachiro Agam Agam,Agām,Pachier Agam,Pachir Agam,Pachir Aw Agam,Pachiro Agam,Pachiro Agām,Pachīer Agam,Pachīr Aw Āgām,Pachīr Āgām,Pachīrō Agām,Paciro Agam,Pačīro Agām,agam,pchyrw agam,اگام,پچیرو اگام 34.20011 70.27806 P PPLA2 AF 18 0 1241 Asia/Kabul 2012-02-28
-1149371 Afaki Afaki Afaki,Afaqi,afaqy,Āfāqī,Афаки,آفاقی 36.66172 69.35095 P PPLA2 AF 26 0 711 Asia/Kabul 2012-02-28
-1149379 Adriskan Adriskan Adraskan,Adraskand,Adreskan,Adriskan,Aḏṟeskan,Gala,Gala Adraskan,Kala Adraskan,Kala Adrāskan,Qal`eh Adraskand,Qala Adraskan,Qala Adrāskān,Qal‘eh Adraskand,adrskn,ادرسکن 33.64573 62.26959 P PPLA2 AF 11 0 1352 Asia/Kabul 2012-01-16
-1149550 Āb-e Kamarī Ab-e Kamari Ab-e Kamari,Ab-i-Kamari,ab kmry,Āb-e Kamarī,Āb-i-Kamaṟi,آب کمری 35.08796 63.0678 P PPLA2 AF 02 0 760 Asia/Kabul 2012-02-28
-1348242 Khadīr Khadir Khadir,Khadīr,khdyr,خدیر 33.92232 65.93398 P PPLA2 AF 41 0 2462 Asia/Kabul 2012-02-28
-1349513 Ghulām ‘Alī Ghulam `Ali Gholam `Ali,Gholām ‘Alī,Ghulam `Ali,Ghulām ‘Alī,Gulyamali,Qaryah-ye Shahr-e Now Ghulam 'Ali,Qaryah-ye Shahr-e Now Ghulām ’Alī,Vulusvaliyi-Bagram,Woluswali-i-Bagram,Woluswali-ye Bagram,Woluswālī-i-Bagṟām,Woluswālī-ye Bagrām,qryh shhr nw ghlam ʿly,wlswaly bgram,غلام علی,قريه شهر نو غلام علی,ولسوالی بگرام 34.95076 69.2287 P PPLA2 AF 40 0 1489 Asia/Kabul 2012-02-28
-1349709 Qarah Bāgh Bāzār Qarah Bagh Bazar Bazar-e Qarah Bagh,Bāzār-e Qarah Bāgh,Karabagbazar,Qarabagh Bazar,Qarah Bagh Bazar,Qarah Bāgh Bāzār,Qareh Bagh Bazar,Qareh Bāgh Bāzār,Qaṟabāgh Bāzāṟ,bazar qrh bagh,qrh bagh bazar,بازار قره باغ,قره باغ بازار 34.8529 69.17062 P PPLA2 AF 13 0 1531 Asia/Kabul 2012-02-28
-1349845 Zargarān Zargaran Zargaran,Zargarān,zrgran,زرگران 34.78764 69.05878 P PPLA2 AF 13 0 1935 Asia/Kabul 2012-02-28
-1349934 Surkh Bilandī Surkh Bilandi Sorkh Bilandi,Sorkh Bilandī,Sorkh Bolandi,Sorkh Bolandī,Surkh Bilandi,Surkh Bilandī,Surkh-Belandi,Surkhbilandi,Suṟkh-Belanḏi,srkh blndy,سرخ بلندی 34.68474 69.02863 P PPLA2 AF 13 0 2040 Asia/Kabul 2012-02-28
-1349969 Pul-e Sangī Pul-e Sangi Pol-e Sangi,Pol-e Sangī,Pul-e Sangi,Pul-e Sangī,Pule Sangi,Puli-Sangi,pl sngy,پل سنگی,پلٔ سنگی 34.59972 69.25993 P PPLA2 AF 13 0 1776 Asia/Kabul 2012-02-28
-1422873 Langar Langar Langar,Qaryah-ye Langar,lngr,qryh lngr,قريه لنگر,لنگر 35.99474 68.05081 P PPLA2 AF 32 0 1440 Asia/Kabul 2012-02-28
-1423264 Bāgh-e Maīdān Bagh-e Maidan Bagh-e Maidan,Bagh-e Meydan,Bagh-e Meydān,Baghe Maydan,Bagi-Maydan,Bāgh-e Maīdān,Bāghe Mayḏān,bagh mydan,bgh mydan,باغ میدان,بغ ميدان 35.22156 69.21397 P PPLA2 AF 40 0 1988 Asia/Kabul 2012-02-28
-1423451 Ibrāhīm Khān Ibrahim Khan Ebrahimkhan,Ebrāhīmkhān,Ibrahim Khan,Ibrakhimkhan,Ibrāhīm Khān,Qaryah-ye Ibrahim Khel,Qaryah-ye Ibrāhīm Khēl,abrahym khan,qryh abrahym khېl,ابراهيم خان,ابراهیم خان,قريه ابراهيم خېل 35.05352 69.25654 P PPLA2 AF 40 0 1491 Asia/Kabul 2012-02-28
-1427089 Qaranghū Tōghaī Qaranghu Toghai Karankutugay,Qaranghu Toghai,Qaranghū Tōghaī,Qaryah-ye Qaran Toghai,Qaryah-ye Qaran Tōghaī,qrnghw twghy,qryh qrn twghy,قرنغو توغی,قريه قرن توغی 37.21528 67.63972 P PPLA2 AF 30 0 301 Asia/Kabul 2012-02-28
-1429434 Bāzārak Bazarak Bazarak,Bāzārak,bazark,Базарак,بازارك,بازارک 35.31292 69.51519 P PPLA AF 42 0 1965 Asia/Kabul 2012-01-19
-1429499 Shayrwānī-ye Bālā Shayrwani-ye Bala Serwani Bala,Shayrwan-e Bala,Shayrwani,Shayrwani-ye Bala,Shayrwān-e Bālā,Shayrwānī,Shayrwānī-ye Bālā,Shervani-Bala,Shirvani Bala,Shīrvānī Bālā,shyrwan bala,shyrwany,shyrwany bala,Šērwāni Bālā,Шервани-Бала,شيروانی,شيروانی بالا,شیروان بالا 35.01468 69.59934 P PPLA2 AF 14 0 1786 Asia/Kabul 2012-02-28
-1429521 Kirāmān Kiraman Keraman,Kerāmān,Kiraman,Kirāmān,kraman,Кираман,کرامان 35.2973 69.68125 P PPLA2 AF 42 0 2527 Asia/Kabul 2012-02-28
-1434016 ‘Alāqahdārī Sarōbī `Alaqahdari Sarobi Alakadari-Sarobi,`Alaqadari Sarobi,`Alaqadari-ye Sarubi,`Alaqahdari Sarobi,`Alaqahdari-ye Sarobi,علاقه داری سروبی,‘Alāqadārī-ye Saṟūbī,‘Alāqahdārī Sarōbī,‘Alāqahdārī-ye Saṟōbī,‘Alāqaḏārī Saṟōbi 32.79331 69.0866 P PPLA2 AF 29 0 2400 Asia/Kabul 2012-02-28
-1435007 Zerok-Alakadari Zerok-Alakadari Zerok Alagadari,Zerok Alaqadari,Zerok `Alaqahdari,Zerok-Alakadari,Zeruk `Alaqahdari,Ziruk,Ziruk `Alaqahdari,Ziruk `Alaqehdari,Zērōk Alāgaḏāṟī,Zērōk Alāqaḏāṟi,Zērūk ‘Alāqahdārī,Zēṟōk ‘Alāqahdārī,Zīṟūk,Zīṟūk ‘Alāqahdārī,Zīṟūk ‘Alāqehdārī,zyړwk,زیړوک,زیړوک علاقه داری 33.15806 69.31278 P PPLA2 AF 29 0 2336 Asia/Kabul 2012-02-28
-1437312 Kushkak Kushkak Kushkak,Kuskak,Kuškak,Kūshkak,kshkk,کشکک 32.28991 61.52194 P PPLA2 AF 06 0 612 Asia/Kabul 2012-02-28
-1437517 Khayr Kōṯ Khayr Kot Khayr Kot,Khayr Kōṯ,Khayrkot,Kheyr Kut,Kheyr Kūt,khyr kwt,خیر کوت,خیر کوټ 32.85355 68.44972 P PPLA2 AF 29 0 2126 Asia/Kabul 2012-02-28
-1448087 Chowṉêy Chowney Cawnay,Chawnay,Chowney,Chowṉêy,Čawnay,چوڼۍ 33.38278 66.27233 P PPLA2 AF 41 0 1347 Asia/Kabul 2012-02-28
-1451863 Wuṯahpūr Wutahpur Votapur,Watahpur,Waṯahpūr,Wotapur,Wotapūr,Wutahpur,Wuṯahpūr,wtpwr,وتپور,وټه پور 34.91914 71.09863 P PPLA2 AF 34 0 872 Asia/Kabul 2012-02-28
-1452109 Karbori Karbori Karbori,Karburi,Karbōṟī,Karbūri,Kaṟbōri,كربوړی 34.96472 71.27444 P PPLA2 AF 34 0 878 Asia/Kabul 2012-02-28
-1453103 Sulţānpūr-e ‘Ulyā Sultanpur-e `Ulya Soltanpur-e `Olya,Soltānpūr-e ‘Olyā,Sultan Pur,Sultanpur-e `Ulya,Sultanpure `Ulya,Sultanpuri-Ulia,Sulţān Pūr,Sulţānpūr-e ‘Ulyā,Sūltānpūṟe ‘Ulyā,sltan pwr,سلطان پور,سلطانپور علیا,سلطانپورٔ علیا 34.41204 70.29634 P PPLA2 AF 18 0 696 Asia/Kabul 2012-02-28
-1453777 Babasakhib Babasakhib Baba Saheb,Baba Sahib,Babasakhib,Bābā Şāḩeb,Bābā Şāḩib,baba sahb,بابا صاحب 31.66144 65.66098 P PPLA2 AF 23 0 1014 Asia/Kabul 2012-02-28
-1454590 Chandal Bā’ī Chandal Ba'i Candalba'i,Chandal Ba'i,Chandal Bā’ī,Chandalba'e,Chandalba'i,Chandalbā’e,Chandalbā’i,chndl bayy,Čandalbā’i,چندل بائی 34.5847 68.95536 P PPLA2 AF 13 0 2304 Asia/Kabul 2012-02-28
-1455430 Dahan-e Jarf Dahan-e Jarf Dahan-e Jarf,Dakhani-Dzharf,dhn jrf,دهن جرف 34.92858 68.46278 P PPLA2 AF 40 0 2259 Asia/Kabul 2012-02-28
-1456960 Maīdān Shahr Maidan Shahr Maidan Shahr,Maidan Shar,Maydanshakhr,Maīdān Shahr,Maīdān S̲h̲ār,Meydan Shahr,Meydān Shahr,mydan shhr,ميدان شهر 34.39561 68.86618 P PPLA AF 27 1600 2206 Asia/Kabul 2012-01-19
-1459933 Dulaynah Dulaynah Dolayna,Dolaynah,Dorahi Ghor,Dulaynah,Durahi Ghor,Durāhī Ghōr,dlynh,drahy ghwr,دراهی غور,دلینه,Ḏolayna,Ḏoṟāhī Ghōṟ 34.15599 64.78566 P PPLA2 AF 09 0 2619 Asia/Kabul 2012-02-28
-1464552 Qaram Qōl Qaram Qol Qaram Qol,Qaram Qōl,Qaramqol,Qaramqul,Qaramqūl,qrm qwl,قرم قول 36.83006 65.04299 P PPLA2 AF 07 0 334 Asia/Kabul 2012-02-29
-1464922 Pul-e Ḩişār Pul-e Hisar Pol-e Hesar,Pol-e Ḩeşār,Pul-e Hisar,Pul-e Ḩişār,Pule Hesar,Pule Hesāṟ,pl hsar,پل حصار 35.61794 69.47134 P PPLA2 AF 03 0 1979 Asia/Kabul 2012-02-29
-1465349 Lab-Sar Lab-Sar 36.02634 66.83799 P PPL AF 30 1068 1011 Asia/Kabul 2012-02-29
-1467349 Ţāqchah Khānah Taqchah Khanah Taqca Khana,Taqchah Khanah,Taqcheh Khaneh,Tāqchah Khānah,Tāqcheh Khāneh,Tāqča Khāna,taqchh khanh,Ţāqchah Khānah,تاقچه خانه,طاقچه خانه 36.61922 69.62805 P PPLA2 AF 26 0 1071 Asia/Kabul 2012-02-29
-1467433 March March Marc,March,Maṟc,Qaryah-ye Murch,mrch,qryh mrch,قريه مرچ,مرچ 37.52845 70.4482 P PPLA2 AF 01 0 1607 Asia/Kabul 2012-02-29
-1467505 Zīrakī Ziraki Ziraki,Zīrakī,Zīṟakī,zyrky,زیرکی 37.59212 70.55857 P PPLA2 AF 01 0 2475 Asia/Kabul 2012-02-29
-1467976 Aliabad Aliabad Aliabad,`Ali Abad,`Aliabad,Алиабад,علی آباد,‘Alī Ābād,‘Alīābād 36.52115 68.89985 P PPLA2 AF 24 0 426 Asia/Kabul 2012-02-29
-1468514 Pas Pul Pas Pul Pas Pol,Pas Pul,ps pl,پس پل 37.47407 70.61586 P PPLA2 AF 01 0 2158 Asia/Kabul 2012-02-29
-1469237 Qal‘ah-ye Na‘īm Qal`ah-ye Na`im Kalanaim,Qal`ah-ye Na`im,Qal`eh Na`im,Qal`eh-ye Na`im,Qal‘ah-ye Na‘īm,Qal‘eh Na‘īm,Qal‘eh-ye Na‘īm,qlʿh nʿym,قلعه نعيم 34.3998 69.16679 P PPLA2 AF 13 0 1815 Asia/Kabul 2012-02-29
-1469706 Markaz-e Woluswalī-ye Āchīn Markaz-e Woluswali-ye Achin Achin,Achin-Ulusvali,Acin Oluswali,Markaz-e Woluswali-ye Achin,Markaz-e Woluswalī-ye Āchīn,Āchīn,Āčīn Oluswāli,آچين 34.12583 70.70778 P PPL AF 18 15098 972 Asia/Kabul 2010-08-10
-1474140 Manogay Manogay Manogay,Manugay,Mānūgay,Māṉōgay,manwgy,مانوگی,ماڼوگی 34.99015 70.91302 P PPLA2 AF 34 0 1042 Asia/Kabul 2012-02-29
-1476203 Stêr Gīān Ster Gian Gayan,Gayān,Ster Gian,Ster Giyan,Ster Gyan,Ster Gyān,Sterg'yan,Sterg’yan,Stêr Giyān,Stêr Gīān,gyan,str gyan,ستر گیان,گیان 32.97704 69.37308 P PPLA2 AF 29 0 2132 Asia/Kabul 2012-02-29
-6692413 Cool űrhajó Cool urhajo 34.26545 67.34516 P PPL AF 05 58525 2884 Asia/Kabul 2008-05-19
-3576022 Saint John’s Saint John's Saint John,Saint John's,Saint John’s,Sent Dzonsas,Sent Džonsas,Sent Tzons,Sent-Dzhons,St Johns,St. John's,St.John.s,seinteujonseu,sentojonzu,sheng yue han,sheng yue han shi,snt g'wns,Σεντ Τζονς,Сент-Джонс,סנט ג'ונס,ሴንት ጆንስ፥ አንቲጋ እና ባርቡዳ,セントジョンズ,圣约翰,圣约翰市,세인트존스 17.11667 -61.85 P PPLC AG 04 24226 6 America/Antigua 2012-01-18
-3576050 Potters Village Potters Village Potters,Potters Village,Potters-Villadzh,Поттерс-Вилладж 17.08333 -61.81667 P PPL AG 04 1433 36 America/Antigua 2012-01-18
-3576057 Piggotts Piggotts Piggotts,Saint Mark's,Saint Marks Village,Saint Mark’s 17.11667 -61.8 P PPLA AG AG 03 0 11 America/Antigua 2012-02-06
-3576074 Parham Parham Parham,Parkhehm,Пархэм 17.09682 -61.77046 P PPLA AG 07 969 64 America/Antigua 2012-02-06
-3576144 Liberta Liberta Liberta,Liberta Village,Либерта 17.03333 -61.78333 P PPL AG 06 1668 92 America/Antigua 2012-01-18
-3576260 Falmouth Falmouth Falmouth 17.02741 -61.78136 P PPLA AG 06 0 1 America/Antigua 2012-02-06
-3576361 Bolands Bolands Boland Village,Bolands,Bolans 17.06565 -61.87466 P PPLA AG 05 1657 192 America/Antigua 2012-02-06
-3576397 All Saints All Saints All Saints,All Saints Village 17.06671 -61.79303 P PPL AG 00 2526 65 America/Antigua 2012-02-06
-3573374 The Valley The Valley De Balei,The Valley,Valley,Valli,bare,deobaelli,Δε Βάλεϊ,Валли,ואלי,バレー,더밸리 18.21704 -63.05783 P PPLC AI 00 1169 7 19 America/Anguilla 2011-01-21
-3573380 Stoney Ground Stoney Ground Stoney Ground 18.21667 -63.03333 P PPL AI 00 1225 18 America/Anguilla 2012-02-02
-363243 Sarandë Sarande Agioi,Agioi Saranta,Ayii Saranda,Hagios Saranta,Porto Edda,Santa Quaranta,Santi Quaranta,Saranda,Sarande,Sarandë,Saranta,Zogaj,Άγιοι Σαράντα,Саранда 39.87556 20.00528 P PPL AL 51 15147 32 Europe/Tirane 2012-01-19
-363320 Konispol Konispol Conispolis,Konispoje,Konispol,Konispol',Konispoli,Konispolis,Конисполь 39.65889 20.18139 P PPL AL 51 1349 382 Europe/Tirane 2012-01-19
-363383 Delvinë Delvine Del'vina,Delvina,Delvine,Delvino,Delvinon,Delvinë,Zelvinou,Дельвина 39.95111 20.09778 P PPL AL 51 3916 200 Europe/Tirane 2012-02-28
-781443 Tepelenë Tepelene Tepelen,Tepelena,Tepelene,Tepeleni,Tepelenë,Тепелена 40.29583 20.01917 P PPL AL 45 11955 212 Europe/Tirane 2012-02-28
-781919 Përrenjas-Fshat Perrenjas-Fshat Perrenjas-Fshat,Prrenjas-Fshat,Prrenjasi,Përrenjas-Fshat 41.06667 20.53528 P PPL AL 43 4015 586 Europe/Tirane 2012-01-19
-781979 Poliçan Polican Polican,Policani,Polichan,Poliçan,Poliçani,Поличан 40.61222 20.09806 P PPL AL 40 10663 328 Europe/Tirane 2012-01-19
-782061 Peshkopi Peshkopi Dibra,Dibre,Dibrë,Peshkepija,Peshkepije,Peshkopeja,Peshkopi,Peshkopia,Peshkopie,Peshkopija,Peshkopije,Peshkopië,Peshkopla,Peshkëpijë,Piscopeia,Pishcopeja,Pishkopeja,pei shen ke bi,peshukopi,Пешкопеја,Пешкопия,ペシュコピ,佩什科比 41.685 20.42889 P PPLA AL 41 14848 660 Europe/Tirane 2012-01-19
-782070 Përmet Permet Permet,Permeti,Premet,Premete,Premeti,Premetē,Prëmet,Përmet,Пермет 40.23361 20.35167 P PPL AL 45 10686 244 Europe/Tirane 2012-02-28
-782393 Maliq Maliq Malik,Maliq,Maliqi,Малик 40.70583 20.69972 P PPL AL 46 3735 844 Europe/Tirane 2012-01-19
-782523 Libohovë Libohove Libhova,Libohov,Libohova,Libohova Qender,Libohova Qendër,Libohove,Libohovo,Libohovë,Libokhova,Libokhovon,Либохова 40.03111 20.26306 P PPL AL 45 3651 406 Europe/Tirane 2012-01-19
-782535 Leskovik Leskovik Leskovik,Leskoviku,Leskoviqi,Liascovik,Liascovitsi,Liaskoviki,Ljakovici,Лесковик 40.15139 20.59722 P PPL AL 46 2655 909 Europe/Tirane 2012-01-19
-782632 Kurbnesh Kurbnesh Kurbnesh,Kurbnesha,Kurbneshi,Курбнеш 41.77972 20.08361 P PPL AL 48 1429 745 Europe/Tirane 2012-01-19
-782661 Kukës Kukes Cucus,Kukes,Kukesi,Kuks,Kuksi,Kukuch,Kukus,Kukës,Kukësi,Кукес,Кукъс 42.07694 20.42194 P PPLA AL 47 17832 351 Europe/Tirane 2012-01-19
-782756 Korçë Korce Corce,Corcë,Coritsa,Coritza,Coriza,Corizza,Corriza,Ghiortsa Corcia,Gorica,Goritsa,Korca,Korce,Korcha,Korche,Korcza,Korica,Korice,Koritsa,Koritza,Korrca,Korrce,Korrça,Korrçë,Korytsa,Korça,Korçë,Körice,Корча 40.61861 20.78083 P PPLA AL 46 58259 869 Europe/Tirane 2012-01-19
-782843 Këlcyrë Kelcyre Kel'cira,Kelcyra,Kelcyre,Kelcyres,Kelcyrës,Kleisoura,Klisura,Këlcyra,Këlcyrë,Кельцира 40.31306 20.18944 P PPL AL 45 2486 178 Europe/Tirane 2012-01-19
-783059 Gramsh Gramsh Gramish,Gramsci,Gramsh,Gramshi,Грамш 40.86972 20.18444 P PPL AL 43 11556 200 Europe/Tirane 2012-02-28
-783148 Gjirokastër Gjirokaster Agirocastro,Arghirocastru,Arghyrocastro,Argirocastro,Argirokastro,Argyrokastro,Argyrokastron,Aryirokastro,Aryirokastron,Ergheni,Ergiri,Ghinokastre,Girokastra,Girokastro,Gjinokaster,Gjinokastra,Gjinokastre,Gjinokastrer,Gjinokastër,Gjirokaster,Gjirokastra,Gjirokastre,Gjirokastrë,Gjirokastër,ji nuo ka si te,Αργυρόκαστρο,Ђирокастра,Аргирокастро,Гирокастра,Гирокастро,吉诺卡斯特 40.07583 20.13889 P PPLA AL 45 23437 286 Europe/Tirane 2012-01-19
-783214 Fushë-Arrëz Fushe-Arrez Arres,Arrës,Arsi,Arst,Fusha e Arezit,Fusha e Arrezit,Fusha e Arrëzit,Fusha e Arsit,Fusha e Arëzit,Fusha-Arres,Fusha-e-Arresit,Fushe Arrezi,Fushe e Arrezit,Fushe-Ares,Fushe-Aresi,Fushe-Arezi,Fushe-Arezit,Fushe-Arresi,Fushe-Arrez,Fushë e Arrëzit,Fushë-Arrësi,Fushë-Arrëz,Fushë-Arëzi,Fushë-Arëzit,Фуша-Аррес 42.06222 20.01667 P PPL AL 49 2438 533 Europe/Tirane 2012-01-19
-783259 Ersekë Erseke Colonia,Ehrseka,Erseg Giatseg,Ersek,Erseka,Erseke,Ersekë,Kolonija,Kolonije,Kolonijë,Kolonja,Kolonje,Kolonjë,Эрсека 40.33778 20.67889 P PPL AL 46 7890 1021 Europe/Tirane 2012-02-28
-783263 Elbasan Elbasan Ehl'basan,Elbasan,Elbasani,Elbassan,Эльбасан 41.1125 20.08222 P PPLA AL 43 100903 128 Europe/Tirane 2012-01-19
-783408 Çorovodë Corovode Cerevoda,Cerevode,Cerevodë,Chorovoda,Corovoda,Corovode,Gjavan,Zhaban,Çorovoda,Çorovodë,Чоровода 40.50417 20.22722 P PPL AL 40 14046 320 Europe/Tirane 2012-02-28
-783493 Burrel Burrel Burela,Burele,Bureli,Burelë,Burrel,Burrel',Burrele,Burreli,Burrelë,Буррель 41.61028 20.00889 P PPL AL 41 15405 315 Europe/Tirane 2012-01-19
-783508 Bulqizë Bulqize Bul'kiza,Bulkiza,Bulqiza,Bulqize,Bulqizë,Bulquize,Булькиза 41.49167 20.22194 P PPL AL 41 11212 775 Europe/Tirane 2012-01-19
-783606 Bilisht Bilisht Biclishta,Biglista,Biklishta,Bilisht,Bilishte,Bilishti,Bilishtë,Bilisthi,Билишти 40.6275 20.99 P PPL AL 46 7114 926 Europe/Tirane 2012-02-28
-832209 Librazhd-Qendër Librazhd-Qender Hala,Librazhd Qendre,Librazhd Qëndre,Librazhd-Qender,Librazhd-Qendër 41.19694 20.33556 P PPL AL 43 12691 554 Europe/Tirane 2012-01-19
-3183691 Vukatanë, Vukatan Vukatane, Vukatan Vukatan,Vukatana,Vukatane,Vukatanë 42.02806 19.54778 P PPL AL AL 49 1113 11 11 Europe/Tirane 2012-02-04
-3183708 Vorë Vore Vora,Vore,Vorra,Vorre,Vorrë,Vorë,Вора 41.39083 19.655 P PPL AL 50 4973 82 Europe/Tirane 2012-01-19
-3183719 Vlorë Vlore Au'lon,Au’lon,Avlon,Avlona,Avlonya,Vallona,Valona,Vl'ora,Vljora,Vlona,Vlone,Vlonë,Vlora,Vlore,Vlorë,Vļora,Валона,Вльора,Влёра 40.46667 19.48972 P PPLA AL 51 89546 2 Europe/Tirane 2012-01-19
-3183814 Ura Vajgurore Ura Vajgurore Ur'e Hasan Beut,Ura Asan Beut,Ura Vajgurore,Ura e Hasan Beut,Ura-Khasan-Beut,Ura-Vaygurore,Ure-Vajgurore,Urë-Vajgurore,Ur’e Hasan Beut,Yefira Hassan Beut 40.76889 19.87778 P PPL AL 40 4893 33 Europe/Tirane 2012-01-19
-3183875 Tirana Tirana Tiran,Tirana,Tirane,Tirano,Tiranë,Tirāna,Tyrana,Tyranna,Tírana,de la na,tilana,tirana,tyrana,tyrnh,Τίρανα,Тирана,Тырана,טירנה,تىرانا,تيرانا,ティラナ,地拉那,티라나 41.3275 19.81889 P PPLC AL 50 374801 113 Europe/Tirane 2012-02-28
-3184081 Shkodër Shkoder Iskodra,Scutari,Shkoder,Shkodra,Shkodër,Skadar,Skodra,Szkodra,sqwdr,İşkodra,Škodra,Скадар,Шкодер,Шкодра,שקודר 42.06828 19.51258 P PPLA AL 49 88245 12 Europe/Tirane 2010-01-29
-3184099 Shijak Shijak Bazar Sciak,San Giacomo,Shejak,Shejaku,Shijak,Shijaku,Shjak,Shyaku,Shëjaku,Sjak,Šjak,Шияку 41.34556 19.56722 P PPL AL 42 14138 34 Europe/Tirane 2012-01-19
-3184136 Shëngjin Shengjin Saint Giovanni di Medua,San Giovanni di Medua,San Njin,Sen Dovani di Medua,Sh'njini,Shen Ghen,Shengin,Shengjin,Shengjini,Shëngjin,Shëngjini,Sh’njini,Sveti Jovan Medovski,Šen Ðovani di Medua,Шенгин 41.81361 19.59389 P PPL AL 48 2698 1 Europe/Tirane 2012-01-19
-3184197 Selenicë Selenice Selenic,Selenica,Selenice,Selenicë,Selenitsa,Seleniza,Selenizza,Селеница 40.53056 19.63583 P PPL AL 51 6912 73 Europe/Tirane 2012-02-28
-3184238 Rubik Rubik Rrubig,Rrubigu,Rrumbiku,Rubig,Rubik,Rubiku,Рубик 41.77444 19.78611 P PPL AL 48 2332 79 Europe/Tirane 2012-01-19
-3184252 Rrogozhinë Rrogozhine Rogozhina,Rogozhine,Rogozhinë,Rogozin,Rogozina,Rogožin,Rrogozesa,Rrogozhina,Rrogozhine,Rrogozhinë,Rrogozësa,Rrogzhine,Рогожина 41.07639 19.66528 P PPL AL 50 5620 22 Europe/Tirane 2012-02-28
-3184264 Rrëshen Rreshen Reshen,Resheni,Rreshen,Rresheni,Rrshen,Rrsheni,Rrëshen,Rshen,Rsheni,Rëshen,Rëshëni,Решен 41.7675 19.87556 P PPL AL 48 10064 94 Europe/Tirane 2012-02-28
-3184290 Roskovec Roskovec Roscovec,Roskovec,Roskoveci,Rroskoveci,Treg i Frasherit,Tregu-Frasherit,Росковец 40.7375 19.70222 P PPL AL 44 6657 18 Europe/Tirane 2012-02-28
-3184388 Pukë Puke Puca,Puka,Puka Katund,Puke,Pukë,Пука 42.04444 19.89972 P PPL AL 49 6495 799 Europe/Tirane 2012-02-28
-3184497 Peqin Peqin Pecin,Pekin,Pekini,Pekinj,Peqin,Peqini,Peqinj,Пекин 41.04611 19.75111 P PPL AL 43 7513 52 Europe/Tirane 2012-01-19
-3184517 Patos Fshat Patos Fshat Patos Fshat,Patosi Fshat 40.64278 19.65083 P PPL AL 44 22679 157 Europe/Tirane 2012-01-19
-3184575 Orikum Orikum Orik,Oriku,Orikum,Orikumi,Орикум 40.32528 19.47139 P PPL AL 51 2604 7 Europe/Tirane 2012-01-19
-3184702 Milot Milot Milet,Miljoti,Milot,Miloti,Милет 41.68389 19.71556 P PPL AL 48 2157 23 Europe/Tirane 2012-01-19
-3184743 Memaliaj Memaliaj Mamaliaga,Mamaliaj,Memaliaj,Memalianji,Мемалиай 40.35167 19.98028 P PPL AL 45 4951 115 Europe/Tirane 2012-02-28
-3184806 Mamurras Mamurras Mamuras,Mamurasi,Mamuraz,Mamurras,Mamurrasi,Murrizaj,Мамуррас 41.5775 19.69222 P PPL AL 48 8282 25 Europe/Tirane 2012-01-19
-3184862 Lushnjë Lushnje Ljushna Cod a Gomares,Ljushnja,Ljusnje,Ljušnje,Lousnia,Lushne,Lushnja,Lushnje,Lushnjë,Lusnje,Lušnje,Люшня 40.94194 19.705 P PPL AL 44 41469 22 Europe/Tirane 2012-01-19
-3184935 Lezhë Lezhe Alessio,Lesh,Leshe,Leshi,Lezh,Lezha,Lezhe,Lezhë,Lisi,Ljes,Lješ,Lyesh,Лежа 41.78361 19.64361 P PPLA AL 48 18695 7 Europe/Tirane 2012-01-19
-3185012 Laç Lac Lac,Laci,Lak,Latsch,Laç,Laçi,Лак 41.63556 19.71306 P PPL AL 48 24825 33 Europe/Tirane 2012-01-19
-3185060 Kuçovë Kucove Kuchova,Kucova,Kucove,Kuçova,Kuçovë,Petrolia,Qyteti Stalin,Stalin,Кучова 40.80028 19.91667 P PPL AL 40 18166 58 Europe/Tirane 2012-01-19
-3185082 Krujë Kruje Akcehisar,Akçehisar,Croia,Cruja,Krna,Kroia,Kroja,Kroya,Kroïa,Krue,Krueja,Kruja,Kruje,Krujë,Круе 41.50917 19.79278 P PPL AL 42 21286 509 Europe/Tirane 2012-01-19
-3185087 Krrabë Krrabe Kerraba,Kerrabe,Kraba e Vogel,Kraba e Vogël,Krraba,Krraba Vogel,Krraba e Vogel,Krraba e Vogël,Krrabe,Krrabe e Vog,Krrabë,Kërraba,Kërrabë 41.21556 19.97139 P PPL AL 50 1177 416 Europe/Tirane 2012-01-19
-3185133 Koplik Koplik Koplik,Koplik Poster,Koplik Pošter,Koplik i Poshtem,Koplik i Poshtëm,Kopliku,Kopliku i Poshtem,Kopliku i Poshtëm,Kopliku-e Poshtem,Kopliku-e Poshtëm,Коплик 42.21361 19.43639 P PPL AL 49 4078 63 Europe/Tirane 2012-02-28
-3185211 Kavajë Kavaje Cavaia,Cavaja,Kavaia,Kavaj,Kavaja,Kavaje,Kavajë,Kavaïa,Кавайе,Кавая 41.18556 19.55694 P PPL AL 50 29354 19 Europe/Tirane 2012-01-19
-3185270 Kamëz Kamez Camza,Kambeza,Kambëza,Kamez,Kamza,Kamze,Kamzë,Kamëz 41.38167 19.76028 P PPL AL 50 11026 55 Europe/Tirane 2012-01-19
-3185377 Himarë Himare Chimara,Cimarre,Himara,Himare,Himarë,Imara,Kheimara,Khimara,Химара 40.10167 19.74472 P PPL AL 51 4596 3 Europe/Tirane 2012-01-19
-3185638 Fushë-Krujë Fushe-Kruje Fus e Krujs,Fush' e Krujes,Fush-Kruja,Fusha-Kruja,Fushe Kruja,Fushe e Krujes,Fushe-Kruje,Fushë Kruja,Fushë e Krujës,Fushë-Krujë,Fush’ e Krujës,Fuš e Krujs,Teke Fuscia Crujs,Фуша-Круя 41.47833 19.71778 P PPL AL 42 10458 24 Europe/Tirane 2012-01-19
-3185670 Fier-Çifçi Fier-Cifci 40.71667 19.56667 P PPLX AL 44 60995 17 Europe/Tirane 2007-05-30
-3185672 Fier Fier Fearica,Fier,Fieri,Fjeri,fei xia er,Фиери,非夏爾 40.72389 19.55611 P PPLA AL 44 56297 20 Europe/Tirane 2012-01-19
-3185728 Durrës Durres Drac,Drach,Drač,Duraso,Durazzo,Durehs,Dures,Duresi,Durres,Durresa,Durresi,Durrsi,Durrës,Durrësi,Durts,Durus,Durz,Durësi,Dyrrachio,Dyrrachium,Dyrrakhion,Dyrrhachium,Epidamnos,dou la si,do~urasu,dwrs,Δυρράχιο,Драч,Дуррес,Дуръс,Дурэс,דורס,ドゥラス,都拉斯 41.32306 19.44139 P PPLA AL 42 122034 13 Europe/Tirane 2012-01-19
-3185897 Cërrik Cerrik Cerrik,Cerriku,Cërrik,Valasi,Церрик 41.03167 19.97583 P PPL AL 43 14269 77 Europe/Tirane 2012-01-19
-3186084 Berat Berat Beligrad,Berat,Berati,Beration,Berta,Lezskigrad,Verati,Veration,berato,pei la te,Берат,בראט,ベラト,培拉特 40.70583 19.95222 P PPLA AL 40 46866 66 Europe/Tirane 2012-01-19
-3186145 Ballsh Ballsh Bal'shi,Baleri,Ballesh,Balleshi,Ballsh,Ballshi,Ballësh,Ballëshi,Bals,Balš,Бальши 40.59889 19.73472 P PPL AL 44 10361 206 Europe/Tirane 2012-02-28
-174703 Zarrit’ap’ Zarrit'ap' Azizbekov,Pashaghu,Pashalu,Zaritap,Zarrit'ap',Zarrit’ap’ 39.63732 45.51162 P PPL AM 10 1323 1518 Asia/Yerevan 2012-01-17
-174704 Zangakatun Zangakatun Chanakhchi,Nizhniye Chanakhchi,Sovetashen,Zangakatun,Зангакатун 39.8212 45.04063 P PPL AM 02 1130 1671 Asia/Yerevan 2012-01-17
-174706 Yenikend Yenikend Gorovan,Yenikend 39.90611 44.73171 P PPL AM 02 2238 927 Asia/Yerevan 2012-01-17
-174709 Yeghegnavan Yeghegnavan Ekhegnavan,Shidlu,Yeghegnavan,Ехегнаван 39.83799 44.62531 P PPL AM 02 1221 825 Asia/Yerevan 2012-01-17
-174710 Yeghegnadzor Yeghegnadzor Egegnajor,Ekhegnadzor,Keshishkend,Keshishkent,Mikoyan,Yeghegik,Yeghegnadzor,Yekhegnadzor,Ехегнадзор,Եղեգնաձոր 39.76389 45.33239 P PPLA AM 10 8200 1242 Asia/Yerevan 2012-01-17
-174713 Vostan Vostan Bedzhazlu,Vostan,Востан 39.96515 44.55937 P PPL AM 02 2925 837 Asia/Yerevan 2012-01-17
-174714 Vosketap’ Vosketap' Shiraz,Shirazlu,Vosketap',Vosketap’ 39.88114 44.64917 P PPL AM 02 4080 841 Asia/Yerevan 2012-01-17
-174716 Vernashen Vernashen Bashkend,Vernashen,Вернашен 39.79236 45.36389 P PPL AM 10 1162 1543 Asia/Yerevan 2012-01-17
-174717 Verishen Verishen Verishen 39.53557 46.31221 P PPL AM 08 2114 1613 Asia/Yerevan 2012-01-17
-174725 Vedi Vedi Beyuk-Vedi,Biyuk-Vedi,Vedi,Веди 39.91421 44.72217 P PPL AM 02 12192 909 Asia/Yerevan 2012-01-17
-174726 Vayk’ Vayk' Azizbekov,Soylan,Vayk',Vayk’ 39.691 45.46653 P PPL AM 10 5419 1239 Asia/Yerevan 2012-01-17
-174743 Tegh Tegh Dyg,Lekh,Teg,Tegh,Tekh,Тех,Տեղ 39.55792 46.47723 P PPL AM 08 2120 1350 Asia/Yerevan 2012-01-17
-174755 Surenavan Surenavan 39.75 44.8 P PPL AM 10 2241 804 Asia/Yerevan 2006-01-17
-174764 Sisavan Sisavan Sisavan,Yengidzha,Сисаван 39.9 44.66667 P PPL AM 02 1793 860 Asia/Yerevan 2012-01-17
-174769 Shinuhayr Shinuhayr Shinuair,Shinuajr,Shinuayr,Shinuhayr,Sinuayr,Sinuhayr,Şinuayr,Шинуайр,Շինուհայր 39.4367 46.31787 P PPL AM 08 2206 1500 Asia/Yerevan 2012-01-17
-174775 Shahumyan Shahumyan Shahumian,Shahumyan,Shaumjan,Shaumyan,Yuva,Шаумян 39.93845 44.56973 P PPL AM 02 3905 828 Asia/Yerevan 2012-01-17
-174776 Shatin Shatin Gasankend,Hasankand,Hesan Kand,Shatik,Shatin,Шатин 39.83568 45.30186 P PPL AM 10 1671 1284 Asia/Yerevan 2012-01-17
-174782 Shaghat Shaghat Shagat,Shaghat 39.56253 45.91433 P PPL AM 08 1011 1708 Asia/Yerevan 2012-01-17
-174794 Rrind Rrind Rind,Rrind 39.76022 45.17907 P PPL AM 10 1368 1306 Asia/Yerevan 2012-01-17
-174805 Noyakert Noyakert Khalisa,Nojakert,Noyakert,Ноякерт 39.8312 44.66899 P PPL AM 02 1751 827 Asia/Yerevan 2012-01-17
-174820 Mrgavan Mrgavan Gedaklu,Mgravan,Mrgavan,Мграван 39.97167 44.53318 P PPL AM 02 1713 839 Asia/Yerevan 2012-01-17
-174823 Meghri Meghri Meghri,Megri,Megry,Mergi,Mogri,Мегри 38.90292 46.24458 P PPL AM 08 4540 657 Asia/Yerevan 2012-01-17
-174828 Malishka Malishka Malishka 39.73758 45.39004 P PPL AM 10 4174 1186 Asia/Yerevan 2012-01-17
-174849 Khndzoresk Khndzoresk Khndzoresk,Xnjoresk,Խնձորեսկ 39.51224 46.43284 P PPL AM 08 1940 1524 Asia/Yerevan 2012-01-17
-174875 Kapan Kapan Ghap'an,Ghap’an,Kafan,Kafin,Kapan,Katan,Madan,Qafan,Zangezur,kapan,Капан,Կապան,کاپان 39.20754 46.40576 P PPLA AM 08 33160 774 Asia/Yerevan 2012-01-17
-174884 Jermuk Jermuk Dzhermuk,Jermuk,Джермук 39.84173 45.6723 P PPL AM 10 4582 2111 Asia/Yerevan 2012-01-17
-174895 Goris Goris Geryusy,Goris,Горис,Գորիս 39.51288 46.33816 P PPL AM 08 20379 1377 Asia/Yerevan 2012-01-17
-174904 Gladzor Gladzor Gladzor,Ortakend,Гладзор 39.78123 45.35043 P PPL AM 10 2080 1400 Asia/Yerevan 2012-01-17
-174907 Getap’ Getap' Getap',Getap’,Ghyotur,Koytur 39.76306 45.30664 P PPL AM 10 1842 1134 Asia/Yerevan 2012-01-17
-174918 Dzorastan Dzorastan Akhtakhana,Dzorastan,Khlatag 39.27059 46.3572 P PPL AM 08 1034 1206 Asia/Yerevan 2012-01-17
-174931 Dalar Dalar Dalar,Dalular,Далар 39.97653 44.52649 P PPL AM 02 2504 839 Asia/Yerevan 2012-01-17
-174940 Burastan Burastan Burastan,Karagamzalu,Tamamlu 39.98333 44.5 P PPL AM 02 1998 835 Asia/Yerevan 2012-01-17
-174941 Brun Brun Brun,Բրուն 39.53491 46.30732 P PPL AM 08 1028 1641 Asia/Yerevan 2012-01-17
-174942 Brrnakot’ Brrnakot' Brnakot,Brrnakot',Brrnakot’ 39.49742 45.97241 P PPL AM 08 1912 1698 Asia/Yerevan 2012-01-17
-174947 Berkanush Berkanush Berkanush,Ogurbeklu 39.97726 44.51394 P PPL AM 02 1682 836 Asia/Yerevan 2012-01-17
-174964 Aygezard Aygezard Ajgezard,Anastasavan,Aygedzor,Aygezard,Dargalu,Айгезард 39.95436 44.6023 P PPL AM 02 3192 877 Asia/Yerevan 2012-01-17
-174965 Aygepat Aygepat Ajgepat,Aygepat,Dargalu Verkhniy,Masumlu,Verkhniy Dargalu,Айгепат 39.95845 44.59982 P PPL AM 02 1349 880 Asia/Yerevan 2012-01-17
-174968 Aygavan Aygavan Ajgavan,Aygavan,Reganlu,Айгаван 39.87326 44.66984 P PPL AM 02 3758 847 Asia/Yerevan 2012-01-17
-174969 Avshar Avshar 39.8536 44.6793 P PPL AM 02 4215 835 Asia/Yerevan 2011-04-18
-174972 Hats’avan Hats'avan Acavan,Atsavan,Hats'avan,Hats’avan,Sisian,Ацаван 39.46405 45.97047 P PPL AM 08 15208 1761 Asia/Yerevan 2012-01-17
-174979 Artashat Artashat Artashat,Kamarl,Kamarlu,Kamarlyu,Арташат 39.96144 44.54447 P PPLA AM 02 20562 830 Asia/Yerevan 2012-01-17
-174980 Yeghegis Yeghegis Alagyaz,Alayaz,Artabuynk,Artabuynk',Artabuynk’,Erdapin,Yeghegis,Yekhegis 39.87181 45.36002 P PPL AM 10 1045 1579 Asia/Yerevan 2012-01-17
-174983 Armash Armash 39.76532 44.80902 P PPL AM 10 2434 832 Asia/Yerevan 2011-04-18
-174984 Areni Areni Areni,Arpa,Арени 39.71913 45.17991 P PPL AM 10 1718 989 Asia/Yerevan 2012-01-17
-174991 Ararat Ararat Ararat,Davalinskiy Tsemzavod,Арарат 39.83166 44.70489 P PPL AM 02 28832 822 Asia/Yerevan 2012-01-17
-174997 Angeghakot’ Angeghakot' Angeghakot',Angeghakot’,Angekhakot,Angelaut 39.57017 45.94123 P PPL AM 08 1726 1837 Asia/Yerevan 2012-01-17
-175002 Aghavnadzor Aghavnadzor Agavnadzor,Aghavnadzor,Akhavnadzor,Aynadzor,Агавнадзор 39.78222 45.22753 P PPL AM 10 1925 1548 Asia/Yerevan 2012-01-17
-175006 Agarakadzor Agarakadzor Agarakadzor,Ayar,Агаракадзор 39.73405 45.35274 P PPL AM 10 1195 1153 Asia/Yerevan 2012-01-17
-175007 Agarak Agarak Agarak,Aqarak,Агарак 39.20684 46.5446 P PPL AM 08 4707 998 Asia/Yerevan 2012-01-17
-391233 Aralek Aralek 39.90195 44.6514 P PPL AM 02 2354 854 Asia/Yerevan 2011-04-19
-612561 Horrom Horrom Horom,Horrom,Orom,Ором 40.66012 43.88819 P PPL AM 07 1893 1578 Asia/Yerevan 2012-01-17
-613075 Margara Margara Margara,Markara,Маргара,Маркара 40.03351 44.17709 P PPL AM 03 1360 848 Asia/Yerevan 2012-01-17
-616034 Zovuni Zovuni Molla Kasum,Zovuni,Зовуни 40.51083 44.42889 P PPL AM 01 4484 1818 Asia/Yerevan 2012-01-17
-616037 Zovaber Zovaber Yaydzhi,Zovaber,Зовабер 40.56693 44.78827 P PPL AM 04 1470 1763 Asia/Yerevan 2012-01-17
-616039 Zorak Zorak Donguzyan,Zangilar,Zorak,Зорак 40.09109 44.39209 P PPL AM 02 1390 832 Asia/Yerevan 2012-01-17
-616046 Zarr Zarr Zar,Zarr,Зар 40.2595 44.73086 P PPL AM 05 1340 1619 Asia/Yerevan 2012-01-17
-616052 Yerevan Yerevan Ayrivan,EREVAN,Ereban,Erehvan,Ereun,Erevan,Erevano,Ereván,Erewan,Erivan,Eriwan,Erywan,Erywań,Ierevan - Erevan,Iereván - Երեվան,Iravan,Jerevan,Jerevanas,Jereván,Revan,Yerevan,Yervandavan,Yiriwan,Yèrèvan,ayrwan,ereban,erevani,iyerebhana,shhr ayrwan,ye li wen,yeleban,yerevana,yryfan,Êrîvan,İrəvan,Ερεβάν,Єреван,Јереван,ЕРЕВАН,Ереван,Ерэван,Երեվան,Երևան,ירוואן,ایروان,شهر ایروان,يريفان,येरेवान,ইয়েরেভান,ერევანი,ዬሬቫን,エレバン,葉里溫,예레반 40.18111 44.51361 P PPLC AM 11 1093485 994 Asia/Yerevan 2012-01-17
-616053 Yerazgavors Yerazgavors Aralykh,Erazgavors,Yerazgavors,Еразгаворс 40.7 43.75 P PPLQ AM 07 1285 1454 Asia/Yerevan 2012-01-17
-616055 Yeraskhahun Yeraskhahun Kuru-Araz,Yeraskhahun,Yeraskhaun 40.07167 44.21619 P PPL AM 03 1346 841 Asia/Yerevan 2012-01-17
-616056 Yeranos Yeranos Eranos,Yeranos,Еранос 40.20428 45.19209 P PPL AM 04 4233 1982 Asia/Yerevan 2012-01-17
-616060 Yeghegnut Yeghegnut Ekheknut,Kamyshkut,Yegegnut,Yeghegnut,Yekhegnut,Yekheknut,Ехекнут 40.90302 44.63155 P PPL AM 06 1154 1096 Asia/Yerevan 2012-01-17
-616061 Yeghegnut Yeghegnut Badal,Ekhegnut,Molla Badal,Yeghegnut,Yekheknut,Ехегнут 40.09186 44.16018 P PPL AM 03 1746 846 Asia/Yerevan 2012-01-17
-616062 Ejmiatsin Ejmiatsin Artemed,Avan Vardgesi,EHCHMIADZIN,Echmiadzin,Echmiatsin,Ecmiadzin,Eczmiadzyn,Ejmiatsin,Etchmiadzine,Etschmiadsin,Ečmiadzin,Iejmiatsin,Kaynepolis,Kayrak'aghak',Kayrak’aghak’,Norak'aghak',Norak’aghak’,Uch'k'ilisa,Uch’k’ilisa,Uckilise,Vagarsapat,Vagarshapat,Vagharshapat,Valeroktista,Vardgesavan,achmyadzyn,echmiadzini,ehchmiadzin,Üçkilise,Вагаршапат,ЭЧМИАДЗИН,Эчмиадзин,Վաղարշապատ,اچمیادزین,ეჩმიაძინი 40.16557 44.29462 P PPL AM 03 49513 877 Asia/Yerevan 2012-01-17
-616065 Yeghvard Yeghvard Egvard,Jegward,Yeghvard,Yegvard,Yegvart,Yevgard,Егвард 40.32053 44.48138 P PPL AM 05 10705 1332 Asia/Yerevan 2012-01-17
-616071 Voskevaz Voskevaz Kiziltamur,Voskevaz,Воскеваз 40.27678 44.29509 P PPL AM 01 3789 1048 Asia/Yerevan 2012-01-17
-616072 Voskevan Voskevan Koshkotan,Voskevan,Воскеван 41.12022 45.06532 P PPL AM 09 1287 929 Asia/Yerevan 2012-01-17
-616076 Voskehask Voskehask Molla Musa,Musakan,Voskeask,Voskehask,Воскеаск 40.76426 43.77474 P PPL AM 07 1803 1495 Asia/Yerevan 2012-01-17
-616094 Verin Getashen Verin Getashen Nerkin Getashen,Verin Adyaman,Verin Getashen,Verkhniy Adyaman,Неркин Геташен 40.13328 45.25068 P PPL AM 04 4173 1976 Asia/Yerevan 2012-01-17
-616097 Verin Dvin Verin Dvin Aysori Dvin,Verin Dvin,Verkhniy Dvin,Верин Двин 40.02434 44.59038 P PPL AM 02 1853 955 Asia/Yerevan 2012-01-17
-616100 Verin Artashat Verin Artashat Ardashar,Artashat,Verin Artashat,Verkhniy Artashat,Верин Арташат 39.99046 44.58546 P PPL AM 02 3931 881 Asia/Yerevan 2012-01-17
-616101 Verin Akhtala Verin Akhtala Verin Akhtala,Verkhnyaya Akhtala 41.16838 44.75811 P PPL AM 06 1989 1214 Asia/Yerevan 2012-01-17
-616103 Varser Varser Chirchir,Varser,Варсер 40.5534 44.9069 P PPL AM 04 1614 1915 Asia/Yerevan 2012-01-17
-616108 Vardenis Vardenis Basargech'ar,Basargech’ar,VARDENIS,Vardenis,ВАРДЕНИС 40.18272 45.7311 P PPL AM 04 11382 1940 Asia/Yerevan 2012-01-17
-616109 Vardenik Vardenik Gezeldara,Nerkin Gezaldara,Nizhnyaya Gezaldara,Vardenik,Варденик 40.13928 45.43342 P PPL AM 04 7709 1976 Asia/Yerevan 2012-01-17
-616117 Vahan Vahan Ordzhonikidze,Vahan,Орджоникидзе 40.57549 45.39769 P PPL AM 04 1153 1925 Asia/Yerevan 2012-01-17
-616119 Vaghashen Vaghashen Avdalagalu,Vagashen,Vaghashen,Vakhashen,Вахашен 40.13578 45.32879 P PPL AM 04 3235 1956 Asia/Yerevan 2012-01-17
-616120 Vahagni Vahagni Shagali,Vaagni,Vahagni,Ваагни 40.90698 44.60873 P PPL AM 06 1184 1076 Asia/Yerevan 2012-01-17
-616121 Ushi Ushi Ushi 40.34869 44.37252 P PPL AM 01 1276 1393 Asia/Yerevan 2012-01-17
-616123 Urrut Urrut Urrut,Urut,Урут 41.06778 44.39628 P PPL AM 06 1102 1459 Asia/Yerevan 2012-01-17
-616136 Tsovinar Tsovinar Covinar,Kolakran,Tsovinar,Цовинар 40.15701 45.46132 P PPL AM 04 3968 1954 Asia/Yerevan 2012-01-17
-616137 Tsovazard Tsovazard Covazard,Gadzhi Mukhan,Mukhan,Tsovazard,Цовазард 40.4709 45.05879 P PPL AM 04 1949 1929 Asia/Yerevan 2012-01-17
-616138 Tsovak Tsovak Covak,Nerkin Zagalu,Nizhniy Zagalu,Tsovak,Цовак 40.18254 45.63286 P PPL AM 04 2531 1923 Asia/Yerevan 2012-01-17
-616139 Tsovagyugh Tsovagyugh Chabukhly,Chibukhly,Chubukhly,Chubuliki,Covagjukh,Tsovagyugh,Tsovagyukh,Tzovagyugh,Цовагюх 40.63029 44.95738 P PPL AM 04 3857 1976 Asia/Yerevan 2012-01-17
-616150 Tsaghkunk’ Tsaghkunk' Tsaghkunk',Tsaghkunk’,Tsakhkunk,Verin Aylanlu,Verkhnyaya Aylanlu 40.18075 44.27026 P PPL AM 03 1089 884 Asia/Yerevan 2012-01-17
-616158 Tsaghkahovit Tsaghkahovit Cakhkaovit,Gadzhi-Khalil,Tsaghkahovit,Tsakhkaovit,Tzaghkahovit,Цахкаовит 40.63428 44.22241 P PPL AM 01 1551 2108 Asia/Yerevan 2012-01-17
-616159 Tsaghkaber Tsaghkaber Avdibek,Cakhkaber,Tsaghkaber,Tsakhkaber,Tsakhkashen,Tzaghkaber,Цахкабер 40.79849 44.10144 P PPL AM 06 1207 1762 Asia/Yerevan 2012-01-17
-616160 Tsaghkadzor Tsaghkadzor CAKHKADZOR,Darachichag,Tsaghkadzor,Tsakhkadzor,ЦАХКАДЗОР 40.53259 44.72025 P PPL AM 05 1407 1861 Asia/Yerevan 2012-01-17
-616174 T’azagyugh T'azagyugh T'azagyugh,Tazagyukh,T’azagyugh 40.1382 45.19096 P PPL AM 04 2248 2100 Asia/Yerevan 2012-01-17
-616178 Tashir Tashir Kaliniko,Kalinin,Kalinino,TASHIR,Tashir,Vorontsovka,ТАШИР 41.12072 44.28462 P PPL AM 06 7318 1505 Asia/Yerevan 2012-01-17
-616184 Tandzut Tandzut Armutlu,Tandzut,Тандзут 40.07015 44.07476 P PPL AM 03 1816 859 Asia/Yerevan 2012-01-17
-616187 T’alin T'alin T'alin,T’alin,Verin Talin,Verkhniy Talin 40.38428 43.87387 P PPL AM 01 4945 1602 Asia/Yerevan 2012-01-17
-616199 Spitak Spitak Amamlu,Amamth,Spitak,Спитак 40.8322 44.2673 P PPL AM 06 15059 1548 Asia/Yerevan 2012-01-17
-616202 Spandaryan Spandaryan Kulidzhan,Spandarjan,Spandaryan,Спандарян 40.66105 44.01551 P PPL AM 07 1226 1825 Asia/Yerevan 2012-01-17
-616208 Sovetakan Sovetakan Kyarimarkh,Sovetakan,Советакан 40.10712 44.05108 P PPL AM 03 1613 857 Asia/Yerevan 2012-01-17
-616211 Solak Solak Solak,Солак 40.46439 44.70796 P PPL AM 05 2295 1655 Asia/Yerevan 2012-01-17
-616213 Sis Sis Sarvanlar,Sis,Uliya Sarvanlar,Сис 40.06023 44.38649 P PPL AM 02 1135 828 Asia/Yerevan 2012-01-17
-616220 Shnogh Shnogh Shnogh,Shnokh,Шнох 41.14693 44.84043 P PPL AM 06 2872 640 Asia/Yerevan 2012-01-17
-616224 Shirak Shirak Konakhkran,Kunakhkran,Shirak,Ширак 40.84042 43.91582 P PPL AM 07 1007 1634 Asia/Yerevan 2012-01-17
-616230 Shenavan Shenavan Blkher,Shenavan,Шенаван 40.48296 44.383 P PPL AM 01 1587 1881 Asia/Yerevan 2012-01-17
-616231 Shenavan Shenavan Kyalagarkh,Shenavan,Шенаван 40.05486 43.92876 P PPL AM 03 1757 895 Asia/Yerevan 2012-01-17
-616250 Sevan Sevan SEVAN,Sevan,Ssewan,Yelenovka,СЕВАН 40.5484 44.94868 P PPL AM 04 17083 1921 Asia/Yerevan 2012-01-17
-616255 Sarukhan Sarukhan Dalikardash,Sarukhan,Сарухан 40.29053 45.13059 P PPL AM 04 6173 1990 Asia/Yerevan 2012-01-17
-616259 Sarigyugh Sarigyugh Sarigyugh,Sarigyukh,Srigekh,Srygekh 41.03531 45.14486 P PPL AM 09 1096 828 Asia/Yerevan 2012-01-17
-616262 Saratak Saratak Imrkhan,Saratak,Саратак 40.66992 43.86915 P PPL AM 07 1115 1560 Asia/Yerevan 2012-01-17
-616265 Saramech Saramech Chotur,Saramech,Сарамеч 40.77487 44.2222 P PPL AM 06 1111 1780 Asia/Yerevan 2012-01-17
-616273 Sarahart’ Sarahart' Gyullidzha,Saraart,Sarahart',Sarahart’ 40.87043 44.21407 P PPL AM 00 1364 1733 Asia/Yerevan 2012-01-17
-616278 Samaghar Samaghar Gekhakert,Samagar,Samaghar,Samakhar,Самахар 40.18516 44.24331 P PPL AM 03 2343 883 Asia/Yerevan 2012-01-17
-616288 Ptghni Ptghni Ptghni,Ptgni,Ptkhni,Ptykhni,Птхни 40.25576 44.58407 P PPL AM 05 1231 1330 Asia/Yerevan 2012-01-17
-616289 Ptghunk’ Ptghunk' Ptghunk',Ptghunk’,Ptkhunk 40.16505 44.36328 P PPL AM 03 1345 869 Asia/Yerevan 2012-01-17
-616290 Pshatavan Pshatavan Igdalu,Pshatavan,Пшатаван 40.03865 44.06629 P PPL AM 03 2159 860 Asia/Yerevan 2012-01-17
-616291 Prroshyan Prroshyan Proshian,Proshyan,Prroshyan 40.24853 44.41631 P PPL AM 05 4333 1187 Asia/Yerevan 2012-01-17
-616297 Pokr Mantash Pokr Mantash Malyy Mantash,Pokr Arkhvali,Pokr Mantash,Покр Манташ 40.64026 44.04666 P PPL AM 07 1838 1977 Asia/Yerevan 2012-01-17
-616299 Zoravan Zoravan Kargavank,Pokravan,Zoravan,Зораван 40.35326 44.52319 P PPL AM 05 1167 1466 Asia/Yerevan 2012-01-17
-616303 Pemzashen Pemzashen Magmudzhuk,Mahmutcuk,Makhmudzhug,PEMZASHEN,Pemzashen,ПЕМЗАШЕН 40.5851 43.94021 P PPL AM 07 2436 1793 Asia/Yerevan 2012-01-17
-616306 Parravak’ar Parravak'ar Paravakar,Paravaker,Parravak'ar,Parravak’ar,Паравакар 40.98154 45.367 P PPL AM 00 1637 766 Asia/Yerevan 2012-01-17
-616320 Oshakan Oshakan Oshakan,Ошакан 40.2646 44.31456 P PPL AM 01 4768 1043 Asia/Yerevan 2012-01-17
-616328 Hoktember Hoktember Hoktember,OKTEMBERJAN,Oktember,Sardarapat,ОКТЕМБЕРЯН 40.13206 44.00969 P PPL AM 03 5348 862 Asia/Yerevan 2012-01-17
-616330 Odzun Odzun Dzun,Odzun,Usuklyar,Uzunlar,Одзун 41.05321 44.61341 P PPL AM 06 4524 1107 Asia/Yerevan 2012-01-17
-616333 Noyemberyan Noyemberyan Baran,Barana,NOEMBERJAN,Noyemberyan,НОЕМБЕРЯН 41.17244 44.99917 P PPL AM 09 5119 842 Asia/Yerevan 2012-01-17
-616340 Nor Gyugh Nor Gyugh Nor Gyugh,Nor Gyukh,Tazagyukh 40.2673 44.6563 P PPL AM 05 1462 1435 Asia/Yerevan 2012-01-17
-616341 Nor Geghi Nor Geghi Bazmavan,Chatkran,Nor Geghi,Nor Gekhi,Нор Гехи 40.32105 44.58027 P PPL AM 05 4896 1347 Asia/Yerevan 2012-01-17
-616345 Norashen Norashen Bogdanovka,Norashen,Норашен 41.18886 44.33336 P PPL AM 06 1386 1586 Asia/Yerevan 2012-01-17
-616350 Norashen Norashen Norashen,Verin Kurdkend,Норашен 39.9996 44.58952 P PPL AM 02 3049 897 Asia/Yerevan 2012-01-17
-616352 Nor Armavir Nor Armavir 40.08563 43.99242 P PPL AM 03 1597 892 Asia/Yerevan 2011-04-18
-616356 Noramarg Noramarg Abilkend,Ablkend,Bulagli,Bulakhly,Imeni Kalinina,Kalinin,Noramarg,Poselok Imeni Kalinina,Posëlok Imeni Kalinina,Норамарг 40.02384 44.42403 P PPL AM 02 1811 827 Asia/Yerevan 2012-01-17
-616359 Norakert Norakert Norakert 40.19229 44.34774 P PPL AM 01 2485 932 Asia/Yerevan 2012-01-17
-616361 Noratus Noratus Noraduz,Noratus,Норадуз 40.37547 45.17718 P PPL AM 04 5426 1929 Asia/Yerevan 2012-01-17
-616375 Nerk’in Getashen Nerk'in Getashen Nerk'in Getashen,Nerkin Adyaman,Nerk’in Getashen,Nizhniy Adyaman 40.14046 45.279 P PPL AM 04 7010 1944 Asia/Yerevan 2012-01-17
-616383 Navur Navur Navur,Навур 40.86694 45.34179 P PPL AM 09 1227 1482 Asia/Yerevan 2012-01-17
-616385 Nalbandyan Nalbandyan Mets Shagriar,Nalbandjan,Nalbandyan,Shagriar,Shagriar Bol'shoy,Shagriar Bol’shoy,Налбандян 40.06236 43.9869 P PPL AM 03 4019 870 Asia/Yerevan 2012-02-01
-616391 Musayelyan Musayelyan Mets Kyapanak,Musaeljan,Musayelyan,Мусаелян 40.75767 43.99274 P PPL AM 07 1499 1638 Asia/Yerevan 2012-01-17
-616396 Hovtamej Hovtamej Hovtamej,Mugan,Ovtamech 40.18347 44.25862 P PPL AM 03 1018 885 Asia/Yerevan 2012-01-17
-616399 Mrgashen Mrgashen Mrgashen 40.28523 44.54107 P PPL AM 05 1623 1329 Asia/Yerevan 2012-01-17
-616400 Mrgashat Mrgashat Gecherlau,Gechrlu,Mrgashat,Мргашат 40.12462 44.06584 P PPL AM 03 4961 853 Asia/Yerevan 2012-01-17
-616401 Mrganush Mrganush Mrganush,Zograblu,Мргануш 40.02857 44.55831 P PPL AM 02 1032 908 Asia/Yerevan 2012-01-17
-616403 Mosesgegh Mosesgegh Mosesgegh,Mosesgekh,Movses,Мосесгех 40.90571 45.48637 P PPL AM 09 1964 839 Asia/Yerevan 2012-01-17
-616410 Mets Parni Mets Parni Bekyand,Mec-Parni,Mets Parni,Parni,Мец-Парни 40.83335 44.11042 P PPL AM 06 1934 1699 Asia/Yerevan 2012-01-17
-616411 Mets Masrik Mets Masrik Bol'shaya Mazra,Bol’shaya Mazra,Mazra,Mec Mazra,Mets Masrik,Mets-Mazra,Мец Мазра 40.21825 45.76809 P PPL AM 04 2570 1944 Asia/Yerevan 2012-01-17
-616412 Mets Mant’ash Mets Mant'ash Bol'shoy Mantash,Bol’shoy Mantash,Mantash,Mec-Mantash,Mets Arikhvali,Mets Mant'ash,Mets Mant’ash,Metz Mantash,Мец-Манташ 40.64376 44.05653 P PPL AM 07 1973 1962 Asia/Yerevan 2012-01-17
-616416 Metsavan Metsavan Mecavan,Metsavan,Shakhnazar,Мецаван 41.20156 44.22877 P PPL AM 06 4767 1576 Asia/Yerevan 2012-01-17
-616417 Metsamor Metsamor Kamarlu,Mecamor,Metsamor,Мецамор 40.07302 44.28962 P PPL AM 03 8789 840 Asia/Yerevan 2012-01-17
-616418 Mertsavan Mertsavan Merdzavan,Mertsavan,Мердзаван 40.1814 44.40032 P PPL AM 03 2702 939 Asia/Yerevan 2012-01-17
-616421 Meghrashen Meghrashen Kazanchi,Meghrashen,Megrashen,Меграшен 40.67259 43.95783 P PPL AM 07 1107 1661 Asia/Yerevan 2012-01-17
-616424 Meghradzor Meghradzor Meghradzor,Megradzor,Taycharukh,Меградзор 40.60611 44.65147 P PPL AM 05 2659 1785 Asia/Yerevan 2012-01-17
-616429 Mayakovski Mayakovski Majakovskij,Mayakovski,Mayakovskiy,Shaab,Маяковский 40.25196 44.63928 P PPL AM 05 1727 1414 Asia/Yerevan 2012-01-17
-616435 Masis Masis Hrazdan,Masis,Narimanlu,Razdan,Takhanshalu,Tokhanshalu,Ulukhanlu,Zangibasar,Масис 40.06762 44.43591 P PPL AM 02 18911 839 Asia/Yerevan 2012-01-17
-616438 Martuni Martuni Karanlug,MARTUNI,Martuki,Martuni,Martuny,Nerkin Karanlukh,Nizhniy-Karanlug,МАРТУНИ 40.13768 45.3045 P PPL AM 04 11037 1940 Asia/Yerevan 2012-01-17
-616441 Marmarashen Marmarashen Marmarashen,Marmorashen,Мармарашен 40.05734 44.47012 P PPL AM 02 2946 844 Asia/Yerevan 2012-01-17
-616442 Marmashen Marmashen Kanlidzha,Marmashen,Verin Kanlidzha,Мармашен 40.83486 43.7779 P PPL AM 07 1644 1619 Asia/Yerevan 2012-01-17
-616445 Margahovit Margahovit Bozigekh,Gamzachemanskaya,Gamzachiman,Hamgach'iman,Hamgach’iman,Margahovit,Margaovit,Маргаовит 40.73381 44.68474 P PPL AM 06 3308 1752 Asia/Yerevan 2012-01-17
-616446 Maralik Maralik MARALIK,Maralik,Molla Gekcha,Molla Gëkcha,МАРАЛИК 40.57453 43.86862 P PPL AM 07 4959 1713 Asia/Yerevan 2012-01-17
-616453 Mayisyan Mayisyan Maisian,Maisjan,Maisyan,Mayisyan,Ortakilisa,Маисян 40.84715 43.83938 P PPL AM 00 1521 1642 Asia/Yerevan 2012-01-17
-616456 Madina Madina Madina,Мадина 40.07638 45.25507 P PPL AM 04 1024 2169 Asia/Yerevan 2012-01-17
-616464 Lukashin Lukashin Imeni Mikoyana,Lukashin,Лукашин 40.17583 44.01861 P PPL AM 03 2197 867 Asia/Yerevan 2011-02-21
-616465 Lorut Lorut Lorut,Лорут 40.93717 44.77142 P PPL AM 06 1101 1499 Asia/Yerevan 2012-01-17
-616471 Lichk’ Lichk' Gel,Gël,Lichk,Lichk',Lichk’,Личк 40.15933 45.23467 P PPL AM 04 4105 1930 Asia/Yerevan 2012-01-17
-616474 Lernavan Lernavan Kachagan,Lernavan,Лернаван 40.7882 44.16024 P PPL AM 06 1517 1778 Asia/Yerevan 2012-01-17
-616476 Lerrnapat Lerrnapat Gadzhikara,Lernapat,Lerrnapat,Makarashen 40.81538 44.39344 P PPL AM 06 1710 1524 Asia/Yerevan 2012-01-17
-616479 Spitak Spitak Lernantsk,Lerrnants'k',Lerrnants’k’,Spitak,Спитак 40.79532 44.27435 P PPL AM 00 1192 1667 Asia/Yerevan 2012-01-17
-616480 Lerrnanist Lerrnanist Lernanist,Lerrnanist,Verin Akhta,Verkhnyaya Akhta,Лернанист 40.46676 44.79249 P PPL AM 05 2511 1922 Asia/Yerevan 2012-01-17
-616481 Lerrnakert Lerrnakert Lernakert,Lerrnakert,Shirvan,Shirvandzhug 40.56118 43.93851 P PPL AM 07 1306 1985 Asia/Yerevan 2012-01-17
-616484 Khoronk’ Khoronk' Khoronk',Khoronk’,Lenughi,Lenugi,Nerkin Aylanlu,Nizhniy Aylanlu 40.13507 44.24541 P PPL AM 03 2148 853 Asia/Yerevan 2012-01-17
-616488 Lchashen Lchashen Lchashen,Ordaklu,Лчашен 40.51757 44.9319 P PPL AM 04 4182 1926 Asia/Yerevan 2012-01-17
-616489 Lchap’ Lchap' Agzibir,Lchap,Lchap',Lchap’,Lehap,Лчап 40.45462 45.0728 P PPL AM 00 1032 1929 Asia/Yerevan 2012-01-17
-616492 Lanjaghbyur Lanjaghbyur Kyuzadzhik,Landzhakhbjur,Landzhakhpyur,Lanjaghbyur,Ланджахбюр 40.27146 45.14038 P PPL AM 04 2097 2010 Asia/Yerevan 2012-01-17
-616522 Kotayk’ Kotayk' Kotayk',Kotayk’,Yelgovan 40.27534 44.66036 P PPL AM 05 1510 1437 Asia/Yerevan 2012-01-17
-616523 Kosh Kosh Kosh,Кош 40.29999 44.15584 P PPL AM 01 2581 1224 Asia/Yerevan 2012-01-17
-616530 Vanadzor Vanadzor Gharak'ilisa,Gharak’ilisa,KIROVAKAN,Karakhs,Karakilis,Karaklis,Kirovakan,Kirowakan,Korovakan,Mets Karakilisa,Vanadzor,Vanajor,Wanadsor,Wanadzor,wanadzwr,Ванадзор,КИРОВАКАН,Վանաձոր,وانادزور 40.80456 44.4939 P PPLA AM 06 101098 1344 Asia/Yerevan 2012-01-14
-616535 Hnaberd Hnaberd Hnaberd,Khnaberd,Kirkhdagirman,Kyrkhdagirman,Хнаберд 40.63721 44.14058 P PPL AM 01 1817 2110 Asia/Yerevan 2012-01-17
-616537 Khasht’arrak Khasht'arrak Khasht'arrak,Khashtarak,Khasht’arrak,Хаштарак 40.93668 45.1821 P PPL AM 09 1728 816 Asia/Yerevan 2012-01-17
-616554 Kasakh Kasakh Chamrlu,Chamyrlu,Kasakh,Касах 40.53697 44.41046 P PPL AM 01 4247 1857 Asia/Yerevan 2012-01-17
-616572 Karchaghbyur Karchaghbyur Gedakbulag,Karchaghbyur,Karchaghpyur,Karchakhpjur,Karchakhpyur,Карчахпюр 40.17048 45.57785 P PPL AM 04 2274 1950 Asia/Yerevan 2012-01-17
-616573 Karbi Karbi Karbi,Карби 40.33236 44.37665 P PPL AM 01 3521 1312 Asia/Yerevan 2012-01-17
-616576 Karanlukh Karanlukh Karanlukh,Verkhniy Karanlug 40.10444 45.28972 P PPL AM 04 5104 2111 Asia/Yerevan 2012-01-17
-616590 Kaputan Kaputan Geykilisa,Gëykilisa,Kaputan,Капутан 40.32407 44.69693 P PPL AM 05 1252 1738 Asia/Yerevan 2012-01-17
-616593 K’anak’erravan K'anak'erravan K'anak'erravan,Kanakeravan,Kenaker,Kenakeravan,K’anak’erravan,Murad Tapa 40.24739 44.53511 P PPL AM 11 2950 1252 Asia/Yerevan 2012-01-17
-616598 Kamo Kamo Gadzhi Nazar,Kamo,Камо 40.82572 43.95071 P PPL AM 07 1340 1642 Asia/Yerevan 2012-01-17
-616599 Gavarr Gavarr Gavar,Gavarr,KAMO,Kamo,Kyavar,Nor Bayazet,Nor-Bajaset,Novo Bayazet,Novyi Bayaset,КАМО 40.35398 45.12386 P PPLA AM 04 21680 1953 Asia/Yerevan 2012-01-17
-616617 Zhdanov Zhdanov Imeni Beriya,Imeni Zhdanova,Zhdanov,Жданов 40.15701 44.09192 P PPL AM 03 1512 874 Asia/Yerevan 2012-01-17
-616620 Shahumyan Shahumyan Imeni Shaumyana,Shahumian,Shahumyan,Shahumyani Anvan Avazan,Shaumjan,Shaumyan,Шаумян 40.77482 44.54596 P PPL AM 06 1843 1520 Asia/Yerevan 2012-01-17
-616627 Ijevan Ijevan IDZHEVAN,Idzhevan,Ijevan,Istibulagh,K'aravansaray,K'arvansara,K'ervansera,Karavan Savan,Karavansarai,K’aravansaray,K’arvansara,K’ervansera,ИДЖЕВАН 40.87832 45.14922 P PPLA AM 09 14737 684 Asia/Yerevan 2012-01-17
-616629 Hrazdan Hrazdan Akhta,Akhtala,Akhti,Hrazdan,Nerkin Akhta,Nizhne Akhti,Nizhniye Akhty,Nizhnyaya Akhta,Razdan,Раздан 40.49748 44.7662 P PPLA AM 05 40795 1762 Asia/Yerevan 2011-03-28
-616631 Armavir Armavir Armavir,Hoktemberyan,Oktember,Oktemberyan,Sardar-Abad,Sardarapat,Октембер 40.15446 44.03815 P PPLA AM 03 25963 870 Asia/Yerevan 2012-01-17
-616632 Hayanist Hayanist Dostlug,Hayanist 40.12166 44.37523 P PPL AM 03 2031 841 Asia/Yerevan 2012-01-17
-616634 Haghartsin Haghartsin Dzharkhech,Dzharkhedzh,Haghardzin,Haghartsin,Kujbyshev,Kuybishev,Kuybyshev,Куйбышев 40.77614 44.96847 P PPL AM 09 3370 1015 Asia/Yerevan 2012-01-17
-616635 Gyumri Gyumri Alek'pol,Alek'sandrapol,Alek'sandrobol,Aleksandropol',Aleksandropol’,Alek’pol,Alek’sandrapol,Alek’sandrobol,Alexandropol',Alexandropol’,GJUMRI,Gimri,Giumri,Gjumri,Guemrue,Gumri,Gumru,Gumry,Gyumri,Gümrü,Kumayri,Kumri,Kyumayri,Kyumri,Kümri,Leninakan,gyumuri,gywmry,jiu mu li,ГЮМРИ,Гюмри,Гјумри,Գյումրի,گیومری,ギュムリ,久姆里 40.7942 43.84528 P PPLA AM 07 148381 1549 Asia/Yerevan 2012-01-17
-616639 Gyulagarak Gyulagarak Gjulagarak,Gyulabarrak,Gyulagarak,Gyulagorak,Гюлагарак 40.96715 44.47144 P PPL AM 06 2109 1366 Asia/Yerevan 2012-01-17
-616645 Ghukasavan Ghukasavan Ghukasavan,Gukasavan,Kalara,Гукасаван 40.12585 44.41594 P PPL AM 02 2113 852 Asia/Yerevan 2012-01-17
-616646 Geghamasar Geghamasar Geghamasar,Gukarrich,Shishkaja,Shishkaya,Sisqaya,Şişqaya,Шишкая 40.31091 45.67924 P PPL AM 04 1060 2047 Asia/Yerevan 2012-01-17
-616648 Gugark’ Gugark' Gugark,Gugark',Gugark’,Meghrut,Megrut,Yagublu,Гугарк 40.8046 44.54025 P PPL AM 06 4705 1320 Asia/Yerevan 2012-01-17
-616650 Tsiatsan Tsiatsan Ciacan,Grampa,Tsiatsan,Циацан 40.1869 44.26608 P PPL AM 03 1050 889 Asia/Yerevan 2012-01-17
-616657 Goght’ Goght' Goght',Goght’,Gokht 40.13495 44.78093 P PPL AM 05 1877 1574 Asia/Yerevan 2012-01-17
-616659 Gogaran Gogaran Geran,Gogaran,Gëran,Гогаран 40.89255 44.19915 P PPL AM 06 1088 1849 Asia/Yerevan 2012-01-17
-616668 Getazat Getazat Agdzhakishlag,Getashen,Getazat,Гетазат 40.03844 44.56369 P PPL AM 02 1947 939 Asia/Yerevan 2012-01-17
-616669 Getashen Getashen Dzhafarabat,Getashen,Kalagar,Геташен 40.04405 43.94203 P PPL AM 03 2114 888 Asia/Yerevan 2012-01-17
-616682 Geghanist Geghanist Geghanist,Gekhanist,Getapnia,Geygmbet,Gëygmbet,Геханист 40.14493 44.43054 P PPL AM 02 2409 868 Asia/Yerevan 2012-01-17
-616692 Geghamavan Geghamavan Gegamavan,Geghamavan,Shagriz,Гегамаван 40.5634 44.8879 P PPL AM 04 1597 1849 Asia/Yerevan 2012-01-17
-616697 Garrni Garrni Bash Gyarni,Garni,Garrni,Гарни 40.11931 44.73442 P PPL AM 05 6827 1413 Asia/Yerevan 2012-01-17
-616699 Gagarin Gagarin GAGARIN,Gagarin,ГАГАРИН 40.54031 44.86918 P PPL AM 04 1305 1892 Asia/Yerevan 2012-01-17
-616701 Fantan Fantan Fantan,Fontan 40.39438 44.68476 P PPL AM 05 1019 1801 Asia/Yerevan 2012-01-17
-616702 Fioletovo Fioletovo Fioletovo,Nikitino,Фиолетово 40.72241 44.71769 P PPL AM 06 1264 1686 Asia/Yerevan 2012-01-17
-616712 Dzoraghbyur Dzoraghbyur Dzhorakhpyur,Dzoraghbyur,Dzoraghp'yur,Dzoraghp’yur,Dzorakhbjur,Dzorakhpyur,Tedshirabad,Tedzhirabad,Tedzhrabak,Дзорахбюр 40.20412 44.6415 P PPL AM 05 2011 1549 Asia/Yerevan 2012-01-17
-616716 Dzoragyugh Dzoragyugh Dzoraget,Dzoragyugh,Dzoragyukh,Vali Agalu,Дзорагет 40.16957 45.18336 P PPL AM 00 3570 2016 Asia/Yerevan 2012-01-17
-616719 Dzit’hank’ov Dzit'hank'ov Bazirkhana,Dzit'hank'ov,Dzitankov,Dzitkhankov,Dzit’hank’ov,Дзитанков 40.50891 43.82107 P PPL AM 07 1162 1749 Asia/Yerevan 2012-01-17
-616722 Jrashen Jrashen Dzhrashen,Jrashen,Vardnav,Vordnav,Vortnav,Джрашен 40.79028 44.18664 P PPL AM 06 3078 1676 Asia/Yerevan 2012-01-17
-616724 Jrashen Jrashen Dzhrashen,Jrashen,Nor Dzhrashen,Джрашен 40.05276 44.51259 P PPL AM 11 1696 941 Asia/Yerevan 2012-01-17
-616729 Jrahovit Jrahovit Dzhabachalu,Dzharovit,Dzhraovit,Jrahovit,Джаровит 40.04533 44.47372 P PPL AM 02 1032 836 Asia/Yerevan 2012-01-17
-616735 Janfida Janfida Dzhanfida,Janfida,Джанфида 40.04391 44.02334 P PPL AM 03 2986 867 Asia/Yerevan 2012-01-17
-616741 Dvin Dvin Dvin,Dvin Armyanskiy,Nerkin Dvin,Nizhniy Dvin,Двин 40.01984 44.58376 P PPL AM 02 2795 928 Asia/Yerevan 2012-01-17
-616742 Dsegh Dsegh Dsegh,Dsekh,Tumanyan,Дсех 40.9617 44.65003 P PPL AM 06 2484 1216 Asia/Yerevan 2012-01-17
-616744 Drakhtik Drakhtik Drakhtik,Tokhludzha,Тохлуджа 40.56496 45.2367 P PPL AM 04 1016 1983 Asia/Yerevan 2012-01-17
-616748 Doghs Doghs Doghs,Dokhs 40.22373 44.27171 P PPL AM 01 1186 928 Asia/Yerevan 2012-01-17
-616752 Dilijan Dilijan DILIZHAN,Delijan,Delishan,Delizhan,Dili,Dili P'ok'r,Dili P’ok’r,Dilichan,Dilijan,Dilishan,Dilizhan,Hin,Tili,Tilichan,ДИЛИЖАН 40.74103 44.86362 P PPL AM 09 13478 1254 Asia/Yerevan 2012-01-17
-616757 Ddmashen Ddmashen Ddmashen,Dodmashen,Totmashen,Ддмашен 40.56972 44.81851 P PPL AM 04 2157 1797 Asia/Yerevan 2012-01-17
-616763 Darpas Darpas Darbas,Darpas,Дарпас 40.83674 44.42494 P PPL AM 06 1785 1377 Asia/Yerevan 2012-01-17
-616769 Dalarik Dalarik Dalarik,Mastara,Даларик 40.22664 43.87538 P PPL AM 03 3080 1011 Asia/Yerevan 2012-01-17
-616773 Chochkan Chochkan 41.18118 44.83217 P PPL AM 06 1740 767 Asia/Yerevan 2011-04-18
-616786 Chambarak Chambarak CHAMBARAK,Chambarak,Kraside,Krasnosel'sk,Krasnosel’sk,Krasnoye,Mikhaylovka,ЧАМБАРАК 40.59655 45.35498 P PPL AM 04 6153 1848 Asia/Yerevan 2012-01-17
-616789 Bjni Bjni Bjni,Bzhni 40.4559 44.64812 P PPL AM 05 2771 1493 Asia/Yerevan 2012-01-17
-616790 Byureghavan Byureghavan Bjuregavan,Byuregavan,Byureghavan,Бюрегаван 40.31485 44.59396 P PPL AM 05 6972 1384 Asia/Yerevan 2012-01-17
-616791 Byurakan Byurakan Biurakan,Bjurakan,Burakan,Byurakan,Бюракан 40.338 44.27138 P PPL AM 01 3902 1475 Asia/Yerevan 2012-01-17
-616792 Buzhakan Buzhakan Babakishi,Buzhakan,Бужакан 40.45294 44.52105 P PPL AM 05 1678 1824 Asia/Yerevan 2012-01-17
-616802 Berd Berd BERD,Berd,Berrdagyugh,Berrdgyugh,Bert,Ghalak'yand,Ghalak’yand,Shlorut,T'auzk'end,T'auzkala,T'avuzghala,T'ous,T'ous Gale,T'ovuz,T'uzukala,Taua Kale,Taya-Kala,Tovuz,Tovuzkala,T’auzkala,T’auzk’end,T’avuzghala,T’ous,T’ous Gale,T’ovuz,T’uzukala,Volorut,БЕРД,Товуз 40.88149 45.38985 P PPL AM 09 8374 940 Asia/Yerevan 2012-01-17
-616806 Bazum Bazum Bazum,Bzovdal,Базум 40.86763 44.43978 P PPL AM 06 1114 1521 Asia/Yerevan 2012-01-17
-616822 Byuravan Byuravan Bambakavan,Bjuravan,Byuravan,Verin Kuylasar,Verkhniy Kuylasar,Бюраван 40.01604 44.51889 P PPL AM 02 1228 868 Asia/Yerevan 2012-01-17
-616823 Bambakashat Bambakashat Bambakashat,Molla Bayazet,Бамбакашат 40.10993 44.01608 P PPL AM 03 3089 865 Asia/Yerevan 2012-01-17
-616824 Balahovit Balahovit Balahovit,Balakhovit,Balaovit,Mehub,Mekhub,Mgub,Балаовит,Балаховит 40.25373 44.60426 P PPL AM 05 2982 1388 Asia/Yerevan 2012-01-17
-616828 Bagratashen Bagratashen Bagratashen,Баграташен 41.24358 44.81737 P PPL AM 09 3024 440 Asia/Yerevan 2012-01-17
-616835 Azatan Azatan Azatan,Karakhs,Karakilisa,Pokr Karakilisa,Азатан 40.71959 43.82727 P PPL AM 07 4448 1498 Asia/Yerevan 2012-01-17
-616844 Haykavan Haykavan Ajkavan,Aykavan,Badzhogli,Haykavan,Айкаван 40.80312 43.75172 P PPL AM 07 1201 1557 Asia/Yerevan 2012-01-17
-616849 Aygestan Aygestan Ajgestan,Ayaslu,Aygestan,Айгестан 40.00258 44.55905 P PPL AM 02 2431 868 Asia/Yerevan 2012-01-17
-616850 Aygeshat Aygeshat Ajgeshat,Aygeshat,Gadzhikara,Айгешат 40.23571 44.28692 P PPL AM 01 1358 942 Asia/Yerevan 2012-01-17
-616851 Aygeshat Aygeshat Ajgeshat,Aygeshat,Kuzigidan,Айгешат 40.07641 44.05797 P PPL AM 03 1606 859 Asia/Yerevan 2012-01-17
-616853 Aknalich Aknalich Aknalich,Aygerlich,Акналич 40.14315 44.1498 P PPL AM 03 2654 862 Asia/Yerevan 2012-01-17
-616855 Aygehovit Aygehovit Ajgeovit,Aygehovit,Aygeovit,Onut,Uzuntala,Айгеовит 40.97951 45.25033 P PPL AM 09 2888 697 Asia/Yerevan 2012-01-17
-616872 Artimet Artimet Alibeklu,Artimet,Atarbekyan,Артимет 40.1508 44.26543 P PPL AM 03 1501 861 Asia/Yerevan 2012-01-17
-616874 Astghadzor Astghadzor Alikrykh,Astghadzor,Astkhadzor,Астхадзор 40.12248 45.35698 P PPL AM 04 3520 2037 Asia/Yerevan 2012-01-17
-616877 Ashtarak Ashtarak ASHTARAK,Achtarak,Aschtarak,Ashtarak,Ashtarakats' Gyugh,Ashtarakats’ Gyugh,Astarak,Aştarak,Aštarak,ashtarak,АШТАРАК,Аштарак,Աշտարակ,آشتاراک 40.2991 44.36204 P PPLA AM 01 18779 1142 Asia/Yerevan 2012-01-17
-616879 Ashnak Ashnak Ashnak,Ашнак 40.32887 43.91848 P PPL AM 01 1131 1428 Asia/Yerevan 2012-01-17
-616881 Arzni Arzni ARZNI,Arzni,АРЗНИ 40.29626 44.59664 P PPL AM 05 2244 1346 Asia/Yerevan 2012-01-17
-616882 Arzakan Arzakan Arzakan,Arzakyand,Арзакан 40.44997 44.60648 P PPL AM 05 2660 1489 Asia/Yerevan 2012-01-17
-616888 Arteni Arteni Arteni,Bogutlu,Артени 40.29848 43.7622 P PPL AM 01 3086 1212 Asia/Yerevan 2012-01-17
-616898 Arshaluys Arshaluys Arshalujs,Arshaluys,Kerpalu,Kërpalu,Аршалуйс 40.1684 44.21375 P PPL AM 03 3808 864 Asia/Yerevan 2012-01-17
-616902 Armavir Armavir Armavir,Kurdukuli,Армавир 40.08658 44.05363 P PPLA AM 03 2752 861 Asia/Yerevan 2012-01-17
-616912 Argel Argel ARGEL,Argel,Arkel,Lusakert,АРГЕЛ 40.37943 44.59828 P PPL AM 05 2528 1438 Asia/Yerevan 2012-01-17
-616913 Argavand Argavand Argavand,Dzhafarapat,Аргаванд 40.15876 44.43916 P PPL AM 02 1703 885 Asia/Yerevan 2012-01-17
-616914 Argavand Argavand Argavand,Uzunoba,Аргаванд 40.06097 44.09474 P PPL AM 03 2047 858 Asia/Yerevan 2012-01-17
-616915 Arevshat Arevshat Arevshat,Yekan,Yekanlar,Аревшат 40.65345 44.04419 P PPL AM 07 1623 1913 Asia/Yerevan 2012-01-17
-616916 Arevshat Arevshat Arevshat,Arpavar,Lusakert,Nerkin Agbash,Nizhniy Agbash,Аревшат 40.03963 44.54179 P PPL AM 02 2089 931 Asia/Yerevan 2012-01-17
-616917 Arevik Arevik Arevik,Tapadolag,Tapadolak,Аревик 40.74226 43.9029 P PPL AM 07 1522 1528 Asia/Yerevan 2012-01-17
-616918 Arevik Arevik Agdzharkh,Arevik,Аревик 40.09945 44.09127 P PPL AM 03 2455 854 Asia/Yerevan 2012-01-17
-616920 Arevashogh Arevashogh Arevashogh,Arevashokh,Chigdamal,Chikdamal,Аревашох 40.86039 44.27438 P PPL AM 06 2435 1680 Asia/Yerevan 2012-01-17
-616921 Arevashat Arevashat Arevashat,Arevashet,Varmaziar,Аревашат 40.1425 44.37068 P PPL AM 03 1403 851 Asia/Yerevan 2012-01-17
-616931 Archis Archis Archis 41.16351 44.87632 P PPL AM 09 1235 754 Asia/Yerevan 2012-02-01
-616932 Arbat’ Arbat' Arbat',Arbat’ 40.13811 44.402 P PPL AM 03 1884 857 Asia/Yerevan 2012-01-17
-616933 Arazap Arazap Arazap,Evdzhilar,Аразап 40.04195 44.14721 P PPL AM 03 1373 847 Asia/Yerevan 2012-01-17
-616935 Arrap’i Arrap'i Arapi,Arrap'i,Arrap’i,Odzhakhkuli 40.78276 43.80583 P PPL AM 07 1738 1487 Asia/Yerevan 2012-01-17
-616936 Aramus Aramus Aramus 40.25095 44.66351 P PPL AM 05 3214 1441 Asia/Yerevan 2012-01-17
-616938 Arak’s Arak's Arak's,Arak’s,Nerkin Karkhun,Nizhniy Karkhun 40.0544 44.30257 P PPL AM 03 1442 841 Asia/Yerevan 2012-01-17
-616944 Aragats Aragats Aragac,Aragats,Kaznafar,Арагац 40.48887 44.35279 P PPL AM 01 2707 1976 Asia/Yerevan 2012-01-17
-616953 Aparan Aparan APARAN,Abaran,Abaran Verin,Aparan,Aparan Verin,Aparanbol,Aparanpol,Bash Abaran,Bash Aparan,Dash Abaron,K'asagh,K'asakh,K’asagh,K’asakh,P'araznavert,Pash Aparan,P’araznavert,АПАРАН 40.59323 44.3589 P PPL AM 01 5670 1892 Asia/Yerevan 2012-01-17
-616954 Apaga Apaga Apaga,Verin Turkmenlu,Апага 40.09666 44.25157 P PPL AM 03 1634 843 Asia/Yerevan 2012-01-17
-616955 Anushavan Anushavan Anushavan,Parni,Pokr Parni,Анушаван 40.65013 43.97756 P PPL AM 07 1532 1715 Asia/Yerevan 2012-01-17
-616971 Amasia Amasia Amasia,Amasija,Amasiya,Gukasyan,Амасия 40.95442 43.7872 P PPL AM 07 1675 1877 Asia/Yerevan 2012-01-17
-616974 Alaverdi Alaverdi ALAVERDI,Alaverdi,Alaverdy,Alawerdy,Allaverdy,Aławerdy,Manes,АЛАВЕРДИ,Алаверди,Ալավերդի,اللهوردی 41.09766 44.67316 P PPL AM 06 13184 699 Asia/Yerevan 2011-01-29
-616981 Akunk’ Akunk' Akunk',Akunk’,Bashgyukh 40.26883 44.68481 P PPL AM 05 1787 1454 Asia/Yerevan 2012-01-17
-616982 Akunk’ Akunk' Akunk',Akunk’,Kirkhbulag 40.15886 45.72568 P PPL AM 04 3444 1961 Asia/Yerevan 2012-01-17
-616989 Akhuryan Akhuryan Akhurjan,Akhuryan,Duzk'end,Duzk'end Mets,Duzk'yand,Duzk’end,Duzk’end Mets,Duzk’yand,Ахурян 40.78003 43.90027 P PPL AM 07 7672 1544 Asia/Yerevan 2012-01-17
-617002 Aghavnatun Aghavnatun Agavnatun,Aghavnatun,Akhavnatukh,Akhavnatun,Агавнатун,Ахавнатун 40.23238 44.24974 P PPL AM 01 2913 926 Asia/Yerevan 2012-01-17
-617003 Aghavnadzor Aghavnadzor Agavnadzor,Aghavnadzor,Akhavnadzor,Babakishi,Агавнадзор 40.58195 44.69581 P PPL AM 05 1252 1771 Asia/Yerevan 2012-01-17
-617018 Agarak Agarak Agarak 41.01072 44.46845 P PPL AM 06 1278 1375 Asia/Yerevan 2012-02-01
-617019 Agarak Agarak 40.32932 44.07033 P PPL AM 01 1575 1440 Asia/Yerevan 2011-04-18
-617026 Abovyan Abovyan ABOVJAN,Abovyan,Elar,АБОВЯН 40.26741 44.62656 P PPL AM 05 35673 1409 Asia/Yerevan 2012-01-17
-617027 Abovyan Abovyan Abovjan,Abovyan,Agbash,Verin Agbash,Verkhniy Agbash,Абовян 40.04851 44.54742 P PPL AM 02 1379 956 Asia/Yerevan 2012-01-17
-793638 Vardablur Vardablur Vardablur,Verdablur,Вардаблур 40.97083 44.50889 P PPL AM 06 1297 1318 Asia/Yerevan 2012-01-19
-793672 Bartsrashen Bartsrashen Bardzrashen,Bartsrashen 40.08533 44.57958 P PPL AM 02 1273 1154 Asia/Yerevan 2012-01-19
-793693 Nshavan Nshavan Nshavan 40.02787 44.52565 P PPL AM 02 1916 886 Asia/Yerevan 2012-01-19
-799614 Norabats’ Norabats' Norabats',Norabats’,Norashen 40.10568 44.42988 P PPL AM 02 1973 864 Asia/Yerevan 2012-01-19
-823723 Berdavan Berdavan Berdavan 41.20503 44.99967 P PPL AM 09 3150 705 Asia/Yerevan 2012-01-19
-823745 Shirakamut Shirakamut Shirakamut,Ширакамут 40.86056 44.15278 P PPL AM 06 2008 1766 Asia/Yerevan 2012-01-19
-823748 Azatamut Azatamut AZANUT,Azatamut,АЗАНУТ 40.98796 45.20794 P PPL AM 09 1850 541 Asia/Yerevan 2012-01-19
-823749 Getahovit Getahovit 40.89782 45.13924 P PPL AM 09 2005 745 Asia/Yerevan 2011-04-19
-823755 Artsvaberd Artsvaberd Arcvaberd,Artsvaberd,Арцваберд 40.83361 45.47111 P PPL AM 09 3193 1312 Asia/Yerevan 2012-01-19
-823791 Nor Yerznka Nor Yerznka Nor Yerznka 40.31356 44.40483 P PPL AM 05 1459 1318 Asia/Yerevan 2012-01-19
-823793 Nor Sasunik Nor Sasunik Nor Sasunik,Sasunik 40.24869 44.33957 P PPL AM 01 1959 1063 Asia/Yerevan 2012-01-19
-823797 Kamaris Kamaris Kamaris 40.23539 44.69459 P PPL AM 05 2064 1519 Asia/Yerevan 2012-01-19
-823800 Gandzak Gandzak 40.31472 45.11139 P PPL AM 04 3841 1989 Asia/Yerevan 2006-01-17
-823802 Myasnikyan Myasnikyan Mjasnikjan,Myasnikyan,Мясникян 40.1775 43.90639 P PPL AM 03 3458 917 Asia/Yerevan 2012-01-19
-823805 Lenughi Lenughi 40.12562 43.96484 P PPL AM 03 1499 888 Asia/Yerevan 2011-04-19
-823807 Metsamor Metsamor MECAMOR,Metsamor,МЕЦАМОР 40.14481 44.11998 P PPL AM 03 1081 861 Asia/Yerevan 2012-01-19
-823808 Gay Gay Gay 40.08389 44.30556 P PPL AM 03 3309 838 Asia/Yerevan 2011-02-19
-823809 Baghramyan Baghramyan Baghramyan,Bagramyan 40.19344 44.36832 P PPL AM 03 2346 943 Asia/Yerevan 2012-01-19
-823810 Musalerr Musalerr Musaler,Musalerr 40.15393 44.37894 P PPL AM 03 2323 864 Asia/Yerevan 2012-01-19
-823811 Darakert Darakert Darakert 40.10547 44.41334 P PPL AM 02 2325 842 Asia/Yerevan 2012-01-19
-823812 Dashtavan Dashtavan Dashtavan 40.10121 44.39067 P PPL AM 02 1762 835 Asia/Yerevan 2012-01-19
-823813 Nizami Nizami Nizami 40.09114 44.40453 P PPL AM 02 1060 837 Asia/Yerevan 2012-01-19
-823818 Artsvanist Artsvanist Artsvanist 40.15444 45.50222 P PPL AM 04 2819 1940 Asia/Yerevan 2012-01-19
-859714 Vardadzor Vardadzor 40.18701 45.19212 P PPL AM 11 2095 1997 Asia/Yerevan 2011-04-20
-866081 Taronik Taronik Taronik 40.13367 44.19957 P PPL AM 03 1874 851 Asia/Yerevan 2012-01-20
-866089 Aknashen Aknashen Aknashen 40.09551 44.28604 P PPL AM 03 1362 838 Asia/Yerevan 2012-01-20
-866090 Haykashen Haykashen Aykashen,Haykashen 40.07303 44.30628 P PPL AM 03 1140 838 Asia/Yerevan 2012-01-20
-866091 Hovtashat Hovtashat Hovtashat,Ovtashat 40.10328 44.33891 P PPL AM 02 3472 837 Asia/Yerevan 2012-01-20
-866092 Sayat’-Nova Sayat'-Nova Sayat'-Nova,Sayat’-Nova 40.07428 44.39846 P PPL AM 02 1726 834 Asia/Yerevan 2012-01-20
-866093 Voskehat Voskehat Voskeat,Voskehat 40.14158 44.32918 P PPL AM 03 2181 857 Asia/Yerevan 2012-01-20
-866095 Griboyedov Griboyedov Griboyedov 40.11307 44.27169 P PPL AM 03 1879 845 Asia/Yerevan 2012-01-20
-866097 Amberd Amberd Amberd 40.24192 44.27227 P PPL AM 01 1267 949 Asia/Yerevan 2012-01-20
-866098 Aygek Aygek Aygek 40.18861 44.38333 P PPL AM 03 1095 951 Asia/Yerevan 2012-01-20
-866134 Hovtashen Hovtashen Hovtashen,Ovtashen 40.0251 44.45129 P PPL AM 02 1134 825 Asia/Yerevan 2012-01-20
-866135 Dimitrov Dimitrov Dimitrov 40.00752 44.48999 P PPL AM 02 1212 845 Asia/Yerevan 2012-01-20
-866137 Mrgavet Mrgavet Mrgavet 40.02779 44.48252 P PPL AM 02 2131 842 Asia/Yerevan 2012-01-20
-866138 Arevabuyr Arevabuyr Arevabuyr 40.03712 44.46934 P PPL AM 02 1041 834 Asia/Yerevan 2012-01-20
-145531 Saurimo Saurimo Henrique de Carvalho,Saurimo,Saurimu,Vila Henrique de Carvalho,Сауримо -9.66078 20.39155 P PPLA AO 18 40498 1071 Africa/Luanda 2012-01-17
-145724 Lucapa Lucapa Lucapa,Lukapa,Лукапа -8.41915 20.74466 P PPLA AO 17 20115 955 Africa/Luanda 2012-01-17
-876123 Lumeje Lumeje Cameia,Lumege,Lumeje,Lumezhe,Лумеже -11.55 20.78333 P PPL AO 14 4972 1144 Africa/Luanda 2012-01-17
-876177 Luau Luau Luao,Luau,Teixeira de Sousa,Teixera de Sousa,Texeira-de Susa,Vila Teixeira de Sousa,Vila Teixeira de Souza,Vila Teixera de Souza,Vila Texeira de Sousa,Луау -10.70727 22.22466 P PPL AO 14 18465 1106 Africa/Luanda 2012-01-17
-876233 Leúa Leua Leua,Leúa,Sandando -11.65 20.45 P PPL AO 14 5168 1236 Africa/Luanda 2012-01-17
-876485 Cazaji Cazaji Cazage,Cazaje,Cazaji,Kazagi -11.06715 20.70148 P PPL AO 18 4764 1188 Africa/Luanda 2012-01-17
-2236568 Uíge Uige Carmona,Uige,Uije,Uizhe,Uíge,Vila Marchel Carmona,Уиже -7.60874 15.06131 P PPLA AO 15 60008 825 Africa/Luanda 2011-10-28
-2236967 Soio Soio Saint Antonio do Zaire,San Antonio,Santo Antoni,Santo Antonio do Zaire,Santo António do Zaire,Santo-Antonio,Santo-António,Sao Antonio,Sazaire,Soio,Soju,Soyo,São Antônio,Сойу -6.1349 12.36894 P PPL AO 16 67491 10 Africa/Luanda 2012-01-17
-2239001 Nzeto Nzeto Ambrisette,Ambrizete,Ambrizette,Nzeto,Нзето -7.23116 12.8666 P PPL AO 16 18352 19 Africa/Luanda 2012-02-01
-2239076 N’dalatando N'dalatando Dalatando,N'dalatando,Ndalatanda,N’dalatando,Salazar,Vila Salazar,Villa Salazar -9.29782 14.91162 P PPLA AO 05 0 795 Africa/Luanda 2011-10-28
-2239520 Mbanza Congo Mbanza Congo Mbanza Congo,Mbanza Kongo,San Salvador,Sao Salvador,Sao Salvador do Congo,São Salvador,São Salvador do Congo -6.26703 14.2401 P PPLA AO 16 24220 544 Africa/Luanda 2012-01-17
-2239862 Malanje Malanje Malandje,Malange,Malanje,Malanzhe,Маланже -9.54015 16.34096 P PPLA AO 12 87046 1134 Africa/Luanda 2011-10-28
-2240449 Luanda Luanda Loanda,Louanta,Luanda,Sao Paolo de Loanda,Sao Paulo da Assuncao de Luanda,Sao Paulo de Loanda,Sao Paulo de Luanda,São Paolo de Loanda,São Paulo da Assunção de Luanda,São Paulo de Loanda,São Paulo de Luanda,luanda,luo an da,lwanda,ruanda,Λουάντα,Луанда,לואנדה,لوآندا,ሏንዳ,ルアンダ,罗安达,루안다 -8.83682 13.23432 P PPLC AO 20 2776168 73 Africa/Luanda 2011-10-27
-2242001 Caxito Caxito Caxito,Kashito,Kaxito,Кашито -8.57848 13.66425 P PPLA AO 19 28224 20 Africa/Luanda 2011-10-28
-2242885 Camabatela Camabatela Ambaca,Camabatela,Kamabatela,Камабатела -8.18812 15.37495 P PPL AO 05 12837 1237 Africa/Luanda 2012-01-17
-2243271 Cabinda Cabinda Cabinda,Kabinda,Кабинда -5.55 12.2 P PPLA AO 03 66020 1 Africa/Luanda 2012-01-17
-3345497 Uacu Cungo Uacu Cungo Cela,Santa Comba,Santa Comba Dao,Santa Comba Dão,Uacu Cungo,Vaku Kungu,Vila de Santa Comba Dao,Vila de Santa Comba Dão,Waco-Kungo,Waku Kungo,Ваку Кунгу -11.36343 15.12078 P PPL AO 06 10970 1319 Africa/Luanda 2012-01-17
-3346015 Sumbe Sumbe Angungescapolo,Ngunza,Nova Redonda,Nova Redondo,Novo Redondo,Sumbe,Сумбе -11.20605 13.84371 P PPLA AO 06 33277 10 Africa/Luanda 2012-01-17
-3346598 Quibala Quibala Kibala,Quibala,Кибала -10.73366 14.97995 P PPL AO 06 8915 1284 Africa/Luanda 2012-01-17
-3346821 Ondjiva Ondjiva N'Giva,N'Jiva,N’Giva,N’Jiva,Ondjiva,Ondyiva,Ondzhiva,Ongiva,Onjiva,Pereira d'Eca,Pereira de Eca,Pereira d’Eca,Vila Pereira d'Eca,Vila Pereira de Eca,Vila Pereira de Eco,Vila Pereira de Eça,Vila Pereira d’Eça,Онджива -17.06667 15.73333 P PPLA AO 07 10169 1113 Africa/Luanda 2012-01-17
-3347019 Namibe Namibe Mocamedes,Mossamedes,Moçâmedes,Namibe,Намибе -15.19611 12.15222 P PPLA AO 13 80149 13 Africa/Luanda 2012-01-17
-3347353 Menongue Menongue Menonge,Serpa Pinto,Vila Serpa Pinto,Менонге -14.6585 17.69099 P PPLA AO AO 04 32203 1355 Africa/Luanda 2010-06-08
-3347719 Luena Luena Luehna,Luena,Luene,Luso,Luzo,Vila Luso,Vila Luzo,Vila Luzu,Villa Luso,Луэна -11.78333 19.91667 P PPLA AO 14 21115 1337 Africa/Luanda 2012-01-17
-3347762 Lubango Lubango Lubango,Sa da Bandeira,Sá da Bandeira,Лубанго -14.91717 13.4925 P PPLA AO 09 102541 1760 Africa/Luanda 2011-10-27
-3347853 Longonjo Longonjo Congonjo,Logonzhu,Longonjo,Логонжу -12.90667 15.25333 P PPL AO 08 24346 1424 Africa/Luanda 2012-01-17
-3347939 Lobito Lobito Lobito,Lobitu,robito,Лобиту,ロビト -12.34806 13.54556 P PPL AO 01 207932 8 Africa/Luanda 2012-01-17
-3348078 Kuito Kuito Bie,Bihe,Bihé,Bié,Kuito,Silva Porto,Vila Salva Porto,Куито -12.38333 16.93333 P PPLA AO 02 113624 1715 Africa/Luanda 2012-01-17
-3348313 Huambo Huambo Huambo,Nova Lisboa,Uambo,Уамбо -12.77611 15.73917 P PPLA AO 08 226145 1716 Africa/Luanda 2012-01-17
-3349580 Chissamba Chissamba -12.16667 17.33333 P PPL AO 02 7677 1404 Africa/Luanda 2006-01-17
-3350246 Catumbela Catumbela Asseiceira,Catumbela,Catumbella,Katumbela,Катумбела -12.43139 13.54722 P PPL AO 01 16977 15 Africa/Luanda 2012-01-17
-3350372 Catabola Catabola Catabola,Katabola,Nova Sintra,Катабола -12.15 17.28333 P PPL AO 02 18855 1531 Africa/Luanda 2012-01-17
-3351014 Camacupa Camacupa Camacupa,General Machado,General Machado Villa,General Mathado,Kamakupa,Machado,Vila General Machado,Камакупа -12.01667 17.48333 P PPL AO 02 19150 1473 Africa/Luanda 2012-01-17
-3351024 Caluquembe Caluquembe Caluquembe,Caluquembo,Caluquemo,Kalukembe,Калукембе -13.78333 14.68333 P PPL AO 09 30300 1699 Africa/Luanda 2012-01-17
-3351380 Caconda Caconda Caconda,Kakonda,Каконда -13.73333 15.06667 P PPL AO 09 10549 1674 Africa/Luanda 2012-01-17
-3351500 Caála Caala Caala,Cahala,Caála,Kaala,Kaale,Robert Williams,Roberto Williams,Vila Robert Williams,Каале -12.8525 15.56056 P PPL AO 08 21205 1742 Africa/Luanda 2012-01-17
-3351663 Benguela Benguela Bengela,Benguela,Benguella,Sao Felipe de Benguela,São Félipe de Benguela,ben ji la,Бенгела,本吉拉 -12.57626 13.40547 P PPLA AO 01 151226 11 Africa/Luanda 2011-10-28
-6696480 McMurdo Station McMurdo Station -77.65535 168.22266 P PPL AQ 1258 66 Antarctica/McMurdo 2011-02-04
-3427213 Zárate Zarate General J.F. Uriburu,General Jose F. Uriburu,General José F. Uriburu,General Uriburu,Sarate,Saratė,Zarate,Zárate,Зарате -34.09814 -59.02858 P PPL AR 01 3427212 88781 28 America/Argentina/Buenos_Aires 2012-01-18
-3427273 Yataity Calle Yataity Calle Yataity Calle,Yatayti Calle,Yataytí Calle -29.01913 -58.90846 P PPL AR 06 2114 72 America/Argentina/Cordoba 2012-01-18
-3427279 Yapeyú Yapeyu San Martin,Yapeyu,Yapeyú -29.46914 -56.81841 P PPL AR 06 2124 64 America/Argentina/Cordoba 2012-01-18
-3427386 Villa Paranacito Villa Paranacito Paranacito,Villa Paranacito -33.72208 -58.65798 P PPL AR 08 3988 7 America/Argentina/Cordoba 2012-01-18
-3427388 Villa Ocampo Villa Ocampo Ocampo,Villa Ocampo -28.48752 -59.35515 P PPL AR 21 19101 54 America/Argentina/Cordoba 2012-01-18
-3427399 Villa María Grande Villa Maria Grande Maria Grande,María Grande,Villa Maria Grande,Villa María Grande -31.66565 -59.90182 P PPL AR 08 7101 94 America/Argentina/Cordoba 2012-01-18
-3427404 Villa Mantero Villa Mantero Mantero,Villa Mantero -32.39727 -58.74596 P PPL AR 08 1526 46 America/Argentina/Cordoba 2012-01-18
-3427420 Villa Hernandarias Villa Hernandarias Hernandarias,Villa Hernandarias -31.23101 -59.985 P PPL AR 08 5375 55 America/Argentina/Cordoba 2012-01-18
-3427428 Villaguay Villaguay Villaguay -31.8653 -59.02689 P PPL AR 08 3427426 32027 50 America/Argentina/Cordoba 2012-01-18
-3427431 Villa Gesell Villa Gesell Vil'ja-Khesel',Вилья-Хесель -37.26394 -56.97304 P PPL AR 01 23257 9 America/Argentina/Buenos_Aires 2010-04-25
-3427439 Villa Escolar Villa Escolar Villa Escobar Navegacion Rio Bermejo,Villa Escobar Navegación Río Bermejo,Villa Escolar -26.62209 -58.67134 P PPL AR 09 1261 69 America/Argentina/Cordoba 2012-01-18
-3427443 Villa Elisa Villa Elisa Villa Elisa -32.1632 -58.40082 P PPL AR 08 9334 57 America/Argentina/Cordoba 2012-01-18
-3427454 Villa del Rosario Villa del Rosario Villa Rosario,Villa del Rosario -30.79567 -57.91257 P PPL AR 08 3488 69 America/Argentina/Cordoba 2012-01-18
-3427537 Veinticinco de Mayo Veinticinco de Mayo 25 de Mayo,Veinticinco de Mayo -27.37679 -54.74312 P PPL AR 14 3427535 11928 396 America/Argentina/Cordoba 2012-01-18
-3427582 Urdinarrain Urdinarrain Urdinarrain -32.68573 -58.89324 P PPL AR 08 7992 68 America/Argentina/Cordoba 2012-01-18
-3427593 Ubajay Ubajay Ubajay -31.79358 -58.3135 P PPL AR 08 2334 54 America/Argentina/Cordoba 2012-02-02
-3427659 Tres Capones Tres Capones Tres Capones -28.00641 -55.60471 P PPL AR 14 1234 157 America/Argentina/Cordoba 2012-02-02
-3427761 Tigre Tigre Las Conchas,Tigre,Тигре -34.42603 -58.57962 P PPL AR AR 01 3427753 31106 2 8 America/Argentina/Buenos_Aires 2012-03-25
-3427833 Tandil Tandil Tandil,Tandil',Тандиль -37.32167 -59.13316 P PPL AR 01 3427832 104325 192 America/Argentina/Buenos_Aires 2012-01-18
-3427885 Tabossi Tabossi Tabossi,Tobosy -31.80135 -59.93477 P PPL AR 08 1333 100 America/Argentina/Cordoba 2012-01-18
-3427994 Sauce de Luna Sauce de Luna Sauce de Luna -31.23794 -59.21872 P PPL AR 08 2901 76 America/Argentina/Cordoba 2012-02-02
-3428068 San Vicente San Vicente -26.61667 -54.13333 P PPL AR 14 38247 603 America/Argentina/Cordoba 2010-05-31
-3428071 Santo Tomé Santo Tome Santo Tome,Santo Tomé -28.54939 -56.04077 P PPL AR 06 22634 81 America/Argentina/Cordoba 2012-01-18
-3428079 Santo Pipó Santo Pipo Colonia Santo Pipo,Colonia Santo Pipó,San Pipo,Santo Pipo,Santo Pipó -27.14132 -55.40867 P PPL AR 14 5447 174 America/Argentina/Cordoba 2012-01-18
-3428182 Santa Rosa Santa Rosa Colonia Santa Rosa,Colonia Tabay,Santa Rosa,Santa-Rosa,Санта-Роса -28.26318 -58.11891 P PPL AR 06 8330 79 America/Argentina/Cordoba 2012-01-18
-3428264 Santa María Santa Maria Colonia Santa Maria,Colonia Santa María,Hubbart,Santa Maria,Santa María -27.90356 -55.38541 P PPL AR 14 1687 137 America/Argentina/Cordoba 2012-01-18
-3428287 Santa Lucía Santa Lucia Santa Lucia,Santa Lucía -28.98746 -59.10287 P PPL AR 06 14056 54 America/Argentina/Cordoba 2012-01-18
-3428359 Santa Elena Santa Elena Santa Elena -30.94768 -59.78696 P PPL AR 08 18410 66 America/Argentina/Cordoba 2012-01-18
-3428424 Santa Anita Santa Anita Aldea Santa Anita,Santa Anita -32.17476 -58.78622 P PPL AR 08 1254 67 America/Argentina/Cordoba 2012-01-18
-3428453 Santa Ana Santa Ana Santa Ana -30.90004 -57.93162 P PPL AR 08 2059 50 America/Argentina/Cordoba 2012-02-02
-3428481 San Salvador San Salvador San Salvador -31.62487 -58.50524 P PPL AR 08 11626 75 America/Argentina/Cordoba 2012-01-18
-3428577 San Pedro San Pedro -26.62207 -54.10842 P PPL AR 14 3428569 23736 554 America/Argentina/Cordoba 2011-04-19
-3428644 San Miguel San Miguel San Miguel -27.99585 -57.58964 P PPL AR 06 3428638 7396 80 America/Argentina/Cordoba 2012-02-02
-3428708 San Luis del Palmar San Luis del Palmar -27.5079 -58.55454 P PPL AR 06 15347 62 America/Argentina/Cordoba 2011-04-19
-3428759 San Lorenzo San Lorenzo -28.13306 -58.76733 P PPL AR 06 47626 64 America/Argentina/Cordoba 2011-04-19
-3428776 San Justo San Justo San Justo,Villa San Justo -32.44654 -58.43569 P PPL AR 08 1473 44 America/Argentina/Cordoba 2012-01-18
-3428858 San José de Feliciano San Jose de Feliciano San Jose de Feliciano,San José de Feliciano -30.38452 -58.75167 P PPL AR 08 11137 68 America/Argentina/Cordoba 2012-01-18
-3428928 San José San Jose San Jose,San José -27.76979 -55.7826 P PPL AR 14 3436309 6452 169 America/Argentina/Cordoba 2012-02-22
-3428975 San Javier San Javier -30.57781 -59.9317 P PPL AR 21 3428973 15606 27 America/Argentina/Cordoba 2011-04-19
-3429024 San Gustavo San Gustavo -30.68961 -59.3984 P PPL AR 08 1307 56 America/Argentina/Cordoba 2011-04-19
-3429054 San Francisco de Laishí San Francisco de Laishi La Mision,La Mision San Francisco de Laishi,La Misión,La Misión San Francisco de Laishi,Mision San Francisco de Laishi,Misión San Francisco de Laishi,San Francisco de Laishi,San Francisco de Laishí -26.24262 -58.63039 P PPL AR 09 4384 73 America/Argentina/Cordoba 2012-01-18
-3429157 San Cosme San Cosme -27.37123 -58.51214 P PPL AR 06 3429156 4429 72 America/Argentina/Cordoba 2011-04-19
-3429160 San Clemente del Tuyú San Clemente del Tuyu Balneario San Clemente,Balneario San Clemente del Tuyu,Balneario San Clemente del Tuyú,San Clemente del Tuyu,San Clemente del Tuyú,San-Klemente-del'-Tuju,Сан-Клементе-дель-Тую -36.35694 -56.72351 P PPL AR 01 11174 6 America/Argentina/Buenos_Aires 2012-01-18
-3429210 San Carlos San Carlos -27.74586 -55.8973 P PPL AR 06 3350 205 America/Argentina/Cordoba 2011-04-19
-3429403 Saladas Saladas -28.25384 -58.62591 P PPL AR 06 3429402 18349 75 America/Argentina/Cordoba 2011-04-19
-3429426 Ruiz de Montoya Ruiz de Montoya Ruiz de Montoya -26.98333 -55.05 P PPL AR 14 3374 178 America/Argentina/Cordoba 2012-01-18
-3429439 Rosario del Tala Rosario del Tala Rosario Tala,Rosario de Tala,Rosario del Tala,Tala -32.30286 -59.14545 P PPL AR 08 13807 39 America/Argentina/Cordoba 2012-01-18
-3429560 Riachuelo Riachuelo -27.57754 -58.73945 P PPL AR 06 3668 61 America/Argentina/Cordoba 2011-04-19
-3429567 Riacho Eh-Eh Riacho Eh-Eh Riacho Eh-Eh,Riacho He He -25.36209 -58.2775 P PPL AR 09 3566 78 America/Argentina/Cordoba 2012-01-18
-3429576 Retiro Retiro Retiro -34.58333 -58.38333 P PPLX AR 07 38635 7 America/Argentina/Buenos_Aires 2012-01-18
-3429577 Resistencia Resistencia Resistencia,Resistensija,Ресистенсия -27.46056 -58.98389 P PPLA AR 03 387158 56 America/Argentina/Cordoba 2012-01-18
-3429594 Reconquista Reconquista Reconquista,Rekonkista,Реконкиста -29.15 -59.65 P PPL AR 21 90184 50 America/Argentina/Cordoba 2012-01-18
-3429652 Quilmes Quilmes Kil'mes,Quilmes,Кильмес -34.72418 -58.25265 P PPL AR 01 3429651 518788 24 America/Argentina/Buenos_Aires 2012-01-18
-3429710 Puerto Yeruá Puerto Yerua Puerto Yerua,Puerto Yeruá,Punta Yerua -31.53713 -58.01527 P PPL AR 08 1541 26 America/Argentina/Cordoba 2012-01-18
-3429713 Puerto Vilelas Puerto Vilelas Puerto Vilelas -27.51414 -58.93906 P PPL AR 03 8455 52 America/Argentina/Cordoba 2012-02-02
-3429721 Puerto Tirol Puerto Tirol Puerto Tirol -27.37218 -59.08206 P PPL AR 03 9767 54 America/Argentina/Cordoba 2012-02-02
-3429732 Puerto Rico Puerto Rico Libertador General San Martin,Libertador General San Martín,Puerto Libertador General San Martin,Puerto Libertador General San Martín,Puerto Rico,Puerto San Alberto -26.79598 -55.02402 P PPL AR 14 17491 147 America/Argentina/Cordoba 2012-01-18
-3429738 Puerto Piray Puerto Piray Puerto Piray -26.46779 -54.71476 P PPL AR 14 8557 137 America/Argentina/Cordoba 2012-02-02
-3429764 Puerto Libertad Puerto Libertad Puerto Libertad -25.91641 -54.62089 P PPL AR 14 6143 101 America/Argentina/Cordoba 2012-02-02
-3429765 Puerto Leoni Puerto Leoni Leoni,Puerto Leoni -26.96069 -55.1657 P PPL AR 14 2329 95 America/Argentina/Cordoba 2012-01-18
-3429777 Puerto Iguazú Puerto Iguazu Eva Peron,Eva Perón,Iguassu,Iguazu,Iguazú,Puehrto-Iguasu,Puerto Aguirre,Puerto Iguazu,Puerto Iguazú,Puerto Igvasu,Пуэрто-Игуасу -25.59912 -54.57355 P PPLA4 AR AR 14 3433487 32038 177 America/Argentina/Cordoba 2010-07-26
-3429778 Puerto Ibicuy Puerto Ibicuy Puerto Ibicuy,Punta Ibicuy -33.73333 -59.18333 P PPL AR AR 08 4477 3 America/Argentina/Cordoba 2012-01-18
-3429786 Puerto Esperanza Puerto Esperanza Esperanza,Puerto Esperanza -26.01517 -54.67306 P PPL AR 14 15579 152 America/Argentina/Cordoba 2012-01-18
-3429790 Puerto Eldorado Puerto Eldorado Eldorado,Puerto Eldorado -26.40842 -54.69463 P PPL AR 14 54189 102 America/Argentina/Cordoba 2012-01-18
-3429801 Puerto Bermejo Puerto Bermejo Bermejo,Puerto Bermejo -26.93173 -58.50538 P PPL AR 03 1832 55 America/Argentina/Cordoba 2012-01-18
-3429820 Pueblo Libertador Pueblo Libertador Colonia Bahia de Astrada,Colonia Bahía de Astrada,Colonia Beron de Astrada,Colonia Berón de Astrada,Pueblo Libertador -30.22087 -59.38981 P PPL AR 06 3973 38 America/Argentina/Cordoba 2012-01-18
-3429843 Pronunciamiento Pronunciamiento Pronunciamiento -32.34617 -58.43287 P PPL AR 08 1301 47 America/Argentina/Cordoba 2012-02-02
-3429864 Presidencia Roca Presidencia Roca Presidencia Roca,Presidente Roca -26.1409 -59.59541 P PPL AR 03 4987 91 America/Argentina/Cordoba 2012-01-18
-3429866 Presidencia de la Plaza Presidencia de la Plaza Presidencia de la Plaza,Presidente de la Plaza,Puerto de la Plaza -27.00147 -59.84243 P PPL AR 03 3429865 12231 76 America/Argentina/Cordoba 2012-01-18
-3429886 Posadas Posadas Posadas,Посадас -27.36708 -55.89608 P PPLA AR 14 312060 127 America/Argentina/Cordoba 2012-02-21
-3429902 Pontevedra Pontevedra Pontevedra -34.74974 -58.68696 P PPL AR 01 33515 23 America/Argentina/Buenos_Aires 2012-02-02
-3429949 Pirané Pirane Pirane,Pirané -25.73239 -59.10879 P PPL AR 09 3429948 19124 86 America/Argentina/Cordoba 2012-02-02
-3429971 Pinamar Pinamar Balneario Pinamar,Pinamar -37.10794 -56.8614 P PPLA2 AR 01 0 15 America/Argentina/Buenos_Aires 2011-11-19
-3429996 Piedras Blancas Piedras Blancas -31.18623 -59.95957 P PPL AR 08 1714 46 America/Argentina/Cordoba 2011-04-19
-3430015 Picada Gobernador López Picada Gobernador Lopez Gobernador Lopez,Gobernador López,Picada Gobernador Lopez,Picada Gobernador López,Picada Lopez,Picada López -27.67069 -55.24585 P PPL AR 14 2256 299 America/Argentina/Cordoba 2012-01-18
-3430029 Perugorría Perugorria Perrugorria,Perrugorría,Perugorria,Perugorría,Perugurria -29.34132 -58.61059 P PPL AR 06 5685 64 America/Argentina/Cordoba 2012-01-18
-3430064 Pedro R. Fernández Pedro R. Fernandez Manuel F. Mantilla,Morro Furo Mantilla,Pedro R. Fernandez,Pedro R. Fernández,San Diego -28.75097 -58.65583 P PPL AR 06 2058 73 America/Argentina/Cordoba 2012-01-18
-3430104 Paso de los Libres Paso de los Libres Paso de los Libres -29.71311 -57.08991 P PPL AR 06 3430103 43805 70 America/Argentina/Cordoba 2012-01-18
-3430105 Paso de la Patria Paso de la Patria -27.31676 -58.57197 P PPL AR 06 5818 56 America/Argentina/Cordoba 2011-04-19
-3430178 Panambí Panambi Panambi,Panambí,Puerto Panambi -27.7237 -54.91514 P PPL AR 14 5970 121 America/Argentina/Cordoba 2012-01-18
-3430180 Pampa del Indio Pampa del Indio Pampa del Indio -26.06468 -59.91898 P PPL AR 03 11588 96 America/Argentina/Cordoba 2012-02-02
-3430182 Pampa Almirón Pampa Almiron Pampa Almiron,Pampa Almirón -26.7 -59.13333 P PPL AR 03 1747 68 America/Argentina/Cordoba 2012-02-02
-3430186 Palo Santo Palo Santo -25.56332 -59.33781 P PPL AR 09 5324 90 America/Argentina/Cordoba 2011-04-19
-3430219 Palmar Grande Palmar Grande -27.94195 -57.90057 P PPL AR 06 1672 75 America/Argentina/Cordoba 2011-04-19
-3430340 Oberá Obera Obera,Oberá,Yerbal Viejo,Обера -27.48706 -55.11994 P PPL AR 14 3430339 56528 345 America/Argentina/Cordoba 2012-01-18
-3430383 Nueve de Julio Nueve de Julio 9 de Julio,Nueve de Julio -28.84051 -58.8265 P PPL AR 06 2671 74 America/Argentina/Cordoba 2012-01-18
-3430402 Nuestra Señora del Rosario de Caa Catí Nuestra Senora del Rosario de Caa Cati Caa Cati,Caa Catí,General Paz,Nuestra Senora del Rosario de Caa Cati,Nuestra Señora del Rosario de Caa Catí -27.75072 -57.62073 P PPL AR 06 7573 77 America/Argentina/Cordoba 2012-01-18
-3430443 Necochea Necochea Necochea -38.54726 -58.73675 P PPL AR 01 80478 20 America/Argentina/Buenos_Aires 2012-01-18
-3430545 Morón Moron 6 de Septiembre,Moron,Morón,Seis de Septiembre -34.65344 -58.61975 P PPLA2 AR 01 3430544 319934 29 America/Argentina/Buenos_Aires 2011-11-18
-3430598 Monte Caseros Monte Caseros Monte Caseros -30.25359 -57.63626 P PPL AR 06 3430597 24671 53 America/Argentina/Cordoba 2012-01-18
-3430601 Montecarlo Montecarlo Montecarlo,Puerto Montecarlo -26.5662 -54.757 P PPL AR 14 3430599 22229 205 America/Argentina/Cordoba 2012-01-18
-3430631 Mojón Grande Mojon Grande -27.71164 -55.15631 P PPL AR 14 2233 327 America/Argentina/Cordoba 2011-04-19
-3430648 Mocoretá Mocoreta -30.61891 -57.96344 P PPL AR 06 6088 52 America/Argentina/Cordoba 2011-04-19
-3430708 Mercedes Mercedes Mercedes -34.65146 -59.43068 P PPL AR 01 3430705 52949 43 America/Argentina/Buenos_Aires 2012-02-02
-3430709 Mercedes Mercedes Mercedes,Mersedes,Мерседес -29.18186 -58.07895 P PPL AR 06 30649 98 America/Argentina/Cordoba 2012-01-18
-3430760 Mburucuyá Mburucuya Mburucuya,Mburucuyá -28.04539 -58.22449 P PPL AR 06 3430759 9012 80 America/Argentina/Cordoba 2012-01-18
-3430798 Mártires Martires -27.43333 -55.38333 P PPL AR 14 1135 171 America/Argentina/Cordoba 2010-06-01
-3430836 Mariano I. Loza Mariano I. Loza Justino Solari,Mariano I. Loza,Solari -29.37668 -58.19436 P PPL AR 06 2015 122 America/Argentina/Cordoba 2012-01-18
-3430857 Margarita Belén Margarita Belen M. Belen,M. Belén,Margarita BeTen,Margarita BeTén,Margarita Belen,Margarita Belén -27.2616 -58.97219 P PPL AR 03 5547 58 America/Argentina/Cordoba 2012-01-18
-3430863 Mar del Plata Mar del Plata Mar de Plata,Mar del Plata,Mar-del'-Plata,Мар дел Плата,Мар-дель-Плата,マル・デル・プラタ -38.00228 -57.55754 P PPL AR 01 553935 15 America/Argentina/Buenos_Aires 2012-01-18
-3430940 Malabrigo Malabrigo Colonia Ella,Malabrigo -29.34636 -59.96957 P PPL AR 21 7026 59 America/Argentina/Cordoba 2012-01-18
-3430943 Makallé Makalle Makalle,Makallé -27.20687 -59.28696 P PPL AR 03 4994 67 America/Argentina/Cordoba 2012-02-02
-3430968 Maciá Macia Macia,Maciá -32.1722 -59.39947 P PPL AR 08 5806 76 America/Argentina/Cordoba 2012-02-02
-3430988 Luján Lujan Lujan,Luján,Lukhan,Лухан -34.57028 -59.105 P PPL AR 01 3430982 81749 27 America/Argentina/Buenos_Aires 2012-01-18
-3431005 Lucas González Lucas Gonzalez L. Gonzalez,L. González,Lucas Gonzalez,Lucas González -32.3843 -59.53013 P PPL AR 08 4466 94 America/Argentina/Cordoba 2012-01-18
-3431161 Los Helechos Los Helechos -27.5576 -55.07683 P PPL AR 14 3616 369 America/Argentina/Cordoba 2011-04-19
-3431184 Los Conquistadores Los Conquistadores -30.5908 -58.46773 P PPL AR 08 1214 75 America/Argentina/Cordoba 2011-04-19
-3431188 Los Charrúas Los Charruas Los Charruas,Los Charrúas -31.17548 -58.18774 P PPL AR 08 3414 72 America/Argentina/Cordoba 2012-02-02
-3431244 Loreto Loreto -27.76834 -57.27531 P PPL AR 06 2856 79 America/Argentina/Cordoba 2011-04-19
-3431245 Loreto Loreto Loreto -27.33635 -55.52225 P PPL AR 14 1201 173 America/Argentina/Cordoba 2012-02-02
-3431272 Lomas de Vallejos Lomas de Vallejos -27.73501 -57.9185 P PPL AR 06 1415 71 America/Argentina/Cordoba 2011-04-19
-3431367 Libertad Libertad Colonia Libertad,Libertad -30.043 -57.8202 P PPL AR 06 1438 85 America/Argentina/Cordoba 2012-01-18
-3431460 La Verde La Verde La Verde -27.12634 -59.37352 P PPL AR 03 2995 67 America/Argentina/Cordoba 2012-02-02
-3431606 Las Toscas Las Toscas Las Tocas,Las Toscas -28.3529 -59.25795 P PPL AR 21 11811 53 America/Argentina/Cordoba 2012-01-18
-3431777 Las Garcitas Las Garcitas Colonia Las Garcitas,Las Garcitas -26.58333 -59.8 P PPL AR AR 03 4244 86 America/Argentina/Cordoba 2012-01-18
-3431916 Larroque Larroque Larrogue,Larroque,Villa Larroque -33.03595 -59.00125 P PPL AR 08 6200 54 America/Argentina/Cordoba 2012-01-18
-3432043 La Plata La Plata Eva Peron,Eva Perón,La Plata,La-Plata,lablata,rapurata,Ла Плата,Ла-Плата,لابلاتا,ラプラタ -34.92145 -57.95453 P PPLA AR 01 3432039 694167 27 America/Argentina/Buenos_Aires 2012-01-18
-3432079 La Paz La Paz La Paz -30.74485 -59.64566 P PPL AR 08 3432077 24716 56 America/Argentina/Cordoba 2012-01-18
-3432122 Lapachito Lapachito Lapachito -27.15998 -59.38604 P PPL AR 03 1448 66 America/Argentina/Cordoba 2012-02-02
-3432355 La Leonesa La Leonesa La Leonesa -27.03786 -58.70347 P PPL AR 03 10067 60 America/Argentina/Cordoba 2012-02-02
-3432463 Laguna Naick-Neck Laguna Naick-Neck Laguna Naick-Neck,Laguna Naineck -25.24769 -58.09383 P PPL AR 09 2115 78 America/Argentina/Cordoba 2012-01-18
-3432466 Laguna Limpia Laguna Limpia Laguna Limpia -26.49565 -59.68083 P PPL AR 03 1594 86 America/Argentina/Cordoba 2012-02-02
-3432653 La Escondida La Escondida Desvio La Escondida,La Escondida -27.10724 -59.44784 P PPL AR 03 3948 67 America/Argentina/Cordoba 2012-01-18
-3432707 La Eduvigis La Eduvigis La Eduvigis -26.85545 -59.06842 P PPL AR 03 3816 70 America/Argentina/Cordoba 2012-02-02
-3432760 La Cruz La Cruz La Cruz -29.17443 -56.64326 P PPL AR 06 8591 69 America/Argentina/Cordoba 2012-01-18
-3432768 La Criolla La Criolla -31.26904 -58.10558 P PPL AR 08 1852 55 America/Argentina/Cordoba 2011-11-05
-3433291 Juan Pujol Juan Pujol -30.41873 -57.85612 P PPL AR 06 1487 63 America/Argentina/Cordoba 2011-04-19
-3433349 Jardín América Jardin America -27.04346 -55.22698 P PPL AR 14 24905 227 America/Argentina/Cordoba 2010-05-31
-3433359 Ituzaingó Ituzaingo Ituzaingo,Ituzaingó -34.65582 -58.65836 P PPLA2 AR 01 0 29 America/Argentina/Buenos_Aires 2011-11-18
-3433363 Itatí Itati Itati,Itatí -27.27043 -58.24458 P PPL AR 06 3433362 7902 65 America/Argentina/Cordoba 2012-01-18
-3433373 Itá Ibaté Ita Ibate Ita Ibate,Italbate,Ite-Ibata,Itá Ibaté,Ité-Ibata -27.42573 -57.33758 P PPL AR 06 4115 75 America/Argentina/Cordoba 2012-01-18
-3433513 Ibarreta Ibarreta Ibarreta -25.21438 -59.85851 P PPL AR 09 8687 107 America/Argentina/Cordoba 2012-02-02
-3433522 Hurlingham Hurlingham 28 de Septiembre,Hurlingham -34.58831 -58.63905 P PPLA2 AR 01 0 14 America/Argentina/Buenos_Aires 2011-11-18
-3433564 Herrera Herrera Herrera,Villa San Miguel -32.43516 -58.62462 P PPL AR 08 1587 51 America/Argentina/Cordoba 2012-01-18
-3433567 Herradura Herradura Colonia Herradura,Herradura -26.48705 -58.31198 P PPL AR 09 2333 64 America/Argentina/Cordoba 2012-01-18
-3433575 Herlitzka Herlitzka -27.56516 -58.25557 P PPL AR 06 1166 66 America/Argentina/Cordoba 2011-04-19
-3433580 Hasenkamp Hasenkamp Hasenkamp -31.51226 -59.83545 P PPL AR 08 4413 90 America/Argentina/Cordoba 2012-02-02
-3433648 Guaraní Guarani Guarani,Guaraní,Pueblo Guarani,Pueblo Guaraní -27.51667 -55.16667 P PPL AR AR 14 4530 359 America/Argentina/Cordoba 2012-01-18
-3433658 Gualeguaychú Gualeguaychu Gualeguajchu,Gualeguaychu,Gualeguaychú,Гуалегуайчу -33.00938 -58.51722 P PPL AR 08 78676 14 America/Argentina/Cordoba 2012-01-18
-3433663 Gualeguay Gualeguay Gualeguay -33.14156 -59.30966 P PPL AR 08 3433661 33120 14 America/Argentina/Cordoba 2012-01-18
-3433715 Goya Goya Goja,Gojja,Goya,Гойя -29.14003 -59.26256 P PPL AR 06 70245 44 America/Argentina/Cordoba 2012-01-18
-3433743 Gobernador Roca Gobernador Roca Colonia Corpus,Gobernador Roca -27.18636 -55.46433 P PPL AR 14 6315 185 America/Argentina/Cordoba 2012-01-18
-3433747 Gobernador Mansilla Gobernador Mansilla Gobernador Mansilla,Mansilla -32.54453 -59.3548 P PPL AR 08 2264 50 America/Argentina/Cordoba 2012-01-18
-3433751 Gobernador Juan E. Martínez Gobernador Juan E. Martinez Gobernador J.F. Martinez,Gobernador J.F. Martínez,Gobernador Juan E. Martinez,Gobernador Juan E. Martínez,Gobernador Martinez,Gobernador Martínez,Golfo Martinez,Yatay -28.91705 -58.93292 P PPL AR 06 3529 64 America/Argentina/Cordoba 2012-01-18
-3433753 Gobernador Ingeniero Valentín Virasoro Gobernador Ingeniero Valentin Virasoro Gobernador Ingeniero Valentin Virasoro,Gobernador Ingeniero Valentín Virasoro,Vuelta del Ombu,Vuelta del Ombú -28.05 -56.03333 P PPL AR AR 06 28756 133 America/Argentina/Cordoba 2012-01-18
-3433773 General Vedia General Vedia General Vedia,General Verde -26.93382 -58.6604 P PPL AR 03 3513 58 America/Argentina/Cordoba 2012-01-18
-3433803 General José de San Martín General Jose de San Martin Colonia Zapallar,El Zapallar,General Jose de San Martin,General José de San Martín,General San Martin,General San Martín,Zapallar -26.53743 -59.34158 P PPL AR 03 31758 81 America/Argentina/Cordoba 2012-01-18
-3433809 General Galarza General Galarza Galarza,General Galarza -32.72034 -59.39615 P PPL AR 08 4150 54 America/Argentina/Cordoba 2012-01-18
-3433815 General Campos General Campos Campos,Colonia General Campos,General Campos -31.52311 -58.4049 P PPL AR 08 2982 65 America/Argentina/Cordoba 2012-01-18
-3433820 General Alvear General Alvear General Alvear -27.43333 -55.16667 P PPL AR 14 1431 290 America/Argentina/Cordoba 2012-02-02
-3433836 Garupá Garupa Garupa,Garupá -27.48171 -55.82921 P PPL AR 14 28814 108 America/Argentina/Cordoba 2012-02-02
-3433839 Garuhapé Garuhape Garuape,Garuapé,Garuhape,Garuhapé -26.81768 -54.95664 P PPL AR 14 8259 177 America/Argentina/Cordoba 2012-01-18
-3433842 Garruchos Garruchos -28.18514 -55.63947 P PPL AR 06 1152 80 America/Sao_Paulo 2011-04-19
-3433899 Formosa Formosa Formosa,Formoza,Формоза,Формоса -26.17753 -58.17814 P PPLA AR 09 221383 70 America/Argentina/Cordoba 2012-01-18
-3433901 Fontana Fontana Fontana -27.41813 -59.02392 P PPL AR 03 26745 54 America/Argentina/Cordoba 2012-02-02
-3433919 Florentino Ameghino Florentino Ameghino -27.56667 -55.13333 P PPL AR 14 1979 252 America/Argentina/Cordoba 2010-06-01
-3433944 Felipe Yofré Felipe Yofre Felipe Yofre,Felipe Yofré,Yofre,Yofré -29.10226 -58.33772 P PPL AR 06 1947 72 America/Argentina/Cordoba 2012-01-18
-3433956 Federal Federal Federal,Villa Federal -30.95465 -58.78326 P PPL AR 08 16333 67 America/Argentina/Cordoba 2012-01-18
-3433959 Federación Federacion Federacion,Federación -31.00621 -57.89962 P PPL AR 08 13789 46 America/Argentina/Cordoba 2012-01-18
-3434095 Esquina Esquina Esquina -30.01444 -59.52719 P PPL AR 06 3434094 26399 44 America/Argentina/Cordoba 2012-02-02
-3434291 El Soberbio El Soberbio El Soberbio -27.29846 -54.19877 P PPL AR 14 19571 156 America/Argentina/Cordoba 2012-01-18
-3434731 El Colorado El Colorado El Colorado -26.30808 -59.37291 P PPL AR 09 12780 86 America/Argentina/Cordoba 2012-02-02
-3434932 El Alcázar El Alcazar -26.71459 -54.81523 P PPL AR 14 5127 210 America/Argentina/Cordoba 2011-04-19
-3434995 Dos de Mayo Dos de Mayo 2 de Mayo,Dos de Mayo -27.02277 -54.68669 P PPL AR 14 14544 561 America/Argentina/Cordoba 2012-01-18
-3434997 Dos Arroyos Dos Arroyos -27.70784 -55.23364 P PPL AR 14 3079 287 America/Argentina/Cordoba 2011-04-19
-3435030 Domínguez Dominguez Colonia Clara,Dominguez,Domínguez,Villa Dominguez,Villa Domínguez -31.9871 -58.96197 P PPL AR 08 1925 59 America/Argentina/Cordoba 2012-01-18
-3435038 Dolores Dolores -36.31322 -57.67918 P PPL AR 01 3435032 25190 14 America/Argentina/Buenos_Aires 2011-04-19
-3435103 Curuzú Cuatiá Curuzu Cuatia Curuzu Cuatia,Curuzú Cuatiá -29.79171 -58.0546 P PPL AR 06 36390 79 America/Argentina/Cordoba 2012-01-18
-3435178 Cruz de los Milagros Cruz de los Milagros -28.83646 -59.00476 P PPL AR 06 1768 59 America/Argentina/Cordoba 2011-04-19
-3435196 Coté-Lai Cote-Lai -27.5 -59.6 P PPL AR 03 1650 65 America/Argentina/Cordoba 2010-06-01
-3435217 Corrientes Corrientes Corrientes,Korientes,Korientesas,Korrientes,kwryynts,Кориентес,Корриентес,كوريينتس -27.4806 -58.8341 P PPLA AR 06 339067 63 America/Argentina/Cordoba 2012-01-18
-3435258 Conscripto Bernardi Conscripto Bernardi Conscripto Bernardi,Kilometro 101,Kilómetro 101 -31.04837 -59.08435 P PPL AR 08 1464 70 America/Argentina/Cordoba 2012-01-18
-3435261 Concordia Concordia Concordia,Konkordija,Конкордия -31.39296 -58.02089 P PPL AR 08 145210 30 America/Argentina/Cordoba 2012-01-18
-3435264 Concepción del Uruguay Concepcion del Uruguay Concepcion del Uruguay,Concepción del Uruguay,Konseps'on-del'-Urugvaj,Konsepsion del Urugvajus,Консепсьон-дель-Уругвай -32.48249 -58.23722 P PPL AR 08 67895 16 America/Argentina/Cordoba 2012-01-18
-3435266 Concepción de la Sierra Concepcion de la Sierra Concepcion de la Sierra,Concepción de la Sierra -27.98311 -55.52031 P PPL AR 14 7398 167 America/Argentina/Cordoba 2012-02-02
-3435273 Concepción Concepcion Concepcion,Concepción -28.39175 -57.88777 P PPL AR 06 3435269 4800 67 America/Argentina/Cordoba 2012-01-18
-3435283 Comandante Fontana Comandante Fontana Comandante Fontana -25.33453 -59.68212 P PPL AR 09 5655 103 America/Argentina/Cordoba 2012-02-02
-3435290 Colonia Wanda Colonia Wanda -25.97408 -54.42806 P PPL AR 14 12779 225 America/Argentina/Cordoba 2011-04-19
-3435295 Colonias Unidas Colonias Unidas Colonia Unidas,Colonias Unidas -26.69825 -59.63154 P PPL AR 03 4093 83 America/Argentina/Cordoba 2012-01-18
-3435330 Colonia Elisa Colonia Elisa Colonia Elisa -26.93041 -59.51861 P PPL AR 03 4570 72 America/Argentina/Cordoba 2012-02-02
-3435331 Colonia Elía Colonia Elia -32.66625 -58.32148 P PPL AR 08 1620 35 America/Argentina/Cordoba 2011-04-19
-3435340 Colonia Benítez Colonia Benitez Benitez,Benítez,Colonia Benitez,Colonia Benítez -27.33099 -58.94622 P PPL AR 03 3584 54 America/Argentina/Cordoba 2012-01-18
-3435344 Colonia Aurora Colonia Aurora Colonia Aurora -27.47428 -54.52498 P PPL AR 14 8407 178 America/Argentina/Cordoba 2012-02-02
-3435356 Colegiales Colegiales Colegiales -34.57365 -58.44924 P PPLX AR 07 57000 27 America/Argentina/Buenos_Aires 2010-11-28
-3435364 Clorinda Clorinda Clorinda,Klorinda,Клоринда -25.28481 -57.71851 P PPL AR 09 15000 66 America/Argentina/Cordoba 2012-01-18
-3435399 Ciervo Petiso Ciervo Petiso Ciervo Petiso,Ciervo Petizo -26.58041 -59.63094 P PPL AR 03 1055 88 America/Argentina/Cordoba 2012-01-18
-3435444 Chavarría Chavarria Chavarria,Chavarría -28.95488 -58.57277 P PPL AR 06 2337 64 America/Argentina/Cordoba 2012-02-02
-3435453 Charadai Charadai Charadai,Charaday -27.63333 -59.9 P PPL AR AR 03 2538 67 America/Argentina/Cordoba 2012-01-18
-3435486 Chajarí Chajari Chajari,Chajarí -30.75048 -57.97962 P PPL AR 08 30655 58 America/Argentina/Cordoba 2012-01-18
-3435525 Cerro Corá Cerro Cora Cerro Cora,Cerro Corá,Colonia Cerro Cora,Colonia Cerro Corá -27.5131 -55.60896 P PPL AR 14 1153 161 America/Argentina/Cordoba 2012-01-18
-3435532 Cerro Azul Cerro Azul Cerro Azul -27.6331 -55.4962 P PPL AR 14 5323 263 America/Argentina/Cordoba 2012-02-02
-3435570 Ceibas Ceibas Ceibas -33.43333 -58.75 P PPL AR 08 1405 7 America/Argentina/Cordoba 2012-01-18
-3435612 Caseros Caseros Caseros,Colonia Caseros -32.46325 -58.47872 P PPL AR 08 2109 51 America/Argentina/Cordoba 2012-01-18
-3435679 Caraguatay Caraguatay Caraguatay,Puerto Caraguatay -26.60587 -54.78093 P PPL AR 14 3287 126 America/Argentina/Cordoba 2012-01-18
-3435688 Capitán Solari Capitan Solari Capitan Solari,Capitán Solari -26.80215 -59.56089 P PPL AR 03 2123 80 America/Argentina/Cordoba 2012-02-02
-3435701 Capioví Capiovi Capiovi,Capioví -26.92998 -55.06084 P PPL AR 14 5860 184 America/Argentina/Cordoba 2012-02-02
-3435734 Candelaria Candelaria Candelaria -27.4595 -55.74536 P PPL AR 14 3435732 11039 119 America/Argentina/Cordoba 2012-02-02
-3435750 Campo Viera Campo Viera Campo Viera -27.38333 -55.03333 P PPL AR 14 9228 284 America/Argentina/Cordoba 2012-02-02
-3435765 Campo Ramón Campo Ramon Campo Ramon,Campo Ramón -27.46108 -55.01901 P PPL AR 14 10088 364 America/Argentina/Cordoba 2012-02-02
-3435789 Campo Grande Campo Grande Campo Grande -27.2077 -54.97977 P PPL AR 14 12040 454 America/Argentina/Cordoba 2012-02-02
-3435810 Campana Campana Campana,Kampana,Кампана -34.16874 -58.95914 P PPL AR 01 3435809 81612 17 America/Argentina/Buenos_Aires 2012-01-18
-3435910 Buenos Aires Buenos Aires BUE,Baires,Bonaero,Bonaeropolis,Bonaëropolis,Bos Aires,Bouenos Aires,Buehnos Ajres,Buehnos-Ajres,Buehnos-Ajres osh,Buenos Aires,Buenos Airės,Buenos Ajres,Buenos Ayres,Buenos-Ajres,Buenos-Ayres,Buenos-Aýres,Buenosairesa,Buénos Ayrés,Bwenoze,Bwènozè,Búenos Aíres,Ciudad Autonoma de Buenos Aires,Ciudad Autónoma de Buenos Aires,Ciudad de La Santisima Trinidad y Puerto de Santa Maria del Buen Ayre,Ciudad de La Santísima Trinidad y Puerto de Santa María del Buen Ayre,Gorad Buehnas-Ajrehs,Lungsod ng Buenos Aires,Santa Maria del Buen Ayre,Santa María del Buen Ayre,bawnosxires,bu yi nuo si ai li si,bu'enosa a'iresa,buenos-airesi,buenosaires,buenoseuaileseu,buenosuairesu,buraenosa a'iresa,buyenosa a'iresa,bwyns ayrs,bwynws ayrs,bwynws ayrys,byu'enosa erisa,byunas airis,byunas ayels,bywns ayrs,puvenas airis,Μπουένος ΄Aιρες,Μπουένος Άιρες,Буенос Аирес,Буенос Айрес,Буенос Аірес,Буенос Ајрес,Буенос-Айрес,Буэнос Айрес,Буэнос-Айрес,Буэнос-Айрес ош,Горад Буэнас-Айрэс,Բուենոս Այրես,בואנוס איירס,בוענאס איירעס,بوئنوس آیرس,بوينس آيرس,بوينوس ايريس,بیونس آئرس,बुएनोस आइरेस,ब्युएनॉस एरीस,বুয়েনোস আইরেস,বুৱেনোস আইরেস,புவெனஸ் ஐரிஸ்,ಬ್ಯೂನಸ್ ಐರಿಸ್,ബ്യൂണസ് അയേഴ്സ്,บัวโนสไอเรส,པུ་ཨེ་ནོ་སི་ཨས་རི་སི།,ბუენოს-აირესი,ብዌኖስ አይሬስ,ブエノスアイレス,布宜諾斯艾利斯,布宜诺斯艾利斯,부에노스아이레스 -34.61315 -58.37723 P PPLC AR 07 13076300 31 America/Argentina/Buenos_Aires 2012-01-12
-3435966 Bovril Bovril Bovril -31.34311 -59.44512 P PPL AR 08 7977 81 America/Argentina/Cordoba 2012-01-18
-3435988 Bonpland Bonpland Bompland,Bonpland -29.82397 -57.43146 P PPL AR 06 1063 75 America/Argentina/Cordoba 2012-01-18
-3435989 Bonpland Bonpland -27.48218 -55.47756 P PPL AR 14 2173 187 America/Argentina/Cordoba 2011-04-19
-3436030 Bernardo de Irigoyen Bernardo de Irigoyen Barracon,Bernardo de Irigoyen -26.2552 -53.64581 P PPL AR 14 10889 815 America/Sao_Paulo 2012-01-18
-3436100 Basail Basail Basail -27.86667 -59.3 P PPL AR 03 3652 57 America/Argentina/Cordoba 2012-02-02
-3436124 Barranqueras Barranqueras Barranqueras -27.48299 -58.93579 P PPL AR 03 50823 52 America/Argentina/Cordoba 2012-01-18
-3436199 Azul Azul Azul,Азул -36.77698 -59.85854 P PPL AR 01 3436197 53941 141 America/Argentina/Buenos_Aires 2012-01-18
-3436205 Azara Azara Azara -28.0616 -55.67797 P PPL AR 14 3484 127 America/Argentina/Cordoba 2012-02-02
-3436230 Avellaneda Avellaneda Avellaneda,Estacion Ewald,Estación Ewald -29.11761 -59.65834 P PPL AR 21 23077 52 America/Argentina/Cordoba 2012-01-18
-3436267 Arroyo del Medio Arroyo del Medio Arroyo del Medio -27.7 -55.41667 P PPL AR 14 2142 287 America/Argentina/Cordoba 2012-02-02
-3436287 Aristóbulo del Valle Aristobulo del Valle Aristobulo del Valle,Aristóbulo del Valle -27.09625 -54.89626 P PPL AR 14 20683 494 America/Argentina/Cordoba 2012-02-02
-3436311 Apóstoles Apostoles Apostoles,Apóstoles -27.91421 -55.75355 P PPLA3 AR 14 3436309 0 179 America/Argentina/Cordoba 2012-02-21
-3436370 Alvear Alvear Alvear -29.09683 -56.55043 P PPL AR 06 7917 65 America/Argentina/Cordoba 2012-02-28
-3436398 Almafuerte Almafuerte -27.50518 -55.39497 P PPL AR 14 1022 328 America/Argentina/Cordoba 2011-04-19
-3436433 Aldea San Antonio Aldea San Antonio Aldea San Antonio,San Antonio -32.62376 -58.70333 P PPL AR 08 1127 39 America/Argentina/Cordoba 2012-01-18
-3436448 Alba Posse Alba Posse Alba Posse -27.56978 -54.68262 P PPL AR 14 6652 125 America/Argentina/Cordoba 2012-02-02
-3480740 Guernica Guernica -34.91722 -58.38694 P PPLA2 AR 01 0 29 America/Argentina/Buenos_Aires 2011-11-19
-3832080 Zonda Zonda Zonda -31.55 -68.73333 P PPL AR 18 3832079 4038 776 America/Argentina/San_Juan 2012-02-02
-3832132 Zapala Zapala Zapala -38.89916 -70.05442 P PPL AR 15 3832131 31534 1015 America/Argentina/Salta 2012-01-18
-3832189 Yuto Yuto -23.64342 -64.47194 P PPL AR 10 7732 355 America/Argentina/Jujuy 2011-04-19
-3832260 Yerba Buena Yerba Buena Yerba Buena -26.81667 -65.31667 P PPL AR 24 50783 515 America/Argentina/Tucuman 2012-01-18
-3832376 Yacimiento Río Turbio Yacimiento Rio Turbio Rio Turbio,Río Turbio,Yacimiento Rio Turbio,Yacimiento Río Turbio,Yacimientos de Rio Turbio,Yacimientos de Río Turbio -51.57321 -72.3508 P PPL AR 20 6650 573 America/Argentina/Rio_Gallegos 2012-01-18
-3832388 Winifreda Winifreda Winifreda -36.22643 -64.23388 P PPL AR 11 2902 169 America/Argentina/Salta 2012-01-18
-3832398 Wenceslao Escalante Wenceslao Escalante Escalante,Medanos de las Canas,Médanos de las Cañas,Wenceslao Escalante -33.17303 -62.77078 P PPL AR 05 1549 119 America/Argentina/Cordoba 2012-01-18
-3832518 Vista Alegre Vista Alegre Colonia Vista Alegre,Vista Alegre -38.75 -68.18333 P PPL AR AR 15 2857 336 America/Argentina/Salta 2012-01-18
-3832560 Vinchina Vinchina -28.75964 -68.20692 P PPL AR 12 2834 1460 America/Argentina/La_Rioja 2011-04-19
-3832602 Villa Valeria Villa Valeria -34.34093 -64.9203 P PPL AR 05 2525 297 America/Argentina/Cordoba 2011-04-19
-3832603 Villa Urquiza Villa Urquiza Villa Urquiza -31.64731 -60.3748 P PPL AR 08 1566 61 America/Argentina/Cordoba 2012-02-02
-3832607 Villa Tulumba Villa Tulumba Tulumba,Villa Tulumba -30.39552 -64.1224 P PPL AR 05 1161 702 America/Argentina/Cordoba 2012-01-18
-3832608 Villa Trinidad Villa Trinidad -30.21329 -61.87597 P PPL AR 21 2945 95 America/Argentina/Cordoba 2011-04-19
-3832631 Villa Rumipal Villa Rumipal Rumipal,Villa Rumipal -32.1879 -64.48027 P PPL AR 05 3863430 1922 546 America/Argentina/Cordoba 2012-01-18
-3832647 Villa Regina Villa Regina Villa Regina -39.1 -67.06667 P PPL AR 16 31209 201 America/Argentina/Salta 2012-01-18
-3832648 Villa Reducción Villa Reduccion Reduccion,Reducción,Villa Reduccion,Villa Reducción -33.20105 -63.86234 P PPL AR 05 1467 265 America/Argentina/Cordoba 2012-01-18
-3832653 Villa Paula de Sarmiento Villa Paula de Sarmiento Paula A. de Sarmiento,Villa Paula de Sarmiento -31.4933 -68.53838 P PPL AR 18 19092 646 America/Argentina/San_Juan 2012-01-18
-3832658 Villa Ojo de Agua Villa Ojo de Agua Ojo de Agua,Villa Ojo de Agua -29.50003 -63.69377 P PPL AR 22 5832 531 America/Argentina/Cordoba 2012-01-18
-3832662 Villa Nueva Villa Nueva -32.43293 -63.24763 P PPL AR 05 16841 204 America/Argentina/Cordoba 2011-04-19
-3832694 Villa María Villa Maria Vilja Marija,Villa Maria,Villa María -32.40751 -63.24016 P PPL AR 05 92453 202 America/Argentina/Cordoba 2012-01-18
-3832705 Villa Las Rosas Villa Las Rosas Las Rosas,Villa Las Rosas,Villa de Las Rosas -31.95021 -65.05354 P PPL AR 05 2535 744 America/Argentina/Cordoba 2012-01-18
-3832711 Villa La Angostura Villa La Angostura Villa La Angostura -40.76173 -71.64631 P PPL AR 15 7526 796 America/Argentina/Salta 2011-12-23
-3832719 Villa Huidobro Villa Huidobro Canada Verde,Cañada Verde,Villa Huidobro -34.83826 -64.58686 P PPL AR 05 5155 219 America/Argentina/Cordoba 2012-01-18
-3832729 Villa Giardino Villa Giardino Villa Giardino -31.03333 -64.48333 P PPL AR 05 4679 1086 America/Argentina/Cordoba 2012-01-18
-3832733 Villa General Mitre Villa General Mitre General Mitre,Pinto,Villa General Mitre -29.1431 -62.65248 P PPL AR 22 3605 90 America/Argentina/Cordoba 2012-01-18
-3832734 Villa General Belgrano Villa General Belgrano Villa General Belgrano -31.97542 -64.5559 P PPL AR 05 3863430 5888 709 742 America/Argentina/Cordoba 2012-01-18
-3832756 Villa Dolores Villa Dolores Dolores,Villa Dolores -31.94585 -65.18958 P PPL AR 05 28009 523 America/Argentina/Cordoba 2012-01-18
-3832759 Villa de Soto Villa de Soto Soto,Villa de Soto -30.85523 -64.99947 P PPL AR 05 7303 538 America/Argentina/Cordoba 2012-01-18
-3832763 Villa del Totoral Villa del Totoral Totoral,Villa del Totoral -30.81667 -63.71667 P PPL AR AR 05 7110 233 America/Argentina/Cordoba 2012-01-18
-3832769 Villa del Dique Villa del Dique Villa Dique,Villa de Dique,Villa del Dique -32.17667 -64.45543 P PPL AR 05 2829 546 America/Argentina/Cordoba 2012-01-18
-3832773 Villa Cura Brochero Villa Cura Brochero Transito,Transito de San Alberto,Tránsito de San Alberto,Villa Cura Brochero -31.70578 -65.01796 P PPL AR 05 4707 909 America/Argentina/Cordoba 2012-01-18
-3832778 Villa Constitución Villa Constitucion Villa Constitucion,Villa Constitución -33.22778 -60.3297 P PPL AR 21 44271 32 America/Argentina/Cordoba 2012-01-18
-3832779 Villa Concepción del Tío Villa Concepcion del Tio Concepcion,Concepción,Villa Concepcion,Villa Concepcion del Tio,Villa Concepción,Villa Concepción del Tío -31.32259 -62.81354 P PPL AR 05 1585 125 America/Argentina/Cordoba 2012-01-18
-3832791 Villa Carlos Paz Villa Carlos Paz Karlos-Paz,Vilja Karlos Pasas,Villa Carlos Paz,Карлос-Паз -31.42414 -64.49778 P PPL AR 05 69451 666 America/Argentina/Cordoba 2012-01-18
-3832793 Villa Cañás Villa Canas Villa Canas,Villa Cañás -34.00565 -61.60757 P PPL AR 21 9328 104 America/Argentina/Cordoba 2012-01-18
-3832795 Villa Bustos Villa Bustos Sanagasta,Villa Bustos -29.28356 -67.02249 P PPL AR 12 2165 1029 America/Argentina/La_Rioja 2012-01-18
-3832797 Villa Berthet Villa Berthet Villa Berthet -27.29174 -60.41263 P PPL AR 03 12029 83 America/Argentina/Cordoba 2012-02-02
-3832805 Villa Atamisqui Villa Atamisqui Atamisqui,Villa Atamisqui -28.49609 -63.81609 P PPL AR 22 2683 124 America/Argentina/Cordoba 2012-01-18
-3832806 Villa Ascasubi Villa Ascasubi Ascasubi,Villa Ascasubi -32.16351 -63.89157 P PPL AR 05 2081 337 America/Argentina/Cordoba 2012-01-18
-3832811 Villa Ángela Villa Angela Villa Angela,Villa Ángela -27.57383 -60.71526 P PPL AR 03 43511 79 America/Argentina/Cordoba 2012-02-02
-3832815 Villa Allende Villa Allende -31.29458 -64.29538 P PPL AR 05 21683 505 America/Argentina/Cordoba 2011-04-19
-3832899 Viedma Viedma V'edma,Viedma,Вьедма -40.81345 -62.99668 P PPLA AR 16 48940 8 America/Argentina/Buenos_Aires 2012-01-18
-3832917 Vicuña Mackenna Vicuna Mackenna Mackenna,Vicuna Mackenna,Vicuña Mackenna -33.91965 -64.39215 P PPL AR 05 8994 243 America/Argentina/Cordoba 2012-01-18
-3832923 Victorica Victorica Victorica -36.21505 -65.43586 P PPL AR 11 6565 314 America/Argentina/Salta 2012-02-02
-3832934 Victoria Victoria Viktorija,Виктория -32.61841 -60.15478 P PPL AR 08 3832932 25139 52 America/Argentina/Cordoba 2010-01-29
-3832957 Viamonte Viamonte General Viamonte,Viamonte -33.74647 -63.09764 P PPL AR 05 1598 131 America/Argentina/Cordoba 2012-01-18
-3832959 Viale Viale Viale -31.86782 -60.00722 P PPL AR 08 8939 71 America/Argentina/Cordoba 2012-02-02
-3833027 Vera Vera Jobson,Vera -29.4593 -60.21261 P PPL AR 21 19797 64 America/Argentina/Cordoba 2012-01-18
-3833062 Venado Tuerto Venado Tuerto Neuken,Venado Tuerto,Неукен -33.74556 -61.96884 P PPL AR 21 72340 117 America/Argentina/Cordoba 2012-01-18
-3833094 Veintiocho de Noviembre Veintiocho de Noviembre 28 de Noviembre,Veintiocho de Noviembre -51.65 -72.3 P PPL AR AR 20 4686 277 America/Argentina/Rio_Gallegos 2012-01-18
-3833111 Veinticinco de Mayo Veinticinco de Mayo 25 de Mayo,Colonia Los Viejos,Colonia Veinticinco de Mayo,Veinticinco de Mayo -37.7741 -67.71638 P PPL AR 11 6962 348 America/Argentina/Salta 2012-01-18
-3833112 Veinticinco de Mayo Veinticinco de Mayo 25 de Mayo,Veinticinco de Mayo -35.4323 -60.17271 P PPL AR 01 3833100 24668 57 America/Argentina/Buenos_Aires 2012-01-18
-3833211 Valle Hermoso Valle Hermoso Valle Hermoso -31.11732 -64.48084 P PPL AR 05 5486 907 America/Argentina/Cordoba 2012-02-02
-3833283 Valcheta Valcheta Valcheta -40.7 -66.15 P PPL AR 16 3596 185 America/Argentina/Salta 2012-02-02
-3833367 Ushuaia Ushuaia Ushuaia,Ushuaja,Ushuajja,Ushuaïa,Usuaja,Ušuaja,usyuaia,wu si huai ya,Ушуайя,Ушуая,אושואיה,乌斯怀亚,우슈아이아 -54.8 -68.3 P PPLA AR 23 58028 52 America/Argentina/Ushuaia 2012-01-18
-3833391 Uriburu Uriburu Uriburu -36.50682 -63.86226 P PPL AR 11 1200 144 America/Argentina/Salta 2012-01-18
-3833412 Unquillo Unquillo Unquillo -31.23073 -64.31615 P PPL AR 05 15369 633 America/Argentina/Cordoba 2012-01-18
-3833424 Unión Union Union,Unión -35.15282 -65.94602 P PPL AR 19 2341 378 America/Argentina/San_Luis 2012-01-18
-3833463 Ucacha Ucacha -33.03203 -63.50666 P PPL AR 05 4747 197 America/Argentina/Cordoba 2011-04-19
-3833675 Trevelín Trevelin Trevelin,Trevelín -43.0858 -71.46386 P PPL AR 04 6395 380 America/Argentina/Catamarca 2012-02-02
-3833773 Tres Lomas Tres Lomas Jose M. Blanco,Jose Maria Blanco,José M. Blanco,José María Blanco,Tres Lomas -36.45722 -62.86047 P PPLA2 AR 01 0 116 America/Argentina/Buenos_Aires 2011-11-19
-3833794 Tres Isletas Tres Isletas Tres Isletas -26.34066 -60.43207 P PPL AR 03 24747 102 America/Argentina/Cordoba 2012-02-02
-3833859 Tres Arroyos Tres Arroyos Tres Arroyos -38.37394 -60.27978 P PPL AR 01 3833857 47136 113 America/Argentina/Buenos_Aires 2012-01-18
-3833880 Trenel Trenel Trenel -35.69837 -64.13218 P PPL AR 11 3833878 3426 179 America/Argentina/Salta 2012-02-02
-3833883 Trelew Trelew Trelew,Trelju -43.24895 -65.30505 P PPL AR 04 93442 14 America/Argentina/Catamarca 2007-02-18
-3833947 Trancas Trancas -26.23135 -65.28025 P PPL AR 24 6658 777 America/Argentina/Tucuman 2011-04-19
-3833995 Totoras Totoras Santa Teresa,Totoras -32.5844 -61.16852 P PPL AR 21 9587 56 America/Argentina/Cordoba 2012-01-18
-3834048 Tostado Tostado Tostado -29.23202 -61.76917 P PPL AR 21 14000 77 America/Argentina/Cordoba 2012-01-18
-3834251 Toledo Toledo -31.55574 -64.00947 P PPL AR 05 3046 371 America/Argentina/Cordoba 2011-04-19
-3834339 Tío Pujio Tio Pujio -32.2879 -63.35598 P PPL AR 05 2383 226 America/Argentina/Cordoba 2011-04-19
-3834352 Tintina Tintina Tintina -27.03333 -62.71667 P PPL AR 22 3868 166 America/Argentina/Cordoba 2012-01-18
-3834361 Tinogasta Tinogasta Tinogasta -28.06319 -67.56488 P PPL AR 02 14509 1212 America/Argentina/Catamarca 2012-01-18
-3834397 Tilisarao Tilisarao Tilisarao -32.73292 -65.29109 P PPL AR 19 5478 752 America/Argentina/San_Luis 2012-02-02
-3834403 Tilcara Tilcara Tilcara -23.57757 -65.3509 P PPL AR 10 3834402 5640 3180 America/Argentina/Jujuy 2012-01-18
-3834459 Ticino Ticino -32.6935 -63.43606 P PPL AR 05 1895 204 America/Argentina/Cordoba 2011-04-19
-3834502 Termas de Río Hondo Termas de Rio Hondo Banos,Baños,Las Termas,Las Termas de Rio Hondo,Las Termas de Río Hondo,Termas de Rio Hondo,Termas de Río Hondo,Termas del Rio Hondo,Termas del Río Hondo -27.49983 -64.86042 P PPL AR 22 27838 265 America/Argentina/Cordoba 2012-01-18
-3834542 Telén Telen Telen,Telén -36.26429 -65.51018 P PPL AR 11 1549 303 America/Argentina/Salta 2012-02-02
-3834601 Tartagal Tartagal Tartagal,Тартагал -22.51636 -63.80131 P PPL AR 17 60819 499 America/Argentina/Salta 2012-01-18
-3834665 Tancacha Tancacha -32.24309 -63.9807 P PPL AR 05 5184 354 America/Argentina/Cordoba 2011-04-19
-3834813 Tafí Viejo Tafi Viejo Tafi,Tafi Viejo,Tafí,Tafí Viejo -26.73201 -65.25921 P PPL AR 24 48459 629 America/Argentina/Tucuman 2012-01-18
-3834814 Tafí del Valle Tafi del Valle Tafi,Tafi del Valle,Tafí,Tafí del Valle -26.85275 -65.70983 P PPL AR 24 4028 2000 America/Argentina/Tucuman 2012-01-18
-3834843 Taco Pozo Taco Pozo Taco Pozo -25.61667 -63.28333 P PPL AR 03 8470 261 America/Argentina/Cordoba 2012-02-02
-3834961 Suncho Corral Suncho Corral Suncha Corral,Suncho Corral -27.93357 -63.42938 P PPL AR 22 6087 135 America/Argentina/Cordoba 2012-01-18
-3834971 Sunchales Sunchales Sunchales -30.94404 -61.56148 P PPL AR 21 18757 98 America/Argentina/Cordoba 2012-01-18
-3834985 Sumampa Sumampa Sumampa -29.3847 -63.46906 P PPL AR 22 4812 243 America/Argentina/Cordoba 2012-02-02
-3835238 Simoca Simoca Simoca -27.26272 -65.35647 P PPL AR 24 7939 325 America/Argentina/Tucuman 2012-01-18
-3835297 Sierra Grande Sierra Grande -41.60602 -65.35574 P PPL AR 16 6978 245 America/Argentina/Salta 2011-04-19
-3835304 Sierra Colorada Sierra Colorada Sierra Colorada,Sierra Colorado -40.58487 -67.75674 P PPL AR 16 1374 656 America/Argentina/Salta 2012-01-18
-3835348 Serrezuela Serrezuela -30.63761 -65.38692 P PPL AR 05 2291 280 America/Argentina/Cordoba 2011-04-19
-3835351 Serrano Serrano -34.46971 -63.53842 P PPL AR 05 2670 147 America/Argentina/Cordoba 2011-04-19
-3835372 Senillosa Senillosa -39 -68.41667 P PPL AR 15 6394 290 America/Argentina/Salta 2010-06-01
-3835402 Seguí Segui Segui,Seguí -31.95642 -60.12488 P PPL AR 08 3646 102 America/Argentina/Cordoba 2012-02-02
-3835582 Sebastián Elcano Sebastian Elcano -30.16105 -63.5936 P PPL AR 05 2042 211 America/Argentina/Cordoba 2011-04-19
-3835691 Saturnino M. Laspiur Saturnino M. Laspiur Santa Maria Laspiur,Saturnino M. Laspiur,Saturnio M. Laspiuro -31.70287 -62.48202 P PPL AR 05 2316 114 America/Argentina/Cordoba 2012-01-18
-3835695 Sastre Sastre Sastre -31.76762 -61.82886 P PPL AR 21 5521 109 America/Argentina/Cordoba 2012-01-18
-3835710 Sarmiento Sarmiento Colonia Sarmiento,Sarmiento -45.58815 -69.06996 P PPL AR 04 8292 274 America/Argentina/Catamarca 2012-01-18
-3835793 Santo Tomé Santo Tome Santo Tome,Santo Tomé -31.66274 -60.7653 P PPL AR 21 59072 19 America/Argentina/Cordoba 2012-01-18
-3835866 Santiago Temple Santiago Temple Sagrado Temple,Santiago Temple -31.38731 -63.41821 P PPL AR 05 2358 215 America/Argentina/Cordoba 2012-01-18
-3835869 Santiago del Estero Santiago del Estero Sant'jago-del'-Ehstero,Santiago del Estero,Santjago del Esteras,Сантьяго-дель-Эстеро -27.79511 -64.26149 P PPLA AR 22 354692 188 America/Argentina/Cordoba 2012-01-18
-3835921 Santa Sylvina Santa Sylvina Santa Silvina,Santa Sylvina -27.83261 -61.13747 P PPL AR 03 9040 77 America/Argentina/Cordoba 2012-01-18
-3835937 Santa Rosa de Tastil Santa Rosa de Tastil Santa Rosa de Tastil,Tastil -24.45166 -65.97452 P PPL AR 17 2000 3220 America/Argentina/Salta 2012-01-18
-3835938 Santa Rosa de Río Primero Santa Rosa de Rio Primero Santa Rosa,Santa Rosa de Rio 1,Santa Rosa de Rio Primero,Santa Rosa de Río 1,Santa Rosa de Río Primero,Villa Santa Rosa -31.15231 -63.40191 P PPL AR 05 6788 171 America/Argentina/Cordoba 2012-01-18
-3835941 Santa Rosa del Conlara Santa Rosa del Conlara Santa Rosa,Santa Rosa del Conlara -32.34286 -65.20323 P PPL AR 19 4489 591 America/Argentina/San_Luis 2012-01-18
-3835943 Santa Rosa de Calamuchita Santa Rosa de Calamuchita Santa Rosa,Santa Rosa de Calamuchita,Santa Rosa de Calamuchito -32.06905 -64.53631 P PPL AR 05 3863430 9504 583 598 America/Argentina/Cordoba 2012-01-18
-3835994 Santa Rosa Santa Rosa Santa Rosa,Santa Rosa de Toay,Santa-Rosa,Санта-Роса -36.61667 -64.28333 P PPLA AR 11 111424 179 America/Argentina/Salta 2012-01-18
-3836170 Santa Magdalena Santa Magdalena Jovita,Santa Magdalena -34.51776 -63.94409 P PPL AR 05 4059 158 America/Argentina/Cordoba 2012-01-18
-3836194 Santa Lucía Santa Lucia Santa Lucia,Santa Lucía -31.53987 -68.49503 P PPL AR 18 3836188 43565 620 America/Argentina/San_Juan 2012-02-02
-3836238 Santa Isabel Santa Isabel Santa Isabel -36.22724 -66.9424 P PPL AR 11 2493 315 America/Argentina/Salta 2012-01-18
-3836277 Santa Fe de la Vera Cruz Santa Fe de la Vera Cruz Santa Fe,Santa Fė,Santa-Fe,Санта Фе,Санта-Фе -31.63333 -60.7 P PPLA AR 21 489505 21 America/Argentina/Cordoba 2012-02-03
-3836284 Santa Eufemia Santa Eufemia -33.17658 -63.28281 P PPL AR 05 2179 155 America/Argentina/Cordoba 2011-04-19
-3836407 Santa Clara Santa Clara Santa Clara -24.30921 -64.66253 P PPL AR 10 4883 573 America/Argentina/Jujuy 2012-02-02
-3836564 San Salvador de Jujuy San Salvador de Jujuy Jujuy,Khukhuj,San Sal'vador de Khukhuj,San Sal'vador de Zhuzhuj,San Salvador de Jujuy,San Salvador de Khukhuj,San Salvador de Zuzujus,San Salvador de Žužujus,Сан Салвадор де Хухуй,Сан Сальвадор де Жужуй,Сан Сальвадор де Хухуй,Хухуй -24.19456 -65.29712 P PPLA AR 10 305891 1260 America/Argentina/Jujuy 2012-01-18
-3836620 San Ramón de la Nueva Orán San Ramon de la Nueva Oran Oran,Orán,San Ramon de la Nueva Oran,San Ramón de la Nueva Orán -23.13223 -64.32598 P PPL AR 17 74059 361 America/Argentina/Salta 2007-06-02
-3836669 San Rafael San Rafael San Rafael -34.61772 -68.33007 P PPL AR 13 109163 702 America/Argentina/Mendoza 2012-01-18
-3836769 San Pedro San Pedro San Pedro -27.95386 -65.1665 P PPL AR 22 3854499 1715 382 America/Argentina/Catamarca 2012-02-02
-3836772 San Pedro San Pedro San Pedro -24.23127 -64.86614 P PPL AR 10 3836752 58430 587 America/Argentina/Jujuy 2012-02-02
-3836846 San Nicolás de los Arroyos San Nicolas de los Arroyos San Nicolas,San Nicolas de los Arroyos,San Nicolás,San Nicolás de los Arroyos,San Nikolasas -33.33578 -60.22523 P PPL AR 01 127742 25 America/Argentina/Buenos_Aires 2012-01-18
-3836873 San Miguel de Tucumán San Miguel de Tucuman San Miguel de Tucuman,San Miguel de Tucumán,Tucuman,Tucumán,Tukuman,Tukumanas,Тукуман,サン・ミゲル・デ・トゥクマン -26.82414 -65.2226 P PPLA AR 24 781023 452 America/Argentina/Tucuman 2012-01-18
-3836951 San Martín de los Andes San Martin de los Andes San Martin de los Andes,San Martín de los Andes,San-Martin-De-Los-Andes,Сан-Мартин-Де-Лос-Андес -40.16038 -71.34865 P PPL AR 15 3852288 23519 677 America/Argentina/Salta 2010-08-19
-3836992 San Martín San Martin General San Martin,General San Martín,San Martin,San Martín -33.08103 -68.46814 P PPL AR 13 82549 661 America/Argentina/Mendoza 2012-01-18
-3836993 San Martín San Martin -31.51599 -68.35273 P PPL AR 18 3836985 10140 594 America/Argentina/San_Juan 2011-04-19
-3837056 San Luis San Luis San Luis,San Luisas,Сан Луис -33.29501 -66.33563 P PPLA AR 19 183982 729 America/Argentina/San_Luis 2012-01-18
-3837124 San Justo San Justo -30.78913 -60.59189 P PPL AR 21 3837122 21809 59 America/Argentina/Cordoba 2011-04-19
-3837213 San Juan San Juan San Chuanas,San Juan -31.5375 -68.53639 P PPLA AR 18 447048 649 America/Argentina/San_Juan 2012-01-18
-3837239 San José de la Dormida San Jose de la Dormida -30.3544 -63.94872 P PPL AR 05 3272 468 America/Argentina/Cordoba 2011-04-19
-3837240 San José de Jáchal San Jose de Jachal Jachal,Jáchal,San Jose de Jachal,San José de Jáchal -30.24057 -68.74693 P PPL AR 18 21018 1176 America/Argentina/San_Juan 2012-01-18
-3837441 San Jorge San Jorge -31.89618 -61.85984 P PPL AR 21 16873 109 America/Argentina/Cordoba 2011-04-19
-3837624 San Francisco del Monte de Oro San Francisco del Monte de Oro San Francisco,San Francisco del Monte de Oro -32.59825 -66.12539 P PPL AR 19 3295 792 America/Argentina/San_Luis 2012-01-18
-3837625 San Francisco del Chañar San Francisco del Chanar San Francisco de Chanar,San Francisco de Chañar,San Francisco del Chanar,San Francisco del Chañar -29.78991 -63.93861 P PPL AR 05 2067 681 America/Argentina/Cordoba 2012-01-18
-3837675 San Francisco San Francisco San Francisco -31.42797 -62.08266 P PPL AR 05 59062 118 America/Argentina/Cordoba 2012-01-18
-3837702 San Fernando del Valle de Catamarca San Fernando del Valle de Catamarca Catamarca,Katamarka,San Fernando del Valle de Catamarca -28.46957 -65.78524 P PPLA AR 02 188812 545 America/Argentina/Catamarca 2012-01-18
-3837823 San Cristóbal San Cristobal -30.31053 -61.23724 P PPL AR 21 3837821 14286 79 America/Argentina/Cordoba 2011-04-19
-3837857 San Carlos Centro San Carlos Centro San Carlos Centro -31.72864 -61.09192 P PPL AR 21 10465 44 America/Argentina/Cordoba 2012-01-18
-3837893 San Carlos San Carlos San Carlos,San Carlos Minas -31.17761 -65.10245 P PPL AR 05 3844209 1215 756 America/Argentina/Cordoba 2012-01-18
-3837943 San Bernardo San Bernardo San Bernardo -27.28782 -60.71252 P PPL AR 03 11101 88 America/Argentina/Cordoba 2012-02-02
-3837956 San Benito San Benito San Benito -31.78371 -60.44156 P PPL AR 08 6771 61 America/Argentina/Cordoba 2012-02-02
-3837960 San Basilio San Basilio -33.49763 -64.31495 P PPL AR 05 2882 303 America/Argentina/Cordoba 2011-04-19
-3837980 San Antonio Oeste San Antonio Oeste Puerto San Antonio Oeste,San Antonio Oeste -40.73193 -64.94769 P PPL AR 16 16966 12 America/Argentina/Salta 2012-01-18
-3837985 San Antonio de los Cobres San Antonio de los Cobres San Antonio de los Cobres -24.21804 -66.31877 P PPL AR 17 4000 3754 America/Argentina/Salta 2012-02-02
-3837987 San Antonio de Litín San Antonio de Litin Capilla de San Antonio,San Antonio,San Antonio de Litin,San Antonio de Litín -32.21377 -62.63237 P PPL AR 05 1240 130 America/Argentina/Cordoba 2012-01-18
-3838057 San Antonio San Antonio San Antonio -28.00927 -65.71218 P PPL AR 02 3842418 4290 1038 America/Argentina/Catamarca 2012-01-18
-3838158 San Agustín de Valle Fértil San Agustin de Valle Fertil San Agustin,San Agustin de Valle Fertil,San Agustín,San Agustín de Valle Fértil,Villa San Agustin,Villa San Agustín -30.63353 -67.46821 P PPL AR 18 6864 856 America/Argentina/San_Juan 2012-01-18
-3838174 San Agustín San Agustin San Agustin,San Agustín -31.97681 -64.374 P PPL AR 05 2870 548 America/Argentina/Cordoba 2012-01-18
-3838194 Samuhú Samuhu Samuhi,Samuhu,Samuhú -27.52116 -60.39167 P PPL AR 03 2223 75 America/Argentina/Cordoba 2012-01-18
-3838201 Sampacho Sampacho -33.3839 -64.72211 P PPL AR 05 7238 513 America/Argentina/Cordoba 2011-04-19
-3838233 Salta Salta Ciudad de Salta,Sal'ta,Salta,Салта,Сальта,סאלטה -24.7859 -65.41166 P PPLA AR 17 512686 1183 America/Argentina/Salta 2012-01-18
-3838235 Salsipuedes Salsipuedes -31.13724 -64.29589 P PPL AR 05 6411 739 America/Argentina/Cordoba 2011-04-19
-3838237 Salsacate Salsacate Salsacate -31.31649 -65.08529 P PPL AR 05 1205 927 America/Argentina/Cordoba 2012-02-02
-3838294 Saldán Saldan -31.30262 -64.307 P PPL AR 05 2099 495 America/Argentina/Cordoba 2011-04-19
-3838460 Sacanta Sacanta -31.663 -63.04505 P PPL AR 05 2791 166 America/Argentina/Cordoba 2011-04-19
-3838506 Rufino Rufino Rufino -34.26827 -62.71262 P PPL AR 21 18361 118 America/Argentina/Cordoba 2012-01-18
-3838583 Rosario Rosario Rosarijas,Rosario,Rosário,Rozario,rosario,rwsaryw,Розарио,Росарио,روساريو,ロサリオ -32.94682 -60.63932 P PPLA2 AR 21 3838574 1173533 38 America/Argentina/Cordoba 2012-02-03
-3838638 Roldán Roldan Roldan,Roldán -32.89846 -60.90681 P PPL AR 21 12468 43 America/Argentina/Cordoba 2012-01-18
-3838793 Río Tercero Rio Tercero Rio Tercero,Río Tercero -32.17301 -64.11406 P PPL AR 05 53389 387 America/Argentina/Cordoba 2012-01-18
-3838797 Río Segundo Rio Segundo -31.6526 -63.9099 P PPL AR 05 3838796 18155 341 America/Argentina/Cordoba 2011-04-19
-3838826 Río Pico Rio Pico Campo del Rio Pica,Campo del Río Pica,Estancia Campo del Pico,Rio Pica,Rio Pico,Río Pico -44.17904 -71.36847 P PPL AR 04 1386 603 America/Argentina/Catamarca 2012-01-18
-3838859 Río Gallegos Rio Gallegos Gallegos,Puerto Gallegos,Puerto Rio Gallegos,Puerto Río Gallegos,Rio Galjegosas,Rio Gallegos,Río Gallegos,li ao jia ye ge si,里奥加耶戈斯 -51.62261 -69.21813 P PPLA AR 20 85700 15 America/Argentina/Rio_Gallegos 2012-01-18
-3838874 Río Cuarto Rio Cuarto Rio Cuarto,Rio Kuartas,Rio-Kuarto,Río Cuarto,Рио-Куарто -33.13067 -64.34992 P PPL AR 05 3838873 153757 441 America/Argentina/Cordoba 2012-01-18
-3838902 Río Ceballos Rio Ceballos Rio Ceballos,Rio Zeballos,Río Ceballos,Río Zeballos -31.16486 -64.32241 P PPL AR 05 16632 705 America/Argentina/Cordoba 2012-01-18
-3839262 Recreo Recreo -31.49076 -60.73299 P PPL AR 21 12798 23 America/Argentina/Cordoba 2011-04-19
-3839263 Recreo Recreo Recreo -29.28184 -65.06096 P PPL AR 02 14204 216 America/Argentina/Catamarca 2012-01-18
-3839282 Realicó Realico Realico,Realicó -35.03658 -64.2447 P PPL AR 11 3839281 7151 167 America/Argentina/Salta 2012-01-18
-3839307 Rawson Rawson Rawson,Rosonas,Rouson,Роусон -43.30016 -65.10228 P PPLA AR 04 3839303 26335 13 America/Argentina/Catamarca 2012-01-18
-3839381 Rancul Rancul Jardon,Jardón,Rancul -35.06862 -64.68107 P PPL AR 11 3699 230 America/Argentina/Salta 2012-01-18
-3839479 Rafaela Rafaela Rafaehla,Rafaela,Рафаэла -31.25033 -61.4867 P PPL AR 21 88713 103 America/Argentina/Cordoba 2012-01-18
-3839482 Rada Tilly Rada Tilly Rada Tilli,Rada Tilly -45.93333 -67.53333 P PPL AR AR 04 6208 -9999 America/Argentina/Catamarca 2012-01-18
-3839490 Quitilipi Quitilipi -26.86913 -60.21683 P PPL AR 03 3839489 32083 88 America/Argentina/Cordoba 2011-04-19
-3839565 Quimilí Quimili Quimili,Quimilí -27.63333 -62.41667 P PPL AR 22 10959 135 America/Argentina/Cordoba 2012-01-18
-3839588 Quilino Quilino Quilino,Villa Quilino -30.21397 -64.50063 P PPL AR 05 4534 398 America/Argentina/Cordoba 2012-01-18
-3839668 Quemú Quemú Quemu Quemu Quemu Quemu,Quemú Quemú -36.05463 -63.56428 P PPL AR 11 3839667 3851 121 America/Argentina/Salta 2012-02-02
-3839982 Punta Alta Punta Alta Punta Alta,Punta-Al'ta,Пунта-Альта -38.87588 -62.07359 P PPL AR 01 57209 8 America/Argentina/Buenos_Aires 2012-01-18
-3840076 Puerto Santa Cruz Puerto Santa Cruz Puerto Santa Cruz,Santa Cruz -50.0191 -68.52321 P PPL AR 20 3397 17 America/Argentina/Rio_Gallegos 2012-01-18
-3840082 San Julián San Julian Puerto San Julian,Puerto San Julián,San Julian,San Julián -49.30554 -67.72743 P PPL AR 20 6143 20 America/Argentina/Rio_Gallegos 2012-01-18
-3840092 Puerto Madryn Puerto Madryn Madryn,Porth Madryn,Puehrto-Madrin,Puerto Madrinas,Puerto Madryn,Пуэрто-Мадрин -42.7692 -65.03851 P PPL AR 04 64555 11 America/Argentina/Catamarca 2012-01-18
-3840104 Puerto Deseado Puerto Deseado Deseado,Puerto Deseadas,Puerto Deseado -47.75034 -65.89382 P PPL AR 20 10237 31 America/Argentina/Rio_Gallegos 2012-01-18
-3840159 Puerta de Corral Quemado Puerta de Corral Quemado Puerta,Puerta de Corral Quemado -27.23 -66.93635 P PPL AR 02 1634 1884 America/Argentina/Catamarca 2012-01-18
-3840300 Presidencia Roque Sáenz Peña Presidencia Roque Saenz Pena Presidencia Roque Saenz Pena,Presidencia Roque Sáenz Peña,Presidensija Roke Saens Penja,Presidente Roque Saenz Pena,Presidente Roque Sáenz Peña,Roque Saenz Pena,Roque Sáenz Peña -26.78522 -60.43876 P PPL AR 03 81879 97 America/Argentina/Cordoba 2012-01-18
-3840432 Pozo del Tigre Pozo del Tigre Pozo del Tigre -24.89682 -60.32359 P PPL AR 09 3948 127 America/Argentina/Cordoba 2012-02-02
-3840470 Pozo del Molle Pozo del Molle -32.0186 -62.91984 P PPL AR 05 5429 160 America/Argentina/Cordoba 2011-04-19
-3840762 Porteña Portena -31.01391 -62.0665 P PPL AR 05 4624 105 America/Argentina/Cordoba 2011-04-19
-3840809 Pomán Poman Peman,Poman,Pomán -28.39455 -66.22052 P PPL AR 02 3840808 3387 1167 America/Argentina/Catamarca 2012-01-18
-3840860 Pocito Pocito Pocito -31.68333 -68.58333 P PPL AR 18 3840858 40969 608 America/Argentina/San_Juan 2012-02-02
-3840885 Plottier Plottier Plottier -38.96667 -68.23333 P PPL AR 15 25186 279 America/Argentina/Salta 2012-01-18
-3840896 Plaza Huincul Plaza Huincul Plaza Huincul -38.92598 -69.20863 P PPL AR 15 12273 600 America/Argentina/Salta 2012-02-02
-3841035 Piquillín Piquillin Piquilin,Piquillin,Piquillín -31.30158 -63.75788 P PPL AR 05 1170 285 America/Argentina/Cordoba 2012-01-18
-3841143 Pilcaniyeu Pilcaniyeu Estancia Pilcaniyeu,Pilcaniyeu -41.11881 -70.72914 P PPL AR 16 1467 987 America/Argentina/Salta 2012-01-18
-3841149 Pilar Pilar -31.6789 -63.87964 P PPL AR 05 12488 334 America/Argentina/Cordoba 2011-04-19
-3841232 Piedra del Águila Piedra del Aguila Piedra de Aguila,Piedra del Aguila,Piedra del Águila -40.04811 -70.0741 P PPL AR 15 3372 505 America/Argentina/Salta 2012-01-18
-3841301 Picún Leufú Picun Leufu -39.52351 -69.27966 P PPL AR 15 3841298 3222 386 America/Argentina/Salta 2011-04-19
-3841309 Pico Truncado Pico Truncado Pico Troncado,Pico Truncado -46.7949 -67.95731 P PPL AR 20 14985 286 America/Argentina/Rio_Gallegos 2012-01-18
-3841490 Pergamino Pergamino Pergamino,Пергамино -33.88995 -60.57357 P PPL AR 01 3841488 87652 69 America/Argentina/Buenos_Aires 2012-01-18
-3841500 Pérez Perez Perez,Pérez -32.99835 -60.76791 P PPL AR 21 24436 37 America/Argentina/Cordoba 2012-01-18
-3841908 Pasco Pasco -32.74733 -63.34232 P PPL AR 05 1072 187 America/Argentina/Cordoba 2011-04-19
-3841912 Pascanas Pascanas -33.1255 -63.04084 P PPL AR 05 2567 140 America/Argentina/Cordoba 2011-04-19
-3841937 Parera Parera -35.146 -64.50089 P PPL AR 11 2246 202 America/Argentina/Salta 2011-04-19
-3841956 Paraná Parana Parana,Paraná,Парана -31.73197 -60.5238 P PPLA AR 08 262295 60 America/Argentina/Cordoba 2012-01-18
-3842140 Pampa de los Guanacos Pampa de los Guanacos Kilometro 325,Kilómetro 325,Pampa de los Guanacos -26.23333 -61.85 P PPL AR AR 22 4393 161 America/Argentina/Cordoba 2012-01-18
-3842142 Pampa del Infierno Pampa del Infierno Pampa del Infierno -26.50517 -61.17436 P PPL AR 03 8176 126 America/Argentina/Cordoba 2012-02-02
-3842190 Palpalá Palpala -24.25648 -65.21163 P PPL AR 10 48199 1126 America/Argentina/Jujuy 2011-04-19
-3842268 Palma Sola Palma Sola Palma Sola,Palma Sota -23.96336 -64.29872 P PPL AR 10 5318 664 America/Argentina/Jujuy 2012-01-18
-3842559 Oro Verde Oro Verde Oro Verde -31.82508 -60.51749 P PPL AR 08 2548 86 America/Argentina/Cordoba 2012-02-02
-3842593 Ordóñez Ordonez General Ordonez,Ordonez,Ordóñez -32.84057 -62.86552 P PPL AR 05 2328 138 America/Argentina/Cordoba 2012-01-18
-3842621 Oncativo Oncativo Oncativo -31.91353 -63.68201 P PPL AR 05 12660 283 America/Argentina/Cordoba 2012-01-18
-3842662 Oliva Oliva Oliva,Olivia -32.04158 -63.56978 P PPL AR 05 11629 267 America/Argentina/Cordoba 2012-01-18
-3842670 Olavarría Olavarria Olavarria,Olavarrija,Olavarría,Олаваррия -36.89272 -60.32254 P PPL AR 01 86320 170 America/Argentina/Buenos_Aires 2012-01-18
-3842796 Obispo Trejo Obispo Trejo Obispo Trejo,San Antonio -30.78128 -63.41348 P PPL AR 05 1911 103 America/Argentina/Cordoba 2012-01-18
-3842881 Nueve de Julio Nueve de Julio 9 de Julio,Nev-de-Khulio,Nueve de Julio,Нев-де-Хулио -35.44437 -60.88313 P PPL AR 01 3842871 34718 80 America/Argentina/Buenos_Aires 2012-01-18
-3842882 Nueve de Julio Nueve de Julio 9 de Julio,Nueve de Julio -31.66914 -68.39023 P PPL AR 18 3842876 7652 578 America/Argentina/San_Juan 2012-01-18
-3843026 Noetinger Noetinger -32.36597 -62.31126 P PPL AR 05 4508 113 America/Argentina/Cordoba 2011-04-19
-3843123 Neuquén Neuquen Nequen,Neuken,Neukenas,Neuquen,Neuquén,Неукен -38.95161 -68.0591 P PPLA AR 15 242092 281 America/Argentina/Salta 2012-01-18
-3843407 Naschel Naschel -32.91656 -65.37535 P PPL AR 19 3157 867 America/Argentina/San_Luis 2010-08-04
-3843436 Napenay Napenay Napenay -26.73333 -60.61667 P PPL AR 03 3056 97 America/Argentina/Cordoba 2012-02-02
-3843504 Mutquín Mutquin Mudquin,Mutquin,Mutquín -28.32104 -66.14253 P PPL AR 02 1207 1681 America/Argentina/Catamarca 2012-01-18
-3843619 Morteros Morteros Morteros -30.71164 -61.99862 P PPL AR 05 15129 99 America/Argentina/Cordoba 2012-01-18
-3843647 Morrison Morrison -32.5948 -62.83455 P PPL AR 05 3245 148 America/Argentina/Cordoba 2011-04-19
-3843803 Monteros Monteros -27.16742 -65.49832 P PPL AR 24 3843802 23771 360 America/Argentina/Tucuman 2011-04-19
-3843830 Monte Maíz Monte Maiz Monte Maiz,Monte Maize,Monte Maíz -33.20462 -62.60085 P PPL AR 05 6920 119 America/Argentina/Cordoba 2012-01-18
-3843843 Monte Hermoso Monte Hermoso Balneario Monte Hermoso -38.9825 -61.29472 P PPLA2 AR 01 3860201 0 13 America/Argentina/Buenos_Aires 2011-11-18
-3843871 Monte Cristo Monte Cristo -31.34312 -63.94437 P PPL AR 05 6914 350 America/Argentina/Cordoba 2011-04-19
-3843881 Monte Buey Monte Buey -32.91642 -62.45668 P PPL AR 05 5497 113 America/Argentina/Cordoba 2011-04-19
-3844159 Miramar Miramar Miramar -30.91858 -62.67814 P PPL AR 05 1979 78 America/Argentina/Cordoba 2012-02-02
-3844229 Mina Clavero Mina Clavero -31.721 -65.00619 P PPL AR 05 6855 895 America/Argentina/Cordoba 2011-04-19
-3844267 Miguel Riglos Miguel Riglos M. Riglos,Miguel Riglos -36.85398 -63.68842 P PPL AR 11 2385 144 America/Argentina/Salta 2012-01-18
-3844377 Merlo Merlo Merlo,Villa de Merlo -32.34288 -65.01396 P PPL AR 19 11159 863 America/Argentina/San_Luis 2010-09-23
-3844421 Mendoza Mendoza Mendosa,Mendoza,Мендоса -32.89084 -68.82717 P PPLA AR 13 876884 746 America/Argentina/Mendoza 2012-01-18
-3844424 Mendiolaza Mendiolaza -31.26738 -64.30087 P PPL AR 05 4204 540 America/Argentina/Cordoba 2011-04-19
-3844679 Mattaldi Mattaldi Mataldi,Mattaldi -34.48194 -64.17255 P PPL AR 05 1714 181 America/Argentina/Cordoba 2012-01-18
-3844759 Marull Marull Kilometro 267,Kilómetro 267,Marull -30.99471 -62.82576 P PPL AR 05 1765 93 America/Argentina/Cordoba 2012-01-18
-3844832 Mariano Moreno Mariano Moreno Covunco,Covunco Centro,M. Moreno,Mariano Moreno -38.75029 -70.02367 P PPL AR 15 2225 773 America/Argentina/Salta 2012-01-18
-3844899 Marcos Juárez Marcos Juarez Marcos Juarez,Marcos Juárez -32.6978 -62.10672 P PPL AR 05 24226 117 America/Argentina/Cordoba 2012-01-18
-3844933 Maquinchao Maquinchao Maquinchao -41.25 -68.73333 P PPL AR 16 2195 898 America/Argentina/Salta 2012-02-02
-3845073 Malvinas Argentinas Malvinas Argentinas Malvinas Argentinas -31.38333 -64.06667 P PPL AR 05 8628 397 America/Argentina/Cordoba 2012-02-02
-3845202 Malagueño Malagueno -31.46467 -64.3584 P PPL AR 05 9364 568 America/Argentina/Cordoba 2011-04-19
-3845251 Mainque Mainque Mainque -39.06667 -67.3 P PPL AR 16 2658 218 America/Argentina/Salta 2012-02-02
-3845254 Maimará Maimara Maimara,Maimará -23.62392 -65.40797 P PPL AR 10 2470 2397 America/Argentina/Jujuy 2012-02-02
-3845330 Machagai Machagai Machagai -26.92614 -60.04956 P PPL AR 03 28070 90 America/Argentina/Cordoba 2012-02-02
-3845344 Macachín Macachin Macachin,Macachín -37.13598 -63.6665 P PPL AR 11 4768 143 America/Argentina/Salta 2012-02-02
-3845398 Luján Lujan Lujan,Luján -32.3757 -65.9296 P PPL AR 19 1896 616 America/Argentina/San_Luis 2012-02-02
-3845490 Los Varela Los Varela Los Varela,Varela -27.95482 -65.8655 P PPL AR 02 1908 1178 America/Argentina/Catamarca 2012-01-18
-3845549 Los Telares Los Telares Los Telares -28.98479 -63.44889 P PPL AR 22 2032 107 America/Argentina/Cordoba 2012-01-18
-3845575 Los Surgentes Los Surgentes -32.98454 -62.02191 P PPL AR 05 2804 101 America/Argentina/Cordoba 2011-04-19
-3845977 Los Menucos Los Menucos Los Menucos -40.84402 -68.08718 P PPL AR 16 2689 791 America/Argentina/Salta 2012-02-02
-3846080 Los Juríes Los Juries Los Juries,Los Juríes -28.46539 -62.10862 P PPL AR 22 3212 93 America/Argentina/Cordoba 2012-02-02
-3846175 Los Frentones Los Frentones Los Frentones,Los Frontones -26.4077 -61.41368 P PPL AR 03 6610 136 America/Argentina/Cordoba 2012-01-18
-3846236 Los Cóndores Los Condores Condores,Cóndores,Los Condores,Los Cóndores -32.31984 -64.27752 P PPL AR 05 2720 542 America/Argentina/Cordoba 2012-01-18
-3846484 Los Antiguos Los Antiguos Los Antiguos -46.54972 -71.63086 P PPL AR 20 2047 218 America/Argentina/Rio_Gallegos 2012-02-02
-3846514 Los Altos Los Altos Altos,Los Altos -28.04845 -65.49946 P PPL AR 02 6421 499 America/Argentina/Catamarca 2012-01-18
-3846610 Lonquimay Lonquimay Lonquimay,Pueblo Quintana -36.46546 -63.62429 P PPL AR 11 1672 142 America/Argentina/Salta 2012-01-18
-3846616 Londres Londres Londres -27.71439 -67.13349 P PPL AR 02 2627 1222 America/Argentina/Catamarca 2012-02-02
-3846634 Loncopué Loncopue Loncopue,Loncopué -38.07284 -70.61609 P PPL AR 15 3846632 4323 963 America/Argentina/Salta 2012-01-18
-3846864 Lincoln Lincoln Lincoln -34.86649 -61.5302 P PPL AR 01 3846861 41808 76 92 America/Argentina/Buenos_Aires 2012-02-02
-3846915 Libertador General San Martín Libertador General San Martin General San Martin,Ledesma,Libertador General San Martin,Libertador General San Martín -23.80644 -64.78757 P PPL AR 10 49267 485 America/Argentina/Jujuy 2012-01-18
-3846991 Leones Leones Leones,Peron,Perón -32.66174 -62.29678 P PPL AR 05 9971 120 America/Argentina/Cordoba 2012-01-18
-3847482 La Toma La Toma Cuatro de Junio,La Toma -33.05258 -65.62385 P PPL AR 19 6663 897 America/Argentina/San_Luis 2012-01-18
-3847516 La Tigra La Tigra -27.10996 -60.58719 P PPL AR 03 4505 93 America/Argentina/Cordoba 2011-04-19
-3847613 Las Varillas Las Varillas -31.87208 -62.71946 P PPL AR 05 14649 138 America/Argentina/Cordoba 2011-04-19
-3847617 Las Varas Las Varas -31.8026 -62.61655 P PPL AR 05 1017 128 America/Argentina/Cordoba 2011-04-19
-3847836 Las Rosas Las Rosas Las Rosas -32.47661 -61.58041 P PPL AR 21 12793 107 America/Argentina/Cordoba 2012-02-02
-3847911 Las Perdices Las Perdices -32.69794 -63.70634 P PPL AR 05 4615 253 America/Argentina/Cordoba 2011-04-19
-3847933 Las Parejas Las Parejas Las Parejas -32.68478 -61.51637 P PPL AR 21 11317 104 America/Argentina/Cordoba 2012-01-18
-3847971 Las Ovejas Las Ovejas Las Ovejas -36.98881 -70.74991 P PPL AR 15 1312 1264 America/Argentina/Salta 2012-01-18
-3848164 Las Lomitas Las Lomitas Las Lomitas -24.70955 -60.59303 P PPL AR 09 10354 134 America/Argentina/Cordoba 2012-02-02
-3848209 Las Lajitas Las Lajitas Las Lajitas -24.68333 -64.25 P PPL AR 17 9151 499 America/Argentina/Salta 2012-01-18
-3848216 Las Lajas Las Lajas Las Lajas -38.52322 -70.36744 P PPL AR 15 4673 718 America/Argentina/Salta 2012-01-18
-3848242 Las Junturas Las Junturas -31.83125 -63.45016 P PPL AR 05 1541 238 America/Argentina/Cordoba 2011-04-19
-3848343 Las Higueras Las Higueras -33.09231 -64.289 P PPL AR 05 5282 432 America/Argentina/Cordoba 2011-04-19
-3848353 Las Heras Las Heras Colonia Las Heras,Las Heras -46.54186 -68.93593 P PPL AR 20 9303 336 America/Argentina/Rio_Gallegos 2012-01-18
-3848687 Las Breñas Las Brenas Las Brenas,Las Breñas -27.08966 -61.08161 P PPL AR 03 26955 104 America/Argentina/Cordoba 2012-02-02
-3848863 Las Acequias Las Acequias Las Acequias,Las Acequitas,Las Arequias -33.28155 -63.9761 P PPL AR 05 2116 295 America/Argentina/Cordoba 2012-01-18
-3848950 La Rioja La Rioja La Riocha,La Rioja,La-Riokha,Ла-Риоха -29.41105 -66.85067 P PPLA AR 12 162620 502 America/Argentina/La_Rioja 2012-01-18
-3849140 La Quiaca La Quiaca La Quiaca -22.10236 -65.59299 P PPL AR 10 14751 3451 America/Argentina/Jujuy 2012-01-18
-3849196 La Puerta de San José La Puerta de San Jose -27.55 -67.01667 P PPL AR 02 1073 1434 America/Argentina/Catamarca 2010-06-01
-3849388 La Playosa La Playosa -32.10002 -63.03088 P PPL AR 05 2376 175 America/Argentina/Cordoba 2011-04-19
-3849557 La Para La Para -30.89416 -63.00107 P PPL AR 05 3021 93 America/Argentina/Cordoba 2011-04-19
-3849924 La Mendieta La Mendieta -24.31187 -64.96377 P PPL AR 10 3812 735 America/Argentina/Jujuy 2011-04-19
-3849980 La Maruja La Maruja La Maruja -35.6736 -64.93997 P PPL AR 11 1389 283 America/Argentina/Salta 2012-02-02
-3850005 Lamarque Lamarque Lamarque -39.42304 -65.70208 P PPL AR 16 7819 128 America/Argentina/Salta 2012-02-02
-3850888 Laguna Yema Laguna Yema Laguna Yema -24.25391 -61.24466 P PPL AR 09 2744 162 America/Argentina/Cordoba 2012-02-02
-3850920 Laguna Paiva Laguna Paiva Laguna Paiva,Reynaldo Cullen -31.30391 -60.65894 P PPL AR 21 12250 24 America/Argentina/Cordoba 2012-01-18
-3850929 Laguna Larga Laguna Larga -31.77652 -63.80104 P PPL AR 05 7137 308 America/Argentina/Cordoba 2011-04-19
-3851072 La Granja La Granja -31.00919 -64.26869 P PPL AR 05 2406 695 America/Argentina/Cordoba 2011-04-19
-3851100 Lago Puelo Lago Puelo Lago Puelo -42.08095 -71.61405 P PPL AR 04 4046 207 America/Argentina/Catamarca 2012-01-18
-3851181 La Francia La Francia -31.40675 -62.63396 P PPL AR 05 3503 112 America/Argentina/Cordoba 2011-04-19
-3851331 La Falda La Falda La Falda -31.08841 -64.48987 P PPL AR 05 15112 947 America/Argentina/Cordoba 2012-01-18
-3851798 La Cumbre La Cumbre -30.98201 -64.49139 P PPL AR 05 7235 1146 America/Argentina/Cordoba 2011-04-19
-3851985 La Cocha La Cocha -27.77729 -65.57035 P PPL AR 24 7066 445 America/Argentina/Tucuman 2011-04-19
-3851993 La Clotilde La Clotilde -27.13333 -60.66667 P PPL AR 03 3625 94 America/Argentina/Cordoba 2010-06-01
-3852125 La Cesira La Cesira -33.95115 -62.97238 P PPL AR 05 1140 133 America/Argentina/Cordoba 2011-04-19
-3852279 La Carlota La Carlota La Carlota -33.41993 -63.29769 P PPL AR 05 11490 147 America/Argentina/Cordoba 2012-01-18
-3852374 La Calera La Calera -31.34377 -64.33529 P PPL AR 05 24796 495 America/Argentina/Cordoba 2011-04-19
-3852468 Laboulaye Laboulaye Laboulaye -34.12662 -63.39119 P PPL AR 05 19908 143 America/Argentina/Cordoba 2012-02-02
-3852480 Laborde Laborde Laborde,Las Liebres -33.15319 -62.85661 P PPL AR 05 5492 127 America/Argentina/Cordoba 2012-01-18
-3853330 Justo Daract Justo Daract Justo Daract,Justo Daraet -33.8594 -65.18277 P PPL AR 19 9680 421 America/Argentina/San_Luis 2012-01-18
-3853331 Justiniano Posse Justiniano Posse J. Posse,Justiniano Posse -32.88411 -62.67788 P PPL AR 05 7406 120 America/Argentina/Cordoba 2012-01-18
-3853350 Junín de los Andes Junin de los Andes Junin de los Andes,Junín de los Andes -39.95043 -71.06936 P PPL AR 15 10592 779 America/Argentina/Salta 2012-01-18
-3853354 Junín Junin Junin,Junín -34.58382 -60.94332 P PPL AR 01 3853351 85007 83 America/Argentina/Buenos_Aires 2012-02-02
-3853479 José de San Martín Jose de San Martin Colonia San Martin,Colonia San Martín,General J. de San Martin,General J. de San Martín,Jose de San Martin,José de San Martín,San Martin,San Martín -44.05032 -70.46967 P PPL AR 04 1453 700 America/Argentina/Catamarca 2012-01-18
-3853491 Joaquín V. González Joaquin V. Gonzalez J.V. Gonzalez,J.V. González,Joaquin V. Gonzalez,Joaquín V. González -25.08333 -64.18333 P PPL AR AR 17 19185 400 America/Argentina/Salta 2012-01-18
-3853510 Jesús María Jesus Maria Jesus Maria,Jesús María -30.98153 -64.09424 P PPL AR 05 26825 533 America/Argentina/Cordoba 2012-01-18
-3853562 James Craik James Craik -32.1612 -63.46688 P PPL AR 05 4560 246 America/Argentina/Cordoba 2011-04-19
-3853592 Jacinto Arauz Jacinto Arauz J. Arauz,Jacinto Arauz -38.08606 -63.43169 P PPL AR 11 2773 162 America/Argentina/Salta 2012-01-18
-3853616 Italó Italo -34.79237 -63.78199 P PPL AR 05 1139 144 America/Argentina/Cordoba 2011-04-19
-3853643 Isla Verde Isla Verde -33.24104 -62.40297 P PPL AR 05 4245 121 America/Argentina/Cordoba 2011-04-19
-3853745 Intendente Alvear Intendente Alvear Intendente Alvear -35.23383 -63.59205 P PPL AR 11 6990 129 America/Argentina/Salta 2012-02-02
-3853748 Inriville Inriville -32.94424 -62.23028 P PPL AR 05 3778 108 America/Argentina/Cordoba 2011-04-19
-3853767 Ingenio La Esperanza Ingenio La Esperanza Ingenio La Esperanza,La Esperanza -24.22554 -64.83896 P PPL AR 10 5002 557 America/Argentina/Jujuy 2012-01-18
-3853782 Ingeniero Luis A. Huergo Ingeniero Luis A. Huergo Ingeniero Huergo,Ingeniero L.A. Huergo,Ingeniero Luis A. Huergo -39.08333 -67.23333 P PPL AR AR 16 6483 215 America/Argentina/Salta 2012-01-18
-3853783 Ingeniero Luiggi Ingeniero Luiggi Ingeniero Luiggi -35.38585 -64.46519 P PPL AR 11 4671 192 America/Argentina/Salta 2012-02-02
-3853786 Ingeniero Jacobacci Ingeniero Jacobacci Ingeniero Jacobacci -41.34269 -69.54479 P PPL AR 16 5785 901 America/Argentina/Salta 2012-01-18
-3853788 Ingeniero Guillermo N. Juárez Ingeniero Guillermo N. Juarez Guillermo N. Juarez,Guillermo N. Juárez,Ingeniero G.N. Juarez,Ingeniero G.N. Juárez,Ingeniero Guillermo N. Juarez,Ingeniero Guillermo N. Juárez,Ingeniero Juarez -23.9 -61.85 P PPL AR AR 09 10357 185 America/Argentina/Cordoba 2012-01-18
-3853923 Idiazábal Idiazabal Ideazabal,Idiazabal,Idiazábal -32.81411 -63.03252 P PPL AR 05 1567 150 America/Argentina/Cordoba 2012-01-18
-3853935 Icaño Icano Icano,Icaño -28.91934 -65.32817 P PPL AR 02 6857 358 America/Argentina/Catamarca 2012-02-02
-3853967 Humahuaca Humahuaca Humahuaca -23.20544 -65.35048 P PPL AR 10 3853966 11369 2970 America/Argentina/Jujuy 2012-01-18
-3853974 Huinca Renancó Huinca Renanco -34.84038 -64.3758 P PPL AR 05 8637 186 America/Argentina/Cordoba 2011-04-19
-3853981 Huillapima Huillapima Huillapima -28.72533 -65.9787 P PPL AR 02 7779 467 America/Argentina/Catamarca 2012-02-02
-3854008 Huerta Grande Huerta Grande -31.07524 -64.49063 P PPL AR 05 5630 997 America/Argentina/Cordoba 2011-04-19
-3854093 Huanchillas Huanchillas Huanchilla,Huanchillas -33.66652 -63.63701 P PPL AR 05 1020 161 America/Argentina/Cordoba 2012-01-18
-3854102 Hualfín Hualfin Hualfin,Hualfín -27.22896 -66.83131 P PPL AR 02 2304 1842 America/Argentina/Catamarca 2012-01-18
-3854153 Hoyo de Epuyén Hoyo de Epuyen -42.07189 -71.50811 P PPL AR 04 2498 231 America/Argentina/Catamarca 2011-04-19
-3854318 Hersilia Hersilia -30.00447 -61.8408 P PPL AR 21 3000 93 America/Argentina/Cordoba 2011-04-19
-3854331 Hernando Hernando Hernando -32.42657 -63.73333 P PPL AR 05 10486 279 America/Argentina/Cordoba 2012-01-18
-3854334 Hernández Hernandez -32.3373 -60.0216 P PPL AR 08 1801 100 America/Argentina/Cordoba 2011-04-19
-3854336 Hermoso Campo Hermoso Campo Hermoso Campo -27.60816 -61.34441 P PPL AR 03 7435 86 America/Argentina/Cordoba 2012-02-02
-3854493 Guatraché Guatrache Guatrache,Guatraché -37.66776 -63.53022 P PPL AR 11 3854492 5271 174 America/Argentina/Salta 2012-02-02
-3854494 Guatimozín Guatimozin -33.4615 -62.43844 P PPL AR 05 2524 127 America/Argentina/Cordoba 2011-04-19
-3854724 Graneros Graneros -27.64934 -65.4383 P PPL AR 24 3854723 5263 326 America/Argentina/Tucuman 2011-04-19
-3854895 Granadero Baigorria Granadero Baigorria Granadero Baigorria,Granadero Baigorrio,Paganini -32.85683 -60.71754 P PPL AR 21 32427 32 America/Argentina/Cordoba 2012-01-18
-3854985 Gobernador Gálvez Gobernador Galvez Galvez,Gobernador Galvez,Gobernador Gálvez,Villa Gobernador Galvez,Villa Gobernador Gálvez -33.03016 -60.64045 P PPL AR 21 74650 28 America/Argentina/Cordoba 2012-01-18
-3854988 Gobernador Costa Gobernador Costa Gobernador Costa,Gobernor Costa -44.04992 -70.59798 P PPL AR 04 2185 721 America/Argentina/Catamarca 2012-01-18
-3855056 General San Martín General San Martin General San Martin,General San Martín,Jose de San Martin,José de San Martín,Villa Alba -37.97904 -63.60449 P PPL AR 11 2846 165 America/Argentina/Salta 2012-01-18
-3855065 General Roca General Roca Cheneral Roka,Fuerte General Roca,General Roca,Kheneral',Хенераль -39.03333 -67.58333 P PPL AR 16 3855061 73212 237 America/Argentina/Salta 2012-01-18
-3855066 General Roca General Roca -32.73196 -61.91599 P PPL AR 05 2597 90 America/Argentina/Cordoba 2011-04-19
-3855067 General Ramírez General Ramirez General Ramirez,General Ramírez,Ramirez,Ramírez,Villa Ramirez,Villa Ramírez -32.17601 -60.20079 P PPL AR 08 8614 117 America/Argentina/Cordoba 2012-01-18
-3855074 General Pinedo General Pinedo General Pinedo -27.31667 -61.28333 P PPL AR 03 15741 95 America/Argentina/Cordoba 2012-01-18
-3855075 General Pico General Pico General Pico,Pico -35.65662 -63.75682 P PPL AR 11 57029 143 America/Argentina/Salta 2012-01-18
-3855092 General Manuel J. Campos General Manuel J. Campos General M.J. Campos,General Manuel Campos,General Manuel J. Campos -37.46025 -63.58537 P PPL AR 11 1016 159 America/Argentina/Salta 2012-01-18
-3855098 General Levalle General Levalle -34.01472 -63.92413 P PPL AR 05 5492 180 America/Argentina/Cordoba 2011-04-19
-3855114 General Fernández Oro General Fernandez Oro General Fernandez Oro,General Fernández Oro -38.95297 -67.92489 P PPL AR 16 6813 258 America/Argentina/Salta 2012-02-02
-3855115 General Enrique Mosconi General Enrique Mosconi -23.21667 -62.3 P PPL AR 09 1279 208 America/Argentina/Cordoba 2010-05-31
-3855116 General Enrique Mosconi General Enrique Mosconi Ciro Echesortu,General Enrique Mosconi,General Mosconi,Vespucio -22.59588 -63.81255 P PPL AR 17 19811 481 America/Argentina/Salta 2012-01-18
-3855117 General Enrique Godoy General Enrique Godoy General E. Godoy,General Enrique Godoy,Godoy -39.08333 -67.15 P PPL AR AR 16 3823 209 America/Argentina/Salta 2012-01-18
-3855121 General Conesa General Conesa Conesa,General Conesa -40.1 -64.43333 P PPL AR AR 16 5595 58 America/Argentina/Salta 2012-01-18
-3855124 General Cabrera General Cabrera Cabrera,General Cabrera -32.81313 -63.87243 P PPL AR 05 10351 298 America/Argentina/Cordoba 2012-01-18
-3855131 General Baldissera General Baldissera Colonia General Baldissera,General Baldissera -33.12246 -62.3063 P PPL AR 05 2133 112 America/Argentina/Cordoba 2012-01-18
-3855143 General Acha General Acha General Acha -37.37698 -64.60431 P PPL AR 11 12536 230 America/Argentina/Salta 2012-02-02
-3855237 Gancedo Gancedo Gancedo -27.49038 -61.67571 P PPL AR 03 3737 105 America/Argentina/Cordoba 2012-02-02
-3855244 Gálvez Galvez Galvez,Gálvez -32.02927 -61.22103 P PPL AR 21 18374 57 America/Argentina/Cordoba 2012-02-02
-3855284 Gaimán Gaiman Gaiman,Gaimán -43.2897 -65.4929 P PPL AR 04 5753 21 America/Argentina/Catamarca 2012-01-18
-3855302 Funes Funes Funes -32.91568 -60.80995 P PPL AR 21 14750 36 America/Argentina/Cordoba 2012-02-02
-3855368 Fray Luis Beltrán Fray Luis Beltran Fray L. Beltran,Fray L. Beltrán,Fray Luis Beltran,Fray Luis Beltrán,Luis Beltran,Luis Beltrán -39.31667 -65.76667 P PPL AR AR 16 6401 135 America/Argentina/Salta 2012-01-18
-3855370 Fray Luis A. Beltrán Fray Luis A. Beltran Borghi,Fray Luis A. Beltran,Fray Luis A. Beltrán,Fray Luis Beltran,Fray Luís Beltrán -32.79122 -60.72819 P PPL AR 21 14390 30 America/Argentina/Cordoba 2012-01-18
-3855394 Fraile Pintado Fraile Pintado Fraile Pintado -23.94079 -64.79943 P PPL AR 10 13682 463 America/Argentina/Jujuy 2012-02-02
-3855554 Firmat Firmat Firmat -33.45937 -61.4832 P PPL AR 21 18294 109 America/Argentina/Cordoba 2012-02-02
-3855588 Fiambalá Fiambala Fiambala,Fiambalá -27.68705 -67.6149 P PPL AR 02 8061 1521 America/Argentina/Catamarca 2012-02-02
-3855666 Famaillá Famailla Famailla,Famaillá -27.05413 -65.40329 P PPL AR 24 3855665 30951 368 America/Argentina/Tucuman 2012-01-18
-3855719 Etruria Etruria -32.94008 -63.2466 P PPL AR 05 3788 163 America/Argentina/Cordoba 2011-04-19
-3855763 Estanislao del Campo Estanislao del Campo Estancia del Campo,Estanislao del Campo -25.05504 -60.09218 P PPL AR 09 4055 115 America/Argentina/Cordoba 2012-01-18
-3855974 Esquel Esquel Esquel -42.9 -71.31667 P PPL AR 04 28486 624 America/Argentina/Catamarca 2010-08-10
-3856022 Esperanza Esperanza Esperanza -31.4488 -60.93173 P PPL AR 21 35885 40 America/Argentina/Cordoba 2012-02-02
-3856231 Embarcación Embarcacion Embarcacion,Embarcación -23.20898 -64.09605 P PPL AR 17 23961 291 America/Argentina/Salta 2012-02-02
-3856235 Embalse Embalse Embalse -32.18 -64.41809 P PPL AR 05 3863430 15900 623 561 America/Argentina/Cordoba 2012-01-18
-3856236 Embajador Martini Embajador Martini Embajador Martini -35.38633 -64.28092 P PPL AR 11 1298 174 America/Argentina/Salta 2012-01-18
-3856436 El Trébol El Trebol El Trebol,El Trébol -32.2008 -61.7014 P PPL AR 21 10871 96 America/Argentina/Cordoba 2012-01-18
-3856496 El Tío El Tio -31.38357 -62.82938 P PPL AR 05 1510 126 America/Argentina/Cordoba 2011-04-19
-3856776 El Rodeo El Rodeo El Rodeo,Rodeo -28.21518 -65.8742 P PPL AR 02 1083 1296 America/Argentina/Catamarca 2012-01-18
-3857012 El Quebrachal El Quebrachal El Quebrachal -25.28333 -64.06667 P PPL AR 17 10243 355 America/Argentina/Salta 2012-02-02
-3857756 El Maitén El Maiten El Maiten,El Maitén,Estancia El Maiten,Estancia El Maitén -42.04924 -71.16693 P PPL AR 07 3782 704 America/Argentina/Catamarca 2012-01-18
-3857879 El Huecú El Huecu El Huecu,El Huecú -37.64522 -70.58006 P PPL AR 15 1399 1224 America/Argentina/Salta 2012-02-02
-3857887 El Hoyo El Hoyo El Hoyo,Hoyo -27.02872 -63.23197 P PPL AR 22 2162 176 America/Argentina/Cordoba 2012-01-18
-3857974 El Galpón El Galpon El Galpon,El Galpón -25.38069 -64.65259 P PPL AR 17 8357 527 America/Argentina/Salta 2012-02-02
-3858088 Elena Elena -32.57205 -64.39481 P PPL AR 05 2815 635 America/Argentina/Cordoba 2011-04-19
-3858553 El Carril El Carril Carril,El Carril -25.0741 -65.49174 P PPL AR 17 9780 1168 America/Argentina/Salta 2012-01-18
-3858677 El Calafate El Calafate Calafate,Caserio de Calafates,Caserío de Calafates,Ehl' Kalafate,El Calafate,Lago Argentino,Pueblo Calafate,karafate,Эль Калафате,カラファテ -50.34075 -72.27682 P PPL AR AR 20 8000 205 America/Argentina/Rio_Gallegos 2011-03-01
-3858765 El Bolsón El Bolson El Bolson,El Bolsón -41.96667 -71.51667 P PPL AR 16 15537 378 America/Argentina/Salta 2012-01-18
-3858909 El Arañado El Aranado -31.7412 -62.89322 P PPL AR 05 1395 150 America/Argentina/Cordoba 2011-04-19
-3859000 El Aguilar El Aguilar Aguilar,El Aguilar -23.22582 -65.69213 P PPL AR 10 3655 4040 America/Argentina/Jujuy 2012-01-18
-3859036 Eduardo Castex Eduardo Castex Castex,E. Castex,Eduardo Castex -35.91501 -64.29448 P PPL AR 11 9861 193 America/Argentina/Salta 2012-01-18
-3859278 Dolavón Dolavon Colonia Dolavon,Colonia Dolavón,Dolavon,Dolavón -43.3 -65.7 P PPL AR 04 2929 60 America/Argentina/Catamarca 2010-08-10
-3859296 Doblas Doblas -37.14967 -64.01183 P PPL AR 11 1860 161 America/Argentina/Salta 2011-04-19
-3859384 Diamante Diamante Diamante -32.06641 -60.63836 P PPL AR 08 19545 71 America/Argentina/Cordoba 2012-02-02
-3859409 Devoto Devoto -31.40431 -62.30634 P PPL AR 05 5597 112 America/Argentina/Cordoba 2011-04-19
-3859429 Despeñaderos Despenaderos -31.81626 -64.28989 P PPL AR 05 5645 451 America/Argentina/Cordoba 2011-04-19
-3859500 Del Campillo Del Campillo -34.37659 -64.49504 P PPL AR 05 3155 228 America/Argentina/Cordoba 2011-04-19
-3859512 Deán Funes Dean Funes Dean Funes,Deán Funes -30.42036 -64.34984 P PPL AR 05 20164 691 America/Argentina/Cordoba 2012-01-18
-3859521 Darwin Darwin -39.2 -65.76667 P PPL AR 16 1052 137 America/Argentina/Salta 2010-06-01
-3859535 Dalmacio Vélez Sársfield Dalmacio Velez Sarsfield D. Velez,D. Velez Sarsfield,D. Vélez,D. Vélez Sársfield,Dalmacio Velez,Dalmacio Velez Sarsfield,Dalmacio Vélez,Dalmacio Vélez Sársfield -32.61072 -63.58038 P PPL AR 05 1344 235 America/Argentina/Cordoba 2012-01-18
-3859552 Cutral-Có Cutral-Co Cutrai-Co,Cutrai-Có,Cutral-Co,Cutral-Có,Eva Peron,Eva Perón -38.94688 -69.20889 P PPL AR 15 47380 621 America/Argentina/Salta 2012-01-18
-3859828 Cruz del Eje Cruz del Eje Cruz del Eje -30.72644 -64.80387 P PPL AR 05 3859827 28166 465 America/Argentina/Cordoba 2012-01-18
-3859839 Cruz Alta Cruz Alta -33.00887 -61.80746 P PPL AR 05 6862 78 America/Argentina/Cordoba 2011-04-19
-3859904 Crespo Crespo Crespo -32.02873 -60.30658 P PPL AR 08 18296 109 America/Argentina/Cordoba 2012-01-18
-3859951 Costa Sacate Costa Sacate -31.6477 -63.75935 P PPL AR 05 1288 308 America/Argentina/Cordoba 2011-04-19
-3859965 Cosquín Cosquin Cosquin,Cosquín -31.24508 -64.46563 P PPL AR 05 19070 707 America/Argentina/Cordoba 2012-01-18
-3859974 Corzuela Corzuela Corzuela -26.95374 -60.96928 P PPL AR 03 10470 106 America/Argentina/Cordoba 2012-02-02
-3860079 Corralito Corralito -32.02462 -64.19216 P PPL AR 05 1873 473 America/Argentina/Cordoba 2011-04-19
-3860129 Corral de Bustos Corral de Bustos Corral de Bustos -33.28205 -62.18463 P PPL AR 05 9882 118 America/Argentina/Cordoba 2012-02-02
-3860164 Coronel Suárez Coronel Suarez Coronel Suarez,Coronel Suárez,Koronel'-Suarez,Коронель-Суарез -37.45467 -61.93343 P PPL AR 01 3860163 27000 239 America/Argentina/Buenos_Aires 2012-01-18
-3860178 Coronel Moldes Coronel Moldes Coronel Moldes,Moldes -33.6227 -64.59711 P PPL AR 05 8104 365 America/Argentina/Cordoba 2012-01-18
-3860197 Coronel Du Graty Coronel Du Graty Coronel Du Graty -27.68038 -60.91462 P PPL AR 03 9140 82 America/Argentina/Cordoba 2012-01-18
-3860199 Coronel Dorrego Coronel Dorrego Coronel Dorrego,Dorrego -38.71867 -61.28732 P PPL AR 01 3860198 11644 112 America/Argentina/Buenos_Aires 2012-03-02
-3860206 Coronel Belisle Coronel Belisle -39.18333 -65.98333 P PPL AR 16 1841 156 America/Argentina/Salta 2010-06-01
-3860208 Coronel Baigorria Coronel Baigorria -32.8477 -64.36107 P PPL AR 05 1334 532 America/Argentina/Cordoba 2011-04-19
-3860217 Coronda Coronda Cordona,Coronda -31.97263 -60.91982 P PPL AR 21 16975 19 America/Argentina/Cordoba 2012-01-18
-3860259 Córdoba Cordoba Cordoba,Còrdoba,Córdoba,Kordoba,Kordobo,Kordova,ke er duo wa,korudoba,qrtbt,qwrdwbh,Кордоба,Кордова,קורדובה,قرطبة,コルドバ,科尔多瓦 -31.4135 -64.18105 P PPLA AR 05 3862744 1428214 395 America/Argentina/Cordoba 2012-01-18
-3860319 Contraalmirante Cordero Contraalmirante Cordero Contraalmirante Cordero,Contralmirante Cordero -38.72423 -68.15284 P PPL AR 16 2782 303 America/Argentina/Salta 2012-01-18
-3860419 Concepción del Bermejo Concepcion del Bermejo Concepcion del Bermejo,Concepción del Bermejo -26.59926 -60.94617 P PPL AR 03 5830 113 America/Argentina/Cordoba 2012-02-02
-3860431 Concarán Concaran Concaran,Concarán,Concoran,Dolores,Villa Dolores -32.56009 -65.2427 P PPL AR 19 4530 673 America/Argentina/San_Luis 2012-01-18
-3860443 Comodoro Rivadavia Comodoro Rivadavia -45.86667 -67.5 P PPL AR 04 140850 54 America/Argentina/Catamarca 2010-01-18
-3860466 Comandante Luis Piedra Buena Comandante Luis Piedra Buena Casa de Piedra,Comandante L. Piedrabuena,Comandante Luis Piedra Buena,El Paso,Piedra Buena -49.98513 -68.91467 P PPL AR 20 4176 12 America/Argentina/Rio_Gallegos 2012-01-18
-3860475 Comallo Comallo Comallo -41.02993 -70.26784 P PPL AR 16 1306 772 America/Argentina/Salta 2012-01-18
-3860730 Colonia San Bartolomé Colonia San Bartolome Colonia San Bartolome,Colonia San Bartolomé,San Bartolome,San Bartolomé -31.5278 -62.72436 P PPL AR 05 1104 125 America/Argentina/Cordoba 2012-01-18
-3860757 Colonia La Tordilla Colonia La Tordilla -31.23746 -63.06134 P PPL AR 05 1138 141 America/Argentina/Cordoba 2011-04-19
-3860791 Colonia Dora Colonia Dora Colonia Dora -28.6 -62.95 P PPL AR 22 2406 107 America/Argentina/Cordoba 2012-02-02
-3860811 Colonia Barón Colonia Baron Colonia Baron,Colonia Barón -36.15152 -63.85404 P PPL AR 11 3317 154 America/Argentina/Salta 2012-02-02
-3861002 Clodomira Clodomira Clodomira -27.5744 -64.13108 P PPL AR 22 9043 180 America/Argentina/Cordoba 2012-02-02
-3861056 Cipolletti Cipolletti Chipolletti,Cipoletti,Cipolleti,Cipolletti,Чиполлетти -38.93392 -67.99032 P PPL AR 16 75078 267 America/Argentina/Salta 2012-01-18
-3861059 Cintra Cintra -32.30673 -62.65214 P PPL AR 05 1054 130 America/Argentina/Cordoba 2011-04-19
-3861061 Cinco Saltos Cinco Saltos Cinco Saltos -38.82224 -68.06293 P PPL AR 16 19819 288 America/Argentina/Salta 2012-01-18
-3861262 Chos Malal Chos Malal Chos Malal -37.37809 -70.27085 P PPL AR 15 11721 858 America/Argentina/Salta 2012-01-18
-3861297 Chorotis Chorotis Chorotis -27.91578 -61.39982 P PPL AR 03 1445 76 America/Argentina/Cordoba 2012-01-18
-3861329 Choele Choel Choele Choel C. Choel,Choele Choel -39.26667 -65.68333 P PPL AR AR 16 9791 131 America/Argentina/Salta 2012-01-18
-3861344 Chivilcoy Chivilcoy Chivilcoy -34.89566 -60.01667 P PPL AR 01 3435406 54514 60 America/Argentina/Buenos_Aires 2012-01-18
-3861405 Chimpay Chimpay Chimpay -39.16482 -66.14236 P PPL AR 16 3905 158 America/Argentina/Salta 2012-02-02
-3861416 Chimbas Chimbas Chimbas -31.48333 -68.53333 P PPL AR 18 3861415 73829 642 America/Argentina/San_Juan 2012-02-02
-3861445 Chilecito Chilecito Chilecito -29.16195 -67.4974 P PPL AR 12 3861443 42248 1125 America/Argentina/La_Rioja 2012-01-18
-3861494 Chicoana Chicoana Chicoana -25.10088 -65.5331 P PPL AR 17 3861493 8468 1238 America/Argentina/Salta 2012-01-18
-3861528 Chichinales Chichinales Chichinales,Chinchinales -39.11505 -66.92714 P PPL AR 16 4060 197 America/Argentina/Salta 2012-01-18
-3861595 Chazón Chazon -33.07872 -63.27657 P PPL AR 05 1010 164 America/Argentina/Cordoba 2011-04-19
-3861666 Charras Charras -33.024 -64.04719 P PPL AR 05 1001 350 America/Argentina/Cordoba 2011-04-19
-3861678 Charata Charata Charata,Charatas -27.21438 -61.18795 P PPL AR 03 27813 98 America/Argentina/Cordoba 2012-01-18
-3861824 Chamical Chamical Chamical,Gobernador Gordillo -30.36002 -66.31399 P PPL AR 12 13383 473 America/Argentina/La_Rioja 2012-01-18
-3861953 Chacabuco Chacabuco Chacabuco,Chakabuko,Чакабуко -34.64167 -60.47389 P PPL AR 01 3861944 34587 73 America/Argentina/Buenos_Aires 2012-01-18
-3861966 Cervantes Cervantes Cervantes -39.05 -67.38333 P PPL AR 16 5173 222 America/Argentina/Salta 2012-02-02
-3862100 Ceres Ceres Ceres -29.881 -61.94504 P PPL AR 21 13063 90 America/Argentina/Cordoba 2012-02-02
-3862144 Centenario Centenario Centenario,Colonia Centenario -38.80433 -68.13998 P PPL AR 15 28956 292 America/Argentina/Salta 2012-01-18
-3862222 Cavanagh Cavanagh -33.47606 -62.33888 P PPL AR 05 1150 123 America/Argentina/Cordoba 2011-04-19
-3862240 Caucete Caucete Caucete,Villa Colon,Villa Colón -31.65179 -68.28105 P PPL AR 18 33609 578 America/Argentina/San_Juan 2012-01-18
-3862251 Catriló Catrilo Catrilo,Catriló -36.40598 -63.42168 P PPL AR 11 3743 129 America/Argentina/Salta 2012-02-02
-3862254 Catriel Catriel Catriel -37.87907 -67.7956 P PPL AR 16 15169 323 America/Argentina/Salta 2012-01-18
-3862293 Castro Barros Castro Barros Castro Barros -30.57952 -65.72696 P PPL AR 12 4322 236 America/Argentina/La_Rioja 2012-01-18
-3862320 Castelli Castelli Castelli,Colonia Castelli,J.J. Castelli,Juan Jose Castelli,Juan José Castelli -25.94679 -60.61947 P PPL AR 03 36588 113 America/Argentina/Cordoba 2012-01-18
-3862351 Casilda Casilda Casilda -33.04417 -61.16806 P PPL AR 21 32002 79 America/Argentina/Cordoba 2012-01-18
-3862515 Carrilobo Carrilobo -31.87296 -63.11716 P PPL AR 05 1522 185 America/Argentina/Cordoba 2011-04-19
-3862575 Carnerillo Carnerillo -32.9137 -64.02175 P PPL AR 05 1575 322 America/Argentina/Cordoba 2011-04-19
-3862655 Carcarañá Carcarana Carcarana,Carcarañá -32.85679 -61.15331 P PPL AR 21 15619 59 America/Argentina/Cordoba 2012-02-02
-3862738 Capitán Bermúdez Capitan Bermudez Capitan Bermudez,Capitán Bermúdez,Juan Ortiz,Juan Ortíz,Villa Cassini -32.82262 -60.71852 P PPL AR 21 27060 35 America/Argentina/Cordoba 2012-01-18
-3862761 Capilla del Monte Capilla del Monte Capilla del Monte -30.86088 -64.52515 P PPL AR 05 9085 984 America/Argentina/Cordoba 2012-01-18
-3862772 Capayán Capayan -28.76105 -66.05024 P PPL AR 02 3862771 6358 445 America/Argentina/Catamarca 2011-04-19
-3862832 Candelaria Candelaria Candelaria -32.06036 -65.82477 P PPL AR 19 2269 410 America/Argentina/San_Luis 2012-02-02
-3862883 Canals Canals -33.56542 -62.88927 P PPL AR 05 8343 127 America/Argentina/Cordoba 2011-04-19
-3862971 Cañada de Luque Canada de Luque -30.73341 -63.72376 P PPL AR 05 1054 239 America/Argentina/Cordoba 2011-04-19
-3862981 Cañada de Gómez Canada de Gomez Canada de Gomez,Cañada de Gómez,Ciudad Evita,Ciudad de Gomez,Ciudad de Gómez,Kanada-de-Gomes,Канада-де-Гомес -32.81636 -61.39493 P PPL AR 21 36000 93 America/Argentina/Cordoba 2012-01-18
-3863050 Campo Quijano Campo Quijano Campo Quijano,Quijana,Quijano -24.90982 -65.63656 P PPL AR 17 5000 1501 America/Argentina/Salta 2012-01-18
-3863095 Campo Largo Campo Largo Campo Largo -26.80077 -60.84215 P PPL AR 03 10743 106 America/Argentina/Cordoba 2012-02-02
-3863136 Campo Gallo Campo Gallo Campo Gallo -26.58333 -62.85 P PPL AR 22 5455 194 America/Argentina/Cordoba 2012-02-02
-3863314 Camilo Aldao Camilo Aldao Aldao,C. Aldao,Caldao,Camilo Aldao -33.12745 -62.09453 P PPL AR 05 4895 113 America/Argentina/Cordoba 2012-01-18
-3863327 Camarones Camarones Camarones -44.79709 -65.70994 P PPL AR 04 1079 32 America/Argentina/Catamarca 2012-02-02
-3863362 Calingasta Calingasta Calingasta -31.33084 -69.40783 P PPL AR 18 8176 1409 America/Argentina/San_Juan 2012-02-02
-3863366 Calilegua Calilegua Calilegua -23.77368 -64.77002 P PPL AR 10 5174 468 America/Argentina/Jujuy 2012-02-02
-3863377 Caleufú Caleufu -35.59559 -64.55778 P PPL AR 11 2396 208 America/Argentina/Salta 2011-04-19
-3863379 Caleta Olivia Caleta Olivia Caleta Olivia -46.43929 -67.52814 P PPL AR 20 36077 17 America/Argentina/Rio_Gallegos 2012-02-02
-3863419 Calchaquí Calchaqui Calchaqui,Calchaquí,Luis d'Abreu,Luis d’Abreu -29.88767 -60.28696 P PPL AR 21 10221 59 America/Argentina/Cordoba 2012-01-18
-3863491 Caimancito Caimancito Caimancito -23.7407 -64.5937 P PPL AR 10 5403 375 America/Argentina/Jujuy 2012-02-02
-3863503 Cafayate Cafayate Cafayate,Cafayete,Kafajat,Кафайат -26.07295 -65.97614 P PPL AR AR 17 3863502 11785 1623 America/Argentina/Salta 2010-09-03
-3863557 Cachí Cachi Cachi,Cachí -25.12033 -66.16519 P PPL AR 17 3863554 2189 2355 America/Argentina/Salta 2012-02-02
-3863663 Buta Ranquil Buta Ranquil Buta Ranquil -37.05222 -69.87713 P PPL AR 15 2221 1152 America/Argentina/Salta 2012-02-02
-3863701 Burruyacú Burruyacu Burruyaco,Burruyacu,Burruyacú -26.49918 -64.74206 P PPL AR 24 3863700 2037 526 America/Argentina/Tucuman 2012-01-18
-3863814 Buena Esperanza Buena Esperanza B. Esperanza,Buena Esperanza -34.75647 -65.2538 P PPL AR 19 2531 323 America/Argentina/San_Luis 2012-01-18
-3863821 Buchardo Buchardo -34.72263 -63.5092 P PPL AR 05 1756 133 America/Argentina/Cordoba 2011-04-19
-3863833 Brinkmann Brinkmann Brinkman,Brinkmann -30.8659 -62.03742 P PPL AR 05 8237 105 America/Argentina/Cordoba 2012-01-18
-3864274 Berrotarán Berrotaran -32.451 -64.38867 P PPL AR 05 6446 631 America/Argentina/Cordoba 2011-04-19
-3864283 Bernasconi Bernasconi -37.90459 -63.7424 P PPL AR 11 1781 164 America/Argentina/Salta 2011-04-19
-3864285 Bernardo Larroudé Bernardo Larroude B. Larroude,B. Larroudé,Benjamin Larroude,Bernardo Larroude,Bernardo Larroudé,Larroude -35.02449 -63.58253 P PPL AR 11 1619 127 America/Argentina/Salta 2012-01-18
-3864328 Beltrán Beltran Beltran,Beltrán -27.82913 -64.06098 P PPL AR 22 5321 172 America/Argentina/Cordoba 2012-01-18
-3864331 Bell Ville Bell Ville Bell Ville -32.62591 -62.68873 P PPL AR 05 35105 132 America/Argentina/Cordoba 2012-02-02
-3864375 Bella Vista Bella Vista Bella Vista -27.03084 -65.30315 P PPL AR 24 15126 365 America/Argentina/Tucuman 2012-02-02
-3864729 Barrancas Barrancas Barrancas -36.81667 -69.91667 P PPL AR 15 1098 1123 America/Argentina/Salta 2012-01-18
-3864888 Balnearia Balnearia -31.0088 -62.66733 P PPL AR 05 5585 86 America/Argentina/Cordoba 2011-04-19
-3865086 Bahía Blanca Bahia Blanca Bahia Blanca,Bahija Blanka,Bahía Blanca,Bajja-Blanka,bahya blanka,Байя-Бланка,باهيا بلانكا -38.7196 -62.27243 P PPL AR 01 3865084 276546 24 America/Argentina/Buenos_Aires 2012-01-18
-3865186 Aviá Terai Avia Terai Avia Terai,Aviá Terai -26.68532 -60.7292 P PPL AR 03 6821 103 America/Argentina/Cordoba 2012-02-02
-3865375 Arrufó Arrufo Arrufo,Arrufó,Arruto,Arrutó -30.23281 -61.72862 P PPL AR 21 2190 94 America/Argentina/Cordoba 2012-01-18
-3865385 Arroyo Seco Arroyo Seco Aguirre,Arroyo Seco,Posta de San Martin,Posta de San Martín -33.15489 -60.50863 P PPL AR 21 20008 29 America/Argentina/Cordoba 2012-01-18
-3865413 Arroyo Cabral Arroyo Cabral -32.49119 -63.40126 P PPL AR 05 2727 223 America/Argentina/Cordoba 2011-04-19
-3865424 Arroyito Arroyito Arroyito -31.42022 -63.05002 P PPL AR 05 19577 154 America/Argentina/Cordoba 2012-02-02
-3865449 Armstrong Armstrong Armstrong -32.78215 -61.60222 P PPL AR 21 10388 122 America/Argentina/Cordoba 2012-01-18
-3865474 Arias Arias -33.64411 -62.40272 P PPL AR 05 6928 127 America/Argentina/Cordoba 2011-04-19
-3865579 Arauco Arauco Arauca,Arauco -28.5805 -66.79438 P PPL AR 12 3865578 13720 820 America/Argentina/La_Rioja 2012-01-18
-3865580 Arata Arata -35.63895 -64.35621 P PPL AR 11 1202 217 America/Argentina/Salta 2011-04-19
-3865585 Aranguren Aranguren Aranguren -32.24252 -60.16107 P PPL AR 08 1581 114 America/Argentina/Cordoba 2012-01-18
-3865605 Apolinario Saravia Apolinario Saravia Apolinario Saravia -24.43276 -63.99535 P PPL AR 17 8595 361 America/Argentina/Salta 2012-02-02
-3865742 Anguil Anguil Anguil -36.52567 -64.01025 P PPL AR 11 1977 159 America/Argentina/Salta 2012-02-02
-3865776 Añelo Anelo Anelo,Añelo -38.35441 -68.7884 P PPL AR 15 3865775 1742 403 America/Argentina/Salta 2012-01-18
-3865802 Andalgalá Andalgala Andalgala,Andalgalá -27.58195 -66.31646 P PPL AR 02 3865801 14068 1080 America/Argentina/Catamarca 2012-01-18
-3865803 Andacollo Andacollo Andacollo -37.17945 -70.66912 P PPL AR 15 2627 1096 America/Argentina/Salta 2012-01-18
-3865830 Ancasti Ancasti Ancasti -28.81247 -65.50145 P PPL AR 02 3865829 3082 883 America/Argentina/Catamarca 2012-02-02
-3865840 Añatuya Anatuya Anatuya,Añatuya,Unatuya,Uñatuya -28.46064 -62.83472 P PPL AR 22 20261 111 America/Argentina/Cordoba 2012-01-18
-3865888 Florentino Ameghino Florentino Ameghino -34.84405 -62.46701 P PPLA2 AR 01 0 116 America/Argentina/Buenos_Aires 2011-11-18
-3866000 Aluminé Alumine Alumine,Aluminé,Rucachoroi -39.23686 -70.9197 P PPL AR 15 3865999 3720 937 America/Argentina/Salta 2012-01-18
-3866028 Altos de Chipión Altos de Chipion -30.9559 -62.33727 P PPL AR 05 1512 109 America/Argentina/Cordoba 2011-04-19
-3866035 Alto Río Senguer Alto Rio Senguer Alto Rio Senguer,Alto Rio Senguerr,Alto Río Senguer,Alto Río Senguerr,Brazo Norte -45.04105 -70.81982 P PPL AR 04 1700 697 America/Argentina/Catamarca 2012-01-18
-3866161 Alta Italia Alta Italia -35.3335 -64.11496 P PPL AR 11 1481 167 America/Argentina/Salta 2011-04-19
-3866163 Alta Gracia Alta Gracia Al'ta-Gracija,Alta Gracia,Альта-Грация -31.65292 -64.42826 P PPL AR 05 40384 556 America/Argentina/Cordoba 2012-01-18
-3866214 Alpachiri Alpachiri Alpachiri -37.37704 -63.77445 P PPL AR 11 2138 161 America/Argentina/Salta 2012-02-02
-3866237 Almafuerte Almafuerte -32.19296 -64.25559 P PPL AR 05 10534 430 America/Argentina/Cordoba 2011-04-19
-3866242 Allen Allen Allen -38.97736 -67.82714 P PPL AR 16 26083 258 America/Argentina/Salta 2012-02-02
-3866353 Alejo Ledesma Alejo Ledesma A. Ledesma,Alejo Ledesma,Ledesma -33.60643 -62.62304 P PPL AR 05 3310 132 America/Argentina/Cordoba 2012-01-18
-3866356 Alejandro Roca Alejandro Roca Alejandro,Alejandro Roca -33.35369 -63.71849 P PPL AR 05 4724 216 America/Argentina/Cordoba 2012-01-18
-3866367 Alderetes Alderetes Alderetes -26.81667 -65.13333 P PPL AR 24 38466 454 America/Argentina/Tucuman 2012-01-18
-3866425 Albardón Albardon Albardon,Albardón -31.43722 -68.52556 P PPL AR 18 3866424 20413 641 America/Argentina/San_Juan 2012-02-02
-3866496 Aguilares Aguilares Aguilares -27.4338 -65.61427 P PPL AR 24 32494 375 America/Argentina/Tucuman 2012-01-18
-3866667 Agua de Oro Agua de Oro -31.06661 -64.30017 P PPL AR 05 1553 791 America/Argentina/Cordoba 2011-04-19
-3866935 Adelia María Adelia Maria -33.63152 -64.02097 P PPL AR 05 6434 266 America/Argentina/Cordoba 2011-04-19
-3866959 Achiras Achiras -33.17538 -64.99331 P PPL AR 05 2173 832 America/Argentina/Cordoba 2011-04-19
-3867009 Abra Pampa Abra Pampa Abra Pampa -22.72049 -65.69697 P PPL AR 10 9425 3487 America/Argentina/Jujuy 2012-02-02
-6693230 Villa Santa Rita Villa Santa Rita -34.61082 -58.481 P PPLX AR 07 34000 25 America/Argentina/Buenos_Aires 2010-11-28
-6942842 Bella Italia Bella Italia -31.27268 -61.42396 P PPL AR 21 1100 0 77 America/Argentina/Cordoba 2009-07-02
-7116865 Cariló Carilo Karilo,Карило -37.16524 -56.89133 P PPL AR 01 1553 6 America/Argentina/Buenos_Aires 2012-03-25
-7116866 Villa Mercedes Villa Mercedes -33.67571 -65.45783 P PPL AR 19 96781 516 America/Argentina/San_Luis 2010-05-31
-7284819 La Punta La Punta -33.18368 -66.3127 P PPLL AR 19 15000 700 814 America/Argentina/San_Luis 2010-03-31
-7304381 Villa Berna Villa Berna -31.90321 -64.75651 P PPL AR 05 5000 1500 1373 America/Argentina/Cordoba 2010-08-02
-7304383 Cuesta Blanca Cuesta Blanca -31.48658 -64.5715 P PPLL AR 05 3200 1500 756 America/Argentina/Cordoba 2010-08-02
-7535637 Avellaneda Avellaneda -34.66018 -58.36744 P PPLA2 AR 01 3436227 0 13 America/Argentina/Buenos_Aires 2010-09-20
-7647007 San Carlos de Bariloche San Carlos de Bariloche -41.14557 -71.30822 P PPLA3 AR 16 3864759 3837856 95394 839 America/Argentina/Salta 2011-07-31
-8015350 Santa Catalina - Dique Lujan Santa Catalina - Dique Lujan -34.38375 -58.70673 P PPLS AR 01 1600 10 254 America/Argentina/Buenos_Aires 2011-09-07
-5880828 Aūa Aua -14.27611 -170.66389 P PPL AS 010 2124 14 19 Pacific/Pago_Pago 2010-10-12
-5880891 Vaitogi Vaitogi -14.35889 -170.73472 P PPL AS 050 1436 16 -9999 Pacific/Pago_Pago 2010-10-12
-5880944 Vailoatai Vailoatai -14.3552 -170.78329 P PPL AS 00 050 1144 7 16 Pacific/Pago_Pago 2010-05-24
-5881150 Taulaga Taulaga -11.05528 -171.08833 P PPLA AS 040 37 8 Pacific/Pago_Pago 2012-02-19
-5881165 Ta`ū Ta`u -14.23361 -169.51444 P PPLA AS 020 0 6 12 Pacific/Pago_Pago 2012-02-02
-5881192 Tāfuna Tafuna Tafuna,Тафуна -14.33583 -170.72 P PPL AS 050 11017 12 13 Pacific/Pago_Pago 2010-09-05
-5881224 Faleniu Faleniu -14.3325 -170.74444 P PPL AS 050 3200 48 53 Pacific/Pago_Pago 2010-10-12
-5881241 Fagatogo Fagatogo Fagatogo,Фагатого -14.2825 -170.69 P PPL AS 010 1868 134 141 Pacific/Pago_Pago 2010-10-12
-5881254 Faleāsao Faleasao -14.2222 -169.51278 P PPLA3 AS 020 7267965 0 44 28 Pacific/Pago_Pago 2012-02-02
-5881347 Leone Leone -14.34389 -170.785 P PPL AS 050 4050 14 21 Pacific/Pago_Pago 2010-10-12
-5881410 Malaeimi Malaeimi -14.32278 -170.73389 P PPL AS 050 1261 39 41 Pacific/Pago_Pago 2010-09-05
-5881442 Mapusagafou Mapusagafou -14.33056 -170.75278 P PPL AS 050 2052 106 111 Pacific/Pago_Pago 2010-10-12
-5881544 Ofu Ofu -14.17528 -169.6775 P PPLA2 AS 020 254 4 17 Pacific/Pago_Pago 2012-02-03
-5881576 Pago Pago Pago Pago Pago Pago,Pagopago,pa ko pa ko,pagopago,Паго Паго,Пагопаго,ปาโกปาโก,パゴパゴ -14.27806 -170.7025 P PPLC AS 010 11500 2 144 Pacific/Pago_Pago 2011-08-29
-2601384 Neu-Guntramsdorf Neu-Guntramsdorf 48.0642 16.31573 P PPL AT 03 9071 192 Europe/Vienna 2010-04-16
-2606026 Kleinarl Kleinarl 47.27725 13.31955 P PPLA3 AT 05 504 50414 0 1001 Europe/Vienna 2011-07-31
-2607522 Edelstauden Edelstauden Edelstauden 46.98333 15.61667 P PPLA3 AT 06 604 60408 0 404 Europe/Vienna 2011-07-31
-2608246 Neuhaus am Klausenbach Neuhaus am Klausenbach 46.86667 16.03333 P PPLA3 AT 01 105 10507 0 312 Europe/Vienna 2011-07-31
-2760380 Millstatt Millstatt Mil'shtatt,Millstatt,Millstatt am See,Мильштатт 46.80417 13.58056 P PPLA3 AT AT 02 206 20620 0 695 Europe/Vienna 2011-07-31
-2760388 Zwölfaxing Zwolfaxing 48.1099 16.46267 P PPLA3 AT 03 324 32424 0 167 Europe/Vienna 2011-07-31
-2760415 Zwettl Stift Zwettl Stift Stift Zwettl,Zwettl Stift 48.61667 15.2 P PPL AT 03 11718 514 Europe/Vienna 2012-01-18
-2760420 Zwettl an der Rodl Zwettl an der Rodl Zwettl,Zwettl an der Rodl 48.46552 14.27133 P PPLA3 AT AT 04 416 41627 0 617 Europe/Vienna 2011-12-20
-2760449 Zurndorf Zurndorf Curndorf,Zurany,Zurndorf,Zurány,Цурндорф 47.98314 17.00315 P PPLA3 AT 01 107 10724 0 137 Europe/Vienna 2011-07-31
-2760485 Zöblen Zoblen Zoblen,Zöblen 47.5 10.48333 P PPLA3 AT 07 708 70837 0 1197 Europe/Vienna 2011-07-31
-2760489 Zöbern Zobern 47.5 16.11667 P PPLA3 AT 03 318 31848 0 751 Europe/Vienna 2011-07-31
-2760510 Zistersdorf Zistersdorf Zistersdorf 48.53333 16.75 P PPLA3 AT 03 308 30863 5661 215 Europe/Vienna 2011-07-31
-2760523 Zirl Zirl Cirl,Zirl,Цирл 47.28333 11.23333 P PPLA3 AT 07 703 70369 6567 945 Europe/Vienna 2011-07-31
-2760563 Zillingtal Zillingtal Celindrof,Cillingtal',Zillingtal,Циллингталь 47.81667 16.4 P PPLA3 AT 01 103 10322 0 213 Europe/Vienna 2011-07-31
-2760564 Zillingdorf Zillingdorf Zillingdorf 47.85 16.33333 P PPLA3 AT 03 323 32338 0 238 Europe/Vienna 2011-07-31
-2760575 Ziersdorf Ziersdorf 48.51667 15.91667 P PPLA3 AT 03 310 31053 0 257 Europe/Vienna 2011-07-31
-2760590 Zeutschach Zeutschach Zeutschach 47.06667 14.36667 P PPLA3 AT 06 614 61435 0 1038 Europe/Vienna 2011-07-31
-2760592 Zettling Zettling Zettling 46.95 15.41667 P PPLA3 AT 06 606 60657 0 360 Europe/Vienna 2011-07-31
-2760597 Zerlach Zerlach Zerlach 46.93333 15.65 P PPLA3 AT 06 604 60456 0 375 Europe/Vienna 2011-07-31
-2760610 Zeltweg Zeltweg Zeltweg 47.18333 14.75 P PPLA3 AT 06 608 60824 7726 652 Europe/Vienna 2011-07-31
-2760622 Zellerndorf Zellerndorf 48.68333 15.95 P PPLA3 AT 03 310 31052 0 243 Europe/Vienna 2011-07-31
-2760627 Zellberg Zellberg Zellberg 47.23333 11.85 P PPLA3 AT 07 709 70941 0 1322 Europe/Vienna 2011-07-31
-2760632 Zell am Ziller Zell am Ziller Zell,Zell am Ziller,Zell in Zillerthal 47.23333 11.88333 P PPLA3 AT AT 07 709 70940 0 578 Europe/Vienna 2011-07-31
-2760634 Zell am See Zell am See Cel am Zee,Cell'-am-Zee,Zell am See,Zell in the Pinzgau,tsyl am zyh,Цел ам Зее,Целль-ам-Зее,تسيل أم زيه 47.32556 12.79444 P PPLA3 AT 05 506 50628 10046 784 Europe/Vienna 2011-07-31
-2760635 Zell am Pettenfirst Zell am Pettenfirst Zell am Pettenfirst 48.06667 13.58333 P PPLA3 AT 04 417 41752 0 529 Europe/Vienna 2011-07-31
-2760636 Zell am Moos Zell am Moos Zell,Zell am Moos 47.9 13.31667 P PPLA3 AT AT 04 417 41751 0 574 Europe/Vienna 2011-07-31
-2760669 Zeillern Zeillern 48.11667 14.8 P PPLA3 AT 03 305 30544 0 372 Europe/Vienna 2011-07-31
-2760704 Zederhaus Zederhaus 47.15 13.5 P PPLA3 AT 05 505 50515 0 1474 Europe/Vienna 2011-07-31
-2760749 Zams Zams 47.15844 10.5897 P PPLA3 AT 07 706 70630 0 770 Europe/Vienna 2011-07-31
-2760762 Zagersdorf Zagersdorf Cogrstof,Cogrštof,Zagersdorf,Загерсдорф 47.76667 16.51667 P PPLA3 AT 01 103 10323 0 177 Europe/Vienna 2011-07-31
-2760770 Ybbsitz Ybbsitz 47.93333 14.88333 P PPLA3 AT 03 305 30543 0 857 Europe/Vienna 2011-07-31
-2760772 Ybbs an der Donau Ybbs an der Donau Ibbs,Ibs-na-Dunae,Ybbs,Ybbs an der Donau,Ибс-на-Дунае 48.16667 15.08333 P PPLA3 AT 03 315 31549 5676 218 Europe/Vienna 2011-07-31
-2760797 Würmla Wurmla 48.25497 15.86031 P PPLA3 AT 03 321 32139 0 229 Europe/Vienna 2011-07-31
-2760806 Würflach Wurflach 47.77648 16.05463 P PPLA3 AT 03 318 31847 0 401 Europe/Vienna 2011-07-31
-2760814 Wundschuh Wundschuh Wundschuh 46.92639 15.45111 P PPLA3 AT 06 606 60656 0 317 Europe/Vienna 2011-07-31
-2760824 Wullersdorf Wullersdorf 48.61667 16.1 P PPLA3 AT 03 310 31051 0 227 Europe/Vienna 2011-07-31
-2760825 Wulkaprodersdorf Wulkaprodersdorf Vul'kaprodersdorf,Vulkaprodrstof,Vulkaprodrštof,Wulkaprodersdorf,Вулькапродерсдорф 47.8 16.5 P PPLA3 AT 01 103 10319 0 173 Europe/Vienna 2011-07-31
-2760839 Wörth an der Lafnitz Worth an der Lafnitz Worth,Worth an der Lafnitz,Wörth,Wörth an der Lafnitz 47.2 16.06667 P PPLA3 AT AT 06 607 60750 0 356 Europe/Vienna 2011-07-31
-2760846 Wörterberg Worterberg 47.21667 16.1 P PPLA3 AT 01 104 10419 0 390 Europe/Vienna 2011-07-31
-2760847 Wörschach Worschach Worschach,Wörschach 47.55 14.15 P PPLA3 AT 06 612 61252 0 644 Europe/Vienna 2011-07-31
-2760854 Wörgl Worgl Worgl,Wörgl 47.48333 12.06667 P PPLA3 AT 07 705 70531 11265 518 Europe/Vienna 2011-07-31
-2760855 Wördern Wordern 48.334 16.21016 P PPL AT 03 6886 171 Europe/Vienna 2010-04-16
-2760887 Wolkersdorf Wolkersdorf 48.38333 16.51667 P PPL AT 03 6416 173 Europe/Vienna 2006-01-17
-2760894 Wolfurt Wolfurt Kirchdorf,Vol'furt,Wolfurt,Вольфурт 47.46667 9.75 P PPLA3 AT 08 802 80240 8110 413 Europe/Vienna 2011-07-31
-2760895 Wolfsthal Wolfsthal 48.13333 17 P PPLA3 AT 03 307 30728 0 159 Europe/Vienna 2011-07-31
-2760902 Wolfsgraben Wolfsgraben 48.1587 16.12098 P PPLA3 AT 03 324 32423 0 323 Europe/Vienna 2011-07-31
-2760903 Wolfsegg am Hausruck Wolfsegg am Hausruck Wolfsegg,Wolfsegg am Hausruck 48.10669 13.67274 P PPLA3 AT AT 04 417 41750 0 633 Europe/Vienna 2011-07-31
-2760906 Wolfsberg im Schwarzautal Wolfsberg im Schwarzautal Wolfsberg,Wolfsberg im Schwarzautal 46.84389 15.65889 P PPLA3 AT AT 06 610 61048 0 289 Europe/Vienna 2011-07-31
-2760910 Wolfsberg Wolfsberg Wolfsberg 46.84056 14.84417 P PPLA3 AT 02 209 20923 25610 461 Europe/Vienna 2011-07-31
-2760915 Wolfsbach Wolfsbach 48.06667 14.66667 P PPLA3 AT 03 305 30542 0 337 Europe/Vienna 2011-07-31
-2760920 Wolfpassing Wolfpassing 48.06667 15.05 P PPLA3 AT 03 320 32018 0 302 Europe/Vienna 2011-07-31
-2760943 Wolfau Wolfau 47.25 16.1 P PPLA3 AT 01 109 10928 0 370 Europe/Vienna 2011-07-31
-2761037 Winklern bei Oberwölz Winklern bei Oberwolz Winklern,Winklern bei Oberwolz,Winklern bei Oberwölz 47.2 14.23333 P PPLA3 AT AT 06 614 61434 0 977 Europe/Vienna 2011-07-31
-2761039 Winklern Winklern 46.87361 12.87472 P PPLA3 AT 02 206 20640 0 977 Europe/Vienna 2011-07-31
-2761049 Winklarn Winklarn 48.08333 14.83333 P PPLA3 AT 03 305 30541 0 318 Europe/Vienna 2011-07-31
-2761105 Windigsteig Windigsteig 48.76667 15.28333 P PPLA3 AT 03 322 32223 0 485 Europe/Vienna 2011-07-31
-2761123 Winden am See Winden am See Vinden-am-Zee,Winden,Winden am See,Винден-ам-Зее 47.95 16.75 P PPLA3 AT AT 01 107 10723 0 131 Europe/Vienna 2011-07-31
-2761147 Wimpassing an der Leitha Wimpassing an der Leitha Vimpassing-na-Lajte,Wimpassing,Wimpassing an der Leitha,Вимпассинг-на-Лайте 47.91667 16.43333 P PPLA3 AT AT 01 103 10318 0 207 Europe/Vienna 2011-07-31
-2761149 Wimpassing im Schwarzatale Wimpassing im Schwarzatale 47.70295 16.03334 P PPLA3 AT 03 318 31846 0 394 Europe/Vienna 2011-07-31
-2761178 Willendorf am Steinfelde Willendorf am Steinfelde 47.78929 16.05686 P PPLA3 AT 03 318 31845 0 391 Europe/Vienna 2012-01-07
-2761186 Wilhelmsburg Wilhelmsburg 48.10571 15.60539 P PPLA3 AT 03 319 31947 6718 320 Europe/Vienna 2011-07-31
-2761194 Wilfersdorf Wilfersdorf 48.58333 16.63333 P PPLA3 AT 03 316 31654 0 206 Europe/Vienna 2011-07-31
-2761208 Wildon Wildon Vil'don,Wildon,Вильдон 46.88333 15.51667 P PPLA3 AT 06 610 61047 0 320 Europe/Vienna 2011-07-31
-2761229 Wildermieming Wildermieming 47.31667 11.01667 P PPLA3 AT 07 703 70368 0 858 Europe/Vienna 2011-07-31
-2761261 Wildalpen Wildalpen Wildalpen 47.65 14.98333 P PPLA3 AT 06 612 61251 0 818 Europe/Vienna 2011-07-31
-2761272 Wiesmath Wiesmath 47.61667 16.28333 P PPLA3 AT 03 323 32335 0 670 Europe/Vienna 2011-07-31
-2761278 Wiesing Wiesing 47.40486 11.79708 P PPLA3 AT 07 709 70939 0 566 Europe/Vienna 2011-07-31
-2761281 Wiesfleck Wiesfleck 47.38333 16.13333 P PPLA3 AT 01 109 10927 0 429 Europe/Vienna 2011-07-31
-2761306 Wiesen Wiesen 47.73333 16.33333 P PPLA3 AT 01 106 10615 0 396 Europe/Vienna 2011-07-31
-2761314 Wieselburg Wieselburg Wieselburg 48.13333 15.13333 P PPLA3 AT 03 320 32016 0 258 Europe/Vienna 2011-07-31
-2761326 Wies Wies 46.72028 15.27194 P PPLA3 AT 06 603 60343 0 334 Europe/Vienna 2011-07-31
-2761353 Wiener Neustadt Wiener Neustadt Becsujvaros,Bécsújváros,Dunajsko Novo mesto,Viedenske Nove Mesto,Viedenské Nové Mesto,Viner-Nojshtadt,Viner-Nojstadt,Wiener Neustadt,Wr. Neustadt,wynr nwystt,Винер-Нойштадт,Вінер-Нойштадт,וינר נוישטט,ウィーナー・ノイシュタット 47.8 16.25 P PPLA3 AT 03 304 30401 38481 269 Europe/Vienna 2011-07-31
-2761354 Wiener Neudorf Wiener Neudorf 48.08278 16.31384 P PPLA3 AT 03 317 31725 8530 202 Europe/Vienna 2011-07-31
-2761369 Vienna Vienna Bec,Bech,Becs,Beč,Bienne,Bécs,Dunaj,VIE,Vena,Viden,Viena,Vienna,Vienne,Vieno,Vin,Vinarborg,Vindobona,Viyana,Vídeň,Vín,Vínarborg,Wenen,Wieden,Wiedeń,Wien,bin,weiynna,Βιέννη,Беч,Вена,Виена,เวียนนา,ቪየና,빈 48.20849 16.37208 P PPLC AT 09 900 901 1691468 171 193 Europe/Vienna 2011-06-16
-2761419 Weyer Markt Weyer Markt Weyer,Weyer Markt 47.85 14.66667 P PPLA3 AT AT 04 415 41520 0 450 Europe/Vienna 2011-07-31
-2761442 Wettmannstätten Wettmannstatten Wettmannstatten,Wettmannstätten 46.83056 15.38722 P PPLA3 AT 06 603 60341 0 301 Europe/Vienna 2011-07-31
-2761457 Westendorf Westendorf Westendorf 47.43333 12.21667 P PPLA3 AT 07 704 70420 0 786 Europe/Vienna 2011-07-31
-2761473 Wernersdorf Wernersdorf 46.71667 15.2 P PPLA3 AT 06 603 60340 0 425 Europe/Vienna 2011-07-31
-2761474 Werndorf Werndorf Werndorf 46.92417 15.49083 P PPLA3 AT 06 606 60655 0 309 Europe/Vienna 2011-07-31
-2761475 Wernberg Wernberg 46.61667 13.93333 P PPLA3 AT 02 207 20727 5070 530 Europe/Vienna 2011-07-31
-2761476 Werfenweng Werfenweng Weng,Werfenweng 47.46667 13.25 P PPLA3 AT AT 05 504 50425 0 1098 Europe/Vienna 2011-07-31
-2761479 Werfen Werfen Verfen,Werfen,Верфен 47.46667 13.18333 P PPLA3 AT 05 504 50424 3059 733 Europe/Vienna 2011-07-31
-2761482 Weppersdorf Weppersdorf 47.58333 16.43333 P PPLA3 AT 01 108 10823 0 333 Europe/Vienna 2011-07-31
-2761488 Wenns Wenns 47.16667 10.73333 P PPLA3 AT 07 702 70224 0 956 Europe/Vienna 2011-07-31
-2761524 Wels Wels Ovilava,Vel's,Wels,wls,Вельс,ולס 48.16667 14.03333 P PPLA3 AT 04 403 40301 57946 317 Europe/Vienna 2011-07-31
-2761531 Weiz Weiz Weiz 47.21667 15.61667 P PPLA3 AT 06 617 61755 9128 506 Europe/Vienna 2011-07-31
-2761538 Weitra Weitra Weitra 48.7 14.88333 P PPLA3 AT 03 309 30942 0 569 Europe/Vienna 2011-07-31
-2761543 Weitersfeld Weitersfeld 48.76667 15.8 P PPLA3 AT 03 311 31129 0 431 Europe/Vienna 2011-07-31
-2761551 Weitendorf Weitendorf 46.89611 15.46694 P PPLA3 AT 06 610 61046 0 306 Europe/Vienna 2011-07-31
-2761557 Weiten Weiten 48.28333 15.25 P PPLA3 AT 03 315 31546 0 506 Europe/Vienna 2011-07-31
-2761558 Weistrach Weistrach 48.05 14.58333 P PPLA3 AT 03 305 30539 0 356 Europe/Vienna 2011-07-31
-2761571 Weißkirchen in Steiermark Weisskirchen in Steiermark Weisskirchen,Weisskirchen in Steiermark,Weißkirchen,Weißkirchen in Steiermark 47.15 14.73333 P PPLA3 AT AT 06 608 60823 0 690 Europe/Vienna 2011-07-31
-2761614 Weißenbach bei Liezen Weissenbach bei Liezen Weissenbach,Weissenbach bei Liezen,Weißenbach bei Liezen 47.56667 14.21667 P PPLA3 AT AT 06 612 61249 0 635 Europe/Vienna 2011-07-31
-2761615 Weissenbach an der Triesting Weissenbach an der Triesting Weissenbach 47.98211 16.03935 P PPLA3 AT AT 03 306 30645 0 357 Europe/Vienna 2011-07-31
-2761669 Weinzierl bei Krems Weinzierl bei Krems Weinzierl,Weinzierl bei Krems 48.4 15.6 P PPLX AT 03 24092 207 Europe/Vienna 2012-01-18
-2761670 Weinzierl am Walde Weinzierl am Walde Weinzierl,Weinzierl am Walde 48.41667 15.43333 P PPLA3 AT AT 03 313 31350 0 572 Europe/Vienna 2011-07-31
-2761689 Weingraben Weingraben Bajngrob,Vajngraben,Weingraben,Вайнграбен 47.51667 16.36667 P PPLA3 AT 01 108 10827 0 390 Europe/Vienna 2011-07-31
-2761697 Weinburg am Saßbach Weinburg am Sassbach Weinburg,Weinburg am Sassbach,Weinburg am Saßbach 46.75361 15.72111 P PPLA3 AT AT 06 615 61520 0 254 Europe/Vienna 2011-07-31
-2761698 Weinburg Weinburg 48.11351 15.53295 P PPLA3 AT 03 319 31945 0 306 Europe/Vienna 2011-07-31
-2761712 Weiler Weiler 47.29972 9.65 P PPLA3 AT 08 804 80423 0 468 Europe/Vienna 2011-07-31
-2761720 Weikersdorf am Steinfelde Weikersdorf am Steinfelde Weikersdorf 47.80612 16.14389 P PPLA3 AT AT 03 323 32334 0 303 Europe/Vienna 2011-07-31
-2761723 Weikendorf Weikendorf 48.34438 16.76651 P PPLA3 AT 03 308 30860 0 150 Europe/Vienna 2011-07-31
-2761754 Weiden bei Rechnitz Weiden bei Rechnitz Bandol,Bandoly,Bándoly,Vajden-Rekhnic,Weiden,Weiden bei Rechnitz,Вайден-Рехниц 47.3 16.35 P PPLA3 AT AT 01 109 10926 0 337 Europe/Vienna 2011-07-31
-2761758 Weiden am See Weiden am See Vajden-am-Zee,Weiden,Вайден-ам-Зее 47.92532 16.86899 P PPLA3 AT AT 01 107 10722 0 126 Europe/Vienna 2011-07-31
-2761772 Weichselbaum Weichselbaum 46.9425 16.1875 P PPLA3 AT 01 105 10510 0 237 Europe/Vienna 2011-07-31
-2761796 Weer Weer Weer 47.3 11.63333 P PPLA3 AT 07 709 70937 0 555 Europe/Vienna 2011-07-31
-2761834 Wattens Wattens Wattens 47.28333 11.6 P PPLA3 AT 07 703 70367 7517 782 Europe/Vienna 2011-07-31
-2761835 Wattenberg Wattenberg 47.28333 11.6 P PPLA3 AT 07 703 70366 0 782 Europe/Vienna 2011-07-31
-2761865 Wartmannstetten Wartmannstetten 47.69359 16.07506 P PPLA3 AT 03 318 31844 0 403 Europe/Vienna 2011-07-31
-2761869 Warth Warth 47.65 16.11667 P PPLA3 AT 03 318 31843 0 466 Europe/Vienna 2011-07-31
-2761870 Warth Warth Warth 47.25 10.18333 P PPLA3 AT 08 802 80239 0 1332 Europe/Vienna 2011-07-31
-2761907 Wängle Wangle 47.48333 10.68333 P PPLA3 AT 07 708 70835 0 918 Europe/Vienna 2011-07-31
-2761914 Wang Wang 48.04538 15.02672 P PPLA3 AT 03 320 32015 0 321 Europe/Vienna 2011-07-31
-2761944 Walpersbach Walpersbach 47.71667 16.23333 P PPLA3 AT 03 323 32333 0 375 Europe/Vienna 2011-07-31
-2761964 Wallern im Burgenland Wallern im Burgenland Valla,Vallern (Burgenland),Wallern,Wallern im Burgenland,Валлерн (Бургенланд) 47.72847 16.93706 P PPLA3 AT AT 01 107 10721 0 118 Europe/Vienna 2011-07-31
-2761976 Waldzell Waldzell 48.13562 13.42701 P PPL AT 04 412 41234 2095 522 511 Europe/Vienna 2011-07-02
-2761989 Waldneukirchen Waldneukirchen Waldneukirchen 47.99854 14.25879 P PPLA3 AT 04 415 41518 0 431 Europe/Vienna 2011-07-31
-2761995 Waldkirchen an der Thaya Waldkirchen an der Thaya Waldkirchen,Waldkirchen an der Thaya 48.93333 15.35 P PPLA3 AT AT 03 322 32222 0 487 Europe/Vienna 2011-07-31
-2761999 Walding Walding Val'ding,Walding,Вальдинг 48.35209 14.1576 P PPLA3 AT 04 416 41626 0 277 Europe/Vienna 2011-12-20
-2762000 Wald im Pinzgau Wald im Pinzgau Wald,Wald im Pinzgau 47.25 12.23333 P PPLA3 AT AT 05 506 50626 0 1033 Europe/Vienna 2011-07-31
-2762013 Waldhausen Waldhausen 48.51667 15.25 P PPLA3 AT 03 325 32529 0 679 Europe/Vienna 2011-07-31
-2762021 Waldenstein Waldenstein 48.71667 15.01667 P PPLA3 AT 03 309 30940 0 588 Europe/Vienna 2011-07-31
-2762024 Waldegg Waldegg 47.86852 16.05154 P PPLA3 AT 03 323 32332 0 373 Europe/Vienna 2011-07-31
-2762039 Wald am Schoberpaß Wald am Schoberpass Wald,Wald am Schoberpass,Wald am Schoberpaß 47.45 14.66667 P PPLA3 AT AT 06 611 61119 0 861 Europe/Vienna 2011-07-31
-2762045 Walchsee Walchsee 47.65163 12.31868 P PPLA3 AT 07 705 70529 0 663 Europe/Vienna 2011-07-31
-2762070 Waidring Waidring 47.58333 12.56667 P PPLA3 AT 07 704 70419 0 796 Europe/Vienna 2011-07-31
-2762071 Waidmannsfeld Waidmannsfeld 47.87042 15.98116 P PPLA3 AT 03 323 32331 0 475 Europe/Vienna 2011-07-31
-2762077 Waidhofen an der Ybbs Waidhofen an der Ybbs Stadt Waidhofen an der Ybbs,Vajdkhofen-na- Ibbse,Waidhofen,Вайдхофен-на- Иббсе 47.96004 14.77361 P PPLA3 AT 03 303 30301 11774 360 Europe/Vienna 2011-07-31
-2762079 Waidhofen an der Thaya Waidhofen an der Thaya Vajdkhofen-an-der-Tajja,Waidhofen,Waidhofen an der Thaya,Вайдхофен-ан-дер-Тайя 48.81667 15.28333 P PPLA3 AT 03 322 32220 5838 493 Europe/Vienna 2011-07-31
-2762102 Wagrain Wagrain Wagrain,Wagrin 47.33528 13.29889 P PPLA3 AT AT 05 504 50423 0 849 Europe/Vienna 2011-07-31
-2762109 Wagna Wagna 46.75 15.55 P PPLA3 AT 06 610 61045 0 309 Europe/Vienna 2011-07-31
-2762150 Vösendorf Vosendorf 48.12107 16.34036 P PPLA3 AT 03 317 31723 0 192 Europe/Vienna 2011-07-31
-2762157 Murau Murau Murau,Murau Vorstadt,Vorstadt Murau 47.11056 14.16944 P PPLA3 AT AT 06 614 61411 0 841 Europe/Vienna 2011-07-31
-2762207 Vordernberg Vordernberg Vordernberg,Vordernberg-Markt 47.46667 15 P PPLA3 AT AT 06 611 61118 0 1111 Europe/Vienna 2011-07-31
-2762223 Vorderhornbach Vorderhornbach Vorderhornbach 47.36667 10.53333 P PPLA3 AT 07 708 70834 0 1007 Europe/Vienna 2011-07-31
-2762290 Vorchdorf Vorchdorf Vorchdorf 48.00388 13.92122 P PPL AT 04 407 40720 7455 410 Europe/Vienna 2011-06-26
-2762299 Vorau Vorau 47.4 15.88333 P PPLA3 AT 06 607 60745 0 677 Europe/Vienna 2011-07-31
-2762303 Vomp Vomp Fomp,Vomp,Фомп 47.33333 11.68333 P PPL AT 07 4628 542 Europe/Vienna 2012-01-18
-2762304 Völs Vols 47.25 11.33333 P PPLA3 AT 07 703 70364 6573 605 Europe/Vienna 2011-07-31
-2762315 Völkermarkt Voelkermarkt Fjol'kermarkt,Voelkermarkt,Фёлькермаркт 46.66222 14.63444 P PPLA3 AT 02 208 20817 11373 463 Europe/Vienna 2011-07-31
-2762320 Volders Volders 47.28333 11.56667 P PPLA3 AT 07 703 70365 0 583 Europe/Vienna 2011-07-31
-2762327 Voitsberg Voitsberg Voitsberg 47.03333 15.15 P PPLA3 AT 06 616 61625 9980 560 Europe/Vienna 2011-07-31
-2762341 Vöcklamarkt Vocklamarkt Fjoklamarkt,Vocklamarkt,Vocklamarkt-am Haushamerfeld,Vöcklamarkt,Vöcklamarkt-am Haushamerfeld,Фёкламаркт 48.0025 13.48383 P PPLA3 AT 04 417 41747 4869 488 Europe/Vienna 2011-07-31
-2762343 Vöcklabruck Vocklabruck Vocklabruck,Vöcklabruck 48.01667 13.65 P PPLA3 AT 04 417 41746 11887 498 Europe/Vienna 2011-07-31
-2762348 Vitis Vitis 48.75964 15.18259 P PPLA3 AT 03 322 32219 0 520 Europe/Vienna 2011-07-31
-2762352 Virgen Virgen Virgen 47 12.45 P PPLA3 AT 07 707 70734 0 1120 Europe/Vienna 2011-07-31
-2762358 Vils Vils Vils 47.55 10.63333 P PPLA3 AT 07 708 70833 0 816 Europe/Vienna 2011-07-31
-2762372 Villach Villach Beljak,Fillakh,Villach,Villaco,firahha,pylk,Филлах,פילך,フィラッハ 46.61028 13.85583 P PPLA2 AT 02 202 20201 58882 494 Europe/Vienna 2012-02-03
-2762376 Viktorsberg Viktorsberg 47.29972 9.66667 P PPLA3 AT 08 804 80422 0 692 Europe/Vienna 2011-07-31
-2762392 Viehhofen Viehhofen 47.36667 12.73333 P PPLA3 AT 05 506 50625 0 855 Europe/Vienna 2011-07-31
-2762453 Velden am Wörthersee Velden am Worthersee Vel'den,Velden,Velden am Woerthersee,Velden am Wörthersee,Вельден 46.61301 14.0413 P PPL AT 02 8817 448 Europe/Vienna 2009-07-22
-2762458 Veitsch Veitsch Fajch,Файч 47.57815 15.4945 P PPLA3 AT 06 613 61315 0 666 Europe/Vienna 2011-07-31
-2762493 Uttendorf Uttendorf 47.28333 12.56667 P PPLA3 AT 05 506 50624 0 780 Europe/Vienna 2011-07-31
-2762572 Unterwart Unterwart Alsoor,Alsóor,Untervart,Unterwart,Унтерварт 47.25 16.23333 P PPLA3 AT 01 109 10925 0 338 Europe/Vienna 2011-07-31
-2762619 Untertauern Untertauern 47.3 13.5 P PPLA3 AT 05 504 50422 0 1166 Europe/Vienna 2011-07-31
-2762632 Unterstinkenbrunn Unterstinkenbrunn 48.66667 16.33333 P PPLA3 AT 03 316 31652 0 202 Europe/Vienna 2011-07-31
-2762647 Untersiebenbrunn Untersiebenbrunn 48.25 16.73333 P PPLA3 AT 03 308 30858 0 146 Europe/Vienna 2011-07-31
-2762678 Rohrbach an der Gölsen Rohrbach an der Goelsen Unterrohrbach 48.04699 15.74169 P PPLA3 AT 03 314 31410 0 400 Europe/Vienna 2011-07-31
-2762714 Unterpremstätten Unterpremstatten Premstatten,Premstätten,Unterpremstatten,Unterpremstetten,Unterpremstätten,Унтерпремстеттен 46.96472 15.40417 P PPLA3 AT AT 06 606 60652 0 336 Europe/Vienna 2011-07-31
-2762732 Unterperfuss Unterperfuss 47.26667 11.25 P PPLA3 AT 07 703 70361 0 595 Europe/Vienna 2011-07-31
-2762827 Unterlamm Unterlamm 46.97694 16.06389 P PPLA3 AT 06 604 60455 0 312 Europe/Vienna 2011-07-31
-2762843 Unterkohlstätten Unterkohlstatten 47.38333 16.31667 P PPLA3 AT 01 109 10924 0 476 Europe/Vienna 2011-07-31
-2762908 Grünburg Gruenburg 47.97234 14.26472 P PPL AT 04 409 40902 3824 365 359 Europe/Vienna 2011-06-26
-2762952 Unterfrauenhaid Unterfrauenhaid 47.56667 16.5 P PPLA3 AT 01 108 10825 0 296 Europe/Vienna 2011-07-31
-2762953 Unterfladnitz Unterfladnitz Unterfladnitz 47.18333 15.66667 P PPLA3 AT 06 617 61753 0 408 Europe/Vienna 2011-07-31
-2763099 Unterbergla Unterbergla 46.8 15.31667 P PPLA3 AT 06 603 60339 0 350 Europe/Vienna 2011-07-31
-2763100 Unterbergla Unterbergla 46.73333 15.28333 P PPLA3 AT 06 603 60339 0 387 Europe/Vienna 2011-07-31
-2763118 Unterauersbach Unterauersbach Unterauersbach 46.86556 15.77028 P PPLA3 AT 06 604 60454 0 322 Europe/Vienna 2011-07-31
-2763150 Unken Unken 47.65 12.71667 P PPLA3 AT 05 506 50623 0 741 Europe/Vienna 2011-07-31
-2763154 Ungerdorf Ungerdorf 47.08333 15.66667 P PPLA3 AT 06 617 61752 0 454 Europe/Vienna 2011-07-31
-2763160 Ungenach Ungenach Ungenach 48.05 13.61667 P PPLA3 AT 04 417 41744 0 509 Europe/Vienna 2011-07-31
-2763164 Umhausen Umhausen Umhausen 47.13333 10.93333 P PPLA3 AT 07 702 70223 0 1070 Europe/Vienna 2011-07-31
-2763176 Ulrichsberg Ulrichsberg Ul'rikhsberg,Ульрихсберг 48.67498 13.91049 P PPL AT 04 413 41342 2997 630 Europe/Vienna 2011-07-14
-2763199 Uderns Uderns Uderns 47.31667 11.86667 P PPLA3 AT 07 709 70935 0 541 Europe/Vienna 2011-07-31
-2763201 Übersbach Ubersbach Ubersbach,Uebersbach,Übersbach 47.01667 16.05 P PPLA3 AT AT 06 605 60514 0 254 Europe/Vienna 2011-07-31
-2763202 Übersaxen Ubersaxen Ubersaxen,Uebersaxen,Übersaxen 47.25284 9.6708 P PPLA3 AT AT 08 804 80421 0 897 Europe/Vienna 2011-07-31
-2763209 Übelbach Ubelbach Ubelbach,Ubelbach Markt,Uebelbach,Übelbach,Übelbach Markt 47.22534 15.23615 P PPLA3 AT AT 06 606 60651 0 570 Europe/Vienna 2011-07-31
-2763215 Tweng Tweng 47.18333 13.6 P PPLA3 AT 05 505 50512 0 1435 Europe/Vienna 2011-07-31
-2763235 Türnitz Turnitz Ternitz 47.93095 15.49295 P PPLA3 AT AT 03 314 31414 0 457 Europe/Vienna 2011-07-31
-2763242 Turnau Turnau 47.55 15.33333 P PPLA3 AT 06 602 60221 0 758 Europe/Vienna 2011-07-31
-2763266 Tulln Tulln 48.32829 16.05858 P PPL AT 03 14201 175 Europe/Vienna 2010-04-16
-2763267 Tulfes Tulfes 47.25 11.53333 P PPLA3 AT 07 703 70360 0 1202 Europe/Vienna 2011-07-31
-2763270 Tulbing Tulbing 48.29336 16.12226 P PPLA3 AT 03 321 32134 0 183 Europe/Vienna 2011-07-31
-2763300 Tschanigraben Tschanigraben 47.01667 16.3 P PPLA3 AT 01 104 10423 0 296 Europe/Vienna 2011-07-31
-2763302 Tschagguns Tschagguns Tschagguns 47.08333 9.9 P PPLA3 AT 08 801 80128 0 667 Europe/Vienna 2011-07-31
-2763308 Trumau Trumau 47.99348 16.34268 P PPLA3 AT 03 306 30641 0 201 Europe/Vienna 2011-07-31
-2763313 Trössing Trossing Trossing,Trössing 46.81667 15.81667 P PPLA3 AT 06 615 61519 0 268 Europe/Vienna 2011-07-31
-2763332 Trofaiach Trofaiach Trofaiach 47.41667 15 P PPLA3 AT 06 611 61117 8313 715 Europe/Vienna 2011-07-31
-2763343 Tristach Tristach Tristach 46.81611 12.78972 P PPLA3 AT 07 707 70732 0 668 Europe/Vienna 2011-07-31
-2763348 Trins Trins 47.08333 11.41667 P PPLA3 AT 07 703 70359 0 1229 Europe/Vienna 2011-07-31
-2763360 Triebendorf Triebendorf Triebendorf 47.11667 14.23333 P PPLA3 AT 06 614 61433 0 878 Europe/Vienna 2011-07-31
-2763362 Trieben Trieben Triben,Trieben,Трибен 47.48333 14.48333 P PPLA3 AT 06 612 61247 0 746 Europe/Vienna 2011-07-31
-2763382 Treglwang Treglwang Treglwang 47.46667 14.58333 P PPLA3 AT 06 612 61246 0 1029 Europe/Vienna 2011-07-31
-2763395 Trebesing Trebesing 46.88639 13.51028 P PPLA3 AT 02 206 20638 0 790 Europe/Vienna 2011-07-31
-2763400 Trautmannsdorf in Oststeiermark Trautmannsdorf in Oststeiermark Trautmannsdorf,Trautmannsdorf in Oststeiermark 46.86667 15.88333 P PPLA3 AT AT 06 604 60453 0 327 Europe/Vienna 2011-07-31
-2763401 Trautmannsdorf an der Leitha Trautmannsdorf an der Leitha Trautmannsdorf,Trautmannsdorf an der Leitha,Trautmansdorf-an-der-Lajta,Траутмансдорф-ан-дер-Лайта 48.01667 16.63333 P PPLA3 AT AT 03 307 30726 0 167 Europe/Vienna 2011-07-31
-2763406 Trausdorf an der Wulka Trausdorf an der Wulka Darazsfalu,Darázsfalu,Trausdorf,Trausdorf an der Wulka,Trausdorf-an-der-Vul'ka,Траусдорф-ан-дер-Вулька 47.8135 16.5576 P PPLA3 AT 01 103 10317 0 153 Europe/Vienna 2011-07-31
-2763410 Traunstein Traunstein 48.43333 15.1 P PPLA3 AT 03 325 32528 0 854 Europe/Vienna 2011-07-31
-2763423 Traun Traun 48.22656 14.23459 P PPL AT 04 410 41021 23959 271 Europe/Vienna 2011-06-28
-2763439 Trattenbach Trattenbach 47.6 15.86667 P PPLA3 AT 03 318 31841 0 1183 Europe/Vienna 2011-07-31
-2763459 Traismauer Traismauer Traismauer 48.35 15.73333 P PPLA3 AT 03 319 31943 5815 193 Europe/Vienna 2011-07-31
-2763460 Traiskirchen Traiskirchen 48.01485 16.29324 P PPLA3 AT 03 306 30639 16212 204 Europe/Vienna 2011-07-31
-2763466 Traisen Traisen 48.03333 15.6 P PPLA3 AT 03 314 31413 0 396 Europe/Vienna 2011-07-31
-2763476 Trahütten Trahutten Trahutten,Trahütten 46.825 15.15694 P PPLA3 AT 06 603 60338 0 972 Europe/Vienna 2011-07-31
-2763488 Traboch Traboch Traboch 47.36667 14.98333 P PPLA3 AT 06 611 61116 0 881 Europe/Vienna 2011-07-31
-2763574 Tobaj Tobaj 47.08333 16.3 P PPLA3 AT 01 104 10417 0 233 Europe/Vienna 2011-07-31
-2763575 Tobadill Tobadill Tobadill 47.11667 10.51667 P PPLA3 AT 07 706 70628 0 1483 Europe/Vienna 2011-07-31
-2763595 Timelkam Timelkam 48.00394 13.6076 P PPLA3 AT 04 417 41743 5855 446 Europe/Vienna 2011-07-31
-2763609 Tieschen Tieschen Tieschen 46.78611 15.94222 P PPLA3 AT 06 615 61518 0 247 Europe/Vienna 2011-07-31
-2763614 Tiefgraben Tiefgraben Mondsee,Tiefgraben,Tifgraben,Тифграбен 47.88333 13.35 P PPLA3 AT 04 417 41742 0 869 Europe/Vienna 2011-08-16
-2763658 Thüringen Thuringen 47.2 9.76667 P PPLA3 AT 08 801 80126 0 561 Europe/Vienna 2011-07-31
-2763672 Thörl Thorl Thorl,Thörl,Tjorl',Тёрль 47.51667 15.21667 P PPLA3 AT 06 602 60219 0 792 Europe/Vienna 2011-07-31
-2763677 Thomatal Thomatal Thomatal,Thomathal 47.06667 13.75 P PPLA3 AT AT 05 505 50511 0 1143 Europe/Vienna 2011-07-31
-2763683 Thomasberg Thomasberg 47.56667 16.13333 P PPLA3 AT 03 318 31840 0 674 Europe/Vienna 2011-07-31
-2763700 Theresienfeld Theresienfeld 47.85 16.23333 P PPLA3 AT 03 323 32330 0 280 Europe/Vienna 2011-07-31
-2763711 Thaya Thaya 48.85489 15.28902 P PPLA3 AT 03 322 32217 0 484 486 Europe/Vienna 2011-07-31
-2763715 Thaur Thaur 47.3 11.46667 P PPLA3 AT 07 703 70358 0 762 Europe/Vienna 2011-07-31
-2763742 Thalheim bei Wels Thalheim bei Wels Tal'khajm-Vel's,Thalheim,Thalheim bei Wels,Тальхайм-Вельс 48.15 14.03333 P PPLA3 AT AT 04 418 41823 0 339 Europe/Vienna 2011-07-31
-2763749 Thalgau Thalgau 47.83333 13.25 P PPLA3 AT 05 503 50337 5501 597 Europe/Vienna 2011-07-31
-2763773 Teufenbach Teufenbach 47.13333 14.35 P PPLA3 AT 06 614 61432 0 750 Europe/Vienna 2011-07-31
-2763795 Ternitz Ternitz 47.71565 16.03575 P PPLA3 AT 03 318 31839 15153 395 Europe/Vienna 2011-07-31
-2763797 Ternberg Ternberg Ternberg,Тернберг 47.93333 14.35 P PPLA3 AT 04 415 41517 0 357 Europe/Vienna 2011-07-31
-2763800 Terfens Terfens Terfens 47.31667 11.65 P PPLA3 AT 07 709 70933 0 544 Europe/Vienna 2011-07-31
-2763810 Telfs Telfs Telfs 47.3 11.06667 P PPLA3 AT 07 703 70357 14028 624 Europe/Vienna 2011-07-31
-2763811 Telfes im Stubai Telfes im Stubai Telfes,Telfes im Stubai 47.16667 11.36667 P PPLA3 AT AT 07 703 70356 0 924 Europe/Vienna 2011-07-31
-2763826 Teesdorf Teesdorf 47.95 16.28333 P PPLA3 AT 03 306 30637 0 234 Europe/Vienna 2011-07-31
-2763837 Taxenbach Taxenbach Daxenbach,Taksenbakh,Taxenbach,Таксенбах 47.28333 12.96667 P PPLA3 AT AT 05 506 50622 2830 986 Europe/Vienna 2011-07-31
-2763855 Tauplitz Tauplitz 47.56005 14.01293 P PPLA3 AT 06 612 61245 0 890 Europe/Vienna 2011-07-31
-2763888 Tattendorf Tattendorf 47.95 16.3 P PPLA3 AT 03 306 30636 0 229 Europe/Vienna 2011-07-31
-2763901 Tarrenz Tarrenz 47.26667 10.76667 P PPLA3 AT 07 702 70222 0 816 Europe/Vienna 2011-07-31
-2763915 Tannheim Tannheim Tannheim 47.48333 10.51667 P PPLA3 AT 07 708 70832 0 1220 Europe/Vienna 2011-07-31
-2763929 Tamsweg Tamsweg Tambsweg,Tamsveg,Тамсвег 47.12808 13.81102 P PPLA3 AT 05 505 50510 6126 1026 Europe/Vienna 2011-07-31
-2763960 Tadten Tadten Mosonteteny,Mosontétény,Tadten,Тадтен 47.76667 16.98333 P PPLA3 AT 01 107 10720 0 119 Europe/Vienna 2011-07-31
-2764010 Sulzberg Sulzberg 47.51667 9.9 P PPLA3 AT 08 802 80238 0 996 Europe/Vienna 2011-07-31
-2764026 Sulz Sulz 47.28721 9.65183 P PPLA3 AT 08 804 80420 0 489 Europe/Vienna 2011-07-31
-2764029 Sulztal an der Weinstraße Sulztal an der Weinstrasse Stolzl,Sulz,Zul'c,Зульц 46.68333 15.55 P PPLA3 AT AT 06 610 61042 0 452 Europe/Vienna 2011-07-31
-2764053 Stummerberg Stummerberg Stummerberg 47.28333 11.91667 P PPLA3 AT 07 709 70932 0 1160 Europe/Vienna 2011-07-31
-2764055 Stumm Stumm Stumm 47.28333 11.88333 P PPLA3 AT 07 709 70931 0 554 Europe/Vienna 2011-07-31
-2764063 Stuhlfelden Stuhlfelden 47.28333 12.51667 P PPLA3 AT 05 506 50621 0 779 Europe/Vienna 2011-07-31
-2764067 Studenzen Studenzen Studenzen 47.00583 15.75417 P PPLA3 AT 06 604 60452 0 319 Europe/Vienna 2011-07-31
-2764082 Stubenberg Stubenberg 47.23333 15.8 P PPLA3 AT 06 607 60743 0 383 Europe/Vienna 2011-07-31
-2764109 Stronsdorf Stronsdorf 48.65 16.28333 P PPLA3 AT 03 316 31650 0 206 Europe/Vienna 2011-07-31
-2764121 Strobl Strobl Shtrobl',Strobl,Штробль 47.71667 13.48333 P PPLA3 AT 05 503 50336 3577 546 Europe/Vienna 2011-07-31
-2764137 Strengen Strengen Strengen 47.13333 10.45 P PPLA3 AT 07 706 70627 0 1295 Europe/Vienna 2011-07-31
-2764138 Strengberg Strengberg 48.13333 14.63333 P PPLA3 AT 03 305 30534 0 275 Europe/Vienna 2011-07-31
-2764140 Strem Strem Shtrem,Strem,Stremm,Штрем 47.05 16.41667 P PPLA3 AT AT 01 104 10416 0 216 Europe/Vienna 2011-07-31
-2764168 Stratzing Stratzing 48.45 15.6 P PPLA3 AT 03 313 31347 0 325 Europe/Vienna 2011-07-31
-2764172 Strasswalchen Strasswalchen Strasswalchen,Strasz Walchen 47.98333 13.25 P PPL AT 05 7145 523 Europe/Vienna 2012-01-18
-2764173 Straß in Steiermark Strass in Steiermark Strass,Strass in Steiermark,Straß in Steiermark 46.72722 15.62444 P PPLA3 AT AT 06 610 61041 0 255 Europe/Vienna 2011-07-31
-2764175 Strasshof an der Nordbahn Strasshof an der Nordbahn Shtrasskhof-an-der-Nordban,Strasshof,Strasshof an der Nordbahn,Штрассхоф-ан-дер-Нордбан 48.31667 16.66667 P PPLA3 AT 03 308 30856 7637 161 Europe/Vienna 2011-07-31
-2764183 Strassen Strassen Strassen 46.75389 12.48417 P PPLA3 AT 07 707 70729 0 1222 Europe/Vienna 2011-07-31
-2764186 Straßburg Strassburg Strassburg,Strassburg im Karnten,Strassburg in Karnten,Straßburg,Straßburg im Kärnten,Straßburg in Kärnten 46.89444 14.32861 P PPLA3 AT AT 02 205 20530 0 647 Europe/Vienna 2011-07-31
-2764189 Strass im Zillertal Strass im Zillertal Strass,Strass bei Jenbach,Strass im Zillertal 47.39556 11.81966 P PPLA3 AT AT 07 709 70930 0 524 Europe/Vienna 2011-07-31
-2764217 Strallegg Strallegg Strallegg 47.4 15.71667 P PPLA3 AT 06 617 61750 0 770 Europe/Vienna 2011-07-31
-2764222 Straden Straden Straden 46.80917 15.86806 P PPLA3 AT 06 615 61517 0 336 Europe/Vienna 2011-07-31
-2764225 Stotzing Stotzing 47.9 16.55 P PPLA3 AT 01 103 10321 0 285 Europe/Vienna 2011-07-31
-2764230 Stössing Stossing 48.12267 15.81379 P PPLA3 AT 03 319 31941 0 342 Europe/Vienna 2011-07-31
-2764238 Stoob Stoob Csava,Csáva,Shtub,Stoob,Штуб 47.51667 16.46667 P PPLA3 AT 01 108 10822 0 305 Europe/Vienna 2011-07-31
-2764270 Stocking Stocking Stocking 46.88333 15.53333 P PPLA3 AT 06 610 61040 0 292 Europe/Vienna 2011-07-31
-2764279 Stockerau Stockerau Stockerau 48.38333 16.21667 P PPLA3 AT 03 312 31230 14831 171 Europe/Vienna 2011-07-31
-2764284 Stockenboi Stockenboi 46.72611 13.52306 P PPLA3 AT 02 207 20723 0 872 Europe/Vienna 2011-07-31
-2764293 Stiwoll Stiwoll Stiwoll 47.1 15.21667 P PPLA3 AT 06 606 60647 0 501 Europe/Vienna 2011-07-31
-2764296 Steinbrunn Steinbrunn Shtajnbrunn,Steinbrunn,Stikapron,Stinkenbrunn,Štikapron,Штайнбрунн 47.83333 16.41667 P PPLA3 AT 01 103 10316 0 211 Europe/Vienna 2011-07-31
-2764297 Stinatz Stinatz Shtinac,Stinatz,Stinjaki,Штинац 47.2 16.11667 P PPLA3 AT 01 104 10415 0 338 Europe/Vienna 2011-07-31
-2764354 Steyregg Steyregg Shtajreg,Штайрег 48.28513 14.36995 P PPL AT 04 416 41624 4856 252 Europe/Vienna 2011-06-28
-2764359 Steyr Steyr Shtajr,Steyer,Steyr,Steyr Stadt,ashtayr,styyr,Штайр,שטייר,اشتایر 48.04274 14.42127 P PPLA3 AT 04 402 40201 39566 285 Europe/Vienna 2011-07-31
-2764364 Steuerberg Steuerberg 46.78333 14.11667 P PPLA3 AT 02 210 21010 0 809 Europe/Vienna 2011-07-31
-2764366 Stetten Stetten 48.36667 16.38333 P PPLA3 AT 03 312 31229 0 181 Europe/Vienna 2011-07-31
-2764368 Stetteldorf am Wagram Stetteldorf am Wagram Stetteldorf,Stetteldorf am Wagram 48.4 16.01667 P PPLA3 AT AT 03 312 31228 0 178 Europe/Vienna 2011-07-31
-2764382 Stenzengreith Stenzengreith Stenzengreith 47.2 15.51667 P PPLA3 AT 06 617 61749 0 750 Europe/Vienna 2011-07-31
-2764443 Steinhaus Steinhaus 48.11614 14.0189 P PPLA3 AT 04 418 41822 0 375 Europe/Vienna 2011-07-31
-2764453 Steinfeld Steinfeld 46.76556 13.27167 P PPLA3 AT 02 206 20637 0 686 Europe/Vienna 2011-07-31
-2764480 Steindorf am Ossiacher See Steindorf am Ossiacher See Shtajndorf-am-Ossiakher-Zee,Steindorf,Steindorf am Ossiacher See,Штайндорф-ам-Оссиахер-Зее 46.69833 14.00917 P PPLA3 AT AT 02 210 21009 0 528 Europe/Vienna 2011-07-31
-2764527 Steinbach am Attersee Steinbach am Attersee Steinbach,Steinbach am Attersee 47.81667 13.55 P PPLA3 AT AT 04 417 41740 0 502 Europe/Vienna 2011-07-31
-2764556 Steinakirchen am Forst Steinakirchen am Forst Steinakirchen,Steinakirchen am Forst 48.06667 15.03333 P PPLA3 AT AT 03 320 32014 0 412 Europe/Vienna 2011-07-31
-2764557 Steinach am Brenner Steinach am Brenner Shtajnakh-na-Brennere,Steinach,Steinach am Brenner,Штайнах-на-Бреннере 47.08333 11.46667 P PPLA3 AT AT 07 703 70355 0 1139 Europe/Vienna 2011-07-31
-2764569 Stein Stein 46.99778 16.08694 P PPLA3 AT 06 605 60513 0 263 Europe/Vienna 2011-07-31
-2764587 Stegersbach Stegersbach Santalek,Shtegersbarkh,Stegersbach,Szentelek,Штегерсбарх 47.16667 16.16667 P PPLA3 AT 01 104 10414 0 286 Europe/Vienna 2011-07-31
-2764605 Steeg Steeg 47.24393 10.29436 P PPLA3 AT 07 708 70831 0 1116 Europe/Vienna 2011-09-09
-2764621 Statzendorf Statzendorf 48.30752 15.64127 P PPLA3 AT 03 319 31940 0 284 Europe/Vienna 2011-07-31
-2764625 Stattegg Stattegg Shtatteg,Stattegg,Штаттег 47.13333 15.41667 P PPLA3 AT 06 606 60646 0 475 Europe/Vienna 2011-07-31
-2764645 Stanz bei Landeck Stanz bei Landeck Stanz,Stanz bei Landeck 47.14758 10.5534 P PPLA3 AT 07 706 70626 0 1025 Europe/Vienna 2011-07-31
-2764648 Stanzach Stanzach Stanzach 47.38333 10.56667 P PPLA3 AT 07 708 70830 0 961 Europe/Vienna 2011-07-31
-2764651 Stans Stans Stans 47.36667 11.71667 P PPLA3 AT 07 709 70928 0 555 Europe/Vienna 2011-07-31
-2764669 Stams Stams 47.27603 10.98315 P PPLA3 AT 07 702 70221 0 683 Europe/Vienna 2011-09-09
-2764682 Stambach Stambach 47.33333 15.93333 P PPLA3 AT 06 607 60742 0 601 Europe/Vienna 2011-07-31
-2764687 Stallhofen Stallhofen 47.05 15.21667 P PPLA3 AT 06 616 61624 0 413 Europe/Vienna 2011-07-31
-2764692 Stallhof Stallhof 46.88333 15.28333 P PPLA3 AT 06 603 60335 0 327 Europe/Vienna 2011-07-31
-2764699 Stallehr Stallehr 47.13306 9.85 P PPLA3 AT 08 801 80125 0 653 Europe/Vienna 2011-07-31
-2764702 Stall Stall 46.89056 13.03694 P PPLA3 AT 02 206 20636 0 967 Europe/Vienna 2011-07-31
-2764704 Stainz bei Straden Stainz bei Straden Stainz,Stainz bei Straden 46.82444 15.89222 P PPLA3 AT AT 06 604 60451 0 251 Europe/Vienna 2011-07-31
-2764706 Stainz Stainz Stainz 46.89444 15.26722 P PPLA3 AT 06 603 60333 0 337 Europe/Vienna 2011-07-31
-2764708 Stainach Stainach Steinach 47.53343 14.10872 P PPLA3 AT AT 06 612 61244 0 663 Europe/Vienna 2011-07-31
-2764717 Stadtschlaining Stadtschlaining Schlaining,Stadtschlaining 47.31667 16.28333 P PPLA3 AT AT 01 109 10923 0 343 Europe/Vienna 2011-07-31
-2764721 Stadl-Paura Stadl-Paura Shtadl'-Paura,Stadl-Paura,Штадль-Паура 48.08333 13.86667 P PPLA3 AT 04 418 41820 0 360 Europe/Vienna 2011-07-31
-2764736 Stadl an der Mur Stadl an der Mur Stadl,Stadl an der Mur 47.08333 13.96667 P PPLA3 AT AT 06 614 61430 0 890 Europe/Vienna 2011-07-31
-2764746 Staatz Staatz 48.66667 16.48333 P PPLA3 AT 03 316 31649 0 282 Europe/Vienna 2011-07-31
-2764783 Spitz Spitz 48.3656 15.41416 P PPLA3 AT 03 313 31344 0 223 Europe/Vienna 2011-07-31
-2764786 Spittal an der Drau Spittal an der Drau Shpittal',Spital,Spittal,Spittal an der Drau,Шпитталь 46.8 13.5 P PPLA3 AT 02 206 20635 16363 553 Europe/Vienna 2011-07-31
-2764788 Spital am Semmering Spital am Semmering Spital,Spital am Semmering 47.61345 15.75096 P PPLA3 AT AT 06 613 61313 0 790 Europe/Vienna 2011-09-09
-2764797 Spillern Spillern 48.38333 16.25 P PPLA3 AT 03 312 31227 0 177 Europe/Vienna 2011-07-31
-2764806 Spielfeld Spielfeld Spielfeld 46.70556 15.63722 P PPLA3 AT 06 610 61039 0 258 Europe/Vienna 2011-07-31
-2764812 Spielberg bei Knittelfeld Spielberg bei Knittelfeld Shpil'berg (Knittel'fel'd),Spielberg,Spielberg bei Knittelfeld,Шпильберг (Книттельфельд) 47.21667 14.78333 P PPLA3 AT AT 06 609 60914 0 707 Europe/Vienna 2011-07-31
-2764858 Spannberg Spannberg 48.46393 16.73647 P PPLA3 AT 03 308 30854 0 170 Europe/Vienna 2011-07-31
-2764881 Sonntagberg Sonntagberg 47.99561 14.76065 P PPLA3 AT 03 305 30533 0 680 Europe/Vienna 2011-07-31
-2764937 Sommerein Sommerein 47.98333 16.65 P PPLA3 AT 03 307 30724 0 257 Europe/Vienna 2011-07-31
-2764951 Sollenau Sollenau 47.88333 16.25 P PPLA3 AT 03 323 32327 0 277 Europe/Vienna 2011-07-31
-2764953 Söll Soll Zjoll',Зёлль 47.50378 12.19221 P PPLA3 AT 07 705 70526 0 691 Europe/Vienna 2011-07-31
-2764957 Sölden Soelden Zjol'den,Зёльден 46.96667 11 P PPLA3 AT 07 702 70220 3449 1368 1526 Europe/Vienna 2011-07-31
-2764958 Hall in Tirol Hall in Tirol Hall,Hall in Tirol,Khall'-in-Tirol',Solbad Hall,Solbad Hall in Tirol,Халль-ин-Тироль 47.28333 11.51667 P PPLA3 AT AT 07 703 70354 12460 587 Europe/Vienna 2011-07-31
-2764964 Södingberg Sodingberg 47.1 15.16667 P PPLA3 AT 06 616 61623 0 520 Europe/Vienna 2011-07-31
-2764970 Söchau Sochau Sochau,Söchau 47.03333 16.01667 P PPLA3 AT 06 605 60512 0 277 Europe/Vienna 2011-07-31
-2764972 Soboth Soboth Soboth 46.68139 15.07833 P PPLA3 AT 06 603 60332 0 1009 Europe/Vienna 2011-07-31
-2764981 Sitzendorf an der Schmida Sitzendorf an der Schmida Sitzendorf,Sitzendorf an der Schmida 48.58333 15.93333 P PPLA3 AT AT 03 310 31043 0 233 Europe/Vienna 2011-07-31
-2764988 Sittersdorf Sittersdorf Sittersdorf,Zitaraves,Zittersdorf,Žitaraves,Зиттерсдорф 46.54444 14.60583 P PPLA3 AT AT 02 208 20815 0 501 Europe/Vienna 2011-07-31
-2764993 Sistrans Sistrans 47.23333 11.45 P PPLA3 AT 07 703 70353 0 988 Europe/Vienna 2011-07-31
-2765019 Sinabelkirchen Sinabelkirchen Sinabelkirchen,Zinabel'kirkhen,Зинабелькирхен 47.1 15.81667 P PPLA3 AT 06 617 61748 0 310 Europe/Vienna 2011-07-31
-2765036 Silz Silz Silz,Zil'c,Зильц 47.26667 10.93333 P PPLA3 AT 07 702 70219 0 650 Europe/Vienna 2011-07-31
-2765044 Sillian Sillian Sillian 46.75278 12.42111 P PPLA3 AT 07 707 70728 0 1218 Europe/Vienna 2011-07-31
-2765050 Silbertal Silbertal Silbertal,Silberthal 47.09368 9.98314 P PPLA3 AT AT 08 801 80123 0 886 Europe/Vienna 2011-09-09
-2765065 Sigmundsherberg Sigmundsherberg 48.68333 15.75 P PPLA3 AT 03 311 31124 0 435 Europe/Vienna 2011-07-31
-2765080 Sierning Sierning 48.04343 14.30935 P PPL AT 04 415 41516 8722 359 Europe/Vienna 2011-06-28
-2765083 Sierndorf Sierndorf 48.41667 16.15 P PPLA3 AT 03 312 31226 0 212 Europe/Vienna 2011-07-31
-2765091 Sieghartskirchen Sieghartskirchen 48.25531 16.01223 P PPLA3 AT 03 321 32131 7062 198 Europe/Vienna 2011-07-31
-2765092 Sieggraben Sieggraben Sieggraben,Szikra 47.65 16.36667 P PPLA3 AT 01 106 10613 0 575 Europe/Vienna 2011-07-31
-2765095 Siegersdorf bei Herberstein Siegersdorf bei Herberstein Siegersdorf,Siegersdorf bei Herberstein 47.2 15.78333 P PPLA3 AT AT 06 607 60740 0 412 Europe/Vienna 2011-07-31
-2765139 Sibratsgfäll Sibratsgfall Dorf,Sibratsgfall,Sibratsgfäll 47.42667 10.03806 P PPLA3 AT AT 08 802 80237 0 931 Europe/Vienna 2011-07-31
-2765150 Serfaus Serfaus Serfaus,Zerfaus,Зерфаус 47.03333 10.6 P PPLA3 AT 07 706 70624 1136 1467 Europe/Vienna 2011-07-31
-2765162 Senftenberg Senftenberg Senftenberg 48.43333 15.55 P PPLA3 AT 03 313 31343 0 435 Europe/Vienna 2011-07-31
-2765168 Semriach Semriach Semriach,Zemriakh,Земриах 47.21667 15.4 P PPLA3 AT 06 606 60645 0 695 Europe/Vienna 2011-07-31
-2765170 Semmering Semmering Semmering,Zemmering,Земмеринг 47.63347 15.82993 P PPLA3 AT 03 318 31838 642 980 986 Europe/Vienna 2011-07-31
-2765174 Selzthal Selzthal Selzthal 47.55 14.33333 P PPLA3 AT 06 612 61243 0 1010 Europe/Vienna 2011-07-31
-2765207 Seiersberg Seiersberg 47 15.4 P PPLA3 AT 06 606 60644 0 342 Europe/Vienna 2011-07-31
-2765221 Seibersdorf Seibersdorf 47.96667 16.51667 P PPLA3 AT 03 306 30633 0 181 Europe/Vienna 2011-07-31
-2765224 Seggauberg Seggauberg Seggauberg 46.76667 15.51667 P PPLA3 AT 06 610 61038 0 324 Europe/Vienna 2011-07-31
-2765231 Seewalchen Seewalchen 47.95246 13.58382 P PPL AT 04 4959 493 Europe/Vienna 2011-06-21
-2765257 Seekirchen am Wallersee Seekirchen am Wallersee Seekirchen,Seekirchen Markt 47.9 13.13333 P PPLA3 AT 05 503 50339 9865 510 Europe/Vienna 2011-07-31
-2765275 Seeham Seeham 47.96667 13.08333 P PPLA3 AT 05 503 50332 0 501 Europe/Vienna 2011-07-31
-2765278 Seefeld in Tirol Seefeld in Tirol Seefeld,Zeefel'd (Tirol'),Зеефельд (Тироль) 47.33016 11.18786 P PPLA3 AT AT 07 703 70351 3028 1180 1178 Europe/Vienna 2011-07-31
-2765286 Seeboden Seeboden Seeboden 46.82194 13.495 P PPLA3 AT 02 206 20634 6221 592 Europe/Vienna 2011-07-31
-2765292 Seebenstein Seebenstein 47.68333 16.13333 P PPLA3 AT 03 318 31837 0 353 Europe/Vienna 2011-07-31
-2765331 See See Messnerhaus,See,Zee,Зее 47.08333 10.46667 P PPLA3 AT AT 07 706 70623 0 1036 Europe/Vienna 2011-07-31
-2765335 Seckau Seckau Seckau 47.26667 14.78333 P PPLA3 AT 06 609 60913 0 848 Europe/Vienna 2011-07-31
-2765338 Sebersdorf Sebersdorf Sebersdorf 47.2 15.98333 P PPLA3 AT 06 607 60739 0 367 Europe/Vienna 2011-07-31
-2765342 Schwoich Schwoich 47.546 12.14049 P PPLA3 AT 07 705 70525 0 571 Europe/Vienna 2011-07-31
-2765354 Schwendt Schwendt 47.63333 12.38333 P PPLA3 AT 07 704 70418 0 654 Europe/Vienna 2011-07-31
-2765360 Schwendau Schwendau Schwendau 47.19753 11.85897 P PPLA3 AT 07 709 70927 0 618 Europe/Vienna 2011-07-31
-2765383 Schweiggers Schweiggers 48.66667 15.06667 P PPLA3 AT 03 325 32525 0 638 Europe/Vienna 2011-07-31
-2765388 Schwechat Schwechat Nova Schwechat,Schwechat,Shvekhat,Швехат 48.13333 16.46667 P PPLA3 AT 03 324 32419 15711 163 Europe/Vienna 2011-07-31
-2765390 Schwaz Schwaz 47.35169 11.71014 P PPLA3 AT 07 709 70926 12507 537 Europe/Vienna 2011-07-31
-2765464 Schwarzenbach an der Pielach Schwarzenbach an der Pielach Schwarzenbach,Schwarzenbach an der Pielach 47.93333 15.38333 P PPLA3 AT AT 03 319 31939 0 750 Europe/Vienna 2011-07-31
-2765472 Schwarzenbach Schwarzenbach Ehppenshtajn,Schwarzenbach,Schwarzenbach Markt,Эппенштайн 47.63333 16.35 P PPLA3 AT 03 323 32326 0 379 Europe/Vienna 2011-07-31
-2765478 Schwarzenau Schwarzenau 48.74436 15.25838 P PPLA3 AT 03 325 32524 0 499 Europe/Vienna 2011-07-31
-2765487 Schwarzau im Schwarzautal Schwarzau im Schwarzautal Schwarzau,Schwarzau im Schwarzautal 46.86667 15.66667 P PPLA3 AT AT 06 604 60450 0 340 Europe/Vienna 2011-07-31
-2765488 Schwarzau im Gebirge Schwarzau im Gebirge Schwarzau 47.81223 15.70581 P PPLA3 AT AT 03 318 31836 0 610 Europe/Vienna 2011-07-31
-2765495 Schwarzach im Pongau Schwarzach im Pongau Schwarzach,Schwarzach im Pongau,Shvarcakh (Pongau),Шварцах (Понгау) 47.31667 13.15 P PPLA3 AT AT 05 504 50421 0 613 Europe/Vienna 2011-07-31
-2765499 Schwarzach Schwarzach 47.44904 9.76213 P PPLA3 AT 08 802 80235 0 430 Europe/Vienna 2011-07-31
-2765508 Schwanenstadt Schwanenstadt Shvanenshtadt,Шваненштадт 48.05537 13.77505 P PPLA3 AT 04 417 41738 0 390 Europe/Vienna 2011-07-31
-2765515 Schwanberg Schwanberg Schwanberg 46.75833 15.20833 P PPLA3 AT 06 603 60331 0 401 Europe/Vienna 2011-07-31
-2765538 Schwadorf Schwadorf 48.06667 16.58333 P PPLA3 AT 03 324 32418 0 165 Europe/Vienna 2011-07-31
-2765558 Schützen am Gebirge Schutzen am Gebirge Gschiess,Schutzen am Gebirge,Schützen am Gebirge,Shjutcen-am-Gebirge,Шютцен-ам-Гебирге 47.85233 16.62334 P PPLA3 AT AT 01 103 10314 0 126 Europe/Vienna 2012-02-03
-2765581 Schruns Schruns Schruns,Shruns,shi lun si,Шрунс,施伦斯 47.06667 9.91667 P PPLA3 AT 08 801 80122 3506 689 Europe/Vienna 2011-07-31
-2765601 Schrems bei Frohnleiten Schrems bei Frohnleiten Schrems,Schrems bei Frohnleiten 47.26667 15.35 P PPLA3 AT AT 06 606 60643 0 674 Europe/Vienna 2011-07-31
-2765602 Schrems Schrems Schrems 48.78333 15.06667 P PPLA3 AT 03 309 30935 5811 526 Europe/Vienna 2011-07-31
-2765614 Schrattenthal Schrattenthal 48.7 15.9 P PPLA3 AT 03 310 31041 0 244 Europe/Vienna 2011-07-31
-2765619 Schrattenberg Schrattenberg 48.71667 16.71667 P PPLA3 AT 03 316 31646 0 226 Europe/Vienna 2011-07-31
-2765621 Schrattenbach Schrattenbach 47.77902 15.9906 P PPLA3 AT 03 318 31834 0 556 Europe/Vienna 2011-07-31
-2765637 Schottwien Schottwien 47.65683 15.8725 P PPLA3 AT 03 318 31833 0 570 Europe/Vienna 2011-07-31
-2765650 Schoppernau Schoppernau 47.31333 10.0175 P PPLA3 AT 08 802 80233 0 849 Europe/Vienna 2011-07-31
-2765656 Schönwies Schonwies Schonwies,Schönwies 47.19665 10.65742 P PPLA3 AT 07 706 70622 0 738 Europe/Vienna 2011-07-31
-2765715 Schönberg im Stubaital Schoenberg im Stubaital Schonberg,Schonberg im Stubaital,Schönberg,Schönberg im Stubaital,Shjonberg,Шёнберг 47.18333 11.41667 P PPLA3 AT 07 703 70350 1013 811 Europe/Vienna 2011-07-31
-2765725 Schönbach Schonbach 48.45 15.03333 P PPLA3 AT 03 325 32523 0 798 Europe/Vienna 2011-07-31
-2765730 Schönau an der Triesting Schonau an der Triesting Schonau,Schönau 47.93452 16.25376 P PPLA3 AT AT 03 306 30631 0 250 Europe/Vienna 2011-07-31
-2765766 Schöder Schoder 47.18333 14.1 P PPLA3 AT 06 614 61428 0 1031 Europe/Vienna 2011-07-31
-2765796 Schnifis Schnifis 47.21667 9.73306 P PPLA3 AT 08 804 80419 0 713 Europe/Vienna 2011-07-31
-2765798 Schnepfau Schnepfau 47.35 9.95 P PPLA3 AT 08 802 80232 0 739 Europe/Vienna 2011-07-31
-2765837 Schmirn Schmirn 47.08333 11.56667 P PPLA3 AT 07 703 70349 0 1436 Europe/Vienna 2011-07-31
-2765888 Schlitters Schlitters Schlitters 47.36667 11.83333 P PPLA3 AT 07 709 70925 0 1024 Europe/Vienna 2011-07-31
-2765890 Schlins Schlins 47.2 9.7 P PPLA3 AT 08 804 80418 0 499 Europe/Vienna 2011-07-31
-2765917 Schleedorf Schleedorf 47.95 13.15 P PPLA3 AT 05 503 50331 0 600 Europe/Vienna 2011-07-31
-2765928 Schlatt Schlatt 48.07177 13.78904 P PPLA3 AT 04 417 41736 0 404 Europe/Vienna 2011-07-31
-2765961 Schladming Schladming Shladming,Шладминг 47.39289 13.68699 P PPLA3 AT 06 612 61242 4659 738 Europe/Vienna 2011-07-31
-2766010 Schiefling am See Schiefling am See Schiefling,Schiefling am See,Shifling-am-Zee,Шифлинг-ам-Зее 46.60444 14.0975 P PPLA3 AT AT 02 204 20432 0 567 Europe/Vienna 2011-07-31
-2766036 Schenkenfelden Schenkenfelden Schenkenfelden 48.50273 14.36188 P PPLA3 AT 04 416 41622 0 737 Europe/Vienna 2011-07-31
-2766047 Scheifling Scheifling Scheifling,Shajfling,Шайфлинг 47.15 14.4 P PPLA3 AT 06 614 61427 1600 734 Europe/Vienna 2011-07-31
-2766080 Scheibbs Scheibbs 48.00474 15.16817 P PPLA3 AT 03 320 32013 4600 344 Europe/Vienna 2011-07-31
-2766084 Scheffau am Wilden Kaiser Scheffau am Wilden Kaiser Scheffau 47.52943 12.25139 P PPLA3 AT AT 07 705 70524 0 749 Europe/Vienna 2011-07-31
-2766085 Scheffau am Tennengebirge Scheffau am Tennengebirge Scheffau 47.58831 13.2202 P PPLA3 AT AT 05 502 50212 0 497 Europe/Vienna 2011-07-31
-2766115 Schattwald Schattwald Schattwald 47.51667 10.45 P PPLA3 AT 07 708 70829 0 1177 Europe/Vienna 2011-07-31
-2766121 Schattendorf Schattendorf 47.70973 16.50979 P PPLA3 AT 01 106 10612 0 250 Europe/Vienna 2011-11-13
-2766136 Scharnstein Scharnstein Scharnstein,Sharnshtajn,Шарнштайн 47.90426 13.96135 P PPL AT 04 407 40719 4631 512 Europe/Vienna 2011-06-26
-2766140 Scharnitz Scharnitz 47.38899 11.26455 P PPLA3 AT 07 703 70348 0 963 Europe/Vienna 2011-07-31
-2766143 Scharndorf Scharndorf 48.08333 16.78333 P PPLA3 AT 03 307 30722 0 185 Europe/Vienna 2011-07-31
-2766155 Schärding Scharding Scharding,Schärding 48.45294 13.43722 P PPL AT 04 414 41422 4919 319 Europe/Vienna 2011-06-26
-2766162 Schandorf Schandorf Cemba,Schandorf,Shandorf,Čemba,Шандорф 47.23333 16.41667 P PPLA3 AT 01 109 10932 0 249 Europe/Vienna 2011-07-31
-2766210 Schäffern Schaffern Schaffern,Schäffern 47.46667 16.1 P PPLA3 AT 06 607 60736 0 682 Europe/Vienna 2011-07-31
-2766233 Schachendorf Schachendorf Cajta,Csajta,Schachendorf,Shakhendorf,Čajta,Шахендорф 47.26667 16.43333 P PPLA3 AT 01 109 10922 0 279 Europe/Vienna 2011-07-31
-2766252 Sautens Sautens 47.2 10.86667 P PPLA3 AT 07 702 70218 0 971 Europe/Vienna 2011-07-31
-2766309 Sattledt Sattledt Sattledt 48.06667 14.05 P PPLA3 AT 04 418 41817 0 399 Europe/Vienna 2011-07-31
-2766322 Satteins Satteins 47.21667 9.66667 P PPLA3 AT 08 804 80417 0 479 Europe/Vienna 2011-07-31
-2766340 Sankt Wolfgang im Salzkammergut Sankt Wolfgang im Salzkammergut Sankt Wolfgang,Sankt-Vol'fgang-im-Zal'ckammergut,Санкт-Вольфганг-им-Зальцкаммергут 47.73932 13.44666 P PPL AT AT 04 407 40717 2794 556 Europe/Vienna 2011-06-26
-2766351 Sankt Veit im Pongau Sankt Veit im Pongau Sankt Veit,Sankt Veit Pongau,Sankt Veit im Pongau,Sankt-Vajt (Pongau),St. Veit,St. Veit im Pongau,Санкт-Вайт (Понгау) 47.33333 13.15 P PPLA3 AT AT 05 504 50420 0 763 Europe/Vienna 2011-07-31
-2766357 Sankt Veit an der Gölsen Sankt Veit an der Golsen Sankt-Fajt-an-der-Tristing,Sankt-Veit,Санкт-Файт-ан-дер-Тристинг 48.0432 15.66942 P PPLA3 AT AT 03 314 31412 0 367 Europe/Vienna 2011-07-31
-2766359 Sankt Veit an der Glan Sankt Veit an der Glan Sankt Veit,Sankt Veit an der Glan,Sankt-Vajt-an-der-Glan,Санкт-Вайт-ан-дер-Глан 46.76806 14.36028 P PPL AT 02 13116 485 Europe/Vienna 2012-01-18
-2766361 Sankt Veit am Vogau Sankt Veit am Vogau Sankt Veit,Sankt Veit am Vogau,Sankt-Fajt-am-Fogau,Санкт-Файт-ам-Фогау 46.73333 15.61667 P PPLA3 AT AT 06 610 61036 0 255 Europe/Vienna 2011-07-31
-2766365 Sankt Valentin Sankt Valentin Sankt Valentin 48.16667 14.51667 P PPL AT 03 9063 269 Europe/Vienna 2012-01-18
-2766372 Sankt Ulrich bei Steyr Sankt Ulrich bei Steyr Sankt Ulrich,Sankt-Ul'rikh-Shtajr,Санкт-Ульрих-Штайр 48.02185 14.42419 P PPLA3 AT AT 04 415 41514 0 375 Europe/Vienna 2011-07-31
-2766373 Sankt Ulrich am Waasen Sankt Ulrich am Waasen Sankt Ulrich,Sankt Ulrich am Waasen 46.93333 15.53333 P PPLA3 AT AT 06 610 61035 0 369 Europe/Vienna 2011-07-31
-2766390 Sankt Stefan ob Stainz Sankt Stefan ob Stainz Sankt Stefan,Sankt Stefan ob Stainz 46.92861 15.25889 P PPLA3 AT AT 06 603 60330 0 376 Europe/Vienna 2011-07-31
-2766391 Sankt Stefan ob Leoben Sankt Stefan ob Leoben Sankt Stefan ob Leoben 47.3 14.98333 P PPLA3 AT 06 611 61115 0 761 Europe/Vienna 2011-07-31
-2766392 Sankt Stefan im Rosental Sankt Stefan im Rosental Sankt Stefan,Sankt Stefan im Rosental,Sankt Stefan im Rosenthal,Sankt Stefan im Rosenthale,Sankt-Shtefan-im-Rozental',Санкт-Штефан-им-Розенталь 46.90389 15.71 P PPLA3 AT AT 06 604 60449 0 327 Europe/Vienna 2011-07-31
-2766410 Sankt Ruprecht an der Raab Sankt Ruprecht an der Raab Sankt Ruprecht 47.15336 15.66256 P PPLA3 AT AT 06 617 61747 0 381 Europe/Vienna 2011-07-31
-2766420 Sankt Radegund bei Graz Sankt Radegund bei Graz Radegund bei Graz,Sankt Radegund,Sankt Radegund bei Graz 47.16667 15.48333 P PPLA3 AT AT 06 606 60642 0 691 Europe/Vienna 2011-07-31
-2766429 Sankt Pölten Sankt Polten Poelten,Pölten,Sankt Poelten,Sankt Polten,Sankt Polton,Sankt Pölten,Sankt Pölton,Sankt-Pjol'ten,St. Poeitn,St. Poelten,St. Pöitn,St. Pölten,sheng pa er teng,snqt pltn,Санкт-Пёльтен,סנקט פלטן,ザンクト・ペルテン,聖帕爾滕 48.2 15.63333 P PPLA AT 03 49001 275 Europe/Vienna 2012-01-18
-2766432 Sankt Peter ob Judenburg Sankt Peter ob Judenburg Sankt Peter,Sankt Peter ob Judenburg 47.18417 14.58639 P PPLA3 AT AT 06 608 60821 0 792 Europe/Vienna 2011-07-31
-2766437 Sankt Peter im Sulmtal Sankt Peter im Sulmtal Sankt Peter,Sankt Peter im Sulmtal,Sankt Peter im Sulmthale 46.75 15.25 P PPLA3 AT AT 06 603 60329 0 410 Europe/Vienna 2011-07-31
-2766439 Sankt Peter-Freienstein Sankt Peter-Freienstein Freyenstein,Sankt Peter,Sankt Peter-Freienstein,Sankt-Peter-Frajenshtajn,Санкт-Петер-Фрайенштайн 47.38333 15.01667 P PPLA3 AT AT 06 611 61114 0 859 Europe/Vienna 2011-07-31
-2766443 Sankt Peter am Ottersbach Sankt Peter am Ottersbach Sankt Peter,Sankt Peter am Ottersbach 46.79778 15.75917 P PPLA3 AT AT 06 615 61516 0 273 Europe/Vienna 2011-07-31
-2766444 Sankt Peter am Kammersberg Sankt Peter am Kammersberg Sankt Peter,Sankt Peter am Kammersberg 47.18333 14.18333 P PPLA3 AT AT 06 614 61425 0 831 Europe/Vienna 2011-07-31
-2766470 Sankt Oswald bei Plankenwarth Sankt Oswald bei Plankenwarth Sankt Oswald,Sankt Oswald bei Plankenwarth 47.08333 15.26667 P PPLA3 AT AT 06 606 60641 0 474 Europe/Vienna 2011-07-31
-2766483 Sankt Nikolai ob Draßling Sankt Nikolai ob Drassling Sankt Nikolai,Sankt Nikolai ob Drassling,Sankt Nikolai ob Draßling 46.80889 15.65083 P PPLA3 AT AT 06 610 61034 0 282 Europe/Vienna 2011-07-31
-2766484 Sankt Nikolai im Sölktal Sankt Nikolai im Solktal Sankt Nikolai,Sankt Nikolai im Solktal,Sankt Nikolai im Sölktal 47.31667 14.05 P PPLA3 AT AT 06 612 61241 0 1203 Europe/Vienna 2011-07-31
-2766485 Sankt Nikolai im Sausal Sankt Nikolai im Sausal Sankt Nikolai,Sankt Nikolai im Sausal 46.82111 15.45194 P PPLA3 AT AT 06 610 61033 0 325 Europe/Vienna 2011-07-31
-2766495 Sankt Michael in Obersteiermark Sankt Michael in Obersteiermark Sankt Michael,Sankt Michael in Obersteiermark,Sankt-Mikhel' (Verkhnjaja Shtirija),Санкт-Михель (Верхняя Штирия) 47.33333 15 P PPLA3 AT AT 06 611 61113 0 567 Europe/Vienna 2011-07-31
-2766496 Sankt Michael im Lungau Sankt Michael im Lungau Sankt Michael,Sankt Michael Lungau,Sankt Michael im Lungau,Sankt-Mikhaehl' (Lungau),St Michael im Lungau,Санкт-Михаэль (Лунгау) 47.1 13.63333 P PPLA3 AT AT 05 505 50509 0 1088 Europe/Vienna 2011-07-31
-2766497 Sankt Michael im Burgenland Sankt Michael im Burgenland Michael,Sankt Michael,Sankt Michael an der Strem,Sankt Michael im Burgenland,Sankt Mikhel' (Burgenland),Санкт Михель (Бургенланд) 47.13333 16.26667 P PPLA3 AT AT 01 104 10413 0 241 Europe/Vienna 2011-07-31
-2766508 Sankt Martin im Sulmtal Sankt Martin im Sulmtal Sankt Martin,Sankt Martin im Sulmtal 46.75611 15.29722 P PPLA3 AT AT 06 603 60327 0 336 Europe/Vienna 2011-07-31
-2766511 Sankt Martin bei Lofer Sankt Martin bei Lofer Sankt Martin,Sankt Martin bei Lofer 47.56667 12.7 P PPLA3 AT AT 05 506 50620 0 683 Europe/Vienna 2011-07-31
-2766513 Sankt Martin an der Raab Sankt Martin an der Raab Sankt Martin,Sankt Martin an der Raab 46.9225 16.13611 P PPLA3 AT AT 01 105 10509 0 241 Europe/Vienna 2011-07-31
-2766520 Sankt Martin am Grimming Sankt Martin am Grimming Sankt Martin,Sankt Martin an der Salza 47.48873 13.98105 P PPLA3 AT AT 06 612 61240 0 699 Europe/Vienna 2011-07-31
-2766547 Sankt Margarethen im Lungau Sankt Margarethen im Lungau Sankt Margarethen,Sankt Margarethen im Lungau 47.08333 13.68333 P PPLA3 AT AT 05 505 50508 0 1041 Europe/Vienna 2011-07-31
-2766549 Sankt Margarethen im Burgenland Sankt Margarethen im Burgenland Sankt Margarethen,Sankt-Margareten (Burgenland),Санкт-Маргаретен (Бургенланд) 47.80335 16.60875 P PPLA3 AT AT 01 103 10313 0 147 Europe/Vienna 2011-07-31
-2766551 Sankt Margarethen bei Knittelfeld Sankt Margarethen bei Knittelfeld Sankt Margarethen,Sankt Margarethen bei Knittelfeld 47.21667 14.86667 P PPLA3 AT AT 06 609 60912 0 833 Europe/Vienna 2011-07-31
-2766552 Sankt Margarethen an der Sierning Sankt Margarethen an der Sierning Margarethen,Margarethen an der Sierning 48.1591 15.49055 P PPLA3 AT AT 03 319 31938 0 253 Europe/Vienna 2011-07-31
-2766553 Sankt Margarethen an der Raab Sankt Margarethen an der Raab Sankt Margarethen,Sankt Margarethen an der Raab,Sankt-Margareten-na-Rabe,Санкт-Маргаретен-на-Рабе 47.05 15.75 P PPLA3 AT AT 06 617 61746 0 323 Europe/Vienna 2011-07-31
-2766562 Sankt Marein im Mürztal Sankt Marein im Murztal Sankt Marein,Sankt Marein im Murztal,Sankt Marein im Murztale,Sankt Marein im Murzthale,Sankt Marein im Mürztal,Sankt Marein im Mürztale,Sankt-Marajn (Mjurctal'),Санкт-Марайн (Мюрцталь) 47.46667 15.36667 P PPLA3 AT AT 06 602 60217 0 523 Europe/Vienna 2011-07-31
-2766563 Sankt Marein bei Neumarkt Sankt Marein bei Neumarkt Sankt Marein,Sankt Marein bei Neumarkt 47.06667 14.41667 P PPLA3 AT AT 06 614 61424 0 938 Europe/Vienna 2011-07-31
-2766564 Sankt Marein bei Knittelfeld Sankt Marein bei Knittelfeld Sankt Marein,Sankt Marein bei Knittelfeld 47.26667 14.86667 P PPLA3 AT AT 06 609 60911 0 671 Europe/Vienna 2011-07-31
-2766565 Sankt Marein bei Graz Sankt Marein bei Graz Sankt Marein,Sankt Marein am Pickelbach,Sankt Marein bei Graz 47.01583 15.68389 P PPLA3 AT AT 06 606 60640 0 358 Europe/Vienna 2011-07-31
-2766576 Sankt Lorenzen im Mürztal Sankt Lorenzen im Murztal Sankt Lorenzen,Sankt Lorenzen im Murztal,Sankt Lorenzen im Mürztal,Sankt-Lorencen (Mjurctal'),Санкт-Лоренцен (Мюрцталь) 47.48333 15.36667 P PPLA3 AT AT 06 602 60216 0 568 Europe/Vienna 2011-07-31
-2766579 Sankt Lorenzen bei Scheifling Sankt Lorenzen bei Scheifling Sankt Lorenzen,Sankt Lorenzen bei Scheifling 47.14556 14.40583 P PPLA3 AT AT 06 614 61423 0 793 Europe/Vienna 2011-07-31
-2766580 Sankt Lorenzen bei Knittelfeld Sankt Lorenzen bei Knittelfeld Sankt Lorenzen,Sankt Lorenzen bei Knittelfeld 47.25 14.88333 P PPLA3 AT AT 06 609 60910 0 603 Europe/Vienna 2011-07-31
-2766581 Sankt Lorenzen am Wechsel Sankt Lorenzen am Wechsel Sankt Lorenzen,Sankt Lorenzen am Wechsel 47.43333 15.95 P PPLA3 AT AT 06 607 60733 0 644 Europe/Vienna 2011-07-31
-2766591 Sankt Lorenz Sankt Lorenz 47.81667 13.36667 P PPLA3 AT 04 417 41735 0 479 Europe/Vienna 2011-07-31
-2766599 Sankt Leonhard am Forst Sankt Leonhard am Forst Sankt Leonhard,Sankt Leonhard am Forst,Sankt-Leonkhard-am-Forst,Санкт-Леонхард-ам-Форст 48.13333 15.28333 P PPLA3 AT AT 03 315 31539 0 240 Europe/Vienna 2011-07-31
-2766615 Sankt Lambrecht Sankt Lambrecht Sankt Lambrecht 47.06667 14.3 P PPLA3 AT 06 614 61422 0 1047 Europe/Vienna 2011-07-31
-2766625 Sankt Kathrein am Offenegg Sankt Kathrein am Offenegg Sankt Kathrein,Sankt Kathrein am Offenegg 47.3 15.58333 P PPLA3 AT AT 06 617 61745 0 969 Europe/Vienna 2011-07-31
-2766626 Sankt Kathrein am Hauenstein Sankt Kathrein am Hauenstein Sankt Kathrein,Sankt Kathrein am Hauenstein 47.48333 15.68333 P PPLA3 AT AT 06 617 61744 0 966 Europe/Vienna 2011-07-31
-2766629 Sankt Katharein an der Laming Sankt Katharein an der Laming Katharein,Sankt Katharein,Sankt Katherein,Sankt Kathrein,Sankt Kathrein an der Laming 47.47069 15.16319 P PPLA3 AT AT 06 602 60215 0 646 Europe/Vienna 2011-07-31
-2766632 Sankt Josef (Weststeiermark) Sankt Josef (Weststeiermark) 46.90917 15.33639 P PPLA3 AT 06 603 60326 0 351 Europe/Vienna 2011-07-31
-2766636 Sankt Johann in Tirol Sankt Johann in Tirol Sankt Johann,Sankt-Jokhann (Tirol'),Санкт-Йоханн (Тироль) 47.5233 12.4232 P PPLA3 AT AT 07 704 70416 0 659 Europe/Vienna 2012-01-05
-2766638 Sankt Johann in der Haide Sankt Johann in der Haide Sankt Johann,Sankt Johann in der Haide 47.26667 16.01667 P PPLA3 AT AT 06 607 60732 0 412 Europe/Vienna 2011-07-31
-2766640 Sankt Johann im Saggautal Sankt Johann im Saggautal Sankt Johann,Sankt Johann im Saggautal,Sankt Johann im Saggauthale 46.70389 15.40278 P PPLA3 AT AT 06 610 61032 0 344 Europe/Vienna 2011-07-31
-2766643 Sankt Johann im Pongau Sankt Johann im Pongau Sankt Johann,Sankt Johann im Pongau,Sankt-Jokhann (Pongau),St. John's im Pougau,St. John’s im Pougau,Санкт-Йоханн (Понгау) 47.35 13.2 P PPLA3 AT 05 504 50418 10887 597 Europe/Vienna 2011-07-31
-2766645 Sankt Johann bei Herberstein Sankt Johann bei Herberstein Sankt Johann,Sankt Johann bei Herberstein 47.2 15.8 P PPLA3 AT AT 06 607 60731 0 425 Europe/Vienna 2011-07-31
-2766648 Sankt Johann am Tauern Sankt Johann am Tauern Sankt Johann,Sankt Johann am Tauern 47.35 14.46667 P PPLA3 AT AT 06 608 60819 0 1085 Europe/Vienna 2011-07-31
-2766661 Sankt Jakob im Walde Sankt Jakob im Walde Sankt Jakob,Sankt Jakob im Walde 47.46667 15.78333 P PPLA3 AT AT 06 607 60730 0 941 Europe/Vienna 2011-07-31
-2766675 Sankt Jakob Sankt Jakob Sankt Jakob,Sankt Jakob im Rosental,Sankt Jakob im Rosenthal,Sveti Jakob 46.54778 14.05722 P PPL AT 02 4481 490 Europe/Vienna 2012-01-18
-2766677 Sankt Ilgen Sankt Ilgen Sankt Ilgen 47.55 15.16667 P PPLA3 AT 06 602 60214 0 861 Europe/Vienna 2011-07-31
-2766680 Sankt Gotthard im Mühlkreis Sankt Gotthard im Muhlkreis Sankt Gotthard,Sankt Gotthard im Muhlkreis,Sankt Gotthard im Mühlkreis 48.3802 14.13185 P PPLA3 AT AT 04 416 41621 0 468 Europe/Vienna 2011-12-20
-2766683 Sankt Gilgen Sankt Gilgen Sankt Gilgen,Sankt-Gilgen,St. AEgidius,St. Ægidius,Санкт-Гилген 47.76667 13.36667 P PPLA3 AT AT 05 503 50330 3753 544 Europe/Vienna 2011-07-31
-2766687 Sankt Georgen ob Murau Sankt Georgen ob Murau Sankt Georgen ob Murau 47.1 14.1 P PPLA3 AT 06 614 61421 0 844 Europe/Vienna 2011-07-31
-2766688 Sankt Georgen ob Judenburg Sankt Georgen ob Judenburg Sankt Georgen,Sankt Georgen ob Judenburg 47.2 14.5 P PPLA3 AT AT 06 608 60818 0 977 Europe/Vienna 2011-07-31
-2766692 Sankt Georgen im Attergau Sankt Georgen im Attergau Sankt Georgen,Sankt Georgen im Attergau,Sankt-Georgen-im-Attergau,Санкт-Георген-им-Аттергау 47.93595 13.48306 P PPLA3 AT 04 417 41734 4180 537 Europe/Vienna 2011-07-31
-2766699 Sankt Georgen an der Stiefing Sankt Georgen an der Stiefing Sankt Georgen,Sankt Georgen an der Stiefing 46.87333 15.57972 P PPLA3 AT AT 06 610 61031 0 301 Europe/Vienna 2011-07-31
-2766700 Sankt Georgen an der Leys Sankt Georgen an der Leys Sankt Georgen 48.03149 15.22722 P PPLA3 AT AT 03 320 32012 0 380 Europe/Vienna 2011-07-31
-2766702 Sankt Georgen am Ybbsfelde Sankt Georgen am Ybbsfelde Sankt Georgen,Sankt Georgen am Ybbsfelde,Sankt-Georgien-na-Ibsfel'de,Санкт-Георгиен-на-Ибсфельде 48.13333 14.95 P PPLA3 AT AT 03 305 30527 0 311 Europe/Vienna 2011-07-31
-2766724 Sankt Gallenkirch Sankt Gallenkirch 47.01667 9.96667 P PPLA3 AT 08 801 80120 0 1018 Europe/Vienna 2011-07-31
-2766725 Sankt Gallen Sankt Gallen Sankt Gallen 47.68333 14.6 P PPLA3 AT 06 612 61239 0 814 Europe/Vienna 2011-07-31
-2766727 Sankt Florian am Inn Sankt Florian am Inn Sankt Florian,Sankt Florian am Inn,Sankt-Florian-am-Inn,Санкт-Флориан-ам-Инн 48.44122 13.44263 P PPL AT AT 04 414 41418 3121 317 Europe/Vienna 2011-06-26
-2766739 Sankt Corona am Wechsel Sankt Corona am Wechsel Sankt Corona am Wechsel,Sankt-Corona 47.58333 16 P PPLA3 AT AT 03 318 31830 0 866 Europe/Vienna 2011-07-31
-2766747 Sankt Blasen Sankt Blasen Sankt Blasen 47.08333 14.3 P PPLA3 AT 06 614 61420 0 1296 Europe/Vienna 2011-07-31
-2766751 Sankt Bartholomä Sankt Bartholoma Sankt Bartholoma,Sankt Bartholomä 47.06667 15.25 P PPLA3 AT 06 606 60639 0 500 Europe/Vienna 2011-07-31
-2766753 Sankt Anton im Montafon Sankt Anton im Montafon Sankt Anton,Sankt Anton im Montafon 47.11667 9.86667 P PPLA3 AT AT 08 801 80119 0 706 Europe/Vienna 2011-07-31
-2766757 Sankt Anton am Arlberg Sankt Anton am Arlberg Saint Anton,Sankt Anton,Sankt-Anton-am-Arl'berg,St Anton,Санкт-Антон-ам-Арльберг 47.1275 10.26372 P PPL AT AT 07 2848 1307 Europe/Vienna 2010-04-22
-2766758 Sankt Anna am Aigen Sankt Anna am Aigen Sankt Anna,Sankt Anna am Aigen 46.83111 15.97139 P PPLA3 AT AT 06 604 60448 0 365 Europe/Vienna 2011-07-31
-2766767 Sankt Andrä im Lungau Sankt Andra im Lungau Sankt Andra,Sankt Andra im Lungau,Sankt Andrä,Sankt Andrä im Lungau 47.15 13.78333 P PPLA3 AT AT 05 505 50507 0 1129 Europe/Vienna 2011-07-31
-2766769 Sankt Andrä am Zicksee Sankt Andra am Zicksee Sankt Andra,Sankt Andra bei Frauenkirchen,Sankt Andrä,Sankt Andrä bei Frauenkirchen,Sankt-Andre-am-Cikzee,Санкт-Андре-ам-Цикзее 47.7841 16.94195 P PPLA3 AT AT 01 107 10719 0 124 Europe/Vienna 2011-07-31
-2766772 Sankt Andrä Sankt Andra Sankt Andra,Sankt Andra Lavanttal,Sankt Andrae Im Lavanttal,Sankt Andrä,Sankt Andrä Lavanttal,Sankt-Andre,Санкт-Андре 46.76611 14.82361 P PPL AT 02 10825 434 Europe/Vienna 2012-01-18
-2766824 Salzburg Salzburg Lungsod ng Salzburg,Saizburg,Salcburk,Salisburgium,Salisburgo,Salisburgu,Salisburgum,Saltsmpournk,Salzborg,Salzbourg,Salzburg,Salzburgi liidumaa,Salzburgo,Salzbursko,Såizburg,Zal'cburg,Zalcburg,Zalcburga,Zalcburgas,jalcheubuleukeu,sa er ci bao,sa er si bao,salzbwrg,zarutsuburuku,zlzbwrg,Σάλτσμπουργκ,Залцбург,Зальцбург,זלצבורג,سالزبورگ,ザルツブルク,萨尔斯堡,萨尔茨堡,薩爾斯堡,잘츠부르크 47.79941 13.04399 P PPLA AT 05 150269 424 435 Europe/Vienna 2009-08-03
-2766845 Sallingberg Sallingberg 48.46667 15.23333 P PPLA3 AT 03 325 32522 0 759 Europe/Vienna 2011-07-31
-2766856 Salla Salla Salla 47.1 14.96667 P PPLA3 AT 06 616 61619 0 1015 Europe/Vienna 2011-07-31
-2766905 Sachsenburg Sachsenburg Sachsenburg,Sochsenburg 46.82917 13.355 P PPLA3 AT AT 02 206 20633 0 557 Europe/Vienna 2011-07-31
-2766922 Saalfelden am Steinernen Meer Saalfelden am Steinernen Meer Saalfelden,Saalfelden am Steinernen Meer,Salfelden,Zal'fel'den-am-Shtajnernen-Meer,Зальфельден-ам-Штайнернен-Меер 47.42681 12.848 P PPLA3 AT 05 506 50619 16119 742 Europe/Vienna 2011-07-31
-2766924 Saalbach Saalbach 47.39138 12.63642 P PPL AT 05 2954 1003 Europe/Vienna 2008-01-16
-2766932 Rutzenham Rutzenham 48.06076 13.71883 P PPLA3 AT 04 417 41733 0 409 Europe/Vienna 2011-07-31
-2766936 Rüstorf Rustorf 48.04326 13.78982 P PPLA3 AT 04 417 41732 0 378 Europe/Vienna 2011-07-31
-2766939 Rust Rust Rust,Ruszt,Stadt Rust,Руст 47.80122 16.67158 P PPLA2 AT 01 102 10201 1726 127 Europe/Vienna 2012-02-03
-2766951 Ruprechtshofen Ruprechtshofen 48.13648 15.27675 P PPLA3 AT 03 315 31537 0 241 Europe/Vienna 2011-07-31
-2766971 Rum Rum 47.28333 11.45 P PPLA3 AT 07 703 70346 8498 623 Europe/Vienna 2011-07-31
-2767001 Rudersdorf Rudersdorf 47.05 16.11667 P PPLA3 AT 01 105 10508 0 245 Europe/Vienna 2011-07-31
-2767005 Ruden Ruden 46.65833 14.77639 P PPLA3 AT 02 208 20812 0 570 Europe/Vienna 2011-07-31
-2767034 Rottenmann Rottenmann Rottenmann 47.51667 14.35 P PPLA3 AT 06 612 61238 5561 883 Europe/Vienna 2011-07-31
-2767074 Röthis Rothis 47.29332 9.65484 P PPLA3 AT 08 804 80416 0 501 Europe/Vienna 2011-07-31
-2767088 Röthelstein Rothelstein Rothelstein,Röthelstein 47.31667 15.36667 P PPLA3 AT 06 606 60636 0 588 Europe/Vienna 2011-07-31
-2767111 Rotenturm an der Pinka Rotenturm an der Pinka Rotenturm,Rotenturm an der Pinka,Rotenturm-na-Pinke,Rothenthurm,Vasvoeroesvar,Vasvörösvár,Ротентурм-на-Пинке 47.25 16.25 P PPLA3 AT 01 109 10921 0 293 Europe/Vienna 2011-07-31
-2767220 Rosegg Rosegg Rosegg 46.58333 14.03333 P PPLA3 AT 02 207 20721 0 467 Europe/Vienna 2011-07-31
-2767221 Röschitz Roschitz 48.64312 15.81774 P PPLA3 AT 03 311 31120 0 324 Europe/Vienna 2011-07-31
-2767227 Roppen Roppen 47.21667 10.81667 P PPLA3 AT 07 702 70216 0 695 Europe/Vienna 2011-07-31
-2767231 Röns Rons 47.21667 9.7 P PPLA3 AT 08 804 80415 0 615 Europe/Vienna 2011-07-31
-2767264 Rohr im Gebirge Rohr im Gebirge Rohr 47.89471 15.73603 P PPLA3 AT AT 03 323 32324 0 673 Europe/Vienna 2011-07-31
-2767265 Rohr im Burgenland Rohr im Burgenland Rohr,Rohr im Burgenland,Ror (Burgenland),Рор (Бургенланд) 47.11667 16.16667 P PPLA3 AT AT 01 104 10425 0 252 Europe/Vienna 2011-07-31
-2767273 Röhrenbach Rohrenbach 48.65 15.5 P PPLA3 AT 03 311 31119 0 465 Europe/Vienna 2011-07-31
-2767283 Rohrbach bei Mattersburg Rohrbach bei Mattersburg Rohrbach,Rohrbach bei Mattersburg,Rorbakh-Mattersburg,Рорбах-Маттерсбург 47.71667 16.41667 P PPLA3 AT AT 01 106 10610 0 250 Europe/Vienna 2011-07-31
-2767285 Rohrbach an der Lafnitz Rohrbach an der Lafnitz Rohrbach,Rohrbach an der Lafnitz 47.38333 16 P PPLA3 AT AT 06 607 60728 0 433 Europe/Vienna 2011-07-31
-2767301 Rohrau Rohrau 48.06667 16.85 P PPLA3 AT 03 307 30721 0 144 Europe/Vienna 2011-07-31
-2767346 Ritzing Ritzing 47.6 16.5 P PPLA3 AT 01 108 10820 0 286 Europe/Vienna 2011-07-31
-2767382 Rinn Rinn 47.25 11.5 P PPLA3 AT 07 703 70345 0 907 Europe/Vienna 2011-07-31
-2767418 Rietz Rietz 47.28333 11.05 P PPLA3 AT 07 702 70215 0 962 Europe/Vienna 2011-07-31
-2767443 Riegersburg Riegersburg 47 15.93028 P PPLA3 AT 06 604 60447 0 303 Europe/Vienna 2011-07-31
-2767452 Riefensberg Riefensberg 47.5 9.96667 P PPLA3 AT 08 802 80231 0 926 Europe/Vienna 2011-07-31
-2767458 Riedlingsdorf Riedlingsdorf 47.35 16.13333 P PPLA3 AT 01 109 10920 0 374 Europe/Vienna 2011-07-31
-2767469 Ried im Oberinntal Ried im Oberinntal Ried,Ried im Oberinntal 47.05 10.65 P PPLA3 AT AT 07 706 70620 0 888 Europe/Vienna 2011-07-31
-2767471 Ried im Innkreis Ried im Innkreis Reid,Rid (Inkrajs),Ried,Ried im Innkreis,Рид (Инкрайс) 48.21123 13.48855 P PPL AT 04 412 41225 11511 435 Europe/Vienna 2011-07-01
-2767511 Reutte Reutte Reutte,Reutte in Tirol,Rojtte,Ройтте 47.48333 10.71667 P PPLA3 AT 07 708 70828 5851 856 Europe/Vienna 2011-07-31
-2767514 Reuthe Reuthe 47.37022 9.89044 P PPLA3 AT 08 802 80230 0 647 Europe/Vienna 2011-07-31
-2767518 Retznei Retznei Retznei 46.73333 15.56667 P PPLA3 AT 06 610 61029 0 300 Europe/Vienna 2011-07-31
-2767521 Retz Retz Retc,Retz,Rotz,Rötz,Ретц 48.75 15.95 P PPLA3 AT 03 310 31037 4139 267 Europe/Vienna 2011-07-31
-2767526 Rettenschöss Rettenschoss 47.65718 12.26872 P PPLA3 AT 07 705 70523 0 676 Europe/Vienna 2011-07-31
-2767529 Rettenegg Rettenegg Frauenwald,Rettenegg 47.53333 15.78333 P PPLA3 AT AT 06 617 61743 0 944 Europe/Vienna 2011-07-31
-2767605 Reith bei Seefeld Reith bei Seefeld Reith,Reith bei Seefeld 47.3 11.2 P PPLA3 AT AT 07 703 70344 0 1100 Europe/Vienna 2011-07-31
-2767606 Reith bei Kitzbühel Reith bei Kitzbuhel Reith,Reith bei Kitzbuhel,Reith bei Kitzbühel 47.46667 12.35 P PPLA3 AT AT 07 704 70414 0 766 Europe/Vienna 2011-07-31
-2767607 Reith im Alpbachtal Reith im Alpbachtal Reith,Reith bei Brixlegg 47.41694 11.87785 P PPLA3 AT AT 07 705 70522 0 636 Europe/Vienna 2011-07-31
-2767681 Reisenberg Reisenberg 48 16.51667 P PPLA3 AT 03 306 30629 0 174 Europe/Vienna 2011-07-31
-2767696 Reinsberg Reinsberg Reinsperg 47.98567 15.07067 P PPLA3 AT AT 03 320 32010 0 477 Europe/Vienna 2011-07-31
-2767707 Reingers Reingers 48.96667 15.13333 P PPLA3 AT 03 309 30929 0 611 Europe/Vienna 2011-07-31
-2767734 Reifling Reifling Reifling 47.13333 14.66667 P PPLA3 AT 06 608 60816 0 1187 Europe/Vienna 2011-07-31
-2767743 Reichraming Reichraming Reichraming 47.88333 14.45 P PPLA3 AT 04 415 41512 0 359 Europe/Vienna 2011-07-31
-2767759 Reichenthal Reichenthal Reichenthal 48.54286 14.38471 P PPLA3 AT 04 416 41620 0 685 Europe/Vienna 2011-07-31
-2767768 Reichenfels Reichenfels 47 14.75 P PPLA3 AT 02 209 20912 0 801 Europe/Vienna 2011-07-31
-2767769 Reichendorf Reichendorf Reichendorf 47.18333 15.75 P PPLA3 AT 06 617 61742 0 397 Europe/Vienna 2011-07-31
-2767773 Reichenau im Mühlkreis Reichenau im Muhlkreis Reichenau,Reichenau im Muhlkreis,Reichenau im Muhlkreise,Reichenau im Mühlkreis,Reichenau im Mühlkreise 48.45704 14.34875 P PPLA3 AT AT 04 416 41619 0 678 Europe/Vienna 2011-12-20
-2767777 Reichenau an der Rax Reichenau an der Rax Reichenau an der Rax 47.69509 15.84572 P PPLA3 AT 03 318 31829 2673 482 Europe/Vienna 2011-07-31
-2767807 Redlham Redlham Redlham 48.01667 13.73333 P PPLA3 AT 04 417 41730 0 408 Europe/Vienna 2011-07-31
-2767809 Redleiten Redleiten 48.06667 13.55 P PPLA3 AT 04 417 41729 0 565 Europe/Vienna 2011-07-31
-2767815 Rechnitz Rechnitz Rechnitz,Rekhnic,Rohonc,Рехниц 47.3 16.45 P PPLA3 AT 01 109 10919 0 311 Europe/Vienna 2011-07-31
-2767827 Raxendorf Raxendorf 48.33333 15.26667 P PPLA3 AT 03 315 31535 0 529 Europe/Vienna 2011-07-31
-2767834 Ravelsbach Ravelsbach 48.55 15.85 P PPLA3 AT 03 310 31036 0 280 Europe/Vienna 2011-07-31
-2767852 Rauris Rauris 47.22656 12.99459 P PPLA3 AT 05 506 50617 0 945 Europe/Vienna 2011-07-31
-2767878 Rauchenwarth Rauchenwarth 48.08333 16.51667 P PPLA3 AT 03 324 32417 0 206 Europe/Vienna 2011-07-31
-2767902 Rattenberg Rattenberg Rattenberg 47.43333 11.9 P PPLA3 AT 07 705 70521 0 816 Europe/Vienna 2011-07-31
-2767904 Ratten Ratten Ratten 47.48333 15.71667 P PPLA3 AT 06 617 61741 0 779 Europe/Vienna 2011-07-31
-2767907 Ratschendorf Ratschendorf Ratschendorf 46.74222 15.81583 P PPLA3 AT 06 615 61515 0 243 Europe/Vienna 2011-07-31
-2767909 Ratsch an der Weinstraße Ratsch an der Weinstrasse Ratsch,Ratsch an der Weinstrasse,Ratsch an der Weinstraße 46.68944 15.57111 P PPLA3 AT AT 06 610 61028 0 349 Europe/Vienna 2011-07-31
-2767915 Rastenfeld Rastenfeld 48.57348 15.33176 P PPLA3 AT 03 313 31336 0 575 Europe/Vienna 2011-07-31
-2767928 Rassach Rassach Rassach 46.86028 15.27 P PPLA3 AT 06 603 60325 0 382 Europe/Vienna 2011-07-31
-2767936 Rappottenstein Rappottenstein 48.52161 15.07925 P PPLA3 AT 03 325 32521 0 666 Europe/Vienna 2011-07-31
-2767960 Ranten Ranten Ranten 47.15 14.08333 P PPLA3 AT 06 614 61418 0 1097 Europe/Vienna 2011-07-31
-2767974 Rankweil Rankweil Rankweil 47.27108 9.64308 P PPLA3 AT 08 804 80414 11455 471 Europe/Vienna 2011-07-31
-2767977 Raning Raning 46.85 15.81667 P PPLA3 AT 06 604 60445 0 285 Europe/Vienna 2011-07-31
-2767979 Ranggen Ranggen 47.26667 11.2 P PPLA3 AT 07 703 70343 0 753 Europe/Vienna 2011-07-31
-2767980 Rangersdorf Rangersdorf 46.86528 12.97833 P PPLA3 AT 02 206 20631 363 823 Europe/Vienna 2011-07-31
-2767987 Randegg Randegg 48.01198 14.97334 P PPLA3 AT 03 320 32009 0 361 Europe/Vienna 2011-07-31
-2767998 Ramsau Ramsau 48.00313 15.80332 P PPLA3 AT 03 314 31409 0 466 Europe/Vienna 2011-07-31
-2768007 Ramsau im Zillertal Ramsau im Zillertal Ramsau,Ramsau im Zillertal,Ramzau,Рамзау 47.20383 11.87545 P PPLA3 AT AT 07 709 70922 1582 600 Europe/Vienna 2012-02-24
-2768021 Ramingstein Ramingstein 47.06667 13.83333 P PPLA3 AT 05 505 50506 0 1091 Europe/Vienna 2011-07-31
-2768071 Raiding Raiding Doborjan,Doborján,Raiding,Rajding,raidingu,Райдинг,ライディング 47.56667 16.53333 P PPLA3 AT 01 108 10819 0 254 Europe/Vienna 2011-07-31
-2768076 Ragnitz Ragnitz Ragnitz 46.83667 15.59278 P PPLA3 AT 06 610 61027 0 278 Europe/Vienna 2011-07-31
-2768081 Raggal Raggal 47.21667 9.83306 P PPLA3 AT 08 801 80118 0 762 Europe/Vienna 2011-07-31
-2768098 Radstadt Radstadt Radstadt,Radstatt,Rashtadt,Раштадт 47.38333 13.45 P PPLA3 AT 05 504 50417 4926 839 Europe/Vienna 2011-07-31
-2768119 Bad Radkersburg Bad Radkersburg Bad Radkersburg,Donja Radjona,Obrajna,Radgona,Radkersburg 46.68806 15.98806 P PPLA3 AT AT 06 615 61513 0 212 Europe/Vienna 2011-07-31
-2768125 Radfeld Radfeld Radfeld 47.45 11.91667 P PPLA3 AT 07 705 70520 0 511 Europe/Vienna 2011-07-31
-2768130 Radenthein Radenthein Radenthein 46.80056 13.71167 P PPLA3 AT 02 206 20630 0 722 Europe/Vienna 2011-07-31
-2768139 Rachau Rachau Rachau 47.21667 14.9 P PPLA3 AT 06 609 60909 0 796 Europe/Vienna 2011-07-31
-2768148 Rabenwald Rabenwald Rabenwald 47.3 15.8 P PPLA3 AT 06 607 60725 0 603 Europe/Vienna 2011-07-31
-2768153 Rabenstein an der Pielach Rabenstein an der Pielach 48.06535 15.46772 P PPLA3 AT 03 319 31935 0 343 Europe/Vienna 2011-07-31
-2768159 Rabensburg Rabensburg 48.65 16.9 P PPLA3 AT 03 316 31645 0 167 Europe/Vienna 2011-07-31
-2768171 Raasdorf Raasdorf 48.24657 16.56532 P PPLA3 AT 03 308 30849 0 154 Europe/Vienna 2011-07-31
-2768175 Raach am Hochgebirge Raach am Hochgebirge Raach,Raach am Hochgebirge 47.63333 15.93333 P PPLA3 AT 03 318 31827 0 771 Europe/Vienna 2011-07-31
-2768177 Raabs an der Thaya Raabs an der Thaya Raabs,Raabs an der Thaya,Rabs-an-der-Tajja,Рабс-ан-дер-Тайя 48.85 15.5 P PPLA3 AT AT 03 322 32216 0 447 Europe/Vienna 2011-07-31
-2768178 Raabau Raabau Raabau 46.96278 15.91167 P PPLA3 AT 06 604 60444 0 289 Europe/Vienna 2011-07-31
-2768179 Raaba Raaba Raaba 47.03333 15.5 P PPLA3 AT 06 606 60635 0 360 Europe/Vienna 2011-07-31
-2768201 Pyhra Pyhra 48.1591 15.68624 P PPLA3 AT 03 319 31934 0 293 Europe/Vienna 2011-07-31
-2768213 Pusterwald Pusterwald Pusterwald 47.30611 14.37556 P PPLA3 AT 06 608 60815 0 1073 Europe/Vienna 2011-07-31
-2768232 Purkersdorf Purkersdorf 48.20769 16.17539 P PPLA3 AT 03 324 32416 8327 250 Europe/Vienna 2011-07-31
-2768236 Purgstall Purgstall 48.05841 15.13478 P PPL AT 03 5247 297 Europe/Vienna 2008-02-24
-2768255 Pulkau Pulkau 48.70484 15.86031 P PPLA3 AT 03 310 31035 0 260 Europe/Vienna 2011-07-31
-2768263 Pühret Puhret 48.03333 13.71667 P PPLA3 AT 04 417 41728 0 483 Europe/Vienna 2011-07-31
-2768274 Puchenstuben Puchenstuben 47.92819 15.28748 P PPLA3 AT 03 320 32007 0 862 Europe/Vienna 2011-07-31
-2768279 Puchberg am Schneeberg Puchberg am Schneeberg Puchberg,Puchberg am Schneeberge,Pukhberg-am-Shneeberg,Пухберг-ам-Шнееберг 47.78709 15.91352 P PPLA3 AT AT 03 318 31826 0 572 Europe/Vienna 2011-07-31
-2768281 Puch bei Weiz Puch bei Weiz Puch,Puch bei Weiz 47.21667 15.71667 P PPLA3 AT AT 06 617 61740 0 406 Europe/Vienna 2011-07-31
-2768282 Puch bei Hallein Puch bei Hallein Puch,Pukh-Khallajn,Пух-Халлайн 47.71536 13.09296 P PPLA3 AT AT 05 502 50209 0 465 Europe/Vienna 2011-07-31
-2768291 Prutz Prutz Prutz 47.08333 10.66667 P PPLA3 AT 07 706 70619 0 865 Europe/Vienna 2011-07-31
-2768295 Pruggern Pruggern Pruggern 47.41667 13.86667 P PPLA3 AT 06 612 61234 0 790 Europe/Vienna 2011-07-31
-2768305 Proleb Proleb Proleb 47.4 15.13333 P PPLA3 AT 06 611 61111 0 579 Europe/Vienna 2011-07-31
-2768316 Prinzersdorf Prinzersdorf 48.2 15.51667 P PPLA3 AT 03 319 31932 0 268 Europe/Vienna 2011-07-31
-2768320 Prigglitz Prigglitz 47.70318 15.92794 P PPLA3 AT 03 318 31825 0 637 Europe/Vienna 2011-07-31
-2768348 Pressbaum Pressbaum Pressbaum 48.18333 16.08333 P PPLA3 AT 03 324 32415 6083 317 Europe/Vienna 2011-07-31
-2768357 Prellenkirchen Prellenkirchen 48.06667 16.95 P PPLA3 AT 03 307 30719 0 175 Europe/Vienna 2011-07-31
-2768359 Preitenegg Preitenegg 46.94 14.92583 P PPLA3 AT 02 209 20911 0 1069 Europe/Vienna 2011-07-31
-2768393 Preding Preding 46.85861 15.40972 P PPLA3 AT 06 603 60324 0 329 Europe/Vienna 2011-07-31
-2768450 Poysdorf Poysdorf Poysdorf 48.66667 16.63333 P PPLA3 AT 03 316 31644 5653 203 Europe/Vienna 2011-07-31
-2768459 Potzneusiedl Potzneusiedl Potzneusiedl 48.03333 16.93333 P PPLA3 AT 01 107 10726 0 174 Europe/Vienna 2011-07-31
-2768464 Pöttsching Pottsching 47.8 16.38333 P PPLA3 AT 01 106 10609 0 215 Europe/Vienna 2011-07-31
-2768468 Pottenstein Pottenstein 47.9582 16.0948 P PPLA3 AT 03 306 30627 0 324 Europe/Vienna 2011-07-31
-2768472 Pottendorf Pottendorf Pottendorf 47.9 16.38333 P PPLA3 AT 03 306 30626 6105 219 Europe/Vienna 2011-07-31
-2768475 Pöttelsdorf Pottelsdorf 47.75 16.43333 P PPLA3 AT 01 106 10608 0 215 Europe/Vienna 2011-07-31
-2768512 Poppendorf Poppendorf 46.85611 15.85639 P PPLA3 AT 06 604 60443 0 308 Europe/Vienna 2011-07-31
-2768546 Pöls Pols Pjol's,Pols,Pols ob Judenburg,Pöls,Pöls ob Judenburg,Пёльс 47.21667 14.58333 P PPLA3 AT AT 06 608 60814 0 791 Europe/Vienna 2011-07-31
-2768561 Polling in Tirol Polling in Tirol Polling,Polling in Tirol 47.28333 11.15 P PPLA3 AT AT 07 703 70342 0 605 Europe/Vienna 2011-07-31
-2768578 Pöllauberg Pollauberg Pollauberg,Pöllauberg 47.31667 15.85 P PPLA3 AT 06 607 60723 0 625 Europe/Vienna 2011-07-31
-2768582 Pöllau Pollau Pollau,Pollau bei Gleisdorf,Pöllau,Pöllau bei Gleisdorf 47.3 15.83333 P PPLA3 AT AT 06 607 60722 0 422 Europe/Vienna 2011-07-31
-2768616 Pöggstall Poggstall 48.31667 15.18333 P PPLA3 AT 03 315 31534 0 488 Europe/Vienna 2011-07-31
-2768618 Poggersdorf Poggersdorf 46.65 14.45 P PPLA3 AT 02 204 20425 0 456 Europe/Vienna 2011-07-31
-2768622 Podersdorf am See Podersdorf am See Patfalu,Podersdorf,Podersdorf-am-Zee,Pátfalu,Подерсдорф-ам-Зее 47.85412 16.83706 P PPLA3 AT 01 107 10718 0 120 Europe/Vienna 2011-07-31
-2768627 Pöchlarn Pochlarn Gross Pochlarn,Gross Pöchlarn,Pjokhlarn,Pochlarn,Pöchlarn,Пёхларн 48.2 15.2 P PPLA3 AT AT 03 315 31533 0 214 Europe/Vienna 2011-07-31
-2768728 Plainfeld Plainfeld 47.83333 13.18333 P PPLA3 AT 05 503 50328 0 621 Europe/Vienna 2011-07-31
-2768738 Pitzenberg Pitzenberg 48.07361 13.72484 P PPLA3 AT 04 417 41725 0 443 Europe/Vienna 2011-07-31
-2768746 Pitten Pitten 47.71667 16.18333 P PPLA3 AT 03 318 31823 0 324 Europe/Vienna 2011-07-31
-2768748 Pitschgau Pitschgau Pitschgau 46.7 15.26667 P PPLA3 AT 06 603 60322 0 352 Europe/Vienna 2011-07-31
-2768752 Pistorf Pistorf Pistorf 46.76667 15.36667 P PPLA3 AT 06 610 61026 0 321 Europe/Vienna 2011-07-31
-2768782 Pirka Pirka 47 15.38333 P PPLA3 AT 06 606 60633 0 379 Europe/Vienna 2011-07-31
-2768787 Piringsdorf Piringsdorf 47.43333 16.41667 P PPLA3 AT 01 108 10818 0 388 Europe/Vienna 2011-07-31
-2768791 Pirching am Traubenberg Pirching am Traubenberg Pirching,Pirching am Traubenberg 46.95 15.6 P PPLA3 AT AT 06 604 60442 0 354 Europe/Vienna 2011-07-31
-2768811 Pinkafeld Pinkafeld Pinkafel'd,Pinkafeld,Pinkafo,Пинкафельд 47.36667 16.11667 P PPLA3 AT 01 109 10918 5257 389 Europe/Vienna 2011-07-31
-2768813 Pinggau Pinggau Pinggau,Пинггау 47.43333 16.06667 P PPLA3 AT 06 607 60721 0 523 Europe/Vienna 2011-07-31
-2768819 Pillichsdorf Pillichsdorf 48.35 16.53333 P PPLA3 AT 03 316 31642 0 161 Europe/Vienna 2011-07-31
-2768827 Pill Pill Pill,Pill unter dem Bache 47.31667 11.68333 P PPLA3 AT AT 07 709 70921 0 674 Europe/Vienna 2011-07-31
-2768829 Pilgersdorf Pilgersdorf 47.43333 16.35 P PPLA3 AT 01 108 10817 0 355 Europe/Vienna 2011-07-31
-2768837 Piesendorf Piesendorf 47.28333 12.71667 P PPLA3 AT 05 506 50616 0 759 Europe/Vienna 2011-07-31
-2768897 Piberegg Piberegg Piberegg 47.08333 15.08333 P PPLA3 AT 06 616 61617 0 599 Europe/Vienna 2011-07-31
-2768902 Pians Pians Pians 47.13486 10.51237 P PPLA3 AT 07 706 70618 0 848 Europe/Vienna 2011-07-31
-2768905 Pfunds Pfunds Pfunds,Пфундс 46.96667 10.55 P PPLA3 AT 07 706 70617 0 992 Europe/Vienna 2011-07-31
-2768913 Pfons Pfons 47.15 11.46667 P PPLA3 AT 07 703 70341 0 1298 Europe/Vienna 2011-07-31
-2768921 Pflach Pflach Pflach 47.51667 10.71667 P PPLA3 AT 07 708 70826 0 839 Europe/Vienna 2011-07-31
-2768934 Pfarrkirchen im Mühlkreis Pfarrkirchen im Muehlkreis Pfarrkirchen 48.50375 13.82638 P PPL AT AT 04 413 41327 1551 817 812 Europe/Vienna 2011-07-14
-2768935 Pfarrkirchen bei Bad Hall Pfarrkirchen bei Bad Hall Pfarrkirchen,Pfarrkirchen bei Bad Hall 48.03046 14.19914 P PPLA3 AT AT 04 415 41511 0 381 Europe/Vienna 2011-07-31
-2768953 Pfaffstätten Pfaffstatten 48.01737 16.26354 P PPLA3 AT 03 306 30625 0 217 Europe/Vienna 2011-07-31
-2768961 Pfaffing Pfaffing 48.018 13.47507 P PPLA3 AT 04 417 41723 0 539 Europe/Vienna 2011-07-31
-2768976 Pfaffenhofen Pfaffenhofen 47.3 11.08333 P PPLA3 AT 07 703 70340 0 634 Europe/Vienna 2011-07-31
-2768998 Petzenkirchen Petzenkirchen 48.13333 15.15 P PPLA3 AT 03 315 31531 0 247 Europe/Vienna 2011-07-31
-2769013 Petronell-Carnuntum Petronell-Carnuntum Petronell,Petronell-Carnuntum 48.11667 16.85 P PPLA3 AT AT 03 307 30718 0 176 Europe/Vienna 2011-07-31
-2769055 Pertlstein Pertlstein Pertlstein 46.94056 15.96167 P PPLA3 AT 06 604 60440 0 269 Europe/Vienna 2011-07-31
-2769068 Pernitz Pernitz 47.89759 15.96022 P PPLA3 AT 03 323 32323 0 429 Europe/Vienna 2011-07-31
-2769074 Pernersdorf Pernersdorf 48.7 16.01667 P PPLA3 AT 03 310 31033 0 214 Europe/Vienna 2011-07-31
-2769077 Pernegg an der Mur Pernegg an der Mur Bereneck,Perneg-an-der-Mur,Pernegg,Пернег-ан-дер-Мур 47.35979 15.34236 P PPLA3 AT AT 06 602 60213 2406 464 458 Europe/Vienna 2011-07-31
-2769078 Pernegg Pernegg 48.73333 15.61667 P PPLA3 AT 03 311 31117 0 507 Europe/Vienna 2011-07-31
-2769096 Perlsdorf Perlsdorf Perlsdorf 46.91361 15.81417 P PPLA3 AT 06 604 60439 0 306 Europe/Vienna 2011-07-31
-2769105 Perg Perg Perg 48.25 14.63333 P PPL AT 04 411 41116 7644 252 Europe/Vienna 2012-01-18
-2769110 Perchtoldsdorf Perchtoldsdorf 48.11935 16.26607 P PPLA3 AT 03 317 31719 14041 257 Europe/Vienna 2011-07-31
-2769113 Perchau am Sattel Perchau am Sattel Perchau,Perchau am Sattel 47.1 14.45 P PPLA3 AT AT 06 614 61416 0 1005 Europe/Vienna 2011-07-31
-2769131 Pennewang Pennewang Pennewang 48.13333 13.85 P PPLA3 AT 04 418 41815 0 390 Europe/Vienna 2011-07-31
-2769171 Peggau Peggau Peggau 47.2 15.35 P PPLA3 AT 06 606 60632 0 409 Europe/Vienna 2011-07-31
-2769182 Payerbach Payerbach 47.69209 15.8634 P PPLA3 AT 03 318 31821 0 473 Europe/Vienna 2011-07-31
-2769194 Paudorf Paudorf Paudorf 48.35 15.61667 P PPLA3 AT 03 313 31333 0 250 Europe/Vienna 2011-07-31
-2769211 Patsch Patsch 47.2 11.41667 P PPLA3 AT 07 703 70338 0 999 Europe/Vienna 2011-07-31
-2769212 Paternion Paternion Paternion 46.71417 13.63611 P PPLA3 AT 02 207 20720 6301 513 Europe/Vienna 2011-07-31
-2769224 Passail Passail Passail 47.28333 15.51667 P PPLA3 AT 06 617 61736 0 693 Europe/Vienna 2011-07-31
-2769225 Pasching Pasching Pasching 48.25931 14.20369 P PPL AT 04 410 41017 6143 294 Europe/Vienna 2011-06-28
-2769236 Parschlug Parschlug 47.4809 15.28645 P PPLA3 AT 06 602 60212 0 702 Europe/Vienna 2011-07-31
-2769242 Parndorf Parndorf Pandrof,Parndorf,Парндорф 47.99963 16.86049 P PPLA3 AT 01 107 10717 4050 181 Europe/Vienna 2011-07-31
-2769246 Parbasdorf Parbasdorf 48.28333 16.6 P PPLA3 AT 03 308 30846 0 162 Europe/Vienna 2011-07-31
-2769258 Pamhagen Pamhagen Pamhagen,Pamkhagen,Pomogy,Памхаген 47.70092 16.90779 P PPLA3 AT 01 107 10716 0 121 Europe/Vienna 2011-07-31
-2769259 Pama Pama Bijelo Selo,Pama,Пама 48.05 17.03333 P PPLA3 AT 01 107 10715 0 134 Europe/Vienna 2011-07-31
-2769283 Palfau Palfau Palfau 47.7 14.8 P PPLA3 AT 06 612 61230 0 586 Europe/Vienna 2011-07-31
-2769285 Paldau Paldau Paldau 46.94222 15.79583 P PPLA3 AT 06 604 60438 0 316 Europe/Vienna 2011-07-31
-2769300 Pack Pack Pack 46.97917 14.98417 P PPLA3 AT 06 616 61616 0 1094 Europe/Vienna 2011-07-31
-2769324 Oetz Oetz Ehc,Ehtc,Oetz,Otz,Ötz,Этц,Эц 47.2 10.9 P PPLA3 AT AT 07 702 70214 2238 812 786 Europe/Vienna 2011-07-31
-2769333 Otterthal Otterthal Ottertal,Otterthal 47.61667 15.93333 P PPLA3 AT AT 03 318 31820 0 689 Europe/Vienna 2011-07-31
-2769339 Ottenthal Ottenthal 48.75 16.56667 P PPLA3 AT 03 316 31658 0 278 Europe/Vienna 2011-07-31
-2769342 Ottensheim Ottensheim Ottensheim,Ottenskhajm,Оттенсхайм 48.33246 14.17425 P PPLA3 AT 04 416 41617 0 269 Europe/Vienna 2011-07-31
-2769344 Ottenschlag im Mühlkreis Ottenschlag im Muhlkreis Ottenschlag,Ottenschlag im Muhlkreis,Ottenschlag im Mühlkreis 48.46632 14.38471 P PPLA3 AT AT 04 416 41616 0 808 Europe/Vienna 2011-12-20
-2769347 Ottenschlag Ottenschlag 48.41667 15.21667 P PPLA3 AT 03 325 32518 0 867 Europe/Vienna 2011-07-31
-2769378 Osterwitz Osterwitz Osterwitz 46.85806 15.13278 P PPLA3 AT 06 603 60321 0 774 Europe/Vienna 2011-07-31
-2769391 Ossiach Ossiach Ossiach 46.66667 13.98333 P PPLA3 AT 02 210 21006 0 636 Europe/Vienna 2011-07-31
-2769396 Oslip Oslip Oslip,Uzlop,Ослип 47.82906 16.61957 P PPLA3 AT 01 103 10311 0 133 Europe/Vienna 2011-07-31
-2769409 Orth an der Donau Orth an der Donau Orth 48.14524 16.70089 P PPLA3 AT AT 03 308 30844 0 150 Europe/Vienna 2011-07-31
-2769423 Opponitz Opponitz 47.86667 14.81667 P PPLA3 AT 03 305 30524 0 621 Europe/Vienna 2011-07-31
-2769424 Oppenberg Oppenberg Oppenberg 47.48333 14.26667 P PPLA3 AT 06 612 61229 0 1042 Europe/Vienna 2011-07-31
-2769437 Ollersdorf im Burgenland Ollersdorf im Burgenland Ollersdorf,Ollersdorf (Burgenland),Ollersdorf im Burgenland,Оллерсдорф (Бургенланд) 47.18333 16.16667 P PPLA3 AT AT 01 104 10412 0 308 Europe/Vienna 2011-07-31
-2769445 Olbendorf Olbendorf 47.18333 16.2 P PPLA3 AT 01 104 10411 0 310 Europe/Vienna 2011-07-31
-2769473 Offenhausen Offenhausen Offenhausen 48.15 13.83333 P PPLA3 AT 04 418 41814 0 382 Europe/Vienna 2011-07-31
-2769562 Öblarn Oblarn Oblarn,Oeblarn,Öblarn 47.45938 13.99023 P PPLA3 AT AT 06 612 61228 0 668 Europe/Vienna 2011-09-08
-2769573 Oberzeiring Oberzeiring Oberzeiring 47.25 14.48333 P PPLA3 AT 06 608 60813 0 937 Europe/Vienna 2011-07-31
-2769580 Oberwölz Stadt Oberwolz Stadt Oberwolz,Oberwolz Stadt,Oberwölz,Oberwölz Stadt 47.2 14.26667 P PPLA3 AT AT 06 614 61414 0 848 Europe/Vienna 2011-07-31
-2769614 Oberweg Oberweg Oberweg,Oberweg Talkessel 47.15 14.63333 P PPLA3 AT AT 06 608 60812 0 896 Europe/Vienna 2011-07-31
-2769623 Oberwart Oberwart Felsoor,Obervart,Oberwart,Оберварт 47.28971 16.20595 P PPLA2 AT 01 109 10917 6879 316 Europe/Vienna 2012-02-03
-2769624 Oberwang Oberwang Oberwang 47.86667 13.43333 P PPLA3 AT 04 417 41721 0 573 Europe/Vienna 2011-07-31
-2769625 Oberwaltersdorf Oberwaltersdorf 47.97567 16.32191 P PPLA3 AT 03 306 30623 0 212 Europe/Vienna 2011-07-31
-2769633 Obervogau Obervogau Obervogau 46.745 15.58472 P PPLA3 AT 06 610 61025 0 260 Europe/Vienna 2011-07-31
-2769637 Obervellach Obervellach Obervellach 46.93667 13.20417 P PPLA3 AT 02 206 20627 0 802 Europe/Vienna 2011-07-31
-2769648 Obertrum am See Obertrum am See Obertrum,Obertrum am See,Obertrum-am-Zee,Обертрум-ам-Зее 47.93722 13.07722 P PPLA3 AT AT 05 503 50327 0 508 Europe/Vienna 2011-07-31
-2769662 Obertilliach Obertilliach Obertilliach 46.71056 12.61444 P PPLA3 AT 07 707 70721 0 1472 Europe/Vienna 2011-07-31
-2769697 Oberstorcha Oberstorcha Oberstorcha 46.96667 15.8 P PPLA3 AT 06 604 60437 0 298 Europe/Vienna 2011-07-31
-2769721 Obersiebenbrunn Obersiebenbrunn 48.26667 16.7 P PPLA3 AT 03 308 30842 0 148 Europe/Vienna 2011-07-31
-2769738 Oberschützen Oberschutzen 47.35 16.2 P PPLA3 AT 01 109 10916 0 388 Europe/Vienna 2011-07-31
-2769782 Oberrettenbach Oberrettenbach Oberrettenbach 47.15 15.8 P PPLA3 AT 06 617 61735 0 407 Europe/Vienna 2011-07-31
-2769812 Oberpullendorf Oberpullendorf Felsopulya,Felsőpulya,Gornja Pulja,Oberpullendorf,Оберпуллендорф 47.50352 16.50447 P PPLA2 AT 01 108 10816 0 246 Europe/Vienna 2012-02-03
-2769836 Pettnau Pettnau Oberpettnau,Pettnau 47.3 11.13333 P PPLA3 AT AT 07 703 70339 0 610 Europe/Vienna 2011-07-31
-2769865 Oberneukirchen Oberneukirchen Oberneukirchen,Obernojkirkhen,Обернойкирхен 48.45 14.21667 P PPLA3 AT 04 416 41615 0 824 Europe/Vienna 2011-07-31
-2769872 Oberndorf in Tirol Oberndorf in Tirol Oberndorf,Oberndorf in Tirol 47.5 12.38333 P PPLA3 AT AT 07 704 70413 0 689 Europe/Vienna 2011-07-31
-2769873 Oberndorf bei Schwanenstadt Oberndorf bei Schwanenstadt 48.05559 13.75677 P PPLA3 AT 04 417 41720 0 392 Europe/Vienna 2011-07-31
-2769874 Oberndorf bei Salzburg Oberndorf bei Salzburg Oberndorf,Oberndorf bei Salzburg,Oberndorf-Zal'cburg,Оберндорф-Зальцбург 47.95 12.93333 P PPLA3 AT AT 05 503 50326 0 430 Europe/Vienna 2011-07-31
-2769876 Oberndorf an der Melk Oberndorf an der Melk Oberndorf,Oberndorf-an-der-Melk,Оберндорф-ан-дер-Мелк 48.06386 15.2243 P PPLA3 AT AT 03 320 32006 0 321 Europe/Vienna 2011-07-31
-2769945 Oberloisdorf Oberloisdorf 47.44736 16.50764 P PPLA3 AT 01 108 10828 0 212 Europe/Vienna 2012-03-29
-2769952 Oberlienz Oberlienz Oberlienz 46.84722 12.73139 P PPLA3 AT 07 707 70720 0 817 Europe/Vienna 2011-07-31
-2769994 Oberkurzheim Oberkurzheim Oberkurzheim 47.23333 14.58333 P PPLA3 AT 06 608 60811 0 863 Europe/Vienna 2011-07-31
-2770041 Oberhofen im Inntal Oberhofen im Inntal Oberhofen,Oberhofen im Inntal,Oberhofen in Tirol,Oberkhofen,Оберхофен 47.3 11.08333 P PPLA3 AT AT 07 703 70335 0 634 Europe/Vienna 2011-07-31
-2770042 Oberhofen am Irrsee Oberhofen am Irrsee Oberhofen,Oberhofen am Irrsee 47.95 13.3 P PPLA3 AT AT 04 417 41719 0 565 Europe/Vienna 2011-07-31
-2770086 Oberhaag Oberhaag 46.6869 15.33202 P PPLA3 AT 06 610 61024 0 324 Europe/Vienna 2011-07-31
-2770113 Ober-Grafendorf Ober-Grafendorf Obergrafendorf 48.1504 15.54531 P PPLA3 AT 03 319 31929 0 279 Europe/Vienna 2011-07-31
-2770264 Oberdrauburg Oberdrauburg Ober-Drauberg,Oberdrauburg 46.74306 12.97028 P PPLA3 AT AT 02 206 20625 0 641 Europe/Vienna 2011-07-31
-2770269 Oberdorf im Burgenland Oberdorf im Burgenland Oberdorf,Oberdorf (Burgerland),Oberdorf im Burgenland,Обердорф (Бургерланд) 47.21667 16.21667 P PPLA3 AT AT 01 109 10915 0 310 Europe/Vienna 2011-07-31
-2770271 Oberdorf am Hochegg Oberdorf am Hochegg Oberdorf,Oberdorf am Hochegg 46.97861 15.72167 P PPLA3 AT AT 06 604 60436 0 360 Europe/Vienna 2011-07-31
-2770369 Oberalm Oberalm 47.7 13.1 P PPLA3 AT 05 502 50208 0 450 Europe/Vienna 2011-07-31
-2770377 Oberaich Oberaich 47.4 15.21667 P PPLA3 AT 06 602 60211 0 536 Europe/Vienna 2011-07-31
-2770390 Obdach Obdach Obdach 47.06667 14.68333 P PPLA3 AT 06 608 60810 0 899 Europe/Vienna 2011-07-31
-2770391 Nüziders Nuziders 47.16667 9.8 P PPLA3 AT 08 801 80117 4628 549 Europe/Vienna 2011-07-31
-2770397 Nußdorf am Haunsberg Nussdorf am Haunsberg Nussdorf,Nussdorf am Haunsberg,Nußdorf am Haunsberg 47.95944 13.00917 P PPLA3 AT AT 05 503 50325 0 445 Europe/Vienna 2011-07-31
-2770472 Nöchling Nochling 48.22433 14.98123 P PPLA3 AT 03 315 31528 0 538 Europe/Vienna 2011-07-31
-2770477 Nitscha Nitscha Nitscha 47.11667 15.75 P PPLA3 AT 06 617 61734 0 424 Europe/Vienna 2011-07-31
-2770479 Nikolsdorf Nikolsdorf Nikolsdorf 46.78583 12.91333 P PPLA3 AT 07 707 70718 0 770 Europe/Vienna 2011-07-31
-2770482 Niklasdorf Niklasdorf Niklasdorf,Никласдорф 47.38333 15.15 P PPLA3 AT 06 611 61110 0 622 Europe/Vienna 2011-07-31
-2770487 Nikitsch Nikitsch Filez,Filež,Nikich,Nikitsch,Никич 47.53333 16.66667 P PPLA3 AT 01 108 10815 0 228 Europe/Vienna 2011-07-31
-2770496 Niederwölz Niederwolz Niederwolz,Niederwölz 47.15 14.36667 P PPLA3 AT 06 614 61413 0 944 Europe/Vienna 2011-07-31
-2770514 Niederthalheim Niederthalheim Niederthalheim 48.1 13.75 P PPLA3 AT 04 417 41717 0 450 Europe/Vienna 2011-07-31
-2770543 Niederöblarn Niederoblarn Niederoblarn,Niederöblarn 47.46667 14.01667 P PPLA3 AT 06 612 61227 0 861 Europe/Vienna 2011-07-31
-2770544 Niedernsill Niedernsill 47.28333 12.65 P PPLA3 AT 05 506 50615 0 769 Europe/Vienna 2011-07-31
-2770555 Niederndorf Niederndorf 47.65 12.21667 P PPLA3 AT 07 705 70518 0 498 Europe/Vienna 2011-07-31
-2770560 Niederleis Niederleis 48.55 16.4 P PPLA3 AT 03 316 31636 0 265 Europe/Vienna 2011-07-31
-2770576 Niederhollabrunn Niederhollabrunn Niederhollabrunn 48.43333 16.3 P PPLA3 AT 03 312 31234 0 319 Europe/Vienna 2011-07-31
-2770630 Nickelsdorf Nickelsdorf Mikloshalma,Miklóshalma,Nickelsdorf,Nikkel'sdorf,Никкельсдорф 47.94056 17.06944 P PPLA3 AT 01 107 10714 0 139 Europe/Vienna 2011-07-31
-2770649 Neutal Neutal 47.53333 16.43333 P PPLA3 AT 01 108 10814 0 306 Europe/Vienna 2011-07-31
-2770651 Neustift im Stubaital Neustift im Stubaital Neustift,Neustift im Stubaital,Nojshtift,Нойштифт 47.11667 11.31667 P PPL AT AT 07 4454 970 Europe/Vienna 2012-01-18
-2770656 Neustift bei Güssing Neustift bei Gussing Neustift,Neustift bei Gussing,Neustift bei Güssing 47.01667 16.26667 P PPLA3 AT AT 01 104 10410 0 311 Europe/Vienna 2011-07-31
-2770659 Neustift an der Lafnitz Neustift an der Lafnitz Neustift,Neustift an der Lafnitz,Nojstift-na-Lafnice,Нойстифт-на-Лафнице 47.36667 16.03333 P PPLA3 AT AT 01 109 10929 0 452 Europe/Vienna 2011-07-31
-2770679 Neusiedl an der Zaya Neusiedl an der Zaya Neusiedl,Neusiedl an der Zaya,Neusiedl-Zaya,Nojzidl'-an-der-Cajja,Нойзидль-ан-дер-Цайя 48.63333 16.8 P PPLA3 AT AT 03 308 30841 0 221 Europe/Vienna 2011-07-31
-2770684 Neusiedl am See Neusiedl am See Neusiedl,Neusiedl am See,Nezsider,Nojzidl'-am-Zee,Нойзидль-ам-Зее 47.94901 16.8417 P PPLA2 AT 01 107 10713 5949 125 Europe/Vienna 2012-02-03
-2770711 Neunkirchen Neunkirchen 47.72096 16.08107 P PPLA3 AT 03 318 31818 11313 372 Europe/Vienna 2011-07-31
-2770720 Neumarkt in Steiermark Neumarkt in Steiermark Neumarkt,Neumarkt in Steiermark,Sankt-Marajn-Nojmarkt,Санкт-Марайн-Ноймаркт 47.07083 14.42278 P PPLA3 AT AT 06 614 61412 0 849 Europe/Vienna 2011-07-31
-2770725 Neumarkt an der Ybbs Neumarkt an der Ybbs Neumarkt,Neumarkt an der Ybbs 48.13333 15.05 P PPLA3 AT AT 03 315 31527 0 229 Europe/Vienna 2011-07-31
-2770727 Neumarkt am Wallersee Neumarkt am Wallersee Neumark,Neumarkt,Neumarkt am Wallersee,Nojmarkt-am-Vallerzee,Ноймаркт-ам-Валлерзее 47.95 13.23333 P PPLA3 AT AT 05 503 50324 0 562 Europe/Vienna 2011-07-31
-2770730 Neulengbach Neulengbach 48.19745 15.90219 P PPLA3 AT 03 319 31926 0 229 Europe/Vienna 2011-07-31
-2770734 Neukirchen bei Lambach Neukirchen bei Lambach Neukirchen,Neukirchen bei Lambach 48.1 13.81667 P PPLA3 AT AT 04 418 41813 0 394 Europe/Vienna 2011-07-31
-2770736 Neukirchen an der Vöckla Neukirchen an der Vockla Neukirchen,Neukirchen an der Vockla,Neukirchen an der Vöckla,Nojkirkhen-an-der-Fjokla,Нойкирхен-ан-дер-Фёкла 48.03333 13.53333 P PPLA3 AT AT 04 417 41716 0 500 Europe/Vienna 2011-07-31
-2770740 Neukirchen am Großvenediger Neukirchen am Grossvenediger Neukirchen,Neukirchen am Grossvenediger,Neukirchen am Großvenediger,Nojkirkhen-am-Grosfenediger,Нойкирхен-ам-Гросфенедигер 47.25 12.28333 P PPLA3 AT AT 05 506 50614 0 835 Europe/Vienna 2011-07-31
-2770749 Neuhofen an der Ybbs Neuhofen an der Ybbs Neuhofen,Nojkhofen-na-Ibbse,Нойхофен-на-Иббсе 48.05795 14.85489 P PPLA3 AT AT 03 305 30520 0 318 Europe/Vienna 2011-07-31
-2770772 Neuhaus am Klausenbach Neuhaus am Klausenbach Neuhaus,Neuhaus am Klausenbach 46.87056 16.02889 P PPLA3 AT AT 01 105 10507 0 332 Europe/Vienna 2011-07-31
-2770780 Neuhaus Neuhaus 46.63333 14.88333 P PPLA3 AT 02 208 20810 0 488 Europe/Vienna 2011-07-31
-2770788 Neufeld an der Leitha Neufeld an der Leitha Neufeld,Neufeld an der Leitha,Nojfel'd-an-der-Lajte,Нойфельд-ан-дер-Лайте 47.85 16.36667 P PPLA3 AT AT 01 103 10309 0 232 Europe/Vienna 2011-07-31
-2770803 Neudörfl Neudorfl 47.78333 16.28333 P PPLA3 AT 01 106 10607 4183 272 Europe/Vienna 2011-07-31
-2770815 Neudorf bei Staatz Neudorf bei Staatz Neudorf,Neudorf bei Staatz 48.72083 16.49139 P PPLA3 AT AT 03 316 31634 0 202 Europe/Vienna 2011-07-31
-2770838 Neudau Neudau Neudau 47.16667 16.1 P PPLA3 AT 06 607 60720 0 282 Europe/Vienna 2011-07-31
-2770844 Neuberg an der Mürz Neuberg an der Murz Neuberg 47.66423 15.57226 P PPLA3 AT AT 06 613 61312 0 729 Europe/Vienna 2011-07-31
-2770873 Nestelbach im Ilztal Nestelbach im Ilztal Nestelbach im Ilztal,Nestolbach 47.08333 15.86667 P PPLA3 AT AT 06 605 60510 0 335 Europe/Vienna 2011-07-31
-2770874 Nestelbach bei Graz Nestelbach bei Graz Nestelbach,Nestelbach bei Graz 47.06053 15.6114 P PPLA3 AT AT 06 606 60631 0 450 Europe/Vienna 2011-09-08
-2770879 Nesselwängle Nesselwangle Nesselwangle,Nesselwängle 47.48333 10.61667 P PPLA3 AT 07 708 70824 0 1162 Europe/Vienna 2011-07-31
-2770885 Nenzing Nenzing 47.18436 9.70539 P PPLA3 AT 08 801 80116 5856 527 Europe/Vienna 2011-07-31
-2770889 Neidling Neidling Neidling,Neudling 48.23333 15.55 P PPLA3 AT AT 03 319 31925 0 292 Europe/Vienna 2011-07-31
-2770897 Neckenmarkt Neckenmarkt Neckenmarkt 47.6 16.55 P PPLA3 AT 01 108 10813 0 225 Europe/Vienna 2011-07-31
-2770910 Nauders Nauders Nauders,Наудерс 46.88333 10.51667 P PPLA3 AT 07 706 70615 1539 1557 Europe/Vienna 2011-07-31
-2770913 Natters Natters 47.23414 11.37342 P PPLA3 AT 07 703 70332 0 779 Europe/Vienna 2011-07-31
-2770927 Nassereith Nassereith Nassereith 47.31667 10.83333 P PPLA3 AT 07 702 70212 0 842 Europe/Vienna 2011-07-31
-2770941 Namlos Namlos Namlos 47.35 10.66667 P PPLA3 AT 07 708 70823 0 1445 Europe/Vienna 2011-07-31
-2770966 Naas Naas Naas 47.23333 15.6 P PPLA3 AT 06 617 61731 0 596 Europe/Vienna 2011-07-31
-2770974 Mutters Mutters 47.23333 11.38333 P PPLA3 AT 07 703 70331 0 776 Europe/Vienna 2011-07-31
-2770991 Musau Musau Agno,Musau,Агно 47.53333 10.66667 P PPLA3 AT 07 708 70822 0 819 Europe/Vienna 2011-07-31
-2770993 Mürzzuschlag Murzzuschlag Mjurccushlag,Murssuschalg,Murzzuschlag,Mürzzuschlag,Мюрццушлаг 47.6 15.68333 P PPLA3 AT 06 613 61311 9410 805 Europe/Vienna 2011-07-31
-2770995 Mürzsteg Murzsteg Murzsteg,Mürzsteg 47.66667 15.48333 P PPLA3 AT 06 613 61310 0 885 Europe/Vienna 2011-07-31
-2770996 Mürzhofen Murzhofen Murtzhofen,Murzhofen,Mürtzhofen,Mürzhofen 47.48333 15.38333 P PPLA3 AT AT 06 613 61309 0 542 Europe/Vienna 2011-07-31
-2771010 Mureck Mureck Mureck 46.70806 15.77472 P PPLA3 AT 06 615 61511 0 237 Europe/Vienna 2011-07-31
-2771017 Murau Murau 47.1 14.16667 P PPLA3 AT 06 614 61411 0 1107 Europe/Vienna 2011-07-31
-2771028 Münster Munster Mjunster,Мюнстер 47.42164 11.83356 P PPLA3 AT 07 705 70517 0 536 Europe/Vienna 2011-07-31
-2771042 Münchendorf Munchendorf Mjunkhendorf,Muenchendorf,Munchendorf,Münchendorf,Мюнхендорф 48.03333 16.38333 P PPLA3 AT AT 03 317 31718 0 183 Europe/Vienna 2011-07-31
-2771049 Müllendorf Mullendorf 47.83333 16.45 P PPLA3 AT 01 103 10308 0 197 Europe/Vienna 2011-07-31
-2771053 Muhr Muhr Muhr,Mur 47.11667 13.5 P PPLA3 AT AT 05 505 50505 0 2146 Europe/Vienna 2011-07-31
-2771078 Mühlgraben Muhlgraben 46.88972 16.04083 P PPLA3 AT 01 105 10512 0 314 Europe/Vienna 2011-07-31
-2771083 Mühlen Muhlen 47.03071 14.50848 P PPLA3 AT 06 614 61410 0 960 Europe/Vienna 2011-09-08
-2771089 Mühldorf bei Feldbach Muhldorf bei Feldbach Mjul'dorf (Fel'dbakh),Muhldorf,Muhldorf bei Feldbach,Mühldorf,Mühldorf bei Feldbach,Мюльдорф (Фельдбах) 46.93861 15.9075 P PPLA3 AT AT 06 604 60435 0 291 Europe/Vienna 2011-07-31
-2771090 Mühldorf Muhldorf 48.36667 15.35 P PPLA3 AT 03 313 31330 0 516 Europe/Vienna 2011-07-31
-2771095 Mühldorf Muhldorf 46.86028 13.35361 P PPLA3 AT 02 206 20624 0 714 Europe/Vienna 2011-07-31
-2771109 Mühlbach am Hochkönig Muhlbach am Hochkonig Muhlbach,Muhlbach am Hochkonig,Mühlbach,Mühlbach am Hochkönig 47.36667 13.13333 P PPLA3 AT AT 05 504 50415 0 1047 Europe/Vienna 2011-07-31
-2771139 Muggendorf Muggendorf 47.91059 15.93533 P PPLA3 AT 03 323 32322 0 450 Europe/Vienna 2011-07-31
-2771148 Mötz Motz 47.28333 10.95 P PPLA3 AT 07 702 70211 0 728 Europe/Vienna 2011-07-31
-2771194 Moschendorf Moschendorf Moschendorf,Moshendorf,Nagysaroslak,Nagysároslak,Мошендорф 47.05 16.48333 P PPLA3 AT 01 104 10428 0 202 Europe/Vienna 2011-07-31
-2771200 Mörtschach Mortschach 46.92389 12.91778 P PPLA3 AT 02 206 20622 0 1150 Europe/Vienna 2011-07-31
-2771207 Mortantsch Mortantsch Mortantsch 47.2 15.56667 P PPLA3 AT 06 617 61730 0 503 Europe/Vienna 2011-07-31
-2771219 Mörbisch am See Morbisch am See Fertomeggyes,Mjorbish-am-Zee,Moerbisch am See,Morbisch,Morbisch am See,Mörbisch,Mörbisch am See,Мёрбиш-ам-Зее 47.75 16.66667 P PPLA3 AT 01 103 10307 0 120 Europe/Vienna 2011-07-31
-2771228 Mooskirchen Mooskirchen Mooskirchen 46.98167 15.27889 P PPLA3 AT 06 616 61615 0 340 Europe/Vienna 2011-07-31
-2771244 Moosburg Moosburg Moosburg,Moosburg in Karnten,Moosburg in Kärnten,Mosburg,Мосбург 46.6575 14.17472 P PPLA3 AT 02 204 20421 4602 500 Europe/Vienna 2011-07-31
-2771245 Moosbrunn Moosbrunn 48.01667 16.45 P PPLA3 AT 03 324 32413 0 183 Europe/Vienna 2011-07-31
-2771271 Mönichwald Monichwald Monichwald,Mönichwald 47.45 15.86667 P PPLA3 AT 06 607 60719 0 587 Europe/Vienna 2011-07-31
-2771273 Mönichkirchen Monichkirchen 47.5 16.03333 P PPLA3 AT 03 318 31815 0 898 Europe/Vienna 2011-07-31
-2771277 Mondsee Mondsee Mondzee,Мондзее 47.85648 13.34908 P PPLA3 AT 04 417 41715 3307 493 496 Europe/Vienna 2011-07-31
-2771284 Mönchhof Monchhof 47.8802 16.94126 P PPLA3 AT 01 107 10712 0 128 Europe/Vienna 2011-07-31
-2771313 Mölbling Molbling 46.85 14.43333 P PPLA3 AT 02 205 20520 0 570 Europe/Vienna 2011-07-31
-2771321 Möggers Moggers 47.56667 9.81667 P PPLA3 AT 08 802 80229 0 874 Europe/Vienna 2011-07-31
-2771322 Mogersdorf Mogersdorf Mogersdorf,Nagyfalva 46.94917 16.23222 P PPLA3 AT 01 105 10506 0 227 Europe/Vienna 2011-07-31
-2771330 Modriach Modriach Modriach 46.95 15.05 P PPLA3 AT 06 616 61614 0 1103 Europe/Vienna 2011-07-31
-2771335 Mödling Modling Mjodling,Moedling,Mödling,mdlyng,Мёдлинг,מדלינג 48.08605 16.28921 P PPLA3 AT 03 317 31717 20710 222 Europe/Vienna 2011-07-31
-2771385 Mittersill Mittersill Mittersil,Mittersill,Mitterzil',Миттерзиль 47.26667 12.48333 P PPLA3 AT 05 506 50613 5680 833 Europe/Vienna 2011-07-31
-2771409 Mitterndorf an der Fischa Mitterndorf an der Fischa Mitterndorf,Mitterndorf an der Fischa 47.98333 16.46667 P PPLA3 AT AT 03 306 30621 0 182 Europe/Vienna 2011-07-31
-2771432 Mitterlabill Mitterlabill Mitterlabill 46.88917 15.63556 P PPLA3 AT 06 604 60434 0 312 Europe/Vienna 2011-07-31
-2771472 Mitterdorf im Mürztal Mitterdorf im Murztal Mitterdorf,Mitterdorf (Mjurcal'),Mitterdorf im Murztal,Mitterdorf im Mürztal,Миттердорф (Мюрцаль) 47.53333 15.51667 P PPLA3 AT AT 06 613 61308 0 586 Europe/Vienna 2011-07-31
-2771473 Mitterdorf an der Raab Mitterdorf an der Raab Mitterdorf,Mitterdorf an der Raab 47.16667 15.6 P PPLA3 AT AT 06 617 61729 0 477 Europe/Vienna 2011-07-31
-2771507 Mitterbach am Erlaufsee Mitterbach am Erlaufsee 47.81396 15.29537 P PPLA3 AT 03 314 31408 0 789 Europe/Vienna 2011-07-31
-2771533 Mittelberg Mittelberg 47.3237 10.15463 P PPLA3 AT 08 802 80228 4627 1207 Europe/Vienna 2011-07-31
-2771557 Mistelbach Mistelbach Mistel'-Bakh,Mistelbach,Mistelbach an der Zaya,Мистель-Бах 48.57 16.57667 P PPLA3 AT 03 316 31633 10820 228 Europe/Vienna 2011-07-31
-2771567 Mischendorf Mischendorf 47.18333 16.31667 P PPLA3 AT 01 109 10914 0 329 Europe/Vienna 2011-07-31
-2771582 Mils bei Imst Mils bei Imst Mils,Mils bei Imst 47.20616 10.67485 P PPLA3 AT 07 702 70210 0 733 Europe/Vienna 2011-07-31
-2771600 Miesenbach Miesenbach 47.84035 15.98236 P PPLA3 AT 03 323 32321 0 476 Europe/Vienna 2011-07-31
-2771606 Mieming Mieming 47.3 10.98333 P PPLA3 AT 07 702 70209 0 849 Europe/Vienna 2011-07-31
-2771609 Mieders Mieders 47.16667 11.38333 P PPLA3 AT 07 703 70328 0 971 Europe/Vienna 2011-07-31
-2771618 Michelhausen Michelhausen 48.29085 15.93893 P PPLA3 AT 03 321 32120 0 189 Europe/Vienna 2011-07-31
-2771619 Micheldorf in Oberösterreich Micheldorf in Oberoesterreich Micheldorf,Mikhel'dorf (Verkhnjaja Avstrija),Михельдорф (Верхняя Австрия) 47.87764 14.13357 P PPL AT 04 409 40908 5902 465 459 Europe/Vienna 2011-06-28
-2771621 Micheldorf Micheldorf 46.91667 14.41667 P PPLA3 AT 02 205 20519 0 773 Europe/Vienna 2011-07-31
-2771631 Michaelerberg Michaelerberg 47.41083 13.89333 P PPLA3 AT 06 612 61224 0 1119 Europe/Vienna 2011-07-31
-2771638 Mettersdorf am Saßbach Mettersdorf am Sassbach Mettersdorf,Mettersdorf am Sassbach,Mettersdorf am Saßbach 46.80583 15.71111 P PPLA3 AT AT 06 615 61510 0 279 Europe/Vienna 2011-07-31
-2771643 Metnitz Metnitz 46.98056 14.21667 P PPLA3 AT 02 205 20518 0 851 Europe/Vienna 2011-07-31
-2771660 Merkendorf Merkendorf 46.85722 15.90389 P PPLA3 AT 06 604 60433 0 266 Europe/Vienna 2011-07-31
-2771677 Mellach Mellach 46.93333 15.51667 P PPLA3 AT 06 606 60630 0 379 Europe/Vienna 2011-07-31
-2771682 Melk Melk Mel'k,Melk,Мельк 48.22737 15.33186 P PPLA3 AT 03 315 31524 5272 222 Europe/Vienna 2011-07-31
-2771698 Meiningen Meiningen 47.29891 9.57862 P PPLA3 AT 08 804 80413 0 426 Europe/Vienna 2011-07-31
-2771725 Mayrhofen Mayrhofen Mairhofen,Majerkhofen,Majrkhofen,Mayrhofen,Zillertal,Майерхофен,Майрхофен 47.16667 11.86667 P PPLA3 AT AT 07 709 70920 3869 633 641 Europe/Vienna 2011-07-31
-2771761 Mautern in Steiermark Mautern in Steiermark Mautern,Mautern Markt,Mautern Steiermark,Mautern in Steiermark 47.4 14.83333 P PPLA3 AT AT 06 611 61109 0 728 Europe/Vienna 2011-07-31
-2771764 Mauterndorf Mauterndorf Mautterndorf 47.13451 13.67884 P PPLA3 AT AT 05 505 50504 0 1128 Europe/Vienna 2011-07-31
-2771785 Mauerbach Mauerbach 48.24514 16.16793 P PPLA3 AT 03 324 32412 0 281 Europe/Vienna 2011-07-31
-2771811 Mattsee Mattsee 47.96667 13.1 P PPLA3 AT 05 503 50323 0 521 Europe/Vienna 2011-07-31
-2771817 Mattersburg Mattersburg Mattersburg,Mattersdorf,Nagymarton,Маттерсбург 47.73333 16.4 P PPLA2 AT 01 106 10606 6448 267 Europe/Vienna 2012-02-03
-2771828 Matrei in Osttirol Matrei in Osttirol Matraj (Osttirol'),Matrei,Matrei in Osttirol,Матрай (Осттироль) 47 12.53333 P PPLA3 AT 07 707 70717 5076 946 Europe/Vienna 2011-07-31
-2771830 Matrei am Brenner Matrei am Brenner Matrei,Matrei am Brenner 47.13333 11.45 P PPLA3 AT AT 07 703 70327 0 1058 Europe/Vienna 2011-07-31
-2771847 Marz Marz 47.71667 16.41667 P PPLA3 AT 01 106 10605 0 250 Europe/Vienna 2011-07-31
-2771854 Martinsberg Martinsberg 48.36667 15.15 P PPLA3 AT 03 325 32517 0 847 Europe/Vienna 2011-07-31
-2771866 Markt Sankt Martin Markt Sankt Martin Markt Sankt Martin,Markt-Sankt-Martin,Sankt Martin,Маркт-Санкт-Мартин 47.56667 16.43333 P PPLA3 AT AT 01 108 10812 0 291 Europe/Vienna 2011-07-31
-2771867 Sankt Florian Sankt Florian Markt Sankt Florian,Markt-Sankt-Florian,Sankt Florian,Маркт-Санкт-Флориан 48.20568 14.37836 P PPL AT AT 04 410 41013 5913 285 Europe/Vienna 2011-06-28
-2771868 Bad Pirawarth Bad Pirawarth Bad Pirawarth,Markt Pirawarth,Pyrawarth 48.45194 16.59833 P PPLA3 AT AT 03 308 30805 0 180 Europe/Vienna 2011-07-31
-2771869 Markt Piesting Markt Piesting Piesting,Unterpiesting 47.87358 16.1251 P PPLA3 AT AT 03 323 32319 0 335 Europe/Vienna 2011-07-31
-2771870 Markt Neuhodis Markt Neuhodis Markt Hodis,Markt Neuhodis,Markt-Nojkhodis,Маркт-Нойходис 47.3 16.4 P PPLA3 AT AT 01 109 10913 0 349 Europe/Vienna 2011-07-31
-2771876 Markt Allhau Markt Allhau Alhau,Allhau,Markt Al'khau,Markt Allhau,Маркт Альхау 47.28333 16.08333 P PPLA3 AT AT 01 109 10912 0 345 Europe/Vienna 2011-07-31
-2771881 Markgrafneusiedl Markgrafneusiedl 48.26667 16.63333 P PPLA3 AT 03 308 30836 0 150 Europe/Vienna 2011-07-31
-2771893 Mariazell Mariazell Mariazell 47.77306 15.31639 P PPLA3 AT 06 602 60210 1577 868 859 Europe/Vienna 2011-07-31
-2771894 Maria Wörth Maria Worth Maria Worth,Maria Wörth 46.61639 14.16306 P PPLA3 AT 02 204 20419 0 442 Europe/Vienna 2011-07-31
-2771900 Maria Taferl Maria Taferl 48.21667 15.15 P PPLA3 AT 03 315 31523 0 256 Europe/Vienna 2011-07-31
-2771902 Mariastein Mariastein Mariastein 47.53333 12.05 P PPLA3 AT 07 705 70516 0 724 Europe/Vienna 2011-07-31
-2771903 Mariasdorf Mariasdorf 47.36667 16.21667 P PPLA3 AT 01 109 10911 0 411 Europe/Vienna 2011-07-31
-2771910 Maria Saal Maria Saal Maria Saal 46.68083 14.34861 P PPLA3 AT 02 204 20418 0 507 Europe/Vienna 2011-07-31
-2771914 Maria Rain Maria Rain 46.55389 14.29556 P PPLA3 AT 02 204 20417 0 558 Europe/Vienna 2011-07-31
-2771917 Mariapfarr Mariapfarr 47.15 13.75 P PPLA3 AT 05 505 50503 0 1115 Europe/Vienna 2011-07-31
-2771918 Maria Neustift Maria Neustift Maria Neustift 47.93333 14.6 P PPLA3 AT 04 415 41510 0 591 Europe/Vienna 2011-07-31
-2771922 Maria Lankowitz Maria Lankowitz Lankowitz,Maria Lankowitz,Maria- Lankovic,Мариа- Ланковиц 47.05 15.06667 P PPLA3 AT AT 06 616 61613 0 486 Europe/Vienna 2011-07-31
-2771925 Maria Laach am Jauerling Maria Laach am Jauerling Maria Laach,Maria Laach am Jauerling 48.3 15.33333 P PPLA3 AT AT 03 313 31326 0 535 Europe/Vienna 2011-07-31
-2771930 Mariahof Mariahof Mariahof 47.1 14.4 P PPLA3 AT 06 614 61409 0 959 Europe/Vienna 2011-07-31
-2771940 Maria Enzersdorf Maria Enzersdorf Maria Enzersdorf 48.1 16.28333 P PPLA3 AT 03 317 31716 8085 223 Europe/Vienna 2011-07-31
-2771949 Maria-Anzbach Maria-Anzbach 48.19012 15.93155 P PPLA3 AT 03 319 31921 0 246 Europe/Vienna 2011-07-31
-2771951 Maria Alm am Steinernen Meer Maria Alm am Steinernen Meer Alm 47.40579 12.90121 P PPLA3 AT AT 05 506 50612 0 796 Europe/Vienna 2011-07-31
-2771962 Marchtrenk Marchtrenk 48.18333 14.11667 P PPLA3 AT 04 418 41812 11666 296 Europe/Vienna 2011-07-31
-2771970 Marchegg Marchegg 48.27885 16.90933 P PPLA3 AT 03 308 30835 0 141 Europe/Vienna 2011-07-31
-2771978 Marbach an der Donau Marbach an der Donau Marbach,Marbach an der Donau,Marbakh-na-Dunae,Марбах-на-Дунае 48.21667 15.15 P PPLA3 AT AT 03 315 31522 0 256 Europe/Vienna 2011-07-31
-2771994 Mannsdorf an der Donau Mannsdorf an der Donau Mannsdorf 48.152 16.66506 P PPLA3 AT AT 03 308 30834 0 148 Europe/Vienna 2011-07-31
-2771998 Manning Manning Manning 48.08851 13.66682 P PPLA3 AT 04 417 41714 0 509 Europe/Vienna 2011-07-31
-2772001 Mannersdorf an der Rabnitz Mannersdorf an der Rabnitz Mannersdorf,Mannersdorf an der Rabnitz,Mannersdorf-na-Rabenic,Маннерсдорф-на-Рабениц 47.42815 16.52678 P PPLA3 AT AT 01 108 10811 0 201 Europe/Vienna 2012-03-29
-2772003 Mannersdorf am Leithagebirge Mannersdorf am Leithagebirge Mannersdorf,Mannersdorf am Leithagebirge,Mannersdorf-am-Lajtagebirge,Маннерсдорф-ам-Лайтагебирге 47.96667 16.6 P PPLA3 AT AT 03 307 30716 0 228 Europe/Vienna 2011-07-31
-2772012 Mank Mank 48.11024 15.33915 P PPLA3 AT 03 315 31521 0 296 Europe/Vienna 2011-07-31
-2772058 Maissau Maissau 48.56667 15.81667 P PPLA3 AT 03 310 31026 0 363 Europe/Vienna 2011-07-31
-2772060 Maishofen Maishofen 47.36667 12.8 P PPLA3 AT 05 506 50611 0 766 Europe/Vienna 2011-07-31
-2772083 Mailberg Mailberg 48.67379 16.18132 P PPLA3 AT 03 310 31025 0 209 Europe/Vienna 2011-09-08
-2772105 Maierdorf Maierdorf Maierdorf 46.8925 15.84972 P PPLA3 AT 06 604 60432 0 316 Europe/Vienna 2011-07-31
-2772154 Mäder Mader 47.35 9.61667 P PPLA3 AT 08 804 80412 0 415 Europe/Vienna 2011-07-31
-2772168 Lutzmannsburg Lutzmannsburg Locsmand,Locsmánd,Lutzmannsburg 47.46667 16.63333 P PPLA3 AT 01 108 10810 0 210 Europe/Vienna 2011-07-31
-2772173 Lustenau Lustenau Lustenau,Лустенау,לוסטנאו 47.42642 9.65851 P PPLA3 AT 08 803 80303 20218 405 Europe/Vienna 2011-07-31
-2772186 Lunz am See Lunz am See Lunz 47.8612 15.02998 P PPLA3 AT AT 03 320 32005 0 596 Europe/Vienna 2011-07-31
-2772226 Ludmannsdorf Ludmannsdorf Bilcovs,Bilčovs,Ludmannsdorf 46.54139 14.13425 P PPLA3 AT 02 204 20416 0 570 Europe/Vienna 2011-09-08
-2772228 Ludesch Ludesch 47.2 9.78306 P PPLA3 AT 08 801 80115 0 657 Europe/Vienna 2011-07-31
-2772247 Losenstein Losenstein Losenstein 47.92428 14.43672 P PPLA3 AT 04 415 41509 0 399 Europe/Vienna 2011-09-08
-2772254 Lorüns Loruns 47.13306 9.85 P PPLA3 AT 08 801 80114 0 653 Europe/Vienna 2011-07-31
-2772255 Loretto Loretto 47.9 16.51667 P PPLA3 AT 01 103 10320 0 276 Europe/Vienna 2011-07-31
-2772264 Loosdorf Loosdorf Loosdorf,Losdorf,Лосдорф 48.2 15.4 P PPLA3 AT 03 315 31520 3519 226 Europe/Vienna 2011-07-31
-2772290 Loipersdorf bei Fürstenfeld Loipersdorf bei Furstenfeld Loipersdorf,Loipersdorf bei Furstenfeld,Loipersdorf bei Fürstenfeld 47 16.1 P PPLA3 AT AT 06 605 60509 0 263 Europe/Vienna 2011-07-31
-2772294 Loipersbach im Burgenland Loipersbach im Burgenland Loipersbach,Loipersbach im Burgenland,Lojpersbakh (Burgenland),Лойперсбах (Бургенланд) 47.7 16.46667 P PPLA3 AT AT 01 106 10604 0 307 Europe/Vienna 2011-07-31
-2772302 Loich Loich Loichgegend 47.99578 15.40163 P PPLA3 AT AT 03 319 31920 0 435 Europe/Vienna 2011-07-31
-2772330 Lofer Lofer 47.58634 12.6932 P PPLA3 AT 05 506 50610 0 627 Europe/Vienna 2011-07-31
-2772333 Lödersdorf Lodersdorf Lodersdorf,Lödersdorf 46.95861 15.94333 P PPLA3 AT 06 604 60431 0 312 Europe/Vienna 2011-07-31
-2772345 Lochau Lochau Lochau 47.53333 9.75 P PPLA3 AT 08 802 80226 5209 415 Europe/Vienna 2011-07-31
-2772380 Litzelsdorf Litzelsdorf 47.2 16.15 P PPLA3 AT 01 109 10909 0 290 Europe/Vienna 2011-07-31
-2772385 Litschau Litschau Litschau 48.93333 15.05 P PPLA3 AT 03 309 30925 0 556 Europe/Vienna 2011-07-31
-2772400 Linz Linz Lentia,Linc,Linca,Lincas,Linec,Linz,lin ci,lyntz,lynz,rintsu,Линц,לינץ,لینتز,リンツ,林茨 48.30639 14.28611 P PPLA AT 04 181162 266 268 Europe/Vienna 2010-08-09
-2772470 Lilienfeld Lilienfeld 48.01312 15.59664 P PPLA3 AT 03 314 31407 0 378 Europe/Vienna 2011-07-31
-2772476 Ligist Ligist Ligist,Лигист 46.99389 15.21083 P PPLA3 AT 06 616 61612 0 377 Europe/Vienna 2011-07-31
-2772480 Liezen Liezen Liezen 47.56667 14.23333 P PPLA3 AT 06 612 61223 6903 642 Europe/Vienna 2011-07-31
-2772505 Lienz Lienz Lienz,Linc,lyynz,rientsu,Линц,ליינץ,リエンツ 46.8289 12.76903 P PPLA3 AT 07 707 70716 12270 681 Europe/Vienna 2011-07-31
-2772514 Lieboch Lieboch Libokh,Lieboch,Либох 46.97417 15.3375 P PPLA3 AT 06 606 60629 0 334 Europe/Vienna 2011-07-31
-2772531 Lichtenwörth Lichtenworth 47.83333 16.28333 P PPLA3 AT 03 323 32318 0 251 Europe/Vienna 2011-07-31
-2772538 Lichtenegg Lichtenegg Lichteneg,Lichtenegg 47.6 16.2 P PPLA3 AT AT 03 323 32317 0 757 Europe/Vienna 2011-07-31
-2772564 Leutschach Leutschach 46.66722 15.46889 P PPLA3 AT 06 610 61023 0 351 Europe/Vienna 2011-07-31
-2772592 Lermoos Lermoos Leermoos,Lermoos,Lermos,Лермос 47.4 10.88333 P PPLA3 AT AT 07 708 70821 1115 989 Europe/Vienna 2011-07-31
-2772618 Leopoldsdorf im Marchfelde Leopoldsdorf im Marchfelde Leopol'dsdorf-im-Markhfel'de,Leopoldsdorf,Леопольдсдорф-им-Мархфельде 48.22261 16.68858 P PPLA3 AT AT 03 308 30831 0 147 Europe/Vienna 2011-07-31
-2772620 Leopoldsdorf Leopoldsdorf 48.11557 16.39126 P PPLA3 AT 03 324 32410 0 185 Europe/Vienna 2011-07-31
-2772635 Leonding Leonding Leonding,Леондинг,לאונדינג 48.27965 14.2533 P PPL AT 04 410 41012 22736 289 Europe/Vienna 2011-06-28
-2772641 Leogang Leogang 47.43906 12.76109 P PPLA3 AT 05 506 50609 0 785 Europe/Vienna 2011-07-31
-2772645 Leobersdorf Leobersdorf 47.92796 16.21651 P PPLA3 AT 03 306 30620 0 267 Europe/Vienna 2011-07-31
-2772646 Leobendorf Leobendorf 48.38333 16.31667 P PPLA3 AT 03 312 31216 0 234 Europe/Vienna 2011-07-31
-2772649 Leoben Leoben Leoben,Леобен,לאובן 47.38333 15.1 P PPLA3 AT 06 611 61108 24809 538 Europe/Vienna 2011-07-31
-2772653 Lenzing Lenzing 47.97326 13.60846 P PPLA3 AT 04 417 41713 5044 485 Europe/Vienna 2011-07-31
-2772662 Lengenfeld Lengenfeld 48.46667 15.58333 P PPLA3 AT 03 313 31323 0 345 Europe/Vienna 2011-07-31
-2772672 Lendorf Lendorf 46.83528 13.43028 P PPLA3 AT 02 206 20616 0 590 Europe/Vienna 2011-07-31
-2772675 Lend Lend 47.29856 13.05176 P PPLA3 AT 05 506 50608 0 640 Europe/Vienna 2011-07-31
-2772689 Leitzersdorf Leitzersdorf 48.41667 16.23333 P PPLA3 AT 03 312 31215 0 221 Europe/Vienna 2011-07-31
-2772709 Leithaprodersdorf Leithaprodersdorf 47.93333 16.46667 P PPLA3 AT 01 103 10306 0 196 Europe/Vienna 2011-07-31
-2772713 Leitersdorf im Raabtal Leitersdorf im Raabtal Leitersdorf,Leitersdorf im Raabtal 46.95 15.95 P PPLA3 AT AT 06 604 60430 0 267 Europe/Vienna 2011-07-31
-2772736 Leisach Leisach Leisach 46.8125 12.74861 P PPLA3 AT 07 707 70715 0 745 Europe/Vienna 2011-07-31
-2772753 Leibnitz Leibnitz Leibnitz, Stiria,Leibnitz, Styria 46.78161 15.53836 P PPLA3 AT 06 610 61022 7029 273 Europe/Vienna 2012-01-18
-2772757 Leiben Leiben 48.24628 15.2746 P PPLA3 AT 03 315 31519 0 327 Europe/Vienna 2011-07-31
-2772796 Lechaschau Lechaschau Lechaschau 47.48333 10.7 P PPLA3 AT 07 708 70820 0 855 Europe/Vienna 2011-07-31
-2772798 Lech Lech Lekh,Лех 47.20797 10.14184 P PPLA3 AT 08 801 80113 1865 1442 Europe/Vienna 2011-07-31
-2772810 Laxenburg Laxenburg Laksenburg,Лаксенбург 48.06833 16.35607 P PPLA3 AT 03 317 31715 0 179 Europe/Vienna 2011-07-31
-2772820 Lavant Lavant Lavant 46.79889 12.83806 P PPLA3 AT 07 707 70714 0 656 Europe/Vienna 2011-07-31
-2772821 Lavamünd Lavamund 46.64019 14.94733 P PPLA3 AT 02 209 20909 0 349 Europe/Vienna 2011-09-08
-2772827 Lauterach Lauterach 47.48306 9.73306 P PPLA3 AT 08 802 80224 9212 412 Europe/Vienna 2011-07-31
-2772833 Laussa Laussa Lausa,Laussa 47.95 14.45 P PPLA3 AT AT 04 415 41508 0 492 Europe/Vienna 2011-07-31
-2772891 Lassing Lassing Lassing 47.51667 14.26667 P PPLA3 AT 06 612 61222 0 966 Europe/Vienna 2011-07-31
-2772902 Lassee Lassee 48.22479 16.8223 P PPLA3 AT 03 308 30830 0 144 Europe/Vienna 2011-07-31
-2772942 Lanzenkirchen Lanzenkirchen 47.73333 16.23333 P PPLA3 AT 03 323 32316 0 300 Europe/Vienna 2011-07-31
-2772960 Lans Lans 47.23333 11.45 P PPLA3 AT 07 703 70325 0 988 Europe/Vienna 2011-07-31
-2772961 Lannach Lannach Lannach,Lannakh,Ланнах 46.94611 15.33722 P PPLA3 AT 06 603 60318 0 330 Europe/Vienna 2011-07-31
-2772977 Langschlag Langschlag 48.56667 14.88333 P PPLA3 AT 03 325 32516 0 833 Europe/Vienna 2011-07-31
-2772998 Langenzersdorf Langenzersdorf Langenzersdorf 48.3 16.35 P PPLA3 AT 03 312 31214 7733 163 Europe/Vienna 2011-07-31
-2773000 Langenwang Langenwang Langenvang,Langenwang,Лангенванг 47.56667 15.61667 P PPLA3 AT 06 613 61307 0 630 Europe/Vienna 2011-07-31
-2773007 Langenrohr Langenrohr 48.30489 16.01034 P PPLA3 AT 03 321 32119 0 179 Europe/Vienna 2011-07-31
-2773010 Langenlois Langenlois Langenlois 48.46667 15.66667 P PPLA3 AT 03 313 31322 7081 277 Europe/Vienna 2011-07-31
-2773020 Langegg bei Graz Langegg bei Graz Langegg,Langegg bei Graz 47.05 15.63333 P PPLA3 AT AT 06 606 60627 0 489 Europe/Vienna 2011-07-31
-2773032 Langau Langau 48.83207 15.7156 P PPLA3 AT 03 311 31113 0 446 Europe/Vienna 2011-07-31
-2773038 Lang Lang Lang,Langerberg 46.83765 15.50471 P PPLA3 AT AT 06 610 61020 0 287 Europe/Vienna 2011-07-31
-2773056 Landl Landl 47.65 14.71667 P PPLA3 AT 06 612 61221 0 603 Europe/Vienna 2011-07-31
-2773070 Landeck Landeck 47.13988 10.56593 P PPLA3 AT 07 706 70614 7351 789 Europe/Vienna 2011-07-31
-2773077 Lamprechtshausen Lamprechtshausen Lamprechtshausen 47.98333 12.95 P PPLA3 AT 05 503 50322 0 437 Europe/Vienna 2011-07-31
-2773110 Lambach Lambach 48.09276 13.87453 P PPLA3 AT 04 418 41811 0 367 Europe/Vienna 2011-07-31
-2773159 Lafnitz Lafnitz Lafnitz 47.36667 16.01667 P PPLA3 AT 06 607 60717 0 405 Europe/Vienna 2011-07-31
-2773165 Ladis Ladis Ladis 47.06667 10.63333 P PPLA3 AT 07 706 70613 0 1396 Europe/Vienna 2011-07-31
-2773172 Ladendorf Ladendorf 48.53333 16.48333 P PPLA3 AT 03 316 31630 0 211 Europe/Vienna 2011-07-31
-2773181 Lackendorf Lackendorf 47.58333 16.5 P PPLA3 AT 01 108 10824 0 272 Europe/Vienna 2011-07-31
-2773184 Lackenbach Lackenbach 47.58333 16.46667 P PPLA3 AT 01 108 10808 0 301 Europe/Vienna 2011-07-31
-2773197 Labuch Labuch Labuch,Unter Labuch 47.06667 15.66667 P PPLA3 AT AT 06 617 61725 0 481 Europe/Vienna 2011-07-31
-2773215 Laakirchen Laakirchen 47.98188 13.82166 P PPL AT 04 407 40711 9569 439 Europe/Vienna 2011-06-26
-2773223 Laab im Walde Laab im Walde Laab 48.15486 16.17359 P PPLA3 AT AT 03 317 31714 0 314 Europe/Vienna 2011-07-31
-2773229 Laa an der Thaya Laa an der Thaya Laa,Laa an der Thaya,Laa-an-der-Tajja,Лаа-ан-дер-Тайя 48.71667 16.38333 P PPLA3 AT 03 316 31629 6084 179 Europe/Vienna 2011-07-31
-2773250 Kundl Kundl Kundl,Kundl',Кундль 47.46667 11.98333 P PPLA3 AT 07 705 70514 0 533 Europe/Vienna 2011-07-31
-2773253 Kumberg Kumberg Kumberg,Кумберг 47.15 15.53333 P PPLA3 AT 06 606 60626 0 477 Europe/Vienna 2011-07-31
-2773264 Kulm am Zirbitz Kulm am Zirbitz Kulm,Kulm am Zirbitz 47.05 14.48333 P PPLA3 AT AT 06 614 61407 0 1106 Europe/Vienna 2011-07-31
-2773271 Kukmirn Kukmirn 47.07544 16.21033 P PPLA3 AT 01 104 10408 0 255 Europe/Vienna 2011-09-08
-2773300 Kufstein Kufstein Kuffstein,Kufshtajn,Kufsstein,Kufstein,Куфштайн 47.58333 12.16667 P PPLA3 AT 07 705 70513 16115 483 Europe/Vienna 2011-07-31
-2773304 Kuchl Kuchl Kuchl 47.62647 13.1448 P PPLA3 AT 05 502 50207 6668 466 Europe/Vienna 2011-07-31
-2773317 Krusdorf Krusdorf Krusdorf 46.83944 15.86083 P PPLA3 AT 06 604 60429 0 272 Europe/Vienna 2011-07-31
-2773335 Krumegg Krumegg 47.02111 15.63139 P PPLA3 AT 06 606 60625 0 477 Europe/Vienna 2011-07-31
-2773341 Krumbach Krumbach 47.48306 9.93583 P PPLA3 AT 08 802 80221 0 730 Europe/Vienna 2011-07-31
-2773343 Krumau am Kamp Krumau am Kamp Krumau,Krumau am Kamp 48.58333 15.43333 P PPLA3 AT AT 03 313 31321 0 535 Europe/Vienna 2011-07-31
-2773366 Krottendorf Krottendorf 47.2 15.63333 P PPLA3 AT 06 617 61723 0 470 Europe/Vienna 2011-07-31
-2773426 Krispl Krispl 47.71667 13.18333 P PPLA3 AT 05 502 50206 0 838 Europe/Vienna 2011-07-31
-2773447 Krieglach Krieglach Krieglach 47.53333 15.55 P PPLA3 AT 06 613 61306 5236 649 Europe/Vienna 2011-07-31
-2773493 Bad Kreuzen Bad Kreuzen 48.26737 14.80648 P PPL AT 04 411 41108 2361 475 Europe/Vienna 2011-06-28
-2773528 Krensdorf Krensdorf Krenistof,Kreništof,Krensdorf,Tormafalu,Кренсдорф 47.78333 16.41667 P PPLA3 AT AT 01 106 10619 0 211 Europe/Vienna 2011-07-31
-2773538 Kremsmünster Kremsmunster Kremsmunster,Kremsmünster 48.0529 14.12919 P PPL AT 04 409 40907 6626 344 Europe/Vienna 2011-06-28
-2773549 Krems an der Donau Krems an der Donau Krems,Krems an der Donau,Krems-na-Dunae,qrms,Кремс-на-Дунае,קרמס 48.40921 15.61415 P PPLA3 AT 03 301 30101 23932 195 Europe/Vienna 2011-07-31
-2773577 Kraubath an der Mur Kraubath an der Mur Kraubath,Kraubath an der Mur 47.3 14.93333 P PPLA3 AT AT 06 611 61107 0 608 Europe/Vienna 2011-07-31
-2773605 Kramsach Kramsach Kramsach,Kramzakh,Крамзах 47.45 11.86667 P PPLA3 AT 07 705 70512 0 551 Europe/Vienna 2011-07-31
-2773613 Krakauschatten Krakauschatten Krakauschatten 47.18333 13.96667 P PPLA3 AT 06 614 61406 0 1209 Europe/Vienna 2011-07-31
-2773614 Krakauhintermühlen Krakauhintermuhlen Krakauhintermuhlen,Krakauhintermühlen 47.18333 13.98333 P PPLA3 AT 06 614 61405 0 1161 Europe/Vienna 2011-07-31
-2773616 Krakaudorf Krakaudorf Krakaudorf 47.16667 14.01667 P PPLA3 AT 06 614 61404 0 1199 Europe/Vienna 2011-07-31
-2773646 Köttmannsdorf Kottmannsdorf Kjottmannsdorf,Koettmannsdorf,Kottmannsdorf,Köttmannsdorf,Кёттманнсдорф 46.56139 14.23389 P PPLA3 AT AT 02 204 20414 0 542 Europe/Vienna 2011-07-31
-2773653 Kottingbrunn Kottingbrunn 47.95096 16.22715 P PPLA3 AT 03 306 30618 7184 252 Europe/Vienna 2011-07-31
-2773680 Köstendorf Kostendorf Gross Kostendorf,Gross Köstendorf,Kjostendorf,Kostendorf,Köstendorf,Кёстендорф 47.95 13.2 P PPLA3 AT AT 05 503 50320 0 533 Europe/Vienna 2011-07-31
-2773691 Kössen Kossen 47.6699 12.40545 P PPLA3 AT 07 704 70412 0 589 Europe/Vienna 2011-07-31
-2773698 Korneuburg Korneuburg Korneuburg 48.35 16.33333 P PPLA3 AT 03 312 31213 11498 164 Europe/Vienna 2011-07-31
-2773713 Koppl Koppl 47.80808 13.15561 P PPLA3 AT 05 503 50321 0 748 Europe/Vienna 2011-07-31
-2773736 Königstetten Konigstetten 48.30198 16.14492 P PPLA3 AT 03 321 32116 0 176 Europe/Vienna 2011-07-31
-2773746 Königsdorf Konigsdorf 47 16.16667 P PPLA3 AT 01 105 10511 0 232 Europe/Vienna 2011-07-31
-2773773 Kolsass Kolsass 47.28333 11.63333 P PPLA3 AT 07 703 70322 0 1185 Europe/Vienna 2011-07-31
-2773804 Kohlschwarz Kohlschwarz Kohlschwarz 47.11667 15.11667 P PPLA3 AT 06 616 61610 0 573 Europe/Vienna 2011-07-31
-2773818 Kohlberg Kohlberg Kohlberg 46.9 15.78333 P PPLA3 AT 06 604 60427 0 361 Europe/Vienna 2011-07-31
-2773823 Kohfidisch Kohfidisch Gyepufuezes,Gyepufüzes,Kofidish,Kohfedish,Kohfidisch,Кофидиш 47.16667 16.35 P PPLA3 AT 01 109 10908 0 277 Europe/Vienna 2011-07-31
-2773828 Koglhof Koglhof Koglhof 47.31667 15.68333 P PPLA3 AT 06 617 61722 0 603 Europe/Vienna 2011-07-31
-2773848 Köflach Koflach Koflach,Köflach 47.06667 15.08333 P PPLA3 AT 06 616 61609 10447 451 Europe/Vienna 2011-07-31
-2773863 Koblach Koblach 47.33306 9.6 P PPLA3 AT 08 804 80410 0 433 Europe/Vienna 2011-07-31
-2773866 Kobersdorf Kobersdorf Kabold,Kobersdorf,Коберсдорф 47.6 16.4 P PPLA3 AT 01 108 10807 0 369 Europe/Vienna 2011-07-31
-2773873 Kobenz Kobenz Kobenz 47.25 14.85 P PPLA3 AT 06 609 60908 0 640 Europe/Vienna 2011-07-31
-2773887 Knittelfeld Knittelfeld Knittelfeld 47.21667 14.81667 P PPLA3 AT 06 609 60907 12704 654 Europe/Vienna 2011-07-31
-2773913 Klosterneuburg Klosterneuburg Klosterneuberg,Klosterneuburg,Klosternojburg,Клостернойбург 48.30521 16.32522 P PPLA3 AT 03 324 32408 24843 192 Europe/Vienna 2011-07-31
-2773915 Klösterle Klosterle 47.13333 10.08333 P PPLA3 AT 08 801 80112 0 1124 Europe/Vienna 2011-07-31
-2773921 Kloster Kloster Kloster,Klosterwinkel 46.88333 15.08333 P PPLA3 AT AT 06 603 60316 0 886 Europe/Vienna 2011-07-31
-2773929 Klöch Kloch Kloch,Klöch 46.76472 15.96556 P PPLA3 AT 06 615 61509 0 304 Europe/Vienna 2011-07-31
-2773938 Klingenbach Klingenbach Klingenbach,Klingenbakh,Klinpuh,Клингенбах 47.75202 16.54069 P PPLA3 AT 01 103 10305 0 239 Europe/Vienna 2011-11-13
-2773964 Kleinzell im Mühlkreis Kleinzell im Muehlkreis Kleinzel,Kleinzell im Muhlkreis,Kleinzell im Mühlkreis 48.45585 13.99195 P PPL AT AT 04 413 41316 1448 548 546 Europe/Vienna 2011-07-11
-2773966 Kleinzell Kleinzell 47.97993 15.7362 P PPLA3 AT 03 314 31406 0 468 Europe/Vienna 2011-07-31
-2774015 Kleinsölk Kleinsolk Kleinsolk,Kleinsölk,Vorderwald 47.39444 13.93944 P PPLA3 AT AT 06 612 61220 0 957 Europe/Vienna 2011-07-31
-2774062 Klein-Pöchlarn Klein-Poechlarn 48.21667 15.21667 P PPLA3 AT 03 315 31516 963 209 Europe/Vienna 2011-07-31
-2774076 Kleinmürbisch Kleinmurbisch 47.03333 16.33333 P PPLA3 AT 01 104 10422 0 289 Europe/Vienna 2011-07-31
-2774087 Kleinlobming Kleinlobming Kleinlobming 47.15 14.83333 P PPLA3 AT 06 609 60906 0 845 Europe/Vienna 2011-07-31
-2774097 Kleinkirchheim Kleinkirchheim Bad Klajnkirkhgajm,Bad Kleinkirchheim,Kleinkirchheim,Бад Клайнкирхгайм 46.82278 13.79222 P PPL AT AT 02 1809 1362 Europe/Vienna 2012-01-18
-2774279 Klausen-Leopoldsdorf Klausen-Leopoldsdorf Klausenleopoldsdorf 48.08771 16.01686 P PPLA3 AT 03 306 30616 0 373 Europe/Vienna 2011-07-31
-2774295 Klaus Klaus 47.30913 9.64678 P PPLA3 AT 08 804 80409 0 476 Europe/Vienna 2011-07-31
-2774326 Klagenfurt am Wörthersee Klagenfurt am Woerthersee Celovec,Clagenfurtum,Klagenfurt,Klagenfurte,Klāgenfurte,ke la gen fu,kuragenfuruto,qlgnpwrt,Клагенфурт,קלגנפורט,クラーゲンフルト,克拉根福 46.62472 14.30528 P PPLA AT 02 201 20101 90610 450 Europe/Vienna 2012-02-03
-2774341 Kitzeck im Sausal Kitzeck im Sausal Kitzeck,Kitzeck im Sausal 46.76667 15.43333 P PPLA3 AT AT 06 610 61019 0 387 Europe/Vienna 2011-07-31
-2774347 Kitzbühel Kitzbuhel Kitcbjuehl',Kitzbichl,Kitzbuehel,Kitzbühel,kittsubyueru,qyzbyhl,Китцбюэль,קיצביהל,キッツビューエル 47.44637 12.39215 P PPLA3 AT 07 704 70411 8818 751 Europe/Vienna 2011-07-31
-2774348 Kittsee Kittsee Gijeca,Kittsee,Kitzee,Koepcseny,Köpcsény,kittoze,Китзее,キットゼー 48.0925 17.06389 P PPLA3 AT 01 107 10711 0 136 Europe/Vienna 2011-07-31
-2774357 Kirnberg an der Mank Kirnberg an der Mank Kirnberg 48.07246 15.32232 P PPLA3 AT AT 03 315 31515 0 329 Europe/Vienna 2011-07-31
-2774362 Kirchstetten Kirchstetten 48.18333 15.81667 P PPLA3 AT 03 319 31919 0 263 Europe/Vienna 2011-07-31
-2774368 Kirchschlag in der Buckligen Welt Kirchschlag in der Buckligen Welt Kirchschlag in der Buckligen Welt,Kirschlag 47.5 16.28333 P PPLA3 AT AT 03 323 32314 0 527 Europe/Vienna 2011-07-31
-2774369 Kirchschlag bei Linz Kirchschlag bei Linz Kirchschlag,Kirchschlag bei Linz 48.41149 14.27656 P PPLA3 AT AT 04 416 41613 0 893 Europe/Vienna 2011-12-19
-2774370 Kirchschlag Kirchschlag 48.38333 15.21667 P PPLA3 AT 03 325 32514 0 851 Europe/Vienna 2011-07-31
-2774387 Kirchdorf in Tirol Kirchdorf in Tirol Kirchdorf,Kirchdorf in Tirol,Kirkhdorf (Tirol'),Кирхдорф (Тироль) 47.55626 12.44511 P PPLA3 AT AT 07 704 70410 0 641 Europe/Vienna 2012-01-05
-2774396 Kirchbichl Kirchbichl 47.51667 12.08333 P PPLA3 AT 07 705 70511 5115 499 Europe/Vienna 2011-07-31
-2774399 Kirchberg in Tirol Kirchberg in Tirol Kirchberg,Kirkhberg (Tirol'),Кирхберг (Тироль) 47.44539 12.31602 P PPLA3 AT AT 07 704 70409 0 823 Europe/Vienna 2011-07-31
-2774403 Kirchberg an der Raab Kirchberg an der Raab Kirchberg,Kirchberg an der Raab 46.98583 15.76694 P PPLA3 AT AT 06 604 60426 0 356 Europe/Vienna 2011-07-31
-2774404 Kirchberg an der Pielach Kirchberg an der Pielach Kirchberg,Kirkhberg-an-der-Pilakh,Кирхберг-ан-дер-Пилах 48.0269 15.42875 P PPLA3 AT AT 03 319 31918 0 371 Europe/Vienna 2011-07-31
-2774405 Kirchberg am Wechsel Kirchberg am Wechsel Kirchberg,Kirchberg am Wechsel,Kirkhberg-am-Vekzel',Кирхберг-ам-Векзель 47.60738 15.99103 P PPLA3 AT AT 03 318 31814 0 560 Europe/Vienna 2011-09-08
-2774406 Kirchberg am Walde Kirchberg am Walde Kirchberg,Kirchberg am Walde 48.71667 15.08333 P PPLA3 AT AT 03 309 30921 0 630 Europe/Vienna 2011-07-31
-2774408 Kirchberg am Wagram Kirchberg am Wagram Kirchberg,Kirchberg am Wagram,Kirkhberg-am-Vagram,Кирхберг-ам-Ваграм 48.43333 15.88333 P PPLA3 AT AT 03 321 32114 0 184 Europe/Vienna 2011-07-31
-2774423 Kirchbach in Steiermark Kirchbach in Steiermark Kirchbach,Kirchbach in Steiermark 46.93167 15.66194 P PPLA3 AT AT 06 604 60425 0 333 Europe/Vienna 2011-07-31
-2774427 Kirchbach Kirchbach Kirchbach,Kirchbach im Gailtal,Kirkhbakh,Кирхбах 46.65028 13.21139 P PPLA3 AT AT 02 203 20306 0 1205 Europe/Vienna 2011-07-31
-2774437 Kindberg Kindberg 47.5 15.45 P PPLA3 AT 06 613 61305 5790 584 Europe/Vienna 2011-07-31
-2774443 Kilb Kilb 48.10101 15.4085 P PPLA3 AT 03 315 31514 0 299 Europe/Vienna 2011-07-31
-2774482 Keutschach am See Keutschach am See Hodise,Hodiše,Keutschach,Keutschach am See,Kojtchakh-am-Zee,Койтчах-ам-Зее 46.59306 14.18889 P PPLA3 AT AT 02 204 20412 0 552 Europe/Vienna 2011-07-31
-2774534 Kennelbach Kennelbach 47.48306 9.76667 P PPLA3 AT 08 802 80220 0 507 Europe/Vienna 2011-07-31
-2774541 Kemeten Kemeten 47.23333 16.15 P PPLA3 AT 01 109 10907 0 332 Europe/Vienna 2011-07-31
-2774547 Kematen in Tirol Kematen in Tirol Kematen,Kematen in Tirol,Кематен 47.25 11.26667 P PPLA3 AT AT 07 703 70320 0 630 Europe/Vienna 2011-07-31
-2774550 Kematen an der Ybbs Kematen an der Ybbs 48.02541 14.76468 P PPLA3 AT 03 305 30517 0 316 Europe/Vienna 2011-07-31
-2774589 Kautzen Kautzen 48.91667 15.23333 P PPLA3 AT 03 322 32210 0 504 Europe/Vienna 2011-07-31
-2774593 Kauns Kauns Kauns 47.08333 10.68333 P PPLA3 AT 07 706 70612 0 1216 Europe/Vienna 2011-07-31
-2774597 Kaumberg Kaumberg 48.02415 15.89842 P PPLA3 AT 03 314 31405 0 477 Europe/Vienna 2011-07-31
-2774612 Katzelsdorf Katzelsdorf 47.78333 16.28333 P PPLA3 AT 03 323 32313 0 272 Europe/Vienna 2011-07-31
-2774641 Kasten bei Böheimkirchen Kasten bei Boheimkirchen 48.1532 15.77946 P PPLA3 AT 03 319 31917 0 278 Europe/Vienna 2011-07-31
-2774673 Kartitsch Kartitsch Boden,Kartitsch 46.72889 12.50083 P PPLA3 AT AT 07 707 70713 0 1485 Europe/Vienna 2011-07-31
-2774681 Karrösten Karrosten 47.21667 10.76667 P PPLA3 AT 07 702 70207 0 796 Europe/Vienna 2011-07-31
-2774683 Karres Karres 47.21667 10.78333 P PPLA3 AT 07 702 70206 0 814 Europe/Vienna 2011-07-31
-2774703 Karlstetten Karlstetten 48.25 15.56667 P PPLA3 AT 03 319 31916 0 348 Europe/Vienna 2011-07-31
-2774758 Kaprun Kaprun 47.27239 12.75985 P PPLA3 AT 05 506 50606 2947 786 772 Europe/Vienna 2011-07-31
-2774761 Kappl Kappl Kappl 47.06667 10.38333 P PPLA3 AT 07 706 70609 0 1321 Europe/Vienna 2011-07-31
-2774767 Kappel am Krappfeld Kappel am Krappfeld Kappel,Kappel am Krappfeld 46.83861 14.48639 P PPLA3 AT AT 02 205 20512 0 590 Europe/Vienna 2011-07-31
-2774772 Kapfenstein Kapfenstein Kapfenstein 46.88611 15.97167 P PPLA3 AT 06 604 60424 0 302 Europe/Vienna 2011-07-31
-2774773 Kapfenberg Kapfenberg 47.44458 15.29331 P PPLA3 AT 06 602 60209 21819 502 Europe/Vienna 2011-07-31
-2774776 Kapelln Kapelln 48.25817 15.75731 P PPLA3 AT 03 319 31915 0 212 Europe/Vienna 2011-07-31
-2774782 Kapellen Kapellen 47.63333 15.61667 P PPLA3 AT 06 613 61304 0 1073 Europe/Vienna 2011-07-31
-2774823 Kammern im Liesingtal Kammern im Liesingtal Kammern im Liesingtal 47.38333 14.9 P PPLA3 AT 06 611 61106 0 801 Europe/Vienna 2011-07-31
-2774839 Kalwang Kalwang Kallwang,Kalwang 47.41667 14.75 P PPLA3 AT AT 06 611 61105 0 970 Europe/Vienna 2011-07-31
-2774851 Kaltenleutgeben Kaltenleutgeben 48.11646 16.19956 P PPLA3 AT 03 317 31713 0 335 Europe/Vienna 2011-07-31
-2774876 Kaltenbach Kaltenbach 47.28333 11.86667 P PPLA3 AT 07 709 70918 0 930 Europe/Vienna 2011-07-31
-2774894 Kalsdorf bei Graz Kalsdorf bei Graz Kal'sdorf (Grac),Kalsdorf,Kalsdorf bei Graz,Кальсдорф (Грац) 46.96528 15.48028 P PPLA3 AT AT 06 606 60624 0 318 Europe/Vienna 2011-07-31
-2774932 Kaisersdorf Kaisersdorf Kaisersdorf,Kajzersdorf,Kalistrof,Kalištrof,Кайзерсдорф 47.53333 16.4 P PPLA3 AT 01 108 10806 0 346 Europe/Vienna 2011-07-31
-2774967 Kaindorf an der Sulm Kaindorf an der Sulm Kaindorf,Kajndorf-an-der-Zul'm,Кайндорф-ан-дер-Зульм 46.79248 15.53879 P PPLA3 AT AT 06 610 61018 0 275 Europe/Vienna 2011-07-31
-2774970 Kaindorf Kaindorf Kaindorf 47.21667 15.9 P PPLA3 AT 06 607 60715 0 324 Europe/Vienna 2011-07-31
-2774977 Kainach bei Voitsberg Kainach bei Voitsberg Kainach,Kainach bei Voitsberg 47.13333 15.08333 P PPLA3 AT AT 06 616 61608 0 755 Europe/Vienna 2011-07-31
-2774981 Kaibing Kaibing Kaibing 47.2 15.83333 P PPLA3 AT 06 607 60714 0 351 Europe/Vienna 2011-07-31
-2775000 Jungholz Jungholz 47.57409 10.44723 P PPLA3 AT 07 708 70818 0 1057 Europe/Vienna 2011-07-31
-2775020 Judenburg Judenburg Judenburg 47.16667 14.66667 P PPLA3 AT 06 608 60806 9992 754 Europe/Vienna 2011-07-31
-2775040 Jois Jois 47.96165 16.79604 P PPLA3 AT 01 107 10710 0 138 Europe/Vienna 2011-07-31
-2775043 Johnsbach Johnsbach Johnsbach 47.53333 14.58333 P PPLA3 AT 06 612 61219 0 1067 Europe/Vienna 2011-07-31
-2775068 Jochberg Jochberg Jochberg,Khollersbakh,Холлерсбах 47.38333 12.4 P PPLA3 AT 07 704 70408 0 1174 Europe/Vienna 2011-07-31
-2775086 Jerzens Jerzens 47.15 10.73333 P PPLA3 AT 07 702 70205 0 1143 Europe/Vienna 2011-07-31
-2775089 Jennersdorf Jennersdorf Enersdorf,Gyanafalva,Jennersdorf,Енерсдорф 46.93848 16.14158 P PPLA2 AT 01 105 10504 4319 242 Europe/Vienna 2012-02-03
-2775093 Jenbach Jenbach 47.39173 11.77245 P PPLA3 AT 07 709 70917 6806 564 Europe/Vienna 2011-07-31
-2775102 Jedenspeigen Jedenspeigen 48.49807 16.87225 P PPLA3 AT 03 308 30829 0 156 Europe/Vienna 2011-07-31
-2775125 Japons Japons 48.7925 15.56831 P PPLA3 AT 03 311 31111 0 510 Europe/Vienna 2011-07-31
-2775138 Jaidhof Jaidhof 48.53333 15.48333 P PPLA3 AT 03 313 31319 0 582 Europe/Vienna 2011-07-31
-2775155 Jagerberg Jagerberg 46.85361 15.73806 P PPLA3 AT 06 604 60422 0 377 Europe/Vienna 2011-07-31
-2775163 Jabing Jabing 47.25 16.28333 P PPLA3 AT 01 109 10930 0 277 Europe/Vienna 2011-07-31
-2775183 Ischgl Ischgl 47.01257 10.29179 P PPLA3 AT 07 706 70608 2128 1378 Europe/Vienna 2011-07-31
-2775185 Irschen Irschen Irschen 46.75694 13.02528 P PPLA3 AT 02 206 20611 0 822 Europe/Vienna 2011-07-31
-2775197 Irdning Irdning Irdning,Ирднинг 47.50529 14.10155 P PPLA3 AT 06 612 61218 0 662 Europe/Vienna 2011-07-31
-2775200 Inzing Inzing 47.28333 11.18333 P PPLA3 AT 07 703 70319 0 601 Europe/Vienna 2011-07-31
-2775207 Inzenhof Inzenhof 47.01667 16.31667 P PPLA3 AT 01 104 10421 0 275 Europe/Vienna 2011-07-31
-2775220 Innsbruck Innsbruck Innsbruck,Insbruk,Insbruka,Pons Aeni,insuburukku,yin si bu lu ke,İnnsbruck,Инсбрук,אינסברוק,インスブルック,因斯布鲁克 47.26266 11.39454 P PPLA AT 07 112467 570 587 Europe/Vienna 2009-04-27
-2775228 Innervillgraten Innervillgraten Innervillgraten 46.81194 12.37472 P PPLA3 AT 07 707 70710 0 1530 Europe/Vienna 2011-07-31
-2775235 Innerschwand Innerschwand Innerschwand 47.83333 13.4 P PPLA3 AT 04 417 41712 0 483 Europe/Vienna 2011-07-31
-2775270 Innerbraz Innerbraz 47.15 9.91667 P PPLA3 AT 08 801 80111 0 827 Europe/Vienna 2011-07-31
-2775304 Imsterberg Imsterberg 47.20517 10.69605 P PPLA3 AT 07 702 70204 0 899 Europe/Vienna 2011-07-31
-2775307 Imst Imst Imst,Имст 47.24504 10.73974 P PPLA3 AT 07 702 70203 9225 823 Europe/Vienna 2011-07-31
-2775324 Ilz Ilz Il'c,Ilz,Ильц 47.08333 15.91667 P PPLA3 AT 06 605 60508 0 285 Europe/Vienna 2011-07-31
-2775327 Illmitz Illmitz 47.76148 16.80024 P PPLA3 AT 01 107 10709 0 120 Europe/Vienna 2011-07-31
-2775352 Hüttschlag Huttschlag 47.16667 13.23333 P PPLA3 AT 05 504 50413 0 1426 Europe/Vienna 2011-07-31
-2775365 Hüttenberg Huttenberg Huttenberg,Hüttenberg 46.94139 14.55 P PPLA3 AT 02 205 20511 0 880 Europe/Vienna 2011-07-31
-2775375 Hüttau Huttau 47.41667 13.3 P PPLA3 AT 05 504 50412 0 780 Europe/Vienna 2011-07-31
-2775386 Hürm Hurm 48.15601 15.41262 P PPLA3 AT 03 315 31513 0 275 Europe/Vienna 2011-07-31
-2775399 Hundsheim Hundsheim 48.11749 16.93581 P PPLA3 AT 03 307 30715 0 233 214 Europe/Vienna 2011-07-31
-2775497 Hörsching Horsching Hoersching,Khjorshing,Хёршинг 48.22627 14.17786 P PPL AT 04 410 41007 5312 291 Europe/Vienna 2011-06-28
-2775499 Hornstein Hornstein Hornstein,Khornshtajn,Voristan,Vorištan,Хорнштайн 47.86667 16.43333 P PPLA3 AT 01 103 10304 0 251 Europe/Vienna 2011-07-31
-2775516 Horn Horn 48.66274 15.65663 P PPLA3 AT 03 311 31109 6485 307 Europe/Vienna 2011-07-31
-2775525 Horitschon Horitschon 47.58333 16.55 P PPLA3 AT 01 108 10805 0 243 Europe/Vienna 2011-07-31
-2775531 Hörbranz Horbranz Horbranz,Hörbranz,Khjornbranc,Kirchdorf,Хёрнбранц 47.55 9.75 P PPLA3 AT 08 802 80218 6414 416 Europe/Vienna 2011-07-31
-2775541 Hopfgarten im Brixental Hopfgarten im Brixental Hopfgarten,Hopfgarten Markt,Hopfgarten im Brixental,Hopfgarten in Nordtirol,Khopfgarten-im-Briksental',Хопфгартен-им-Бриксенталь 47.45 12.16667 P PPL AT 07 5314 726 Europe/Vienna 2012-01-18
-2775542 Hopfgarten in Defereggen Hopfgarten in Defereggen Hopfgarten,Hopfgarten in Defereggen 46.91917 12.53639 P PPLA3 AT AT 07 707 70709 0 1318 Europe/Vienna 2011-07-31
-2775571 Holzhausen Holzhausen 48.21667 14.08333 P PPLA3 AT 04 418 41809 0 323 Europe/Vienna 2011-07-31
-2775600 Hollersbach im Pinzgau Hollersbach im Pinzgau Hollersbach,Hollersbach im Pinzgau 47.26667 12.41667 P PPLA3 AT AT 05 506 50605 0 898 Europe/Vienna 2011-07-31
-2775611 Hollenthon Hollenthon 47.58333 16.25 P PPLA3 AT 03 323 32312 0 533 Europe/Vienna 2011-07-31
-2775613 Hollenstein an der Ybbs Hollenstein an der Ybbs Grosshollenstein,Hollenstein,Hollenstein an der Ybbs 47.8 14.76667 P PPLA3 AT AT 03 305 30516 0 514 Europe/Vienna 2011-07-31
-2775619 Hollenegg Hollenegg 46.79147 15.21345 P PPLA3 AT 06 603 60315 0 470 Europe/Vienna 2011-07-31
-2775636 Hollabrunn Hollabrunn Hollabrunn,Khollabrun,Oberhollabrunn,Холлабрун 48.55 16.08333 P PPLA3 AT 03 310 31022 10966 257 Europe/Vienna 2011-07-31
-2775712 Hohenweiler Hohenweiler 47.58333 9.78333 P PPLA3 AT 08 802 80219 0 516 Europe/Vienna 2011-07-31
-2775721 Hohenthurn Hohenthurn 46.55833 13.66778 P PPLA3 AT 02 207 20713 0 672 Europe/Vienna 2011-07-31
-2775722 Hohentauern Hohentauern Hohentauern 47.43333 14.48333 P PPLA3 AT 06 608 60805 0 1274 Europe/Vienna 2011-07-31
-2775733 Hohenruppersdorf Hohenruppersdorf 48.45 16.65 P PPLA3 AT 03 308 30828 0 224 Europe/Vienna 2011-07-31
-2775742 Hohenems Hohenems Hohenems 47.36667 9.68306 P PPLA3 AT 08 803 80302 14072 417 Europe/Vienna 2011-07-31
-2775743 Hoheneich Hoheneich 48.76667 15.01667 P PPLA3 AT 03 309 30920 0 509 Europe/Vienna 2011-07-31
-2775756 Hohenberg Hohenberg 47.90679 15.61998 P PPLA3 AT 03 314 31404 0 489 Europe/Vienna 2011-07-31
-2775763 Hohenau an der Raab Hohenau an der Raab Hohenau,Hohenau an der Raab 47.3 15.55 P PPLA3 AT AT 06 617 61720 0 835 Europe/Vienna 2011-07-31
-2775796 Hofstätten an der Raab Hofstatten an der Raab Hofstatten,Hofstatten an der Raab,Hofstätten,Hofstätten an der Raab 47.06667 15.73333 P PPLA3 AT AT 06 617 61719 0 359 Europe/Vienna 2011-07-31
-2775843 Höfen Hofen 47.46667 10.68333 P PPLA3 AT 07 708 70816 0 860 Europe/Vienna 2011-07-31
-2775847 Hof bei Straden Hof bei Straden Hof,Hof bei Straden 46.8 15.93333 P PPLA3 AT AT 06 615 61508 0 327 Europe/Vienna 2011-07-31
-2775848 Hof bei Salzburg Hof bei Salzburg Hof,Khof (Zal'cburg),Хоф (Зальцбург) 47.81929 13.21488 P PPLA3 AT AT 05 503 50319 0 737 Europe/Vienna 2011-07-31
-2775856 Hof am Leithaberge Hof am Leithaberge Hof,Hof am Leithaberge,Hof am Leithagebirge 47.95 16.58333 P PPLA3 AT AT 03 307 30713 0 218 Europe/Vienna 2011-07-31
-2775887 Hochwolkersdorf Hochwolkersdorf 47.65 16.28333 P PPLA3 AT 03 323 32310 0 600 Europe/Vienna 2011-07-31
-2775950 Höchst Hochst 47.45934 9.6405 P PPLA3 AT 08 802 80217 7207 402 Europe/Vienna 2011-07-31
-2776069 Hochfilzen Hochfilzen Hochfilzen 47.46667 12.61667 P PPLA3 AT 07 704 70405 0 1000 Europe/Vienna 2011-07-31
-2776153 Hitzendorf Hitzendorf 47.03333 15.3 P PPLA3 AT 06 606 60620 0 369 Europe/Vienna 2011-07-31
-2776161 Hirtenberg Hirtenberg 47.93095 16.17908 P PPLA3 AT 03 306 30615 0 282 Europe/Vienna 2011-07-31
-2776190 Hirschbach Hirschbach 48.73333 15.11667 P PPLA3 AT 03 309 30917 0 571 Europe/Vienna 2011-07-31
-2776194 Hirnsdorf Hirnsdorf Hirnsdorf 47.18333 15.81667 P PPLA3 AT 06 617 61718 0 442 Europe/Vienna 2011-07-31
-2776197 Hirm Hirm 47.78652 16.4546 P PPLA3 AT 01 106 10603 0 180 Europe/Vienna 2011-07-31
-2776204 Hippach Hippach Hippach,Khippakh,Хиппах 47.20435 11.86523 P PPLA3 AT 07 709 70916 1371 604 Europe/Vienna 2012-02-24
-2776240 Hintersee Hintersee Feichten,Hintersee 47.7 13.28333 P PPLA3 AT AT 05 503 50318 0 972 Europe/Vienna 2011-07-31
-2776358 Hinterbrühl Hinterbruehl Khinterbrjul',Хинтербрюль 48.08611 16.24809 P PPLA3 AT 03 317 31712 4068 254 Europe/Vienna 2011-07-31
-2776395 Himmelberg Himmelberg Himmelberg 46.75667 14.03056 P PPLA3 AT 02 210 21005 0 697 Europe/Vienna 2011-07-31
-2776401 Himberg Himberg 48.08333 16.43333 P PPLA3 AT 03 324 32406 5534 168 Europe/Vienna 2011-07-31
-2776433 Hieflau Hieflau Hieflau 47.6 14.73333 P PPLA3 AT 06 611 61104 0 761 Europe/Vienna 2011-07-31
-2776441 Heugraben Heugraben Heugraben,Khojgraben,Zarnovica,Žarnovica,Хойграбен 47.11667 16.18333 P PPLA3 AT 01 104 10424 0 267 Europe/Vienna 2011-07-31
-2776467 Herzogsdorf Herzogsdorf Herzogsdorf,Khercogsdorf,Херцогсдорф 48.43011 14.1128 P PPLA3 AT 04 416 41612 0 584 Europe/Vienna 2011-07-31
-2776470 Herzogenburg Herzogenburg 48.28137 15.69431 P PPLA3 AT 03 319 31912 7866 229 Europe/Vienna 2011-07-31
-2776479 Herrnbaumgarten Herrnbaumgarten 48.68333 16.68333 P PPLA3 AT 03 316 31621 0 240 Europe/Vienna 2011-07-31
-2776485 Hernstein Hernstein 47.89465 16.10561 P PPLA3 AT 03 306 30614 0 436 Europe/Vienna 2011-07-31
-2776497 Hermagor Hermagor 46.62722 13.36722 P PPL AT 02 7242 605 Europe/Vienna 2006-01-17
-2776507 Hennersdorf Hennersdorf 48.11173 16.36311 P PPLA3 AT 03 317 31711 0 181 Europe/Vienna 2011-07-31
-2776513 Henndorf am Wallersee Henndorf am Wallersee Henndorf,Henndorf am Wallersee,Khenndorf-am-Vallerzee,Хенндорф-ам-Валлерзее 47.9 13.18333 P PPLA3 AT AT 05 503 50317 0 567 Europe/Vienna 2011-07-31
-2776523 Hengsberg Hengsberg Hengsberg 46.86667 15.43333 P PPLA3 AT 06 610 61017 0 346 Europe/Vienna 2011-07-31
-2776531 Hellmonsödt Hellmonsodt Hellmonsodt,Hellmonsödt 48.43333 14.3 P PPLA3 AT 04 416 41611 0 819 Europe/Vienna 2011-07-31
-2776546 Heiterwang Heiterwang Heiterwang 47.45 10.75 P PPLA3 AT 07 708 70814 0 980 Europe/Vienna 2011-07-31
-2776582 Heiligenkreuz im Lafnitztal Heiligenkreuz im Lafnitztal Heiligenkreuz,Heiligenkreuz im Lafnitztal,Rabakeresztur,Rábakeresztúr 46.98917 16.26083 P PPLA3 AT 01 105 10503 0 243 Europe/Vienna 2011-07-31
-2776583 Heiligenkreuz am Waasen Heiligenkreuz am Waasen Heiligenkreuz,Heiligenkreuz am Waasen 46.95583 15.58806 P PPLA3 AT AT 06 610 61015 0 323 Europe/Vienna 2011-07-31
-2776586 Heiligenkreuz Heiligenkreuz Khajligenkrojc,Хайлигенкройц 48.05559 16.12493 P PPLA3 AT 03 306 30613 1508 355 Europe/Vienna 2011-07-31
-2776594 Heiligenbrunn Heiligenbrunn 47.03333 16.41667 P PPLA3 AT 01 104 10407 0 230 Europe/Vienna 2011-07-31
-2776595 Heiligenblut Heiligenblut Heiligenblut 47.03979 12.84345 P PPLA3 AT 02 206 20610 0 1316 Europe/Vienna 2011-12-02
-2776603 Heidenreichstein Heidenreichstein Heidenreichstein 48.86667 15.11667 P PPLA3 AT 03 309 30916 4472 568 Europe/Vienna 2011-07-31
-2776632 Hausmannstätten Hausmannstatten Hausmannstatten,Hausmannstätten,Khausmannshtetten,Хаусманнштеттен 46.99111 15.51139 P PPLA3 AT 06 606 60619 0 346 Europe/Vienna 2011-07-31
-2776641 Hausleiten Hausleiten 48.38333 16.1 P PPLA3 AT 03 312 31208 0 171 Europe/Vienna 2011-07-31
-2776648 Hauskirchen Hauskirchen 48.6 16.76667 P PPLA3 AT 03 308 30826 0 238 Europe/Vienna 2011-07-31
-2776660 Hausbrunn Hausbrunn 48.61667 16.81667 P PPLA3 AT 03 316 31620 0 222 Europe/Vienna 2011-07-31
-2776670 Haus Haus 47.40997 13.76724 P PPLA3 AT 06 612 61217 0 765 Europe/Vienna 2011-07-31
-2776676 Haunoldstein Haunoldstein 48.2 15.45 P PPLA3 AT 03 319 31911 0 262 Europe/Vienna 2011-07-31
-2776681 Haugsdorf Haugsdorf 48.7 16.06667 P PPLA3 AT 03 310 31018 0 205 Europe/Vienna 2011-07-31
-2776682 Haugschlag Haugschlag 48.98333 15.05 P PPLA3 AT 03 309 30915 0 576 Europe/Vienna 2011-07-31
-2776690 Hatzendorf Hatzendorf Hatzendorf 46.98111 15.99556 P PPLA3 AT 06 604 60420 0 298 Europe/Vienna 2011-07-31
-2776693 Hatting Hatting 47.28333 11.16667 P PPLA3 AT 07 703 70318 0 607 Europe/Vienna 2011-07-31
-2776748 Häselgehr Haselgehr Haselgehr,Häselgehr 47.31667 10.5 P PPLA3 AT 07 708 70813 0 1016 Europe/Vienna 2011-07-31
-2776783 Hartl Hartl 47.18333 15.91667 P PPLA3 AT 06 607 60712 0 394 Europe/Vienna 2011-07-31
-2776791 Hart im Zillertal Hart im Zillertal Hart,Hart im Zillertal 47.35232 11.87201 P PPLA3 AT AT 07 709 70915 0 639 Europe/Vienna 2011-07-31
-2776801 Hartberg Hartberg Hartberg,Khartberg,Хартберг 47.28333 15.96667 P PPLA3 AT 06 607 60710 6634 396 Europe/Vienna 2011-07-31
-2776855 Harmannsdorf Harmannsdorf Harmannsdorf 48.38333 16.36667 P PPLA3 AT 03 312 31207 0 167 Europe/Vienna 2011-07-31
-2776864 Haringsee Haringsee 48.1927 16.78741 P PPLA3 AT 03 308 30825 0 144 Europe/Vienna 2011-07-31
-2776866 Bad Häring Bad Haering 47.5 12.11667 P PPLA3 AT 07 705 70503 2383 650 693 Europe/Vienna 2011-07-31
-2776872 Hardegg Hardegg Hardegg 48.85 15.85 P PPLA3 AT 03 310 31016 0 400 Europe/Vienna 2011-07-31
-2776874 Hard Hard 47.48306 9.68306 P PPLA3 AT 08 802 80215 11766 396 Europe/Vienna 2011-07-31
-2776891 Hannersdorf Hannersdorf 47.23333 16.38333 P PPLA3 AT 01 109 10906 0 275 Europe/Vienna 2011-07-31
-2776938 Hallwang Hallwang 47.85 13.08333 P PPLA3 AT 05 503 50316 0 507 Europe/Vienna 2011-07-31
-2776951 Hallein Hallein Hallein,Khallajn,Халлайн,האליין 47.68333 13.1 P PPLA3 AT 05 502 50205 18980 447 Europe/Vienna 2011-07-31
-2776954 Hall Hall 47.6 14.45 P PPLA3 AT 06 612 61216 0 670 Europe/Vienna 2011-07-31
-2776957 Halbturn Halbturn 47.87019 16.97542 P PPLA3 AT 01 107 10708 0 126 Europe/Vienna 2011-07-31
-2776959 Halbenrain Halbenrain Halbenrain 46.72194 15.94667 P PPLA3 AT 06 615 61506 0 222 Europe/Vienna 2011-07-31
-2776970 Hainzenberg Hainzenberg Hainzenberg 47.21788 11.90034 P PPLA3 AT 07 709 70914 0 926 Europe/Vienna 2011-07-31
-2776975 Hainsdorf im Schwarzautal Hainsdorf im Schwarzautal Hainsdorf,Hainsdorf im Schwarzautal 46.83583 15.64139 P PPLA3 AT AT 06 610 61014 0 289 Europe/Vienna 2011-07-31
-2776981 Hainfeld Hainfeld 48.0339 15.77414 P PPLA3 AT 03 314 31403 0 423 Europe/Vienna 2011-07-31
-2776982 Hainersdorf Hainersdorf Hainersdorf 47.11667 15.93333 P PPLA3 AT 06 605 60507 0 295 Europe/Vienna 2011-07-31
-2776988 Hainburg an der Donau Hainburg an der Donau Hainburg 48.14627 16.94504 P PPL AT 03 5622 170 Europe/Vienna 2007-04-28
-2777001 Haiming Haiming 47.25 10.88333 P PPLA3 AT 07 702 70202 0 674 Europe/Vienna 2011-07-31
-2777015 Haidershofen Haidershofen 48.06667 14.45 P PPLA3 AT 03 305 30515 0 285 Europe/Vienna 2011-07-31
-2777041 Haibach im Mühlkreis Haibach im Muhlkreis Haibach,Haibach im Muhlkreis,Haibach im Mühlkreis 48.44429 14.34411 P PPLA3 AT AT 04 416 41610 0 816 Europe/Vienna 2011-12-20
-2777065 Hagenbrunn Hagenbrunn 48.33333 16.4 P PPLA3 AT 03 312 31206 0 229 Europe/Vienna 2011-07-31
-2777077 Hafning bei Trofaiach Hafning bei Trofaiach Hafning,Hafning bei Trofaiach 47.43333 15 P PPLA3 AT AT 06 611 61103 0 679 Europe/Vienna 2011-07-31
-2777082 Hafnerbach Hafnerbach 48.21667 15.48333 P PPLA3 AT 03 319 31910 0 274 Europe/Vienna 2011-07-31
-2777090 Hadres Hadres 48.7 16.11667 P PPLA3 AT 03 310 31015 0 196 Europe/Vienna 2011-07-31
-2777111 Hackerberg Hackerberg Hackerberg,Hakerberg,Khakkerberg,Хаккерберг 47.2 16.11667 P PPLA3 AT 01 104 10418 0 338 Europe/Vienna 2011-07-31
-2777162 Haag Haag 48.15 15.5 P PPL AT 03 5164 248 Europe/Vienna 2006-01-17
-2777164 Haag Haag 48.1 14.56667 P PPLA3 AT 03 305 30514 0 357 Europe/Vienna 2011-07-31
-2777165 Haag Haag 48.05 14.51667 P PPLA3 AT 03 305 30514 0 374 Europe/Vienna 2011-07-31
-2777185 Güttenbach Guttenbach Gjuttenbakh,Guttenbach,Güttenbach,Pinkovac,Гюттенбах 47.16667 16.3 P PPLA3 AT 01 104 10406 0 301 Europe/Vienna 2011-07-31
-2777189 Guttaring Guttaring 46.88333 14.5 P PPLA3 AT 02 205 20509 0 701 Europe/Vienna 2011-07-31
-2777196 Gutenstein Gutenstein 47.876 15.88881 P PPLA3 AT AT 03 323 32308 1368 481 480 Europe/Vienna 2011-07-31
-2777205 Gutenbrunn Gutenbrunn 48.35 15.11667 P PPLA3 AT 03 325 32511 0 955 Europe/Vienna 2011-07-31
-2777216 Güssing Guessing Gjussing,Guessing,Güssing,Nemetujvar,Németújvár,Гюссинг 47.05936 16.32431 P PPLA2 AT 01 104 10405 0 232 Europe/Vienna 2012-02-03
-2777237 Gurk Gurk Gurk,Krka, Avstrija,Гурк 46.87389 14.29167 P PPLA3 AT 02 205 20508 0 665 Europe/Vienna 2011-07-31
-2777250 Guntramsdorf Guntramsdorf 48.04687 16.31384 P PPLA3 AT 03 317 31710 0 188 Europe/Vienna 2011-07-31
-2777252 Guntersdorf Guntersdorf 48.65 16.05 P PPLA3 AT 03 310 31014 0 248 Europe/Vienna 2011-07-31
-2777258 Gunskirchen Gunskirchen 48.13333 13.95 P PPLA3 AT 04 418 41808 0 345 Europe/Vienna 2011-07-31
-2777259 Günselsdorf Gunselsdorf 47.94395 16.26062 P PPLA3 AT 03 306 30612 0 242 Europe/Vienna 2011-07-31
-2777272 Gundersdorf Gundersdorf 46.95 15.23333 P PPLA3 AT 06 603 60314 0 506 Europe/Vienna 2011-07-31
-2777279 Gumpoldskirchen Gumpoldskirchen 48.04538 16.2771 P PPLA3 AT 03 317 31709 0 244 Europe/Vienna 2011-07-31
-2777392 Gschaid bei Birkfeld Gschaid bei Birkfeld Gschaid,Gschaid bei Birkfeld 47.33333 15.73333 P PPLA3 AT AT 06 617 61714 0 891 Europe/Vienna 2011-07-31
-2777454 Grünbach am Schneeberg Grunbach am Schneeberg Grunbach,Grunbach am Schneeberge,Grünbach,Grünbach am Schneeberge 47.79747 15.98785 P PPLA3 AT AT 03 318 31813 0 550 Europe/Vienna 2011-07-31
-2777459 Grünau im Almtal Gruenau im Almtal Gmunden,Grunau,Grünau 47.85493 13.95573 P PPL AT AT 04 407 40707 2135 528 516 Europe/Vienna 2011-06-26
-2777547 Großweikersdorf Grossweikersdorf 48.46667 15.98333 P PPLA3 AT 03 321 32110 0 198 Europe/Vienna 2011-07-31
-2777587 Großsölk Grosssolk Grosssolk,Grosssölk,Großsölk 47.41667 13.96667 P PPLA3 AT AT 06 612 61214 0 1221 Europe/Vienna 2011-07-31
-2777590 Groß-Siegharts Gross-Siegharts 48.78333 15.4 P PPLA3 AT 03 322 32207 0 557 Europe/Vienna 2011-07-31
-2777593 Groß-Schweinbarth Gross-Schweinbarth Gross-Schweinbarth,Grossschweinbarth,Groß-Schweinbarth,Großschweinbarth 48.41472 16.63194 P PPLA3 AT AT 03 308 30824 0 176 Europe/Vienna 2011-07-31
-2777603 Groß Sankt Florian Gross Sankt Florian Gros-Sankt-Florian,Gross Sankt Florian,Groß Sankt Florian,Грос-Санкт-Флориан 46.82444 15.31861 P PPLA3 AT 06 603 60312 0 309 Europe/Vienna 2011-07-31
-2777605 Großrußbach Grossrussbach 48.46667 16.41667 P PPLA3 AT 03 312 31205 0 306 Europe/Vienna 2011-07-31
-2777607 Großriedenthal Grossriedenthal 48.48333 15.86667 P PPLA3 AT 03 321 32109 0 276 Europe/Vienna 2011-07-31
-2777627 Grosspetersdorf Grosspetersdorf Grosspetersdorf,Nagyszentmihaly,Nagyszentmihály 47.23333 16.31667 P PPL AT 01 3525 287 Europe/Vienna 2012-01-18
-2777641 Großmugl Grossmugl 48.49917 16.23056 P PPLA3 AT 03 312 31204 0 216 Europe/Vienna 2011-07-31
-2777649 Großlobming Grosslobming Grosslobming,Großlobming 47.18333 14.8 P PPLA3 AT AT 06 609 60905 0 646 Europe/Vienna 2011-07-31
-2777655 Großkrut Grosskrut 48.64389 16.72361 P PPLA3 AT 03 316 31617 0 179 Europe/Vienna 2011-07-31
-2777662 Großklein Grossklein Grossklein,Großklein,Klein 46.73611 15.44444 P PPLA3 AT AT 06 610 61013 0 330 Europe/Vienna 2011-07-31
-2777674 Großhofen Grosshofen 48.25834 16.6194 P PPLA3 AT 03 308 30822 0 152 Europe/Vienna 2011-07-31
-2777677 Heimschuh Heimschuh Grossheimschuh,Heimschuh 46.76 15.49306 P PPLA3 AT AT 06 610 61016 0 276 Europe/Vienna 2011-07-31
-2777685 Großharras Grossharras 48.66389 16.24556 P PPLA3 AT 03 316 31616 0 195 Europe/Vienna 2011-07-31
-2777701 Groß-Gerungs Gross-Gerungs 48.57422 14.95789 P PPL AT 03 325 4820 675 677 Europe/Vienna 2009-06-14
-2777836 Groß-Enzersdorf Gross-Enzersdorf Genzersdorf,Grosehncersdorf,Gross-Enzersdorf,Groß-Enzersdorf,Гросэнцерсдорф 48.20278 16.55083 P PPLA3 AT 03 308 30821 8791 156 157 Europe/Vienna 2011-07-31
-2777839 Groß-Engersdorf Gross-Engersdorf 48.35 16.56667 P PPLA3 AT 03 316 31615 0 159 Europe/Vienna 2011-07-31
-2777871 Großebersdorf Grossebersdorf 48.36244 16.46868 P PPLA3 AT 03 316 31614 0 174 Europe/Vienna 2011-07-31
-2777921 Grödig Grodig Grodig,Grödig 47.73333 13.03333 P PPLA3 AT 05 503 50314 6918 564 Europe/Vienna 2011-07-31
-2777927 Gröbming Grobming Grjobming,Grobming,Gröbming,Грёбминг 47.44272 13.90122 P PPLA3 AT 06 612 61213 0 768 Europe/Vienna 2011-09-09
-2777939 Grins Grins Grins,Innerdorf 47.14034 10.51409 P PPLA3 AT 07 706 70607 0 996 Europe/Vienna 2011-07-31
-2777942 Grimmenstein Grimmenstein Grimmenstein 47.61667 16.13333 P PPLA3 AT 03 318 31812 0 499 Europe/Vienna 2011-07-31
-2777954 Griffen Griffen 46.70444 14.73278 P PPLA3 AT 02 208 20808 0 486 Europe/Vienna 2011-07-31
-2777972 Grieskirchen Grieskirchen Grieskirchen,Griskirkhen,Грискирхен 48.23333 13.83333 P PPL AT 04 408 40808 4766 334 Europe/Vienna 2012-01-18
-2777974 Gries im Sellrain Gries im Sellrain Gries,Gries in Sellrain 47.19554 11.15619 P PPLA3 AT AT 07 703 70314 0 1187 1193 Europe/Vienna 2011-07-31
-2777992 Gries am Brenner Gries am Brenner Gries,Gries am Brenner,Ritten 47.05 11.48333 P PPLA3 AT AT 07 703 70313 0 1248 Europe/Vienna 2011-07-31
-2778011 Gresten Gresten 47.98521 15.02552 P PPLA3 AT 03 320 32003 0 408 Europe/Vienna 2011-07-31
-2778013 Gressenberg Gressenberg 46.8 15.11667 P PPLA3 AT 06 603 60311 0 1122 Europe/Vienna 2011-07-31
-2778035 Greisdorf Greisdorf Greisdorf 46.91667 15.21667 P PPLA3 AT 06 603 60310 0 437 Europe/Vienna 2011-07-31
-2778048 Greifenburg Greifenburg 46.75583 13.17778 P PPLA3 AT 02 206 20609 0 754 Europe/Vienna 2011-07-31
-2778067 Graz Graz Grac,Graca,Gradec,Graecia,Gratz,Graz,Gráz,Grāca,Styrsky Hradec,ge la ci,ghrats,grats,gratsi,guratsu,Štýrský Hradec,Грац,גראץ,غراتس,گراتس,გრაცი,グラーツ,格拉茨 47.06667 15.45 P PPLA AT 06 222326 363 Europe/Vienna 2012-01-18
-2778079 Gratwein Gratwein Gratvajn,Gratwein,Гратвайн 47.11667 15.31667 P PPLA3 AT 06 606 60614 0 406 Europe/Vienna 2011-07-31
-2778085 Gratkorn Gratkorn Gratkorn 47.13333 15.35 P PPLA3 AT 06 606 60613 6806 386 Europe/Vienna 2011-07-31
-2778127 Grän Graen Gren,Грен 47.5 10.55 P PPLA3 AT 07 708 70811 586 1114 Europe/Vienna 2011-07-31
-2778130 Grambach Grambach Grambach 47.01667 15.5 P PPLA3 AT 06 606 60612 0 344 Europe/Vienna 2011-07-31
-2778131 Gramatneusiedl Gramatneusiedl 48.01667 16.48333 P PPLA3 AT 03 324 32405 0 176 Europe/Vienna 2011-07-31
-2778133 Gramastetten Gramastetten Gramashtetten,Грамаштеттен 48.38028 14.19185 P PPLA3 AT 04 416 41609 0 526 Europe/Vienna 2011-07-31
-2778135 Gramais Gramais Gramais 47.26667 10.53333 P PPLA3 AT 07 708 70812 0 1293 Europe/Vienna 2011-07-31
-2778141 Grafenwörth Grafenworth 48.4 15.78333 P PPLA3 AT 03 321 32107 0 187 Europe/Vienna 2011-07-31
-2778145 Grafenstein Grafenstein 46.6 14.46667 P PPLA3 AT 02 204 20409 0 566 Europe/Vienna 2011-07-31
-2778148 Grafenschlag Grafenschlag 48.5 15.16667 P PPLA3 AT 03 325 32506 0 780 Europe/Vienna 2011-07-31
-2778149 Grafenschachen Grafenschachen 47.36667 16.06667 P PPLA3 AT 01 109 10904 0 419 Europe/Vienna 2011-07-31
-2778152 Grafenegg Grafenegg 48.41667 15.73333 P PPLA3 AT 03 313 31308 0 190 Europe/Vienna 2011-07-31
-2778154 Grafendorf bei Hartberg Grafendorf bei Hartberg Grafendorf,Grafendorf (Khartberg),Grafendorf bei Hartberg,Графендорф (Хартберг) 47.35 16 P PPLA3 AT AT 06 607 60707 0 461 Europe/Vienna 2011-07-31
-2778191 Grabersdorf Grabersdorf Grabersdorf 46.84306 15.82472 P PPLA3 AT 06 604 60419 0 264 Europe/Vienna 2011-07-31
-2778218 Götzis Gotzis Gotzis,Götzis 47.33306 9.63306 P PPLA3 AT 08 804 80408 10342 427 Europe/Vienna 2011-07-31
-2778220 Götzens Gotzens 47.23606 11.31154 P PPLA3 AT 07 703 70312 0 868 Europe/Vienna 2011-07-31
-2778224 Götzendorf an der Leitha Gotzendorf an der Leitha Goetzendorf,Gotzendorf,Gotzendorf an der Leitha,Götzendorf,Götzendorf an der Leitha 48.01667 16.58333 P PPLA3 AT AT 03 307 30709 0 168 Europe/Vienna 2011-07-31
-2778252 Göstling an der Ybbs Gostling an der Ybbs Gostling,Gostling an der Ybbs,Göstling,Göstling an der Ybbs 47.8 14.91667 P PPLA3 AT AT 03 320 32002 0 682 Europe/Vienna 2011-07-31
-2778270 Gössendorf Gossendorf Gossendorf,Gössendorf 46.98333 15.48333 P PPLA3 AT 06 606 60611 0 323 Europe/Vienna 2011-07-31
-2778271 Gossendorf Gossendorf 46.91667 15.91667 P PPLA3 AT 06 604 60418 0 322 Europe/Vienna 2011-07-31
-2778272 Gössenberg Gossenberg Gossenberg,Gossenberger,Gössenberg,Gössenberger 47.41667 13.81667 P PPLA3 AT AT 06 612 61212 0 699 Europe/Vienna 2011-07-31
-2778290 Gosdorf Gosdorf Gosdorf 46.72778 15.7925 P PPLA3 AT 06 615 61505 0 233 Europe/Vienna 2011-07-31
-2778340 Göpfritz an der Wild Gopfritz an der Wild Gopfritz,Gopfritz an der Wild,Göpfritz,Göpfritz an der Wild 48.71667 15.4 P PPLA3 AT AT 03 325 32505 0 577 Europe/Vienna 2011-07-31
-2778355 Gols Gols Galos,Gol's,Gols,Gálos,Гольс 47.89689 16.91113 P PPLA3 AT 01 107 10707 0 126 Europe/Vienna 2011-07-31
-2778361 Golling an der Salzach Golling an der Salzach Golling,Golling an der Salzach,Golling-na-Zal'cakhe,Голлинг-на-Зальцахе 47.6 13.16667 P PPLA3 AT AT 05 502 50204 0 469 Europe/Vienna 2011-07-31
-2778368 Göllersdorf Gollersdorf 48.48333 16.11667 P PPLA3 AT 03 310 31008 0 233 Europe/Vienna 2011-07-31
-2778376 Goldwörth Goldworth Goldworth,Goldwörth 48.32664 14.10112 P PPLA3 AT 04 416 41608 0 259 Europe/Vienna 2011-12-20
-2778385 Goldegg Goldegg Gol'deg,Goldeck,Гольдег 47.31875 13.09922 P PPLA3 AT AT 05 504 50410 0 822 Europe/Vienna 2011-07-31
-2778404 Göfis Gofis 47.23356 9.63458 P PPLA3 AT 08 804 80407 0 530 Europe/Vienna 2011-07-31
-2778424 Gnesau Gnesau 46.77544 13.96251 P PPLA3 AT 02 210 21004 0 973 Europe/Vienna 2011-09-08
-2778427 Gnas Gnas Gnas 46.87306 15.82528 P PPLA3 AT 06 604 60416 0 276 Europe/Vienna 2011-07-31
-2778431 Gnadendorf Gnadendorf 48.61667 16.4 P PPLA3 AT 03 316 31613 0 244 Europe/Vienna 2011-07-31
-2778436 Gmunden Gmunden Gmunden,Gmunden an der Traun,Гмунден 47.91887 13.79754 P PPL AT 04 407 40705 13287 441 Europe/Vienna 2011-06-26
-2778439 Gmünd Gmund Cmunt,Gmjund,Гмюнд 48.7683 14.9808 P PPLA3 AT 03 309 30908 5811 497 Europe/Vienna 2011-07-31
-2778441 Gmünd Gmuend Gmjund,Гмюнд 46.90722 13.52944 P PPL AT 02 2629 768 Europe/Vienna 2009-08-12
-2778454 Glojach Glojach Glojach,Glojakh,Глоях 46.86667 15.66667 P PPLA3 AT 06 604 60415 0 340 Europe/Vienna 2011-07-31
-2778455 Gloggnitz Gloggnitz 47.67487 15.93893 P PPLA3 AT 03 318 31810 6213 448 Europe/Vienna 2011-07-31
-2778456 Glödnitz Glodnitz 46.86667 14.11667 P PPLA3 AT 02 205 20506 0 837 Europe/Vienna 2011-07-31
-2778467 Globasnitz Globasnitz Globasnic,Globasnica,Globasnitz,Klobasnica,Глобасниц 46.55694 14.70278 P PPLA3 AT AT 02 208 20807 0 545 Europe/Vienna 2011-07-31
-2778470 Glinzendorf Glinzendorf 48.24605 16.6406 P PPLA3 AT 03 308 30819 0 151 Europe/Vienna 2011-07-31
-2778478 Gleisdorf Gleisdorf 47.10559 15.71011 P PPLA3 AT 06 617 61713 5245 362 Europe/Vienna 2011-07-31
-2778483 Gleinstätten Gleinstatten Gleinstatten,Gleinstätten 46.75361 15.36972 P PPLA3 AT 06 610 61011 0 298 Europe/Vienna 2011-07-31
-2778533 Glanegg Glanegg Glanegg 46.71361 14.20639 P PPLA3 AT 02 210 21003 0 491 Europe/Vienna 2011-07-31
-2778573 Gießhübl Giesshubl 48.0978 16.23479 P PPLA3 AT 03 317 31707 0 416 Europe/Vienna 2011-07-31
-2778599 Gföhl Gfohl 48.51667 15.48333 P PPLA3 AT 03 313 31311 0 560 Europe/Vienna 2011-07-31
-2778636 Gersdorf an der Feistritz Gersdorf an der Feistritz Gersdorf,Gersdorf an der Feistritz 47.16667 15.85 P PPLA3 AT AT 06 617 61712 0 340 Europe/Vienna 2011-07-31
-2778682 Gerersdorf Gerersdorf 48.18333 15.55 P PPLA3 AT 03 319 31907 0 293 Europe/Vienna 2011-07-31
-2778690 Gerasdorf bei Wien Gerasdorf bei Wien 48.29447 16.46765 P PPLA3 AT 03 324 32404 8948 158 Europe/Vienna 2011-07-31
-2778691 Geras Geras 48.79725 15.67268 P PPLA3 AT 03 311 31107 0 459 Europe/Vienna 2011-07-31
-2778718 Geistthal Geistthal Geisttal,Geistthal 47.16667 15.16667 P PPLA3 AT AT 06 616 61604 0 576 Europe/Vienna 2011-07-31
-2778763 Gedersdorf Gedersdorf 48.43319 15.68865 P PPLA3 AT 03 313 31310 0 195 Europe/Vienna 2011-07-31
-2778772 Gaweinstal Gaweinstal Gaweinstal 48.46667 16.58333 P PPLA3 AT 03 316 31612 0 205 Europe/Vienna 2011-07-31
-2778785 Gaubitsch Gaubitsch 48.65 16.38333 P PPLA3 AT 03 316 31611 0 216 Europe/Vienna 2011-07-31
-2778794 Gattendorf Gattendorf 48.01667 16.98333 P PPLA3 AT 01 107 10706 0 141 Europe/Vienna 2011-07-31
-2778805 Gastern Gastern 48.89446 15.22027 P PPLA3 AT 03 322 32206 0 504 Europe/Vienna 2011-07-31
-2778832 Gasen Gasen Gasen 47.38333 15.56667 P PPLA3 AT 06 617 61711 0 904 Europe/Vienna 2011-07-31
-2778834 Gaschurn Gaschurn Gaschurn 46.98333 10.03333 P PPLA3 AT 08 801 80110 0 1011 Europe/Vienna 2011-07-31
-2778843 Garsten Garsten 48.0224 14.40747 P PPLA3 AT 04 415 41506 6657 300 294 Europe/Vienna 2011-07-31
-2778845 Gars am Kamp Gars am Kamp Gars,Gars am Kamp,Gars-am-Kamp,Гарс-ам-Камп 48.58333 15.65 P PPLA3 AT AT 03 311 31106 0 293 Europe/Vienna 2011-07-31
-2778864 Garanas Garanas Garanas 46.76667 15.11667 P PPLA3 AT 06 603 60308 0 1207 Europe/Vienna 2011-07-31
-2778871 Ganz Ganz 47.6 15.68333 P PPLA3 AT 06 613 61303 0 805 Europe/Vienna 2011-07-31
-2778877 Gänserndorf Ganserndorf Genzerndorf,Unterganserndorf,Untergänserndorf,Гензерндорф 48.33925 16.72016 P PPLA3 AT 03 308 30817 8588 164 Europe/Vienna 2011-07-31
-2778897 Bad Gams Bad Gams Bad Gams,Gams,Gams ob Frauental,Gams ob Frauenthal 46.87111 15.22472 P PPLA3 AT AT 06 603 60307 0 413 Europe/Vienna 2011-07-31
-2778926 Gams bei Hieflau Gams bei Hieflau Gams,Gams bei Hieflau 47.66667 14.78333 P PPLA3 AT AT 06 612 61211 0 542 Europe/Vienna 2011-07-31
-2778929 Gampern Gampern 47.98745 13.55927 P PPLA3 AT 04 417 41711 0 507 Europe/Vienna 2011-07-31
-2778945 Gamlitz Gamlitz Gamlitc,Gamlitz,Гамлитц 46.72028 15.55333 P PPLA3 AT 06 610 61009 0 279 Europe/Vienna 2011-07-31
-2778949 Gaming Gaming 47.929 15.08818 P PPLA3 AT 03 320 32001 0 427 Europe/Vienna 2011-07-31
-2778953 Galtür Galtur Galtur,Galtür,Platz 46.96667 10.18333 P PPLA3 AT AT 07 706 70606 0 1592 Europe/Vienna 2011-07-31
-2778961 Gallzein Gallzein Gallzein,Gallzein uber Jenbach,Gallzein über Jenbach 47.36667 11.76667 P PPLA3 AT AT 07 709 70911 0 872 Europe/Vienna 2011-07-31
-2778966 Gallneukirchen Gallneukirchen 48.35363 14.41604 P PPLA3 AT 04 416 41607 6282 339 Europe/Vienna 2011-07-31
-2778967 Gallmannsegg Gallmannsegg Gallmannsegg 47.18333 15.06667 P PPLA3 AT 06 616 61603 0 1117 Europe/Vienna 2011-07-31
-2778968 Gallizien Gallizien 46.55 14.51667 P PPLA3 AT 02 208 20806 0 458 Europe/Vienna 2011-07-31
-2778996 Gaißau Gaissau Gaissau,Gaißau 47.46667 9.6 P PPLA3 AT AT 08 802 80214 0 399 Europe/Vienna 2011-07-31
-2779048 Gaflenz Gaflenz Gaflenz 47.88333 14.71667 P PPLA3 AT 04 415 41505 0 500 Europe/Vienna 2011-07-31
-2779061 Gablitz Gablitz 48.22856 16.15437 P PPLA3 AT 03 324 32403 0 272 Europe/Vienna 2011-07-31
-2779064 Gabersdorf Gabersdorf Gabersdorf 46.77722 15.58417 P PPLA3 AT 06 610 61008 0 271 Europe/Vienna 2011-07-31
-2779073 Gaal Gaal Gaal 47.26667 14.66667 P PPLA3 AT 06 609 60904 0 1158 Europe/Vienna 2011-07-31
-2779074 Gaaden Gaaden 48.05364 16.20003 P PPLA3 AT 03 317 31706 0 318 Europe/Vienna 2011-07-31
-2779082 Fußach Fussach Fussach,Fussakh,Fußach,Фуссах 47.47933 9.66278 P PPLA3 AT AT 08 802 80213 0 397 Europe/Vienna 2011-07-31
-2779084 Fuschl am See Fuschl am See Fuschl,Fuschl am See 47.8 13.3 P PPLA3 AT AT 05 503 50312 0 685 Europe/Vienna 2011-07-31
-2779094 Furth an der Triesting Furth an der Triesting Furth 47.97326 15.97326 P PPLA3 AT AT 03 306 30609 0 425 Europe/Vienna 2011-07-31
-2779115 Fürstenfeld Furstenfeld Furstenfeld,Fürstenfeld 47.05 16.08333 P PPLA3 AT 06 605 60504 5962 255 Europe/Vienna 2011-07-31
-2779143 Fulpmes Fulpmes Ful'pmes,Fulpmes,Vulpmes,Фульпмес 47.16667 11.35 P PPLA3 AT AT 07 703 70310 0 1151 Europe/Vienna 2011-07-31
-2779153 Fügenberg Fugenberg Fugenberg,Fügenberg 47.35 11.83333 P PPLA3 AT 07 709 70910 0 781 Europe/Vienna 2011-07-31
-2779154 Fügen Fugen Fjugen,Fugen,Fügen,Фюген 47.35 11.85 P PPLA3 AT 07 709 70909 3734 548 Europe/Vienna 2011-07-31
-2779202 Frohnleiten Frohnleiten Frohnleiten 47.26667 15.31667 P PPLA3 AT 06 606 60610 6629 416 Europe/Vienna 2011-07-31
-2779214 Fritzens Fritzens 47.3 11.58333 P PPLA3 AT 07 703 70309 0 553 Europe/Vienna 2011-07-31
-2779229 Friesach Friesach Friesach 46.95528 14.40583 P PPLA3 AT 02 205 20505 5369 635 Europe/Vienna 2011-07-31
-2779243 Friedberg Friedberg Fridberg,Friedberg,Фридберг 47.43333 16.05 P PPLA3 AT 06 607 60706 0 552 Europe/Vienna 2011-07-31
-2779271 Fresach Fresach 46.71556 13.69083 P PPLA3 AT 02 207 20712 0 751 Europe/Vienna 2011-07-31
-2779275 Freistadt Freistadt Frajshtadt,Freistadt,Фрайштадт 48.51103 14.50453 P PPL AT 04 406 40601 7574 565 Europe/Vienna 2011-06-26
-2779288 Freiland bei Deutschlandsberg Freiland bei Deutschlandsberg Freiland,Freiland bei Deutschlandsberg 46.83333 15.13333 P PPLA3 AT AT 06 603 60306 0 843 Europe/Vienna 2011-07-31
-2779308 Fraxern Fraxern 47.31498 9.67391 P PPLA3 AT 08 804 80406 0 820 Europe/Vienna 2011-07-31
-2779324 Frauenkirchen Frauenkirchen Boldogasszony,Frauehnkirkhen,Frauenkirchen,Фрауэнкирхен 47.83678 16.92581 P PPLA3 AT 01 107 10705 0 126 Europe/Vienna 2011-07-31
-2779339 Frauenberg Frauenberg 47.42855 15.34206 P PPLA3 AT 06 602 60206 0 930 Europe/Vienna 2011-07-31
-2779372 Frannach Frannach Frannach 46.91306 15.63361 P PPLA3 AT 06 604 60413 0 319 Europe/Vienna 2011-07-31
-2779378 Frankenmarkt Frankenmarkt Frankenmarkt,Франкенмаркт 47.98333 13.41667 P PPLA3 AT 04 417 41710 3581 536 534 Europe/Vienna 2011-07-31
-2779379 Frankenfels Frankenfels 47.98234 15.32593 P PPLA3 AT 03 319 31906 0 458 Europe/Vienna 2011-07-31
-2779380 Frankenburg Frankenburg 48.06844 13.49065 P PPL AT 04 417 5162 515 Europe/Vienna 2008-07-06
-2779414 Forstau Forstau 47.36667 13.53333 P PPLA3 AT 05 504 50409 0 1333 Europe/Vienna 2011-07-31
-2779424 Fornach Fornach 48.02277 13.42941 P PPLA3 AT 04 417 41708 0 562 Europe/Vienna 2011-07-31
-2779433 Forchach Forchach Forchach 47.41667 10.58333 P PPLA3 AT 07 708 70810 0 912 Europe/Vienna 2011-07-31
-2779450 Fohnsdorf Fohnsdorf Fohnsdorf 47.2 14.68333 P PPLA3 AT 06 608 60804 8203 757 Europe/Vienna 2011-07-31
-2779477 Floing Floing Floing 47.26667 15.75 P PPLA3 AT 06 617 61710 0 759 Europe/Vienna 2011-07-31
-2779480 Flirsch Flirsch Flirsch 47.15 10.4 P PPLA3 AT 07 706 70605 0 1176 Europe/Vienna 2011-07-31
-2779499 Flaurling Flaurling 47.28333 11.11667 P PPLA3 AT 07 703 70308 0 902 Europe/Vienna 2011-07-31
-2779504 Flattach Flattach 46.93861 13.13444 P PPLA3 AT 02 206 20607 0 814 Europe/Vienna 2011-07-31
-2779506 Flatschach Flatschach 47.21667 14.75 P PPLA3 AT 06 609 60903 0 677 Europe/Vienna 2011-07-31
-2779514 Fladnitz im Raabtal Fladnitz im Raabtal Fladnitz,Fladnitz im Raabtal 46.99167 15.78528 P PPLA3 AT AT 06 604 60412 0 312 Europe/Vienna 2011-07-31
-2779522 Flachau Flachau 47.34406 13.39148 P PPLA3 AT 05 504 50408 0 907 Europe/Vienna 2011-07-31
-2779525 Fiss Fiss Fiss 47.05 10.61667 P PPLA3 AT 07 706 70603 0 1330 Europe/Vienna 2011-07-31
-2779545 Fischbach Fischbach Fischbach 47.43333 15.65 P PPLA3 AT 06 617 61708 0 923 Europe/Vienna 2011-07-31
-2779549 Fischamend Dorf Fischamend Dorf 48.11884 16.61287 P PPL AT 03 4471 154 Europe/Vienna 2008-10-15
-2779579 Filzmoos Filzmoos Burgfried,Filzmoos 47.43333 13.51667 P PPLA3 AT AT 05 504 50407 0 1051 Europe/Vienna 2011-07-31
-2779595 Fieberbrunn Fieberbrunn Fiberbrunn,Fieberbrunn,Фибербрунн 47.48333 12.55 P PPLA3 AT 07 704 70403 4180 932 Europe/Vienna 2011-07-31
-2779622 Ferschnitz Ferschnitz 48.08333 15 P PPLA3 AT 03 305 30512 0 299 Europe/Vienna 2011-07-31
-2779631 Fernitz Fernitz 46.97389 15.50111 P PPLA3 AT 06 606 60609 0 321 Europe/Vienna 2011-07-31
-2779634 Ferndorf Ferndorf 46.73972 13.6375 P PPLA3 AT 02 207 20710 0 693 Europe/Vienna 2011-07-31
-2779640 Ferlach Ferlach Ferlach 46.52694 14.30194 P PPLA3 AT 02 204 20405 7661 464 Europe/Vienna 2011-07-31
-2779648 Fendels Fendels Fendels 47.05 10.66667 P PPLA3 AT 07 706 70602 0 1283 Europe/Vienna 2011-07-31
-2779651 Fels am Wagram Fels am Wagram Fels,Fels am Wagram 48.43333 15.81667 P PPLA3 AT AT 03 321 32106 0 209 Europe/Vienna 2011-07-31
-2779663 Felixdorf Felixdorf 47.88159 16.24208 P PPLA3 AT 03 323 32307 0 282 Europe/Vienna 2011-07-31
-2779669 Feldkirchen in Kärnten Feldkirchen in Karnten Fel'dkirkhen (Karintija),Feldkirchen,Feldkirchen in Karnten,Feldkirchen in Kärnten,Фельдкирхен (Каринтия) 46.72368 14.0958 P PPLA3 AT 02 210 21002 14440 543 Europe/Vienna 2012-02-03
-2779671 Feldkirchen bei Graz Feldkirchen bei Graz Fel'dkirkhen (Grac),Feldkirchen,Feldkirchen bei Graz,Фельдкирхен (Грац) 47.01667 15.45 P PPLA3 AT AT 06 606 60608 0 332 Europe/Vienna 2011-07-31
-2779672 Feldkirchen an der Donau Feldkirchen an der Donau Fel'dkirkhen-an-der-Donau,Feldkirchen,Feldkirchen an der Donau,Фельдкирхен-ан-дер-Донау 48.34524 14.05134 P PPLA3 AT 04 416 41606 5286 266 Europe/Vienna 2011-12-20
-2779674 Feldkirch Feldkirch Fel'dkirkh,Feldkirch,pldqyrk,Фельдкирх,פלדקירך 47.23306 9.6 P PPLA3 AT 08 804 80404 29446 475 Europe/Vienna 2011-07-31
-2779685 Feldbach Feldbach Fel'dbakh,Feldbach,Фельдбах 46.95306 15.88833 P PPLA3 AT 06 604 60411 4877 283 Europe/Vienna 2011-07-31
-2779686 Feld am See Feld am See Feld,Feld am See 46.77639 13.74778 P PPLA3 AT AT 02 207 20708 0 759 Europe/Vienna 2011-07-31
-2779703 Feistritz ob Bleiburg Feistritz ob Bleiburg Bistrica nad Pliberkom,Feistritz,Feistritz ob Bleiburg,Feistritz ober Bleiburg 46.55 14.76667 P PPLA3 AT 02 208 20805 0 599 Europe/Vienna 2011-07-31
-2779704 Feistritz im Rosental Feistritz im Rosental Fajshtric,Feistritz,Feistritz im Rosental,Feistritz im Rosenthale,Файштриц 46.51667 14.16667 P PPLA3 AT AT 02 204 20403 0 554 Europe/Vienna 2011-07-31
-2779710 Feistritz bei Knittelfeld Feistritz bei Knittelfeld Feistritz,Feistritz bei Knittelfeld 47.26667 14.88333 P PPLA3 AT AT 06 609 60902 0 650 Europe/Vienna 2011-07-31
-2779718 Feistritz an der Gail Feistritz an der Gail Feistritz,Feistritz an der Gail 46.5775 13.60667 P PPLA3 AT AT 02 207 20707 0 567 Europe/Vienna 2011-07-31
-2779720 Feistritz am Wechsel Feistritz am Wechsel Feistritz,Feistritz am Wechsel 47.6 16.05 P PPLA3 AT AT 03 318 31809 0 492 Europe/Vienna 2011-07-31
-2779767 Fehring Fehring Fehring,Fering,Феринг 46.94 16.00806 P PPLA3 AT 06 604 60410 0 260 Europe/Vienna 2011-07-31
-2779814 Fallbach Fallbach 48.65 16.41667 P PPLA3 AT 03 316 31609 0 225 Europe/Vienna 2011-07-31
-2779819 Falkenstein Falkenstein 48.71667 16.58333 P PPLA3 AT 03 316 31608 0 312 Europe/Vienna 2011-07-31
-2779827 St. Ruprecht-Falkendorf St. Ruprecht-Falkendorf 47.1011 14.01752 P PPLA3 AT 06 614 61402 0 1051 Europe/Vienna 2012-02-03
-2779838 Faistenau Faistenau 47.76667 13.23333 P PPLA3 AT 05 503 50311 0 850 Europe/Vienna 2011-07-31
-2779879 Euratsfeld Euratsfeld 48.08181 14.93154 P PPLA3 AT 03 305 30511 0 312 Europe/Vienna 2011-07-31
-2779883 Eugendorf Eugendorf 47.86667 13.11667 P PPLA3 AT 05 503 50310 0 558 Europe/Vienna 2011-07-31
-2779922 Eschenau Eschenau 48.04825 15.56694 P PPLA3 AT 03 314 31402 0 394 Europe/Vienna 2011-07-31
-2779947 Ernstbrunn Ernstbrunn 48.53333 16.35 P PPLA3 AT 03 312 31203 0 352 Europe/Vienna 2011-07-31
-2779968 Erlauf Erlauf 48.18333 15.18333 P PPLA3 AT 03 315 31508 0 223 Europe/Vienna 2011-07-31
-2779973 Erlach Erlach 47.71667 16.21667 P PPLA3 AT 03 323 32306 0 359 Europe/Vienna 2011-07-31
-2779982 Erl Erl Erl 47.68333 12.18333 P PPLA3 AT 07 705 70510 0 473 Europe/Vienna 2011-07-31
-2780014 Enzersfeld Enzersfeld 48.35 16.41667 P PPLA3 AT 03 312 31202 0 189 Europe/Vienna 2011-07-31
-2780017 Enzersdorf an der Fischa Enzersdorf an der Fischa Ehncersdorf-an-der-Fisha,Enzersdorf,Enzersdorf an der Fischa,Энцерсдорф-ан-дер-Фиша 48.08333 16.6 P PPLA3 AT AT 03 307 30706 0 160 Europe/Vienna 2011-07-31
-2780021 Enzenreith Enzenreith 47.66839 15.95249 P PPLA3 AT 03 318 31808 0 450 Europe/Vienna 2011-07-31
-2780043 Ennsdorf Ennsdorf 48.21181 14.5029 P PPLA3 AT 03 305 30508 0 245 Europe/Vienna 2011-07-31
-2780048 Enns Enns Enns 48.21346 14.47612 P PPL AT 04 410 41005 10816 268 Europe/Vienna 2011-06-28
-2780057 Engerwitzdorf Engerwitzdorf 48.34507 14.44204 P PPLA3 AT 04 416 41605 8510 322 Europe/Vienna 2011-07-31
-2780073 Engelhartstetten Engelhartstetten 48.16667 16.88333 P PPLA3 AT 03 308 30814 0 139 Europe/Vienna 2011-07-31
-2780089 Empersdorf Empersdorf Empersdorf 46.98333 15.6 P PPLA3 AT 06 610 61007 0 334 Europe/Vienna 2011-07-31
-2780092 Emmersdorf an der Donau Emmersdorf an der Donau Emmersdorf,Emmersdorf an der Donau 48.2414 15.33721 P PPLA3 AT AT 03 315 31553 0 211 Europe/Vienna 2011-07-31
-2780109 Eltendorf Eltendorf 47 16.2 P PPLA3 AT 01 105 10502 0 230 Europe/Vienna 2011-07-31
-2780113 Elsbethen Elsbethen 47.75 13.08333 P PPLA3 AT 05 503 50309 0 427 Europe/Vienna 2011-07-31
-2780123 Elmen Elmen Elmen 47.33333 10.53333 P PPLA3 AT 07 708 70809 0 976 Europe/Vienna 2011-07-31
-2780135 Ellmau Ellmau Ehl'mau,Эльмау 47.51378 12.29937 P PPLA3 AT 07 705 70509 0 791 Europe/Vienna 2011-07-31
-2780147 Elixhausen Elixhausen 47.86667 13.06667 P PPLA3 AT 05 503 50308 0 534 Europe/Vienna 2011-07-31
-2780153 Elbigenalp Elbigenalp Elbigenalp 47.3 10.43333 P PPLA3 AT 07 708 70808 0 1424 Europe/Vienna 2011-07-31
-2780176 Eisgarn Eisgarn 48.9 15.1 P PPLA3 AT 03 309 30906 0 574 Europe/Vienna 2011-07-31
-2780190 Eisenstadt Eisenstadt Ajzenshtadt,Eisenstadt,Kismarton,Stadt Eisenstadt,aizenshutatto,Айзенштадт,אייזנשטט,アイゼンシュタット 47.84565 16.52327 P PPLA AT 01 12190 182 Europe/Vienna 2012-02-03
-2780207 Eisenerz Eisenerz Eisenerz 47.53333 14.88333 P PPLA3 AT 06 611 61101 5987 854 Europe/Vienna 2011-07-31
-2780218 Eisbach Eisbach Eisbach 47.11667 15.26667 P PPLA3 AT 06 606 60607 0 463 Europe/Vienna 2011-07-31
-2780250 Eidenberg Eidenberg 48.39439 14.23313 P PPLA3 AT 04 416 41604 0 688 Europe/Vienna 2011-12-20
-2780259 Eichgraben Eichgraben 48.17204 15.98391 P PPLA3 AT 03 319 31905 0 294 Europe/Vienna 2011-07-31
-2780260 Eichfeld Eichfeld Eichfeld,Unterrakitsch 46.72528 15.76806 P PPLA3 AT AT 06 615 61504 0 238 Europe/Vienna 2011-07-31
-2780264 Eichenberg Eichenberg 47.53333 9.78333 P PPLA3 AT 08 802 80212 0 881 Europe/Vienna 2011-07-31
-2780274 Eichberg Eichberg 47.38333 15.96667 P PPLA3 AT 06 607 60716 0 588 Europe/Vienna 2011-07-31
-2780283 Eibiswald Eibiswald 46.68667 15.24722 P PPLA3 AT 06 603 60303 0 371 Europe/Vienna 2011-07-31
-2780316 Ehrenhausen Ehrenhausen Ehrenhausen 46.72417 15.58667 P PPLA3 AT 06 610 61005 0 269 Europe/Vienna 2011-07-31
-2780323 Ehenbichl Ehenbichl Ehenbichl 47.46667 10.7 P PPLA3 AT 07 708 70806 0 883 Europe/Vienna 2011-07-31
-2780331 Eggersdorf bei Graz Eggersdorf bei Graz Eggersdorf,Eggersdorf bei Graz 47.11667 15.58333 P PPLA3 AT AT 06 606 60606 0 507 Europe/Vienna 2011-07-31
-2780335 Eggern Eggern 48.90829 15.14877 P PPLA3 AT 03 309 30904 0 581 Europe/Vienna 2011-07-31
-2780360 Eggenburg Eggenburg Eggenburg 48.63892 15.81903 P PPLA3 AT 03 311 31105 0 339 Europe/Vienna 2011-09-07
-2780380 Egg Egg 47.43194 9.89556 P PPLA3 AT 08 802 80211 0 554 Europe/Vienna 2011-07-31
-2780397 Edt bei Lambach Edt bei Lambach Edt,Edt bei Lambach 48.11667 13.88333 P PPLA3 AT AT 04 418 41806 0 390 Europe/Vienna 2011-07-31
-2780409 Edlitz Edlitz 47.58333 16.13333 P PPLA3 AT 03 318 31807 0 703 Europe/Vienna 2011-07-31
-2780448 Edelstal Edelstal 48.1 16.98333 P PPLA3 AT 01 107 10727 0 194 Europe/Vienna 2011-07-31
-2780450 Edelsgrub Edelsgrub Edelsgrub 47.03333 15.6 P PPLA3 AT 06 606 60605 0 420 Europe/Vienna 2011-07-31
-2780452 Edelschrott Edelschrott Edelschrott 47.01667 15.05 P PPLA3 AT 06 616 61602 0 758 Europe/Vienna 2011-07-31
-2780454 Edelsbach bei Feldbach Edelsbach bei Feldbach Edelsbach,Edelsbach bei Feldbach 46.98944 15.83694 P PPLA3 AT AT 06 604 60407 0 304 Europe/Vienna 2011-07-31
-2780490 Eckartsau Eckartsau 48.14507 16.79737 P PPLA3 AT 03 308 30813 0 145 Europe/Vienna 2011-07-31
-2780497 Echsenbach Echsenbach 48.71667 15.21667 P PPLA3 AT 03 325 32504 0 555 Europe/Vienna 2011-07-31
-2780501 Ebreichsdorf Ebreichsdorf 47.95 16.4 P PPLA3 AT 03 306 30607 9509 202 Europe/Vienna 2011-07-31
-2780512 Eberstein Eberstein 46.80806 14.56 P PPLA3 AT 02 205 20504 0 579 Europe/Vienna 2011-07-31
-2780522 Ebersdorf Ebersdorf 47.2 15.95 P PPLA3 AT 06 607 60705 0 305 Europe/Vienna 2011-07-31
-2780531 Eberndorf Eberndorf Eberndorf 46.59139 14.64361 P PPLA3 AT 02 208 20803 6088 486 Europe/Vienna 2011-07-31
-2780536 Ebergassing Ebergassing 48.04567 16.51709 P PPLA3 AT 03 324 32401 0 180 Europe/Vienna 2011-07-31
-2780539 Eberau Eberau Eberau,Monyorokerek,Monyorókerék 47.1 16.46667 P PPLA3 AT 01 104 10403 0 211 Europe/Vienna 2011-07-31
-2780543 Ebenthal Ebenthal 48.43333 16.78333 P PPLA3 AT 03 308 30812 0 182 Europe/Vienna 2011-07-31
-2780544 Ebenthal Ebenthal Ebenthal 46.60806 14.36417 P PPL AT 02 7809 427 Europe/Vienna 2012-01-18
-2780547 Ebensee Ebensee Ebensee 47.80716 13.779 P PPL AT 04 407 40704 8376 423 Europe/Vienna 2011-06-26
-2780551 Eben im Pongau Eben im Pongau Eben,Eben im Pongau 47.4 13.4 P PPLA3 AT AT 05 504 50406 0 849 Europe/Vienna 2011-07-31
-2780553 Ebenfurth Ebenfurth 47.86667 16.36667 P PPLA3 AT 03 323 32304 0 230 Europe/Vienna 2011-07-31
-2780563 Ebenau Ebenau 47.79073 13.17527 P PPLA3 AT 05 503 50307 0 604 Europe/Vienna 2011-07-31
-2780579 Ebbs Ebbs Ehbbs,Эббс 47.63333 12.21667 P PPLA3 AT 07 705 70508 5088 475 Europe/Vienna 2011-07-31
-2780603 Dürnstein in der Steiermark Durnstein in der Steiermark Durnstein,Durnstein in Steiermark,Durnstein in der Steiermark,Dürnstein,Dürnstein in Steiermark,Dürnstein in der Steiermark 46.98833 14.39167 P PPLA3 AT AT 06 614 61401 0 663 Europe/Vienna 2011-07-31
-2780604 Dürnstein Durnstein Durnstein,Dürnstein 48.38333 15.51667 P PPLA3 AT 03 313 31304 0 406 Europe/Vienna 2011-07-31
-2780607 Dürnkrut Durnkrut 48.47315 16.85062 P PPLA3 AT 03 308 30811 0 152 Europe/Vienna 2011-07-31
-2780641 Düns Duns 47.21667 9.71667 P PPLA3 AT 08 804 80402 0 651 Europe/Vienna 2011-07-31
-2780665 Drösing Drosing Droesing 48.539 16.90264 P PPLA3 AT AT 03 308 30810 0 158 Europe/Vienna 2011-07-31
-2780715 Drasenhofen Drasenhofen 48.75 16.65 P PPLA3 AT 03 316 31606 0 231 Europe/Vienna 2011-07-31
-2780741 Dornbirn Dornbirn Dornbirn,dwrnbyrn,Дорнбирн,דורנבירן 47.41667 9.73306 P PPLA3 AT 08 803 80301 43013 426 Europe/Vienna 2011-07-31
-2780760 Dorfstetten Dorfstetten 48.32573 14.98218 P PPLA3 AT 03 315 31506 0 742 Europe/Vienna 2011-09-07
-2780798 Dorfgastein Dorfgastein 47.25 13.1 P PPLA3 AT 05 504 50405 0 816 Europe/Vienna 2011-07-31
-2780811 Dorfbeuern Dorfbeuern 48.01667 13.01667 P PPLA3 AT 05 503 50306 0 447 Europe/Vienna 2011-07-31
-2780832 Doren Doren 47.49278 9.87972 P PPLA3 AT 08 802 80210 0 706 Europe/Vienna 2011-07-31
-2780842 Donnerskirchen Donnerskirchen 47.89425 16.64635 P PPLA3 AT 01 103 10302 0 148 Europe/Vienna 2011-07-31
-2780846 Donnersbach Donnersbach Donnersbach,Donnersbach Au 47.46139 14.12972 P PPLA3 AT AT 06 612 61208 0 694 Europe/Vienna 2011-07-31
-2780859 Dölsach Dolsach Dolsach,Dölsach 46.82833 12.84528 P PPLA3 AT 07 707 70707 0 836 Europe/Vienna 2011-07-31
-2780901 Dobersberg Dobersberg 48.9 15.31667 P PPLA3 AT 03 322 32203 0 466 Europe/Vienna 2011-07-31
-2780936 Diex Diex 46.75 14.6 P PPLA3 AT 02 208 20802 0 1016 Europe/Vienna 2011-07-31
-2780964 Dietersdorf am Gnasbach Dietersdorf am Gnasbach Dietersdorf,Dietersdorf am Gnasbach 46.80917 15.81167 P PPLA3 AT AT 06 615 61503 0 277 Europe/Vienna 2011-07-31
-2780988 Dienten am Hochkönig Dienten am Hochkonig 47.38324 13.00369 P PPLA3 AT 05 506 50603 0 1064 Europe/Vienna 2011-07-31
-2780991 Dienersdorf Dienersdorf Dienersdorf 47.23333 15.88333 P PPLA3 AT 06 607 60704 0 409 Europe/Vienna 2011-07-31
-2781017 Deutsch-Wagram Deutsch-Wagram Deutsch-Wagram 48.29972 16.56667 P PPLA3 AT 03 308 30808 7153 163 Europe/Vienna 2011-07-31
-2781023 Deutschlandsberg Deutschlandsberg Deutschlandberg,Deutschlandsberg,Dojchlandsberg,Дойчландсберг 46.81528 15.22222 P PPLA3 AT 06 603 60302 8049 362 Europe/Vienna 2011-07-31
-2781024 Deutschkreutz Deutschkreutz Deutschkreutz,Dojchkrojc,Sopronkeresztur,Sopronkeresztúr,Дойчкройц 47.6 16.63333 P PPLA3 AT 01 108 10801 0 180 Europe/Vienna 2011-07-31
-2781025 Deutsch Kaltenbrunn Deutsch Kaltenbrunn Deutsch Kaltenbrunn,Dojch-Kal'tenbrun,Kaltenbrunn,Дойч-Кальтенбрун 47.08789 16.10793 P PPLA3 AT AT 01 105 10501 0 266 Europe/Vienna 2011-09-07
-2781026 Deutsch Jahrndorf Deutsch Jahrndorf 48.01667 17.1 P PPLA3 AT 01 107 10704 0 129 Europe/Vienna 2011-07-31
-2781033 Deutsch Goritz Deutsch Goritz Deutsch Goritz 46.75083 15.82944 P PPLA3 AT 06 615 61502 0 244 Europe/Vienna 2011-07-31
-2781035 Deutschfeistritz Deutschfeistritz Deutschfeistritz,Dojchfajshtric,Дойчфайштриц 47.18333 15.33333 P PPLA3 AT 06 606 60603 0 395 Europe/Vienna 2011-07-31
-2781049 Desselbrunn Desselbrunn Desselbrunn 48.01667 13.76667 P PPLA3 AT 04 417 41707 0 424 Europe/Vienna 2011-07-31
-2781054 Dellach im Drautal Dellach im Drautal Dellach,Dellach im Drautal,Dellach im Drautale 46.7375 13.07833 P PPLA3 AT AT 02 206 20604 0 618 Europe/Vienna 2011-07-31
-2781061 Dellach Dellach Dellach,Dellach im Gailtale 46.66667 13.08333 P PPLA3 AT AT 02 203 20302 0 826 Europe/Vienna 2011-07-31
-2781079 Dechantskirchen Dechantskirchen Dechantskirchen 47.41667 16.01667 P PPLA3 AT 06 607 60703 0 530 Europe/Vienna 2011-07-31
-2781119 Dalaas Dalaas 47.12446 9.99104 P PPLA3 AT 08 801 80108 0 873 Europe/Vienna 2011-07-31
-2781161 Bürs Buers 47.14972 9.8 P PPLA3 AT 08 801 80106 3100 580 Europe/Vienna 2011-07-31
-2781196 Burgau Burgau 47.14268 16.09643 P PPLA3 AT 06 605 60503 0 281 Europe/Vienna 2011-09-07
-2781224 Buchkirchen Buchkirchen Buchkirchen,Bukhkirkhen,Бухкирхен 48.22427 14.02242 P PPLA3 AT 04 418 41804 0 337 Europe/Vienna 2011-07-31
-2781269 Buch bei Jenbach Buch bei Jenbach Buch,Buch bei Jenbach,Bukh (Jenbakh),Бух (Йенбах) 47.36667 11.75 P PPLA3 AT AT 07 709 70905 0 659 Europe/Vienna 2011-07-31
-2781273 Buchbach Buchbach 47.69648 15.98425 P PPLA3 AT 03 318 31806 0 488 Europe/Vienna 2011-07-31
-2781317 Brunn an der Wild Brunn an der Wild Brunn 48.69425 15.52008 P PPLA3 AT AT 03 311 31102 0 443 Europe/Vienna 2011-07-31
-2781321 Brunn am Gebirge Brunn am Gebirge Brun-am-Gebirge,Brunn,Брун-ам-Гебирге 48.10697 16.28466 P PPLA3 AT AT 03 317 31704 0 223 Europe/Vienna 2011-07-31
-2781361 Bruckneudorf Bruckneudorf Bruckneudorf,Bruknojdorf,Kiralyhida,Királyhida,Брукнойдорф 48.01667 16.78333 P PPLA3 AT 01 107 10703 0 160 Europe/Vienna 2011-07-31
-2781364 Brückl Bruckl 46.75167 14.53667 P PPLA3 AT 02 205 20502 0 570 Europe/Vienna 2011-07-31
-2781371 Bruck an der Mur Bruck an der Mur Bruck,Bruck an der Mur,Bruk-an-der-Mur,Брук-ан-дер-Мур 47.41667 15.28333 P PPLA3 AT 06 602 60204 13254 572 Europe/Vienna 2011-07-31
-2781373 Bruck an der Leitha Bruck an der Leitha Bruck,Bruck an der Leitha,Bruk-an-der-Lajta,Брук-ан-дер-Лайта 48.01667 16.76667 P PPLA3 AT 03 307 30704 7339 154 Europe/Vienna 2011-07-31
-2781374 Bruck an der Großglocknerstraße Bruck an der Grossglocknerstrasse Bruck,Bruck an der Glocknerstrasse,Bruk-an-der-Grosgloknershtrasse,Брук-ан-дер-Гросглокнерштрассе 47.28494 12.8231 P PPLA3 AT 05 506 50602 4649 759 Europe/Vienna 2011-07-31
-2781376 Bruck am Ziller Bruck am Ziller Bruck,Bruck am Ziller 47.38998 11.85124 P PPLA3 AT AT 07 709 70904 0 567 Europe/Vienna 2011-07-31
-2781387 Bromberg Bromberg 47.66667 16.2 P PPLA3 AT 03 323 32325 0 511 Europe/Vienna 2011-07-31
-2781391 Brixlegg Brixlegg Briksleg,Брикслег 47.42942 11.87794 P PPLA3 AT 07 705 70506 0 534 Europe/Vienna 2011-07-31
-2781394 Brixen im Thale Brixen im Thale Briksen-im-Tale,Brixen,Brixen im Tal,Brixen im Tale,Brixen im Thale,Бриксен-им-Тале 47.45 12.25 P PPLA3 AT AT 07 704 70402 2673 798 Europe/Vienna 2011-07-31
-2781411 Bretstein Bretstein Bretstein,Bretsteingassen,Brettstein,Gassner 47.33333 14.41667 P PPLA3 AT AT 06 608 60802 0 1024 Europe/Vienna 2011-07-31
-2781449 Breitenwang Breitenwang Breitenwang 47.48333 10.73333 P PPLA3 AT 07 708 70805 0 906 Europe/Vienna 2011-07-31
-2781463 Breitenfurt bei Wien Breitenfurt bei Wien Breitenfurt,Breitenfurt bei Wien,Breitenfurth 48.13333 16.15 P PPLA3 AT AT 03 317 31703 0 339 Europe/Vienna 2011-07-31
-2781465 Breitenfeld an der Rittschein Breitenfeld an der Rittschein Breitenfeld,Breitenfeld an der Rittschein 47.03333 15.95 P PPLA3 AT AT 06 604 60406 0 340 Europe/Vienna 2011-07-31
-2781466 Breitenfeld am Tannenriegel Breitenfeld am Tannenriegel Breitenfeld,Breitenfeld am Tannenriegel 46.85 15.63333 P PPLA3 AT 06 610 61004 0 308 Europe/Vienna 2011-07-31
-2781472 Breitenbrunn Breitenbrunn 47.94452 16.73149 P PPLA3 AT 01 103 10301 0 148 Europe/Vienna 2011-07-31
-2781480 Breitenbach am Inn Breitenbach am Inn Brajtenbakh-am-Inn,Breitenbach,Breitenbach am Inn,Брайтенбах-ам-Инн 47.48333 11.96667 P PPLA3 AT AT 07 705 70505 0 544 Europe/Vienna 2011-07-31
-2781487 Breitenau Breitenau 47.73355 16.14338 P PPLA3 AT 03 318 31804 0 340 Europe/Vienna 2011-07-31
-2781503 Bregenz Bregenz Bregenc,Bregencja,Bregenz,Brigantium,brgnz,buregentsu,Брегенц,ברגנץ,ブレゲンツ 47.50311 9.7471 P PPLA AT 08 27611 405 Europe/Vienna 2010-07-07
-2781520 Braunau am Inn Braunau am Inn Braunau,Braunau am Inn,Braunau na In,Braunau na Innu,Braunau na Inu,Braunau-na-Inne,yin he pan bu lao nao,Браунау на Ин,Браунау на Ину,Браунау-на-Инне,בראונאו אם אין,בראונאו-אם אין,ブラウナウ・アム・イン,因河畔布劳瑙 48.25628 13.04343 P PPL AT 04 404 40404 16403 350 Europe/Vienna 2011-06-26
-2781567 Brandenberg Brandenberg Brandenberg 47.49053 11.89459 P PPLA3 AT 07 705 70504 0 918 Europe/Vienna 2011-07-31
-2781587 Bramberg am Wildkogel Bramberg am Wildkogel Bramberg,Bramberg am Wildkogel,Bramer-am-Vil'dkogel',Брамер-ам-Вильдкогель 47.26667 12.35 P PPLA3 AT AT 05 506 50601 0 842 Europe/Vienna 2011-07-31
-2781612 Böheimkirchen Boheimkirchen 48.19779 15.76178 P PPLA3 AT 03 319 31903 0 242 Europe/Vienna 2011-07-31
-2781653 Bocksdorf Bocksdorf 47.13333 16.16667 P PPLA3 AT 01 104 10401 0 284 Europe/Vienna 2011-07-31
-2781658 Bockfließ Bockfliess Bockfliess,Bockfließ,Bockfluss,Bockflüss 48.36 16.60389 P PPLA3 AT AT 03 316 31605 0 167 Europe/Vienna 2011-07-31
-2781668 Bad Blumau Bad Blumau Bad-Blumau,Blumau,Бад-Блумау 47.11667 16.05 P PPLA3 AT AT 06 605 60502 1628 284 Europe/Vienna 2011-07-31
-2781678 Bludesch Bludesch 47.2 9.73306 P PPLA3 AT 08 801 80104 0 542 Europe/Vienna 2011-07-31
-2781680 Bludenz Bludenz Bludenc,Bludenz,Блуденц 47.14972 9.81667 P PPLA3 AT 08 801 80103 13904 562 Europe/Vienna 2011-07-31
-2781683 Blons Blons 47.22327 9.83414 P PPLA3 AT 08 801 80102 0 900 902 Europe/Vienna 2011-07-31
-2781692 Blindenmarkt Blindenmarkt 48.13333 14.98333 P PPLA3 AT 03 315 31505 0 254 Europe/Vienna 2011-07-31
-2781727 Blaindorf Blaindorf Blaindorf,Blajndorf,Блайндорф 47.16667 15.85 P PPLA3 AT 06 607 60701 0 340 Europe/Vienna 2011-07-31
-2781730 Bizau Bizau 47.36889 9.92333 P PPLA3 AT 08 802 80206 0 671 Europe/Vienna 2011-07-31
-2781734 Bischofstetten Bischofstetten 48.12222 15.46909 P PPLA3 AT 03 315 31504 0 265 Europe/Vienna 2011-07-31
-2781735 Bischofshofen Bischofshofen Bischofhofen,Bischofshofen,Bischofshofn,Bischofshogen,Bishofskhofen,Бишофсхофен 47.41667 13.21667 P PPLA3 AT 05 504 50404 10144 558 Europe/Vienna 2011-07-31
-2781742 Bisamberg Bisamberg 48.33333 16.35 P PPLA3 AT 03 312 31201 0 164 Europe/Vienna 2011-07-31
-2781748 Birkfeld Birkfeld Birkfeld 47.35 15.68333 P PPLA3 AT 06 617 61705 0 676 Europe/Vienna 2011-07-31
-2781753 Birgitz Birgitz 47.23536 11.29922 P PPLA3 AT 07 703 70306 0 859 Europe/Vienna 2011-07-31
-2781764 Bildstein Bildstein 47.45 9.76667 P PPLA3 AT 08 802 80205 0 474 Europe/Vienna 2011-07-31
-2781773 Bierbaum am Auersbach Bierbaum am Auersbach Bierbaum,Bierbaum am Auersbach 46.83333 15.78333 P PPLA3 AT AT 06 615 61501 0 351 Europe/Vienna 2011-07-31
-2781780 Biedermannsdorf Biedermannsdorf 48.08393 16.34542 P PPLA3 AT 03 317 31702 0 185 Europe/Vienna 2011-07-31
-2781790 Bichlbach Bichlbach Bichlbach 47.41667 10.78333 P PPLA3 AT 07 708 70804 0 1318 Europe/Vienna 2011-07-31
-2781800 Biberwier Biberwier Biberwiehr,Biberwier 47.38333 10.9 P PPLA3 AT AT 07 708 70803 0 974 Europe/Vienna 2011-07-31
-2781804 Biberbach Biberbach 48.01667 14.7 P PPLA3 AT 03 305 30507 0 364 Europe/Vienna 2011-07-31
-2781806 Bezau Bezau Bezau 47.385 9.90167 P PPLA3 AT 08 802 80204 0 651 Europe/Vienna 2011-07-31
-2781814 Berwang Berwang Berwang 47.40807 10.74735 P PPLA3 AT 07 708 70802 0 1336 1337 Europe/Vienna 2011-10-27
-2781820 Bernstein Bernstein Bernshtajn,Bernstein,Borostyanko,Borostyánko,Бернштайн 47.4 16.25 P PPLA3 AT 01 109 10902 0 527 Europe/Vienna 2011-07-31
-2781827 Bernhardsthal Bernhardsthal 48.69158 16.86951 P PPLA3 AT 03 316 31604 0 167 Europe/Vienna 2011-07-31
-2781833 Berndorf bei Salzburg Berndorf bei Salzburg Berndorf,Berndorf bei Salzburg 47.98333 13.06667 P PPLA3 AT AT 05 503 50304 0 588 Europe/Vienna 2011-07-31
-2781837 Berndorf Berndorf 47.94567 16.10973 P PPLA3 AT 03 306 30605 8796 311 Europe/Vienna 2011-07-31
-2781859 Bergheim Bergheim 47.83333 13.03333 P PPLA3 AT 05 503 50303 5031 436 Europe/Vienna 2011-07-31
-2781897 Berg Berg 48.1 17.03333 P PPLA3 AT 03 307 30703 0 150 Europe/Vienna 2011-07-31
-2781924 Behamberg Behamberg 48.01667 14.48333 P PPLA3 AT 03 305 30506 0 348 Europe/Vienna 2011-07-31
-2781935 Baumkirchen Baumkirchen 47.3 11.56667 P PPLA3 AT 07 703 70305 0 582 Europe/Vienna 2011-07-31
-2781941 Baumgarten bei Gnas Baumgarten bei Gnas Baumgarten,Baumgarten bei Gnas 46.91667 15.76667 P PPLA3 AT AT 06 604 60405 0 332 Europe/Vienna 2011-07-31
-2781975 Bartholomäberg Bartholomaberg Bartholomaberg,Bartholomäberg 47.08333 9.9 P PPLA3 AT 08 801 80101 0 667 Europe/Vienna 2011-07-31
-2781982 Bärnkopf Barnkopf 48.4 15 P PPLA3 AT 03 325 32503 0 924 Europe/Vienna 2011-07-31
-2781992 Bärnbach Barnbach 47.03333 15.85 P PPL AT 06 4850 408 Europe/Vienna 2006-01-17
-2782023 Baldramsdorf Baldramsdorf 46.80111 13.45333 P PPLA3 AT 02 206 20602 0 576 Europe/Vienna 2011-07-31
-2782027 Bairisch Kölldorf Bairisch Kolldorf Bairisch Kolldorf,Bairisch Kölldorf 46.86667 15.93333 P PPLA3 AT 06 604 60404 0 385 Europe/Vienna 2011-07-31
-2782042 Bad Wimsbach-Neydharting Bad Wimsbach-Neydharting Bad Neidharting,Bad Wimsbach-Neydharting,Bad-Vimsbakh-Najdkharting,Neidharting,Neydharting,Wimsbach,Wunsbach,Бад-Вимсбах-Найдхартинг 48.06667 13.9 P PPLA3 AT AT 04 418 41803 0 380 Europe/Vienna 2011-07-31
-2782043 Bad Vöslau Bad Voslau Bad-Vjoslau,Voslau,Vöslau,Бад-Вёслау 47.96533 16.21359 P PPLA3 AT 03 306 30603 11013 262 Europe/Vienna 2011-07-31
-2782045 Bad Tatzmannsdorf Bad Tatzmannsdorf Bad Tatzmannsdorf,Bad-Tacmansdorf,Tarcsafuerdo,Tarcsafürdo,Бад-Тацмансдорф 47.33333 16.21667 P PPLA3 AT 01 109 10901 1329 369 Europe/Vienna 2011-07-31
-2782047 Bad Schönau Bad Schonau Bad Schonau,Bad Schönau,Schonau,Schonau im Gebirge,Schönau,Schönau im Gebirge 47.48333 16.23333 P PPLA3 AT AT 03 323 32302 0 577 Europe/Vienna 2011-07-31
-2782048 Bad Schallerbach Bad Schallerbach Bad Schallerbach,Bad-Shallerbakh,Schallerbach,Бад-Шаллербах 48.22999 13.91925 P PPL AT AT 04 408 40802 3449 309 Europe/Vienna 2011-06-26
-2782049 Bad Sankt Leonhard im Lavanttal Bad Sankt Leonhard im Lavanttal Bad Sankt Leonhard,Bad Sankt Leonhard im Lavanttal,Bad Sankt Leonhard im Lavanttale,Bad-Sankt-Leonard-im-Lavanttal',Sankt Leonhard,Бад-Санкт-Леонард-им-Лавантталь 46.96278 14.79167 P PPL AT 02 4775 707 Europe/Vienna 2012-01-18
-2782052 Bad Ischl Bad Ischl Bad Ischl,Bad Ishl,Ischi,Ischl,Бад Ишл 47.71109 13.61893 P PPL AT 04 407 40703 14267 470 Europe/Vienna 2011-06-26
-2782053 Bad Hofgastein Bad Hofgastein Bad Hofgastein,Bad-Khofgashtajn,Hofgastein,Бад-Хофгаштайн 47.16667 13.1 P PPLA3 AT 05 504 50402 7002 836 Europe/Vienna 2011-07-31
-2782054 Bad Hall Bad Hall Bad Hall,Bad-Khall',Бад-Халль 48.03832 14.20773 P PPL AT 04 415 41503 4935 369 Europe/Vienna 2011-07-17
-2782055 Bad Goisern Bad Goisern Bad Goisern am Hallstaettersee,Bad Goisern am Hallstättersee,Bad-Gojzern,Goisern,Бад-Гойзерн 47.64252 13.61609 P PPL AT 04 407 40702 7869 498 Europe/Vienna 2011-06-26
-2782056 Bad Gleichenberg Bad Gleichenberg Bad Gleichenberg,Gleichenberg 46.87556 15.90861 P PPLA3 AT AT 06 604 60403 0 295 Europe/Vienna 2011-07-31
-2782058 Bad Gastein Bad Gastein Bad-Gasshtajn,Gastein,Бад-Гасштайн 47.11547 13.13467 P PPLA3 AT 05 504 50403 5947 998 Europe/Vienna 2011-07-31
-2782061 Badersdorf Badersdorf 47.2 16.36667 P PPLA3 AT 01 109 10931 0 261 Europe/Vienna 2011-07-31
-2782067 Baden Baden Baden,Baden bei Wien,Баден,באדן,バーデン・バイ・ヴィーン 48.00543 16.23264 P PPLA3 AT 03 306 30604 24893 230 Europe/Vienna 2011-09-07
-2782068 Bad Deutsch-Altenburg Bad Deutsch-Altenburg Deutsch Altenburg 48.13425 16.90624 P PPLA3 AT AT 03 307 30702 0 149 Europe/Vienna 2011-07-31
-2782070 Bad Aussee Bad Aussee 47.60998 13.78243 P PPLA3 AT 06 612 61207 5210 659 Europe/Vienna 2011-07-31
-2782079 Bachmanning Bachmanning Bachmaning,Bachmanning 48.11667 13.8 P PPLA3 AT AT 04 418 41802 0 409 Europe/Vienna 2011-07-31
-2782106 Axams Axams 47.23111 11.27892 P PPLA3 AT 07 703 70304 0 876 Europe/Vienna 2011-07-31
-2782118 Außervillgraten Ausservillgraten Ausserviligraten,Ausservillgraten,Außervillgraten 46.7875 12.43139 P PPLA3 AT AT 07 707 70706 0 1288 Europe/Vienna 2011-07-31
-2782163 Aurach am Hongar Aurach am Hongar Aurach,Aurach am Hongar 47.95182 13.67291 P PPLA3 AT AT 04 417 41705 0 492 Europe/Vienna 2011-07-31
-2782204 Auersthal Auersthal 48.36667 16.63333 P PPLA3 AT 03 308 30804 0 181 Europe/Vienna 2011-07-31
-2782206 Auersbach Auersbach 47.01667 15.86667 P PPLA3 AT 06 604 60401 0 378 Europe/Vienna 2011-07-31
-2782242 Au am Leithaberge Au am Leithaberge Au,Au am Leithaberge,Au am Leithagebirge 47.91667 16.55 P PPLA3 AT AT 03 307 30701 0 225 Europe/Vienna 2011-07-31
-2782259 Au Au 47.32278 9.97583 P PPLA3 AT 08 802 80203 0 811 Europe/Vienna 2011-07-31
-2782274 Atzesberg Atzesberg 48.49849 13.9241 P PPLA3 AT 04 413 41306 0 545 Europe/Vienna 2011-07-31
-2782278 Atzenbrugg Atzenbrugg 48.29119 15.90614 P PPLA3 AT 03 321 32104 0 191 Europe/Vienna 2011-07-31
-2782283 Atzbach Atzbach Atzbach 48.08364 13.70347 P PPLA3 AT 04 417 41704 0 466 Europe/Vienna 2011-07-31
-2782287 Attersee Attersee Attersee 47.91646 13.53953 P PPLA3 AT 04 417 41702 0 490 Europe/Vienna 2011-09-07
-2782292 Attendorf Attendorf 47.01667 15.31667 P PPLA3 AT 06 606 60601 0 357 Europe/Vienna 2011-07-31
-2782302 Asten Asten 48.21941 14.41784 P PPL AT 04 410 41003 6516 251 Europe/Vienna 2011-06-28
-2782317 Asperhofen Asperhofen 48.24583 15.92606 P PPLA3 AT 03 319 31902 0 207 Europe/Vienna 2011-07-31
-2782319 Asparn an der Zaya Asparn an der Zaya Asparn,Asparn an der Zaya 48.58333 16.5 P PPLA3 AT AT 03 316 31603 0 215 Europe/Vienna 2011-07-31
-2782382 Arzl im Pitztal Arzl im Pitztal Arcl' (Pictal'),Arzl,Arzl im Pitztal,Арцль (Пицталь) 47.2 10.76667 P PPLA3 AT AT 07 702 70201 0 855 Europe/Vienna 2011-07-31
-2782389 Arzberg Arzberg 47.25 15.51667 P PPLA3 AT 06 617 61703 0 660 Europe/Vienna 2011-07-31
-2782402 Arriach Arriach 46.73194 13.85194 P PPLA3 AT 02 207 20703 0 913 Europe/Vienna 2011-07-31
-2782408 Arnoldstein Arnoldstein Arnoldstein 46.54611 13.71 P PPLA3 AT 02 207 20702 6923 679 Europe/Vienna 2011-07-31
-2782410 Arnfels Arnfels Arnfels 46.67639 15.40306 P PPLA3 AT 06 610 61002 0 325 Europe/Vienna 2011-07-31
-2782434 Ardning Ardning Ardning 47.58333 14.35 P PPLA3 AT 06 612 61206 0 631 Europe/Vienna 2011-07-31
-2782443 Arbesbach Arbesbach 48.48333 14.95 P PPLA3 AT 03 325 32502 0 898 Europe/Vienna 2011-07-31
-2782453 Apfelberg Apfelberg Apfelberg 47.2 14.83333 P PPLA3 AT 06 609 60901 0 623 Europe/Vienna 2011-07-31
-2782454 Apetlon Apetlon Apetlon,Mosonbanfalva,Mosonbánfalva,Апетлон 47.74394 16.8302 P PPLA3 AT 01 107 10702 0 120 Europe/Vienna 2011-07-31
-2782475 Anthering Anthering 47.88333 13.01667 P PPLA3 AT 05 503 50302 0 445 Europe/Vienna 2011-07-31
-2782479 Antau Antau Antau,Otava,Антау 47.76667 16.48333 P PPLA3 AT 01 106 10616 0 202 Europe/Vienna 2011-07-31
-2782480 Ansfelden Ansfelden Ansfel'den,Ansfelden,Ансфельден,אנספלדן 48.20969 14.29004 P PPL AT 04 410 41002 14936 278 Europe/Vienna 2011-06-28
-2782482 Anras Anras Anras 46.77389 12.56083 P PPLA3 AT 07 707 70704 0 1296 Europe/Vienna 2011-07-31
-2782496 Annaberg Annaberg 47.87134 15.37648 P PPLA3 AT 03 314 31401 0 979 Europe/Vienna 2011-07-31
-2782504 Anif Anif 47.75 13.06667 P PPLA3 AT 05 503 50301 4154 434 Europe/Vienna 2011-07-31
-2782511 Angern an der March Angern an der March Angern,Angern an der March,Angern-an-der-Markh,Ангерн-ан-дер-Марх 48.37778 16.82806 P PPLA3 AT AT 03 308 30803 0 152 Europe/Vienna 2011-07-31
-2782528 Anger Anger 47.26667 15.68333 P PPLA3 AT 06 617 61702 0 684 Europe/Vienna 2011-07-31
-2782534 Angath Angath Angath 47.5 12.06667 P PPLA3 AT 07 705 70502 0 505 Europe/Vienna 2011-07-31
-2782544 Andlersdorf Andlersdorf 48.18333 16.66667 P PPLA3 AT 03 308 30802 0 147 Europe/Vienna 2011-07-31
-2782551 Andelsbuch Andelsbuch 47.41357 9.89559 P PPLA3 AT 08 802 80202 0 615 Europe/Vienna 2011-07-31
-2782552 Andau Andau Andau,Mosontarcsa,Андау 47.77441 17.03293 P PPLA3 AT 01 107 10701 0 118 Europe/Vienna 2011-07-31
-2782555 Amstetten Amstetten 48.1229 14.87206 P PPLA3 AT 03 305 30502 22832 277 Europe/Vienna 2011-07-31
-2782566 Ampass Ampass Agenbach,Ampass,Ampass Unterdorf 47.26667 11.45 P PPLA3 AT AT 07 703 70303 0 575 Europe/Vienna 2011-07-31
-2782572 Amlach Amlach 46.81639 12.76361 P PPLA3 AT 07 707 70703 0 685 Europe/Vienna 2011-07-31
-2782627 Altmünster Altmunster Al'tmjunster,Altmuenster,Альтмюнстер 47.90219 13.76415 P PPL AT 04 407 40701 9651 448 Europe/Vienna 2011-06-26
-2782628 Altmelon Altmelon 48.45 14.96667 P PPLA3 AT 03 325 32519 0 856 Europe/Vienna 2011-07-31
-2782633 Altlichtenwarth Altlichtenwarth 48.63333 16.8 P PPLA3 AT 03 316 31601 0 221 Europe/Vienna 2011-07-31
-2782635 Altlengbach Altlengbach 48.15355 15.92606 P PPLA3 AT 03 319 31901 0 284 Europe/Vienna 2011-07-31
-2782645 Althofen Althofen 46.87298 14.47449 P PPLA3 AT 02 205 20501 0 688 Europe/Vienna 2011-07-31
-2782649 Altheim Altheim 48.25154 13.23406 P PPLA3 AT 04 404 40401 4800 362 Europe/Vienna 2011-07-24
-2782673 Altenmarkt im Pongau Altenmarkt im Pongau Al'tenmarkt (Pongau),Altenmarkt,Altenmarkt im Pongau,Old Markt,Альтенмаркт (Понгау) 47.38333 13.41667 P PPLA3 AT AT 05 504 50401 0 841 Europe/Vienna 2011-07-31
-2782676 Altenmarkt bei Sankt Gallen Altenmarkt bei Sankt Gallen Al'tenmarkt-Sankt-Gallen,Altenmarkt,Altenmarkt bei Sankt Gallen,Альтенмаркт-Санкт-Галлен 47.71667 14.63333 P PPLA3 AT AT 06 612 61205 0 463 Europe/Vienna 2011-07-31
-2782678 Altenmarkt bei Fürstenfeld Altenmarkt bei Furstenfeld Altenmarkt,Altenmarkt bei Furstenfeld,Altenmarkt bei Fürstenfeld 47.05 16.05 P PPLA3 AT AT 06 605 60501 0 319 Europe/Vienna 2011-07-31
-2782679 Altenmarkt an der Triesting Altenmarkt an der Triesting Altenmarkt 48.01553 15.99661 P PPLA3 AT AT 03 306 30602 0 393 Europe/Vienna 2011-07-31
-2782693 Altendorf Altendorf 47.65 16.01667 P PPLA3 AT 03 318 31801 0 644 Europe/Vienna 2011-07-31
-2782697 Altenburg Altenburg 48.63333 15.58333 P PPLA3 AT 03 311 31101 0 462 Europe/Vienna 2011-07-31
-2782700 Altenberg bei Linz Altenberg bei Linz Al'tenberg (Linc),Altenberg,Альтенберг (Линц) 48.37284 14.35029 P PPLA3 AT AT 04 416 41602 0 586 Europe/Vienna 2011-12-20
-2782724 Altaussee Altaussee 47.63333 13.76667 P PPLA3 AT 06 612 61204 0 715 Europe/Vienna 2011-07-31
-2782728 Altach Altach Altach 47.35 9.65 P PPLA3 AT 08 804 80401 6040 410 Europe/Vienna 2011-07-31
-2782782 Allhartsberg Allhartsberg 48.02633 14.79009 P PPLA3 AT 03 305 30501 0 390 Europe/Vienna 2011-07-31
-2782795 Allerheiligen im Mürztal Allerheiligen im Murztal Allerheiligen,Allerheiligen im Murztal,Allerheiligen im Mürztal 47.46667 15.4 P PPLA3 AT AT 06 613 61301 0 701 Europe/Vienna 2011-07-31
-2782797 Allerheiligen bei Wildon Allerheiligen bei Wildon Allerheiligen,Allerheiligen bei Wildon 46.91417 15.55444 P PPLA3 AT AT 06 610 61001 0 393 Europe/Vienna 2011-07-31
-2782800 Allentsteig Allentsteig 48.69725 15.32756 P PPLA3 AT 03 325 32501 0 547 Europe/Vienna 2011-07-31
-2782802 Alland Alland Alland,Alland im Gebirge,Алланд 48.05829 16.07901 P PPLA3 AT AT 03 306 30601 0 325 Europe/Vienna 2011-07-31
-2782813 Aldrans Aldrans 47.25 11.45 P PPLA3 AT 07 703 70302 0 793 Europe/Vienna 2011-07-31
-2782830 Alberndorf in der Riedmark Alberndorf in der Riedmark Al'berndorf (Ridmark),Alberndorf,Alberndorf in der Riedmark,Альберндорф (Ридмарк) 48.40607 14.41441 P PPLA3 AT AT 04 416 41601 0 564 Europe/Vienna 2011-12-20
-2782852 Ainet Ainet Ainet 46.86611 12.70139 P PPLA3 AT 07 707 70702 0 931 Europe/Vienna 2011-07-31
-2782861 Aigen im Ennstal Aigen im Ennstal Aigen,Aigen im Ennstal,Aigen im Ennstale,Ajgen (Ehnstal'),Айген (Энсталь) 47.51667 14.13333 P PPLA3 AT AT 06 612 61203 0 655 Europe/Vienna 2011-07-31
-2782887 Aichkirchen Aichkirchen Aichkirchen 48.1 13.78333 P PPLA3 AT 04 418 41801 0 414 Europe/Vienna 2011-07-31
-2782915 Aich Aich 47.41667 13.81667 P PPLA3 AT 06 612 61202 0 699 Europe/Vienna 2011-07-31
-2782926 Aibl Aibl Aibel,Aibl 46.68333 15.21667 P PPLA3 AT AT 06 603 60301 0 471 Europe/Vienna 2011-07-31
-2782955 Aggsbach Aggsbach Aggsbach,Aggsbach Markt,Markt Aggsbach 48.29404 15.40382 P PPLA3 AT AT 03 313 31301 0 209 Europe/Vienna 2011-07-31
-2782967 Aflenz Kurort Aflenz Kurort Aflenz,Aflenz Kurort 47.53333 15.23333 P PPLA3 AT AT 06 602 60201 0 696 Europe/Vienna 2011-07-31
-2782976 Adnet Adnet 47.68333 13.13333 P PPLA3 AT 05 502 50202 0 569 Europe/Vienna 2011-07-31
-2782979 Admont Admont Admont,Адмонт 47.57537 14.46075 P PPLA3 AT 06 612 61201 0 642 Europe/Vienna 2011-07-31
-2782991 Aderklaa Aderklaa 48.28333 16.53333 P PPLA3 AT 03 308 30801 0 154 Europe/Vienna 2011-07-31
-2783035 Achenkirch Achenkirch 47.52659 11.70559 P PPLA3 AT 07 709 70901 0 911 Europe/Vienna 2011-07-31
-2783040 Achau Achau 48.08026 16.38611 P PPLA3 AT 03 317 31701 0 173 Europe/Vienna 2011-07-31
-2783050 Abtenau Abtenau Abbtenau,Abtenao,Abtenau,Абтенау 47.56373 13.34599 P PPLA3 AT 05 502 50201 5828 717 Europe/Vienna 2011-07-31
-2783058 Absam Absam 47.3 11.5 P PPLA3 AT 07 703 70301 6594 677 Europe/Vienna 2011-07-31
-2783062 Abfaltersbach Abfaltersbach Abfaltersbach 46.76028 12.54194 P PPLA3 AT 07 707 70701 0 978 Europe/Vienna 2011-07-31
-3217367 Schlaiten Schlaiten Schlaiten 46.87944 12.65417 P PPLA3 AT 07 707 70727 0 867 Europe/Vienna 2011-07-31
-3217418 Thurn Thurn 46.85056 12.76861 P PPLA3 AT 07 707 70731 0 985 Europe/Vienna 2011-07-31
-3217911 Untertilliach Untertilliach Untertilliach 46.70417 12.70861 P PPLA3 AT 07 707 70733 0 1164 Europe/Vienna 2011-07-31
-3218464 Finkenstein am Faaker See Finkenstein am Faaker See Finkenshtajn-am-Faker-Zee,Финкенштайн-ам-Факер-Зее 46.56556 13.86528 P PPLA3 AT 02 207 20711 8406 556 Europe/Vienna 2011-07-31
-3219446 Mölbling Molbling Molbling,Molbung,Mölbling,Mölbung 46.86222 14.44806 P PPLA3 AT AT 02 205 20520 0 591 Europe/Vienna 2011-07-31
-3233832 Attnang-Puchheim Attnang-Puchheim Atnang-Pukhkhajm,Attnang-Puchheim,Атнанг-Пуххайм 48.00833 13.71667 P PPLA3 AT 04 417 41703 8908 417 Europe/Vienna 2011-07-31
-3319486 Obernberg am Brenner Obernberg am Brenner 47.01667 11.41667 P PPLA3 AT 07 703 70336 0 1424 Europe/Vienna 2011-07-31
-3319503 Mühlbachl Muhlbachl 47.13333 11.45 P PPLA3 AT 07 703 70330 0 1058 Europe/Vienna 2011-07-31
-3319549 Leutasch Leutasch 47.3689 11.14404 P PPLA3 AT 07 703 70326 2104 1136 1135 Europe/Vienna 2011-07-31
-3319569 Gschnitz Gschnitz 47.05 11.36667 P PPLA3 AT 07 703 70317 0 1229 Europe/Vienna 2011-07-31
-3319571 Navis Navis 47.11667 11.53333 P PPLA3 AT 07 703 70333 0 1753 Europe/Vienna 2011-07-31
-3319572 Ellbögen Ellbogen 47.16667 11.45 P PPLA3 AT 07 703 70307 0 1132 Europe/Vienna 2011-07-31
-3319573 Sellrain Sellrain 47.21667 11.21667 P PPLA3 AT 07 703 70352 0 954 Europe/Vienna 2011-07-31
-3319575 Oberperfuss Oberperfuss Oberperfuss 47.23333 11.25 P PPLA3 AT 07 703 70337 0 861 Europe/Vienna 2011-07-31
-3319578 Obsteig Obsteig 47.3 10.93333 P PPLA3 AT 07 702 70213 0 992 Europe/Vienna 2011-07-31
-3319579 Kolsassberg Kolsassberg 47.3 11.63333 P PPLA3 AT 07 703 70323 0 555 Europe/Vienna 2011-07-31
-3319580 Gnadenwald Gnadenwald 47.31667 11.56667 P PPLA3 AT 07 703 70311 0 859 Europe/Vienna 2011-07-31
-3319581 Ehrwald Ehrwald Ehrval'd,Ehrwald,Эрвальд 47.4 10.91667 P PPLA3 AT 07 708 70807 0 973 Europe/Vienna 2011-07-31
-3322673 Lanzendorf Lanzendorf 48.11056 16.445 P PPLA3 AT 03 324 32409 0 166 Europe/Vienna 2011-07-31
-3323063 Ansfelden Ansfelden 47.965 13.04944 P PPL AT 05 15673 619 Europe/Vienna 2011-06-20
-3323819 Heinfels Heinfels Heinfels 46.75 12.45 P PPLA3 AT 07 707 70735 0 1101 Europe/Vienna 2011-07-31
-3323920 Gerlosberg Gerlosberg Gerlosberg 47.21667 11.93333 P PPLA3 AT 07 709 70913 0 911 Europe/Vienna 2011-07-31
-3323921 Gerlos Gerlos Gerlos,Герлос 47.21667 12 P PPLA3 AT 07 709 70912 783 1467 Europe/Vienna 2011-07-31
-3323923 Krimml Krimml Krimml,Krimml',Криммль 47.21667 12.18333 P PPLA3 AT 05 506 50607 876 1231 Europe/Vienna 2011-07-31
-3323924 Rohrberg Rohrberg 47.23333 11.91667 P PPLA3 AT 07 709 70924 0 1201 Europe/Vienna 2011-07-31
-3323944 Ried im Zillertal Ried im Zillertal Ried im Zillertal 47.3 11.86667 P PPLA3 AT 07 709 70923 0 588 Europe/Vienna 2011-07-31
-3323982 Alpbach Alpbach Al'pbakh,Альпбах 47.39878 11.94373 P PPLA3 AT 07 705 70501 2585 971 Europe/Vienna 2011-07-31
-3324013 Itter Itter 47.46667 12.13333 P PPLA3 AT 07 704 70407 0 613 Europe/Vienna 2011-07-31
-3324292 Brand Brand 47.10083 9.73722 P PPLA3 AT AT 08 801 80105 0 1035 Europe/Vienna 2011-07-31
-3324633 Liebenfels Liebenfels Liebenfels 46.73778 14.28667 P PPLA3 AT 02 205 20515 0 490 Europe/Vienna 2011-07-31
-3324645 Frauenstein Frauenstein 46.81417 14.29417 P PPLA3 AT 02 205 20534 0 1038 Europe/Vienna 2011-07-31
-3324790 Eppenstein Eppenstein Eppenstein 47.12833 14.7375 P PPLA3 AT 06 608 60803 0 725 Europe/Vienna 2011-07-31
-3324882 Bretstein Bretstein 47.3325 14.41972 P PPLA3 AT 06 608 60802 0 1007 Europe/Vienna 2011-07-31
-3333673 Hochleithen Hochleithen 48.46667 16.53333 P PPLA3 AT 03 316 31622 0 238 Europe/Vienna 2011-07-31
-3339261 Sankt Oswald ob Eibiswald Sankt Oswald ob Eibiswald Sankt Oswald ob Eibiswald 46.70833 15.14667 P PPLA3 AT 06 603 60328 0 754 Europe/Vienna 2011-07-31
-6355129 Wildschönau Wildschoenau 47.40619 12.03784 P PPLA3 AT 07 705 70530 0 898 Europe/Vienna 2011-07-31
-6559656 Langkampfen Langkampfen Langkampfen,Лангкампфен 47.55111 12.09325 P PPLA3 AT 07 705 70515 0 703 Europe/Vienna 2011-07-31
-6619861 Hart bei Graz Hart bei Graz 47.04311 15.51527 P PPLA3 AT 06 606 60617 0 368 Europe/Vienna 2011-07-31
-6692402 Berg im Drautal Berg im Drautal 46.74915 13.13536 P PPLA3 AT 02 206 20603 0 733 Europe/Vienna 2011-07-31
-6692403 Lockenhaus Lockenhaus Leka,Lockenhaus,Lokkenkhaus,Léka,Локкенхаус 47.40753 16.41623 P PPLA3 AT 01 108 10809 0 326 Europe/Vienna 2011-07-31
-6692405 St. Georgen am Längsee St. Georgen am Laengsee 46.78061 14.43033 P PPLA3 AT 02 205 20523 0 596 Europe/Vienna 2011-07-31
-6942812 Großkirchheim Grosskirchheim 46.97352 12.90482 P PPLA3 AT 02 206 20605 0 1256 Europe/Vienna 2011-07-31
-6949508 Damüls Damuels 47.28034 9.89164 P PPLA3 AT 08 802 80209 0 1402 Europe/Vienna 2011-07-31
-6950966 Bad Waltersdorf Bad Waltersdorf 47.1696 16.0087 P PPLA3 AT 06 607 60748 0 290 Europe/Vienna 2011-07-31
-7279898 Bad Leonfelden Bad Leonfelden 48.52047 14.29459 P PPLA3 AT 04 416 41603 4029 746 Europe/Vienna 2011-12-20
-7290052 Pfarrwerfen Pfarrwerfen 47.45729 13.20531 P PPLA3 AT 05 504 50416 0 541 Europe/Vienna 2011-07-31
-7304078 Thal Thal Tal'-Grac,Таль-Грац 47.07644 15.36052 P PPLA3 AT 06 606 60648 2231 451 Europe/Vienna 2011-07-31
-7580215 Bürserberg Buerserberg 47.14644 9.77736 P PPLA3 AT 08 801 80107 0 872 Europe/Vienna 2011-07-31
-7581189 Holzgau Holzgau 47.26045 10.34419 P PPLA3 AT 07 708 70817 0 1104 Europe/Vienna 2011-07-31
-7667386 Schröcken Schroecken 47.2574 10.09272 P PPLA3 AT 08 802 80234 243 1269 1269 Europe/Vienna 2011-07-31
-7871049 Rossleithen Rossleithen Rossleithen,Roßleithen 47.7017 14.2736 P PPL AT 04 409 40915 1873 588 673 Europe/Vienna 2011-06-26
-7871067 Sankt Georgen am Walde Sankt Georgen am Walde 48.35979 14.90235 P PPL AT 04 411 41119 2100 787 802 Europe/Vienna 2011-06-28
-7909799 Nebelberg Nebelberg 48.62854 13.84629 P PPLA3 AT 04 413 41320 621 695 694 Europe/Vienna 2011-07-17
-8015353 Baden Baden 48.00221 16.23097 P PPL AT 03 25212 230 Europe/Vienna 2011-09-07
-8126035 Sonnberg im Mühlkreis Sonnberg im Muehlkreis 48.4608 14.31167 P PPLA3 AT 04 416 41623 0 824 Europe/Vienna 2011-12-20
-2057277 York York Jork,York,Йорк -31.88467 116.76874 P PPL AU 08 59730 2090 215 Australia/Perth 2012-02-28
-2057575 Yanchep Yanchep Yanchep,Yancher -31.54678 115.63171 P PPL AU 08 58760 2481 5 Australia/Perth 2012-02-28
-2057614 Yallingup Yallingup Yallingup,Yallingup Caves -33.65 115.03333 P PPL AU AU 08 51260 1059 72 Australia/Perth 2012-01-18
-2057751 Wundowie Wundowie Wundowie -31.76163 116.3799 P PPL AU 08 56730 1369 312 Australia/Perth 2012-02-28
-2057800 Wooroloo Wooroloo Wooroloo -31.8038 116.31311 P PPL AU 08 56090 1003 304 Australia/Perth 2012-02-28
-2057897 Woodville Woodville Woodville -34.88333 138.55 P PPL AU 05 41060 2915 14 Australia/Adelaide 2012-02-02
-2057904 Woodside Woodside Woodside -34.95433 138.87901 P PPL AU 05 40120 1969 309 Australia/Adelaide 2012-02-28
-2058005 Wongan Hills Wongan Hills Wongan Hills -30.89294 116.71925 P PPL AU 08 59310 1062 291 Australia/Perth 2012-02-28
-2058304 Williamstown Williamstown Uill'jamstaun,Williamstown,Уилльямстаун -34.6721 138.89108 P PPL AU 05 40310 2654 270 Australia/Adelaide 2012-02-28
-2058325 Willaston Willaston Willaston -34.58333 138.75 P PPL AU 05 43650 3209 82 Australia/Adelaide 2012-02-02
-2058430 Whyalla Whyalla Whyalla -33.03268 137.56484 P PPL AU 05 48540 19645 2 Australia/Adelaide 2012-02-28
-2058682 Wembley Wembley Wembley -31.93333 115.8 P PPL AU 08 51310 9614 20 Australia/Perth 2012-01-18
-2058708 Wellard Wellard Wellard -32.26667 115.83333 P PPL AU 08 54830 1658 21 Australia/Perth 2012-01-18
-2058823 Wayville Wayville Wayville -34.95 138.58333 P PPL AU 05 47980 1734 37 Australia/Adelaide 2012-01-18
-2059047 Waroona Waroona Waroona -32.84323 115.92201 P PPL AU 08 58820 2476 162 Australia/Perth 2012-02-28
-2059124 Wanneroo Wanneroo Wanneroo,Wanneru -31.75 115.8 P PPL AU AU 08 58760 10931 43 Australia/Perth 2011-06-04
-2059263 Wallaroo Wallaroo Wallaroo -33.93881 137.63365 P PPL AU 05 41560 2779 7 Australia/Adelaide 2012-02-28
-2059362 Waikerie Waikerie Waikerie -34.18178 139.98552 P PPL AU 05 43790 2464 17 Australia/Adelaide 2012-02-28
-2059371 Wagin Wagin Wagin -33.30894 117.34328 P PPL AU 08 58610 1598 302 Australia/Perth 2012-02-28
-2059372 Waggrakine Waggrakine -28.71667 114.61667 P PPL AU 08 2465 18 Australia/Perth 1993-12-30
-2059436 Virginia Virginia Virginia -34.6663 138.56027 P PPL AU 05 45680 1433 15 Australia/Adelaide 2012-02-28
-2059470 Victor Harbor Victor Harbor Victor Harbor,Victor Harbour -35.55042 138.62154 P PPL AU 05 7760 -9999 Australia/Adelaide 2012-02-28
-2059507 Vasse Vasse -33.66667 115.25 P PPL AU 08 51260 1315 6 Australia/Perth 2011-06-04
-2059582 Upper Sturt Upper Sturt Upper Sturt -35.01667 138.68333 P PPL AU 05 40120 1197 434 Australia/Adelaide 2012-02-02
-2059589 Unley Unley Unley -34.95 138.6 P PPL AU 05 47980 3585 44 Australia/Adelaide 2012-01-18
-2059689 Two Wells Two Wells Tu Vells,Two Wells,Ту Веллс -34.59327 138.51367 P PPL AU 05 43920 2347 13 Australia/Adelaide 2012-02-28
-2059837 Tumby Bay Tumby Bay Tumbi Behj,Tumby,Tumby Bay,Тумби Бэй -34.37506 136.10333 P PPL AU 05 47910 1791 -9999 Australia/Adelaide 2012-02-28
-2059895 Trigg Trigg -31.86939 115.7571 P PPL AU 08 57910 2662 20 Australia/Perth 2011-06-04
-2060087 Toodyay Toodyay Toodyay -31.54977 116.46743 P PPL AU 08 58330 1144 135 Australia/Perth 2012-02-28
-2060384 Thebarton Thebarton Thebarton -34.91667 138.56667 P PPL AU 05 48410 1327 22 Australia/Adelaide 2011-06-04
-2060436 Tennant Creek Tennant Creek Tennant Creek,Tennant-Krik,Теннант-Крик -19.64655 134.19093 P PPL AU 03 70420 3889 332 Australia/Darwin 2012-02-28
-2060604 Tanunda Tanunda Tanunda -34.52336 138.95982 P PPL AU 05 40310 4684 268 Australia/Adelaide 2012-02-28
-2060771 Swan View Swan View -31.88333 116.05 P PPL AU 08 56090 7896 51 Australia/Perth 2011-06-04
-2060785 Swanbourne Swanbourne Swanbourne -31.96667 115.78333 P PPL AU 08 56580 3512 19 Australia/Perth 2012-01-18
-2060886 Subiaco Subiaco Subiaco -31.95 115.8 P PPL AU 08 56580 7627 36 Australia/Perth 2012-01-18
-2060898 Sturt Sturt Sturt -35.01667 138.55 P PPL AU 05 44060 2022 30 Australia/Adelaide 2012-01-18
-2060937 Streaky Bay Streaky Bay Flinders,Streaky Bay,Striki Behj,Стрики Бэй -32.79924 134.21159 P PPL AU 05 47490 1060 1 Australia/Adelaide 2012-02-28
-2060951 Strathalbyn Strathalbyn Strathalbyn -35.25979 138.89247 P PPL AU 05 40220 4731 74 Australia/Adelaide 2012-02-28
-2060994 Stoneville Stoneville -30.86667 121.76667 P PPL AU 08 54280 2841 345 Australia/Perth 2011-06-04
-2061039 Stirling Stirling Stirling,Stirling East,Stirling West -35.01518 138.73637 P PPL AU 05 40120 2867 307 Australia/Adelaide 2012-02-28
-2061224 Spearwood Spearwood Spearwood -32.1 115.78333 P PPL AU 08 51820 8941 39 Australia/Perth 2012-01-18
-2061261 South Perth South Perth Perth South,South Perth -31.98333 115.86667 P PPL AU 08 57840 11301 19 Australia/Perth 2011-06-04
-2061341 Solomontown Solomontown -33.2 138.03333 P PPL AU 05 46450 1239 6 Australia/Adelaide 2011-06-04
-2061418 Smithfield Smithfield Smithfield -34.68333 138.68333 P PPL AU 05 45680 2194 46 Australia/Adelaide 2012-01-18
-2061735 Serpentine Serpentine Serpentine -32.36051 115.97723 P PPL AU 08 57700 1855 130 Australia/Perth 2012-02-28
-2061758 Seaton Seaton Seaton -34.9 138.51667 P PPL AU 05 41060 9704 7 Australia/Adelaide 2012-02-02
-2061769 Seaford Seaford Seaford -35.18333 138.46667 P PPL AU 05 4654 26 Australia/Adelaide 2012-02-02
-2061840 Scarborough Scarborough Scarborough,Scarborough Beach -31.89578 115.76431 P PPL AU AU 08 57910 12593 9 Australia/Perth 2011-06-04
-2062013 Salisbury Salisbury Salisbury -34.76667 138.63333 P PPL AU 05 47140 6648 31 Australia/Adelaide 2012-02-02
-2062057 Safety Bay Safety Bay Safety Bay -32.3 115.7 P PPL AU 08 7303 1 Australia/Perth 2012-01-18
-2062151 Roxby Downs Roxby Downs -30.56305 136.89546 P PPL AU 05 46970 4055 107 Australia/Adelaide 2011-06-04
-2062216 Roseworthy Roseworthy Roseworthy -34.53397 138.75023 P PPL AU 05 43650 1163 108 Australia/Adelaide 2012-02-28
-2062276 Roebourne Roebourne Roebourne -20.77229 117.14648 P PPL AU 08 57560 19260 12 Australia/Perth 2012-02-28
-2062338 Rockingham Rockingham Rockingham -32.27682 115.72978 P PPL AU 08 57490 12970 1 Australia/Perth 2012-02-28
-2062428 Maida Vale Maida Vale -31.95187 116.02764 P PPL AU 08 54200 4298 67 Australia/Perth 2011-06-04
-2062459 Reynella Reynella -35.09372 138.53082 P PPL AU 05 45340 2109 120 Australia/Adelaide 2011-06-04
-2062660 Ravensthorpe Ravensthorpe Ravensthorpe -33.58303 120.04688 P PPL AU 08 57420 1101 254 Australia/Perth 2012-02-28
-2062745 Quorn Quorn Quorn -32.34676 138.04176 P PPL AU 05 41830 1258 304 Australia/Adelaide 2012-02-28
-2062766 Quindalup Quindalup Quindalup -33.62906 115.1223 P PPL AU 08 51260 1013 1 Australia/Perth 2012-02-28
-2062944 Prospect Prospect -34.88241 138.5933 P PPL AU 05 46510 12382 43 Australia/Adelaide 2011-06-04
-2063023 Port Willunga Port Willunga -35.26667 138.45 P PPL AU 05 1629 14 Australia/Adelaide 1993-12-30
-2063026 Port Victoria Port Victoria Port Victoria,Port Viktorija,Wauraltee,Порт Виктория -34.49722 137.48534 P PPL AU 05 48830 1100 6 Australia/Adelaide 2012-02-28
-2063030 Port Pirie Port Pirie Port Pirie -33.19176 138.01746 P PPL AU 05 46450 12328 7 Australia/Adelaide 2012-02-28
-2063031 Port Noarlunga Port Noarlunga Port Noarlunga -35.15 138.46667 P PPL AU 05 2464 16 Australia/Adelaide 2012-01-18
-2063036 Port Lincoln Port Lincoln Port Lincoln,Port Linkol'n,Порт Линкольн -34.72625 135.87442 P PPL AU 05 46300 11247 1 Australia/Adelaide 2012-02-28
-2063039 Port Keats Port Keats Port Keats,Wadeye -14.24029 129.52092 P PPL AU 03 74500 1351 38 Australia/Darwin 2012-02-28
-2063042 Port Hedland Port Hedland Port Hedland -20.31215 118.61059 P PPL AU 08 57280 14288 1 Australia/Perth 2012-02-28
-2063051 Port Elliot Port Elliot Port Elliot -35.52998 138.67806 P PPL AU 05 40220 1943 2 Australia/Adelaide 2012-02-28
-2063055 Port Augusta West Port Augusta West -32.48333 137.75 P PPL AU 05 46090 12133 20 Australia/Adelaide 2011-06-04
-2063056 Port Augusta Port Augusta Kurdnatta,Port Augusta,Port Avgusta,Порт Августа -32.49597 137.77281 P PPL AU 05 46090 13897 7 Australia/Adelaide 2012-02-28
-2063059 Port Adelaide Port Adelaide Port Adelaide -34.85 138.46667 P PPL AU 05 1097 1 Australia/Adelaide 2012-01-18
-2063191 Plympton Plympton Plympton -34.95 138.55 P PPL AU 05 48410 2955 16 Australia/Adelaide 2012-01-18
-2063293 Pinjarra Pinjarra Pinjarra -32.6298 115.87351 P PPL AU 08 56230 3288 45 Australia/Perth 2012-02-28
-2063518 Peterborough Peterborough Peterborough,Petersburgh -32.97205 138.84073 P PPL AU 05 45540 1689 664 Australia/Adelaide 2012-02-28
-2063523 Perth Perth Peairt,Pert,Pertas,Perth,Perth City,Perthia,Purt,byrth,pasu,pert,po si,prt,prt',Перт,Пърт,פרת',بيرث,پرت,பேர்த்,パース,珀斯 -31.95224 115.8614 P PPLA AU 08 51310 1446704 46 Australia/Perth 2012-02-28
-2063604 Pemberton Pemberton Pemberton -34.44311 116.03689 P PPL AU 08 55180 1031 73 Australia/Perth 2012-02-28
-2063705 Pearce Pearce -31.66667 116.01667 P PPL AU 08 58050 2511 38 Australia/Perth 2011-06-04
-2063817 Parkerville Parkerville Parkerville -31.87472 116.138 P PPL AU 08 56090 2071 278 Australia/Perth 2012-02-28
-2063845 Parap Parap Parap,Paraparap -12.43333 130.83333 P PPL AU AU 03 1804 9 Australia/Darwin 2012-01-18
-2064173 One Tree Hill One Tree Hill One Tree Hill -34.7 138.76667 P PPL AU 05 45680 1266 260 Australia/Adelaide 2012-02-02
-2064308 Oakbank Oakbank Oakbank -34.9834 138.84528 P PPL AU 05 40120 1207 305 Australia/Adelaide 2012-02-28
-2064340 Nuriootpa Nuriootpa Nuriootpa -34.46825 138.99766 P PPL AU 05 40310 5031 291 Australia/Adelaide 2012-02-28
-2064510 North Fremantle North Fremantle -32.03333 115.75 P PPL AU 08 53430 2586 11 Australia/Perth 2011-06-04
-2064546 North Beach North Beach -31.86298 115.75624 P PPL AU 08 57910 2950 14 Australia/Perth 2011-06-04
-2064549 Northampton Northampton Northampton -28.35164 114.62998 P PPL AU 08 56790 1043 124 Australia/Perth 2012-02-28
-2064550 Northam Northam Northam -31.64932 116.67423 P PPL AU 08 56730 5855 182 Australia/Perth 2012-02-28
-2064565 Normanville Normanville -35.44781 138.31495 P PPL AU 05 48750 1107 13 Australia/Adelaide 2011-06-04
-2064655 Noarlunga Noarlunga -35.18333 138.5 P PPL AU 05 45340 2975 9 Australia/Adelaide 2011-06-04
-2064735 Nhulunbuy Nhulunbuy Gove,Nhulunbuy,Nhulunby,Nullumbuy -12.18652 136.78201 P PPL AU 03 71300 3202 1 Australia/Darwin 2012-02-28
-2064768 Newman Newman Mount Newman,N'jumen,Newman,Ньюмен -23.35775 119.72959 P PPL AU 08 53220 5138 572 Australia/Perth 2012-02-28
-2064874 Nedlands Nedlands Crawley-Nedlands,Nedlands -31.98333 115.8 P PPL AU AU 08 56580 10020 25 Australia/Perth 2012-03-01
-2064915 Narrogin Narrogin Narrogin -32.93282 117.17763 P PPL AU 08 56440 4238 310 Australia/Perth 2012-02-28
-2065078 Nairne Nairne Nairne -35.0345 138.91154 P PPL AU 05 44550 3648 259 Australia/Adelaide 2012-02-28
-2065176 Murray Bridge Murray Bridge Murray Bridge,Murrej Bridzh,Муррей Бридж -35.11986 139.27345 P PPL AU 05 45040 18194 10 Australia/Adelaide 2012-02-28
-2065329 Mundijong Mundijong Mundijong -32.29217 115.98564 P PPL AU 08 57700 1494 205 Australia/Perth 2012-02-28
-2065337 Mundaring Mundaring Mundaring -31.9021 116.16757 P PPL AU 08 56090 3058 298 Australia/Perth 2012-02-28
-2065594 Mount Isa Mount Isa Mont Isa,Mount Isa,Mt Isa,Mt. Isa -20.72523 139.49727 P PPL AU 04 35300 22549 431 Australia/Brisbane 2012-02-28
-2065602 Mount Helena Mount Helena Maunt Khelena,Mount Helena,Маунт Хелена -31.87606 116.21025 P PPL AU 08 56090 2419 304 Australia/Perth 2012-02-28
-2065642 Mount Compass Mount Compass Mount Compass -35.34685 138.62032 P PPL AU 05 40220 1050 235 Australia/Adelaide 2012-02-28
-2065665 Mount Barker Mount Barker Maunt Barker,Mount Barker,Mt Barker,Маунт Баркер -35.06667 138.86667 P PPL AU 05 44550 8357 322 Australia/Adelaide 2012-01-18
-2065666 Mount Barker Mount Barker Mount Barker -34.63084 117.66606 P PPL AU 08 57210 1762 264 Australia/Perth 2012-02-28
-2065710 Mosman Park Mosman Park -32 115.75 P PPL AU 08 8251 1 Australia/Perth 1993-12-30
-2065740 Morphett Vale Morphett Vale Morphett Vale -35.13333 138.51667 P PPL AU 05 45340 23049 92 Australia/Adelaide 2012-02-02
-2065836 Moora Moora Moora,Mura,Мура -30.64003 116.00365 P PPL AU 08 55600 1770 143 Australia/Perth 2012-02-28
-2066041 Modbury Modbury Modbury -34.83333 138.68333 P PPL AU 05 47700 5570 109 Australia/Adelaide 2012-01-18
-2066052 Moana Moana Moana -35.2 138.48333 P PPL AU 05 45340 2524 29 Australia/Adelaide 2012-02-02
-2066066 Mitcham Mitcham Mitcham -34.98333 138.6 P PPL AU 05 44340 1608 63 Australia/Adelaide 2012-01-18
-2066338 Midland Midland Midland Junction -31.9 116 P PPL AU 08 58050 3936 8 Australia/Perth 2011-06-04
-2066358 Middle Swan Middle Swan Middle Swan -31.85 116.01667 P PPL AU 08 58050 2617 16 Australia/Perth 2012-01-18
-2066472 Merredin Merredin Merredin -31.48094 118.27448 P PPL AU 08 55460 2668 370 Australia/Perth 2012-02-28
-2066511 Meningie Meningie Meningie -35.68841 139.33856 P PPL AU 05 47800 1501 37 Australia/Adelaide 2012-02-28
-2066524 Melville Melville -28.18333 116.73333 P PPL AU 08 59590 4822 379 Australia/Perth 2011-06-04
-2066608 Medina Medina Medina -32.23333 115.78333 P PPL AU 08 54830 2020 7 Australia/Perth 2012-01-18
-2066626 Meadows Meadows Meadows,Midous,Мидоус -35.18021 138.7625 P PPL AU 05 44550 1583 443 Australia/Adelaide 2012-02-28
-2066653 McMinns Lagoon McMinns Lagoon McMinns Lagoon -12.55397 131.11165 P PPL AU 03 72300 5025 36 Australia/Darwin 2012-02-28
-2066679 McLaren Vale McLaren Vale McLaren Vale -35.21895 138.54326 P PPL AU 05 45340 3853 83 Australia/Adelaide 2012-02-28
-2066756 Maylands Maylands Maylands -31.93333 115.88333 P PPL AU 08 57910 10447 30 Australia/Perth 2012-01-18
-2066954 Marion Marion Marion -35.01667 138.56667 P PPL AU 05 44060 3626 50 Australia/Adelaide 2012-01-18
-2066957 Marino Marino Marino -35.03333 138.51667 P PPL AU 05 1987 66 Australia/Adelaide 2012-01-18
-2066981 Margaret River Margaret River Margaret River -33.9536 115.07391 P PPL AU 08 50280 5584 3 Australia/Perth 2012-02-28
-2067070 Mannum Mannum Mannum,Маннум -34.91529 139.30325 P PPL AU 05 44210 2407 30 Australia/Adelaide 2012-02-28
-2067074 Manning Manning -32.01594 115.86714 P PPL AU 08 57840 3953 11 Australia/Perth 2011-06-04
-2067086 Manjimup Manjimup Manjimup -34.24122 116.14564 P PPL AU 08 55180 4240 193 Australia/Perth 2012-02-28
-2067119 Mandurah Mandurah Mandujura,Mandurah,Мандъюра -32.5269 115.7217 P PPL AU 08 55110 73356 1 Australia/Perth 2012-02-28
-2067167 Mallala Mallala Mallala,Маллала -34.4374 138.50987 P PPL AU 05 43920 1033 56 Australia/Adelaide 2012-02-28
-2067214 Maitland Maitland Maitland,Mejtlend,Мейтленд -34.37386 137.67332 P PPL AU 05 48830 1057 159 Australia/Adelaide 2012-02-28
-2067260 Maddington Maddington Maddington -32.05 115.98333 P PPL AU 08 53780 9137 12 Australia/Perth 2012-01-18
-2067307 Macclesfield Macclesfield Macclesfield -35.17182 138.83589 P PPL AU 05 44550 1469 296 Australia/Adelaide 2012-02-28
-2067333 Lyndoch Lyndoch Lyndoch -34.60124 138.89094 P PPL AU 05 40310 1827 211 Australia/Adelaide 2012-02-28
-2067412 Lower Chittering Lower Chittering Lower Chittering,Lower Chittertering -31.58333 116.11667 P PPL AU AU 08 51680 1396 231 Australia/Perth 2012-01-18
-2067565 Lobethal Lobethal Lobethal -34.90455 138.87477 P PPL AU 05 40120 2219 327 Australia/Adelaide 2012-02-28
-2067621 Littlehampton Littlehampton Littlehampton -35.05 138.85 P PPL AU 05 44550 2062 362 Australia/Adelaide 2012-01-18
-2067760 Lewiston Lewiston Lewiston -34.6 138.6 P PPL AU 05 43920 2724 25 Australia/Adelaide 2012-01-18
-2067929 Largs Bay Largs Bay -34.8 138.46667 P PPL AU 05 3990 -9999 Australia/Adelaide 2009-10-10
-2067951 Langhorne Creek Langhorne Creek Langhorne Creek -35.3 139.03333 P PPL AU 05 40220 1197 24 Australia/Adelaide 2012-01-18
-2068079 Kwinana Kwinana Kwinana -32.23013 115.78128 P PPL AU 08 54830 20086 18 Australia/Perth 2012-02-28
-2068110 Kununurra Kununurra Kununurra -15.77813 128.74414 P PPL AU 08 59520 5679 58 Australia/Perth 2012-02-28
-2068340 Kojonup Kojonup Kojonup -33.8305 117.15946 P PPL AU 08 54550 1257 304 Australia/Perth 2012-02-28
-2068429 Kingscote Kingscote Kingscote,Kingskot,Кингскот -35.6559 137.6393 P PPL AU 05 1692 -9999 Australia/Adelaide 2012-02-28
-2068569 Kenwick Kenwick Kenwick -32.03333 115.96667 P PPL AU 08 53780 5150 11 Australia/Perth 2012-01-18
-2068589 Kendenup Kendenup -34.48333 117.65 P PPL AU 08 57210 1292 256 Australia/Perth 2011-06-04
-2068594 Kelmscott Kelmscott -32.11667 116.01667 P PPL AU 08 50210 9419 29 Australia/Perth 2011-06-04
-2068655 Katherine Katherine Katherine -14.46517 132.26347 P PPL AU 03 72200 10141 209 Australia/Darwin 2012-02-28
-2068661 Katanning Katanning Katanning -33.68787 117.5584 P PPL AU 08 54340 3934 304 Australia/Perth 2012-02-28
-2068734 Kapunda Kapunda Kapunda,Капунда -34.33871 138.91644 P PPL AU 05 43650 2740 229 Australia/Adelaide 2012-02-28
-2068823 Boulder Boulder Boulder,Kalgoorlie-Boulder,Kalgurli,Калгурли -30.74614 121.4742 P PPL AU 08 54280 36852 468 Australia/Perth 2012-02-28
-2068835 Kalbarri Kalbarri Kalbarri -27.7105 114.16505 P PPL AU 08 1537 40 Australia/Perth 2012-02-28
-2068856 Kadina Kadina Kadina,Кадина -33.96495 137.71634 P PPL AU 05 41560 2213 47 Australia/Adelaide 2012-02-28
-2069194 Jamestown Jamestown Jamestown -33.20531 138.60503 P PPL AU 05 45120 1406 526 Australia/Adelaide 2012-02-28
-2069375 Ingle Farm Ingle Farm Ingle Farm -34.83333 138.63333 P PPL AU 05 47140 8474 62 Australia/Adelaide 2012-02-02
-2069646 Hope Valley Hope Valley Hope Valley -34.83333 138.7 P PPL AU 05 47700 8223 132 Australia/Adelaide 2012-01-18
-2069920 Heathfield Heathfield Heathfield -35.01667 138.71667 P PPL AU 05 40120 1001 473 Australia/Adelaide 2012-01-18
-2070009 Harvey Harvey Harvey -33.07988 115.89447 P PPL AU 08 53990 3416 251 Australia/Perth 2012-02-28
-2070106 Happy Valley Happy Valley Happy Valley -35.08333 138.53333 P PPL AU 05 44060 11531 120 Australia/Adelaide 2012-01-18
-2070176 Halls Creek Halls Creek Halls Creek -18.22485 127.66647 P PPL AU 08 53920 1209 434 Australia/Perth 2012-02-28
-2070212 Hahndorf Hahndorf Hahndorf,Khandorf,Хандорф -35.02967 138.81078 P PPL AU 05 44550 2668 304 Australia/Adelaide 2012-02-28
-2070216 Hackham Hackham Hackham -35.15 138.51667 P PPL AU 05 45340 3765 75 Australia/Adelaide 2012-01-18
-2070292 Gumeracha Gumeracha Gumeracha -34.82388 138.88467 P PPL AU 05 40120 1085 299 Australia/Adelaide 2012-02-28
-2070332 Guildford Guildford Guildford -31.9 115.96667 P PPL AU 08 58050 1942 13 Australia/Perth 2012-01-18
-2070423 Greenmount Greenmount Greenmount,Grinmaunt,Гринмаунт -31.9 116.05 P PPL AU 08 56090 2467 76 Australia/Perth 2012-01-18
-2070478 Grasmere Grasmere Grasmere,Grassmere -35.01806 117.75556 P PPL AU AU 08 50080 1526 6 Australia/Perth 2012-01-18
-2070515 Grange Grange Grange -34.9 138.48333 P PPL AU 05 5238 -9999 Australia/Adelaide 2012-02-02
-2070571 Gosnells Gosnells Gosnells -32.08333 116 P PPL AU 08 53780 17277 22 Australia/Perth 2012-01-18
-2070633 Gooseberry Hill Gooseberry Hill Gooseberry Hill -31.95 116.05 P PPL AU 08 54200 3209 220 Australia/Perth 2012-01-18
-2070667 Goolwa Goolwa -35.50261 138.78462 P PPL AU 05 40220 1064 10 Australia/Adelaide 2011-06-04
-2070711 Golden Grove Golden Grove Golden Grove -34.78333 138.73333 P PPL AU 05 47700 8976 229 Australia/Adelaide 2012-01-18
-2070830 Glenelg Glenelg Glenel'g,Glenelg,Гленельг -34.98333 138.51667 P PPL AU 05 42600 3125 9 Australia/Adelaide 2012-01-18
-2070884 Gilles Plains Gilles Plains Gilles Plains -34.85 138.65 P PPL AU 05 45890 2823 95 Australia/Adelaide 2012-01-18
-2070998 Geraldton Geraldton Dzheraldton,Geraldton,Джералдтон -28.77897 114.61459 P PPL AU 08 27258 4 Australia/Perth 2012-02-28
-2071059 Gawler Gawler Gawler -34.60251 138.74902 P PPL AU 05 42030 16362 86 Australia/Adelaide 2012-02-28
-2071223 Fremantle Fremantle Fremantle,furimantoru,フリーマントル -32.05 115.76667 P PPL AU 08 53430 7459 26 Australia/Perth 2012-01-18
-2071233 Freeling Freeling Freeling,Friling,Фрилинг -34.45407 138.80868 P PPL AU 05 43650 1635 159 Australia/Adelaide 2012-02-28
-2071601 Findon Findon Findon -34.9 138.53333 P PPL AU 05 41060 5451 12 Australia/Adelaide 2012-01-18
-2071860 Esperance Esperance Ehsperans,Esperance,Эсперанс -33.86013 121.88259 P PPL AU 08 7888 1 Australia/Perth 2012-02-28
-2071961 Encounter Bay Encounter Bay -35.58333 138.6 P PPL AU 05 3665 -9999 Australia/Adelaide 1993-12-30
-2072096 Elizabeth Elizabeth Elizabeth -34.73333 138.65 P PPL AU 05 47140 3668 35 Australia/Adelaide 2012-01-18
-2072677 Donnybrook Donnybrook Donnybrook -33.5713 115.82446 P PPL AU 08 52870 2371 49 Australia/Perth 2012-02-28
-2072691 Dongara Dongara Dongara,Dongarra -29.25818 114.93276 P PPL AU 08 54060 1554 5 Australia/Perth 2012-02-28
-2072728 Chidlow Chidlow -31.86094 116.27243 P PPL AU 08 56090 1687 299 Australia/Perth 2011-06-04
-2072924 Derby Derby -17.3 123.96667 P PPL AU 08 52800 3199 18 Australia/Perth 2011-06-04
-2072945 Denmark Denmark Denmark,Денмарк -34.96067 117.35321 P PPL AU 08 52730 2117 25 Australia/Perth 2011-06-04
-2072950 Port Denison Port Denison Denison,Port Denison -29.28333 114.91667 P PPL AU AU 08 1213 2 Australia/Perth 2012-01-18
-2073124 Darwin Darwin Darvin,Darvino,Darwin,Palmerston,Port Darwin,da er wen gang,dau~in,drwwyn,tarvin,Дарвин,דרווין,டார்வின்,ダーウィン,达尔文港 -12.46113 130.84185 P PPLA AU 03 71000 93080 31 Australia/Darwin 2011-06-04
-2073139 Darlington Darlington Darlington -35.03333 138.56667 P PPL AU 05 45340 1080 93 Australia/Adelaide 2012-01-18
-2073140 Darlington Darlington Darlington -31.91667 116.08333 P PPL AU 08 56090 3446 190 Australia/Perth 2012-01-18
-2073200 Dampier Dampier Dampier,Dampir,Дампир -20.66275 116.71256 P PPL AU 08 1369 2 Australia/Perth 2012-02-28
-2073354 Cunderdin Cunderdin Cunderdin -31.65398 117.23374 P PPL AU 08 52450 1130 308 Australia/Perth 2012-02-28
-2073361 Cummins Cummins Cummins -34.26008 135.72731 P PPL AU 05 43710 1138 74 Australia/Adelaide 2012-02-28
-2073422 Crystal Brook Crystal Brook Crystal Brook,Kristal Bruk,Кристал Брук -33.35256 138.20955 P PPL AU 05 46450 1550 133 Australia/Adelaide 2012-02-28
-2073523 Craigburn Farm Craigburn Farm -35.05 138.61667 P PPL AU 05 45340 1661 184 Australia/Adelaide 2011-06-04
-2073528 Crafers Crafers -35 138.7 P PPL AU 05 40120 14717 559 Australia/Adelaide 2011-06-04
-2073603 Cottesloe Cottesloe -32 115.76667 P PPL AU 08 56930 7065 24 Australia/Perth 2011-06-04
-2073643 Coromandel Valley Coromandel Valley Coromandel Valley -35.05 138.61667 P PPL AU 05 45340 3779 184 Australia/Adelaide 2012-01-18
-2073969 Coogee Coogee Coogee -32.11667 115.76667 P PPL AU 08 51820 4312 7 Australia/Perth 2012-01-18
-2073985 Coober Pedy Coober Pedy Kuber-Pedi,Кубер-Педи -29.01415 134.75495 P PPL AU 05 41330 1942 227 Australia/Adelaide 2011-06-04
-2074113 Collie Collie Collie -33.36206 116.15617 P PPL AU 08 51890 6336 229 Australia/Perth 2012-02-28
-2074280 Cleve Cleve Cleve -33.7 136.5 P PPL AU 05 41190 1015 196 Australia/Adelaide 2012-01-18
-2074329 Clare Clare Clare -33.83325 138.61064 P PPL AU 05 41140 3061 312 Australia/Adelaide 2012-02-28
-2074526 Cheltenham Cheltenham Cheltenham -34.86667 138.51667 P PPL AU 05 45890 2176 9 Australia/Adelaide 2012-01-18
-2074685 Ceduna Ceduna Ceduna -32.12156 133.67866 P PPL AU 05 1586 5 Australia/Adelaide 2012-02-28
-2074700 Caversham Caversham Caversham -31.88333 115.96667 P PPL AU 08 58050 2508 4 Australia/Perth 2012-01-18
-2074865 Carnarvon Carnarvon Carnarvon -24.88073 113.6594 P PPL AU 08 7392 7 Australia/Perth 2012-02-28
-2075008 Capel Capel Capel -33.55808 115.56278 P PPL AU 08 51400 2150 2 Australia/Perth 2012-02-28
-2075024 Cannington Cannington -32.01667 115.95 P PPL AU 08 51330 4092 9 Australia/Perth 2011-06-04
-2075056 Campbelltown Campbelltown Cambelltown,Campbelltown -34.88333 138.66667 P PPL AU AU 05 40910 7005 75 Australia/Adelaide 2012-01-18
-2075133 Callington Callington Callington -35.11977 139.0414 P PPL AU 05 44550 1246 66 Australia/Adelaide 2012-02-28
-2075230 Byford Byford Bajford,Byford,Байфорд -32.22099 116.009 P PPL AU 08 57700 3335 203 Australia/Perth 2012-02-28
-2075265 Busselton Busselton Busselton -33.65249 115.3455 P PPL AU 08 51260 10214 1 Australia/Perth 2012-02-28
-2075432 Bunbury Bunbury Banberi,Bunbury,Банбери -33.32711 115.64137 P PPL AU 08 51190 26369 1 Australia/Perth 2012-02-28
-2075462 Bullsbrook Bullsbrook Bullsbrook -31.66667 116 P PPL AU 08 58050 3954 33 Australia/Perth 2012-01-18
-2075720 Broome Broome Broome,Brum,Брум -17.95538 122.23922 P PPL AU 08 50980 13218 1 Australia/Perth 2012-02-28
-2075795 Brighton Brighton Brighton -35.01667 138.51667 P PPL AU 05 42600 3336 12 Australia/Adelaide 2012-02-02
-2075806 Bridgewater Bridgewater Bridgewater -35 138.75 P PPL AU 05 40120 3469 414 Australia/Adelaide 2012-01-18
-2075807 Bridgetown Bridgetown Bridgetown -33.96242 116.13598 P PPL AU 08 50840 2971 156 Australia/Perth 2012-02-28
-2075895 Boyup Brook Boyup Brook Boyup Brook -33.83425 116.38776 P PPL AU 08 50770 1049 152 Australia/Perth 2012-02-28
-2075909 Boyanup Boyanup Boyanup -33.48295 115.72838 P PPL AU 08 51400 1114 31 Australia/Perth 2012-02-28
-2075988 Boulder Boulder -30.78333 121.48333 P PPL AU 08 54280 5178 354 Australia/Perth 2011-06-04
-2076378 Blackwood Blackwood Blackwood -35.01667 138.61667 P PPL AU 05 44340 3799 274 Australia/Adelaide 2012-01-18
-2076526 Birkenhead Birkenhead Birkenhead -34.83333 138.5 P PPL AU 05 45890 1679 6 Australia/Adelaide 2012-01-18
-2076528 Birdwood Birdwood Birdwood -34.81826 138.96478 P PPL AU 05 40120 1125 312 Australia/Adelaide 2012-02-28
-2076699 Beverley Beverley Beverley -32.10896 116.9228 P PPL AU 08 50560 2092 232 Australia/Perth 2012-02-28
-2076752 Bentley Bentley -32 115.91667 P PPL AU 08 51330 8323 20 Australia/Perth 2011-06-04
-2076817 Bellevue Bellevue -31.9 116.01667 P PPL AU 08 58050 1667 21 Australia/Perth 2011-06-04
-2076842 Belair Belair Belair -35 138.63333 P PPL AU 05 44340 4382 297 Australia/Adelaide 2012-01-18
-2076918 Bedford Park Bedford Park Bedford Park -35.03333 138.56667 P PPL AU 05 45340 1880 93 Australia/Adelaide 2012-02-02
-2076923 Bedfordale Bedfordale -32.18333 116.05 P PPL AU 08 50210 1829 269 Australia/Perth 2011-06-04
-2076944 Beaumont Beaumont Beaumont -34.93333 138.65 P PPL AU 05 40700 2446 100 Australia/Adelaide 2012-01-18
-2077030 Bassendean Bassendean Bassendean -31.9 115.95 P PPL AU 08 50350 8776 17 Australia/Perth 2012-01-18
-2077296 Balhannah Balhannah Balhannah -34.99094 138.82565 P PPL AU 05 40120 1627 304 Australia/Adelaide 2012-02-28
-2077347 Balaklava Balaklava Balaklava,Балаклава -34.14542 138.41148 P PPL AU 05 48130 1626 71 Australia/Adelaide 2012-02-28
-2077454 Australind Australind Australind -33.2792 115.71504 P PPL AU 08 53990 8716 1 Australia/Perth 2012-02-28
-2077476 Augusta Augusta Augusta -34.31566 115.15922 P PPL AU 08 1349 4 Australia/Perth 2012-02-28
-2077579 Armadale Armadale Armadale -32.15 116 P PPL AU 08 50210 12021 45 Australia/Perth 2012-01-18
-2077599 Ardrossan Ardrossan Androssan,Ardrossan,Port Androssan,Ардроссан -34.42217 137.91907 P PPL AU 05 48830 1122 1 Australia/Adelaide 2012-02-28
-2077641 Applecross Applecross -32.01667 115.83333 P PPL AU 02 6336 14 Australia/Perth 1993-12-30
-2077719 Angle Vale Angle Vale Angle Vale -34.64098 138.6461 P PPL AU 05 45680 2223 39 Australia/Adelaide 2012-02-28
-2077729 Angaston Angaston Angaston,Ангастон -34.50129 139.04625 P PPL AU 05 40310 2214 307 Australia/Adelaide 2012-02-28
-2077895 Alice Springs Alice Springs Alice Springs,Alice Springs Region,Alis-Springs,Springs,Stuart,ai li si quan,arisusupuringusu,Алис-Спрингс,アリススプリングス,愛麗斯泉 -23.69748 133.88362 P PPL AU 03 70200 26188 612 Australia/Darwin 2012-02-28
-2077935 Aldinga Aldinga Aldinga -35.28333 138.48333 P PPL AU 05 45340 5984 24 Australia/Adelaide 2012-01-18
-2077937 Aldgate Aldgate Aldgate -35.01667 138.73333 P PPL AU 05 40120 3343 446 Australia/Adelaide 2012-01-18
-2077963 Albany Albany Albany,Olbani,Олбани -35.0031 117.86595 P PPL AU 08 50080 23913 99 Australia/Perth 2012-02-28
-2078025 Adelaide Adelaide Adelaida,Adelaidae,Adelaide,Adelaidė,Adelajda,Adelajdo,Adelayde,Adelaïda,Adelejd,Adelhaidis,Adelàida,Adélaydé,Adélaïde,Edelaid,Gorad Adehlaida,Tarndanya,Tarndarnya,a de lai de,adelaida,aderedo,adiled,adlayd,adylyd,aedaleda,aedeulleideu,atileyit,edileda,Αδελαΐδα,Аделаидæ,Аделаида,Аделаїда,Аделейд,Аделејд,Горад Адэлаіда,Ադելաիդա,אדלייד,آدلاید,أديليد,ایڈیلیڈ,अॅडलेड,एडिलेड,அடிலெயிட்,ಅಡಿಲೇಡ್,แอดิเลด,ადელაიდა,アデレード,阿德来得,阿德莱德,애들레이드 -34.92866 138.59863 P PPLA AU 05 40070 1074159 56 Australia/Adelaide 2012-02-28
-2078304 Dunsborough Dunsborough -33.58333 115.08333 P PPL AU 08 51260 3168 73 Australia/Perth 2011-06-04
-2078313 Eaton Eaton Eaton -33.31664 115.70503 P PPL AU 08 52660 7481 1 Australia/Perth 2012-02-28
-2078451 Seacliff Seacliff Seacliff -35.03333 138.525 P PPL AU 05 42600 2016 48 Australia/Adelaide 2012-01-19
-2078505 Clapham Clapham Clapham -34.99139 138.6 P PPL AU 05 44340 1563 71 Australia/Adelaide 2012-01-19
-2078732 Two Rocks Two Rocks Two Rocks -31.49985 115.58737 P PPL AU 08 1817 4 Australia/Perth 2012-02-28
-2078766 Quinns Rocks Quinns Rocks -31.68611 115.67778 P PPL AU 08 7991 -9999 Australia/Perth 2009-10-01
-2078894 East Fremantle East Fremantle -32.03889 115.76667 P PPL AU 08 53150 6698 30 Australia/Perth 2011-06-04
-2078903 Peppermint Grove Peppermint Grove -32.00417 115.76389 P PPL AU 08 55740 1582 21 Australia/Perth 2011-06-04
-2078904 Claremont Claremont -31.9875 115.78611 P PPL AU 08 51750 7152 16 Australia/Perth 2011-06-04
-2078907 Bicton Bicton -32.02778 115.78333 P PPL AU 08 55320 6017 27 Australia/Perth 2011-06-04
-2078908 Attadale Attadale Attadale -32.02361 115.79583 P PPL AU 08 55320 5719 39 Australia/Perth 2012-01-19
-2078909 Shenton Park Shenton Park Shenton Park -31.95833 115.79722 P PPL AU 08 56580 4193 23 Australia/Perth 2012-01-19
-2078912 Dalkeith Dalkeith -31.99583 115.79583 P PPL AU 08 56580 4206 23 Australia/Perth 2011-06-04
-2079020 Jurien Bay Jurien Bay Jurien,Jurien Bay -30.30591 115.03825 P PPL AU 08 52590 1342 8 Australia/Perth 2012-02-28
-2079183 Warnbro Warnbro Warnbro -32.33611 115.74861 P PPL AU 08 57490 11421 9 Australia/Perth 2012-01-19
-2079189 Mullaloo Mullaloo -31.77896 115.73676 P PPLL AU 08 54170 5869 16 Australia/Perth 2011-06-04
-2079582 Alyangula Alyangula Alyangula -13.85413 136.4213 P PPL AU 03 1289 1 Australia/Darwin 2012-02-28
-2079686 Stuart Park Stuart Park Stuart Park -12.44306 130.845 P PPLX AU 03 71000 3493 27 Australia/Darwin 2012-01-19
-2079691 Larrakeyah Larrakeyah -12.45527 130.83172 P PPL AU 03 71000 3037 26 Australia/Darwin 2011-06-04
-2079692 Leanyer Leanyer Leanyer -12.36667 130.9 P PPL AU 03 71000 4588 19 Australia/Darwin 2012-01-19
-2079693 Ludmilla Ludmilla -12.42032 130.85506 P PPL AU 03 71000 1702 16 Australia/Darwin 2011-06-04
-2079695 Fannie Bay Fannie Bay -12.42618 130.83979 P PPL AU 03 71000 2434 16 Australia/Darwin 2011-06-04
-2079696 Nightcliff Nightcliff Nightcliff -12.38056 130.85389 P PPL AU 03 71000 3357 21 Australia/Darwin 2012-01-19
-2079707 Glen Iris Glen Iris -33.34167 115.66667 P PPLX AU 08 51190 2181 17 Australia/Perth 2011-06-04
-2079796 Lower King Lower King -34.95778 117.93833 P PPL AU 08 50080 1605 14 Australia/Perth 2011-06-04
-2142245 Young Young Young -34.3135 148.30107 P PPL AU 02 18750 7501 317 Australia/Sydney 2012-02-28
-2142316 Yeppoon Yeppoon Eppun,Yeppoon,Еппун -23.12683 150.74406 P PPL AU 04 36360 10769 -9999 Australia/Brisbane 2012-02-28
-2142409 Yatala Yatala Yatala -27.71667 153.21667 P PPL AU 04 33430 1334 6 Australia/Brisbane 2012-02-02
-2142447 Yarrawonga Yarrawonga Yarrawonga -36.01923 145.99972 P PPL AU 07 24900 5604 125 Australia/Sydney 2012-02-28
-2142492 Yarraman Yarraman Yarraman -26.84167 151.98138 P PPL AU 04 36910 1346 421 Australia/Brisbane 2012-02-28
-2142595 Yandina Yandina Yandina -26.56165 152.95595 P PPL AU 04 36710 1069 175 Australia/Brisbane 2012-02-28
-2142747 Wynyard Wynyard Wynyard -40.9897 145.72617 P PPL AU 06 65410 5706 1 Australia/Hobart 2012-02-28
-2142750 Wynnum Wynnum Wynnum -27.45 153.16667 P PPL AU 04 31000 10755 14 Australia/Brisbane 2012-01-18
-2142886 Worrolong Worrolong -37.81667 140.86667 P PPL AU 05 42250 1066 53 Australia/Adelaide 2011-06-04
-2142902 Woree Woree Woree -16.95 145.75 P PPL AU 04 32070 4374 7 Australia/Brisbane 2012-01-18
-2142930 Woorim Woorim Woorim -27.06931 153.20427 P PPL AU 04 1638 -9999 Australia/Brisbane 2012-02-28
-2142951 Woombye Woombye Wombye,Woombye -26.66054 152.96947 P PPL AU 04 36710 2093 142 Australia/Brisbane 2012-02-28
-2143003 Woolgoolga Woolgoolga Woogoolga,Woolgoolga -30.11058 153.20067 P PPL AU AU 02 11800 4356 7 Australia/Sydney 2011-10-22
-2143069 Woodridge Woodridge Woodridge -27.63333 153.1 P PPL AU 04 34590 11899 40 Australia/Brisbane 2012-01-18
-2143099 Woodford Woodford Woodford -26.95291 152.77747 P PPL AU 04 35010 2680 270 Australia/Brisbane 2012-02-28
-2143180 Wondai Wondai Wondai -26.3177 151.87242 P PPL AU 04 36630 2089 356 Australia/Brisbane 2012-02-28
-2143285 Wodonga Wodonga Wodonga -36.12179 146.88809 P PPL AU 07 27170 31518 152 Australia/Melbourne 2012-02-28
-2143440 Windaroo Windaroo Windaroo -27.73333 153.2 P PPL AU 04 34590 2446 22 Australia/Brisbane 2012-02-02
-2144033 Westcourt Westcourt -26.8 150.15 P PPL AU 04 37310 3177 290 Australia/Brisbane 2011-06-04
-2144044 Westbury Westbury Vestburi,Westbury,Вестбури -41.52588 146.84374 P PPL AU 06 64210 1914 95 Australia/Hobart 2012-02-28
-2144053 Westbrook Westbrook -27.61667 151.86667 P PPL AU 04 36910 2285 537 Australia/Brisbane 2011-06-04
-2144157 Wellington Point Wellington Point Wellington Point -27.48333 153.25 P PPL AU 04 36250 10712 2 Australia/Brisbane 2012-01-18
-2144168 Wellington Wellington Vellington,Wellington,Веллингтон -32.55588 148.94508 P PPL AU 02 18150 5428 304 Australia/Sydney 2012-02-28
-2144209 Weipa Weipa Weipa -12.62346 141.87883 P PPL AU 04 32500 2830 1 Australia/Brisbane 2012-02-28
-2144502 Warwick Warwick Warwick -28.21901 152.03438 P PPL AU 04 36660 12347 556 Australia/Brisbane 2012-02-28
-2144528 Warrnambool Warrnambool Warrnambool -38.38176 142.48799 P PPL AU 07 26730 29928 1 Australia/Melbourne 2012-02-28
-2144581 Warrane Warrane Warrane -42.86667 147.38333 P PPL AU 06 61410 2197 76 Australia/Hobart 2012-01-18
-2144604 Warragul Warragul Warragul -38.15912 145.93118 P PPL AU 07 20830 9127 154 Australia/Melbourne 2012-02-28
-2144764 Wangaratta Wangaratta Wangaratta -36.35846 146.32056 P PPL AU 07 26700 14022 147 Australia/Melbourne 2012-02-28
-2145005 Walkerston Walkerston Walkerston -21.16097 149.05814 P PPL AU 04 34770 2564 28 Australia/Brisbane 2012-02-28
-2145110 Wagga Wagga Wagga Wagga Uogga Uogga,Wagga,Wagga Wagga,Уогга Уогга -35.12577 147.35374 P PPL AU 02 17750 55381 185 Australia/Sydney 2012-02-28
-2145135 Wacol Wacol Wacol,Wolston -27.58333 152.93333 P PPL AU AU 04 31000 2582 38 Australia/Brisbane 2012-01-18
-2145214 Victoria Point Victoria Point Victoria Point -27.58329 153.31172 P PPL AU 04 36250 11930 -9999 Australia/Brisbane 2012-02-28
-2145361 Urraween Urraween -25.3 152.81667 P PPL AU 04 33220 4664 25 Australia/Brisbane 2011-06-04
-2145392 Urangan Urangan Urangan -25.3 152.9 P PPL AU 04 33220 8007 7 Australia/Brisbane 2012-01-18
-2145461 Upper Coomera Upper Coomera Upper Coomera -27.9 153.3 P PPL AU 04 33430 6029 45 Australia/Brisbane 2012-01-18
-2145532 Ulverstone Ulverstone Ulverston,Ulverstone,Улверстон -41.16026 146.18242 P PPL AU 06 9604 8 Australia/Hobart 2012-02-28
-2145554 Ulladulla Ulladulla Ulladulla,Улладулла -35.35906 150.47247 P PPL AU 02 16950 9250 1 Australia/Sydney 2012-02-28
-2145875 Tumut Tumut Tumut -35.30016 148.22505 P PPL AU 02 17500 6526 302 Australia/Sydney 2012-02-28
-2145929 Tugun Tugun Tugun -28.15 153.5 P PPL AU 04 33430 4819 5 Australia/Brisbane 2012-01-18
-2146013 Trinity Beach Trinity Beach -16.78876 145.69682 P PPL AU 04 32070 3973 17 Australia/Brisbane 2011-06-04
-2146108 Traralgon Traralgon Traralgon -38.19528 146.5415 P PPL AU 07 23810 18226 121 Australia/Melbourne 2012-02-28
-2146142 Townsville Townsville Townsville,taunzuvu~iru,タウンズヴィル -19.26639 146.8057 P PPL AU 04 37010 138954 1 Australia/Brisbane 2012-02-28
-2146219 Torquay Torquay Torquay -25.28333 152.86667 P PPL AU 04 47556 -9999 Australia/Brisbane 2012-01-18
-2146268 Toowoomba Toowoomba Toowoomba,Tuvumba,Тувумба -27.56056 151.95386 P PPL AU 04 36910 92800 598 Australia/Brisbane 2012-02-28
-2146334 Toolooa Toolooa -23.93333 151.28333 P PPL AU 04 33360 1148 92 Australia/Brisbane 2011-06-04
-2146473 Tolga Tolga Tolga -17.23333 145.48333 P PPL AU 04 36810 1772 758 Australia/Brisbane 2012-01-18
-2146567 Tin Can Bay Tin Can Bay Tin Can Bay,Tin Kehn Behj,Тин Кэн Бэй -25.91646 153.00584 P PPL AU 04 33620 2094 -9999 Australia/Brisbane 2012-02-28
-2146945 The Entrance The Entrance Ehntrans,The Entrance,Энтранс -33.33876 151.4978 P PPL AU 02 18550 2632 -9999 Australia/Sydney 2012-02-28
-2146987 Thagoona Thagoona Thagoona -27.63333 152.63333 P PPL AU 04 33960 1639 38 Australia/Brisbane 2012-01-18
-2146992 Thabeban Thabeban -24.9 152.35 P PPL AU 04 31820 2958 39 Australia/Brisbane 2011-06-04
-2146997 Tewantin Tewantin Tewantin -26.39104 153.03432 P PPL AU 04 36710 10472 1 Australia/Brisbane 2012-02-28
-2147336 Tarragindi Tarragindi Tarragindi -27.53333 153.03333 P PPL AU 04 31000 9439 49 Australia/Brisbane 2012-02-02
-2147344 Taroona Taroona Taroona -42.95 147.33333 P PPL AU 06 63610 2980 269 Australia/Hobart 2012-01-18
-2147347 Taroom Taroom Taroom,Tarum,Тарум -25.63925 149.7998 P PPL AU 04 30370 1263 264 Australia/Brisbane 2012-02-28
-2147381 Taree Taree Taree,Tari,Тари -31.91099 152.45387 P PPL AU 02 13350 44182 60 Australia/Sydney 2012-02-28
-2147497 Tamworth Tamworth Tamuort,Tamworth,Тамуорт -31.09048 150.92905 P PPL AU 02 17310 38551 565 Australia/Sydney 2012-02-28
-2147558 Tallebudgera Tallebudgera -28.15 153.43333 P PPL AU 04 33430 1025 13 Australia/Brisbane 2011-06-04
-2147714 Sydney Sydney SYD,Sanctus Dionysius,Sanctus Dyonisius,Sidnej,Sidneja,Sidnejo,Sidnejus,Sidney,Sidni,Sidnėjus,Syd,Sydney,Sydney City,Sídney,citni,shidoni,sidani,sideuni,sidniy,sydny,xi ni,Сидней,Сиднеј,Сидни,Сідней,סידני,سىدنېي,سيدني,سیدنی,सिडनी,சிட்னி,ซิดนีย์,སིད་ཉིས,シドニー,悉尼,시드니 -33.86785 151.20732 P PPLA AU 02 17200 4394576 58 Australia/Sydney 2011-06-16
-2147756 Swan Hill Swan Hill -35.33781 143.5544 P PPL AU 07 26610 9276 75 Australia/Melbourne 2011-06-04
-2147849 Surfers Paradise Surfers Paradise Sjorfers Paradajz,Surfers Paradise,Сёрферс Парадайз -28.00274 153.42999 P PPL AU 04 33430 18501 13 Australia/Brisbane 2011-06-04
-2147892 Sunnybank Sunnybank Sunnybank -27.58333 153.05 P PPL AU 04 31000 16108 44 Australia/Brisbane 2012-01-18
-2147914 Sunbury Sunbury Sunbury -37.57742 144.72607 P PPL AU 07 23270 29925 197 Australia/Melbourne 2012-02-28
-2148070 Strathpine Strathpine -27.30414 152.98977 P PPL AU 04 35010 9532 8 Australia/Brisbane 2011-06-04
-2148398 Port Stephens Port Stephens Port Stephen -32.6966 152.06348 P PPL AU AU 02 26000 -9999 Australia/Sydney 2009-12-22
-2148431 Stawell Stawell Stawell -37.05632 142.78088 P PPL AU 07 25810 6991 212 Australia/Melbourne 2012-02-28
-2148507 Stanthorpe Stanthorpe Stanthorpe,Stehntkhorp,Стэнтхорп -28.65721 151.93372 P PPL AU 04 36660 4695 791 Australia/Brisbane 2012-02-28
-2148627 Spring Hill Spring Hill -27.46141 153.02311 P PPLX AU 04 4835 49 Australia/Brisbane 2011-06-17
-2148928 Southport Southport Southport -27.96667 153.4 P PPL AU 04 33430 24096 14 Australia/Brisbane 2012-01-18
-2148955 South Melbourne South Melbourne Melbourne South,South Melbourne -37.83333 144.96667 P PPL AU 07 25900 8790 9 Australia/Melbourne 2012-03-01
-2148997 South Grafton South Grafton -29.7 152.95 P PPL AU 02 11730 16399 6 Australia/Sydney 2011-06-04
-2149106 Sorrento Sorrento Sorrento,Сорренто -38.31667 144.73333 P PPL AU 07 1529 -9999 Australia/Melbourne 2012-01-18
-2149116 Sorell Sorell Midway Point,Sorell -42.78161 147.56267 P PPL AU 06 64810 1546 24 Australia/Hobart 2012-02-28
-2149128 Somerville Somerville -38.21667 145.16667 P PPL AU 07 25340 7015 65 Australia/Melbourne 2011-06-04
-2149254 Smithton Smithton Smithton -40.8425 145.12357 P PPL AU 06 61210 4202 4 Australia/Hobart 2012-02-28
-2149349 Slacks Creek Slacks Creek Slacks Creek -27.65 153.15 P PPL AU 04 34590 5965 13 Australia/Brisbane 2012-01-18
-2149475 Singleton Singleton Singleton,Singlton,Синглтон -32.56742 151.16603 P PPL AU 02 17000 13813 155 Australia/Sydney 2012-02-28
-2149586 Shorncliffe Shorncliffe -27.32759 153.08161 P PPL AU 04 31000 1593 5 Australia/Brisbane 2011-08-26
-2149645 Shepparton Shepparton Mooroopna,Shepparton,Шеппартон -36.38047 145.39867 P PPL AU 07 22830 33550 128 Australia/Melbourne 2012-02-28
-2149673 Shellharbour Village Shellharbour Village Shellharbour,Shellharbour Village -34.58333 150.86667 P PPL AU 02 16900 3304 6 Australia/Sydney 2011-06-04
-2149687 Sheffield Sheffield Sheffield,Sheffild,Шеффилд -41.38211 146.32533 P PPL AU 06 63210 1034 292 Australia/Hobart 2012-02-28
-2149738 Sharon Sharon -24.88333 152.26667 P PPL AU 04 31820 1126 26 Australia/Brisbane 2011-06-04
-2149936 Sebastopol Sebastopol Sebastopol -37.58532 143.83953 P PPL AU 07 20570 8045 425 Australia/Melbourne 2011-09-02
-2150060 Scottsdale Scottsdale Scottsdale -41.1578 147.51727 P PPL AU 06 61810 2468 145 Australia/Hobart 2012-02-28
-2150126 Scarness Scarness -25.28333 152.85 P PPL AU 04 33220 3318 4 Australia/Brisbane 2011-06-04
-2150163 Sawtell Sawtell Sawtell -30.36459 153.10141 P PPL AU 02 14608 1 Australia/Brisbane 2012-02-28
-2150216 Sarina Sarina Sarina,Сарина -21.4191 149.21677 P PPL AU 04 34770 1341 74 Australia/Brisbane 2012-02-28
-2150483 Sandgate Sandgate -27.32198 153.06951 P PPL AU 04 31000 4911 4 Australia/Brisbane 2011-08-26
-2150485 Sandford Sandford Sandford -42.93333 147.5 P PPL AU 06 61410 1596 8 Australia/Hobart 2012-02-02
-2150615 Sale Sale Sale,Sehjl,Сэйл -38.11095 147.06802 P PPL AU 07 26810 12917 37 Australia/Melbourne 2012-02-28
-2150660 Saint Kilda Saint Kilda Saint Kilda,St Kilda -37.8676 144.98099 P PPL AU 07 25900 16122 11 Australia/Melbourne 2011-08-26
-2150679 St Helens St Helens -41.32028 148.23889 P PPL AU 06 60210 2000 3 Australia/Hobart 2012-01-11
-2151127 Rosebery Rosebery Rosebery,Rozberi,Розбери -41.77941 145.53825 P PPL AU 06 65610 1035 168 Australia/Hobart 2012-02-28
-2151187 Roma Roma Roma -26.56741 148.78751 P PPL AU 04 34860 5496 315 Australia/Brisbane 2012-02-28
-2151215 Rokeby Rokeby -42.9 147.43333 P PPL AU 06 61410 3026 24 Australia/Hobart 2011-06-04
-2151430 Rocklea Rocklea -27.53917 153.00402 P PPL AU 04 31000 1499 9 Australia/Brisbane 2011-06-04
-2151437 Rockhampton Rockhampton Rockhampton,Rokkhempton,Рокхемптон -23.38032 150.50595 P PPL AU 04 36360 65850 2 Australia/Brisbane 2012-02-28
-2151513 Riverview Riverview Riverview -27.6 152.85 P PPL AU 04 33960 3337 46 Australia/Brisbane 2012-01-18
-2151522 Riverstone Riverstone -33.68333 150.86667 P PPL AU 02 10750 6096 26 Australia/Sydney 2011-06-04
-2151650 Richmond Richmond Richmond,Ричмонд -33.59956 150.75142 P PPL AU 02 13800 5560 128 Australia/Sydney 2012-02-28
-2151682 Rhodes Rhodes Rhodes -33.83333 151.08333 P PPL AU 02 11520 1670 254 Australia/Sydney 2012-01-18
-2151697 Revesby Revesby -33.95 151.01667 P PPL AU 02 10350 1323 12 Australia/Sydney 2011-06-04
-2151735 Renmark West Renmark West -34.16667 140.7 P PPL AU 05 46670 1582 23 Australia/Adelaide 2011-06-04
-2151737 Renmark Renmark Renmark,Ренмарк -34.17702 140.74697 P PPL AU 05 46670 1582 24 Australia/Adelaide 2011-06-04
-2151776 Regents Park Regents Park Regents Park -33.88333 151.01667 P PPL AU 02 10350 4985 23 Australia/Sydney 2012-02-02
-2151886 Redlynch Redlynch -16.88333 145.7 P PPL AU 04 32070 6069 6 Australia/Brisbane 2011-06-04
-2151892 Redland Bay Redland Bay -27.61343 153.30245 P PPL AU 04 36250 1141 16 Australia/Brisbane 2011-06-04
-2151905 Red Hill Red Hill -20.31667 148.5 P PPL AU 04 37340 5406 32 Australia/Brisbane 2011-06-04
-2151924 Redhead Redhead Redhead -33.01667 151.71667 P PPL AU 02 14650 3337 -9999 Australia/Sydney 2012-02-02
-2151932 Redfern Redfern -33.89279 151.20415 P PPLX AU 02 17200 11482 39 Australia/Sydney 2011-06-04
-2151998 Redbank Redbank Redbank -27.6 152.86667 P PPL AU 04 33960 1046 22 Australia/Brisbane 2012-01-18
-2152033 Raworth Raworth -32.73333 151.61667 P PPL AU 02 15050 1212 28 Australia/Sydney 2011-06-04
-2152048 Ravenshoe Ravenshoe Ravenshoe -17.61636 145.48688 P PPL AU 04 36810 1440 1009 Australia/Brisbane 2012-02-28
-2152071 Rathmines Rathmines Rathmines -33.03773 151.58443 P PPL AU 02 8944 1 Australia/Sydney 2012-02-28
-2152240 Quirindi Quirindi Quirindi -31.50763 150.67902 P PPL AU 02 14920 2923 355 Australia/Sydney 2012-02-28
-2152272 Queenstown Queenstown Kvinstaun,Queenstown,Квинстаун -42.0805 145.55646 P PPL AU 06 65610 2352 221 Australia/Hobart 2012-02-28
-2152279 Queenscliff Queenscliff Kvinskliff,Queenscliff,Квинсклифф -38.26789 144.66193 P PPL AU 07 1416 -9999 Australia/Melbourne 2012-02-28
-2152286 Queanbeyan Queanbeyan Kuinbejan,Queanbeyan,Куинбеян -35.35493 149.232 P PPL AU 02 16470 32214 609 Australia/Sydney 2012-02-28
-2152329 Quakers Hill Quakers Hill -33.73333 150.88333 P PPL AU 02 10750 25017 39 Australia/Sydney 2011-06-04
-2152361 Pymble Pymble -33.75 151.15 P PPL AU 02 14500 9368 111 Australia/Sydney 2011-06-04
-2152653 Port Sorell Port Sorell Port Sorell,Порт Сорелл -41.16652 146.55283 P PPL AU 06 63810 2294 -9999 Australia/Hobart 2012-02-28
-2152658 Port Melbourne Port Melbourne Sandridge -37.83961 144.94228 P PPL AU AU 07 25900 13293 7 Australia/Melbourne 2012-03-01
-2152659 Port Macquarie Port Macquarie Port Macquarie,Port Makkuori,Порт Маккуори -31.43084 152.90894 P PPL AU 02 16380 48547 -9999 Australia/Sydney 2012-02-28
-2152667 Portland Portland Portland,Portlend,Портленд -38.35261 141.60574 P PPL AU 07 22410 8841 1 Australia/Melbourne 2012-02-28
-2152668 Portland Portland Portland -33.35709 149.98148 P PPL AU 02 14870 2798 845 Australia/Sydney 2012-02-28
-2152669 Port Kennedy Port Kennedy -10.585 142.21778 P PPL AU 04 36950 12816 10 Australia/Lindeman 2011-06-04
-2152671 Port Kembla Port Kembla Port Kembla -34.46667 150.9 P PPL AU 02 18450 4368 5 Australia/Sydney 2012-01-18
-2152681 Port Douglas Port Douglas Port Douglas,Port Duglas,Port-Duglas,Порт Дуглас,Порт-Дуглас -16.48383 145.46726 P PPL AU 04 32070 3000 32 Australia/Lindeman 2012-02-28
-2152820 Point Clare Point Clare Point Clare -33.45 151.33333 P PPL AU 02 2973 -9999 Australia/Sydney 2012-02-02
-2152917 Pitt Town Pitt Town Pitt Town -33.58718 150.85857 P PPL AU 02 13800 1311 106 Australia/Sydney 2012-02-28
-2153259 Picton Picton Gol Gol,Picton,Гол Гол -34.16995 150.61168 P PPL AU 02 18400 4284 216 Australia/Sydney 2012-02-28
-2153336 Phillip Phillip -31.13333 150.85 P PPL AU 02 17310 1909 415 Australia/Sydney 2011-06-04
-2153389 Perthville Perthville Perthville -33.48741 149.54642 P PPL AU 02 10470 1003 801 Australia/Sydney 2012-02-28
-2153391 Perth Perth Perth -41.57151 147.1713 P PPL AU 06 64610 2238 127 Australia/Hobart 2012-02-28
-2153467 Penshurst Penshurst Penshurst -33.96667 151.08333 P PPL AU 02 14150 11196 63 Australia/Sydney 2012-01-18
-2153471 Penrith Penrith Penrith -33.75 150.7 P PPL AU 02 16350 11397 31 Australia/Sydney 2012-01-18
-2153473 Penola Penola Penola,Пенола -37.3752 140.83678 P PPL AU 05 48340 1512 60 Australia/Adelaide 2012-02-28
-2153483 Pennant Hills Pennant Hills -33.73783 151.07216 P PPL AU 02 14000 6830 172 Australia/Sydney 2011-06-04
-2153494 Penguin Penguin Penguin -41.11436 146.07065 P PPL AU 06 60810 4042 1 Australia/Hobart 2012-02-28
-2153633 Peak Hill Peak Hill Peak Hill,Pik Khill,Пик Хилл -32.72387 148.19052 P PPL AU 02 16200 1280 308 Australia/Sydney 2012-02-28
-2153778 Parkes Parkes Parkes -33.1372 148.1759 P PPL AU 02 16200 11137 337 Australia/Sydney 2012-02-28
-2153924 Palm Beach Palm Beach Palm Beach,Palm-Bich,Палм-Бич -33.59664 151.32384 P PPL AU 02 16370 1601 9 Australia/Sydney 2011-06-04
-2153950 Pakenham Upper Pakenham Upper -38.01667 145.51667 P PPL AU 07 21450 1833 196 Australia/Melbourne 2011-06-04
-2154088 Ouyen Ouyen Ouyen -35.07087 142.32034 P PPL AU 07 24780 1400 72 Australia/Melbourne 2012-02-28
-2154219 Orange Orange Orandzh,Orange,Орандж -33.28397 149.10018 P PPL AU 02 16150 40000 868 Australia/Sydney 2011-10-22
-2154344 One Mile One Mile -27.62902 152.73768 P PPL AU 04 33960 1838 39 Australia/Brisbane 2011-08-26
-2154445 Old Beach Old Beach Old Beach,Oldbridzh,Олдбридж -42.77758 147.26659 P PPL AU 06 60410 2447 3 Australia/Hobart 2012-02-28
-2154447 Old Bar Old Bar Old Bar,Олд Бар -31.9694 152.58807 P PPL AU 02 13350 4098 1 Australia/Sydney 2012-02-28
-2154537 Oberon Oberon Oberon -33.70398 149.85915 P PPL AU 02 16100 3497 883 Australia/Sydney 2012-02-28
-2154544 Oatley Oatley -33.98333 151.06667 P PPL AU 02 14150 9531 25 Australia/Sydney 2011-06-04
-2154656 Oakey Oakey Oakey,Oaky -27.43305 151.72063 P PPL AU 04 36910 3400 520 Australia/Brisbane 2012-02-28
-2154660 Oakdale Oakdale Oakdale -34.0793 150.5132 P PPL AU 02 18400 1683 297 Australia/Sydney 2012-02-28
-2154672 Nyngan Nyngan Nyngan -31.56088 147.18816 P PPL AU 02 10950 2368 173 Australia/Sydney 2012-02-28
-2154787 Nowra Nowra Novra,Nowra,Новра -34.88422 150.60036 P PPL AU 02 16950 94781 1 Australia/Sydney 2012-02-28
-2154796 Notting Hill Notting Hill -37.905 145.1427 P PPL AU 07 24970 18901 101 Australia/Melbourne 2011-08-26
-2154826 North Wonthaggi North Wonthaggi -38.6 145.6 P PPL AU 07 20740 5985 38 Australia/Melbourne 2011-06-04
-2154849 North Turramurra North Turramurra -33.71345 151.14726 P PPL AU 02 14500 3840 167 Australia/Sydney 2011-06-04
-2154913 Northmead Northmead Northmead -33.78333 150.98333 P PPL AU 02 16250 6968 34 Australia/Sydney 2012-02-02
-2154949 North Haven North Haven North Haven -31.63333 152.81667 P PPL AU 02 16380 1566 2 Australia/Sydney 2012-01-18
-2155092 Normanhurst Normanhurst -33.73333 151.1 P PPL AU 02 14500 4787 178 Australia/Sydney 2011-06-04
-2155135 Noosa Heads Noosa Heads Noosa,Noosa Heads -26.39433 153.0901 P PPL AU 04 10000 36 Australia/Brisbane 2012-02-28
-2155321 Nimbin Nimbin Nimbin -28.59726 153.22254 P PPL AU 02 14850 1368 72 Australia/Sydney 2011-06-04
-2155386 Newtown Newtown -33.89835 151.17754 P PPLX AU 02 15200 13552 37 Australia/Sydney 2011-06-04
-2155392 Newstead Newstead Newstead -41.43333 147.16667 P PPL AU 06 64010 4719 9 Australia/Hobart 2012-01-18
-2155412 Newport Newport -33.65517 151.32126 P PPL AU 02 16370 9227 8 Australia/Sydney 2011-06-04
-2155415 New Norfolk New Norfolk N'ju-Norfolk,Нью-Норфолк -42.78261 147.0587 P PPL AU 06 61510 5526 40 Australia/Hobart 2011-06-04
-2155416 Newnham Newnham Newnham -41.38333 147.13333 P PPL AU 06 64010 5389 88 Australia/Hobart 2012-01-18
-2155472 Newcastle Newcastle N'jukasl,Newcastle,Novkastelo,niu ka si er,nyukassuru,Ньюкасл,ニューカッスル,纽卡斯尔 -32.92715 151.77647 P PPL AU 02 15900 497955 21 Australia/Sydney 2011-06-04
-2155542 Nerang Nerang Nerang -27.98941 153.33633 P PPL AU 04 33430 17684 42 Australia/Brisbane 2012-02-28
-2155562 Nelson Bay Nelson Bay Nel'son Behj,Nelson Bay,Nelson's Bay,Nelson’s Bay,Нельсон Бэй -32.72043 152.14398 P PPL AU 02 7726 -9999 Australia/Sydney 2012-02-28
-2155710 Narromine Narromine Narromine -32.23121 148.24052 P PPL AU 02 15850 4934 173 Australia/Sydney 2012-02-28
-2155731 Narrandera Narrandera Narrandera,Наррандера -34.74752 146.55096 P PPL AU 02 15800 4427 159 Australia/Sydney 2012-02-28
-2155742 Narrabri Narrabri Narrabri -30.32612 149.78371 P PPL AU 02 15750 7082 299 Australia/Sydney 2012-02-28
-2155745 Narrabeen Narrabeen -33.71277 151.29736 P PPL AU 02 18000 6436 6 Australia/Sydney 2011-06-04
-2155750 Narooma Narooma Narooma,Naruma,Noorooma,Нарума -36.22101 150.13062 P PPL AU 02 12750 2499 1 Australia/Sydney 2012-02-28
-2155772 Narellan Narellan Narellan -34.03333 150.73333 P PPL AU 02 11450 7350 83 Australia/Sydney 2012-02-02
-2155783 Narara Narara -33.4 151.35 P PPL AU 02 13100 7792 30 Australia/Sydney 2011-06-04
-2155796 Naracoorte Naracoorte Narakurt,Наракурт -36.95785 140.7383 P PPL AU 05 45090 5674 57 Australia/Adelaide 2011-06-04
-2155848 Nana Glen Nana Glen Nana Glen -30.13333 153.01667 P PPL AU 02 11800 1046 79 Australia/Sydney 2012-01-18
-2155858 Nambucca Heads Nambucca Heads Nambucca,Nambucca Heads,Namoucca Heads -30.64318 153.00884 P PPL AU 02 15700 6137 1 Australia/Sydney 2012-02-28
-2155859 Nambucca Nambucca -30.63333 152.98333 P PPL AU 02 15700 6137 28 Australia/Sydney 2011-06-04
-2155862 Nambour Nambour Nambor,Nambour,Намбор -26.62613 152.95941 P PPL AU 04 36710 14919 140 Australia/Brisbane 2012-02-28
-2155892 Nabiac Nabiac Nabiac -32.09837 152.37627 P PPL AU 02 13400 1462 91 Australia/Sydney 2012-02-28
-2156034 Muswellbrook Muswellbrook Musclebrook,Muswellbrook -32.26118 150.89009 P PPL AU 02 15650 11630 155 Australia/Sydney 2012-02-28
-2156049 Murwillumbah Murwillumbah Murwillumbah -28.32732 153.39339 P PPL AU 02 17550 6868 92 Australia/Sydney 2012-02-28
-2156069 Murrumbateman Murrumbateman Morumbateman,Murrumbateman -34.97199 149.02985 P PPL AU 02 18710 2144 605 Australia/Sydney 2012-02-28
-2156239 Mundulla Mundulla Mundalla,Mundulla -36.36667 140.68333 P PPL AU AU 05 47630 1041 81 Australia/Adelaide 2012-01-18
-2156298 Mulwala Mulwala Mulwala -35.99161 146.00114 P PPL AU 02 12300 1987 122 Australia/Sydney 2012-02-28
-2156340 Mulgrave Mulgrave Mulgrave -37.91667 145.2 P PPL AU 07 24970 16280 75 Australia/Melbourne 2012-01-18
-2156345 Mulgoa Mulgoa Mulgoa -33.838 150.64963 P PPL AU 02 16350 2215 121 Australia/Sydney 2012-02-28
-2156404 Mudgee Mudgee -32.59426 149.5871 P PPL AU 02 15270 8726 459 Australia/Sydney 2011-06-04
-2156643 Mount Gambier Mount Gambier Gambier Town,Maunt Gambier,Mont Gambier,Mount Gambier,Mt Gambier,Mt. Gambier,Маунт Гамбиер -37.8318 140.77919 P PPL AU 05 44620 23209 87 Australia/Adelaide 2012-02-28
-2156671 Mount Druitt Mount Druitt Mount Druitt,Mt Druitt,Mt. Druitt -33.76667 150.81667 P PPL AU 02 10750 13582 47 Australia/Sydney 2012-01-18
-2156694 Mount Colah Mount Colah -33.68333 151.11667 P PPL AU 02 14000 6974 164 Australia/Sydney 2011-06-04
-2156722 Mount Beauty Mount Beauty Mount Beauty -36.73628 147.17531 P PPL AU 07 20110 1100 476 Australia/Melbourne 2012-02-28
-2156777 Moss Vale Moss Vale Moss Vale -34.55374 150.37116 P PPL AU 02 18350 6739 525 Australia/Sydney 2012-02-28
-2156813 Mosman Mosman Mosman -33.82778 151.23333 P PPL AU 02 15350 26236 86 Australia/Sydney 2012-01-18
-2156825 Morwell Morwell Morwell -38.23476 146.39499 P PPL AU 07 23810 11585 149 Australia/Melbourne 2012-02-28
-2156853 Mortdale Mortdale -33.96667 151.08333 P PPL AU 02 14150 9640 63 Australia/Sydney 2011-06-04
-2156878 Mornington Mornington Mornington,Морнингтон -38.21667 145.03333 P PPL AU 07 20821 1 Australia/Melbourne 2012-01-18
-2156927 Moree Moree Moree -29.46278 149.84157 P PPL AU 02 15300 8203 200 Australia/Sydney 2012-02-28
-2156933 Mordialloc Mordialloc Mordialloc -38 145.08333 P PPL AU 07 23430 7524 13 Australia/Melbourne 2012-01-18
-2156934 Morayfield Morayfield Morayfield -27.10876 152.94907 P PPL AU 04 35010 10261 77 Australia/Brisbane 2012-02-28
-2157060 Moonee Beach Moonee Beach -30.20575 153.15293 P PPL AU 02 11800 2153 27 Australia/Sydney 2011-07-13
-2157090 Moonah Moonah Moonah -42.85 147.3 P PPL AU 06 62610 5084 30 Australia/Hobart 2012-01-18
-2157109 Mooloolaba Mooloolaba Alexandra-Mooloolaba,Mooloolaba,Mululaba,Мулулаба -26.68164 153.11925 P PPL AU 04 36710 44502 -9999 Australia/Brisbane 2012-02-28
-2157161 Montrose Montrose -37.81667 145.35 P PPL AU 07 27450 6465 233 Australia/Melbourne 2011-06-04
-2157247 Monash Monash Monash -34.23333 140.56667 P PPL AU 05 40520 1116 30 Australia/Adelaide 2012-01-18
-2157272 Molong Molong Molong -33.09233 148.87002 P PPL AU 02 11400 2136 532 Australia/Sydney 2011-10-22
-2157331 Moggill Moggill Moggill -27.58333 152.86667 P PPL AU 04 31000 2145 10 Australia/Brisbane 2012-01-18
-2157343 Moe Moe Moe,Yallourn -38.17828 146.26099 P PPL AU 07 23810 12948 149 Australia/Melbourne 2012-02-28
-2157355 Moama Moama Moama -36.1136 144.75648 P PPL AU 02 4642 73 Australia/Sydney 2012-02-28
-2157373 Mittagong Mittagong Mittagong -34.45002 150.44572 P PPL AU 02 18350 6717 584 Australia/Sydney 2012-02-28
-2157495 Miranda Miranda Miranda -34.03333 151.1 P PPL AU 02 17150 13076 43 Australia/Sydney 2012-01-18
-2157601 Milton Milton Milton,Милтон -35.31644 150.4361 P PPL AU 02 16950 1580 2 Australia/Sydney 2012-02-28
-2157627 Millthorpe Millthorpe Millthorpe -33.44601 149.18539 P PPL AU 02 10850 1217 969 Australia/Sydney 2011-10-22
-2157652 Millicent Millicent Millicent,Millisent,Миллисент -37.59389 140.34947 P PPL AU 05 48340 5551 40 Australia/Adelaide 2012-02-28
-2157698 Mildura Mildura Mild'jura,Mildura,Милдьюра -34.18551 142.16251 P PPL AU 07 24780 47867 39 Australia/Melbourne 2012-02-28
-2157995 Merrylands Merrylands Merrylands -33.83333 150.98333 P PPL AU 02 13950 5803 25 Australia/Sydney 2012-01-18
-2158004 Merriwa Merriwa Merriwa -32.13922 150.35562 P PPL AU 02 17620 1672 295 Australia/Sydney 2012-02-28
-2158020 Merimbula Merimbula Merimbula,Merrimbula,Меримбула -36.88901 149.90961 P PPL AU 02 10550 6367 2 Australia/Sydney 2012-02-28
-2158130 Menai Menai Menai -34.01667 151.01667 P PPL AU 02 17150 10781 122 Australia/Sydney 2012-02-02
-2158151 Melton Melton Melton,Мелтон -37.68339 144.58543 P PPL AU 07 24650 32368 119 Australia/Melbourne 2012-02-28
-2158177 Melbourne Melbourne MEL,Mel'burn,Melbourne,Melbourne City,Melbournum,Melburn,Melburna,Melburnas,Melburno,mel beirn,melaborna,melbeoleun,melporn,meruborun,mlbwrn,mo er ben,Мелбурн,Мелбърн,Мельбурн,מלבורן,ملبورن,مېلبۇرن,मेलबोर्न,மெல்போர்ன்,เมลเบิร์น,མེར་བུན,メルボルン,墨尔本,멜버른 -37.814 144.96332 P PPLA AU 07 24600 3730206 25 Australia/Melbourne 2011-06-16
-2158220 Medowie Medowie Medowie -32.7415 151.8676 P PPL AU 02 16400 5841 3 Australia/Sydney 2012-02-28
-2158504 Matraville Matraville Matraville -33.95 151.23333 P PPL AU 02 16550 8788 24 Australia/Sydney 2012-01-18
-2158538 Mascot Mascot Mascot -33.93333 151.2 P PPL AU 02 11100 8518 8 Australia/Sydney 2012-01-18
-2158561 Maryborough Maryborough Maryborough -37.04562 143.73923 P PPL AU 07 21670 7046 204 Australia/Melbourne 2012-02-28
-2158562 Maryborough Maryborough Maryborough -25.54073 152.70493 P PPL AU 04 33220 20678 5 Australia/Brisbane 2012-02-28
-2158626 Marrickville Marrickville -33.91667 151.16667 P PPL AU 02 15200 23161 9 Australia/Sydney 2011-06-04
-2158651 Maroubra Maroubra Maroubra -33.95 151.23333 P PPL AU 02 16550 26539 24 Australia/Sydney 2012-01-18
-2158744 Margate Margate Margate -43.02814 147.26256 P PPL AU 06 63610 3397 1 Australia/Hobart 2012-02-28
-2158745 Margate Margate -27.24761 153.09809 P PPL AU 04 35010 6564 16 Australia/Brisbane 2011-06-04
-2158767 Mareeba Mareeba Mareeba -16.995 145.42323 P PPL AU 04 36810 8403 436 Australia/Brisbane 2012-02-28
-2158839 Mansfield Mansfield Mansfied,Mansfield,Mansfild,Мансфилд -37.052 146.08846 P PPL AU 07 24250 4052 304 Australia/Melbourne 2012-02-28
-2158867 Manly Manly Manli,Манли -33.79798 151.28826 P PPL AU 02 15150 13950 10 Australia/Sydney 2011-06-04
-2158874 Manilla Manilla Manilla -30.74748 150.71974 P PPL AU 02 17310 2081 521 Australia/Sydney 2012-02-28
-2159018 Malabar Malabar Malabar -33.96667 151.25 P PPL AU 02 16550 4689 33 Australia/Sydney 2012-02-02
-2159045 Maitland Maitland Maitland,Mejtlend,West Maitland,Мейтленд -32.73308 151.5574 P PPL AU 02 15050 1428 115 Australia/Sydney 2012-02-28
-2159185 Maclean Maclean Maclean -29.4581 153.19752 P PPL AU 02 11730 2312 8 Australia/Sydney 2012-02-28
-2159194 Macksville Macksville Macksville -30.7078 152.92029 P PPL AU 02 15700 2153 1 Australia/Sydney 2012-02-28
-2159220 Mackay Mackay Mackay,Makej,Макей -21.15345 149.16554 P PPL AU 04 34770 75922 2 Australia/Brisbane 2012-02-28
-2159372 Luddenham Luddenham Luddenham -33.8785 150.68863 P PPL AU 02 14900 1300 108 Australia/Sydney 2012-02-28
-2159500 Loveday Loveday -34.28333 140.43333 P PPL AU 05 40520 1072 33 Australia/Adelaide 2011-06-04
-2159550 Lorn Lorn Lorn -32.73333 151.56667 P PPL AU 02 15050 1297 13 Australia/Sydney 2012-01-18
-2159654 Long Jetty Long Jetty Long Jetty -33.36667 151.48333 P PPL AU 02 18550 5114 13 Australia/Sydney 2012-02-02
-2159683 Longford Longford Longford -41.60512 147.11887 P PPL AU 06 64610 4267 7 Australia/Hobart 2012-02-28
-2159851 Liverpool Liverpool Liverpool -33.9 150.93333 P PPL AU 02 12850 21317 11 Australia/Sydney 2012-02-02
-2160053 Lithgow Lithgow Litgou,Lithgow,Литгоу -33.48247 150.13631 P PPL AU 02 14870 11128 914 Australia/Sydney 2012-02-28
-2160063 Lismore Lismore Lizmor,Лизмор -28.81354 153.2773 P PPL AU 02 14850 31430 11 Australia/Sydney 2011-06-04
-2160070 Lisarow Lisarow Lisarow -33.38333 151.36667 P PPL AU 02 13100 5285 26 Australia/Sydney 2012-02-02
-2160113 Lindisfarne Lindisfarne Lindisfarne -42.83333 147.35 P PPL AU 06 61410 5678 25 Australia/Hobart 2012-01-18
-2160114 Lindfield Lindfield -33.78333 151.16667 P PPL AU 02 14500 7351 84 Australia/Sydney 2011-06-04
-2160232 Lightning Ridge Lightning Ridge Lajtning Ridzh,Lightning Ridge,Лайтнинг Ридж -29.42743 147.97865 P PPL AU 02 17900 2685 172 Australia/Sydney 2012-02-28
-2160258 Lidcombe Lidcombe Lidcomb -33.86436 151.0397 P PPL AU AU 02 10200 14161 18 Australia/Sydney 2011-06-04
-2160297 Leura Leura Leura -33.71667 150.33333 P PPL AU 02 10900 4384 956 Australia/Sydney 2012-01-18
-2160299 Leumeah Leumeah -34.05 150.83333 P PPL AU 02 11500 8662 59 Australia/Sydney 2011-06-04
-2160336 Leopold Leopold Leopol'd,Leopold,Леопольд -38.19001 144.46825 P PPL AU 07 22750 6120 1 Australia/Melbourne 2012-02-28
-2160386 Leichhardt Leichhardt Leichhardt -33.88333 151.15 P PPL AU 02 14800 12247 17 Australia/Sydney 2012-01-18
-2160413 Leeton Leeton Leeton,Liton,Литон -34.55105 146.40483 P PPL AU 02 14750 7299 152 Australia/Sydney 2012-02-28
-2160477 Lawson Lawson Lawson -33.72064 150.42975 P PPL AU 02 10900 10598 621 Australia/Sydney 2012-02-28
-2160493 Lavington Lavington Lavington -36.05 146.93333 P PPL AU 02 10050 12476 182 Australia/Sydney 2012-02-02
-2160499 Camden Haven Camden Haven Camden Haven,Laurieton -31.64484 152.79462 P PPL AU 02 16380 2089 120 Australia/Sydney 2012-02-28
-2160517 Launceston Launceston Launceston,Launcestown,Lonseston,Patersonia,Лонсестон -41.43876 147.13467 P PPL AU 06 64010 72458 82 Australia/Hobart 2012-02-28
-2160519 Lauderdale Lauderdale Lauderdale -42.91364 147.48747 P PPL AU 06 61410 2388 1 Australia/Hobart 2012-02-28
-2160523 Latrobe Latrobe Latrobe -41.2362 146.41721 P PPL AU 06 63810 3526 1 Australia/Hobart 2012-02-28
-2160542 Larnook Larnook -28.65 153.11667 P PPL AU 02 14850 1407 47 Australia/Sydney 2011-06-04
-2160546 Largs Largs -32.7 151.6 P PPL AU 02 15050 1135 26 Australia/Sydney 2011-06-04
-2160560 Lara Lara Lara -38.02388 144.40617 P PPL AU 07 22750 8179 27 Australia/Melbourne 2012-02-28
-2160625 Lane Cove Lane Cove Lane Cove -33.81667 151.16667 P PPL AU 02 14700 2201 65 Australia/Sydney 2012-01-18
-2160735 Lakes Entrance Lakes Entrance -37.88115 147.98103 P PPL AU 07 22110 5849 3 Australia/Melbourne 2011-06-04
-2160744 Lakemba Lakemba -33.91667 151.08333 P PPL AU 02 11550 14468 23 Australia/Sydney 2011-06-04
-2160751 Lake Illawarra Lake Illawarra -34.54658 150.85645 P PPL AU 02 16900 3122 13 Australia/Sydney 2011-06-04
-2160769 Lake Cargelligo Lake Cargelligo Lake Cargellico,Lake Cargelligo -33.29868 146.37386 P PPL AU 02 14600 1288 171 Australia/Sydney 2012-02-28
-2160774 Lake Albert Lake Albert Lake Albert -35.16667 147.38333 P PPL AU 02 17750 5851 204 Australia/Sydney 2012-01-18
-2160880 Kyogle Kyogle Kyogle -28.62075 153.00482 P PPL AU 02 14550 2156 227 Australia/Sydney 2012-02-28
-2160910 Kyabram Kyabram Kyabram -36.31335 145.05035 P PPL AU 07 21370 6396 130 Australia/Melbourne 2012-02-28
-2160922 Kurri Kurri Kurri Kurri Kurri Kurri -32.81933 151.47908 P PPL AU 02 11720 10990 128 Australia/Sydney 2012-02-28
-2160937 Kurnell Kurnell Kurnell -34.01667 151.2 P PPL AU 02 2109 2 Australia/Sydney 2012-01-18
-2160944 Kuranda Kuranda Kuranda,Куранда -16.81978 145.63818 P PPL AU 04 36810 1428 145 Australia/Brisbane 2012-02-28
-2161029 Kotara Kotara Kotara -32.95 151.68333 P PPL AU 02 14650 1162 102 Australia/Sydney 2012-02-02
-2161072 Kootingal Kootingal Kootingal -31.05857 151.0535 P PPL AU 02 17310 2306 598 Australia/Sydney 2012-02-28
-2161185 Kogarah Kogarah Kogarah -33.98333 151.11667 P PPL AU 02 14450 1878 27 Australia/Sydney 2012-01-18
-2161251 Kirribilli Kirribilli Kirribilli -33.85 151.21667 P PPL AU 02 15950 3483 31 Australia/Sydney 2012-01-18
-2161309 Kingston Beach Kingston Beach Kingston Beach -42.98333 147.31667 P PPL AU 06 63610 2024 111 Australia/Hobart 2012-01-18
-2161311 Kingston Kingston Kingston -42.97638 147.30351 P PPL AU 06 63610 14371 34 Australia/Hobart 2012-02-28
-2161313 Kingston Kingston -34.23333 140.35 P PPL AU 05 43790 1441 47 Australia/Adelaide 2011-06-04
-2161335 Kingscliff Kingscliff Kingscliff -28.26667 153.56667 P PPL AU 02 17550 6017 26 Australia/Sydney 2012-01-18
-2161376 Kingaroy Kingaroy Kingaroy -26.53994 151.8373 P PPL AU 04 36630 8573 526 Australia/Brisbane 2012-02-28
-2161515 Kiama Kiama Kiama -34.66828 150.85219 P PPL AU 02 10379 1 Australia/Sydney 2012-02-28
-2161546 Kettering Kettering Kettering,Кеттеринг -43.12973 147.24744 P PPL AU 06 63610 1178 1 Australia/Hobart 2012-02-28
-2161602 Kenthurst Kenthurst Kenthurst -33.65527 151.00504 P PPL AU 02 10500 5250 152 Australia/Sydney 2012-02-28
-2161608 Kensington Kensington Kensington -33.91667 151.21667 P PPL AU 02 16550 10847 30 Australia/Sydney 2012-01-18
-2161654 Kendall Kendall Kendall -31.63295 152.70393 P PPL AU 02 16380 1047 98 Australia/Sydney 2012-02-28
-2161658 Kempsey Kempsey Kempsey -31.07898 152.83093 P PPL AU 02 14350 9522 5 Australia/Sydney 2012-02-28
-2161678 Kelso Kelso Kelso -33.41667 149.6 P PPL AU 02 10470 6298 649 Australia/Sydney 2012-01-18
-2161714 Keith Keith Keith -36.0991 140.35315 P PPL AU 05 47630 1367 99 Australia/Adelaide 2012-02-28
-2161715 Keiraville Keiraville Keiraville -34.41667 150.86667 P PPL AU 02 18450 3073 58 Australia/Sydney 2012-01-18
-2161776 Katoomba Katoomba Katoomba -33.71977 150.30739 P PPLA2 AU 02 10900 18593 783 Australia/Sydney 2012-02-16
-2161863 Kanwal Kanwal -33.25391 151.49177 P PPL AU 02 18550 3681 38 Australia/Sydney 2011-08-04
-2161876 Kangaroo Valley Kangaroo Valley Kangaroo Valley,Kenguru Vehlli,Кенгуру Вэлли -34.73806 150.53658 P PPL AU 02 16950 1093 166 Australia/Sydney 2012-02-28
-2161935 Kandos Kandos Kandos -32.85772 149.96832 P PPL AU 02 15270 1335 716 Australia/Sydney 2012-02-28
-2162025 Kahibah Kahibah Kahibah -32.96667 151.71667 P PPL AU 02 14650 2473 86 Australia/Sydney 2012-02-02
-2162052 Junee Junee Junee,Junee Junction -34.86819 147.58273 P PPL AU 02 14300 3744 304 Australia/Sydney 2012-02-28
-2162250 Jindera Jindera Dzhindera,Jindera,Джиндера -35.95474 146.88852 P PPL AU 02 13370 1623 305 Australia/Sydney 2012-02-28
-2162255 Jindabyne Jindabyne Jindabyne,Jinderboine -36.41623 148.62505 P PPL AU 02 17050 2156 931 Australia/Sydney 2012-02-28
-2162281 Jilliby Jilliby Jilliby -33.22605 151.41684 P PPL AU 02 18550 2080 36 Australia/Sydney 2011-08-04
-2162419 Jannali Jannali -34.01667 151.06667 P PPL AU 02 17150 5556 82 Australia/Sydney 2011-06-04
-2162446 Jamberoo Jamberoo Jamberoo -34.64745 150.77464 P PPL AU 02 14400 1608 1 Australia/Sydney 2012-02-28
-2162662 Inverell Inverell Inverell -29.77403 151.11166 P PPL AU 02 14200 8561 608 Australia/Sydney 2012-02-28
-2162683 Innisfail Innisfail Geraldton,Innisfail -17.52209 146.03102 P PPL AU 04 32260 10143 1 Australia/Brisbane 2012-02-28
-2162733 Ingleburn Ingleburn Ingleburn -34 150.86667 P PPL AU 02 11500 13541 36 Australia/Sydney 2012-01-18
-2162737 Ingham Ingham Ingham -18.64552 146.16248 P PPL AU 04 33800 6127 40 Australia/Brisbane 2012-02-28
-2162856 Hurstville Grove Hurstville Grove Hurstville,Hurstville Grove -33.96667 151.1 P PPLX AU AU 02 14450 2331 64 Australia/Sydney 2012-01-18
-2162873 Huonville Huonville Huonville,Khuonvill',Хуонвилль -43.03124 147.04813 P PPL AU 06 63010 1700 56 Australia/Hobart 2012-02-28
-2162994 Howlong Howlong Howlong,Khaulong,Хаулонг -35.97918 146.62514 P PPL AU 02 12300 2441 156 Australia/Sydney 2012-02-28
-2163055 Horsham Horsham Horsham -36.71131 142.19981 P PPL AU 07 23190 12830 118 Australia/Melbourne 2012-02-28
-2163137 Hornsby Hornsby -33.70244 151.09931 P PPL AU 02 14000 18800 186 Australia/Sydney 2011-06-04
-2163237 Home Hill Home Hill Home Hill -19.65921 147.41232 P PPL AU 04 31900 2900 25 Australia/Brisbane 2012-02-28
-2163256 Homebush Homebush Homebush -33.86667 151.08333 P PPL AU 02 17100 4171 15 Australia/Sydney 2012-01-18
-2163270 Holsworthy Holsworthy Holsworthy -33.98333 150.96667 P PPL AU 02 14900 4363 59 Australia/Sydney 2012-01-18
-2163306 Holgate Holgate Holgate -33.4 151.41667 P PPL AU 02 13100 1122 73 Australia/Sydney 2012-02-02
-2163314 Holbrook Holbrook Holbrook,Kholbruk,Холбрук -35.72189 147.31387 P PPL AU 02 13370 1337 293 Australia/Sydney 2012-02-28
-2163355 Hobart Hobart Hobart,Hobart Town,Khobart,Хобарт -42.87936 147.32941 P PPLA AU AU 06 62810 47700 19 Australia/Hobart 2012-02-20
-2163398 Hillston Hillston Hillston,Khillston,Хиллстон -33.48094 145.53435 P PPL AU 02 11600 1582 98 Australia/Sydney 2012-02-28
-2163577 Henty Henty Henty -35.51745 147.03716 P PPL AU 02 13370 1079 240 Australia/Sydney 2012-02-28
-2163641 Helensburgh Helensburgh Helensburgh,Khelensburg,Хеленсбург -34.17836 150.99522 P PPL AU 02 18450 5504 129 Australia/Sydney 2012-02-28
-2163669 Heddon Greta Heddon Greta Heddon Greta -32.80204 151.51328 P PPL AU 02 11720 1429 118 Australia/Sydney 2012-02-28
-2163697 Heathcote Heathcote -34.08333 151.01667 P PPL AU 02 17150 5851 222 Australia/Sydney 2011-06-04
-2163701 Healesville Healesville Healesville -37.65395 145.51718 P PPL AU 07 27450 7098 199 Australia/Melbourne 2012-02-28
-2163731 Hazelbrook Hazelbrook Hazelbrook -33.72446 150.45839 P PPL AU 02 10900 4449 510 Australia/Sydney 2012-02-28
-2163755 Haymarket Haymarket -33.87868 151.20526 P PPLL AU 02 17200 4310 24 Australia/Sydney 2011-06-04
-2163788 Hawks Nest Hawks Nest Hawks Nest -32.66755 152.17831 P PPL AU 02 13400 1028 19 Australia/Sydney 2012-02-28
-2163837 Hastings Hastings Hastings -38.3 145.18333 P PPL AU 07 25340 6583 12 Australia/Melbourne 2012-01-18
-2163895 Harrington Harrington Harrington -31.87227 152.69174 P PPL AU 02 13350 2342 24 Australia/Sydney 2012-02-28
-2164025 Hamilton Hamilton Gamil'ton,Hamilton,Hamiltonium,Khamilton,hamiruton,hmyltwn,Гамильтон,Хамилтон,המילטון,ハミルトン -37.74425 142.02202 P PPL AU 07 26260 8869 189 Australia/Melbourne 2011-06-17
-2164123 Haberfield Haberfield -33.88333 151.2 P PPLX AU 02 17200 6587 31 Australia/Sydney 2011-06-04
-2164129 Gympie Gympie Gympie -26.18979 152.66499 P PPL AU 04 33620 11027 69 Australia/Brisbane 2011-06-13
-2164149 Guyra Guyra Guyra -30.21674 151.67444 P PPL AU 02 13650 1990 1169 Australia/Sydney 2012-02-28
-2164206 Gunnedah Gunnedah Gunnedah,Gunnendah -30.98065 150.25838 P PPL AU 02 13550 7148 304 Australia/Sydney 2012-02-28
-2164249 Gundaroo Gundaroo Gundaroo,Gundaru,Gunderoo,Гундару -35.03333 149.25 P PPL AU AU 02 18710 1441 578 Australia/Sydney 2012-01-18
-2164253 Gundagai Gundagai Gundagai -35.06525 148.10802 P PPL AU 02 13500 1704 305 Australia/Sydney 2012-02-28
-2164352 Gulgong Gulgong Gulgong -32.36253 149.53201 P PPL AU 02 15270 2919 589 Australia/Sydney 2012-02-28
-2164422 Griffith Griffith Griffith -34.28853 146.05093 P PPL AU 02 13450 15455 122 Australia/Sydney 2012-02-28
-2164451 Greta Greta Greta -32.67783 151.38924 P PPL AU 02 11720 2321 128 Australia/Sydney 2012-02-28
-2164457 Grenfell Grenfell Grenfell -33.89549 148.16438 P PPL AU 02 18100 2414 370 Australia/Sydney 2012-02-28
-2164487 Greenwell Point Greenwell Point Greenwell Point -34.90746 150.73311 P PPL AU 02 16950 1275 -9999 Australia/Sydney 2012-02-28
-2164515 Greensborough Greensborough -37.70462 145.10302 P PPL AU 07 20660 20214 75 Australia/Melbourne 2011-06-04
-2164691 Granville Granville Granville,Granville Junction -33.83333 151.01667 P PPL AU AU 02 16250 22889 12 Australia/Sydney 2012-01-18
-2164700 Granton Granton -42.75149 147.22795 P PPL AU 06 62610 2420 12 Australia/Hobart 2011-06-04
-2164771 Grafton Grafton Grafton,Графтон -29.69012 152.93336 P PPL AU 02 11730 9955 72 Australia/Sydney 2012-02-28
-2164837 Goulburn Goulburn Goulburn,Gulbern,Гулберн -34.75155 149.72086 P PPL AU 02 13310 20940 563 Australia/Sydney 2012-02-28
-2164849 Gosford Gosford Gosford,Госфорд -33.4244 151.34399 P PPL AU 02 13100 3021 1 Australia/Sydney 2012-02-28
-2164855 Gorokan Gorokan -33.25742 151.51134 P PPL AU 02 18550 7066 12 Australia/Sydney 2011-08-04
-2164904 Gordon Gordon -29.3 152.71667 P PPL AU 02 11730 5993 108 Australia/Sydney 2011-06-04
-2164966 Goonellabah Goonellabah Goonellabah -28.81667 153.31667 P PPL AU 02 14850 12137 171 Australia/Sydney 2012-01-18
-2164972 Goondiwindi Goondiwindi Goondiwindi,Gundivindi,Гундивинди -28.5464 150.3073 P PPL AU 04 33610 5629 235 Australia/Sydney 2012-02-28
-2165025 Goodna Goodna Goodna -27.61667 152.9 P PPL AU 04 33960 7939 36 Australia/Brisbane 2012-01-18
-2165065 Gol Gol Gol Gol Gol Gol -34.18056 142.2265 P PPL AU 02 1799 68 Australia/Sydney 2012-02-28
-2165087 Gold Coast Gold Coast Costa Dorada,Gold,Gold Coast,Gold Koust,gorudokosuto,huang jin hai an,Голд Коуст,ゴールドコースト,ゴールド・コースト,黃金海岸,黄金海岸 -28.00029 153.43088 P PPL AU 04 527660 1 Australia/Brisbane 2012-02-28
-2165159 Gloucester Gloucester Gloucester -32.0077 151.9633 P PPL AU 02 13050 3103 115 Australia/Sydney 2012-02-28
-2165225 Glenorie Glenorie Glenorie -33.60177 151.00886 P PPL AU 02 14000 3360 136 Australia/Sydney 2012-02-28
-2165229 Glenorchy Glenorchy -42.83343 147.27593 P PPL AU 06 62610 10062 22 Australia/Hobart 2011-06-04
-2165291 Glen Innes Glen Innes Glen Innes -29.73485 151.7385 P PPL AU 02 13010 6283 1067 Australia/Sydney 2012-02-28
-2165303 Glenhaven Glenhaven Glenhaven -33.7 151 P PPL AU 02 10500 5620 137 Australia/Sydney 2012-02-02
-2165326 Glenfield Glenfield -33.96667 150.9 P PPL AU 02 11500 6758 19 Australia/Sydney 2011-06-04
-2165403 Glenbrook Glenbrook Glenbrook -33.76667 150.61667 P PPL AU 02 10900 5138 187 Australia/Sydney 2012-01-18
-2165478 Gladstone Gladstone Gladstone,Glehdston,Глэдстон -23.84761 151.25635 P PPL AU 04 33360 30489 1 Australia/Brisbane 2012-02-28
-2165596 Gilgandra Gilgandra Gilgandra -31.71173 148.66252 P PPL AU 02 12950 3245 304 Australia/Sydney 2012-02-28
-2165597 Gilgai Gilgai Gilgai -29.8527 151.11806 P PPL AU 02 14200 1096 624 Australia/Sydney 2012-02-28
-2165692 Gerringong Gerringong Geringong,Gerringong,Геррингонг -34.74702 150.82809 P PPL AU 02 3395 1 Australia/Sydney 2012-02-28
-2165718 George Town George Town Dzhordzh Taun,George Town,Georgetown,Джордж Таун -41.10559 146.82606 P PPL AU 06 62210 4268 1 Australia/Hobart 2012-02-28
-2165791 Geeveston Geeveston -43.16337 146.92549 P PPL AU 06 63010 1584 25 Australia/Hobart 2011-06-04
-2165796 Geelong West Geelong West Geelong West -38.13333 144.35 P PPL AU 07 22750 150437 27 Australia/Melbourne 2012-01-18
-2165798 Geelong Geelong Dzhilong,Geelong,Джилонг -38.14711 144.36069 P PPL AU 07 22750 160991 23 Australia/Melbourne 2011-06-04
-2165818 Gayndah Gayndah Gayndah -25.62522 151.61144 P PPL AU 04 35760 1745 135 Australia/Brisbane 2012-02-28
-2165828 Gatton Gatton Gatton,Гаттон -27.55873 152.27618 P PPL AU 04 34580 6513 221 Australia/Brisbane 2012-02-28
-2165947 Galston Galston Galston -33.65297 151.04713 P PPL AU 02 14000 2978 127 Australia/Sydney 2012-02-28
-2166113 Frederickton Frederickton Frederickton -31.03749 152.8753 P PPL AU 02 14350 1244 10 Australia/Sydney 2012-02-28
-2166143 Frankston East Frankston East Frankston East,Frenkston,Френкстон -38.13333 145.13333 P PPL AU 07 22170 34457 10 Australia/Melbourne 2012-01-18
-2166160 Franklin Franklin Franklin -43.08884 147.00906 P PPL AU 06 63010 1053 -9999 Australia/Hobart 2012-02-28
-2166309 Forster Forster Forster -32.18136 152.51715 P PPL AU 02 17591 -9999 Australia/Sydney 2012-02-28
-2166335 Forest Hill Forest Hill Forest Hill,Forest Khill,Форест Хилл -35.1481 147.46707 P PPL AU 02 17750 1939 136 Australia/Sydney 2012-02-28
-2166368 Forbes Forbes Forbes,Forbs,Форбс -33.38436 148.0076 P PPL AU 02 12900 4838 312 Australia/Sydney 2012-02-28
-2166675 Finley Finley Finley -35.64904 145.57704 P PPL AU 02 10650 2618 126 Australia/Sydney 2012-02-28
-2166814 Federal Federal -28.65 153.45 P PPL AU 02 11350 1202 180 Australia/Sydney 2011-06-04
-2166893 Falls Creek Falls Creek -34.96667 150.6 P PPL AU 02 16950 1226 48 Australia/Sydney 2011-06-04
-2167050 Evans Head Evans Head Evans Head -29.11777 153.43072 P PPL AU 02 16610 2101 -9999 Australia/Brisbane 2012-02-28
-2167056 Evandale Evandale Evandale -41.571 147.24744 P PPL AU 06 64610 1290 157 Australia/Hobart 2012-02-28
-2167145 Eulomogo Eulomogo -32.26667 148.68333 P PPL AU 02 12600 1373 319 Australia/Sydney 2011-06-04
-2167183 Ettalong Beach Ettalong Beach Ettalong Beach -33.51058 151.33044 P PPL AU 02 13100 4205 1 Australia/Sydney 2012-02-28
-2167185 Ettalong Ettalong -33.51667 151.35 P PPL AU 02 4205 -9999 Australia/Sydney 1994-11-07
-2167263 Erina Erina Erina -33.43333 151.38333 P PPL AU 02 13100 4968 3 Australia/Sydney 2012-02-02
-2167280 Epping Epping -33.77271 151.08184 P PPL AU 02 16250 18969 97 Australia/Sydney 2011-06-04
-2167312 Engadine Engadine Engadine -34.06667 151.01667 P PPL AU 02 17150 17937 182 Australia/Sydney 2012-01-18
-2167391 Empire Bay Empire Bay Empire Bay -33.5 151.36667 P PPL AU 02 2371 10 Australia/Sydney 2012-02-02
-2167426 Emerald Emerald Ehmeral'd,Emerald,Эмеральд -23.52296 148.15784 P PPL AU 04 32270 9398 171 Australia/Brisbane 2012-02-28
-2167699 Eglinton Eglinton -33.37731 149.54654 P PPL AU 02 10470 2272 657 Australia/Sydney 2011-10-24
-2167799 Eden Eden Eden,Ehden,Эден -37.06322 149.90401 P PPL AU 02 10550 3008 1 Australia/Sydney 2012-02-28
-2167817 Echuca Echuca Echuca -36.14057 144.75185 P PPL AU 07 21370 19457 73 Australia/Melbourne 2012-02-28
-2167869 East Maitland East Maitland East Maitland -32.75 151.58333 P PPL AU 02 15050 11310 24 Australia/Sydney 2012-01-18
-2167879 East Hills East Hills -33.96667 150.98333 P PPL AU 02 14900 2580 13 Australia/Sydney 2011-06-04
-2167882 East Gosford East Gosford -33.43333 151.35 P PPL AU 02 13100 3513 39 Australia/Sydney 2011-06-04
-2167943 East Ballina East Ballina -28.86667 153.58333 P PPL AU 02 10250 5474 1 Australia/Sydney 2011-06-04
-2167949 Earlwood Earlwood Earlwood -33.95 151.1 P PPL AU 02 14150 16564 43 Australia/Sydney 2012-01-18
-2168112 Dungog Dungog Dungog -32.40032 151.75758 P PPL AU 02 12700 2102 151 Australia/Sydney 2012-02-28
-2168128 Dunedoo Dunedoo Dunedoo -32.01634 149.3871 P PPL AU 02 18020 1654 385 Australia/Sydney 2012-02-28
-2168305 Dubbo Dubbo Dabbo,Dubbo,Даббо -32.24295 148.60484 P PPL AU 02 12600 29361 304 Australia/Sydney 2012-02-28
-2168459 Douglas Park Douglas Park Douglas Park,Pikton,Пиктон -34.18496 150.71449 P PPL AU 02 18400 1713 152 Australia/Sydney 2012-02-28
-2168534 Dorrigo Dorrigo Dorrigo -30.34112 152.71394 P PPL AU 02 10600 1429 567 Australia/Sydney 2012-02-28
-2168546 Dora Creek Dora Creek Dora Creek -33.08139 151.49676 P PPL AU 02 14650 1315 72 Australia/Sydney 2012-02-28
-2168556 Doonside Doonside -33.76667 150.86667 P PPL AU 02 10750 13031 46 Australia/Sydney 2011-06-04
-2168807 Dingley Village Dingley Village Dingley -37.9827 145.1342 P PPL AU 07 23430 10072 27 Australia/Melbourne 2011-08-26
-2168943 Devonport Devonport Devenport,Devonport,Девонпорт -41.17695 146.35152 P PPL AU 06 61610 19317 1 Australia/Hobart 2012-02-28
-2169056 Denman Denman Denman -32.38788 150.68935 P PPL AU 02 15650 1952 153 Australia/Sydney 2012-02-28
-2169068 Deniliquin Deniliquin Deniliquin -35.52741 144.95958 P PPL AU 02 12500 8024 89 Australia/Sydney 2012-02-28
-2169113 Deloraine Deloraine Dehlorehjn,Deloraine,Дэлорэйн -41.52374 146.65717 P PPL AU 06 64210 2032 136 Australia/Hobart 2012-02-28
-2169220 Deception Bay Deception Bay Deception Bay -27.19354 153.02631 P PPL AU 04 35010 16090 3 Australia/Brisbane 2012-02-28
-2169237 Deagon Deagon Deagon -27.33333 153.06667 P PPL AU 04 31000 3152 10 Australia/Brisbane 2012-01-18
-2169302 Davistown Davistown Davistown -33.48333 151.36667 P PPL AU 02 2298 -9999 Australia/Sydney 2012-02-02
-2169314 Davidson Davidson -33.74297 151.2008 P PPL AU 02 18000 2424 153 Australia/Sydney 2011-06-04
-2169371 Darlington Point Darlington Point Darling Point,Darlington Point,Дарлинг Поинт -34.56942 145.9987 P PPL AU 02 15550 1463 127 Australia/Sydney 2012-02-28
-2169378 Darlinghurst Darlinghurst -33.87939 151.21925 P PPLX AU 02 17200 10128 53 Australia/Sydney 2011-06-04
-2169405 Dareton Dareton Dareton -34.09468 142.03966 P PPL AU 02 18200 1836 40 Australia/Sydney 2012-02-28
-2169413 Darch Darch -37.75 145.11667 P PPL AU 07 20660 3176 25 Australia/Melbourne 2011-06-04
-2169423 Dapto Dapto Dapto -34.5 150.78333 P PPL AU 02 18450 10478 13 Australia/Sydney 2012-01-18
-2169535 Dalby Dalby Dalbi,Dalby,Далби -27.18169 151.26205 P PPL AU 04 37310 9847 407 Australia/Brisbane 2012-02-28
-2169574 Daceyville Daceyville Daceyville -33.93333 151.23333 P PPL AU 02 16550 1188 33 Australia/Sydney 2012-02-02
-2169589 Cygnet Cygnet Cygnet -43.15333 147.07252 P PPL AU 06 63010 1267 57 Australia/Hobart 2012-02-28
-2169736 Cundletown Cundletown Cundle,Cundletown -31.9 152.53333 P PPL AU AU 02 13350 2148 7 Australia/Sydney 2012-01-18
-2169801 Culcairn Culcairn Culcairn -35.66669 147.03845 P PPL AU 02 13370 1119 220 Australia/Sydney 2012-02-28
-2169868 Croydon Croydon Croydon -33.88333 151.11667 P PPL AU 02 10150 9645 22 Australia/Sydney 2012-01-18
-2169928 Crookwell Crookwell Crookwell,Krukvell,Круквелл -34.45925 149.47138 P PPL AU 02 17640 2496 885 Australia/Sydney 2012-02-28
-2169956 Cronulla Cronulla Cronulla,Cronulla Beach,Gunnamatta -34.05 151.15 P PPL AU AU 02 17150 16754 17 Australia/Sydney 2012-01-18
-2169990 Cringila Cringila Cringila -34.46667 150.88333 P PPL AU 02 18450 2180 5 Australia/Sydney 2012-01-18
-2170013 Crescent Head Crescent Head Crescent Head -31.1887 152.97301 P PPL AU 02 1969 1 Australia/Sydney 2012-02-28
-2170078 Cranbourne Cranbourne Cranbourne -38.1 145.28333 P PPL AU 07 21610 39419 52 Australia/Melbourne 2012-01-18
-2170089 Craigieburn Craigieburn Craigieburn -37.6 144.95 P PPL AU 07 23270 19728 186 Australia/Melbourne 2012-01-18
-2170139 Cowra Cowra Cowra -33.83554 148.69662 P PPL AU 02 12350 6795 307 Australia/Sydney 2012-02-28
-2170162 Cowes Cowes Cowes,Kaus,Каус -38.45231 145.23865 P PPL AU 07 20740 3678 1 Australia/Melbourne 2012-02-28
-2170190 Coutts Crossing Coutts Crossing Coutts Crossing -29.82619 152.89156 P PPL AU 02 11730 1356 152 Australia/Sydney 2012-02-28
-2170253 Corrimal Corrimal Corrima,Corrimal -34.36667 150.9 P PPL AU AU 02 18450 6534 31 Australia/Sydney 2012-01-18
-2170260 Corowa Corowa Corowa -35.99962 146.3858 P PPL AU 02 12300 5178 157 Australia/Sydney 2012-02-28
-2170375 Coraki Coraki Coraki -28.99332 153.28212 P PPL AU 02 14850 1841 40 Australia/Sydney 2012-02-28
-2170430 Cootamundra Cootamundra Cootamundra,Cootamundry,Kutamundra,Кутамундра -34.64095 148.02838 P PPL AU 02 12200 4931 305 Australia/Sydney 2012-02-28
-2170456 Cooranbong Cooranbong Cooranbong,Coorumbung -33.07622 151.45409 P PPL AU 02 14650 4480 118 Australia/Sydney 2012-02-28
-2170534 Coonamble Coonamble Coonamble -30.95389 148.38881 P PPL AU 02 12150 2975 152 Australia/Sydney 2012-02-28
-2170540 Coonabarabran Coonabarabran Coonabarabran,Coonabarrabran -31.27734 149.27904 P PPL AU 02 18020 2736 615 Australia/Sydney 2012-02-28
-2170577 Cooma Cooma Comma,Cooma,Kuma,Кума -36.23469 149.12598 P PPL AU 02 12050 6520 886 Australia/Sydney 2012-02-28
-2170581 Coolum Beach Coolum Beach Coolum,Coolum Beach -26.53333 153.09123 P PPL AU 04 8555 4 Australia/Brisbane 2012-02-28
-2170634 Coolamon Coolamon Coolamon -34.8179 147.20084 P PPL AU 02 12000 1698 288 Australia/Sydney 2012-02-28
-2170697 Coogee Coogee -33.9205 151.25522 P PPL AU 02 16550 13179 18 Australia/Sydney 2011-06-04
-2170796 Coniston Coniston Coniston -34.45 150.88333 P PPL AU 02 18450 1881 9 Australia/Sydney 2012-01-18
-2170841 Condobolin Condobolin Condobolin,Condoublin -33.08805 147.14514 P PPL AU 02 14600 3129 373 Australia/Sydney 2012-02-28
-2170852 Concord Concord Concord -33.86667 151.1 P PPL AU 02 11520 13008 16 Australia/Sydney 2012-01-18
-2170880 Como Como Como -34 151.06667 P PPL AU 02 17150 3737 28 Australia/Sydney 2012-02-02
-2170954 Colo Vale Colo Vale Colo Vale -34.40095 150.48573 P PPL AU 02 18350 1809 532 Australia/Sydney 2012-02-28
-2171069 Colac Colac Colac,Kolak,Колак -38.339 143.58488 P PPL AU 07 21750 9089 152 Australia/Melbourne 2012-02-28
-2171085 Coffs Harbour Coffs Harbour Coffs Harbour,Kofs-Kharbor,Кофс-Харбор -30.29626 153.11351 P PPL AU 02 11800 62978 82 Australia/Sydney 2012-02-28
-2171197 Cobbitty Cobbitty Cobbitty,Cobbity -34.01592 150.67854 P PPL AU 02 11450 1162 134 Australia/Sydney 2012-02-28
-2171216 Cobar Cobar Cobar -31.49873 145.84183 P PPL AU 02 11750 4199 285 Australia/Sydney 2012-02-28
-2171320 Clifton Springs Clifton Springs Clifton Springs,Klifton Springs,Клифтон Спрингс -38.1567 144.5551 P PPL AU 07 22750 7413 -9999 Australia/Melbourne 2012-02-28
-2171360 Cleveland Cleveland Cleveland -27.53333 153.26667 P PPL AU 04 36250 13776 12 Australia/Brisbane 2012-01-18
-2171465 Clarence Town Clarence Town Clarence Town -32.58395 151.77757 P PPL AU 02 12700 2108 6 Australia/Sydney 2012-02-28
-2171476 Claremont Claremont Claremont -42.78333 147.25 P PPL AU 06 62610 7504 17 Australia/Hobart 2012-02-02
-2171507 Wollongong Wollongong City of Greater Wollongong,Vullongong,Wollongong,wo long gang,Вуллонгонг,卧龙岗 -34.424 150.89345 P PPL AU 02 18450 260914 1 Australia/Sydney 2012-02-28
-2171522 Churchill Churchill -27.64233 152.75022 P PPL AU 04 33960 1778 46 Australia/Brisbane 2011-08-26
-2171586 Chipping Norton Chipping Norton Chipping Norton -33.9 150.95 P PPL AU 02 12850 8579 15 Australia/Sydney 2012-02-02
-2171589 Chippendale Chippendale -33.88673 151.19745 P PPLX AU 02 17200 4066 21 Australia/Sydney 2011-06-04
-2171594 Chinderah Chinderah Chinderah -28.23333 153.55 P PPL AU 02 1340 -9999 Australia/Sydney 2012-01-18
-2171596 Chinchilla Chinchilla Chinchilla,Чинчилла -26.73787 150.6297 P PPL AU 04 37310 3250 302 Australia/Brisbane 2012-02-28
-2171707 Chatswood Chatswood Chatswood -33.8 151.18333 P PPL AU 02 18250 7777 108 Australia/Sydney 2012-01-18
-2171722 Charters Towers Charters Towers Charters Towers -20.07671 146.26354 P PPL AU 04 32310 9573 307 Australia/Brisbane 2012-02-28
-2171766 Charlestown Charlestown Charlestown -32.95 151.66667 P PPL AU 02 14650 11725 21 Australia/Sydney 2012-01-18
-2171845 Cessnock Cessnock Cessnock,Sesnok,Сеснок -32.83211 151.35623 P PPL AU 02 11720 16393 152 Australia/Sydney 2012-02-28
-2171948 Caulfield Caulfield -37.88251 145.02288 P PPL AU 07 22310 4790 36 Australia/Melbourne 2011-08-26
-2172106 Castlemaine Castlemaine Castlemaine -37.06709 144.21684 P PPL AU 07 25430 6604 283 Australia/Melbourne 2012-02-28
-2172111 Castle Hill Castle Hill Castle Hill -33.73333 151 P PPL AU 02 10500 35389 126 Australia/Sydney 2012-01-18
-2172125 Castlecrag Castlecrag -33.8 151.21667 P PPL AU 02 18250 2804 74 Australia/Sydney 2011-06-04
-2172153 Casino Casino Casino -28.85819 153.04748 P PPL AU 02 16610 9539 144 Australia/Sydney 2012-02-28
-2172303 Carlingford Carlingford -33.78269 151.04888 P PPL AU 02 16250 21364 105 Australia/Sydney 2011-06-04
-2172311 Caringbah Caringbah -34.05 151.13333 P PPL AU 02 17150 21283 34 Australia/Sydney 2011-06-04
-2172349 Cardiff Cardiff Cardiff -32.95 151.66667 P PPL AU 02 14650 2883 21 Australia/Sydney 2012-02-02
-2172453 Canowindra Canowindra Canowindra -33.56247 148.66434 P PPL AU 02 11400 2125 303 Australia/Sydney 2012-02-28
-2172517 Canberra Canberra Camberra,Canberra,Gorad Kanbera,Kamberra,Kambra,Kampera,Kanapera,Kanbera,Kanbero,Kanberra,Kanberrae,Kanbérra,Kānapera,kaenbeola,kainabara,kan pei la,kanbra,kanpara,kenabera,kyanabera,kyanbera,kynbra,qnbrh,Καμπέρα,Горад Канбера,Канбера,Канберрæ,Канберра,Канбє́ра,Կանբեռա,קאנבערא,קנברה,كانبرا,کانبرا,کینبرا,कॅनबेरा,कैनबरा,ক্যানবেরা,கான்பரா,แคนเบอร์รา,ཁན་པེ་ར།,კანბერა,ካንበራ,キャンベラ,坎培拉,堪培拉,캔버라 -35.28346 149.12807 P PPLC AU 01 327700 571 Australia/Sydney 2009-08-04
-2172563 Camperdown Camperdown -33.88965 151.17642 P PPLX AU 02 15200 6545 24 Australia/Sydney 2011-06-04
-2172586 Campbelltown Campbelltown Campbelltown -34.06667 150.81667 P PPL AU 02 11500 8017 84 Australia/Sydney 2012-01-18
-2172677 Cambridge Cambridge Cambridge -42.83333 147.45 P PPL AU 06 61410 1191 34 Australia/Hobart 2012-01-18
-2172686 Camberwell Camberwell Camberwell -37.84205 145.0694 P PPL AU 07 21110 19637 47 Australia/Melbourne 2011-08-26
-2172710 Caloundra Caloundra Caloundra,Kalundra,Калундра -26.79709 153.13771 P PPL AU 04 36710 38706 1 Australia/Brisbane 2012-02-28
-2172797 Cairns Cairns Cairns,Kerns,kai en si,keanzu,Кернс,ケアンズ,凱恩斯 -16.92304 145.76625 P PPL AU 04 32070 154225 1 Australia/Brisbane 2012-02-28
-2172832 Caboolture Caboolture Caboolture -27.08465 152.9511 P PPL AU 04 35010 21478 61 Australia/Brisbane 2012-02-28
-2172880 Byron Bay Byron Bay Byron Bay -28.64201 153.61194 P PPL AU 02 11350 6764 1 Australia/Sydney 2012-02-28
-2172930 Buxton Buxton Buxton -34.26017 150.53288 P PPL AU 02 18400 1698 249 Australia/Sydney 2012-02-28
-2173041 Burringbar Burringbar Burringbar -28.4358 153.47324 P PPL AU 02 17550 1190 103 Australia/Sydney 2012-02-28
-2173099 Burpengary Burpengary -27.15746 152.95758 P PPL AU 04 35010 8280 18 Australia/Brisbane 2011-06-04
-2173125 Burnie Burnie Burnie -41.05584 145.90375 P PPL AU 06 60610 19972 -9999 Australia/Hobart 2012-02-28
-2173248 Bungendore Bungendore Bungendore -35.25652 149.43999 P PPL AU 02 16180 2806 693 Australia/Sydney 2012-02-28
-2173306 Bundanoon Bundanoon Bundanoon -34.65851 150.29913 P PPL AU 02 18350 2034 521 Australia/Sydney 2012-02-28
-2173310 Bundamba Bundamba -27.60947 152.81133 P PPL AU 04 33960 5159 26 Australia/Brisbane 2011-08-26
-2173323 Bundaberg Bundaberg Bandaberg,Bundaberg,Бандаберг -24.86621 152.3479 P PPL AU 04 31820 52472 8 Australia/Brisbane 2012-02-28
-2173445 Bulli Bulli Bulli -34.33333 150.91667 P PPL AU 02 18450 5455 26 Australia/Sydney 2012-02-02
-2173557 Bulahdelah Bulahdelah Bulahdelah,Bullah Delah -32.40698 152.21185 P PPL AU 02 13400 1595 79 Australia/Sydney 2012-02-28
-2173592 Budgewoi Budgewoi Budgewoi -33.2339 151.55412 P PPL AU 02 2954 1 Australia/Sydney 2012-02-28
-2173605 Buderim Buderim Buderim -26.68443 153.05705 P PPL AU 04 36710 15228 49 Australia/Brisbane 2012-02-28
-2173738 Brunswick Heads Brunswick Heads Brunswick,Brunswick Heads -28.54154 153.5481 P PPL AU 02 11350 1612 1 Australia/Sydney 2012-02-28
-2173741 Brunswick Brunswick Brunswick -37.76667 144.96667 P PPL AU 07 25250 19867 51 Australia/Melbourne 2012-01-18
-2173824 Broulee Broulee Broulee -35.85469 150.17392 P PPL AU 02 12750 1291 10 Australia/Sydney 2011-06-05
-2173911 Broken Hill Broken Hill Broken Hill,Broken-Khill,Willyama,burokunhiru,Брокен-Хилл,ブロークンヒル -31.96173 141.45998 P PPL AU 02 11250 17395 304 Australia/Broken_Hill 2012-02-28
-2173964 Broadmeadows Broadmeadows -37.68015 144.91877 P PPL AU 07 23270 9985 125 Australia/Melbourne 2011-06-04
-2174003 Brisbane Brisbane Brisbane,Brisbane City,Brisbano,Brisben,Brisbenas,Brizbejn,beulijeubeon,brisben,brysban,bryzbyn,bryzbyyn,bu li si ban,burisuben,pirispen,Бризбейн,Брисбен,בריזביין,برىسبان,بريزبين,بریزبین,பிறிஸ்பேன்,บริสเบน,ブリスベン,布里斯班,브리즈번 -27.46794 153.02809 P PPLA AU 04 31000 958504 27 Australia/Brisbane 2011-06-04
-2174006 Bringelly Bringelly Bringelly -33.93333 150.73333 P PPL AU 02 14900 1717 70 Australia/Sydney 2012-02-02
-2174040 Brighton Brighton -27.29582 153.05721 P PPL AU 04 31000 8600 7 Australia/Brisbane 2011-08-26
-2174066 Bridport Bridport Bridport,Бридпорт -41.00046 147.39175 P PPL AU 06 1805 -9999 Australia/Hobart 2012-02-28
-2174079 Bridgewater Bridgewater Bridge Water Junction,Bridgewater,North Bridgewater -42.73719 147.22784 P PPL AU 06 60410 7790 5 Australia/Hobart 2012-02-28
-2174123 Brewarrina Brewarrina Brewarrina -29.96067 146.85986 P PPL AU 02 11200 1185 125 Australia/Sydney 2012-02-28
-2174190 Branxton Branxton Branxton -32.65547 151.35114 P PPL AU 02 11720 1971 126 Australia/Sydney 2012-02-28
-2174254 Braidwood Braidwood Braidwood -35.44148 149.7998 P PPL AU 02 16180 1467 586 Australia/Sydney 2012-02-28
-2174360 Box Hill Box Hill -37.81887 145.12545 P PPL AU 07 26980 8616 103 Australia/Melbourne 2011-08-26
-2174396 Bowraville Bowraville Bowra,Bowraville -30.64997 152.85146 P PPL AU 02 15700 1323 102 Australia/Sydney 2012-02-28
-2174400 Bowral Bowral Bowral -34.4775 150.4204 P PPL AU 02 18350 9605 493 Australia/Sydney 2012-02-28
-2174436 Bowenfels Bowenfels Bowenfels,South Bowenfels -33.51667 150.11667 P PPL AU AU 02 14870 1971 890 Australia/Sydney 2012-01-18
-2174444 Bowen Bowen Bowen -20.01367 148.24754 P PPL AU 04 37340 10983 1 Australia/Brisbane 2012-02-28
-2174467 Bourke Bourke Bourke -30.09008 145.94544 P PPL AU 02 11150 2475 101 Australia/Sydney 2012-02-28
-2174563 Botany Botany Botany -33.96667 151.2 P PPL AU 02 7455 -9999 Australia/Sydney 2012-02-02
-2174615 Bordertown Bordertown Bordertaun,Bordertown,Бордертаун -36.30768 140.77167 P PPL AU 05 47630 2583 75 Australia/Adelaide 2012-02-28
-2174669 Boorowa Boorowa Boorowa -34.43661 148.71634 P PPL AU 02 11050 1340 517 Australia/Sydney 2012-02-28
-2174853 Booker Bay Booker Bay Booker Bay -33.51667 151.35 P PPL AU 02 1405 -9999 Australia/Sydney 2012-02-02
-2174892 Bonville Bonville Bonville -30.38333 153.06667 P PPL AU 02 11800 1891 32 Australia/Sydney 2012-01-18
-2174933 Bongaree Bongaree Bongaree,Bribie -27.08367 153.15942 P PPL AU 04 35010 13649 1 Australia/Brisbane 2012-02-28
-2174973 Bombala Bombala Bombala,Bomballa -36.90873 149.23903 P PPL AU 02 11000 1205 728 Australia/Sydney 2012-02-28
-2174976 Bomaderry Bomaderry Bomaderry -34.84967 150.61093 P PPL AU 02 16950 6600 23 Australia/Sydney 2012-02-28
-2174979 Bolwarra Bolwarra -32.71667 151.56667 P PPL AU 02 15050 1949 11 Australia/Sydney 2011-06-04
-2175076 Boggabri Boggabri Bogabri,Boggabri -30.70953 150.04121 P PPL AU 02 15750 1071 302 Australia/Sydney 2012-02-28
-2175077 Boggabilla Boggabilla Boggabilla -28.60477 150.35934 P PPL AU 02 15300 1179 239 Australia/Sydney 2012-02-28
-2175159 Boambee Boambee Boambee -30.35 153.1 P PPL AU 02 11800 1719 0 Australia/Sydney 2012-01-18
-2175338 Blayney Blayney Blayney -33.53233 149.25367 P PPL AU 02 10850 3090 870 Australia/Sydney 2011-10-22
-2175341 Blaxland Blaxland Blaxland -33.75 150.6 P PPL AU 02 10900 6953 120 Australia/Sydney 2012-01-18
-2175375 Blair Athol Blair Athol -30.65 150.2 P PPL AU 02 15750 2625 281 Australia/Sydney 2011-06-04
-2175403 Blackwater Blackwater Blackwater -23.58351 148.87912 P PPL AU 04 32270 7250 218 Australia/Brisbane 2012-02-28
-2175408 Blackwall Blackwall Blackwall -33.5 151.31667 P PPL AU 02 13100 1859 6 Australia/Sydney 2012-02-02
-2175411 Blacktown Blacktown Blacktown -33.76667 150.91667 P PPL AU 02 10750 38914 67 Australia/Sydney 2012-01-18
-2175527 Blackmans Bay Blackmans Bay Blackman Bay -43.01667 147.31667 P PPL AU AU 06 63610 6341 155 Australia/Hobart 2011-06-04
-2175553 Blackheath Blackheath Blackheath -33.63375 150.28576 P PPL AU 02 10900 4178 869 Australia/Sydney 2012-02-27
-2175760 Bingara Bingara Bingara -29.86931 150.57204 P PPL AU 02 13660 1205 309 Australia/Sydney 2012-02-28
-2175819 Biloela Biloela Biloela -24.41667 150.5 P PPL AU 04 30370 6309 176 Australia/Brisbane 2012-01-18
-2175872 Bilambil Bilambil -28.23333 153.46667 P PPL AU 02 17550 2991 118 Australia/Sydney 2011-06-04
-2175974 Bexley Bexley Bexley -33.95 151.11667 P PPL AU 02 16650 3763 45 Australia/Sydney 2012-01-18
-2176053 Berry Berry Berri,Berry,Берри -34.77527 150.69064 P PPL AU 02 16950 1934 58 Australia/Sydney 2012-02-28
-2176065 Berrigan Berrigan Berrigan,Berrigehn,Берригэн -35.65879 145.81145 P PPL AU 02 10650 1311 141 Australia/Sydney 2012-02-28
-2176066 Berriedale Berriedale Berriedale -42.81667 147.25 P PPL AU 06 62610 2690 31 Australia/Hobart 2012-01-18
-2176067 Berridale Berridale Berridale -36.36565 148.82677 P PPL AU 02 17050 1414 914 Australia/Sydney 2012-02-28
-2176071 Berri Berri Berri,Берри -34.28107 140.59958 P PPL AU 05 40520 4330 23 Australia/Adelaide 2012-02-28
-2176081 Berowra Berowra -33.63333 151.15 P PPL AU 02 14000 4284 181 Australia/Sydney 2011-06-04
-2176087 Bermagui Bermagui Bermaguee,Bermagui -36.419 150.06355 P PPL AU 02 10550 1927 -9999 Australia/Sydney 2012-02-28
-2176088 Berkeley Vale Berkeley Vale Berkeley Vale -33.35 151.43333 P PPL AU 02 18550 7980 39 Australia/Sydney 2012-02-02
-2176090 Berkeley Berkeley Berkeley -34.48333 150.85 P PPL AU 02 18450 7413 4 Australia/Sydney 2012-02-02
-2176096 Beresfield Beresfield Beresfield -32.8 151.65 P PPL AU 02 15900 3117 20 Australia/Sydney 2012-02-02
-2176123 Bentleigh Bentleigh -37.91806 145.03544 P PPLX AU 07 22310 14271 31 Australia/Melbourne 2011-06-04
-2176124 Bensville Bensville Bensville -33.5 151.38333 P PPL AU 02 13100 2816 25 Australia/Sydney 2012-01-18
-2176187 Bendigo Bendigo Bendigo,bendigo,Бендиго -36.75818 144.28024 P PPL AU 07 22620 81657 221 Australia/Melbourne 2012-02-28
-2176225 Benalla Benalla Benalla -36.55113 145.98425 P PPL AU 07 21010 9020 159 Australia/Melbourne 2012-02-28
-2176263 Belmont Belmont Belmont -33.03333 151.66667 P PPL AU 02 14650 1165 6 Australia/Sydney 2012-01-18
-2176295 Bellingen Bellingen Bellingen -30.45294 152.89911 P PPL AU 02 10600 1598 162 Australia/Sydney 2012-02-28
-2176313 Bellerive Bellerive Bellerive -42.86667 147.36667 P PPL AU 06 61410 4316 15 Australia/Hobart 2012-01-18
-2176373 Belconnen Belconnen Belconnen -35.21667 149.08333 P PPL AU 01 3057 583 Australia/Sydney 2012-01-18
-2176401 Bega Bega Bega,Бега -36.67392 149.84178 P PPL AU 02 10550 4537 80 Australia/Sydney 2012-02-28
-2176478 Beauty Point Beauty Point B'juti Point,Beauty Point,Бьюти Поинт -41.15663 146.82108 P PPL AU 06 65810 1116 -9999 Australia/Hobart 2012-02-28
-2176537 Beaconsfield Upper Beaconsfield Upper Beaconsfield Upper,Upper Beaconsfield -37.99415 145.4142 P PPL AU 07 21450 3119 155 Australia/Melbourne 2012-02-28
-2176541 Beaconsfield Beaconsfield Beaconsfield -41.20227 146.81723 P PPL AU 06 65810 1217 16 Australia/Hobart 2012-02-28
-2176632 Bathurst Bathurst Bathurst,Behtkherst,Бэтхерст -33.41665 149.5806 P PPL AU 02 10470 40000 670 Australia/Sydney 2011-10-22
-2176639 Batemans Bay Batemans Bay Bateman,Batemans,Batemans Bay -35.70658 150.17542 P PPL AU 02 12750 10557 -9999 Australia/Sydney 2012-02-28
-2176829 Barmera Barmera Barmera -34.25562 140.46147 P PPL AU 05 40520 2830 33 Australia/Adelaide 2012-02-28
-2176934 Banora Point Banora Point -28.21298 153.53634 P PPL AU 02 17550 27368 4 Australia/Sydney 2011-06-04
-2177069 Ballina Ballina Ballina,West Ballina -28.86414 153.56541 P PPL AU 02 10250 14242 1 Australia/Sydney 2012-02-28
-2177091 Ballarat Ballarat Ballaarat,Ballarat,Балларат -37.56622 143.84957 P PPL AU 07 20570 85109 445 Australia/Melbourne 2011-08-29
-2177233 Bairnsdale Bairnsdale Bairnsdale,Bairsdale -37.82289 147.61041 P PPL AU 07 22110 11005 1 Australia/Melbourne 2012-02-28
-2177394 Bacchus Marsh Bacchus Marsh -37.67268 144.43829 P PPL AU 07 25150 13575 111 Australia/Melbourne 2011-08-25
-2177413 Ayr Ayr Ayr -19.57393 147.40666 P PPL AU 04 31900 9078 5 Australia/Brisbane 2012-02-28
-2177481 Austins Ferry Austins Ferry Austins Ferry -42.76667 147.25 P PPL AU 06 62610 2056 9 Australia/Hobart 2012-01-18
-2177541 Atherton Atherton Atherton -17.26864 145.47522 P PPL AU 04 36810 6959 819 Australia/Brisbane 2012-02-28
-2177671 Armidale Armidale Armidale,Armidejl,Армидейл -30.50828 151.67123 P PPL AU 02 10110 22673 1007 Australia/Sydney 2012-02-28
-2177756 Ararat Ararat Ararat,Butingitch,Арарат -37.28542 142.92728 P PPL AU 07 20260 6110 304 Australia/Melbourne 2012-02-28
-2177810 Apollo Bay Apollo Bay Apollo Bay,Apollo Behj,Kambruk,Krambruck,Krambruk,Аполло Бэй -38.7594 143.6722 P PPL AU 07 21750 1777 1 Australia/Melbourne 2012-02-28
-2177872 Anglesea Anglesea Anglesea,Anglesea River,Ehnglsi,Энглси -38.4073 144.18587 P PPL AU 07 26490 2290 5 Australia/Melbourne 2012-02-28
-2178174 Albury Albury Albury,Olberi,Олбери -36.07494 146.92394 P PPL AU 02 10050 104258 183 Australia/Sydney 2012-02-28
-2205625 Holmesville Holmesville -32.9 151.59167 P PPL AU 02 14650 1544 109 Australia/Sydney 2011-06-04
-2205628 Lambton Lambton -32.91667 151.7 P PPL AU 02 15900 4681 32 Australia/Sydney 2011-06-04
-2205629 New Lambton New Lambton -32.95 151.68333 P PPL AU 02 14650 1791 102 Australia/Sydney 2011-06-04
-2205631 Raymond Terrace Raymond Terrace -32.75 151.75 P PPL AU 02 16400 13606 255 Australia/Sydney 2011-06-04
-2205838 Mayfield Mayfield Mayfield -41.38722 147.13333 P PPL AU 06 64010 1515 74 Australia/Hobart 2012-01-19
-2205847 Invermay Invermay Invermay -41.39167 147.13056 P PPLX AU 06 64010 3120 62 Australia/Hobart 2012-01-19
-2205969 Gymea Gymea -34.03333 151.08333 P PPLX AU 02 17150 7419 75 Australia/Sydney 2011-06-04
-2205970 Kirrawee Kirrawee -34.03333 151.06667 P PPLX AU 02 17150 8945 108 Australia/Sydney 2011-06-04
-2205971 Loftus Loftus Loftus -34.05 151.05 P PPLX AU 02 17150 3981 116 Australia/Sydney 2012-01-19
-2205973 Dolans Bay Dolans Bay -34.05 151.11667 P PPLX AU 02 17150 1228 49 Australia/Sydney 2011-06-04
-2205977 Bundeena Bundeena -34.08333 151.15 P PPL AU 02 1925 9 Australia/Sydney 2010-05-13
-2205979 Gymea Bay Gymea Bay Gymea Bay -34.05 151.08333 P PPLX AU 02 17150 7419 66 Australia/Sydney 2012-01-19
-2205983 Kareela Kareela Kareela -34.01667 151.08333 P PPLX AU 02 17150 2438 39 Australia/Sydney 2012-01-19
-2205987 Bonnet Bay Bonnet Bay Bonnet Bay -34 151.05 P PPLX AU 02 17150 2182 23 Australia/Sydney 2012-01-19
-2205988 Oyster Bay Oyster Bay -34 151.06667 P PPL AU 02 17150 4981 28 Australia/Sydney 2011-06-04
-2205989 Grays Point Grays Point Grays Point -34.05 151.08333 P PPLX AU 02 17150 2831 66 Australia/Sydney 2012-01-19
-2205999 Brighton-Le-Sands Brighton-Le-Sands Brighton-Le-Sands -33.95 151.15 P PPLX AU 02 16650 7193 9 Australia/Sydney 2012-01-19
-2206000 Monterey Monterey Monterey -33.96667 151.15 P PPLX AU 02 16650 4148 6 Australia/Sydney 2012-01-19
-2206001 Ramsgate Ramsgate Ramsgate -33.98333 151.15 P PPLX AU 02 1433 -9999 Australia/Sydney 2012-01-19
-2206003 Blakehurst Blakehurst Blakehurst -33.98333 151.1 P PPLX AU 02 14450 5338 38 Australia/Sydney 2012-01-19
-2206004 Connells Point Connells Point -33.98333 151.08333 P PPLX AU 02 14450 2862 45 Australia/Sydney 2011-06-04
-2206006 Lugarno Lugarno -33.98333 151.03333 P PPLX AU 02 5707 0 Australia/Sydney 1994-12-14
-2206007 Peakhurst Peakhurst Peakhurst -33.96667 151.05 P PPLX AU 02 14150 2294 45 Australia/Sydney 2012-01-19
-2206008 Padstow Padstow Padstow -33.95 151.03333 P PPLX AU 02 10350 3444 13 Australia/Sydney 2012-01-19
-2206048 Goodwood Goodwood Goodwood -42.825 147.29444 P PPL AU 06 62610 1121 10 Australia/Hobart 2012-01-19
-2206066 Lutana Lutana Lutana -42.83611 147.31111 P PPL AU 06 62610 2336 69 Australia/Hobart 2012-01-19
-2206068 New Town New Town New Town -42.86 147.30833 P PPL AU 06 62810 5870 50 Australia/Hobart 2012-01-19
-2206082 Lake Heights Lake Heights -34.48667 150.875 P PPLX AU 02 18450 2922 16 Australia/Sydney 2011-06-04
-2206089 Sandy Bay Sandy Bay -42.913 147.35318 P PPL AU 06 62810 11334 22 Australia/Hobart 2011-06-04
-2206108 Fairy Meadow Fairy Meadow Fairy Meadow -34.39667 150.89583 P PPLX AU 02 18450 6424 9 Australia/Sydney 2012-01-19
-2206110 Mount Ousley Mount Ousley Mount Ousley -34.4 150.875 P PPLX AU 02 18450 1686 60 Australia/Sydney 2012-01-19
-2206111 Mount Keira Mount Keira -34.41889 150.85417 P PPLX AU 02 18450 1444 56 Australia/Sydney 2011-06-04
-2206112 Gwynneville Gwynneville Gwynneville -34.41667 150.8875 P PPLX AU 02 18450 2523 9 Australia/Sydney 2012-01-19
-2206116 Mangerton Mangerton Mangerton -34.43667 150.87167 P PPLX AU 02 18450 2801 37 Australia/Sydney 2012-01-19
-2206117 Mount Saint Thomas Mount Saint Thomas -34.44333 150.87222 P PPLX AU 02 18450 1483 20 Australia/Sydney 2011-06-04
-2206599 Palm Cove Palm Cove -16.75 145.66667 P PPL AU 04 32070 1500 21 Australia/Brisbane 2011-06-04
-2206601 Yorkeys Knob Yorkeys Knob Yorkeys Knob,Yorkeys Knob Beach -16.81667 145.71667 P PPL AU 04 32070 2645 9 Australia/Brisbane 2012-01-19
-2207259 South Brisbane South Brisbane -27.48333 153.01667 P PPLX AU 04 31000 60000 31 Australia/Brisbane 2011-06-04
-2207330 Scarborough Scarborough Scarborough -27.20083 153.11028 P PPL AU 04 35010 9837 16 Australia/Brisbane 2012-01-19
-2207598 Laverton Laverton -37.86202 144.76979 P PPL AU 07 23110 4508 13 Australia/Melbourne 2011-09-02
-2207611 North Brighton North Brighton -37.90694 145.00528 P PPLX AU 07 20910 2109 21 Australia/Melbourne 2011-06-04
-2207616 Highett Highett Highett -37.95167 145.03944 P PPL AU 07 20910 9402 41 Australia/Melbourne 2012-01-19
-2207620 Parkdale Parkdale -37.99423 145.07339 P PPL AU 07 23430 10618 17 Australia/Melbourne 2011-08-26
-2207748 Bellevue Hill Bellevue Hill Bellevue Hill -33.87944 151.25056 P PPLX AU 02 18500 9447 72 Australia/Sydney 2012-01-19
-2207753 Paddington Paddington Paddington,Paddington, Sydney, NSW -33.88528 151.23 P PPLX AU 02 18500 11661 61 Australia/Sydney 2012-01-19
-2207762 Lilyfield Lilyfield -33.87611 151.16556 P PPLX AU 02 14800 6759 28 Australia/Sydney 2011-06-04
-2207783 Drummoyne Drummoyne Drummoyne -33.85361 151.15417 P PPLX AU 02 11520 10385 29 Australia/Sydney 2012-01-19
-2207796 Greenwich Greenwich Greenwich -33.84056 151.18306 P PPLX AU 02 14700 5053 18 Australia/Sydney 2012-01-19
-2207809 Hunters Hill Hunters Hill Hunters Hill -33.83333 151.14083 P PPLX AU 02 14100 9024 34 Australia/Sydney 2012-01-19
-2207817 Longueville Longueville Longueville -33.83278 151.16639 P PPLX AU 02 14700 2035 33 Australia/Sydney 2012-01-19
-2207821 Crows Nest Crows Nest Crows Nest -33.82806 151.20167 P PPLX AU 02 15950 3152 102 Australia/Sydney 2012-01-19
-2207822 Cammeray Cammeray Cammeray -33.8225 151.21583 P PPLX AU 02 15950 6693 65 Australia/Sydney 2012-01-19
-2207841 Clontarf Clontarf Clontarf -33.80972 151.25667 P PPLX AU 02 15150 1580 47 Australia/Sydney 2012-01-19
-2207879 Cremorne Cremorne Cremorne -33.83333 151.225 P PPLX AU 02 15950 1817 87 Australia/Sydney 2012-01-19
-2207880 Neutral Bay Neutral Bay Neutral Bay -33.83889 151.21667 P PPLX AU 02 15950 10276 34 Australia/Sydney 2012-01-19
-2207901 Point Piper Point Piper -33.86667 151.25 P PPLX AU 02 18500 1406 39 Australia/Sydney 2011-06-04
-2207908 Darling Point Darling Point Darling Point -33.87083 151.23889 P PPLX AU 02 18500 3844 44 Australia/Sydney 2012-01-19
-2207912 Dover Heights Dover Heights Dover Heights -33.87083 151.27917 P PPLX AU 02 18050 3930 61 Australia/Sydney 2012-01-19
-2208285 Randwick Randwick Randwick -33.91667 151.24167 P PPL AU 02 16550 25819 74 Australia/Sydney 2012-01-19
-2208286 Clovelly Clovelly Clovelly -33.9125 151.25 P PPL AU 02 16550 4428 50 Australia/Sydney 2012-01-19
-2208288 Bronte Bronte Bronte -33.9 151.26667 P PPL AU 02 18050 6120 57 Australia/Sydney 2012-01-19
-2208290 Bondi Bondi -33.89167 151.26667 P PPL AU 02 18050 10373 54 Australia/Sydney 2011-06-04
-2208292 Gladesville Gladesville Gladesville -33.83333 151.13333 P PPL AU 02 14100 10835 28 Australia/Sydney 2012-01-19
-2208302 Forestville Forestville Forestville -33.76667 151.20833 P PPL AU 02 18000 7803 110 Australia/Sydney 2012-01-19
-2208303 Brookvale Brookvale Brookvale -33.76667 151.26667 P PPL AU 02 18000 3225 15 Australia/Sydney 2012-01-19
-2208304 Curl Curl Curl Curl Curl Curl -33.76667 151.29167 P PPL AU 02 18000 2117 1 Australia/Sydney 2012-01-19
-2208305 Dee Why Dee Why -33.75 151.3 P PPL AU 02 18000 17463 -9999 Australia/Sydney 2012-01-12
-6254975 Blairgowrie Blairgowrie -38.36131 144.77955 P PPL AU 07 25340 2000 8 Australia/Melbourne 2011-06-04
-6255012 Flinders Flinders -34.58333 150.85516 P PPL AU 02 16900 4150 22 Australia/Sydney 2011-06-04
-6301965 Palmerston Palmerston Palmerston,Палмерстон -12.48602 130.9833 P PPL AU 03 72800 25000 36 Australia/Darwin 2011-06-04
-6354929 Tom Price Tom Price -22.6939 117.7931 P PPL AU 08 50250 2723 729 Australia/Perth 2011-06-04
-6533368 Moranbah Moranbah -22.00163 148.04661 P PPL AU 04 33980 10000 257 Australia/Brisbane 2011-06-04
-6615520 Heyfield Heyfield -37.9813 146.78559 P PPL AU 07 26810 2024 61 Australia/Melbourne 2011-06-04
-6619483 Kaleen Kaleen -35.21814 149.10516 P PPLS AU 01 7586 599 Australia/Sydney 2012-02-22
-6620339 Karratha Karratha Karatha,Karratha -20.73765 116.84629 P PPL AU 08 57560 11728 20 Australia/Perth 2011-06-04
-6621335 Enfield Enfield -34.8526 138.60255 P PPL AU 05 45890 4389 15 Australia/Adelaide 2011-06-04
-6621336 Hillarys Hillarys -31.80698 115.74045 P PPL AU 08 54170 10160 15 Australia/Perth 2011-06-04
-6621337 Kingsford Kingsford -33.92399 151.22749 P PPL AU 02 16550 14232 29 Australia/Sydney 2011-06-04
-6621338 Klemzig Klemzig -34.87928 138.63562 P PPL AU 05 45890 5087 52 Australia/Adelaide 2011-06-04
-6621354 Osborne Park Osborne Park -31.90066 115.81083 P PPL AU 08 57910 3109 15 Australia/Perth 2011-06-04
-6621356 Seven Mile Beach Seven Mile Beach -42.85759 147.50381 P PPL AU 06 61410 1064 5 Australia/Hobart 2011-06-04
-6690772 Corlette Corlette -32.72014 152.10846 P PPL AU 02 16400 5115 16 Australia/Sydney 2011-06-04
-6692202 Burswood Burswood -31.95872 115.90396 P PPL AU 08 50490 1278 16 Australia/Perth 2011-06-04
-6692248 Howrah Howrah -42.88728 147.40554 P PPL AU 06 61410 7888 8 Australia/Hobart 2011-06-04
-6693094 Springfield Lakes Springfield Lakes -27.66757 152.92488 P PPL AU 04 33960 4851 73 Australia/Brisbane 2011-06-04
-6693769 North Narrabeen North Narrabeen -33.70935 151.29607 P PPL AU 02 16370 5280 5 Australia/Sydney 2011-06-04
-6695255 Joondalup Joondalup -31.74445 115.76835 P PPLL AU 08 54170 8420 49 Australia/Perth 2011-06-04
-6695266 Como Como -31.99119 115.86336 P PPL AU 08 57840 12425 27 Australia/Perth 2011-06-04
-6697124 East Lismore East Lismore -28.81933 153.28743 P PPL AU 02 14850 5209 21 Australia/Sydney 2011-06-04
-6697141 Mindarie Mindarie -31.68932 115.70698 P PPLL AU 08 58760 6507 25 27 Australia/Perth 2011-06-04
-6697150 Clarkson Clarkson -31.68282 115.7247 P PPLL AU 08 58760 7082 28 Australia/Perth 2011-06-04
-6697151 Kinross Kinross -31.71868 115.73839 P PPLL AU 08 54170 7232 43 Australia/Perth 2011-06-04
-6697152 Currambine Currambine -31.73306 115.74766 P PPLL AU 08 54170 5975 57 Australia/Perth 2011-06-04
-6697153 Iluka Iluka -31.73554 115.73058 P PPLL AU 08 54170 3848 20 Australia/Perth 2011-06-04
-6697155 Heathridge Heathridge -31.76244 115.75895 P PPLL AU 08 54170 6882 49 Australia/Perth 2011-06-04
-6776556 Girraween Girraween -33.799 150.943 P PPL AU 02 13950 4059 54 Australia/Sydney 2011-06-04
-6930431 Freshwater Freshwater -33.77867 151.28569 P PPL AU 02 18000 7872 10 18 Australia/Sydney 2011-06-04
-6930555 Tieri Tieri -23.03829 148.34463 P PPL AU 04 32270 1600 266 Australia/Brisbane 2011-06-04
-6931018 Taringa Taringa -27.49061 152.97861 P PPL AU 04 31000 7490 36 Australia/Brisbane 2011-06-04
-6931021 Inala Inala -27.59715 152.97432 P PPL AU 04 31000 12568 40 Australia/Brisbane 2011-08-26
-6941781 Main Beach Main Beach -27.97879 153.4266 P PPL AU 04 33430 3324 0 12 Australia/Brisbane 2011-06-04
-6943454 Paradise Paradise -34.87361 138.66896 P PPL AU 05 40910 6327 72 Australia/Adelaide 2011-06-04
-6943455 Blair Athol Blair Athol -34.85889 138.59656 P PPL AU 05 45890 3969 16 Australia/Adelaide 2011-06-04
-6943474 Athelstone Athelstone -34.86979 138.70288 P PPL AU 05 40910 9290 120 Australia/Adelaide 2011-06-04
-6943551 Wooloowin Wooloowin -27.42244 153.04204 P PPL AU 04 31000 5486 24 Australia/Brisbane 2011-06-04
-6943555 Zillmere Zillmere -27.35591 153.04453 P PPL AU 04 31000 7467 26 Australia/Brisbane 2011-06-04
-6943556 Taigum Taigum -27.34265 153.04444 P PPL AU 04 31000 5164 21 Australia/Brisbane 2011-06-04
-6943558 Bracken Ridge Bracken Ridge -27.3171 153.03097 P PPL AU 04 31000 15355 27 Australia/Brisbane 2011-08-26
-6943568 Woolloongabba Woolloongabba -27.48855 153.03655 P PPLX AU 04 31000 3916 12 Australia/Brisbane 2011-06-04
-6943572 Toowong Toowong -27.4836 152.98943 P PPL AU 04 31000 9873 22 Australia/Brisbane 2011-06-04
-6943579 Windsor Windsor -27.43631 153.02882 P PPLX AU 04 31000 6164 29 Australia/Brisbane 2011-06-04
-6944968 Twin Waters Twin Waters -26.61 153 P PPL AU 04 36710 2542 24 Australia/Brisbane 2011-06-04
-6949375 Canada Bay Canada Bay -33.85 151.15 P PPLX AU 02 11520 1227 10 Australia/Sydney 2011-06-04
-6949376 Camden Camden -34.05 150.7 P PPLX AU 02 11450 4364 65 Australia/Sydney 2011-06-04
-6949377 Canterbury Canterbury -33.9167 151.1 P PPLX AU 02 11550 5417 38 Australia/Sydney 2011-06-04
-6951335 Forresters Beach Forresters Beach -33.407 151.476 P PPL AU 02 13100 2289 49 Australia/Sydney 2011-06-04
-6951440 Tamborine Mountain Tamborine Mountain Mount Tamborine -27.96954 153.19937 P PPL AU 04 36510 6535 525 Australia/Brisbane 2011-06-04
-6952201 East Melbourne East Melbourne East Melbourne,Melbourne East -37.81667 144.9879 P PPL AU 07 24600 4330 32 Australia/Melbourne 2011-06-04
-6955345 Rainbow Beach Rainbow Beach -25.90432 153.09174 P PPL AU 04 33620 88946 22 Australia/Brisbane 2011-06-04
-7280463 North Shore North Shore -31.40237 152.90185 P PPL AU 02 16380 207241 3 Australia/Sydney 2011-06-04
-7281782 North Ryde North Ryde -33.79677 151.12436 P PPL AU 02 16700 17208 79 Australia/Sydney 2012-03-01
-7281804 North Melbourne North Melbourne Melbourne North,North Melbourne -37.80289 144.94816 P PPL AU 07 24600 9962 33 Australia/Melbourne 2011-06-04
-7281805 Caroline Springs Caroline Springs -37.74124 144.73631 P PPL AU 07 24650 10880 82 Australia/Melbourne 2011-06-04
-7281807 Hoppers Crossing Hoppers Crossing -37.88264 144.7003 P PPL AU 07 27260 38108 30 Australia/Melbourne 2011-06-04
-7281818 West Melbourne West Melbourne Melbourne West,West Melbourne -37.81014 144.95 P PPL AU 07 24600 3037 23 Australia/Melbourne 2011-06-04
-7281823 Rouse Hill Rouse Hill -33.68207 150.9154 P PPL AU 02 10750 6474 53 Australia/Sydney 2011-06-04
-7281838 Logan City Logan City Logan,Logan City -27.63917 153.10944 P PPL AU 04 34590 253861 39 Australia/Brisbane 2011-06-04
-7281839 Carindale Carindale -27.50578 153.10236 P PPL AU 04 31000 15135 14 Australia/Brisbane 2011-06-04
-7281840 Paramatta Paramatta -33.8178 151.00348 P PPL AU 02 16250 18448 26 Australia/Sydney 2011-06-04
-7281844 Macquarie Macquarie -35.25126 149.06362 P PPL AU 01 2385 618 Australia/Sydney 2010-03-18
-7281850 Ferntree Gully Ferntree Gully -37.88461 145.29539 P PPL AU 07 23670 24724 125 Australia/Melbourne 2011-06-04
-7289886 Fullarton Fullarton -34.951 138.629 P PPLX AU 05 47980 4083 76 Australia/Adelaide 2011-06-04
-7302189 Macarthur Macarthur -35.40856 149.13196 P PPL AU 01 1582 642 Australia/Sydney 2010-05-28
-7302259 City of Parramatta City of Parramatta City of Parramatta,Parramatta -33.81667 151 P PPL AU 02 16250 148086 24 Australia/Sydney 2011-06-04
-7302624 Phillip Island Phillip Island -38.48349 145.23102 P PPL AU 07 20740 7071 48 Australia/Melbourne 2011-06-04
-7302625 Springwood Springwood -27.61183 153.12899 P PPL AU 04 34590 8952 46 Australia/Brisbane 2011-06-04
-7302628 Adelaide Hills Adelaide Hills -34.91118 138.70735 P PPL AU 05 40120 60000 426 Australia/Adelaide 2011-06-04
-7302629 Erskine Erskine -32.55717 115.70657 P PPL AU 08 55110 3099 3 Australia/Perth 2011-06-04
-7302631 Canning Vale Canning Vale -32.05798 115.91814 P PPL AU 08 51330 23289 24 Australia/Perth 2011-06-04
-7302634 Varsity Lakes Varsity Lakes -28.0894 153.4122 P PPL AU 04 33430 11796 5 Australia/Brisbane 2011-06-04
-7302635 Roselands Roselands -33.93317 151.0732 P PPL AU 02 11550 3467 51 Australia/Sydney 2011-06-04
-7302638 Oxenford Oxenford -27.89033 153.31309 P PPL AU 04 33430 9007 8 Australia/Brisbane 2011-06-04
-7302640 Toormina Toormina -30.35262 153.09028 P PPL AU 02 11800 6551 8 Australia/Sydney 2011-06-04
-7302642 Glenmore Park Glenmore Park -33.79068 150.6693 P PPL AU 02 16350 19200 48 Australia/Sydney 2011-06-04
-7303211 Magnetic Island Magnetic Island -19.15514 146.8485 P PPLX AU 04 37010 2107 20 Australia/Brisbane 2011-06-04
-7932573 Melton West Melton West -37.67852 144.56883 P PPL AU 07 24650 10381 140 Australia/Melbourne 2011-08-25
-7932574 Brookfield Brookfield -37.7008 144.56025 P PPL AU 07 24650 3168 121 Australia/Melbourne 2011-08-25
-7932575 Kurunjang Kurunjang -37.67587 144.5969 P PPL AU 07 24650 6728 142 Australia/Melbourne 2011-08-25
-7932610 Ashburton Ashburton -37.86259 145.07936 P PPL AU 07 21110 7173 55 Australia/Melbourne 2011-08-26
-7932611 Ashwood Ashwood -37.86659 145.10553 P PPL AU 07 24970 12420 56 Australia/Melbourne 2011-08-26
-7932612 Glen Iris Glen Iris -37.85995 145.05489 P PPL AU 07 26350 23270 49 Australia/Melbourne 2011-08-26
-7932614 Toorak Toorak -37.84077 145.00957 P PPL AU 07 26350 13127 35 Australia/Melbourne 2011-08-26
-7932615 Armadale Armadale -37.8552 145.02176 P PPL AU 07 26350 8467 54 Australia/Melbourne 2011-08-26
-7932616 Windsor Windsor -37.8548 144.99267 P PPL AU 07 26350 6394 25 Australia/Melbourne 2011-08-26
-7932617 Balaclava Balaclava -37.86916 144.99773 P PPL AU 07 25900 5035 17 Australia/Melbourne 2011-08-26
-7932618 Caulfield North Caulfield North -37.87255 145.02262 P PPL AU 07 22310 14034 43 Australia/Melbourne 2011-08-26
-7932619 Elsternwick Elsternwick -37.88441 145.00434 P PPL AU 07 22310 9286 26 Australia/Melbourne 2011-08-26
-7932620 Elwood Elwood -37.8817 144.98305 P PPL AU 07 25900 13785 8 Australia/Melbourne 2011-08-26
-7932622 Burwood Burwood -37.84978 145.11901 P PPL AU 07 26980 11886 80 Australia/Melbourne 2011-08-26
-7932623 Box Hill South Box Hill South -37.83236 145.12098 P PPL AU 07 26980 7387 105 Australia/Melbourne 2011-08-26
-7932624 Blackburn Blackburn -37.81901 145.15326 P PPL AU 07 26980 11958 104 Australia/Melbourne 2011-08-26
-7932625 Canterbury Canterbury -37.8247 145.08476 P PPL AU 07 21110 7660 83 Australia/Melbourne 2011-08-26
-7932626 Surrey Hills Surrey Hills -37.82524 145.10038 P PPL AU 07 26980 13105 103 Australia/Melbourne 2011-08-26
-7932627 Hawthorn East Hawthorn East -37.82484 145.0464 P PPL AU 07 21110 13133 49 Australia/Melbourne 2011-08-26
-7932628 Kew East Kew East -37.79758 145.05378 P PPL AU 07 21110 6140 46 Australia/Melbourne 2011-08-26
-7932629 Balwyn North Balwyn North -37.79086 145.09386 P PPL AU 07 21110 19968 59 Australia/Melbourne 2011-08-26
-7932630 Mont Albert North Mont Albert North -37.80043 145.10828 P PPL AU 07 26980 5008 87 Australia/Melbourne 2011-08-26
-7932631 Box Hill North Box Hill North -37.80266 145.12656 P PPL AU 07 26980 10649 81 Australia/Melbourne 2011-08-26
-7932632 Blackburn North Blackburn North -37.80931 145.1518 P PPL AU 07 26980 6816 112 Australia/Melbourne 2011-08-26
-7932633 Forest Hill Forest Hill -37.83656 145.16519 P PPL AU 07 26980 9315 121 Australia/Melbourne 2011-08-26
-7932634 Blackburn South Blackburn South -37.83975 145.15549 P PPL AU 07 26980 10129 121 Australia/Melbourne 2011-08-26
-7932635 Chadstone Chadstone -37.88766 145.09519 P PPL AU 07 24970 12357 60 Australia/Melbourne 2011-08-26
-7932636 Carnegie Carnegie -37.88867 145.05713 P PPL AU 07 22310 15084 50 Australia/Melbourne 2011-08-26
-7932637 Glen Huntly Glen Huntly -37.88949 145.04605 P PPL AU 07 22310 4085 48 Australia/Melbourne 2011-08-26
-7932638 Malvern East Malvern East -37.87397 145.04253 P PPL AU 07 26350 19593 60 Australia/Melbourne 2011-08-26
-7932639 Murrumbeena Murrumbeena -37.89023 145.07112 P PPL AU 07 22310 8232 49 Australia/Melbourne 2011-08-26
-7932640 Oakleigh South Oakleigh South -37.92416 145.09146 P PPL AU 07 24970 8933 62 Australia/Melbourne 2011-08-26
-7932641 Oakleigh East Oakleigh East -37.89904 145.10571 P PPL AU 07 24970 5623 87 Australia/Melbourne 2011-08-26
-7932643 Caulfield South Caulfield South -37.89673 145.02734 P PPL AU 07 22310 11113 28 Australia/Melbourne 2011-08-26
-7932646 Brighton East Brighton East -37.90141 145.01884 P PPL AU 07 20910 15167 19 Australia/Melbourne 2011-08-26
-7932648 Hampton Hampton -37.93723 145.0046 P PPL AU 07 20910 11825 25 Australia/Melbourne 2011-08-26
-7932649 Hampton East Hampton East -37.93695 145.02863 P PPL AU 07 20910 4233 37 Australia/Melbourne 2011-08-26
-7932650 Bentleigh Bentleigh -37.9184 145.03584 P PPL AU 07 22310 14271 31 Australia/Melbourne 2011-08-26
-7932651 Bentleigh East Bentleigh East -37.9201 145.05987 P PPL AU 07 22310 24520 52 Australia/Melbourne 2011-08-26
-7932652 Black Rock Black Rock -37.97357 145.01636 P PPL AU 07 20910 5796 20 Australia/Melbourne 2011-08-26
-7932653 Aspendale Gardens Aspendale Gardens -38.02277 145.11798 P PPL AU 07 23430 7319 6 Australia/Melbourne 2011-08-26
-7932654 Booval Booval -27.61328 152.78944 P PPL AU 04 33960 20540 34 Australia/Brisbane 2011-08-26
-7932655 North Booval North Booval -27.60392 152.79485 P PPL AU 04 33960 2056 21 Australia/Brisbane 2011-08-26
-7932658 North Ipswich North Ipswich -27.60286 152.76146 P PPL AU 04 33960 4273 30 Australia/Brisbane 2011-08-26
-7932659 Brassall Brassall -27.59753 152.74755 P PPL AU 04 33960 8320 25 Australia/Brisbane 2011-08-26
-7932660 Silkstone Silkstone -27.62126 152.78768 P PPL AU 04 33960 3413 51 Australia/Brisbane 2011-08-26
-7932663 Eastern Heights Eastern Heights -27.62849 152.77828 P PPL AU 04 33960 3608 43 Australia/Brisbane 2011-08-26
-7932664 Raceview Raceview -27.63472 152.77519 P PPL AU 04 33960 6896 44 Australia/Brisbane 2011-08-26
-7932666 Flinders View Flinders View -27.65046 152.77451 P PPL AU 04 33960 5005 56 Australia/Brisbane 2011-08-26
-7932667 Deebing Heights Deebing Heights -27.66719 152.74867 P PPL AU 04 33960 1158 66 Australia/Brisbane 2011-08-26
-7932668 Yamanto Yamanto -27.66027 152.73863 P PPL AU 04 33960 3624 51 Australia/Brisbane 2011-08-26
-7932670 Redbank Plains Redbank Plains -27.64613 152.85965 P PPL AU 04 33960 9083 57 Australia/Brisbane 2011-08-26
-7932671 Collingwood Park Collingwood Park -27.61282 152.86008 P PPL AU 04 33960 5305 31 Australia/Brisbane 2011-08-26
-7932687 Clontarf Clontarf -27.25341 153.07835 P PPL AU 04 35010 7723 11 Australia/Brisbane 2011-08-26
-7932688 Woody Point Woody Point -27.25608 153.10427 P PPL AU 04 35010 3789 10 Australia/Brisbane 2011-08-26
-8014922 Ballarat Central Ballarat Central -37.56206 143.85082 P PPL AU 07 20570 5645 450 Australia/Melbourne 2011-08-29
-8015184 Golden Point Golden Point -37.57493 143.8687 P PPL AU 07 20570 2147 433 Australia/Melbourne 2011-09-02
-8015185 Delacombe Delacombe -37.58911 143.81472 P PPL AU 07 20570 3356 429 Australia/Melbourne 2011-09-02
-8015209 St Albans St Albans Saint Albans -37.74496 144.80049 P PPL AU 07 21180 33511 70 Australia/Melbourne 2011-09-02
-8029783 St Leonards St Leonards -33.82344 151.19836 P PPL AU 02 15950 3977 96 Australia/Sydney 2011-09-18
-8029812 St Kilda West St Kilda West Saint Kilda West -37.86017 144.9722 P PPL AU 07 25900 3075 11 Australia/Melbourne 2011-09-19
-8029813 Eleebana Eleebana -32.9896 151.63642 P PPL AU 02 14650 5859 11 Australia/Sydney 2011-09-19
-8029814 Summer Hill Summer Hill -33.89146 151.13825 P PPL AU 02 10150 6130 20 Australia/Sydney 2011-09-19
-3577154 Oranjestad Oranjestad Oran'estad,Oraniestad,Oranjestad,oraniesutaddo,Ораниестад,Ораньестад,オラニエスタッド 12.52398 -70.02703 P PPLC AW 00 29998 5 22 America/Aruba 2010-12-07
-3577277 Babijn Babijn 12.53333 -69.98333 P PPLL AW 00 40627 28 America/Aruba 2008-12-14
-3577282 Arasji Arasji Arashi,Arasji 12.61667 -70.06667 P PPL AW 00 14649 -9999 America/Aruba 2012-01-18
-3577284 Angochi Angochi Angochi 12.51667 -69.95 P PPLL AW 00 29442 83 America/Aruba 2012-01-18
-632421 Vårdö Vardoe 60.25 20.38333 P PPLA AX FI 941 411 10 Europe/Mariehamn 2012-02-06
-635815 Sund Sund Sund 60.25 20.11667 P PPLA AX FI 771 1080 42 Europe/Mariehamn 2012-02-06
-636158 Sottunga Sottunga Sottunga 60.13023 20.66683 P PPLA AX FI 766 144 12 Europe/Mariehamn 2012-02-06
-637878 Saltvik Saltvik 60.28333 20.05 P PPLA AX FI 736 1691 -9999 Europe/Mariehamn 2012-02-06
-647455 Lumparland Lumparland Lumparland,Lumparlanti 60.11695 20.25819 P PPLA AX FI 438 335 9 Europe/Mariehamn 2012-02-06
-648382 Lemland Lemland Lemlanti 60.07178 20.08472 P PPLA AX 417 1829 16 Europe/Mariehamn 2012-02-06
-650395 Kumlinge Kumlinge Kumlinge,Kumlinki 60.26013 20.77892 P PPLA AX FI 295 384 5 Europe/Mariehamn 2012-02-06
-651986 Kökar Koekar Koekar,Koeoekari,Kökar,Köökari 59.92051 20.90883 P PPLA AX FI 318 355 7 Europe/Mariehamn 2012-02-06
-659949 Föglö Foegloe Foegloe,Fogleo,Fögleö,Föglö 60.01667 20.41667 P PPLA AX FI 062 632 -9999 Europe/Mariehamn 2012-02-06
-660521 Brändö Braendoe Braendoe,Brändö 60.41165 21.04534 P PPLA AX FI 035 515 10 Europe/Mariehamn 2012-02-06
-3041732 Mariehamn Mariehamn Maarianhamina,Marianhamina,Mariankhamina,Mariehameena,Mariehamn,Mariekhamn,Mariuhoefn,Mariyekhamn,Marrianhamina,Maríuhöfn,mariehamun,Мариехамн,マリエハムン 60.09726 19.93481 P PPLC AX 478 10682 11 Europe/Mariehamn 2010-09-28
-3041760 Jomala Jomala 60.14902 19.951 P PPLA AX 170 3662 30 Europe/Mariehamn 2012-02-06
-3041776 Hammarland Hammarland Hammarland,Khammarland 60.21667 19.75 P PPLA AX FI 076 1395 4 Europe/Mariehamn 2012-02-06
-3041792 Geta Geta 60.37453 19.84455 P PPLA AX FI 065 452 13 Europe/Mariehamn 2012-02-06
-3041798 Finström Finstroem Finstroem,Finström 60.26667 19.93333 P PPLA AX 060 2412 13 Europe/Mariehamn 2012-02-06
-3041807 Eckerö Eckeroe Eckeroe,Eckerö 60.21249 19.61442 P PPLA AX FI 043 1028 3 Europe/Mariehamn 2012-02-06
-146862 Prishibinskoye Prishibinskoye Geytepe,Goytapa,Göytəpə,Prishib,Prishibinske,Prishibinskoe,Prishibinskoye 39.11958 48.59361 P PPL AZ 15 13340 3 Asia/Baku 2012-01-17
-146901 Zangilan Zangilan Icari,Ikari,Zangelan,Zangilak,Zangilan,Zəngilan,İçəri 39.08834 46.65119 P PPL AZ 69 7483 436 Asia/Baku 2012-01-17
-146961 Yardımlı Yardimli Iardymly,Jardymly,Yardimli,Yardymly,Yardımlı,Ярдымлы 38.92056 48.23722 P PPL AZ 66 4004 1112 Asia/Baku 2012-01-17
-146969 Novyy Karanlug Novyy Karanlug Martouni,Martuni,Novyy Karanlug,Xocavand,Xocavənd,Мартуни,Մարտունի 39.79546 47.10989 P PPL AZ 65 5079 396 Asia/Baku 2012-01-17
-146970 Xankǝndi Chankaendi,Chankändi,Hankendi,Khankendy,Stepanakert,Xankəndi,astpanakrt,stpnqrt,Степанакерт,סטפנקרט,استپاناکرت 39.8177 46.7528 P PPL AZ AZ 61 53100 850 Asia/Baku 2012-02-21
-147059 Tel’mankend Tel'mankend 39.87867 48.39902 P PPL AZ 45 17242 242 Asia/Baku 2011-05-07
-147105 Shushi Shushi Shoushi,Shusha,Shushe,Shushi,Susa,Suse,Susi,Szusza,shwshy,swsh,Şuşa,Шуша,Շուշե,Շուշի,שושה,شوشی 39.75893 46.74919 P PPL AZ 56 18662 1346 Asia/Baku 2012-01-17
-147271 Salyan Salyan Sal'jan,Sal'yany,Salian,Salyan,Sal’yany,Ssaljany,Сальян 39.59362 48.98055 P PPL AZ 49 36555 238 Asia/Baku 2012-01-17
-147278 Şahbuz Sahbuz Chay-Shakhbuz,Sahbuz,Shahbuz,Shakhbuz,Şahbuz,Шахбуз 39.40722 45.57389 P PPL AZ 35 2674 1196 Asia/Baku 2012-01-17
-147282 Sedarak Sedarak Sadarak,Sedarak,Sədərək 39.71144 44.88805 P PPL AZ 35 1853 864 Asia/Baku 2012-01-17
-147305 Qubadlı Qubadli Ghubat'ly,Ghubat’ly,Koubatly,Kubatlu,Kubatly,Qubadli,Qubadly,Qubadlı,Кубатлы,Ղուբաթլը 39.34396 46.58196 P PPL AZ 43 6890 482 Asia/Baku 2012-01-17
-147307 Qaraçala Qaracala Karachala,Karachalinskaya,Qaracala,Qaraçala 39.81318 48.9523 P PPL AZ 49 4211 235 Asia/Baku 2012-01-17
-147364 Orconikidze Orconikidze Orconikidze,Ordzhonikidze 39.63222 47.69076 P PPL AZ 12 1557 96 Asia/Baku 2012-01-17
-147368 Ordubad Ordubad Ordoubat,Ordubad,Ordubat,Ордубад 38.90595 46.02341 P PPL AZ 35 9781 856 Asia/Baku 2012-01-17
-147425 Neftçala Neftcala Neftcala,Neftechala,Neftçala,Nephte Chala,Poselok Tresta,Нефтечала 39.37417 49.24722 P PPLA AZ 36 18661 230 Asia/Baku 2012-01-14
-147429 Nakhchivan Nakhchivan Nachitschewan,Nakhchivan,Nakhchyvan,Nakhicevan,Nakhichevan',Nakhichevan’,Nakhitsjevan,Nakhjavan,Naxcivan,Naxçıvan,Нахичевань 39.20889 45.41222 P PPL AZ 35 64754 887 Asia/Baku 2011-08-30
-147504 Mincivan Mincivan Mincivan,Mindshewan,Mindzhevan',Mindzhevan’,Mindzhivan,Миндживан 39.02935 46.71847 P PPL AZ 69 6353 315 Asia/Baku 2012-01-17
-147552 Masally Masally Masali,Masalli,Masally,Masallı,Masalı,Massaly 39.03532 48.6654 P PPL AZ 32 9604 5 Asia/Baku 2011-08-30
-147611 Lerik Lerik 38.77263 48.41279 P PPL AZ 31 7094 1076 Asia/Baku 2011-05-07
-147622 Lǝnkǝran Lankaran,Lencoran,Lenkoran',Länkäran,Ленкорань 38.75428 48.85062 P PPL AZ AZ 30 50244 234 Asia/Ashgabat 2012-01-24
-147625 Laçın Lacin Abdallyar,Abdalyar,Berdzor,Datschin,Lachin,Lachyan,Lachyn,Lichin,Лачин 39.59881 46.55045 P PPL AZ AZ 28 2190 889 Asia/Baku 2010-07-07
-147695 Qırmızı Bazar Qirmizi Bazar Karmir Shouka,Karmir Shuka,Karmir Suka,Krasnyj Bazar,Krasnyy Bazar,Qirmizi Bazar,Qırmızı Bazar,Красный Базар,Կարմիր Շուկա 39.67833 46.94884 P PPL AZ 65 1211 670 Asia/Baku 2012-01-17
-147727 Kijoba Kijoba Kijaba,Kijoba,Kijäba,Kizhaba 38.53278 48.81667 P PPL AZ 08 4567 238 Asia/Baku 2012-01-17
-147774 Xocalı Xocali Ay-Khodzhaly,Khodgalou,Khodzhalv,Khodzhaly,Khojaly,Khozhali,Xocali,Xocalı,Ходжалы,Խոջալը 39.91297 46.79028 P PPL AZ 64 5810 582 Asia/Baku 2012-01-17
-147784 Xıllı Xilli Khilly,Xilli,Xıllı,Yukhary-Khylly 39.43012 49.10166 P PPL AZ 36 3896 230 Asia/Baku 2012-01-17
-147982 Imishli Imishli Emishti,Imishli,Imishly,Imisli,İmişli,Имишли 39.87095 48.05995 P PPL AZ 24 31381 1 Asia/Baku 2011-08-30
-148003 Horadiz Horadiz Geradiz,Goradiz,Gorodiz,Horadiz 39.44877 47.33531 P PPL AZ 18 2714 160 Asia/Baku 2012-01-17
-148088 Haftoni Haftoni Gaftoni,Haftoni,Гафтони 38.76325 48.76223 P PPL AZ 29 2003 9 Asia/Baku 2012-01-17
-148105 Hadrut Hadrut Gadrut,Hadrout,Hadrut,Гадрут,Հադրութ 39.52002 47.0318 P PPL AZ 65 2523 733 Asia/Baku 2012-01-17
-148141 Jebrail Jebrail Cabrayil,Cəbrayıl,Djebrail,Dzhebrail,Jabrail,Jabrayyl,Jebraiele,Jebrail,Jebrayil,Jäbrayyl,Ջաբրաիլ 39.39917 47.02834 P PPL AZ 14 8396 607 Asia/Baku 2012-01-17
-148251 Julfa Julfa Culfa,Dzhul'fa,Dzhul’fa,Jolfa,Jolfa-ye Nakhjavan,Jolfā,Jolfā-ye Nakhjavān,Julfa,jlfay nkhjwan,Джульфа,جلفای نخجوان 38.9558 45.6308 P PPL AZ 35 10820 715 Asia/Baku 2012-01-17
-148290 Dzhalilabad Dzhalilabad Astrahanka,Astrakhan-Bazar,Astrakhanka,Calilabad,Cəlilabad,Dzhalilabad,Jalilabad,Jälilabad 39.20963 48.49186 P PPL AZ 15 36259 39 Asia/Baku 2012-01-17
-148323 Boradigah Boradigah Baradigyakh,Boradigah,Boradigyakh,Boradygia,Boradygiya,Boradygyakh,Vardygya 38.93389 48.70375 P PPL AZ 32 5904 238 Asia/Baku 2012-01-17
-148340 Pushkino Pushkino Bilasuvar,Biləsuvar,Pushkin,Pushkino 39.45833 48.545 P PPL AZ 13 18182 4 Asia/Baku 2012-01-17
-148375 Severo-Vostotchnyi Bank Severo-Vostotchnyi Bank Bank,Banka,Bankov,Bankə,Imeni Kirova,Rybokombinat Imeni Kirova,Severo-Vostochnyy Bank,Severo-Vostotchnyi Bank 39.41117 49.24792 P PPL AZ 36 7075 231 Asia/Baku 2012-01-17
-148445 Astara Astara Astara,Azerbaydzhanskaya Astara,Астара 38.45598 48.87498 P PPL AZ 08 15190 234 Asia/Baku 2012-01-17
-148450 Askyaran Askyaran Asgaran,Askeran,Askyaran,Əsgəran,Аскеран,Ասթերան 39.93667 46.83278 P PPL AZ 64 1639 512 Asia/Baku 2012-01-17
-148565 Zubovka Zubovka Ali Bairamly,Ali Bayramli,Ali-Bairamli,Ali-Bajramly,Ali-Bayramli,Ali-Bayramly,Aly-Bayramly,Arab Shakhverdi,Arab-Shakhberdy,Arab-Shakhverdy,Sirvan,Zubovka,Şirvan,Əli Bayramlı,Али-Байрамлы 39.93788 48.92855 P PPL AZ 07 70220 240 Asia/Baku 2012-01-17
-148619 Ağdam Agdam Agdam,Aghdam,Ağdam,Агдам,Աղդամ 39.99096 46.92736 P PPLA AZ 03 39451 374 Asia/Baku 2011-12-02
-393443 Sovetabad Sovetabad Hasanabad,Həsənabad,Sovetabad 39.33667 49.21414 P PPL AZ 36 4308 231 Asia/Baku 2012-01-19
-584562 Zyrya Zyrya ZIRJA,Zira,Zirya,Zirǝ,Zirə,Zyrya,ЗИРЯ 40.3661 50.2917 P PPL AZ 09 10099 242 Asia/Baku 2012-01-17
-584586 Zardob Zardob ZARDOB,Zardab,Zardob,Zǝrdab,Zərdab,ЗАРДОБ 40.21833 47.70833 P PPLA AZ 71 10612 253 Asia/Baku 2012-01-17
-584596 Zaqatala Zaqatala Sakataly,ZAKATALY,Zakatali,Zakatalsk,Zakataly,Zaqatala,ЗАКАТАЛЫ 41.63361 46.64333 P PPLA AZ 70 18277 502 Asia/Baku 2012-01-17
-584614 Zabrat Zabrat Sabrat,ZABRAT,Zabrat,ЗАБРАТ 40.4761 49.94158 P PPL AZ 09 21396 25 Asia/Baku 2012-01-17
-584649 Yevlakh Yevlakh Avlakh,EVLAKH,Jewlach,Yevlakh,Yevlax,ЕВЛАХ 40.61832 47.15014 P PPL AZ 68 53716 17 Asia/Baku 2011-08-30
-584715 Xudat Xudat KHUDAT,Khudaf,Khudat,Xudat,ХУДАТ 41.63096 48.681 P PPL AZ 60 13625 46 Asia/Baku 2012-01-17
-584716 Xanlar Xanlar Elenendorf,Gjojgjol',Khanlar,Kol-Yelendorf,Xanlar,Yelenendorf,Гёйгёль,Ханлар 40.58694 46.31583 P PPLA AZ 62 17816 685 Asia/Baku 2012-01-17
-584717 Xaçmaz Xacmaz Chatschmas,KHACHMAS,Kegna Khachmas,Kekhna-Khachmaz,Khachmas,Khachmaz,Këgna Khachmas,Xacmaz,Xaçmaz,ХАЧМАС 41.46349 48.80605 P PPL AZ 60 37175 47 Asia/Baku 2012-01-17
-584724 Verkhniy Dashkesan Verkhniy Dashkesan VERKH.DASHKESAN,Verkhniy Dashkesan,Yuxari Daskasan,Yuxarı Daşkǝsǝn,Yuxarı Daşkəsən,ВЕРХ.ДАШКЕСАН 40.49228 46.07137 P PPL AZ 16 1837 1587 Asia/Baku 2012-01-17
-584791 Ujar Ujar UDZHARY,Ucar,Udshary,Udzhar,Udzhara,Udzhary,Ujar,УДЖАРЫ 40.51902 47.65423 P PPLA AZ 59 15741 18 Asia/Baku 2011-08-30
-584792 Türkan Turkan TJURKJAN,Tuerkan,Turkan,Turkyany,Tyurkend,Tyurkyan,Tyurkyany,Türkan,ТЮРКЯН 40.36389 50.215 P PPL AZ 09 9699 235 Asia/Baku 2012-01-17
-584821 Tovuz Tovuz Tauz,Tavus,Tovuz,Тауз 40.99222 45.62889 P PPLA AZ 58 12626 420 Asia/Baku 2012-01-17
-584871 Terter Terter Mir Bashir,Mir Basir,Mirbashir,Mirbäshir,TERTER,Tartar,Terter,Tǝrtǝr,Tərtər,ТЕРТЕР,Միր Բաշիր 40.345 46.92889 P PPLA AZ 57 18185 249 Asia/Baku 2012-01-17
-584923 Sumqayıt Sumqayit SUMGAIT,Sumgait,Sumgjajet,Sumqayit,Sumqayyt,Sumqayıt,СУМГАИТ,Сумгаит,סומגאיט 40.58972 49.66861 P PPL AZ 54 265150 245 Asia/Baku 2012-01-17
-584991 Şuraabad Suraabad Mikhailabad,Shuraabad,Sovetabad,Soviet Abad,Suraabad,Şuraabad,Шураабад 40.81924 49.46874 P PPL AZ 63 1945 234 Asia/Baku 2012-01-17
-585103 Qaraçuxur Qaracuxur GARACHUKHUR,Garachukhur,Imeni Kaganovicha,Kaganovich,Kaganovicha,Karachekhur,Karachukhur,Poselok Imeni Kaganovicha,Posëlok Imeni Kaganovicha,Qaracuxur,Qaraçuxur,Serebovski,Serebrovskiy,ГАРАЧУХУР 40.39667 49.97361 P PPL AZ 09 72989 51 Asia/Baku 2012-01-17
-585145 Saray Saray SARAJ,Sarai,Saray,САРАЙ 40.53222 49.71639 P PPL AZ 01 10173 42 Asia/Baku 2012-01-17
-585150 Samur Samur Samur,Самур 41.63254 48.43025 P PPL AZ 44 1760 317 Asia/Baku 2012-01-17
-585152 Shamkhor Shamkhor Anino,Annenfel'd,Annenfel’d,Annino,SHAMKIR,Samkir,Shamkhor,Şǝmkir,Şəmkir,ШАМКИР 40.82972 46.01889 P PPLA AZ 51 35421 455 Asia/Baku 2012-01-17
-585156 Shamakhi Shamakhi SHEMAKHA,Samaxi,Schemacha,Shamakhy,Shemakha,Şamaxı,ШЕМАХА 40.63141 48.64137 P PPLA AZ 50 29403 687 Asia/Baku 2012-02-05
-585170 Sheki Sheki Nucha,Nukha,Nuxa,SHEKI,Saki,Shaki,Sheki,Shäki,Şǝki,Şəki,ШЕКИ 41.19194 47.17056 P PPLA AZ 48 62191 549 Asia/Baku 2012-01-17
-585184 Sabunçu Sabuncu SABUNCHI,Sabunchi,Sabunchy,Sabuncu,Sabunçu,САБУНЧИ 40.4425 49.94806 P PPL AZ 09 20996 26 Asia/Baku 2012-01-17
-585187 Sabirabad Sabirabad Petropavlovka,Petropavlovskoye,SABIRABAD,Sabirabad,Ssabirabad,САБИРАБАД 40.00946 48.47515 P PPL AZ 46 28075 244 Asia/Baku 2012-01-17
-585220 Qusar Qusar KUSARY,Kusary,Qusar,КУСАРЫ 41.42728 48.42893 P PPL AZ 44 16022 687 Asia/Baku 2012-01-17
-585221 Quba Quba KUBA,Kuba,Kuwa,Quba,КУБА 41.36259 48.51519 P PPL AZ 42 22405 597 Asia/Baku 2012-01-17
-585223 Qobustan Qobustan Duvannaya,Duvanny,Duvannyy,Duyannaya,GOBUSTAN,Gobustan,Qobustan,ГОБУСТАН 40.08238 49.41205 P PPL AZ 09 13398 240 Asia/Baku 2012-01-17
-585225 Aja Kabul Aja Kabul Adshikabul,Adzha-Kabul,Adzhikabul,Aja Kabul,Kasi-Mahomed,Kazi Mahomed,Kazi-Magomed,Kazi-Magomet,Qazimammad,Qazımǝmmǝd,Qazıməmməd,Кази-Магомед 40.04084 48.94451 P PPL AZ 23 23102 2 Asia/Baku 2012-01-17
-585226 Qazax Qazax Agkeynak,Agkëynak,KAZAKH,Kasach,Kasachisee,Kazakh,Qazakh,Qazax,КАЗАХ 41.09333 45.36611 P PPLA AZ 40 18903 379 Asia/Baku 2012-01-17
-585227 Qax Qax KAKHI,Kakhi,Qakh,Qax,КАХИ 41.4225 46.92417 P PPLA AZ 39 11992 607 Asia/Baku 2012-01-17
-585231 Qutqashen Qutqashen Kutkashen,Kutkashin,Qabala,Qutqashen,Qəbələ 40.98139 47.84583 P PPLA AZ 38 11867 782 Asia/Baku 2012-01-17
-585236 Puta Puta PUTA,Puta,Staraya Puta,ПУТА 40.29667 49.66028 P PPL AZ 09 1018 248 Asia/Baku 2012-01-17
-585333 Oğuz Oguz Bartashen,OGUZ,Oguz,Oğuz,Vartasen,Vartashen,Vartashin,Vartaşen,ОГУЗ 41.07083 47.45833 P PPLA AZ AZ 37 6600 670 Asia/Baku 2012-01-17
-585379 Hacı Zeynalabdin Haci Zeynalabdin Haci Zeynalabdin,Hacı Zeynalabdin,Nasoslu,Nasosnaya,Nasosnyy,Nassosny 40.62333 49.55861 P PPL AZ 54 19019 239 Asia/Baku 2012-01-17
-585388 Nardaran Nardaran Nardaran 40.55611 50.00556 P PPL AZ 09 7700 28 Asia/Baku 2012-01-17
-585400 Naftalan Naftalan NAFTALAN,Naftalan,НАФТАЛАН 40.50667 46.825 P PPL AZ 34 7045 233 Asia/Baku 2012-01-17
-585514 Mingelchaur Mingelchaur MINGECHAUR,Mengechaur,Min'nkatsebir,Mingacevir,Mingachevir,Mingaecevir,Mingechaur,Mingechaurges,Mingeczaur,Mingelchaur,Mingächevir,Mingäçevir,Mingǝçevir,Mingəçevir,ming gai qia wu er,Μινγκατσεβίρ,МИНГЕЧАУР,Мингечаур,明盖恰乌尔 40.76395 47.05953 P PPL AZ 33 95453 26 Asia/Baku 2012-01-17
-585557 Maştağa Mastaga MASHTAGA,Mashtaga,Mashtaghy,Mashtagi,Mastaga,Maştağa,МАШТАГА 40.53278 50.00389 P PPL AZ 09 40092 18 Asia/Baku 2012-01-17
-585568 Mardakyany Mardakyany MARDAKJAN,Mardakan,Mardakjan,Mardakyan,Mardakyany,Mǝrdǝkan,Mərdəkan,МАРДАКЯН 40.49222 50.13889 P PPL AZ 09 15267 252 Asia/Baku 2012-01-17
-585570 Marazy Marazy MARAZA,Maraza,Marazi,Marazy,Mǝrǝzǝ,Mərəzə,МАРАЗА 40.53371 48.92726 P PPL AZ 41 3754 770 Asia/Baku 2012-01-17
-585630 Lökbatan Lokbatan LOKBATAN,Loekbatan,Lokbatan,Lökbatan,ЛОКБАТАН 40.32372 49.72804 P PPL AZ 09 30694 249 Asia/Baku 2012-01-17
-585666 Qızılhacılı Qizilhacili Kyzylgadzhily,Kyzylgadzhyly,Qizilhacili,Qızılhacılı,Кызылгаджылы 40.57456 46.84098 P PPL AZ 21 6330 141 Asia/Baku 2012-01-17
-585838 Qobu Qobu KOBU,Kobi,Kobu,Qobu,КОБУ 40.40472 49.71306 P PPL AZ 01 7377 54 Asia/Baku 2012-01-17
-585892 Kilyazi Kilyazi Gilazi,Giləzi,Kiljasi,Kiljazi,Kilyazi,Килязи 40.87098 49.34233 P PPL AZ 63 3277 5 Asia/Baku 2012-01-17
-585909 Khyzy Khyzy Khizy,Khyzy,Xizi,Xızı,Хызы 40.90576 49.08127 P PPL AZ 63 1024 745 Asia/Baku 2012-01-17
-585915 Khirdalan Khirdalan KHYRDALAN,Khurdalan,Khyrdalan,Xirdalan,ХЫРДАЛАН 40.44808 49.75502 P PPLA AZ 01 0 75 Asia/Baku 2012-01-14
-585940 Khodzhi-Gasan Khodzhi-Gasan Gadzhi-Gasan,Khodzhagasan,Khodzhasan,Khodzhi-Gasan,Xocasan,Xocəsən 40.41348 49.77209 P PPL AZ 09 5089 21 Asia/Baku 2012-01-17
-586031 Korgöz Korgoz KERGEZ,Kar'yery,Kar’yery,Kergez,Korgoez,Korgoz,Korgöz,Kërgëz,КЕРГЕЗ 40.30306 49.62 P PPL AZ 09 2036 37 Asia/Baku 2012-01-17
-586135 Qarayeri Qarayeri KARAERI,Karayeri,Qarayeri,КАРАЕРИ 40.78862 46.30659 P PPL AZ 52 5565 259 Asia/Baku 2012-01-17
-586265 Vurğun Vurgun Gryunfel'd,Gryunfel’d,KALININKEND,Kalininkand,Kalininkend,Kalininkänd,Vurgun,Vurğun,КАЛИНИНКЕНД 41.09423 45.47162 P PPL AZ 05 2635 359 Asia/Baku 2012-01-17
-586268 Kerbakhiar Kerbakhiar KEL'BADZHAR,Kalbacar,Kalbajar,Kel'badzhar,Kelbadshar,Kel’badzhar,Kerbakhiar,Kälbäjär,Kǝlbǝcǝr,Kəlbəcər,КЕЛЬБАДЖАР 40.10667 46.03833 P PPLA AZ 26 8400 1589 Asia/Baku 2012-01-17
-586289 Qala Qala KALA,Kala,Kala-Machtagi,Qala,КАЛА 40.44182 50.16812 P PPL AZ 09 2709 7 Asia/Baku 2012-01-17
-586318 İsmayıllı Ismayilli ISMAILLY,Ismailly,Ismaily,Ismanlli,Ismayilli,Ismayylly,Ismoylly,Jsmailly,İsmayıllı,ИСМАИЛЛЫ 40.77897 48.16375 P PPL AZ 25 13610 593 Asia/Baku 2012-01-17
-586368 Gyuzdek Gyuzdek GJUZDEK,Gezdek,Guzdak,Gyuzdek,Güzdǝk,Güzdək,ГЮЗДЕК 40.37444 49.68194 P PPL AZ 01 2462 156 Asia/Baku 2012-01-17
-586427 Geoktschai Geoktschai GEOKCHAJ,Gekchai,Geokchai,Geokchay,Geoktschai,Goeycay,Goycay,Goychay,Göychay,Göyçay,ГЕОКЧАЙ 40.65306 47.74056 P PPLA AZ 22 35348 119 Asia/Baku 2012-01-17
-586429 Hövsan Hovsan GOVSAN,Gousan,Gousany,Goussan,Govsan,Hoevsan,Hovsan,Hövsan,ГОВСАН 40.37444 50.08528 P PPL AZ 09 36293 237 Asia/Baku 2012-01-17
-586430 Goranboy Goranboy GERANBOJ,Geran'boy,Geran’boy,Goranboy,Kasum-Ismailov,Kasum-Ismailovo,Kasum-Izmaylovo,Qasym Ismayylov,ГЕРАНБОЙ 40.61028 46.78972 P PPLA AZ 21 7333 156 Asia/Baku 2012-01-17
-586523 Ganja Ganja Elisavetpol,Elizavetpol',Elizavetpol’,GJANDZHA,Gaencae,Gaendzjae,Ganca,Gandja,Gandza,Gandzha,Gandzhe,Gandża,Ganga,Ganja,Ganĝa,Gence,Gendzakh,Gjandzha,Gyandzha,Gäncä,Gändzjä,Gǝncǝ,Gəncə,Kirovabad,Kirowabad,Yelizavetpol',Yelizavetpol’,ganja,gnjh,gyanja,ГЯНДЖА,Гянджа,گنجه,განჯა,ギャンジャ,간자 40.68278 46.36056 P PPL AZ 20 303268 417 Asia/Baku 2011-08-30
-586573 Kyadabek Kyadabek Gadabay,Gǝdǝbǝy,Gədəbəy,KEDABEK,Kedabek,Kedabeko,Kedalek,Kyadabek,КЕДАБЕК 40.56556 45.81611 P PPLA AZ 19 8657 1397 Asia/Baku 2012-01-17
-586631 Corat Corat Corat,DZHORAT,Dzhorat,ДЖОРАТ 40.5725 49.70639 P PPL AZ 54 8624 240 Asia/Baku 2006-08-09
-586652 Ceyranbatan Ceyranbatan Ceyranbatan,DZHEJRANBATAN,Dzheyranbatan,ДЖЕЙРАНБАТАН 40.54083 49.65972 P PPL AZ 01 5684 20 Asia/Baku 2012-01-17
-586692 Dzagam Dzagam DZEGAM,Dzagam,Dzegam,Dzegan,Guseynbeili,Guseynbeyli,Pzegam,Star Agozam,Zayam,Zǝyǝm,Zəyəm,ДЗЕГАМ 40.9033 45.88564 P PPL AZ 51 7442 357 Asia/Baku 2011-08-30
-586736 Digah Digah DIGJAKH,Digah,Digyakh,Dygya,ДИГЯХ 40.49257 49.87478 P PPL AZ 01 3211 39 Asia/Baku 2012-01-17
-586765 Yukhary-Dashkesan Yukhary-Dashkesan DASHKESAN,Dashkasan,Dashkesan,Dashkezan,Dashkäsän,Daskasan,Daşkǝsǝn,Daşkəsən,Verkhniy Dashkesan,Yukhary-Dashkesan,ДАШКЕСАН 40.49472 46.07722 P PPLA AZ 16 9900 1529 Asia/Baku 2012-01-17
-586792 Dolyar Dolyar DALLJAR,Dalilar,Dallyar,Dolyar,Dǝlilǝr,Dəlilər,ДАЛЛЯР 40.86278 46.03493 P PPL AZ 51 4399 341 Asia/Baku 2012-01-17
-586845 Çinarlı Cinarli Chinarly,Cinarli,Lenin,Çinarlı,Ленин 41.4723 46.9156 P PPL AZ 39 6508 855 Asia/Baku 2012-01-17
-586925 Buzovna Buzovna BUZOVNA,Busovny,Busowny,Buzouvna,Buzovna,Buzovny,БУЗОВНА 40.51789 50.1139 P PPL AZ 09 24795 240 Asia/Baku 2012-01-17
-586967 Binagadi Binagadi BINAGADI,Binagadi,Binagady,Binaghad,Binaqadi,Binǝqǝdi,Binəqədi,Bonogady,БИНАГАДИ 40.46602 49.82783 P PPL AZ 09 14012 44 Asia/Baku 2011-08-30
-586968 Biny Selo Biny Selo BINA,Bina,Bina Staraya,Biny Selo,Binǝ,Binə,БИНА 40.45193 50.08564 P PPL AZ 09 24596 1 Asia/Baku 2012-01-17
-586971 Bilajer Bilajer BIL'GJAKH,Bil'gya,Bil'gyakh,Bil'gykh,Bilajer,Bilgah,Bilgǝh,Bilgəh,Bil’gya,Bil’gyakh,Bil’gykh,БИЛЬГЯХ 40.56806 50.03778 P PPL AZ 09 8983 2 Asia/Baku 2012-01-17
-587033 Basqal Basqal Azizbekovo,Baskal,Baskhal,Basqal,Баскал 40.7552 48.39104 P PPL AZ 25 1234 1081 Asia/Baku 2012-01-17
-587045 Baş Göynük Bas Goynuk Bas Goeynuek,Bas Goynuk,Bas Koynuk,Bash Gejnjuk,Bash Geynyuk,Bash Gëynyuk,Baş Göynük,Baş Köynük,Баш Гейнюк 41.32278 47.11333 P PPL AZ 47 1658 845 Asia/Baku 2012-01-17
-587057 Barda Barda BARDA,Barda,Bärdä,Bǝrdǝ,Bərdə,БАРДА 40.37444 47.12667 P PPLA AZ 11 37372 73 Asia/Baku 2012-01-17
-587070 Belokany Belokany BELOKANY,Balakan,Balakon,Balakǝn,Balakən,Belokan,Belokani,Belokany,БЕЛОКАНЫ 41.72583 46.40833 P PPLA AZ 10 9182 378 Asia/Baku 2012-01-17
-587071 Balakhani Balakhani BALAKHANY,Balaban,Balachany,Baladzary,Balakhani,Balakhany,Balaxani,Balaxanı,БАЛАХАНЫ 40.46344 49.91893 P PPL AZ 09 10863 57 Asia/Baku 2011-08-30
-587078 Bilajari Bilajari Baku-Baladshary,Baladjary,Baladzhary,Bilacari,Biləcəri 40.4444 49.80566 P PPL AZ 09 42194 25 Asia/Baku 2011-08-30
-587084 Baku Baku Bacu,Baki,Bako,Bakoe,Bakou,Baku,Baku - Baki,Bakue,Bakuu,Baky,Bakó,Bakú,Bakú - Bakı,Bakü,Bakı,Boku,Mpakou,ba ku,bako,baku,bakw,Μπακού,Баку,Боку,באקו,باكو,باکو,ბაქო,ባኩ,バクー,巴库,바쿠 40.37767 49.89201 P PPLC AZ 09 1116513 233 Asia/Baku 2010-05-30
-587207 Artyom Artyom Artem-Ostrov,Artyom,Artëm-Ostrov,Imeni "Dvadtsati Shesti",Imeni Artema,Imeni ”Dvadtsati Shesti”,Poselok Imeni Dvadtsati Shesti,Posëlok Imeni Dvadtsati Shesti,Артем-Остров 40.47226 50.33304 P PPL AZ 09 13435 236 Asia/Baku 2012-01-17
-587261 Amirdzhan Amirdzhan Amirabdzhan,Amiradzhan,Amiradzhany,Amircan,Amirdzhan,Əmircan 40.42639 49.98361 P PPL AZ 09 26798 18 Asia/Baku 2012-01-17
-587272 Altıağac Altiagac Altiagac,Altiagach,Alty-Agatsch,Altyagach,Altıağac,Alyagach,Алтыагач 40.85927 48.93477 P PPL AZ 63 1126 1080 Asia/Baku 2012-01-17
-587319 Əliabad Aliabad Aliabad,Əliabad,Алиабад 41.48224 46.63528 P PPL AZ 70 9103 262 Asia/Baku 2012-01-17
-587361 Aghsu Aghsu AKHSU,Aghsu,Agsu,Akhsu,Aksu,Ağsu,АХСУ 40.57028 48.40087 P PPLA AZ 06 17209 179 Asia/Baku 2012-02-05
-587362 Aghstafa Aghstafa AKSTAFA,Agstafa,Akstafa,Akstafal,Ağstafa,АКСТАФА 41.11889 45.45389 P PPLA AZ 05 12542 327 Asia/Baku 2011-08-30
-587378 Ağdaş Agdas AGDASH,Agdas,Agdasch,Agdash,Aghdash,Akdash,Ağdaş,АГДАШ 40.65 47.47611 P PPLA AZ 04 23528 45 Asia/Baku 2012-01-17
-587379 Martakert Martakert Agdara,Ağdǝrǝ,Ağdərə,MARDAKERT,Mardakert,Martakert,МАРДАКЕРТ,Мардакерт,Մարտակերտ 40.2104 46.82097 P PPL AZ 57 10167 443 Asia/Baku 2012-01-17
-587384 Agdzhabedy Agdzhabedy AGDZHABEDI,Agcabadi,Agdzhabedi,Agdzhabedy,Aghjabadi,Aghjabädi,Ağcabǝdi,Ağcabədi,АГДЖАБЕДИ 40.05278 47.46139 P PPLA AZ 02 34989 14 Asia/Baku 2012-01-17
-807231 Mughan Mughan MUGAN',Mugan,Muğan,МУГАНЬ 40.09902 48.81886 P PPL AZ 23 4410 241 Asia/Baku 2011-08-30
-823981 Qabaqçöl Qabaqcol Qabaqcol,Qabaqçöl 41.72 46.26472 P PPL AZ 10 1293 226 Asia/Baku 2012-01-19
-824003 Bakıxanov Bakixanov Bakikhanov,Bakikhanova,Bakixanov,Bakıxanov,Бакиханова 40.42167 49.96444 P PPLX AZ 09 66686 29 Asia/Baku 2012-01-19
-824050 Aran Aran ARAI,Aran,АРАИ 40.62528 46.97556 P PPL AZ 67 6724 53 Asia/Baku 2012-01-19
-863732 Ramana Ramana RAMANA,Ramana,РАМАНА 40.44222 49.98056 P PPL AZ 09 8855 19 Asia/Baku 2012-01-20
-863761 Badamdar Badamdar Badamdar 40.33944 49.80389 P PPLX AZ 09 11398 157 Asia/Baku 2012-01-20
-3186246 Zvornik Zvornik Zvonik,Zvornik,Зворник 44.38694 19.10139 P PPL BA 02 8026 150 Europe/Sarajevo 2007-02-18
-3186422 Živinice Zivinice Zivinice,Živinice 44.54722 17.375 P PPLL BA 02 3718 787 Europe/Sarajevo 2012-01-19
-3186423 Živinice Zivinice Zivinice,Živinice 44.44944 18.64972 P PPL BA 01 13641 216 Europe/Sarajevo 2012-02-28
-3186567 Žepče Zepce 44.42667 18.03778 P PPL BA 01 8502 231 Europe/Sarajevo 2006-01-17
-3186573 Zenica Zenica Zenica,Зеница 44.20139 17.90639 P PPL BA 01 164423 320 Europe/Sarajevo 2012-01-19
-3186588 Željezno Polje Zeljezno Polje 44.40833 17.93194 P PPLL BA 01 5783 547 Europe/Sarajevo 2006-01-17
-3186679 Zborište Zboriste 45.14593 16.01728 P PPLL BA 01 4922 234 Europe/Sarajevo 2012-02-28
-3186717 Zavidovići Zavidovici Zavidovici,Zavidovići 44.44583 18.14972 P PPL BA 01 14380 208 Europe/Sarajevo 2012-01-19
-3186961 Zabrišće Zabrisce Zabrisce,Zabrišće 43.7925 16.94222 P PPL BA 01 4261 743 Europe/Sarajevo 2012-01-19
-3187040 Vukovije Donje Vukovije Donje Donje Vukovije,Vukovije Donje,Vukovje Donje 44.46361 18.75389 P PPL BA 01 3535 268 Europe/Sarajevo 2012-01-19
-3187162 Vrnograč Vrnograc Vrnograc,Vrnograč 45.16369 15.95444 P PPL BA 01 6860 163 Europe/Sarajevo 2012-02-28
-3187393 Vozuća Vozuca 44.36139 18.35778 P PPLL BA 00 3209 329 Europe/Sarajevo 2006-01-17
-3187419 Voljevac Voljevac 43.87861 17.65917 P PPL BA 01 3764 767 Europe/Sarajevo 2006-01-17
-3187464 Vogošća Vogosca Gornja Vogosca,Gornja Vogošća,Vogosca,Vogošća 43.90194 18.34806 P PPL BA 01 8180 523 Europe/Sarajevo 2012-01-19
-3187524 Vlasenica Vlasenica Vlasenica,Vlasenice 44.18194 18.94056 P PPL BA 02 4508 660 Europe/Sarajevo 2012-02-28
-3187588 Vitina Vitina Vitina 43.2375 17.48389 P PPL BA 01 4384 84 Europe/Sarajevo 2012-01-19
-3187590 Vitez Vitez Vitez 44.15444 17.79028 P PPL BA 01 8140 410 Europe/Sarajevo 2012-01-19
-3187609 Visoko Visoko Visokas,Visoko,bisoko,Високо,ビソコ 43.98889 18.17806 P PPL BA 01 17890 423 Europe/Sarajevo 2012-01-19
-3187681 Višegrad Visegrad Visegrad,Visegradas,Višegrad,Višegradas,Wiszegrad,vishegrad,Вишеград 43.78472 19.29917 P PPL BA 02 6087 321 Europe/Sarajevo 2006-11-05
-3187799 Vidoši Vidosi Vidosi,Vidoši 43.77139 17.02833 P PPL BA 01 3905 836 Europe/Sarajevo 2012-01-19
-3188199 Velika Obarska Velika Obarska Obarska Velika,Velika Obarska 44.80528 19.16417 P PPLL BA 02 5142 84 Europe/Sarajevo 2012-02-28
-3188225 Velika Kladuša Velika Kladusa Velika Kladusa,Velika Kladusha,Velika Kladuša,Велика Кладуша 45.18497 15.80579 P PPL BA 01 19330 129 Europe/Sarajevo 2012-02-28
-3188329 Velagići Velagici 44.55618 16.73349 P PPLL BA 01 4972 362 Europe/Sarajevo 2012-02-28
-3188357 Varoška Rijeka Varoska Rijeka Varoska Rijeka,Varoška Rijeka 45.08936 16.01906 P PPLL BA 01 6573 261 Europe/Sarajevo 2012-02-28
-3188366 Vareš Vares Vares,Vares Grad,Vareš,Vareš Grad 44.16444 18.32833 P PPL BA 01 7193 845 Europe/Sarajevo 2012-01-19
-3188458 Ustikolina Ustikolina 43.58338 18.79106 P PPL BA 01 3343726 4446 391 Europe/Sarajevo 2012-02-28
-3188532 Ugljevik Ugljevik 44.66361 19.02028 P PPL BA 02 3294874 3452 299 Europe/Sarajevo 2011-12-22
-3188582 Tuzla Tuzla Donja Tuzla,Soli,Tuzla,Тузла 44.54278 18.66944 P PPL BA 01 142486 238 Europe/Sarajevo 2012-02-28
-3188633 Turbe Turbe 44.24361 17.57139 P PPL BA 01 4767 599 Europe/Sarajevo 2006-01-17
-3188691 Tržačka Raštela Trzacka Rastela Trzacka Rastela,Tržačka Raštela 44.97597 15.78489 P PPL BA 01 6617 288 Europe/Sarajevo 2012-02-28
-3188817 Trn Trn 44.85972 17.23639 P PPL BA 02 7553 138 Europe/Sarajevo 2006-01-17
-3188893 Trebinje Trebinje Trebigne,Trebin'e,Trebine,Trebinje,Требинье,Требиње 42.71194 18.34417 P PPL BA 02 33178 279 Europe/Sarajevo 2012-01-19
-3188924 Travnik Travnik Traunik,Travnik,travnik,Травник,Траўнік 44.22667 17.67056 P PPL BA 01 31127 506 Europe/Sarajevo 2012-01-19
-3189046 Tojšići Tojsici Tojsici,Tojšići 44.50111 18.78556 P PPL BA 01 6587 316 Europe/Sarajevo 2012-01-19
-3189143 Teslić Teslic Teslic,Teslić 44.60639 17.85972 P PPL BA 02 6405 202 Europe/Sarajevo 2012-01-19
-3189146 Tešanj Tesanj Tesanj,Tešanj 44.61167 17.98722 P PPL BA 01 7550 240 Europe/Sarajevo 2012-02-28
-3189236 Svodna Svodna Svodna 45.0377 16.54019 P PPL BA 02 4388 207 Europe/Sarajevo 2012-02-28
-3189513 Šumatac Sumatac 45.09744 15.85818 P PPLL BA 01 4987 206 Europe/Sarajevo 2012-02-28
-3189602 Šturlić Sturlic Gradina Sturlic,Gradina Šturlić,Sturlic,Šturlić 45.06389 15.77806 P PPLL BA 01 5014 275 Europe/Sarajevo 2012-01-19
-3189621 Stupari Stupari 44.31472 18.68417 P PPL BA 00 4424 392 Europe/Sarajevo 2006-01-17
-3189823 Stolac Stolac Stolac 43.08444 17.9575 P PPL BA 01 7733 59 Europe/Sarajevo 2012-01-19
-3189848 Stjepan-Polje Stjepan-Polje Stjepan-Polje 44.71722 18.25944 P PPLL BA 01 4341 260 Europe/Sarajevo 2012-01-19
-3189884 Stijena Stijena 44.9363 16.02224 P PPLL BA 01 10844 416 Europe/Sarajevo 2012-02-28
-3190158 Srebrenik Srebrenik Srebrenik,Srebrnica,Srebrnik,Сребреник 44.70778 18.48806 P PPL BA 01 6723 182 Europe/Sarajevo 2012-02-28
-3190159 Srebrenica Srebrenica Srebrenica,Srebrnica,sureburenitsu~a,Сребреница,スレブレニツァ 44.10639 19.29694 P PPL BA 02 2862 361 Europe/Sarajevo 2007-02-17
-3190172 Srbac Srbac Srbac,Srpac,Srpak,Svinjar 45.09778 17.525 P PPL BA 02 7380 99 Europe/Sarajevo 2012-01-19
-3190357 Solina Solina 44.56028 18.69472 P PPLL BA 01 4780 279 Europe/Sarajevo 2006-01-17
-3190385 Sokolac Sokolac Sokola,Sokolac 43.93972 18.80167 P PPL BA 02 8842 879 Europe/Sarajevo 2012-02-28
-3190652 Sladna Sladna 44.72944 18.42417 P PPLL BA 01 4304 331 Europe/Sarajevo 2006-01-17
-3190733 Skender Vakuf Skender Vakuf Knezevo,Skender Vakuf 44.49083 17.3775 P PPL BA 02 6866 852 Europe/Sarajevo 2012-01-19
-3190837 Šipovo Sipovo Sipovo,Šipovo 44.28139 17.08389 P PPL BA 02 10738 443 Europe/Sarajevo 2012-01-19
-3190987 Šerići Serici Seric,Serici,Šerić,Šerići 44.46528 18.55806 P PPLL BA 01 3663 223 Europe/Sarajevo 2012-01-19
-3191156 Šekovići Sekovici Sejkovic,Sejkovici,Sekovici,Šejković,Šejkovići,Šekovići 44.29861 18.85278 P PPL BA 02 6315 345 Europe/Sarajevo 2012-01-19
-3191281 Sarajevo Sarajevo Bosna-Sarai,Saraeva,Saraevo,Saragebo,Saragiebo,Saragievo,Sarajeva,Sarajevas,Sarajevo,Sarajewo,Saraxevo - Sarajevo,Saraybosna,Szarajevo,Szarajevó,Vrh Bosna,sai la ye fu,salayebo,saraebo,saraevo,sarayewo,srayyfw,Σαράγεβο,Σαράγιεβο,Σαραγιεβο,Сараева,Сараево,Сарајево,Սարաևո,סראייבו,سراييفو,ซาราเยโว,სარაევო,ሳራዬቮ,サラエボ,塞拉耶佛,사라예보 43.84864 18.35644 P PPLC BA 01 696731 509 Europe/Sarajevo 2010-09-13
-3191297 Sanski Most Sanski Most Sana,Sanski Most,Сански Мост 44.7667 16.667 P PPL BA 01 13551 161 Europe/Sarajevo 2012-02-28
-3191302 Sanica Sanica Pravoslavna Sanica,Sanica 44.61354 16.64062 P PPL BA 01 5666 206 Europe/Sarajevo 2012-02-28
-3191426 Rumboci Rumboci 43.83222 17.50111 P PPL BA 01 3854 742 Europe/Sarajevo 2006-01-17
-3191449 Rudo Rudo Rudo,Рудо 43.61781 19.36719 P PPL BA 02 1760 401 Europe/Sarajevo 2012-02-28
-3191576 Rogatica Rogatica Jelengrad 43.80083 19.0025 P PPL BA 02 4947 529 Europe/Sarajevo 2006-01-17
-3191589 Rodoč Rodoc 43.30889 17.80694 P PPLL BA 01 5159 57 Europe/Sarajevo 2006-01-17
-3192123 Radišići Radisici Radisici,Radišići 43.22194 17.54306 P PPLL BA 01 4072 177 Europe/Sarajevo 2012-01-19
-3192206 Puračić Puracic Puracic,Puračić 44.54694 18.47667 P PPL BA 01 3461 186 Europe/Sarajevo 2012-01-19
-3192236 Novi Travnik Novi Travnik Novi Travnik,Pucarevo 44.17111 17.6575 P PPL BA 01 10006 509 Europe/Sarajevo 2012-01-19
-3192279 Prozor Prozor 43.82222 17.60917 P PPL BA 01 10349 711 Europe/Sarajevo 2006-01-17
-3192327 Prnjavor Prnjavor 44.87028 17.66278 P PPL BA 02 7099 173 Europe/Sarajevo 2006-01-17
-3192409 Prijedor Prijedor Priedora,Prijedor,Приедора,Приједор 44.97991 16.71401 P PPL BA 02 36347 134 Europe/Sarajevo 2012-02-28
-3192449 Priboj Priboj 44.60278 18.93139 P PPL BA 02 4351 251 Europe/Sarajevo 2006-01-17
-3192456 Pribinić Pribinic 44.61056 17.69056 P PPL BA 02 3558 337 Europe/Sarajevo 2006-01-17
-3192653 Potoci Potoci 43.40861 17.87861 P PPLL BA 01 8312 89 Europe/Sarajevo 2006-01-17
-3192718 Popovi Popovi 44.76556 19.2875 P PPL BA 02 1145 91 Europe/Sarajevo 2005-11-05
-3192793 Polje-Bijela Polje-Bijela Donje Bjela,Polje,Polje-Bijela 43.63299 17.97216 P PPL BA 01 1078 339 Europe/Sarajevo 2012-02-28
-3192878 Podzvizd Podzvizd 45.17417 15.87361 P PPLL BA 01 6665 239 Europe/Sarajevo 2006-01-17
-3193008 Podhum Podhum 43.72306 17.00111 P PPL BA 01 5801 731 Europe/Sarajevo 2006-01-17
-3193439 Petkovci Petkovci 44.46849 19.07466 P PPLL BA 02 2212 225 Europe/Sarajevo 2012-02-28
-3193542 Pećigrad Pecigrad Pecigrad,Pećigrad 45.05444 15.89694 P PPL BA 01 6514 290 Europe/Sarajevo 2012-01-19
-3193545 Peći Peci Peci,Peći 44.62722 16.78611 P PPLL BA 01 3650 338 Europe/Sarajevo 2012-01-19
-3193563 Pazarić Pazaric Pazaric,Pazarić 43.78861 18.16083 P PPL BA 01 4787 637 Europe/Sarajevo 2012-01-19
-3193692 Pale Pale Pale,Пале 43.81611 18.56944 P PPL BA 02 7458 835 Europe/Sarajevo 2012-01-19
-3193776 Otoka Otoka 44.96 16.17917 P PPL BA 01 6595 141 Europe/Sarajevo 2006-01-17
-3193821 Ostrožac Ostrozac Ostrazac,Ostražac,Ostrozac,Ostrožac 44.90866 15.94044 P PPL BA 01 5456 385 Europe/Sarajevo 2012-02-28
-3193855 Oštra Luka Ostra Luka 45 18.58833 P PPLL BA 02 3923 84 Europe/Sarajevo 2006-01-17
-3194013 Orguz Orguz 43.77389 16.86389 P PPL BA 01 4371 720 Europe/Sarajevo 2006-01-17
-3194035 Orašje Orasje Orasje,Orašje 45.03556 18.69333 P PPL BA 01 3613 85 Europe/Sarajevo 2012-01-19
-3194041 Orašac Orasac 44.63039 16.07443 P PPLL BA 01 3856 342 Europe/Sarajevo 2012-02-28
-3194061 Orahovica Donja Orahovica Donja Donja Orahovica,Orahovica Donja 44.65306 18.37028 P PPL BA 01 5612 192 Europe/Sarajevo 2012-02-28
-3194120 Omarska Omarska Omarska,Омарска 44.89 16.89917 P PPL BA 02 6466 164 Europe/Sarajevo 2012-02-28
-3194133 Olovo Olovo Olovo 44.13 18.58278 P PPL BA 01 3305 541 Europe/Sarajevo 2012-01-19
-3194199 Odžak Odzak Odzak,Odžak,Vukosavlje 45.01111 18.32667 P PPL BA 01 11621 100 Europe/Sarajevo 2012-02-28
-3194231 Obudovac Obudovac 44.965 18.61222 P PPLL BA 02 2171 86 Europe/Sarajevo 2006-01-17
-3194358 Novi Šeher Novi Seher Novi Seher,Novi Šeher 44.51028 18.02583 P PPL BA 01 4416 237 Europe/Sarajevo 2012-01-19
-3194510 Nevesinje Nevesinje Nevesinje 43.25861 18.11333 P PPL BA 02 7313 891 Europe/Sarajevo 2012-02-28
-3194514 Neum Neum Neum,ne-um,neumu,Неум,ネウム,네움 42.92333 17.61556 P PPL BA 01 4200 70 Europe/Sarajevo 2012-01-19
-3194724 Mrkonjić Grad Mrkonjic Grad Mrkonjic Grad,Mrkonjić Grad,Varcar Vakuf 44.41583 17.08611 P PPL BA 02 14737 567 Europe/Sarajevo 2012-01-19
-3194773 Mramor Mramor 44.59167 18.56444 P PPL BA 01 3918 249 Europe/Sarajevo 2006-01-17
-3194828 Mostar Mostar Mostar,Mostara,mosutaru,Мостар,מוסטאר,モスタル 43.34333 17.80806 P PPL BA 01 104518 66 Europe/Sarajevo 2012-01-19
-3195066 Mionica Mionica Donja Mionica,Mionica,Mionica Donja 44.86722 18.46306 P PPLL BA 01 8701 183 Europe/Sarajevo 2012-02-28
-3195128 Milići Milici Milici,Milići 44.17016 19.09195 P PPLL BA 02 8210 447 Europe/Sarajevo 2012-02-28
-3195399 Maslovare Maslovare Maslovare,Mastovare 44.56556 17.53361 P PPL BA 02 4899 404 Europe/Sarajevo 2012-01-19
-3195500 Marićka Maricka 44.86861 16.84056 P PPLL BA 02 3707 163 Europe/Sarajevo 2006-01-17
-3195839 Mala Kladuša Mala Kladusa 45.13443 15.85217 P PPLL BA 01 6033 204 Europe/Sarajevo 2012-02-28
-3195930 Mahala Mahala Mahala 44.01194 18.25528 P PPL BA 01 5062 485 Europe/Sarajevo 2012-01-19
-3195945 Maglajani Maglajani Bosanski Aleksandrovac,Maglajani 44.94861 17.34944 P PPLL BA 02 4221 113 Europe/Sarajevo 2012-01-19
-3195946 Maglaj Maglaj Maglaj,Маглај 44.54917 18.09667 P PPL BA 01 7399 175 Europe/Sarajevo 2012-01-19
-3196066 Lukavica Lukavica Lukavica 44.76278 18.16889 P PPLL BA 01 4084 213 Europe/Sarajevo 2012-01-19
-3196209 Lopare Lopare Lopare,Лопаре 44.63778 18.84278 P PPL BA 02 3614 240 Europe/Sarajevo 2012-01-19
-3196243 Lokvine Lokvine Lokrine,Lokvine 44.20472 17.85639 P PPL BA 01 3928 399 Europe/Sarajevo 2012-01-19
-3196324 Ljubuški Ljubuski Ljubuski,Ljubuški 43.19694 17.545 P PPL BA 01 9987 95 Europe/Sarajevo 2012-01-19
-3196364 Ljubinje Ljubinje Ljubinje 42.95083 18.08861 P PPL BA 02 4235 408 Europe/Sarajevo 2012-01-19
-3196410 Livno Livno Livno,livno,Ливно 43.82694 17.00778 P PPL BA 01 11748 745 Europe/Sarajevo 2012-01-19
-3196428 Široki Brijeg Siroki Brijeg Listica,Lištica,Siroki Brijeg,Široki Brijeg 43.38333 17.59278 P PPL BA 01 9370 273 Europe/Sarajevo 2012-01-19
-3196792 Laktaši Laktasi Banja Laktasi,Banja Laktaši,Laktasi,Laktasi Ilidza,Laktaši,Laktaši Ilidža 44.90806 17.30083 P PPL BA 02 6464 124 Europe/Sarajevo 2012-01-19
-3197532 Kotor-Varoš Kotor-Varos 44.61694 17.37167 P PPL BA 02 5068 284 Europe/Sarajevo 2006-01-17
-3197944 Kočerin Kocerin Kocerin,Kočerin 43.38972 17.485 P PPL BA 01 3516 321 Europe/Sarajevo 2012-01-19
-3197964 Kobilja Glava Kobilja Glava Kobilja Glava 43.88194 18.38917 P PPL BA 01 3666 601 Europe/Sarajevo 2012-01-19
-3198050 Ključ Kljuc Kljuc,Ključ 44.535 16.77222 P PPL BA 01 7245 265 Europe/Sarajevo 2012-02-28
-3198126 Kladanj Kladanj Kladanj 44.22639 18.69139 P PPL BA 01 6783 574 Europe/Sarajevo 2012-02-28
-3198137 Kiseljak Kiseljak Kiseljak 44.48889 18.56889 P PPL BA 01 3447 211 Europe/Sarajevo 2012-01-19
-3198138 Kiseljak Kiseljak Kiseljak 43.9425 18.07667 P PPL BA 01 8475 487 Europe/Sarajevo 2012-01-19
-3198293 Karadaglije Karadaglije 44.57167 18.01833 P PPL BA 01 3700 275 Europe/Sarajevo 2006-01-17
-3198462 Kalenderovci Donji Kalenderovci Donji Kalenderovci Donji 44.945 17.83389 P PPL BA 02 5890 162 Europe/Sarajevo 2012-01-19
-3198490 Kakanj Kakanj Kakanj 44.12722 18.11806 P PPL BA 01 12406 395 Europe/Sarajevo 2012-01-19
-3198618 Jezerski Jezerski Jezerski,Jezersko 44.98172 16.09448 P PPLL BA 01 4361 323 Europe/Sarajevo 2012-02-28
-3198895 Janja Janja 44.66528 19.24778 P PPL BA 02 5544 103 Europe/Sarajevo 2006-01-17
-3198934 Jajce Jajce Jajca,Jajce,Јајце 44.34222 17.26556 P PPL BA 01 9763 409 Europe/Sarajevo 2012-01-19
-3199027 Izačić Izacic Izacic,Izacic Grad,Izačić,Izačić Grad 44.87485 15.78256 P PPL BA 01 4089 329 Europe/Sarajevo 2012-02-28
-3199142 Ilijaš Ilijas Ilias,Iliaš,Ilijas,Ilijaš 43.95083 18.27083 P PPL BA 01 5855 458 Europe/Sarajevo 2012-01-19
-3199417 Han Pijesak Han Pijesak Han Pijesak 44.08083 18.9525 P PPL BA 02 4206 1088 Europe/Sarajevo 2012-01-19
-3199438 Hadžići Hadzici Hadzici,Hadžići 43.82222 18.20667 P PPL BA 01 7173 555 Europe/Sarajevo 2012-01-19
-3199509 Grude Grude Grude 43.36417 17.42056 P PPLL BA 01 4627 260 Europe/Sarajevo 2012-01-19
-3199525 Gromiljak Gromiljak Gromiljak 43.96667 18.05306 P PPL BA 01 6457 482 Europe/Sarajevo 2012-01-19
-3199744 Gradačac Gradacac Gradacac,Gradačac 44.88083 18.42694 P PPL BA 01 15659 153 Europe/Sarajevo 2012-02-28
-3199779 Gračanica Gracanica Gracanica,Gračanica 44.70333 18.30972 P PPL BA 01 15758 188 Europe/Sarajevo 2012-02-28
-3199784 Gračanica Gracanica 43.73333 18.28333 P PPL BA 01 3871 1173 Europe/Sarajevo 2007-05-30
-3199862 Gostovići Gostovici Gostovic,Gostovici,Gostović,Gostovići 44.415 18.15833 P PPLL BA 01 5802 284 Europe/Sarajevo 2012-01-19
-3199904 Gornji Vakuf Gornji Vakuf Gornji Vakuf,Uskoplje,Vakuf Gornji 43.93806 17.58833 P PPL BA 01 7014 671 Europe/Sarajevo 2012-01-19
-3200059 Gornje Živinice Gornje Zivinice Gornje Zivinice,Gornje Živinice,Muslimanske Zivinice,Muslimanske Živinice,Zivinice Gornje,Živinice Gornje 44.42861 18.61694 P PPLL BA 01 4661 289 Europe/Sarajevo 2012-02-28
-3200108 Gornje Moštre Gornje Mostre Gornje Mostre,Gornje Moštre,Mostre Gornje,Moštre Gornje 44.01889 18.15333 P PPL BA 01 4009 409 Europe/Sarajevo 2012-01-19
-3200167 Gornja Tuzla Gornja Tuzla 44.55611 18.76139 P PPL BA 01 4864 315 Europe/Sarajevo 2006-01-17
-3200245 Gornja Koprivna Gornja Koprivna 45.01091 15.95487 P PPLL BA 01 4600 446 Europe/Sarajevo 2012-02-28
-3200396 Goražde Gorazde Gorazde,Gorazhde,Goražde,Горажде 43.66694 18.97639 P PPL BA 01 17650 336 Europe/Sarajevo 2007-02-17
-3200538 Gnojnica Gnojnica 44.62056 18.44667 P PPL BA 01 3985 238 Europe/Sarajevo 2006-01-17
-3200651 Glamoč Glamoc Glamoc,Glamoč 44.04583 16.84861 P PPL BA 01 4016 950 Europe/Sarajevo 2012-01-19
-3200768 Gacko Gacko Gacko 43.16722 18.53528 P PPL BA 02 3417 970 Europe/Sarajevo 2012-01-19
-3200829 Fojnica Fojnica Fojnica,fwynchh,فوینچه 43.9625 17.89833 P PPL BA 01 8244 583 Europe/Sarajevo 2012-01-19
-3200837 Foča Foca Srbinje 43.505 18.77861 P PPL BA 02 14615 393 Europe/Sarajevo 2006-01-17
-3200930 Tomislavgrad Tomislavgrad Duvno,Tomislavgrad,Zupanjac,Županjac,Томиславград 43.71806 17.22667 P PPL BA 01 7737 895 Europe/Sarajevo 2012-01-19
-3201057 Dubravica Dubravica 44.44194 18.11806 P PPL BA 01 3868 391 Europe/Sarajevo 2006-01-17
-3201060 Dubrave Gornje Dubrave Gornje Dubrave Gornje,Gornje Dubrave 44.47139 18.72972 P PPL BA 01 4821 309 Europe/Sarajevo 2012-02-28
-3201061 Dubrave Donje Dubrave Donje Donje Dubrave,Dubrave Donje 44.48111 18.69611 P PPL BA 01 3811 290 Europe/Sarajevo 2012-02-28
-3201177 Drinovci Drinovci 43.355 17.35389 P PPLL BA 01 3791 445 Europe/Sarajevo 2006-01-17
-3201376 Donji Vakuf Donji Vakuf Donji Vakuf,Srbobran 44.14361 17.4 P PPL BA 01 7955 515 Europe/Sarajevo 2012-01-19
-3201660 Donja Međiđa Donja Medida Donja Mededa,Donja Medida,Donja Medjedja,Donja Medjidja,Donja Međeđa,Donja Međiđa 44.8025 18.40333 P PPL BA 01 3782 202 Europe/Sarajevo 2012-01-19
-3201662 Donja Mahala Donja Mahala 45.04694 18.66639 P PPL BA 01 5565 84 Europe/Sarajevo 2006-01-17
-3201697 Donja Dubica Donja Dubica 45.075 18.41139 P PPL BA 01 3489 83 Europe/Sarajevo 2006-01-17
-3201928 Dobrljin Dobrljin Dobrlin,Dobrljin 45.15106 16.47869 P PPL BA 02 3582 216 Europe/Sarajevo 2012-02-28
-3201931 Dobrinje Dobrinje 44.04972 18.11944 P PPL BA 01 3987 425 Europe/Sarajevo 2006-01-17
-3201984 Doboj Doboj Doboj 44.73472 18.08778 P PPL BA 02 27235 141 Europe/Sarajevo 2012-01-19
-3202014 Divičani Divicani Divicani,Divičani 44.36667 17.32611 P PPL BA 01 7251 582 Europe/Sarajevo 2012-01-19
-3202081 Derventa Derventa Derbend,Dervent,Derventa,drbnd,Дервента,دربند 44.97722 17.91028 P PPL BA 02 9773 135 Europe/Sarajevo 2012-02-28
-3202564 Čitluk Citluk Citluk,Čitluk 43.22861 17.70083 P PPL BA 01 5718 225 Europe/Sarajevo 2012-01-19
-3202589 Cim Cim 43.35278 17.77722 P PPLL BA 01 3966 126 Europe/Sarajevo 2006-01-17
-3202817 Čečava Cecava Cecava,Čečava 44.68667 17.77056 P PPLL BA 02 3847 201 Europe/Sarajevo 2012-02-28
-3202822 Cazin Cazin Cazin,Цазин 44.96694 15.94306 P PPL BA 01 21741 325 Europe/Sarajevo 2012-01-19
-3202873 Čapljina Capljina 43.12139 17.68444 P PPL BA 01 7923 38 Europe/Sarajevo 2006-01-17
-3202895 Čajniče Cajnice 43.5575 19.07111 P PPL BA 02 3909 841 Europe/Sarajevo 2006-01-17
-3202935 Bužim Buzim Buzim,Bužim 45.05361 16.03254 P PPLL BA 01 7229 274 Europe/Sarajevo 2012-02-28
-3202955 Busovača Busovaca Busovaca,Busovača 44.0975 17.87889 P PPL BA 01 4776 392 Europe/Sarajevo 2012-01-19
-3203099 Bugojno Bugojno Bugojne,Bugojno,Бугойно,Бугојно 44.05722 17.45083 P PPL BA 01 41378 565 Europe/Sarajevo 2012-01-19
-3203227 Bronzani Majdan Bronzani Majdan 44.78694 16.93111 P PPLL BA 02 3945 210 Europe/Sarajevo 2006-01-17
-3203521 Brčko Brcko Brchko,Брчко 44.87278 18.80833 P PPL BA BRC 38479 95 Europe/Sarajevo 2010-01-29
-3203533 Bratunac Bratunac Bratinac 44.1875 19.33944 P PPL BA 02 4717 177 Europe/Sarajevo 2006-01-17
-3203644 Bosansko Grahovo Bosansko Grahovo Bosansko Grahovo,Bosansko Grakhovo,Grahovo,Hrvatsko Grahovo,Босанско Грахово 44.17944 16.36389 P PPL BA 01 5643 855 Europe/Sarajevo 2012-01-19
-3203645 Bosanski Šamac Bosanski Samac Bosanski Samac,Bosanski Shamac,Bosanski Šamac,Samac,Shamac,Šamac,Босански Шамац,Шамац 45.05917 18.46694 P PPL BA 02 3599 86 Europe/Sarajevo 2012-02-28
-3203647 Bosanski Novi Bosanski Novi Bosanski Novi,Novi,Novi Grad 45.04643 16.37782 P PPL BA 02 8920 179 Europe/Zagreb 2012-02-28
-3203651 Bosanski Brod Bosanski Brod Bosanski Brod,Brod,Srpski Brod,Брод 45.1375 17.98972 P PPL BA 02 9249 85 Europe/Sarajevo 2012-01-19
-3203653 Bosanska Krupa Bosanska Krupa Bosanska Krupa,Krupa,Krupa na Uni,Босанска Крупа 44.8825 16.15139 P PPL BA 01 15193 153 Europe/Sarajevo 2012-02-28
-3203655 Kostajnica Kostajnica Bosanska Kostajnica,Kostajnica,Srpska Kostajnica 45.21956 16.53929 P PPL BA 02 4739 114 Europe/Sarajevo 2012-02-28
-3203656 Bosanska Gradiška Bosanska Gradiska Bosanska Gradiska,Bosanska Gradiška,Gradiska,Gradiska na Savi,Gradiška,Gradiška na Savi 45.14111 17.25 P PPL BA 02 13346 90 Europe/Sarajevo 2012-01-19
-3203657 Bosanska Dubica Bosanska Dubica Bosanska Dubica,Kozarska Dubica 45.17667 16.80944 P PPL BA 02 9959 99 Europe/Sarajevo 2012-01-19
-3203950 Blatnica Blatnica 44.48639 17.82333 P PPL BA 02 5676 338 Europe/Sarajevo 2006-01-17
-3203970 Blagaj Blagaj Blagaj 43.2575 17.88861 P PPL BA 01 4715 43 Europe/Sarajevo 2012-01-19
-3204161 Bileća Bileca Bileca,Bilece,Bilegja,Bileća,Bileće,bylz'h,Билећа,בילצ'ה 42.87194 18.42972 P PPL BA 02 13257 479 Europe/Sarajevo 2012-01-19
-3204168 Bila Bila 43.7825 16.92528 P PPLL BA 01 4397 722 Europe/Sarajevo 2006-01-17
-3204186 Bijeljina Bijeljina Beline,Bieline,Bijelina,Bijeljina,blnh,byylynh,Биелине,Бијељина,ביילינה,بلنه 44.75694 19.21611 P PPL BA 02 37692 92 Europe/Sarajevo 2012-01-19
-3204222 Bihać Bihac Bihac,Bihaç,Bihać,Bikhach,Бихач,Бихаћ 44.81694 15.87083 P PPL BA 01 75641 223 Europe/Sarajevo 2012-01-19
-3204520 Banovići Banovici Banovic,Banovici,Banović,Banovići,Litva,Stara Litva 44.40528 18.52417 P PPL BA 00 7211 341 Europe/Sarajevo 2012-01-19
-3204541 Banja Luka Banja Luka Bana Luka,Bania Louka,Bania Luka,Banialuca,Banja Luka,Banja Luka - Bana Luka,Banja Luka - Бања Лука,Banja-Luka,Banja-Lukae,Banjaluko,Banya Luka,ba ni ya lu ka,banja luka,banya lwka,banyaluka,bnya lwka,Μπάνια Λούκα,Баня Лука,Баня-Лукæ,Баня-Лука,Бања Лука,באניה לוקה,بانیا لوکا,بنيا لوكا,बंजा लुका,バニャ・ルカ,巴尼亚卢卡,바냐루카 44.77583 17.18556 P PPLA BA 02 221106 166 Europe/Sarajevo 2008-03-14
-3204590 Balatun Balatun 44.86278 19.34139 P PPL BA 02 1400 82 Europe/Sarajevo 2005-11-05
-3206012 Koran Koran 43.81028 18.56889 P PPL BA 02 3395 855 Europe/Sarajevo 2006-01-17
-3210439 Jelah Jelah Jelah 44.65417 17.95806 P PPL BA 01 5291 183 Europe/Sarajevo 2012-01-19
-3210448 Stanari Stanari Stanari 44.74722 17.82944 P PPLL BA 02 3590 190 Europe/Sarajevo 2012-01-19
-3210593 Podbrdo Podbrdo 44.44083 17.01389 P PPLL BA 02 4028 770 Europe/Sarajevo 2006-01-17
-3210920 Malešići Malesici Malesici,Malešići 44.73806 18.27389 P PPLL BA 01 3764 383 Europe/Sarajevo 2012-01-19
-3211287 Svojat Svojat 44.39472 18.73917 P PPL BA 00 3516 310 Europe/Sarajevo 2006-01-17
-3211537 Dvorovi Dvorovi Dvorovi 44.80667 19.26056 P PPL BA 02 1710 88 Europe/Sarajevo 2012-01-19
-3211929 Knežica Knezica Knezica,Knežica 45.10548 16.67668 P PPL BA 02 4792 165 Europe/Sarajevo 2012-02-28
-3212301 Pjanići Pjanici 44.98568 15.82304 P PPLL BA 01 3537 279 Europe/Sarajevo 2012-02-28
-3212590 Polje Polje 43.88056 18.07444 P PPL BA 01 3799 563 Europe/Sarajevo 2006-01-17
-3213083 Ilići Ilici 43.34722 17.76806 P PPL BA 01 3688 98 Europe/Sarajevo 2006-01-17
-3245419 Careva Ćuprija Careva Cuprija 44.26583 18.42917 P PPL BA 00 3954 385 Europe/Sarajevo 2006-01-17
-3247554 Čelinac Celinac Celinac,Čelinac 44.72278 17.32778 P PPL BA 02 6670 199 Europe/Sarajevo 2012-01-19
-3248643 Hiseti Hiseti Kocicev Vijenac,Kočićev Vijenac 44.76111 17.17944 P PPLX BA 02 5000 172 Europe/Sarajevo 2011-06-12
-3248645 Piskavica Piskavica 44.86806 16.97361 P PPL BA 02 3797 174 Europe/Sarajevo 2006-01-17
-3249941 Lamovita Lamovita 44.92556 16.90722 P PPLL BA 02 4582 205 Europe/Sarajevo 2006-01-17
-3251418 Putiševac Putisevac 44.53944 17.06278 P PPL BA 02 1064 1048 Europe/Sarajevo 2005-11-10
-3253010 Tešanjka Tesanjka 44.67306 18.01278 P PPL BA 01 5666 156 Europe/Sarajevo 2006-01-17
-3257948 Kovači Kovaci 44.44917 18.205 P PPL BA 01 6410 373 Europe/Sarajevo 2006-01-17
-3258022 Liješnica Lijesnica Lijesnica,Liješnica 44.49417 18.07417 P PPL BA 01 3559 264 Europe/Sarajevo 2012-01-19
-3259075 Ćoralići Coralici 45.00694 15.87194 P PPLL BA 01 5223 286 Europe/Sarajevo 2006-01-17
-3262021 Crnići Crnici 43.12889 17.86667 P PPLL BA 01 5789 220 Europe/Sarajevo 2006-01-17
-3262877 Barice Barice 44.54056 18.48111 P PPL BA 01 3697 221 Europe/Sarajevo 2006-01-17
-3268187 Hotonj Hotonj Hotonj 43.89472 18.37278 P PPLL BA 01 4013 548 Europe/Sarajevo 2012-01-19
-3278045 Skokovi Skokovi Skokovi 45.03139 15.91444 P PPL BA 01 3553 462 Europe/Sarajevo 2012-01-19
-3283848 Drežnica Dreznica 43.52889 17.28194 P PPL BA 01 3908 848 Europe/Sarajevo 2006-01-17
-3289093 Kačuni Kacuni Kacuni,Kačuni 44.065 17.93861 P PPL BA 01 5042 442 Europe/Sarajevo 2012-01-19
-3293429 Pajić Polje Pajic Polje Pajic Polje,Pajić Polje 43.97583 17.5275 P PPL BA 01 4026 620 Europe/Sarajevo 2012-01-19
-3295485 Gornja Breza Gornja Breza Breza,Gornja Breza 44.03694 18.24472 P PPL BA 01 3732 665 Europe/Sarajevo 2012-01-19
-3301568 Todorovo Todorovo 45.08833 15.93083 P PPLL BA 01 9560 331 Europe/Sarajevo 2006-01-17
-3337476 Konjic Konjic Konjic 43.65126 17.96082 P PPL BA 01 15950 275 Europe/Sarajevo 2012-02-29
-3344411 Jablanica Jablanica Jablanica 43.66028 17.76167 P PPL BA 01 6209 199 Europe/Sarajevo 2012-01-20
-3344788 Bijela Bijela Bijela 43.60871 17.95078 P PPLL BA 01 3484 452 Europe/Sarajevo 2012-02-29
-3373430 Welchman Hall Welchman Hall 13.18333 -59.56667 P PPLA BB 11 0 267 America/Barbados 2012-01-16
-3373505 Speightstown Speightstown Speightstown,Spreightstown 13.25 -59.65 P PPL BB 09 3634 1 America/Barbados 2012-01-18
-3373652 Oistins Oistins Oistin's Town,Oistins,Oistin’s Town 13.06667 -59.53333 P PPL BB 01 2285 48 America/Barbados 2012-01-18
-3373790 Holetown Holetown Holetown,The Hole 13.18672 -59.63808 P PPLA BB 04 1350 255 America/Barbados 2012-01-16
-3374036 Bridgetown Bridgetown Bridgetown,Bridzhtaun,Bridztaun,Bridztaunas,Bridžtaunas,The Bridge Town,beulijitaun,brydj tawn,bu li qi dun,burijjitaun,Бриджтаун,Бриџтаун,ברידג'טאון,بريدج تاون,ብርጅታውን,ブリッジタウン,布里奇敦,브리지타운 13.1 -59.61667 P PPLC BB 08 98511 10 America/Barbados 2012-01-18
-3374083 Bathsheba Bathsheba Bathsheba 13.21667 -59.51667 P PPL BB 06 1765 -9999 America/Barbados 2012-01-18
-1185092 Thākurgaon Thakurgaon Thakurgaom,Thakurgaon,Thakus Gaon,Thākurgaom,Thākurgaon 26.03333 88.46667 P PPL BD 87 71096 60 Asia/Dhaka 2012-02-28
-1185095 Teknāf Teknaf Teknaaf,Teknaf,Teknāf 20.86243 92.30582 P PPL BD 84 40557 3 Asia/Dhaka 2012-01-17
-1185098 Tungi Tungi Tangi,Tongi,Tungi,tangi,টঙ্গী 23.89 90.40583 P PPL BD 81 337579 13 Asia/Dhaka 2012-01-17
-1185099 Sylhet Sylhet Jalalabad,Rajnagar,Rājnagar,Silet,Sileţ,Silhatta,Silkhet,Silot,Silôţ,Sreehatta,Srihotto,Srihôţţo,Sylhet,sileta,Силхет,সিলেট 24.89667 91.87167 P PPLA BD 86 237000 20 Asia/Dhaka 2012-01-17
-1185100 Dohār Dohar Dohai,Dohar,Dohāi,Dohār,Sutarpara,Sutārpara 23.58833 90.14694 P PPL BD 81 45543 14 Asia/Dhaka 2012-01-17
-1185106 Jamālpur Jamalpur Jamaipur,Jamalpur,Jamālpur,Singhjani,Singhjāni 24.91667 89.93333 P PPL BD 00 167900 20 Asia/Dhaka 2012-01-17
-1185108 Shibganj Shibganj Shibganj,Sibganj 24.68293 88.15975 P PPL BD 83 35961 28 Asia/Dhaka 2012-01-17
-1185111 Sātkhira Satkhira Satkhira,Shatkhira,Sātkhira 22.71667 89.1 P PPL BD 00 128918 4 Asia/Dhaka 2012-01-17
-1185115 Sirājganj Sirajganj Serajganj Municipality,Siradzhgandzh,Sirajganj,Siranganj,Sirājganj,sirajaganja,Сираджгандж,সিরাজগঞ্জ 24.45 89.71667 P PPL BD 00 127481 15 Asia/Dhaka 2012-01-17
-1185116 Netrakona Netrakona Netrakona,Satpai,Sātpāi 24.88333 90.71667 P PPL BD 81 79016 10 Asia/Dhaka 2012-01-17
-1185117 Narsingdi Narsingdi Narsingdi,Narsinghdi,Satirpara,Satirpāra 23.92083 90.71806 P PPL BD 81 281080 12 Asia/Dhaka 2012-01-17
-1185120 Sandwīp Sandwip Sandvip,Sandwip,Sandwīp,Сандвип 22.46778 91.45611 P PPL BD 84 52152 0 Asia/Dhaka 2012-01-17
-1185121 Shāhzādpur Shahzadpur Sahzadpur,Shahzadpur,Shāhzādpur 24.16667 89.6 P PPL BD 00 102420 11 Asia/Dhaka 2012-01-17
-1185127 Rāmganj Ramganj Ramganj,Ratanpur,Rāmganj 23.1 90.85 P PPL BD 00 55241 12 Asia/Dhaka 2012-01-17
-1185128 Rājshāhi Rajshahi Radzhshakhi,Rajshahi,Rampur Baolia,Rampur Bauleah,Rampur Boalia,Rājshāhi,rajasahi,Раджшахи,রাজশাহী 24.36667 88.6 P PPLA BD 83 700133 26 Asia/Dhaka 2012-01-17
-1185138 Pirojpur Pirojpur Perijpur,Perojpur Municipality,Pirojpur 22.56667 89.98333 P PPL BD 85 54418 5 Asia/Dhaka 2012-01-17
-1185141 Panchagarh Panchagarh Pachagar,Pachagarh,Pachāgarh,Panchagarh 26.33129 88.562 P PPL BD 87 48531 78 Asia/Dhaka 2012-02-28
-1185148 Patiya Patiya Patia,Patiya 22.29312 91.97621 P PPL BD 84 51360 10 Asia/Dhaka 2012-01-17
-1185149 Parbatipur Parbatipur Parbatipur,Parvatipur,Pārvatīpur 25.66491 88.9247 P PPL BD 87 48020 37 Asia/Dhaka 2012-02-28
-1185155 Nārāyanganj Narayanganj Narajanganj,Narayanganj,Nārāyanganj 23.62333 90.50111 P PPL BD 81 223622 13 Asia/Dhaka 2012-01-17
-1185156 Nālchiti Nalchiti Nalchhiti,Nalchiti,Nālchiti 22.63333 90.28333 P PPL BD 00 38703 10 Asia/Dhaka 2012-01-17
-1185160 Nageswari Nageswari Nagasewari,Nageshawari,Nageshwari,Nageswari,Nagheswari,Nāgeshwari,Paschim Nageswari 25.96881 89.69299 P PPL BD 87 49425 33 Asia/Dhaka 2012-01-17
-1185162 Mymensingh Mymensingh Majmensingkh,Mymensing,Mymensingh,Nasirabad,Nasirābād,Майменсингх 24.75 90.4 P PPL BD 00 225126 17 Asia/Dhaka 2012-01-17
-1185164 Muktāgācha Muktagacha Muktagacha,Muktagachha,Muktāgācha 24.76667 90.23333 P PPL BD 00 24684 17 Asia/Dhaka 2012-01-17
-1185165 Mirzāpur Mirzapur Mirzapur,Mirzāpur,Mrizapur,Мирзапур 24.1 90.1 P PPL BD 00 41137 10 Asia/Dhaka 2012-01-17
-1185166 Moulvi Bāzār Moulvi Bazar Maulvi Bazar,Maulvi Bāzār,Moulvi Bazar,Moulvi Bazar Municipality,Moulvi Bāzār 24.48333 91.78333 P PPL BD 86 57441 16 Asia/Dhaka 2012-02-28
-1185167 Morrelgonj Morrelgonj Fakirertakia,Fakirertākia,Morrelganj,Morrelgonj,Morrellganj 22.4537 89.8587 P PPL BD 82 31647 9 Asia/Dhaka 2012-01-17
-1185171 Mehendiganj Mehendiganj Mehdigunj,Mehendiganj 22.81667 90.53333 P PPL BD 00 39424 6 Asia/Dhaka 2012-01-17
-1185173 Mathba Mathba Matbari,Matbaria,Matbāri,Mathba,Mathbari,Mathbaria,Sankibhanga 22.2855 89.9629 P PPL BD 85 29760 4 Asia/Dhaka 2012-01-17
-1185181 Lalmanirhat Lalmanirhat Lalmanir Hat,Lalmanirat,Lalmanirhat,Lalmonirhat,Lālmanir Hāt 25.91244 89.44729 P PPL BD 87 65127 37 Asia/Dhaka 2012-01-17
-1185183 Lākshām Laksham Laksam,Laksham,Lākshām 23.24722 91.1425 P PPL BD 84 82290 8 Asia/Dhaka 2012-01-17
-1185186 Comilla Comilla Comilla,Komille,Kumilla,Kumillā,kumilla,Комилле,কুমিল্লা 23.45778 91.20444 P PPL BD 84 389411 18 Asia/Dhaka 2012-01-17
-1185188 Rangpur Rangpur Kotwali,Kotwāli,Mosque Rangpur,Rangpur,Рангпур 25.75 89.25 P PPLA2 BD 87 285564 37 Asia/Dhaka 2012-02-28
-1185191 Kushtia Kushtia Khustia,Kushtia 23.90105 89.12207 P PPL BD 82 135724 16 Asia/Dhaka 2012-01-17
-1185199 Kālīganj Kaliganj Aliganj,Kaliganj,Kaliganja,Kālīganj 23.4095 89.1402 P PPL BD 82 45631 14 Asia/Dhaka 2012-01-17
-1185204 Jhingergācha Jhingergacha Jhikargacha,Jhikargachha,Jhikargāchha,Jhikergacha,Jhingergacha,Jhingergācha,Jhinkargacha 23.1131 89.0938 P PPL BD 82 41957 10 Asia/Dhaka 2012-01-17
-1185206 Joypurhat Joypurhat Jaipur Hat,Jaipur Hāt,Jaypur Hat,Joypurhat 25.09433 89.02169 P PPL BD 83 73068 23 Asia/Dhaka 2012-01-17
-1185207 Ishurdi Ishurdi Ishurda,Ishurdi 24.13333 89.08333 P PPL BD 00 81995 16 Asia/Dhaka 2012-01-17
-1185209 Habiganj Habiganj Habiganj,Habiganj Bazar,Habiganj Sadar,Hobiganj 24.38333 91.41667 P PPL BD 86 88760 16 Asia/Dhaka 2012-02-28
-1185210 Gaurnadi Gaurnadi Gaurnadi,Gournadi 22.96667 90.23333 P PPL BD 00 40519 10 Asia/Dhaka 2012-01-17
-1185218 Gafargaon Gafargaon Gafargaon,Gaffargaon,Ghafargaon 24.43333 90.56667 P PPL BD 00 34177 15 Asia/Dhaka 2012-01-17
-1185224 Feni Feni Fani,Feni,Fenny,Pheni 23.01861 91.41 P PPL BD 84 84028 12 Asia/Dhaka 2012-01-17
-1185236 Rāipur Raipur Deyanatpur,Deyānatpur,Raipur,Rajpur,Raypur,Rāipur,Райпур 23.05 90.76667 P PPL BD 00 64652 18 Asia/Dhaka 2012-01-17
-1185239 Sarankhola Sarankhola Dakshin Rajapur,Dakshin Rājāpur,Sarankhola 22.3082 89.7897 P PPL BD 82 36470 5 Asia/Dhaka 2012-01-17
-1185241 Dhaka Dhaka Daca,Dacca,Dacca - dhaka,Dacca - ঢাকা,Daka,Dakah,Dakka,Dako,Dhaka,Dháka,Dhâkâ,Mujib City,Ntakka,da ka,daka,dakka,dhaka,dka,thaka,Ντάκκα,Дакка,דאקה,دكا,ڈھاکہ,ढाका,ঢাকা,ઢાકા,ธากา,ダッカ,达卡,다카 23.7104 90.40744 P PPLC BD 81 13 10356500 23 Asia/Dhaka 2012-01-14
-1185247 Chilmāri Chilmari Chillmari,Chilmari,Chilmāri 25.55592 89.67152 P PPL BD 87 49736 27 Asia/Dhaka 2012-01-17
-1185249 Chhāgalnāiya Chhagalnaiya Chhagainaya,Chhagalnaia,Chhagalnaiya,Chhagalnaya,Chhāgalnāiya,Paschim Chhagalnaiya,Paschim Chhāgalnāiya,West Chhagal Naiya,West Chhagalnaia 23.03 91.50694 P PPL BD 84 39335 7 Asia/Dhaka 2012-01-17
-1185251 Lālmohan Lalmohan Char Lalmohan,Char Lalmohun,Char Lālmohan,Dhar Lalmohan,Lalmohan,Lālmohan 22.3384 90.7419 P PPL BD 85 42220 6 Asia/Dhaka 2012-01-17
-1185252 Khagrāchari Khagrachari Changrachhari,Khabangpari,Khagrachari,Khagrachhari,Khagrāchari,Khagrāchhari,Kkhagrachari,Кхаграчари 23.1 91.96667 P PPL BD 00 50364 62 Asia/Dhaka 2012-01-17
-1185254 Chhātak Chhatak Cehatak,Chatak,Chattakbazar,Chhatak,Chhatar Bazaar,Chhātak 25.03333 91.66667 P PPL BD 00 39218 14 Asia/Dhaka 2012-01-17
-1185260 Bhātpāra Abhaynagar Bhatpara Abhaynagar Abhaynagar,Bhatpara Abhaynagar,Bhātpāra Abhaynagar 23.01531 89.4432 P PPL BD 82 42653 8 Asia/Dhaka 2012-01-17
-1185262 Bherāmāra Bheramara Bhairamara,Bheramara,Bherāmāra 24.0232 88.9925 P PPL BD 82 38159 21 Asia/Dhaka 2012-01-17
-1185263 Bhairab Bāzār Bhairab Bazar Bhairab Bazar,Bhairab Bāzār,Bhairab Town 24.06667 90.96667 P PPL BD 00 105457 9 Asia/Dhaka 2012-01-17
-1185270 Bāndarban Bandarban Bandarban,Bardarban,Bāndarban,Бандарбан 22.1965 92.2262 P PPL BD 84 32523 29 Asia/Dhaka 2012-01-17
-1185272 Kālia Kalia Bara Kalia,Bara Kālia,Kalia,Kalija,Kālia,Калия 23.0396 89.6328 P PPL BD 81 40492 11 Asia/Dhaka 2012-01-17
-1185274 Baniachang Baniachang Baniachang,Banivachong,Baniyachong,Baniyachung,Bāniyāchung 24.51667 91.36667 P PPL BD 00 37807 15 Asia/Dhaka 2012-01-17
-1185276 Bājitpur Bajitpur Bajitpur,Bajutpur,Bājitpur 24.21667 90.95 P PPL BD 00 34560 9 Asia/Dhaka 2012-01-17
-1185283 Badarganj Badarganj Badarganj,Badarganja 25.67403 89.0549 P PPL BD 87 32600 39 Asia/Dhaka 2012-01-17
-1185293 Narail Narail Aladatpur,Alādātpur,Narail,Naral,Narāl 23.16667 89.5 P PPL BD 00 55112 10 Asia/Dhaka 2012-01-17
-1185920 Tungipāra Tungipara Tongipara,Tungipara,Tungipāra 22.9 89.91667 P PPL BD 00 62210 5 Asia/Dhaka 2012-01-17
-1188569 Sarishābāri Sarishabari Sarisabar,Sarisabari,Sarishabari,Sarishābāri,Sarsabari 24.73333 89.83333 P PPL BD 00 81325 18 Asia/Dhaka 2012-01-17
-1189056 Sakhipur Sakhipur 24.3 90.18333 P PPL BD 00 40869 24 Asia/Dhaka 2006-01-17
-1189638 Raojān Raojan Raajan,Raajān,Raojan,Raojān,Raozan,Rauzan 22.53702 91.91984 P PPL BD 84 25708 6 Asia/Dhaka 2012-01-17
-1191139 Phultala Phultala 22.7 89.51667 P PPL BD 00 37985 3 Asia/Dhaka 2006-01-17
-1191368 Pālang Palang 23.21667 90.35 P PPL BD 00 67652 10 Asia/Dhaka 2006-01-17
-1192366 Pār Naogaon Par Naogaon Par Naogaon,Pār Naogaon 24.80287 88.95084 P PPL BD 83 192464 16 Asia/Dhaka 2012-01-17
-1193823 Nabīnagar Nabinagar 23.89167 90.97333 P PPL BD 84 31671 12 Asia/Dhaka 2006-01-17
-1196292 Lakshmīpur Lakshmipur 22.95 90.83333 P PPL BD 84 61703 12 Asia/Dhaka 2006-01-27
-1197895 Kesabpur Kesabpur Kesabpur,Keshabpur 22.91667 89.21667 P PPL BD 00 30926 8 Asia/Dhaka 2012-01-17
-1201753 Hājīganj Hajiganj 23.25111 90.85917 P PPL BD 84 44343 8 Asia/Dhaka 2006-01-17
-1203344 Farīdpur Faridpur 23.6 89.83333 P PPL BD 00 112187 14 Asia/Dhaka 2006-01-27
-1203891 Dinājpur Dinajpur Dinajpur,Dinājpur 25.62715 88.63864 P PPL BD 87 206234 38 Asia/Dhaka 2012-02-28
-1205481 Uttar Char Fasson Uttar Char Fasson Dakshin Char Fasson,South Char Fashion,Uttar Char Fasson 22.23322 90.71323 P PPL BD 82 48305 5 Asia/Dhaka 2012-01-17
-1205733 Chittagong Chittagong Chittagong,Chittagong Ghat,Chottogram,Chôţţogram,Citagonga,Citagongas,Cottogram,Islamabad,cattagrama,chittagon,ji da gang,Ćottogram,Čitagonga,Čitagongas,Читтагонг,চট্টগ্রাম,チッタゴン,吉大港 22.33306 91.83639 P PPLA BD 84 Chittagong 3920222 16 Asia/Dhaka 2012-01-17
-1207047 Char Bhadrāsan Char Bhadrasan 23.31667 90.21667 P PPL BD 00 34423 7 Asia/Dhaka 2006-01-17
-1209562 Bera Bera Bera,Berah,Beru,Беру 24.08333 89.61667 P PPL BD 00 39604 16 Asia/Dhaka 2012-01-17
-1210565 Burhānuddin Burhanuddin Barahanuddin,Barahānuddin,Burhanuddin,Burhānuddin 22.49184 90.72346 P PPL BD 85 45670 5 Asia/Dhaka 2012-01-17
-1336133 Sātkania Satkania Satkania,Sātkania 22.0796 92.0572 P PPL BD 84 52005 6 Asia/Dhaka 2012-01-19
-1336134 Cox’s Bāzār Cox's Bazar Cox's Bazar,Cox’s Bāzār,Koks-Bazar,Кокс-Базар 21.45324 91.97977 P PPL BD 84 253788 3 Asia/Dhaka 2012-01-19
-1336135 Khulna Khulna Khulna,Kkhulna,kuruna,Кхулна,খুলনা,クルナ 22.81348 89.56723 P PPLA BD 82 1342339 9 Asia/Dhaka 2010-08-03
-1336136 Bhola Bhola Bhola 22.68333 90.65 P PPL BD 00 99079 13 Asia/Dhaka 2012-01-19
-1336137 Barisāl Barisal Barisal,Barisal Sadar,Barisāl,Barīsal Sadar,barisala,Барисал,বরিশাল 22.70194 90.37111 P PPLA BD 85 202242 9 Asia/Dhaka 2012-01-19
-1336140 Jessore Jessore Jessore 23.16869 89.21315 P PPL BD 82 243987 11 Asia/Dhaka 2012-01-19
-1336143 Pābna Pabna Pabna,Pabne,Pābna,Пабне 24 89.25 P PPL BD 00 137888 18 Asia/Dhaka 2012-01-19
-1336144 Tāngāil Tangail Tangail,Tāngāil 24.25 89.91667 P PPL BD 00 180144 17 Asia/Dhaka 2012-01-19
-1337233 Bogra Bogra Bogra,Богра 24.85 89.36667 P PPL BD 83 210000 28 Asia/Dhaka 2012-01-19
-1337239 Pīrgaaj Pirgaaj Pirgaaj,Pirganj,Pīrgaaj,Pīrganj 25.8604 88.3635 P PPL BD 87 34606 45 Asia/Dhaka 2012-02-28
-1337240 Nawābganj Nawabganj Nawabganj,Nawābganj 24.59112 88.27102 P PPL BD 83 142361 27 Asia/Dhaka 2012-01-19
-1337245 Mādārīpur Madaripur 23.17528 90.20722 P PPL BD 81 84789 9 Asia/Dhaka 2006-01-27
-1337248 Sherpur Sherpur Sherpur 25.01881 90.01751 P PPL BD 81 107419 25 Asia/Dhaka 2012-01-19
-1337249 Kishorganj Kishorganj Kisharganj,Kishoreganj,Kishoreganj Municipality,Kishorganj 24.43333 90.76667 P PPL BD 81 90690 13 Asia/Dhaka 2012-01-19
-1462681 Manikchari Manikchari Manikchari,Manikchhari,Mānikchhari 22.8408 91.844 P PPL BD 84 24813 39 Asia/Dhaka 2012-01-20
-1477498 Bhāndāria Bhandaria Bhandaria,Bhāndāria 22.4861 90.0609 P PPL BD 85 30219 9 Asia/Dhaka 2012-01-20
-6414184 Fatikchari Fatikchari Fatikchari 22.68726 91.7853 P PPL BD 84 33200 14 Asia/Dhaka 2012-01-20
-6545349 Saidpur Saidpur 25.77769 88.89169 P PPL BD 83 199422 43 Asia/Dhaka 2007-07-05
-7921384 Gaibandha Gaibandha Gaibanda,Gaibandha 25.3293 89.5438 P PPLA2 BD 87 0 28 Asia/Dhaka 2012-02-29
-2783081 Zwijndrecht Zwijndrecht Zwijndrecht,Zwyndrecht 51.21979 4.32664 P PPL BE VLG VAN 11 11056 18249 7 Europe/Brussels 2011-02-07
-2783089 Zwevegem Zwevegem Sweveghem,Zwevegem,Zwevehem 50.81268 3.33848 P PPL BE VLG VWV 34 34042 23358 30 Europe/Brussels 2012-01-18
-2783143 Zutendaal Zutendaal Sutendael,Zutendaal 50.93306 5.5753 P PPL BE VLG VLI 71 71067 6962 84 Europe/Brussels 2011-02-28
-2783151 Zulte Zulte Zulte 50.91954 3.44859 P PPL BE VLG VOV 44 44081 14670 11 Europe/Brussels 2012-01-18
-2783153 Zuienkerke Zuienkerke Zuienkerke,Zuujnkerke,Zuyenkerke 51.26511 3.15506 P PPL BE VLG VWV 31 31042 2736 3 Europe/Brussels 2012-01-18
-2783170 Zoutleeuw Zoutleeuw Leau,Léau,Zoutleeuw,Zoutleew 50.83316 5.10376 P PPL BE VLG VBR 24 24130 7897 30 Europe/Brussels 2012-01-18
-2783175 Zottegem Zottegem Sottegem,Zottegem,Зоттегем 50.86956 3.81052 P PPL BE VLG VOV 41 41081 24434 63 Europe/Brussels 2012-01-18
-2783184 Zonnebeke Zonnebeke Zonnebeke,Zunnebeke 50.8726 2.98725 P PPL BE VLG VWV 33 33037 11581 34 Europe/Brussels 2008-08-02
-2783188 Zonhoven Zonhoven Zoneve,Zonhoven,Zonhovena 50.99064 5.36819 P PPL BE VLG VLI 71 71066 19922 44 Europe/Brussels 2011-02-23
-2783195 Zomergem Zomergem Somergein,Somergem,Zomergem 51.11994 3.56496 P PPL BE VLG VOV 44 44080 8158 9 Europe/Brussels 2012-01-18
-2783204 Zoersel Zoersel Zoersel 51.26825 4.71296 P PPL BE VLG VAN 11 11055 20642 17 Europe/Brussels 2011-02-08
-2783215 Zingem Zingem Syngem,Zingem 50.90409 3.65305 P PPL BE VLG VOV 45 45057 6588 16 Europe/Brussels 2012-01-18
-2783274 Zemst Zemst Sempst,Zemst,Земст 50.98318 4.46079 P PPL BE VLG VBR 23 23096 21096 11 Europe/Brussels 2011-02-03
-2783278 Zelzate Zelzate Selzaet,Selzaete,Zelzate 51.18963 3.80777 P PPL BE VLG VOV 43 43018 11901 7 Europe/Brussels 2012-01-18
-2783293 Zele Zele Zele,Зеле 51.06566 4.0403 P PPL BE VLG VOV 42 42028 20236 6 Europe/Brussels 2012-01-18
-2783307 Zeebrugge Zeebrugge Zeebrugge,Zeebruhhe,Zeebrygge,Zêebrugge 51.32902 3.18188 P PPL BE VLG VWV 4500 10 Europe/Brussels 2012-01-18
-2783308 Zedelgem Zedelgem Zedel'gem,Zedelgem,Zedelghem,Zillegem,Zillehem,Зедельгем 51.14236 3.1368 P PPL BE VLG VWV 31 31040 21968 9 Europe/Brussels 2012-01-18
-2783310 Zaventem Zaventem Saventhem,Zaventem 50.88365 4.47298 P PPL BE VLG VBR 23 23094 28188 46 Europe/Brussels 2011-02-03
-2783347 Zandhoven Zandhoven Santhoven,Zandhoven 51.21488 4.66164 P PPL BE VLG VAN 11 11054 12306 11 Europe/Brussels 2012-01-18
-2783385 Yvoir Yvoir Uwar,Yvoir 50.3279 4.88059 P PPL BE WAL WNA 91 91141 8169 96 Europe/Brussels 2011-05-04
-2783416 Wuustwezel Wuustwezel Wuestwezel,Wuustwezel 51.39214 4.59546 P PPL BE VLG VAN 11 11053 18117 18 Europe/Brussels 2011-02-11
-2783462 Wommelgem Wommelgem Wommelgem,Wommelghem 51.20452 4.5225 P PPL BE VLG VAN 11 11052 11917 9 Europe/Brussels 2011-02-07
-2783586 Wingene Wingene Wingene,Wynghene 51.05782 3.27359 P PPL BE VLG VWV 37 37018 12887 26 Europe/Brussels 2012-01-18
-2783632 Willebroek Willebroek Villebruk,Willebroeck,Willebroek,Виллебрук 51.06041 4.36019 P PPL BE VLG VAN 12 12040 22808 4 Europe/Brussels 2012-01-18
-2783684 Wijnegem Wijnegem Wijnegem,Wyneghem 51.22787 4.51895 P PPL BE VLG VAN 11 11050 8932 8 Europe/Brussels 2012-01-18
-2783717 Wielsbeke Wielsbeke Wielsbeke 50.9 3.36667 P PPL BE VLG VWV 37 37017 8828 9 Europe/Brussels 2012-01-18
-2783728 Wichelen Wichelen Wichelen 51.00526 3.97683 P PPL BE VLG VOV 42 42026 11014 8 Europe/Brussels 2012-01-18
-2783737 Wezembeek-Oppem Wezembeek-Oppem Wesembeek,Wezembeek-Oppem 50.8395 4.49427 P PPL BE VLG VBR 23 23103 13245 67 Europe/Brussels 2011-01-25
-2783759 Wevelgem Wevelgem Vevel'geme,Wevelgem,Wevelghem,Wevelhem,Вевельгеме 50.8 3.16667 P PPL BE VLG VWV 34 34041 30954 15 Europe/Brussels 2012-01-18
-2783763 Wetteren Wetteren Vetteren,Wetteran,Wetteren,Веттерен 51.00526 3.88341 P PPL BE VLG VOV 42 42025 22930 16 Europe/Brussels 2012-01-18
-2783801 Westerlo Westerlo Vesterlo,Westerlo,Westerloo,Вестерло 51.09049 4.91544 P PPL BE VLG VAN 13 13049 22579 14 Europe/Brussels 2012-01-18
-2783820 Wervik Wervik Wervicq,Wervik 50.78069 3.03854 P PPL BE VLG VWV 33 33029 17340 18 Europe/Brussels 2012-01-18
-2783854 Wenduine Wenduine Vandjuin,Wenduine,Wenduyne,Вандюин 51.2983 3.08213 P PPL BE VLG VWV 35 35029 4003 5 Europe/Brussels 2012-01-18
-2783856 Wemmel Wemmel Wemmel 50.90812 4.30613 P PPL BE VLG VBR 23 23102 14406 39 Europe/Brussels 2011-02-03
-2783862 Wellin Wellin Wellin 50.08133 5.11413 P PPL BE WAL WLX 84 84075 2937 250 Europe/Brussels 2012-01-18
-2783864 Wellen Wellen Wellen,Wille 50.84096 5.33867 P PPL BE VLG VLI 73 73098 6804 47 Europe/Brussels 2011-03-02
-2783870 Welkenraedt Welkenraedt Welkenraedt 50.6605 5.97034 P PPL BE WAL WLG 63 63084 9006 256 Europe/Brussels 2012-01-18
-2783941 Wavre Wavre Babr,Vavr,Wave,Waver,Wavre,Wåve,Βάβρ,Вавр 50.71717 4.60138 P PPL BE WAL WBR 25 25112 32112 72 Europe/Brussels 2011-01-26
-2783985 Waterloo Waterloo Vaterlo,Waterlo,Waterloo,Waterlô,Ватерло 50.71255 4.4014 P PPL BE WAL WBR 25 25110 28910 108 Europe/Brussels 2011-01-26
-2784010 Wasseiges Wasseiges Wasseiges 50.62186 5.00528 P PPL BE WAL WLG 64 64075 2471 133 Europe/Brussels 2012-01-18
-2784066 Waremme Waremme Borgworm,Waremme 50.6976 5.25524 P PPL BE WAL WLG 64 64074 13737 117 Europe/Brussels 2011-03-15
-2784068 Waregem Waregem Varegem,Waereghem,Waregem,Woaregem,Варегем 50.88898 3.42756 P PPL BE VLG VWV 34 34040 35896 13 Europe/Brussels 2012-01-18
-2784092 Wanze Wanze Wanze 50.53907 5.20846 P PPL BE WAL WLG 61 61072 12918 96 Europe/Brussels 2011-03-17
-2784168 Walhain-Saint-Paul Walhain-Saint-Paul Walhain (Walhain-Saint-Paul) 50.62627 4.69837 P PPL BE WAL WBR 25 25124 5992 147 Europe/Brussels 2011-02-01
-2784189 Walcourt Walcourt Walcou,Walcourt,Walcoû 50.25401 4.43796 P PPL BE WAL WNA 93 93088 17501 187 Europe/Brussels 2011-07-19
-2784199 Waimes Waimes Waimes,Weismes 50.41488 6.11207 P PPL BE WAL WLG 63 63080 6661 492 Europe/Brussels 2012-01-18
-2784227 Wachtebeke Wachtebeke Wachtebeke 51.16852 3.87183 P PPL BE VLG VOV 44 44073 6911 7 Europe/Brussels 2012-01-18
-2784231 Waasmunster Waasmunster Waasmunster,Waesmunster 51.10572 4.08573 P PPL BE VLG VOV 42 42023 10460 5 Europe/Brussels 2012-01-18
-2784237 Waarschoot Waarschoot Waarschoot,Waerschoot 51.1525 3.605 P PPL BE VLG VOV 44 44072 7762 6 Europe/Brussels 2012-01-18
-2784349 Vosselaar Vosselaar Vosselaar,Vosselaer 51.30856 4.8896 P PPL BE VLG VAN 13 13046 10317 22 Europe/Brussels 2011-02-08
-2784370 Vorselaar Vorselaar Vorselaar,Vorsselaer 51.20243 4.77259 P PPL BE VLG VAN 13 13044 7238 14 Europe/Brussels 2012-01-18
-2784548 Visé Vise Vise,Visé,Wezet 50.7376 5.69907 P PPL BE WAL WLG 62 62108 17054 86 Europe/Brussels 2011-03-21
-2784555 Virton Virton Virton,Wirten,Виртон 49.56824 5.53259 P PPL BE WAL WLX 85 85045 11259 226 Europe/Brussels 2012-01-18
-2784604 Vilvoorde Vilvoorde Vilvoorde,Vilvorde 50.92814 4.42938 P PPL BE VLG VBR 23 23088 36955 19 Europe/Brussels 2011-02-03
-2784639 Villers-le-Bouillet Villers-le-Bouillet Villers-le-Bouillet 50.57708 5.25945 P PPL BE WAL WLG 61 61068 6059 194 Europe/Brussels 2011-03-17
-2784641 Villers-la-Ville Villers-la-Ville Villers-la-Ville 50.56667 4.51667 P PPL BE WAL WBR 25 25107 9592 137 Europe/Brussels 2011-02-01
-2784775 Vielsalm Vielsalm Li Viye Sam,Li Viye Såm,Vielsalm 50.28407 5.91502 P PPL BE WAL WLX 82 82032 7291 367 Europe/Brussels 2012-01-30
-2784804 Veurne Veurne Furnes,Veurne 51.07231 2.66238 P PPL BE VLG VWV 38 38025 11983 7 Europe/Brussels 2012-01-18
-2784821 Verviers Verviers Vervi,Verviers,Vervî 50.58907 5.86241 P PPL BE WAL WLG 63 63079 52824 201 Europe/Brussels 2011-03-23
-2784856 Verlaine Verlaine Verlaine 50.60743 5.3174 P PPL BE WAL WLG 61 61063 3600 171 Europe/Brussels 2012-01-18
-2784994 Vaux-sur-Sûre Vaux-sur-Sure Vaux-sur-Sure,Vaux-sur-Sûre 49.911 5.57848 P PPL BE WAL WLX 82 82036 4581 433 Europe/Brussels 2011-10-19
-2785141 Turnhout Turnhout Turnhout,Turnkhout,Турнхоут 51.32254 4.94471 P PPL BE VLG VAN 13 13040 39654 29 Europe/Brussels 2012-01-18
-2785169 Tubize Tubize Tjubiz,Tubeke,Tubize,Тюбиз 50.69059 4.2009 P PPL BE WAL WBR 25 25105 21859 39 Europe/Brussels 2011-02-01
-2785208 Trooz Trooz Trooz 50.57026 5.69521 P PPL BE WAL WLG 62 62122 7559 98 Europe/Brussels 2011-03-14
-2785223 Trois-Ponts Trois-Ponts Trois Ponts 50.37128 5.87146 P PPL BE WAL WLG 63 63086 2533 253 Europe/Brussels 2011-03-25
-2785293 Tremelo Tremelo Tremelo,Tremeloo 50.99231 4.70807 P PPL BE VLG VBR 24 24109 13721 10 Europe/Brussels 2011-02-17
-2785341 Tournai Tournai Doornik,Doornyk,Tournai,Tournay,Turne,to~urune,twrnh,Турне,טורנה,トゥルネー 50.60715 3.38932 P PPL BE WAL WHT 57 57081 67721 24 Europe/Brussels 2012-01-18
-2785364 Torhout Torhout Thourout,Toeroet,Torhout,Torkhout,Торхоут 51.0656 3.10085 P PPL BE VLG VWV 31 31033 18933 22 Europe/Brussels 2012-01-18
-2785389 Tongeren Tongeren Atuatuca Tungrorum,Tongere,Tongeren,Tongres,Tungro,Tóngere,Тонгерен 50.78054 5.46484 P PPL BE VLG VLI 73 73083 29816 107 Europe/Brussels 2011-02-28
-2785422 Tintigny Tintigny Tintigny 49.68326 5.51349 P PPL BE WAL WLX 85 85039 3538 336 Europe/Brussels 2012-01-18
-2785427 Tinlot Tinlot Tinlot 50.47493 5.37755 P PPL BE WAL WLG 61 61081 2236 271 Europe/Brussels 2011-03-17
-2785470 Tienen Tienen Thienen,Tienen,Tinen,Tirlemont,Тинен 50.80744 4.9378 P PPL BE VLG VBR 24 24107 31743 46 Europe/Brussels 2012-01-18
-2785476 Tielt Tielt Thielt,Tielt 50.99931 3.32707 P PPL BE VLG VWV 37 37015 19299 46 Europe/Brussels 2012-01-18
-2785517 Thuin Thuin Thuin 50.33933 4.28604 P PPL BE WAL WHT 56 56078 14682 156 Europe/Brussels 2011-09-07
-2785593 Theux Theux Teu,Theux,Thieux 50.53323 5.81245 P PPL BE WAL WLG 63 63076 11587 168 Europe/Brussels 2011-03-25
-2785612 Tessenderlo Tessenderlo Loei,Tessenderlo,Tessenderloo 51.06513 5.08856 P PPL BE VLG VLI 71 71057 16574 27 Europe/Brussels 2011-03-14
-2785622 Tervuren Tervuren Tervjuren,Tervueren,Tervuren,Тервюрен 50.82372 4.51418 P PPL BE VLG VBR 24 24104 20623 79 Europe/Brussels 2011-02-15
-2785654 Ternat Ternat Ternat,Ternath 50.86654 4.16682 P PPL BE VLG VBR 23 23086 14569 21 Europe/Brussels 2011-02-02
-2785745 Tenneville Tenneville Tenneville 50.09501 5.52894 P PPL BE WAL WLX 83 83049 2510 380 Europe/Brussels 2012-01-18
-2785778 Temse Temse Tamise,Tamsch,Tamse,Temsche,Temse,Темсе 51.12794 4.21372 P PPL BE VLG VOV 46 46025 26054 15 Europe/Brussels 2012-01-18
-2785793 Tellin Tellin Tellin 50.08038 5.21638 P PPL BE WAL WLX 84 84068 2353 263 Europe/Brussels 2012-01-18
-2785989 Stoumont Stoumont Staumont,Stoumont 50.40667 5.80838 P PPL BE WAL WLG 63 63075 2970 335 Europe/Brussels 2012-01-18
-2786087 Stekene Stekene Stekene 51.2099 4.0365 P PPL BE VLG VOV 46 46024 16989 7 Europe/Brussels 2012-01-18
-2786124 Steenokkerzeel Steenokkerzeel Steen-Ockerzeel,Steenokkerzeel 50.91851 4.50989 P PPL BE VLG VBR 23 23081 10566 23 Europe/Brussels 2011-02-07
-2786185 Stavelot Stavelot Stablo,Stavelot 50.395 5.93124 P PPL BE WAL WLG 63 63073 6646 297 Europe/Brussels 2011-03-25
-2786226 Staden Staden Staden 50.97456 3.01468 P PPL BE VLG VWV 36 36019 10786 21 Europe/Brussels 2012-01-18
-2786229 Stabroek Stabroek Stabroeck,Stabroek 51.33189 4.37127 P PPL BE VLG VAN 11 11044 17294 3 Europe/Brussels 2012-01-18
-2786242 Sprimont Sprimont Sprimont 50.50922 5.6595 P PPL BE WAL WLG 62 62100 12945 224 Europe/Brussels 2011-03-15
-2786318 Spa Spa Spa,Spa La Sauvehiece,Spå,Σπα,Спа 50.48375 5.86674 P PPL BE WAL WLG 63 63072 10756 312 Europe/Brussels 2011-03-25
-2786344 Soumagne Soumagne Soumagne 50.61385 5.74679 P PPL BE WAL WLG 62 62099 15237 200 Europe/Brussels 2011-03-21
-2786387 Somme-Leuze Somme-Leuze Somme-Leuze 50.33699 5.36705 P PPL BE WAL WNA 91 91120 4532 191 Europe/Brussels 2012-01-18
-2786390 Sombreffe Sombreffe Sombrefe,Sombreffe 50.52865 4.60087 P PPL BE WAL WNA 92 92114 7452 146 Europe/Brussels 2011-03-31
-2786420 Soignies Soignies Suan'e,Zinnik,Суанье 50.57904 4.07129 P PPL BE WAL WHT 55 55040 24869 89 Europe/Brussels 2010-01-29
-2786545 Sint-Truiden Sint-Truiden Saint-Trond,Sint Truijen,Sint-Trjujden,Sint-Truiden,Sintruin,Синт-Трюйден 50.81679 5.18647 P PPL BE VLG VLI 71 71053 37859 54 Europe/Brussels 2012-01-18
-2786559 Sint-Pieters-Leeuw Sint-Pieters-Leeuw Leeuw-Saint-Pierre,Sint-Pieters-Leeuw 50.77926 4.24355 P PPL BE VLG VBR 23 23077 30446 45 Europe/Brussels 2012-01-18
-2786578 Sint-Niklaas Sint-Niklaas Saint Nicolas,Saint-Nicolas,Sint-Niklaas,Sint-Niklas,Синт-Никлас 51.16509 4.1437 P PPL BE VLG VOV 46 46021 69010 21 Europe/Brussels 2012-01-18
-2786587 Sint-Martens-Lennik Sint-Martens-Lennik Lennick-Saint-Martin,Lennik (Sint-Martens-Lennik) 50.81158 4.16965 P PPL BE VLG VBR 23 23104 8818 57 Europe/Brussels 2011-02-02
-2786591 Sint-Martens-Latem Sint-Martens-Latem Laethem-Saint-Martin,Sint-Martens-Latem 51.01459 3.63779 P PPL BE VLG VOV 44 44064 8303 8 Europe/Brussels 2012-01-18
-2786603 Sint-Maria-Lierde Sint-Maria-Lierde Lierde-Sainte-Marie,Sint-Maria-Lierde 50.82172 3.84814 P PPL BE VLG VOV 45 45063 6449 50 Europe/Brussels 2012-01-18
-2786616 Sint-Lievens-Houtem Sint-Lievens-Houtem Hautem-Saint-Lievin,Hautem-Saint-Liévin,Sint-Lievens-Houtem 50.9197 3.86225 P PPL BE VLG VOV 41 41063 9146 38 Europe/Brussels 2012-01-18
-2786626 Sint-Laureins Sint-Laureins Saint-Laurent,Sint-Laureins 51.24202 3.52441 P PPL BE VLG VOV 43 43014 6657 2 Europe/Brussels 2012-01-18
-2786641 Sint-Katelijne-Waver Sint-Katelijne-Waver Sint-Katelijne-Waver,Wavre-Sainte-Catherine 51.06691 4.53469 P PPL BE VLG VAN 12 12035 19487 6 Europe/Brussels 2011-02-10
-2786694 Sint-Gillis-Waas Sint-Gillis-Waas Saint-Gilles-Waes,Saint-Gillis-Waas,Sint-Gillis-Waas 51.21914 4.12374 P PPL BE VLG VOV 46 46020 17658 5 Europe/Brussels 2012-01-18
-2786700 Sint-Genesius-Rode Sint-Genesius-Rode Rhode-Saint-Genese,Rhode-Saint-Genèse,Sint-Genesius-Rode 50.74645 4.35754 P PPL BE VLG VBR 23 23101 17990 83 Europe/Brussels 2011-02-02
-2786746 Sint-Amands Sint-Amands Saint-Amand,Sint-Amands 51.05645 4.20957 P PPL BE VLG VAN 12 12034 7653 5 Europe/Brussels 2011-02-10
-2786769 Silly Silly Opzullik,Silly 50.64877 3.92363 P PPL BE WAL WHT 55 55039 7887 59 Europe/Brussels 2012-01-18
-2786824 Seraing Seraing Seraing,Sere,Seren,Serè,Серен 50.58362 5.50115 P PPL BE WAL WLG 62 62096 60737 185 Europe/Brussels 2011-03-14
-2786852 Seneffe Seneffe Seneffe 50.53134 4.26301 P PPL BE WAL WHT 52 52063 11025 112 Europe/Brussels 2012-01-18
-2786963 Schoten Schoten Schooten,Schoten 51.25251 4.50268 P PPL BE VLG VAN 11 11040 33622 8 Europe/Brussels 2011-02-11
-2787048 Schilde Schilde Schilde,Shil'de,Шильде 51.24107 4.58336 P PPL BE VLG VAN 11 11039 20373 9 Europe/Brussels 2011-02-11
-2787080 Schelle Schelle Schelle 51.12615 4.34114 P PPL BE VLG VAN 11 11038 7675 7 Europe/Brussels 2011-02-10
-2787313 Saint-Yvon Saint-Yvon Saint Ivon 50.74335 2.90992 P PPLA3 BE VLG VWV 0 22 27 Europe/Brussels 2010-03-06
-2787315 Saint-Vith Saint-Vith Saint-Vith,Sankt Vaeit,Sankt Vith,Sankt Väit,Sankt-Vith 50.28146 6.12724 P PPL BE WAL WLG 63 63067 9135 474 Europe/Brussels 2012-01-18
-2787356 Saint-Nicolas Saint-Nicolas Saint-Nicolas,Sankt-Nikola,Sint-Niklaas,Санкт-Никола 50.62837 5.53243 P PPL BE WAL WLG 62 62093 22586 96 Europe/Brussels 2011-03-15
-2787378 Saint-Léger Saint-Leger Saint-Leger,Saint-Léger 49.61196 5.65688 P PPL BE WAL WLX 85 85034 3092 268 Europe/Brussels 2012-01-18
-2787407 Saint-Hubert Saint-Hubert Saint-Hubert 50.02668 5.37401 P PPL BE WAL WLX 84 84059 5538 432 Europe/Brussels 2012-01-18
-2787416 Saint-Ghislain Saint-Ghislain Sankt-Gilene,Санкт-Гилене 50.44816 3.81886 P PPL BE WAL WHT 53 53070 22500 27 Europe/Brussels 2010-01-29
-2787435 Sainte-Ode Sainte-Ode Saint-Ode,Sainte-Ode 50.01723 5.51926 P PPL BE WAL WLX 82 82038 2310 428 Europe/Brussels 2012-01-20
-2787521 Rumst Rumst Rumpst,Rumst 51.08153 4.42217 P PPL BE VLG VAN 11 11037 14521 6 Europe/Brussels 2011-02-10
-2787530 Rumes Rumes Rumes 50.5545 3.30535 P PPL BE WAL WHT 57 57072 4918 58 Europe/Brussels 2012-01-18
-2787547 Ruiselede Ruiselede Ruiselede,Ruysselede 51.04039 3.39416 P PPL BE VLG VWV 37 37012 5129 15 Europe/Brussels 2012-01-18
-2787622 Rouvroy Rouvroy Rouvroy 49.53771 5.49031 P PPL BE WAL WLX 85 85047 1946 199 Europe/Brussels 2012-01-18
-2787662 Rotselaar Rotselaar Rotselaar,Rotselaer 50.95302 4.71665 P PPL BE VLG VBR 24 24094 15007 12 Europe/Brussels 2011-02-17
-2787769 Ronse Ronse Renaix,Ronse,Ронсе 50.74574 3.6005 P PPL BE VLG VOV 45 45041 24204 42 Europe/Brussels 2012-01-18
-2787878 Roeulx Roeulx 50.50365 4.11163 P PPL BE WAL WHT 7968 132 Europe/Brussels 2011-02-07
-2787889 Roeselare Roeselare Roeselare,Roeselave,Roeseloare,Roulers,Rouselare 50.94653 3.12269 P PPL BE VLG VWV 36 36015 56016 22 Europe/Brussels 2008-07-26
-2787948 Rochefort Rochefort Notre-Dame-de-Foy-de-Rochefort 50.1631 5.2216 P PPL BE WAL WNA 91 91114 11978 170 Europe/Brussels 2008-06-15
-2787989 Rixensart Rixensart Riksensart,Rixensart,Риксенсарт 50.71229 4.52529 P PPL BE WAL WBR 25 25091 21616 101 Europe/Brussels 2012-01-18
-2788051 Rijkevorsel Rijkevorsel Rijkevorsel,Ryckevorsel 51.34795 4.76053 P PPL BE VLG VAN 13 13037 10606 24 Europe/Brussels 2012-01-18
-2788088 Riemst Riemst Riempst,Riemst 50.80995 5.60131 P PPL BE VLG VLI 73 73066 15809 105 Europe/Brussels 2011-03-02
-2788138 Retie Retie Rethy,Retie 51.26652 5.08242 P PPL BE VLG VAN 13 13036 10069 24 Europe/Brussels 2012-01-18
-2788186 Rendeux Rendeux Rendeux 50.23422 5.50414 P PPL BE WAL WLX 83 83044 2320 194 Europe/Brussels 2012-01-18
-2788211 Remicourt Remicourt Remicourt 50.68069 5.32785 P PPL BE WAL WLG 64 64063 5050 126 Europe/Brussels 2011-03-15
-2788299 Rebecq-Rognon Rebecq-Rognon Rebecq (Rebecq-Rognon) 50.65147 4.10683 P PPL BE WAL WBR 25 25123 10049 65 Europe/Brussels 2011-01-31
-2788312 Ravels Ravels Raevels,Ravels 51.37274 4.9921 P PPL BE VLG VAN 13 13035 13560 32 Europe/Brussels 2012-01-18
-2788348 Ranst Ranst Ranst 51.18983 4.56533 P PPL BE VLG VAN 11 11035 17405 12 Europe/Brussels 2011-02-10
-2788381 Ramillies Ramillies 50.63395 4.90119 P PPL BE WAL WBR 25 25122 5749 150 Europe/Brussels 2011-01-26
-2788410 Raeren Raeren Raeren 50.6672 6.11535 P PPL BE WAL WLG 63 63061 9925 318 Europe/Brussels 2011-03-23
-2788444 Quiévrain Quievrain 50.40737 3.68351 P PPL BE WAL WHT 53 53068 6560 35 Europe/Brussels 2009-01-18
-2788446 Quévy-le-Petit Quevy-le-Petit 50.36879 3.93602 P PPL BE WAL WHT 53 53084 7689 98 Europe/Brussels 2009-01-17
-2788499 Quaregnon Quaregnon 50.44067 3.8653 P PPL BE WAL WHT 53 53065 18491 35 Europe/Brussels 2009-01-17
-2788506 Puurs Puurs Puers,Puurs 51.07409 4.28844 P PPL BE VLG VAN 12 12030 15944 4 Europe/Brussels 2011-02-10
-2788521 Putte Putte Putte 51.05337 4.63263 P PPL BE VLG VAN 12 12029 15276 22 Europe/Brussels 2011-02-10
-2788577 Profondeville Profondeville Profondeville 50.37581 4.86506 P PPL BE WAL WNA 92 92101 11401 93 Europe/Brussels 2012-01-18
-2788726 Poperinge Poperinge Poperinge,Poperinghe,Поперинге 50.85386 2.72659 P PPL BE VLG VWV 33 33021 19537 19 Europe/Brussels 2012-01-18
-2788765 Pont-à-Celles Pont-a-Celles Pont-a-Celles,Pont-à-Celles 50.50518 4.36887 P PPL BE WAL WHT 52 52055 15909 137 Europe/Brussels 2011-08-01
-2788849 Plombières Plombieres Bleiberg,Bleyberg,Blieberig,Plombieres,Plombières 50.73656 5.95922 P PPL BE WAL WLG 63 63088 9596 167 Europe/Brussels 2011-03-24
-2788925 Pittem Pittem Pittem,Pitthem 50.99279 3.26317 P PPL BE VLG VWV 37 37011 6589 32 Europe/Brussels 2012-01-18
-2789016 Philippeville Philippeville Philippeville,Phillippeville 50.19612 4.54374 P PPL BE WAL WNA 93 93056 8051 290 Europe/Brussels 2012-01-18
-2789156 Perwez Perwez Perwez,Perwijs 50.62426 4.81354 P PPL BE WAL WBR 25 25084 7340 147 Europe/Brussels 2012-01-18
-2789162 Péruwelz Peruwelz 50.50819 3.59373 P PPL BE WAL WHT 57 57064 16647 34 Europe/Brussels 2009-01-17
-2789167 Perre Perre 50.88914 3.86098 P PPL BE VLG VOV 3000 54 Europe/Brussels 2007-03-06
-2789190 Pepinster Pepinster Pepinster 50.57375 5.8049 P PPL BE WAL WLG 63 63058 9530 193 Europe/Brussels 2011-03-24
-2789192 Pepingen Pepingen Pepingen,Pepinghen 50.75922 4.15983 P PPL BE VLG VBR 23 23064 4261 52 Europe/Brussels 2012-01-18
-2789232 Peer Peer Peer 51.1303 5.45952 P PPL BE VLG VLI 72 72030 15551 64 Europe/Brussels 2011-03-14
-2789236 Pecq Pecq Pecq 50.68619 3.33789 P PPL BE WAL WHT 57 57062 5301 23 Europe/Brussels 2012-01-18
-2789354 Paliseul Paliseul Paliseul 49.90395 5.13537 P PPL BE WAL WLX 84 84050 5037 409 Europe/Brussels 2012-01-18
-2789403 Overpelt Overpelt Ieverpelt,Overpelt 51.21038 5.41557 P PPL BE VLG VLI 72 72029 13344 44 Europe/Brussels 2011-03-04
-2789413 Overijse Overijse Overijase,Overijsche,Overijse,Overyssche,Оверийсе 50.77436 4.53461 P PPL BE VLG VBR 23 23062 23486 88 Europe/Brussels 2011-01-25
-2789471 Oupeye Oupeye Oupeye,Upe,Упе 50.71184 5.6468 P PPL BE WAL WLG 62 62079 23594 125 Europe/Brussels 2011-03-21
-2789479 Ouffet Ouffet Ouffet 50.4387 5.4657 P PPL BE WAL WLG 61 61048 2477 272 Europe/Brussels 2011-03-21
-2789483 Oud-Turnhout Oud-Turnhout Oud-Turnhout,Vieux-Turnhout 51.31978 4.9841 P PPL BE VLG VAN 13 13031 12354 25 Europe/Brussels 2011-02-08
-2789492 Oud-Heverlee Oud-Heverlee Oud-Heverlee,Vieux-Heverle,Vieux-Héverlé 50.83522 4.66421 P PPL BE VLG VBR 24 24086 10533 56 Europe/Brussels 2011-02-15
-2789519 Oudenburg Oudenburg Oednburh,Oudenburg 51.18489 3.00035 P PPL BE VLG VWV 35 35014 8752 3 Europe/Brussels 2012-01-18
-2789529 Oudenaarde Oudenaarde Aldenarda,Audenaarde,Audenarde,Oudenaarde,Оуденаарде 50.85168 3.60891 P PPL BE VLG VOV 45 45035 27935 11 Europe/Brussels 2012-01-18
-2789570 Ottignies Ottignies Ottignies-Louvain-la-Neuve (Ottignies),Ottin'i,Оттиньи 50.66535 4.56679 P PPL BE WAL WBR 25 25121 9557 65 Europe/Brussels 2011-01-26
-2789635 Oreye Oreye Oerle,Oreye 50.71749 5.3488 P PPL BE WAL WLG 64 64056 3373 112 Europe/Brussels 2011-03-15
-2789654 Opwijk Opwijk Opwijk,Opwyck 50.96724 4.18442 P PPL BE VLG VBR 23 23060 12045 22 Europe/Brussels 2011-02-02
-2789714 Opglabbeek Opglabbeek Opglabbeek 51.04258 5.58346 P PPL BE VLG VLI 71 71047 9452 72 Europe/Brussels 2011-02-28
-2789737 Oostrozebeke Oostrozebeke Oostroosebeke,Oostroozebeke,Oostrozebeke 50.92093 3.33799 P PPL BE VLG VWV 37 37010 7489 14 Europe/Brussels 2012-01-18
-2789751 Oostkamp Oostkamp Oostcamp,Oostkamp,Ostkamp,Oôstkamp,Ôostkamp,Осткамп 51.15432 3.23128 P PPL BE VLG VWV 31 31022 21489 10 Europe/Brussels 2012-01-18
-2789771 Oosterzele Oosterzele Oosterzeele,Oosterzele 50.95261 3.79826 P PPL BE VLG VOV 44 44052 13151 45 Europe/Brussels 2012-01-18
-2789786 Oostende Oostende Oostende,Oostenn,Ostend,Ostenda,Ostende,Ostendo,Οστένδη,Остенде 51.22339 2.91185 P PPL BE VLG VWV 35 35013 69011 7 Europe/Brussels 2012-01-18
-2789834 Onhaye Onhaye Onhaye 50.24148 4.84069 P PPL BE WAL WNA 91 91103 3014 253 Europe/Brussels 2012-01-18
-2789869 Olne Olne Olne 50.58994 5.74662 P PPL BE WAL WLG 63 63057 3836 226 Europe/Brussels 2011-03-21
-2789886 Olen Olen Olen,Oolen 51.14391 4.8598 P PPL BE VLG VAN 13 13029 11070 25 Europe/Brussels 2012-01-18
-2789908 Ohey Ohey Ohey 50.4357 5.12375 P PPL BE WAL WNA 92 92097 4324 269 Europe/Brussels 2011-04-05
-2790101 Nivelles Nivelles Nijvel,Nivelles 50.59833 4.32848 P PPL BE WAL WBR 25 25072 24149 101 Europe/Brussels 2011-01-28
-2790114 Ninove Ninove Ninove,Нинове 50.82776 4.02657 P PPL BE VLG VOV 41 41048 34795 17 Europe/Brussels 2012-01-18
-2790135 Nijlen Nijlen Nijlen,Nylen 51.16096 4.67008 P PPL BE VLG VAN 12 12026 20792 7 Europe/Brussels 2012-01-18
-2790150 Nieuwpoort Nieuwpoort Nieuport,Nieuwpoort,Nieuwpoôrt,Nieuwpôort 51.13008 2.75134 P PPL BE VLG VWV 38 38016 10845 9 Europe/Brussels 2012-01-18
-2790179 Nieuwerkerken Nieuwerkerken Nieuwerkerken 50.8638 5.19467 P PPL BE VLG VLI 71 71045 6466 44 Europe/Brussels 2012-01-18
-2790225 Niel Niel Niel 51.11096 4.33428 P PPL BE VLG VAN 11 11030 8656 8 Europe/Brussels 2011-02-10
-2790235 Nevele Nevele Nevele 51.03531 3.54574 P PPL BE VLG VOV 44 44049 11153 7 Europe/Brussels 2012-01-18
-2790286 Neufchâteau Neufchateau Neufchateau,Neufchâteau 49.84074 5.43535 P PPL BE WAL WLX 84 84043 6416 424 Europe/Brussels 2012-01-18
-2790357 Neerpelt Neerpelt Neerpelt 51.22807 5.4427 P PPL BE VLG VLI 72 72025 16122 39 Europe/Brussels 2011-03-04
-2790433 Nazareth Nazareth Nazareth 50.95686 3.59426 P PPL BE VLG VOV 44 44048 10890 12 Europe/Brussels 2012-01-18
-2790451 Nassogne Nassogne Nassogne 50.12849 5.34274 P PPL BE WAL WLX 83 83040 5081 385 Europe/Brussels 2012-01-18
-2790467 Nandrin Nandrin Nandrin 50.50674 5.41905 P PPL BE WAL WLG 61 61043 5480 218 Europe/Brussels 2012-01-18
-2790471 Namur Namur Name,Namen,Nameur,Namir,Namjur,Namouer,Namour,Namur,Namuro,na mu er,Ναμούρ,Намир,Намюр,נאמור,那慕爾 50.4669 4.86746 P PPLA BE WAL WNA 92 92094 106284 88 Europe/Brussels 2011-03-25
-2790515 Musson Musson Musson 49.55835 5.70525 P PPL BE WAL WLX 85 85026 4225 265 Europe/Brussels 2012-03-01
-2790595 Mouscron Mouscron Moeskroen,Mouscron,Muskron,Muskrono,Мускрон 50.74497 3.20639 P PPL BE WAL WHT 54 54007 52069 53 Europe/Brussels 2012-01-18
-2790676 Mortsel Mortsel Mortsel,Мортсел 51.16697 4.45127 P PPL BE VLG VAN 11 11029 24525 19 Europe/Brussels 2011-02-10
-2790697 Morlanwelz-Mariemont Morlanwelz-Mariemont Morlanwelz,Morlanwelz-Mariemont 50.45502 4.24519 P PPL BE WAL WHT 56 56087 18233 106 Europe/Brussels 2012-01-18
-2790729 Moorslede Moorslede Moorslede 50.8919 3.06117 P PPL BE VLG VWV 36 36012 10720 43 Europe/Brussels 2012-01-18
-2790756 Mont-Saint-Guibert Mont-Saint-Guibert Mont-Saint-Guibert 50.63427 4.61061 P PPL BE WAL WBR 25 25068 6557 85 Europe/Brussels 2011-01-31
-2790869 Mons Mons Bergen,Mons,Mont,mwns,Μονς,Монс,מונס 50.45413 3.95229 P PPL BE WAL WHT 53 53053 91277 56 Europe/Brussels 2009-01-18
-2790906 Momignies Momignies Momignies 50.0271 4.16519 P PPL BE WAL WHT 56 56051 5183 262 Europe/Brussels 2011-10-14
-2791067 Mol Mol Mol,Moll,Мол 51.19188 5.11662 P PPL BE VLG VAN 13 13025 32659 27 Europe/Brussels 2011-02-10
-2791120 Moerbeke Moerbeke Moerbeke 51.17409 3.93001 P PPL BE VLG VOV 44 44045 5855 1 Europe/Brussels 2012-01-18
-2791132 Modave Modave Modave 50.44614 5.29532 P PPL BE WAL WLG 61 61041 3825 229 Europe/Brussels 2011-03-21
-2791194 Middelkerke Middelkerke Middelkerke,Middelkerke Bains,Middelkerke-Baden 51.18532 2.82077 P PPL BE VLG VWV 35 35011 17789 4 Europe/Brussels 2012-01-18
-2791255 Meulebeke Meulebeke Meulebeke 50.95136 3.28804 P PPL BE VLG VWV 37 37007 10948 19 Europe/Brussels 2012-01-18
-2791261 Mettet Mettet Metet,Mettet 50.32119 4.66232 P PPL BE WAL WNA 92 92087 12014 241 Europe/Brussels 2011-07-18
-2791272 Messancy Messancy Messanceye,Messancy,Miezeg 49.592 5.81878 P PPL BE WAL WLX 81 81015 7144 277 Europe/Brussels 2012-01-18
-2791297 Merksplas Merksplas Merksplas,Merxplas 51.35851 4.86513 P PPL BE VLG VAN 13 13023 7963 26 Europe/Brussels 2012-01-18
-2791315 Merelbeke Merelbeke Meirelbeke,Merelbeke,Мерелбеке 50.99447 3.74621 P PPL BE VLG VOV 44 44043 22047 12 Europe/Brussels 2012-01-18
-2791323 Merchtem Merchtem Merchtem 50.95129 4.23197 P PPL BE VLG VBR 23 23052 14660 25 Europe/Brussels 2011-02-02
-2791329 Merbes-le-Château Merbes-le-Chateau Merbes-le-Chateau,Merbes-le-Château 50.3245 4.1649 P PPL BE WAL WHT 56 56049 3999 131 Europe/Brussels 2012-01-18
-2791343 Menen Menen Meenen,Meenn,Menen,Menin,Mjeenn,Mêenn 50.79722 3.12245 P PPL BE VLG VWV 34 34027 31916 18 Europe/Brussels 2012-01-18
-2791385 Melle Melle Melle 51.00232 3.80526 P PPL BE VLG VOV 44 44040 10687 8 Europe/Brussels 2012-01-18
-2791419 Meix-devant-Virton Meix-devant-Virton Meix-devant-Virton 49.60581 5.48045 P PPL BE WAL WLX 85 85024 2637 249 Europe/Brussels 2012-01-18
-2791424 Meise Meise Meise,Meysse 50.93934 4.32655 P PPL BE VLG VBR 23 23050 18497 58 Europe/Brussels 2011-02-03
-2791494 Meerhout Meerhout Meerhout 51.1321 5.07842 P PPL BE VLG VAN 13 13021 9346 30 Europe/Brussels 2012-01-18
-2791537 Mechelen Mechelen Malinas,Malines,Mechele,Mechelen,Mecheln,Mehleno,Mekhelen,Meĥleno,mei he lun,Мехелен,梅赫伦 51.02574 4.47762 P PPL BE VLG VAN 12 12025 77530 8 Europe/Brussels 2011-02-10
-2791642 Martelange Martelange Martelange,Martelarge,Nartelange 49.83195 5.73655 P PPL BE WAL WLX 81 81013 1440 364 Europe/Brussels 2012-01-18
-2791733 Marchin Marchin Marchin 50.46707 5.2428 P PPL BE WAL WLG 61 61039 5063 264 Europe/Brussels 2011-03-21
-2791744 Marche-en-Famenne Marche-en-Famenne Marche 50.22678 5.34416 P PPL BE WAL WLX 83 83034 16856 214 Europe/Brussels 2008-06-15
-2791790 Manhay Manhay Manhay,Manhe,Manhé 50.29219 5.67562 P PPL BE WAL WLX 83 83055 3128 440 Europe/Brussels 2012-01-18
-2791814 Manage Manage Manage 50.50312 4.23589 P PPL BE WAL WHT 52 52043 22196 134 Europe/Brussels 2012-01-18
-2791834 Malmédy Malmedy Malmedy,Malmédy,Mamdey,Måmdey 50.42686 6.02794 P PPL BE WAL WLG 63 63049 11514 344 Europe/Brussels 2012-01-18
-2791857 Maldegem Maldegem Mal'degem,Maldegem,Мальдегем 51.20737 3.44511 P PPL BE VLG VOV 43 43010 22092 9 Europe/Brussels 2012-01-18
-2791951 Machelen Machelen Machelen 50.91061 4.44174 P PPL BE VLG VBR 23 23047 12252 30 Europe/Brussels 2011-02-03
-2791961 Maasmechelen Maasmechelen Maasmechelen,Maasmekhelene,Massmechelen,Маасмехелене 50.96545 5.69452 P PPL BE VLG VLI 73 73107 36251 39 Europe/Brussels 2011-02-28
-2791964 Maaseik Maaseik Maaseik,Maasejk,Maeseyck,Mezeik,Маасейк 51.09802 5.78379 P PPL BE VLG VLI 72 72021 23684 30 Europe/Brussels 2011-02-28
-2792007 Lummen Lummen Lummen 50.98772 5.19121 P PPL BE VLG VLI 71 71037 13689 41 Europe/Brussels 2011-02-23
-2792034 Lubbeek Lubbeek Lubbeek 50.88278 4.83896 P PPL BE VLG VBR 24 24066 13574 59 Europe/Brussels 2011-02-18
-2792057 Lovendegem Lovendegem Lovendegem 51.10168 3.61298 P PPL BE VLG VOV 44 44036 9272 6 Europe/Brussels 2012-01-18
-2792073 Louvain-la-Neuve Louvain-la-Neuve Luven-la-Nev,Ottignies-Louvain-la-Neuve (Louvain-la-Neuve),Лувен-ла-Нев 50.66829 4.61443 P PPL BE WAL WBR 25 25121 29521 117 Europe/Brussels 2011-01-26
-2792119 Lontzen Lontzen Lontzen,Sontzen 50.68126 6.00712 P PPL BE WAL WLG 63 63048 4862 223 Europe/Brussels 2011-03-21
-2792165 Londerzeel Londerzeel Londerzeel 51.00468 4.30304 P PPL BE VLG VBR 23 23045 17274 12 Europe/Brussels 2011-02-03
-2792179 Lommel Lommel Lommel,Ломмел 51.23074 5.31349 P PPL BE VLG VLI 72 72020 31993 48 Europe/Brussels 2012-01-18
-2792196 Lokeren Lokeren Lokeren,Локерен 51.10364 3.99339 P PPL BE VLG VOV 46 46014 37567 6 Europe/Brussels 2012-01-18
-2792235 Lochristi Lochristi Lochristi,Loochristi,Loochristy 51.09644 3.83194 P PPL BE VLG VOV 44 44034 19696 8 Europe/Brussels 2012-01-18
-2792245 Lobbes Lobbes Lobbes 50.35258 4.26716 P PPL BE WAL WHT 56 56044 5467 170 Europe/Brussels 2011-10-14
-2792292 Lint Lint Lint,Linth 51.12708 4.49669 P PPL BE VLG VAN 11 11025 7982 11 Europe/Brussels 2012-01-18
-2792301 Linkebeek Linkebeek Linkebeek 50.76781 4.33688 P PPL BE VLG VBR 23 23100 4823 85 Europe/Brussels 2012-01-18
-2792332 Lincent Lincent Lijsem,Lincent 50.71222 5.03654 P PPLA4 BE WAL WLG 64 64047 2884 97 Europe/Brussels 2011-03-15
-2792348 Limbourg Limbourg Laeboer,Limbourg,Limburg 50.61222 5.9412 P PPL BE WAL WLG 63 63046 5612 262 Europe/Brussels 2011-03-23
-2792360 Lille Lille Lille 51.24197 4.82312 P PPL BE VLG VAN 13 13019 15466 17 Europe/Brussels 2012-01-18
-2792397 Lier Lier L'er,Lier,Lierre,Льер 51.13128 4.57042 P PPL BE VLG VAN 12 12021 33272 9 Europe/Brussels 2011-02-10
-2792400 Lierneux Lierneux Lierneux,Lieurneux 50.28477 5.79236 P PPL BE WAL WLG 63 63045 3332 418 Europe/Brussels 2012-01-18
-2792413 Liège Liege L'ezh,Leck,Leodicum,Leodium,Lidje,Liege,Liegi,Liego,Lieja,Liex,Liezh,Lieĝo,Lige,Lijezh,Liège,Ljeza,Lježa,Luettich,Luik,Luttich,Lutych,Luuk,Léck,Lüttich,lie ri,lyyj,lyyz',rieju,Лиеж,Лијеж,Льеж,לייז',リエージュ,列日,ﻟﻴﻴﺞ 50.63373 5.56749 P PPL BE WAL WLG 62 62063 182597 66 Europe/Brussels 2011-03-14
-2792423 Liedekerke Liedekerke Liedekerke 50.86892 4.08743 P PPL BE VLG VBR 23 23044 11980 24 Europe/Brussels 2011-02-02
-2792428 Lichtervelde Lichtervelde Lichterveld,Lichtervelde 51.03333 3.15 P PPL BE VLG VWV 36 36011 8169 24 Europe/Brussels 2012-01-18
-2792442 Libin Libin Libin 49.98107 5.25612 P PPL BE WAL WLX 84 84035 4609 401 Europe/Brussels 2012-01-18
-2792482 Leuven Leuven L'oven,Leouben,Leuve,Leuven,Ljoven,Loewen,Louvain,Lovaina,Lovan,Lovanio,Lovanium,Lovaň,Loveno,Luven,Löwen,lu wen,revu~en,ruvu~en,Λέουβεν,Лувен,Льовен,Лёвен,ルーヴェン,レーヴェン,鲁汶 50.87959 4.70093 P PPL BE VLG VBR 24 24062 92892 28 Europe/Brussels 2008-07-11
-2792567 Lessines Lessines Lessen,Lessines 50.71104 3.83579 P PPL BE WAL WHT 55 55023 17687 23 Europe/Brussels 2012-01-18
-2792856 Leopoldsburg Leopoldsburg Bourg-Leopold,Bourg-Léopold,Leopoldsburg 51.11667 5.25 P PPL BE VLG VLI 71 71034 14149 48 Europe/Brussels 2012-01-18
-2792871 Lens Lens 50.55696 3.89946 P PPL BE WAL WHT 53 53046 3902 64 Europe/Brussels 2009-01-17
-2792879 Lendelede Lendelede Lendelede,Lendlee 50.88626 3.23747 P PPL BE VLG VWV 34 34025 5393 38 Europe/Brussels 2012-01-18
-2792985 Léglise Leglise Leglise,Léglise 49.79985 5.53652 P PPL BE WAL WLX 84 84033 3865 395 Europe/Brussels 2012-01-18
-2793067 Ledegem Ledegem Ledegem,Ledeghem 50.85785 3.12409 P PPL BE VLG VWV 36 36010 9102 20 Europe/Brussels 2012-01-18
-2793070 Ledeberg Ledeberg 51.03859 3.74458 P PPL BE VLG VOV 44 8454 10 Europe/Brussels 2010-03-09
-2793072 Ledeberg Ledeberg 50.84356 4.09112 P PPL BE VLG VBR 1500 61 Europe/Brussels 2011-02-02
-2793077 Lede Lede Lede 50.96626 3.98594 P PPL BE VLG VOV 41 41034 16813 25 Europe/Brussels 2012-01-18
-2793144 Lebbeke Lebbeke Lebbeke 51.00464 4.13457 P PPL BE VLG VOV 42 42011 17372 6 Europe/Brussels 2012-01-18
-2793279 La Roche-en-Ardenne La Roche-en-Ardenne La Roche-en-Ardenne,Laroche 50.18361 5.57547 P PPL BE WAL WLX 83 83031 4200 225 Europe/Brussels 2012-01-18
-2793429 Landen Landen Landen 50.75266 5.082 P PPL BE VLG VBR 24 24059 14458 72 Europe/Brussels 2012-01-18
-2793446 Lanaken Lanaken Lanaeken,Lanaken 50.89318 5.6468 P PPL BE VLG VLI 73 73042 24771 63 Europe/Brussels 2011-02-23
-2793508 La Louvière La Louviere La Louviere,La Louvière,Louvierre 50.48657 4.18785 P PPL BE WAL WHT 55 55022 76668 133 Europe/Brussels 2008-06-15
-2793548 La Hulpe La Hulpe La Hulpe,Terhulpen 50.73091 4.48577 P PPL BE WAL WBR 25 25050 7415 86 Europe/Brussels 2011-01-26
-2793722 La Calamine La Calamine Calmene,Calmène,Kelmis,La Calamine 50.71809 6.01107 P PPL BE WAL WLG 63 63040 10232 220 Europe/Brussels 2011-03-21
-2793733 La Bruyère La Bruyere 50.39478 4.61444 P PPL BE WAL WNA 8194 194 Europe/Brussels 2011-02-07
-2793797 Laarne Laarne Laarne,Laerne 51.03078 3.85077 P PPL BE VLG VOV 42 42010 11600 8 Europe/Brussels 2012-01-18
-2793857 Kuurne Kuurne Cuerne,Kuurne 50.85143 3.2824 P PPL BE VLG VWV 34 34023 12638 16 Europe/Brussels 2012-01-18
-2793907 Kruishoutem Kruishoutem Cruyshautem,Kruishoutem 50.90168 3.52588 P PPL BE VLG VOV 45 45017 8179 45 Europe/Brussels 2012-01-18
-2793940 Kruibeke Kruibeke Cruybeke,Kruibeke 51.17048 4.31444 P PPL BE VLG VOV 46 46013 14815 6 Europe/Brussels 2012-01-18
-2794016 Kraainem Kraainem Crainhem,Kraainem 50.86155 4.46946 P PPL BE VLG VBR 23 23099 12815 51 Europe/Brussels 2011-01-25
-2794055 Kortrijk Kortrijk Cortoriacum,Courtrai,Kortrejko,Kortrijk,Kortrik,kortrejk,qwrtryyq,Кортрейк,קורטרייק 50.82803 3.26487 P PPL BE VLG VWV 34 34022 73879 22 Europe/Brussels 2008-06-15
-2794063 Kortessem Kortessem Cortessem,Cortessum,Kortessem,Kortessum 50.8589 5.38974 P PPL BE VLG VLI 73 73040 8042 55 Europe/Brussels 2011-02-28
-2794070 Kortenberg Kortenberg Cortenberg,Kortenberg 50.88982 4.54353 P PPL BE VLG VBR 24 24055 17774 47 Europe/Brussels 2011-02-03
-2794072 Kortenaken Kortenaken Cortenaeken,Kortenaken 50.90862 5.05968 P PPL BE VLG VBR 24 24054 7374 35 Europe/Brussels 2012-01-18
-2794074 Kortemark Kortemark Cortemarck,Kortemark 51.02951 3.04112 P PPL BE VLG VWV 32 32011 11937 11 Europe/Brussels 2012-01-18
-2794117 Kontich Kontich Contich,Kontich,Контич 51.13213 4.44706 P PPL BE VLG VAN 11 11024 20290 20 Europe/Brussels 2011-02-10
-2794166 Koksijde Koksijde Coxyde,Koksiede,Koksijde,Коксийде 51.11642 2.63772 P PPL BE VLG VWV 38 38014 21027 8 Europe/Brussels 2012-01-18
-2794194 Koekelare Koekelare Couckelaere,Koekelare 51.09047 2.9783 P PPL BE VLG VWV 32 32010 8317 15 Europe/Brussels 2012-01-18
-2794210 Knokke-Heist Knokke-Heist Knokke-Heist,Knokke-Khejst,Knokkne,Кнокке-Хейст 51.35 3.26667 P PPL BE VLG VWV 31 31043 33781 5 Europe/Brussels 2012-01-18
-2794223 Knesselare Knesselare Knesselaere,Knesselare 51.13932 3.41282 P PPL BE VLG VOV 44 44029 7889 16 Europe/Brussels 2012-01-18
-2794445 Kinrooi Kinrooi Kinjer,Kinroy 51.14543 5.74207 P PPL BE VLG VLI 72 72018 11946 33 Europe/Brussels 2009-02-11
-2794619 Keerbergen Keerbergen Keerbergen 51.00295 4.63434 P PPL BE VLG VBR 24 24048 12363 10 Europe/Brussels 2011-02-17
-2794663 Kasterlee Kasterlee Casterle,Kasterlee 51.24118 4.96651 P PPL BE VLG VAN 13 13017 17765 22 Europe/Brussels 2011-02-10
-2794707 Kaprijke Kaprijke Caprycke,Kaprijke 51.2172 3.61519 P PPL BE VLG VOV 43 43007 6114 4 Europe/Brussels 2012-01-18
-2794724 Kapelle-op-den-Bos Kapelle-op-den-Bos Chapelle-au-Bois,Kapelle-op-den-Bos 51.0097 4.36303 P PPL BE VLG VBR 23 23039 8859 12 Europe/Brussels 2011-02-04
-2794730 Kapellen Kapellen Cappellen,Kapellen,Kapellene,Капеллене 51.31377 4.43539 P PPL BE VLG VAN 11 11023 26410 8 Europe/Brussels 2011-02-11
-2794763 Kampenhout Kampenhout Campenhout,Kampenhout 50.9421 4.55103 P PPL BE VLG VBR 23 23038 10784 14 Europe/Brussels 2012-01-18
-2794788 Kalmthout Kalmthout Calmpthout,Kalmthout 51.38442 4.47556 P PPL BE VLG VAN 11 11022 17485 21 Europe/Brussels 2011-02-11
-2794852 Jurbise Jurbise 50.531 3.90942 P PPL BE WAL WHT 53 53044 9483 70 Europe/Brussels 2009-01-18
-2794854 Juprelle Juprelle Juprelle 50.7076 5.53127 P PPL BE WAL WLG 62 62060 8354 147 Europe/Brussels 2011-03-15
-2794895 Jodoigne Jodoigne Djodogne,Geldenaken,Jodoigne 50.72357 4.86914 P PPL BE WAL WBR 25 25048 11930 74 Europe/Brussels 2012-01-18
-2794989 Jalhay Jalhay Jalhay 50.55876 5.96764 P PPL BE WAL WLG 63 63038 7688 386 Europe/Brussels 2011-03-24
-2794999 Jabbeke Jabbeke Jabbeke 51.18185 3.08935 P PPL BE VLG VWV 31 31012 13488 7 Europe/Brussels 2012-01-18
-2795009 Izegem Izegem Iseghem,Izegem,Izzegem,Izzehem,Изегем 50.91396 3.21378 P PPL BE VLG VWV 36 36008 26382 18 Europe/Brussels 2012-01-18
-2795017 Ittre Ittre Itter,Ittre 50.64396 4.26476 P PPL BE WAL WBR 25 25044 6014 111 Europe/Brussels 2011-02-01
-2795056 Ingelmunster Ingelmunster Ingelmunster 50.92081 3.25571 P PPL BE VLG VWV 36 36007 10603 15 Europe/Brussels 2012-01-18
-2795063 Incourt Incourt Incourt 50.69151 4.79816 P PPL BE WAL WBR 25 25043 4395 125 Europe/Brussels 2012-01-18
-2795100 Ieper Ieper Ieper,Iper,Ippr,Ipr,Ipro,Ypern,Ypres,Ипр 50.85114 2.88569 P PPL BE VLG VWV 33 33011 35089 24 Europe/Brussels 2012-01-18
-2795106 Ichtegem Ichtegem Ichtegem,Ichteghem 51.09572 3.01549 P PPL BE VLG VWV 35 35006 13582 16 Europe/Brussels 2012-01-18
-2795113 Huy Huy Hoei,Hu,Huy,Jui,Юи 50.51894 5.23284 P PPL BE WAL WLG 61 61031 19973 75 Europe/Brussels 2011-03-17
-2795170 Hulshout Hulshout Hulshout 51.07451 4.79081 P PPL BE VLG VAN 13 13016 9198 13 Europe/Brussels 2012-01-18
-2795184 Huldenberg Huldenberg Huldenberg 50.78939 4.5831 P PPL BE VLG VBR 24 24045 9137 48 Europe/Brussels 2011-02-15
-2795232 Hove Hove Hove 51.15446 4.4707 P PPL BE VLG VAN 11 11021 7968 22 Europe/Brussels 2012-01-18
-2795238 Houyet Houyet Houyet 50.18619 5.00762 P PPL BE WAL WNA 91 91072 4505 130 Europe/Brussels 2011-05-17
-2795255 Houthulst Houthulst Houthuls,Houthulst,Oetulst 50.97824 2.9505 P PPL BE VLG VWV 32 32006 8951 18 Europe/Brussels 2012-01-18
-2795261 Houthalen Houthalen Houthaelen,Houthaelenberg,Houthalen-Helchteren (Houthalen) 51.03427 5.37429 P PPL BE VLG VLI 72 72039 30050 64 Europe/Brussels 2011-02-23
-2795322 Houffalize Houffalize Houffalize,Oufalijhe 50.13235 5.78962 P PPL BE WAL WLX 82 82014 4614 329 Europe/Brussels 2011-10-19
-2795337 Hotton Hotton Hotton 50.26742 5.44609 P PPL BE WAL WLX 83 83028 4969 177 Europe/Brussels 2012-01-18
-2795398 Hoogstraten Hoogstraten Hoogstraeten,Hoogstraten,Khogstraten,Хогстратен 51.40029 4.76034 P PPL BE VLG VAN 13 13014 18524 21 Europe/Brussels 2012-01-18
-2795423 Hooglede Hooglede Hooglede,Ooglee 50.98333 3.08333 P PPL BE VLG VWV 36 36006 9900 41 Europe/Brussels 2012-01-18
-2795511 Holsbeek Holsbeek Holsbeek 50.92097 4.75747 P PPL BE VLG VBR 24 24043 9094 21 Europe/Brussels 2011-02-18
-2795648 Hoeselt Hoeselt Hoeiselt,Hoeselt,Hoesselt 50.84714 5.48767 P PPL BE VLG VLI 73 73032 9265 77 Europe/Brussels 2011-02-28
-2795699 Hoeilaart Hoeilaart Hoeilaart,Hoeylaert 50.7673 4.46835 P PPL BE VLG VBR 23 23033 10272 84 Europe/Brussels 2011-02-15
-2795703 Hoegaarden Hoegaarden Hoegaarden,Hougaerde 50.7756 4.88952 P PPL BE VLG VBR 24 24041 6110 54 Europe/Brussels 2011-02-21
-2795730 Hoboken Hoboken Antwerp (Hoboken),Hoboken-lez-Anvers 51.17611 4.34844 P PPL BE BE VLG VAN 11 11002 34443 12 Europe/Brussels 2011-02-07
-2795800 Heusden Heusden Heusden-Zolder (Heusden) 51.03664 5.28013 P PPL BE VLG VLI 71 71070 31017 39 Europe/Brussels 2011-02-23
-2795908 Herzele Herzele Herzele 50.88681 3.89014 P PPL BE VLG VOV 41 41027 16523 58 Europe/Brussels 2012-01-18
-2795912 Herve Herve Herve 50.64083 5.79353 P PPL BE WAL WLG 63 63035 16544 300 Europe/Brussels 2012-01-18
-2795930 Herstal Herstal Herstal,Hesta 50.66415 5.62346 P PPL BE WAL WLG 62 62051 36503 81 Europe/Brussels 2011-03-14
-2795933 Herselt Herselt Herselt,Hersselt 51.05159 4.88231 P PPL BE VLG VAN 13 13013 13493 18 Europe/Brussels 2011-02-07
-2795949 Héron Heron Heron,Héron 50.54731 5.09774 P PPL BE WAL WLG 61 61028 4305 165 Europe/Brussels 2011-03-15
-2795956 Herne Herne Herinnes,Herne,Hérinnes 50.72423 4.03481 P PPL BE VLG VBR 23 23032 6459 43 Europe/Brussels 2011-02-02
-2795985 Herk-de-Stad Herk-de-Stad Herck-la-Ville,Herk,Herk-de-Stad 50.94013 5.16636 P PPL BE VLG VLI 71 71024 11566 31 Europe/Brussels 2012-01-18
-2796005 Herenthout Herenthout Herenthout 51.1401 4.75572 P PPL BE VLG VAN 13 13012 8378 12 Europe/Brussels 2012-01-18
-2796009 Herentals Herentals Herentals,Herenthals,Kherentals,Херенталс 51.17655 4.83248 P PPL BE VLG VAN 13 13011 25912 16 Europe/Brussels 2012-01-18
-2796012 Herent Herent Herent 50.90861 4.67056 P PPL BE VLG VBR 24 24038 19218 27 Europe/Brussels 2011-02-04
-2796037 Herbeumont Herbeumont Herbeumont 49.78086 5.2358 P PPL BE WAL WLX 84 84029 1612 310 Europe/Brussels 2012-01-18
-2796056 Hensies Hensies 50.43263 3.68411 P PPL BE WAL WHT 53 53039 6390 19 Europe/Brussels 2009-01-18
-2796085 Hemiksem Hemiksem Hemiksem,Hemixem,Hemixeu 51.14484 4.33874 P PPL BE VLG VAN 11 11018 9504 18 Europe/Brussels 2011-02-10
-2796132 Helchteren Helchteren Houthalen-Helchteren (Helchteren) 51.05591 5.38244 P PPL BE VLG VLI 72 72039 30050 72 Europe/Brussels 2011-02-23
-2796153 Heist-op-den-Berg Heist-op-den-Berg Heist-op-den-Berg,Heistopden-Berg,Heyst-op-den-Berg 51.07537 4.72827 P PPL BE VLG VAN 12 12014 37873 36 Europe/Brussels 2012-01-18
-2796297 Heers Heers Heers,Hier,Hiër 50.75383 5.3021 P PPL BE VLG VLI 73 73022 6689 75 Europe/Brussels 2011-03-03
-2796369 Havelange Havelange Havelange 50.38931 5.23816 P PPL BE WAL WNA 91 91064 4790 303 Europe/Brussels 2011-04-12
-2796482 Hastière-Lavaux Hastiere-Lavaux Hastiere (Hastiere-Lavaux),Hastière (Hastière-Lavaux) 50.21849 4.82446 P PPL BE WAL WNA 91 91142 5147 129 Europe/Brussels 2011-05-05
-2796491 Hasselt Hasselt Asselt,Haselto,Hasselt,Khaselt,Άσσελτ,Хаселт 50.93106 5.33781 P PPL BE VLG VLI 71 71022 69222 42 Europe/Brussels 2011-02-23
-2796542 Harelbeke Harelbeke Hailebeke,Harelbeke,Harlebeke,Kharelbeke,Харелбеке 50.85343 3.30935 P PPL BE VLG VWV 34 34013 25978 16 Europe/Brussels 2012-01-18
-2796583 Hannut Hannut Hannuit,Hannut 50.67142 5.07898 P PPLA4 BE WAL WLG 64 64034 14129 140 Europe/Brussels 2012-01-18
-2796627 Hamois Hamois 50.3402 5.15619 P PPL BE WAL WNA 91 91059 6662 250 Europe/Brussels 2011-04-05
-2796629 Hamoir Hamoir Hamoir 50.42675 5.53304 P PPL BE WAL WLG 61 61024 3500 116 Europe/Brussels 2012-01-18
-2796637 Hamme Hamme Hamme,Khamme,Хамме 51.09822 4.13705 P PPL BE VLG VOV 42 42008 22891 6 Europe/Brussels 2012-01-18
-2796696 Halle Halle Galle,Hal,Halle,Галле 50.73385 4.23454 P PPL BE VLG VBR 23 23027 34479 34 Europe/Brussels 2011-02-12
-2796715 Halen Halen Haelen,Halen,Hole,Hôle,Khalen,Хален 50.94837 5.11096 P PPL BE VLG VLI 71 71020 8548 24 Europe/Brussels 2011-02-23
-2796807 Habay-la-Vieille Habay-la-Vieille Habay,Habay-la-Vieille 49.72329 5.61999 P PPL BE WAL WLX 85 85046 7704 370 Europe/Brussels 2012-02-28
-2796833 Haaltert Haaltert Haaltert,Haeltert 50.90634 4.00093 P PPL BE VLG VOV 41 41024 17129 43 Europe/Brussels 2012-01-18
-2796844 Haacht Haacht Haacht,Haecht 50.97737 4.63777 P PPL BE VLG VBR 24 24033 13541 10 Europe/Brussels 2012-01-18
-2797094 Grobbendonk Grobbendonk Grobbendonck,Grobbendonk 51.19043 4.73562 P PPL BE VLG VAN 13 13010 10724 10 Europe/Brussels 2011-02-08
-2797114 Grimbergen Grimbergen Grimbergen,Grimberghen,Гримберген 50.93409 4.37213 P PPL BE VLG VBR 23 23025 33561 29 Europe/Brussels 2011-02-04
-2797128 Grez-Doiceau Grez-Doiceau Graven,Grez-Doiceau 50.73901 4.69829 P PPL BE WAL WBR 25 25037 12367 46 Europe/Brussels 2011-01-27
-2797346 Gouvy Gouvy Gouvy 50.186 5.93918 P PPL BE WAL WLX 82 82037 4706 443 Europe/Brussels 2012-01-20
-2797417 Gooik Gooik Gooik,Goyck 50.79443 4.11378 P PPL BE VLG VBR 23 23024 8957 39 Europe/Brussels 2011-02-03
-2797500 Glabbeek-Zuurbemde Glabbeek-Zuurbemde Glabbeek,Glabbeek-Suerbempde,Glabbeek-Zuurbemde 50.87348 4.94442 P PPL BE VLG VBR 24 24137 5070 50 Europe/Brussels 2012-01-18
-2797517 Gistel Gistel Ghistelles,Gistel,Histel,Гистел 51.15612 2.96388 P PPL BE VLG VWV 35 35005 11084 7 Europe/Brussels 2012-01-18
-2797523 Gingelom Gingelom Gingelom 50.74792 5.13422 P PPL BE VLG VLI 71 71017 7930 83 Europe/Brussels 2011-03-02
-2797581 Gesves Gesves Gesves 50.40146 5.07457 P PPL BE WAL WNA 92 92054 6150 246 Europe/Brussels 2011-04-05
-2797598 Gerpinnes Gerpinnes Gerpinnes 50.33789 4.52731 P PPL BE WAL WHT 52 52025 11977 185 Europe/Brussels 2012-01-18
-2797638 Geraardsbergen Geraardsbergen Geeraardsbergen,Geraardsbergen,Gerardsbergen,Grammont,Герардсберген 50.77343 3.88223 P PPL BE VLG VOV 41 41018 30807 32 Europe/Brussels 2012-01-18
-2797656 Gent Gent Gaent,Gand,Gandavum,Gandawa,Gande,Gant,Gante,Gent,Gente,Gento,Ghent,Gænt,gen te,gento,gnt,Ģente,Γάνδη,Гент,גנט,ゲント,根特 51.05 3.71667 P PPL BE VLG VOV 44 44021 231493 10 Europe/Brussels 2008-06-24
-2797670 Genk Genk Genck,Genk,Генк 50.965 5.50082 P PPL BE VLG VLI 71 71016 63666 66 Europe/Brussels 2012-01-18
-2797694 Genappe Genappe Genappe,Genepien,Genepiën 50.61173 4.45152 P PPL BE WAL WBR 25 25031 14266 112 Europe/Brussels 2011-01-31
-2797713 Gembloux Gembloux Djiblou,Gembloers,Gembloux,Gemblua,Jembloux,Гемблуа 50.56149 4.69889 P PPL BE WAL WNA 92 92142 21676 158 Europe/Brussels 2011-03-25
-2797761 Geetbets Geetbets Geet Betz,Geetbets 50.89431 5.11199 P PPL BE VLG VBR 24 24028 5813 30 Europe/Brussels 2012-01-18
-2797770 Geer Geer Geer 50.6699 5.17364 P PPL BE WAL WLG 64 64029 2682 129 Europe/Brussels 2012-01-18
-2797779 Geel Geel Geel,Gheel,Геел 51.16557 4.98917 P PPL BE VLG VAN 13 13008 34697 22 Europe/Brussels 2011-02-10
-2797781 Gedinne Gedinne Djedene,Gedinne 49.98037 4.93674 P PPL BE WAL WNA 91 91054 4416 310 Europe/Brussels 2012-01-18
-2797798 Gavere Gavere Gavere 50.92917 3.66184 P PPL BE VLG VOV 44 44020 11888 25 Europe/Brussels 2012-01-18
-2797851 Galmaarden Galmaarden Galmaarden,Gammerages 50.75389 3.97121 P PPL BE VLG VBR 23 23023 7939 32 Europe/Brussels 2011-02-02
-2797937 Froidchapelle Froidchapelle 50.15106 4.32742 P PPL BE WAL WHT 56 56029 3579 241 Europe/Brussels 2011-08-01
-2797979 Frasnes-lez-Buissenal Frasnes-lez-Buissenal Frasnes,Frasnes-lez-Buissenal 50.66783 3.62047 P PPL BE WAL WHT 51 51065 10936 38 Europe/Brussels 2012-01-18
-2798023 Frameries Frameries Frameris,Фрамерис 50.40578 3.89603 P PPL BE WAL WHT 53 53028 20598 113 Europe/Brussels 2010-01-29
-2798056 Sint-Pieters-Voeren Sint-Pieters-Voeren Fouron-Saint-Pierre,Fourons (Fouron-Saint-Pierre),Sint-Pieters-Voeren,Voeren (Sint-Pieters-Voeren) 50.73863 5.82224 P PPL BE VLG VLI 73 73109 4235 153 Europe/Brussels 2011-03-02
-2798099 Fosses-la-Ville Fosses-la-Ville 50.39517 4.69623 P PPL BE WAL WNA 92 92048 9062 176 Europe/Brussels 2011-03-25
-2798272 Florenville Florenville Florenville 49.69983 5.3074 P PPL BE WAL WLX 85 85011 5464 342 Europe/Brussels 2012-01-18
-2798276 Florennes Florennes Florennes 50.25127 4.60636 P PPL BE WAL WNA 93 93022 10723 262 Europe/Brussels 2011-07-18
-2798279 Floreffe Floreffe Floreffe 50.43452 4.7596 P PPL BE WAL WNA 92 92045 7480 92 Europe/Brussels 2012-01-18
-2798290 Flobecq Flobecq Flobecq,Vloesberg 50.73733 3.73876 P PPL BE WAL WHT 51 51019 3142 43 Europe/Brussels 2012-01-18
-2798297 Fleurus Fleurus Flerus,Флерус 50.48351 4.55006 P PPL BE WAL WHT 52 52021 22080 158 Europe/Brussels 2011-08-01
-2798301 Fléron Fleron Fleron,Fléron 50.61516 5.68062 P PPL BE WAL WLG 62 62038 15994 258 Europe/Brussels 2011-03-14
-2798307 Flémalle-Haute Flemalle-Haute Flemalle (Flemalle-Haute),Flémalle (Flémalle-Haute) 50.59994 5.44471 P PPL BE WAL WLG 62 62120 25144 175 Europe/Brussels 2011-03-15
-2798357 Fexhe-le-Haut-Clocher Fexhe-le-Haut-Clocher Fexhe-le-Haut-Clocher 50.6654 5.39978 P PPL BE WAL WLG 64 64025 3082 156 Europe/Brussels 2011-03-15
-2798365 Ferrières Ferrieres Ferrieres,Ferrières 50.40157 5.61092 P PPL BE WAL WLG 61 61019 4434 225 Europe/Brussels 2011-03-15
-2798438 Fauvillers Fauvillers Fauvillers 49.85116 5.66405 P PPL BE WAL WLX 82 82009 1952 463 Europe/Brussels 2011-10-19
-2798470 Farciennes Farciennes Farciennes 50.43006 4.54152 P PPL BE WAL WHT 52 52018 11488 128 Europe/Brussels 2011-08-01
-2798512 Faimes Faimes Faimes 50.66252 5.26005 P PPL BE WAL WLG 64 64076 3349 140 Europe/Brussels 2011-03-15
-2798551 Evergem Evergem Ehvergem,Evergem,Everghem Rabot,Эвергем 51.1053 3.704 P PPL BE VLG VOV 44 44019 31615 7 Europe/Brussels 2012-01-18
-2798573 Eupen Eupen Epen,Eupe,Eupen,Епен 50.6279 6.03647 P PPL BE WAL WLG 63 63023 18029 298 Europe/Brussels 2011-03-21
-2798593 Étalle Etalle Etalle,Étalle 49.67385 5.60019 P PPL BE WAL WLX 85 85009 5228 339 Europe/Brussels 2012-03-01
-2798597 Estinnes-au-Val Estinnes-au-Val 50.41016 4.10477 P PPL BE WAL WHT 56 56085 7573 60 Europe/Brussels 2009-01-17
-2798604 Estaimpuis Estaimpuis Estaimpuis 50.70485 3.26785 P PPL BE WAL WHT 57 57027 9340 27 Europe/Brussels 2012-01-18
-2798615 Essen Essen Esschen 51.46272 4.45393 P PPL BE VLG VAN 11 11016 16754 16 Europe/Brussels 2009-10-10
-2798636 Esneux Esneux Esneux 50.53596 5.56775 P PPL BE WAL WLG 62 62032 13497 115 Europe/Brussels 2011-03-15
-2798666 Erquelinnes Erquelinnes Erquelinnes 50.30688 4.11129 P PPL BE WAL WHT 56 56022 9396 137 Europe/Brussels 2011-10-14
-2798698 Érezée Erezee Erezee,Érezée 50.29292 5.55815 P PPL BE WAL WLX 83 83013 2930 332 Europe/Brussels 2012-01-18
-2798743 Engis Engis Engis 50.58156 5.39916 P PPL BE WAL WLG 62 62121 5737 80 Europe/Brussels 2012-01-18
-2798747 Enghien Enghien Edingen,Enghien 50.68373 4.03284 P PPLA4 BE WAL WHT 55 55010 11367 58 Europe/Brussels 2011-02-02
-2798836 Ellezelles Ellezelles Ellezelles,Elzele 50.73512 3.67985 P PPL BE WAL WHT 51 51017 5566 56 Europe/Brussels 2012-01-18
-2798949 Éghezée Eghezee Eghezee,Éghezée 50.59076 4.91175 P PPL BE WAL WNA 92 92035 14352 147 Europe/Brussels 2011-04-05
-2798987 Eeklo Eeklo Eecloo,Eeklo,Eekloo 51.18703 3.55654 P PPL BE VLG VOV 43 43005 19116 6 Europe/Brussels 2012-01-18
-2799007 Edegem Edegem Edegem,Edeghem 51.15662 4.44504 P PPL BE VLG VAN 11 11013 21839 17 Europe/Brussels 2012-01-18
-2799024 Écaussinnes-d'Enghien Ecaussinnes-d'Enghien Ecaussines-d'Enghien,Ecaussinnes-d'Enghien,Écaussines-d'Enghien,Écaussinnes-d'Enghien 50.56822 4.1658 P PPL BE WAL WHT 55 55050 9802 104 Europe/Brussels 2012-01-18
-2799047 Durbuy Durbuy Durbui,Durbuy 50.35291 5.45631 P PPL BE WAL WLX 83 83012 10251 152 Europe/Brussels 2012-01-18
-2799090 Duffel Duffel Duffel 51.09554 4.50903 P PPL BE VLG VAN 12 12009 16011 5 Europe/Brussels 2011-02-10
-2799114 Drogenbos Drogenbos Drogenbos,Drogenbosch,Droogenbosch 50.78733 4.31471 P PPL BE VLG VBR 23 23098 4843 31 Europe/Brussels 2011-02-02
-2799226 Dour Dour 50.39583 3.77792 P PPL BE WAL WHT 53 53020 16861 93 Europe/Brussels 2009-01-18
-2799317 Donceel Donceel Donceel 50.64827 5.32 P PPL BE WAL WLG 64 64023 2712 146 Europe/Brussels 2012-01-18
-2799328 Doische Doische Doische,Dweche 50.13356 4.73545 P PPL BE WAL WNA 93 93018 2739 167 Europe/Brussels 2011-07-21
-2799347 Dison Dison Dison 50.61004 5.8534 P PPL BE WAL WLG 63 63020 13642 197 Europe/Brussels 2011-03-14
-2799357 Dinant Dinant Dinan,Dinant,di nan,Динан,דינאן,迪南 50.25807 4.91166 P PPL BE WAL WNA 91 91034 12875 96 Europe/Brussels 2011-04-18
-2799365 Dilbeek Dilbeek Dilbeek,dilbek,Дилбек 50.84799 4.25972 P PPL BE VLG VBR 23 23016 39482 84 Europe/Brussels 2012-01-18
-2799369 Diksmuide Diksmuide Diksmude,Diksmuide,Dixmude,Dixmuide,Dixmuiden 51.03248 2.86384 P PPL BE VLG VWV 32 32003 15515 9 Europe/Brussels 2012-01-18
-2799397 Diest Diest Diest 50.98923 5.05062 P PPL BE VLG VBR 24 24020 22516 22 Europe/Brussels 2011-02-18
-2799412 Diepenbeek Diepenbeek 50.90769 5.41875 P PPL BE VLG VLI 71 71011 17699 50 Europe/Brussels 2010-07-31
-2799496 Destelbergen Destelbergen Destelbergen 51.05952 3.79899 P PPL BE VLG VOV 44 44013 16853 6 Europe/Brussels 2012-01-18
-2799511 Dessel Dessel Desschel,Dessel 51.23855 5.11448 P PPL BE VLG VAN 13 13006 8707 25 Europe/Brussels 2011-02-10
-2799570 De Pinte De Pinte De Pinte,La Pinte 50.99339 3.64747 P PPL BE VLG VOV 44 44012 10020 7 Europe/Brussels 2012-01-18
-2799577 De Panne De Panne De Panne,La Panne,Panne 51.09793 2.59368 P PPL BE VLG VWV 38 38008 9799 11 Europe/Brussels 2012-01-18
-2799586 Dentergem Dentergem Dentergem,Denterghem,Denterhem 50.96429 3.41617 P PPL BE VLG VWV 37 37002 8038 11 Europe/Brussels 2012-01-18
-2799645 Dendermonde Dendermonde Dendermonde,Teneramonda,Termonde,dendermonde,Дендермонде 51.02869 4.10106 P PPL BE VLG VOV 42 42006 43055 6 Europe/Brussels 2012-01-18
-2799647 Denderleeuw Denderleeuw Denderleeuw 50.88506 4.07601 P PPL BE VLG VOV 41 41011 16969 17 Europe/Brussels 2011-02-03
-2799746 Deinze Deinze Deinze,Dejnze,Deynze,Дейнзе 50.98175 3.53096 P PPL BE VLG VOV 44 44011 27777 10 Europe/Brussels 2012-01-18
-2799779 De Haan De Haan D'n Aone,D'n Oane,De Haan,Den Haan,Le Coq 51.27261 3.03446 P PPL BE VLG VWV 35 35029 11766 7 Europe/Brussels 2012-01-18
-2799797 Deerlijk Deerlijk Deerlijk,Deerlyck 50.85337 3.35416 P PPL BE VLG VWV 34 34009 11292 18 Europe/Brussels 2012-01-18
-2799851 Daverdisse Daverdisse Daverdisse 50.02161 5.11811 P PPL BE WAL WLX 84 84016 1299 299 Europe/Brussels 2012-01-18
-2799885 Damme Damme Damme,Dammum,Damovilla,Damville,dame,Даме 51.25147 3.28144 P PPL BE VLG VWV 31 31006 10924 4 Europe/Brussels 2008-08-02
-2799897 Dalhem Dalhem Dalhem 50.71315 5.72774 P PPL BE WAL WLG 62 62027 6391 98 Europe/Brussels 2011-03-21
-2799997 Crisnée Crisnee Crisnee,Crisnée 50.71703 5.39802 P PPL BE WAL WLG 64 64021 2587 113 Europe/Brussels 2011-03-15
-2800025 Couvin Couvin Couven,Couvin,Couvén 50.05284 4.49495 P PPL BE WAL WNA 93 93014 13518 185 Europe/Brussels 2011-07-19
-2800042 Court-Saint-Étienne Court-Saint-Etienne Court-Saint-Etienne,Court-Saint-Étienne 50.63378 4.56851 P PPL BE WAL WBR 25 25023 9353 85 Europe/Brussels 2011-02-01
-2800063 Courcelles Courcelles Courcelles,Kursel',Курсель 50.46379 4.3747 P PPL BE WAL WHT 52 52015 29473 160 Europe/Brussels 2011-07-21
-2800204 Comblain-au-Pont Comblain-au-Pont Comblain,Komblenx 50.47488 5.57711 P PPL BE WAL WLG 62 62026 5308 103 Europe/Brussels 2011-03-15
-2800220 Colfontaine Colfontaine 50.4141 3.85569 P PPL BE WAL WHT 53 53082 19964 79 Europe/Brussels 2009-01-20
-2800269 Clavier Clavier Clavier 50.40069 5.35154 P PPL BE WAL WLG 61 61012 4092 295 Europe/Brussels 2011-03-17
-2800298 Ciney Ciney Cine,Ciney,Cînè 50.29449 5.10015 P PPL BE WAL WNA 91 91030 14830 261 Europe/Brussels 2011-07-08
-2800320 Chiny Chiny Chiny 49.73833 5.34104 P PPL BE WAL WLX 85 85007 4897 375 Europe/Brussels 2012-01-18
-2800325 Chimay Chimay Chimay 50.04856 4.31712 P PPL BE WAL WHT 56 56016 9720 240 Europe/Brussels 2012-01-18
-2800328 Chièvres Chievres 50.58787 3.80711 P PPL BE WAL WHT 51 51014 6045 52 Europe/Brussels 2009-01-18
-2800430 Chaumont-Gistoux Chaumont-Gistoux Chaumont,Chaumont-Gistoux,Tchamont-Djistou,Tchåmont-Djistou 50.67753 4.7212 P PPL BE WAL WBR 25 25018 10943 121 Europe/Brussels 2011-01-26
-2800438 Chaudfontaine Chaudfontaine Chaudfontaine 50.5828 5.6341 P PPL BE WAL WLG 62 62022 20960 218 Europe/Brussels 2011-03-14
-2800448 Châtelet Chatelet Chatelet,Châtelet,Shatle,Шатле 50.40338 4.52826 P PPL BE WAL WHT 52 52012 35238 118 Europe/Brussels 2011-07-21
-2800457 Chastre-Villeroux-Blanmont Chastre-Villeroux-Blanmont Chastre (Chastre-Villeroux-Blanmont) 50.60857 4.64198 P PPL BE WAL WBR 25 25117 6243 133 Europe/Brussels 2011-01-31
-2800461 Chasse Royale Chasse Royale 50.42842 3.95001 P PPLG BE WAL WHT 0 42 Europe/Brussels 2009-01-20
-2800481 Charleroi Charleroi Charleroi,Sarlroua,Sharleroa,Sharlerua,Sharlroa,Tchalerwe,Tchålerwè,sharururoa,Σαρλρουά,Шарлероа,Шарлеруа,Шарлроа,שרלרואה,シャルルロア 50.41136 4.44448 P PPL BE WAL WHT 52 52011 200132 136 Europe/Brussels 2011-07-21
-2800500 Chapelle-lez-Herlaimont Chapelle-lez-Herlaimont Chapelle-lez-Herlaimont 50.4713 4.28227 P PPL BE WAL WHT 52 52010 14353 165 Europe/Brussels 2012-01-18
-2800591 Cerfontaine Cerfontaine Cerfontaine 50.17047 4.41028 P PPL BE WAL WNA 93 93010 4500 218 Europe/Brussels 2012-01-18
-2800605 Celles Celles Celles 50.71229 3.45733 P PPL BE WAL WHT 57 57018 5471 19 Europe/Brussels 2012-01-18
-2800711 Butgenbach Butgenbach Buetgenbach,Bütgenbach 50.42689 6.20504 P PPL BE WAL WLG 63 63013 5516 579 Europe/Brussels 2011-03-23
-2800761 Burdinne Burdinne Burdinne 50.58454 5.07663 P PPL BE WAL WLG 61 61010 2799 167 Europe/Brussels 2011-03-15
-2800782 Bullange Bullange Boellenge,Buellingen,Bullange,Bullingen,Böllénge,Büllingen 50.40731 6.25749 P PPL BE WAL WLG 63 63012 5340 582 Europe/Brussels 2011-03-23
-2800816 Buggenhout Buggenhout Buggenhout 51.0159 4.20173 P PPL BE VLG VOV 42 42004 13510 9 Europe/Brussels 2012-01-18
-2800866 Brussels Brussels An Bhruiseil,An Bhruiséil,BRU,Breissel,Brisel,Brisele,Briuselis,Brjuksel,Brjusel',Brjussel',Brueksel,Bruessel,Bruesszel,Bruiseal,Bruksel,Bruksela,Brukseli,Brukselo,Brusehl',Brusel,Brusela,Bruselas,Bruseles,Bruselj,Bruselo,Brusel·les,Brussel,Brussele,Brussels,Brussel·les,Bruxel,Bruxelas,Bruxellae,Bruxelles,Brwsel,Bryssel,Bryusel,Bryxelles,Bréissel,Brüksel,Brüssel,Brüsszel,Citta di Bruxelles,Città di Bruxelles,Kota Brusel,beulwisel,braselsa,brassels,briuseli,brwksl,brysl,bu lu sai er,buryusseru,Βρυξέλλες,Брисел,Брусэль,Брюксел,Брюсель,Брюссель,Բրյուսել,בריסל,بروكسل,بروکسل,بريۇسسېل,ܒܪܘܟܣܠ,ब्रसेल्स,บรัสเซลส์,ბრიუსელი,ブリュッセル,布鲁塞尔,브뤼셀 50.85045 4.34878 P PPLC BE BRU BRU 21 21004 1019022 28 Europe/Brussels 2011-06-16
-2800883 Brunehault Brunehault Brunehault,Brunehaut 50.50524 4.43209 P PPL BE WAL WHT 7592 147 Europe/Brussels 2012-01-18
-2800931 Brugge Brugge Bricg,Brige,Briz,Brizh,Briž,Brjugge,Brjuzh,Broegge,Bruegge,Brugae,Bruges,Brugge,Bruggy,Brugia,Brugo,Bruhhe,Brujas,Bruxas,Bruĝo,Brygge,Brögge,Brügge,brwz',bu lu ri li shi zhong xin,buryuhhe,Бриж,Брюгге,Брюж,ברוז',ブリュッヘ,布鲁日历史中心 51.20892 3.22424 P PPL BE VLG VWV 31 31005 116709 13 Europe/Brussels 2010-08-25
-2800936 Brugelette Brugelette 50.59577 3.85363 P PPL BE WAL WHT 51 51012 3358 51 Europe/Brussels 2009-01-17
-2801093 Bree Bree Bree,Брее 51.14152 5.5969 P PPL BE VLG VLI 72 72004 14363 48 Europe/Brussels 2012-01-18
-2801103 Bredene Bredene Bredene,Breedene,Breenienge,Brenienge,Breênienge,Brênienge 51.23489 2.97559 P PPL BE VLG VWV 35 35002 14862 3 Europe/Brussels 2012-01-18
-2801106 Brecht Brecht Brecht,Brekht,Брехт 51.35024 4.63829 P PPL BE VLG VAN 11 11009 25908 23 Europe/Brussels 2011-02-11
-2801117 Brasschaat Brasschaat Braskhat,Brasschaat,Brasschaep,Brasschaet,Брасхат 51.2912 4.49182 P PPL BE VLG VAN 11 11008 37040 10 Europe/Brussels 2012-01-18
-2801147 Braives Braives Braives 50.61745 5.13302 P PPL BE WAL WLG 64 64015 5672 123 Europe/Brussels 2011-03-15
-2801150 Braine-le-Comte Braine-le-Comte 's-Gravenbrakel,Braine-le-Comte,Brem-le-Kont,Brinne-e-Hinnot,Брем-ле-Конт 50.60979 4.14658 P PPL BE WAL WHT 55 55004 20133 96 Europe/Brussels 2012-01-18
-2801152 Braine-le-Château Braine-le-Chateau Braine-le-Chateau,Braine-le-Château,Kasteelbrakel 50.6799 4.27385 P PPL BE WAL WBR 25 25015 9627 78 Europe/Brussels 2011-01-31
-2801154 Braine-l'Alleud Braine-l'Alleud Braine-l'Alleud,Brinne-l'-Alou,Eigenbrakel 50.68363 4.36784 P PPL BE WAL WBR 25 25014 37512 93 Europe/Brussels 2011-01-31
-2801215 Boutersem Boutersem Bautersem,Boutersem 50.83511 4.8345 P PPL BE VLG VBR 24 24016 7702 58 Europe/Brussels 2011-02-21
-2801226 Boussu Boussu Boussu,Boussu-lez-Mons,Боуссу 50.43417 3.7944 P PPL BE WAL WHT 53 53014 20058 32 Europe/Brussels 2010-01-29
-2801283 Bouillon Bouillon Bouillon,Bulen 49.79324 5.06704 P PPL BE WAL WLX 84 84010 5347 226 Europe/Brussels 2012-01-18
-2801438 Borsbeek Borsbeek Borsbeek 51.19661 4.48543 P PPL BE VLG VAN 11 11007 10334 10 Europe/Brussels 2011-02-07
-2801447 Bornem Bornem Bornem,Bornhem 51.09716 4.24364 P PPL BE VLG VAN 12 12007 19997 6 Europe/Brussels 2011-02-10
-2801467 Borgloon Borgloon Borgloon,Loeen,Loeën,Looz,Борглоон 50.80505 5.34366 P PPL BE VLG VLI 73 73009 9955 98 Europe/Brussels 2012-01-18
-2801483 Boortmeerbeek Boortmeerbeek Boortmeerbeek 50.97929 4.57443 P PPL BE VLG VBR 24 24014 11570 10 Europe/Brussels 2011-02-18
-2801494 Boom Boom Boom 51.09242 4.3717 P PPL BE VLG VAN 11 11005 15810 10 Europe/Brussels 2011-02-10
-2801539 Bonheiden Bonheiden Bonheyden 51.02261 4.54714 P PPL BE VLG VAN 12 12005 14260 7 Europe/Brussels 2008-06-15
-2801743 Boechout Boechout Boechout,Bouchout 51.15959 4.49195 P PPL BE VLG VAN 11 11004 12145 18 Europe/Brussels 2011-02-10
-2801754 Bocholt Bocholt Bocholt,Boggetj,Bóggetj 51.17337 5.57994 P PPL BE VLG VLI 72 72003 12346 42 Europe/Brussels 2011-03-14
-2801820 Blégny Blegny 50.67255 5.72508 P PPL BE WAL WLG 62 62119 12745 218 Europe/Brussels 2011-03-21
-2801858 Blankenberge Blankenberge Blank'nberge,Blank'nberhe,Blankenberge,Blankenberghe,Бланкенберге 51.31306 3.13227 P PPL BE VLG VWV 31 31004 18230 6 Europe/Brussels 2012-01-18
-2801922 Binche Binche Bensh,Binche,Бенш 50.41155 4.16469 P PPL BE WAL WHT 56 56011 32030 92 Europe/Brussels 2012-01-18
-2801924 Bilzen Bilzen Bilsen,Bilze,Bilzen,Билзен 50.87325 5.5184 P PPL BE VLG VLI 73 73006 29622 53 Europe/Brussels 2011-02-28
-2801949 Bièvre Bievre Bievre,Bive,Bièvre 49.94086 5.01592 P PPL BE WAL WNA 91 91015 3207 368 Europe/Brussels 2012-01-18
-2801998 Bierbeek Bierbeek Bierbeek 50.82876 4.75949 P PPL BE VLG VBR 24 24011 8994 59 Europe/Brussels 2012-01-18
-2802015 Beyne-Heusay Beyne-Heusay Beyne-Heusay 50.62251 5.66508 P PPL BE WAL WLG 62 62015 11608 231 Europe/Brussels 2011-03-14
-2802031 Beveren Beveren Beveren,Beveren-Waes,Беверен 51.21187 4.25633 P PPL BE VLG VOV 46 46003 45179 12 Europe/Brussels 2012-01-18
-2802051 Bever Bever 50.91667 4.31667 P PPL BE VLG WHT 1932 49 Europe/Brussels 2006-01-17
-2802106 Bertrix Bertrix Bertrix 49.85596 5.25539 P PPL BE WAL WLX 84 84009 8063 438 Europe/Brussels 2012-01-18
-2802113 Bertogne Bertogne 50.08364 5.66689 P PPL BE WAL WLX 82 82005 2852 429 Europe/Brussels 2012-01-20
-2802123 Bertem Bertem Bertem,Berthem 50.86403 4.62918 P PPL BE VLG VBR 24 24009 9215 39 Europe/Brussels 2012-01-18
-2802135 Bernissart Bernissart 50.4746 3.64961 P PPL BE WAL WHT 51 51009 11588 20 Europe/Brussels 2009-01-18
-2802143 Berloz Berloz Berloz 50.69829 5.21236 P PPL BE WAL WLG 64 64008 2770 123 Europe/Brussels 2012-01-18
-2802154 Berlare Berlare Berlaere,Berlare 51.03333 4 P PPL BE VLG VOV 42 42003 13853 9 Europe/Brussels 2012-01-18
-2802156 Berlaar Berlaar Berlaar,Berlaer 51.1176 4.65835 P PPL BE VLG VAN 12 12002 10370 8 Europe/Brussels 2012-01-18
-2802170 Beringen Beringen Beeringen,Beringen,Beringene,Berringe,Берингене 51.04954 5.22606 P PPL BE VLG VLI 71 71004 40930 39 Europe/Brussels 2011-02-23
-2802292 Beloeil Beloeil Beloeil,Belœil 50.55047 3.73484 P PPL BE WAL WHT 51 51008 13405 59 Europe/Brussels 2009-01-18
-2802374 Bekkevoort Bekkevoort Becquevoort,Bekkevoort 50.94074 4.969 P PPL BE VLG VBR 24 24008 5714 44 Europe/Brussels 2011-02-23
-2802405 Begijnendijk Begijnendijk Beggynendyck 51.01942 4.78377 P PPL BE VLG VBR 24 24007 9178 13 Europe/Brussels 2011-02-17
-2802433 Beersel Beersel Beersel,Bersel,Берсел 50.76589 4.3002 P PPL BE VLG VBR 23 23003 23228 43 Europe/Brussels 2011-02-01
-2802435 Beerse Beerse Beerse,Beersse 51.31927 4.85304 P PPL BE VLG VAN 13 13004 16208 27 Europe/Brussels 2012-01-18
-2802437 Beernem Beernem Beernem,Bèèrnem 51.13981 3.33896 P PPL BE VLG VWV 31 31003 14512 10 Europe/Brussels 2012-01-18
-2802483 Beauvechain Beauvechain Beauvechain,Bevekom 50.78195 4.7718 P PPL BE WAL WBR 25 25005 6334 86 Europe/Brussels 2011-01-26
-2802501 Beauraing Beauraing Beauraing,Biarin 50.11042 4.95554 P PPL BE WAL WNA 91 91013 8242 184 Europe/Brussels 2012-01-18
-2802510 Beaumont Beaumont Beaumont 50.23699 4.23926 P PPL BE WAL WHT 56 56005 6645 222 Europe/Brussels 2011-09-07
-2802583 Bastogne Bastogne Baaschtnech,Bastenaken,Bastogne,Bastona,Bastoña 50.00347 5.71844 P PPL BE WAL WLX 82 82003 14395 502 Europe/Brussels 2012-01-18
-2802606 Bassenge Bassenge Bassange,Bassenge,Bitsingen 50.75883 5.60989 P PPL BE WAL WLG 62 62011 8151 75 Europe/Brussels 2011-03-21
-2802610 Basse Lasne Basse Lasne 50.69503 4.49218 P PPL BE WAL WHT 13861 65 Europe/Brussels 2011-02-07
-2802743 Balen Balen Baelen,Balen,Balen-sur-Nethe 51.16837 5.17027 P PPL BE VLG VAN 13 13003 19978 34 Europe/Brussels 2011-02-10
-2802787 Baelen Baelen Baelen 50.63131 5.97433 P PPL BE WAL WLG 63 63004 3928 257 Europe/Brussels 2011-03-23
-2802816 Baarle-Hertog Baarle-Hertog Baarle-Hertog,Baerle-Duc,バールレ・ヘルトフ 51.40504 4.89226 P PPL BE VLG VAN 13 13002 2305 24 Europe/Brussels 2011-02-08
-2802837 Aywaille Aywaille Aywaille 50.47411 5.67684 P PPL BE WAL WLG 62 62009 10636 124 Europe/Brussels 2011-03-25
-2802849 Awans Awans Awans 50.66774 5.46329 P PPL BE WAL WLG 62 62006 8612 152 Europe/Brussels 2011-03-15
-2802871 Avelgem Avelgem Aovelhem,Avelgem,Avelghem 50.77618 3.44502 P PPL BE VLG VWV 34 34003 9106 17 Europe/Brussels 2012-01-18
-2802985 Aubel Aubel Aubel 50.70189 5.85812 P PPL BE WAL WLG 63 63003 4119 226 Europe/Brussels 2011-03-24
-2802990 Aubange Aubange Aubange 49.56652 5.80492 P PPL BE WAL WLX 81 81004 14932 278 Europe/Brussels 2012-01-18
-2802996 Attert Attert Attert 49.75035 5.78634 P PPL BE WAL WLX 81 81003 4491 298 Europe/Brussels 2012-01-18
-2803010 Ath Ath Aat,Ate,Ath 50.62937 3.77801 P PPL BE WAL WHT 51 51004 26681 32 Europe/Brussels 2009-01-18
-2803018 Assesse Assesse Assesse 50.36934 5.02204 P PPL BE WAL WNA 92 92006 6279 247 Europe/Brussels 2011-04-05
-2803026 Assenede Assenede Assenede 51.22598 3.75085 P PPL BE VLG VOV 43 43002 13495 3 Europe/Brussels 2012-01-18
-2803033 Asse Asse Assche,Asse,Asso,Ассо 50.91011 4.19836 P PPL BE VLG VBR 23 23002 28985 81 Europe/Brussels 2012-01-18
-2803053 As As As,Asch 51.00755 5.58453 P PPL BE VLG VLI 71 71002 7250 81 Europe/Brussels 2012-01-18
-2803073 Arlon Arlon Aarle,Aarlen,Arel,Arlon,aruron,Årlon,Αρλόν,Арлон,アルロン 49.68333 5.81667 P PPL BE WAL WLX 81 81001 26179 421 Europe/Brussels 2008-06-16
-2803083 Arendonk Arendonk Arendonck,Arendonk 51.32267 5.08289 P PPL BE VLG VAN 13 13001 12247 25 Europe/Brussels 2011-02-08
-2803091 Ardooie Ardooie Ardooie,Ardoye 50.9757 3.19736 P PPL BE VLG VWV 37 37020 9161 21 Europe/Brussels 2012-01-18
-2803130 Anzegem Anzegem Anseghem,Anzegem,Anzehem 50.837 3.47786 P PPL BE VLG VWV 34 34002 13920 51 Europe/Brussels 2012-01-18
-2803138 Antwerpen Antwerpen Amberes,Antuerpen - Antwerpen,Antuerpia,Antuérpia,Antverpen,Antverpenas,Antverpene,Antverpeno,Antverpia,Antverpy,Antwerp,Antwerp'n,Antwerpe,Antwerpen,Antwerpia,Antwerpium,Anvers,Anversa,Kota Antwerpen,an te wei pu,anteubeleupeon,antou~erupen,antowapu,Антверпен,אנטוורפן,アントウェルペン,アントワープ,安特卫普,안트베르펀 51.21989 4.40346 P PPL BE VLG VAN 11 11002 459805 10 Europe/Brussels 2011-02-07
-2803144 Antoing Antoing Antoing 50.56765 3.4492 P PPL BE WAL WHT 57 57003 7507 31 Europe/Brussels 2012-01-18
-2803148 Anthisnes Anthisnes Anthisnes 50.48323 5.519 P PPL BE WAL WLG 61 61079 4116 275 Europe/Brussels 2011-03-15
-2803160 Ans Ans Ans,Anse 50.6623 5.52029 P PPL BE WAL WLG 62 62003 27297 181 Europe/Brussels 2011-03-14
-2803174 Anhée Anhee Anhee,Anhee sur Meuse,Anheye,Anhée,Anhée sur Meuse,Anhêye 50.31039 4.87827 P PPL BE WAL WNA 91 91005 7125 91 Europe/Brussels 2009-05-04
-2803199 Anderlues Anderlues Anderlues 50.40704 4.27136 P PPL BE WAL WHT 56 56001 11597 181 Europe/Brussels 2011-07-22
-2803204 Andenne Andenne Anden,Andene,Andenne,Анден 50.48941 5.09513 P PPL BE WAL WNA 92 92003 24055 78 Europe/Brussels 2012-01-18
-2803242 Amblève Ambleve Ambleve,Amblève,Amel 50.35357 6.17002 P PPL BE WAL WLG 63 63001 5221 467 Europe/Brussels 2011-03-23
-2803246 Amay Amay Ama,Amay 50.54829 5.30974 P PPL BE WAL WLG 61 61003 13307 131 Europe/Brussels 2011-03-17
-2803252 Alveringem Alveringem Alveringem,Alveringhem,Oalveringem 51.01238 2.71117 P PPL BE VLG VWV 38 38002 4910 8 Europe/Brussels 2012-01-18
-2803285 Alken Alken Alken,Alkén,Alleke 50.87552 5.30558 P PPL BE VLG VLI 73 73001 10933 39 Europe/Brussels 2012-01-18
-2803323 Aiseau Aiseau Aiseau-Presles (Aiseau) 50.41158 4.58671 P PPL BE WAL WHT 52 52074 10906 117 Europe/Brussels 2011-08-01
-2803420 Aartselaar Aartselaar Aartselaar,Aertselaer 51.13412 4.38678 P PPL BE VLG VAN 11 11001 14193 12 Europe/Brussels 2012-01-18
-2803429 Aarschot Aarschot Aarschot,Aarshot,Aerschot,Ааршот 50.98715 4.83695 P PPL BE VLG VBR 24 24001 27656 14 Europe/Brussels 2012-01-18
-2803443 Aalter Aalter Aalter,Aeltre,Gemeente_Aalter 51.09017 3.44693 P PPL BE VLG VOV 44 44001 18802 17 Europe/Brussels 2012-01-18
-2803448 Aalst Aalst Aalst,Alost 50.93604 4.0355 P PPL BE VLG VOV 41 41002 77534 12 Europe/Brussels 2012-01-18
-6640087 Frasnes-lez-Anvaing Frasnes-lez-Anvaing 50.69211 3.63562 P PPLA4 BE WAL WHT 51 51065 0 53 Europe/Brussels 2011-07-31
-7648268 Chastre Chastre 50.60067 4.634 P PPLA4 BE WAL WBR 25 25117 0 135 Europe/Brussels 2011-07-31
-7648533 Lennik Lennik 50.80903 4.16219 P PPLA4 BE VLG VBR 23 23104 0 42 Europe/Brussels 2011-07-31
-7667505 Laakdal Laakdal 51.08067 5.00556 P PPLA4 BE VLG VAN 13 13053 0 18 Europe/Brussels 2011-07-31
-7668893 Scherpenheuvel-Zichem Scherpenheuvel-Zichem 51.01041 4.97492 P PPLA4 BE VLG VBR 24 24134 0 14 Europe/Brussels 2011-07-31
-2353197 Zorgho Zorgho Zorgo,Zorogo 12.24889 -0.61583 P PPLA2 BF 11 20 23892 312 Africa/Ouagadougou 2010-08-02
-2353257 Ziniaré Ziniare Zimare,Zimaré,Zinarie,Zinarié,Ziniare,Ziniaré 12.58222 -1.29833 P PPLA BF 11 68 12703 306 Africa/Ouagadougou 2012-01-18
-2353688 Yako Yako Jako,Yako,Яко 12.96667 -2.26667 P PPLA2 BF 10 34 22904 328 Africa/Ouagadougou 2010-08-02
-2354176 Tougan Tougan Tougan,Tugan 13.06667 -3.06667 P PPLA2 BF 01 73 17590 302 Africa/Ouagadougou 2010-08-02
-2354265 Toma Toma 12.76667 -2.88333 P PPLA2 BF 01 66 12401 298 Africa/Ouagadougou 2010-08-02
-2354349 Titao Titao 13.76667 -2.06667 P PPLA2 BF 10 62 19131 326 Africa/Ouagadougou 2010-08-02
-2354675 Tenkodogo Tenkodogo Tenkodogo 11.78 -0.36972 P PPLA BF 04 49 37658 304 Africa/Ouagadougou 2012-01-18
-2355404 Solenzo Solenzo Salanso,Solenso,Solenzo 12.18333 -4.08333 P PPLA2 BF 01 46 10385 319 Africa/Ouagadougou 2010-08-02
-2355548 Sindou Sindou Sindu 10.66667 -5.16667 P PPLA2 BF 02 61 3917 370 Africa/Ouagadougou 2010-08-02
-2355803 Sebba Sebba Sebba,Zebba 13.43641 0.53044 P PPLA2 BF 12 75 0 252 Africa/Ouagadougou 2010-08-02
-2355869 Sapouy Sapouy Sapoui,Sapui 11.55444 -1.77361 P PPLA2 BF 06 77 3837 336 Africa/Ouagadougou 2010-08-02
-2356228 Réo Reo Reo,Réo,Рео 12.31667 -2.46667 P PPLA2 BF 06 36 37535 299 Africa/Ouagadougou 2010-08-02
-2356454 Pô Po Po,Pô 11.16972 -1.145 P PPLA2 BF 07 65 17924 319 Africa/Ouagadougou 2010-08-02
-2356459 Pitmoaga Pitmoaga Pitmoaga 12.23972 -1.87667 P PPL BF 06 19 7991 340 Africa/Ouagadougou 2012-01-18
-2356738 Pama Pama Panea 11.24972 0.7075 P PPLA2 BF BF 08 57 8902 222 Africa/Ouagadougou 2010-08-02
-2357012 Ouargaye Ouargaye Ouargay,Ouargaye 11.50333 0.05722 P PPLA2 BF BF 04 59 10103 288 Africa/Ouagadougou 2010-08-02
-2357043 Ouahigouya Ouahigouya Ouahigouya,Waiguya 13.58278 -2.42158 P PPLA BF 10 76 61096 328 Africa/Ouagadougou 2010-08-10
-2357048 Ouagadougou Ouagadougou Ouagadouga,Ouagadougou,Ouankantounkou,Uagadougou,Uagadugu,Uagaduguo,Uagadugú,Vagadugu,Wagadugu,awagadwgw,wa jia du gu,wagado~ugu,wagadugu,waghadwghw,Ουαγκαντούγκου,Уагадугу,ואגאדוגו,اوآگادوگو,واغادوغو,ዋጋዱጉ,ワガドゥグー,瓦加杜古,와가두구 12.36423 -1.53834 P PPLC BF 03 53 1086505 299 Africa/Ouagadougou 2010-07-31
-2357163 Nouna Nouna Nouna 12.73333 -3.86667 P PPLA2 BF 01 58 29048 276 Africa/Ouagadougou 2010-08-02
-2358100 Manga Manga Manga 11.66361 -1.07306 P PPLA BF 07 44 15173 286 Africa/Ouagadougou 2012-02-02
-2358382 Léo Leo Leo,Lev,Léo,Лев 11.1 -2.1 P PPLA2 BF 06 72 26884 349 Africa/Ouagadougou 2010-08-02
-2358738 Koupéla Koupela Kupela 12.17944 -0.35167 P PPLA2 BF 04 28 32052 305 Africa/Ouagadougou 2010-08-02
-2358946 Koudougou Koudougou Kondougou,Koudougou,Kudugu,Кудугу 12.25 -2.36667 P PPLA BF 06 19 87347 298 Africa/Ouagadougou 2012-01-18
-2359142 Kongoussi Kongoussi Kongoussi 13.32583 -1.53472 P PPLA2 BF 05 15 26338 330 Africa/Ouagadougou 2010-08-02
-2359227 Kombissiri Kombissiri Kombisiri,Kombissiguiri,Kombissiri 12.06556 -1.3375 P PPLA2 BF 07 47 30137 308 Africa/Ouagadougou 2010-08-02
-2359317 Kokologo Kokologo Kokolgho,Kokologo 12.18972 -1.88556 P PPL BF 06 19 25958 322 Africa/Ouagadougou 2012-01-18
-2359608 Kaya Kaya Kaja,Kaya,Кая 13.09167 -1.08444 P PPLA BF 05 70 39229 341 Africa/Ouagadougou 2012-01-18
-2360073 Houndé Hounde Hounde,Houndé,Hunde 11.5 -3.51667 P PPLA2 BF 09 74 36593 349 Africa/Ouagadougou 2010-08-02
-2360238 Gourcy Gourcy Gourcy,Goursi,Gursi 13.21667 -2.35 P PPLA2 BF 10 78 16765 337 Africa/Ouagadougou 2010-08-02
-2360286 Goulouré Gouloure 12.23056 -1.92889 P PPL BF 06 19 6677 333 Africa/Ouagadougou 2010-07-31
-2360372 Gorom-Gorom Gorom-Gorom 14.44389 -0.23611 P PPLA2 BF 12 33 6691 275 Africa/Ouagadougou 2010-08-02
-2360541 Gayéri Gayeri Gayeri,Gayéri 12.64972 0.49306 P PPLA2 BF 08 56 1958 281 Africa/Ouagadougou 2010-08-02
-2360615 Garango Garango Garango 11.8 -0.55056 P PPL BF 04 49 29076 304 Africa/Ouagadougou 2012-01-18
-2360886 Fada N’Gourma Fada N'Gourma Fada N'Gourma,Fada N'gourma,Fada N’Gourma,Fada-Ngourma,Fada-n-Gurma 12.06222 0.35778 P PPLA BF 08 50 33910 300 Africa/Ouagadougou 2012-01-18
-2361082 Dori Dori Dori,Дори 14.0354 -0.0345 P PPLA BF 12 71 37806 282 Africa/Ouagadougou 2012-01-18
-2361177 Djibo Djibo Djibo,Dzhibo,Jibo,Джибо 14.10222 -1.63056 P PPLA2 BF 12 40 22223 305 Africa/Ouagadougou 2010-08-02
-2361342 Diébougou Diebougou Diebougou,Diebugu,Diébougou 10.96667 -3.25 P PPLA2 BF 13 48 12732 300 Africa/Ouagadougou 2010-08-02
-2361373 Diapaga Diapaga Diapaga,Диапага 12.07083 1.78889 P PPLA2 BF 08 42 26013 280 Africa/Ouagadougou 2010-08-02
-2361477 Dédougou Dedougou Dedougou,Dedugu,Dédougou 12.46667 -3.46667 P PPLA BF 01 63 45341 302 Africa/Ouagadougou 2012-01-18
-2361586 Dano Dano 11.15 -3.06667 P PPLA2 BF 13 52 11153 302 Africa/Ouagadougou 2010-08-02
-2361845 Boussé Bousse Busse 12.66056 -1.89222 P PPLA2 BF BF 11 60 15868 346 Africa/Ouagadougou 2010-08-02
-2361946 Boulsa Boulsa Boulsa,Boulssa,Bulsa 12.6675 -0.57583 P PPLA2 BF 05 64 17489 311 Africa/Ouagadougou 2010-08-02
-2362150 Boromo Boromo Borom,Boromo 11.75 -2.93333 P PPLA2 BF 01 45 13157 259 Africa/Ouagadougou 2010-08-02
-2362323 Bogandé Bogande Bogande,Bogandé 12.97139 -0.14361 P PPLA2 BF 08 21 9854 287 Africa/Ouagadougou 2010-08-02
-2362344 Bobo-Dioulasso Bobo-Dioulasso Bobo Dioulasso,Bobo-Dioulasso,Bobo-Diulasso,Bobodjulaso,ボボ・ディウラッソ 11.17715 -4.2979 P PPLA BF 09 51 360106 423 Africa/Ouagadougou 2010-08-10
-2362669 Batié Batie 9.88333 -2.91667 P PPLA2 BF 13 67 6483 307 Africa/Ouagadougou 2010-08-02
-2362909 Banfora Banfora Banfora,Banforu,Банфору 10.63333 -4.76667 P PPLA BF 02 55 60288 299 Africa/Ouagadougou 2012-01-18
-2577162 Gaoua Gaoua 10.29917 -3.25083 P PPLA BF 13 69 25104 329 Africa/Ouagadougou 2010-08-02
-2577164 Orodara Orodara Orodaro 10.94917 -4.93417 P PPLA2 BF 09 54 18632 578 Africa/Ouagadougou 2010-08-02
-725213 Beloslav Beloslav Belevo,Belewo,Beloslav,Beloslaw,Belovo,Bielevo,Bjelevo,Byelevo,Gebedze,Gebedzhe,Gebedže,Белослав 43.18333 27.7 P PPL BG 61 VAR04 7989 57 Europe/Sofia 2012-02-28
-725271 Zlatograd Zlatograd Dara-Dere,Daridere,Dară-Dere,Slatograd,Zlatograd,Zlatograde,Златоград 41.38333 25.1 P PPL BG 57 SML11 7331 480 Europe/Sofia 2012-02-28
-725283 Zlatitsa Zlatitsa Slatiza,Zlatica,Zlatitsa,Zlatitza,Zlatiza,Златица 42.71667 24.13333 P PPL BG 58 SFO47 5786 692 Europe/Sofia 2012-02-28
-725295 Zlataritsa Zlataritsa Slatariza,Zlatarica,Zlataritsa,Zlataritza,Златарица 43.05 25.9 P PPL BG 62 VTR14 2468 130 Europe/Sofia 2012-02-28
-725402 Zemen Zemen Belovo,Bjelovo,Byelovo,Semen,Zemen,Земен 42.47889 22.74917 P PPL BG 49 PER19 2107 600 Europe/Sofia 2012-02-28
-725404 Zelenikovo Zelenikovo Amzalare,Amzulare,Amzŭlare,Hamzalare,Khamzalare,Selenikowo,Zelenikovo,Зелениково 42.4 25.08333 P PPLA3 BG BG 51 PDV07 PDV07-05 0 305 Europe/Sofia 2011-07-31
-725435 Zavet Zavet Sawet,Zavet,Zavjet,Zavot,Zavut,Zavyet,Завет 43.76667 26.66667 P PPL BG 52 RAZ11 3589 259 Europe/Sofia 2012-01-18
-725578 Yambol Yambol Iambol,Jambol,Jamboli,Yambol,Yampolis,Ямбол 42.48333 26.5 P PPLA BG 65 JAM26 80116 132 Europe/Sofia 2012-01-18
-725586 Yakoruda Yakoruda Jakoruda,Johurut,Jokoruda,Yakoruda,Yokoruda,Якоруда 42.02528 23.68417 P PPL BG 38 BLG53 6008 1028 Europe/Sofia 2012-02-28
-725588 Yakimovo Yakimovo Jakimovo,Kotenovtsi,Progorelets,Voynitsi,Yakimovo,Якимово 43.64306 23.36778 P PPL BG BG 47 MON38 2665 102 Europe/Sofia 2012-01-18
-725611 Yablanitsa Yablanitsa Ablanitsa,Iablanica,Jablanica,Jablaniza,Jablonica,Yablanitsa,Ябланица 43.03139 24.11278 P PPL BG BG 46 LOV38 3237 487 Europe/Sofia 2012-01-18
-725623 Vŭrshets Vurshets Varshets,Varshetz,Vershets,Vresec,Vrešec,Vrsec,Vrshets,Vršec,Vursec,Vurshec,Vurshets,Vuršec,Vărshets,Vŭrshets,Warschez,Wărschez,Вършец 43.19528 23.28611 P PPL BG BG 47 MON12 7512 391 Europe/Sofia 2012-01-18
-725649 Vŭrbitsa Vurbitsa Varbitsa,Virbica,Vrbica,Vrbitsa,Vurbica,Vurbitsa,Vărbitsa,Vŭrbitsa,Warbiza,Wărbiza,Върбица 43 26.63333 P PPL BG BG 54 SHU10 3803 279 Europe/Sofia 2012-01-18
-725679 Vŭlchidol Vulchidol Kurt Dere,Vulchidol,Vŭlchidol,Waltschi Dol,Вълчидол 43.4 27.55 P PPL BG BG 61 3697 265 Europe/Sofia 2012-01-18
-725683 Vŭlchedrŭm Vulchedrum Valchedarma,Valtchedram,Valtchidarma,Vlcdrma,Vlcedrama,Vlcedrma,Vlchedrma,Vlcidrama,Vlčdrma,Vlčedrama,Vlčedrma,Vlčidrama,Vulcedurma,Vulchedrum,Vulchedruma,Vulchedurma,Vălchedărma,Vŭlchedrŭm,Vŭlchedrŭma,Vŭlchedŭrma,Vŭlčedŭrma,Waltschedrama,Waltschedrăma,Вълчедръм 43.69639 23.44472 P PPL BG BG 47 MON11 5207 77 Europe/Sofia 2012-01-18
-725712 Vratsa Vratsa Vraca,Vratca,Vratsa,Vrattsa,Vratza,Wraza,Враца 43.21 23.5625 P PPLA BG 64 VRC10 64941 352 Europe/Sofia 2012-01-18
-725816 Sveti Vlas Sveti Vlas Manasturkioy,Manastŭrkioy,Monasturkioy,Monastŭrkioy,Saint Vlas,Sveti Vlas,Sveti-Vlas,Sweti Wlas,Vlas,Влас,Свети-Влас 42.7136 27.75867 P PPL BG BG 39 BGS15 BGS15-02 3875 50 47 Europe/Sofia 2010-03-07
-725905 Vidin Vidin Vidin,Vidine,Widin,wydyn,Видин,ویدین 43.99 22.8725 P PPLA BG 63 VID09 54409 37 Europe/Sofia 2012-01-18
-725924 Vetrino Vetrino Asya-Tepe,Jasi Tepe,Vetrino,Vyetreno,Vyetrino,Wetrino,Yasa-Tepe,Yase-Tepe,Yasu-Tepe,Yasă-Tepe,Yasŭ-Tepe,Ветрино 43.31667 27.43333 P PPL BG BG 61 VAR08 1368 211 Europe/Sofia 2012-01-18
-725935 Vetovo Vetovo Vetova,Vetovo,Vjetevo,Vyetovo,Wetowo,Ветово 43.7 26.26667 P PPL BG 53 RSE05 5175 194 Europe/Sofia 2012-02-28
-725967 Venets Venets K'okledzha,K'oklyudzha,K'okyudzha,Kiokhudza,Kiokhudža,Kokedzha,K’okledzha,K’oklyudzha,K’okyudzha,Venec,Venets,Vyenets,Wenez,Венец 43.55 26.93333 P PPL BG BG 54 SHU07 1450 349 Europe/Sofia 2012-01-18
-725988 Velingrad Velingrad Velingrad,Велинград 42.02724 23.99569 P PPL BG 48 PAZ08 24036 744 Europe/Sofia 2010-05-28
-725993 Veliko Tŭrnovo Veliko Turnovo Tarnovo,Tarnowo,Ternovo,Tirnovo,Trnova,Trnovo,Turnovo,Tărnovo,Tărnowo,Tŭrnovo,Veliko T"rnovo,Veliko Tarnovo,Veliko Tărnovo,Weliko Tarnowo,Weliko Tyrnowo,vu~erikotarunovu~o,Велико Търново,ヴェリコタルノヴォ 43.08124 25.62904 P PPLA BG 62 VTR04 66217 207 Europe/Sofia 2007-07-01
-726050 Varna Varna Barna,Odessos,Odessus,Stalin,Varna,Warna,farna,varna,vu~aruna,wa er na,wrnh,Βάρνα,Варна,ורנה,فارنا,ვარნა,ヴァルナ,瓦爾納 43.21667 27.91667 P PPLA BG 61 VAR06 312770 54 Europe/Sofia 2012-01-18
-726114 Ugŭrchin Ugurchin Ugarchin,Ugarcin,Ugartschin,Ugarčin,Ugirkin,Ugrchin,Ugrcin,Ugrčin,Ugurchin,Ugurcin,Ugürčin,Ugărchin,Ugărtschin,Ugŭrchin,Угърчин 43.1 24.41667 P PPL BG 46 LOV36 2965 267 Europe/Sofia 2012-02-28
-726130 Tvŭrditsa Tvurditsa Tvardica,Tvarditsa,Tvarditza,Tverditsa,Tvrdica,Tvrditsa,Tvurdica,Tvurditsa,Tvŭrdica,Tvŭrditsa,Twardiza,Twărdiza,Твърдица 42.7 25.9 P PPL BG BG 56 SLV24 6519 350 Europe/Sofia 2012-01-18
-726141 Tutrakan Tutrakan Turtucaia,Turtukai,Tutrakan,Tutrakhan,Тутракан 44.05 26.61667 P PPL BG 55 SLS34 10022 76 Europe/Sofia 2012-01-18
-726174 Tŭrgovishte Turgovishte Eski Djoumaia,Eski Djoumaïa,Eski Dschumaja,Eski Dzhumaya,Eski Dzuma,Eski Dzumaja,Eski Dzumaya,Eski Džuma,Eski Džumaja,Targovishte,Targowischte,Trgovishte,Turgovishhe,Turgovishte,Turgoviste,Tărgowischte,Tŭrgovishte,Tŭrgovište,Търговище 43.25917 26.58917 P PPLA BG 60 TGV35 37774 171 Europe/Sofia 2012-01-18
-726245 Tsenovo Tsenovo Causevo,Causkioj,Causovo,Cauševo,Cauškiöj,Cenevo,Cenovo,Chaushevo,Chaushovo,Tenovo,Tsenovo,Zenowo,Čaušovo,Čenevo,Ценово 43.53333 25.65 P PPL BG BG 53 RSE37 2229 58 Europe/Sofia 2012-01-18
-726287 Tryavna Tryavna Trevna,Trewna,Trjavna,Tryavna,Tryevna,Trěvna,Трявна 42.86667 25.5 P PPL BG 41 GAB35 13818 488 Europe/Sofia 2012-01-18
-726307 Trŭn Trun Tran,Tren,Trin,Trn,Trun,Trăn,Trŭn,Трън 42.83528 22.65167 P PPL BG BG 49 PER51 3102 697 Europe/Sofia 2012-01-18
-726320 Troyan Troyan Troian,Trojan,Troïan,Троян 42.89427 24.71589 P PPL BG 46 LOV34 21162 389 Europe/Sofia 2007-07-10
-726384 Topolovgrad Topolovgrad Kavakli,Kavaklii,Kavakly,Topolovgrad,Topolovgrade,Topolowgrad,Тополовград 42.08333 26.33333 P PPL BG 43 HKV32 6464 328 Europe/Sofia 2012-02-28
-726409 Tonchevtsi Tonchevtsi Tonchevci,Tonchovtsi,Тончевци 42.9 25.31667 P PPLX BG 41 59834 450 Europe/Sofia 2007-04-05
-726418 Dobrich Dobrich Bazargic,Dobric,Dobrich,Dobricz,Dobritch,Dobritj,Dobrits,Dobritsch,Dobritsj,Dobritš,Dobrič,Hacioglu Pazarcik,Hacıoğlu Pazarcık,Hadzi-Oghlu-Pazardzik,Hadži-Oghlu-Pazardžik,Khadzhioglu Bazardzhik,Khadzhioglu Pazardzhik,Tolbuhin,Tolbukhin,dobeulichi,Добрич,도브리치 43.56667 27.83333 P PPLA BG 40 DOB28 94831 214 Europe/Sofia 2012-01-18
-726434 Tochilari Tochilari Musakhchilar,Musatchilar,Tochilari,Totschilari,Точилари 43.85 26.46667 P PPLA3 BG BG 52 RAZ16 RAZ16-14 0 147 Europe/Sofia 2011-07-31
-726464 Teteven Teteven Teteven,Tetevene,Tetewene,Тетевен 42.91667 24.26667 P PPL BG 46 LOV33 10790 419 Europe/Sofia 2012-01-18
-726474 Tervel Tervel Curt Bunar,Curtburnar,Dshami Machala,Kurt Bunar,Tervel,Тервел 43.75 27.4 P PPL BG 40 DOB27 6808 229 Europe/Sofia 2012-02-28
-726489 Batanovtsi Batanovtsi Batanovci,Batanovitsi,Batanovtsi,Batanovtzi,Batanowzi,Temelkovo,Батановци 42.59972 22.95056 P PPL BG 49 PER32 PER32-18 2519 660 Europe/Sofia 2012-01-18
-726524 Svoge Svoge Svogbe,Svoge,Svoghe,Svoghé,Svogja,Svogje,Swoge,Своге 42.96667 23.35 P PPL BG 58 SFO43 8964 455 Europe/Sofia 2012-02-28
-726534 Svishtov Svishtov Novae,Novensis Moesia Civitas,Sistov,Sistova,Staklen,Steklen,Sveyestov,Svisclov,Svishhov,Svishtov,Svislova,Svistov,Svišlova,Svištov,Swischtow,Свищов 43.62306 25.35389 P PPL BG 62 VTR28 32256 15 Europe/Sofia 2012-01-18
-726546 Svilengrad Svilengrad Mustafa-Pasha,Mustafapasa,Mustafapaşa,Slivengrad,Svilen,Svilengrad,Svilengrade,Swilengrad,Свиленград 41.76667 26.2 P PPL BG 43 HKV28 19279 58 Europe/Sofia 2012-01-18
-726591 Suvorovo Suvorovo Kozludza,Kozludzha,Kozludža,Novgradets,Nowgradez,Suvorovo,qwzlwjh,qwzlyjh,Суворово,قوزلوجه,قوزلیجه 43.33333 27.6 P PPL BG 61 VAR26 4563 186 Europe/Sofia 2012-02-28
-726629 Sungurlare Sungurlare Sungulare,Sungulari,Sungurlar,Sungurlare,Sungurlari,Сунгурларе 42.76667 26.78333 P PPL BG 39 BGS23 3834 206 Europe/Sofia 2012-02-28
-726643 Sukhindol Sukhindol Souhyndol,Suchindol,Suhindol,Sukhindol,Сухиндол 43.19167 25.18111 P PPL BG 62 VTR32 2364 269 Europe/Sofia 2012-02-28
-726657 Sŭedinenie Suedinenie Golemo Konare,Goljamo Konare,Goljemo Konare,Goljemo Konari,Golyamo Konare,Golyemo-Konare,Saedinenie,Suedinenie,Sŭedinenie,Съединение 42.26667 24.55 P PPL BG BG 51 PDV33 6427 203 Europe/Sofia 2012-01-18
-726693 Strumyani Strumyani Strumjani,Strumyani,Струмяни 41.63333 23.2 P PPL BG 38 BLG49 1058 130 Europe/Sofia 2012-01-18
-726723 Strelcha Strelcha Strelca,Strelcha,Streltscha,Strelča,Strjelca,Strjelča,Stryelcha,Стрелча 42.5 24.31667 P PPL BG 48 PAZ32 4545 511 Europe/Sofia 2012-02-28
-726727 Strazhitsa Strazhitsa Kada K'oy,Kada K’oy,Kadikioy,Strajitsa,Strajitza,Strashiza,Strazhica,Strazhitsa,Strazica,Stražica,Стражица 43.23333 25.96667 P PPL BG BG 62 VTR31 5728 107 Europe/Sofia 2012-01-18
-726748 Straldzha Straldzha Straldsha,Straldza,Straldzha,Straldža,Стралджа 42.6 26.68333 P PPL BG 65 JAM22 5817 149 Europe/Sofia 2012-02-28
-726848 Stara Zagora Stara Zagora Eski Zagra,Eski Zağra,Stara Sagora,Stara Zagora,Stara-Zagora,Стара Загора,Стара-Загора 42.43278 25.64194 P PPLA BG 59 SZR31 143431 205 Europe/Sofia 2012-01-18
-726863 Stara Kresna Stara Kresna Kresna,Stara Kresna,Стара Кресна 41.8 23.18333 P PPL BG 38 BLG28 3586 561 Europe/Sofia 2012-01-18
-726872 Dupnitsa Dupnitsa Doupnitza,Dubnica,Dupnica,Dupnitsa,Dupnitza,Dupniza,Marek,Stanke Dimitrov,Stanke Dimitrovo,Дупница 42.26667 23.11667 P PPL BG 45 KNL48 34764 512 Europe/Sofia 2012-01-18
-726890 Stamboliyski Stamboliyski Gara Krichim,Krichim,Novi Krichim,Stambolijski,Stamboliyski,Stamoboliyski,Стамболийски 42.13333 24.53333 P PPL BG 51 12070 188 Europe/Sofia 2012-01-18
-726963 Sozopol Sozopol Apollonia,Sizebolu,Sizopol,Sosopol,Sozopol,Sozopol',Sozopole,Sozopolis,Σωζόπολη,Созопол,Созополь 42.41667 27.7 P PPL BG 39 BGS21 4500 9 Europe/Sofia 2012-02-28
-727011 Sofia Sofia SOF,Safia,Serdica,Sofia,Sofie,Sofija,Sofio,Sofiya,Sofja,Sofya,Sofía,Sophia,Sredets,Szofia,Szófia,Sòfia,Sófia,Ulpia Serdica,sofia,sopia,suo fei ya,swfya,swpyh,Σόφια,Сафія,София,Софија,Софія,סופיה,سوفىيە,صوفيا,სოფია,ሶፊያ,ソフィア,索菲亞,소피아 42.69751 23.32415 P PPLC BG 42 SOF46 1152556 562 Europe/Sofia 2011-06-16
-727025 Smyadovo Smyadovo Smedovo,Smedowo,Smjadovo,Smjedovo,Smyadovo,Smyedovo,Смядово 43.06667 27.01667 P PPL BG 54 SHU25 4231 86 Europe/Sofia 2012-02-28
-727030 Smolyan Smolyan Paschmaklii,Pashmakla,Pashmakli,Pashmaklă,Pasmakli,Pasmakly,Pašmakli,Smolian,Smoljan,Smolyan,Смолян 41.58528 24.69194 P PPLA BG 57 SML31 32069 1129 Europe/Sofia 2012-01-18
-727067 Slivo Pole Slivo Pole Kashikler,Slivo Pole,Sliwo Pole,Сливо Поле 43.95 26.2 P PPL BG 53 RSE33 3252 33 Europe/Sofia 2012-02-28
-727069 Slivnitsa Slivnitsa Slivica,Slivnica,Slivnitsa,Slivnitza,Sliwniza,Сливница 42.85 23.03333 P PPL BG 58 SFO45 7545 591 Europe/Sofia 2012-02-28
-727079 Sliven Sliven Islimiye,Islimje,Sliven,Slivno,Sliwen,aslmyh,Сливен,اسلمیه 42.68583 26.32917 P PPLA BG 56 SLV20 96368 271 Europe/Sofia 2012-01-18
-727087 Slavyanovo Slavyanovo Slavianovo,Slavjanovo,Slavyanovo,Slawjanowo,Trastenik,Trstenik,Trustenik,Trăstenik,Trŭstenik,Turska Trestenik,Turski Trustenik,Turski Trŭstenik,Славяново 43.46667 24.86667 P PPL BG 50 PVN24 PVN24-20 4793 135 Europe/Sofia 2012-01-18
-727175 Sitovo Sitovo Doimuslar,Doimuşlar,Donnuslar,Donnuşlar,Doymushlar,Sitovo,Sitowo,Ситово 44.01667 27.01667 P PPL BG BG 55 SLS32 1140 111 Europe/Sofia 2012-01-18
-727212 Simitli Simitli Izvoritye,Izworit,Simeti,Simetli,Simetlu,Simetlü,Simitle,Simitli,Simitlii,Simitly Gare,Симитли 41.88333 23.11667 P PPL BG 38 BLG44 6729 280 Europe/Sofia 2012-02-28
-727217 Simeonovgrad Simeonovgrad Maritsa,Seimen,Sejmen,Semenli,Seymen,Simeonovgrad,Симеоновград 42.03333 25.83333 P PPL BG 43 HKV29 7388 104 Europe/Sofia 2012-02-28
-727221 Silistra Silistra Silistra,Силистра 44.11667 27.26667 P PPLA BG 55 SLS31 39715 27 Europe/Sofia 2012-01-18
-727233 Shumen Shumen Choumen,Choumèn,Kolarovgrad,Schumen,Shoumen,Shumen,Shumla,Sjumen,Sumen,Sumla,Sumnu,shumen,Şumnu,Šumen,Šumla,Шумен 43.27064 26.92286 P PPLA BG 54 SHU30 87283 237 Europe/Sofia 2008-10-21
-727291 Shipka Shipka Schipka,Shipka,Sipka,Šipka,Шипка 42.71667 25.33333 P PPL BG 59 SZR12 SZR12-18 1604 692 Europe/Sofia 2012-01-18
-727329 Shabla Shabla Sabla,Shabla,Şabla,Шабла 43.53333 28.53333 P PPL BG 40 DOB29 3901 23 Europe/Sofia 2012-02-28
-727337 Sevlievo Sevlievo Savlievo,Seljvi,Selvi,Sevelijevo,Sevlievo,Sevlijevo,Sewliewo,Севлиево 43.02583 25.11361 P PPL BG 41 GAB29 24582 195 Europe/Sofia 2012-01-18
-727354 Septemvri Septemvri Sarambei,Sarambey,Saran'ovo,Saran-Bey,Saranevo,Saraniowo,Saranjevo,Saranyovo,Saranëvo,Saran’ovo,Septemvri,Septemvrijci,Септември,Септемврийци 42.21667 24.1 P PPL BG 48 PAZ29 8745 252 Europe/Sofia 2012-02-28
-727358 Senovo Senovo Senevo,Senovo,Senowo,Syenovo,Сеново 43.65 26.36667 P PPL BG 53 RSE05 RSE05-08 1459 210 Europe/Sofia 2012-01-18
-727423 Satovcha Satovcha Satovca,Satovcha,Satovdza,Satovdža,Satovča,Satowtscha,Сатовча 41.61667 23.98333 P PPL BG BG 38 BLG42 2382 994 Europe/Sofia 2012-01-18
-727441 Sapareva Banya Sapareva Banya Gorna Banja,Gorna-Bania,Gorna-Banya,Sapareva Banja,Sapareva Banya,Сапарева Баня 42.28333 23.26667 P PPL BG BG 45 4610 855 Europe/Sofia 2012-01-18
-727447 Sandanski Sandanski Sandanski,Sveti Vrac,Sveti Vrach,Sveti Vrač,Sveti-Vratch,Svéti-Vratch,Sweti Wratsch,Xanne Sandanski,Yane Sandanski,Сандански,Свети Врач 41.56667 23.28333 P PPL BG 38 BLG40 26459 246 Europe/Sofia 2012-01-18
-727455 Samuil Samuil Ashiklar,Samuil,Самуил 43.51667 26.75 P PPL BG BG 52 RAZ29 2283 432 Europe/Sofia 2012-01-18
-727462 Samokov Samokov Samakov,Samokov,Samokow,Samovkov,Самоков 42.33333 23.55 P PPL BG 58 SFO39 26765 949 Europe/Sofia 2012-01-18
-727479 Sadovo Sadovo Cheshnegir,Cheshnigurovo,Cheshnigŭrovo,Sadova,Sadovo,Sadowo,Садово 42.13333 24.93333 P PPL BG 51 PDV28 2656 154 Europe/Sofia 2012-02-28
-727495 Ruzhintsi Ruzhintsi Rujintsi,Rushinzi,Ruzhentsi,Ruzhinci,Ruzhintsi,Ruzinci,Ružinci,Ружинци 43.62333 22.83083 P PPL BG BG 63 VID33 1269 192 Europe/Sofia 2012-01-18
-727523 Ruse Ruse Roese,Rousse,Roussé,Roustchouk,Ruschuk,Ruschuq,Rusciuk,Rusclink,Ruscuk,Ruse,Rushchuk,Rushtuk,Russe,Rustschuk,Rusçuk,Ruzo,Ruščuk,Saray-Makhle,Sexaginta Prista,lu sai,Русе,鲁塞 43.85639 25.97083 P PPLA BG 53 RSE27 156238 49 Europe/Sofia 2012-01-18
-727547 Ruen Ruen Ruen,Ulanli,Ulanlii,Ulanliy,Руен 42.8 27.28333 P PPL BG BG 39 BGS18 2339 205 Europe/Sofia 2012-01-18
-727552 Rudozem Rudozem Chervenkovgrad,Palas,Palaz,Roodozem,Rudosem,Rudozem,Рудозем 41.48333 24.85 P PPL BG 57 3783 700 Europe/Sofia 2012-02-28
-727598 Roman Roman Roman,Роман 43.15 23.91667 P PPL BG 64 VRC32 3571 221 Europe/Sofia 2012-02-28
-727628 Rila Rila Rila,Rila Selo,Riloselo,Рила 42.13333 23.13333 P PPL BG 45 KNL38 3002 621 Europe/Sofia 2012-02-28
-727689 Razlog Razlog Mahomia,Mehomia,Mekhomiya,Pazlog,Raslog,Raslug,Razlog,Разлог 41.8863 23.46714 P PPL BG 38 BLG37 12486 829 Europe/Sofia 2008-04-07
-727696 Razgrad Razgrad Rasgrad,Razgrad,Разград 43.53333 26.51667 P PPLA BG 52 RAZ26 38285 197 Europe/Sofia 2012-01-18
-727791 Rakovski Rakovski General Niklaevo,General Nikolaevo,General Nikolaewo,Kalich,Kaliclii,Kaličh,Kaličlii,Kaluchlii,Kaluchliy,Kalŭchlii,Kalŭchliy,Rakovski,Раковски 42.3 24.96667 P PPL BG 51 PDV25 15782 193 Europe/Sofia 2012-01-18
-727801 Rakitovo Rakitovo Rakitovo,Rakitowo,Ракитово 41.98333 24.08333 P PPL BG 48 PAZ24 8376 849 Europe/Sofia 2012-02-28
-727832 Radomir Radomir Radomir,Радомир 42.54444 22.95778 P PPL BG 49 PER36 14755 649 Europe/Sofia 2012-01-18
-727838 Radnevo Radnevo Radne Machale,Radne Makhle,Radne-Makhala,Radnevo,Radnewo,Раднево 42.3 25.93333 P PPL BG 59 SZR27 14667 116 Europe/Sofia 2012-01-18
-727884 Pŭrvomaytsi Purvomaytsi Purvomajci,Purvomaytsi,Pŭrvomaytsi,Sergjuvec,Temnisko,srghwfchh,Първомайци,Сергювец,Темниско,سرغوفچه 43.15 25.65 P PPL BG 62 VTR06 VTR06-10 2867 91 94 Europe/Sofia 2012-01-18
-727921 Provadiya Provadiya Pravodi,Provadia,Provadidija,Provadija,Provadiya,Prowadija,Провадия 43.18333 27.43333 P PPL BG 61 VAR24 13755 173 Europe/Sofia 2012-01-18
-727964 Primorsko Primorsko Kjuprija,Kyupriya,Primorsko,Приморско 42.26667 27.76667 P PPL BG 39 BGS27 2798 0 Europe/Sofia 2012-02-28
-727987 Veliki Preslav Veliki Preslav Eski Stambid,Eski Stambolluk,Eski-Stambul,Preslav,Preslaw,Prieslav,Prjeslav,Veliki Preslav,Weliki Preslaw,Wielki Preslaw,Wielki Presław,Велики Преслав 43.16667 26.81667 P PPL BG 54 SHU23 9425 146 Europe/Sofia 2012-01-18
-728011 Pravets Pravets Pravec,Pravets,Pravetz,Prawez,Правец 42.88333 23.91667 P PPL BG 58 SFO34 4400 519 Europe/Sofia 2012-02-28
-728056 Pordim Pordim Pordim,Pordime,Porodim,Пордим 43.38333 24.85 P PPL BG 50 PVN27 2230 182 Europe/Sofia 2012-02-28
-728075 Popovo Popovo Popkioj,Popkioy,Popkiöj,Popovo,Попово 43.35 26.23333 P PPL BG 60 TGV24 16571 190 Europe/Sofia 2012-01-18
-728108 Pomorie Pomorie Ahiolo,Akhillo,Akhilu,Akhiolo,Anchialo,Anchialos,Anchijelo,Anchilejo,Anhialo,Anhiolo,Ankhelu,Ankhelú,Ankhialo,Ankhiolo,Pomorie,Pomoriye,Pomorye,Поморие 42.55882 27.64393 P PPL BG 39 BGS17 13714 2 Europe/Sofia 2012-01-18
-728124 Polski Trŭmbesh Polski Trumbesh Polsk Trumbesh,Polsk Trŭmbesh,Polski Trambech,Polski Trambesh,Polski Trembes,Polski Trembeš,Polski Trumbesh,Polski Trŭmbesh,Polski-Trambesch,Polski-Trembesh,Polski-Trămbesch,Trembesh,Полски Тръмбеш 43.38361 25.64972 P PPL BG BG 62 VTR26 5663 39 Europe/Sofia 2012-01-18
-728193 Plovdiv Plovdiv Eumolpias,Filiba,Filibe,Filipopol,Filippopol,Filippopoli,Flavia,Julia,Philippopel,Philippopoli,Philippopolis,Philippoupole,Pinople,Plodin,Ploudin,Plovdin,Plovdiv,Plovdiva,Plowdiw,Plóvdiv,Poulpoudeva,Płowdiw,Sinople,Trimontium,Ulpia,Vinipoppolis,blwfdyf,pu luo fu di fu,purovudifu,Φιλιππούπολη,Пловдив,بلوفديف,პლოვდივი,プロヴディフ,普罗夫迪夫 42.15 24.75 P PPLA BG 51 PDV22 340494 169 Europe/Sofia 2012-01-18
-728199 Pliska Pliska Aboba,Ak Baba,Pliska,Pliskov,Pliskow,Плиска 43.36667 27.11667 P PPL BG 54 SHU19 SHU19-09 1263 160 Europe/Sofia 2012-01-18
-728203 Pleven Pleven Pleven,Plevna,Plevne,Plewen,Plyeven,purevu~en,Плевен,プレヴェン 43.41667 24.61667 P PPLA BG 50 PVN24 118675 97 Europe/Sofia 2012-01-18
-728251 Pirdop Pirdop Pirdop,Пирдоп 42.7 24.18333 P PPL BG 58 SFO55 8136 675 Europe/Sofia 2012-02-28
-728288 Petrich Petrich Petric,Petrich,Petritch,Petritsch,Petrič,Петрич 41.4 23.21667 P PPL BG 38 BLG33 30308 158 Europe/Sofia 2012-01-18
-728317 Peshtera Peshtera Momarsko,Pechtera,Pescera,Peschtera,Peshchera,Peshhera,Peshtera,Pestera,Peštera,Peščera,Пещера 42.03333 24.3 P PPL BG 48 PAZ21 18676 440 Europe/Sofia 2012-01-18
-728321 Perushtitsa Perushtitsa Perishchitsa,Peruschtiza,Perushchitsa,Perushhica,Perushtitsa,Perustica,Peruštica,Перущица 42.05 24.55 P PPL BG 51 PDV40 5350 407 Europe/Sofia 2012-02-28
-728330 Pernik Pernik Dimitrovo,Pernik,Перник 42.6 23.03333 P PPLA BG 49 PER32 82467 712 Europe/Sofia 2012-01-18
-728348 Iskŭr Iskur Iskur,Iskŭr,Machalata,Machlata,Machluta,Machlüta,Mahalata,Mahlata,Makhalata,Makhlata,Pelovo,Искър 43.45 24.26667 P PPL BG BG 50 4329 110 Europe/Sofia 2012-01-18
-728378 Pazardzhik Pazardzhik Pasardschik,Pasardshik,Pazardjik,Pazardzhik,Pazardzik,Pazardzjik,Pazardżik,Pazardžik,Tatar Bazardzik,Tatar Bazardžik,Tatar Pazardjik,Tatar Pazardzhik,Tatar Pazardzik,Tatar Pazardžik,Tatar-Bazardzhik,Пазарджик 42.2 24.33333 P PPLA BG 48 PAZ19 75977 213 Europe/Sofia 2007-02-18
-728385 Pavlikeni Pavlikeni Pavlikem,Pavlikene,Pavlikeni,Pawlikeni,Павликени 43.24278 25.32194 P PPL BG 62 VTR22 12214 157 Europe/Sofia 2012-01-18
-728389 Pavel Banya Pavel Banya Banya,Ludzha Ali,Ludzha K'oy,Lŭdzha Ali,Lŭdzha K’oy,Pavel,Pavel Banja,Pavel Banya,Pawel,Павел Баня 42.6 25.2 P PPL BG BG 59 SZR24 3212 411 Europe/Sofia 2012-01-18
-728448 Panagyurishte Panagyurishte Otalkioj,Otalkiöj,Panaghiourichte,Panaghiourichté,Panaghurichte,Panagiuriste,Panagjurisce,Panagjurischte,Panagjurishhe,Panagjuriste,Panagjurište,Panagjurišče,Panagyurishche,Panagyurishte,Панагюрище 42.5 24.18333 P PPL BG 48 PAZ20 19389 526 Europe/Sofia 2012-01-18
-728565 Oryakhovo Oryakhovo Orechovo,Orechowo,Orehovo,Orejekhovo,Orekhovo,Orjahovo,Orjakhovo,Orjechovo,Orjekhovo,Oryakhovo,Oryekhovo,Rachowo,Rahova,Rakhovo,Rakovo,Ruhovo,Оряхово 43.73333 23.96667 P PPL BG 64 VRC31 5706 135 Europe/Sofia 2007-04-05
-728631 Opaka Opaka Opaka,Опака 43.45 26.16667 P PPL BG 60 TGV23 3002 224 Europe/Sofia 2012-02-28
-728634 Omurtag Omurtag Omortag,Omurtag,Osman-Pazar,Osmanbazar,Омуртаг 43.1 26.41667 P PPL BG 60 TGV22 9070 559 Europe/Sofia 2012-01-18
-728674 Obzor Obzor G'ozeken,Giozeken,Gjozeken,Gusiken,Guzuken,Gyuzekioy,Gyuzuken,Güsiken,Güzuken,G’ozeken,Kozjak-Grad,Kozyak-Grad,Obsor,Obzor,Обзор 42.81667 27.88333 P PPL BG 39 BGS15 BGS15-05 2002 20 Europe/Sofia 2012-01-18
-728709 Novo Selo Novo Selo Novo Selo,Nowo-Selo,Ново Село 44.15861 22.78667 P PPL BG BG 63 VID30 1574 52 Europe/Sofia 2012-01-18
-728734 Novi Pazar Novi Pazar Eni Bazar,Eni Pazar,Jenibazar,Novi Pazar,Novi-Paza,Nowi Pasar,Нови Пазар 43.35 27.2 P PPL BG 54 SHU22 13276 135 Europe/Sofia 2012-01-18
-728742 Nova Zagora Nova Zagora Eni Zagra,Ienizagra,Jeni Saghra,Jeni Zagra,Nova Zagora,Nowa Sagora,Yeni Sagra,Yeni Zagra,Нова Загора 42.48333 26.01667 P PPL BG 56 SLV16 24340 130 Europe/Sofia 2012-01-18
-728782 Nikopol Nikopol Nicopol,Nikopil,Nikopol,Nikopoli,Никопол 43.7 24.9 P PPL BG 50 PVN21 4137 119 Europe/Sofia 2012-02-28
-728795 Nikolaevo Nikolaevo Eshekchii,Eshekii,Nikolaevo,Nikolaewo,Nikolajevo,Николаево 42.63333 25.8 P PPL BG BG 59 SZR38 3160 277 Europe/Sofia 2012-01-18
-728825 Nesebŭr Nesebur Mesembrija,Mesemvria,Mesemvrija,Mesemvriya,Messemvria,Messemvrija,Messemwria,Misevrin,Misivri,Misivria,Missevriya,Nesebar,Neseber,Nesebr,Nesebur,Nesebyr,Nesebăr,Nesebŭr,Nessebar,Nessebur,Nessebăr,nesebaru,Несебар,Несебр,Несебър,ネセバル 42.65921 27.73602 P PPL BG 39 BGS15 6302 17 Europe/Sofia 2008-09-18
-728851 Nedelino Nedelino Nedelino,Nedelio,Nedyelino,Uzendere,Uzun-Dere,Неделино 41.45 25.08333 P PPL BG 57 SML18 5017 532 Europe/Sofia 2012-02-28
-728928 Mŭglizh Muglizh Maglis,Maglish,Magliz,Maglizh,Magliš,Magliž,Meglish,Meglizh,Mglij,Moglic,Moglis,Moglič,Muglish,Mugliz,Muglizh,Mögliš,Măglish,Măglizh,Mŭglish,Mŭglizh,Mŭgliž,Мъглиж 42.6 25.55 P PPL BG BG 59 SZR22 3643 353 Europe/Sofia 2012-01-18
-729040 Miziya Miziya Buk'ovtsi,Bukiowzi,Bukyuvtsy,Buk’ovtsi,Mizija,Miziya,Мизия 43.68333 23.85 P PPL BG 64 VRC28 3712 33 Europe/Sofia 2012-02-28
-729064 Mirkovo Mirkovo Mirkovo,Mirkowo,Мирково 42.7 23.98333 P PPL BG BG 58 SFO56 1882 725 Europe/Sofia 2012-01-18
-729073 Mineralni Bani Mineralni Bani Mineralni Bani,Минерални Бани 41.91667 25.35 P PPL BG 43 HKV19 1367 342 Europe/Sofia 2012-01-18
-729114 Montana Montana Ferdinand,Ferdinandovo,Golyama Kutlovitsa,Khristo Mikhaylov,Kutlovica,Mikhailovgrad,Mikhaylovgrad,Montana,Velika Kutlovica,Монтана 43.4125 23.225 P PPLA BG 47 MON29 47445 148 Europe/Sofia 2012-01-18
-729125 Tsarevo Tsarevo Carevo,Michurin,Tsarevo,Tzarevo,Vasiliko,Zarewo,Царево 42.16667 27.85 P PPL BG BG 39 BGS13 6085 8 Europe/Sofia 2012-01-18
-729134 Mezdra Mezdra Mesdra,Mezdra,Mezhdra,Mizara,Мездра 43.15 23.7 P PPL BG 64 VRC27 11975 277 Europe/Sofia 2012-01-18
-729170 Medovene Medovene Balbunar Endzhe,Enidzhe Balbunar,Indzhekioy,Mediowene,Medovene,Медовене 43.76667 26.51667 P PPLA3 BG BG 52 RAZ16 RAZ16-07 0 210 Europe/Sofia 2011-07-31
-729174 Medkovets Medkovets Medkovec,Medkovets,Medkovetz,Metkovec,Metkovets,Metkowez,Медковец 43.62972 23.18111 P PPL BG BG 47 MON26 2690 176 Europe/Sofia 2012-01-18
-729322 Malko Tŭrnovo Malko Turnovo Malko Tarnovo,Malko Tarnowo,Malko Turnovo,Malko Tŭrnovo,Malko-Tarnov,Malko-Tirnovo,Malko-Trnovo,Malko-Tărnov,Malkotirnova,Tirnovo,Малко Търново 41.98333 27.53333 P PPL BG BG 39 BGS12 3336 350 Europe/Sofia 2012-01-18
-729428 Madzharovo Madzharovo Dupnitsa,Dupniza,Madjarovo,Madzharovo,Yatadzhik,Маджарово 41.63333 25.86667 P PPL BG BG 43 HKV18 1319 164 Europe/Sofia 2012-01-18
-729439 Madan Madan Madan,Мадан 41.5 24.95 P PPL BG 57 SML16 5661 780 Europe/Sofia 2012-02-28
-729466 Lyubimets Lyubimets Khebibchevo,Lioubimetz,Ljubimec,Ljubimetz,Ljubimez,Lyubimets,Lyubimetz,Любимец 41.83333 26.08333 P PPL BG 43 HKV17 8065 68 Europe/Sofia 2012-02-28
-729489 Lyaskovets Lyaskovets Leskovec,Leskovets,Leskovetz,Leskovètz,Leskowez,Ljaskovec,Ljeskovec,Lyaskovets,Lyaskovetz,Lyeskovets,Lěskovec,Лясковец 43.11111 25.72833 P PPL BG 62 VTR20 8488 174 Europe/Sofia 2012-01-18
-729507 Lukovit Lukovit Gorni Lukovit,Loukovit,Lukovit,Lukowit,Луковит 43.2 24.16667 P PPL BG 46 LOV19 9792 136 Europe/Sofia 2012-01-18
-729509 Lŭki Luki Laki,Luki,Lŭki,Лъки 41.85 24.81667 P PPL BG BG 51 PDV15 3258 944 Europe/Sofia 2012-01-18
-729530 Loznitsa Loznitsa Kobadin,Kobadun,Kobadŭn,Kubadin,Losniza,Lozitsa,Loznica,Loznitsa,Лозница 43.36667 26.6 P PPL BG BG 52 RAZ17 2971 265 Europe/Sofia 2012-01-18
-729559 Lovech Lovech Lovca,Lovcha,Lovec,Lovech,Lovetch,Loveč,Lovča,Lowetsch,Ловеч 43.13333 24.71667 P PPLA BG 46 LOV18 42211 179 Europe/Sofia 2012-01-18
-729581 Lom Lom Aligina Makhala,Dzhembek Makhala,Kalen Potok,Lom,Lom Palanka,Nikolaevo,Nikolaewo,Лом 43.81389 23.23611 P PPL BG 47 MON24 26594 62 Europe/Sofia 2012-01-18
-729636 Levski Levski Kara Agach,Levski,Lewski,Turski Karaagach,Левски 43.36667 25.13333 P PPL BG 50 PVN16 11467 73 Europe/Sofia 2012-01-18
-729646 Letnitsa Letnitsa Letnica,Letnitsa,Letnitza,Letniza,Lietnica,Lyetnitsa,Lětnica,Летница 43.31167 25.07333 P PPL BG 46 3528 72 Europe/Sofia 2012-02-28
-729667 Lesichevo Lesichevo Lesicevo,Lesichevo,Lesichovo,Lesicovo,Lesičevo,Lesičovo,Lessitschowo,Lisichevo,Ljesicevo,Ljesičevo,Lyesichevo,Лесичово 42.35 24.11667 P PPL BG BG 48 PAZ14 1206 281 Europe/Sofia 2012-01-18
-729722 Lakatnik Lakatnik Lakatnik,Лакатник 43.05 23.4 P PPLA3 BG 58 SFO43 SFO43-09 0 811 Europe/Sofia 2011-07-31
-729730 Kyustendil Kyustendil Keustendil,Kioustendil,Kiousténdil,Kjustendil,Koestendil,Kostendil,Kustendil,Kyoustentil,Kyustendil,Köstendil,Küstendil,Κυουστεντίλ,Кюстендил 42.28389 22.69111 P PPLA BG 45 KNL29 48286 519 Europe/Sofia 2012-01-18
-729794 Kŭrdzhali Kurdzhali Exrdzhali,Kardjali,Kardschali,Kardshali,Kardzhali,Kerdzhali,Kerjali,Kircaali,Kirdjalu,Kirdjalü,Kirdzali,Kirdzalu,Kirdžali,Kirdžalü,Kirjali,Krdjali,Kudjaly,Kurdzali,Kurdzhale,Kurdzhali,Kurdzhalii,Kurdzjali,Kyakyrdzhali,Kyrdzhali,Kărdzhali,Kırcaali,Kŭrdzhale,Kŭrdzhali,Kŭrdzhalii,Kŭrdžali,Кърджали,Кырджали 41.65 25.36667 P PPLA BG BG 44 KRZ16 51000 278 Europe/Sofia 2012-01-18
-729825 Kula Kula Adlijo,Adlye,Koula,Kula,Кула 43.88778 22.52139 P PPL BG 63 VID22 3738 277 Europe/Sofia 2012-02-28
-729839 Kubrat Kubrat Balbunar,Kubrat,Кубрат 43.8 26.5 P PPL BG 52 RAZ16 8980 231 Europe/Sofia 2012-01-18
-729880 Krushari Krushari Armuchi,Armutli,Armutlia,Armutlii,Armutlu,Krusari,Krushari,Krušari,Крушари 43.81667 27.75 P PPL BG BG 40 DOB20 1722 210 Europe/Sofia 2012-01-18
-729896 Krumovgrad Krumovgrad Koshu-Kavak,Kosikavak,Kossukavak,Kossukovak,Kosu-Kavak,Košu-Kavak,Kroumovgrade,Krumovgrad,Krumowgrad,Крумовград 41.46667 25.65 P PPL BG 44 KRZ15 5271 211 Europe/Sofia 2012-02-28
-729909 Krivodol Krivodol Krivdol,Krivodol,Krivodolska Makhala,Kriwodol,Криводол 43.37444 23.48444 P PPL BG 64 VRC21 3651 158 Europe/Sofia 2012-02-28
-729936 Krichim Krichim Krichim,Kricim,Kricima,Krinchim,Kritchim,Kritschim,Krizim,Kričim,Kričima,Križim,Kroma,Кричим 42.05 24.46667 P PPL BG 51 PDV39 8580 228 Europe/Sofia 2012-02-28
-729942 Kresna Kresna Bahnhof Pirin,Gara Pirin,Kresna,Кресна 41.73333 23.15 P PPL BG BG 38 4117 316 Europe/Sofia 2012-01-18
-730013 Kozloduy Kozloduy Koslodui,Kozlodui,Kozloduj,Kozloduy,Kozloudoui,Kozludui,kozloduj,козлодуй 43.78333 23.73333 P PPL BG 64 VRC20 14717 26 Europe/Sofia 2012-01-18
-730040 Koynare Koynare Koinare,Kojnare,Koynare,Койнаре 43.35 24.13333 P PPL BG 50 PVN37 PVN37-05 2926 83 Europe/Sofia 2012-01-18
-730073 Kotel Kotel Kazan,Kotel,Котел 42.88333 26.45 P PPL BG 56 SLV11 6421 494 Europe/Sofia 2012-02-28
-730084 Kostinbrod Kostinbrod Kostinbrod,Костинброд 42.81667 23.21667 P PPL BG 58 SFO26 12175 534 Europe/Sofia 2012-01-18
-730159 Koprivshtitsa Koprivshtitsa Avrat Alan,Koprivcica,Koprivichtitza,Koprivscica,Koprivshchitsa,Koprivshhica,Koprivshtitsa,Koprivstica,Koprivčica,Koprivštica,Koprivščica,Kopriwschtiza,Копривщица 42.63333 24.35 P PPL BG BG 58 SFO24 2885 1098 Europe/Sofia 2012-01-18
-730268 Kocherinovo Kocherinovo Kocarinovo,Kocerinovo,Kocherinobo,Kocherinovo,Kocheripovo,Kotcherinovo,Kotscherinowo,Kočarinovo,Kočerinovo,Кочериново 42.08333 23.06667 P PPL BG BG 45 KNL27 2872 410 Europe/Sofia 2012-01-18
-730287 Knezha Knezha Kneja,Knesha,Kneza,Knezha,Kneža,Knizha,Knjeza,Knježa,Knyazha,Кнежа 43.5 24.08333 P PPL BG 64 PVN39 6889 116 Europe/Sofia 2012-01-18
-730301 Klisura Klisura Derbend,Klissoura,Klissura,Klisura,Клисура 42.7 24.45 P PPL BG 51 PDV13 PDV13-14 1485 772 Europe/Sofia 2012-01-18
-730337 Kiten Kiten Kiten,Mukhalii,Китен 43.08333 27.31667 P PPL BG BG 61 VAR24 1115 219 Europe/Sofia 2012-01-18
-730338 Kiten Kiten Avordovisa,Bordovasca,Chiflik Urdoviza,Kiten,Kiten Lozenets,Ourdovisa,Uerdiso,Urdoviza,Китен 42.23424 27.7749 P PPL BG BG 39 BGS27 BGS27-04 1115 26 Europe/Sofia 2010-06-08
-730367 Kilifarevo Kilifarevo Kilifarevo,Kilifarewo,Килифарево 42.98333 25.63333 P PPL BG 62 VTR04 VTR04-17 2497 268 Europe/Sofia 2012-01-18
-730415 Tsar Kaloyan Tsar Kaloyan Car Kalojan,Khlebarovo,Torlak,Torlaki,Tsar Kaloyan,Tsar Kaloyanovo,Turlak,Tzar Kaloyan,Zar Kalojan,Цар Калоян 43.61667 26.25 P PPL BG 52 RAZ36 3994 209 Europe/Sofia 2012-02-28
-730419 Khisarya Khisarya Banja,Banya,Chissar,Hisar,Hisar Kjuselere,Hisarya,Hissar,Husar,Khisar,Khisar-Kyuselere,Khisar-Momina Banya,Khisarja,Khisarya,Khiskeseleri,Momina-Banja,Momina-banya,Хисаря 42.5 24.7 P PPL BG 51 PDV37 7903 364 Europe/Sofia 2012-02-28
-730425 Khayredin Khayredin Chairedin,Eredin,Hajredin,Khairedin,Khajredin,Khayredin,Хайредин 43.6 23.66667 P PPL BG BG 64 VRC35 2228 52 Europe/Sofia 2012-01-18
-730435 Khaskovo Khaskovo Chaskoi,Chaskovo,Chaskowo,Chasköi,Haskioj,Haskiöj,Haskovo,Haskoy,Hasköy,Khaskovo,Хасково 41.94028 25.56944 P PPLA BG 43 HKV34 79699 207 Europe/Sofia 2012-01-18
-730442 Kharmanli Kharmanli Charmanlii,Harmanli,Harmanlii,Harmanlu,Harmanly,Harmanlü,Hermanli,Kharmanli,Kharmanlii,Kharmanliy,Харманли 41.93333 25.9 P PPL BG 43 HKV33 18931 74 Europe/Sofia 2012-01-18
-730464 Khadzhidimovo Khadzhidimovo Dolna-Singartiya,Dolno-Singartiya,Khadzhidimovo,Shostowo,Zhostovo,Хаджидимово 41.52222 23.86861 P PPL BG BG 38 BLG52 3167 462 Europe/Sofia 2012-01-18
-730478 Kermen Kermen Keremenli,Kermen,Kermenli,Kermenlii,Kermenliy,Kermenlu,Kermenlü,Kermon,Кермен 42.5 26.25 P PPL BG 56 SLV20 SLV20-23 2222 169 Europe/Sofia 2012-01-18
-730496 Kazanlŭk Kazanluk Kasanlak,Kasanlăk,Kazanl"k,Kazanlak,Kazanlako,Kazanlek,Kazanlik,Kazanlk,Kazanluk,Kazanlyk,Kazanlăk,Kazanlık,Kazanlŭk,Kazanłyk,Казанлък,Казанлык,קאזאנלאק 42.61667 25.4 P PPL BG BG 59 SZR12 55196 366 Europe/Sofia 2012-01-18
-730504 Kaynardzha Kaynardzha Cainargcaua-Mica,Cainargeaua Mica,Cainargeaua Mică,Kajnardzha,Kaynardzha,Kutschuk Kainardshi,Kutschük Kainardshi,Kyuchuk-Kaynardzha,Malka Kainardsha,Malka-Kaynardzha,Malka-Kaynaruzha,Malka-Kaynarŭzha,Кайнарджа 43.98333 27.5 P PPL BG BG 55 SLS15 1107 160 Europe/Sofia 2012-01-18
-730518 Kavarna Kavarna Cavarna,Kavarna,Kawarna,Каварна 43.43333 28.33333 P PPL BG 40 DOB17 11205 130 Europe/Sofia 2012-01-18
-730542 Kaspichan Kaspichan Bahnhof Kaspitschan,Gara Kaspican,Gara Kaspichan,Gara Kaspičan,Kaspichan,Kaspitchan,Kaspitchan Gare,Stantsiya Shumlaroad,Каспичан 43.31667 27.16667 P PPLA3 BG 54 SHU19 SHU19-03 3635 95 Europe/Sofia 2011-07-31
-730559 Karnobat Karnobat Karnabat,Karnobat,Karnobatski prokhod,Poljanovgrad,Polyanovgrad,Карнобат,Карнобатски проход 42.65 26.98333 P PPL BG 39 BGS09 19709 208 Europe/Sofia 2012-01-18
-730565 Karlovo Karlovo Grad Karlove,Karliova,Karlovo,Karlowo,Karlıova,Karłowo,Levskigrad,Карлово 42.63333 24.8 P PPL BG 51 PDV13 19958 406 Europe/Sofia 2012-01-18
-730651 Kaolinovo Kaolinovo Beyuk Bakchilar,Boshidar,Bozhidar,Kaolinovo,Shumnu-Bokhchalar,Shumnu-Bokhchilar,Каолиново 43.61667 27.11667 P PPL BG 54 SHU18 1537 266 Europe/Sofia 2012-02-28
-730680 Kameno Kameno Kaiali,Kajali,Kajalii,Kajalu,Kajalü,Kameno,Kayalii,Kayaliy,Kayalu,Kayalŭ,Kayliy,Камено 42.57446 27.29387 P PPL BG 39 BGS08 4952 24 Europe/Sofia 2012-02-28
-730733 Kaloyanovo Kaloyanovo Kalojanovo,Kalojanowo,Kaloyanovo,Seldzhikovo,Seldzikovo,Seldžikovo,Калояново 42.35 24.73333 P PPL BG BG 51 PDV12 2782 219 Europe/Sofia 2012-01-18
-730744 Kalofer Kalofer Kalofer,Kaloter,Калофер 42.61667 24.98333 P PPL BG 51 PDV13 PDV13-11 3248 731 Europe/Sofia 2012-01-18
-730837 Ivaylovgrad Ivaylovgrad Ivailovgrad,Ivajlovgrad,Ivatlovgrade,Ivaylovgrad,Iwailowgrad,Iwajlowgrad,Orta-K'oy,Orta-Keui,Orta-Kioi,Orta-Kioj,Orta-Kioï,Orta-Kiöj,Orta-Kyoy,Orta-K’oy,Ortakoi,Ortaköi,Ortokoj,Ortoköj,Ивайловград 41.53333 26.13333 P PPL BG 43 HKV11 3969 182 Europe/Sofia 2012-02-28
-730852 Ivanovo Ivanovo Ivanovo,Iwanowo,Иваново 43.7 25.98333 P PPL BG BG 53 RSE13 1031 82 Europe/Sofia 2012-01-18
-730866 Isperikh Isperikh Isperich,Isperih,Isperikh,Kemallar,Kemanlar,Исперих 43.71667 26.83333 P PPL BG 52 RAZ14 9735 279 Europe/Sofia 2012-01-18
-730919 Ikhtiman Ikhtiman Ichtiman,Ihtiman,Ikhitman,Ikhtiman,Ихтиман 42.43333 23.81667 P PPL BG 58 SFO20 14154 636 Europe/Sofia 2012-01-18
-730960 Gŭrmen Gurmen Garmen,Gurmen,Gărmen,Gŭrmen,Гърмен 41.6 23.81667 P PPL BG BG 38 BLG13 1838 589 Europe/Sofia 2012-01-18
-730969 Gurkovo Gurkovo General Gurkovo,Gurkovo,Gurkowo,Khainboaz,Khainito,Khainkioy,Kolupchii,Гурково 42.66667 25.8 P PPL BG 59 2889 375 Europe/Sofia 2012-02-28
-730982 Gulyantsi Gulyantsi Galyantsi,Golenci,Guleanci,Guljanci,Guljanzi,Gulyanitsa,Gulyantsi,Гулянци 43.63333 24.7 P PPL BG 50 PVN08 3589 29 Europe/Sofia 2012-02-28
-731016 Sredets Sredets Grudovo,Kara-Bunar,Sradets,Sredec,Sredets,Sredetz,Sredez,Sryedets,Srědec,Средец 42.34747 27.17898 P PPL BG 39 BGS06 9573 25 Europe/Sofia 2012-01-18
-731056 Gramada Gramada Gramada,Грамада 43.83444 22.65861 P PPL BG 63 VID15 1872 234 Europe/Sofia 2012-02-28
-731100 Gyovren Gyovren G'ovren,Gjowren,Goevren,Gyovren,Gövren,Гьоврен 41.4 24.23 P PPL BG BG 57 SML09 SML09-04 1040 1386 734 Europe/Sofia 2007-06-03
-731108 Gotse Delchev Gotse Delchev Goce Delchev,Gotse Delchev,Gotsi Delchev,Gotze Deltchev,Nevrekop,Nevrokop,Newrokop,Гоце Делчев 41.56667 23.73333 P PPL BG 38 BLG11 20471 535 Europe/Sofia 2012-01-18
-731233 Gorna Oryakhovitsa Gorna Oryakhovitsa Gorna Orehovica,Gorna Orehovitsa,Gorna Orehovitza,Gorna Orekhovitsa,Gorna Oriahovica,Gorna Orjakhovica,Gorna Orjechovica,Gorna Oryakhovitsa,Gorna Oréhovitza,Gorna-Orechowiza,Gorna-Oryekhovitsa,Gorno Oryakhovitsa,Горна Оряховица 43.12778 25.70167 P PPL BG BG 62 VTR06 38553 146 Europe/Sofia 2012-01-18
-731239 Gorna Malina Gorna Malina Gorna Malina,Горна Малина 42.68333 23.7 P PPL BG 58 SFO10 1501 647 Europe/Sofia 2012-01-18
-731268 Gorichevo Gorichevo Gorichevo,Goritschewo,Orman Beshevli,Горичево 43.85 26.45 P PPLA3 BG BG 52 RAZ16 RAZ16-04 0 136 Europe/Sofia 2011-07-31
-731384 Godech Godech Glotnitsa,Godec,Godech,Godetch,Godetsch,Godeč,Molak,Negolova,Staro Selo,Stoykina,Trap,Yovkina,Годеч 43.015 23.04417 P PPL BG BG 58 SFO09 5154 692 Europe/Sofia 2012-01-18
-731415 Glavinitsa Glavinitsa Asfatchioi,Astvatchioi,Asvatchioi,Asvatk'oy,Asvatk’oy,Glavinica,Glavinitsa,Glawinica,Главиница 43.91667 26.83333 P PPL BG BG 55 SLS07 2220 108 Europe/Sofia 2012-01-18
-731453 Dolni Chiflik Dolni Chiflik Dolen Chiflik,Dolen Tchiflik,Dolni Chifl,Dolni Chiflik,Dolni Chiftlik,Dolni Ciflik,Dolni Tchiftlik,Dolni chiflik,Dolni Čiflik,Dolni-Chnflik,Dolni-Tschiflik,Dolèn Tchiflik,Georgi Traykov,Долни чифлик 42.98333 27.71667 P PPL BG BG 61 VAR13 7169 23 Europe/Sofia 2012-01-18
-731464 General-Toshevo General-Toshevo Casim,General Tosevo,General Toševo,General-Toshevo,Ion Gheorghe Duca,Kasamkioi,Kassalkioi,Kassălkioi,Kasum,Kasumk'oy,Kasŭm,Kasŭmk’oy,Генерал-Тошево 43.7 28.03333 P PPL BG 40 7758 229 Europe/Sofia 2012-02-28
-731520 Gara Khitrino Gara Khitrino Bahnhof Chitrino,Gara Khitino,Gara Khitrino,Gara Seitandzik,Gara Sejtandzik,Gara Sheytandzhik,Gara Šeitandžik,Gara Šejtandžik,Karola,Seitandzik,Seitantzik,Sejtandzik,Shaytandzhik,Stantsiya Sheytandzhik,Šeitandžik,Šeitantžik,Гара Хитрино 43.43333 26.91667 P PPL BG BG 54 SHU11 1302 332 Europe/Sofia 2012-01-18
-731549 Gabrovo Gabrovo Gabrova,Gabrovo,Gabrowo,gabrovo,gaburobo,jia bu luo wo,Габрово,ガブロボ,加布羅沃 42.87472 25.33417 P PPLA BG BG 41 GAB05 66175 538 Europe/Sofia 2012-01-18
-731551 Gabrovo Gabrovo Gabrovo,Grabowo,Габрово 41.8 25.26667 P PPLA3 BG BG 44 KRZ35 KRZ35-03 0 654 Europe/Sofia 2011-07-31
-731626 Etropole Etropole Etropole,Etropolje,Етрополе 42.83333 24 P PPL BG 58 SFO18 11031 535 Europe/Sofia 2012-01-18
-731669 Elkhovo Elkhovo Chatal Tepe,Chital,Elchowo,Elkhovo,Елхово 42.38333 25.43333 P PPLA3 BG BG 59 SZR38 SZR38-02 0 359 Europe/Sofia 2011-07-31
-731670 Elkhovo Elkhovo Elchovo,Elchowo,Elhovo,Elkhovo,Kasul-Agac,Kazul-Agach,Kazŭl-Agach,Kizilagac,Kizilagač,Kuzul Indzhe,Kuzul-Agach,Kăsŭl-Agač,Kŭzŭl Indzhe,Kŭzŭl-Agach,Елхово 42.16667 26.56667 P PPL BG 65 JAM07 11107 118 Europe/Sofia 2012-01-18
-731675 Elin Pelin Elin Pelin Elin Pelin,Novoselci,Novoseltsi,Novosseltzi,Nowosselzi,Vlavo Trichkov,Елин Пелин 42.66667 23.6 P PPLA3 BG 58 SFO17 SFO17-05 7373 549 Europe/Sofia 2011-07-31
-731696 Elena Elena Elena,Jelena,Елена 42.93333 25.88333 P PPL BG 62 HKV34 HKV34-12 6042 308 Europe/Sofia 2012-02-28
-731741 Dzhebel Dzhebel Djebel,Dzhebel,Shekh-Dzhumaya,Sheykh-Dzhumaya,Джебел 41.5 25.3 P PPL BG BG 44 KRZ08 3329 343 Europe/Sofia 2012-01-18
-731771 Dve Mogili Dve Mogili Damogila,Dbb Mogili,Dve Mogili,Dve mogili,Dwe Mogili,Две могили 43.6 25.86667 P PPL BG 53 RSE08 4526 236 Europe/Sofia 2012-02-28
-731809 Dunavtsi Dunavtsi Dunavci,Dunavtsi,Dunavtzi,Дунавци 43.92111 22.82111 P PPL BG BG 63 VID09 VID09-15 3371 41 Europe/Sofia 2012-01-18
-731818 Dulovo Dulovo Acadanlar,Accadanlar,Accadânlar,Ak-Kadunlar,Ak-Kadŭnlar,Akkadanlar,Dulovo,Dulowo,Inatra-Mahle,Дулово 43.81667 27.15 P PPL BG 55 SLS10 6788 226 Europe/Sofia 2012-02-28
-731822 Dŭlgopol Dulgopol Dalgopol,Delgopol,Dulgopol,Dŭlgopol,Novo-Selo,Дългопол 43.05 27.35 P PPL BG BG 61 VAR16 5272 34 Europe/Sofia 2012-01-18
-731882 Dryanovo Dryanovo Drenova,Drenovo,Drenowo,Drjanovo,Drjenovo,Dryanovo,Drěnovo,Дряново 42.97897 25.4785 P PPL BG 41 GAB12 8346 256 Europe/Sofia 2007-08-27
-731961 Dragoman Dragoman Dragoman,Драгоман 42.91889 22.93167 P PPL BG 58 SFO16 3814 720 Europe/Sofia 2012-02-28
-732015 Dospat Dospat Dospad,Dospat,Доспат 41.65 24.16667 P PPL BG 57 SML10 2802 1310 Europe/Sofia 2012-02-28
-732099 Dolni Dŭbnik Dolni Dubnik Diubnik,Dolni Dabnik,Dolni Dibnik,Dolni Dobnik,Dolni Dubnik,Dolni Döbnik,Dolni Dăbnik,Dolni Dŭbnik,Dolni-Debnik,Dolni-Dubnjak,Долни Дъбник 43.4 24.43333 P PPL BG BG 50 PVN11 5259 109 Europe/Sofia 2012-01-18
-732122 Dolna Mitropoliya Dolna Mitropoliya Dolna Metropolja,Dolna Mitropolia,Dolna Mitropolija,Dolna Mitropoliya,Dolna Netropol Mitropoliya,Долна Митрополия 43.46667 24.53333 P PPL BG 50 PVN10 3479 57 Europe/Sofia 2012-02-28
-732145 Dolna Banya Dolna Banya Banja,Dolna Bania,Dolna Banja,Dolna Banya,Долна Баня 42.3 23.76667 P PPL BG BG 58 SFO59 4990 672 Europe/Sofia 2012-01-18
-732253 Dimovo Dimovo Aleksandrovo,Burzitsa,Bŭrzitsa,Dimovo,Knjas Alexandrowo,Knyaz Aleksandrovo,Osmanie,Vlaykovo,Димово 43.74167 22.72694 P PPL BG 63 VID16 1461 128 Europe/Sofia 2012-02-28
-732263 Dimitrovgrad Dimitrovgrad Dimitrovgrad,Димитровград 42.05 25.6 P PPL BG 43 HKV09 43288 111 Europe/Sofia 2012-01-18
-732280 Devnya Devnya Devne,Devnja,Devnya,Dewnja,Девня 43.22222 27.56944 P PPL BG 61 VAR14 8171 70 Europe/Sofia 2012-02-28
-732285 Devin Devin D'ovlen,Devin,Devine,Dewin,Djovlen,Dyevin,Děwin,Девин 41.74327 24.40003 P PPL BG 51 SML09 7393 723 Europe/Sofia 2010-02-13
-732359 Debelets Debelets Debebletz,Debelec,Debelet,Debelets,Debeletz,Debelez,Deblec,Débéblètz,Дебелец 43.03333 25.61667 P PPL BG 62 VTR04 VTR04-13 4418 158 Europe/Sofia 2012-01-18
-732452 Chirpan Chirpan Chirpan,Cirpan,Tchirpan,Tschirpan,Čirpan,Чирпан 42.2 25.33333 P PPL BG 59 SZR36 17243 195 Europe/Sofia 2007-04-05
-732456 Chiprovtsi Chiprovtsi Chiporovtsi,Chiporovtsu,Chiporovtsŭ,Chiprovci,Chiprovtsi,Tschiporowzi,Чипровци 43.38417 22.88083 P PPL BG 47 MON36 2080 487 Europe/Sofia 2012-02-28
-732491 Cherven Bryag Cherven Bryag Cerven-Breg,Cherven brjag,Cherven-Breg,Cherven-Bryeg,Cherveni Bryag,Cherveni-Bjerg,Tcherven Bryag,Tscherwen Breg,Červen-Brěg,Червен бряг 43.26667 24.1 P PPL BG 50 PVN37 21688 195 Europe/Sofia 2007-04-05
-732519 Chernomorets Chernomorets Agios Nikolo,Chernomorec,Chernomorets,Nikola,Sveti Nicola,Sveti Nikola,Sweti Nikola,Черноморец 42.44589 27.63834 P PPL BG 39 BGS21 BGS21-15 2194 20 Europe/Sofia 2012-01-18
-732627 Chepelare Chepelare Cepelare,Chepelare,Chepelari,Tschepelare,Čepelare,Чепеларе 41.73333 24.68333 P PPL BG 57 SML38 5478 1162 Europe/Sofia 2012-02-28
-732636 Chelopech Chelopech Celopec,Chelopech,Tschelopetsch,Čelopeč,Челопеч 42.7 24.08333 P PPL BG BG 58 SFO58 1760 716 Europe/Sofia 2012-01-18
-732655 Chavdar Chavdar Chavdar,Kolanlare,Kolanlari,Radoslavo,Radoslavovo,Radoslawowo,Чавдар 42.65 24.05 P PPL BG BG 58 SFO57 1398 591 Europe/Sofia 2012-01-18
-732704 Byala Slatina Byala Slatina Bela Slatina,Biela Slatina,Bjala Slatina,Bjela Slatina,Byala Slatina,Byela-Slatina,Бяла Слатина 43.46667 23.93333 P PPL BG 64 VRC08 13307 125 Europe/Sofia 2012-01-18
-732717 Byala Cherkva Byala Cherkva Bela Cerkva,Bela Cherkva,Bela Tscherkwa,Bela-Cerkova,Bela-Tchekva,Bela-Čerkova,Bjala cherkva,Bjela-Cerkova,Bjela-Cerkva,Bjela-Čerkova,Byala Cherkova,Byala Cherkva,Byela Cherkva,Byela-Cherkova,Béla-Tchekva,Běla Čerkva,Gorni Turcheta,Бяла черква 43.2 25.3 P PPL BG 62 VTR22 VTR22-03 3010 105 Europe/Sofia 2012-01-18
-732721 Byala Byala Ak Dere,Bela,Biela,Bjala,Bjela,Byala,Byela,Běla,Бяла 42.88333 27.88333 P PPL BG BG 61 VAR05 2327 105 Europe/Sofia 2012-01-18
-732770 Burgas Burgas Boergas,Bourgas,Bournkas,Burgas,Burgasa,Burgaz,Burghaz,Mpournkas,bu er jia si,burugasu,Μπουργκάς,Μπουργκας,Μπούργκας,Бургас,ブルガス,布爾加斯 42.50606 27.46781 P PPLA BG 39 BGS04 195966 36 Europe/Sofia 2012-01-18
-732825 Bukhovo Bukhovo Buchowo,Buhovo,Bukhovo,Бухово 42.76667 23.56667 P PPL BG 42 SOF46 SOF46-49 3283 702 Europe/Sofia 2012-01-18
-732862 Brusartsi Brusartsi Brusarci,Brusartsi,Brussarz,Брусарци 43.66667 23.06667 P PPL BG BG 47 MON07 1734 108 Europe/Sofia 2012-01-18
-732874 Brezovo Brezovo Abrashlare,Abraslare,Bresowo,Brezovo,Brjesovo,Bryezovo,Брезово 42.35 25.08333 P PPL BG 51 PDV07 1947 249 Europe/Sofia 2012-02-28
-732883 Breznik Breznik Berznik,Bresnik,Breznik,Brjeznik,Bryeznik,Брезник 42.74139 22.89806 P PPL BG 49 PER08 4004 764 Europe/Sofia 2012-02-28
-732915 Bregovo Bregovo Bregovo,Bregowo,Brjegovo,Bryagovo,Bryegovo,Брегово 44.15167 22.6425 P PPL BG 63 2892 54 Europe/Sofia 2012-02-28
-732924 Bratsigovo Bratsigovo Bracigovo,Bratsigovo,Bratzigovo,Brazigowo,Брацигово 42.01667 24.36667 P PPL BG 48 PAZ06 4577 572 Europe/Sofia 2012-02-28
-732954 Bozhurishte Bozhurishte Bojurishe,Boshurischte,Bozhurishhe,Bozhurishte,Божурище 42.75 23.2 P PPL BG BG 58 SFO06 4360 568 Europe/Sofia 2012-01-18
-732986 Boychinovtsi Boychinovtsi Boichinovtsi,Bojchinovci,Bojtschinowzi,Boychinovtsi,Бойчиновци 43.47222 23.33583 P PPL BG BG 47 MON04 2181 105 Europe/Sofia 2012-01-18
-733001 Bov Bov Bov,Bow,Бов 43.0325 23.37806 P PPLA3 BG BG 58 SFO43 SFO43-08 0 818 Europe/Sofia 2011-07-31
-733014 Botevgrad Botevgrad Botevgrad,Botewgrad,Orchanie,Orhanie,Orhanje,Orkhanie,Ботевград 42.9 23.78333 P PPL BG 58 SFO07 20909 363 Europe/Sofia 2007-04-05
-733043 Borovo Borovo Borovo,Gorna Manastiritsa,Gorna-Manastiriza,Gorna-Monastir,Gorni-Manastirica,Борово 43.5 25.8 P PPL BG 53 RSE03 2467 241 Europe/Sofia 2012-02-28
-733058 Borovan Borovan Borovan,Borowan,Борован 43.43333 23.75 P PPL BG BG 64 VRC05 2941 189 Europe/Sofia 2012-01-18
-733067 Borino Borino Boriio,Borino,Kara-Bulak,Борино 41.68333 24.28333 P PPL BG BG 57 SML05 3084 1179 Europe/Sofia 2012-01-18
-733092 Bolyarovo Bolyarovo Boljarovo,Boljarowo,Bolyarovo,Pachakioi,Pasakioj,Pasha-K'oy,Pasha-Kyoy,Pasha-K’oy,Pashakioy,Pašakiöj,Болярово 42.15 26.81667 P PPL BG 65 JAM03 1368 202 Europe/Sofia 2012-02-28
-733151 Bobovdol Bobovdol Bobor-Dol,Bobov Dol,Bobov-Dol Mina,Bobovdol,Bobow Dol,Бобовдол 42.36972 23.01722 P PPL BG 45 KNL04 6184 703 Europe/Sofia 2012-02-28
-733153 Boboshevo Boboshevo Bobochevo,Boboschewo,Bobosevo,Boboshevo,Boboševo,Бобочево,Бобошево 42.15972 23.01639 P PPL BG BG 45 KNL05 1784 435 Europe/Sofia 2012-01-18
-733191 Blagoevgrad Blagoevgrad Blagoevgrad,Djumaja,Dzhumaya,Dzuma,Dzumaja,Džuma,Džumaja,Gorna Djoumaia,Gorna Djumaya,Gorna Dshumaja,Gorna Dzhumaja,Gorna Dzhumaya,Gorna Dzumaja,Gorna Džumaja,Благоевград,Горна Джумая 42.01667 23.1 P PPLA BG 38 BLG03 71306 390 Europe/Sofia 2012-01-18
-733264 Berkovitsa Berkovitsa Berkovica,Berkovitsa,Berkovitsay,Berkovitza,Berkowiza,Берковица 43.23611 23.12583 P PPL BG 47 MON02 15027 412 Europe/Sofia 2012-01-18
-733286 Belovo Belovo Beljovo,Belovo,Gara Bel'oro,Gara Bel’oro,Gara Byelovo,Белово 42.21667 24.01667 P PPL BG 48 PAZ04 4155 320 Europe/Sofia 2012-02-28
-733309 Belogradchik Belogradchik Belogradchik,Belogradcik,Belogradtchik,Belogradtgchik,Bjelogradcik,Bjelogradčik,Byelogradchik,Bélogradtchik,Bělogradčik,Белоградчик 43.62722 22.68361 P PPL BG 63 VID01 5688 498 Europe/Sofia 2012-02-28
-733322 Belitsa Belitsa Belica,Belitsa,Belitso,Belitza,Beliza,Bjelica,Blitsa,Byelitsa,Bělica,Белица 41.95694 23.5725 P PPL BG 38 BLG02 3166 966 Europe/Sofia 2012-02-28
-733359 Belene Belene Beleke,Belene,Belina,Bjelene,Byelene,Белене 43.65 25.11667 P PPL BG 50 PVN03 9781 33 Europe/Sofia 2012-02-28
-733433 Batak Batak Batak,Батак 41.95 24.21667 P PPL BG 48 PAZ03 3917 1104 Europe/Sofia 2007-04-05
-733462 Bansko Bansko Banjska,Banjsko,Bansko,Banysko,Банско 41.8383 23.48851 P PPL BG 38 BLG01 9232 929 Europe/Sofia 2010-02-13
-733474 Banite Banite Banite,Ladsha,Ledzha,Ludzha,Lădsha,Lŭdzha,Баните 41.61667 25.01667 P PPL BG BG 57 SML02 1279 728 Europe/Sofia 2012-01-18
-733515 Balchik Balchik Balchik,Balchiq,Balcic,Baltchik,Baltschik,Балчик 43.41667 28.16667 P PPL BG BG 40 DOB03 13000 141 Europe/Sofia 2012-01-18
-733579 Aytos Aytos Aitos,Ajtos,Aytos,Айтос 42.7 27.25 P PPL BG 39 BGS01 20986 89 Europe/Sofia 2012-01-18
-733618 Asenovgrad Asenovgrad Asenovgrad,Assenovgrad,Assenovgrade,Assenowgrad,Stanimaka,Асеновград 42.01667 24.86667 P PPL BG 51 PDV01 52170 226 Europe/Sofia 2012-01-18
-733623 Asen Asen Asen,Yurenlii,Yurenliy,Асен 42.65 25.2 P PPLA3 BG BG 59 SZR24 SZR24-02 0 470 Europe/Sofia 2011-07-31
-733638 Ardino Ardino Ardino,Egridere,Eğridere,Iridere,Irideré,Khadzhi K'oy,Khadzhi K’oy,Ардино 41.58333 25.13333 P PPL BG 44 3531 602 Europe/Sofia 2012-02-28
-733649 Apriltsi Apriltsi Aprilci,Apriltzi,Априлци 42.84142 24.91759 P PPL BG BG 46 LOV02 3851 511 Europe/Sofia 2007-07-01
-733657 Antonovo Antonovo Antonovo,Poljana,Poljane,Polyana,Polyane,Yayla-K'oy,Yayla-K’oy,Yaylakioi,Антоново 43.15 26.16667 P PPL BG 60 TGV02 1543 481 Europe/Sofia 2012-02-28
-733660 Anton Anton Anton,Lashene,Lezhene,Ludzhene,Luzhene,Lăshene,Lŭdzhene,Lŭzhene,Антон 42.75 24.28333 P PPL BG BG 58 SFO54 1697 1174 Europe/Sofia 2012-01-18
-733679 Alfatar Alfatar Alfatar,General Lazarovo,General Lazarow,Алфатар 43.95 27.28333 P PPL BG 55 SLS01 1916 132 Europe/Sofia 2012-02-28
-733716 Aksakovo Aksakovo Adzemler,Adzhemler,Adžemler,Aksakov,Aksakovo,Aksakowo,Аксаково 43.25 27.81667 P PPL BG BG 61 VAR02 7132 85 Europe/Sofia 2012-01-18
-733722 Akhtopol Akhtopol Achtepol,Achtopol,Agathopolis,Ahtapolu,Ahtopol,Akhtebol,Akhtopol,Ахтопол 42.1 27.95 P PPL BG 39 BGS13 BGS13-01 1107 0 Europe/Sofia 2012-01-18
-6355004 Zlatni Pyasatsi Zlatni Pyasatsi Golden Sands,Zlatni pjasuci,Zolotye Peski,Златни пясъци,Золотые Пески 43.285 28.0418 P PPL BG 61 9760 24 Europe/Sofia 2011-12-16
-290104 Sitrah Sitrah Sitra,Sitrah,sitrat,Ситра,سِتْرَة 26.15472 50.62056 P PPL BH 18 37657 5 Asia/Bahrain 2012-01-18
-290187 Madīnat ‘Īsá Madinat `Isa Isa,Isa Town,Madinat `Isa,Madīnat ‘Īsá,Medinat Isa,مَدِينَة عِيسَى 26.17361 50.54778 P PPL BH 18 38090 7 Asia/Bahrain 2012-01-18
-290215 Jidd Ḩafş Jidd Hafs Djidd Hafs,Djidd Ḥafṣ,Jadd Hafs,Jid Hafs,Jidd Hafs,Jidd Ḩafş,Judd Hafs,Judd Ḩafş,jid hafs,جِدّ حَفْص 26.21861 50.54778 P PPL BH 16 31735 6 Asia/Bahrain 2012-01-18
-290247 Madīnat Ḩamad Madinat Hamad Hamad Town,Madinat Hamad,Madīnat Ḩamad,madinat hamad,مَدِينَة حَمَد 26.11528 50.50694 P PPL BH 19 52718 35 Asia/Bahrain 2010-08-10
-290269 Dār Kulayb Dar Kulayb Dar Chulaib,Dar Kulaib,Dar Kulayb,Dār Kulaib,Dār Kulayb,dar kulayb,دَار كُلَيْب 26.06861 50.50389 P PPL BH 19 65466 10 Asia/Bahrain 2012-01-18
-290332 Al Muḩarraq Al Muharraq Al Muharrak,Al Muharraq,Al Muḩarraq,Al'-Mukharrak,Al-Muharrak,Al-Muharraq,Al-Muḥarrak,Moharek,Muharrak,Muharraq,Muharraq Town,Muhurraq,aalmuharaq,mhrq,Аль-Мухаррак,اَلْمُحَرَّق,محرق 26.25722 50.61194 P PPLS BH 15 97458 7 Asia/Bahrain 2011-01-17
-290340 Manama Manama Al Manama,Al Manamah,Al Manāma,Al Manāmah,Al-Manama,Al-Manamah,Maenamae,Manama,Manamae,Manamah,Manameh,Manamo,Manáma,Menama,Mänamä,aalmanamat,mai na mai,manama,mnamt,Μανάμα,Манамæ,Манама,Մանամա,מנאמה,اَلْمَنَامَة,منامة,মানামা,ማናማ,マナーマ,麦纳麦,마나마 26.21536 50.5832 P PPLC BH 16 147074 5 Asia/Bahrain 2010-08-07
-290363 Al Ḩadd Al Hadd Al Hadd,Al Hidd,Al Ḩadd,Al Ḩidd,Hadd,Hidd,aalhad,اَلْحَدّ 26.24556 50.65417 P PPL BH 15 12797 7 Asia/Bahrain 2012-01-18
-385038 Ar Rifā‘ Ar Rifa' Ar Rifa,اَلرِّفَاع 26.13 50.555 P PPL BH 18 79550 43 Asia/Bahrain 2011-02-27
-422232 Makamba Makamba Makamba,Макамба -4.1348 29.804 P PPLA BI 17 19642 1476 Africa/Bujumbura 2012-01-19
-423328 Bururi Bururi Bururi,Mont Bururi,Бурури -3.94877 29.62438 P PPLA BI 10 19740 1857 Africa/Bujumbura 2010-08-03
-423549 Rumonge Rumonge -3.9736 29.4386 P PPL BI 10 6074 790 Africa/Bujumbura 2006-01-17
-423794 Mwaro Mwaro Mwaro -3.5272 29.7034 P PPLL BI 23 4924 1942 Africa/Bujumbura 2012-01-19
-425378 Bujumbura Bujumbura Budzumbura,Bujumbura,Bujumburo,Buj·umbura,Buzhumbura,Buzumbura,Buĵumburo,Bużumbura,Bužumbūra,Mpouzoumpoura,Usumbura,bu qiong bu la,bujumbula,bujunbura,bwg'wmbwrh,bwjwmbra,bwjwmbwra,Μπουζουμπούρα,Бужумбура,Буџумбура,Բուժումբուրա,בוג'ומבורה,بوجومبرا,بوجومبورا,ቡጁምቡራ,ブジュンブラ,布琼布拉,부줌부라 -3.3822 29.3644 P PPLC BI 24 331700 805 Africa/Bujumbura 2012-01-19
-425551 Muramvya Muramvya -3.2682 29.6079 P PPLA BI 22 18041 1878 Africa/Bujumbura 2011-02-08
-426272 Gitega Gitega Gitega,Gitege,Kitega,Гитеге -3.4264 29.9308 P PPLA BI 13 23167 1712 Africa/Bujumbura 2012-01-19
-426700 Ruyigi Ruyigi Rujigi,Ruyigi,Руйиги -3.47639 30.24861 P PPLA BI 21 38458 1596 Africa/Bujumbura 2012-01-19
-427701 Cankuzo Cankuzo Cankuzo,Kankuzo,Канкузо -3.2186 30.5528 P PPLA BI 11 6585 1616 Africa/Bujumbura 2012-01-19
-428219 Karuzi Karuzi Karuzi -3.10608 30.17351 P PPL BI 14 10705 1586 Africa/Bujumbura 2012-01-19
-428515 Bubanza Bubanza Bubanza,Бубанза -3.0804 29.391 P PPL BI 09 12728 1079 Africa/Bujumbura 2012-01-19
-430021 Cibitoke Cibitoke Cibitoke -2.8869 29.1248 P PPLA BI 12 14220 937 Africa/Bujumbura 2012-01-19
-430569 Ngozi Ngozi Ngozi,Нгози -2.9075 29.8306 P PPL BI 19 21506 1824 Africa/Bujumbura 2012-01-19
-430952 Kayanza Kayanza Kayanza -2.9221 29.6293 P PPLA BI 15 19443 1918 Africa/Bujumbura 2012-01-19
-431748 Muyinga Muyinga Mujinga,Muyinga,Муйинга -2.8451 30.3414 P PPLA BI 18 71076 1757 Africa/Bujumbura 2012-01-19
-432456 Kirundo Kirundo Kirundo,Кирундо -2.5845 30.0959 P PPLA BI 16 6083 1403 Africa/Bujumbura 2012-01-19
-433635 Rutana Rutana Rutana,Рутана -3.9279 29.992 P PPLA BI 20 20893 1792 Africa/Bujumbura 2012-01-19
-2391377 Tchaourou Tchaourou Chauru,Tchaourou 8.88649 2.59752 P PPL BJ 00 20971 332 Africa/Porto-Novo 2012-01-18
-2391455 Tanguiéta Tanguieta Tangoueita,Tangueita,Tanguieta,Tanguiéta 10.62118 1.26651 P PPL BJ 08 19833 242 Africa/Porto-Novo 2012-01-18
-2391893 Savé Save Save,Savé 8.04253 2.48599 P PPL BJ 00 75970 189 Africa/Porto-Novo 2012-01-18
-2391895 Savalou Savalou Savalou,Savalu 7.92807 1.97558 P PPLA BJ 11 30187 181 Africa/Porto-Novo 2012-01-18
-2392009 Sakété Sakete Sakete,Sakété 6.73618 2.65866 P PPLA BJ 17 30111 80 Africa/Porto-Novo 2012-01-18
-2392087 Porto-Novo Porto-Novo Porto Nobo,Porto Novas,Porto Novo,Porto-Novo,Pôrto-Novo,bo duo nuo fu,poleutonobo,porutonobo,pwrtw nwbw,pwrtw nwww,xin gang,Πόρτο Νόβο,Порто Ново,Порто-Ново,פורטו נובו,پورتو نووو,ፖርቶ ኖቮ,ポルトノボ,新港,波多诺伏,포르토노보 6.49646 2.60359 P PPLC BJ 16 234168 20 Africa/Porto-Novo 2011-03-04
-2392108 Pobé Pobe Ipobe,Pobe,Pobé 6.98008 2.6649 P PPL BJ 00 32983 136 Africa/Porto-Novo 2012-01-18
-2392204 Parakou Parakou Parakou,Paraku,Параку 9.33716 2.63031 P PPLA BJ 10 163753 369 Africa/Porto-Novo 2012-01-18
-2392308 Ouidah Ouidah Fortaleza de Sao Joao Baptista de Ajuda,Fortaleza de São João Baptista de Ajudá,Ouidah,Sao Joao Baptista de Ajuda,São João Baptista de Ajudá,Vidy,Whydah,Wida,sheng yue han bao,Виды,圣约翰堡 6.36307 2.08506 P PPLA BJ 09 83503 17 Africa/Porto-Novo 2012-01-18
-2392505 Nikki Nikki Nikki,Никки 9.94009 3.21075 P PPL BJ 10 54009 403 Africa/Porto-Novo 2012-01-18
-2392601 Natitingou Natitingou Natitingou,Natitingu,Натитингу 10.30416 1.37962 P PPLA BJ 08 80892 450 Africa/Porto-Novo 2012-01-18
-2392837 Malanville Malanville Malanvilem,Malanville,Mallanville,Маланвилем 11.86846 3.38989 P PPL BJ 08 37117 163 Africa/Porto-Novo 2012-01-18
-2392897 Lokossa Lokossa Locossa,Lokossa 6.63869 1.71674 P PPLA BJ 15 86971 47 Africa/Porto-Novo 2012-01-18
-2393551 Kétou Ketou Ketou,Ketu,Kétou 7.36332 2.59978 P PPL BJ 00 22341 103 Africa/Porto-Novo 2012-01-18
-2393693 Kandi Kandi Kandi,Канди 11.13417 2.93861 P PPLA BJ 07 109701 294 Africa/Porto-Novo 2012-01-18
-2393947 Grand-Popo Grand-Popo Ghola,Grand-Popo,Great Popo,Kpla 6.28036 1.82251 P PPL BJ 00 9847 4 Africa/Porto-Novo 2012-01-18
-2394545 Dogbo Dogbo 6.81667 1.78333 P PPLA BJ 12 41312 68 Africa/Porto-Novo 2006-01-17
-2394560 Djougou Djougou Djougou,Jugu 9.70853 1.66598 P PPLA BJ 13 202810 444 Africa/Porto-Novo 2012-01-18
-2394711 Dassa-Zoumé Dassa-Zoume Dassa Zume,Dassa-Zoume,Dassa-Zoumé 7.75 2.18333 P PPL BJ 00 21672 156 Africa/Porto-Novo 2012-01-18
-2394814 Cové Cove Kove,Kové 7.22097 2.34017 P PPL BJ 00 38566 117 Africa/Porto-Novo 2009-08-18
-2394819 Cotonou Cotonou Appi,Catonou,Cotonou,Cotonu,Cotonú,Kotonou,Kotonu,ke tuo nu,kotonu,qwtwnw,Котону,קוטונו,コトヌー,科托努 6.36536 2.41833 P PPLA BJ 14 690584 7 Africa/Porto-Novo 2012-01-18
-2394824 Comé Come Come,Comé,Kome,Komé 6.40764 1.88198 P PPL BJ 00 29208 29 Africa/Porto-Novo 2012-01-18
-2395049 Bohicon Bohicon Bohicon 7.17826 2.0667 P PPL BJ 00 125092 166 Africa/Porto-Novo 2012-01-18
-2395127 Bétérou Beterou Beterou,Bétérou 9.19916 2.25855 P PPL BJ 00 13108 259 Africa/Porto-Novo 2012-01-18
-2395182 Bembèrèkè Bembereke Bembereke,Bembèrèkè,Bimbereke,Bimbéréké 10.22827 2.66335 P PPL BJ 10 24006 445 Africa/Porto-Novo 2012-01-18
-2395261 Bassila Bassila Bassila 9.00814 1.6654 P PPL BJ 00 23616 388 Africa/Porto-Novo 2012-01-18
-2395317 Banikoara Banikoara Banikoara 11.29845 2.43856 P PPL BJ 07 22487 312 Africa/Porto-Novo 2012-01-18
-2395568 Aplahoué Aplahoue Aplahoue,Aplahoué,Parahoue,Parahoué,Parahue 6.93333 1.68333 P PPL BJ 00 19862 124 Africa/Porto-Novo 2012-01-18
-2395635 Allada Allada Allada 6.66547 2.15138 P PPL BJ 00 20094 93 Africa/Porto-Novo 2012-01-18
-2395914 Abomey-Calavi Abomey-Calavi Abome Calavi,Abomej-Kalavi,Abomey-Calavi,Kalavi,Абомей-Калави 6.44852 2.35566 P PPL BJ 00 385755 11 Africa/Porto-Novo 2012-01-18
-2395915 Abomey Abomey Abome,Abomei,Abomej,Abomey,Palacios Reais de Abomei,Palácios Reais de Abomei,Абомей 7.18286 1.99119 P PPLA BJ 18 82154 228 Africa/Porto-Novo 2012-01-18
-3579132 Gustavia Gustavia Gustaf,Guthavia 17.89618 -62.84978 P PPLC BL 00 5988 6 America/St_Barthelemy 2009-03-31
-3573061 Saint George Saint George Saint George,Saint George's Town,Saint Georges,Saint George’s Town 32.38167 -64.67806 P PPL BM 06 1896 16 Atlantic/Bermuda 2012-01-18
-3573197 Hamilton Hamilton Hamilton 32.29149 -64.77797 P PPLC BM 03 902 0 Atlantic/Bermuda 2010-12-28
-1820071 Tutong Tutong 4.8 114.65 P PPL BN 00 19151 7 Asia/Brunei 2006-01-17
-1820187 Seria Seria Seria,Serija,Серия 4.61667 114.31667 P PPL BN 00 30097 3 Asia/Brunei 2012-01-18
-1820491 Kuala Belait Kuala Belait Belait,Kuala Belait,Kwala Belait 4.58333 114.18333 P PPL BN 00 31178 8 Asia/Brunei 2012-01-18
-1820903 Bangar Bangar Bangar,Temburong 4.71667 115.06667 P PPL BN 00 3536 12 Asia/Brunei 2012-01-18
-1820906 Bandar Seri Begawan Bandar Seri Begawan Bandar Seri Begavanas,Bandar Seri Begawan,Bandar-Seri-Begavan,Bandar-Seri-Begavano,Brunei,Brunei Town,Bruni,Mpantar Seri Mpenkaban,ban dar se ribe ka wan,bandaleuseulibeugawan,bandarusuribugawan,bndr sry bgawan,bndr sry bgwan,si li ba jia wan shi,Μπαντάρ Σερί Μπεγκαβάν,Бандар-Сери-Бегаван,Бандар-Сері-Бегаван,בנדר סרי בגוואן,بندر سری بگاوان,بندر سری بگوان,บันดาร์เสรีเบกาวัน,ባንዳር ሰሪ ቤጋዋን,バンダルスリブガワン,斯里巴加湾市,斯里巴加灣市,반다르스리브가완 4.94029 114.94806 P PPLC BN 02 64409 16 Asia/Brunei 2010-05-28
-3444091 San Pedro San Pedro -18.28333 -59.81667 P PPL BO 08 2990 298 America/La_Paz 2006-01-17
-3444105 San Matías San Matias San Matias,San Matías -16.36667 -58.4 P PPL BO 08 6352 120 America/La_Paz 2012-01-18
-3444176 Roboré Robore El Rabore,Fortin Robore,Fortín Roboré,Robore,Roboré -18.33333 -59.75 P PPL BO 08 9882 262 America/La_Paz 2012-01-18
-3444201 Puerto Quijarro Puerto Quijarro Puerto Quijarro -17.78333 -57.76667 P PPL BO 08 10392 92 America/La_Paz 2012-01-18
-3901147 Yamparáez Yamparaez Yamparaes,Yamparaez,Yamparáez -19.18722 -65.12583 P PPLA3 BO BO 01 0106 02 0 3098 America/La_Paz 2011-07-31
-3901178 Yacuiba Yacuiba Jakuiba,Yacuiba,Якуиба -22.03799 -63.67968 P PPL BO 09 82803 597 America/Argentina/Salta 2012-01-24
-3901301 Warnes Warnes Warnes -17.5 -63.16667 P PPL BO 08 22036 332 America/La_Paz 2012-02-02
-3901485 Viloco Viloco Viloco -16.95 -67.55 P PPL BO 04 1900 3761 America/La_Paz 2012-01-18
-3901501 Villazón Villazon -22.08659 -65.59422 P PPL BO 07 30253 3455 America/La_Paz 2011-03-17
-3901504 Villa Yapacaní Villa Yapacani Villa Yapacani,Villa Yapacaní -17.4 -63.83333 P PPL BO 08 18187 297 America/La_Paz 2012-02-02
-3901519 Villa Serrano Villa Serrano El Pescado,Pescado,Villa Serrano -19.11667 -64.33333 P PPLA3 BO BO 01 0108 01 0 2130 America/La_Paz 2011-07-31
-3901539 Yotala Yotala Villa Oropeza,Villa de Oropeza,Yotala -19.15861 -65.26417 P PPLA4 BO BO 01 0101 02 01 0 2511 America/La_Paz 2011-07-31
-3901547 Villamontes Villamontes Villamontes -21.25 -63.5 P PPL BO 09 18761 450 America/La_Paz 2012-01-18
-3901874 Vallegrande Vallegrande Ciudad de Vallegrande,Vallegrande -18.48972 -64.10694 P PPL BO 08 8422 2048 America/La_Paz 2012-01-18
-3901903 Uyuni Uyuni Ujuni,Уюни -20.45967 -66.82503 P PPL BO 07 10293 3673 America/La_Paz 2009-04-12
-3901969 Urubichá Urubicha Uribicha,Urubicha,Urubichi,Urubichá,Uruvicho -15.38333 -62.95 P PPL BO 08 3267 281 America/La_Paz 2012-01-18
-3902202 Tupiza Tupiza Tupiza,Turpiza -21.45 -65.71667 P PPL BO 07 22233 2960 America/La_Paz 2012-01-18
-3902377 La Santisima Trinidad La Santisima Trinidad Ciudad Trinidad,Trinidad,te li ni da,torinida,Тринидад,トリニダ,特立尼达 -14.83333 -64.9 P PPLA BO 03 84259 159 America/La_Paz 2010-09-27
-3902504 Totoral Totoral Totora,Totoral -18.51667 -66.86667 P PPL BO 05 1645 4270 America/La_Paz 2012-01-18
-3902523 Totora Totora -17.72662 -65.1932 P PPL BO 02 1597 2896 America/La_Paz 2007-09-28
-3902668 Tomina Tomina -19.18333 -64.53333 P PPLA4 BO 01 0104 02 01 0 2663 America/La_Paz 2011-07-31
-3902685 Tomás Barrón Tomas Barron Eucaliptus,Tomas Barron,Tomás Barrón -17.58333 -67.51667 P PPL BO 04 2373 3734 America/La_Paz 2012-01-18
-3903046 Tiahuanaco Tiahuanaco Civilizacao Tiahuanaco,Civilização Tiahuanaco,Tiahuanaco,Tiavanaku,Tiuanako,Tiwanaku,tiwanaku,Тиуанако,טיאהואנקו,ティワナク -16.55 -68.7 P PPL BO 04 3037 3837 America/La_Paz 2008-06-01
-3903320 Tarija Tarija Ciudad Tarija,Tarija,Tarikha,Тариха -21.53549 -64.72956 P PPLA BO 09 159269 1870 America/La_Paz 2010-01-29
-3903342 Tarata Tarata -17.61667 -66.01667 P PPL BO 02 8043 2770 America/La_Paz 2006-01-17
-3903391 Tarabuco Tarabuco Tarabuco -19.16667 -64.91667 P PPLA4 BO 01 0106 01 01 2428 3336 America/La_Paz 2011-07-31
-3903987 Sucre Sucre Chuqichaka,Chuquisaca,Ciudad Sucre,Sucre,Sukre,Sukri,Sukro,Sukrė,su ke lei,sukeule,sukure,swqrh,Сукре,סוקרה,スクレ,苏克雷,수크레 -19.03332 -65.26274 P PPLC BO 01 224838 2798 America/La_Paz 2010-05-30
-3904020 Sotomayor Sotomayor -19.34 -64.99917 P PPLA4 BO 01 0106 02 02 0 2184 America/La_Paz 2011-07-31
-3904043 Sorata Sorata Sorata -15.76667 -68.63333 P PPL BO 04 2190 3396 America/La_Paz 2012-01-18
-3904221 Sipe Sipe Sipe Sipe -17.45 -66.38333 P PPL BO 02 3776 2717 America/La_Paz 2006-01-17
-3904599 Sapirangui Sapirangui Sapirangui,Sapiranqui -19.93333 -63.78333 P PPLA4 BO BO 01 0110 01 04 0 1202 America/La_Paz 2011-07-31
-3904666 Santiago del Torno Santiago del Torno El Torno,Santiago del Torno,Torno -17.98333 -63.38333 P PPL BO 08 15543 508 America/La_Paz 2012-01-18
-3904793 Santa Rosa Santa Rosa -14.16667 -66.88333 P PPL BO 03 4459 167 America/La_Paz 2006-01-17
-3904809 Santa Rita Santa Rita -17.96667 -63.35 P PPL BO 08 2444 593 America/La_Paz 2006-01-17
-3904890 Santa Elena Santa Elena -20.55 -64.78333 P PPLA4 BO 01 0107 03 03 0 3079 America/La_Paz 2011-07-31
-3904906 Santa Cruz de la Sierra Santa Cruz de la Sierra Ciudad Santa Cruz,Ciudad de Santa Cruz de la Sierra,Santa Cruz,Santa Cruz de la Sierra,Santa-Krus-de-la-Sierra,santakurusu,Санта-Крус-де-ла-Сиерра,سانتا کروز دلاسیهرا,サンタクルス -17.8 -63.16667 P PPLA BO BO 08 1364389 423 America/La_Paz 2012-01-18
-3904956 Santa Bárbara Santa Barbara Santa Barbara,Santa Bárbara -20.91667 -66.05 P PPL BO 07 2434 4732 America/La_Paz 2012-01-18
-3905088 San Ramón San Ramon San Ramon,San Ramón -13.28333 -64.71667 P PPL BO 03 4389 136 America/La_Paz 2012-01-18
-3905151 San Pedro San Pedro -19.61667 -64.5 P PPLA4 BO 01 0102 02 02 0 2285 America/La_Paz 2011-07-31
-3905159 San Pedro San Pedro San Pedro,San Pedro de Tiquina -16.23717 -68.85063 P PPL BO BO 04 5002 4013 America/La_Paz 2011-12-06
-3905206 San Pablo San Pablo San Pablo,San Pablo de Tiquina,Tiguina,Tiquina -16.21667 -68.83333 P PPL BO BO 04 3245 3931 America/La_Paz 2012-01-18
-3905453 San Julian San Julian -17.78333 -62.86667 P PPL BO 08 7706 332 America/La_Paz 2006-01-17
-3905462 San Juan del Surutú San Juan del Surutu San Juan Surutu,San Juan del Surutu,San Juan del Surutú -17.48333 -63.7 P PPL BO 08 3707 320 America/La_Paz 2012-01-18
-3905498 San Juan San Juan -21.26667 -65.3 P PPLA4 BO 01 0109 03 02 0 2738 America/La_Paz 2011-07-31
-3905658 San Ignacio de Velasco San Ignacio de Velasco San Ignacio,San Ignacio Velasco,San Ignacio de Loyola,San Ignacio de Velasco -16.36667 -60.95 P PPL BO 08 23569 385 America/La_Paz 2012-01-18
-3905705 San Francisco San Francisco -20.71667 -64.7 P PPLA4 BO 01 0109 02 06 0 2996 America/La_Paz 2011-07-31
-3905775 San Carlos San Carlos -17.4 -63.75 P PPL BO 08 4180 320 America/La_Paz 2006-01-17
-3905792 San Borja San Borja -14.81667 -66.85 P PPL BO 03 19640 191 America/La_Paz 2006-01-17
-3905951 Samaipata Samaipata Samaipata -18.15 -63.86667 P PPL BO 08 3500 2048 America/La_Paz 2012-01-18
-3906025 Salitre Salitre El Salitre,Salitre -20.88333 -64.91667 P PPLA4 BO BO 01 0109 02 02 0 2990 America/La_Paz 2011-07-31
-3906209 Rurrenabaque Rurrenabaque Rurre -14.44125 -67.52781 P PPL BO 03 11749 210 America/La_Paz 2008-03-22
-3906265 Rosario del Ingre Rosario del Ingre -20.58333 -63.9 P PPLA4 BO 01 0105 02 02 0 936 America/La_Paz 2011-07-31
-3906466 Riberalta Riberalta Riberalta,riberaruta,リベラルタ -10.98333 -66.1 P PPL BO 03 74014 120 America/La_Paz 2012-01-18
-3906478 Reyes Reyes Reyes -14.31667 -67.38333 P PPL BO 03 7376 195 America/La_Paz 2012-01-18
-3906765 Quime Quime Quime -16.98333 -67.21667 P PPL BO 04 2404 3063 America/La_Paz 2012-01-18
-3907080 Punata Punata Ciudad Punata,Punata -17.55 -65.83333 P PPL BO 02 15194 2729 America/La_Paz 2012-01-18
-3907106 Pulqui Pulqui Pulque Velasco,Pulqui,Pulqui Alto,Valasco,Velasco -19.23333 -65.21667 P PPLA4 BO BO 01 0101 02 03 0 2990 America/La_Paz 2011-07-31
-3907159 Puesto de Pailas Puesto de Pailas Paila,Puerto Paila,Puerto Pailas,Puesto de Pailas -17.65 -62.8 P PPL BO 08 2675 297 America/La_Paz 2012-01-18
-3907484 Presto Presto -18.92944 -64.93917 P PPLA4 BO 01 0103 02 01 0 2462 America/La_Paz 2011-07-31
-3907584 Potosí Potosi Ciudad Potosi,P'utuqsi,Potosi,Potosí,Putusi,potoshi,pwtwsy,Потоси,פוטוסי,ポトシ -19.58361 -65.75306 P PPLA BO 07 141251 3967 America/La_Paz 2012-01-18
-3907589 Potolo Potolo Comunidad Potolo,Potolo -19.00556 -65.52861 P PPLA4 BO BO 01 0101 01 08 0 3036 America/La_Paz 2011-07-31
-3907646 Portachuelo Portachuelo Portachuelo -17.35 -63.4 P PPL BO 08 11485 297 America/La_Paz 2012-01-18
-3907685 Poopó Poopo -18.36667 -66.96667 P PPL BO 05 1720 3878 America/La_Paz 2006-01-17
-3907753 Pocpo Pocpo Pocpo,Pojpo -18.83333 -65.36667 P PPLA4 BO BO 01 0101 03 03 0 3050 America/La_Paz 2011-07-31
-3907892 Piocera Piocera Comunidad Piocera,Piocera -18.75 -65.4 P PPLA4 BO BO 01 0101 03 07 0 2900 America/La_Paz 2011-07-31
-3907954 Pilaya Pilaya Estancia Pilaya,Pilaya -20.95 -64.75 P PPLA4 BO BO 01 0109 02 08 0 1614 America/La_Paz 2011-07-31
-3908339 Patacamaya Patacamaya Patacamaya,Patacmaya -17.23333 -67.91667 P PPL BO 04 12260 3808 America/La_Paz 2012-01-18
-3909010 Pailón Pailon El Pailon,El Pailón,Pailon,Pailón,Puerto Ibanez,Puerto Ibañez -17.65 -62.75 P PPL BO 08 9304 298 America/La_Paz 2012-01-18
-3909038 Padilla Padilla Padilla -19.3 -64.3 P PPL BO 01 2920 2066 America/La_Paz 2012-01-18
-3909234 Oruro Oruro Ciudad Oruro,Gruro,Oruro,Ururu,Оруро -17.98333 -67.15 P PPLA BO 05 208684 3936 America/La_Paz 2012-01-18
-3909360 Okinawa Número Uno Okinawa Numero Uno -17.23333 -62.81667 P PPL BO 08 4944 260 America/La_Paz 2006-01-17
-3910027 Montero Montero Montero,Vibora,Víbora,Монтеро -17.33333 -63.25 P PPL BO 08 88616 297 America/La_Paz 2012-01-18
-3910094 Monteagudo Monteagudo Monteagudo,Sauces,Villa Monteagudo,Монтеагудо -19.81667 -63.98333 P PPL BO 01 8289 1123 America/La_Paz 2012-01-18
-3910203 Mojotoro Mojotoro Mojocoro,Mojotoro -18.91667 -65.06667 P PPLA4 BO BO 01 0101 01 07 0 2509 America/La_Paz 2011-07-31
-3910244 Mojocoya Mojocoya Mojocoya,Mojocoyo -18.76333 -64.62139 P PPLA4 BO BO 01 0103 03 01 0 2347 America/La_Paz 2011-07-31
-3910291 Mizque Mizque Ciudad Mizque,Ciudad de Mizqu,Ciudad de Mizque -17.94101 -65.34016 P PPL BO 02 30481 2014 America/La_Paz 2009-10-16
-3910343 Mineros Mineros -17.11667 -63.23333 P PPL BO 08 14385 258 America/La_Paz 2006-01-17
-3910743 Maragua Maragua -19.04611 -65.42861 P PPLA4 BO 01 0101 01 11 0 3104 America/La_Paz 2011-07-31
-3910758 Mapiri Mapiri Mapiri -15.25 -68.16667 P PPL BO 04 2597 806 America/La_Paz 2012-01-18
-3910901 Mairana Mairana Mairana -18.11667 -63.93333 P PPL BO 08 4298 1722 America/La_Paz 2012-01-18
-3910971 Machacamarca Machacamarca Machacamarca,Machakamarka -18.16667 -67.03333 P PPL BO 05 2044 3717 America/La_Paz 2012-01-18
-3911120 Los Negros Los Negros Estancia Los Negros,Los Negros -17.73333 -63.43333 P PPL BO 08 3046 420 America/La_Paz 2012-01-18
-3911409 Llallagua Llallagua -18.41667 -66.63333 P PPL BO 07 28069 4105 America/La_Paz 2006-01-17
-3911484 Lintaca Lintaca -20.76667 -65.33333 P PPLA4 BO 01 0107 01 02 0 3189 America/La_Paz 2011-07-31
-3911512 Limoncito Limoncito Limoncito -18.01667 -63.4 P PPL BO 08 3622 537 America/La_Paz 2012-01-19
-3911814 Las Carreras Las Carreras -21.25 -65.28333 P PPLA4 BO 01 0109 03 01 0 2512 America/La_Paz 2011-07-31
-3911815 Las Carreras Las Carreras -21.21667 -65.28333 P PPLA4 BO 01 0109 03 01 0 2553 America/La_Paz 2011-07-31
-3911925 La Paz La Paz Chukiyapu,Chukiyawu,Ciudad La Paz,Civitas Pacis,La Pasas,La Paz,La-Pas,La-Pazo,Soukre/La Paz,la ba si,labaz,lapas,lapaseu,rapasu,Σούκρε/Λα Παζ,Ла-Пас,לה פאס,لاباز,ลาปาซ,ላፓዝ,ラパス,拉巴斯,라파스 -16.5 -68.15 P PPLC BO 04 812799 3782 America/La_Paz 2012-01-19
-3912119 Lahuachaca Lahuachaca Lahuachaca -17.36667 -67.66667 P PPL BO 04 3235 3818 America/La_Paz 2012-01-19
-3912300 La Cueva La Cueva Cueva,La Cueva -20.93333 -64.9 P PPLA4 BO BO 01 0109 02 04 0 3212 America/La_Paz 2011-07-31
-3912418 La Bélgica La Belgica La Belgica,La Bélgica -17.55 -63.21667 P PPL BO 08 5501 353 America/La_Paz 2012-01-19
-3913271 Jorochito Jorochito Jorochiba,Jorochita,Jorochito -18.05 -63.43333 P PPL BO 08 4013 545 America/La_Paz 2012-01-19
-3913985 Isla del Sol Isla del Sol Estancia Yumani,Isla del Sol -16.01667 -69.15 P PPL BO BO 04 2500 3815 America/La_Paz 2012-01-19
-3914084 Irpa Irpa Irpa Irpa Irpa Irpa -17.71667 -66.26667 P PPL BO 02 2968 2467 America/La_Paz 2012-01-19
-3914641 Huayllas Huayllas -19.16972 -65.32611 P PPLA4 BO 01 0101 02 02 0 2692 America/La_Paz 2011-07-31
-3914715 Huatajata Huatajata -16.2 -68.68333 P PPL BO 04 3700 3943 America/La_Paz 2008-05-28
-3914720 Huata Huata -19.01667 -65.25 P PPLA4 BO 01 0101 01 10 0 2917 America/La_Paz 2011-07-31
-3914839 Huanuni Huanuni Huanuni,Villa Huanuni -18.26667 -66.85 P PPL BO 05 15492 4202 America/La_Paz 2012-01-19
-3914988 Huajlaya Huajlaya -20.6 -64.55 P PPLA4 BO 01 0107 03 04 0 2083 America/La_Paz 2011-07-31
-3915350 Guayaramerín Guayaramerin Guajara-Mirim,Guayaramerin,Guayaramerín,Puerto Sucre -10.83676 -65.36136 P PPL BO 03 36008 137 America/La_Paz 2011-09-01
-3917939 Entre Ríos Entre Rios Entre Rios,Entre Ríos,San Luis -21.53333 -64.2 P PPL BO 09 2685 1282 America/La_Paz 2012-01-19
-3918678 Culpina Culpina -20.83333 -64.96667 P PPLA4 BO 01 0109 02 01 0 2941 America/La_Paz 2011-07-31
-3918937 Cotoca Cotoca -17.81667 -63.05 P PPL BO 08 18347 387 America/La_Paz 2006-01-17
-3919085 Coroico Coroico Corioco,Villa de Sagarnaga,Villa de Sagárnaga -16.18889 -67.72713 P PPL BO 04 2361 1740 America/La_Paz 2007-05-27
-3919097 Coripata Coripata Coripata -16.3 -67.6 P PPL BO 04 2107 1688 America/La_Paz 2012-01-19
-3919352 Concepción Concepcion -16.43333 -60.9 P PPL BO 08 6900 478 America/La_Paz 2006-01-17
-3919703 Comarapa Comarapa Comarapa -17.9 -64.48333 P PPL BO 08 4445 2180 America/La_Paz 2012-01-19
-3919715 Colquiri Colquiri Colquiri -17.41667 -67.13333 P PPL BO 04 3933 4470 America/La_Paz 2012-01-19
-3919720 Colquechaca Colquechaca Ciudad Colquechaca,Ciudad de Colquechaca,Colquechaca -18.66667 -66.01667 P PPL BO 07 1706 4618 America/La_Paz 2012-01-19
-3919813 Colomi Colomi Colomi -17.35 -65.86667 P PPL BO 02 3921 3444 America/La_Paz 2012-01-19
-3919884 Colchani Colchani Colchani -20.3 -66.93333 P PPL BO 07 11988 3668 America/La_Paz 2012-01-19
-3919886 Colchani Colchani Calcheni,Colchani -17.31667 -66.71667 P PPL BO BO 02 1074 3411 America/La_Paz 2012-01-19
-3919968 Cochabamba Cochabamba Ciudad Cochabamba,Cochabamba,Kochabamba,Kuchawampa,Quchapampa,kochabanba,qwz'bmbh,Кочабамба,קוצ'במבה,コチャバンバ -17.3895 -66.1568 P PPLA BO 02 900414 2577 America/La_Paz 2012-01-19
-3919998 Cobija Cobija Cobija,Cobila,Cobya,Kobikha,Puerto Cobija,Кобиха -11.02671 -68.76918 P PPLA BO 06 26585 200 America/La_Paz 2010-08-21
-3920016 Cliza Cliza -17.6 -65.93333 P PPL BO 02 8654 2716 America/La_Paz 2006-01-17
-3920185 Chuqui Chuqui Chuqui Chuqui -18.81667 -65.06667 P PPLA4 BO 01 0101 01 04 0 2325 America/La_Paz 2011-07-31
-3920244 Chulumani Chulumani -16.40962 -67.52626 P PPL BO 04 2952 1767 America/La_Paz 2007-05-27
-3920736 Chimoré Chimore Chimore,Chimoré -16.98333 -65.13333 P PPL BO 02 5147 232 America/La_Paz 2012-01-19
-3921062 Chaunaca Chaunaca Chahuanaca,Chahunaca,Chaunaca,Estancia Chaunaca -19.01667 -65.46667 P PPLA4 BO BO 01 0101 01 03 0 2934 America/La_Paz 2011-07-31
-3921141 Charagua Charagua -19.8 -63.21667 P PPL BO 08 3025 852 America/La_Paz 2006-01-17
-3921355 Challapata Challapata Challapata -18.9 -66.76667 P PPL BO 05 8016 3739 America/La_Paz 2012-01-19
-3922032 Carandayti Carandayti Carandaiti,Carandaiti Guazu,Carandaiti Guazú,Carandaity,Carandayti -20.75 -63.06667 P PPLA4 BO BO 01 0110 03 03 0 639 America/La_Paz 2011-07-31
-3922125 Capinota Capinota Capinota -17.71667 -66.23333 P PPL BO 02 5157 2370 America/La_Paz 2012-01-19
-3922414 Camiri Camiri Camiri,Kamiri,Refineria Camiri,Камири -20.05 -63.51667 P PPL BO 08 27961 834 America/La_Paz 2012-01-19
-3922441 Camatindi Camatindi -20.98333 -63.43333 P PPLA4 BO 01 0110 03 02 0 854 America/La_Paz 2011-07-31
-3922451 Camargo Camargo Camargo,Cinti -20.65 -65.21667 P PPLA4 BO 01 0107 01 01 4715 2611 America/La_Paz 2011-07-31
-3922965 Buena Vista Buena Vista Bella Vista,Buena Vista -17.45 -63.66667 P PPL BO 08 4282 355 America/La_Paz 2012-01-19
-3923015 Boyuibe Boyuibe Boyuibe -20.41667 -63.28333 P PPL BO 08 3075 804 America/La_Paz 2012-01-19
-3923145 Betanzos Betanzos -19.55056 -65.45333 P PPL BO 07 4847 3314 America/La_Paz 2006-01-17
-3923438 Azurduy Azurduy Azurdui,Azurduy,Pomabamba,Villa Azurduy -20.1 -64.41667 P PPLA4 BO BO 01 0102 01 01 0 2585 America/La_Paz 2011-07-31
-3923570 Atocha Atocha Atocha -20.93333 -66.23333 P PPL BO 07 1833 3761 America/La_Paz 2012-01-19
-3923644 Ascensión Ascension Anez,Ascencion,Ascención,Ascension,Ascensión,Asencion,Añez -15.7 -63.08333 P PPL BO 08 14429 198 America/La_Paz 2012-01-19
-3923770 Arani Arani Arani -17.56667 -65.76667 P PPL BO 02 3906 2749 America/La_Paz 2012-01-19
-3924341 Aiquile Aiquile -18.20408 -65.18068 P PPL BO 02 8224 2258 America/La_Paz 2009-10-16
-3924610 Achacachi Achacachi Achacachi,Villa Lealtad -16.05 -68.68333 P PPL BO 04 8447 3838 America/La_Paz 2012-01-19
-3924668 Abapó Abapo Abapo,Abapó,Mision Abapo,Misión Abapó -18.83333 -63.46667 P PPL BO 08 2419 745 America/La_Paz 2012-01-19
-3513146 Upper Hell's Gate Upper Hell's Gate Hellsgate 17.643 -63.22649 P PPL BQ SB 2810 195 America/Kralendijk 2011-02-05
-3513173 The Bottom The Bottom Bottom,Leverock Town 17.6259 -63.24919 P PPLA BQ SB 488 222 America/Kralendijk 2010-12-19
-3513426 Oranjestad Oranjestad Orange Town,Oranjestad 17.48268 -62.98324 P PPLA BQ SE 1097 62 America/Kralendijk 2011-02-06
-3513563 Kralendijk Kralendijk Kralendijk,Playa 12.15 -68.26667 P PPLA BQ BO 3081 4 America/Kralendijk 2010-12-19
-3513760 Dorp Tera Kora Dorp Tera Kora Dorp Tera Cora,Dorp Tera Corá,Dorp Tera Kora,Terra Corra 12.13333 -68.26667 P PPL BQ BO 1186 6 America/Kralendijk 2010-12-19
-3513765 Dorp Rincón Dorp Rincon Dorp Rincan,Dorp Rincon,Dorp Rincón,Rincon,Rincón 12.23333 -68.33333 P PPL BQ BO 1496 39 America/Kralendijk 2010-12-19
-3513768 Dorp Antriol Dorp Antriol Deenterra,Dentera,Dorp Antriol,Entrejol 12.16667 -68.26667 P PPL BQ BO 2980 28 America/Kralendijk 2010-12-19
-3384983 Vitorino Freire Vitorino Freire Agua Branca,Centro dos Boas,Senador Vitorino Freire,Vitorino Freire,Água Branca -4.06667 -45.16667 P PPL BR 13 13267 36 America/Fortaleza 2012-01-19
-3384986 Vitória do Mearim Vitoria do Mearim Baixo Mearim,Mearim,Victoria do Baixo Mearim,Vitoria do Baixo Mearim,Vitória do Baixo Mearim -3.46222 -44.87056 P PPL BR 13 15775 15 America/Fortaleza 2006-12-13
-3384987 Vitória de Santo Antão Vitoria de Santo Antao Victoria,Vitoria,Vitorija-de-Santu-Antan,Vitória,Витория-де-Санту-Антан -8.11806 -35.29139 P PPL BR 30 107383 156 America/Recife 2010-01-29
-3385022 Viseu Viseu Vizeu -1.19667 -46.14 P PPL BR 16 18958 13 America/Santarem 2006-12-13
-3385077 Conde Conde Conde,Jacoca -7.25972 -34.9075 P PPL BR 17 15859 116 America/Fortaleza 2006-12-13
-3385088 Vigia Vigia -0.85833 -48.14167 P PPL BR 16 29229 6 America/Santarem 2006-12-13
-3385106 Viçosa do Ceará Vicosa do Ceara Vicosa,Viçosa -3.56222 -41.09222 P PPL BR 06 16636 719 America/Fortaleza 2006-12-13
-3385109 Viçosa Vicosa Assembleia,Assembléia -9.37139 -36.24083 P PPL BR 02 19573 227 America/Maceio 2006-12-13
-3385118 Vicência Vicencia -7.65694 -35.32667 P PPL BR 30 10378 122 America/Recife 2006-12-13
-3385122 Viana Viana Viana,Vianna,Виана -3.22028 -45.00361 P PPL BR 13 26689 13 America/Fortaleza 2010-01-29
-3385467 Várzea Alegre Varzea Alegre -5.35 -40.38333 P PPL BR 06 21841 320 America/Fortaleza 2006-01-17
-3385504 Varjota Varjota -4.19444 -40.47667 P PPL BR 06 16462 187 America/Fortaleza 2006-12-13
-3385538 Vargem Grande Vargem Grande -3.54306 -43.91583 P PPL BR 13 21419 44 America/Fortaleza 2006-12-13
-3385592 Valença do Piauí Valenca do Piaui Berlengas,Valenca,Valença -6.4075 -41.74556 P PPL BR 20 15881 336 America/Fortaleza 2006-12-13
-3385645 Urucurituba Urucurituba -2.68333 -57.66667 P PPL BR 04 10180 11 America/Manaus 2006-01-17
-3385658 Uruçuí Urucui Urussuhy,Urussui,Urussuí -7.22944 -44.55611 P PPL BR 20 12243 173 America/Fortaleza 2006-12-13
-3385670 Urucará Urucara -2.53639 -57.76 P PPL BR 04 8603 17 America/Manaus 2006-12-13
-3385674 Uruburetama Uruburetama Arraial,Sao Joao de Uruburetama,São João de Uruburetama -3.625 -39.50833 P PPL BR 06 12075 127 America/Fortaleza 2006-12-13
-3385726 Urbano Santos Urbano Santos -3.20778 -43.40361 P PPL BR 13 12268 42 America/Fortaleza 2006-12-13
-3385736 Upanema Upanema -5.64194 -37.25778 P PPL BR 22 6704 46 America/Fortaleza 2006-12-13
-3385742 União dos Palmares Uniao dos Palmares Uniao,União -9.16278 -36.03194 P PPL BR 02 41178 154 America/Maceio 2006-12-13
-3385745 União Uniao -4.58583 -42.86417 P PPL BR 20 15677 60 America/Fortaleza 2006-12-13
-3385758 Umirim Umirim Riacho da Sela,Riacho da Sella,Riachuelo -3.67722 -39.35028 P PPL BR 06 12220 63 America/Fortaleza 2006-12-13
-3385778 Umbuzeiro Umbuzeiro -7.69556 -35.66361 P PPL BR 17 4588 527 America/Fortaleza 2006-12-13
-3385826 Umarizal Umarizal Divinopolis -5.99056 -37.81444 P PPL BR 22 8780 174 America/Fortaleza 2006-12-13
-3385850 Uiraúna Uirauna Belem,Belém,Canaa,Canaã -6.51833 -38.41222 P PPL BR 17 7823 298 America/Fortaleza 2006-12-13
-3385873 Ubajara Ubajara -3.85444 -40.92111 P PPL BR 06 13802 855 America/Fortaleza 2006-12-13
-3385883 Uauá Uaua -9.84139 -39.48167 P PPL BR 05 11425 440 America/Bahia 2006-12-13
-3385899 Tutóia Tutoia Tutoya -2.76194 -42.27444 P PPL BR 13 12212 5 America/Fortaleza 2006-12-13
-3385908 Turiaçu Turiacu Turiassu,Turiassú,Tury-Assu,Tury-Assú -1.66333 -45.37167 P PPL BR 13 10471 34 America/Fortaleza 2006-12-13
-3385920 Tupanatinga Tupanatinga Santa Clara -8.75333 -37.33972 P PPL BR 30 5768 718 America/Recife 2006-12-13
-3385922 Tuntum Tuntum Tumtum -5.25806 -44.64889 P PPL BR 13 16402 109 America/Fortaleza 2006-12-13
-3385935 Tucuruí Tucurui Alcobaca,Alcobaça -3.76611 -49.6725 P PPL BR 16 76337 45 America/Santarem 2006-12-13
-3385980 Tucumã Tucuma -0.18333 -50.05 P PPL BR 16 15030 13 America/Santarem 2006-01-17
-3386027 Triunfo Triunfo -6.56667 -38.6 P PPL BR 17 3871 340 America/Fortaleza 2006-01-17
-3386042 Trindade Trindade -7.76194 -40.26778 P PPL BR 30 19313 523 America/Recife 2006-12-13
-3386177 Trairi Trairi Trahiry -3.27778 -39.26889 P PPL BR 06 23126 9 America/Fortaleza 2006-12-13
-3386198 Traipu Traipu Porto da Folha,Pôrto da Fôlha -9.97056 -37.00333 P PPL BR 02 8427 30 America/Maceio 2006-12-13
-3386213 Touros Touros -5.19889 -35.46083 P PPL BR 22 7662 9 America/Fortaleza 2006-12-13
-3386264 Toritama Toritama Toritama,Torres,Торитама -8.00667 -36.05667 P PPL BR 30 23940 356 America/Recife 2010-01-29
-3386279 Tomé Açu Tome Acu -2.41889 -48.15222 P PPL BR 16 34053 21 America/Santarem 2006-12-13
-3386361 Timon Timon Flores,Timon,Тимон -5.09417 -42.83667 P PPL BR 13 124427 76 America/Fortaleza 2010-01-29
-3386372 Timbiras Timbiras Monte Alegre,Urubu,Urubú -4.25528 -43.94056 P PPL BR 13 17875 36 America/Fortaleza 2006-12-13
-3386396 Timbaúba Timbauba Gurjao,Gurjão -7.50528 -35.31833 P PPL BR 30 45121 136 America/Recife 2006-12-13
-3386449 Tianguá Tiangua Barracao,Barracão -3.73222 -40.99167 P PPL BR 06 45696 773 America/Fortaleza 2006-12-13
-3386467 Terra Santa Terra Santa -2.10417 -56.48694 P PPL BR 16 13512 21 America/Santarem 2006-12-13
-3386496 Teresina Teresina Poti,Teresina,Terezina,Theresina,Therezina,Vila Nova do Poti,trzynh,Терезина,תרזינה -5.08917 -42.80194 P PPLA BR 20 744512 87 America/Fortaleza 2007-02-17
-3386533 Teixeira Teixeira -7.22278 -37.25417 P PPL BR 17 9954 780 America/Fortaleza 2006-12-13
-3386543 Tavares Tavares -7.63583 -37.87833 P PPL BR 17 4939 718 America/Fortaleza 2006-12-13
-3386567 São João dos Inhamuns Sao Joao dos Inhamuns Sao Joao dos Inhamuns,São João dos Inhamuns -6 -40.28333 P PPL BR 06 29188 405 America/Fortaleza 2012-01-19
-3386622 Taquaritinga do Norte Taquaritinga do Norte Jaquaritinga do Norte,Taquaretinga,Taquaritinga -7.90306 -36.04417 P PPL BR 30 13379 771 America/Recife 2006-12-13
-3386628 Taquarana Taquarana Cana Brava dos Pais,Cana-Brava,Canna Brava -9.645 -36.49722 P PPL BR 02 5288 242 America/Maceio 2006-12-13
-3386693 Taperoá Taperoa Batalhao,Batalhão -7.2075 -36.82667 P PPL BR 17 8879 533 America/Fortaleza 2006-12-13
-3386842 Tangará Tangara Riacho -6.19944 -35.80167 P PPL BR 22 8067 188 America/Fortaleza 2006-12-13
-3386874 Tamboril Tamboril Tambari -4.83222 -40.32056 P PPL BR 06 14292 321 America/Fortaleza 2006-12-13
-3386931 Tamandaré Tamandare -8.75972 -35.10472 P PPL BR 30 17954 10 America/Recife 2006-12-13
-3386957 Taipu Taipu -5.62167 -35.59667 P PPL BR 22 4606 42 America/Fortaleza 2006-12-13
-3387082 Tabira Tabira Espirito Santo,Madeira -7.59083 -37.53944 P PPL BR 30 16926 571 America/Recife 2006-12-13
-3387115 Surubim Surubim -7.83306 -35.75472 P PPL BR 30 34580 377 America/Recife 2006-12-13
-3387130 Sumé Sume Sao Thome,Sao Tome,São Thomé,São Tomé -7.67167 -36.88 P PPL BR 17 10440 518 America/Fortaleza 2006-12-13
-3387202 Sousa Sousa Souza -6.75917 -38.22806 P PPL BR 17 47927 229 America/Fortaleza 2006-12-13
-3387204 Soure Soure -0.71667 -48.52333 P PPL BR 16 18212 17 America/Santarem 2006-12-13
-3387258 Soledade Soledade Ibiapinopolis,Ibiapinópolis -7.05722 -36.36278 P PPL BR 17 8090 526 America/Fortaleza 2006-12-13
-3387266 Solânea Solanea Moreno -6.755 -35.54 P PPL BR 17 17030 188 America/Fortaleza 2006-12-13
-3387296 Sobral Sobral Januaria de Acaracu,Januária de Acaracu,Sobral,Sobrat,Собрал -3.68611 -40.34972 P PPL BR 06 157996 75 America/Fortaleza 2010-01-29
-3387620 Simplício Mendes Simplicio Mendes -7.85389 -41.91028 P PPL BR 20 7076 292 America/Fortaleza 2006-12-13
-3387625 Simões Simoes -7.59889 -40.81778 P PPL BR 20 4332 442 America/Fortaleza 2006-12-13
-3387644 Severiano Melo Severiano Melo -5.77722 -37.95778 P PPL BR 22 2503 150 America/Fortaleza 2006-12-13
-3387663 Sertânia Sertania Alagoa de Baixo -8.07361 -37.26444 P PPL BR 30 18190 558 America/Recife 2006-12-13
-3387786 Serra Talhada Serra Talhada Vila Bela,Villa Bella -7.99194 -38.29833 P PPL BR 30 51203 436 America/Recife 2006-12-13
-3387880 Serra Branca Serra Branca -6.53333 -38.26667 P PPL BR 17 8765 327 America/Fortaleza 2006-01-17
-3387926 Senador Pompeu Senador Pompeu -5.58806 -39.37167 P PPL BR 06 16515 181 America/Fortaleza 2006-12-13
-3387928 Senador José Porfírio Senador Jose Porfirio -2.59083 -51.95417 P PPL BR 16 5708 7 America/Santarem 2006-12-13
-3387987 Satuba Satuba -9.56333 -35.82444 P PPL BR 02 15887 48 America/Maceio 2006-12-13
-3388092 São Tomé Sao Tome Sao Thome,São Thomé -5.9725 -36.07528 P PPL BR 22 6137 167 America/Fortaleza 2006-12-13
-3388112 São Sebastião Sao Sebastiao Salome,Salomé,San-Sebast'jan,Сан-Себастьян -9.93361 -36.55417 P PPL BR 02 9551 204 America/Maceio 2010-01-29
-3388145 São Raimundo Nonato Sao Raimundo Nonato Raimundo Nonato,Sao Raymundo Nonato -9.01528 -42.69944 P PPL BR 20 19569 354 America/Fortaleza 2006-12-13
-3388147 São Raimundo das Mangabeiras Sao Raimundo das Mangabeiras Sao Raymundo do Rio Neves,São Raymundo do Rio Neves -7.02194 -45.48111 P PPL BR 13 10216 241 America/Fortaleza 2006-12-13
-3388173 São Pedro do Piauí Sao Pedro do Piaui Sao Pedro,São Pedro -5.92944 -42.71861 P PPL BR 20 7408 263 America/Fortaleza 2006-12-13
-3388238 São Paulo do Potengi Sao Paulo do Potengi Potengy,Sao Paulo do Potengi,São Paulo do Potengi -5.895 -35.76278 P PPL BR 22 9333 78 America/Fortaleza 2006-12-13
-3388266 São Miguel do Tapuio Sao Miguel do Tapuio Deliciosa,Sao Miguel,São Miguel,Tapuio -5.50361 -41.32333 P PPL BR 20 7964 283 America/Fortaleza 2006-12-13
-3388269 São Miguel dos Campos Sao Miguel dos Campos San-Migel'-dus-Kampus,Sao Miguel,Sao Miguel De Campos,São Miguel,Сан-Мигель-дус-Кампус -9.78111 -36.09361 P PPL BR 02 40890 13 America/Maceio 2010-01-29
-3388270 São Miguel do Guamá Sao Miguel do Guama Guama,Guamá -1.62667 -47.48333 P PPL BR 16 28265 9 America/Santarem 2006-12-13
-3388304 São Miguel Sao Miguel -5.46667 -35.36667 P PPL BR 22 12838 23 America/Fortaleza 2006-01-17
-3388318 São Mateus do Maranhão Sao Mateus do Maranhao -4.04167 -44.475 P PPL BR 13 28233 47 America/Fortaleza 2006-12-13
-3388341 São Luís do Quitunde Sao Luis do Quitunde Sao Luiz de Quitunde,Sao Luiz do Quitunde,São Luiz de Quitunde,São Luiz do Quitunde -9.31833 -35.56111 P PPL BR 02 20563 7 America/Maceio 2006-12-13
-3388368 São Luís Sao Luis Maranhao,Maranhão,San-Luis,Sao Luis,Sao Luis do Maranhao,Sao Luiz,Sao Luiz de Maranhao,Sao Luiz do Maranhao,São Luis,São Luiz,São Luiz de Maranhão,São Luiz do Maranhão,São Luís,São Luís do Maranhão,Сан-Луис,סאו לואיס -2.52972 -44.30278 P PPLA BR 13 917237 29 America/Fortaleza 2007-02-17
-3388376 São Lourenço da Mata Sao Lourenco da Mata San-Lorensu-da-Mata,Sao Lourenco,Sao Lourenco da Matta,São Lourenço,São Lourenço da Matta,Сан-Лоренсу-да-Мата -8.00222 -35.01833 P PPL BR 30 88416 48 America/Recife 2010-01-29
-3388435 São José do Egito Sao Jose do Egito Queimadas,Sao Jose da Ingazeira,Sao Jose das Queimadas,Sao Jose do Egypto,São José da Ingàzeira,São José das Queimadas,São José do Egypto -7.47889 -37.27444 P PPL BR 30 18218 594 America/Recife 2006-12-13
-3388437 São José do Campestre Sao Jose do Campestre Campestre -6.31556 -35.71389 P PPL BR 22 10254 153 America/Fortaleza 2006-12-13
-3388440 São José do Belmonte Sao Jose do Belmonte Belmonte,Manicobal,Manissobal,Maniçobal -7.86139 -38.75972 P PPL BR 30 14211 493 America/Recife 2006-12-13
-3388441 São José de Ribamar Sao Jose de Ribamar Ribamar,Sao-Jose-do-Ribamar,São-José-do-Ribamar -2.56194 -44.05417 P PPL BR 13 27777 -9999 America/Fortaleza 2006-12-13
-3388442 São José de Piranhas Sao Jose de Piranhas Jatoba,Jatobá -7.12056 -38.50194 P PPL BR 17 7628 344 America/Fortaleza 2006-12-13
-3388443 São José de Mipibu Sao Jose de Mipibu Sao Jose Do Mipibu -6.07472 -35.23778 P PPL BR 22 15298 63 America/Fortaleza 2006-12-13
-3388447 São José da Tapera Sao Jose da Tapera -9.55833 -37.38111 P PPL BR 02 12391 252 America/Maceio 2006-12-13
-3388454 São José da Laje Sao Jose da Laje Jose da Lage,José da Lage,Sao Jose da Lage,São José da Lage -9.00972 -36.05833 P PPL BR 02 12810 265 America/Maceio 2006-12-13
-3388456 São José da Coroa Grande Sao Jose da Coroa Grande Puiracu,Puirassu,Puirassú,Puiraçu -8.89778 -35.14778 P PPL BR 30 11512 9 America/Recife 2006-12-13
-3388567 São Joaquim do Monte Sao Joaquim do Monte Camaratuba,Sao Joaquim,São Joaquim -8.4325 -35.80444 P PPL BR 30 13520 483 America/Recife 2006-12-13
-3388615 São João dos Patos Sao Joao dos Patos -6.495 -43.70222 P PPL BR 13 19538 346 America/Fortaleza 2006-12-13
-3388618 São João do Piauí Sao Joao do Piaui Sao Joao Do Piauhy,São Joao Do Piauhy -8.35806 -42.24667 P PPL BR 20 12688 219 America/Fortaleza 2006-12-13
-3388626 São João de Pirabas Sao Joao de Pirabas -0.77472 -47.17722 P PPL BR 16 10065 26 America/Santarem 2006-12-13
-3388635 São João Batista Sao Joao Batista Ibipeuara -2.95528 -44.80694 P PPL BR 13 3634 6 America/Fortaleza 2006-12-13
-3388660 São João Sao Joao -8.87556 -36.36667 P PPL BR 30 6926 712 America/Recife 2006-12-13
-3388713 São Gonçalo do Amarante Sao Goncalo do Amarante Felipe Camarao,Felipe Camarão,Filipe Camarao,Filipe Camarão,Sao Goncalo,São Gonçalo -5.79333 -35.32944 P PPL BR 22 10381 15 America/Fortaleza 2006-12-13
-3388714 São Gonçalo do Amarante Sao Goncalo do Amarante Anacetaba,Sao Goncalo,São Gonçalo -3.60722 -38.96833 P PPL BR 06 23583 23 America/Fortaleza 2006-12-13
-3388760 São Geraldo do Araguaia Sao Geraldo do Araguaia -6.40056 -48.555 P PPL BR 16 12925 131 America/Araguaina 2006-12-13
-3388847 São Félix do Xingu Sao Felix do Xingu Sao Felix,São Felix -6.64472 -51.995 P PPL BR 16 16477 199 America/Santarem 2006-12-13
-3388868 São Domingos do Maranhão Sao Domingos do Maranhao Pucuma,Pucumã -5.57583 -44.38528 P PPL BR 13 18275 179 America/Fortaleza 2006-12-13
-3388926 São Caetano de Odivelas Sao Caetano de Odivelas Sao Caetano de Odivellas,São Caetano de Odivellas -0.75 -48.02 P PPL BR 16 8862 8 America/Santarem 2006-12-13
-3388949 São Bernardo Sao Bernardo Sao Bernardo do Parnahyba,São Bernardo do Parnahyba -3.36139 -42.41778 P PPL BR 13 11171 29 America/Fortaleza 2006-12-13
-3388991 São Bento Sao Bento -6.28333 -37.75 P PPL BR 17 24749 476 America/Fortaleza 2006-01-17
-3389006 São Bento Sao Bento San-Bentu,Sao Benito dos Perizes,Sao Bento das Perdizes,Sao Bento dos Perizes,São Benito dos Perizes,São Bento das Perdizes,Сан-Бенту -2.69583 -44.82139 P PPL BR 13 17245 10 America/Fortaleza 2010-01-29
-3389012 São Benedito do Rio Preto Sao Benedito do Rio Preto Curuzu,Sao Benedicto,Sao Benedito,São Benedicto,São Benedito -3.33361 -43.52833 P PPL BR 13 12079 34 America/Fortaleza 2006-12-13
-3389062 Santo Antônio do Tauá Santo Antonio do Taua Santo Antonio,Santo Antonio de Taua,Santo Antônio,Santo Antônio de Tauá -1.15194 -48.12944 P PPL BR 16 8921 18 America/Santarem 2006-12-13
-3389134 Santo Antônio Santo Antonio Padre Miguelinho -6.31056 -35.47889 P PPL BR 22 12529 93 America/Fortaleza 2006-12-13
-3389321 Santa Rita Santa Rita -7.11389 -34.97806 P PPL BR 17 119893 6 America/Fortaleza 2006-12-13
-3389339 Santa Rita Santa Rita Santa Rita,Санта Рита -3.83333 -43.88333 P PPL BR 13 13224 38 America/Fortaleza 2012-01-19
-3389353 Santarém Santarem Santarem,Santaren,Santarém,Сантарен -2.44306 -54.70833 P PPL BR 16 189047 51 America/Santarem 2010-01-29
-3389358 Santa Quitéria do Maranhão Santa Quiteria do Maranhao Bacuri,Bacurí,Santa Quiteria,Santa Quitéria -3.51556 -42.54667 P PPL BR 13 17174 29 America/Fortaleza 2006-12-13
-3389361 Santa Quitéria Santa Quiteria -4.33194 -40.15667 P PPL BR 06 24391 198 America/Fortaleza 2006-12-13
-3389380 Santana do Mundaú Santana do Mundau Mundahu Mirim,Mundahú Mirim,Mundau Mirim,Mundaú Mirim -9.16806 -36.22222 P PPL BR 02 6439 229 America/Maceio 2006-12-13
-3389381 Santana do Matos Santana do Matos Sant'Anna dos Mattos -5.9575 -36.65556 P PPL BR 22 8050 144 America/Fortaleza 2006-12-13
-3389384 Santana do Ipanema Santana do Ipanema Sant'Anna do Ipanema,Santana-du-Ipanema,Сантана-ду-Ипанема -9.37833 -37.24528 P PPL BR 02 26146 240 America/Maceio 2010-01-29
-3389387 Santana do Acaraú Santana do Acarau Licania,Sant'Anna,Santana -3.46056 -40.21222 P PPL BR 06 14707 46 America/Fortaleza 2006-12-13
-3389459 Santa Maria do Pará Santa Maria do Para Santa Maria -1.35028 -47.57556 P PPL BR 16 12915 51 America/Santarem 2006-12-13
-3389462 Santa Maria da Boa Vista Santa Maria da Boa Vista Boa Vista,Coripos,Coripós,Santa Maria Boa Vista -8.80778 -39.82556 P PPL BR 30 14695 351 America/Bahia 2006-12-13
-3389557 Santa Luzia Santa Luzia -7.63333 -47.2 P PPL BR 13 22909 191 America/Fortaleza 2006-01-17
-3389560 Santa Luzia Santa Luzia -6.87222 -36.91861 P PPL BR 17 13243 304 America/Fortaleza 2006-12-13
-3389609 Santa Inês Santa Ines Ines,Inês,Santa-Ines,Санта-Инес -3.66667 -45.38 P PPL BR 13 67424 31 America/Fortaleza 2010-01-29
-3389622 Santa Helena Santa Helena -2.23111 -45.3 P PPL BR 13 16045 12 America/Fortaleza 2006-12-13
-3389652 Santa Cruz do Capibaribe Santa Cruz do Capibaribe Capibaribe,Santa Cruz -7.9575 -36.20472 P PPL BR 30 76450 445 America/Recife 2006-12-13
-3389673 Santa Cruz Santa Cruz -6.22944 -36.02278 P PPL BR 22 27775 230 America/Fortaleza 2006-12-13
-3389822 Salinópolis Salinopolis Salinas -0.61361 -47.35611 P PPL BR 16 40998 10 America/Santarem 2006-12-13
-3389860 Salgueiro Salgueiro Salgejru,Salqueiro,Салгейру -8.07417 -39.11917 P PPL BR 30 42152 420 America/Recife 2010-01-29
-3389873 Salgado de São Félix Salgado de Sao Felix Abura,Aburá,Ibura,Salgada,Salgado -7.35694 -35.44056 P PPL BR 17 4266 64 America/Fortaleza 2006-12-13
-3390160 Russas Russas Rucas,Ruças,Sao Bernardo das Russas,São Bernardo das Russas -4.94028 -37.97583 P PPL BR 06 39465 26 America/Fortaleza 2006-12-13
-3390280 Rio Tinto Rio Tinto -6.80306 -35.08056 P PPL BR 17 11804 35 America/Fortaleza 2006-12-13
-3390288 Rio Largo Rio Largo -9.47833 -35.85333 P PPL BR 02 63387 97 America/Maceio 2006-12-13
-3390295 Rio Formoso Rio Formoso -8.66361 -35.15861 P PPL BR 30 15518 15 America/Recife 2006-12-13
-3390326 Ribeirão Ribeirao -8.51444 -35.37778 P PPL BR 30 29818 128 America/Recife 2006-12-13
-3390581 Riachão Riachao Riachaq -7.36194 -46.61722 P PPL BR 13 12427 385 America/Fortaleza 2006-12-13
-3390659 Reriutaba Reriutaba Santa Cruz -4.14167 -40.58222 P PPL BR 06 12076 153 America/Fortaleza 2006-12-13
-3390674 Remígio Remigio Lagoa do Remigio,Lagôa do Remigio,Remigio,Remígio -6.93333 -35.78333 P PPL BR 17 9659 556 America/Fortaleza 2012-01-19
-3390700 Regeneração Regeneracao -6.23778 -42.68833 P PPL BR 20 13608 169 America/Fortaleza 2006-12-13
-3390732 Redenção Redencao Redempcao,Redempção -4.22583 -38.73056 P PPL BR 06 14174 93 America/Fortaleza 2006-12-13
-3390760 Recife Recife Arrecife,Mauricea,Mauricéa,Pernambuco,Recife,Resife,Resifi,lei xi fei,reshife,rsyph,Ресифе,Ресифи,רסיפה,レシフェ,累西腓 -8.05389 -34.88111 P PPLA BR 30 2611606 1478098 8 America/Recife 2010-01-21
-3390814 Raposa Raposa -6.51667 -44.18333 P PPL BR 13 11883 387 America/Fortaleza 2006-01-17
-3390896 Quixeré Quixere -5.07417 -37.98861 P PPL BR 06 11258 31 America/Fortaleza 2006-12-13
-3390901 Quixeramobim Quixeramobim Nova Vila do Campo Maior,Santo Antonio do Bogueirao de Quixeramobim,Santo Antônio do Bogueirão de Quixeramobim -5.19917 -39.29278 P PPL BR 06 34321 202 America/Fortaleza 2006-12-13
-3390907 Quixadá Quixada -4.97139 -39.01528 P PPL BR 06 49328 186 America/Fortaleza 2006-12-13
-3390965 Quipapá Quipapa -8.82778 -36.01167 P PPL BR 30 11533 458 America/Recife 2006-12-13
-3391090 Quebrangulo Quebrangulo Victoria,Vitoria,Vitória -9.31889 -36.47111 P PPL BR 02 6587 370 America/Maceio 2006-12-13
-3391130 Puxinanã Puxinana -7.16111 -35.96056 P PPL BR 17 3210 671 America/Fortaleza 2006-12-13
-3391172 Princesa Isabel Princesa Isabel Princesa,Princess Isabel,Princeza -7.73667 -37.99333 P PPL BR 17 12616 686 America/Fortaleza 2006-12-13
-3391220 Presidente Dutra Presidente Dutra Curador -5.29 -44.49 P PPL BR 13 30330 108 America/Fortaleza 2006-12-13
-3391287 Prainha Prainha -1.8 -53.48 P PPL BR 16 6481 35 America/Santarem 2006-12-13
-3391360 Santana Santana Porto,Porto de Santana,Pôrto,Pôrto de Santana,Santana,Сантана -0.05833 -51.18167 P PPL BR 03 83927 0 America/Belem 2010-01-29
-3391371 Porto Franco Porto Franco -6.33833 -47.39917 P PPL BR 13 14873 165 America/Araguaina 2006-12-13
-3391387 Porto de Moz Porto de Moz Porto de Mos,Pôrto de Mós -1.74833 -52.23833 P PPL BR 16 9912 20 America/Santarem 2006-12-13
-3391395 Porto da Folha Porto da Folha -9.91722 -37.27833 P PPL BR 28 9420 42 America/Maceio 2006-12-13
-3391397 Porto Calvo Porto Calvo -9.045 -35.39833 P PPL BR 02 17346 20 America/Maceio 2006-12-13
-3391408 Porto Porto Joao Pessoa,João Pessoa -3.89333 -42.71 P PPL BR 20 6535 40 America/Fortaleza 2006-12-13
-3391412 Portel Portel -1.93556 -50.82111 P PPL BR 16 21315 12 America/Belem 2006-12-13
-3391556 Pombos Pombos Sao Joao dos Pombos,São João dos Pombos -8.14139 -35.39583 P PPL BR 30 15894 206 America/Recife 2006-12-13
-3391571 Pombal Pombal -6.77028 -37.80167 P PPL BR 17 21751 185 America/Fortaleza 2006-12-13
-3391686 Poço das Trincheiras Poco das Trincheiras -9.3125 -37.28556 P PPL BR 02 1775 292 America/Maceio 2006-12-13
-3391744 Poço Branco Poco Branco -5.62278 -35.66278 P PPL BR 22 7112 87 America/Fortaleza 2006-12-13
-3391762 Pocinhos Pocinhos Joffily,Jóffily -7.07667 -36.06111 P PPL BR 17 7803 633 America/Fortaleza 2006-12-13
-3391774 Poção de Pedras Pocao de Pedras Pocao de Pedra,Pocao de Pedro,Pocão de Pedro,Poção de Pedra -4.66667 -44.85 P PPL BR 13 12337 41 America/Fortaleza 2006-12-13
-3391889 Pitimbu Pitimbu -7.47056 -34.80861 P PPL BR 17 7862 12 America/Fortaleza 2006-12-13
-3391895 Pirpirituba Pirpirituba -6.78 -35.49861 P PPL BR 17 8355 107 America/Fortaleza 2006-12-13
-3391908 Piripiri Piripiri Periperi,Peripery,Periperí -4.27333 -41.77694 P PPL BR 20 44864 164 America/Fortaleza 2006-12-13
-3391940 Pirapemas Pirapemas Arapema -3.72667 -44.22333 P PPL BR 13 6439 36 America/Fortaleza 2006-12-13
-3391991 Piracuruca Piracuruca -3.92806 -41.70917 P PPL BR 20 18852 75 America/Fortaleza 2006-12-13
-3392018 Pio XII Pio XII -3.8325 -45.1525 P PPL BR 13 14773 13 America/Fortaleza 2006-12-13
-3392020 Pio IX Pio IX Patrocinio,Patrocínio,Pio Nono,Pio Nôno,Umbuzeiro -6.8375 -40.57917 P PPL BR 20 4973 498 America/Fortaleza 2006-12-13
-3392054 Pinheiro Pinheiro Pin'ejru,Pinheiros,Пиньейру -2.52139 -45.0825 P PPL BR 13 38893 9 America/Fortaleza 2010-01-29
-3392088 Pindaré Mirim Pindare Mirim Engenho Central,Sao Pedro,Sao Pedro de Alcantara,São Pedro,São Pedro de Alcantara -3.60833 -45.34333 P PPL BR 13 22933 24 America/Fortaleza 2006-12-13
-3392095 Pimenteiras Pimenteiras Pimenteira -6.24528 -41.41917 P PPL BR 20 3819 280 America/Fortaleza 2006-12-13
-3392126 Pilar Pilar Manguaba,Pilar,Пилар -9.59722 -35.95667 P PPL BR 02 30617 125 America/Maceio 2010-01-29
-3392127 Pilar Pilar -7.26722 -35.26 P PPL BR 17 7588 38 America/Fortaleza 2006-12-13
-3392145 Picuí Picui Picuhy -6.51056 -36.34694 P PPL BR 17 10779 445 America/Fortaleza 2006-12-13
-3392167 Picos Picos Pikos,Pikus,Пикус -7.07694 -41.46694 P PPL BR 20 57495 203 America/Fortaleza 2010-01-29
-3392225 Piancó Pianco -7.19806 -37.92917 P PPL BR 17 10481 268 America/Fortaleza 2006-12-13
-3392242 Petrolina Petrolina Petrolina,Петролина -9.39861 -40.50083 P PPL BR 30 194650 383 America/Recife 2010-01-29
-3392243 Jatobá Jatoba Itaparica,Jatoba,Jatobe,Jatobá,Ятоба -9.18306 -38.26889 P PPL BR 30 20575 286 America/Recife 2010-01-29
-3392251 Pesqueira Pesqueira -8.35778 -36.69639 P PPL BR 30 41896 655 America/Recife 2006-12-13
-3392345 Pentecoste Pentecoste -3.79278 -39.27028 P PPL BR 06 19680 59 America/Fortaleza 2006-12-13
-3392361 Pendências Pendencias Independencia,Pendencia,Pendência -5.26 -36.72222 P PPL BR 22 9363 14 America/Fortaleza 2006-12-13
-3392368 Penalva Penalva -3.29417 -45.17361 P PPL BR 13 17186 17 America/Fortaleza 2006-12-13
-3392425 Pedro Velho Pedro Velho -6.43917 -35.22139 P PPL BR 22 6366 25 America/Fortaleza 2006-12-13
-3392431 Pedro II Pedro II Itamaraty,Matoes,Matões,Pedro Segundo -4.42472 -41.45861 P PPL BR 20 22038 608 America/Fortaleza 2006-12-13
-3392478 Pedras de Fogo Pedras de Fogo -7.40194 -35.11639 P PPL BR 17 13894 174 America/Recife 2006-12-13
-3392629 Pedra Branca Pedra Branca Pedra-Branka,Tabuleiro da Peruca,Педра-Бранка -5.45417 -39.71722 P PPL BR 06 20072 506 America/Fortaleza 2010-01-29
-3392657 Pedra Pedra -8.49694 -36.94083 P PPL BR 30 11196 614 America/Recife 2006-12-13
-3392731 Paulo Ramos Paulo Ramos -4.21667 -45.18333 P PPL BR 13 8888 55 America/Fortaleza 2006-01-17
-3392734 Paulo Afonso Paulo Afonso Barra,Brejo -9.40611 -38.21472 P PPL BR 05 85350 245 America/Bahia 2007-02-08
-3392740 Paulista Paulista Paulista,Паулиста -7.94083 -34.87306 P PPL BR 30 289971 20 America/Recife 2006-12-13
-3392742 Paulista Paulista Paulista,Piranha,Паулиста -6.59389 -37.62417 P PPL BR 17 3677 165 America/Fortaleza 2010-01-29
-3392862 Patu Patu -6.11 -37.63667 P PPL BR 22 8841 253 America/Fortaleza 2006-12-13
-3392887 Patos Patos -7.02444 -37.28 P PPL BR 17 92575 243 America/Fortaleza 2006-12-13
-3392907 Pastos Bons Pastos Bons -6.60167 -44.07667 P PPL BR 13 10468 250 America/Fortaleza 2006-12-13
-3392916 Passira Passira Malhada,Pacira,Pedra Tapada -7.995 -35.58056 P PPL BR 30 12664 188 America/Recife 2006-12-13
-3392942 Passagem Franca Passagem Franca -6.17972 -43.78361 P PPL BR 13 7376 237 America/Fortaleza 2006-12-13
-3392996 Parnarama Parnarama -5.68167 -43.09333 P PPL BR 13 12201 87 America/Fortaleza 2010-05-04
-3392997 Parnamirim Parnamirim Leopoldina -8.09056 -39.57833 P PPL BR 30 7928 396 America/Recife 2006-12-13
-3392998 Parnamirim Parnamirim Eduardo Gomes,Parnamirim -5.91556 -35.26278 P PPLA2 BR 22 2403251 150343 56 America/Fortaleza 2012-03-10
-3393001 Parnaíba Parnaiba Feitoria,Parnahiba,Parnahyba,Parnaiba,Porto das Barcas,Pôrto das Barcas,Sao Joao da Parnahiba,São Joao da Parnahiba,Парнаиба -2.90472 -41.77667 P PPL BR 20 138008 9 America/Fortaleza 2010-01-29
-3393008 Parintins Parintins Parintins,Parintinsa,Паринтинса -2.62833 -56.73583 P PPL BR 04 64428 17 America/Manaus 2010-01-29
-3393017 Parelhas Parelhas -6.68778 -36.6575 P PPL BR 22 16377 274 America/Fortaleza 2006-12-13
-3393065 Parambu Parambu Cachoeirinha,Sao Pedro da Cachoeirinha,São Pedro da Cachoeirinha -6.21111 -40.69444 P PPL BR 06 14656 478 America/Fortaleza 2006-12-13
-3393091 Paraipaba Paraipaba Tigre -3.43944 -39.14833 P PPL BR 06 18423 34 America/Fortaleza 2006-12-13
-3393095 Paraibano Paraibano -6.43306 -43.98361 P PPL BR 13 12363 282 America/Fortaleza 2006-12-13
-3393106 Paragominas Paragominas -2.96667 -47.48333 P PPL BR 16 69613 119 America/Santarem 2006-01-17
-3393115 Paracuru Paracuru -3.41 -39.03056 P PPL BR 06 21196 23 America/Fortaleza 2006-12-13
-3393174 Pão de Açúcar Pao de Acucar Pao de Assucar,Páo de Assucar -9.74833 -37.43667 P PPL BR 02 11497 23 America/Maceio 2006-12-13
-3393240 Palmeirais Palmeirais Belem,Belém -5.97778 -43.06333 P PPL BR 20 4262 90 America/Fortaleza 2006-12-13
-3393264 Palmares Palmares -8.68333 -35.59167 P PPL BR 30 41679 115 America/Recife 2006-12-13
-3393400 Pacatuba Pacatuba -3.98417 -38.62028 P PPL BR 06 55291 72 America/Fortaleza 2006-12-13
-3393409 Pacajus Pacajus Guarani,Guarany -4.1725 -38.46056 P PPL BR 06 41558 80 America/Fortaleza 2006-12-13
-3393452 Ouricuri Ouricuri Ouricury -7.8825 -40.08167 P PPL BR 30 29317 451 America/Recife 2006-12-13
-3393455 Ourém Ourem -1.55194 -47.11444 P PPL BR 16 8145 14 America/Santarem 2006-12-13
-3393465 Orós Oros Onos -6.24444 -38.91361 P PPL BR 06 16328 193 America/Fortaleza 2006-12-13
-3393470 Orobó Orobo Queimadas -7.745 -35.60222 P PPL BR 30 5884 392 America/Recife 2006-12-13
-3393471 Oriximiná Oriximina -1.76556 -55.86611 P PPL BR 16 35581 34 America/Santarem 2006-12-13
-3393525 Olivença Olivenca Capim -9.51861 -37.19056 P PPL BR 02 2848 226 America/Maceio 2006-12-13
-3393536 Olinda Olinda Olinda,olinda,Олинда,אולינדה,ოლინდა -8.00889 -34.85528 P PPL BR 30 366754 37 America/Recife 2007-02-17
-3393762 Oeiras do Pará Oeiras do Para Araticu -2.00306 -49.85444 P PPL BR 16 10162 6 America/Santarem 2006-12-13
-3393764 Oeiras Oeiras Mocha -7.02528 -42.13111 P PPL BR 20 21071 181 America/Fortaleza 2006-12-13
-3393766 Ocara Ocara Jurema -4.49083 -38.59667 P PPL BR 06 6793 124 America/Fortaleza 2006-12-13
-3393768 Ábidos Abidos -1.9175 -55.51806 P PPL BR 16 24970 27 America/Santarem 2006-12-13
-3393783 Novo Oriente Novo Oriente -5.53444 -40.77417 P PPL BR 06 14529 347 America/Fortaleza 2006-12-13
-3393792 Novo Lino Novo Lino -8.915 -35.64667 P PPL BR 02 5538 187 America/Maceio 2006-12-13
-3393832 Nova Russas Nova Russas -4.70667 -40.56306 P PPL BR 06 21986 239 America/Fortaleza 2006-12-13
-3393838 Nova Olinda do Norte Nova Olinda do Norte Boca do Fumaco,Bocca do Fumaco -3.88806 -59.09417 P PPL BR 04 12343 16 America/Manaus 2006-12-13
-3393867 Nova Floresta Nova Floresta -6.45528 -36.20333 P PPL BR 17 8623 670 America/Fortaleza 2006-12-13
-3393876 Nova Cruz Nova Cruz -6.47806 -35.43389 P PPL BR 22 23166 90 America/Fortaleza 2006-12-13
-3393922 Nísia Floresta Nisia Floresta Papari,Papary -6.09111 -35.20861 P PPL BR 22 10115 19 America/Fortaleza 2006-12-13
-3393929 Nhamundá Nhamunda Ilha das Cotias,Ilha das Cutias -2.18611 -56.71306 P PPL BR 04 7772 1 America/Santarem 2006-12-13
-3393972 Nazaré da Mata Nazare da Mata Nazar-da-Mata,Nazare,Nazareth,Nazaré,Назар-да-Мата -7.74167 -35.22778 P PPL BR 30 26485 96 America/Recife 2010-01-29
-3394018 Natuba Natuba -7.64139 -35.55 P PPL BR 17 3333 343 America/Fortaleza 2006-12-13
-3394023 Natal Natal Natal,Natalo,Натал,נאטאל -5.795 -35.20944 P PPLA BR 22 763043 32 America/Fortaleza 2007-02-17
-3394116 Murici Murici -9.30667 -35.94333 P PPL BR 02 20419 98 America/Maceio 2006-12-13
-3394238 Mulungu Mulungu Camarazal -7.02444 -35.46194 P PPL BR 17 4181 89 America/Fortaleza 2006-12-13
-3394326 Muaná Muana -1.52833 -49.21667 P PPL BR 16 7464 7 America/Santarem 2006-12-13
-3394372 Morros Morros -9.44667 -46.30028 P PPL BR 13 4829 484 America/Fortaleza 2006-01-17
-3394453 Moreno Moreno -8.11861 -35.09222 P PPL BR 30 45237 78 America/Recife 2006-12-13
-3394500 Morada Nova Morada Nova Espirito Santo,Espírito Santo -5.10667 -38.3725 P PPL BR 06 37389 54 America/Fortaleza 2006-12-13
-3394539 Montes Altos Montes Altos Monte Alto -5.83333 -47.06667 P PPL BR 13 3518 242 America/Fortaleza 2006-12-13
-3394549 Monteiro Monteiro Alagoa do Monteiro,Alagôa do Monteiro,Monterio -7.88944 -37.12 P PPL BR 17 17726 600 America/Fortaleza 2006-12-13
-3394594 Monte Alegre Monte Alegre -5.88972 -36.30139 P PPL BR 22 6643 422 America/Fortaleza 2006-01-17
-3394605 Monte Alegre Monte Alegre -2.00778 -54.06917 P PPL BR 16 22840 26 America/Santarem 2006-12-13
-3394612 Montanhas Montanhas Lagoa da Montanha,Lagôa da Montanha -6.48583 -35.2875 P PPL BR 22 8442 87 America/Fortaleza 2006-12-13
-3394621 Monsenhor Gil Monsenhor Gil Gil,Natal -5.56417 -42.60778 P PPL BR 20 4751 129 America/Fortaleza 2006-12-13
-3394640 Monção Moncao Carara,Carará -3.49167 -45.25111 P PPL BR 13 11050 26 America/Fortaleza 2006-12-13
-3394649 Mombaça Mombaca Maria Pereira -5.74306 -39.6275 P PPL BR 06 17065 251 America/Fortaleza 2006-12-13
-3394661 Moju Moju -1.88389 -48.76889 P PPL BR 16 21510 9 America/Santarem 2006-12-13
-3394669 Mogeiro Mogeiro Mojeiro -7.29944 -35.47944 P PPL BR 17 4767 119 America/Fortaleza 2006-12-13
-3394682 Mossoró Mossoro Mocoro,Moçoró -5.1875 -37.34417 P PPL BR 22 202005 24 America/Fortaleza 2006-12-13
-3394745 Mocajuba Mocajuba -2.58417 -49.50722 P PPL BR 16 16567 19 America/Santarem 2006-12-13
-3394755 Missão Velha Missao Velha -7.24972 -39.14306 P PPL BR 06 13106 364 America/Fortaleza 2006-12-13
-3394813 Mirador Mirador -6.37083 -44.36306 P PPL BR 13 6955 176 America/Fortaleza 2006-12-13
-3394841 Minador do Negrão Minador do Negrao Minador do Negro -9.30528 -36.86472 P PPL BR 02 1986 283 America/Maceio 2006-12-13
-3394884 Milagres Milagres -7.31333 -38.94556 P PPL BR 06 12588 341 America/Fortaleza 2006-12-13
-3394892 Miguel Alves Miguel Alves -4.16556 -42.89528 P PPL BR 20 10438 46 America/Fortaleza 2006-12-13
-3394908 Messias Messias Floriano -9.38333 -35.84167 P PPL BR 02 12375 127 America/Maceio 2006-12-13
-3395042 Mazagão Mazagao Mazaganopolis -0.115 -51.28944 P PPL BR 03 6500 15 America/Belem 2006-12-13
-3395062 Maués Maues -3.38361 -57.71861 P PPL BR 04 22475 19 America/Manaus 2006-12-13
-3395077 Matriz de Camaragibe Matriz de Camaragibe Matriz de Camaragibe -9.15167 -35.53333 P PPL BR 02 18705 10 America/Maceio 2006-12-13
-3395122 Matinha Matinha -3.10056 -45.03361 P PPL BR 13 6851 30 America/Fortaleza 2006-12-13
-3395125 Matias Olímpio Matias Olimpio -3.71583 -42.55556 P PPL BR 20 4012 71 America/Fortaleza 2006-12-13
-3395162 Mata Grande Mata Grande Paulo Affonso,Paulo Afonso -9.1175 -37.73222 P PPL BR 02 4654 624 America/Maceio 2006-12-13
-3395215 Massaranduba Massaranduba Macarandiba,Macaranduba,Massarandiba,Maçarandiba,Maçaranduba -7.20028 -35.78917 P PPL BR 17 3153 371 America/Fortaleza 2006-12-13
-3395336 Maribondo Maribondo Maribondo -9.57722 -36.30528 P PPL BR 02 10475 160 America/Maceio 2006-12-13
-3395380 Mari Mari Araca,Araça -7.06 -35.31944 P PPL BR 17 17535 149 America/Fortaleza 2006-12-13
-3395395 Marechal Deodoro Marechal Deodoro Alagoas,Alagôas,Madalena -9.71028 -35.895 P PPL BR 02 50571 12 America/Maceio 2006-12-13
-3395404 Marco Marco -3.12389 -40.14667 P PPL BR 06 14501 22 America/Fortaleza 2006-12-13
-3395440 Marapanim Marapanim -0.7175 -47.69972 P PPL BR 16 10236 10 America/Belem 2006-12-13
-3395456 Maraial Maraial Marayal -8.7825 -35.80889 P PPL BR 30 14203 252 America/Recife 2006-12-13
-3395458 Maragogi Maragogi Gamela,Maragogi,Maragogy -9.01222 -35.2225 P PPL BR 02 16066 16 America/Maceio 2006-12-13
-3395473 Maracanaú Maracanau -3.87667 -38.62556 P PPL BR 06 193529 54 America/Fortaleza 2011-01-19
-3395483 Maracanã Maracana Cintra,Maracana,Maracanã -0.76667 -47.45 P PPL BR 16 12682 14 America/Belem 2012-01-19
-3395497 Maracaçumé Maracacume Maracassume,Maracassumé,Maragassume -2.04278 -45.95917 P PPL BR 13 14164 33 America/Fortaleza 2006-12-13
-3395503 Marabá Maraba Maraba,Marabá,Marada -5.36861 -49.11778 P PPL BR 16 145860 101 America/Santarem 2006-12-13
-3395689 Manaíra Manaira Alagoa Nova,Alagôa Nova -7.70611 -38.15444 P PPL BR 17 4913 758 America/Fortaleza 2006-12-13
-3395717 Mamanguape Mamanguape -6.83861 -35.12611 P PPL BR 17 27606 39 America/Fortaleza 2006-12-13
-3395880 Major Isidoro Major Isidoro Major Izidoro,Sertaosinho,Sertaozinho,Sertãosinho,Sertãozinho -9.53222 -36.985 P PPL BR 02 8507 191 America/Maceio 2006-12-13
-3395981 Maceió Maceio Macayo,Maceio,Maceió,Masejo,Maçayó,msyw,Масейо,מסיו -9.66583 -35.73528 P PPLA BR 02 2704302 954991 11 America/Maceio 2010-01-21
-3395998 Macau Macau Macao,Macáo -5.115 -36.63444 P PPL BR 22 18070 7 America/Fortaleza 2006-12-13
-3396009 Macaparana Macaparana Macapa,Macapá -7.55472 -35.45306 P PPL BR 30 14362 347 America/Recife 2006-12-13
-3396016 Macapá Macapa Macapa,Macapá,Makapa,Макапа,מקאפה 0.03889 -51.06639 P PPLA BR 03 338936 17 America/Belem 2007-02-17
-3396048 Macaíba Macaiba Macahyba -5.85833 -35.35389 P PPL BR 22 40015 16 America/Fortaleza 2006-12-13
-3396101 Luzilândia Luzilandia Joaquim Tavora,Joaquim Távora,Porto Alegre,Pôrto Alegre -3.45778 -42.37028 P PPL BR 20 12999 39 America/Fortaleza 2006-12-13
-3396121 Luís Correia Luis Correia Amarracao,Amarração,Luis Correia,Luís Correia -2.87917 -41.66694 P PPL BR 20 11479 3 America/Fortaleza 2006-12-13
-3396266 Limoeiro do Norte Limoeiro do Norte Limoeiro -5.14556 -38.09806 P PPL BR 06 29449 35 America/Fortaleza 2006-12-13
-3396268 Limoeiro do Ajuru Limoeiro do Ajuru Limoeiro -1.89528 -49.38056 P PPL BR 16 4109 5 America/Santarem 2006-12-13
-3396270 Limoeiro de Anadia Limoeiro de Anadia Limoeira,Limoeiro -9.74056 -36.50278 P PPL BR 02 2770 125 America/Maceio 2006-12-13
-3396277 Limoeiro Limoeiro -7.87472 -35.45028 P PPL BR 30 42328 142 America/Recife 2006-12-13
-3396364 Lavras da Mangabeira Lavras da Mangabeira Lavras -6.75333 -38.96444 P PPL BR 06 17221 241 America/Fortaleza 2006-12-13
-3396496 Lajedo Lajedo Lagedo,Lazhedu,Лажеду -8.66361 -36.32 P PPL BR 30 25261 672 America/Recife 2010-01-29
-3396601 Lago da Pedra Lago da Pedra Lago da Pedra,Lago-da-Pedra,Lagoa de Pedra,Лаго-да-Педра -4.33333 -45.16667 P PPL BR 13 25996 69 America/Fortaleza 2012-01-19
-3396620 Lagoa Seca Lagoa Seca Ipaarana,Ipauarana,Ipuarana -7.17083 -35.85361 P PPL BR 17 8103 631 America/Fortaleza 2006-12-13
-3396662 Lagoa Nova Lagoa Nova -6.1 -36.48333 P PPL BR 22 5984 697 America/Fortaleza 2006-01-17
-3396769 Lagoa do Itaenga Lagoa do Itaenga -7.93611 -35.29028 P PPL BR 30 17719 187 America/Recife 2006-12-13
-3396877 Lagoa da Canoa Lagoa da Canoa Lagoa de Canoa,Lagôa de Canôa -9.82972 -36.73778 P PPL BR 02 13422 289 America/Maceio 2006-12-13
-3396979 Juruti Juruti Jurity Novo,Juruty Novo -2.15222 -56.09222 P PPL BR 16 13333 25 America/Santarem 2006-12-13
-3397003 Juru Juru Barra,Ibiapina -7.53694 -37.81861 P PPL BR 17 3796 588 America/Fortaleza 2006-12-13
-3397008 Juripiranga Juripiranga Jupiranga,Serrinha -7.37333 -35.23806 P PPL BR 17 8320 117 America/Fortaleza 2006-12-13
-3397063 Junqueiro Junqueiro -9.92528 -36.47583 P PPL BR 02 7740 186 America/Maceio 2006-12-13
-3397068 Jundiá Jundia -8.93472 -35.57361 P PPL BR 02 2267 114 America/Maceio 2006-12-13
-3397108 Jucurutu Jucurutu Sao Miguel,Sao Miguel de Jucurutu,São Miguel,São Miguel de Jucurutú -6.03389 -37.02028 P PPL BR 22 11535 73 America/Fortaleza 2006-12-13
-3397119 Jucás Jucas Sao Mateus,Sao Matheus,São Mateus,São Matheus -6.52528 -39.5275 P PPL BR 06 14821 246 America/Fortaleza 2006-12-13
-3397147 Juazeiro do Norte Juazeiro do Norte Jaozeiro,Joazeiro,Juazeiro,Juazeiro do Norte,Zhuazejru-du-Norti,Жуазейру-ду-Норти -7.21306 -39.31528 P PPL BR 06 225230 413 America/Fortaleza 2010-01-29
-3397175 Juàzeirinho Juazeirinho -6.81667 -38.05 P PPL BR 17 8846 222 America/Fortaleza 2006-01-17
-3397230 José de Freitas Jose de Freitas Livramento -4.75639 -42.57556 P PPL BR 20 21432 131 America/Fortaleza 2006-12-13
-3397262 Joaquim Nabuco Joaquim Nabuco -8.62444 -35.53333 P PPL BR 30 9965 151 America/Recife 2006-12-13
-3397277 João Pessoa Joao Pessoa Cidade Felipea,Cidade Felipéa,Fredericia,Frederícia,Joao Pessoa,João Pessoa,Parahiba,Parahyba,Paraiba,Paraíba,Zhuan-Pesoa,Жуан-Песоа,ז'ואאו פזואה,ז'ואאו פסואה -7.115 -34.86306 P PPLA BR 17 650883 45 America/Fortaleza 2007-02-17
-3397315 João Câmara Joao Camara Baixa Verde -5.5375 -35.81972 P PPL BR 22 19885 152 America/Fortaleza 2006-12-13
-3397319 João Alfredo Joao Alfredo -7.85583 -35.58833 P PPL BR 30 11334 345 America/Recife 2006-12-13
-3397337 Girau do Ponciano Girau do Ponciano Belo Horizonte,Giral do Ponceano,Girau do Ponciano,Ponciano -9.88417 -36.82889 P PPL BR 02 9606 248 America/Maceio 2006-12-13
-3397560 Jardim do Seridó Jardim do Serido -6.58444 -36.77444 P PPL BR 22 9520 223 America/Fortaleza 2006-12-13
-3397562 Jardim de Piranhas Jardim de Piranhas Jardim de Pirahanas -6.37861 -37.35194 P PPL BR 22 10935 143 America/Fortaleza 2006-12-13
-3397590 Jardim Jardim -3.46444 -39.05667 P PPLL BR 06 7189 31 America/Fortaleza 2006-12-13
-3397660 Jaicós Jaicos -7.35917 -41.13778 P PPL BR 20 7107 290 America/Fortaleza 2006-12-13
-3397665 Jaguaruana Jaguaruana Uniao,União -4.83389 -37.78111 P PPL BR 06 21790 15 America/Fortaleza 2006-12-13
-3397675 Jaguaribe Jaguaribe Jaguaribe Mirim,Zhaguaribi,Жагуариби -5.89056 -38.62194 P PPL BR 06 23065 127 America/Fortaleza 2010-01-29
-3397763 Jacareacanga Jacareacanga -6.22222 -57.75278 P PPL BR 16 1402 72 America/Santarem 2006-12-13
-3397800 Jacaraú Jacarau -6.61222 -35.29278 P PPL BR 17 7035 173 America/Fortaleza 2006-12-13
-3397838 Jaboatão Jaboatao -8.18028 -35.00139 P PPLL BR 30 702621 88 America/Recife 2006-12-13
-3397851 Itupiranga Itupiranga -5.13472 -49.32667 P PPL BR 16 21301 95 America/Santarem 2006-12-13
-3397865 Itaueira Itaueira Peri-Peri,Piriperi -7.60333 -43.02556 P PPL BR 20 5146 264 America/Fortaleza 2006-12-13
-3397875 Itatuba Itatuba -7.375 -35.62833 P PPL BR 17 4951 115 America/Fortaleza 2006-12-13
-3397886 Itaquitinga Itaquitinga Areias -7.66778 -35.10167 P PPL BR 30 11128 72 America/Recife 2006-12-13
-3397893 Itacoatiara Itacoatiara Itacoatiara,Serpa -3.14306 -58.44417 P PPL BR BR 04 64937 19 America/Manaus 2010-07-13
-3397898 Itaporanga Itaporanga Misericordia,Misericórdia -7.30444 -38.15028 P PPL BR 17 15890 295 America/Fortaleza 2006-12-13
-3397904 Itapissuma Itapissuma Itapicuma,Itapiçuma -7.77639 -34.89222 P PPL BR 30 16673 13 America/Recife 2006-12-13
-3397909 Itapipoca Itapipoca Imperatriz,Itapipoka,Итапипока -3.49444 -39.57861 P PPL BR 06 55784 103 America/Fortaleza 2010-01-29
-3397936 Itapecuru Mirim Itapecuru Mirim Itapicuru,Itapicuru-Mirim,Itapicurú-Mirim -3.3925 -44.35861 P PPL BR 13 34943 20 America/Fortaleza 2006-12-13
-3397941 Itapagé Itapage Constituinte,Itapage,Itapagé,Santa Cruz do Uruburetama,Sao Francisco,Sao Francisco do Uruburetama,São Francisco,São Francisco do Uruburetama -3.68667 -39.58611 P PPL BR 06 32043 267 America/Fortaleza 2006-12-13
-3397963 Itamaracá Itamaraca Baixa Verde,Pilar -7.74778 -34.82556 P PPL BR 30 14969 7 America/Noronha 2006-12-13
-3397967 Itaituba Itaituba Itaituba -4.27611 -55.98361 P PPL BR 16 64756 13 America/Santarem 2006-12-13
-3397969 Itaitinga Itaitinga -3.96944 -38.52806 P PPL BR 06 30938 64 America/Fortaleza 2006-12-13
-3397976 Itainópolis Itainopolis Jenipapo -7.44694 -41.47833 P PPL BR 20 2922 195 America/Fortaleza 2006-12-13
-3397983 Itaíba Itaiba Pao Ferro,Pau Ferro,Páo Ferro -8.9475 -37.42278 P PPL BR 30 13864 481 America/Recife 2006-12-13
-3398003 Itabaiana Itabaiana Itabayanna,Itambe,Tabaiana -7.32861 -35.3325 P PPL BR 17 19100 47 America/Fortaleza 2006-12-13
-3398014 Irituia Irituia -1.77111 -47.43806 P PPL BR 16 5602 18 America/Santarem 2006-12-13
-3398028 Irauçuba Iraucuba -3.74611 -39.78333 P PPL BR 06 13281 150 America/Fortaleza 2006-12-13
-3398076 Ipueiras Ipueiras -7.03333 -40.45 P PPL BR 06 17111 558 America/Fortaleza 2006-01-17
-3398105 Ipubi Ipubi Poco-Verde,Poço-Verde -7.65194 -40.14889 P PPL BR 30 16424 543 America/Recife 2006-12-13
-3398112 Ipu Ipu -4.32222 -40.71083 P PPL BR 06 26678 250 America/Fortaleza 2006-12-13
-3398115 Ipojuca Ipojuca Ipozhuka,Pojuca,Ипожука -8.39889 -35.06389 P PPL BR 30 53364 29 America/Recife 2010-01-29
-3398145 Ipanguaçu Ipanguacu Ipauguacu,Ipauguaçu,Sacramento -5.49833 -36.855 P PPL BR 22 4624 20 America/Fortaleza 2006-12-13
-3398178 Inhuma Inhuma Inhumas -6.66833 -41.70778 P PPL BR 20 7056 391 America/Fortaleza 2006-12-13
-3398192 Inhapi Inhapi -9.22139 -37.74861 P PPL BR 02 7550 407 America/Maceio 2006-12-13
-3398224 Ingá Inga -7.28083 -35.60444 P PPL BR 17 8751 155 America/Fortaleza 2006-12-13
-3398255 Independência Independencia -5.39639 -40.30861 P PPL BR 06 11113 341 America/Fortaleza 2006-12-13
-3398269 Imperatriz Imperatriz Imperatris,Imperatriz,Vila Nova de Imperatriz,Императрис -5.52639 -47.49167 P PPL BR 13 218106 127 America/Fortaleza 2010-01-29
-3398299 Imaculada Imaculada Immaculada -7.38972 -37.50917 P PPL BR 17 4014 763 America/Fortaleza 2006-12-13
-3398331 Iguatu Iguatu Telha -6.35944 -39.29861 P PPL BR 06 70380 222 America/Fortaleza 2006-12-13
-3398343 Igarapé Miri Igarape Miri Igarape Miry,Igarape-Mirim,Igarapé Miry,Igarapé-Mirim -1.975 -48.95972 P PPL BR 16 26837 9 America/Santarem 2006-12-13
-3398350 Igarapé Açu Igarape Acu Igarape-Assu,Igarapé-Assú,Joao Pessoa,João Pessoa -1.12889 -47.62 P PPL BR 16 24136 39 America/Santarem 2006-12-13
-3398352 Igarassu Igarassu Igaracu,Igaraçu,Iguaracu,Iguarassu,Iguarassú,Iguaraçu -7.83417 -34.90639 P PPL BR 30 86457 22 America/Recife 2006-12-13
-3398355 Igaci Igaci Olhos Dagua do Acioli,Olhos Dágua do Acioli -9.53694 -36.63361 P PPL BR 02 6480 250 America/Maceio 2006-12-13
-3398379 Icó Ico -6.40111 -38.86222 P PPL BR 06 28323 156 America/Fortaleza 2006-12-13
-3398381 Icatu Icatu -2.77583 -44.06583 P PPL BR 13 3648 8 America/Fortaleza 2006-12-13
-3398401 Ibimirim Ibimirim Mirim -8.54056 -37.69028 P PPL BR 30 12272 409 America/Recife 2006-12-13
-3398408 Ibiapina Ibiapina -3.92333 -40.88944 P PPL BR 06 9205 897 America/Fortaleza 2006-12-13
-3398412 Ibateguara Ibateguara Ibatequara,Piquete -8.9725 -35.93944 P PPL BR 02 8755 440 America/Maceio 2006-12-13
-3398428 Humberto de Campos Humberto de Campos Miritiba,Miritiba de Sao Jose de Piria,Miritiba de São José de Piriá -2.59833 -43.46111 P PPL BR 13 5208 14 America/Fortaleza 2006-12-13
-3398450 Horizonte Horizonte -4.1 -38.48333 P PPL BR 06 51171 75 America/Fortaleza 2006-01-17
-3398457 Hidrolândia Hidrolandia -4.40806 -40.43778 P PPL BR 06 10299 179 America/Fortaleza 2006-12-13
-3398480 Gurupá Gurupa Santo Antonio De Gurupa -1.405 -51.64 P PPL BR 16 6461 4 America/Santarem 2006-12-13
-3398485 Gurinhém Gurinhem Curinhaem,Curinhãem -7.12389 -35.42444 P PPL BR 17 5618 98 America/Fortaleza 2006-12-13
-3398569 Guaraciaba do Norte Guaraciaba do Norte Campo Grande,Inhucu,Inhussu,Inhuçu -4.16694 -40.7475 P PPL BR 06 18186 902 America/Fortaleza 2006-12-13
-3398570 Guarabira Guarabira -6.85472 -35.49 P PPL BR 17 43749 94 America/Fortaleza 2006-12-13
-3398612 Guajará Guajara -2.96667 -57.66667 P PPL BR 04 9774 5 America/Manaus 2006-01-17
-3398614 Guaiúba Guaiuba Guayuba -4.03972 -38.63722 P PPL BR 06 21820 75 America/Fortaleza 2006-12-13
-3398622 Guabiraba Guabiraba Barra,Barra de Sao Joao,Barra de São João,Guabiraba,Itapeco,Itapecô -8.41667 -35.66667 P PPL BR 30 9285 481 America/Recife 2012-01-19
-3398691 Gravatá Gravata Gravata,Gravatá -8.20111 -35.56472 P PPL BR 30 61249 458 America/Recife 2006-12-13
-3398706 Granja Granja -3.12028 -40.82611 P PPL BR 06 25879 8 America/Fortaleza 2006-12-13
-3398856 Grajaú Grajau Grajahu,Grajahú,Gralau -5.81944 -46.13861 P PPL BR 13 30217 163 America/Fortaleza 2006-12-13
-3398871 Governador Dix Sept Rosado Governador Dix Sept Rosado Sao Sebastiao,Sebastianopolis,Sebastianópolis,São Sebastião -5.45889 -37.52083 P PPL BR 22 6626 35 America/Fortaleza 2006-12-13
-3398902 Goianinha Goianinha Goyanninha -6.26472 -35.2125 P PPL BR 22 13433 16 America/Fortaleza 2006-12-13
-3398904 Goiana Goiana Gojana,Goyanna,Гояна -7.56056 -35.0025 P PPL BR 30 43980 21 America/Recife 2010-01-29
-3398920 Glória do Goitá Gloria do Goita Gloria de Goyta,Gloria de Goytá -8.00167 -35.29278 P PPL BR 30 17374 155 America/Recife 2006-12-13
-3398931 Gilbués Gilbues Gilboes,Gilboés -9.83167 -45.34389 P PPL BR 20 4920 481 America/Fortaleza 2006-12-13
-3399051 Gararu Gararu Curral das Pedras -9.9675 -37.08333 P PPL BR 28 2977 17 America/Maceio 2006-12-13
-3399058 Garanhuns Garanhuns Garan'juns,Гараньюнс -8.89028 -36.49278 P PPL BR 30 110085 855 America/Recife 2010-01-29
-3399132 Gameleira Gameleira Camelleira,Gamelleira -8.58444 -35.38667 P PPL BR 30 19423 100 America/Recife 2006-12-13
-3399377 Fortuna Fortuna -5.73333 -44.15833 P PPL BR 13 9755 210 America/Fortaleza 2006-12-13
-3399415 Fortaleza Fortaleza Ceara,Ceará,Fortaleza,Fortaleza Nova de Braganca,Fortaleza Nova de Bragança,Fortaleza de Nova Braganca,Fortaleza de Nova Bragança,Fortalezo,forutareza,fu ta lei sa,pwrtlzh,Форталеза,פורטלזה,フォルタレザ,福塔雷萨 -3.71722 -38.54306 P PPLA BR BR 06 2304400 2400000 18 America/Fortaleza 2010-01-21
-3399445 Forquilha Forquilha -3.79833 -40.26056 P PPL BR 06 13409 92 America/Fortaleza 2006-12-13
-3399506 Floriano Floriano Colonia,Colônia,Florian,Manga,Флориан -6.76694 -43.0225 P PPL BR 20 48587 114 America/Fortaleza 2010-01-29
-3399518 Floresta Floresta -8.60111 -38.56861 P PPL BR 30 18100 321 America/Recife 2006-12-13
-3399539 Flores Flores Flores da Ribeira de Pajeu,Flôres da Ribeira de Pajeú -7.86806 -37.97472 P PPL BR 30 11692 467 America/Recife 2006-12-13
-3399571 Flexeiras Flexeiras Flexeiras,Frecheiras -9.1975 -35.78083 P PPL BR 02 7782 132 America/Maceio 2006-12-13
-3399679 Feira Nova Feira Nova Jardim -7.95083 -35.38917 P PPL BR 30 12984 163 America/Recife 2006-12-13
-3400497 Farias Brito Farias Brito Quixara,Quixará -6.93056 -39.56556 P PPL BR 06 11288 344 America/Fortaleza 2006-12-13
-3400515 Fagundes Fagundes -7.355 -35.775 P PPL BR 17 5137 468 America/Fortaleza 2006-12-13
-3400541 Exu Exu Novo Exu -7.51194 -39.72417 P PPL BR 30 10875 525 America/Recife 2006-12-13
-3400558 Eusébio Eusebio Ehusebio,Euziebio,Эусебио -3.89 -38.45056 P PPL BR 06 37289 36 America/Fortaleza 2010-01-29
-3400567 Extremoz Extremoz Extremos,Extremoz,Extremós,Extremóz -5.70556 -35.30722 P PPL BR 22 17991 48 America/Fortaleza 2006-12-13
-3400617 Estreito Estreito -5.78333 -43.25 P PPL BR 13 17647 199 America/Fortaleza 2006-01-17
-3400739 Esperantinópolis Esperantinopolis Boa Esperanca do Mearim,Boa Esperança do Mearim -4.86667 -44.70833 P PPL BR 13 13166 51 America/Fortaleza 2006-12-13
-3400740 Esperantina Esperantina Boa Esperanca,Boa Esperança,Retiro da Boa Esperanca,Retiro da Boa Esperança -3.90167 -42.23361 P PPL BR 20 21044 63 America/Fortaleza 2006-12-13
-3400752 Esperança Esperanca -7.03306 -35.85722 P PPL BR 17 18817 610 America/Fortaleza 2006-12-13
-3400804 Escada Escada -8.35917 -35.22361 P PPL BR 30 48083 117 America/Recife 2006-12-13
-3400920 Elesbão Veloso Elesbao Veloso Elesboa Veloso -6.20194 -42.14028 P PPL BR 20 10430 196 America/Fortaleza 2006-12-13
-3400963 Dona Inês Dona Ines Dona Ines,Dona Inês -6.61667 -35.63333 P PPL BR 17 3709 505 America/Fortaleza 2012-01-19
-3400969 Dom Pedro Dom Pedro -4.48333 -44.45 P PPL BR 13 15570 62 America/Fortaleza 2006-01-17
-3400989 Dois Riachos Dois Riachos -9.3925 -37.10056 P PPL BR 02 4565 238 America/Maceio 2006-12-13
-3401060 Desterro Desterro -7.29056 -37.09389 P PPL BR 17 5374 611 America/Fortaleza 2006-12-13
-3401106 Demerval Lobão Demerval Lobao Dermeval Lobao,Dermeval Lobão,Lobao,Lobão,Morrinho,Morrinhos -5.35833 -42.67639 P PPL BR 20 15265 116 America/Fortaleza 2006-12-13
-3401109 Delmiro Gouveia Delmiro Gouveia Delmiro,Pedra -9.38861 -37.99917 P PPL BR 02 35259 246 America/Maceio 2006-12-13
-3401138 Custódia Custodia -8.0875 -37.64306 P PPL BR 30 18107 540 America/Recife 2006-12-13
-3401148 Cururupu Cururupu -1.82833 -44.86833 P PPL BR 13 22007 7 America/Fortaleza 2006-12-13
-3401188 Curuçá Curuca -0.72889 -47.84806 P PPL BR 16 10843 15 America/Santarem 2006-12-13
-3401283 Currais Novos Currais Novos Curraes Novos -6.26083 -36.51778 P PPL BR 22 35560 361 America/Fortaleza 2006-12-13
-3401331 Curaçá Curaca -8.99028 -39.90944 P PPL BR 05 11858 359 America/Bahia 2006-12-13
-3401340 Cupira Cupira Cupyra -8.61667 -35.95 P PPL BR 30 19096 430 America/Recife 2006-12-13
-3401404 Cumaru Cumaru Malhada,Malhadinha -8.00611 -35.69722 P PPL BR 30 6861 362 America/Recife 2006-12-13
-3401419 Cuité Cuite Serra do Cuite,Serra do Cuité -6.48361 -36.15361 P PPL BR 17 11391 670 America/Fortaleza 2006-12-13
-3401457 Cruz do Espírito Santo Cruz do Espirito Santo Espirito Santo,Maguari -7.14 -35.08639 P PPL BR 17 5812 19 America/Fortaleza 2006-12-13
-3401487 Cruz Cruz Vera Cruz -2.91778 -40.17167 P PPL BR 06 8723 16 America/Fortaleza 2006-12-13
-3401545 Crato Crato Crato,Vila Real do Crato -7.23417 -39.40944 P PPL BR 06 88786 430 America/Fortaleza 2006-12-13
-3401548 Crateús Crateus Cratheus,Cratheús,Piranhas,Principe Imperial,Príncipe Imperial -5.17833 -40.6775 P PPL BR 06 52933 297 America/Fortaleza 2006-12-13
-3401703 Coroatá Coroata Croata,Croatá -4.13 -44.12417 P PPL BR 13 34129 37 America/Fortaleza 2006-12-13
-3401725 Coremas Coremas Curema,Santa Rita da Curema -7.01444 -37.94583 P PPL BR 17 11897 218 America/Fortaleza 2006-12-13
-3401729 Coreaú Coreau Palma -3.53333 -40.65667 P PPL BR 06 12383 165 America/Fortaleza 2006-12-13
-3401830 Condado Condado Goianinha,Goyanninha -7.58583 -35.10583 P PPL BR 30 19585 135 America/Recife 2006-12-13
-3401845 Conceição do Araguaia Conceicao do Araguaia Conceicao,Conceicao Do Araguaya,Conceição -8.25778 -49.26472 P PPL BR 16 27115 178 America/Araguaina 2006-12-13
-3401944 Colônia Leopoldina Colonia Leopoldina Leopoldina -8.90889 -35.725 P PPL BR 02 11913 133 America/Recife 2006-12-13
-3401963 Colinas Colinas Kolinas,Picos,Колинас -6.02583 -44.24917 P PPL BR 13 25158 142 America/Fortaleza 2010-01-29
-3401980 Coité do Nóia Coite do Noia Coite do Noa,Coite do Nois,Coité do Noá -9.63222 -36.57861 P PPL BR 02 2529 288 America/Maceio 2006-12-13
-3401992 Coelho Neto Coelho Neto Curralinho,Curralzinho -4.25667 -43.01278 P PPL BR 13 36184 54 America/Fortaleza 2006-12-13
-3402000 Codó Codo Codo,Codó,Urubu -4.45528 -43.88556 P PPL BR 13 83288 44 America/Fortaleza 2006-12-13
-3402050 Cocal Cocal -3.47194 -41.5575 P PPL BR 20 12097 129 America/Fortaleza 2006-12-13
-3402164 Chorozinho Chorozinho -4.30028 -38.49778 P PPL BR 06 9754 56 America/Fortaleza 2006-12-13
-3402229 Chapadinha Chapadinha -3.74167 -43.36028 P PPL BR 13 40804 109 America/Fortaleza 2006-12-13
-3402271 Chã Grande Cha Grande -8.23833 -35.46167 P PPL BR 30 17112 471 America/Recife 2006-12-13
-3402284 Cerro Corá Cerro Cora -6.04556 -36.34583 P PPL BR 22 4927 573 America/Fortaleza 2006-12-13
-3402340 Cedro Cedro -6.60667 -39.06222 P PPL BR 06 14644 252 America/Fortaleza 2006-12-13
-3402360 Ceará Mirim Ceara Mirim -5.63444 -35.42556 P PPL BR 22 32667 37 America/Fortaleza 2006-12-13
-3402429 Caucaia Caucaia Soure -3.73611 -38.65306 P PPL BR 06 275019 35 America/Fortaleza 2006-12-13
-3402465 Catolé do Rocha Catole do Rocha Catule-do-Rocha,Catulé-do-Rocha -6.34389 -37.74667 P PPL BR 17 19812 303 America/Fortaleza 2006-12-13
-3402528 Catende Catende -8.66667 -35.71667 P PPL BR 30 23322 172 America/Recife 2006-12-13
-3402548 Castelo do Piauí Castelo do Piaui Castello,Castelo,Costello,Marvao,Marvão,Rancho dos Patos,Vila de Castelo -5.32222 -41.5525 P PPL BR 20 8589 241 America/Fortaleza 2006-12-13
-3402591 Castanhal Castanhal -1.29389 -47.92639 P PPL BR 16 137406 46 America/Santarem 2006-12-13
-3402613 Cascavel Cascavel -4.13306 -38.24194 P PPL BR 06 52357 31 America/Fortaleza 2006-12-13
-3402648 Carutapera Carutapera -1.195 -46.02 P PPL BR 13 12819 0 America/Fortaleza 2006-12-13
-3402655 Caruaru Caruaru Caruaru,Karuaru,Каруару -8.28333 -35.97611 P PPLA2 BR 30 2604106 235371 568 America/Recife 2012-03-10
-3402721 Carpina Carpina Karpina,Карпина -7.85083 -35.25472 P PPL BR 30 70689 186 America/Recife 2010-01-29
-3402724 Carolina Carolina -7.33278 -47.46944 P PPL BR 13 16228 182 America/Fortaleza 2006-12-13
-3402848 Carnaíba Carnaiba -8.7 -37.66667 P PPL BR 30 6019 379 America/Recife 2006-01-17
-3402882 Caririaçu Caririacu Sao Pedro,Sao Pedro do Cariri,São Pedro,São Pedro do Carirí -7.04222 -39.28361 P PPL BR 06 12971 712 America/Fortaleza 2006-12-13
-3402893 Cariré Carire -3.95056 -40.47333 P PPL BR 06 5488 162 America/Fortaleza 2006-12-13
-3402920 Careiro da Várzea Careiro da Varzea Careiro -3.20028 -59.81194 P PPL BR 04 6659 19 America/Manaus 2006-12-13
-3402944 Caraúbas Caraubas Carahubas,Carauba,Caraúba -5.7925 -37.55667 P PPL BR 22 12462 152 America/Fortaleza 2006-12-13
-3403082 Capoeiras Capoeiras Capoeira -8.73472 -36.62667 P PPL BR 30 4861 884 America/Recife 2006-12-13
-3403127 Capitão Poço Capitao Poco -1.74639 -47.05944 P PPL BR 16 32704 69 America/Santarem 2006-12-13
-3403200 Capela Capela Conceicao do Paraiba,Conceição do Paraíba,Euclydes Malta,Paraiba,Paraíba -9.4075 -36.07361 P PPL BR 02 12520 87 America/Maceio 2006-12-13
-3403208 Capanema Capanema -1.19583 -47.18083 P PPL BR 16 47766 30 America/Santarem 2006-12-13
-3403251 Canto do Buriti Canto do Buriti -8.11 -42.94444 P PPL BR 20 11714 272 America/Fortaleza 2006-12-13
-3403309 Cantanhede Cantanhede -3.63333 -44.37667 P PPL BR 13 8344 25 America/Fortaleza 2006-12-13
-3403344 Canindé de São Francisco Caninde de Sao Francisco Caninde,Canindé,Curituba -9.66 -37.78944 P PPL BR 28 11052 179 America/Maceio 2006-12-13
-3403353 Canindé Caninde Caninae -4.35889 -39.31167 P PPL BR 06 42720 154 America/Fortaleza 2006-12-13
-3403360 Canhotinho Canhotinho -8.88222 -36.19111 P PPL BR 30 12074 529 America/Recife 2006-12-13
-3403362 Canguaretama Canguaretama -6.38 -35.12889 P PPL BR 22 18873 6 America/Fortaleza 2006-12-13
-3403395 Cândido Mendes Candido Mendes -1.44667 -45.71667 P PPL BR 13 8613 6 America/Fortaleza 2006-12-13
-3403534 Campos Sales Campos Sales Campos Salles,Nova Roma,Varzea da Vaca,Várzea da Vaca -7.07444 -40.37611 P PPL BR 06 17648 567 America/Fortaleza 2006-12-13
-3403566 Campo Maior Campo Maior -4.82778 -42.16861 P PPL BR 20 31739 128 America/Fortaleza 2006-12-13
-3403611 Campo Alegre Campo Alegre Campo Alegre do Mosquito,Mosquito -9.78194 -36.35083 P PPL BR 02 16785 181 America/Maceio 2006-12-13
-3403642 Campina Grande Campina Grande Campina Grande,Kampina-Grande,kanpinagurande,Кампина-Гранде,カンピナグランデ -7.23056 -35.88111 P PPL BR 17 348936 508 America/Fortaleza 2010-01-29
-3403685 Camocim de São Félix Camocim de Sao Felix Camocim,Camocituba -8.35861 -35.76194 P PPL BR 30 10270 674 America/Recife 2006-12-13
-3403687 Camocim Camocim -2.90222 -40.84111 P PPL BR 06 44481 6 America/Fortaleza 2006-12-13
-3403697 Cametá Cameta -2.24444 -49.49583 P PPL BR 16 45200 11 America/Belem 2006-12-13
-3403941 Cajueiro Cajueiro Cajueiro,Caldeirao,Caldeirão -9.71667 -36.45 P PPL BR 02 15062 215 America/Maceio 2012-01-19
-3404020 Cajazeiras Cajazeiras -6.89028 -38.55528 P PPL BR 17 43913 305 America/Fortaleza 2006-12-13
-3404117 Caicó Caico Kajko,Кайко -6.45833 -37.09778 P PPL BR 22 54934 161 America/Fortaleza 2010-01-29
-3404231 Caetés Caetes -8.77306 -36.6225 P PPL BR 30 5386 843 America/Recife 2006-12-13
-3404257 Cacimbinhas Cacimbinhas Cacimbinha -9.40028 -36.99028 P PPL BR 02 4618 262 America/Maceio 2006-12-13
-3404306 Cacimba de Dentro Cacimba de Dentro Cacimbo de Dentro -6.64167 -35.79 P PPL BR 17 7447 529 America/Fortaleza 2006-12-13
-3404355 Cachoeirinha Cachoeirinha -8.48639 -36.23306 P PPL BR 30 12905 530 America/Recife 2006-12-13
-3404513 Cabrobó Cabrobo -8.51417 -39.31 P PPL BR 30 16096 327 America/Recife 2006-12-13
-3404545 Cabo Cabo -8.28333 -35.03333 P PPL BR 30 143105 16 America/Recife 2006-01-27
-3404558 Cabedelo Cabedelo Cabedello,Cabedelos -6.98111 -34.83389 P PPL BR 17 54839 7 America/Fortaleza 2006-12-13
-3404656 Caaporã Caapora Boca-da-Mata,Bocca de Matta -7.51556 -34.90833 P PPL BR 17 13769 32 America/Fortaleza 2006-12-13
-3404713 Buriti dos Lopes Buriti dos Lopes Baixo Longa,Baixo Longá,Burity dos Lopes -3.175 -41.86694 P PPL BR 20 9475 23 America/Fortaleza 2006-12-13
-3404722 Buriti Bravo Buriti Bravo Burity Bravo -5.83722 -43.83361 P PPL BR 13 17692 227 America/Fortaleza 2006-12-13
-3404760 Bujaru Bujaru -1.515 -48.04472 P PPL BR 16 6189 18 America/Santarem 2006-12-13
-3404766 Buíque Buique Buiki,Vila Nova de Buique,Vila Nova de Buíque,Буики -8.62306 -37.15583 P PPL BR 30 20324 804 America/Recife 2010-01-29
-3404817 Breves Breves -1.68222 -50.48028 P PPL BR 16 46473 7 America/Santarem 2006-12-13
-3404833 Brejo Santo Brejo Santo Brejo dos Santos -7.49333 -38.98722 P PPL BR 06 27384 386 America/Fortaleza 2006-12-13
-3404862 Brejo da Madre de Deus Brejo da Madre de Deus Madre de Deus -8.14583 -36.37111 P PPL BR 30 27369 654 America/Recife 2006-12-13
-3404889 Brejo Brejo -3.68444 -42.75028 P PPL BR 13 11636 70 America/Fortaleza 2006-12-13
-3404924 Brejinho Brejinho -6.19083 -35.35667 P PPL BR 22 7625 151 America/Fortaleza 2006-12-13
-3405006 Bragança Braganca -1.05361 -46.76556 P PPL BR 16 57163 16 America/Santarem 2006-12-13
-3405051 Borba Borba -4.38778 -59.59389 P PPL BR 04 11918 28 America/Manaus 2006-12-13
-3405061 Boqueirão (1) Boqueirao (1) -7.5 -36.13333 P PPL BR 17 11566 377 America/Fortaleza 2006-01-17
-3405172 Bonito Bonito -8.47028 -35.72861 P PPL BR 30 8865 441 America/Recife 2006-12-13
-3405304 Bom Jesus Bom Jesus Bom Jesus do Gurgueia -9.07444 -44.35861 P PPL BR 20 12666 281 America/Fortaleza 2006-12-13
-3405339 Bom Jardim Bom Jardim -7.79583 -35.58722 P PPL BR 30 13523 306 America/Recife 2006-12-13
-3405341 Bom Jardim Bom Jardim -7.01667 -46.48333 P PPL BR 13 12343 426 America/Fortaleza 2006-01-17
-3405380 Bom Conselho Bom Conselho -9.16972 -36.67972 P PPL BR 30 27800 655 America/Recife 2006-12-13
-3405616 Boa Viagem Boa Viagem -5.1275 -39.73222 P PPL BR 06 24671 288 America/Fortaleza 2006-12-13
-3405738 Bezerros Bezerros Bezerrus,Безеррус -8.23333 -35.79694 P PPL BR 30 51436 501 America/Recife 2010-01-29
-3405778 Bequimão Bequimao -2.44889 -44.7825 P PPL BR 13 5695 15 America/Fortaleza 2006-12-13
-3405792 Benevides Benevides -1.36139 -48.24472 P PPL BR 16 49794 31 America/Santarem 2006-12-13
-3405796 Beneditinos Beneditinos -5.45 -42.36667 P PPL BR 20 5005 118 America/Fortaleza 2006-01-17
-3405812 Belo Jardim Belo Jardim Bello Jardim -8.33556 -36.42417 P PPL BR 30 49922 620 America/Recife 2006-12-13
-3405851 Belém do Brejo do Cruz Belem do Brejo do Cruz -6.18861 -37.53583 P PPL BR 17 8777 184 America/Fortaleza 2006-12-13
-3405852 Belém de São Francisco Belem de Sao Francisco Belem,Belem de Cabroba,Belem do Sao Francisco,Belém,Belém de Cabrobá,Belém do São Francisco,Jatina,Jatinã -8.75389 -38.96583 P PPL BR 30 11124 317 America/Recife 2006-12-13
-3405863 Belém Belem Belem,Belem de Caicara,Belém de Caiçara,Curimatau,Curimataú,Белем -6.69167 -35.53333 P PPL BR 17 15550 140 America/Fortaleza 2010-01-29
-3405870 Belém Belem Belem,Belem do Para,Belem do Pará,Belen,Belém,Belém do Pará,Para,Pará,Santa Maria de Belem do Grao Para,Santa Maria de Belém do Grão Pará,beren,blm,Белем,Белен,בלם,ベレン -1.45583 -48.50444 P PPLA BR 16 1407737 15 America/Belem 2007-02-17
-3405908 Bela Cruz Bela Cruz -3.05056 -40.16778 P PPL BR 06 12715 14 America/Fortaleza 2006-12-13
-3405924 Beberibe Beberibe Beberibe,Беберибе -4.17972 -38.13056 P PPL BR 06 37025 20 America/Fortaleza 2010-01-29
-3405940 Bayeux Bayeux -7.125 -34.93222 P PPL BR 17 91056 12 America/Fortaleza 2006-12-13
-3405954 Baturité Baturite -4.32861 -38.88472 P PPL BR 06 22417 169 America/Fortaleza 2006-12-13
-3405993 Batalha Batalha -9.67778 -37.12472 P PPL BR 02 11820 120 America/Maceio 2006-12-13
-3406001 Batalha Batalha Campos Sales -4.025 -42.075 P PPL BR 20 8744 119 America/Fortaleza 2006-12-13
-3406041 Barroquinha Barroquinha -3.01889 -41.13611 P PPL BR 06 12410 20 America/Fortaleza 2006-12-13
-3406088 Barro Barro -6.71667 -38.86667 P PPL BR 06 11519 290 America/Fortaleza 2006-01-17
-3406160 Barreiros Barreiros -8.81833 -35.18639 P PPL BR 30 35565 28 America/Recife 2006-12-13
-3406196 Barreirinhas Barreirinhas -2.74694 -42.82639 P PPL BR 13 17437 3 America/Fortaleza 2006-12-13
-3406202 Barreirinha Barreirinha -2.79333 -57.07 P PPL BR 04 11257 13 America/Manaus 2006-12-13
-3406263 Barras Barras Barras,Barras do Maratahoan,Barras do Maratoam,Баррас -4.24444 -42.29444 P PPL BR 20 21597 89 America/Fortaleza 2010-01-29
-3406318 Barra do Corda Barra do Corda -5.5 -45.25 P PPL BR 13 48901 106 America/Fortaleza 2006-01-17
-3406333 Barra de Santo Antônio Barra de Santo Antonio Barra de Santo Antonio Grande,Barra de Santo Antônio Grande,Coqueiral Cupe,Cupe,Cupê -9.40472 -35.50722 P PPL BR 02 10057 29 America/Maceio 2006-12-13
-3406429 Barcarena Barcarena -1.50583 -48.62583 P PPL BR 16 29871 9 America/Santarem 2006-12-13
-3406442 Barbalha Barbalha -7.31111 -39.30417 P PPL BR 06 33943 422 America/Fortaleza 2006-12-13
-3406457 Baraúna Barauna Currais Barauna,Currais Baraúna -5.08 -37.61667 P PPL BR 22 14112 97 America/Fortaleza 2006-12-13
-3406503 Bananeiras Bananeiras -6.75 -35.63333 P PPL BR 17 7371 556 America/Fortaleza 2006-12-13
-3406545 Balsas Balsas Al'tbal'sas,Sant' Antonio de Balsas,Santo Antonio de Balsas,Альтбальсас -7.5325 -46.03556 P PPL BR 13 68056 254 America/Fortaleza 2010-01-29
-3406844 Baião Baiao -2.79056 -49.67167 P PPL BR 16 12316 31 America/Santarem 2006-12-13
-3406910 Bacabal Bacabal Bacabal,Bakabal,Бакабал -4.29167 -44.79167 P PPL BR 13 72372 28 America/Fortaleza 2010-01-29
-3406948 Autazes Autazes Ambrosio Aires,Ambrósio Aires,Sao Longuilho -3.57972 -59.13056 P PPL BR 04 9614 23 America/Manaus 2006-12-13
-3406954 Aurora Aurora -6.9425 -38.9675 P PPL BR 06 10757 273 America/Fortaleza 2006-12-13
-3406961 Augusto Corrêa Augusto Correa -1.02167 -46.635 P PPL BR 16 16279 7 America/Santarem 2006-12-13
-3406996 Atalaia Atalaia -9.50194 -36.02278 P PPL BR 02 18908 61 America/Maceio 2006-12-13
-3407010 Assaré Assare Acare,Açaré -6.87444 -39.875 P PPL BR 06 11369 446 America/Fortaleza 2006-12-13
-3407091 Aroeiras Aroeiras -7.54528 -35.7075 P PPL BR 17 7019 341 America/Fortaleza 2006-12-13
-3407151 Arês Ares Arez -6.19444 -35.16028 P PPL BR 22 7231 55 America/Fortaleza 2006-12-13
-3407194 Areia Branca Areia Branca -4.95611 -37.13694 P PPL BR 22 18372 11 America/Fortaleza 2006-12-13
-3407210 Areia Areia -6.96333 -35.69167 P PPL BR 17 13824 546 America/Fortaleza 2006-12-13
-3407216 Arcoverde Arcoverde Arkoverdi,Rio Branco,Арковерди -8.41889 -37.05389 P PPL BR 30 57163 670 America/Recife 2010-01-29
-3407239 Araruna Araruna -6.55833 -35.74167 P PPL BR 17 7667 496 America/Fortaleza 2006-12-13
-3407243 Araripina Araripina Araripina,Sao Goncalo,São Gonçalo,Арарипина -7.57611 -40.49833 P PPL BR 30 38569 624 America/Recife 2010-01-29
-3407248 Araripe Araripe Brejo Secco,Brejo Seco,Brejo Sêco -7.2125 -40.04611 P PPL BR 06 11860 677 America/Fortaleza 2006-12-13
-3407258 Arari Arari Arary -3.45361 -44.78 P PPL BR 13 16777 9 America/Fortaleza 2006-12-13
-3407297 Arara Arara -6.82833 -35.75833 P PPL BR 17 7641 461 America/Fortaleza 2006-12-13
-3407327 Arapiraca Arapiraca -9.7525 -36.66111 P PPL BR 02 166562 275 America/Maceio 2006-12-13
-3407351 Araioses Araioses Arayoses,Arayozes,Enjeitado,Sao Bernardo,Sao Bernardo do Parnaiba,São Bernardo,São Bernardo do Parnaíba -2.89 -41.90306 P PPL BR 13 8667 7 America/Fortaleza 2006-12-13
-3407357 Araguaína Araguaina Lontra -7.19111 -48.20722 P PPL BR BR 31 105019 237 America/Araguaina 2010-09-02
-3407366 Araçoiaba Aracoiaba Arassoiaba,Cha do Estevam,Cha do Estevao,Châ do Estevam,Chã do Estêvão -7.79028 -35.09083 P PPL BR 30 13095 166 America/Recife 2006-12-13
-3407367 Aracoiaba Aracoiaba Aracoyaba -4.37111 -38.81417 P PPL BR 06 13425 112 America/Fortaleza 2006-12-13
-3407378 Aracati Aracati Aracaty,Arakati,Аракати -4.56167 -37.76972 P PPL BR 06 44293 12 America/Fortaleza 2010-01-29
-3407407 Aquiraz Aquiraz -3.90139 -38.39111 P PPL BR 06 65116 21 America/Fortaleza 2006-12-13
-3407440 Apodi Apodi Apody -5.66417 -37.79889 P PPL BR 22 16757 73 America/Fortaleza 2006-12-13
-3407544 Angicos Angicos -5.66556 -36.60111 P PPL BR 22 7728 113 America/Fortaleza 2006-12-13
-3407669 Ananindeua Ananindeua Ananindeua,Ананиндеуа -1.36556 -48.37222 P PPL BR 16 433956 19 America/Santarem 2010-01-29
-3407682 Anajatuba Anajatuba -3.26444 -44.61972 P PPL BR 13 5627 11 America/Fortaleza 2006-12-13
-3407693 Anadia Anadia -9.68444 -36.30417 P PPL BR 02 9574 147 America/Maceio 2006-12-13
-3407703 Amontada Amontada Sao Bento,Sao Bento d'Amontada,Sao Bento da Amontada,São Bento,São Bento d'Amontada,São Bento da Amontada -3.36167 -39.83167 P PPL BR 06 13520 37 America/Fortaleza 2006-12-13
-3407755 Amarante do Maranhão Amarante do Maranhao Amarante do Grajau -5.56667 -46.74222 P PPL BR 13 11510 247 America/Fortaleza 2006-12-13
-3407756 Amarante Amarante Sao Goncalo,São Gonçalo -6.24111 -42.85472 P PPL BR 20 8828 101 America/Fortaleza 2006-12-13
-3407758 Amaraji Amaraji Amaragi,Amaragy -8.38306 -35.4525 P PPL BR 30 16660 262 America/Recife 2006-12-13
-3407797 Altos Altos -5.03806 -42.46 P PPL BR 20 28768 192 America/Fortaleza 2006-12-13
-3407805 Alto Longá Alto Longa Humildes -5.25111 -42.21028 P PPL BR 20 4435 141 America/Fortaleza 2006-12-13
-3407871 Altinho Altinho -8.48972 -36.05944 P PPL BR 30 11913 458 America/Recife 2006-12-13
-3407882 Altamira Altamira Al'tamira,Альтамира -3.20333 -52.20639 P PPL BR 16 70888 101 America/Santarem 2010-01-29
-3407903 Almeirim Almeirim Almejrin,Almerim,Алмейрин -1.52333 -52.58167 P PPL BR 16 20464 6 America/Santarem 2010-01-29
-3407940 Alhandra Alhandra -7.43861 -34.91444 P PPL BR 17 10788 39 America/Fortaleza 2006-12-13
-3407977 Alexandria Alexandria -6.4125 -38.01583 P PPL BR 22 9769 314 America/Fortaleza 2006-12-13
-3407980 Alenquer Alenquer Alemquer -1.94167 -54.73833 P PPL BR 16 26290 32 America/Santarem 2006-12-13
-3408073 Alcântara Alcantara -2.40889 -44.41472 P PPL BR 13 5655 9 America/Fortaleza 2006-12-13
-3408094 Alagoinha Alagoinha Tauatuba -6.95 -35.545 P PPL BR 17 7474 136 America/Fortaleza 2006-12-13
-3408097 Alagoa Nova Alagoa Nova Larangeiras,Laranjeiras -7.07083 -35.75833 P PPL BR 17 9182 440 America/Fortaleza 2006-12-13
-3408100 Alagoa Grande Alagoa Grande -7.15833 -35.63 P PPL BR 17 16406 334 America/Fortaleza 2006-12-13
-3408166 Águas Belas Aguas Belas Aguas Bellas -9.11139 -37.12306 P PPL BR 30 22563 378 America/Recife 2006-12-13
-3408175 Água Preta Agua Preta -8.7075 -35.53056 P PPL BR 30 16444 133 America/Recife 2006-12-13
-3408210 Água Branca Agua Branca -9.26083 -37.93611 P PPL BR 02 5160 569 America/Maceio 2006-12-13
-3408221 Água Branca Agua Branca -5.89222 -42.63611 P PPL BR 20 13912 247 America/Fortaleza 2006-12-13
-3408251 Agrestina Agrestina Bebedouro -8.45806 -35.94472 P PPL BR 30 14452 432 America/Recife 2006-12-13
-3408269 Afuá Afua Affua -0.15667 -50.38667 P PPL BR 16 7031 1 America/Santarem 2006-12-13
-3408272 Afonso Bezerra Afonso Bezerra Alfonso Bezerra -5.49833 -36.50556 P PPL BR 22 6947 68 America/Fortaleza 2006-12-13
-3408274 Afogados da Ingazeira Afogados da Ingazeira Afogados,Passagem dos Afogados -7.75083 -37.63917 P PPL BR 30 25060 516 America/Recife 2006-12-13
-3408337 Açu Acu Assu -5.57667 -36.90861 P PPL BR 22 36125 36 America/Fortaleza 2006-12-13
-3408343 Acopiara Acopiara Affonso Penna,Afonso-Pena,Lages,Lajes -6.09528 -39.4525 P PPL BR 06 24561 319 America/Fortaleza 2006-12-13
-3408368 Acaraú Acarau Acarahu,Acarahú,Akarau,Акарау -2.88556 -40.12 P PPL BR 06 28389 17 America/Fortaleza 2010-01-29
-3408386 Acará Acara -1.96083 -48.19667 P PPL BR 16 12802 6 America/Santarem 2006-12-13
-3408404 Abreu e Lima Abreu e Lima Abreu e Lima,Maricota -7.91167 -34.90278 P PPL BR 30 81959 30 America/Recife 2006-12-13
-3408424 Abaetetuba Abaetetuba Abaete,Abaetetuba,Abaeté -1.71806 -48.8825 P PPL BR 16 78050 9 America/Santarem 2006-12-13
-3444823 Xique Xique Xique Xique Chique-Chique -10.82167 -42.73111 P PPL BR 05 35433 404 America/Bahia 2006-12-13
-3444843 Chavantes Chavantes Chavantes -23.03889 -49.70944 P PPL BR 27 10306 553 America/Sao_Paulo 2006-12-13
-3444848 Xanxerê Xanxere Ruy Barbosa,Xanere,Xaneré -26.87694 -52.40417 P PPL BR 26 32957 796 America/Sao_Paulo 2006-12-13
-3444864 Votuporanga Votuporanga -20.42278 -49.97278 P PPL BR 27 69863 528 America/Sao_Paulo 2010-09-02
-3444866 Votorantim Votorantim Voturantim -23.54667 -47.43778 P PPL BR 27 99390 572 America/Sao_Paulo 2006-12-13
-3444876 Volta Redonda Volta Redonda V Redonda -22.52306 -44.10417 P PPL BR 21 249580 400 America/Sao_Paulo 2010-05-24
-3444914 Vitória da Conquista Vitoria da Conquista Conquista,Vitoria da Conquista,Vitorija-da-Konkista,Vitória da Conquista,Витория-да-Конкиста -14.86611 -40.83944 P PPL BR 05 253137 876 America/Bahia 2010-01-29
-3444924 Vitória Vitoria Victoria,Vitoria,Vitorija,Vitória,bitoria,wytwryh,Витория,ויטוריה,ビトリア -20.31944 -40.33778 P PPLA BR 08 312656 16 America/Sao_Paulo 2007-02-17
-3444969 Visconde do Rio Branco Visconde do Rio Branco Rio Branco -21.01028 -42.84056 P PPL BR 15 29009 343 America/Sao_Paulo 2006-12-13
-3444997 Viradouro Viradouro Viradoura -20.87306 -48.29694 P PPL BR 27 17172 540 America/Sao_Paulo 2006-12-13
-3445014 Vinhedo Vinhedo Rocinha -23.02972 -46.97528 P PPLA2 BR 27 3556701 56492 733 America/Sao_Paulo 2012-03-10
-3445026 Vila Velha Vila Velha Espirito Santo,Espirito Santo de Vitoria,Espírito Santo,Espírito Santo de Vitória,Vila Velha,Vila-Vel'ja,Вила-Велья,וילה ואלה -20.32972 -40.2925 P PPL BR 08 394930 5 America/Sao_Paulo 2010-01-29
-3445126 Videira Videira Perdizes,Videjra,Видейра -27.00833 -51.15167 P PPL BR 26 42440 747 America/Sao_Paulo 2010-01-29
-3445133 Viçosa Vicosa -20.75389 -42.88194 P PPL BR 15 68680 656 America/Sao_Paulo 2006-12-13
-3445148 Vianópolis Vianopolis Viannopolis -16.74194 -48.51639 P PPL BR 29 7807 1006 America/Sao_Paulo 2006-12-13
-3445153 Viana Viana Jabaete,Jabaeté,Viana,Vianna,Виана -20.39028 -40.49611 P PPL BR 08 55122 35 America/Sao_Paulo 2010-01-29
-3445156 Viamão Viamao Viamao,Viamão -30.08111 -51.02333 P PPL BR 23 285269 108 America/Sao_Paulo 2006-12-13
-3445162 Vespasiano Vespasiano -19.69194 -43.92333 P PPL BR 15 94749 689 America/Sao_Paulo 2006-12-13
-3445299 Veranópolis Veranopolis Alfredo Chaves -28.93611 -51.54944 P PPL BR 23 19861 669 America/Sao_Paulo 2006-12-13
-3445307 Vera Cruz Vera Cruz -12.63333 -41.03333 P PPL BR 05 30556 533 America/Bahia 2006-01-17
-3445348 Wenceslau Braz Wenceslau Braz Venceslau Braz,Vencesleu-Bras,Vencesleu-Brás,Wenceslau Braz -23.87389 -49.80278 P PPL BR 18 15726 834 America/Sao_Paulo 2006-12-13
-3445350 Venâncio Aires Venancio Aires Venancia Ayres,Venancio Ayres -29.60639 -52.19194 P PPL BR 23 40627 43 America/Sao_Paulo 2006-12-13
-3445418 Vazante Vazante -17.98694 -46.90778 P PPL BR 15 15459 665 America/Sao_Paulo 2006-12-13
-3445433 Vassouras Vassouras -22.40389 -43.6625 P PPL BR 21 21174 424 America/Sao_Paulo 2006-12-13
-3445442 Varzelândia Varzelandia -15.70139 -44.0275 P PPL BR 15 6397 745 America/Sao_Paulo 2006-12-13
-3445446 Várzea Paulista Varzea Paulista Secundino Veiga -23.21139 -46.82833 P PPL BR 27 110936 755 America/Sao_Paulo 2006-12-13
-3445451 Várzea Grande Varzea Grande Varzea Grande,Várzea Grande -15.64667 -56.1325 P PPL BR 14 249752 197 America/Cuiaba 2006-12-13
-3445459 Várzea da Palma Varzea da Palma -17.59806 -44.73083 P PPL BR 15 28706 520 America/Sao_Paulo 2006-12-13
-3445487 Varginha Varginha -21.55139 -45.43028 P PPL BR 15 116571 887 America/Sao_Paulo 2006-12-13
-3445500 Vargem Grande do Sul Vargem Grande do Sul Santa Ana do Vargem Grande,Vargem Grande,Varzhen-Grandi-du-Sul,Варжен-Гранди-ду-Сул -21.83222 -46.89361 P PPL BR 27 36213 725 America/Sao_Paulo 2010-01-29
-3445534 Vargem Alta Vargem Alta -20.67139 -41.00694 P PPL BR 08 4672 604 America/Sao_Paulo 2006-12-13
-3445575 Valparaíso Valparaiso -21.22778 -50.86833 P PPL BR 27 15938 443 America/Sao_Paulo 2006-12-13
-3445578 Valinhos Valinhos Vallinhos -22.97056 -46.99583 P PPL BR 27 88630 684 America/Sao_Paulo 2006-12-13
-3445594 Valente Valente -11.41222 -39.46194 P PPL BR 05 12588 357 America/Bahia 2006-12-13
-3445596 Valença Valenca Marques de Valenca,Marquês de Valença,Valensa,Валенса -22.24556 -43.70028 P PPL BR 21 61144 560 America/Sao_Paulo 2010-01-29
-3445597 Valença Valenca -13.37028 -39.07306 P PPL BR 05 63231 9 America/Bahia 2006-12-13
-3445630 Vacaria Vacaria Ibia'e,Ibia'é,Vaccaria,Vakarija,Вакария -28.51222 -50.93389 P PPL BR 23 56765 970 America/Sao_Paulo 2010-01-29
-3445667 Urussanga Urussanga Urucanga,Uruçanga -28.51778 -49.32083 P PPL BR 26 10669 49 America/Sao_Paulo 2006-12-13
-3445675 Urupês Urupes Mundo Novo -21.20167 -49.29 P PPL BR 27 10745 441 America/Sao_Paulo 2006-12-13
-3445679 Uruguaiana Uruguaiana Uruguaiana,Uruguayana -29.75472 -57.08833 P PPL BR 23 123480 79 America/Sao_Paulo 2007-02-18
-3445690 Uruçuca Urucuca Agua Preta,Urycuca,Uryçuca -14.59306 -39.28444 P PPL BR 05 24409 95 America/Bahia 2006-12-13
-3445712 Uruana Uruana -15.49806 -49.6875 P PPL BR 29 10258 577 America/Sao_Paulo 2006-12-13
-3445713 Uruaçu Uruacu Sant'Anna,Santana,Uruasu,Urucu,Uruçu,Уруасу -14.52472 -49.14083 P PPL BR 29 30088 524 America/Sao_Paulo 2010-01-29
-3445746 União da Vitória Uniao da Vitoria Unian-da-Vitorija,Uniao da Victoria,União da Victoria,Униан-да-Витория -26.23 -51.08639 P PPL BR 18 48741 759 America/Sao_Paulo 2010-01-29
-3445764 Unaí Unai Capim Branco,Unahy,Unaj,Унай -16.3575 -46.90611 P PPL BR 15 60202 582 America/Sao_Paulo 2010-01-29
-3445781 Una Una -15.29333 -39.07528 P PPL BR 05 22613 16 America/Bahia 2006-12-13
-3445782 Umuarama Umuarama -23.76639 -53.325 P PPL BR 18 89687 443 America/Sao_Paulo 2006-12-13
-3445818 Umbaúba Umbauba Papemal -11.38333 -37.65778 P PPL BR 28 12880 142 America/Maceio 2006-12-13
-3445831 Uberlândia Uberlandia -18.91861 -48.27722 P PPL BR 15 563536 867 America/Sao_Paulo 2006-12-13
-3445839 Uberaba Uberaba Uberaba,Убераба -19.74833 -47.93194 P PPL BR 15 260843 772 America/Sao_Paulo 2010-01-29
-3445847 Ubatuba Ubatuba -23.43389 -45.07111 P PPLA2 BR 27 3555406 79007 6 America/Sao_Paulo 2012-03-10
-3445849 Ubatã Ubata Dois Irmaos,Dois Irmãos -14.21389 -39.52278 P PPL BR 05 15604 106 America/Bahia 2006-12-13
-3445853 Ubaitaba Ubaitaba Itapira -14.3125 -39.32333 P PPL BR 05 28375 47 America/Bahia 2006-12-13
-3445854 Ubaíra Ubaira Areia -13.26806 -39.66278 P PPL BR 05 8069 339 America/Bahia 2006-12-13
-3445859 Ubá Uba -21.12 -42.94278 P PPL BR 15 97828 343 America/Sao_Paulo 2006-12-13
-3445912 Turmalina Turmalina -17.28556 -42.73 P PPL BR 15 8795 721 America/Sao_Paulo 2006-12-13
-3445922 Tupi Paulista Tupi Paulista Gracianopolis,Gracianópolis,Tupi -21.38111 -51.57056 P PPL BR 27 10877 383 America/Sao_Paulo 2006-12-13
-3445939 Tupanciretã Tupancireta Tupaceretan,Tupacireta,Tupaciretã,Tuparecetan -29.08056 -53.83583 P PPL BR 23 17488 464 America/Sao_Paulo 2006-12-13
-3445941 Tupaciguara Tupaciguara Tupacyguara,Tupasiguara,Тупасигуара -18.59222 -48.705 P PPL BR 15 24398 871 America/Sao_Paulo 2010-01-29
-3445942 Tupã Tupa Tupa,Tupan,Тупа -21.93472 -50.51361 P PPL BR 27 62035 528 America/Sao_Paulo 2010-01-29
-3445983 Tucano Tucano -10.96306 -38.78667 P PPL BR 05 31203 219 America/Bahia 2006-12-13
-3445993 Tubarão Tubarao -28.46667 -49.00694 P PPL BR 26 67245 7 America/Sao_Paulo 2006-12-13
-3446019 Triunfo Triunfo Bom Jesus de Triunfo,Bom Jesus do Triunfo,Triumfo,Triumpho -29.94333 -51.71806 P PPL BR 23 14749 22 America/Sao_Paulo 2006-12-13
-3446038 Trindade Trindade -16.64944 -49.48889 P PPL BR 29 97521 768 America/Sao_Paulo 2006-12-13
-3446065 Três Rios Tres Rios Entre-Rios -22.11667 -43.20917 P PPL BR 21 71944 276 America/Sao_Paulo 2006-12-13
-3446077 Três Pontas Tres Pontas -21.36667 -45.5125 P PPL BR 15 43749 888 America/Sao_Paulo 2006-12-13
-3446087 Três Passos Tres Passos -27.45556 -53.93194 P PPL BR 23 17286 449 America/Sao_Paulo 2006-12-13
-3446098 Três Lagoas Tres Lagoas Lagoas,Tres Lagoas,Três Lagoas,trys laghwas,تريس لاغواس -20.75111 -51.67833 P PPL BR 11 78712 327 America/Campo_Grande 2006-12-13
-3446130 Três de Maio Tres de Maio 3 de Maio,3 do Maio,Trez de Maio -27.77333 -54.24 P PPL BR 23 18278 351 America/Sao_Paulo 2006-12-13
-3446137 Três Coroas Tres Coroas Ibicacu,Ibicacú,Mundo Novo -29.51694 -50.77778 P PPL BR 23 21051 53 America/Sao_Paulo 2006-12-13
-3446138 Três Corações Tres Coracoes Tres Coracoes,Três Corações -21.69694 -45.25333 P PPL BR 15 63457 884 America/Sao_Paulo 2006-12-13
-3446171 Três Barras Tres Barras -26.10639 -50.32222 P PPL BR 26 14855 767 America/Sao_Paulo 2006-12-13
-3446194 Tremembé Tremembe -22.95833 -45.54944 P PPL BR 27 31719 558 America/Sao_Paulo 2006-12-13
-3446198 Tremedal Tremedal -14.97583 -41.41083 P PPL BR 05 3252 514 America/Bahia 2006-12-13
-3446232 Tramandaí Tramandai Tramandahy -29.98472 -50.13361 P PPL BR 23 34734 9 America/Sao_Paulo 2006-12-13
-3446295 Torres Torres Torres,Торрес -29.33528 -49.72694 P PPL BR 23 32791 8 America/Sao_Paulo 2010-01-29
-3446363 Tomar do Geru Tomar do Geru Geru,Gerú,Jeru,Tomar do Jeru -11.37333 -37.84056 P PPL BR 28 4394 194 America/Maceio 2006-12-13
-3446370 Toledo Toledo Toledo,Толедо -24.71361 -53.74306 P PPL BR 18 97845 562 America/Sao_Paulo 2010-01-29
-3446392 Tocantins Tocantins -21.175 -43.01778 P PPL BR 15 12875 356 America/Sao_Paulo 2006-12-13
-3446400 Tobias Barreto Tobias Barreto Campos,Nossa Senhora de Campos do Rio Real -11.18389 -37.99833 P PPL BR 28 29740 164 America/Maceio 2006-12-13
-3446420 Tiradentes Tiradentes -21.11028 -44.17806 P PPL BR 15 4439 930 America/Sao_Paulo 2006-12-13
-3446445 Timóteo Timoteo Timofej,Timothea,Тимофей -19.5825 -42.64444 P PPL BR 15 91722 333 America/Sao_Paulo 2010-01-29
-3446465 Timbó Timbo -26.82333 -49.27167 P PPL BR 26 33765 69 America/Sao_Paulo 2006-12-13
-3446500 Tijucas Tijucas Tizhukas,Тижукас -27.24139 -48.63361 P PPL BR 26 22481 5 America/Sao_Paulo 2010-01-29
-3446539 Tietê Tiete -23.10194 -47.71472 P PPL BR 27 32061 513 America/Sao_Paulo 2006-12-13
-3446550 Tibagi Tibagi Tibagy,Tibaji -24.50944 -50.41361 P PPL BR 18 12644 716 America/Sao_Paulo 2006-12-13
-3446556 Teutônia Teutonia -29.44806 -51.80639 P PPL BR 23 21834 93 America/Sao_Paulo 2006-12-13
-3446579 Terra Roxa Terra Roxa Terra Roxa -23.85571 -50.0314 P PPL BR 18 10911 688 America/Sao_Paulo 2012-01-19
-3446581 Terra Rica Terra Rica -22.70944 -52.61694 P PPL BR 18 10346 409 America/Sao_Paulo 2006-12-13
-3446587 Terra Nova Terra Nova -12.36667 -40.66667 P PPL BR 05 11169 604 America/Bahia 2006-01-17
-3446598 Terra Boa Terra Boa -23.76806 -52.44417 P PPL BR 18 12958 568 America/Sao_Paulo 2006-12-13
-3446606 Teresópolis Teresopolis Therezopolis -22.41222 -42.96556 P PPL BR 21 123979 883 America/Sao_Paulo 2006-12-13
-3446619 Terenos Terenos Terreno,Terrenos -20.44222 -54.86028 P PPL BR 11 6086 429 America/Campo_Grande 2006-12-13
-3446621 Teófilo Otoni Teofilo Otoni Teofilo Otoni,Teófilo Otoni,Theophilo Ottoni -17.8575 -41.50528 P PPL BR 15 101170 343 America/Sao_Paulo 2006-12-13
-3446625 Teodoro Sampaio Teodoro Sampaio -22.5325 -52.1675 P PPL BR 27 15193 342 America/Sao_Paulo 2006-12-13
-3446652 Telêmaco Borba Telemaco Borba -24.32389 -50.61556 P PPL BR 18 58880 736 America/Sao_Paulo 2006-12-13
-3446682 Taubaté Taubate -23.02639 -45.55528 P PPLA2 BR 27 3554102 251641 589 America/Sao_Paulo 2012-03-10
-3446692 Tatuí Tatui Tatuhy,Tatui,Tatuí -23.35556 -47.85694 P PPLA2 BR 27 3554003 93580 642 America/Sao_Paulo 2012-03-10
-3446718 Tarumã Taruma Turuma,Turuman,Turumã -22.74667 -50.57722 P PPL BR 27 10337 452 America/Sao_Paulo 2006-12-13
-3446752 Taquarituba Taquarituba Taquari,Taquary -23.53306 -49.24444 P PPL BR 27 21492 621 America/Sao_Paulo 2006-12-13
-3446753 Taquaritinga Taquaritinga -21.40611 -48.50472 P PPL BR 27 50098 573 America/Sao_Paulo 2006-12-13
-3446783 Taquari Taquari Takuari,Taquary,Такуари -29.79972 -51.86444 P PPL BR 23 27107 57 America/Sao_Paulo 2010-01-29
-3446847 Taquara Taquara -29.65056 -50.78056 P PPL BR 23 48051 33 America/Sao_Paulo 2006-12-13
-3446866 Tapiramutá Tapiramuta Espera d'Anta -11.84722 -40.79139 P PPL BR 05 16544 825 America/Bahia 2006-12-13
-3446880 Tapes Tapes Porto de Tapes -30.67333 -51.39583 P PPL BR 23 18570 9 America/Sao_Paulo 2006-12-13
-3446881 Taperoá Taperoa Taperua,Taperuá -13.53806 -39.09861 P PPL BR 05 8095 6 America/Bahia 2006-12-13
-3446922 Tapejara Tapejara Teixeira -28.06806 -52.01389 P PPL BR 23 14064 666 America/Sao_Paulo 2006-12-13
-3446923 Tapejara Tapejara -23.73306 -52.87333 P PPL BR 18 10726 518 America/Sao_Paulo 2006-12-13
-3446971 Tanhaçu Tanhacu Lacos,Laços,Sao Sebastiao,São Sebastião -14.02139 -41.24806 P PPL BR 05 6620 433 America/Bahia 2006-12-13
-3446974 Tanguá Tangua -22.73028 -42.71417 P PPL BR 21 23740 30 America/Sao_Paulo 2006-12-13
-3446979 Tanabi Tanabi Tanaby -20.62639 -49.64917 P PPL BR 27 18227 519 America/Sao_Paulo 2006-12-13
-3447005 Tambaú Tambau Tambahu,Tambahú -21.705 -47.27444 P PPL BR 27 19956 703 America/Sao_Paulo 2006-12-13
-3447059 Taiobeiras Taiobeiras Tajobejras,Tayobeiras,Тайобейрас -15.80778 -42.23306 P PPL BR 15 24351 832 America/Sao_Paulo 2010-01-29
-3447075 Taguatinga Taguatinga Santa Maria,Santa Maria do Taguatinga -12.40389 -46.43611 P PPLA2 BR BR 31 1720903 13711 599 America/Araguaina 2012-03-10
-3447186 Taboão da Serra Taboao da Serra Tabuao da Serra,Tabuão da Serra -23.62611 -46.79167 P PPLA2 BR 27 3552809 214523 795 America/Sao_Paulo 2012-03-10
-3447200 Tabatinga Tabatinga -21.71667 -48.6875 P PPL BR 27 11616 489 America/Sao_Paulo 2006-12-13
-3447212 Suzano Suzano Susano,Suzano,Сузано -23.5425 -46.31083 P PPL BR 27 283314 747 America/Sao_Paulo 2010-01-29
-3447259 Sumaré Sumare Reboucas,Rebouças -22.82194 -47.26694 P PPLA2 BR 27 3552403 227977 573 America/Sao_Paulo 2012-03-10
-3447399 Sorocaba Sorocaba Sorocaba -23.50167 -47.45806 P PPLA2 BR 27 3552205 558862 602 America/Sao_Paulo 2012-03-10
-3447409 Sombrio Sombrio -29.11389 -49.61667 P PPL BR 26 14864 2 America/Sao_Paulo 2006-12-13
-3447423 Soledade Soledade -28.81833 -52.51028 P PPL BR 23 24791 717 America/Sao_Paulo 2006-12-13
-3447437 Socorro Socorro Soccorro,Sokorro,Сокорро -22.59139 -46.52889 P PPLA2 BR 27 3552106 24272 766 America/Sao_Paulo 2012-03-10
-3447473 Sobradinho Sobradinho -12.83333 -39.1 P PPL BR 05 19304 167 America/Bahia 2006-01-17
-3447537 Siqueira Campos Siqueira Campos Colonia Mineira -23.68889 -49.83389 P PPL BR 18 13866 622 America/Sao_Paulo 2006-12-13
-3447562 Simão Dias Simao Dias Anapolis,Annapolis,Anápolis -10.73833 -37.81111 P PPL BR 28 18385 265 America/Maceio 2006-12-13
-3447589 Silvânia Silvania Bomfim,Bonfim -16.65889 -48.60806 P PPL BR 29 11377 903 America/Sao_Paulo 2006-12-13
-3447591 Silva Jardim Silva Jardim Capivari,Capivary -22.65083 -42.39167 P PPL BR 21 16888 19 America/Sao_Paulo 2006-12-13
-3447597 Sidrolândia Sidrolandia -20.93194 -54.96139 P PPL BR 11 16878 491 America/Campo_Grande 2006-12-13
-3447598 Siderópolis Sideropolis Nova Beluno,Novo Bellamo -28.59778 -49.42444 P PPL BR 26 8536 115 America/Sao_Paulo 2006-12-13
-3447602 Severínia Severinia -20.80944 -48.80278 P PPL BR 27 13212 588 America/Sao_Paulo 2006-12-13
-3447624 Sete Lagoas Sete Lagoas -19.46583 -44.24667 P PPL BR 15 201334 764 America/Sao_Paulo 2006-12-13
-3447651 Sertãozinho Sertaozinho -21.13778 -47.99028 P PPL BR 27 99211 547 America/Sao_Paulo 2006-12-13
-3447658 Sertanópolis Sertanopolis -23.05861 -51.03639 P PPL BR 18 13903 403 America/Sao_Paulo 2006-12-13
-3447672 Serro Serro -18.60472 -43.37944 P PPL BR 15 12616 821 America/Sao_Paulo 2006-12-13
-3447690 Serrinha Serrinha -11.66417 -39.0075 P PPL BR 05 49078 368 America/Bahia 2006-12-13
-3447718 Serra Negra Serra Negra -22.61222 -46.70056 P PPLA2 BR 27 3551603 22632 937 America/Sao_Paulo 2012-03-10
-3447720 Serrana Serrana -21.21139 -47.59556 P PPL BR 27 39826 560 America/Sao_Paulo 2006-12-13
-3447779 Serra Serra Serra,Серра -20.12861 -40.30778 P PPL BR 08 394153 57 America/Sao_Paulo 2010-01-29
-3447785 Seropédica Seropedica -22.74389 -43.7075 P PPL BR 21 54846 40 America/Sao_Paulo 2006-12-13
-3447839 Senhor do Bonfim Senhor do Bonfim Bomfim,Bonfim -10.46139 -40.18944 P PPL BR 05 48471 544 America/Bahia 2006-12-13
-3447848 Sengés Senges -24.11278 -49.46361 P PPL BR 18 14867 601 America/Sao_Paulo 2006-12-13
-3447854 Senador Canedo Senador Canedo -16.70806 -49.09306 P PPL BR 29 61800 800 America/Sao_Paulo 2006-12-13
-3447928 Seabra Seabra Doutor Seabra -12.41861 -41.77028 P PPL BR 05 16764 817 America/Bahia 2006-12-13
-3447929 Schroeder Schroeder Joaquim Wolf,Joaquim Wolff -26.4125 -49.07306 P PPL BR 26 15505 46 America/Sao_Paulo 2006-12-13
-3447961 Saubara Saubara -12.7375 -38.76861 P PPL BR 05 15662 20 America/Bahia 2006-12-13
-3447969 Sarzedo Sarzedo -20.03528 -44.14472 P PPL BR 15 20798 795 America/Sao_Paulo 2006-12-13
-3447997 Sarandi Sarandi Colonia Sarandy,Sarandi,Саранди -27.94389 -52.92306 P PPL BR 23 15158 505 America/Sao_Paulo 2010-01-29
-3447998 Sarandi Sarandi -23.44361 -51.87389 P PPL BR 18 84697 586 America/Sao_Paulo 2006-12-13
-3448011 Saquarema Saquarema -22.92 -42.51028 P PPL BR 21 62056 2 America/Sao_Paulo 2006-12-13
-3448031 Sapucaia Sapucaia Acapucai,Açapucaí,Guianuba,Güianuba,Sapucaia,Sapukaja,Сапукая -29.83333 -51.15 P PPL BR 23 130937 37 America/Sao_Paulo 2012-01-19
-3448033 Sapucaia Sapucaia -21.995 -42.91444 P PPL BR 21 12329 224 America/Sao_Paulo 2006-12-13
-3448063 Sapiranga Sapiranga Sapyranga -29.63806 -51.00694 P PPL BR 23 76051 36 America/Sao_Paulo 2006-12-13
-3448136 São Vicente Sao Vicente -23.96306 -46.39194 P PPL BR 27 324457 10 America/Sao_Paulo 2006-12-13
-3448197 São Simão Sao Simao -21.47917 -47.55083 P PPL BR 27 12351 659 America/Sao_Paulo 2006-12-13
-3448207 São Sepé Sao Sepe -30.16056 -53.56528 P PPL BR 23 19181 96 America/Sao_Paulo 2006-12-13
-3448219 São Sebastião do Passé Sao Sebastiao do Passe Sao Sebastiao,São Sebastião -12.5125 -38.49528 P PPL BR 05 31049 51 America/Bahia 2006-12-13
-3448221 São Sebastião do Paraíso Sao Sebastiao do Paraiso San-Sebast'jan-du-Paraiso,Sao Sebastiao Paraiso,Sao Sebastiao do Paraizo,São Sebastião Paraíso,São Sebastião do Paraizo,Сан-Себастьян-ду-Параисо -20.91694 -46.99139 P PPL BR 15 57238 974 America/Sao_Paulo 2010-01-29
-3448227 São Sebastião do Caí Sao Sebastiao do Cai Cai,Caí,Sao Sebastiao do Cahy,São Sebastião do Cahy -29.58667 -51.37556 P PPL BR 23 19012 16 America/Sao_Paulo 2006-12-13
-3448257 São Sebastião Sao Sebastiao -23.76 -45.40972 P PPLA2 BR 27 3550704 76367 6 America/Sao_Paulo 2012-03-10
-3448300 São Roque Sao Roque -23.52917 -47.13528 P PPLA2 BR 27 3550605 50540 773 America/Sao_Paulo 2012-03-10
-3448332 São Pedro do Sul Sao Pedro do Sul San Pedro,Sao Pedro,São Pedro -29.62056 -54.17889 P PPL BR 23 12137 185 America/Sao_Paulo 2006-12-13
-3448351 São Pedro da Aldeia Sao Pedro da Aldeia Sao Pedro d'Aldeia,São Pedro d'Aldeia -22.83917 -42.10278 P PPL BR 21 55014 19 America/Sao_Paulo 2006-12-13
-3448403 São Pedro Sao Pedro -22.54861 -47.91389 P PPL BR 27 27068 566 America/Sao_Paulo 2006-12-13
-3448439 São Paulo Sao Paulo O Paulo,SAO,San Paolo del Brasile,San Paulas,San Paulo,San Paulo - Sao Paulo,San Paulo - São Paulo,San-Paulo,San-Paulu,San-Paŭlo,Sanpaulu,Sao Paolo,Sao Paulo,Sao Paulo capital,São Paulo,São Paulo capital,Urbs Paulistana,san pavlw,sangpaullu,sanpauro shi,saw bawlw,saywpaywlw,sheng bao luo,Σάο Πάολο,Сан-Паулу,Сан-Паўлу,Сао Пауло,סאו פאולו,سائوپائولو,سان پاۋلو,ساو باولو,サンパウロ市,聖保羅,상파울루 -23.5475 -46.63611 P PPLA BR 27 10021295 769 America/Sao_Paulo 2012-01-12
-3448453 São Miguel do Iguaçu Sao Miguel do Iguacu Gaucha,Gaúcha -25.34806 -54.23778 P PPL BR 18 15434 331 America/Sao_Paulo 2006-12-13
-3448455 São Miguel do Araguaia Sao Miguel do Araguaia -13.275 -50.16278 P PPL BR 29 18809 336 America/Sao_Paulo 2006-12-13
-3448502 São Mateus do Sul Sao Mateus do Sul San-Mateus-du-Sul,Sao Mateus,Sao Matheus,São Mateus,São Matheus,Сан-Матеус-ду-Сул -25.87417 -50.38278 P PPL BR 18 24904 792 America/Sao_Paulo 2010-01-29
-3448519 São Mateus Sao Mateus San-Mateus,Sao Mateus,Sao Matheus,São Mateus,São Matheus,Сан-Матеус -18.71611 -39.85889 P PPL BR 08 77117 40 America/Sao_Paulo 2010-01-29
-3448533 São Marcos Sao Marcos Sao Marecas,São Marecas -28.97111 -51.06806 P PPL BR 23 18591 741 America/Sao_Paulo 2006-12-13
-3448545 São Manuel Sao Manuel San-Manuehl',Sao Manoel do Paraizo,São Manoel do Paraizo,Сан-Мануэль -22.73111 -48.57056 P PPL BR 27 33587 704 America/Sao_Paulo 2010-01-29
-3448552 São Luiz Gonzaga Sao Luiz Gonzaga Sao Luiz,Sao Luiz Gonzaga,São Luiz,São Luiz Gonzaga -28.40833 -54.96083 P PPL BR 23 31798 264 America/Sao_Paulo 2006-12-13
-3448558 São Luís de Montes Belos Sao Luis de Montes Belos -16.525 -50.37222 P PPL BR 29 23619 579 America/Sao_Paulo 2006-12-13
-3448596 São Lourenço do Sul Sao Lourenco do Sul San-Lorensu-du-Sul,Sao Lourenco,São Lourenço,Сан-Лоренсу-ду-Сул -31.36528 -51.97833 P PPL BR 23 25340 13 America/Sao_Paulo 2010-01-29
-3448597 São Lourenço dOeste Sao Lourenco dOeste Sao Lourenco,Sao Lourenco do Oeste,São Lourenço,São Lourenço do Oeste -26.35917 -52.85111 P PPL BR 26 14871 881 America/Sao_Paulo 2006-12-13
-3448599 São Lourenço da Serra Sao Lourenco da Serra -23.8525 -46.9425 P PPL BR 27 13330 706 America/Sao_Paulo 2006-12-13
-3448616 São Lourenço Sao Lourenco San-Lorensu,Сан-Лоренсу -22.11639 -45.05444 P PPL BR 15 41143 884 America/Sao_Paulo 2010-01-29
-3448622 São Leopoldo Sao Leopoldo Sao Leopoldo,São Leopoldo -29.76028 -51.14722 P PPL BR 23 209229 10 America/Sao_Paulo 2006-12-13
-3448632 São José dos Pinhais Sao Jose dos Pinhais Sao Jose dos Pinhaes,Sao Jose dos Pinhais,São José dos Pinhaes,São José dos Pinhais -25.53472 -49.20639 P PPL BR 18 124224 905 America/Sao_Paulo 2006-12-13
-3448636 São José dos Campos Sao Jose dos Campos SJC,SJCampos,San-Zhoze-dus-Kampus,Sao Jose dos Campos,São José dos Campos,Vale Paraiba,Vale do Paraiba,Vale do Paraíba,Сан-Жозе-дус-Кампус -23.17944 -45.88694 P PPLA2 BR 27 3549904 613764 20 596 America/Sao_Paulo 2012-03-10
-3448639 São José do Rio Preto Sao Jose do Rio Preto Rio Preto,San-Zhoze-du-Riu-Pretu,Сан-Жозе-ду-Риу-Прету -20.81972 -49.37944 P PPLA2 BR 27 3549805 374699 505 America/Sao_Paulo 2012-03-10
-3448640 São José do Rio Pardo Sao Jose do Rio Pardo -21.59556 -46.88861 P PPL BR 27 46989 718 America/Sao_Paulo 2006-12-13
-3448669 São José do Calçado Sao Jose do Calcado -21.02528 -41.65444 P PPL BR 08 7442 327 America/Sao_Paulo 2006-12-13
-3448742 São José Sao Jose -28.23333 -49.16667 P PPL BR 26 200000 73 America/Sao_Paulo 2010-08-23
-3448824 São Joaquim de Bicas Sao Joaquim de Bicas Bicas -20.04917 -44.27389 P PPL BR 15 14630 756 America/Sao_Paulo 2006-12-13
-3448825 São Joaquim da Barra Sao Joaquim da Barra Sao Joaquim,São Joaquim -20.58139 -47.85472 P PPL BR 27 42720 623 America/Sao_Paulo 2006-12-13
-3448828 São Joaquim Sao Joaquim Sao Joaquim da Costa da Serra,São Joaquim da Costa da Serra -28.29389 -49.93167 P PPL BR 26 16250 1353 America/Sao_Paulo 2006-12-13
-3448846 São João Nepomuceno Sao Joao Nepomuceno San-Zhuan-Nepomuseno,Сан-Жуан-Непомусено -21.54 -43.01056 P PPL BR 15 23154 378 America/Sao_Paulo 2010-01-29
-3448850 São João Evangelista Sao Joao Evangelista -18.54778 -42.76333 P PPL BR 15 10049 708 America/Sao_Paulo 2006-12-13
-3448861 São João do Paraíso Sao Joao do Paraiso Sao Joao do Paraizo,São João do Paraizo -15.31361 -42.01444 P PPL BR 15 8859 789 America/Sao_Paulo 2006-12-13
-3448877 São João de Meriti Sao Joao de Meriti Meriti,Merity -22.80389 -43.37222 P PPL BR 21 454849 14 America/Sao_Paulo 2007-02-08
-3448879 São João del Rei Sao Joao del Rei Sao Joao del Rei,Sao Joao del-Rei,Sao Jose del Rey,São José del Rey,São João del Rei,São João del-Rei -21.13556 -44.26167 P PPL BR 15 78592 911 America/Sao_Paulo 2007-02-18
-3448892 São João da Ponte Sao Joao da Ponte -15.92917 -44.00778 P PPL BR 15 8373 717 America/Sao_Paulo 2006-12-13
-3448902 São João da Boa Vista Sao Joao da Boa Vista -21.96917 -46.79806 P PPL BR 27 76540 774 America/Sao_Paulo 2006-12-13
-3448903 São João da Barra Sao Joao da Barra San-Zhuan-da-Barra,Sao Joao De Barra,São Joao De Barra,Сан-Жуан-да-Барра -21.64028 -41.05111 P PPL BR 21 20606 7 America/Sao_Paulo 2010-01-29
-3448906 São João Batista Sao Joao Batista Sao Joao Baptista,São João Baptista -27.27611 -48.84944 P PPL BR 26 14538 32 America/Sao_Paulo 2006-12-13
-3449045 São Jerônimo Sao Jeronimo Sao Jeronymo,São Jeronymo -29.95917 -51.72222 P PPL BR 23 17056 18 America/Sao_Paulo 2006-12-13
-3449053 São Gotardo Sao Gotardo Sao Gothardo,São Gothardo -19.31111 -46.04889 P PPL BR 15 34145 1063 America/Sao_Paulo 2006-12-13
-3449055 São Gonçalo dos Campos Sao Goncalo dos Campos Sao Goncalo,São Gonçalo -12.43333 -38.96667 P PPL BR 05 14822 228 America/Bahia 2006-12-13
-3449056 São Gonçalo do Sapucaí Sao Goncalo do Sapucai Sao Goncalo,São Gonçalo -21.89222 -45.59528 P PPL BR 15 19487 866 America/Sao_Paulo 2006-12-13
-3449072 São Gonçalo Sao Goncalo -22.82694 -43.05389 P PPLA2 BR 21 3304904 0 21 America/Sao_Paulo 2012-03-10
-3449099 São Gabriel Sao Gabriel -30.33639 -54.32 P PPL BR 23 55434 119 America/Sao_Paulo 2006-12-13
-3449112 São Francisco do Sul Sao Francisco do Sul San-Fransisku-du-Sul,Sao Francisco,São Francisco,Сан-Франсиску-ду-Сул -26.24333 -48.63806 P PPL BR 26 36224 16 America/Sao_Paulo 2010-01-29
-3449116 São Francisco do Conde Sao Francisco do Conde San-Fransisku-du-Konde,Sao Francisco,São Francisco,Сан-Франсиску-ду-Конде -12.6275 -38.68 P PPL BR 05 24614 21 America/Bahia 2010-01-29
-3449121 São Francisco de Paula Sao Francisco de Paula Sao Francisca da Paulo,São Francisca da Paulo -29.44806 -50.58361 P PPL BR 23 13292 900 America/Sao_Paulo 2006-12-13
-3449124 São Francisco de Assis Sao Francisco de Assis -29.55028 -55.13111 P PPL BR 23 14305 134 America/Sao_Paulo 2006-12-13
-3449176 São Francisco Sao Francisco -15.94861 -44.86444 P PPL BR 15 33033 465 America/Sao_Paulo 2006-12-13
-3449195 São Fidélis Sao Fidelis -21.64611 -41.74694 P PPL BR 21 27793 22 America/Sao_Paulo 2006-12-13
-3449216 São Felipe Sao Felipe Sao Felipe,Sao Filippe,São Felipe,São Filippe -14.81667 -41.38333 P PPL BR 05 9574 473 America/Bahia 2012-01-19
-3449219 São Domingos do Prata Sao Domingos do Prata Sao Domingos da Prata -19.865 -42.96833 P PPL BR 15 9466 589 America/Sao_Paulo 2006-12-13
-3449293 São Domingos Sao Domingos -13.39833 -46.31833 P PPL BR 29 4784 681 America/Sao_Paulo 2006-12-13
-3449304 São Desidério Sao Desiderio -12.36333 -44.97333 P PPL BR 05 7295 503 America/Bahia 2006-12-13
-3449310 São Cristóvão Sao Cristovao San-Kristovan,Sao Christovao,São Christovão,Сан-Кристован -11.01472 -37.20639 P PPL BR 28 71539 38 America/Maceio 2010-01-29
-3449319 São Carlos Sao Carlos San-Karlos,Sao Carlos,Sao Carlos do Pinhal,São Carlos,São Carlos do Pinhal,Сан-Карлос -22.0175 -47.89083 P PPL BR 27 205035 838 America/Sao_Paulo 2010-01-29
-3449324 São Caetano do Sul Sao Caetano do Sul San-Kaehtano-du-Sul,Sao Caetano,São Caetano,Сан-Каэтано-ду-Сул -23.62306 -46.55111 P PPL BR 27 136453 770 America/Sao_Paulo 2010-01-29
-3449340 São Borja Sao Borja San-Borkha,Sao Borja,São Borja,Сан-Борха -28.66056 -56.00444 P PPL BR 23 59613 98 America/Sao_Paulo 2010-01-29
-3449344 São Bernardo do Campo Sao Bernardo do Campo SBC,SBCampo,San-Bernardo-du-Kampu,Sao Bernardo,Sao Bernardo do Campo,São Bernardo,São Bernardo do Campo,Сан-Бернардо-ду-Кампу -23.69389 -46.565 P PPL BR 27 743372 796 America/Sao_Paulo 2010-10-08
-3449350 São Bento do Sul Sao Bento do Sul San-Bentu-du-Sul,Sao Bento,Sao Bento do Sul,Serra Alta,São Bento,São Bento do Sul,Сан-Бенту-ду-Сул -26.25028 -49.37861 P PPL BR 26 77597 863 America/Sao_Paulo 2010-01-29
-3449427 Santos Dumont Santos Dumont Palmyra -21.45667 -43.5525 P PPL BR 15 41582 844 America/Sao_Paulo 2006-12-13
-3449433 Santos Santos Baixada Santista,Santos,santosu shi,Сантос,サントス市 -23.96083 -46.33361 P PPLA2 BR 27 3548500 411403 12 America/Sao_Paulo 2012-03-10
-3449467 Santo Estêvão Santo Estevao -12.43028 -39.25139 P PPL BR 05 27279 242 America/Bahia 2006-12-13
-3449476 Santo Augusto Santo Augusto -27.85083 -53.77722 P PPL BR 23 10305 533 America/Sao_Paulo 2006-12-13
-3449479 Santo Antônio do Sudoeste Santo Antonio do Sudoeste San Antonio,San Antônio,Santo Antonio,Santo Antônio -26.07361 -53.72528 P PPL BR 18 11723 544 America/Sao_Paulo 2006-12-13
-3449500 Santo Antônio do Monte Santo Antonio do Monte -20.08722 -45.29361 P PPL BR 15 22592 938 America/Sao_Paulo 2006-12-13
-3449502 Santo Antônio do Leverger Santo Antonio do Leverger Leverger,Santo Antonio,Santo Antonio do Rio Abaixo -15.86556 -56.07667 P PPL BR 14 6387 150 America/Cuiaba 2006-12-13
-3449516 Santo Antônio do Amparo Santo Antonio do Amparo -20.94639 -44.91889 P PPL BR 15 16730 1013 America/Sao_Paulo 2006-12-13
-3449518 Santo Antônio de Posse Santo Antonio de Posse Posse,Posse de Ressaca -22.60611 -46.91944 P PPL BR 27 18148 669 America/Sao_Paulo 2006-12-13
-3449519 Santo Antônio de Pádua Santo Antonio de Padua Santo Antonio do Padua -21.53944 -42.18028 P PPL BR 21 33076 91 America/Sao_Paulo 2006-12-13
-3449521 Santo Antônio de Jesus Santo Antonio de Jesus -12.96889 -39.26139 P PPL BR 05 73957 214 America/Bahia 2006-12-13
-3449529 Santo Antônio da Platina Santo Antonio da Platina Santo Antonio da Platino,Santu-Antoniu-da-Platina,Санту-Антониу-да-Платина -23.295 -50.07722 P PPL BR 18 35260 504 America/Sao_Paulo 2010-01-29
-3449696 Santo Ângelo Santo Angelo Santo Angelo,Santo Ângelo,Santu-Andzhelo,Санту-Анджело -28.29917 -54.26306 P PPL BR 23 64606 295 America/Sao_Paulo 2010-01-29
-3449701 Santo André Santo Andre Santo Andre,Santo André,Santu-Andre,Санту-Андре -23.66389 -46.53833 P PPL BR 27 662373 801 America/Sao_Paulo 2010-01-29
-3449707 Santo Anastácio Santo Anastacio -21.83833 -51.61028 P PPL BR 27 17233 395 America/Sao_Paulo 2006-12-13
-3449710 Santo Amaro das Brotas Santo Amaro das Brotas Santo Amaro,Santo Amaro das Brotas -10.78889 -37.05444 P PPL BR 28 9302 56 America/Maceio 2006-12-13
-3449711 Santo Amaro da Imperatriz Santo Amaro da Imperatriz Cambirela,Santo Amaro,Santo Amaro do Cubatao,Santo Amaro do Cubatão -27.68806 -48.77861 P PPL BR 26 18418 29 America/Sao_Paulo 2006-12-13
-3449720 Santo Amaro Santo Amaro -12.54667 -38.71194 P PPL BR 05 46748 11 America/Bahia 2006-12-13
-3449741 Santiago Santiago Sant'jago,Santiago do Boqueirao,Santiago do Boqueirão,Сантьяго -29.19167 -54.86722 P PPL BR 23 46611 426 America/Sao_Paulo 2010-01-29
-3449747 Santa Vitória do Palmar Santa Vitoria do Palmar Santa Victoria,Santa Victoria do Palmar -33.51889 -53.36806 P PPL BR 23 27775 22 America/Sao_Paulo 2006-12-13
-3449749 Santa Vitória Santa Vitoria Santa Victoria -18.83861 -50.12139 P PPL BR 15 11656 474 America/Sao_Paulo 2006-12-13
-3449782 Santa Teresa Santa Teresa Santa Tereza,Santa Thereza -19.93556 -40.60028 P PPL BR 08 9156 656 America/Sao_Paulo 2006-12-13
-3449793 Santa Rosa de Viterbo Santa Rosa de Viterbo Icaturama,Santa Rosa -21.47278 -47.36306 P PPL BR 27 21473 677 America/Sao_Paulo 2006-12-13
-3449822 Santa Rosa Santa Rosa -27.87083 -54.48139 P PPL BR 23 58957 284 America/Sao_Paulo 2006-12-13
-3449847 Santa Rita do Sapucaí Santa Rita do Sapucai Porto Sapucahy,Pôrto Sapucahy,Santa Rita do Sapucahy,Santa-Rita-du-Sapukajja,Санта-Рита-ду-Сапукайя -22.25222 -45.70333 P PPL BR 15 28765 826 America/Sao_Paulo 2010-01-29
-3449851 Santa Rita do Passa Quatro Santa Rita do Passa Quatro Santa Rita -21.71028 -47.47806 P PPL BR 27 24578 759 America/Sao_Paulo 2006-12-13
-3449933 Santana do Paraíso Santana do Paraiso Santana-du-Paraiso,Сантана-ду-Параисо -19.36361 -42.56861 P PPL BR 15 25515 566 America/Sao_Paulo 2010-01-29
-3449936 Santana do Livramento Santana do Livramento Livramento,Sant'Anna do Livramento,Santana do Livramento,Santana-du-Livramentu,Сантана-ду-Ливраменту -30.89083 -55.53278 P PPL BR 23 89694 213 America/Sao_Paulo 2010-01-29
-3449948 Santana de Parnaíba Santana de Parnaiba Parnahyba,Parnaiba,Parnaíba,Sant'Ana-de-Paranaiba,Sant'Ana-de-Paranaíba -23.44417 -46.91778 P PPL BR 27 98989 711 America/Sao_Paulo 2006-12-13
-3450031 Santana Santana -14.46667 -41.8 P PPL BR 05 12628 519 America/Bahia 2006-01-17
-3450057 Santa Maria do Suaçuí Santa Maria do Suacui Santa Maria de Suassuhy,Santa Maria do Suassui,Santa Maria do Suassuí -18.19028 -42.41417 P PPL BR 15 9936 474 America/Sao_Paulo 2006-12-13
-3450063 Santa Maria da Vitória Santa Maria da Vitoria Santa Maria,Santa-Marija-da-Vitorija,Санта-Мария-да-Витория -13.39472 -44.18861 P PPL BR 05 23488 438 America/Bahia 2010-01-29
-3450083 Santa Maria Santa Maria Santa Maria da Boca do Monte,Santa-Marija,Санта-Мария -29.68417 -53.80694 P PPLA2 BR 23 4316907 249219 146 America/Sao_Paulo 2012-03-10
-3450144 Santa Luzia Santa Luzia Santa Lucia,Santa Lúcia,Santa-Lusija,Санта-Лусия -19.76972 -43.85139 P PPL BR 15 243503 760 America/Sao_Paulo 2010-01-29
-3450157 Santaluz Santaluz Santa Luiza,Santa Luzia -11.25583 -39.37472 P PPL BR 05 24739 361 America/Bahia 2006-12-13
-3450166 Santa Leopoldina Santa Leopoldina Cachoeiro de Santa Leopoldina -20.10056 -40.52972 P PPL BR 08 2327 54 America/Sao_Paulo 2006-12-13
-3450188 Santa Isabel Santa Isabel Santa Izabel -23.31556 -46.22139 P PPL BR 27 33709 658 America/Sao_Paulo 2006-12-13
-3450202 Santa Inês Santa Ines Santa Ignez,Santa-Ines,Санта-Инес -13.29222 -39.81889 P PPL BR 05 10520 400 America/Bahia 2010-01-29
-3450206 Santa Helena de Goiás Santa Helena de Goias Helena de Goias,Helena de Goiás,Ipeguari,Santa Helena,Santa-Ehlena-di-Gojas,Санта-Элена-ди-Гояс -17.81361 -50.59694 P PPL BR 29 34254 566 America/Sao_Paulo 2010-01-29
-3450225 Santa Gertrudes Santa Gertrudes -22.45667 -47.53028 P PPL BR 27 18490 592 America/Sao_Paulo 2006-12-13
-3450232 Santa Fé do Sul Santa Fe do Sul -20.21111 -50.92583 P PPL BR 27 25802 402 America/Sao_Paulo 2006-12-13
-3450269 Santa Cruz do Sul Santa Cruz do Sul Santa Cruz,Santa-Krus-du-Sul,Санта-Крус-ду-Сул -29.7175 -52.42583 P PPL BR 23 106113 69 America/Sao_Paulo 2010-01-29
-3450272 Santa Cruz do Rio Pardo Santa Cruz do Rio Pardo -22.89889 -49.6325 P PPL BR 27 37336 472 America/Sao_Paulo 2006-12-13
-3450283 Santa Cruz das Palmeiras Santa Cruz das Palmeiras Palmeiras -21.82694 -47.24861 P PPL BR 27 25800 655 America/Sao_Paulo 2006-12-13
-3450288 Santa Cruz Cabrália Santa Cruz Cabralia Santa Cruz,Santa Cruz de Cabralia,Santa Cruz de Cabrália -16.27806 -39.02472 P PPLA2 BR 05 2927705 19545 43 America/Bahia 2012-03-10
-3450376 Santa Cecília Santa Cecilia -26.96083 -50.42694 P PPL BR 26 15092 1097 America/Sao_Paulo 2006-12-13
-3450400 Santa Branca Santa Branca -23.39667 -45.88389 P PPL BR 27 8659 648 America/Sao_Paulo 2006-12-13
-3450404 Santa Bárbara d'Oeste Santa Barbara d'Oeste Barbara do Oeste,Bárbara do Oeste,Santa Barbara do Oeste,Santa Bárbara do Oeste,Sata Barbar dOeste,Sata Bárbar dOeste -22.75361 -47.41361 P PPL BR BR 27 188000 565 America/Sao_Paulo 2010-08-23
-3450464 Santa Adélia Santa Adelia -21.24278 -48.80417 P PPL BR 27 12585 617 America/Sao_Paulo 2006-12-13
-3450496 Sananduva Sananduva Savanduva -27.94972 -51.80667 P PPL BR 23 9601 655 America/Sao_Paulo 2006-12-13
-3450554 Salvador Salvador Bahia,Baia,Baía,Sal'vador,Salvador,Salvador da Bahia,Salvador de Bahia,Salvador de Bahio,Salvador de Bahía,Salvadora,Sao Salvador,sa er wa duo,sarubadoru,saruvu~adoru,slbdwr,Салвадор,Сальвадор,סלבדור,サルバドール,サルヴァドール,萨尔瓦多 -12.97111 -38.51083 P PPLA BR 05 2927408 2711840 10 America/Bahia 2010-08-26
-3450563 Salto de Pirapora Salto de Pirapora -23.64889 -47.57333 P PPL BR 27 32227 639 America/Sao_Paulo 2006-12-13
-3450594 Salto Salto Sal'to,Salto do Itu,Salto do Itú,Сальто -23.20083 -47.28694 P PPL BR 27 3545209 98387 562 America/Sao_Paulo 2010-01-29
-3450671 Salinas Salinas -16.17028 -42.29028 P PPL BR 15 25746 472 America/Sao_Paulo 2006-12-13
-3450710 Salgado Salgado -11.03194 -37.475 P PPL BR 28 5457 103 America/Maceio 2006-12-13
-3450759 Sacramento Sacramento -19.86528 -47.44 P PPL BR 15 16982 841 America/Sao_Paulo 2006-12-13
-3450806 Sabinópolis Sabinopolis -18.66611 -43.08389 P PPL BR 15 9713 714 America/Sao_Paulo 2006-12-13
-3450832 Ruy Barbosa Ruy Barbosa Ruy Barbosa -12.28389 -40.49389 P PPL BR 05 21093 344 America/Bahia 2006-12-13
-3450843 Rubiataba Rubiataba -15.16444 -49.80333 P PPL BR 29 16128 638 America/Sao_Paulo 2006-12-13
-3450872 Rosário Oeste Rosario Oeste Rosario Oueste,Rosario do Rio Acima,Rosário do Rio Acima -14.83611 -56.4275 P PPL BR 14 10468 201 America/Cuiaba 2006-12-13
-3450873 Rosário do Sul Rosario do Sul Rosario,Rosario-du-Sul,Rosário,Росарио-ду-Сул -30.25833 -54.91417 P PPL BR 23 36721 123 America/Sao_Paulo 2010-01-29
-3450909 Rondonópolis Rondonopolis Rodonopolis,Rodonópolis,Rondonopolis,Rondonópolis -16.47083 -54.63556 P PPL BR 14 152912 230 America/Cuiaba 2006-12-13
-3450963 Rolante Rolante -29.65056 -50.57583 P PPL BR 23 15594 47 America/Sao_Paulo 2006-12-13
-3450964 Rolândia Rolandia Caviuna,Caviúna -23.30972 -51.36917 P PPL BR 18 51004 736 America/Sao_Paulo 2006-12-13
-3451051 Rio Verde de Mato Grosso Rio Verde de Mato Grosso Coronel Galvao,Coronel Galvão,Fazenda Rio Verde,Rio Verde -18.91806 -54.84417 P PPL BR 11 16613 335 America/Campo_Grande 2006-12-13
-3451059 Rio Tavares Rio Tavares -27.64529 -48.47486 P PPLL BR 26 2600 10 14 America/Sao_Paulo 2011-07-07
-3451071 Rio Real Rio Real Barracao,Barracão,Brejo Grande -11.48472 -37.93278 P PPL BR 05 24005 170 America/Bahia 2006-12-13
-3451094 Rio Pomba Rio Pomba Pomba -21.27472 -43.17917 P PPL BR 15 13706 448 America/Sao_Paulo 2006-12-13
-3451095 Rio Piracicaba Rio Piracicaba -19.92917 -43.17417 P PPL BR 15 10439 634 America/Sao_Paulo 2006-12-13
-3451100 Rio Pardo de Minas Rio Pardo de Minas Rio Pardo -15.60972 -42.53972 P PPL BR 15 9540 771 America/Sao_Paulo 2006-12-13
-3451102 Rio Pardo Rio Pardo Poaca,Poacá,Rio-Pardo,Рио-Пардо -29.98972 -52.37806 P PPL BR 23 26998 36 America/Sao_Paulo 2010-01-29
-3451107 Rio Novo do Sul Rio Novo do Sul Itapoama,Rio Novo -20.8625 -40.93639 P PPL BR 08 6717 68 America/Sao_Paulo 2006-12-13
-3451114 Rio Novo Rio Novo -21.4575 -43.12528 P PPL BR 15 6255 407 America/Sao_Paulo 2006-12-13
-3451121 Rio Negro Rio Negro -26.10583 -49.7975 P PPL BR 18 23006 795 America/Sao_Paulo 2006-12-13
-3451124 Rio Negrinho Rio Negrinho -26.25444 -49.51833 P PPL BR 26 41914 793 America/Sao_Paulo 2006-12-13
-3451134 Rio Grande da Serra Rio Grande da Serra -23.74417 -46.39833 P PPL BR 27 38161 777 America/Sao_Paulo 2006-12-13
-3451138 Rio Grande Rio Grande Rio Grande,Rio Grande do Sul,Rio-Grande,Sao Pedro do Rio Grande do Sul,São Pedro do Rio Grande do Sul,Рио-Гранде -32.035 -52.09861 P PPL BR 23 187838 7 America/Sao_Paulo 2010-01-29
-3451152 Rio do Sul Rio do Sul Itajahy do Sul,Rio Sul,Riu-du-Sul,Риу-ду-Сул -27.21417 -49.64306 P PPL BR 26 51944 346 America/Sao_Paulo 2010-01-29
-3451190 Rio de Janeiro Rio de Janeiro Centro do Rio,Ciutat de Rio de Janeiro,RIO,Rio,Rio de Janeiro,Rio de Xaneiro - Rio de Janeiro,Rio de Zaneiras,Rio de Zhaneiro,Rio de Zhanejro,Rio de Žaneiras,Rio nte Tzaneiro,Rio-de-Janejro,Rio-de-Zanejro,Rio-de-Zhanejro,Rio-de-Ĵanejro,Riodezaneiro,Riodežaneiro,Ryjo-deh-Zhanehjra,Río de Janeiro,Río de Xaneiro - Rio de Janeiro,Sao Sebastiao de Rio de Janeiro,Sao Sebastiao do Rio de Janeiro,São Sebastião de Rio de Janeiro,São Sebastião do Rio de Janeiro,Urbs Fluminensis,li yue re nei lu,liudejaneilu,rath ri xode ca ne ro,ri xode ca ne ro,rio-de-zhaneiro,riodejaneiro shi,ryw dh z'nyrw,ryw dy janyrw,rywdwzhanyrw,Ρίο ντε Τζανέιρο,Рио де Жанеиро,Рио де Жанейро,Рио-де-Жанейро,Рыё-дэ-Жанэйра,Ріо-де-Жанейро,ריו דה ז'נירו,ريو دي جانيرو,ریودوژانیرو,รัฐรีโอเดจาเนโร,รีโอเดจาเนโร,რიო-დე-ჟანეირო,リオデジャネイロ市,里約熱內盧,리우데자네이루 -22.90278 -43.2075 P PPLA BR 21 3304557 6023699 5 America/Sao_Paulo 2012-01-12
-3451202 Rio das Pedras Rio das Pedras -22.84333 -47.60611 P PPL BR 27 23722 625 America/Sao_Paulo 2006-12-13
-3451205 Rio das Ostras Rio das Ostras -22.52694 -41.945 P PPL BR 21 46618 11 America/Sao_Paulo 2006-12-13
-3451232 Rio Claro Rio Claro Itavera,Itaverá -22.72306 -44.13556 P PPL BR 21 12620 464 America/Sao_Paulo 2006-12-13
-3451234 Rio Claro Rio Claro -22.41139 -47.56139 P PPL BR 27 180147 617 America/Sao_Paulo 2006-12-13
-3451236 Rio Casca Rio Casca -20.22611 -42.65083 P PPL BR 15 11769 336 America/Sao_Paulo 2006-12-13
-3451241 Rio Brilhante Rio Brilhante Caiuas,Caiuás,Entre Rios -21.80194 -54.54639 P PPL BR 11 18837 319 America/Campo_Grande 2006-12-13
-3451242 Rio Branco do Sul Rio Branco do Sul Rio Branco,Riu-Branku-du-Sul,Votuverava,Риу-Бранку-ду-Сул -25.19 -49.31417 P PPL BR 18 26441 901 America/Sao_Paulo 2010-01-29
-3451261 Rio Bonito Rio Bonito -22.70861 -42.60972 P PPL BR 21 35997 67 America/Sao_Paulo 2006-12-13
-3451263 Rio Bananal Rio Bananal -19.265 -40.33333 P PPL BR 08 4814 70 America/Sao_Paulo 2006-12-13
-3451305 Ribeirópolis Ribeiropolis -10.53944 -37.41667 P PPL BR 28 11214 239 America/Maceio 2006-12-13
-3451328 Ribeirão Preto Ribeirao Preto Entre Rios,Ribeirao,Ribeirao Preto,Ribeirão,Ribeirão Preto -21.1775 -47.81028 P PPLA2 BR 27 3543402 551267 554 America/Sao_Paulo 2012-03-10
-3451329 Ribeirão Pires Ribeirao Pires -23.71056 -46.41333 P PPL BR 27 111888 760 America/Sao_Paulo 2006-12-13
-3451353 Ribeirão das Neves Ribeirao das Neves Neves,Nevez,Ribeirao das Neves,Ribeirão das Neves -19.76694 -44.08667 P PPL BR 15 406802 804 America/Sao_Paulo 2006-12-13
-3451357 Ribeirão da Ilha Ribeirao da Ilha Ribeirao,Ribeirão -27.69934 -48.53219 P PPLL BR BR 26 21000 2 9 America/Sao_Paulo 2011-07-07
-3451362 Ribeirão Branco Ribeirao Branco -24.22083 -48.76556 P PPL BR 27 9718 873 America/Sao_Paulo 2006-12-13
-3451363 Ribeirão Bonito Ribeirao Bonito -22.06667 -48.17611 P PPL BR 27 10877 580 America/Sao_Paulo 2006-12-13
-3451383 Ribeira do Pombal Ribeira do Pombal Canabrava de Santa Teresa de Jesus dos Quiriris,Canna Brava,Pombal -10.83444 -38.53583 P PPL BR 05 28235 221 America/Bahia 2006-12-13
-3451399 Ribas do Rio Pardo Ribas do Rio Pardo Rio Pardo -20.44306 -53.75917 P PPL BR 11 11934 382 America/Campo_Grande 2006-12-13
-3451403 Rialma Rialma Rialmas -15.315 -49.58444 P PPL BR 29 9270 574 America/Sao_Paulo 2006-12-13
-3451448 Riacho de Santana Riacho de Santana Riacho de Sant'Anna -13.60917 -42.93889 P PPL BR 05 12657 626 America/Bahia 2006-12-13
-3451474 Riachão do Jacuípe Riachao do Jacuipe Riachao,Riachao do Jacuhype,Riachão,Riachão do Jacuhype -11.80694 -39.38556 P PPL BR 05 16911 217 America/Bahia 2006-12-13
-3451476 Riachão do Dantas Riachao do Dantas Riachao,Riachão -11.06889 -37.725 P PPL BR 28 4615 179 America/Maceio 2006-12-13
-3451478 Riachão das Neves Riachao das Neves -11.74611 -44.91 P PPL BR 05 11236 503 America/Bahia 2006-12-13
-3451650 Resplendor Resplendor -19.32556 -41.25528 P PPL BR 15 15131 99 America/Sao_Paulo 2006-12-13
-3451663 Reserva Reserva -24.65028 -50.85056 P PPL BR 18 11096 943 America/Sao_Paulo 2006-12-13
-3451668 Resende Resende Resende,Rezende -22.46889 -44.44667 P PPL BR 21 111514 408 America/Sao_Paulo 2006-12-13
-3451704 Registro Registro -24.4875 -47.84361 P PPL BR 27 45697 17 America/Sao_Paulo 2006-12-13
-3451709 Regente Feijó Regente Feijo -22.22139 -51.30278 P PPL BR 27 17218 511 America/Sao_Paulo 2006-12-13
-3451750 Recreio Recreio -21.525 -42.46917 P PPL BR 15 8882 180 America/Sao_Paulo 2006-12-13
-3451783 Realeza Realeza -25.76889 -53.5325 P PPL BR 18 10389 462 America/Sao_Paulo 2006-12-13
-3451812 Raposos Raposos Raposas -19.96722 -43.80417 P PPL BR 15 13262 736 America/Sao_Paulo 2006-12-13
-3451856 Rancharia Rancharia -22.22917 -50.89306 P PPL BR 27 25530 521 America/Sao_Paulo 2006-12-13
-3451931 Quirinópolis Quirinopolis -18.44833 -50.45167 P PPL BR 29 32104 531 America/Sao_Paulo 2006-12-13
-3452029 Quijingue Quijingue Triumpho,Triunfo -10.7525 -39.20917 P PPL BR 05 4293 358 America/Bahia 2006-12-13
-3452073 Queimados Queimados -22.71611 -43.55528 P PPL BR 21 135741 37 America/Sao_Paulo 2006-12-13
-3452085 Queimadas Queimadas Vila Bela de Santo Antonio das Queimadas,Vila Bela de Santo Antônio das Queimadas -10.97833 -39.62639 P PPL BR 05 10439 291 America/Bahia 2006-12-13
-3452141 Quatro Barras Quatro Barras -25.36556 -49.07694 P PPL BR 18 17526 932 America/Sao_Paulo 2006-12-13
-3452148 Quatis Quatis -22.40722 -44.25806 P PPL BR 21 10289 403 America/Sao_Paulo 2006-12-13
-3452167 Quatá Quata -22.2475 -50.69833 P PPL BR 27 10370 553 America/Sao_Paulo 2006-12-13
-3452179 Quaraí Quarai Kuarai,Quarahy,Куараи -30.3875 -56.45139 P PPL BR 23 23229 115 America/Sao_Paulo 2010-01-29
-3452216 Prudentópolis Prudentopolis -25.21306 -50.97778 P PPL BR 18 19611 765 America/Sao_Paulo 2006-12-13
-3452233 Propriá Propria -10.21111 -36.84028 P PPL BR 28 23786 16 America/Maceio 2006-12-13
-3452237 Promissão Promissao -21.53667 -49.85806 P PPL BR 27 27031 428 America/Sao_Paulo 2006-12-13
-3452320 Presidente Venceslau Presidente Venceslau Presidente Wenceslau,Presidente Wenceslaú -21.87611 -51.84389 P PPL BR 27 34026 428 America/Sao_Paulo 2006-12-13
-3452324 Presidente Prudente Presidente Prudente -22.12556 -51.38889 P PPL BR 27 209502 462 America/Sao_Paulo 2006-12-13
-3452327 Presidente Olegário Presidente Olegario Patos,Santa Rita de Patos,Santa Rita dos Patos -18.41778 -46.41806 P PPL BR 15 13586 960 America/Sao_Paulo 2006-12-13
-3452331 Presidente Epitácio Presidente Epitacio Presidente Epistacio,Presidente Epitaclo,Presidente Epitãclo -21.76333 -52.11556 P PPL BR 27 38742 305 America/Sao_Paulo 2006-12-13
-3452335 Presidente Bernardes Presidente Bernardes -22.00611 -51.55306 P PPL BR 27 12953 417 America/Sao_Paulo 2006-12-13
-3452440 Prata Prata -19.30722 -48.92417 P PPL BR 15 19896 642 America/Sao_Paulo 2006-12-13
-3452465 Praia Grande Praia Grande Prajja-Grandi,Прайя-Гранди -24.00583 -46.40278 P PPL BR 27 250027 11 America/Sao_Paulo 2010-01-29
-3452478 Pradópolis Pradopolis -21.35944 -48.06556 P PPL BR 27 13192 539 America/Sao_Paulo 2006-12-13
-3452483 Prado Prado -17.34111 -39.22083 P PPL BR 05 15464 11 America/Bahia 2006-12-13
-3452490 Poxoréo Poxoreo -15.83722 -54.38917 P PPL BR 14 12475 364 America/Cuiaba 2006-12-13
-3452525 Pouso Alegre Pouso Alegre Pozu-Alegri,Позу-Алегри -22.23 -45.93639 P PPL BR 15 115201 838 America/Sao_Paulo 2010-01-29
-3452599 Posse Posse -14.09306 -46.36944 P PPL BR 29 20003 815 America/Sao_Paulo 2006-12-13
-3452623 Porto União Porto Uniao Porto Unicao,Porto Unicão,Porto do Uniao,Pôrto do Uniao,Uniao,União -26.23806 -51.07833 P PPL BR 26 28907 783 America/Sao_Paulo 2006-12-13
-3452640 Porto Seguro Porto Seguro -16.44972 -39.06472 P PPL BR 05 123173 4 America/Bahia 2006-12-13
-3452671 Porto Real do Colégio Porto Real do Colegio Porto Real do Collegio -10.18583 -36.84 P PPL BR 02 6001 10 America/Maceio 2006-12-13
-3452672 Porto Real Porto Real -22.41972 -44.29028 P PPL BR 21 12061 392 America/Sao_Paulo 2006-12-13
-3452712 Porto Murtinho Porto Murtinho -21.69889 -57.8825 P PPL BR 11 12667 79 America/Campo_Grande 2006-12-13
-3452775 Porto Ferreira Porto Ferreira Porto Ferreiro,Portu-Ferrejra,Порту-Феррейра -21.85389 -47.47917 P PPL BR 27 49127 564 America/Sao_Paulo 2010-01-29
-3452779 Porto Feliz Porto Feliz Portu-Felis,Порту-Фелис -23.21472 -47.52389 P PPLA2 BR 27 3540606 41015 541 America/Sao_Paulo 2012-03-10
-3452900 Porto Belo Porto Belo Porto Bello -27.15778 -48.55306 P PPL BR 26 14720 3 America/Sao_Paulo 2006-12-13
-3452909 Pôrto Barra do Ivinheima Porto Barra do Ivinheima -22.96667 -53.66667 P PPL BR 11 14527 234 America/Campo_Grande 2006-01-27
-3452925 Porto Alegre Porto Alegre Porto Alegre,Porto de Sao Francisco dos Casaes,Porto-Alegro,Portu-Alegre,Portu-Alegri,Portus Alacer in Brasilia,Puerto Alegre,Pôrto de São Francisco dos Casaes,a lei ge li gang,Порто Алегре,Порту-Алегре,Порту-Алегри,פורטו אלגרה,ポルト・アレグレ,阿雷格里港 -30.03306 -51.23 P PPLA BR 23 4314902 1372741 46 America/Sao_Paulo 2011-01-17
-3452956 Porteirinha Porteirinha -15.74333 -43.02833 P PPL BR 15 14144 570 America/Sao_Paulo 2006-12-13
-3452982 Portão Portao -29.70167 -51.24194 P PPL BR 23 21051 49 America/Sao_Paulo 2006-12-13
-3452992 Porecatu Porecatu Brasilia,Brasília -22.75583 -51.37917 P PPL BR 18 11390 404 America/Sao_Paulo 2006-12-13
-3453010 Porciúncula Porciuncula -20.96278 -42.04083 P PPL BR 21 12511 196 America/Sao_Paulo 2006-12-13
-3453014 Porangatu Porangatu Descoberto,Porangatu,Порангату -13.44083 -49.14861 P PPL BR 29 32758 407 America/Sao_Paulo 2010-01-29
-3453015 Porangaba Porangaba -23.17583 -48.125 P PPLA2 BR 27 3540507 0 544 America/Sao_Paulo 2012-03-10
-3453025 Ponto Novo Ponto Novo Porto Novo,Pórto Novo -10.86278 -40.13361 P PPL BR 05 7141 370 America/Bahia 2006-12-13
-3453060 Pontes e Lacerda Pontes e Lacerda Ponte e Lacerda,Pontes Lacerda,Pontes de Lacerda -15.22611 -59.33528 P PPL BR 14 29381 247 America/Cuiaba 2006-12-13
-3453078 Ponte Nova Ponte Nova -20.41639 -42.90861 P PPL BR 15 48187 438 America/Sao_Paulo 2006-12-13
-3453150 Ponta Porã Ponta Pora -22.53611 -55.72556 P PPL BR 11 55763 659 America/Campo_Grande 2006-12-13
-3453158 Pontalina Pontalina Santa Rita do Pontal -17.525 -49.44722 P PPL BR 29 13639 627 America/Sao_Paulo 2006-12-13
-3453171 Pontal Pontal -21.0225 -48.03722 P PPL BR 27 32566 531 America/Sao_Paulo 2006-12-13
-3453186 Ponta Grossa Ponta Grossa Ponta Grossa -25.095 -50.16194 P PPL BR 18 292177 954 America/Sao_Paulo 2006-12-13
-3453240 Pompéu Pompeu Concecao do Pompeo,Conceção do Pompeó,Pompeo,Pompéo -19.22444 -44.93528 P PPL BR 15 25277 852 America/Sao_Paulo 2006-12-13
-3453242 Pompéia Pompeia -22.10861 -50.17167 P PPL BR 27 18015 601 America/Sao_Paulo 2006-12-13
-3453245 Pomerode Pomerode Rio do Testo,Testo -26.74056 -49.17694 P PPL BR 26 21898 64 America/Sao_Paulo 2006-12-13
-3453300 Poço Verde Poco Verde -10.70833 -38.18333 P PPL BR 28 12167 260 America/Bahia 2006-12-13
-3453303 Poços de Caldas Pocos de Caldas Poco Caldas,Pocos de Caldas,Poço Caldas,Poços de Caldas -21.78778 -46.56139 P PPLA2 BR 15 3151800 146588 1222 America/Sao_Paulo 2012-03-10
-3453315 Poconé Pocone Pecone,Peconé -16.25667 -56.62278 P PPL BR 14 21484 150 America/Cuiaba 2006-12-13
-3453337 Poções Pocoes Djalma Dutra -14.52972 -40.36528 P PPL BR 05 35254 764 America/Bahia 2006-12-13
-3453406 Poá Poa -23.52806 -46.34472 P PPL BR 27 107432 764 America/Sao_Paulo 2006-12-13
-3453420 Planaltina Planaltina Alta Mir,Altamira,Planaltina -15.45278 -47.61417 P PPL BR 29 88853 1038 America/Sao_Paulo 2006-12-13
-3453435 Piúma Piuma -20.83778 -40.72194 P PPL BR 08 17634 2 America/Sao_Paulo 2006-12-13
-3453439 Piuí Piui Piumhy -20.46528 -45.95806 P PPL BR 15 27327 791 America/Sao_Paulo 2006-12-13
-3453457 Pitangui Pitangui Pitanguy -19.68278 -44.89028 P PPL BR 15 18858 704 America/Sao_Paulo 2006-12-13
-3453467 Pitangueiras Pitangueiras -21.00944 -48.22167 P PPL BR 27 28540 509 America/Sao_Paulo 2006-12-13
-3453478 Pitanga Pitanga -24.75722 -51.76139 P PPL BR 18 18652 889 America/Sao_Paulo 2006-12-13
-3453494 Piritiba Piritiba Cinco Vargens -11.73028 -40.55528 P PPL BR 05 16230 542 America/Bahia 2006-12-13
-3453503 Pires do Rio Pires do Rio Pires-du-Riu,Пирес-ду-Риу -17.29972 -48.27944 P PPL BR 29 24822 770 America/Sao_Paulo 2010-01-29
-3453512 Pirenópolis Pirenopolis Meia Ponte,Pyrenopolis -15.8525 -48.95917 P PPL BR 29 13615 771 America/Sao_Paulo 2006-12-13
-3453535 Piraquara Piraquara Piraguara -25.44167 -49.06333 P PPL BR 18 41161 903 America/Sao_Paulo 2006-12-13
-3453542 Pirapozinho Pirapozinho -22.27528 -51.5 P PPL BR 27 21709 491 America/Sao_Paulo 2006-12-13
-3453544 Pirapora do Bom Jesus Pirapora do Bom Jesus Pirapora -23.39694 -47.00222 P PPL BR 27 14690 678 America/Sao_Paulo 2006-12-13
-3453546 Pirapora Pirapora -17.345 -44.94194 P PPL BR 15 51656 502 America/Sao_Paulo 2006-12-13
-3453586 Piranhas Piranhas -16.42694 -51.82222 P PPL BR 29 9886 366 America/Sao_Paulo 2006-12-13
-3453605 Pirajuí Pirajui Pirajuhy -21.99861 -49.45722 P PPL BR 27 17503 499 America/Sao_Paulo 2006-12-13
-3453610 Piraju Piraju -23.19361 -49.38389 P PPL BR 27 25270 561 America/Sao_Paulo 2006-12-13
-3453622 Piraí do Sul Pirai do Sul Pirahy,Pirai,Pirai-Mirim,Piraí,Piraí-Mirim -24.52611 -49.94861 P PPL BR 18 16409 1000 America/Sao_Paulo 2006-12-13
-3453635 Piraí Pirai Pirahy -22.62917 -43.89806 P PPL BR 21 19105 381 America/Sao_Paulo 2006-12-13
-3453639 Pirassununga Pirassununga Pirassinunga,Pirassununga -21.99611 -47.42583 P PPL BR 27 60413 631 America/Sao_Paulo 2006-12-13
-3453643 Piracicaba Piracicaba Piracicaba,Pirasikaba,Пирасикаба -22.72528 -47.64917 P PPLA2 BR 27 3538709 342209 530 America/Sao_Paulo 2012-03-10
-3453659 Piracanjuba Piracanjuba Pouso Alto -17.30278 -49.01667 P PPL BR 29 16736 737 America/Sao_Paulo 2006-12-13
-3453661 Piracaia Piracaia -23.05389 -46.35806 P PPL BR 27 26075 822 America/Sao_Paulo 2006-12-13
-3453682 Piquete Piquete -22.61361 -45.17611 P PPL BR 27 13844 642 America/Sao_Paulo 2006-12-13
-3453741 Pinheiro Machado Pinheiro Machado Cacimbinhas -31.57833 -53.38111 P PPL BR 23 11176 437 America/Sao_Paulo 2006-12-13
-3453767 Pinheiral Pinheiral Pinheiro -22.51278 -44.00056 P PPL BR 21 19469 375 America/Sao_Paulo 2006-12-13
-3453777 Pinhão Pinhao -25.69556 -51.65972 P PPL BR 18 15141 1048 America/Sao_Paulo 2006-12-13
-3453807 Espírito Santo do Pinhal Espirito Santo do Pinhal Espirito Santo do Pinhal -22.11583 -46.68278 P PPL BR 27 37448 849 America/Sao_Paulo 2006-12-13
-3453821 Pindorama Pindorama -21.18583 -48.90722 P PPL BR 27 12247 530 America/Sao_Paulo 2006-12-13
-3453827 Pindobaçu Pindobacu Pindobassu,Pindobassú -10.74167 -40.36083 P PPL BR 05 17229 435 America/Bahia 2006-12-13
-3453837 Pindamonhangaba Pindamonhangaba Pindamonhangaba -22.92389 -45.46167 P PPL BR 27 132218 562 America/Sao_Paulo 2006-12-13
-3453896 Pilar do Sul Pilar do Sul Pilar -23.81306 -47.71639 P PPL BR 27 19107 697 America/Sao_Paulo 2006-12-13
-3453926 Piedade Piedade -23.71194 -47.42778 P PPL BR 27 27912 795 America/Sao_Paulo 2006-12-13
-3454005 Piaçabuçu Piacabucu Piassabussu -10.40556 -36.43444 P PPL BR 02 9861 6 America/Maceio 2006-12-13
-3454031 Petrópolis Petropolis Petropolis,Petrópolis,ptrwpwlys,Петрополис,פטרופוליס -22.505 -43.17861 P PPL BR 21 272691 819 America/Sao_Paulo 2007-02-17
-3454032 Petrolina de Goiás Petrolina de Goias Goialina,Petrolina -16.095 -49.33806 P PPL BR 29 7710 720 America/Sao_Paulo 2006-12-13
-3454061 Peruíbe Peruibe Peruhybe,caraguava -24.32 -46.99833 P PPL BR 27 63030 11 America/Sao_Paulo 2006-12-13
-3454131 Pereira Barreto Pereira Barreto Novo Oriente -20.63833 -51.10917 P PPL BR 27 22537 361 America/Sao_Paulo 2006-12-13
-3454139 Perdões Perdoes -21.09083 -45.09139 P PPL BR 15 17821 842 America/Sao_Paulo 2006-12-13
-3454213 Penha Penha Pen'ja,Penha de Itapocoroy,Пенья -26.76944 -48.64583 P PPL BR 26 20096 24 America/Sao_Paulo 2010-01-29
-3454231 Penedo Penedo Sao Francisco,São Francisco -10.29028 -36.58639 P PPL BR 02 42097 12 America/Maceio 2006-12-13
-3454235 Penápolis Penapolis Penapolis,Pennapolis,Пенаполис -21.41972 -50.0775 P PPL BR 27 54477 414 America/Sao_Paulo 2010-01-29
-3454244 Pelotas Pelotas Pelotas,Sao Francisco de Paula,São Francisco de Paula,Пелотас -31.77194 -52.3425 P PPL BR 23 320674 14 America/Sao_Paulo 2006-12-13
-3454358 Pedro Leopoldo Pedro Leopoldo -19.61806 -44.04306 P PPL BR 15 49261 714 America/Sao_Paulo 2006-12-13
-3454407 Pedreira Pedreira Pedreiras,Pedrejra,Педрейра -22.74194 -46.90139 P PPL BR 27 39198 601 America/Sao_Paulo 2010-01-29
-3454408 Pedregulho Pedregulho -20.25694 -47.47667 P PPL BR 27 11216 1044 America/Sao_Paulo 2006-12-13
-3454578 Pedra Azul Pedra Azul Fortaleza,Forteleza -16.00528 -41.29722 P PPL BR 15 20899 678 America/Sao_Paulo 2006-12-13
-3454620 Pederneiras Pederneiras -22.35167 -48.775 P PPL BR 27 38020 479 America/Sao_Paulo 2006-12-13
-3454628 Peçanha Pecanha -18.54861 -42.55694 P PPL BR 15 6902 784 America/Sao_Paulo 2006-12-13
-3454632 Peabiru Peabiru -23.91278 -52.34306 P PPL BR 18 12344 527 America/Sao_Paulo 2006-12-13
-3454690 Paulínia Paulinia -22.76111 -47.15417 P PPLA2 BR 27 3536505 65595 588 America/Sao_Paulo 2012-03-10
-3454743 Pau Brasil Pau Brasil -15.46417 -39.65111 P PPL BR 05 8136 180 America/Bahia 2006-12-13
-3454763 Patrocínio Patrocinio -18.94389 -46.9925 P PPL BR 15 71963 965 America/Sao_Paulo 2006-12-13
-3454783 Patos de Minas Patos de Minas Patos,Patos de Minas -18.57889 -46.51806 P PPL BR 15 126234 842 America/Sao_Paulo 2006-12-13
-3454818 Pato Branco Pato Branco Pato Branco,Patu-Branku,Пату-Бранку -26.22861 -52.67056 P PPL BR 18 65754 769 America/Sao_Paulo 2010-01-29
-3454827 Paty do Alferes Paty do Alferes Pati-du-Alferis,Paty do Alferas,Пати-ду-Алферис -22.42861 -43.41861 P PPL BR 21 20659 599 America/Sao_Paulo 2010-01-29
-3454847 Passos Passos Passos,Пассос -20.71889 -46.60972 P PPL BR 15 98752 751 America/Sao_Paulo 2010-01-29
-3454857 Passo Fundo Passo Fundo Passo Fundo -28.26278 -52.40667 P PPL BR 23 179529 689 America/Sao_Paulo 2006-12-13
-3454901 Passa Quatro Passa Quatro Passo Quatro -22.39028 -44.96667 P PPL BR 15 12765 924 America/Sao_Paulo 2006-12-13
-3454954 Parobé Parobe -29.62861 -50.83472 P PPL BR 23 48559 55 America/Sao_Paulo 2006-12-13
-3454967 Pariquera Açu Pariquera Acu Pariquera Assu,Pariquera Assú,Pariqueracu,Pariqueraçu -24.715 -47.88111 P PPL BR 27 13436 36 America/Sao_Paulo 2006-12-13
-3454968 Paripiranga Paripiranga Malhada Vermelha,Patrocinio do Coite,Patrocinio do Coité -10.6875 -37.86167 P PPL BR 05 6965 439 America/Bahia 2006-12-13
-3455020 Paraúna Parauna -16.94778 -50.44861 P PPL BR 29 9731 679 America/Sao_Paulo 2006-12-13
-3455029 Paratinga Paratinga Rio Branco -12.69056 -43.18417 P PPL BR 05 10261 429 America/Bahia 2006-12-13
-3455036 Parati Parati Paraty -23.21778 -44.71306 P PPL BR 21 15118 8 America/Sao_Paulo 2006-12-13
-3455049 Paranhos Paranhos -23.89278 -55.43111 P PPL BR 11 6516 417 America/Campo_Grande 2006-12-13
-3455051 Paranavaí Paranavai Fazenda Ivai,Fazenda Ivaí,Paranvai,Paranvaí -23.07306 -52.46528 P PPL BR 18 72848 456 America/Sao_Paulo 2006-12-13
-3455061 Paranapanema Paranapanema Bom Successo,Bom Sucesso -23.38861 -48.72278 P PPL BR 27 16215 609 America/Sao_Paulo 2006-12-13
-3455065 Paranaíba Paranaiba Paranaiba,Sant'Anna do Paranahyba,Sant'Anna do Paranaiba,Santa Ana do Paranaiba,Santana do Paranaiba,Santana do Paranaíba,Паранаиба -19.67722 -51.19083 P PPL BR 11 32217 383 America/Campo_Grande 2010-01-29
-3455070 Paranaguá Paranagua Paranagua,Paranaguá,Паранагуа -25.52 -48.50917 P PPL BR 18 141013 11 America/Sao_Paulo 2010-01-29
-3455082 Paramirim Paramirim -13.4425 -42.23889 P PPL BR 05 7421 611 America/Bahia 2006-12-13
-3455089 Paraisópolis Paraisopolis -22.55417 -45.78 P PPL BR 15 13563 931 America/Sao_Paulo 2006-12-13
-3455119 Paraíso Paraiso -21.01639 -48.77361 P PPLA2 BR 27 3535705 0 581 America/Sao_Paulo 2012-03-10
-3455141 Paraíba do Sul Paraiba do Sul Parahyba do Sul,Paraiba-du-Sul,Параиба-ду-Сул -22.16194 -43.29278 P PPL BR 21 35517 283 America/Sao_Paulo 2010-01-29
-3455152 Paraguaçu Paulista Paraguacu Paulista Araguacu,Araguaçu,Paraguacu,Paraguassu,Paraguassú,Paraguaçu -22.41278 -50.57583 P PPL BR 27 39120 510 America/Sao_Paulo 2006-12-13
-3455155 Paraguaçu Paraguacu Paraguassu,Paraguassú -21.54722 -45.7375 P PPL BR 15 15741 825 America/Sao_Paulo 2006-12-13
-3455161 Pará de Minas Para de Minas Para,Pará -19.86028 -44.60833 P PPL BR 15 75786 792 America/Sao_Paulo 2006-12-13
-3455168 Paracatu Paracatu -17.22222 -46.87472 P PPL BR 15 70753 693 America/Sao_Paulo 2006-12-13
-3455170 Paracambi Paracambi Paracambi,Paracamby -22.60861 -43.71278 P PPL BR 21 36098 55 America/Sao_Paulo 2012-01-19
-3455195 Papagaios Papagaios -19.44917 -44.74778 P PPL BR 15 11850 722 America/Sao_Paulo 2006-12-13
-3455223 Pantano do Sul Pantano do Sul -27.77972 -48.50861 P PPLL BR 26 2300 2 5 America/Sao_Paulo 2011-07-07
-3455251 Panorama Panorama -21.35639 -51.85972 P PPL BR 27 14227 295 America/Sao_Paulo 2006-12-13
-3455277 Pancas Pancas Santa Luzia -19.225 -40.85139 P PPL BR 08 8183 119 America/Sao_Paulo 2006-12-13
-3455281 Panambi Panambi Pindorama,Tabapira -28.2925 -53.50167 P PPL BR 23 30407 421 America/Sao_Paulo 2006-12-13
-3455298 Palotina Palotina -24.28389 -53.84 P PPL BR 18 23059 339 America/Sao_Paulo 2006-12-13
-3455342 Palmital Palmital -22.78889 -50.2175 P PPL BR 27 18539 510 America/Sao_Paulo 2006-12-13
-3455362 Palmeiras de Goiás Palmeiras de Goias Freire Alemao,Freire Alemão,Matauna,Mataúna,Palmeira de Goias,Palmeira de Goiás,Palmeiras -16.805 -49.92583 P PPL BR 29 13572 608 America/Sao_Paulo 2006-12-13
-3455416 Palmeira das Missões Palmeira das Missoes Palmeira -27.89944 -53.31361 P PPL BR 23 30954 623 America/Sao_Paulo 2006-12-13
-3455425 Palmeira Palmeira -25.42944 -50.00639 P PPL BR 18 18630 913 America/Sao_Paulo 2006-12-13
-3455447 Palmas de Monte Alto Palmas de Monte Alto Monte Alto -14.26722 -43.16194 P PPL BR 05 7091 565 America/Bahia 2006-12-13
-3455459 Palmas Palmas Pal'mas,Пальмас -26.48417 -51.99056 P PPL BR 18 39150 1075 America/Sao_Paulo 2010-01-29
-3455461 Palmares do Sul Palmares do Sul Emilio Meier,Emilio Meyer,Emílio Meyer,Emílio Méier,Juruma,Palmares -30.25778 -50.50972 P PPL BR 23 8392 5 America/Sao_Paulo 2006-12-13
-3455478 Palhoça Palhoca -27.64528 -48.66778 P PPLA2 BR 26 4211900 122423 5 America/Sao_Paulo 2012-03-10
-3455553 Paiçandu Paicandu Paissandu -23.4575 -52.04861 P PPL BR 18 34365 486 America/Sao_Paulo 2006-12-13
-3455568 Padre Paraíso Padre Paraiso -17.07417 -41.48444 P PPL BR 15 10608 681 America/Sao_Paulo 2006-12-13
-3455580 Padre Bernardo Padre Bernardo Barroca,Padre Bernardo -15.35 -48.5 P PPL BR 29 16118 718 America/Sao_Paulo 2012-01-19
-3455637 Pacatuba Pacatuba Pacatiba -10.45333 -36.65139 P PPL BR 28 2616 64 America/Maceio 2006-12-13
-3455643 Pacaembu Pacaembu Guaraniuva,Guaraniúva -21.56222 -51.26056 P PPL BR 27 10101 417 America/Sao_Paulo 2006-12-13
-3455671 Ouro Preto Ouro Preto Oru-Pretu,Ouro Preto,Ору-Прету,オウロ・プレット -20.39484 -43.50517 P PPL BR 15 63678 1201 America/Sao_Paulo 2010-06-22
-3455689 Ouro Branco Ouro Branco -20.52083 -43.69194 P PPL BR 15 26687 1056 America/Sao_Paulo 2006-12-13
-3455729 Ourinhos Ourinhos Orin'jus,Ourinhos,Ориньюс -22.97889 -49.87056 P PPL BR 27 97799 488 America/Sao_Paulo 2010-01-29
-3455750 Otacílio Costa Otacilio Costa -27.48306 -50.12194 P PPL BR 26 14557 877 America/Sao_Paulo 2006-12-13
-3455756 Osvaldo Cruz Osvaldo Cruz -21.79667 -50.87861 P PPL BR 27 25746 465 America/Sao_Paulo 2006-12-13
-3455769 Osório Osorio Conceicao do Arroio,Conceicao do Arrolo,Conceição do Arroio,Osorio,Осорио -29.88667 -50.26972 P PPL BR 23 34628 18 America/Sao_Paulo 2010-01-29
-3455775 Osasco Osasco Osasku,Осаску -23.5325 -46.79167 P PPL BR 27 677856 750 America/Sao_Paulo 2010-01-29
-3455777 Ortigueira Ortigueira Ortigeira,Queimadas,Urtigueira -24.20833 -50.94944 P PPL BR 18 11540 772 America/Sao_Paulo 2006-12-13
-3455784 Orleans Orleans Orleans,Orleans do Sul -28.35889 -49.29139 P PPL BR 26 16422 131 America/Sao_Paulo 2006-12-13
-3455785 Orlândia Orlandia -20.72028 -47.88667 P PPL BR 27 44766 700 America/Sao_Paulo 2006-12-13
-3455786 Orizona Orizona Arizona,Campo Formosa,Campo Formoso -17.03139 -48.29583 P PPL BR 29 7583 810 America/Sao_Paulo 2006-12-13
-3455903 Oliveira dos Brejinhos Oliveira dos Brejinhos Oliveira do Brejinho -12.31694 -42.89611 P PPL BR 05 5596 572 America/Bahia 2006-12-13
-3455908 Oliveira Oliveira Olivejra,Olivera,Оливейра -20.69639 -44.82722 P PPL BR 15 34710 985 America/Sao_Paulo 2010-01-29
-3455913 Olindina Olindina Mucambo,Nova Olinda -11.36667 -38.33333 P PPL BR 05 12316 166 America/Bahia 2006-12-13
-3455923 Olímpia Olimpia Olimpija,Olympia,Олимпия -20.73722 -48.91472 P PPL BR 27 45199 520 America/Sao_Paulo 2010-01-29
-3456060 Novo Horizonte Novo Horizonte -21.46806 -49.22083 P PPL BR 27 30158 453 America/Sao_Paulo 2006-12-13
-3456068 Novo Hamburgo Novo Hamburgo Novo Hamburg,Novo Hamburgo,Potiguara -29.67833 -51.13056 P PPL BR 23 253841 56 America/Sao_Paulo 2006-12-13
-3456070 Novo Cruzeiro Novo Cruzeiro Gravata -17.46806 -41.87528 P PPL BR 15 10385 770 America/Sao_Paulo 2006-12-13
-3456102 Nova Viçosa Nova Vicosa Maroba,Marobá,Vicosa,Viçosa -17.89194 -39.37194 P PPL BR 05 55980 8 America/Bahia 2006-12-13
-3456110 Nova Venécia Nova Venecia -18.71056 -40.40056 P PPL BR 08 28362 80 America/Sao_Paulo 2006-12-13
-3456115 Nova Soure Nova Soure Natuba,Soure -11.23333 -38.48333 P PPL BR 05 11340 164 America/Bahia 2006-12-13
-3456125 Nova Prata Nova Prata Caibate,Prata -28.78389 -51.61 P PPL BR 23 17943 658 America/Sao_Paulo 2006-12-13
-3456127 Nova Petrópolis Nova Petropolis -29.37639 -51.11444 P PPL BR 23 16049 589 America/Sao_Paulo 2006-12-13
-3456137 Nova Olímpia Nova Olimpia -14.79722 -57.28806 P PPL BR 14 19274 183 America/Cuiaba 2006-12-13
-3456138 Nova Odessa Nova Odessa -22.7775 -47.29583 P PPL BR 27 49432 569 America/Sao_Paulo 2006-12-13
-3456146 Nova Londrina Nova Londrina -22.76583 -52.985 P PPL BR 18 11042 336 America/Sao_Paulo 2006-12-13
-3456147 Nova Lima Nova Lima Nova Lima,Nova-Lima,Нова-Лима -19.98556 -43.84667 P PPL BR 15 88399 744 America/Sao_Paulo 2010-01-29
-3456160 Nova Iguaçu Nova Iguacu Nova Iguacu,Nova Iguassu,Nova Iguassú,Nova Iguaçu,Nova-Iguasu,Нова-Игуасу -22.75917 -43.45111 P PPLA2 BR 21 3303500 1002118 36 America/Sao_Paulo 2012-03-10
-3456164 Nova Granada Nova Granada Novo Granaoa -20.53389 -49.31417 P PPL BR 27 15715 520 America/Sao_Paulo 2006-12-13
-3456166 Nova Friburgo Nova Friburgo Nova Friburgo -22.28194 -42.53111 P PPLA2 BR 21 3303401 153361 858 America/Sao_Paulo 2012-03-10
-3456176 Nova Era Nova Era Presidente Vargas,Sao Jose da Lagoa,São José da Lagôa -19.75 -43.0375 P PPL BR 15 15595 632 America/Sao_Paulo 2006-12-13
-3456196 Nova Aurora Nova Aurora -22.86667 -52.56667 P PPL BR 18 9013 420 America/Sao_Paulo 2006-01-17
-3456223 Nossa Senhora do Socorro Nossa Senhora do Socorro Contiguiba,Cotinguiba,Cotingüiba,Soccorro,Socorro -10.855 -37.12611 P PPL BR 28 163993 39 America/Maceio 2006-12-13
-3456234 Nossa Senhora das Dores Nossa Senhora das Dores -10.49167 -37.19333 P PPL BR 28 14550 201 America/Maceio 2006-12-13
-3456240 Nossa Senhora da Glória Nossa Senhora da Gloria -10.21833 -37.42028 P PPL BR 28 18612 297 America/Maceio 2006-12-13
-3456248 Nortelândia Nortelandia -14.45472 -56.80278 P PPL BR 14 9634 230 America/Cuiaba 2006-12-13
-3456277 Nobres Nobres Bananal Nobre -14.72028 -56.3275 P PPL BR 14 12009 200 America/Cuiaba 2006-12-13
-3456283 Niterói Niteroi Nictheroi,Nictheroy,Niteroi,Niteroj,Niterói,Vila Real da Praia Grande,Villa Real da Praia Grande,niteroi,Нитерой,ニテロイ -22.88333 -43.10361 P PPL BR 21 456456 44 America/Sao_Paulo 2010-01-29
-3456285 Niquelândia Niquelandia Nikelandija,Sao Jose De Tocantins,Sao Jose do Tocantins,São José do Tocantins,Никеландия -14.47389 -48.45972 P PPL BR 29 27541 580 America/Sao_Paulo 2010-01-29
-3456290 Nilópolis Nilopolis -22.8075 -43.41389 P PPL BR 21 147281 27 America/Sao_Paulo 2006-12-13
-3456322 Nerópolis Neropolis Neropolis,Нерополис -16.40639 -49.21861 P PPL BR 29 21870 822 America/Sao_Paulo 2010-01-29
-3456324 Nepomuceno Nepomuceno -21.23583 -45.23583 P PPL BR 15 18911 869 America/Sao_Paulo 2006-12-13
-3456325 Neópolis Neopolis Vila Nova,Villa Nova -10.32 -36.57944 P PPL BR 28 12421 49 America/Maceio 2006-12-13
-3456366 Nazaré Nazare Nazar,Nazare das Farinhas,Nazareth,Nazaré das Farinhas,Назар -13.035 -39.01444 P PPL BR 05 25604 12 America/Bahia 2010-01-29
-3456368 Naviraí Navirai Navirai,Porto Luiza,Pôrto Luiza,Навираи -23.065 -54.19056 P PPL BR 11 36452 366 America/Campo_Grande 2010-01-29
-3456370 Navegantes Navegantes Navegantis,Навегантис -26.89889 -48.65417 P PPL BR 26 47781 7 America/Sao_Paulo 2010-01-29
-3456377 Natividade Natividade Natividade -21.04222 -41.97333 P PPL BR 21 12014 216 America/Sao_Paulo 2006-12-13
-3456397 Não Me Toque Nao Me Toque Nao Me Toques,Não Me Toques -28.45917 -52.82083 P PPL BR 23 12555 524 America/Sao_Paulo 2006-12-13
-3456398 Nanuque Nanuque Indiana -17.83917 -40.35389 P PPL BR 15 37824 108 America/Sao_Paulo 2006-12-13
-3456412 Muzambinho Muzambinho -21.37583 -46.52556 P PPL BR 15 16253 1044 America/Sao_Paulo 2006-12-13
-3456445 Mutum Mutum Sao Manoel do Mutum,Sao Manoel du Mutum,Sao Manuel do Mutum,São Manoel do Mutum -19.8 -41.43833 P PPL BR 15 12582 223 America/Sao_Paulo 2006-12-13
-3456450 Mutuípe Mutuipe -13.22861 -39.50472 P PPL BR 05 10016 219 America/Bahia 2006-12-13
-3456483 Muritiba Muritiba -12.91667 -39.25 P PPL BR 05 22388 219 America/Bahia 2006-01-17
-3456500 Muriaé Muriae Muriae,Muriaeh,Muriahe,Muriahé,Muriaé,Murihe,Murriae,Муриаэ -21.13056 -42.36639 P PPL BR 15 91173 212 America/Sao_Paulo 2010-01-29
-3456530 Muniz Freire Muniz Freire -20.46417 -41.41306 P PPL BR 08 8312 555 America/Sao_Paulo 2006-12-13
-3456559 Mundo Novo Mundo Novo -11.85889 -40.4725 P PPL BR 05 11912 522 America/Bahia 2006-12-13
-3456591 Mucurici Mucurici Alto Itauna,Alto Itaunas,Alto Itaúna,Alto Itaúnas -18.09333 -40.51583 P PPL BR 08 9524 223 America/Sao_Paulo 2006-12-13
-3456593 Mucuri Mucuri Mucury,Mukuri,Porto Alegre,Мукури -18.08639 -39.55083 P PPL BR 05 26775 7 America/Bahia 2010-01-29
-3456642 Mozarlândia Mozarlandia Mozarlandia,Mozarlândia -14.74472 -50.57056 P PPL BR 29 11251 300 America/Sao_Paulo 2006-12-13
-3456696 Morro do Chapéu Morro do Chapeu Morro de Chapeo,Morro do Chapeo,Morro do Chapéo -11.55 -41.15611 P PPL BR 05 21670 1011 America/Bahia 2006-12-13
-3456707 Morro da Fumaça Morro da Fumaca -28.65083 -49.21 P PPL BR 26 13951 21 America/Sao_Paulo 2006-12-13
-3456724 Morro Agudo Morro Agudo -20.73139 -48.05778 P PPL BR 27 25265 554 America/Sao_Paulo 2006-12-13
-3456735 Morrinhos Morrinhos -17.73111 -49.09944 P PPL BR 29 34143 751 America/Sao_Paulo 2006-12-13
-3456763 Moreira Sales Moreira Sales -24.06222 -53.00694 P PPL BR 18 8698 463 America/Sao_Paulo 2006-12-13
-3456806 Monte Sião Monte Siao -22.4325 -46.5725 P PPL BR 15 11089 857 America/Sao_Paulo 2006-12-13
-3456814 Montes Claros Montes Claros -16.735 -43.86167 P PPL BR 15 332379 686 America/Sao_Paulo 2006-12-13
-3456816 Monte Santo de Minas Monte Santo de Minas Monsanto,Monte Santo -21.18972 -46.98028 P PPL BR 15 16617 893 America/Sao_Paulo 2006-12-13
-3456820 Monte Santo Monte Santo -10.43778 -39.33278 P PPL BR 05 7398 483 America/Bahia 2006-12-13
-3456827 Monte Mor Monte Mor -22.94667 -47.31583 P PPL BR 27 40290 561 America/Sao_Paulo 2006-12-13
-3456848 Monte Carmelo Monte Carmelo Monte Carmello -18.72472 -47.49861 P PPL BR 15 44041 871 America/Sao_Paulo 2006-12-13
-3456863 Monte Azul Paulista Monte Azul Paulista Monte Azul,Monte Azul do Turvo -20.90722 -48.64139 P PPL BR 27 18117 615 America/Sao_Paulo 2006-12-13
-3456864 Monte Azul Monte Azul Boa Vista do Tremendal,Tremedal -15.155 -42.87472 P PPL BR 15 11221 584 America/Sao_Paulo 2006-12-13
-3456866 Monte Aprazível Monte Aprazivel -20.7725 -49.71417 P PPL BR 27 16308 480 America/Sao_Paulo 2006-12-13
-3456873 Monte Alto Monte Alto -21.26111 -48.49639 P PPL BR 27 41893 723 America/Sao_Paulo 2006-12-13
-3456879 Monte Alegre de Sergipe Monte Alegre de Sergipe Monte Alegre -10.02722 -37.56222 P PPL BR 28 6816 262 America/Maceio 2006-12-13
-3456880 Monte Alegre de Minas Monte Alegre de Minas Monte Alegre,Toribate,Toribatê -18.87056 -48.88083 P PPL BR 15 12451 733 America/Sao_Paulo 2006-12-13
-3456905 Montanha Montanha Comercinho de Palha,Montana,Santo Antonio da Montanha,Santo Antônio da Montanha -18.12694 -40.36333 P PPL BR 08 11934 191 America/Sao_Paulo 2006-12-13
-3456944 Mongaguá Mongagua -24.09306 -46.62083 P PPLA2 BR 27 3531100 45930 8 America/Sao_Paulo 2012-03-10
-3456977 Moita Bonita Moita Bonita -10.5775 -37.34278 P PPL BR 28 3602 228 America/Maceio 2006-12-13
-3456998 Mogi Mirim Mogi Mirim Mogy-Mirim,Moji-Mirim -22.43194 -46.95778 P PPL BR 27 78244 631 America/Sao_Paulo 2010-02-16
-3457000 Mogi Guaçu Mogi Guacu Mogy Guassu,Mogy Guassú,Moji-Guacu,Moji-Guaçu -22.37222 -46.94222 P PPL BR 27 128865 595 America/Sao_Paulo 2006-12-13
-3457001 Mogi das Cruzes Mogi das Cruzes Mogy das Cruzes,Moji das Cruzes -23.52278 -46.18833 P PPL BR 27 325746 759 America/Sao_Paulo 2010-02-16
-3457025 Mococa Mococa -21.46778 -47.00472 P PPL BR 27 59654 617 America/Sao_Paulo 2006-12-13
-3457098 Mirante do Paranapanema Mirante do Paranapanema -22.29194 -51.90639 P PPL BR 27 9387 446 America/Sao_Paulo 2006-12-13
-3457107 Mirandopólis Mirandopolis Comandante Arbues,Mirandopolis,Мирандополис -21.13361 -51.10167 P PPL BR 27 23378 438 America/Sao_Paulo 2010-01-29
-3457113 Miranda Miranda -20.24056 -56.37833 P PPL BR 11 13189 131 America/Campo_Grande 2006-12-13
-3457119 Miraí Mirai Mirahy -21.19528 -42.61417 P PPL BR 15 8499 343 America/Sao_Paulo 2006-12-13
-3457133 Miracema Miracema Mirasema,Мирасема -21.41222 -42.19667 P PPL BR 21 26684 142 America/Sao_Paulo 2010-01-29
-3457135 Miracatu Miracatu Prainha -24.28139 -47.45972 P PPLA2 BR 27 3529906 11679 44 America/Sao_Paulo 2012-03-10
-3457136 Mirabela Mirabela Bela Vista,Bella Vista -16.26278 -44.16444 P PPL BR 15 8934 801 America/Sao_Paulo 2006-12-13
-3457147 Mineiros Mineiros -17.56944 -52.55111 P PPL BR 29 38951 766 America/Sao_Paulo 2006-12-13
-3457152 Minas Novas Minas Novas -17.21861 -42.59028 P PPL BR 15 7365 558 America/Sao_Paulo 2006-12-13
-3457161 Mimoso do Sul Mimoso do Sul Joao Pessoa,João Pessoa,Mimoso -21.06417 -41.36639 P PPL BR 08 14044 74 America/Sao_Paulo 2006-12-13
-3457191 Miguel Pereira Miguel Pereira -22.45389 -43.46889 P PPL BR 21 23850 615 America/Sao_Paulo 2006-12-13
-3457192 Miguelópolis Miguelopolis -20.17944 -48.03194 P PPL BR 27 18262 515 America/Sao_Paulo 2006-12-13
-3457202 Miguel Calmon Miguel Calmon Djalma Dutra -11.42889 -40.595 P PPL BR 05 13747 543 America/Bahia 2006-12-13
-3457247 Mendes Mendes -22.52667 -43.73278 P PPL BR 21 17308 419 America/Sao_Paulo 2006-12-13
-3457358 Medina Medina Santa Rita do Itinga,Santa Rita do Medina -16.2225 -41.47694 P PPL BR 15 14686 572 America/Sao_Paulo 2006-12-13
-3457359 Medianeira Medianeira Medianejra,Nova Santa Medianeira,Медианейра -25.29528 -54.09389 P PPL BR 18 34069 417 America/Sao_Paulo 2010-01-29
-3457360 Medeiros Neto Medeiros Neto -17.37389 -40.22056 P PPL BR 05 15254 150 America/Bahia 2006-12-13
-3457381 Mauá Maua -23.66778 -46.46139 P PPLA2 BR 27 3529401 386069 773 America/Sao_Paulo 2012-03-10
-3457393 Matozinhos Matozinhos Mattosinhos -19.55778 -44.08139 P PPL BR 15 30843 814 America/Sao_Paulo 2006-12-13
-3457398 Mato Verde Mato Verde Matto Verde -15.39722 -42.86639 P PPL BR 15 7783 543 America/Sao_Paulo 2006-12-13
-3457454 Matipó Matipo Sao Joao do Matipo,São João do Matipo -20.28389 -42.34111 P PPL BR 15 12996 621 America/Sao_Paulo 2006-12-13
-3457479 Matias Barbosa Matias Barbosa Mathias Barbosa -21.86917 -43.31944 P PPL BR 15 12072 481 America/Sao_Paulo 2006-12-13
-3457484 Mateus Leme Mateus Leme Matheus Leme -19.98639 -44.42778 P PPL BR 15 24890 790 America/Sao_Paulo 2006-12-13
-3457487 Matelândia Matelandia Metelandia,Metelândia -25.24083 -53.99639 P PPL BR 18 10816 491 America/Sao_Paulo 2006-12-13
-3457509 Matão Matao Mattao,Mattão -21.60333 -48.36583 P PPL BR 27 72468 574 America/Sao_Paulo 2006-12-13
-3457528 Mata de São João Mata de Sao Joao Mata-de-San-Zhuan,Matta de Sao Joao,Matta de São João,Мата-де-Сан-Жуан -12.53028 -38.29917 P PPL BR 05 26679 35 America/Bahia 2010-01-29
-3457566 Mascote Mascote -15.56306 -39.3025 P PPL BR 05 18863 56 America/Bahia 2006-12-13
-3457582 Maruim Maruim Mariom,Maroim -10.7375 -37.08167 P PPL BR 28 12153 12 America/Maceio 2006-12-13
-3457595 Martinópolis Martinopolis Jose Teodoro,Jose Theodoro,José Teodoro,José Theodoro -22.14583 -51.17083 P PPL BR 27 18488 501 America/Sao_Paulo 2006-12-13
-3457598 Martinho Campos Martinho Campos Abadia de Pitangui,Abadia de Pitanguí,Abadia do Pitangui,Abadia do Pitanguí,Abbadia -19.33167 -45.23694 P PPL BR 15 9197 679 America/Sao_Paulo 2006-12-13
-3457671 Maringá Maringa Maringa,Maringá,maringa,マリンガ -23.42528 -51.93861 P PPLA2 BR 18 4115200 311724 556 America/Sao_Paulo 2012-03-10
-3457692 Marília Marilia Maril'ja,Marilia,Marília,Марилья -22.21389 -49.94583 P PPLA2 BR 27 3529005 212218 655 America/Sao_Paulo 2012-03-10
-3457697 Marilândia Marilandia -19.41278 -40.54167 P PPL BR 08 3900 88 America/Sao_Paulo 2006-12-13
-3457708 Maricá Marica -22.91944 -42.81861 P PPLA2 BR 21 3302700 79551 10 America/Sao_Paulo 2012-03-10
-3457736 Mariana Mariana Mariana,Marianna,Мариана -20.37778 -43.41611 P PPL BR 15 45236 707 America/Sao_Paulo 2010-01-29
-3457741 Marialva Marialva -23.485 -51.79167 P PPL BR 18 26000 664 America/Sao_Paulo 2006-12-13
-3457770 Marechal Floriano Marechal Floriano -20.41278 -40.68306 P PPL BR 08 5869 555 America/Sao_Paulo 2006-12-13
-3457772 Marechal Cândido Rondon Marechal Candido Rondon General Rondon -24.55611 -54.05667 P PPL BR 18 43028 425 America/Sao_Paulo 2006-12-13
-3457776 Mar de Espanha Mar de Espanha Mar d'Hespanha,Mar de Hespanha -21.86722 -43.00972 P PPL BR 15 9677 484 America/Sao_Paulo 2006-12-13
-3457817 Marau Marau -28.44917 -52.2 P PPL BR 23 26860 553 America/Sao_Paulo 2006-12-13
-3457818 Maraú Marau Marahu,Marahú -14.10306 -39.01472 P PPL BR 05 2956 34 America/Bahia 2006-12-13
-3457819 Marataizes Marataizes -21.04333 -40.82444 P PPL BR 08 25397 7 America/Sao_Paulo 2006-12-13
-3457850 Maragogipe Maragogipe Maragojipe -12.77778 -38.91944 P PPL BR 05 20921 13 America/Bahia 2006-12-13
-3457854 Maracás Maracas -13.44111 -40.43083 P PPL BR 05 22049 963 America/Bahia 2006-12-13
-3457859 Maracaju Maracaju -21.61444 -55.16833 P PPL BR 11 22690 381 America/Campo_Grande 2006-12-13
-3457862 Maracaí Maracai Maracahy -22.61056 -50.66722 P PPL BR 27 11959 392 America/Sao_Paulo 2006-12-13
-3457928 Mantenópolis Mantenopolis Ametista,Manteninha -18.8625 -41.12278 P PPL BR 08 8547 413 America/Sao_Paulo 2006-12-13
-3457950 Manhumirim Manhumirim -20.35778 -41.95806 P PPL BR 15 15544 603 America/Sao_Paulo 2006-12-13
-3457952 Manhuaçu Manhuacu Man'juasu,Manhuassu,Manhuassú,Маньюасу -20.25806 -42.03361 P PPL BR 15 54607 641 America/Sao_Paulo 2010-01-29
-3457991 Mangaratiba Mangaratiba Mangalatiba -22.95972 -44.04056 P PPL BR 21 27022 21 America/Sao_Paulo 2006-12-13
-3458020 Manga Manga -14.75583 -43.93222 P PPL BR 15 11732 454 America/Sao_Paulo 2006-12-13
-3458049 Mandaguari Mandaguari Lovat -23.5475 -51.67083 P PPL BR 18 38238 768 America/Sao_Paulo 2006-12-13
-3458051 Mandaguaçu Mandaguacu Vila Guaira -23.34722 -52.09528 P PPL BR 18 14866 580 America/Sao_Paulo 2006-12-13
-3458093 Malhador Malhador -10.65778 -37.30472 P PPL BR 28 5574 263 America/Maceio 2006-12-13
-3458121 Malacacheta Malacacheta -17.84222 -42.07667 P PPL BR 15 8819 683 America/Sao_Paulo 2006-12-13
-3458131 Mairiporã Mairipora Juqueri,Juquery -23.31861 -46.58667 P PPLA2 BR 27 3528502 54415 752 America/Sao_Paulo 2012-03-10
-3458132 Mairinque Mairinque Majrinki,Mayrink,Майринки -23.54583 -47.18333 P PPL BR 27 44456 850 America/Sao_Paulo 2010-01-29
-3458134 Mairi Mairi Monte Alegre -11.71139 -40.14889 P PPL BR 05 13471 471 America/Bahia 2006-12-13
-3458147 Mafra Mafra Mafre,Villa de Mafra,Мафре -26.11139 -49.80528 P PPL BR 26 40081 806 America/Sao_Paulo 2010-01-29
-3458161 Madre de Deus Madre de Deus Suape -12.74083 -38.62083 P PPL BR 05 14887 2 America/Bahia 2006-12-13
-3458211 Machado Machado -21.67472 -45.91972 P PPL BR 15 33002 815 America/Sao_Paulo 2006-12-13
-3458237 Macaúbas Macaubas Macahubas -13.01944 -42.69861 P PPL BR 05 14597 695 America/Bahia 2006-12-13
-3458245 Macatuba Macatuba Bocaiuva,Bocayuva -22.50222 -48.71139 P PPL BR 27 16179 532 America/Sao_Paulo 2006-12-13
-3458266 Macaé Macae Macae,Macahe,Macahé,Macaé -22.37083 -41.78694 P PPL BR 21 143029 39 America/Sao_Paulo 2006-12-13
-3458329 Luziânia Luziania Luzilandia,Luzilândia,Santa-Luzia -16.2525 -47.95028 P PPL BR 29 143601 932 America/Sao_Paulo 2006-12-13
-3458333 Luz Luz Nossa Senhora da Luz do Aterrado -19.80139 -45.68556 P PPL BR 15 14396 679 America/Sao_Paulo 2006-12-13
-3458390 Lucélia Lucelia -21.72028 -51.01889 P PPL BR 27 14806 453 America/Sao_Paulo 2006-12-13
-3458397 Lucas Lucas Flexas,Lucas,Lukas,Лукас -16.33333 -55.93333 P PPL BR 14 27665 134 America/Cuiaba 2012-01-19
-3458406 Louveira Louveira -23.08639 -46.95056 P PPL BR 27 31093 702 America/Sao_Paulo 2006-12-13
-3458425 Lorena Lorena -22.73083 -45.12472 P PPL BR 27 76506 529 America/Sao_Paulo 2006-12-13
-3458449 Londrina Londrina Londrina,rondorina,Лондрина,ロンドリーナ -23.31028 -51.16278 P PPLA2 BR 18 4113700 471832 605 America/Sao_Paulo 2012-03-10
-3458479 Loanda Loanda Luanda -22.92306 -53.13722 P PPL BR 18 18233 464 America/Sao_Paulo 2006-12-13
-3458481 Livramento do Brumado Livramento do Brumado Liveramento do Brumado,Livramento,Villa Velha -13.64306 -41.84056 P PPL BR 05 19914 499 America/Bahia 2006-12-13
-3458494 Lins Lins Albuquerque Lins,Lins,Линс -21.67861 -49.7425 P PPLA2 BR 27 3527108 69451 411 America/Sao_Paulo 2012-03-10
-3458498 Linhares Linhares -19.39111 -40.07222 P PPL BR 08 105075 36 America/Sao_Paulo 2006-12-13
-3458575 Limeira Limeira Limeira -22.56472 -47.40167 P PPL BR 27 289665 582 America/Sao_Paulo 2006-12-13
-3458591 Lima Duarte Lima Duarte -21.8425 -43.79306 P PPL BR 15 13480 758 America/Sao_Paulo 2006-12-13
-3458632 Leopoldina Leopoldina -21.53194 -42.64306 P PPL BR 15 46742 250 America/Sao_Paulo 2006-12-13
-3458645 Lençóis Paulista Lencois Paulista Lencoes,Lencois,Lençoes,Lençóis,Ubirama -22.59861 -48.80028 P PPL BR 27 57375 562 America/Sao_Paulo 2006-12-13
-3458662 Leme Leme Lem,Leme,Лем -22.18556 -47.39028 P PPL BR 27 81209 630 America/Sao_Paulo 2010-01-29
-3458696 Lavras Lavras -21.24528 -44.99972 P PPL BR 15 81472 924 America/Sao_Paulo 2006-12-13
-3458721 Lauro Muller Lauro Muller Louro Muller,Louro Müller -28.39278 -49.39667 P PPL BR 26 10035 218 America/Sao_Paulo 2006-12-13
-3458746 Laranjeiras do Sul Laranjeiras do Sul Iguacu,Iguassu,Iguassú,Iguaçu,Laranginha,Laranjeiras -25.40778 -52.41611 P PPL BR 18 18424 846 America/Sao_Paulo 2006-12-13
-3458778 Laranjeiras Laranjeiras Larangeiras -10.80639 -37.17 P PPL BR 28 23251 49 America/Maceio 2006-12-13
-3458786 Laranjal Paulista Laranjal Paulista Laranjal -23.04972 -47.83667 P PPL BR 27 21264 542 America/Sao_Paulo 2006-12-13
-3458805 Laranja da Terra Laranja da Terra -19.89889 -41.05667 P PPL BR 08 3016 199 America/Sao_Paulo 2006-12-13
-3458817 Lapão Lapao -11.38333 -41.83194 P PPL BR 05 11252 775 America/Bahia 2006-12-13
-3458826 Lapa Lapa -25.76972 -49.71583 P PPL BR 18 25621 929 America/Sao_Paulo 2006-12-13
-3458881 Lambari Lambari Lambary -21.97556 -45.35028 P PPL BR 15 14516 886 America/Sao_Paulo 2006-12-13
-3458902 Lajinha Lajinha Laginha -20.15139 -41.62278 P PPL BR 15 15729 491 America/Sao_Paulo 2006-12-13
-3458930 Lages Lages Lages -27.81611 -50.32611 P PPL BR 26 164676 917 America/Sao_Paulo 2006-12-13
-3459035 Lajeado Lajeado Costao,Costão,Lageado -29.46694 -51.96139 P PPL BR 23 65407 28 America/Sao_Paulo 2006-12-13
-3459088 Laje Laje Abreus,Lage,Laje -10.18333 -40.96667 P PPL BR 05 4708 576 America/Bahia 2012-01-19
-3459094 Laguna Laguna -28.4825 -48.78083 P PPL BR 26 39711 7 America/Sao_Paulo 2006-12-13
-3459126 Lagoa Vermelha Lagoa Vermelha -28.20861 -51.52583 P PPL BR 23 24445 793 America/Sao_Paulo 2006-12-13
-3459138 Lagoa Santa Lagoa Santa -19.62722 -43.88972 P PPL BR 15 38486 756 America/Sao_Paulo 2006-12-13
-3459181 Lagoa Formosa Lagoa Formosa -18.77861 -46.4075 P PPL BR 15 11822 878 America/Sao_Paulo 2006-12-13
-3459251 Lagoa da Prata Lagoa da Prata -20.0225 -45.54361 P PPL BR 15 43118 662 America/Sao_Paulo 2006-12-13
-3459303 Lagoa Lagoa -27.60491 -48.46713 P PPLL BR 26 5200 2 4 America/Sao_Paulo 2011-07-07
-3459342 Lagarto Lagarto -10.91722 -37.65 P PPL BR 28 45445 138 America/Maceio 2006-12-13
-3459352 Ladário Ladario -19.00472 -57.60167 P PPL BR 11 15790 126 America/Campo_Grande 2006-12-13
-3459435 Juquitiba Juquitiba Jacuitiba,Jucuitiba -23.93167 -47.06833 P PPL BR 27 13959 691 America/Sao_Paulo 2006-12-13
-3459440 Juquiá Juquia Santo Antonio de Juquia,Santo António de Juquia -24.32083 -47.63472 P PPL BR 27 13497 29 America/Sao_Paulo 2006-12-13
-3459452 Junqueirópolis Junqueiropolis -21.51472 -51.43361 P PPL BR 27 13965 421 America/Sao_Paulo 2006-12-13
-3459462 Jundiaí Jundiai Jundiahy,Jundiai,Jundiaí -23.18639 -46.88417 P PPLA2 BR 27 3525904 321589 753 America/Sao_Paulo 2012-03-10
-3459495 Júlio de Castilhos Julio de Castilhos Julio do Castilhos -29.22694 -53.68167 P PPL BR 23 20388 529 518 America/Sao_Paulo 2006-12-13
-3459505 Juiz de Fora Juiz de Fora Juiz de Fora,Zhuis-di-Fora,Жуис-ди-Фора -21.76417 -43.35028 P PPLA2 BR 15 3136702 470193 707 America/Sao_Paulo 2012-03-10
-3459550 Juatuba Juatuba -19.95194 -44.34278 P PPL BR 15 24537 720 America/Sao_Paulo 2006-12-13
-3459667 José Bonifácio Jose Bonifacio -21.05278 -49.68833 P PPL BR 27 27828 437 America/Sao_Paulo 2006-12-13
-3459712 Joinville Joinville Joinville -26.30444 -48.84556 P PPL BR 26 461304 9 America/Sao_Paulo 2006-12-13
-3459785 João Pinheiro Joao Pinheiro -17.7425 -46.1725 P PPL BR 15 28080 775 America/Sao_Paulo 2006-12-13
-3459795 João Neiva Joao Neiva -19.7575 -40.38556 P PPL BR 08 10383 57 America/Sao_Paulo 2006-12-13
-3459796 João Monlevade Joao Monlevade Joao,João,Monlevade -19.81 -43.17361 P PPL BR 15 72762 742 America/Sao_Paulo 2006-12-13
-3459855 Joanópolis Joanopolis Joannopolis -22.93028 -46.27556 P PPL BR 27 11772 911 America/Sao_Paulo 2006-12-13
-3459867 Joaíma Joaima Joahyma -16.65417 -41.03056 P PPL BR 15 9020 270 America/Sao_Paulo 2006-12-13
-3459869 Joaçaba Joacaba Cruzeiro,Cruzeiro do Sul,Juacaba,Juaçaba,Limeira -27.17806 -51.50472 P PPL BR 26 23516 551 America/Sao_Paulo 2006-12-13
-3459876 Jitaúna Jitauna -14.01889 -39.88889 P PPL BR 05 11619 163 America/Bahia 2006-12-13
-3459901 Jetibá Jetiba Jequitiba,Jetiba,Jetibá -20.05 -40.66667 P PPL BR 08 5883 770 America/Sao_Paulo 2012-01-19
-3459909 Jerônimo Monteiro Jeronimo Monteiro Vala do Souza,Valla do Souza -20.78944 -41.395 P PPL BR 08 6902 118 America/Sao_Paulo 2006-12-13
-3459922 Jeremoabo Jeremoabo Geremoabo -10.075 -38.48083 P PPL BR 05 16642 334 America/Bahia 2006-12-13
-3459925 Jequitinhonha Jequitinhonha Sao Miguel de Jequitinhonha,São Miguel de Jequitinhonha -16.43389 -41.00333 P PPL BR 15 15463 239 America/Sao_Paulo 2006-12-13
-3459943 Jequié Jequie Jequie,Jequié,Jiquie,Jiquié -13.8575 -40.08361 P PPL BR 05 127475 214 America/Bahia 2006-12-13
-3460005 Jaú Jau Jahu,Jahú,Jau,Jaú -22.29639 -48.55778 P PPL BR 27 119206 528 America/Sao_Paulo 2006-12-13
-3460048 Jataizinho Jataizinho Colonia Jatahy,Jatahy Parana,Jatahy Paraná,Jatai,Jatal,Jataí -23.25417 -50.98 P PPL BR 18 10014 355 America/Sao_Paulo 2006-12-13
-3460064 Jataí Jatai Jatahy -17.88139 -51.71444 P PPL BR 29 76547 706 America/Sao_Paulo 2006-12-13
-3460068 Jarinu Jarinu -23.10139 -46.72833 P PPL BR 27 17899 793 America/Sao_Paulo 2006-12-13
-3460071 Jardinópolis Jardinopolis -21.01778 -47.76389 P PPL BR 27 34718 600 America/Sao_Paulo 2006-12-13
-3460087 Jardim Jardim -21.48028 -56.13806 P PPL BR 11 23780 256 America/Campo_Grande 2006-12-13
-3460102 Jaraguá do Sul Jaragua do Sul Jaragua,Jaragua do Sul,Jaraguá,Jaraguá do Sul -26.48611 -49.06667 P PPL BR 26 130130 27 America/Sao_Paulo 2006-12-13
-3460107 Jaraguá Jaragua -15.75694 -49.33444 P PPL BR 29 30409 655 America/Sao_Paulo 2006-12-13
-3460127 Japoatã Japoata Jaboatao,Jaboatão -10.34667 -36.80111 P PPL BR 28 4207 88 America/Maceio 2006-12-13
-3460132 Japeri Japeri -22.64306 -43.65333 P PPL BR 21 95101 32 America/Sao_Paulo 2006-12-13
-3460136 Japaratuba Japaratuba -10.59333 -36.94028 P PPL BR 28 8092 89 America/Maceio 2006-12-13
-3460148 Januária Januaria Januaria,Januária -15.48333 -44.36667 P PPL BR 15 34811 460 America/Sao_Paulo 2012-01-19
-3460170 Jandira Jandira -23.5275 -46.9025 P PPL BR 27 113605 733 America/Sao_Paulo 2006-12-13
-3460172 Jandaia do Sul Jandaia do Sul Jandaia -23.60306 -51.64333 P PPL BR 18 17507 814 America/Sao_Paulo 2006-12-13
-3460174 Janaúba Janauba -15.8025 -43.30889 P PPL BR 15 56572 539 America/Sao_Paulo 2006-12-13
-3460186 Jales Jales -20.26889 -50.54583 P PPL BR 27 43831 507 America/Sao_Paulo 2006-12-13
-3460197 Jaguaruna Jaguaruna -28.615 -49.02556 P PPL BR 26 11649 5 America/Sao_Paulo 2006-12-13
-3460200 Jaguariúna Jaguariuna Jaguari,Jaguary,Jaguarí,Jaquary -22.70556 -46.98583 P PPLA2 BR 27 3524709 31717 593 America/Sao_Paulo 2012-03-10
-3460214 Jaguariaíva Jaguariaiva Jaguariahyva,Jajuaryahiva -24.25111 -49.70583 P PPL BR 18 30626 871 America/Sao_Paulo 2006-12-13
-3460225 Jaguarari Jaguarari Jaguarary -10.26389 -40.19583 P PPL BR 05 22612 660 America/Bahia 2006-12-13
-3460232 Jaguarão Jaguarao -32.56611 -53.37583 P PPL BR 23 29613 19 America/Sao_Paulo 2006-12-13
-3460242 Jaguaquara Jaguaquara -13.53056 -39.97083 P PPL BR 05 41498 675 America/Bahia 2006-12-13
-3460267 Jacutinga Jacutinga -22.28556 -46.61222 P PPL BR 15 18469 842 America/Sao_Paulo 2006-12-13
-3460281 Jacupiranga Jacupiranga -24.6925 -48.00222 P PPL BR 27 11149 35 America/Sao_Paulo 2006-12-13
-3460344 Jacobina Jacobina -11.18056 -40.51833 P PPL BR 05 47637 477 America/Bahia 2006-12-13
-3460355 Jaciara Jaciara -15.96528 -54.96833 P PPL BR 14 22737 362 America/Cuiaba 2006-12-13
-3460362 Jacarezinho Jacarezinho Jacaresinho,Zhakarezin'ju,Жакарезинью -23.16056 -49.96944 P PPL BR 18 35090 448 America/Sao_Paulo 2010-01-29
-3460370 Jacareí Jacarei Jacarehy,Jacarei,Jacareí -23.30528 -45.96583 P PPL BR 27 213110 574 America/Sao_Paulo 2006-12-13
-3460441 Jaboticabal Jaboticabal Jaboticabal,Zhabotikabal,Жаботикабал -21.25472 -48.32222 P PPL BR 27 69394 606 America/Sao_Paulo 2010-01-29
-3460484 Ivoti Ivoti Bom Jardim -29.59111 -51.16056 P PPL BR 23 18171 125 America/Sao_Paulo 2006-12-13
-3460505 Iúna Iuna Rio Pardo -20.34583 -41.53583 P PPL BR 08 14290 670 America/Sao_Paulo 2006-12-13
-3460511 Ituverava Ituverava -20.33944 -47.78056 P PPL BR 27 36997 607 America/Sao_Paulo 2006-12-13
-3460513 Iturama Iturama Camelia,Camélia,Iturama,Santa Rosa,Итурама -19.72806 -50.19556 P PPL BR 15 29805 469 America/Sao_Paulo 2010-01-29
-3460516 Itupeva Itupeva -23.15306 -47.05778 P PPL BR 27 20605 676 America/Sao_Paulo 2010-09-02
-3460522 Itumbiara Itumbiara Itumbiara,Paranaiba,Paranaíba,Santa Rita,Santa Rita do Paranahyba,Santa Rita do Paranaib,Santa Rita do Paranaiba,Santa Rita do Paranaiha,Santa Rita do Paranaíba -18.41917 -49.21528 P PPL BR 29 79582 450 America/Sao_Paulo 2006-12-13
-3460523 Ituiutaba Ituiutaba Itijutaba,Ituiutaba,Ituyutaba,Итиютаба -18.96889 -49.465 P PPL BR 15 85345 560 America/Sao_Paulo 2010-01-29
-3460530 Ituberá Itubera Santarem,Santarém -13.73222 -39.14917 P PPL BR 05 19887 48 America/Bahia 2006-12-13
-3460531 Ituaçu Ituacu Ituassu,Ituassú -13.81333 -41.29667 P PPL BR 05 4891 527 America/Bahia 2006-12-13
-3460535 Itu Itu Itu -23.26417 -47.29917 P PPL BR 27 137586 594 America/Sao_Paulo 2006-12-13
-3460542 Itororó Itororo Itapui,Itapuí -15.11694 -40.07028 P PPL BR 05 17324 253 America/Bahia 2006-12-13
-3460549 Itiruçu Itirucu Itirussu -13.53167 -40.15028 P PPL BR 05 11498 824 America/Bahia 2006-12-13
-3460553 Itirapina Itirapina Ityrapina -22.25278 -47.82278 P PPL BR 27 13229 760 America/Sao_Paulo 2006-12-13
-3460563 Itinga Itinga -16.61306 -41.76528 P PPL BR 15 4915 268 America/Sao_Paulo 2006-12-13
-3460584 Itaúna Itauna -20.07528 -44.57639 P PPL BR 15 77400 848 America/Sao_Paulo 2006-12-13
-3460588 Itaú de Minas Itau de Minas -20.73944 -46.75222 P PPL BR 15 14888 717 America/Sao_Paulo 2006-12-13
-3460594 Itatinga Itatinga Sao Joao de Itatinga,Sao Joao do Itatinga,São João de Itatinga,São João do Itatinga -23.10167 -48.61583 P PPL BR 27 15696 850 840 America/Sao_Paulo 2007-11-23
-3460598 Itatiba Itatiba -23.00583 -46.83889 P PPLA2 BR 27 3523404 67934 782 America/Sao_Paulo 2012-03-10
-3460602 Itatiaia Itatiaia Campo Bello,Campo Belo -22.49611 -44.56333 P PPL BR 21 12571 406 America/Sao_Paulo 2006-12-13
-3460620 Itararé Itarare Itarare,Итараре -24.1125 -49.33167 P PPL BR 27 44809 751 America/Sao_Paulo 2010-01-29
-3460622 Itarantim Itarantim -15.65972 -40.06556 P PPL BR 05 12369 255 America/Bahia 2006-12-13
-3460623 Itarana Itarana Figueira,Figueira de Santa Joanna -19.87389 -40.87528 P PPL BR 08 4060 193 America/Sao_Paulo 2006-12-13
-3460629 Itaqui Itaqui Itaka,Itaqui,Itaquy,Итака -29.12528 -56.55306 P PPL BR 23 34631 61 America/Sao_Paulo 2010-01-29
-3460644 Itaquaquecetuba Itaquaquecetuba Itaquaquicetuba -23.48611 -46.34833 P PPL BR 27 336679 748 America/Sao_Paulo 2006-12-13
-3460648 Itapuranga Itapuranga Xixa,Xixá -15.56222 -49.94861 P PPL BR 29 19709 652 America/Sao_Paulo 2006-12-13
-3460651 Itapuí Itapui Bica de Pedra -22.23333 -48.71917 P PPL BR 27 10445 462 America/Sao_Paulo 2006-12-13
-3460666 Itaporanga Itaporanga -23.70778 -49.48972 P PPL BR 27 10202 580 America/Sao_Paulo 2006-12-13
-3460671 Itápolis Itapolis -21.59556 -48.81278 P PPL BR 27 34552 495 America/Sao_Paulo 2006-12-13
-3460697 Itapirapuã Itapirapua Itaperapoan,Itaperapua,Itaperapuan,Itaperapuã,Itapirapuan -15.82333 -50.61333 P PPL BR 29 7923 351 America/Sao_Paulo 2006-12-13
-3460699 Itapira Itapira -22.43611 -46.82167 P PPL BR 27 61607 649 America/Sao_Paulo 2006-12-13
-3460707 Itapicuru Itapicuru Missao,Missão -11.31667 -38.23333 P PPL BR 05 4994 117 America/Bahia 2006-12-13
-3460718 Itapevi Itapevi Itapevy -23.54889 -46.93417 P PPLA2 BR 27 3522505 201748 772 America/Sao_Paulo 2012-03-10
-3460723 Itapeva Itapeva Faxina -23.98222 -48.87556 P PPL BR 27 62957 688 America/Sao_Paulo 2006-12-13
-3460728 Itapetininga Itapetininga Itapetinga,Itapetininga -23.59167 -48.05306 P PPL BR 27 126243 670 America/Sao_Paulo 2006-12-13
-3460730 Itapetinga Itapetinga Itatinga -15.24889 -40.24778 P PPL BR 05 59721 282 America/Bahia 2006-12-13
-3460733 Itaperuna Itaperuna -21.205 -41.88778 P PPL BR 21 84435 123 America/Sao_Paulo 2006-12-13
-3460734 Itaperuçu Itaperucu -25.22 -49.34778 P PPL BR 18 26546 978 America/Sao_Paulo 2006-12-13
-3460738 Itapemirim Itapemirim -21.01111 -40.83389 P PPL BR 08 17536 9 America/Sao_Paulo 2006-12-13
-3460740 Itapema Itapema Itapema,Итапема -27.09028 -48.61139 P PPL BR 26 36761 4 America/Sao_Paulo 2010-01-29
-3460748 Itapecerica da Serra Itapecerica da Serra Itapecerica,Itapeserika-da-Serra,Итапесерика-да-Серра -23.71694 -46.84917 P PPL BR 27 151605 901 America/Sao_Paulo 2010-01-29
-3460752 Itapecerica Itapecerica -20.4725 -45.12556 P PPL BR 15 16684 833 America/Sao_Paulo 2006-12-13
-3460764 Itaparica Itaparica -12.88833 -38.67861 P PPL BR 05 20100 20 America/Bahia 2006-12-13
-3460773 Itapaci Itapaci -14.95083 -49.54944 P PPL BR 29 16117 555 America/Sao_Paulo 2006-12-13
-3460774 Itaocara Itaocara Itacoara,Itacoára -21.66917 -42.07611 P PPL BR 21 16762 99 America/Sao_Paulo 2006-12-13
-3460785 Itanhém Itanhem Nossa Senhora do Itanhem -17.16639 -40.33 P PPL BR 05 13517 189 America/Bahia 2006-12-13
-3460788 Itanhandu Itanhandu -22.29583 -44.93472 P PPL BR 15 11274 899 America/Sao_Paulo 2006-12-13
-3460791 Itanhaém Itanhaem Itanhaen,Nossa Senhora da Conceicao de Itanhaem,Nossa Senhora da Conceição de Itanhaém -24.18306 -46.78889 P PPLA2 BR 27 3522109 90385 12 America/Sao_Paulo 2012-03-10
-3460813 Itambé Itambe -15.245 -40.62444 P PPL BR 05 23558 357 America/Bahia 2006-12-13
-3460817 Itambacuri Itambacuri Itambacury -18.03111 -41.685 P PPL BR 15 14652 349 America/Sao_Paulo 2006-12-13
-3460825 Itamarandiba Itamarandiba Itamarandyba -17.85722 -42.85889 P PPL BR 15 18063 907 America/Sao_Paulo 2006-12-13
-3460826 Itamaraju Itamaraju -17.03917 -39.53111 P PPL BR 05 47628 89 America/Bahia 2006-12-13
-3460831 Itajuípe Itajuipe Pirangi,Piranj -14.67806 -39.375 P PPL BR 05 15516 94 America/Bahia 2006-12-13
-3460834 Itajubá Itajuba -22.42556 -45.45278 P PPL BR 15 81870 858 America/Sao_Paulo 2006-12-13
-3460836 Itajobi Itajobi Itajoby,Itajuby -21.31806 -49.05444 P PPL BR 27 12231 467 America/Sao_Paulo 2006-12-13
-3460837 Itagibá Itagiba Destampina,Itagiba,Itagibá -14.28361 -39.84278 P PPL BR 05 9843 192 America/Bahia 2006-12-13
-3460845 Itajaí Itajai Itajahi,Itajahy,Itajai,Itajaí -26.90778 -48.66194 P PPL BR 26 155716 6 America/Sao_Paulo 2006-12-13
-3460887 Itaí Itai Itahy -23.41778 -49.09056 P PPL BR 27 22304 616 America/Sao_Paulo 2006-12-13
-3460899 Itaguaí Itaguai Itaquahy -22.85222 -43.77528 P PPL BR 21 100752 31 America/Sao_Paulo 2006-12-13
-3460901 Itaguaçu Itaguacu Boa Familia,Bôa Familia,Itaguassu,Itaguassú -19.80194 -40.85556 P PPL BR 08 8201 134 America/Sao_Paulo 2006-12-13
-3460907 Itagi Itagi Itaji -14.16278 -40.00611 P PPL BR 05 10533 220 America/Bahia 2006-12-13
-3460940 Itacaré Itacare Barra do Rio de Contas -14.2775 -38.99667 P PPL BR 05 12484 10 America/Bahia 2006-12-13
-3460942 Itacarambi Itacarambi Itacaramby,Jacare,Porto Jacare,Pôrto Jacaré -15.10222 -44.09194 P PPL BR 15 13084 442 America/Sao_Paulo 2006-12-13
-3460949 Itabuna Itabuna Itabuna,Итабуна -14.78556 -39.28028 P PPL BR 05 205660 69 America/Bahia 2010-01-29
-3460950 Itaboraí Itaborai Itaborahy -22.74444 -42.85944 P PPL BR 21 182498 47 America/Sao_Paulo 2006-12-13
-3460954 Itabirito Itabirito -20.25333 -43.80139 P PPL BR 15 39452 852 America/Sao_Paulo 2006-12-13
-3460960 Itabira Itabira Itabira,Itabira de Mato Dentro,Itabira de Matto Dentro,Presidente Vargas,Итабира -19.61917 -43.22694 P PPL BR 15 99496 794 America/Sao_Paulo 2010-01-29
-3460963 Itaberaí Itaberai Itaberahy,Itaberai,Itaborahy,Итабераи -16.02028 -49.81028 P PPL BR 29 22129 705 America/Sao_Paulo 2010-01-29
-3460966 Itaberaba Itaberaba -12.5275 -40.30694 P PPL BR 05 47301 274 America/Bahia 2006-12-13
-3460967 Itaberá Itabera -23.86194 -49.13722 P PPL BR 27 11097 625 America/Sao_Paulo 2006-12-13
-3460971 Itabaianinha Itabaianinha Itabayanninha -11.27389 -37.79 P PPL BR 28 17149 223 America/Maceio 2006-12-13
-3460974 Itabaiana Itabaiana -10.685 -37.42528 P PPL BR 28 63888 190 America/Maceio 2006-12-13
-3460991 Irupi Irupi Cachoeira -20.34528 -41.64111 P PPL BR 08 3505 747 America/Sao_Paulo 2006-12-13
-3461013 Irecê Irece -11.30417 -41.85583 P PPL BR 05 63626 730 America/Bahia 2006-12-13
-3461017 Irati Irati Iraty -25.46722 -50.65111 P PPL BR 18 45830 848 America/Sao_Paulo 2006-12-13
-3461022 Irará Irara -12.05 -38.76667 P PPL BR 05 9099 274 America/Bahia 2006-12-13
-3461023 Iraquara Iraquara Joao Pessoa,João Pessoa -12.24861 -41.61944 P PPL BR 05 5131 699 America/Bahia 2006-12-13
-3461055 Iracemápolis Iracemapolis Iracemopolis -22.58056 -47.51861 P PPL BR 27 16795 604 America/Sao_Paulo 2006-12-13
-3461080 Ipuã Ipua Olhos d'Agua -20.43806 -48.01222 P PPL BR 27 12370 551 America/Sao_Paulo 2006-12-13
-3461089 Iporã Ipora -24.00306 -53.70417 P PPL BR 18 10353 377 America/Sao_Paulo 2006-12-13
-3461090 Iporá Ipora Ipora,Itajuba,Itajubá,Ипора -16.44194 -51.11778 P PPL BR 29 28254 594 America/Sao_Paulo 2010-01-29
-3461124 Ipirá Ipira Camisao,Camisão -12.15833 -39.73722 P PPL BR 05 27217 331 America/Bahia 2006-12-13
-3461129 Ipiaú Ipiau Ipiau,Rio Novo,Ипиау -14.13722 -39.73389 P PPL BR 05 38762 144 America/Bahia 2010-01-29
-3461134 Iperó Ipero -23.35028 -47.68861 P PPL BR 27 17160 571 America/Sao_Paulo 2006-12-13
-3461143 Ipauçu Ipaucu Ipaussu,Ipaussú -23.05667 -49.62639 P PPL BR 27 10833 575 America/Sao_Paulo 2006-12-13
-3461144 Ipatinga Ipatinga Ipatinga -19.46833 -42.53667 P PPL BR 15 228746 229 America/Sao_Paulo 2006-12-13
-3461151 Ipameri Ipameri Ipamery -17.72194 -48.15972 P PPL BR 29 18607 773 America/Sao_Paulo 2006-12-13
-3461153 Ipaba Ipaba -19.41361 -42.41944 P PPL BR 15 15970 236 America/Sao_Paulo 2006-12-13
-3461194 Inhumas Inhumas -16.35778 -49.49611 P PPL BR 29 44058 763 America/Sao_Paulo 2006-12-13
-3461214 Inhapim Inhapim -19.54917 -42.12 P PPL BR 15 13593 525 America/Sao_Paulo 2006-12-13
-3461224 Inhambupe Inhambupe Inhambupo -11.78444 -38.35306 P PPL BR 05 14735 169 America/Bahia 2006-12-13
-3461289 Indiaroba Indiaroba Espirito Santo,Espírito Santo -11.51917 -37.51167 P PPL BR 28 4989 7 America/Maceio 2006-12-13
-3461311 Indaiatuba Indaiatuba Indaiatuba -23.09028 -47.21806 P PPLA2 BR 27 3520509 179911 629 America/Sao_Paulo 2012-03-10
-3461316 Indaial Indaial Indaval -26.89778 -49.23167 P PPL BR 26 44359 66 America/Sao_Paulo 2006-12-13
-3461368 Imbituva Imbituva Santo Antonio de Imbituva -25.23 -50.60444 P PPL BR 18 19671 893 America/Sao_Paulo 2006-12-13
-3461370 Imbituba Imbituba Henrique Lage,Henrique Laje -28.24 -48.67028 P PPL BR 26 43450 22 America/Sao_Paulo 2006-12-13
-3461408 Ilhéus Ilheus Il'eus,Ilheos,Ilhéos,Sao Jorge dos Ilheos,São Jorgé dos Ilhéos,Ильеус -14.78889 -39.04944 P PPL BR 05 155499 23 America/Bahia 2010-01-29
-3461411 Ilha Solteira Ilha Solteira -20.43278 -51.3425 P PPL BR 27 24997 372 America/Sao_Paulo 2006-12-13
-3461425 Ilhabela Ilhabela Formosa,Vilabela,Villa Bella -23.77806 -45.35806 P PPLA2 BR 27 3520400 32892 7 America/Sao_Paulo 2012-03-10
-3461444 Ijuí Ijui Ijuhy -28.38778 -53.91472 P PPL BR 23 71202 329 America/Sao_Paulo 2006-12-13
-3461455 Iguatemi Iguatemi Igatemi,Igatemí,Sacaron -23.68028 -54.56111 P PPL BR 11 9619 342 America/Campo_Grande 2006-12-13
-3461465 Iguape Iguape Bom Jesus da Ribeira -24.70806 -47.55528 P PPL BR 27 23784 8 America/Sao_Paulo 2006-12-13
-3461469 Iguaí Iguai -14.75639 -40.08917 P PPL BR 05 14217 354 America/Bahia 2006-12-13
-3461477 Iguaba Grande Iguaba Grande -22.83917 -42.22889 P PPL BR 21 11104 17 America/Sao_Paulo 2006-12-13
-3461481 Igrejinha Igrejinha Igrezhin'ja,Игрежинья -29.57444 -50.79028 P PPL BR 23 28679 36 America/Sao_Paulo 2010-01-29
-3461484 Igreja Nova Igreja Nova Triumfo,Triumpho,Triunfo -10.12528 -36.66194 P PPL BR 02 4605 34 America/Maceio 2006-12-13
-3461498 Igarapé Igarape -20.07028 -44.30167 P PPL BR 15 21427 812 America/Sao_Paulo 2006-12-13
-3461499 Igarapava Igarapava -20.03833 -47.74694 P PPL BR 27 29057 572 America/Sao_Paulo 2006-12-13
-3461501 Igaraçu do Tietê Igaracu do Tiete Igarassu,Igarassú -22.50917 -48.55778 P PPL BR 27 22758 496 America/Sao_Paulo 2006-12-13
-3461510 Iconha Iconha -20.79306 -40.81111 P PPL BR 08 5051 29 America/Sao_Paulo 2006-12-13
-3461519 Içara Icara Aliatar,Isara,Исара -28.71333 -49.3 P PPL BR 26 51454 43 America/Sao_Paulo 2010-01-29
-3461525 Ibotirama Ibotirama Bom Jardim,Jardinocolis,Jardinopolis,Jardinópolis -12.18528 -43.22056 P PPL BR 05 17354 426 America/Bahia 2006-12-13
-3461528 Ibiúna Ibiuna Una -23.65639 -47.2225 P PPLA2 BR 27 3519709 22860 868 America/Sao_Paulo 2012-03-10
-3461550 Ibitinga Ibitinga -21.75778 -48.82889 P PPL BR 27 49074 500 America/Sao_Paulo 2006-12-13
-3461559 Ibirubá Ibiruba -28.6275 -53.08972 P PPL BR 23 14180 404 America/Sao_Paulo 2006-12-13
-3461563 Ibirité Ibirite Ibirite,Ибирите -20.02194 -44.05889 P PPL BR 15 141374 883 America/Sao_Paulo 2010-01-29
-3461565 Ibirataia Ibirataia Tesouras,Ubirataia -14.06694 -39.64056 P PPL BR 05 19942 151 America/Bahia 2006-12-13
-3461572 Ibirapitanga Ibirapitanga Ibirapitinga -14.16417 -39.37361 P PPL BR 05 7302 109 America/Bahia 2006-12-13
-3461576 Ibirama Ibirama Hammonia,Hamonia,Hamônia -27.05694 -49.51778 P PPL BR 26 18357 156 America/Sao_Paulo 2006-12-13
-3461579 Ibiraçu Ibiracu Pao Gigante,Pau Gigante,Páo Gigante -19.83194 -40.36972 P PPL BR 08 8921 58 America/Sao_Paulo 2006-12-13
-3461588 Ibiporã Ibipora Sao Pedro de Alcantara,São Pedro de Alcantara -23.26917 -51.04806 P PPL BR 18 44790 500 America/Sao_Paulo 2006-12-13
-3461592 Ibipeba Ibipeba Tiririca do Assurua,Tiririca do Assuruá -11.64083 -42.01111 P PPL BR 05 14428 697 America/Bahia 2006-12-13
-3461602 Ibicuí Ibicui -14.84167 -39.98667 P PPL BR 05 10639 362 America/Bahia 2006-12-13
-3461606 Ibicaraí Ibicarai Palestina -14.865 -39.5875 P PPL BR 05 19574 163 America/Bahia 2006-12-13
-3461620 Ibiá Ibia Sao Pedro d'Alcantara,São Pedro d'Alcantara -19.47833 -46.53889 P PPL BR 15 18428 894 America/Sao_Paulo 2006-12-13
-3461624 Ibatiba Ibatiba Rosario,Rosário -20.23389 -41.51056 P PPL BR 08 12265 750 America/Sao_Paulo 2006-12-13
-3461625 Ibaté Ibate Ibaete,Ibaeté -21.95472 -47.99667 P PPL BR 27 29550 849 America/Sao_Paulo 2006-12-13
-3461628 Ibaiti Ibaiti Barra Bonita -23.84861 -50.18778 P PPL BR 18 25796 842 America/Sao_Paulo 2006-12-13
-3461638 Iaçu Iacu Iassi,Iassí,Paraguacu,Paraguassu,Paraguassú,Paraguaçu,Sitio Novo -12.76722 -40.21167 P PPL BR 05 22664 240 America/Bahia 2006-12-13
-3461641 Iaciara Iaciara Iacara,Iassiara,Iaçara -14.09583 -46.63167 P PPL BR 29 9207 579 America/Sao_Paulo 2006-12-13
-3461655 Hortolândia Hortolandia Hortolandia,Hortolândia -22.85833 -47.22 P PPLA2 BR 27 3519071 203533 584 America/Sao_Paulo 2012-03-10
-3461659 Horizontina Horizontina Horizonte -27.62583 -54.30778 P PPL BR 23 14416 323 America/Sao_Paulo 2006-12-13
-3461677 Hidrolândia Hidrolandia Grimpas,Hydrolandia -16.96222 -49.22806 P PPL BR 29 7082 824 America/Sao_Paulo 2006-12-13
-3461680 Herval Herval Erval -32.02361 -53.39556 P PPL BR 23 18063 283 America/Sao_Paulo 2006-12-13
-3461724 Gurupi Gurupi Gurupi,Гурупи -11.72917 -49.06861 P PPL BR 31 64789 299 America/Araguaina 2010-01-29
-3461733 Guiratinga Guiratinga Lageado,Lajeado -16.34944 -53.75833 P PPL BR 14 10934 477 America/Cuiaba 2006-12-13
-3461750 Guia Lopes da Laguna Guia Lopes da Laguna Guia Lopes -21.45778 -56.11417 P PPL BR 11 9681 246 America/Campo_Grande 2006-12-13
-3461763 Guaxupé Guaxupe -21.30528 -46.71278 P PPL BR 15 47889 858 America/Sao_Paulo 2006-12-13
-3461786 Guarulhos Guarulhos GRU,Guarulhos -23.46278 -46.53333 P PPL BR 27 1169577 774 America/Sao_Paulo 2010-08-30
-3461789 Guarujá Guaruja -23.99306 -46.25639 P PPLA2 BR 27 3518701 310424 13 America/Sao_Paulo 2012-03-10
-3461824 Guariba Guariba -21.36 -48.22833 P PPL BR 27 30464 619 America/Sao_Paulo 2006-12-13
-3461857 Guaratuba Guaratuba -25.88278 -48.57472 P PPL BR 18 18906 6 America/Sao_Paulo 2006-12-13
-3461859 Guaratinguetá Guaratingueta -22.81639 -45.1925 P PPL BR 27 105880 545 America/Sao_Paulo 2007-02-08
-3461860 Guaratinga Guaratinga -16.56667 -39.56667 P PPL BR 05 9519 127 America/Bahia 2006-01-17
-3461871 Guararema Guararema -23.415 -46.035 P PPLA2 BR 27 3518305 23572 583 America/Sao_Paulo 2012-03-10
-3461874 Guararapes Guararapes -21.26083 -50.64278 P PPL BR 27 27557 413 America/Sao_Paulo 2006-12-13
-3461879 Guarapuava Guarapuava Guarapuava,Гуарапуава -25.39528 -51.45806 P PPL BR 18 150850 1121 America/Sao_Paulo 2010-01-29
-3461888 Guarapari Guarapari Guarapari,Guarapary,גוארפארי -20.66667 -40.4975 P PPL BR 08 100925 -9999 America/Sao_Paulo 2006-12-13
-3461892 Guaraniaçu Guaraniacu -25.10083 -52.87806 P PPL BR 18 7781 819 America/Sao_Paulo 2006-12-13
-3461910 Guaranésia Guaranesia Guarnesia -21.29917 -46.8025 P PPL BR 15 17437 782 America/Sao_Paulo 2006-12-13
-3461914 Guaramirim Guaramirim Bananal -26.47306 -49.00278 P PPL BR 26 21422 34 America/Sao_Paulo 2006-12-13
-3461935 Guará Guara -20.42833 -47.82417 P PPL BR 27 18263 575 America/Sao_Paulo 2006-12-13
-3461941 Guaporé Guapore Guaporema -28.84556 -51.89028 P PPL BR 23 20050 482 America/Sao_Paulo 2006-12-13
-3461943 Guapó Guapo Ribeirao,Ribeirão -16.83056 -49.53194 P PPL BR 29 10075 710 America/Sao_Paulo 2006-12-13
-3461949 Guapimirim Guapimirim Guapimirin,Guapy-mirim,Гуапимирин -22.53722 -42.98194 P PPL BR 21 31202 33 America/Sao_Paulo 2010-01-29
-3461954 Guapiaçu Guapiacu Cuapiacu,Cuapiaçu,Guapiassu,Guapiassú,Ribeirao Claro,Ribeirão Claro -20.795 -49.22028 P PPL BR 27 14065 508 America/Sao_Paulo 2006-12-13
-3461958 Guanhães Guanhaes -18.775 -42.9325 P PPL BR 15 23727 773 America/Sao_Paulo 2006-12-13
-3461973 Guanambi Guanambi Guanamby -14.22333 -42.78139 P PPL BR 05 58877 531 America/Bahia 2006-12-13
-3461995 Guaíra Guaira Guahyra,Guajra,Guayra,Гуайра -20.31833 -48.31056 P PPL BR 27 34092 516 America/Sao_Paulo 2010-01-29
-3462022 Guaçuí Guacui Siqueira Campos -20.77556 -41.67944 P PPL BR 08 19786 597 America/Sao_Paulo 2006-12-13
-3462089 Gravataí Gravatai Gravatahy,Gravatai,Gravataí -29.94444 -50.99194 P PPLA2 BR 23 4309209 238778 41 America/Sao_Paulo 2012-03-10
-3462315 Governador Valadares Governador Valadares Figueira,Gov. Valadares,Governador Valadares,Governador-Valadares,Valadares,Говернадор-Валадарес -18.85111 -41.94944 P PPL BR 15 250878 169 America/Sao_Paulo 2010-07-20
-3462371 Goiatuba Goiatuba Bananeiras,Gojatuba,Гоятуба -18.0125 -49.35472 P PPL BR 29 25925 768 America/Sao_Paulo 2010-01-29
-3462374 Goiás Goias Goaiz,Goiaz,Goyaz -15.93444 -50.14028 P PPL BR 29 19098 496 America/Sao_Paulo 2006-12-13
-3462376 Goianira Goianira Gojanira,Sao Geraldo,São Geraldo,Гоянира -16.49611 -49.42639 P PPL BR 29 22822 760 America/Sao_Paulo 2010-01-29
-3462377 Goiânia Goiania Ciutat de Goiania,Ciutat de Goiânia,Goiana,Goiania,Goiania - Goiania,Goiania - Goiânia,Goianá,Goiânia,Gojanija,Goyania,goiania,Гояния,גואיאניה,ゴイアニア -16.67861 -49.25389 P PPLA BR 29 5208707 1171195 766 America/Sao_Paulo 2010-01-21
-3462378 Goianésia Goianesia -15.3175 -49.1175 P PPL BR 29 47883 649 America/Sao_Paulo 2006-12-13
-3462383 Goianápolis Goianapolis Goianopolis,Goianópolis -16.51056 -49.02389 P PPL BR 29 10114 975 America/Sao_Paulo 2006-12-13
-3462419 Giruá Girua Jirua,Jiruá -28.02833 -54.34972 P PPL BR 23 12168 432 America/Sao_Paulo 2006-12-13
-3462487 General Salgado General Salgado -20.64833 -50.36056 P PPL BR 27 8083 512 America/Sao_Paulo 2006-12-13
-3462535 Gaspar Gaspar -26.93139 -48.95889 P PPL BR 26 33658 12 America/Sao_Paulo 2006-12-13
-3462557 Garibaldi Garibaldi -29.25611 -51.53361 P PPL BR 23 30364 607 America/Sao_Paulo 2006-12-13
-3462580 Garça Garca -22.21056 -49.65611 P PPL BR 27 41302 678 America/Sao_Paulo 2006-12-13
-3462601 Gandu Gandu -13.74389 -39.48667 P PPL BR 05 21565 159 America/Bahia 2006-12-13
-3462882 Fundão Fundao -19.93408 -40.40473 P PPL BR 08 12714 37 America/Sao_Paulo 2011-11-01
-3462916 Frutal Frutal Fructal,Frutal,Фрутал -20.02472 -48.94056 P PPL BR 15 40931 511 America/Sao_Paulo 2010-01-29
-3462944 Frei Paulo Frei Paulo Sao Paulo,São Paulo -10.54944 -37.53444 P PPL BR 28 7047 276 America/Maceio 2006-12-13
-3462956 Frederico Westphalen Frederico Westphalen -27.35917 -53.39444 P PPL BR 23 20896 528 America/Sao_Paulo 2006-12-13
-3462964 Franco da Rocha Franco da Rocha Francisco da Rocha -23.32167 -46.72694 P PPL BR 27 108858 762 America/Sao_Paulo 2006-12-13
-3462975 Francisco Sá Francisco Sa Brejo das Almas -16.47583 -43.48833 P PPL BR 15 13997 650 America/Sao_Paulo 2006-12-13
-3462980 Francisco Morato Francisco Morato -23.28167 -46.74528 P PPL BR 27 171790 803 America/Sao_Paulo 2006-12-13
-3462996 Francisco Beltrão Francisco Beltrao Beltran-Francisko,Белтран-Франциско -26.08111 -53.055 P PPL BR 18 57618 567 America/Sao_Paulo 2010-01-29
-3463011 Franca Franca Franca,Franko,Франко -20.53861 -47.40083 P PPLA2 BR 27 3516200 305041 1002 America/Sao_Paulo 2012-03-10
-3463030 Foz do Iguaçu Foz do Iguacu Fos-du-Iguasu,Foz de Iguassu,Foz de Iguazu,Foz do Iguacu,Foz do Iguassu,Foz do Iguassú,Foz do Iguaçu,Iguassu,Iguassú,Фос-ду-Игуасу,פוז דו איגואסו,フォス・ド・イグアス -25.54778 -54.58806 P PPLA2 BR 18 4108304 293523 179 America/Sao_Paulo 2012-03-10
-3463066 Forquilhinha Forquilhinha Forkil'in'ja,Forquilinho,Форкильинья -28.7475 -49.47222 P PPL BR 26 22998 28 America/Sao_Paulo 2010-01-29
-3463124 Formosa do Rio Preto Formosa do Rio Preto Formosa,Itajui,Itajuí -11.04833 -45.19306 P PPL BR 05 14354 495 America/Bahia 2006-12-13
-3463140 Formosa Formosa -15.53722 -47.33444 P PPL BR 29 81232 915 America/Sao_Paulo 2006-12-13
-3463174 Formiga Formiga -20.46444 -45.42639 P PPL BR 15 56404 841 America/Sao_Paulo 2006-12-13
-3463228 Paulista Flórida Paulista Florida Aguapei do Alto,Aguapeí do Alto,Paulista Florida,Paulista Flórida -21.6 -51.2 P PPL BR 27 8865 375 America/Sao_Paulo 2012-01-19
-3463237 Florianópolis Florianopolis Destero,Desterro,Florianopolis,Florianópolis,Floripa,Nossa Senhora do Desterro,Nossa Senhora do Destêrro,fpolis,Флорианополис,פלוריאנופוליס -27.59667 -48.54917 P PPLA BR 26 4205407 412724 26 America/Sao_Paulo 2010-05-13
-3463246 Florestópolis Florestopolis -22.86333 -51.38722 P PPL BR 18 13250 528 America/Sao_Paulo 2006-12-13
-3463271 Flores da Cunha Flores da Cunha -29.02889 -51.18167 P PPL BR 23 20521 748 America/Sao_Paulo 2006-12-13
-3463326 Firminópolis Firminopolis -16.58194 -50.305 P PPL BR 29 9084 678 America/Sao_Paulo 2006-12-13
-3463422 Ferraz de Vasconcelos Ferraz de Vasconcelos -23.54083 -46.36861 P PPL BR 27 167900 759 America/Sao_Paulo 2006-12-13
-3463432 Fernandópolis Fernandopolis -20.28389 -50.24639 P PPL BR 27 61931 533 America/Sao_Paulo 2006-12-13
-3463478 Feira de Santana Feira de Santana Feira,Feira De Saint Anna,Feira de Sant'Anna,Feira de Santana,Fejra-de-Santana,Фейра-де-Сантана -12.26667 -38.96667 P PPL BR 05 481911 223 America/Bahia 2010-01-29
-3463573 Faxinal Faxinal Faxinal de Sao Sebastiao,Faxinal de São Sebastião,Sao Sebastiao,São Sebastião -24.00028 -51.31944 P PPL BR 18 13464 832 America/Sao_Paulo 2006-12-13
-3463604 Fartura Fartura -23.38833 -49.51 P PPL BR 27 12405 508 America/Sao_Paulo 2006-12-13
-3463605 Farroupilha Farroupilha -29.225 -51.34778 P PPL BR 23 57650 773 America/Sao_Paulo 2006-12-13
-3463668 Extrema Extrema -22.85472 -46.31833 P PPL BR 15 13682 946 America/Sao_Paulo 2006-12-13
-3463698 Euclides da Cunha Euclides da Cunha Cumbe,Evklid-da-Kun'ja,Евклид-да-Кунья -10.5075 -39.01583 P PPL BR 05 29738 478 America/Bahia 2010-01-29
-3463762 Estrela Estrela -28.06111 -50.93833 P PPLL BR 23 24200 910 America/Sao_Paulo 2006-12-13
-3463859 Esteio Esteio -29.86139 -51.17917 P PPL BR 23 84902 12 America/Sao_Paulo 2006-12-13
-3463865 Estância Velha Estancia Velha Genuino Sampaio -29.64833 -51.17389 P PPL BR 23 40390 43 America/Sao_Paulo 2006-12-13
-3463900 Estância Estancia -11.26833 -37.43833 P PPL BR 28 55654 54 America/Maceio 2006-12-13
-3463916 Espumoso Espumoso -28.72472 -52.84972 P PPL BR 23 10340 366 America/Sao_Paulo 2006-12-13
-3463920 Esplanada Esplanada -11.79611 -37.945 P PPL BR 05 18859 156 America/Bahia 2006-12-13
-3463939 Espinosa Espinosa -14.92611 -42.81917 P PPL BR 15 17548 567 America/Sao_Paulo 2006-12-13
-3463993 Espera Feliz Espera Feliz -20.65028 -41.90722 P PPL BR 15 13030 767 America/Sao_Paulo 2006-12-13
-3464008 Esmeraldas Esmeraldas Ehsmeral'das,Santa Quiteria,Эсмеральдас -19.7625 -44.31389 P PPL BR 15 103206 755 America/Sao_Paulo 2010-01-29
-3464073 Erechim Erechim Boa Vista do Erechim,Bôa Vista do Erechim,Erechim,Erequim,Erexim,Jose Bonifacio,José Bonifacio,Paiol Grande -27.63417 -52.27389 P PPL BR 23 96087 786 800 America/Sao_Paulo 2010-07-01
-3464100 Entre Rios Entre Rios Nossa Senhora dos Prazeres do Inhambupe -11.94194 -38.08444 P PPL BR 05 27405 165 America/Bahia 2006-12-13
-3464219 Engenheiro Beltrão Engenheiro Beltrao -23.79722 -52.26917 P PPL BR 18 14954 479 America/Sao_Paulo 2006-12-13
-3464255 Encruzilhada do Sul Encruzilhada do Sul Encruzilhada -30.54389 -52.52194 P PPL BR 23 17199 431 America/Sao_Paulo 2006-12-13
-3464262 Encruzilhada Encruzilhada -15.53139 -40.90944 P PPL BR 05 4711 627 America/Bahia 2006-12-13
-3464274 Encantado Encantado -29.23611 -51.86972 P PPL BR 23 16637 73 America/Sao_Paulo 2006-12-13
-3464304 Embu Guaçu Embu Guacu Imbu-Guacu,Imbu-Guaçu -23.83222 -46.81139 P PPL BR 27 3515103 76310 766 America/Sao_Paulo 2010-02-26
-3464305 Embu Embu Ehmba,Embu Arte,Embu das Artes,Imbu,M'Boy,Эмба -23.64889 -46.85222 P PPL BR 27 221733 784 America/Sao_Paulo 2010-05-25
-3464329 Elói Mendes Eloi Mendes Eloy Mendes -21.61 -45.56528 P PPL BR 15 19413 910 America/Sao_Paulo 2006-12-13
-3464335 Elias Fausto Elias Fausto -23.04278 -47.37389 P PPL BR 27 12704 579 America/Sao_Paulo 2006-12-13
-3464343 Eldorado Eldorado Itapopo,Itapopó,Porto Itapopo,Pôrto Itapopó -23.78694 -54.28361 P PPL BR 11 9075 350 America/Campo_Grande 2006-12-13
-3464363 Edéia Edeia Alegrete -17.33833 -49.93139 P PPL BR 29 9838 579 America/Sao_Paulo 2006-12-13
-3464364 Ecoporanga Ecoporanga Patrimonio da Serra,Patrimonio do Serro,Patrimônio da Serra,Patrimônio do Sêrro -18.37333 -40.83056 P PPL BR 08 13774 230 America/Sao_Paulo 2006-12-13
-3464374 Duque de Caxias Duque de Caxias Caxias -22.78556 -43.31167 P PPL BR 21 818329 15 America/Sao_Paulo 2006-12-13
-3464422 Duartina Duartina -22.41444 -49.40389 P PPL BR 27 11902 515 America/Sao_Paulo 2006-12-13
-3464460 Dourados Dourados Doradus,Dourados,dwradws,Дорадус,دورادوس -22.22111 -54.80556 P PPL BR 11 162202 445 America/Campo_Grande 2010-01-29
-3464511 Dores do Indaiá Dores do Indaia Dores do Indaya,Dôres do Indayá,Indaya,Indayá -19.46333 -45.60167 P PPL BR 15 12859 723 America/Sao_Paulo 2006-12-13
-3464547 Dom Pedrito Dom Pedrito -30.98278 -54.67306 P PPL BR 23 36911 144 America/Sao_Paulo 2006-12-13
-3464556 Domingos Martins Domingos Martins -20.36333 -40.65917 P PPL BR 08 6061 525 America/Sao_Paulo 2006-12-13
-3464579 Dois Vizinhos Dois Vizinhos -25.73361 -53.05722 P PPL BR 18 22766 562 America/Sao_Paulo 2006-12-13
-3464618 Dois Córregos Dois Corregos Dous Corregos -22.36611 -48.38028 P PPL BR 27 20974 673 America/Sao_Paulo 2006-12-13
-3464688 Divinópolis Divinopolis Divinopolis,Дивинополис -20.13889 -44.88389 P PPL BR 15 193832 721 America/Sao_Paulo 2010-01-29
-3464693 Divino das Laranjeiras Divino das Laranjeiras Divino de Laranjeiras -18.77778 -41.47972 P PPL BR 15 9058 236 America/Sao_Paulo 2006-12-13
-3464724 Diamantino Diamantino Alto Paraguai do Diamantino,Diamentina -14.40861 -56.44611 P PPL BR 14 15699 282 America/Cuiaba 2006-12-13
-3464728 Diamantina Diamantina Diamantina,Tejuco,Диамантина -18.24944 -43.60028 P PPL BR 15 37343 1262 America/Sao_Paulo 2010-01-29
-3464739 Diadema Diadema Diadema,Диадема -23.68611 -46.62278 P PPL BR 27 390633 784 America/Sao_Paulo 2010-01-29
-3464809 Descalvado Descalvado -21.90389 -47.61944 P PPL BR 27 26137 688 America/Sao_Paulo 2006-12-13
-3464891 Curvelo Curvelo Curvello,Kurvelu,Курвелу -18.75639 -44.43083 P PPL BR 15 63954 653 America/Sao_Paulo 2010-01-29
-3464974 Curitibanos Curitibanos Curitybanos,Kuritibanus,Куритибанус -27.28278 -50.58444 P PPL BR 26 32141 1002 America/Sao_Paulo 2010-01-29
-3464975 Curitiba Curitiba Corityba,Curitiba,Curityba,Curytiba,Kuritiba,Kurytyba,kurichiba,qwrytybh,Куритиба,קוריטיבה,クリチバ -25.42778 -49.27306 P PPLA BR 18 4106902 1718421 924 America/Sao_Paulo 2010-01-21
-3465010 Cunha Cunha -23.07444 -44.95972 P PPL BR 27 11895 953 America/Sao_Paulo 2006-12-13
-3465038 Cuiabá Cuiaba Cuiaba,Cuiabá,Cuyaba,Cuyabá,Kujaba,Vila Real do Senhor Bom Jesus de Cuiaba,Vila Real do Senhor Bom Jesus de Cuiabá,ku ya ba,kuiaba,Куйаба,Куяба,קויאבה,クイアバ,库亚巴 -15.59611 -56.09667 P PPLA BR 14 5103403 521934 193 America/Cuiaba 2010-01-21
-3465059 Cubatão Cubatao -23.895 -46.42528 P PPL BR 27 118410 6 America/Sao_Paulo 2006-12-13
-3465071 Cruzília Cruzilia Cruzilha,Encruzilhada -21.83861 -44.80833 P PPL BR 15 12816 1086 America/Sao_Paulo 2006-12-13
-3465083 Cruzeiro do Oeste Cruzeiro do Oeste Cruzeiro do Norte -23.785 -53.07333 P PPL BR 18 15057 465 America/Sao_Paulo 2006-12-13
-3465090 Cruzeiro Cruzeiro -22.57611 -44.96278 P PPL BR 27 72022 524 America/Sao_Paulo 2006-12-13
-3465105 Cruz das Almas Cruz das Almas -12.67 -39.10194 P PPL BR 05 47844 224 America/Bahia 2006-12-13
-3465108 Cruz Alta Cruz Alta -28.63861 -53.60639 P PPL BR 23 65275 475 America/Sao_Paulo 2006-12-13
-3465145 Crixás Crixas Crichas -14.54889 -49.96917 P PPL BR 29 11559 382 America/Sao_Paulo 2006-12-13
-3465154 Cristinápolis Cristinapolis Cristianopolis,Cristianópolis,Cristina,Vila Cristina,Villa Christina -11.47556 -37.75528 P PPL BR 28 6430 153 America/Maceio 2006-12-13
-3465164 Cristalina Cristalina Cristalino,Crystallina -16.76861 -47.61361 P PPL BR 29 36531 1236 America/Sao_Paulo 2006-12-13
-3465196 Criciúma Criciuma Creciuna,Creciúna,Cresciuma,Cresciúma,Criciuma,Criciúma -28.6775 -49.36972 P PPL BR 26 161954 50 America/Sao_Paulo 2006-12-13
-3465209 Cravinhos Cravinhos -21.34028 -47.72944 P PPL BR 27 32689 801 America/Sao_Paulo 2006-12-13
-3465228 Coxim Coxim Herculanea,Herculania,Herculânea,Herculânia -18.50667 -54.76 P PPL BR 11 30215 205 America/Campo_Grande 2006-12-13
-3465284 Cotia Cotia Cutia -23.60389 -46.91917 P PPLA2 BR 27 3513009 174828 801 America/Sao_Paulo 2012-03-10
-3465303 Costa Rica Costa Rica Costa Rica,Silvino Aquino -23.41667 -54.65 P PPL BR 11 12930 394 America/Campo_Grande 2012-01-19
-3465320 Cosmópolis Cosmopolis -22.64583 -47.19611 P PPL BR 27 47772 583 America/Sao_Paulo 2006-12-13
-3465329 Coruripe Coruripe Cururipe -10.12556 -36.17556 P PPL BR 02 31427 19 America/Maceio 2006-12-13
-3465330 Corupá Corupa Hansa -26.42528 -49.24306 P PPL BR BR 26 12600 66 America/Sao_Paulo 2007-06-18
-3465342 Corumbá Corumba Corumba,Corumbá,kwrwmba,كورومبا -19.00917 -57.65333 P PPL BR 11 96520 152 America/Campo_Grande 2006-12-13
-3465373 Correntina Correntina -13.34333 -44.63667 P PPL BR 05 13186 584 America/Bahia 2006-12-13
-3465409 Correia Pinto Correia Pinto Correa Pinto -27.58472 -50.36111 P PPL BR 26 13752 838 America/Sao_Paulo 2006-12-13
-3465459 Coronel Vivida Coronel Vivida -25.97972 -52.56778 P PPL BR 18 15841 715 America/Sao_Paulo 2006-12-13
-3465476 Coronel Fabriciano Coronel Fabriciano -19.51861 -42.62889 P PPL BR 15 100916 239 America/Sao_Paulo 2006-12-13
-3465487 Coromandel Coromandel -18.47333 -47.20028 P PPL BR 15 22647 941 America/Sao_Paulo 2006-12-13
-3465512 Corinto Corinto Corintho,Korinto,Коринто -18.38083 -44.45639 P PPL BR 15 22121 649 America/Sao_Paulo 2010-01-29
-3465524 Cordeirópolis Cordeiropolis Cordeiro,Cordeiros -22.48194 -47.45667 P PPL BR 27 25630 660 America/Sao_Paulo 2006-12-13
-3465527 Cordeiro Cordeiro -22.02861 -42.36083 P PPL BR 21 15601 491 America/Sao_Paulo 2006-12-13
-3465536 Corbélia Corbelia -24.79889 -53.30667 P PPL BR 18 12725 639 America/Sao_Paulo 2006-12-13
-3465541 Coração de Maria Coracao de Maria -12.23333 -38.75 P PPL BR 05 6571 216 America/Bahia 2006-12-13
-3465542 Coração de Jesus Coracao de Jesus -16.68528 -44.365 P PPL BR 15 12410 769 America/Sao_Paulo 2006-12-13
-3465624 Contagem Contagem -19.93167 -44.05361 P PPL BR 15 627123 945 America/Sao_Paulo 2006-12-13
-3465639 Conselheiro Pena Conselheiro Pena Lajao,Lajão -19.17222 -41.47222 P PPL BR 15 12734 124 America/Sao_Paulo 2006-12-13
-3465644 Conselheiro Lafaiete Conselheiro Lafaiete Conselheiro Lafaiete,Conselheiro Lafayete,Lafaiete -20.66028 -43.78611 P PPL BR 15 111596 998 America/Sao_Paulo 2006-12-13
-3465671 Congonhas Congonhas Congonhas do Campo,Gongonhas,Kongon'jas,Конгоньяс -20.49972 -43.85778 P PPL BR 15 48819 907 America/Sao_Paulo 2010-01-29
-3465713 Conde Conde Itapicuru de Baixo,Nossa Senhora do Monte de Itapicuru da Praia -11.81361 -37.61056 P PPL BR 05 15557 9 America/Bahia 2006-12-13
-3465721 Concórdia Concordia Konkordija,Конкордия -27.23417 -52.02778 P PPL BR 26 55367 592 America/Sao_Paulo 2010-01-29
-3465729 Conchas Conchas -23.01528 -48.01056 P PPL BR 27 14301 508 America/Sao_Paulo 2006-12-13
-3465731 Conchal Conchal -22.33028 -47.1725 P PPL BR 27 21351 594 America/Sao_Paulo 2006-12-13
-3465737 Conceição do Rio Verde Conceicao do Rio Verde -21.88083 -45.08528 P PPL BR 15 12401 884 America/Sao_Paulo 2006-12-13
-3465745 Conceição do Mato Dentro Conceicao do Mato Dentro Conceicao,Conceição -19.03722 -43.425 P PPL BR 15 10708 708 America/Sao_Paulo 2006-12-13
-3465748 Conceição do Coité Conceicao do Coite Coite,Coité,Conceicao Coite,Cuite,Cuité -11.56389 -39.28278 P PPL BR 05 35171 431 America/Bahia 2006-12-13
-3465749 Conceição do Castelo Conceicao do Castelo Conceicao do Castello -20.36833 -41.24389 P PPL BR 08 4538 722 America/Sao_Paulo 2006-12-13
-3465752 Conceição do Almeida Conceicao do Almeida Affonso Penna,Afonso Pena -12.77944 -39.17 P PPL BR 05 9690 219 America/Bahia 2006-12-13
-3465758 Conceição do Jacuípe Conceicao do Jacuipe Concaicao do Jacuipe,Concaição do Jacuípe -12.31667 -38.76667 P PPL BR 05 21597 212 America/Bahia 2006-12-13
-3465764 Conceição das Alagoas Conceicao das Alagoas -19.91472 -48.38833 P PPL BR 15 16152 513 America/Sao_Paulo 2006-12-13
-3465767 Conceição da Feira Conceicao da Feira -12.50583 -38.99861 P PPL BR 05 15834 219 America/Bahia 2006-12-13
-3465769 Conceição da Barra Conceicao da Barra Barra de Sao Mateus,Barra de São Mateus -18.59333 -39.73222 P PPL BR 08 19309 8 America/Bahia 2006-12-13
-3465881 Colorado Colorado -22.8375 -51.97306 P PPL BR 18 20449 444 America/Sao_Paulo 2006-12-13
-3465927 Colombo Colombo Kolombo,Коломбо -25.29167 -49.22417 P PPLA2 BR 18 4105805 217000 1007 America/Sao_Paulo 2012-03-10
-3465944 Colatina Colatina Colatina,Collatina,qwltynh,קולטינה -19.53944 -40.63056 P PPL BR 08 101190 82 America/Sao_Paulo 2006-12-13
-3466005 Cocal Cocal -28.61667 -49.35 P PPL BR 26 13303 97 America/Sao_Paulo 2006-01-27
-3466041 Coaraci Coaraci Guaraci,Itacare,Itacaré,Quaraci -14.64083 -39.55111 P PPL BR 05 32344 206 America/Bahia 2006-12-13
-3466046 Clevelândia Clevelandia -26.39583 -52.47083 P PPL BR 18 14701 878 America/Sao_Paulo 2006-12-13
-3466062 Cláudio Claudio -20.44333 -44.76583 P PPL BR 15 21824 861 America/Sao_Paulo 2006-12-13
-3466134 Cipó Cipo Sipo,Sipó -11.09972 -38.51361 P PPL BR 05 10821 132 America/Bahia 2006-12-13
-3466165 Cidreira Cidreira -30.18111 -50.20556 P PPL BR 23 8965 5 America/Sao_Paulo 2006-12-13
-3466171 Cícero Dantas Cicero Dantas Bom Conselho -10.6 -38.38333 P PPL BR 05 18317 399 America/Bahia 2006-12-13
-3466174 Cianorte Cianorte Sianorte,Сианорте -23.66333 -52.605 P PPL BR 18 55994 529 America/Sao_Paulo 2010-01-29
-3466187 Chuí Chui Chuy,Xui,Xuí -33.69111 -53.45667 P PPL BR BR 23 6605 20 America/Sao_Paulo 2011-12-08
-3466196 Chopinzinho Chopinzinho Chopim,Chopin -25.85583 -52.52333 P PPL BR 18 14141 716 America/Sao_Paulo 2006-12-13
-3466261 Charqueadas Charqueadas Charqueada,Pacencia,Xarqueada,Xarqueda -29.95472 -51.62528 P PPL BR 23 32076 22 America/Sao_Paulo 2006-12-13
-3466267 Charqueada Charqueada Chargeada,Xarqueada -22.50972 -47.77806 P PPL BR 27 12391 606 America/Sao_Paulo 2006-12-13
-3466296 Chapecó Chapeco Chapeco,Chapecó,Xapeco,Xapecó -27.09639 -52.61833 P PPL BR 26 160157 668 America/Sao_Paulo 2006-12-13
-3466307 Chapada dos Guimarães Chapada dos Guimaraes Chapada,Chapada do Guimaraes,Chapada do Guimarães,Santa Ana Da Chapada,Santa Anna da Chapada,Santana da Chapada -15.46056 -55.74972 P PPL BR 14 13650 827 America/Cuiaba 2006-12-13
-3466395 Cerro Largo Cerro Largo Cerro Azul -28.14861 -54.73806 P PPL BR 23 9548 200 America/Sao_Paulo 2006-12-13
-3466429 Cerquilho Cerquilho -23.165 -47.74361 P PPL BR 27 35367 587 America/Sao_Paulo 2006-12-13
-3466430 Cerqueira César Cerqueira Cesar Cerqueira Cezar -23.03556 -49.16611 P PPL BR 27 14260 740 America/Sao_Paulo 2006-12-13
-3466436 Ceres Ceres -15.30833 -49.59833 P PPL BR 29 18759 586 America/Sao_Paulo 2006-12-13
-3466462 Centralina Centralina -18.58389 -49.19944 P PPL BR 15 9497 518 America/Sao_Paulo 2006-12-13
-3466470 Centenário do Sul Centenario do Sul -22.82111 -51.59528 P PPL BR 18 8357 491 America/Sao_Paulo 2006-12-13
-3466481 Celso Ramos Celso Ramos -27.63444 -51.33639 P PPL BR 26 15162 753 America/Sao_Paulo 2006-12-13
-3466537 Caxias do Sul Caxias do Sul Caxias,Caxias do Sul,Caxius do Sul,Kashias-du-Sul,Кашиас-ду-Сул -29.16806 -51.17944 P PPL BR 23 381270 787 America/Sao_Paulo 2010-01-29
-3466547 Caxambu Caxambu -21.97722 -44.9325 P PPL BR 15 22701 908 America/Sao_Paulo 2006-12-13
-3466594 Cavalcante Cavalcante Cavalcanti -13.7975 -47.45833 P PPL BR 29 3747 810 America/Sao_Paulo 2006-12-13
-3466641 Catu Catu Sant'Anna de Catu,Sant'Anna de Catú -12.35306 -38.37889 P PPL BR 05 39932 79 America/Bahia 2006-12-13
-3466692 Catanduva Catanduva Catanduva -21.13778 -48.97278 P PPL BR 27 109612 517 America/Sao_Paulo 2006-12-13
-3466696 Catalão Catalao -18.16583 -47.94639 P PPL BR 29 63544 843 America/Sao_Paulo 2006-12-13
-3466698 Cataguases Cataguases Cataguases,Cataguazes,Kataguazis,Катагуазис -21.38917 -42.69667 P PPL BR 15 62618 180 America/Sao_Paulo 2010-01-29
-3466703 Castro Alves Castro Alves -12.76556 -39.42833 P PPL BR 05 13868 255 America/Bahia 2006-12-13
-3466704 Castro Castro -24.79111 -50.01194 P PPL BR 18 42091 991 America/Sao_Paulo 2006-12-13
-3466708 Castilho Castilho Alfredo Castilho -20.87222 -51.4875 P PPL BR 27 11419 382 America/Sao_Paulo 2006-12-13
-3466723 Castelo Castelo Castello,Estancia do Castello,Kashtelu,Каштелу -20.60361 -41.18472 P PPL BR 08 20198 129 America/Sao_Paulo 2010-01-29
-3466750 Cassilândia Cassilandia -19.11333 -51.73417 P PPL BR 11 18497 475 America/Campo_Grande 2006-12-13
-3466752 Cássia Cassia Santa Rita de Cassia -20.58306 -46.92194 P PPL BR 15 14391 740 America/Sao_Paulo 2006-12-13
-3466763 Casimiro de Abreu Casimiro de Abreu Casemiro de Abreu -22.48056 -42.20417 P PPL BR 21 19087 23 America/Sao_Paulo 2006-12-13
-3466779 Cascavel Cascavel Cascavel -24.95583 -53.45528 P PPL BR 18 257172 786 America/Sao_Paulo 2006-12-13
-3466824 Casa Branca Casa Branca -21.77389 -47.08639 P PPL BR 27 22497 692 America/Sao_Paulo 2006-12-13
-3466900 Carmo do Rio Verde Carmo do Rio Verde -15.35361 -49.7075 P PPL BR 29 6053 611 America/Sao_Paulo 2006-12-13
-3466901 Carmo do Rio Claro Carmo do Rio Claro -20.97194 -46.11889 P PPL BR 15 14446 824 America/Sao_Paulo 2006-12-13
-3466902 Carmo do Paranaíba Carmo do Paranaiba Carmo do Paranahyba -19.00083 -46.31611 P PPL BR 15 26537 1069 America/Sao_Paulo 2006-12-13
-3466903 Carmo do Cajuru Carmo do Cajuru Carmo de Cajuru,Carmo de Cajurú -20.18417 -44.77111 P PPL BR 15 16332 756 America/Sao_Paulo 2006-12-13
-3466913 Carmo Carmo -21.93361 -42.60861 P PPL BR 21 11555 354 America/Sao_Paulo 2006-12-13
-3466931 Carlos Chagas Carlos Chagas Urucu,Urucú -17.70306 -40.76639 P PPL BR 15 13206 206 America/Sao_Paulo 2006-12-13
-3466933 Carlos Barbosa Carlos Barbosa -29.2975 -51.50361 P PPL BR 23 19105 680 America/Sao_Paulo 2006-12-13
-3466941 Carira Carira -10.36083 -37.70111 P PPL BR 28 10275 361 America/Maceio 2006-12-13
-3466950 Carinhanha Carinhanha -14.30472 -43.765 P PPL BR 05 11407 451 America/Bahia 2006-12-13
-3466970 Cardoso Cardoso -20.08194 -49.91417 P PPL BR 27 10556 429 America/Sao_Paulo 2006-12-13
-3466978 Carazinho Carazinho Carasinho,Karazin'ju,Каразинью -28.28389 -52.78639 P PPL BR 23 59417 605 America/Sao_Paulo 2010-01-29
-3466988 Caratinga Caratinga -19.78972 -42.13917 P PPL BR 15 60066 586 America/Sao_Paulo 2006-12-13
-3466993 Caarapó Caarapo Caarapo,Caarapó,Porto Primeiro,Porto Priméiro,Rio Primeiro -22.63417 -54.82222 P PPL BR 11 13863 469 America/Campo_Grande 2006-12-13
-3466998 Carapicuíba Carapicuiba -23.5225 -46.83556 P PPLA2 BR 27 3510609 361112 770 America/Sao_Paulo 2012-03-10
-3467012 Carangola Carangola -20.73306 -42.02944 P PPL BR 15 25321 416 America/Sao_Paulo 2006-12-13
-3467026 Carandaí Carandai Carandahy -20.95361 -43.80639 P PPL BR 15 16657 1096 America/Sao_Paulo 2006-12-13
-3467042 Carambeí Carambei Carambehy -24.91778 -50.09722 P PPL BR 18 13465 1137 America/Sao_Paulo 2006-12-13
-3467078 Caraí Carai Carahy -17.18889 -41.69472 P PPL BR 15 6750 804 America/Sao_Paulo 2006-12-13
-3467081 Caraguatatuba Caraguatatuba Caragua,Karaguatatuba,Карагуататуба -23.62028 -45.41306 P PPLA2 BR 27 3510500 90843 2 America/Sao_Paulo 2012-03-10
-3467197 Capivari Capivari Capivary,Kapivari,Капивари -22.995 -47.50778 P PPL BR 27 35518 555 America/Sao_Paulo 2010-01-29
-3467241 Capitólio Capitolio Sao Sebastiao dos Franciscos,São Sebastião dos Franciscos -20.61528 -46.05 P PPLA2 BR BR 15 3112802 0 773 America/Sao_Paulo 2012-03-10
-3467261 Capinzal Capinzal Rio Capinzal -27.34361 -51.61194 P PPL BR 26 23795 459 America/Sao_Paulo 2006-12-13
-3467263 Capinópolis Capinopolis -18.68194 -49.56972 P PPL BR 15 12486 536 America/Sao_Paulo 2006-12-13
-3467272 Capim Grosso Capim Grosso -11.38111 -40.01278 P PPL BR 05 17322 416 America/Bahia 2006-12-13
-3467305 Capelinha Capelinha Capellinha,Kapelin'ja,Капелинья -17.69139 -42.51583 P PPL BR 15 20073 926 America/Sao_Paulo 2010-01-29
-3467314 Capela do Alto Capela do Alto -23.47056 -47.73472 P PPL BR 27 11991 621 America/Sao_Paulo 2006-12-13
-3467319 Capela Capela Capella -10.50333 -37.05278 P PPL BR 28 16023 165 America/Maceio 2006-12-13
-3467362 Capão da Canoa Capao da Canoa Capo da Canoa -29.74556 -50.00972 P PPL BR 23 35896 6 America/Sao_Paulo 2006-12-13
-3467371 Capâo Bonito Capao Bonito -24.00583 -48.34944 P PPL BR 27 37206 712 America/Sao_Paulo 2006-12-13
-3467445 Cantagalo Cantagalo Cantagallo -21.98111 -42.36806 P PPL BR 21 14019 431 America/Sao_Paulo 2006-12-13
-3467452 Canoinhas Canoinhas Ouro Verde -26.17722 -50.39 P PPL BR 26 38862 779 America/Sao_Paulo 2006-12-13
-3467467 Canoas Canoas Canoas -29.91778 -51.18361 P PPL BR 23 328291 25 America/Sao_Paulo 2007-02-18
-3467512 Canguçu Cangucu Cangussu,Cangussú -31.395 -52.67556 P PPL BR 23 20134 406 America/Sao_Paulo 2006-12-13
-3467530 Canela Canela Canella,Kanela,Канела -29.36556 -50.81556 P PPL BR 23 33528 835 America/Sao_Paulo 2010-01-29
-3467542 Cândido Mota Candido Mota Candido Motta -22.74639 -50.38694 P PPL BR 27 28144 483 America/Sao_Paulo 2006-12-13
-3467545 Cândido de Abreu Candido de Abreu -24.56694 -51.33333 P PPL BR 18 5102 541 America/Sao_Paulo 2006-12-13
-3467550 Candelária Candelaria -29.66917 -52.78889 P PPL BR 23 15199 53 America/Sao_Paulo 2006-12-13
-3467577 Canavieiras Canavieiras Cannavieiras -15.675 -38.94722 P PPL BR 05 26375 9 America/Bahia 2006-12-13
-3467604 Canarana Canarana Canabrava do Miranda,Canna Brava do Miranda,Miranda -11.68472 -41.76889 P PPL BR 05 10785 696 America/Bahia 2006-12-13
-3467609 Cananéia Cananeia Cananea,Cananéa -25.01472 -47.92667 P PPL BR 27 13785 9 America/Sao_Paulo 2006-12-13
-3467673 Campo Verde Campo Verde -20.41667 -54.06667 P PPL BR 11 22806 471 America/Campo_Grande 2006-01-17
-3467677 Campos Novos Campos Novos -27.40167 -51.225 P PPL BR 26 22563 937 America/Sao_Paulo 2006-12-13
-3467680 Campos Gerais Campos Gerais Campos Geraes,Kampus-Zherajs,Кампус-Жерайс -21.235 -45.75861 P PPL BR 15 22260 840 America/Sao_Paulo 2010-01-29
-3467684 Campos do Jordão Campos do Jordao -22.73944 -45.59139 P PPLA2 BR 27 3509700 53319 1603 America/Sao_Paulo 2012-03-10
-3467687 Campos Belos Campos Belos Campos Bellos -13.03667 -46.77167 P PPL BR 29 15582 629 America/Sao_Paulo 2006-12-13
-3467688 Campos Altos Campos Altos -19.69611 -46.17139 P PPL BR 15 12648 1042 America/Sao_Paulo 2006-12-13
-3467693 Campos Campos Campos,Campos dos Goitacazes,Kampos,Sao Salvador dos Campos,São Salvador dos Campos,Кампос -21.75 -41.3 P PPL BR 21 387417 11 America/Sao_Paulo 2012-01-19
-3467717 Campo Mourão Campo Mourao Mourao,Mourão -24.04556 -52.38306 P PPL BR 18 75401 600 America/Sao_Paulo 2006-12-13
-3467736 Campo Largo Campo Largo -25.45861 -49.52833 P PPL BR 18 94668 959 America/Sao_Paulo 2006-12-13
-3467747 Campo Grande Campo Grande Campo Grande,Kampu-Grande,kambw ghrandy,qmpw grndh,Кампу-Гранде,קמפו גרנדה,كامبو غراندي,カンポ・グランデ -20.44278 -54.64639 P PPLA BR 11 729151 592 America/Campo_Grande 2007-02-17
-3467754 Campo Grande Campo Grande -10.23333 -36.5 P PPL BR 02 3051 55 America/Maceio 2006-01-17
-3467760 Campo Formoso Campo Formoso -10.5075 -40.32139 P PPL BR 05 23920 580 America/Bahia 2006-12-13
-3467780 Campo do Brito Campo do Brito -10.73333 -37.49333 P PPL BR 28 8011 207 America/Maceio 2006-12-13
-3467796 Campo Belo Campo Belo Campo Bello,Kampu-Belu,Кампу-Белу -20.89722 -45.27722 P PPL BR 15 47491 854 America/Sao_Paulo 2010-01-29
-3467860 Campina Verde Campina Verde -19.53556 -49.48639 P PPL BR 15 13137 541 America/Sao_Paulo 2006-12-13
-3467865 Campinas Campinas Campinas,Campinas e Regiao,Campinas e Região,Conceicao de Campinas,Conceição de Campinas,Kampinas,Regiao de Campinas,Região de Campinas,kanpinasu,Кампинас,カンピーナス -22.90556 -47.06083 P PPL BR 27 1031554 686 America/Sao_Paulo 2010-08-30
-3467877 Campina Grande do Sul Campina Grande do Sul Campina Grande,Kampina-Grande-du-Sul,Timbu,Кампина-Гранде-ду-Сул -25.30556 -49.05528 P PPL BR 18 31112 885 America/Sao_Paulo 2010-01-29
-3467908 Campestre Campestre Compestre -21.71111 -46.24639 P PPL BR 15 11802 1073 America/Sao_Paulo 2006-12-13
-3467928 Campanha Campanha -21.83611 -45.40056 P PPL BR 15 12506 920 America/Sao_Paulo 2006-12-13
-3467952 Cambuquira Cambuquira -21.85222 -45.29583 P PPL BR 15 10116 951 America/Sao_Paulo 2006-12-13
-3467956 Cambuí Cambui Cambuhy -22.61222 -46.0575 P PPL BR 15 21246 896 America/Sao_Paulo 2006-12-13
-3467962 Cambuci Cambuci Cambucy -21.57528 -41.91111 P PPL BR 21 9395 53 America/Sao_Paulo 2006-12-13
-3467978 Cambé Cambe Nova Dantzig -23.27583 -51.27833 P PPL BR 18 91080 668 America/Sao_Paulo 2006-12-13
-3467985 Cambará Cambara -23.04639 -50.07361 P PPL BR 18 21380 450 America/Sao_Paulo 2006-12-13
-3468014 Camaquã Camaqua Sao Joao de Camaquam,São João de Camaquam -30.85111 -51.81222 P PPL BR 23 53169 39 America/Sao_Paulo 2006-12-13
-3468020 Camapuã Camapua Camapoa,Camapoan,Camapoã,Camapuan,Camaquam -19.53139 -54.04389 P PPL BR 11 11118 410 America/Campo_Grande 2006-12-13
-3468023 Camanducaia Camanducaia Jaguary -22.75528 -46.14472 P PPL BR 15 17822 1012 America/Sao_Paulo 2006-12-13
-3468025 Camamu Camamu -13.94472 -39.10389 P PPL BR 05 13924 37 America/Bahia 2006-12-13
-3468031 Camaçari Camacari Camacari,Camacary,Camassari,Camassary,Camaçari -12.6975 -38.32417 P PPL BR 05 188758 29 America/Bahia 2006-12-13
-3468100 Caldas Novas Caldas Novas -17.74167 -48.625 P PPLA2 BR 29 5204508 63675 691 America/Sao_Paulo 2012-03-10
-3468121 Cajuru Cajuru -21.27528 -47.30417 P PPL BR 27 19539 786 America/Sao_Paulo 2006-12-13
-3468157 Cajati Cajati -24.73611 -48.12278 P PPL BR 27 27565 41 America/Sao_Paulo 2006-12-13
-3468158 Cajamar Cajamar Agua Fria,Água Fria -23.35611 -46.87694 P PPLA2 BR 27 3509205 56682 735 America/Sao_Paulo 2012-03-10
-3468215 Caieiras Caieiras -23.36417 -46.74056 P PPL BR 27 87188 793 America/Sao_Paulo 2006-12-13
-3468234 Caiapônia Caiaponia Rio Bonito,Torres Do Rio Bonito -16.95667 -51.81028 P PPL BR 29 10947 720 America/Sao_Paulo 2006-12-13
-3468296 Cafelândia Cafelandia -21.8025 -49.61 P PPL BR 27 13777 450 America/Sao_Paulo 2006-12-13
-3468314 Cafarnaum Cafarnaum Capernaum,Capernaúm -11.69361 -41.46833 P PPL BR 05 12937 763 America/Bahia 2006-12-13
-3468317 Caetité Caetite Caitete,Caiteté -14.06944 -42.475 P PPL BR 05 27187 818 America/Bahia 2006-12-13
-3468327 Caeté Caete Kaehte,Каэте -19.88 -43.66972 P PPL BR 15 33231 910 America/Sao_Paulo 2010-01-29
-3468349 Caculé Cacule -14.50333 -42.22222 P PPL BR 05 12143 584 America/Bahia 2006-12-13
-3468352 Caçu Cacu Cassu,Cassú -18.55667 -51.13083 P PPL BR 29 10098 482 America/Sao_Paulo 2006-12-13
-3468353 Caconde Caconde -21.52944 -46.64389 P PPL BR 27 12434 827 America/Sao_Paulo 2006-12-13
-3468376 Cachoeiro de Itapemirim Cachoeiro de Itapemirim Cacheiro,Cachoeiro de Itapemirim,Cachoeiro do Itapemirim,קצ'וירו יטאפהמירים -20.84889 -41.11278 P PPL BR 08 187019 39 America/Sao_Paulo 2006-12-13
-3468403 Cachoeirinha Cachoeirinha Cachoeirinha -29.95111 -51.09389 P PPL BR 23 121084 15 America/Sao_Paulo 2006-12-13
-3468425 Cachoeiras de Macacu Cachoeiras de Macacu Cachoeiras -22.4625 -42.65306 P PPL BR 21 46177 63 America/Sao_Paulo 2006-12-13
-3468436 Cachoeira do Sul Cachoeira do Sul Cachoeira,Kashuehjra-du-Sul,Кашуэйра-ду-Сул -30.03917 -52.89389 P PPL BR 23 74694 77 America/Sao_Paulo 2010-01-29
-3468535 Cachoeira Cachoeira -12.61833 -38.95583 P PPL BR 05 16145 32 America/Bahia 2006-12-13
-3468553 Cacequi Cacequi Cacequy -29.88361 -54.825 P PPL BR 23 12867 112 America/Sao_Paulo 2006-12-13
-3468560 Caçapava do Sul Cacapava do Sul Cacapava,Caçapava -30.51222 -53.49139 P PPL BR 23 17522 451 America/Sao_Paulo 2006-12-13
-3468562 Caçapava Cacapava -23.10083 -45.70694 P PPL BR 27 72340 564 America/Sao_Paulo 2006-12-13
-3468570 Caçador Cacador Rio Cacador,Rio Caçador -26.77528 -51.015 P PPL BR 26 63726 916 America/Sao_Paulo 2006-12-13
-3468592 Cabreúva Cabreuva Cabriuva,Cabriúva,Kabreuva,Кабреува -23.3075 -47.13278 P PPL BR 27 38738 638 America/Sao_Paulo 2010-01-29
-3468615 Cabo Frio Cabo Frio -22.87944 -42.01861 P PPL BR 21 108239 14 America/Sao_Paulo 2006-12-13
-3468704 Butiá Butia Butio,Butió -30.11972 -51.96222 P PPL BR 23 19494 71 America/Sao_Paulo 2006-12-13
-3468720 Buritizeiro Buritizeiro -17.35111 -44.96222 P PPL BR 15 25103 516 America/Sao_Paulo 2006-12-13
-3468732 Buritis Buritis Burity -15.61778 -46.42333 P PPL BR 15 16243 539 America/Sao_Paulo 2006-12-13
-3468745 Buriti Alegre Buriti Alegre Burity Alegre -18.14 -49.04028 P PPL BR 29 9427 802 America/Sao_Paulo 2006-12-13
-3468789 Buritama Buritama -21.06611 -50.14722 P PPL BR 27 12712 400 America/Sao_Paulo 2006-12-13
-3468802 Buri Buri Bury -23.7975 -48.59278 P PPL BR 27 15958 603 America/Sao_Paulo 2006-12-13
-3468823 Boquim Boquim Boquim -11.14694 -37.62056 P PPL BR 28 14848 162 America/Maceio 2006-12-13
-3468858 Buerarema Buerarema Buerarama,Macuco -14.95944 -39.29972 P PPL BR 05 16001 111 America/Bahia 2006-12-13
-3468869 Bueno Brandão Bueno Brandao Campo Mistico,Campo Mystico,Campo Místico -22.44083 -46.35083 P PPL BR 15 5777 1184 America/Sao_Paulo 2006-12-13
-3468879 Brusque Brusque -27.09806 -48.9175 P PPL BR 26 88284 32 America/Sao_Paulo 2006-12-13
-3468893 Brumado Brumado Bom Jesus dos Meiras,Bom Jesús dos Meiras -14.20361 -41.66528 P PPL BR 05 41989 427 America/Bahia 2006-12-13
-3468894 Brumadinho Brumadinho -20.14333 -44.19972 P PPL BR 15 27563 757 America/Sao_Paulo 2006-12-13
-3468899 Brotas Brotas -22.28417 -48.12667 P PPL BR 27 18689 651 America/Sao_Paulo 2006-12-13
-3468902 Brodósqui Brodosqui Brodovsky,Brodowski -20.99139 -47.65861 P PPL BR 27 18366 866 America/Sao_Paulo 2006-12-13
-3469057 Brasília de Minas Brasilia de Minas Brasilia,Brasília,Brazilia,Brazilija-di-Minas,Бразилия-ди-Минас -16.20639 -44.43333 P PPL BR 15 14728 728 America/Sao_Paulo 2011-01-07
-3469058 Brasília Brasilia Brasilia,Brasília,Brazilia,Brazilija,Braziljo,Brazília,Mprazilia,Urbs Brasilia,ba xi li ya,beulajillia,brazylya,brzylyh,burajiria,Μπραζίλια,Бразилиа,Бразилия,Бразилија,Ҳавзаи федералии Бразилиа,Բրազիլիա քաղաք,ברזיליה,برازيليا,برازیلیا,ብራዚሊያ,ブラジリア,巴西利亚,브라질리아 -15.77972 -47.92972 P PPLC BR 07 2207718 1136 America/Sao_Paulo 2011-01-07
-3469092 Bragança Paulista Braganca Paulista Baraganca,Baragança,Braganca,Bragansa-Paulista,Bragança,Браганса-Паулиста -22.95194 -46.54194 P PPLA2 BR 27 3507605 125096 838 America/Sao_Paulo 2012-03-10
-3469115 Braço do Norte Braco do Norte -28.275 -49.16556 P PPL BR 26 22374 69 America/Sao_Paulo 2006-12-13
-3469136 Botucatu Botucatu Botucatu,Botukatu,Ботукату -22.88583 -48.445 P PPLA2 BR 27 3507506 113862 837 America/Sao_Paulo 2012-03-10
-3469140 Botelhos Botelhos Sao Jose dos Botelhos,São José dos Botelhos -21.63333 -46.395 P PPL BR 15 11072 977 America/Sao_Paulo 2006-12-13
-3469169 Borda da Mata Borda da Mata Borda da Matta -22.27417 -46.16528 P PPL BR 15 12814 895 America/Sao_Paulo 2006-12-13
-3469173 Borborema Borborema -21.61972 -49.07361 P PPL BR 27 11758 424 America/Sao_Paulo 2006-12-13
-3469181 Boracéia Boraceia Floresta -22.19306 -48.77889 P PPLA2 BR BR 27 3507308 0 485 America/Sao_Paulo 2012-03-10
-3469190 Boquira Boquira Assuncao,Assuncão -12.82306 -42.73056 P PPL BR 05 6306 645 America/Bahia 2006-12-13
-3469294 Bonito Bonito -21.12111 -56.48194 P PPL BR 11 14504 306 America/Campo_Grande 2006-12-13
-3469374 Bom Sucesso Bom Sucesso Bom Successo -21.03306 -44.75806 P PPL BR 15 13786 941 America/Sao_Paulo 2006-12-13
-3469421 Bom Jesus dos Perdões Bom Jesus dos Perdoes Ajuritiba,Perdoes,Perdões -23.135 -46.46528 P PPL BR 27 12422 788 America/Sao_Paulo 2006-12-13
-3469425 Bom Jesus do Itabapoana Bom Jesus do Itabapoana Bom Jesus de Itabapoana,Bon-Zhezus-du-Itabapoana,Бон-Жезус-ду-Итабапоана -21.13389 -41.67972 P PPL BR 21 30821 90 America/Sao_Paulo 2010-01-29
-3469426 Bom Jesus do Galho Bom Jesus do Galho -19.82889 -42.31611 P PPL BR 15 12475 508 America/Sao_Paulo 2006-12-13
-3469437 Bom Jesus da Lapa Bom Jesus da Lapa Bon-Zhezus-da-Lapa,Lapa,Senhor Bom Jesus da Lapa,Бон-Жезус-да-Лапа -13.255 -43.41806 P PPL BR 05 40691 439 America/Bahia 2010-01-29
-3469516 Bom Despacho Bom Despacho -19.73639 -45.25222 P PPL BR 15 40303 771 America/Sao_Paulo 2006-12-13
-3469540 Boituva Boituva -23.28333 -47.67222 P PPLA2 BR 27 3507001 48750 645 America/Sao_Paulo 2012-03-10
-3469601 Bocaiúva Bocaiuva Bocayuva -17.10778 -43.815 P PPL BR 15 32114 683 America/Sao_Paulo 2006-12-13
-3469910 Boa Esperança do Sul Boa Esperanca do Sul Boa Esperanca,Bôa Esperança -21.9925 -48.39083 P PPL BR 27 10787 480 America/Sao_Paulo 2006-12-13
-3469932 Boa Esperança Boa Esperanca Boa-Ehsperansa,Dores da Boa Esperanca,Боа-Эсперанса -21.09 -45.56583 P PPL BR 15 33840 780 America/Sao_Paulo 2010-01-29
-3469942 Boa Esperança Boa Esperanca -18.54 -40.29583 P PPL BR 08 9254 132 America/Sao_Paulo 2006-12-13
-3469968 Blumenau Blumenau Blumenau,Блуменау -26.91944 -49.06611 P PPLA2 BR 26 4202404 293949 20 America/Sao_Paulo 2012-03-10
-3469984 Biritiba Mirim Biritiba Mirim Burityba-Mirim -23.5725 -46.03861 P PPL BR 27 26459 775 America/Sao_Paulo 2006-12-13
-3469989 Birigui Birigui Biriguy -21.28861 -50.34 P PPL BR 27 102277 409 America/Sao_Paulo 2006-12-13
-3470003 Biguaçu Biguacu Biguassu,Biguassú -27.49417 -48.65556 P PPL BR 26 51992 6 America/Sao_Paulo 2006-12-13
-3470025 Bicas Bicas -21.72528 -43.05944 P PPL BR 15 12683 638 America/Sao_Paulo 2006-12-13
-3470044 Betim Betim Betim -19.96778 -44.19833 P PPL BR 15 384000 834 America/Sao_Paulo 2006-12-13
-3470052 Bertioga Bertioga Bertioga -23.85444 -46.13861 P PPLA2 BR 27 3506359 35759 8 America/Sao_Paulo 2012-03-10
-3470059 Bernardino de Campos Bernardino de Campos -23.01306 -49.47417 P PPL BR 27 9342 698 America/Sao_Paulo 2006-12-13
-3470073 Bento Gonçalves Bento Goncalves Bento Goncalves,Bento Gonçalves -29.17139 -51.51917 P PPL BR 23 90852 673 America/Sao_Paulo 2006-12-13
-3470117 Belo Oriente Belo Oriente -19.22 -42.48361 P PPL BR 15 18470 261 America/Sao_Paulo 2006-12-13
-3470127 Belo Horizonte Belo Horizonte B.H.,BH,BHZ,Bello Horizonte,Belo Horizonte,Belo Hte,Belo Khorizonte,Belu-Orizonte,Belu-Orizonti,Bhte,Cidade de Minas,bei luo ao li cang te,beroorizonchi,beroorizonte,blw hwryzwnty,Бело Хоризонте,Белу-Оризонте,Белу-Оризонти,בלו הוריזונטי,ベロオリゾンチ,ベロオリゾンテ,貝洛奥里藏特,贝洛奥里藏特 -19.92083 -43.93778 P PPLA BR 15 2373224 888 872 America/Sao_Paulo 2010-05-13
-3470137 Belmonte Belmonte -15.86306 -38.88278 P PPL BR 05 9806 6 America/Bahia 2006-12-13
-3470142 Belford Roxo Belford Roxo Belford Roxo -22.76417 -43.39944 P PPL BR 21 466096 22 America/Sao_Paulo 2006-12-13
-3470162 Bela Vista do Paraíso Bela Vista do Paraiso -22.99667 -51.19056 P PPL BR 18 14332 633 America/Sao_Paulo 2006-12-13
-3470164 Bela Vista de Goiás Bela Vista de Goias Bela Vista,Bella Vista,Sucuapara,Sussuapara,Suçuapara -16.97278 -48.95333 P PPL BR 29 14289 803 America/Sao_Paulo 2006-12-13
-3470177 Bela Vista Bela Vista Bella Vista -22.10889 -56.52111 P PPL BR 11 18127 190 America/Campo_Grande 2006-12-13
-3470264 Bebedouro Bebedouro -20.94944 -48.47917 P PPL BR 27 71862 574 America/Sao_Paulo 2006-12-13
-3470279 Bauru Bauru Bauru,Бауру -22.31472 -49.06056 P PPLA2 BR 27 3506003 335024 530 America/Sao_Paulo 2012-03-10
-3470324 Batatais Batatais Batataes,Batatajs,Бататайс -20.89111 -47.585 P PPL BR 27 51976 877 America/Sao_Paulo 2010-01-29
-3470338 Bataiporã Bataipora Baitapora,Baitaporã -22.29528 -53.27111 P PPL BR 11 7346 326 America/Campo_Grande 2006-12-13
-3470341 Bastos Bastos -21.92194 -50.73389 P PPL BR 27 17680 460 America/Sao_Paulo 2006-12-13
-3470353 Barueri Barueri Baruehri,Tambore,Tamboré,Баруэри -23.51056 -46.87611 P PPL BR 27 251994 729 America/Sao_Paulo 2010-05-25
-3470369 Barroso Barroso -21.18694 -43.97583 P PPL BR 15 16975 927 America/Sao_Paulo 2006-12-13
-3470409 Barro Alto Barro Alto -14.97083 -48.91583 P PPL BR 29 7633 605 America/Sao_Paulo 2010-05-06
-3470410 Barro Alto Barro Alto -11.76083 -41.91167 P PPL BR 05 14172 701 America/Bahia 2010-05-06
-3470428 Barrinha Barrinha -21.19361 -48.16389 P PPL BR 27 26981 514 America/Sao_Paulo 2006-12-13
-3470451 Barretos Barretos Barretos,Barretus,Барретус -20.55722 -48.56778 P PPL BR 27 101220 538 America/Sao_Paulo 2010-01-29
-3470470 Barreiro do Jaíba Barreiro do Jaiba -15.61667 -43.6 P PPL BR 15 18167 478 America/Sao_Paulo 2006-01-17
-3470583 Barreiras Barreiras Barrejras,Баррейрас -12.15278 -44.99 P PPL BR 05 158292 472 America/Bahia 2010-01-29
-3470597 Barra Velha Barra Velha -26.63222 -48.68472 P PPL BR 26 17665 14 America/Sao_Paulo 2006-12-13
-3470636 Barra Mansa Barra Mansa Barra Mansa -22.54417 -44.17139 P PPL BR 21 164052 380 America/Sao_Paulo 2006-12-13
-3470674 Barra dos Coqueiros Barra dos Coqueiros -10.90889 -37.03861 P PPL BR 28 28586 7 America/Noronha 2006-12-13
-3470691 Barra do Piraí Barra do Pirai Barra do Parai,Barra do Pirahy,Barra do Pirai,Barra do Piraí -22.47 -43.82556 P PPL BR 21 87668 366 America/Sao_Paulo 2006-12-13
-3470709 Barra do Garças Barra do Garcas -15.89 -52.25667 P PPL BR 14 52398 302 America/Cuiaba 2006-12-13
-3470718 Barra do Bugres Barra do Bugres Barra Dos Bugres,Barra do Rio dos Bugres -15.0725 -57.18111 P PPL BR 14 31311 183 America/Cuiaba 2006-12-13
-3470730 Barra de São Francisco Barra de Sao Francisco Barra-de-San-Francisko,Sao Francisco,São Francisco,Барра-де-Сан-Франциско -18.755 -40.89083 P PPL BR 08 20743 197 America/Sao_Paulo 2010-01-29
-3470744 Barra da Estiva Barra da Estiva -13.62611 -41.32694 P PPL BR 05 12614 1030 America/Bahia 2006-12-13
-3470776 Barra Bonita Barra Bonita -22.49472 -48.55806 P PPL BR 27 37246 467 America/Sao_Paulo 2006-12-13
-3470821 Barra Barra Barra,Barra Do Rio Grande,Барра -11.08944 -43.14167 P PPL BR 05 20894 411 America/Bahia 2010-01-29
-3470825 Bariri Bariri Bariry -22.07444 -48.74028 P PPL BR 27 28801 449 America/Sao_Paulo 2006-12-13
-3470858 Barbacena Barbacena -21.22583 -43.77361 P PPL BR 15 122211 1171 America/Sao_Paulo 2006-12-13
-3470871 Barão de Melgaço Barao de Melgaco Chacorore,Chacororé,Melgaco,Melgaço -16.19444 -55.9675 P PPL BR 14 4353 134 America/Cuiaba 2006-12-13
-3470878 Barão de Cocais Barao de Cocais Morro Grande -19.94583 -43.48722 P PPL BR 15 22387 741 America/Sao_Paulo 2006-12-13
-3470912 Bandeirantes Bandeirantes -23.11 -50.3675 P PPL BR 18 29494 424 America/Sao_Paulo 2006-12-13
-3471005 Bambuí Bambui Bambuhy -20.00639 -45.97694 P PPL BR 15 18840 700 America/Sao_Paulo 2006-12-13
-3471039 Balneário Camboriú Balneario Camboriu Balneario,Balneario Camboriu,Balneário,Balneário Camboriú,Camboriu,Camboriú -26.99056 -48.63472 P PPL BR 26 49100 12 America/Sao_Paulo 2009-08-24
-3471061 Baixo Guandu Baixo Guandu -19.51889 -41.01583 P PPL BR 08 19292 78 America/Sao_Paulo 2006-12-13
-3471094 Baixa Grande Baixa Grande -11.95972 -40.16806 P PPL BR 05 7534 367 America/Bahia 2006-12-13
-3471196 Bagé Bage Bag,Bage,Bagé,Baje,Bajé,Баг -31.33139 -54.10694 P PPL BR 23 98940 206 America/Sao_Paulo 2010-01-29
-3471208 Baependi Baependi Baependy -21.95889 -44.89 P PPL BR 15 12853 903 America/Sao_Paulo 2006-12-13
-3471210 Bady Bassitt Bady Bassitt Bady Brassitt,Barboleta,Borboleta -20.91806 -49.44528 P PPL BR 27 14214 511 America/Sao_Paulo 2006-12-13
-3471291 Avaré Avare -23.09861 -48.92583 P PPL BR 27 81285 780 768 America/Sao_Paulo 2007-11-23
-3471309 Auriflama Auriflama -20.68556 -50.55472 P PPL BR 27 11970 473 America/Sao_Paulo 2006-12-13
-3471335 Atibaia Atibaia -23.11694 -46.55028 P PPLA2 BR 27 3504107 110968 817 America/Sao_Paulo 2012-03-10
-3471368 Astorga Astorga -23.2325 -51.66556 P PPL BR 18 20128 688 America/Sao_Paulo 2006-12-13
-3471369 Astolfo Dutra Astolfo Dutra Porto de Santo Antonio,Pôrto de Santo Antonio -21.31528 -42.86222 P PPL BR 15 10999 256 America/Sao_Paulo 2006-12-13
-3471374 Assis Assis Assis,Assiz,Ассис -22.66167 -50.41222 P PPL BR 27 87471 560 America/Sao_Paulo 2010-01-29
-3471377 Assaí Assai Acai,Açaí -23.37333 -50.84139 P PPL BR 18 12545 572 America/Sao_Paulo 2006-12-13
-3471393 Arujá Aruja Uruja,Urujá -23.39611 -46.32083 P PPLA2 BR 27 3503901 72077 788 America/Sao_Paulo 2012-03-10
-3471395 Artur Nogueira Artur Nogueira Arthur Nogueira -22.57306 -47.1725 P PPL BR 27 40403 647 America/Sao_Paulo 2006-12-13
-3471422 Arroio Grande Arroio Grande Federacao,Federação -32.2375 -53.08694 P PPL BR 23 16117 31 America/Sao_Paulo 2006-12-13
-3471425 Arroio dos Ratos Arroio dos Ratos -30.07722 -51.72917 P PPL BR 23 13404 70 America/Sao_Paulo 2006-12-13
-3471428 Arroio do Meio Arroio do Meio Gaspar Martins -29.40111 -51.945 P PPL BR 23 16331 45 America/Sao_Paulo 2006-12-13
-3471451 Arraial do Cabo Arraial do Cabo Aldeia do Cabo -22.96611 -42.02778 P PPL BR 21 26163 11 America/Sao_Paulo 2006-12-13
-3471487 Armação de Búzios Armacao de Buzios Armacao dos Buzios,Armação dos Búzios,Buzios,Búzios,Saco de Fora -22.74694 -41.88167 P PPL BR 21 23463 9 America/Sao_Paulo 2010-08-19
-3471490 Armação Armacao Armacao,Armação,Praia da Armacao,Praia da Armacao do Pantano do Sul,Praia da Armação,Praia da Armação do Pântano do Sul -27.74963 -48.50713 P PPL BR 26 2500 4 America/Sao_Paulo 2011-07-07
-3471522 Arinos Arinos Affonso Arinos -15.91694 -46.10556 P PPL BR 15 10077 517 America/Sao_Paulo 2006-12-13
-3471551 Arenápolis Arenapolis -14.45028 -56.84611 P PPL BR 14 9059 231 America/Cuiaba 2006-12-13
-3471609 Areia Branca Areia Branca -10.75778 -37.31528 P PPL BR 28 7414 163 America/Maceio 2006-12-13
-3471665 Areal Areal -22.23056 -43.10556 P PPL BR 21 11041 496 America/Sao_Paulo 2006-12-13
-3471674 Areado Areado -21.35861 -46.14556 P PPL BR 15 10689 819 America/Sao_Paulo 2006-12-13
-3471683 Arcos Arcos Arkos,Аркос -20.28194 -45.53944 P PPL BR 15 33355 737 America/Sao_Paulo 2010-01-29
-3471691 Araxá Araxa Araxa,Araxá,Ouro Minas Araxa,Ouro Minas Araxá -19.59333 -46.94056 P PPL BR 15 82595 1002 America/Sao_Paulo 2010-02-17
-3471697 Araucária Araucaria Araucaria,Araucária,Araukarija,Араукария -25.59306 -49.41028 P PPL BR 18 111302 886 America/Sao_Paulo 2010-01-29
-3471699 Arauá Araua -11.26222 -37.61972 P PPL BR 28 4747 112 America/Maceio 2006-12-13
-3471715 Araruama Araruama -22.87278 -42.34306 P PPL BR 21 109637 20 America/Sao_Paulo 2006-12-13
-3471758 Araras Araras -22.35694 -47.38417 P PPL BR 27 107463 634 America/Sao_Paulo 2006-12-13
-3471766 Araraquara Araraquara -21.79444 -48.17556 P PPL BR 27 168468 677 America/Sao_Paulo 2010-09-02
-3471772 Araranguá Ararangua Ararangua,Campinas,Арарангуа -28.93472 -49.48583 P PPL BR 26 43444 16 America/Sao_Paulo 2010-01-29
-3471798 Arapongas Arapongas Araponga,Arapongas,Арапонгас -23.41944 -51.42444 P PPL BR 18 97512 805 America/Sao_Paulo 2010-01-29
-3471830 Araguari Araguari Araguar,Araguari,Araguary,Арагуари -18.64722 -48.18722 P PPL BR 15 96565 925 America/Sao_Paulo 2010-01-29
-3471834 Araguaiana Araguaiana Araguiana,Registro do Araguaia -15.73389 -51.83139 P PPL BR BR 14 3512 287 America/Sao_Paulo 2010-09-08
-3471840 Aragarças Aragarcas -15.8975 -52.25083 P PPL BR 29 16781 306 America/Sao_Paulo 2006-12-13
-3471846 Araçuaí Aracuai Arassuahy,Arassuai,Arassuaí,Arassui,Arasuai,Arássuí,Арасуаи -16.84972 -42.07028 P PPL BR 15 22005 316 America/Sao_Paulo 2010-01-29
-3471848 Aracruz Aracruz Arakrus,Sauacu,Sauaçu,Аракрус -19.82028 -40.27333 P PPL BR 08 58271 73 America/Sao_Paulo 2010-01-29
-3471849 Araçoiaba da Serra Aracoiaba da Serra Campo Largo -23.50528 -47.61417 P PPL BR 27 15395 619 America/Sao_Paulo 2006-12-13
-3471854 Araci Araci Aracy,Raso -11.33333 -38.96667 P PPL BR 05 15088 257 America/Bahia 2006-12-13
-3471859 Araçatuba Aracatuba -21.20889 -50.43278 P PPL BR 27 170024 392 America/Sao_Paulo 2006-12-13
-3471872 Aracaju Aracaju Aracaju,Arakazhu,Аракажу,אראקז'ו -10.91111 -37.07167 P PPLA BR 28 490175 11 America/Maceio 2006-12-13
-3471896 Aquidauana Aquidauana Aquidavana -20.47111 -55.78722 P PPL BR 11 35303 157 America/Campo_Grande 2006-12-13
-3471902 Aquidabã Aquidaba Aquidaban -10.28139 -37.01861 P PPL BR 28 10596 219 America/Maceio 2006-12-13
-3471910 Apucarana Apucarana -23.55083 -51.46083 P PPL BR 18 107085 871 America/Sao_Paulo 2006-12-13
-3471927 Apiaí Apiai Apiahy -24.50944 -48.8425 P PPL BR 27 18259 925 America/Sao_Paulo 2006-12-13
-3471940 Aparecida do Taboado Aparecida do Taboado Aparecida do Tabuado -20.08667 -51.09361 P PPL BR 11 17332 379 America/Campo_Grande 2006-12-13
-3471949 Aparecida Aparecida Aparesida,Apparecida,Апаресида -22.84694 -45.22972 P PPL BR 27 34237 593 America/Sao_Paulo 2010-01-29
-3472048 Antonina Antonina -25.42861 -48.71194 P PPL BR 18 16152 9 America/Sao_Paulo 2006-12-13
-3472128 Anitápolis Anitapolis Anitapolis,Annitapolis,Анитаполис -27.90194 -49.12861 P PPL BR BR 26 3267 463 America/Sao_Paulo 2010-11-07
-3472138 Anicuns Anicuns Novo Horizonte -16.46111 -49.96167 P PPL BR 29 15684 708 America/Sao_Paulo 2006-12-13
-3472177 Angra dos Reis Angra dos Reis Angra,Angra dos Reis,Angra-dus-Rejs,Ангра-дус-Рейс -23.00667 -44.31806 P PPLA2 BR 21 3300100 153635 8 America/Sao_Paulo 2012-03-10
-3472234 Angatuba Angatuba -23.48972 -48.41278 P PPL BR 27 14476 627 America/Sao_Paulo 2006-12-13
-3472245 Andrelândia Andrelandia Turvo,Vila Bela do Turvo -21.73972 -44.30917 P PPL BR 15 10079 964 America/Sao_Paulo 2006-12-13
-3472248 Andradina Andradina -20.89611 -51.37944 P PPL BR 27 52406 417 America/Sao_Paulo 2006-12-13
-3472254 Andradas Andradas Andradas,Caracol,Андрадас -22.06806 -46.56917 P PPL BR 15 26772 905 America/Sao_Paulo 2010-01-29
-3472284 Anastácio Anastacio -20.48361 -55.80694 P PPL BR 11 18817 170 America/Campo_Grande 2006-12-13
-3472287 Anápolis Anapolis Anapolis,Anápolis -16.32667 -48.95278 P PPL BR 29 319587 1003 America/Sao_Paulo 2009-11-12
-3472298 Anagé Anage Anaje,Joanopolis,Joanópolis,Sao Joao da Vila Nova,Sao Jose da Villa Nova,São José da Villa Nova,São João da Vila Nova -14.61222 -41.13556 P PPL BR 05 3758 378 America/Bahia 2006-12-13
-3472304 Ampére Ampere -25.915 -53.47278 P PPL BR 18 14274 509 America/Sao_Paulo 2006-12-13
-3472311 Amparo Amparo -22.70111 -46.76444 P PPLA2 BR 27 3501905 41497 680 America/Sao_Paulo 2012-03-10
-3472338 Américo Brasiliense Americo Brasiliense -21.72444 -48.10167 P PPL BR 27 34331 726 America/Sao_Paulo 2006-12-13
-3472343 Americana Americana Amerikana,Vila Americana,Villa Americana,Американа -22.73917 -47.33139 P PPL BR 27 196022 563 America/Sao_Paulo 2010-01-29
-3472344 América Dourada America Dourada -11.45528 -41.43611 P PPL BR 05 14015 665 America/Bahia 2006-12-13
-3472370 Amargosa Amargosa -13.03028 -39.60472 P PPL BR 05 22530 412 America/Bahia 2006-12-13
-3472404 Alvorada Alvorada -12.48 -49.12472 P PPL BR 31 10232 298 America/Araguaina 2006-12-13
-3472406 Alvinópolis Alvinopolis -20.10667 -43.04889 P PPL BR 15 12068 602 America/Sao_Paulo 2006-12-13
-3472417 Álvares Machado Alvares Machado -22.07944 -51.47194 P PPL BR 27 21642 484 America/Sao_Paulo 2006-12-13
-3472437 Alto Piquiri Alto Piquiri -24.02806 -53.44056 P PPL BR 18 10039 424 America/Sao_Paulo 2006-12-13
-3472440 Alto Paraná Alto Parana -23.12889 -52.31889 P PPL BR 18 10888 520 America/Sao_Paulo 2006-12-13
-3472444 Altãnia Altania Itonia,Itônia -23.87444 -53.90167 P PPL BR 18 11242 353 America/Sao_Paulo 2006-12-13
-3472473 Alto Araguaia Alto Araguaia Santa Rita do Araguaia,Santa Rita do Araguaya -17.31472 -53.21528 P PPL BR 14 8780 672 America/Cuiaba 2006-12-13
-3472485 Altinópolis Altinopolis -21.02556 -47.37389 P PPL BR 27 14615 918 America/Sao_Paulo 2006-12-13
-3472487 Alterosa Alterosa Serra Negra -21.24917 -46.14306 P PPL BR 15 9277 836 America/Sao_Paulo 2006-12-13
-3472507 Alpinópolis Alpinopolis -20.86361 -46.38806 P PPL BR 15 13286 877 America/Sao_Paulo 2006-12-13
-3472518 Almirante Tamandaré Almirante Tamandare Tamandare,Tamandaré,Timaneira,Timoneira -25.32472 -49.31 P PPL BR 18 89499 956 America/Sao_Paulo 2006-12-13
-3472520 Almenara Almenara Al'menara,Sao Joao de Vigia,São João de Vigia,Vigia,Альменара -16.18361 -40.69444 P PPL BR 15 29333 193 America/Sao_Paulo 2010-01-29
-3472596 Alfredo Chaves Alfredo Chaves Alfredo Chavez -20.635 -40.74972 P PPL BR 08 6422 19 America/Sao_Paulo 2006-12-13
-3472603 Alfenas Alfenas Alfenas -21.42917 -45.94722 P PPL BR 15 71406 887 America/Sao_Paulo 2006-12-13
-3472609 Além Paraíba Alem Paraiba Alem Parahyba -21.88778 -42.70444 P PPL BR 15 33907 148 America/Sao_Paulo 2006-12-13
-3472638 Alegrete Alegrete Alegrete,Alegreti,Алегрети -29.78306 -55.79194 P PPL BR 23 87236 102 107 America/Sao_Paulo 2010-01-29
-3472666 Alegre Alegre -20.76361 -41.53306 P PPL BR 08 19757 248 America/Sao_Paulo 2006-12-13
-3472766 Alagoinhas Alagoinhas Alagoinhas -12.13556 -38.41917 P PPL BR 05 122688 158 America/Bahia 2006-12-13
-3472808 Aimorés Aimores Aymores,Aymorés -19.49583 -41.06389 P PPL BR 15 19133 79 America/Sao_Paulo 2006-12-13
-3472820 Águia Branca Aguia Branca -18.98306 -40.74028 P PPL BR 08 2554 143 America/Sao_Paulo 2006-12-13
-3472825 Agudos Agudos -22.46917 -48.9875 P PPL BR 27 30807 587 America/Sao_Paulo 2006-12-13
-3472848 Águas Vermelhas Aguas Vermelhas Agua Vermelha -15.74722 -41.46 P PPL BR 15 16409 735 America/Sao_Paulo 2006-12-13
-3472864 Águas Formosas Aguas Formosas Aguas Belas,Aguas Bellas,Sao Boaventura d'Agua Bella,Sao Jose das Aguas Belas,São Bôaventura d'Agua Bella,São José das Aguas Belas,Águas Belas -17.08222 -40.93583 P PPL BR 15 11511 260 America/Sao_Paulo 2006-12-13
-3472869 Águas de Lindóia Aguas de Lindoia -22.47639 -46.63278 P PPL BR 27 18805 901 America/Sao_Paulo 2006-12-13
-3472969 Aguaí Aguai Cascavel -22.05944 -46.97861 P PPL BR 27 27503 665 America/Sao_Paulo 2006-12-13
-3473129 Afonso Cláudio Afonso Claudio Affonso Claudio -20.07417 -41.12389 P PPL BR 08 13543 368 America/Sao_Paulo 2006-12-13
-3473157 Adamantina Adamantina -21.68528 -51.0725 P PPL BR 27 31078 468 America/Sao_Paulo 2006-12-13
-3473183 Açucena Acucena Travessao,Travessão -19.07306 -42.54639 P PPL BR 15 14505 480 America/Sao_Paulo 2006-12-13
-3473218 Acajutiba Acajutiba Cajueiro -11.66222 -38.01722 P PPL BR 05 14348 183 America/Bahia 2006-12-13
-3473267 Abaeté Abaete Abaehte,Абаэте -19.16 -45.44583 P PPL BR 15 20370 639 America/Sao_Paulo 2010-01-29
-3473268 Abadiânia Abadiania -16.20417 -48.70694 P PPL BR 29 7062 1057 America/Sao_Paulo 2011-09-27
-3473964 Guaíba Guaiba Guaiba,Guaíba -30.11389 -51.325 P PPL BR 23 101024 22 America/Sao_Paulo 2006-12-13
-3474574 Palmas Palmas Palmas,plms,Палмас,פלמס -10.21278 -48.36028 P PPLA BR 31 196272 234 America/Araguaina 2006-12-13
-3478424 Pontal do Paraná Pontal do Parana -25.67361 -48.51111 P PPLA2 BR 18 4119954 14969 7 America/Sao_Paulo 2012-03-10
-3661756 Uarini Uarini -2.99 -65.10833 P PPL BR 04 2796 56 America/Manaus 2006-12-13
-3661894 Tonantins Tonantins Tocantins -2.87306 -67.80222 P PPL BR 04 4561 55 America/Manaus 2006-12-13
-3661944 Tefé Tefe Ega,Teffe,Teffé -3.35417 -64.71139 P PPL BR 04 44942 40 America/Manaus 2006-12-13
-3661948 Marechal Thaumaturgo Marechal Thaumaturgo Taumaturgo,Villa Thaumaturgo -8.94111 -72.79167 P PPL BR 01 1808 242 America/Rio_Branco 2006-12-13
-3661980 Tarauacá Tarauaca Foz do Muru,Seabra,Vila Seabra,Villa Seabra -8.16139 -70.76556 P PPL BR 01 16526 173 America/Rio_Branco 2006-12-13
-3662075 Tabatinga Tabatinga -4.2525 -69.93806 P PPL BR 04 28229 78 America/Manaus 2006-12-13
-3662155 Sena Madureira Sena Madureira Purus,Purús,Senna Madureira -9.06556 -68.65694 P PPL BR 01 20516 131 America/Manaus 2006-12-13
-3662252 São Paulo de Olivença Sao Paulo de Olivenca -3.37833 -68.8725 P PPL BR 04 11763 73 America/Manaus 2006-12-13
-3662342 São Gabriel da Cachoeira Sao Gabriel da Cachoeira Sao Gabriel,São Gabriel -0.13028 -67.08917 P PPL BR 04 15231 67 America/Manaus 2006-12-13
-3662395 Santo Antônio do Içá Santo Antonio do Ica Santo Antonio,Santo Antonio do Inca -3.10222 -67.93972 P PPL BR 04 9302 68 America/Manaus 2006-12-13
-3662489 Santa Isabel do Rio Negro Santa Isabel do Rio Negro Santa Isabel,Santa Izabel,Tapuracuara,Tapurucuara,Tapuruqua,Tapuruquara,Tapuruquá,Tapuruquára -0.41389 -65.01917 P PPL BR 04 4142 45 America/Manaus 2006-12-13
-3662574 Rio Branco Rio Branco Penapolis,Penápolis,Rio Branco,Riu Brankas,Riu-Branku,ryw brnqw,Риу-Бранку,ריו ברנקו,リオ・ブランコ -9.97472 -67.81 P PPLA BR 01 257642 153 America/Rio_Branco 2010-06-21
-3662761 Porto Walter Porto Walter Humaita,Humaitá,Humayta,Humaytá,Porto Valter,Porto Walter,Pôrto Válter,Pôrto Walter,Villa Humayta -8.26861 -72.74389 P PPL BR 01 1816 195 America/Rio_Branco 2006-12-13
-3662762 Porto Velho Porto Velho Porto Velho,Portu Veljas,Portu-Vel'ju,Portu-Velju,Velho,pwrtw wlyw,Порту-Велью,Порту-Велю,פורטו ולאהו,פורטו וליו -8.76194 -63.90389 P PPLA BR 24 306180 90 America/Porto_Velho 2007-02-17
-3662927 Pauini Pauini -7.71361 -66.97639 P PPL BR 04 7633 104 America/Manaus 2006-12-13
-3663142 Novo Aripuanã Novo Aripuana Boca Aripuana,Boca Aripuanã,Foz do Aripuana,Foz do Aripuanã -5.12056 -60.37972 P PPL BR 04 11044 32 America/Manaus 2006-12-13
-3663475 Maraã Maraa -1.83333 -65.36667 P PPL BR 04 4387 74 America/Manaus 2006-01-17
-3663495 Manoel Urbano Manoel Urbano Manoel Urbano -8.83889 -69.25972 P PPL BR 01 4065 165 America/Rio_Branco 2006-12-13
-3663503 Manicoré Manicore -5.80917 -61.30028 P PPL BR 04 14055 38 America/Manaus 2006-12-13
-3663516 Mâncio Lima Mancio Lima Japiim,Japuim,Villa Nuncio Lima -7.61417 -72.89583 P PPL BR 01 7086 189 America/Rio_Branco 2006-12-13
-3663517 Manaus Manaus Barra do Rio Negro,Manaos,Manaus,Manos,Manáos,ma nao si,manausu,Манаус,Манаўс,מנאוס,マナウス,马瑙斯 -3.10194 -60.025 P PPLA BR 04 1598210 20 America/Manaus 2007-02-17
-3663524 Manaquiri Manaquiri Manaquery,Manaquiri -3.31667 -60.35 P PPL BR 04 9981 27 America/Manaus 2012-01-19
-3663529 Manacapuru Manacapuru Manakapuru,Манакапуру -3.29972 -60.62056 P PPL BR 04 52459 34 America/Manaus 2010-01-29
-3663693 Jutaí Jutai -5.18333 -68.9 P PPL BR 04 5862 92 America/Manaus 2006-01-17
-3664078 Humaitá Humaita Humayta,Humaytá -7.50611 -63.02083 P PPL BR 04 31206 55 America/Manaus 2006-12-13
-3664207 Fonte Boa Fonte Boa -2.51389 -66.09167 P PPLA2 BR 04 1301605 16060 60 America/Manaus 2012-01-28
-3664243 Feijó Feijo Vila Feijo,Vila Feijó,Villa Feijo -8.16417 -70.35361 P PPL BR 01 12951 160 America/Rio_Branco 2006-12-13
-3664301 Envira Envira Emvira,Envira -7.3 -70.21667 P PPL BR 04 9956 196 America/Manaus 2012-01-19
-3664321 Eirunepé Eirunepe Joao Pessoa,João Pessôa,Sao Felipe,Sao Felippe,Sao Filipe,Sao Phelippe,São Felipe,São Felippe,São Filipe,São Phelippe -6.66028 -69.87361 P PPL BR 04 17175 123 America/Manaus 2006-12-13
-3664525 Codajás Codajas Codajaz,Codajáz -3.83667 -62.05694 P PPL BR 04 11185 30 America/Manaus 2006-12-13
-3664539 Coari Coari Coari Amazonas,Coary,Koari,Quari,Quarí,Коари -4.085 -63.14139 P PPL BR 04 50490 42 America/Manaus 2010-01-29
-3664659 Carauari Carauari Carauary,Caravari,Xibaua,Xibauá -4.88278 -66.89583 P PPL BR 04 18059 65 America/Manaus 2006-12-13
-3664716 Canutama Canutama -6.53389 -64.38306 P PPL BR 04 6320 49 America/Manaus 2006-12-13
-3664956 Boca do Acre Boca do Acre Bocca do Acre,Foz do Acre,Santa Maria da Boca do Acre,Santa Maria da Bôca do Acre -8.75222 -67.39778 P PPL BR 04 14427 107 America/Manaus 2006-12-13
-3664980 Boa Vista Boa Vista Boa Vista,Boa Vista do Rio Branco,Boa Višta,Boa-Vista,Боа-Виста,בואה ויסטה 2.81972 -60.67333 P PPLA BR 25 235150 82 America/Boa_Vista 2007-02-17
-3665016 Benjamin Constant Benjamin Constant Benjamim Constant -4.38306 -70.03111 P PPL BR 04 13998 75 America/Manaus 2006-12-13
-3665098 Barcelos Barcelos Barcellos -0.97472 -62.92417 P PPL BR 04 7353 38 America/Manaus 2006-12-13
-3665199 Ariquemes Ariquemes Arikemes -9.91333 -63.04083 P PPL BR 24 58096 139 America/Porto_Velho 2006-12-13
-3665202 Aripuanã Aripuana Aripuana,Aripuanan,Aripuanã,Campina,Арипуанан -9.16667 -60.63333 P PPL BR 14 26983 144 America/Cuiaba 2012-01-19
-3665315 Anori Anori Annory,Anory -3.77278 -61.64417 P PPL BR 04 8064 28 America/Manaus 2006-12-13
-3665380 Alvarães Alvaraes Caicara,Caissara,Caiçara -3.22083 -64.80417 P PPL BR 04 5527 69 America/Manaus 2006-12-13
-3736808 Iranduba Iranduba Iranduba Grande -3.28472 -60.18611 P PPL BR 04 11180 29 America/Manaus 2006-12-13
-3924674 Xapuri Xapuri Xapury -10.65167 -68.50444 P PPL BR 01 5721 171 America/Rio_Branco 2006-12-13
-3924679 Vilhena Vilhena Vilena,Vilhena,Вилена -12.74056 -60.14583 P PPL BR 24 63231 591 America/Porto_Velho 2010-01-29
-3924752 Senador Guiomard Senador Guiomard -10.15222 -67.73917 P PPL BR 01 11727 208 America/Rio_Branco 2006-12-13
-3924872 Presidente Médici Presidente Medici Presidente,Presidente Hermes -11.17528 -61.90139 P PPL BR 24 11922 181 America/Porto_Velho 2006-12-13
-3924877 Pôsto Fiscal Rolim de Moura Posto Fiscal Rolim de Moura Posto Fiscal Rolim de Moura,Pôsto Fiscal Rolim de Moura,Rolim de Moura -13.08333 -62.26667 P PPL BR 24 37949 148 America/Porto_Velho 2012-01-19
-3924895 Plácido de Castro Placido de Castro Barraca Rapirran,Boca do Rapirra,Bocca do Rapirra -10.33528 -67.18556 P PPL BR 01 11945 136 America/Rio_Branco 2006-12-13
-3924908 Pimenta Bueno Pimenta Bueno -11.6725 -61.19361 P PPL BR 24 25762 183 America/Porto_Velho 2006-12-13
-3924948 Ouro Preto do Oeste Ouro Preto do Oeste Oru-Pretu-du-Uehsti,Ouro Preto do Oeste,Ouro Prêto do Oeste,Ору-Прету-ду-Уэсти -10.74806 -62.21583 P PPL BR 24 26683 214 America/Porto_Velho 2010-01-29
-3925040 Jaru Jaru Juru,Zhara,Жара -10.43889 -62.46639 P PPL BR 24 28015 159 America/Porto_Velho 2010-01-29
-3925075 Guajará Mirim Guajara Mirim Guayaramerim -10.78278 -65.33944 P PPL BR 24 34119 133 America/Porto_Velho 2012-03-20
-3925212 Cacoal Cacoal Cacual,Kakoal,Какоал -11.43861 -61.44722 P PPL BR 24 55560 197 America/Porto_Velho 2010-01-29
-3925227 Brasiléia Brasileia Brasilia,Brasília -11.01611 -68.74806 P PPL BR 01 11200 188 America/Rio_Branco 2006-12-13
-6316343 Alta Floresta Alta Floresta -9.87556 -56.08611 P PPLA2 BR 14 5100250 0 292 America/Cuiaba 2012-03-10
-6316406 Aparecida de Goiânia Aparecida de Goiania -16.82333 -49.24389 P PPL BR 29 510770 829 America/Sao_Paulo 2010-08-23
-6316729 Campinas Campinas -27.59444 -48.60694 P PPLL BR 26 20000 8 America/Sao_Paulo 2010-08-23
-6316741 Campo Limpo Paulista Campo Limpo Paulista -23.20639 -46.78444 P PPLA2 BR 27 3509601 0 743 America/Sao_Paulo 2012-03-10
-6317136 Fernando de Noronha (Distrito Estadual) Fernando de Noronha (Distrito Estadual) -3.84028 -32.41083 P PPL BR 30 3012 28 America/Noronha 2009-12-10
-6317344 Jaboatão dos Guararapes Jaboatao dos Guararapes -8.11278 -35.01472 P PPLA2 BR 30 2607901 630008 48 America/Recife 2012-03-10
-6317464 Lauro de Freitas Lauro de Freitas -12.89444 -38.32722 P PPL BR 05 141280 10 America/Bahia 2010-06-28
-6317953 Pinhais Pinhais -25.44472 -49.1925 P PPL BR 18 117000 887 America/Sao_Paulo 2010-08-23
-6318165 Rio Preto da Eva Rio Preto da Eva -2.69944 -59.69972 P PPL BR 04 24283 39 America/Manaus 2010-07-13
-6318694 Simões Filho Simoes Filho -12.78444 -38.40389 P PPL BR 05 116662 33 America/Bahia 2010-06-28
-6318864 Vargem Grande Paulista Vargem Grande Paulista -23.60333 -47.02639 P PPLA2 BR 27 3556453 0 879 America/Sao_Paulo 2012-03-10
-6693804 Cambebba Cambebba -3.62092 -38.82913 P PPLG BR 06 0 41 America/Fortaleza 2008-06-26
-7732959 Disney Disney -20.30285 -40.33433 P PPLF BR 234234 188 America/Sao_Paulo 2011-04-05
-7874475 Itacorubi Itacorubi -27.58315 -48.49503 P PPLL BR 26 12000 10 38 America/Sao_Paulo 2011-07-07
-7874476 Corrego Grande Corrego Grande -27.60141 -48.50593 P PPLL BR 26 5000 10 18 America/Sao_Paulo 2011-07-07
-7874477 Santa Monica Santa Monica -27.59137 -48.50756 P PPLL BR 26 5100 5 5 America/Sao_Paulo 2011-07-07
-7874478 Carvoeira Carvoeira -27.59898 -48.52618 P PPLL BR 3000 100 30 America/Sao_Paulo 2011-07-07
-7874479 Trindade Trindade -27.58612 -48.52335 P PPLL BR 15100 20 10 America/Sao_Paulo 2011-07-07
-7874480 Morro da Cruz Morro da Cruz -27.5849 -48.53562 P PPLL BR 5000 300 156 America/Sao_Paulo 2011-07-07
-7874481 Saco dos Limoes Saco dos Limoes -27.60864 -48.53605 P PPLL BR 14000 20 7 America/Sao_Paulo 2011-07-07
-7874482 Pantanal Pantanal -27.60985 -48.51648 P PPLL BR 26 4700 20 42 America/Sao_Paulo 2011-07-07
-7874483 Costeira do Pirajubae Costeira do Pirajubae -27.63586 -48.5212 P PPLL BR 26 9300 10 40 America/Sao_Paulo 2011-07-07
-7874484 Carianos Carianos -27.66088 -48.54318 P PPLL BR 3700 2 5 America/Sao_Paulo 2011-07-07
-7874485 Tapera Tapera -27.68528 -48.55124 P PPLL BR 1500 2 4 America/Sao_Paulo 2011-07-07
-7874492 Freguesia do Ribeirao da Ilha Freguesia do Ribeirao da Ilha -27.71773 -48.56266 P PPLL BR 21000 3 13 America/Sao_Paulo 2011-07-07
-3571224 West End West End West End,West End Settlement 26.68333 -78.96667 P PPL BS 54 12724 5 America/Nassau 2012-01-18
-3571592 Rock Sound Rock Sound New Portsmouth,New Portsmouth Settlement,Rock Sound 24.9 -76.2 P PPL BS 52 1396 15 America/Nassau 2012-01-18
-3571650 Port Nelson Port Nelson 23.63333 -74.83333 P PPLA BS 49 91 -9999 America/Nassau 2012-02-19
-3571824 Nassau Nassau City of Nassau,Nasau,Nassaou,Nassau,Nassau City,na sao,naso,nasso,Νασσάου,Нассау,נסאו,ናሶ,ナッソー,拿骚,나소 25.05823 -77.34306 P PPLC BS 23 227940 5 America/Nassau 2010-05-30
-3571913 Marsh Harbour Marsh Harbour Marsh Harbor 26.54124 -77.0636 P PPL BS 31 5314 4 America/Nassau 2011-03-21
-3571971 Lucaya Lucaya Lucaya 26.53333 -78.66667 P PPL BS 25 46525 7 America/Nassau 2012-01-18
-3572189 High Rock High Rock High Rock,High Rock Village,High Rocks 26.62083 -78.28333 P PPL BS 41 3744 -9999 America/Nassau 2012-01-18
-3572233 Hard Bargain Hard Bargain Hard Bargain,Hard Bargin 26.31667 -77.56667 P PPLA BS 45 0 7 America/Nassau 2012-02-12
-3572375 Freeport Freeport Freeport,Freeport City 26.53333 -78.7 P PPLA BS BS 25 26910 6 America/Nassau 2010-07-20
-3572462 Dunmore Town Dunmore Town Dunmore Town,Harbour Island 25.5 -76.65 P PPL BS 48 1523 -9999 America/Nassau 2012-01-18
-3572601 Cooper’s Town Cooper's Town 26.86667 -77.51667 P PPL BS 46 8413 -9999 America/Nassau 2011-11-05
-3572620 Colonel Hill Colonel Hill Colonel Hill 22.76667 -74.21667 P PPLA BS 40 240 8 America/Nassau 2012-02-19
-3572627 Cockburn Town Cockburn Town Cockburn Town,Riding Rocks 24.03333 -74.51667 P PPLA BS 35 831 3 America/Nassau 2012-02-19
-3572640 Clarence Town Clarence Town Clarence,Clarence Town 23.1 -74.98333 P PPLA BS 15 1752 20 America/Nassau 2012-02-19
-3572906 Andros Town Andros Town Andros Town,Fresh Creek 24.7 -77.76667 P PPL BS 47 2455 13 America/Nassau 2012-01-18
-1252395 Wangdue Phodrang Wangdue Phodrang Du Phodrang,Wangdiphodrang,Wangdu Phodrang,Wangdue Phodrang,Wangdü Phodrang 27.48615 89.89915 P PPLA BT 22 0 1273 Asia/Thimphu 2012-02-01
-1252408 Trongsa Trongsa Tongsa,Tongsa Dzong,Trongsa,Тонгса 27.5026 90.50716 P PPLA BT 21 2805 2108 Asia/Thimphu 2012-02-01
-1252416 Thimphu Thimphu Thimbu,Thimpago,Thimphou,Thimphu,Thimpu,Timbu,Timbuo,Timphu,Timpou (therine) Pounaka (cheimerine),Timpu,Tkhimpkhu,t'ympw,thimphu,timbu,timpu,ting bu,tinpu,tymfw,Τιμπού (θερινή) Πουνάκα (χειμερινή),Тхимпху,ת'ימפו,تيمفو,थिम्फू,திம்பு,ጢምጱ,ティンプー,廷布,팀부 27.46609 89.64191 P PPLC BT BT 20 98676 2320 2307 Asia/Thimphu 2010-05-30
-1252422 Trashi Yangtse Trashi Yangtse Tashi Tang-tsi Dzong,Tashi Yang-tsi Dzong,Tashi Yangtse,Tashi Yāng-tsi Dzong,Tashigang,Tashigangtsi,Trashi Yangtse 27.6116 91.498 P PPLA BT 24 3025 1788 Asia/Thimphu 2012-02-01
-1252423 Trashigang Trashigang Benkar,Tashi Gang Dzong,Tashigang,Trashigang 27.3331 91.55424 P PPLA BT 19 872 1174 Asia/Thimphu 2012-02-01
-1252433 Daga Daga Daga,Ta-Ga-Na,Taga Dzong 27.07529 89.87688 P PPLA BT 08 2243 1558 Asia/Thimphu 2012-02-01
-1252451 Shemgang Shemgang Shamgong Dzong,Shangong Dzong,Shemgang,Zhemgang,Шемганг 27.21689 90.65794 P PPLA BT 18 852 1900 Asia/Thimphu 2012-02-01
-1252460 Sarpang Sarpang Sarbhang,Sarbhāng,Sarpang 26.86395 90.26745 P PPLA BT 09 0 344 Asia/Thimphu 2012-02-01
-1252484 Phuntsholing Phuntsholing Phunchholing,Phuntsoling 26.85164 89.38837 P PPL BT 06 17043 330 Asia/Thimphu 2010-03-31
-1252490 Paro Paro Paro,Paro Dzong,Rimpung Dzong,paro-bhutana,Паро,पारो-भूटान 27.4305 89.41334 P PPLA BT 13 2169 2266 Asia/Thimphu 2012-02-01
-1252495 Pajo Pajo Pajo 27.53333 89.88333 P PPL BT 00 3032 1438 Asia/Thimphu 2012-01-17
-1252514 Mongar Mongar Mongar,Mongar Dzong,Монгар 27.27471 91.23963 P PPLA BT 12 2969 1648 Asia/Thimphu 2012-02-01
-1252526 Lhuentse Lhuentse Lenlung,Lhuentse,Lhuntshi,Lhuntsi Dzong,Lingshi Dzong 27.66787 91.18393 P PPLA BT 11 0 1403 Asia/Thimphu 2012-02-01
-1252563 Ha Ha Ha,Ha Dzong 27.38747 89.28074 P PPL BT 10 1449 2718 Asia/Thimphu 2012-01-15
-1252578 Gasa Gasa Gasa,Gasa Dzong 27.90372 89.72689 P PPLA BT 23 548 2761 Asia/Thimphu 2010-12-02
-1252608 Tsirang Tsirang Chirang,Tsirang 27.0219 90.12291 P PPLA BT 07 0 1410 Asia/Thimphu 2012-02-01
-1252610 Tsimasham Tsimasham Chhukha,Chhukha Dzong,Chukha,Chukkha,Tsimasham,Чукха 27.0989 89.53604 P PPLA BT 06 0 2245 Asia/Thimphu 2012-02-01
-1337301 Jakar Jakar Jakar,Jokhar Dzong 27.54918 90.7525 P PPLA BT 05 0 2587 Asia/Thimphu 2012-02-02
-1337356 Panbang Panbang Panbang 26.86667 90.98333 P PPL BT 18 1360 214 Asia/Thimphu 2012-01-19
-1337360 Samtse Samtse Samchi,Samtse 26.89903 89.09951 P PPLA BT 16 0 417 Asia/Thimphu 2012-02-02
-1337379 Pemagatshel Pemagatshel Pemagatsel,Pemagatshel 27.03795 91.40305 P PPLA BT 14 0 1207 Asia/Thimphu 2012-02-02
-1337388 Samdrup Jongkhar Samdrup Jongkhar Samdrup Jongkhar 26.80069 91.50519 P PPLA BT 17 0 173 Asia/Thimphu 2012-03-28
-932960 Werda Werda Werda -25.26667 23.28333 P PPL BW 00 2149 1034 Africa/Gaborone 2012-01-18
-932987 Tshabong Tshabong Tsabong,Tshabong -26.05 22.45 P PPLA BW BW 04 6591 976 Africa/Gaborone 2012-01-18
-932993 Tsau Tsau -20.15 22.45 P PPL BW 00 1409 945 Africa/Gaborone 2006-01-27
-933000 Tonota Tonota Tonota,Tonoto -21.48333 27.48333 P PPL BW 01 17759 970 Africa/Gaborone 2012-01-18
-933002 Tobane Tobane Tobane -21.95 27.9 P PPL BW 01 1925 844 Africa/Gaborone 2012-01-18
-933018 Thamaga Thamaga Thamaga -24.67014 25.53975 P PPL BW 06 20756 1073 Africa/Gaborone 2012-01-18
-933030 Tamasane Tamasane -22.4184 27.40127 P PPL BW 01 1070 946 Africa/Gaborone 2011-02-08
-933040 Sua Sua -20.05 26.2 P PPL BW 00 3141 929 Africa/Gaborone 2006-01-27
-933077 Shakawe Shakawe Shakawe -18.36667 21.85 P PPL BW 00 5651 1000 Africa/Gaborone 2012-01-18
-933088 Serowe Serowe Serova,Serowe,Серова -22.38333 26.71667 P PPLA BW 01 47419 1120 Africa/Gaborone 2012-01-18
-933099 Selebi-Phikwe Selebi-Phikwe Phikwe,Pikwe,Pikwe-Selibe,Selebi,Selebi-Phikwe,Selebi-Pikwe,Selibe,Selibe-Phikwe,Selibe-Pikwe Mine Lease Area -21.97903 27.84983 P PPL BW 01 53727 872 Africa/Gaborone 2011-03-04
-933102 Sekoma Sekoma -24.4 23.88333 P PPL BW 10 1083 1096 Africa/Gaborone 2011-07-10
-933109 Sehithwa Sehithwa Sehithwa,Sehithwe -20.46667 22.71667 P PPL BW 00 1614 931 Africa/Gaborone 2012-01-18
-933112 Sefophe Sefophe -22.18333 27.96667 P PPL BW 01 4114 848 Africa/Gaborone 2011-04-19
-933117 Sebina Sebina -20.86667 27.25 P PPL BW 00 3030 1071 Africa/Gaborone 2006-01-17
-933137 Ratholo Ratholo Ratholo,Ratolo -22.72454 27.57199 P PPL BW 01 2377 924 Africa/Gaborone 2012-01-18
-933141 Ramotswa Ramotswa Ramotswa,Ramoutsa -24.87158 25.86989 P PPL BW 09 21450 1039 Africa/Gaborone 2012-01-18
-933148 Ramokgonami Ramokgonami Ramakonami,Ramokgonami -22.8645 27.42391 P PPL BW 01 3681 915 Africa/Gaborone 2012-01-18
-933151 Rakops Rakops Bakops,Rakops,Tsienyane -21.01667 24.33333 P PPL BW 00 5222 928 Africa/Gaborone 2012-01-18
-933162 Pilikwe Pilikwe -22.79904 27.19376 P PPL BW 01 1375 981 Africa/Gaborone 2011-07-10
-933164 Pilane Pilane Pilane -24.45 26.13333 P PPL BW 00 1277 957 Africa/Gaborone 2012-02-02
-933178 Pandamatenga Pandamatenga -18.52779 25.62698 P PPL BW 00 1685 1072 Africa/Gaborone 2011-10-28
-933182 Palapye Palapye Palapaye Road,Palapye,Palapye Road,Palatswe -22.54605 27.12507 P PPL BW 01 30650 926 Africa/Gaborone 2012-01-18
-933184 Otse Otse Ootsi,Ootsi Siding,Otse -25.01667 25.73333 P PPL BW 09 6275 1361 Africa/Gaborone 2012-01-18
-933186 Orapa Orapa Orapa,Орапа -21.28333 25.36667 P PPL BW 00 9189 950 Africa/Gaborone 2012-01-18
-933211 Nokaneng Nokaneng Nokanen,Nokaneng,Nokaning -19.66667 22.26667 P PPL BW 00 1763 957 Africa/Gaborone 2012-01-18
-933238 Nata Nata -20.21667 26.18333 P PPL BW 00 4794 912 Africa/Gaborone 2006-01-17
-933271 Mosopa Mosopa Moshupa,Mosopa -24.7718 25.42156 P PPL BW 10 19561 1136 Africa/Gaborone 2012-01-18
-933277 Mosetse Mosetse -20.75 26.65 P PPL BW 00 1780 1034 Africa/Gaborone 2006-01-17
-933288 Mopipi Mopipi -21.18333 24.88333 P PPL BW 00 3301 906 Africa/Gaborone 2006-01-17
-933290 Mookane Mookane -23.68805 26.65948 P PPL BW 01 2397 957 Africa/Gaborone 2011-06-06
-933292 Maunatlala Maunatlala Maunatlala,Monnatlala -22.59701 27.63006 P PPL BW 01 3361 856 Africa/Gaborone 2012-01-18
-933305 Molepolole Molepolole Molepolole,Молепололе -24.40659 25.49508 P PPLA BW 06 63248 1146 Africa/Gaborone 2012-01-18
-933313 Makobeng Makobeng Makobeng,Mokobeng -22.99637 27.66766 P PPL BW 01 1822 841 Africa/Gaborone 2012-01-18
-933329 Moijabana Moijabana Moijabana,Moiyabana -22.43333 26.41667 P PPL BW 00 2768 1214 Africa/Gaborone 2012-01-18
-933331 Mogoditshane Mogoditshane Mogoditsane,Mogoditshane -24.62694 25.86556 P PPL BW 06 43394 1026 Africa/Gaborone 2012-01-18
-933332 Mogapinyana Mogapinyana -22.36667 27.6 P PPL BW 00 1515 915 Africa/Gaborone 2006-01-17
-933333 Mogapi Mogapi -22.32301 27.83492 P PPL BW 01 1917 921 Africa/Gaborone 2011-04-19
-933340 Mochudi Mochudi Mochudi,Mochudi Village,Мочуди -24.41667 26.15 P PPLA BW BW 05 36962 952 Africa/Gaborone 2012-01-18
-933347 Mmathubudukwane Mmathubudukwane Mathobudukwane,Mathubudukwane,Mmathubudkwane,Mmathubudukwane -24.6 26.43333 P PPL BW 00 2221 930 Africa/Gaborone 2012-01-18
-933366 Maun Maun Maun,Маун -19.98333 23.41667 P PPLA BW 11 49945 947 Africa/Gaborone 2012-01-18
-933377 Mathakola Mathakola Mathakola,Matlakola -22.72125 27.31057 P PPL BW 01 1159 959 Africa/Gaborone 2012-01-18
-933383 Mathathane Mathathane -22.26875 28.74946 P PPL BW 01 1987 676 Africa/Gaborone 2011-06-06
-933387 Mathambgwane Mathambgwane Matangwan,Matangwan Stad,Mathambgwane -20.99075 27.33158 P PPL BW 01 4675 1048 Africa/Gaborone 2012-01-18
-933390 Masunga Masunga Masunga,Masungas -20.62455 27.44875 P PPL BW 08 3639 1199 Africa/Gaborone 2012-01-18
-933416 Manyana Manyana Manyana,Manyane -23.4 21.71667 P PPL BW 00 3338 1191 Africa/Gaborone 2012-01-18
-933437 Makwata Makwata -23.28333 27.3 P PPL BW 01 1660 888 Africa/Gaborone 2011-06-06
-933446 Makoba Makoba -23.48333 27.11667 P PPL BW 00 1006 848 Africa/Gaborone 2006-01-27
-933456 Makaleng Makaleng -20.9 27.28333 P PPL BW 00 1166 1064 Africa/Gaborone 2006-01-17
-933471 Mahalapye Mahalapye Mahalapye,Mahalatswe -23.10407 26.81421 P PPL BW 01 44471 1025 Africa/Gaborone 2012-01-18
-933474 Magothla Magothla -23.56667 27 P PPL BW 00 1174 860 Africa/Gaborone 2006-01-27
-933488 Machaneng Machaneng Machaneng,Machenen -23.18621 27.48856 P PPL BW 01 2139 844 Africa/Gaborone 2012-01-18
-933491 Mabuli Mabuli -25.78333 24.6 P PPL BW 00 1665 1113 Africa/Gaborone 2006-01-27
-933498 Maapi Maapi -22.75785 27.35001 P PPL BW 01 1275 938 Africa/Gaborone 2011-06-06
-933510 Lokwabe Lokwabe -24.16667 21.83333 P PPL BW 00 1473 1120 Africa/Gaborone 2006-01-27
-933521 Lobatse Lobatse Lobace,Lobatse,Lobatsi,Лобаце -25.21667 25.66667 P PPL BW 00 30883 1349 Africa/Gaborone 2012-01-18
-933534 Letlhakeng Letlhakeng Letlaking,Letlhakeng -24.09442 25.02977 P PPL BW 00 6781 1075 Africa/Gaborone 2011-11-01
-933535 Letlhakane Letlhakane Lethakane,Letlhakane,Letlhakawe -21.41667 25.58333 P PPL BW 01 18136 990 Africa/Gaborone 2012-01-18
-933541 Lenchwe Le Tau Lenchwe Le Tau -24.38333 25.85 P PPL BW 00 4992 1107 Africa/Gaborone 2006-01-27
-933548 Lehututu Lehututu Lehututu -23.96667 21.86667 P PPL BW 00 1942 1133 Africa/Gaborone 2012-01-18
-933555 Letsheng Letsheng Lechen,Letsheng -22.66384 27.2239 P PPL BW 01 2696 977 Africa/Gaborone 2012-01-18
-933573 Kurametsi Kurametsi Kudumatsi,Kurametse,Kurametsi -23.4 27.06667 P PPL BW 00 1397 879 Africa/Gaborone 2012-01-18
-933596 Kopong Kopong Kopong,Kopong Villages -24.48333 25.88333 P PPL BW 09 6895 984 Africa/Gaborone 2012-01-18
-933633 Khudumelapye Khudumelapye Khudumelapye,Kudumalapshwe -23.88333 24.75 P PPL BW 00 2035 1100 Africa/Gaborone 2012-01-18
-933649 Khakhea Khakhea Kakia,Khakhea -24.68954 23.49403 P PPL BW 10 2133 1055 Africa/Gaborone 2012-01-18
-933677 Kasane Kasane Kasane -17.81667 25.15 P PPL BW 11 9250 994 Africa/Gaborone 2012-01-18
-933685 Kanye Kanye Kanye -24.96675 25.33274 P PPLA BW 10 44716 1406 Africa/Gaborone 2012-01-18
-933692 Kang Kang -23.67518 22.78762 P PPL BW 00 4229 1139 Africa/Gaborone 2011-11-01
-933696 Kalamare Kalamare -22.93369 26.57032 P PPL BW 01 2339 1182 Africa/Gaborone 2011-02-08
-933719 Janeng Janeng -25.41667 25.55 P PPL BW 00 16853 1311 Africa/Gaborone 2006-01-27
-933726 Hukuntsi Hukuntsi Hukuntsi -24 21.75 P PPL BW 00 4403 1129 Africa/Gaborone 2012-01-18
-933734 Gweta Gweta Gweta -20.18333 25.23333 P PPL BW 00 4689 929 Africa/Gaborone 2012-01-18
-933753 Gobojango Gobojango Gobojango,Gubujango,Kobajango,Kobojango -21.8327 28.72882 P PPL BW 01 1756 737 Africa/Gaborone 2012-01-18
-933759 Ghanzi Ghanzi Ghanzi,Khanzi -21.56667 21.78333 P PPLA BW BW 03 9934 1153 Africa/Gaborone 2012-01-18
-933773 Gaborone Gaborone Gaberones,Gaberones Village,Gaboronas,Gaborone,Gaborono,Nkamporone,gabolone,gabwrwn,gbrwn,haborone,jia bai long li,Γκαμπορόνε,Габороне,גאבורון,گابورون,گبرون,ጋበሮኔ,ጋቦሮን,ハボローネ,嘉柏隆里,가보로네 -24.65451 25.90859 P PPLC BW 09 208411 1011 Africa/Gaborone 2010-05-30
-933777 Gabane Gabane Gabane,Khabane -24.66667 25.78222 P PPL BW 06 12884 1090 Africa/Gaborone 2012-01-18
-933778 Francistown Francistown Francistown,Fransistaun,Франсистаун -21.16995 27.50788 P PPLA BW 08 89979 989 Africa/Gaborone 2012-01-18
-933787 Dutlwe Dutlwe Dutlwe,Luzwe -23.98333 23.9 P PPL BW 00 1126 1109 Africa/Gaborone 2012-01-18
-933790 Dukwe Dukwe Dukwe,Dukwe Quarantine Camp -20.58333 26.41667 P PPL BW 00 2037 961 Africa/Gaborone 2012-01-18
-933815 Dekar Dekar Dekar -21.53333 21.93333 P PPL BW 00 1043 1139 Africa/Gaborone 2012-01-18
-933862 Botlhapatlou Botlhapatlou Botlapatla,Botlhapatlou -24.02591 25.48976 P PPL BW 06 1013 1175 Africa/Gaborone 2012-01-18
-933881 Bokaa Bokaa Bokaa -24.45 26.01667 P PPL BW 00 4131 962 Africa/Gaborone 2012-02-02
-1106203 Gaphatshwe Gaphatshwe -24.57389 25.83417 P PPLL BW 06 1678 1010 Africa/Gaborone 2006-01-27
-1106206 Metsemotlhaba Metsemotlhaba -24.55139 25.80306 P PPL BW 06 5544 996 Africa/Gaborone 2006-01-27
-1106213 Mmopone Mmopone -24.56694 25.87417 P PPL BW 06 4927 1009 Africa/Gaborone 2006-01-27
-1106215 Nkoyaphiri Nkoyaphiri -24.63222 25.83139 P PPLL BW 06 1578 1053 Africa/Gaborone 2006-01-17
-611866 Skidal’ Skidal' Skidal',Skidal’,Skidel',Skidel’,Скидель,Скідаль 53.5904 24.2478 P PPL BY 03 10700 113 Europe/Minsk 2012-02-01
-618800 Zhodzina Zhodzina Schodsina,ZHODINO,Zhodino,Zhodzina,Zodino,Zodzina,Żodino,ЖОДИНО,Жодзiна,Жодзіна,Жодино 54.09658 28.3341 P PPL BY 05 61007 168 Europe/Minsk 2012-01-18
-618806 Zhlobin Zhlobin Korpilovka,Zhlobin,Zlobin,Жлобин,Жлобін 52.8926 30.024 P PPLA2 BY 02 73089 139 Europe/Minsk 2012-02-02
-618815 Zhytkavichy Zhytkavichy Jitkovichi,ZHITKOVICHI,Zhitkovichi,Zhytkavichy,Zhytkavychy,Zytkowicze,Żytkowicze,ЖИТКОВИЧИ,Жыткавычы 52.2168 27.8561 P PPLA2 BY 02 13630 137 Europe/Minsk 2012-01-18
-618818 Zhyrovichy Zhyrovichy Zhirovichi,Zhirovitsy,Zhyrovichy,Zhyrovitse,Zyrowice,Żyrowice,Жировичи,Жыровічы 53.0131 25.3443 P PPL BY 03 1800 149 Europe/Minsk 2012-01-18
-618883 Zhdanovichy Zhdanovichy Zhdanovicha,Zhdanovichi,Zhdanovichy,Ждановичи,Ждановічы 53.9432 27.425 P PPL BY 05 5000 216 Europe/Minsk 2012-03-23
-618913 Zhabinka Zhabinka Stara Sabinka,ZHABINKA,Zabinaa,Zabinka,Zhabinka,Żabinka,ЖАБИНКА,Жабінка 52.1984 24.0115 P PPLA2 BY 01 10921 140 Europe/Minsk 2012-01-18
-618927 Zembin Zembin Zembin,Зембин,Зембін 54.3583 28.21811 P PPL BY 00 1049 184 Europe/Minsk 2012-03-23
-619066 Zaslawye Zaslawye Zaslav,Zaslavl',Zaslavl’,Zaslawye,Заславль 54.01429 27.26953 P PPL BY 05 13500 222 Europe/Minsk 2012-01-18
-619217 Zamostochcha Zamostochcha Zamostoch'ye,Zamostochcha,Zamostoch’ye,Замосточча 53.8198 27.8685 P PPL BY 05 2500 190 Europe/Minsk 2012-03-25
-619598 Yel’sk Yel'sk El'sk,Elsk,Karolin,Yel'sk,Yel’sk,Ельск 51.8141 29.1522 P PPLA2 BY 02 0 142 Europe/Minsk 2012-01-18
-619616 Yelizovo Yelizovo Elizovo,Jalizava,Oktyabr',Oktyabr’,Yelizovo,Елизово,Ялізава 53.39811 29.00543 P PPL BY 00 2600 152 Europe/Minsk 2012-03-23
-619818 Vysokaye Vysokaye VYSOKOE,Vysokae,Vysokaye,Vysoke-Litevske,Vysoko-Litovsk,Vysokoye,Wysokie Litewski,Wysokie Litewskie,Wysokie Litowski,ВЫСОКОЕ,Высокае 52.37091 23.37083 P PPL BY 01 4496 151 Europe/Minsk 2012-01-18
-619979 Voranava Voranava Verenov,Voranava,Voronov,Voronovo,Voronuv,Werenow,Werenów,Воранава,Вороново 54.1483 25.31306 P PPL BY 03 6500 170 Europe/Minsk 2012-03-23
-620127 Vitsyebsk Vitsyebsk Vicebsk,Vicebska,Vicebszk,Viciebsk,Vitebsk,Vitebskas,Vitsebsk,Vitsyebsk,Witebsk,Wizebsk,bichebseukeu,vu~ichepusuku,wei jie bu si ke,wytbsq,Витебск,Вітебськ,Віцебск,ויטבסק,ヴィチェプスク,维捷布斯克,비쳅스크 55.19048 30.2033 P PPLA BY 07 342700 138 Europe/Minsk 2012-01-18
-620141 Vishovo Vishovo Khutora Vishovskiye,Vishovo 53.98261 29.97098 P PPL BY 00 1224 187 Europe/Minsk 2012-03-26
-620146 Vishnyeva Vishnyeva Vishnev,Vishneva,Vishnevo,Vishnyeva,Wiszniew,Вишнево,Вішнева 54.7102 26.5228 P PPL BY 03 7000 161 Europe/Minsk 2012-02-28
-620181 Vilyeyka Vilyeyka Vilejka,Vileyka,Vilyeyka,Wilejka,Вилейка 54.4896 26.90624 P PPL BY 05 30000 169 Europe/Minsk 2012-01-18
-620205 Veyno Veyno Veina,Vejno,Вейно 53.83333 30.38333 P PPLF BY BY 00 1717 173 Europe/Minsk 2012-03-26
-620214 Vyetka Vyetka VETKA,Vetka,Vyetka,ВЕТКА,Ветка 52.5591 31.1794 P PPLA2 BY 02 8969 125 Europe/Minsk 2012-01-18
-620255 Vyerkhnyadzvinsk Vyerkhnyadzvinsk Drissa,Dryassa,Verkhnedvinsk,Verkhnjadzvinsk,Vyerkhnyadzvinsk,Верхнедвинск,Верхнядзвінск 55.7777 27.9389 P PPLA2 BY 07 7700 126 Europe/Minsk 2012-02-28
-620391 Vawkavysk Vawkavysk VOLKOVYSK,Vaukavysk,Vawkavysk,Volkovysk,Wolkowysk,Wołkowysk,ВОЛКОВЫСК,Ваўкавыск 53.1561 24.4513 P PPL BY 03 47300 146 Europe/Minsk 2012-01-18
-620425 Vasilyevichy Vasilyevichy VASILEVICHI,Vasilevichi,Vasilevichy,Vasilyevichy,ВАСИЛЕВИЧИ,Васілевічы 52.2512 29.8288 P PPL BY 02 4749 137 Europe/Minsk 2012-01-18
-620445 Valozhyn Valozhyn VOLOZHIN,Valozhyn,Volozhin,Volozhy'n,Volozhy’n,Wolozyn,Wołożyn,ВОЛОЖИН 54.09093 26.52246 P PPL BY 05 9727 206 Europe/Minsk 2012-01-18
-620483 Uzda Uzda Uzda,Узда 53.4627 27.2137 P PPL BY 05 10000 177 Europe/Minsk 2012-03-22
-620558 Urechcha Urechcha Urech'e,Urech'ye,Urechcha,Urech’ye,Urehchcha,Uretschje,Уречье,Урэчча 52.9479 27.893 P PPL BY 05 3300 146 Europe/Minsk 2012-03-23
-620676 Turaw Turaw Turau,Turaw,Turov,Turow,Тураў,Туров 52.0683 27.735 P PPL BY 02 3100 125 Europe/Minsk 2012-01-18
-620833 Talachyn Talachyn Talachyn,Tolochin,Tolochino 54.40968 29.69171 P PPL BY 07 11381 198 Europe/Minsk 2012-01-18
-620869 Tsimkavichy Tsimkavichy Cimkavichy,Timkovichi,Tsimkavichy,Тимковичи,Цімкавічы 53.0672 26.9902 P PPL BY 05 1299 171 Europe/Minsk 2012-03-23
-621058 Svir Svir Svir,Svir',Swir,Świr,Свирь,Свір 54.8517 26.395 P PPL BY 05 1300 154 Europe/Minsk 2012-02-28
-621074 Svyetlahorsk Svyetlahorsk SVETLOGORSK,Shatilki,Shatsilki,Svetlagorsk,Svetlogorsk,Svyetlahorsk,СВЕТЛОГОРСК,Светлагорск 52.6329 29.7389 P PPLA2 BY 02 71250 142 Europe/Minsk 2012-01-18
-621266 Stowbtsy Stowbtsy Stolbcy,Stolbtsy,Stolpce,Stolptse,Stolptsy,Stolpze,Stoubcy,Stowbtsy,Stołpce,Столбцы,Стоўбцы 53.4785 26.7434 P PPL BY 05 15500 164 Europe/Minsk 2012-01-18
-621277 Stolin Stolin Stolin,Столин,Столін 51.89115 26.84597 P PPL BY 01 10491 139 Europe/Minsk 2012-01-18
-621396 Staryya Darohi Staryya Darohi STARYE DOROGI,Starye Dorogi,Staryja Darogi,Staryya Darohi,Staryye Dorogi,СТАРЫЕ ДОРОГИ,Старыя Дарогі 53.0402 28.267 P PPLA2 BY 05 10094 160 Europe/Minsk 2012-01-18
-621462 Starobin Starobin Starobin,Starobino,Старобин,Старобін 52.7267 27.4606 P PPL BY 05 6000 146 Europe/Minsk 2012-01-18
-621543 Stan’kava Stan'kava Stan'kava,Stan'kovo,Stan’kava,Stan’kovo,Станькава,Станьково 53.6292 27.229 P PPL BY 05 1850 186 Europe/Minsk 2012-03-25
-621605 Sasnovy Bor Sasnovy Bor SOSNOVYJ BOR,Sasnovy Bor,Sasnovyj Bor,Sosnovyy Bor,СОСНОВЫЙ БОР,Сасновый Бор 52.5194 29.5988 P PPL BY 02 2500 136 Europe/Minsk 2012-03-26
-621641 Soly Soly Soly,Солы 54.51301 26.19381 P PPL BY 00 1840 150 Europe/Minsk 2011-02-22
-621700 Snow Snow Snou,Snov,Snow,Snuv,Снов,Сноў 53.2201 26.401 P PPL BY 05 2600 187 Europe/Minsk 2012-03-23
-621713 Smarhon’ Smarhon' Smarhon',Smarhon’,Smorgon',Smorgone,Smorgonie,Smorgon’,Сморгонь 54.47906 26.3934 P PPL BY 03 36900 153 Europe/Minsk 2012-01-18
-621729 Smalyavichy Smalyavichy SMOLEVICHI,Smalyavichy,Smolevichi,Smolewitsch,СМОЛЕВИЧИ 54.02261 28.08865 P PPL BY 05 12516 176 Europe/Minsk 2012-01-18
-621732 Smilavichy Smilavichy Smilavichy,Smilovichi,Смиловичи,Смілавічы 53.7496 28.0115 P PPL BY 05 5200 180 Europe/Minsk 2012-01-18
-621741 Slutsk Slutsk SLUCK,Slucak,Sluck,Sluckas,Slutsk,Sluzk,Słuck,slwzq,СЛУЦК,Слуцак,Слуцк,סלוצק 53.0274 27.5597 P PPLA2 BY 05 62228 150 Europe/Minsk 2012-01-18
-621754 Slonim Slonim SLONIM,Slonim,Slonimas,Słonim,seullonim,suronimu,СЛОНИМ,Слоним,Слонім,スロニム,슬로님 53.0869 25.3163 P PPLA2 BY 03 51434 149 Europe/Minsk 2012-01-18
-621817 Sloboda Sloboda Sloboda,Слобода 54.00803 27.87946 P PPL BY 00 1819 216 Europe/Minsk 2012-03-26
-621838 Slawharad Slawharad Propoisk,Propoysk,SLAVGOROD,Slavgorod,Slawharad,СЛАВГОРОД 53.4446 31.00136 P PPL BY 06 8300 158 Europe/Minsk 2012-03-24
-622034 Shklow Shklow Shklov,Shklow,Шклов 54.20817 30.29142 P PPL BY 06 13485 156 Europe/Minsk 2012-03-22
-622113 Shchuchin Shchuchin Shchuchin,Shchuchyn,Shhuchin,Szczuczyn,Шчучын,Щучин 53.6014 24.7465 P PPLA2 BY 03 15700 176 Europe/Minsk 2011-12-16
-622179 Sharkawshchyna Sharkawshchyna Sharkaushchyna,Sharkawshchyna,Sharkovshchina,Sharkovshchizna,Sharkovshchyzna,Sharkovshhina,Sharkowshchyna,Szarkowszczyzna,Шаркаўшчына,Шарковщина 55.3689 27.4686 P PPLA2 BY 07 7500 136 Europe/Minsk 2012-02-28
-622258 Syanno Syanno SENNO,Senno,Syanno,Syenno,СЕННО 54.81055 29.70694 P PPL BY 07 9987 167 Europe/Minsk 2012-01-18
-622274 Syenitsa Syenitsa Senica,Senitsa,Sennica,Syenitsa,Сенница,Сеніца 53.8313 27.5343 P PPL BY 05 5000 209 Europe/Minsk 2012-03-23
-622420 Samakhvalavichy Samakhvalavichy Poselok Samokhvalovichi,Posëlok Samokhvalovichi,Samakhvalavichy,Samokhvalovichi,Самахвалавічы,Самохваловичи 53.7396 27.5037 P PPL BY 05 2500 207 Europe/Minsk 2012-03-23
-622428 Salihorsk Salihorsk Chizhevichi,SOLIGORSK,Saligorsk,Salihorsk,Salyhorsk,Soligorsk,Soligorskas,СОЛИГОРСК,Салігорск,Солигорск 52.7876 27.5415 P PPLA2 BY 05 101614 157 Europe/Minsk 2012-01-18
-622614 Rudzyensk Rudzyensk Rudensk,Rudzensk,Rudzyensk,Руденск,Рудзенск 53.5983 27.8621 P PPL BY 05 2900 176 Europe/Minsk 2012-03-23
-622690 Rasony Rasony ROSSONY,Rasony,Rossono,Rossony,РОССОНЫ,Расоны 55.9058 28.8135 P PPLA2 BY 07 0 137 Europe/Minsk 2012-02-28
-622700 Ros’ Ros' Ros',Ross',Ross’,Ros’,Россь,Рось 53.2858 24.4128 P PPL BY 03 6200 124 Europe/Minsk 2012-01-18
-622739 Rahachow Rahachow Ragachou,Rahachow,Rogachev,Rogachëv,Rogatschew,Рагачоў,Рогачев 53.0934 30.0495 P PPLA2 BY 02 34700 143 Europe/Minsk 2012-02-02
-622794 Rechytsa Rechytsa Rechica,Rechitsa,Rechysta,Rechytsa,Rehchyca,Ryechitsa,Речица,Рэчыца 52.3617 30.3916 P PPLA2 BY 02 65400 128 Europe/Minsk 2012-02-02
-622849 Rakaw Rakaw Rakau,Rakaw,Rakov,Rakow,Rakuv,Raków,Ракаў,Раков 53.9674 27.0562 P PPL BY 05 6300 212 Europe/Minsk 2012-01-18
-622877 Radoshkovichi Radoshkovichi Radashkovichy,Radoshkoviche,Radoshkovichi,Radoshkovichy,Radoszkowice,Radoszkowicze,Rodoszkowice,Радашковічы,Радошковичи 54.15514 27.24242 P PPL BY 00 5700 197 Europe/Minsk 2012-03-22
-622971 Pukhavichy Pukhavichy Puchowitschi,Pukhavichy,Pukhovichi,Пухавічы,Пуховичи 53.5297 28.2467 P PPL BY 05 2800 160 Europe/Minsk 2012-03-23
-622997 Pruzhany Pruzhany PRUZHANY,Pruzana,Pruzhana,Pruzhany,ПРУЖАНЫ,Пружаны 52.556 24.4573 P PPLA2 BY 01 19135 161 Europe/Minsk 2012-01-18
-623129 Prawdzinski Prawdzinski Praudzinski,Pravdinskij,Pravdinskiy,Prawdzinski,Правдинский,Праўдзінскі 53.5248 27.8303 P PPL BY 05 2900 177 Europe/Minsk 2012-03-23
-623317 Polatsk Polatsk POLOCK,Podolsk,Polacak,Polack,Polatsk,Polazk,Poloc'k,Polock,Polockas,Polotsk,Polozk,Potolsk,Połock,ПОЛОЦК,Полацак,Полацк,Полоцк,Полоцьк 55.4879 28.7856 P PPLA2 BY 07 82258 126 Europe/Minsk 2012-02-28
-623512 Pleshchenitsy Pleshchenitsy Pleshchanitsy,Pleshchenitsa,Pleshchenitsy,Pleshhenicy,Плещеницы 54.42218 27.83314 P PPL BY 00 7800 211 Europe/Minsk 2012-01-18
-623549 Pinsk Pinsk PINSK,Pinsk,Pinskas,Pińsk,pinseukeu,pinsuku,pynsq,ПИНСК,Пинск,Пінск,Пінськ,פינסק,ピンスク,핀스크 52.1229 26.0951 P PPLA2 BY 01 130777 139 Europe/Minsk 2012-01-18
-623577 Petrishki Petrishki Petrishki,Pietryszki 54.06824 27.21865 P PPL BY 00 1946 241 Europe/Minsk 2012-03-26
-623581 Pyetrykaw Pyetrykaw PETRIKOV,Petrikov,Petrikovo,Petrykau,Pyetrykaw,ПЕТРИКОВ,Петрыкаў 52.1289 28.4921 P PPLA2 BY 02 10552 137 Europe/Minsk 2012-01-18
-623760 Pastavy Pastavy POSTAVY,Pastavy,Postavy,Postawy,ПОСТАВЫ 55.11676 26.83263 P PPL BY 07 20218 140 Europe/Minsk 2010-08-09
-623788 Parychy Parychy Parichi,Partchi,Parychy,Паричи,Парычы 52.8042 29.4176 P PPL BY 02 2300 135 Europe/Minsk 2012-03-26
-623855 Azyartso Azyartso Azjarco,Azyartso,Ozerco,Ozertso,Азярцо,Озерцо 53.8397 27.3917 P PPL BY 05 1247 249 Europe/Minsk 2012-03-26
-623902 Osveya Osveya Osveja,Osveya,Освея 56.0147 28.11049 P PPL BY 00 1300 140 Europe/Minsk 2011-02-22
-623941 Astravyets Astravyets Astravyets,Ostrov,Ostrovec,Ostrovets,Ostrowiec,Островец 54.61378 25.95537 P PPL BY BY 03 8300 161 Europe/Minsk 2011-02-22
-623956 Ostroshitskiy Gorodok Ostroshitskiy Gorodok Astrashycki Garadok,Gorodok,Ostroshickij Gorodok,Ostroshitski Gorodok,Ostroshitskiy Gorodok,Астрашыцкі Гарадок,Острошицкий Городок 54.06327 27.69657 P PPL BY 00 2390 222 Europe/Minsk 2012-03-23
-624034 Asipovichy Asipovichy Asipopovichy,Asipovichy,OSIPOVICHI,Osipovichi,Ospipovichi,Ossipowitschi,Sipovichi,Асіпоповічы,ОСИПОВИЧИ 53.3011 28.6386 P PPLA2 BY 06 34591 157 Europe/Minsk 2012-01-18
-624079 Orsha Orsha ORSHA,Orsa,Orscha,Orsha,Orsza,Orŝa,Orša,Vorsja,ao er sha,boleusya,vu~orusha,ОРША,Орша,ヴォルシャ,奥尔沙,보르샤 54.5116 30.42658 P PPL BY 07 125347 167 Europe/Minsk 2012-01-18
-624199 Aktsyabrski Aktsyabrski Akcjabrski,Aktsyabrski,Karpilovka,OKTJABR'SKIJ,Oktyabr'skiy,Oktyabr’skiy,Акцябрскі,ОКТЯБРЬСКИЙ 52.644 28.8801 P PPLA2 BY 02 0 132 Europe/Minsk 2012-01-18
-624297 Novy Svyerzhan’ Novy Svyerzhan' Novy S'verzhen',Novy Sverzhan',Novy Svyerzhan',Novy Svyerzhan’,Novy S’verzhen’,Novyy Sverzhen',Novyy Sverzhen’,Swierzen Nowy,Świerżeń Nowy,Новы Свержань 53.4542 26.7301 P PPL BY 05 2200 148 Europe/Minsk 2012-03-23
-624318 Kadino Kadino Novo-Lyubuzh,Novyy Lyubuzh 53.88389 30.52028 P PPL BY 06 1753 179 Europe/Minsk 2012-03-27
-624400 Novoye Medvezhino Novoye Medvezhino Medvezhino,Novoye Medvezhino 53.88333 27.45 P PPL BY 00 120000 242 Europe/Minsk 2012-03-23
-624418 Navasyellye Navasyellye Navaselle,Navasyellye,Novosel'ye,Novosel’ye,Наваселле 53.9162 27.2009 P PPL BY 05 1269 303 Europe/Minsk 2012-03-27
-624494 Novolukoml’ Novolukoml' Novolukoml',Новолукомль 54.66192 29.15016 P PPL BY 00 13800 175 Europe/Minsk 2011-02-22
-624612 Nosilovo Nosilovo Nasilovo,Nasilowo,Nasiłowo,Nosilovo 54.31026 26.80067 P PPL BY 00 1259 173 Europe/Minsk 2012-03-26
-624700 Nyasvizh Nyasvizh NESVIZH,Nes'vezh,Nesvizh,Nesvyzius,Nesvyžius,Nes’vezh,Niasvizh,Nieswiez,Nieśwież,Njasviz,Njasvizh,Njasviž,Njaswisch,Nyasvizh,Nyaszvizs,НЕСВИЖ,Несвиж,Нясвіж,Нясьвіж 53.2189 26.6779 P PPLA2 BY 05 12847 182 Europe/Minsk 2012-01-18
-624784 Navapolatsk Navapolatsk Navapolack,Navapolatsk,Navapólatsk,Nawapolazk,Novopolock,Novopolockas,Novopolotsk,Nowopolock,Nowopołock,Polotskiy,Наваполацк,Новополоцк 55.5318 28.5987 P PPL BY 07 100885 135 Europe/Minsk 2012-02-28
-624785 Navahrudak Navahrudak NOVOGRUDOK,Naugardukas,Navagradak,Navagrudak,Navahradak,Navahrudak,Nawahradak,Novogroudok,Novogrudek,Novogrudok,Nowogrodek,Nowogródek,nbhrdq,xin ge lu duo ke,НОВОГРУДОК,Наваградак,Навагрудак,Новогрудок,נבהרדק,新格鲁多克 53.5942 25.8191 P PPL BY 03 30748 309 Europe/Minsk 2012-01-18
-624799 Narowlya Narowlya Naroulja,Narovlya,Narowlya,Нароўля 51.7961 29.5004 P PPLA2 BY 02 0 114 Europe/Minsk 2012-01-18
-624804 Narach Narach Narach,Naroch',Naroch’,Нарач,Нарочь 54.9102 26.708 P PPL BY 05 3400 189 Europe/Minsk 2012-03-23
-624805 Naroch’ Naroch' Naroch',Naroch’,Narocz,Нарочь 54.56225 26.73247 P PPL BY 00 3400 153 Europe/Minsk 2012-01-18
-624842 Myshkavichy Myshkavichy Khutora Mishkovskiye,Mishkovskiye,Myshkavichy,Myshkovichi,Мышкавічы,Мышковичи 53.2172 29.512 P PPL BY 06 2000 157 Europe/Minsk 2012-03-23
-624861 Myadzyel Myadzyel Mjadel',Mjadzel,Myadel',Myadel’,Myadzyel,Мядель,Мядзел 54.8789 26.9371 P PPLA2 BY 05 10000 170 Europe/Minsk 2012-02-28
-624889 Mstsislaw Mstsislaw Mstislavl',Mstislavl’,Mstsislaw,Мстиславль 54.01923 31.72565 P PPL BY 06 11500 206 Europe/Minsk 2012-01-18
-624965 Mosar Mosar Mosar,Mosar',Mosary,Mosarz,Mosazh,Мосар 55.2232 27.4609 P PPL BY 07 1500 145 Europe/Minsk 2012-02-28
-625128 Mir Mir Mir,Мир,Мір 53.4544 26.467 P PPL BY 03 2500 170 Europe/Minsk 2012-01-18
-625130 Myory Myory MIORY,Mery,Miory,Miyory,Mjory,Myory,МИОРЫ,Мёры 55.6222 27.6281 P PPLA2 BY 07 10649 152 Europe/Minsk 2012-02-28
-625144 Minsk Minsk Mensk,Minsc,Minscum,Minsk,Minsk - Minsk,Minsk - Мінск,Minska,Minskas,Minsko,Minszk,Mińsk,Myensk,Myenyesk,ming si ke,ming si ke shi,minseukeu,minsuku,mynsk,mynsq,Μινσκ,Менск,Минск,Мінськ,מינסק,مينسك,مینسک,მინსკი,ミンスク,明斯克,明斯克市,민스크 53.9 27.56667 P PPLC BY 05 1742124 222 Europe/Minsk 2012-01-18
-625245 Mezhisyatki Mezhisyatki Mezhisjatki,Mezhisyatki,Межисятки 53.776 30.17664 P PPL BY 06 1807 170 Europe/Minsk 2012-03-26
-625324 Mazyr Mazyr MOZYR',Masyr,Mazir,Mazyr,Mozir,Mozyr,Mozyr',Mozyr’,МОЗЫРЬ,Мазыр,Мозир,Мозырь 52.0495 29.2456 P PPLA2 BY 02 112137 152 Europe/Minsk 2012-01-18
-625367 Masty Masty MOSTY,Masty,Mosty,МОСТЫ,Масты 53.4122 24.5387 P PPLA2 BY 03 16102 118 Europe/Minsk 2011-12-16
-625409 Mar’’ina Horka Mar''ina Horka Mar''ina Horka,Mar'ina Gorka,Maryina Gorka,Mar’ina Gorka,Mar’’ina Horka,Марьина Горка,Мар’іна Горка 53.509 28.147 P PPL BY 05 20100 178 Europe/Minsk 2012-01-18
-625539 Malaryta Malaryta Malaryta,Malorita,Maloryta,Маларыта 51.7905 24.074 P PPLA2 BY 01 9692 157 Europe/Minsk 2012-01-18
-625625 Maladzyechna Maladzyechna Maladzyechna,Molodechno,Molodeczno,Молодечно 54.32052 26.86436 P PPL BY 05 101300 158 Europe/Minsk 2012-01-18
-625665 Mahilyow Mahilyow Magileu,Magileva,Magiļeva,Maguilov,Mahiliou,Mahilioŭ,Mahiljou,Mahiljov,Mahiljow,Mahiljoŭ,Mahilou,Mahiloŭ,Mahilyow,Mogil'ov,Mogilev,Mogilew,Mogiliavas,Mogiliovas,Mogiljov,Moguilev,Mohylew,Магілёў,Могилев,Могильов,Могилёв,Могиљев 53.9141 30.33764 P PPLA BY 06 369200 178 Europe/Minsk 2012-01-18
-625671 Machulishchy Machulishchy Machulische,Machulishche,Machulishchi,Machulishchy,Machulishhi,Mochulischi,Мачулищи,Мачулішчы 53.7788 27.5948 P PPL BY 05 8000 215 Europe/Minsk 2012-03-22
-625712 Lyubcha Lyubcha Ljubcha,Lubcz,Lyubch,Lyubcha,Любча 53.7522 26.0603 P PPL BY 03 1300 139 Europe/Minsk 2012-03-24
-625721 Lyuban’ Lyuban' LJUBAN',Ljuban',Luban,Lyuban',Lyuban’,ЛЮБАНЬ,Любань 52.7985 28.0048 P PPLA2 BY 05 10107 138 Europe/Minsk 2012-01-18
-625737 Lyntupy Lyntupy Lentupis,Lintupis,Lyntupy,Лынтупы 55.0516 26.3103 P PPL BY 07 1600 221 Europe/Minsk 2012-02-28
-625743 Lyepyel’ Lyepyel' Lepel',Lepel’,Lyepyel',Lyepyel’,Лепель 54.8814 28.699 P PPL BY 07 17400 169 Europe/Minsk 2012-02-28
-625772 Lyakhavichy Lyakhavichy Lachowicze,Ljakhavichy,Ljakhovichi,Lyakhavichy,Lyakhoviche,Lyakhovichi,Ляхавічы,Ляховичи 53.0388 26.2656 P PPLA2 BY 01 11500 181 Europe/Minsk 2012-03-22
-625818 Luninyets Luninyets Luninec,Luninets,Luniniec,Luniniez,Luninyets,Łuniniec,Лунинец,Лунінец 52.2472 26.8047 P PPLA2 BY 01 25000 139 Europe/Minsk 2012-01-18
-625853 Luhavaya Slabada Luhavaya Slabada Lugavaja Slabada,Lugovaya Sloboda,Lugovskaya Sloboda,Luhavaya Slabada,Лугавая Слабада 53.7823 27.8434 P PPL BY 05 1306 181 Europe/Minsk 2012-03-26
-625907 Loyew Loyew LOEV,Loeu,Lojew,Loyev,Loyew,ЛОЕВ,Лоеў 51.9458 30.7953 P PPLA2 BY 02 0 132 Europe/Minsk 2012-01-18
-625931 Loshnitsa Loshnitsa Loshnica,Loshnitsa,Лошница,Лошніца 54.27894 28.76388 P PPL BY 00 6524 176 Europe/Minsk 2012-03-23
-625972 Lahoysk Lahoysk Lahoysk,Logojsk,Logoysk,Логойск 54.20158 27.85025 P PPL BY 05 10321 197 Europe/Minsk 2012-01-18
-626081 Lida Lida LIDA,Lida,Lieda,Lyda,ЛИДА,Лида,Ліда 53.88333 25.29972 P PPL BY 03 98036 144 Europe/Minsk 2012-01-18
-626188 Lyel’chytsy Lyel'chytsy Lel'chitsy,Lel'chycy,Lel’chitsy,Lyel'chytsy,Lyel’chytsy,Лельчыцы 51.7862 28.3288 P PPLA2 BY 02 0 139 Europe/Minsk 2012-01-18
-626450 Krychaw Krychaw KRICHEV,Krichev,Krichëv,Krychaw,Krytchev,КРИЧЕВ 53.69448 31.70994 P PPL BY 06 27681 166 Europe/Minsk 2012-01-18
-626471 Krupki Krupki Krupka,Krupki,Крупки 54.3178 29.13584 P PPL BY 05 7900 170 Europe/Minsk 2012-03-22
-626491 Kruhlaye Kruhlaye Kruglae,Krugloe,Krugloye,Kruhlaye,Круглае,Круглое 54.24657 29.7957 P PPL BY 06 7300 192 Europe/Minsk 2012-03-22
-626523 Kryvichy Kryvichy Krivichi,Kryvichy,Krzywicze,Kshyviche,Кривичи,Крывічы 54.7132 27.2886 P PPL BY 05 1298 169 Europe/Minsk 2012-03-23
-626548 Krevo Krevo Krevo,Krewo,Крево 54.31114 26.28999 P PPL BY 00 3100 225 Europe/Minsk 2012-01-18
-626610 Krasnoye Krasnoye Kasnoye,Krasnae,Krasne,Krasnoe,Krasnoye,Краснае,Красное 54.24269 27.07618 P PPL BY 00 3200 185 Europe/Minsk 2012-03-23
-626621 Krasnasyel’ski Krasnasyel'ski Krasnasel'ski,Krasnasyel'ski,Krasnasyel’ski,Krasne Selo,Krasnosel'skij,Krasnosel'skiy,Krasnosel’skiy,Krasnoye Selo,Краснасельскі,Красносельский 53.2645 24.4301 P PPL BY 03 7300 125 Europe/Minsk 2012-01-18
-626625 Krasnapollye Krasnapollye Krasnapollye,Krasnopol'e,Krasnopol'ye,Krasnopole,Krasnopol’ye,Краснополье 53.33367 31.40141 P PPL BY 06 6100 168 Europe/Minsk 2012-03-24
-626660 Chyrvonaya Slabada Chyrvonaya Slabada Chyrvonaja Slabada,Chyrvonaya Slabada,Krasnaja Sloboda,Krasnaya Sloboda,Красная Слобода,Чырвоная Слабада 52.8522 27.1698 P PPL BY 05 4700 157 Europe/Minsk 2012-03-23
-626806 Kastsyukowka Kastsyukowka KOSTJUKOVKA,Kascjukouka,Kastsyukowka,Kostjubowka,Kostyukovka,КОСТЮКОВКА,Касцюкоўка 52.5387 30.9173 P PPL BY 02 10552 138 Europe/Minsk 2012-02-02
-626808 Kastsyukovichy Kastsyukovichy KOSTJUKOVICHI,Kastsyukovichy,Kommunary,Kostokovya,Kostyukovichi,КОСТЮКОВИЧИ 53.35161 32.05059 P PPL BY 06 11946 173 Europe/Minsk 2012-01-18
-626829 Kosava Kosava KOSSOVO,Kosava,Kosov,Kosow,Kossov,Kossovo,Kossow,Kossuv,Kosów,КОССОВО,Косава 52.7583 25.1554 P PPL BY 01 2698 164 Europe/Minsk 2012-01-18
-626895 Korolëv Stan Korolev Stan Korolev Stan,Koroljov Stan,Korolëv Stan,Королёв Стан 53.9865 27.7982 P PPL BY 05 1033 210 Europe/Minsk 2012-03-26
-626917 Karma Karma KORMA,Karma,Korma,КОРМА,Карма 53.1301 30.8016 P PPLA2 BY 02 0 155 Europe/Minsk 2012-02-02
-626939 Karelichy Karelichy KORELICHI,Karehlichy,Karelichy,Korelichi,Korelicze,КОРЕЛИЧИ,Карэлічы 53.5648 26.1406 P PPL BY 03 7800 149 Europe/Minsk 2012-01-18
-626956 Kapyl’ Kapyl' KOPYL',Kapyl',Kapyl’,Kopil,Kopyl',Kopyl’,КОПЫЛЬ,Капыль 53.1516 27.0913 P PPLA2 BY 05 0 220 Europe/Minsk 2012-01-18
-626992 Konstantinovo Konstantinovo Konstantinovo,Константиново 54.66279 29.26985 P PPL BY 00 3800 177 Europe/Minsk 2012-01-18
-627083 Kalodzishchy Kalodzishchy Kalodzishchy,Kolodishchi,Kolodishhi,Калодзішчы,Колодищи 53.944 27.7823 P PPL BY 05 17000 242 Europe/Minsk 2012-03-22
-627123 Kokhanovo Kokhanovo KOKHANOVO,Kokhanovo,КОХАНОВО 54.46168 30.00081 P PPL BY 00 4300 211 Europe/Minsk 2012-03-26
-627145 Kobryn Kobryn KOBRIN,Kobrin,Kobryn,КОБРИН,Кобрын 52.2138 24.3564 P PPLA2 BY 01 50691 140 Europe/Minsk 2012-01-18
-627202 Klimavichy Klimavichy KLIMOVICHI,Klimavichy,Klimovichi,Klimowitschi,КЛИМОВИЧИ 53.61346 31.93853 P PPL BY 06 14951 174 Europe/Minsk 2012-01-18
-627205 Klichaw Klichaw Klichau,Klichaw,Klichev,Кличев,Клічаў 53.49282 29.33524 P PPL BY 06 7200 154 Europe/Minsk 2012-03-23
-627214 Klyetsk Klyetsk KLECK,Kleck,Kletsk,Klyetsk,КЛЕЦК,Клецк 53.0635 26.6321 P PPLA2 BY 05 9641 181 Europe/Minsk 2012-01-18
-627272 Kirawsk Kirawsk Kirausk,Kirawsk,Kirovsk,Startsy,Кировск,Кіраўск 53.2693 29.4752 P PPLA2 BY 06 8700 162 Europe/Minsk 2012-03-23
-627362 Khoyniki Khoyniki Choiniki,Khojniki,Khoyniki,Khoynki,Хойники,Хойнікі 51.8911 29.9552 P PPLA2 BY 02 13200 128 Europe/Minsk 2012-01-18
-627424 Kholopenichi Kholopenichi Khalapenichy,Kholopenichi,Халапенічы,Холопеничи 54.516 28.95679 P PPL BY 00 1600 186 Europe/Minsk 2012-03-23
-627711 Kamyanyets Kamyanyets Kamenec,Kamenets,Kamenets-Litevske,Kamenets-Litevski,Kamenets-Litovsk,Kamenets-Litovskiy,Kamieniec Litewski,Kamjanec,Kamyanyets,Kmenets-Litovskiy,Каменец,Камянец 52.40014 23.81 P PPL BY 01 8700 141 Europe/Minsk 2012-01-18
-627751 Kalinkavichy Kalinkavichy KALINKOVICHI,Kalinkavichy,Kalinkovichi,Kalinkowitschi,КАЛИНКОВИЧИ,Калинкавичы 52.1323 29.3257 P PPLA2 BY 02 37190 122 Europe/Minsk 2012-01-18
-627793 Iwye Iwye Iue,Iv'e,Iv'ye,Iv’ye,Iwie,Iwje,Iwye,Іўе,Ивье 53.9299 25.7727 P PPL BY 03 9684 145 Europe/Minsk 2012-01-18
-627798 Ivyanyets Ivyanyets Ivenec,Ivenets,Ivjanec,Ivyanyets,Iwienjec,Івянец,Ивенец 53.8864 26.7432 P PPL BY 05 5000 197 Europe/Minsk 2012-01-18
-627800 Ivatsevichy Ivatsevichy Fol'vark Ivatseviche,Fol’vark Ivatseviche,Ivacehvichy,Ivacevichi,Ivantsevichi,Ivatsevichi,Ivatsevichy,Iwacewicze,Twacewicze,Івацэвічы,Ивацевичи 52.709 25.3401 P PPLA2 BY 01 24200 155 Europe/Minsk 2012-01-18
-627811 Ivanava Ivanava IVANOVO,Ivanava,Ivanovo,Janow,Janów,Yanov,Yanuv,Іванава,ИВАНОВО 52.1451 25.5365 P PPLA2 BY 01 13614 148 Europe/Minsk 2012-01-18
-627878 Il’ya Il'ya Il'ja,Il'ya,Ilia,Iliya,Ilja,Il’ya,Илья 54.41645 27.29435 P PPL BY 00 1800 183 Europe/Minsk 2012-03-26
-627904 Hrodna Hrodna GRODNO,Gardinas,Goradnia,Goradnja,Grodna,Grodno,Hrodna,furodona,hwrdnh,ГРОДНО,Горадня,Гродна,Гродно,הורדנה,フロドナ 53.6884 23.8258 P PPLA BY 03 317365 139 Europe/Minsk 2012-01-18
-627905 Horki Horki GORKI,Gorki,Horki,ГОРКИ 54.2861 30.98424 P PPL BY 06 33897 184 Europe/Minsk 2012-01-18
-627907 Homyel’ Homyel' GOMEL',Gomel,Gomel',Gomela,Gomelis,Gomel’,Gomeļa,Homel,Homiel,Homyel,Homyel',Homyel’,homeri,homyel,hwml,ГОМЕЛЬ,Гомел,Гомель,הומל,ホメリ,호몔 52.4345 30.9754 P PPLA BY 02 480951 138 Europe/Minsk 2012-02-02
-627908 Hlybokaye Hlybokaye Glebokie,Glenboke,Glubokoe,Glubokoye,Glybokae,Glębokie,Hlybokaye,Глубокое,Глыбокае 55.1384 27.6905 P PPLA2 BY 07 22000 157 Europe/Minsk 2012-02-28
-627909 Hantsavichy Hantsavichy GANCEVICHI,Gancavichy,Gantseviche,Gantsevichi,Hancewicze,Hantsavichy,ГАНЦЕВИЧИ,Ганцавічы 52.758 26.43 P PPLA2 BY 01 0 160 Europe/Minsk 2012-01-18
-628155 Haradok Haradok GORODOK,Garadok,Gorodok,Haradok,ГОРОДОК,Гарадок 55.4624 29.9845 P PPLA2 BY 07 13380 180 Europe/Minsk 2012-02-28
-628182 Haradzyeya Haradzyeya Garadzeja,Gorodeja,Gorodey,Gorodeya,Gorodzey,Haradzyeya,Horodziej,Гарадзея,Городея 53.3121 26.538 P PPL BY 05 4100 180 Europe/Minsk 2012-03-23
-628317 Gol’shany Gol'shany Gol'shany,Gol’shany,Holszany,Ol'shany,Ol’shany,Гольшаны 54.2565 26.01368 P PPL BY 00 5000 195 Europe/Minsk 2012-01-18
-628387 Hlusk Hlusk GLUSK,Glusk,Glussk,Hlusk,ГЛУСК,Глуск 52.903 28.6845 P PPLA2 BY 06 0 144 Europe/Minsk 2012-01-18
-628397 Hlusha Hlusha Glusha,Hlusha,Глуша 53.0868 28.8567 P PPL BY 06 1400 169 Europe/Minsk 2012-03-23
-628511 Hatava Hatava Gatava,Gatovo,Hatava,Гатава,Гатово 53.7829 27.6407 P PPL BY 05 8000 193 Europe/Minsk 2012-03-22
-628634 Dzyarzhynsk Dzyarzhynsk DZERZHINSK,Dsjarschynsk,Dzerjinsk,Dzerzhinsk,Dzerzinskas,Dzerĵinsk,Dzeržinskas,Dzierzynsk,Dzierżynsk,Dzjarzhynsk,Dzjarzsinszk,Dzyarzhynsk,Kaiden,Kaydanovo,Kojdanau,Koydanava,Koydanovo,ДЗЕРЖИНСК,Дзержинск,Дзяржынск,Койданаў 53.6832 27.138 P PPL BY 05 24609 193 Europe/Minsk 2012-01-18
-628658 Dzyatlava Dzyatlava Djatlovo,Dyatlovo,Dzentsel,Dzjatlava,Dzyatlava,Zdzentsyul,Zdzieciol,Zdzięcioł,Дзятлава,Дятлово 53.4631 25.4068 P PPL BY 03 8300 163 Europe/Minsk 2012-03-23
-628727 Dukora Dukora Dukora,Дукора 53.6786 27.94 P PPL BY 05 1300 174 Europe/Minsk 2012-03-27
-628758 Dubrowna Dubrowna DUBROVNO,Dubrovka,Dubrovno,Dubrowna,ДУБРОВНО 54.57216 30.69297 P PPL BY 07 8000 184 Europe/Minsk 2012-03-26
-628865 Drybin Drybin Dribin,Drybin,Staryy Dribin,Дрибин 54.11954 31.09168 P PPL BY 06 2900 178 Europe/Minsk 2012-01-18
-628871 Druya Druya Druja,Druya,Друя 55.7906 27.4505 P PPL BY 07 1500 110 Europe/Minsk 2012-02-28
-628884 Drahichyn Drahichyn DROGICHIN,Dragichyn,Drahichyn,Drogichin,Drohiczyn,ДРОГИЧИН,Драгічын 52.1874 25.1597 P PPL BY 01 13389 151 Europe/Minsk 2012-01-18
-628923 Dowsk Dowsk Dousk,Dovsk,Dowsk,Довск,Доўск 53.1571 30.4601 P PPL BY 02 1840 167 Europe/Minsk 2012-03-26
-629002 Dokshytsy Dokshytsy DOKSHICY,Dokshitsy,Dokshycy,Dokshytse,Dokshytsy,Dokszyce,ДОКШИЦЫ,Докшыцы 54.8918 27.7667 P PPLA2 BY 07 8190 201 Europe/Minsk 2012-02-28
-629018 Dobrush Dobrush DOBRUSH,Dobrush,ДОБРУШ,Добруш 52.4089 31.3237 P PPLA2 BY 02 19083 125 Europe/Minsk 2012-01-18
-629055 Dzisna Dzisna DISNA,Disna,Dzisna,ДИСНА,Дзісна 55.5676 28.2076 P PPL BY 07 2738 108 Europe/Minsk 2012-02-28
-629159 Davyd-Haradok Davyd-Haradok David-Gorodok,Davidgrodek,Davyd-Garadok,Davyd-Haradok,Dawid-Grodek,Dawid-Gródek,Dawidgrodek,Dawidgródek,Давид-Городок,Давыд-Гарадок 52.0566 27.2161 P PPL BY 01 7694 130 Europe/Minsk 2012-01-18
-629163 Dashkovka Dashkovka Dashkovka,Дашковка 53.73697 30.26102 P PPL BY 06 1528 148 Europe/Minsk 2012-03-26
-629273 Chervyen’ Chervyen' Chehrven',Cherven',Cherven’,Chervyen',Chervyen’,Igumen,Tscherwen,Червень,Чэрвень 53.7059 28.4313 P PPL BY 05 9900 167 Europe/Minsk 2012-01-18
-629347 Cherykaw Cherykaw CHERIKOV,Chehrykau,Cherikov,Cherykaw,Tscherikow,ЧЕРИКОВ,Чэрыкаў 53.5692 31.37928 P PPL BY 06 7874 166 Europe/Minsk 2012-01-18
-629390 Chachersk Chachersk CHECHERSK,Chachehrsk,Chachersk,Chechersk,ЧЕЧЕРСК,Чачэрск 52.9164 30.9179 P PPLA2 BY 02 0 146 Europe/Minsk 2012-02-02
-629395 Chavusi Chavusi CHAUSY,Chausi,Chausy,Chavusi,ЧАУСЫ 53.80753 30.97122 P PPL BY 06 11313 178 Europe/Minsk 2012-01-18
-629400 Chashniki Chashniki CHASHNIKI,Chashniki,ЧАШНИКИ 54.85685 29.16072 P PPL BY 07 11484 136 Europe/Minsk 2012-01-18
-629447 Bykhaw Bykhaw BYKHOV,Bychow,Bykhaw,Bykhov,Star Bykhov,Staryy Bykhov,БЫХОВ 53.51935 30.24693 P PPL BY 06 17500 155 Europe/Minsk 2012-01-18
-629454 Byaroza Byaroza BEREZA,Bereza,Bereza Kartuska,Bereza-Kartuskaya,Bereza-Kartuzskaya,Berëza,Bjaroza,Byaroza,Kartuz-Bereza,БЕРЕЗА,Бяроза 52.5314 24.9786 P PPLA2 BY 01 29645 150 Europe/Minsk 2012-01-18
-629471 Buynichi Buynichi Bujnichi,Bunichi,Buynichi,Буйничи 53.8561 30.26585 P PPL BY 06 4000 170 Europe/Minsk 2012-03-27
-629564 Buda-Kashalyova Buda-Kashalyova Buda-Kashaljova,Buda-Kashalyova,Buda-Koshelevo,Buda-Koshelevskaya,Buda-Koshelëvo,Буда-Кашалёва,Буда-Кошелево 52.7179 30.5701 P PPLA2 BY 02 0 147 Europe/Minsk 2012-02-02
-629634 Brest Brest BREST,Beras'ce,Berestja,Brehst,Brest,Brest Litovsk,Brest-Litovsk,Brest-Litowsk,Brestas,Breszt,Brzesc,Brzesc nad Bugiem,Brzesc-Litewsk,Brzesc-Litewski,Brześć,Brześć nad Bugiem,Brześć-Litewsk,Brześć-Litewski,brst lytwbsq,bu lie si te,buresuto,БРЕСТ,Берасьце,Берестя,Брест,Брэст,ברסט ליטובסק,ブレスト,布列斯特 52.09755 23.68775 P PPLA BY 01 300715 142 Europe/Minsk 2012-01-18
-629640 Braslaw Braslaw BRASLAV,Braslau,Braslav,Braslaw,Brastaw,Brasław,Breslauja,БРАСЛАВ,Браслаў 55.6413 27.0418 P PPLA2 BY 07 12378 136 Europe/Minsk 2012-02-28
-629646 Brahin Brahin Bragin,Brahin,Брагин,Брагін 51.787 30.2677 P PPLA2 BY 02 3900 113 Europe/Minsk 2012-01-18
-629663 Boyary Boyary Bojary,Turec-Bojary,Турец-Бояры 54.36667 26.66667 P PPL BY BY 00 1602 150 Europe/Minsk 2012-03-26
-629697 Boruny Boruny Boruny,Боруны 54.31651 26.13702 P PPL BY 00 2500 230 Europe/Minsk 2012-01-18
-629829 Vyaliki Trastsyanets Vyaliki Trastsyanets Bol'shoy Trostenets,Bol’shoy Trostenets,Vjaliki Trascjanec,Vyaliki Trastsyanets,Вялікі Трасцянец 53.851 27.7139 P PPL BY 05 2100 203 Europe/Minsk 2012-03-27
-629986 Vyalikaya Byerastavitsa Vyalikaya Byerastavitsa Berestovitsa,Bol'saja Berestovica,Bol'shaja Berestovica,Bol'shaya Berestovitsa,Bol’shaya Berestovitsa,Bol’šaja Berestovica,Brzostowica Wielka,Vel'ke Bzhostovitsa,Velikaya Berestovitsa,Velikaya Bzhostovitsa,Vel’ke Bzhostovitsa,Vjalikaja Berastavica,Vyalikaya Byerastavitsa,Большая Берестовица,Вялікая Бераставіца 53.196 24.0166 P PPL BY 03 5900 148 Europe/Minsk 2012-01-18
-630070 Bobr Bobr Bobr,Бобр 54.34294 29.27792 P PPL BY 00 1100 177 Europe/Minsk 2012-03-23
-630089 Blon’ Blon' Blon',Blon’,Блонь 53.5269 28.1732 P PPL BY 05 1780 164 Europe/Minsk 2012-03-27
-630166 Berëzovka Berezovka Berezovka,Berjozovka,Berëzovka,Берёзовка 53.72143 25.49927 P PPL BY 00 11800 126 Europe/Minsk 2012-01-18
-630197 Byerazino Byerazino Berazino,Berezino,Byerazino,Беразіно,Березино 53.8391 28.9879 P PPL BY 05 12800 164 Europe/Minsk 2012-01-18
-630245 Byalynichy Byalynichy Belynichi,Byalynichy,Byelinichi,Белыничи 53.99835 29.71263 P PPL BY 06 9600 181 Europe/Minsk 2012-01-18
-630279 Byelaazyorsk Byelaazyorsk BELOOZERSK,Belaazjorsk,Beloozersk,Berezovskiy,Byelaazyorsk,БЕЛООЗЕРСК,Белаазёрск 52.4731 25.1784 P PPL BY 01 10691 148 Europe/Minsk 2012-01-18
-630343 Byahoml’ Byahoml' Begoml',Begomlya,Begoml’,Bjagoml',Byahoml',Byahoml’,Бегомль,Бягомль 54.7316 28.0577 P PPL BY 07 3500 190 Europe/Minsk 2012-02-28
-630376 Barysaw Barysaw BORISOV,Barysaw,Borisov,Borissow,БОРИСОВ 54.23123 28.50485 P PPL BY 05 100000 172 Europe/Minsk 2012-01-18
-630429 Baranavichy Baranavichy BARANOVICHI,Baranavichy,Baranavitsjy,Baranawitschy,Baranoviche,Baranovichi,Baranovichi - Baranavichy,Baranovichi - Баранавiчы,Baranoviciai,Baranovitchi,Baranovitsi,Baranovitši,Baranovičiai,Baranowicze,Baranowitschi,БАРАНОВИЧИ,Баранавічы,Барановичи 53.1327 26.0139 P PPLA2 BY 01 168772 199 Europe/Minsk 2012-01-18
-630431 Baran’ Baran' BARAN',Baran',Baran’,БАРАНЬ 54.47698 30.31898 P PPL BY 07 11600 172 Europe/Minsk 2012-03-26
-630468 Babruysk Babruysk BOBRUJSK,Babroejsk,Babruisk,Babrujsk,Babruysk,Bobruisk,Bobruiskas,Bobrujsk,Bobruysk,bwbrwysq,БОБРУЙСК,Бабруйск,Бобруйск,בוברויסק 53.1384 29.2214 P PPLA2 BY 06 220517 159 Europe/Minsk 2012-01-18
-630515 Ashmyany Ashmyany Ashmyany,Asmena,Ašmena,OSHMJANY,Oshmyana,Oshmyany,Oszmiana,ОШМЯНЫ 54.42496 25.9378 P PPL BY 03 14345 180 Europe/Minsk 2012-01-18
-793279 Balbasava Balbasava Balbasava,Bolbasovo 54.4362 30.27259 P PPL BY 07 3600 183 Europe/Minsk 2012-03-26
-815847 Romanovichi Romanovichi 53.87229 30.56099 P PPL BY 06 1341 172 Europe/Minsk 2012-03-26
-816218 Polyk’vichi Polyk'vichi Polyk'vichi,Polykovichi,Polyk’vichi,Полыковичи 53.989 30.35973 P PPL BY 06 1572 153 Europe/Minsk 2012-03-26
-828884 Horad Kobryn Horad Kobryn Gorad Kobryn,Gorod Kobrin,Horad Kobryn,Горад Кобрын 52.21611 24.36639 P PPLA2 BY 01 828884 0 139 Europe/Minsk 2012-01-19
-828885 Horad Luninyets Horad Luninyets Gorad Luninec,Gorod Luninets,Horad Luninyets,Горад Лунінец 52.25028 26.79944 P PPLA2 BY 01 828885 0 136 Europe/Minsk 2012-01-19
-828886 Horad Pinsk Horad Pinsk Gorad Pinsk,Gorod Pinsk,Horad Pinsk,Горад Пінск 52.12139 26.07278 P PPLA2 BY 01 828886 0 138 Europe/Minsk 2012-01-19
-828899 Horad Rechytsa Horad Rechytsa Gorad Rehchyca,Gorod Rechitsa,Horad Rechytsa,Горад Рэчыца 52.36389 30.39472 P PPLA2 BY 02 828899 0 129 Europe/Minsk 2012-02-02
-6846555 Fanipol Fanipol Fanipol,Fanipol',Фаниполь 53.76272 27.29622 P PPL BY 13200 233 Europe/Minsk 2009-01-05
-8019679 Khatsyezhyna Khatsyezhyna Khacezhyna,Khatezhino,Khatsyezhyna,Хацежына 53.9094 27.3069 P PPL BY 05 1145 257 Europe/Minsk 2012-03-26
-8019799 Shchomyslitsa Shchomyslitsa Shchomyslica,Shchomyslitsa,Шчомысліца 53.8211 27.4522 P PPL BY 05 1822 242 Europe/Minsk 2012-03-26
-8019803 Yubilyeyny Yubilyeyny Jubilejny,Yubileynyy,Yubilyeyny,Юбілейны 53.8191 27.5215 P PPL BY 05 3000 217 Europe/Minsk 2012-03-26
-8019846 Atolina Atolina Atolina,Atolino,Атоліна 53.7817 27.4346 P PPL BY 05 1253 228 Europe/Minsk 2012-03-26
-8019860 Pryvol’ny Pryvol'ny Privol'nyj,Pryvol'ny,Pryvol’ny,Привольный,Прывольны 53.7969 27.7967 P PPL BY 05 2000 194 Europe/Minsk 2012-03-25
-8019924 Enyerhyetykaw Enyerhyetykaw Ehnergetikov,Ehnergetykau,Energetikov,Enyerhyetykaw,Энергетиков,Энергетыкаў 53.5871 27.0535 P PPL BY 05 2445 183 Europe/Minsk 2012-03-23
-8020001 Svislach Svislach Svislach,Svisloch',Свислочь,Свіслач 53.6404 27.9199 P PPL BY 05 4200 175 Europe/Minsk 2012-03-23
-8020004 Druzhny Druzhny Druzhny,Druzhnyj,Druzhnyy,Дружны,Дружный 53.6238 27.8977 P PPL BY 05 8713 173 Europe/Minsk 2012-03-30
-8020218 Malinovka Malinovka Malinovka,Малиновка 53.8579 27.4374 P PPLX BY 04 105000 238 Europe/Minsk 2012-03-23
-3581164 San Pedro San Pedro 17.91598 -87.9659 P PPL BZ 01 8418 4 America/Belize 2009-10-09
-3581194 San Ignacio San Ignacio Cayo,Cayo Town,El Cayo,El Cayo de San Ignacio,San Ignacio 17.15611 -89.07139 P PPL BZ 02 16812 85 America/Belize 2012-01-18
-3581398 Punta Gorda Punta Gorda Punta Gorda 16.09835 -88.8097 P PPL BZ 06 5026 8 America/Belize 2011-04-13
-3581514 Orange Walk Orange Walk Orange Walk 18.08124 -88.56328 P PPL BZ 04 15298 16 America/Belize 2011-04-13
-3582228 Dangriga Dangriga Dangriga,Dangriga Town,Stann Creek,Stann Creek Town,Stann Creek Village,Stanncrek 16.96921 -88.23206 P PPLA BZ 05 10750 10 America/Belize 2012-01-14
-3582305 Corozal Corozal Corasal,Corazal,Corosal,Corozal 18.39794 -88.39419 P PPL BZ 03 8724 15 America/Belize 2011-07-26
-3582662 Benque Viejo del Carmen Benque Viejo del Carmen Bengue Viejo,Benique Viejo del Carmen,Benque Viejo,Benque Viejo del Carmen,Cayo 17.075 -89.13917 P PPL BZ 02 7092 89 America/Belize 2012-01-18
-3582672 Belmopan Belmopan Bel'mopan,Belmopan,Belmopanas,Belmopano,Belmopán,Bèlmopan,Hattieville,Mopan,Mpelmopan,bei er mo bang,belmopan,berumopan,blmwpan,blmwpn,Μπελμοπάν,Белмопан,Бельмопан,Բելմոպան,בלמופן,بلموپان,ቤልሞፓን,ベルモパン,貝爾墨邦,벨모판 17.25 -88.76667 P PPLC BZ 02 13381 71 America/Belize 2012-01-18
-3582677 Belize City Belize City Belice,Belizas,Belize,Belize City,Belize-stad,Ciudad de Belice,berizushiti,ベリーズシティ 17.49952 -88.19756 P PPLA BZ 01 61461 6 America/Belize 2012-01-14
-3830322 Valley of Peace Valley of Peace Valley of Peace 17.33472 -88.83472 P PPL BZ BZ 02 1809 80 America/Belize 2012-01-20
-5881791 Abbotsford Abbotsford Abbotsford,Абботсфорд 49.05798 -122.25257 P PPL CA 02 151683 114 America/Vancouver 2010-01-29
-5882142 Acton Vale Acton Vale 45.65007 -72.56582 P PPL CA 10 16 5135 90 America/Montreal 2008-04-11
-5882534 Agassiz Agassiz 49.23298 -121.76926 P PPL CA 02 4738 17 America/Vancouver 2011-10-03
-5882799 Airdrie Airdrie 51.30011 -114.03528 P PPL CA 01 24673 1086 America/Edmonton 2008-04-11
-5882873 Ajax Ajax 43.85012 -79.03288 P PPL CA 08 90167 97 America/Toronto 2011-12-30
-5883074 Albanel Albanel 48.88324 -72.44867 P PPL CA 10 02 1087 150 America/Montreal 2006-01-22
-5883166 Alberton Alberton 46.81685 -64.06542 P PPL CA 09 1147 10 America/Halifax 2008-04-11
-5884083 Alma Alma Alma,Алма 48.55009 -71.6491 P PPL CA 10 02 29526 90 America/Montreal 2010-01-29
-5884260 Altona Altona 49.10469 -97.55961 P PPL CA 03 3613 246 America/Winnipeg 2008-04-11
-5884467 Amherst Amherst 45.83345 -64.19874 P PPL CA 07 9336 20 America/Halifax 2008-04-11
-5884473 Amherstburg Amherstburg 42.11679 -83.04985 P PPL CA 08 11459 183 America/Toronto 2006-01-22
-5884588 Amos Amos 48.56688 -78.11624 P PPL CA 10 08 17918 298 America/Montreal 2010-09-22
-5885280 Angus Angus 44.31681 -79.88295 P PPLL CA 08 10269 193 America/Toronto 2006-01-27
-5886182 Antigonish Antigonish 45.61685 -61.99858 P PPL CA 07 5003 17 America/Halifax 2008-04-11
-5887048 Armstrong Armstrong 50.44979 -119.20235 P PPL CA 02 4275 359 America/Vancouver 2008-04-11
-5887214 Arnprior Arnprior 45.43341 -76.34939 P PPL CA 08 9607 72 America/Toronto 2008-04-11
-5887470 Asbestos Asbestos 45.76678 -71.9324 P PPL CA 10 05 7190 252 America/Montreal 2008-04-11
-5887531 Ashcroft Ashcroft 50.71646 -121.2859 P PPL CA 02 1796 294 America/Vancouver 2008-04-11
-5887798 Assiniboia Assiniboia 49.63336 -105.98446 P PPL CA 11 2320 743 America/Regina 2008-04-11
-5887916 Athabasca Athabasca 54.71687 -113.28537 P PPL CA 01 2539 534 America/Edmonton 2008-04-11
-5888001 Atikokan Atikokan 48.75551 -91.6216 P PPL CA 08 3400 389 America/Atikokan 2011-07-16
-5888716 Aylmer Aylmer 42.76679 -80.98302 P PPL CA 08 7527 229 America/Toronto 2008-04-11
-5889745 Baie-Comeau Baie-Comeau 49.21679 -68.14894 P PPL CA 10 09 29808 76 America/Montreal 2010-09-22
-5890542 Baie-D'Urfé Baie-D'Urfe 45.41397 -73.91586 P PPL CA 10 3902 40 America/Montreal 2010-09-22
-5892510 Bancroft Bancroft 45.05752 -77.85702 P PPL CA 08 3838 330 America/Toronto 2008-02-01
-5892532 Banff Banff Banf,Banfas,Banff,ban fu,banfu,Банф,バンフ,班芙 51.17622 -115.56982 P PPL CA 01 7502 1388 America/Edmonton 2010-06-24
-5894033 Barraute Barraute 48.43349 -77.63279 P PPL CA 10 08 1180 301 America/Montreal 2008-04-11
-5894164 Barrhead Barrhead 54.13345 -114.40211 P PPL CA 01 4430 656 America/Edmonton 2008-04-11
-5894171 Barrie Barrie 44.40011 -79.66634 P PPL CA 08 182041 269 America/Toronto 2007-02-08
-5894642 Bassano Bassano 50.78342 -112.46854 P PPL CA 01 1388 790 America/Edmonton 2008-04-11
-5895424 Bay Roberts Bay Roberts 47.59989 -53.26478 P PPL CA 05 13737 9 America/St_Johns 2006-01-22
-5895650 Beaconsfield Beaconsfield 45.43341 -73.86586 P PPL CA 10 19194 33 America/Montreal 2010-09-22
-5896495 Beauharnois Beauharnois 45.31678 -73.8659 P PPL CA 10 16 11918 22 America/Montreal 2010-09-22
-5896522 Beaumont Beaumont 53.35013 -113.41871 P PPL CA 01 7366 716 America/Edmonton 2008-04-11
-5896549 Beausejour Beausejour 50.0622 -96.51669 P PPL CA 03 2886 248 America/Winnipeg 2008-04-11
-5896969 Beaverlodge Beaverlodge 55.21664 -119.43605 P PPL CA 01 2219 723 America/Edmonton 2008-04-11
-5897209 Bécancour Becancour 46.33336 -72.43241 P PPL CA 10 04 11134 10 America/Montreal 2010-09-22
-5897324 Bedford Bedford 45.13338 -72.96584 P PPL CA 10 16 2711 67 America/Montreal 2006-01-22
-5897885 Belleville Belleville 44.17876 -77.37053 P PPL CA 08 48821 91 America/Toronto 2010-09-22
-5898070 Bells Corners Bells Corners Bells Corners,Ottawa Bells Corners 45.31588 -75.83012 P PPL CA 08 9977 96 America/Toronto 2010-03-18
-5898138 Beloeil Beloeil 45.56678 -73.19915 P PPL CA 10 16 18927 4 America/Montreal 2010-09-22
-5899017 Berthierville Berthierville 46.08336 -73.18245 P PPL CA 10 14 4411 9 America/Montreal 2008-04-11
-5899061 Berwick Berwick 45.05015 -64.73208 P PPL CA 07 2271 33 America/Halifax 2008-04-11
-5899982 Biggar Biggar 52.0668 -108.00135 P PPL CA 11 2068 661 America/Regina 2008-04-11
-5902458 Black Diamond Black Diamond 50.70011 -114.2353 P PPL CA 01 3663 1167 America/Edmonton 2006-01-22
-5902599 Blackfalds Blackfalds 52.38342 -113.7853 P PPL CA 01 3198 876 America/Edmonton 2008-04-11
-5903510 Blainville Blainville 45.66678 -73.88249 P PPL CA 10 15 46493 73 America/Montreal 2010-09-22
-5905132 Boisbriand Boisbriand 45.61678 -73.83249 P PPL CA 10 15 26483 30 America/Montreal 2010-09-22
-5905152 Bois-des-Filion Bois-des-Filion 45.66678 -73.74918 P PPL CA 10 8383 17 America/Montreal 2010-09-22
-5905191 Boissevain Boissevain 49.23062 -100.05586 P PPL CA 03 1557 514 America/Winnipeg 2008-04-11
-5905348 Bon Accord Bon Accord 53.83345 -113.41872 P PPL CA 01 1611 700 America/Edmonton 2008-04-11
-5905393 Bonavista Bonavista 48.64989 -53.11474 P PPL CA 05 3658 254 America/St_Johns 2008-04-11
-5905616 Bonnyville Bonnyville 54.26684 -110.73505 P PPL CA 01 6003 555 America/Edmonton 2008-04-11
-5906229 Botwood Botwood 49.14994 -55.34819 P PPL CA 05 2940 17 America/St_Johns 2008-04-11
-5906267 Boucherville Boucherville 45.59104 -73.43605 P PPL CA 10 16 39062 16 America/Montreal 2010-09-22
-5906281 Bouctouche Bouctouche 46.46844 -64.73905 P PPL CA 04 1895 27 America/Moncton 2008-04-11
-5906575 Bourget Bourget 45.4334 -75.1493 P PPLL CA 08 1062 61 America/Toronto 2006-01-22
-5906690 Bowen Island Bowen Island 49.38295 -123.33596 P PPL CA 02 3551 20 America/Vancouver 2011-07-11
-5906757 Bow Island Bow Island 49.86676 -111.36843 P PPL CA 01 1792 795 America/Edmonton 2008-04-11
-5907092 Bracebridge Bracebridge 45.03341 -79.31633 P PPL CA 08 8238 240 America/Toronto 2006-01-22
-5907180 Bradford West Gwillimbury Bradford West Gwillimbury 44.11681 -79.61633 P PPL CA 08 18811 264 America/Toronto 2008-04-11
-5907364 Brampton Brampton Brampton,Bramptono,buranputon,ブランプトン 43.68341 -79.76633 P PPL CA 08 433806 221 America/Toronto 2010-09-22
-5907896 Brandon Brandon Brehndon,Брэндон 49.84692 -99.95306 P PPL CA 03 26234 383 America/Winnipeg 2010-01-29
-5907983 Brant Brant 43.1334 -80.34967 P PPL CA 08 34415 245 America/Toronto 2010-09-22
-5907990 Brantford Brantford 43.1334 -80.26636 P PPL CA 08 87759 200 America/Toronto 2008-04-11
-5908723 Bridgewater Bridgewater 44.38345 -64.51546 P PPL CA 07 8070 27 America/Halifax 2008-04-11
-5909294 Brockville Brockville 44.58341 -75.68264 P PPL CA 08 23886 73 America/New_York 2008-04-11
-5909403 Bromont Bromont 45.31678 -72.64912 P PPL CA 10 16 6049 126 America/Montreal 2010-09-22
-5909514 Brooks Brooks 50.58341 -111.88509 P PPL CA 01 12744 748 America/Edmonton 2008-04-11
-5909629 Brossard Brossard 45.45008 -73.46583 P PPL CA 10 16 69575 17 America/Montreal 2008-04-11
-5909969 Brownsburg-Chatham Brownsburg-Chatham 45.68342 -74.4159 P PPL CA 10 15 6664 157 America/Montreal 2010-09-22
-5911440 Burgeo Burgeo 47.61668 -57.61516 P PPL CA 05 1627 1 America/St_Johns 2008-04-11
-5911592 Burlington Burlington 43.38621 -79.83713 P PPL CA 08 164415 165 America/Toronto 2010-09-22
-5911606 Burnaby Burnaby Burnaby,banabi,banabi shi,ben na bi,バーナビー,バーナビー市,本那比 49.26636 -122.95263 P PPL CA 02 202799 87 America/Vancouver 2010-09-22
-5911745 Burns Lake Burns Lake 54.2331 -125.7533 P PPL CA 02 2635 762 America/Vancouver 2008-04-11
-5913049 Cache Creek Cache Creek 50.81011 -121.3246 P PPL CA 02 1061 464 America/Vancouver 2010-10-29
-5913490 Calgary Calgary Calgaria,Calgary,Gorad Kalgary,Kalgari,Kalgario,Kalgaris,Kalnkary,Kalqari,ka er jia li,kaelgeoli,kailagari,kalgari,kalghary,kalgry,kalkari,karugari,kelgari,kyalgari,qlgry,Κάλγκαρυ,Горад Калгары,Калгари,Калгарі,קלגרי,كالغاري,کالگری,कॅल्गारी,कैलगरी,கால்கரி,కాల్గరీ,ಕ್ಯಾಲ್ಗರಿ,ကယ်လဂါရီမြို့,კალგარი,カルガリー,卡尔加里,캘거리 51.05011 -114.08529 P PPL CA 01 1019942 1048 1042 America/Edmonton 2008-07-30
-5913601 Calmar Calmar 53.26683 -113.81874 P PPL CA 01 2000 725 America/Edmonton 2008-04-11
-5913695 Cambridge Cambridge 43.3601 -80.31269 P PPL CA 08 120372 272 America/Toronto 2010-04-28
-5913934 Camlachie Camlachie 43.03596 -82.1616 P PPL CA 08 7506 200 America/Toronto 2011-11-27
-5914132 Campbell River Campbell River 50.01634 -125.24459 P PPL CA 02 33430 65 America/Vancouver 2008-04-11
-5914653 Camrose Camrose 53.01684 -112.83525 P PPL CA 01 15686 739 America/Edmonton 2008-04-11
-5914826 Candiac Candiac 45.38338 -73.51587 P PPL CA 10 16 15947 25 America/Montreal 2010-09-22
-5914894 Canmore Canmore 51.08335 -115.35206 P PPL CA 01 12288 1309 America/Edmonton 2008-04-11
-5915098 Canora Canora 51.63328 -102.43425 P PPL CA 11 2055 489 America/Regina 2008-04-11
-5915359 Cap-Chat Cap-Chat 49.10009 -66.68212 P PPL CA 10 1466 -9999 America/Montreal 2006-01-22
-5916706 Carberry Carberry 49.86893 -99.36021 P PPL CA 03 1575 385 America/Winnipeg 2008-04-11
-5916722 Carbonear Carbonear 47.73319 -53.21478 P PPL CA 05 6814 11 America/St_Johns 2006-01-22
-5916821 Cardston Cardston 49.19998 -113.3019 P PPL CA 01 3654 1136 America/Edmonton 2008-04-11
-5917117 Carignan Carignan 45.45008 -73.29916 P PPL CA 10 16 7426 10 America/Montreal 2010-09-22
-5917158 Carleton Place Carleton Place 45.13341 -76.14938 P PPL CA 08 9743 144 America/Toronto 2008-04-11
-5917262 Carlyle Carlyle 49.63334 -102.26765 P PPL CA 11 1177 630 America/Regina 2008-04-11
-5917275 Carman Carman 49.4992 -98.00156 P PPL CA 03 2948 264 America/Winnipeg 2008-04-11
-5917688 Carstairs Carstairs 51.56681 -114.102 P PPL CA 01 2370 1059 America/Edmonton 2008-04-11
-5918021 Casselman Casselman 45.3168 -75.0826 P PPL CA 08 3074 64 America/Toronto 2008-04-11
-5918118 Castlegar Castlegar 49.29984 -117.66894 P PPL CA 02 8715 613 America/Vancouver 2008-04-11
-5918243 Catalina Catalina 48.51659 -53.08135 P PPL CA 05 1352 16 America/St_Johns 2006-01-22
-5919566 Chambly Chambly 45.45008 -73.28246 P PPL CA 10 16 22608 4 America/Montreal 2010-09-23
-5919815 Channel-Port aux Basques Channel-Port aux Basques 47.57021 -59.13674 P PPL CA 05 4220 10 America/St_Johns 2009-07-07
-5919850 Chapais Chapais 49.78344 -74.84919 P PPL CA 10 10 1824 399 America/Montreal 2008-04-11
-5920089 Charlemagne Charlemagne 45.71678 -73.48247 P PPL CA 10 14 5594 7 America/Montreal 2010-09-23
-5920288 Charlottetown Charlottetown Carolinapolis,Charlottetown,Sharlottaun,sharottotaun,xia luo te dun,Шарлоттаун,シャーロットタウン,夏洛特顿 46.23525 -63.12671 P PPLA CA 09 42402 12 America/Halifax 2010-07-29
-5920381 Chase Chase 50.8165 -119.68571 P PPL CA 02 2471 366 America/Vancouver 2008-04-11
-5920433 Châteauguay Chateauguay 45.38338 -73.74919 P PPL CA 10 16 42786 19 America/Montreal 2010-09-22
-5920450 Chatham-Kent Chatham-Kent Chatham-Kent,Municipality of Chatham-Kent 42.40009 -82.1831 P PPL CA 08 108589 184 America/Toronto 2010-04-08
-5921028 Chester Chester 44.55015 -64.24874 P PPL CA 07 1531 26 America/Halifax 2008-04-11
-5921060 Chestermere Chestermere 51.03341 -113.81867 P PPL CA 01 3590 1022 America/Edmonton 2006-01-22
-5921091 Chetwynd Chetwynd 55.69988 -121.63627 P PPL CA 02 2587 653 America/Dawson_Creek 2008-04-11
-5921147 Chibougamau Chibougamau 49.91684 -74.36586 P PPL CA 10 10 7563 407 America/Montreal 2010-09-23
-5921357 Chilliwack Chilliwack 49.17468 -121.94427 P PPL CA 02 69217 13 America/Vancouver 2010-09-22
-5922281 Chute-aux-Outardes Chute-aux-Outardes 49.11679 -68.39896 P PPL CA 10 09 2000 31 America/Montreal 2008-04-11
-5923101 Clarence-Rockland Clarence-Rockland 45.5501 -75.29101 P PPL CA 08 20790 55 America/Toronto 2010-09-22
-5923119 Clarenville-Shoal Harbour Clarenville-Shoal Harbour 48.1805 -53.96982 P PPL CA 05 3478 1 America/St_Johns 2008-04-11
-5923125 Claresholm Claresholm 50.03332 -113.58524 P PPL CA 01 3808 1034 America/Edmonton 2008-04-11
-5924351 Clyde River Clyde River 70.46916 -68.59143 P PPLL CA 14 1017 -9999 America/Iqaluit 2008-04-11
-5924417 Coaldale Coaldale 49.7167 -112.61854 P PPL CA 01 6317 865 America/Edmonton 2008-04-11
-5924428 Coalhurst Coalhurst 49.7464 -112.93246 P PPL CA 01 1552 933 America/Edmonton 2008-04-11
-5924500 Coaticook Coaticook 45.13339 -71.79907 P PPL CA 10 05 7021 289 America/Montreal 2008-04-11
-5924579 Cobourg Cobourg 43.95977 -78.16515 P PPL CA 08 18099 82 America/Toronto 2009-07-31
-5924618 Cochrane Cochrane 51.18341 -114.46871 P PPL CA 01 16365 1143 America/Edmonton 2008-04-11
-5925024 Cold Lake Cold Lake 54.45018 -110.2017 P PPL CA 01 11595 538 America/Edmonton 2010-09-22
-5925975 Collingwood Collingwood 44.4834 -80.21638 P PPL CA 08 15809 194 America/Toronto 2008-04-11
-5926268 Colwood Colwood 48.43293 -123.48591 P PPL CA 02 14687 95 America/Vancouver 2010-09-22
-5926511 Conception Bay South Conception Bay South 47.49989 -52.99806 P PPL CA 05 17087 48 America/St_Johns 2008-04-11
-5926526 Concord Concord 43.80011 -79.48291 P PPL CA 08 8255 188 America/Toronto 2012-03-01
-5927024 Contrecoeur Contrecoeur 45.85008 -73.23245 P PPL CA 10 16 3587 26 America/Montreal 2008-04-11
-5927235 Cookshire-Eaton Cookshire-Eaton 45.41675 -71.6324 P PPL CA 10 05 1568 239 America/Montreal 2006-01-22
-5927689 Coquitlam Coquitlam Coquitlam,kokittoramu,kokittoramu shi,kokuittoramu,コキットラム,コキットラム市,コクイットラム 49.28297 -122.75262 P PPL CA 02 114565 33 America/Vancouver 2010-09-22
-5927969 Corner Brook Corner Brook 48.96671 -57.9484 P PPL CA 05 18693 -9999 America/St_Johns 2008-04-11
-5928063 Cornwall Cornwall Kornuoll,Корнуолл 46.22652 -63.21809 P PPL CA 09 2272 15 America/Halifax 2010-01-29
-5928065 Cornwall Cornwall 45.01809 -74.72815 P PPL CA 08 48821 59 America/Toronto 2009-07-31
-5928488 Côte-Saint-Luc Cote-Saint-Luc 45.46536 -73.66585 P PPL CA 10 31395 47 America/Montreal 2010-09-23
-5930890 Courtenay Courtenay Kurteneh,Куртенэ 49.68657 -124.9936 P PPL CA 02 32793 13 America/Vancouver 2010-06-22
-5931074 Cowansville Cowansville 45.20008 -72.74913 P PPL CA 10 16 10887 117 America/Montreal 2008-04-11
-5931427 Crabtree Crabtree 45.96677 -73.46586 P PPL CA 10 14 2248 36 America/Montreal 2008-04-11
-5931800 Cranbrook Cranbrook 49.49991 -115.76879 P PPL CA 02 18610 949 America/Edmonton 2008-04-11
-5932311 Creston Creston 49.09987 -116.50211 P PPL CA 02 4816 647 America/Dawson_Creek 2008-04-11
-5933070 Crossfield Crossfield 51.43341 -114.03528 P PPL CA 01 2512 1117 America/Edmonton 2008-04-11
-5933885 Cumberland Cumberland 49.61634 -125.03613 P PPL CA 02 2630 165 America/Vancouver 2008-04-11
-5934709 Dalmeny Dalmeny 52.33339 -106.76792 P PPL CA 11 1504 520 America/Regina 2008-04-11
-5935042 Danville Danville 45.78337 -72.0158 P PPL CA 10 05 1761 160 America/Montreal 2006-01-22
-5935277 Dartmouth Dartmouth 44.67134 -63.57719 P PPL CA 07 101343 35 America/Halifax 2010-09-22
-5935341 Dauphin Dauphin 51.14941 -100.05023 P PPL CA 03 8418 294 America/Winnipeg 2008-04-11
-5935388 Daveluyville Daveluyville 46.20006 -72.13239 P PPL CA 10 04 1318 88 America/Montreal 2008-04-11
-5935804 Dawson Creek Dawson Creek 55.7666 -120.23616 P PPL CA 02 10802 685 America/Dawson_Creek 2008-04-11
-5937073 Deep River Deep River 46.10012 -77.49949 P PPL CA 08 4296 146 America/Toronto 2008-04-11
-5937252 Deer Lake Deer Lake 49.16671 -57.43163 P PPL CA 05 4163 34 America/St_Johns 2008-04-11
-5937577 Deloraine Deloraine 49.19082 -100.49477 P PPL CA 03 1068 503 America/Winnipeg 2008-04-11
-5937612 Delson Delson 45.36678 -73.54917 P PPL CA 10 16 7322 27 America/Montreal 2010-09-23
-5937615 Delta Delta Del'ta,Дельта 49.14399 -122.9068 P PPL CA 02 101668 81 America/Vancouver 2010-02-27
-5938187 Deseronto Deseronto 44.20012 -77.04944 P PPL CA 08 1897 96 America/Toronto 2008-04-11
-5938513 Deux-Montagnes Deux-Montagnes 45.53455 -73.90168 P PPL CA 10 15 17402 29 America/Montreal 2010-09-23
-5938801 Devon Devon 53.36683 -113.73533 P PPL CA 01 5225 695 America/Edmonton 2008-04-11
-5939210 Didsbury Didsbury 51.66681 -114.13529 P PPL CA 01 4134 1032 America/Edmonton 2008-04-11
-5939219 Dieppe Dieppe 46.07844 -64.68735 P PPL CA 04 18565 42 America/Moncton 2010-09-22
-5939236 Digby Digby 44.61685 -65.76555 P PPL CA 07 2052 44 America/Halifax 2008-04-11
-5940934 Dolbeau-Mistassini Dolbeau-Mistassini 48.87634 -72.21202 P PPL CA 10 02 12916 102 America/Montreal 2009-07-23
-5940956 Dollard-Des Ormeaux Dollard-Des Ormeaux 45.49452 -73.82419 P PPL CA 10 48930 34 America/Montreal 2010-09-22
-5941925 Dorval Dorval 45.4473 -73.75335 P PPL CA 10 18088 27 America/Montreal 2010-09-23
-5942547 Drayton Valley Drayton Valley 53.21682 -114.98544 P PPL CA 01 6099 846 America/Edmonton 2008-04-11
-5942845 Drummondville Drummondville 45.88336 -72.48241 P PPL CA 10 04 59489 89 America/Montreal 2008-04-11
-5942913 Dryden Dryden 49.78334 -92.75032 P PPL CA 08 8195 387 America/Winnipeg 2010-09-22
-5943865 Duncan Duncan Dunkan,Дункан 48.78293 -123.70266 P PPL CA 02 22199 14 America/Vancouver 2010-01-29
-5945016 East Angus East Angus 45.48338 -71.66577 P PPL CA 10 05 3634 191 America/Montreal 2008-04-11
-5946768 Edmonton Edmonton Edmonton,Edmontonas,Edmontono,Ehdmonton,YEA,ai de meng dun,edeumeonteon,edomonton,Едмонтон,Эдмонтон,אדמונטון,エドモントン,埃德蒙顿,에드먼턴 53.55014 -113.46871 P PPLA CA 01 712391 668 610 America/Edmonton 2010-07-24
-5946820 Edson Edson 53.58345 -116.43559 P PPL CA 01 7975 913 America/Edmonton 2008-04-11
-5947708 Elkford Elkford 50.05007 -114.8854 P PPL CA 02 2585 1518 America/Edmonton 2008-04-11
-5947754 Elk Point Elk Point 53.90017 -110.9017 P PPL CA 01 1514 601 America/Edmonton 2008-04-11
-5947866 Elliot Lake Elliot Lake 46.38336 -82.63315 P PPL CA 08 12508 310 America/Toronto 2008-04-11
-5948770 Enderby Enderby 50.5498 -119.15234 P PPL CA 02 2830 473 America/Vancouver 2008-04-11
-5948844 Englehart Englehart 47.81686 -79.8664 P PPL CA 08 1685 201 America/Toronto 2008-04-11
-5949493 Espanola Espanola 46.25837 -81.76649 P PPL CA 08 4682 204 America/Toronto 2008-04-11
-5949563 Esterhazy Esterhazy 50.65001 -102.08426 P PPL CA 11 2194 516 America/Regina 2008-04-11
-5949568 Estevan Estevan 49.13337 -102.98422 P PPL CA 11 9904 563 America/Regina 2008-04-11
-5950267 Etobicoke Etobicoke 43.65421 -79.56711 P PPL CA 08 347948 148 America/Toronto 2012-02-22
-5951036 Fairview Fairview 56.06675 -118.38606 P PPL CA 01 3312 655 America/Edmonton 2008-04-11
-5951224 Falher Falher 55.73339 -117.20262 P PPL CA 01 1166 578 America/Edmonton 2008-04-11
-5951644 Farnham Farnham 45.28338 -72.98244 P PPL CA 10 16 6061 55 America/Montreal 2008-04-11
-5952330 Ferme-Neuve Ferme-Neuve 46.70011 -75.44929 P PPL CA 10 15 2115 219 America/Montreal 2008-04-11
-5952337 Fermont Fermont 52.78345 -67.08204 P PPL CA 10 09 2966 633 America/Montreal 2008-04-11
-5952370 Fernie Fernie 49.49996 -115.06871 P PPL CA 02 5019 996 America/Edmonton 2008-04-11
-5954718 Flin Flon Flin Flon 54.76824 -101.86497 P PPL CA 03 6002 308 America/Winnipeg 2008-04-11
-5955084 Foam Lake Foam Lake 51.65001 -103.53431 P PPL CA 11 1138 552 America/Regina 2008-04-11
-5955797 Fort-Coulonge Fort-Coulonge 45.85011 -76.73272 P PPL CA 10 07 2911 106 America/Montreal 2006-01-22
-5955815 Fort Erie Fort Erie 42.90012 -78.93286 P PPL CA 08 15953 183 America/Toronto 2006-01-22
-5955826 Fort Frances Fort Frances 48.59988 -93.4003 P PPL CA 08 7931 342 America/Rainy_River 2011-12-24
-5955891 Fort Macleod Fort Macleod 49.71671 -113.41857 P PPL CA 01 3060 952 America/Edmonton 2008-04-11
-5955895 Fort McMurray Fort McMurray 56.72676 -111.38103 P PPL CA 01 76000 258 America/Edmonton 2011-10-08
-5955898 Fort McPherson Fort McPherson 67.43863 -134.88543 P PPLL CA 13 1069 21 America/Yellowknife 2008-04-11
-5955902 Fort Nelson Fort Nelson 58.80533 -122.7002 P PPL CA 02 4514 415 America/Vancouver 2010-05-27
-5955948 Fort Saskatchewan Fort Saskatchewan 53.71684 -113.2187 P PPL CA 01 14957 595 America/Edmonton 2010-09-22
-5955960 Fort St. John Fort St. John 56.24988 -120.85292 P PPL CA 02 17402 696 America/Dawson_Creek 2009-06-05
-5956869 Fox Creek Fox Creek 54.40007 -116.80238 P PPL CA 01 2457 832 America/Edmonton 2008-04-11
-5957776 Fredericton Fredericton Fredericopolis,Fredericton,Frederikton,Phrentrikton,fu lei de li ke dun,furederikuton,peuledeoligteon,Φρέντρικτον,Фредериктон,フレデリクトン,弗雷德里克頓,프레더릭턴 45.94541 -66.66558 P PPLA CA 04 52337 110 America/Moncton 2010-07-29
-5958590 Fruitvale Fruitvale 49.11654 -117.55222 P PPL CA 02 3790 659 America/Vancouver 2006-01-22
-5959271 Gambo Gambo 48.7832 -54.21482 P PPL CA 05 1614 7 America/St_Johns 2008-04-11
-5959326 Gananoque Gananoque 44.33342 -76.16607 P PPL CA 08 5458 84 America/Toronto 2008-04-11
-5959878 Gaspé Gaspe Gaspe,Gaspé,gasupe,ガスペ 48.83341 -64.48194 P PPL CA 10 11 14819 15 America/Montreal 2010-09-23
-5959974 Gatineau Gatineau Gatineau,Sablono:TabelKapoLauCarta,gatino,Ŝablono:TabelKapoLaŭĈarta,ガティノー 45.47723 -75.70164 P PPL CA 10 07 242124 53 America/Montreal 2010-09-22
-5960842 Gibbons Gibbons 53.83345 -113.33531 P PPL CA 01 2790 633 America/Edmonton 2008-04-11
-5960971 Gibsons Gibsons 49.39965 -123.50268 P PPL CA 02 6821 1 America/Vancouver 2006-01-22
-5961417 Gimli Gimli 50.63362 -96.99066 P PPL CA 03 2009 221 America/Winnipeg 2008-04-11
-5961560 Gjoa Haven Gjoa Haven 68.62602 -95.87836 P PPLL CA 14 1109 1 America/Cambridge_Bay 2008-04-11
-5961564 Glace Bay Glace Bay 46.19695 -59.95698 P PPL CA 07 19968 15 America/Glace_Bay 2008-08-28
-5962442 Goderich Goderich 43.75008 -81.71648 P PPL CA 08 8032 175 America/Toronto 2008-04-11
-5962582 Golden Golden 51.29995 -116.9689 P PPL CA 02 4038 789 America/Edmonton 2008-04-11
-5964215 Granby Granby 45.40008 -72.73243 P PPL CA 10 16 53979 102 America/Montreal 2008-04-11
-5964230 Grand Bank Grand Bank 47.09995 -55.76504 P PPL CA 05 4623 5 America/St_Johns 2006-01-22
-5964304 Grande Cache Grande Cache 53.88335 -119.13585 P PPL CA 01 4025 1225 America/Edmonton 2008-04-11
-5964347 Grande Prairie Grande Prairie 55.16667 -118.80271 P PPL CA 01 41462 653 America/Edmonton 2008-04-11
-5964378 Grand Falls-Windsor Grand Falls-Windsor 48.93324 -55.66492 P PPL CA 05 12076 67 America/St_Johns 2008-04-11
-5964401 Grand Forks Grand Forks 49.03309 -118.4356 P PPL CA 02 4208 514 America/Vancouver 2008-04-11
-5964700 Greater Sudbury Greater Sudbury Grand Sudbury,Greater Sudbury,Sadberi,Sudbury,Садбери 46.49 -80.99001 P PPL CA 08 157857 266 America/Toronto 2009-08-27
-5965462 Gravelbourg Gravelbourg 49.88336 -106.55122 P PPL CA 11 1109 699 America/Regina 2008-04-11
-5965546 Gravenhurst Gravenhurst 44.91681 -79.36633 P PPL CA 08 5839 260 America/Toronto 2006-01-22
-5965812 Greater Napanee Greater Napanee Napanee 44.25012 -76.94944 P PPL CA 08 15132 92 America/Toronto 2010-04-06
-5966689 Greenwood Greenwood 44.98345 -64.89879 P PPL CA 07 6915 29 America/Halifax 2006-01-27
-5967157 Grimshaw Grimshaw 56.18339 -117.6027 P PPL CA 01 2560 598 America/Edmonton 2008-04-11
-5967629 Guelph Guelph 43.5501 -80.24967 P PPL CA 08 115760 325 America/Toronto 2008-04-11
-5969025 Haines Junction Haines Junction 60.75216 -137.51082 P PPL CA 12 1148 599 America/Whitehorse 2006-01-22
-5969093 Haldimand County Haldimand County 42.98341 -79.86633 P PPL CA 08 45212 188 America/Toronto 2010-09-22
-5969785 Hamilton Hamilton 43.23341 -79.94964 P PPL CA 08 504559 215 America/Toronto 2007-05-19
-5970014 Hampstead Hampstead 45.48064 -73.66307 P PPL CA 10 6996 49 America/Montreal 2010-09-23
-5970018 Hampton Hampton 45.52876 -65.85354 P PPL CA 04 2637 0 America/Moncton 2008-04-11
-5970234 Hanna Hanna 51.63343 -111.90181 P PPL CA 01 3140 826 America/Edmonton 2008-04-11
-5970301 Hanover Hanover 44.15009 -81.03303 P PPL CA 08 7255 277 America/Toronto 2008-04-11
-5970414 Hantsport Hantsport 45.06685 -64.16544 P PPL CA 07 1253 -9999 America/Halifax 2008-04-11
-5970458 Happy Valley-Goose Bay Happy Valley-Goose Bay 53.31685 -60.33153 P PPL CA 05 7572 12 18 America/Goose_Bay 2009-01-27
-5970478 Harbour Breton Harbour Breton 47.48325 -55.79833 P PPL CA 05 1898 1 America/St_Johns 2008-04-11
-5972291 Havre-Saint-Pierre Havre-Saint-Pierre 50.23344 -63.59862 P PPL CA 10 2966 -9999 America/Montreal 2008-04-11
-5972360 Hawkesbury Hawkesbury 45.60009 -74.61595 P PPL CA 08 12283 53 America/Toronto 2008-04-11
-5972762 Hay River Hay River 60.81555 -115.79993 P PPL CA 13 3400 152 America/Yellowknife 2011-12-30
-5973108 Hearst Hearst 49.68351 -83.66654 P PPL CA 08 4746 235 America/Toronto 2008-04-11
-5975004 High Level High Level 58.51688 -117.13605 P PPL CA 01 3621 329 America/Edmonton 2008-04-11
-5975034 High Prairie High Prairie 55.4334 -116.4858 P PPL CA 01 2878 593 America/Edmonton 2008-04-11
-5975038 High River High River 50.58341 -113.86867 P PPL CA 01 9826 1034 America/Edmonton 2008-04-11
-5975503 Hinton Hinton 53.40009 -117.58567 P PPL CA 01 9889 1022 America/Edmonton 2008-04-11
-5976783 Hope Hope 49.38299 -121.44144 P PPL CA 02 4598 45 America/Vancouver 2008-04-11
-5977783 Houston Houston 54.39976 -126.67008 P PPL CA 02 2884 590 America/Vancouver 2008-04-11
-5978126 Hudson Hudson 45.45008 -74.14922 P PPL CA 10 16 5088 47 America/Montreal 2010-09-23
-5978133 Hudson Bay Hudson Bay 52.85003 -102.38425 P PPL CA 11 1661 375 America/Regina 2008-04-11
-5978404 Humboldt Humboldt 52.20005 -105.1255 P PPL CA 11 4822 568 America/Regina 2008-04-11
-5978683 Huntingdon Huntingdon 45.08339 -74.16593 P PPL CA 10 16 2865 48 America/Montreal 2008-04-11
-5978765 Huntsville Huntsville 45.33341 -79.21632 P PPL CA 08 19579 302 America/Toronto 2009-05-19
-5982839 Indian Head Indian Head 50.53336 -103.66775 P PPL CA 11 1642 588 America/Regina 2008-04-11
-5983175 Ingersoll Ingersoll 43.03339 -80.88302 P PPL CA 08 11874 293 America/Toronto 2008-04-11
-5983433 Innisfil Innisfil 44.30011 -79.64964 P PPL CA 08 7345 266 America/Toronto 2006-01-22
-5983607 Inuvik Inuvik 68.34986 -133.72181 P PPL CA 13 3022 15 America/Inuvik 2008-04-11
-5983626 Invermere Invermere 50.51666 -116.03538 P PPL CA 02 2871 803 America/Edmonton 2008-04-11
-5983720 Iqaluit Iqaluit Ikaluitas,Ikvaluit,Iqaluit,ikallu-iteu,ikaruito,yi kui te,Иквалуит,ᐃᖃᓗᐃᑦ,イカルイト,伊魁特,이칼루이트 63.75059 -68.51449 P PPLA CA 14 6124 78 America/Iqaluit 2010-07-30
-5984000 Iroquois Falls Iroquois Falls 48.76688 -80.68307 P PPL CA 08 4232 280 America/Toronto 2008-04-11
-5984019 Irricana Irricana 51.32372 -113.60475 P PPL CA 01 1091 931 America/Edmonton 2008-04-11
-5985934 Jasper Park Lodge Jasper Park Lodge 52.88576 -118.05715 P PPLL CA 01 3907 1030 America/Edmonton 2009-08-24
-5987650 Joliette Joliette 46.01677 -73.44915 P PPL CA 10 14 34772 56 America/Montreal 2006-01-22
-5989045 Kamloops Kamloops Kamloops,Kamlups,kamurupusu,Камлупс,カムループス 50.66648 -120.3192 P PPL CA 02 68714 414 America/Vancouver 2010-01-29
-5989068 Kamsack Kamsack 51.56668 -101.90093 P PPL CA 11 1877 450 America/Regina 2008-04-11
-5989403 Kapuskasing Kapuskasing 49.41694 -82.43308 P PPL CA 08 9240 219 America/Toronto 2008-04-11
-5989818 Kawartha Lakes Kawartha Lakes 44.58342 -78.83288 P PPL CA 08 74561 265 America/Toronto 2010-09-22
-5990579 Kelowna Kelowna Kelouna,Kelowna,kerouna,Келоуна,ケロウナ 49.88307 -119.48568 P PPL CA 02 125109 350 America/Vancouver 2011-02-19
-5991056 Kenora Kenora 49.81671 -94.43373 P PPL CA 08 15177 327 America/Winnipeg 2010-09-22
-5991080 Kensington Kensington 46.43343 -63.64871 P PPL CA 09 1424 33 America/Halifax 2008-04-11
-5991148 Kentville Kentville 45.08345 -64.49876 P PPL CA 07 12636 26 America/Halifax 2006-01-22
-5991284 Kerrobert Kerrobert 51.91682 -109.13479 P PPL CA 11 1038 685 America/Regina 2008-04-11
-5991370 Keswick Keswick 44.25011 -79.46632 P PPLX CA 08 21000 230 America/Toronto 2010-08-23
-5991888 Killam Killam 52.78344 -111.85175 P PPL CA 01 1056 677 America/Edmonton 2008-04-11
-5991907 Killarney Killarney 49.18332 -99.66364 P PPL CA 03 2362 495 America/Winnipeg 2008-04-11
-5992059 Kimberley Kimberley 49.68325 -115.9855 P PPL CA 02 6513 1155 America/Edmonton 2008-04-11
-5992154 Kindersley Kindersley 51.46681 -109.16818 P PPL CA 11 4249 689 America/Regina 2008-04-11
-5992424 Kingsey Falls Kingsey Falls 45.85007 -72.0658 P PPL CA 10 04 1480 113 America/Montreal 2008-04-11
-5992500 Kingston Kingston Kingston,jing shi dun,kingusuton,Кингстон,キングストン,京士頓 44.22976 -76.48098 P PPL CA 08 114195 70 83 America/Toronto 2008-04-11
-5992830 Kirkland Kirkland 45.45008 -73.86586 P PPL CA 10 20491 36 America/Montreal 2010-09-23
-5992836 Kirkland Lake Kirkland Lake 48.14461 -80.03767 P PPL CA 08 7775 321 America/Toronto 2012-01-07
-5992996 Kitchener Kitchener Kicenero,Kitchener,Kiĉenero,kychnr,Китченер,کیچنر 43.42537 -80.5112 P PPL CA 08 409112 336 America/Toronto 2011-06-30
-5993072 Kitimat Kitimat 54.05244 -128.65342 P PPL CA 02 8987 22 America/Vancouver 2010-05-27
-5994339 Kugluktuk Kugluktuk Coppermine 67.82743 -115.09649 P PPLL CA 14 1302 1 America/Cambridge_Bay 2007-10-30
-5994763 Labelle Labelle 46.28339 -74.73255 P PPL CA 10 15 1239 223 America/Montreal 2008-04-11
-5994839 Labrador City Labrador City 52.94626 -66.91137 P PPL CA 05 10313 555 America/Goose_Bay 2008-09-17
-6002133 Lac-Brome Lac-Brome Lac Brome 45.21678 -72.51581 P PPL CA 10 16 5629 209 America/Montreal 2010-09-23
-6014443 Lac du Bonnet Lac du Bonnet 50.2536 -96.06116 P PPL CA 03 1134 261 America/Winnipeg 2008-04-11
-6024829 Lachute Lachute 45.65008 -74.33253 P PPL CA 10 15 9562 70 America/Montreal 2008-04-11
-6028050 Lac La Biche Lac La Biche 54.7669 -111.96861 P PPL CA 01 2919 566 America/Edmonton 2006-01-22
-6032673 Lac-Mégantic Lac-Megantic 45.58338 -70.88234 P PPL CA 10 05 4658 396 America/Montreal 2008-04-11
-6035592 Lacolle Lacolle 45.08338 -73.36585 P PPL CA 10 16 1528 40 America/Montreal 2008-04-11
-6035615 Lacombe Lacombe 52.46681 -113.7353 P PPL CA 01 10059 853 America/Edmonton 2008-04-11
-6047817 Ladysmith Ladysmith 48.98292 -123.81938 P PPL CA 02 8740 72 America/Vancouver 2008-04-11
-6048316 Lake Cowichan Lake Cowichan 48.82495 -124.05461 P PPL CA 02 2870 167 America/Vancouver 2011-09-14
-6049046 Lamont Lamont 53.76686 -112.80195 P PPL CA 01 1779 643 America/Edmonton 2008-04-11
-6049379 Langenburg Langenburg 50.84999 -101.71763 P PPL CA 11 1034 511 America/Regina 2008-04-11
-6049388 Langford Langford 48.44963 -123.50261 P PPL CA 02 22459 80 America/Vancouver 2010-09-22
-6049403 Langham Langham 52.3668 -106.96793 P PPL CA 11 1070 512 America/Regina 2008-04-11
-6049429 Langley Langley City of Langley 49.09967 -122.6526 P PPL CA 02 23606 11 America/Vancouver 2011-02-19
-6049430 Langley Langley Township of Langley 49.08297 -122.58589 P PPL CA 02 93726 78 America/Vancouver 2011-02-19
-6049515 Lanigan Lanigan 51.85006 -105.03443 P PPL CA 11 1204 534 America/Regina 2008-04-11
-6049863 La Prairie La Prairie 45.41678 -73.49917 P PPL CA 10 16 21763 8 America/Montreal 2010-09-23
-6050066 La Ronge La Ronge 55.10013 -105.28422 P PPL CA 11 3071 360 America/Regina 2008-04-11
-6050194 La Sarre La Sarre 48.80019 -79.19964 P PPL CA 10 08 7206 269 America/Montreal 2008-04-11
-6050263 L'Assomption L'Assomption 45.82318 -73.4294 P PPL CA 10 14 16738 13 America/Montreal 2010-09-22
-6050416 La Tuque La Tuque 47.43337 -72.7824 P PPL CA 10 04 9503 165 America/Montreal 2008-04-11
-6050610 Laval Laval Laval,ravu~aru,ラヴァル 45.56995 -73.692 P PPL CA 10 13 376845 34 America/Montreal 2010-08-12
-6050650 Lavaltrie Lavaltrie 45.88338 -73.28245 P PPL CA 10 14 8762 21 America/Montreal 2008-04-11
-6051123 Leamington Leamington 42.0549 -82.6062 P PPL CA 08 30428 193 America/Toronto 2009-07-31
-6051264 Lebel-sur-Quévillon Lebel-sur-Quevillon 49.05018 -76.98273 P PPL CA 10 10 3289 281 America/Montreal 2008-04-11
-6051562 Leduc Leduc 53.26682 -113.55201 P PPL CA 01 15561 728 America/Edmonton 2008-04-11
-6052583 L'Épiphanie L'Epiphanie 45.85008 -73.48246 P PPL CA 10 14 4606 21 America/Montreal 2010-09-23
-6052773 Les Cèdres Les Cedres 45.30008 -74.04922 P PPL CA 10 1434 30 America/Montreal 2006-01-22
-6052788 Les Coteaux Les Coteaux 45.28338 -74.23254 P PPL CA 10 16 10622 44 America/Montreal 2008-04-11
-6053154 Lethbridge Lethbridge Letbridzas,Letbridžas,Lethbridge 49.69999 -112.81856 P PPL CA 01 70617 907 America/Edmonton 2008-04-11
-6053446 Lewisporte Lewisporte 49.24993 -55.04816 P PPL CA 05 2935 -9999 America/St_Johns 2008-04-11
-6053877 L'Île-Perrot L'Ile-Perrot L'Ile Perrot 45.38338 -73.9492 P PPL CA 10 16 9927 49 America/Montreal 2010-09-23
-6054578 Lions Bay Lions Bay 49.44966 -123.23596 P PPL CA 02 1385 119 America/Vancouver 2008-04-11
-6055388 Little Current Little Current 45.97927 -81.9248 P PPL CA 08 2156 190 America/Toronto 2011-12-30
-6058024 Lloydminster Lloydminster 53.28346 -110.00157 P PPL CA 11 15910 647 America/Edmonton 2010-09-22
-6058415 Logan Lake Logan Lake 50.49976 -120.80253 P PPL CA 02 2190 1136 America/Vancouver 2008-04-11
-6058560 London London London,Londono,lndn,lun dun,lwndwn,rondon,Лондон,לונדון,لندن,ロンドン,伦敦 42.98339 -81.23304 P PPL CA 08 346765 252 America/Toronto 2008-04-11
-6059891 Longueuil Longueuil Longueuil,rongeru,ロンゲール 45.53121 -73.51806 P PPL CA 10 16 229330 18 America/Montreal 2010-09-22
-6060407 Lorraine Lorraine 45.68338 -73.78249 P PPL CA 10 14 9613 64 America/Montreal 2010-09-23
-6060839 Louiseville Louiseville 46.25594 -72.94145 P PPL CA 10 04 5819 17 America/Montreal 2008-04-11
-6061958 Lumby Lumby 50.24979 -118.96904 P PPL CA 02 1625 516 America/Vancouver 2008-04-11
-6061979 Lumsden Lumsden 50.65009 -104.86783 P PPL CA 11 1477 496 America/Regina 2008-04-11
-6062069 Lunenburg Lunenburg 44.38345 -64.31545 P PPL CA 07 2473 3 America/Halifax 2008-04-11
-6062563 Macamic Macamic 48.75018 -78.99962 P PPL CA 10 08 1559 283 America/Montreal 2006-01-22
-6063429 Macklin Macklin 52.33344 -109.93484 P PPL CA 11 1257 674 America/Regina 2008-04-11
-6064180 Magog Magog 45.26678 -72.14909 P PPL CA 10 05 15550 220 America/Montreal 2008-04-11
-6064202 Magrath Magrath 49.41668 -112.86856 P PPL CA 01 2095 980 America/Edmonton 2008-04-11
-6064704 Malartic Malartic 48.13348 -78.13283 P PPL CA 10 08 3710 324 America/Montreal 2008-04-11
-6065262 Maniwaki Maniwaki 46.38341 -75.96605 P PPL CA 10 07 4236 162 America/Montreal 2008-04-11
-6065306 Manning Manning 56.91683 -117.61945 P PPL CA 01 1359 475 America/Edmonton 2008-04-11
-6065592 Maple Creek Maple Creek 49.91678 -109.48481 P PPL CA 11 2121 759 America/Regina 2008-04-11
-6065686 Maple Ridge Maple Ridge Mehpl-Ridzh,Мэпл-Ридж 49.21939 -122.60193 P PPL CA 02 70000 42 America/Vancouver 2010-02-27
-6065867 Marathon Marathon 48.7501 -86.43322 P PPL CA 08 4627 179 America/Toronto 2008-04-11
-6066350 Marieville Marieville 45.43338 -73.16585 P PPL CA 10 16 5600 34 America/Montreal 2008-04-11
-6066513 Markham Markham 43.86682 -79.2663 P PPL CA 08 261573 168 America/Toronto 2011-12-30
-6067033 Martensville Martensville 52.28339 -106.66792 P PPL CA 11 4078 513 America/Regina 2008-04-11
-6067472 Marystown Marystown 47.16663 -55.14829 P PPL CA 05 4558 17 America/St_Johns 2008-04-11
-6067494 Mascouche Mascouche 45.74965 -73.59956 P PPL CA 10 14 34626 17 America/Montreal 2010-09-22
-6067547 Maskinongé Maskinonge 46.2286 -73.01917 P PPL CA 10 04 1105 14 America/Montreal 2008-04-11
-6067747 Matagami Matagami 49.75018 -77.63277 P PPL CA 10 10 1966 257 America/Montreal 2008-04-11
-6067959 Mattawa Mattawa 46.31681 -78.69957 P PPL CA 08 2415 161 America/Montreal 2008-04-11
-6068315 Mayerthorpe Mayerthorpe 53.95015 -115.13547 P PPL CA 01 1651 716 America/Edmonton 2008-04-11
-6071421 Meadow Lake Meadow Lake 54.13348 -108.43471 P PPL CA 11 4281 480 America/Regina 2008-04-11
-6071618 Medicine Hat Medicine Hat Medicine Hat 50.05006 -110.66834 P PPL CA 01 63138 692 America/Edmonton 2008-04-11
-6071876 Melfort Melfort 52.86673 -104.61768 P PPL CA 11 5410 457 America/Regina 2008-04-11
-6071900 Melita Melita 49.26811 -100.99669 P PPL CA 03 1167 443 America/Winnipeg 2008-04-11
-6071971 Melville Melville 50.91671 -102.80099 P PPL CA 11 4279 549 America/Regina 2008-04-11
-6072206 Mercier Mercier 45.31678 -73.74919 P PPL CA 10 16 10121 47 America/Montreal 2010-09-23
-6072350 Merritt Merritt 50.11225 -120.7942 P PPL CA 02 7179 593 America/Vancouver 2008-04-11
-6073289 Middleton Middleton 44.95015 -65.0655 P PPL CA 07 1680 22 America/Halifax 2008-04-11
-6073363 Midland Midland 44.7501 -79.88296 P PPL CA 08 31502 195 America/Toronto 2006-01-22
-6074099 Millet Millet 53.10013 -113.4687 P PPL CA 01 2142 753 America/Edmonton 2008-04-11
-6074882 Minnedosa Minnedosa 50.24532 -99.84364 P PPL CA 03 2526 516 America/Winnipeg 2008-04-11
-6075061 Mirabel Mirabel 45.65008 -74.08251 P PPL CA 10 15 34626 70 America/Montreal 2010-09-22
-6075081 Miramichi Miramichi 47.00431 -65.46544 P PPL CA 04 18129 32 America/Moncton 2010-09-22
-6075293 Mission Mission Mishen,Мишен 49.13377 -122.3144 P PPL CA 02 34505 31 America/Vancouver 2010-07-08
-6075357 Mississauga Mississauga 43.5789 -79.6583 P PPL CA 08 668549 159 America/Toronto 2010-09-22
-6076211 Moncton Moncton Moncton,Monkton,Monktono,Монктон 46.11594 -64.80186 P PPL CA 04 87467 14 America/Moncton 2010-01-29
-6076690 Montague Montague 46.16681 -62.64866 P PPL CA 09 2005 11 America/Halifax 2008-04-11
-6077128 Mont-Laurier Mont-Laurier 46.55011 -75.4993 P PPL CA 10 15 13405 226 America/Montreal 2010-09-23
-6077243 Montréal Montreal Lungsod ng Montreal,Lungsod ng Montréal,Monreal,Monreal',Monreala,Monrealis,Monreyal,Monreāla,Mons Regius,Mont-real,Montreal,Montreal - Montreal,Montreal - Montréal,Montreal City,Montreali,Montrealo,Montréal,YMQ,meng te li er,monreali,monteuliol,montorioru,mwntral,mwntryal,Μοντρεαλ,Μόντρεαλ,Монреал,Монреаль,Монтреал,מונטריאול,مونترآل,مونتریال,مونترېئال,მონრეალი,ᒧᕆᐊᓪ,モントリオール,蒙特利尔,몬트리올 45.50884 -73.58781 P PPL CA 10 06 3268513 216 America/Montreal 2010-09-13
-6077251 Montréal-Est Montreal-Est Montreal East,Montreal-Est,Montréal-Est 45.63202 -73.5075 P PPL CA 10 3822 12 America/Montreal 2010-09-23
-6077265 Montréal-Ouest Montreal-Ouest Montreal West 45.45286 -73.64918 P PPL CA 10 5184 48 America/Montreal 2010-09-23
-6077315 Mont-Royal Mont-Royal 45.51675 -73.64918 P PPL CA 10 18933 47 America/Montreal 2010-09-23
-6077340 Mont-Saint-Hilaire Mont-Saint-Hilaire 45.56678 -73.19915 P PPL CA 10 16 15720 4 America/Montreal 2010-09-23
-6077445 Mont-Tremblant Mont-Tremblant 46.19492 -74.62644 P PPL CA 10 15 8892 236 America/Montreal 2010-09-23
-6078112 Moose Jaw Moose Jaw Mus-Dzho,Мус-Джо 50.40005 -105.53445 P PPL CA 11 32166 552 America/Regina 2012-02-20
-6078359 Moosomin Moosomin 50.13332 -101.66766 P PPL CA 11 2206 581 America/Regina 2008-04-11
-6078447 Morden Morden 49.1919 -98.10136 P PPL CA 03 6395 306 America/Winnipeg 2008-04-11
-6078636 Morinville Morinville 53.80014 -113.65203 P PPL CA 01 8108 701 America/Edmonton 2008-04-11
-6078727 Morris Morris 49.35499 -97.36567 P PPL CA 03 1742 236 America/Winnipeg 2008-04-11
-6082231 Mount Pearl Mount Pearl 47.51659 -52.78135 P PPL CA 05 24671 109 America/St_Johns 2010-09-22
-6085444 Nackawic Nackawic 45.99341 -67.2189 P PPL CA 04 1009 38 America/Moncton 2008-04-11
-6085665 Nakusp Nakusp 50.24987 -117.80226 P PPL CA 02 1706 484 America/Vancouver 2008-04-11
-6085772 Nanaimo Nanaimo Nanaimo,Nanajmo,na nai mo,nanaimo,nanaymw, brytysh klmbya,Нанаймо,نانایمو، بریتیش کلمبیا,نانایمو، بریتیش کلمبیا,ナナイモ,纳奈莫 49.16634 -123.93601 P PPL CA 02 84905 17 America/Vancouver 2010-01-29
-6085892 Nanton Nanton 50.35008 -113.76866 P PPL CA 01 1936 1019 America/Edmonton 2008-04-11
-6085960 Napierville Napierville 45.18648 -73.40468 P PPL CA 10 16 3124 57 America/Montreal 2008-04-11
-6086673 Neepawa Neepawa 50.22892 -99.46642 P PPL CA 03 3151 374 America/Winnipeg 2008-04-11
-6086871 Nelson Nelson Nel'son,Нельсон 49.49985 -117.28553 P PPL CA 02 9813 541 America/Vancouver 2012-02-20
-6087579 New Glasgow New Glasgow 45.58344 -62.64863 P PPL CA 07 20322 11 America/Halifax 2006-01-22
-6087701 Newmarket Newmarket 44.05011 -79.46631 P PPL CA 08 74295 250 America/Toronto 2011-12-30
-6087844 New Westminster New Westminster 49.20678 -122.91092 P PPL CA 02 58549 64 America/Vancouver 2007-08-16
-6087892 Niagara Falls Niagara Falls Niagara Falls,ni ya jia la pu bu cheng,尼亚加拉瀑布城 43.10012 -79.06627 P PPL CA 08 82000 184 America/Toronto 2009-06-07
-6088132 Nicolet Nicolet 46.21676 -72.61582 P PPL CA 10 04 5257 20 America/Montreal 2008-04-11
-6088469 Nipawin Nipawin 53.36678 -104.00092 P PPL CA 11 3994 361 America/Regina 2008-04-11
-6088677 Niverville Niverville 49.60559 -97.04234 P PPL CA 03 2000 235 America/Winnipeg 2008-04-11
-6089125 Norfolk County Norfolk County 42.8334 -80.38297 P PPL CA 08 60847 235 America/Toronto 2010-09-22
-6089179 Normandin Normandin 48.83328 -72.53209 P PPL CA 10 02 2728 142 America/Montreal 2008-04-11
-6089245 Norman Wells Norman Wells 65.28201 -126.8329 P PPL CA 13 1027 17 America/Yellowknife 2008-04-11
-6089404 North Battleford North Battleford 52.78344 -108.28465 P PPL CA 11 19440 532 America/Regina 2006-01-22
-6089426 North Bay North Bay 46.3168 -79.46633 P PPL CA 08 50170 206 America/Toronto 2008-04-11
-6089661 North Cowichan North Cowichan 48.84133 -123.68596 P PPL CA 02 32272 145 America/Vancouver 2006-01-22
-6090785 North Vancouver North Vancouver 49.31636 -123.06934 P PPL CA 02 48000 68 89 America/Vancouver 2008-04-11
-6091104 North York North York 43.76681 -79.4163 P PPL CA 08 636000 180 178 America/Toronto 2011-12-07
-6091369 Notre-Dame-de-l'Île-Perrot Notre-Dame-de-l'Ile-Perrot 45.36678 -73.9325 P PPL CA 10 16 9885 41 America/Montreal 2010-09-23
-6091422 Notre-Dame-des-Prairies Notre-Dame-des-Prairies 46.05007 -73.43245 P PPL CA 10 14 8230 62 America/Montreal 2010-09-23
-6091436 Notre-Dame-du-Bon-Conseil Notre-Dame-du-Bon-Conseil 46.00006 -72.3491 P PPL CA 10 04 1477 80 America/Montreal 2008-04-11
-6092122 Oakville Oakville 43.45011 -79.68292 P PPL CA 08 165697 99 America/Toronto 2012-01-15
-6092873 Oka Oka 45.46489 -74.08892 P PPL CA 10 15 1160 47 America/Montreal 2007-02-15
-6093010 Okotoks Okotoks 50.72885 -113.98281 P PPL CA 01 14826 1071 America/Edmonton 2009-03-25
-6093347 Olds Olds 51.78341 -114.10199 P PPL CA 01 6947 1039 America/Edmonton 2008-04-11
-6093514 Oliver Oliver 49.18306 -119.5524 P PPL CA 02 4647 309 America/Vancouver 2008-04-11
-6094201 Orangeville Orangeville 43.9168 -80.09967 P PPL CA 08 32640 443 America/Toronto 2008-04-11
-6094325 Orillia Orillia 44.60868 -79.42068 P PPL CA 08 30178 232 America/Toronto 2009-07-31
-6094391 Ormstown Ormstown 45.13338 -73.99922 P PPL CA 10 16 1562 38 America/Montreal 2008-04-11
-6094407 Oromocto Oromocto 45.83512 -66.47917 P PPL CA 04 8998 27 America/Moncton 2008-04-11
-6094578 Oshawa Oshawa 43.90012 -78.84957 P PPL CA 08 247989 105 America/Toronto 2006-01-22
-6094665 Osoyoos Osoyoos 49.03306 -119.45237 P PPL CA 02 4314 277 America/Vancouver 2008-04-11
-6094817 Ottawa Ottawa Otava,Otava - Ottawa,Otavo,Ottaba,Ottava,Ottawa,atawa,awtawa,otawa,ottava,wo tai hua,AA¬²±,Οττάβα,Οτταβα,Отава,Оттава,Օտավա,אוטווה,أوتاوا,اتاوا,ஒட்டாவா,ኦታዋ,ᐊᑐᕚ,オタワ,渥太華,오타와 45.41117 -75.69812 P PPLC CA 08 812129 71 America/Toronto 2010-09-13
-6094884 Otterburn Park Otterburn Park 45.53338 -73.21585 P PPL CA 10 16 8464 13 America/Montreal 2010-09-23
-6095416 Outlook Outlook 51.50008 -107.05128 P PPL CA 11 1989 538 America/Regina 2008-04-11
-6095645 Owen Sound Owen Sound 44.56717 -80.94349 P PPL CA 08 22625 180 America/Toronto 2009-07-31
-6095751 Oxbow Oxbow 49.23335 -102.1676 P PPL CA 11 1058 582 America/Regina 2008-04-11
-6095779 Oxford Oxford 45.73345 -63.86542 P PPL CA 07 1283 6 America/Halifax 2008-04-11
-6096551 Pangnirtung Pangnirtung 66.14511 -65.71252 P PPLL CA 14 1320 1 America/Pangnirtung 2008-04-11
-6096672 Papineauville Papineauville 45.6168 -75.01599 P PPL CA 10 07 1600 52 America/Montreal 2008-04-11
-6098642 Parksville Parksville 49.31633 -124.31945 P PPL CA 02 21150 39 America/Vancouver 2006-01-22
-6098717 Parrsboro Parrsboro 45.40015 -64.33205 P PPL CA 07 1472 29 America/Halifax 2008-04-11
-6098747 Parry Sound Parry Sound 45.3501 -80.03296 P PPL CA 08 6469 211 America/Toronto 2008-04-11
-6098924 Pasadena Pasadena 49.01671 -57.59837 P PPL CA 05 2248 28 America/St_Johns 2008-04-11
-6100069 Peace River Peace River 56.2501 -117.28599 P PPL CA 01 5340 398 America/Edmonton 2008-04-11
-6100086 Peachland Peachland 49.76647 -119.73568 P PPL CA 02 1305 342 America/Vancouver 2006-01-22
-6100799 Pemberton Pemberton 50.31641 -122.80273 P PPL CA 02 2192 211 America/Vancouver 2011-10-03
-6100832 Pembroke Pembroke 45.81681 -77.11616 P PPL CA 08 15551 120 America/Toronto 2008-04-11
-6100954 Penhold Penhold 52.13342 -113.8687 P PPL CA 01 1818 895 America/Edmonton 2008-04-11
-6101141 Penticton Penticton 49.48062 -119.58584 P PPL CA 02 37721 357 America/Vancouver 2009-07-31
-6101546 Perth Perth 44.90011 -76.24939 P PPL CA 08 6481 134 America/Toronto 2008-04-11
-6101607 Petawawa Petawawa 45.90012 -77.33277 P PPL CA 08 11256 151 America/Toronto 2008-04-11
-6101645 Peterborough Peterborough Piterboro,Питерборо 44.30012 -78.31623 P PPL CA 08 75877 188 America/Toronto 2010-01-29
-6103581 Petrolia Petrolia 42.86678 -82.14981 P PPL CA 08 5453 190 America/Toronto 2008-04-11
-6104111 Pickering Pickering 43.90012 -79.13289 P PPL CA 08 87838 214 America/Toronto 2010-09-22
-6104221 Pictou Pictou 45.68344 -62.71534 P PPL CA 07 3732 48 America/Halifax 2008-04-11
-6104231 Picture Butte Picture Butte 49.8833 -112.78516 P PPL CA 01 1788 906 America/Edmonton 2008-04-11
-6104329 Pierreville Pierreville 46.07034 -72.81125 P PPL CA 10 04 2172 24 America/Montreal 2008-04-11
-6104745 Pilot Butte Pilot Butte 50.46678 -104.41778 P PPL CA 11 1728 609 America/Regina 2008-04-11
-6104841 Pincher Creek Pincher Creek 49.48328 -113.95195 P PPL CA 01 3855 1151 America/Edmonton 2008-04-11
-6104876 Pincourt Pincourt 45.38338 -73.9825 P PPL CA 10 16 11197 27 America/Montreal 2010-09-23
-6105815 Pitt Meadows Pitt Meadows Pitt Meadows,Pitt-Medous,Pitts Meadows,Питт-Медоус 49.22119 -122.68965 P PPL CA 02 17410 13 America/Vancouver 2010-04-15
-6107325 Pointe-Claire Pointe-Claire 45.44868 -73.81669 P PPL CA 10 06 30161 45 America/Montreal 2010-09-23
-6109273 Ponoka Ponoka 52.6768 -113.58147 P PPL CA 01 6656 806 America/Edmonton 2010-12-16
-6110611 Pont Rouge Pont Rouge 48.88332 -72.08247 P PPL CA 10 7518 135 America/Montreal 2010-09-23
-6111529 Portage la Prairie Portage la Prairie 49.97282 -98.29263 P PPL CA 03 12957 263 America/Winnipeg 2008-04-11
-6111632 Port Alberni Port Alberni 49.24133 -124.8028 P PPL CA 02 21282 22 America/Vancouver 2008-04-11
-6111696 Port-Cartier Port-Cartier 50.03339 -66.86545 P PPL CA 10 09 5851 31 America/Montreal 2008-04-11
-6111704 Port Colborne Port Colborne 42.90012 -79.23288 P PPL CA 08 18599 188 America/Toronto 2010-09-22
-6111867 Port Hawkesbury Port Hawkesbury 45.61685 -61.34853 P PPL CA 07 3564 42 America/Halifax 2008-04-11
-6111962 Port Moody Port Moody 49.28297 -122.85263 P PPL CA 02 27512 6 America/Vancouver 2010-09-22
-6112530 Powassan Powassan 46.0334 -79.34961 P PPL CA 08 1243 330 America/Toronto 2008-04-11
-6112608 Powell River Powell River 49.84962 -124.53612 P PPL CA 02 12779 -9999 America/Vancouver 2008-04-11
-6112862 Preeceville Preeceville 51.94998 -102.66766 P PPL CA 11 1003 508 America/Regina 2008-04-11
-6113027 Prescott Prescott 44.71681 -75.51604 P PPL CA 08 4466 90 America/Toronto 2008-04-11
-6113198 Prévost Prevost 45.86678 -74.08251 P PPL CA 10 15 10132 166 America/Montreal 2010-09-23
-6113335 Prince Albert Prince Albert Prince Albert 53.20008 -105.76772 P PPL CA 11 34609 431 America/Regina 2008-04-11
-6113355 Prince Edward Prince Edward Prince Edward,Prince Edward County 44.00012 -77.24946 P PPL CA 08 25496 97 America/Toronto 2010-09-22
-6113365 Prince George Prince George Prince George,Prins-Dzhordzh,Принс-Джордж 53.9166 -122.75301 P PPL CA 02 65558 578 America/Vancouver 2010-01-29
-6113406 Prince Rupert Prince Rupert 54.31614 -130.32012 P PPL CA 02 14708 24 America/Vancouver 2008-04-11
-6113463 Princeton Princeton 49.45802 -120.51076 P PPL CA 02 2706 660 America/Vancouver 2008-04-11
-6113466 Princeville Princeville 45.76684 -61.29853 P PPL CA 07 5571 43 America/Halifax 2010-09-23
-6113828 Provost Provost 52.35014 -110.26828 P PPL CA 01 2082 666 America/Edmonton 2008-04-11
-6115187 Quesnel Quesnel 52.99988 -122.50289 P PPL CA 02 13788 500 America/Vancouver 2006-01-22
-6115355 Quinte West Quinte West 44.18342 -77.56618 P PPL CA 08 42697 130 America/Toronto 2010-09-22
-6116548 Rankin Inlet Rankin Inlet 62.81732 -92.08324 P PPLL CA 14 2334 1 America/Rankin_Inlet 2008-04-11
-6117611 Rawdon Rawdon 46.05007 -73.71587 P PPL CA 10 14 10400 176 America/Montreal 2009-12-29
-6117675 Raymond Raymond 49.44998 -112.65185 P PPL CA 01 3365 964 America/Edmonton 2008-04-11
-6118158 Red Deer Red Deer Red Deer,Red Dyras 52.26682 -113.802 P PPL CA 01 73593 856 America/Edmonton 2008-04-11
-6119109 Regina Regina Redzajna,Redzhajna,Redžajna,Regina,Regino,Reĝino,Régina,Urbs Reginae,li jia na,rejaina,Реджайна,レジャイナ,里賈納 50.45008 -104.6178 P PPLA CA 11 176183 577 America/Regina 2010-07-29
-6119448 Renfrew Renfrew 45.46681 -76.68272 P PPL CA 08 8018 128 America/Toronto 2008-04-11
-6119518 Repentigny Repentigny 45.74222 -73.45008 P PPL CA 10 14 76237 10 America/Montreal 2010-09-22
-6121621 Revelstoke Revelstoke 50.98317 -118.2023 P PPL CA 02 7533 439 America/Vancouver 2008-04-11
-6122037 Richelieu Richelieu 45.44336 -73.24602 P PPL CA 10 16 5208 29 America/Montreal 2010-09-23
-6122053 Richibucto Richibucto 46.68073 -64.88044 P PPL CA 04 1298 5 America/Moncton 2008-04-11
-6122078 Richmond Richmond 45.66677 -72.1491 P PPL CA 10 05 3485 126 America/Montreal 2008-04-11
-6122085 Richmond Richmond Richmond,Ричмонд 49.17003 -123.13683 P PPL CA 02 182000 9 America/Vancouver 2010-01-29
-6122091 Richmond Hill Richmond Hill 43.87111 -79.43725 P PPL CA 08 185541 232 America/Toronto 2012-03-01
-6122288 Rigaud Rigaud 45.47927 -74.30238 P PPL CA 10 16 2525 30 America/Montreal 2008-04-11
-6122374 Rimbey Rimbey 52.6334 -114.23532 P PPL CA 01 2227 913 America/Edmonton 2008-04-11
-6122707 Rivers Rivers 50.03081 -100.24029 P PPL CA 03 1165 478 America/Winnipeg 2008-04-11
-6124931 Rivière-Rouge Riviere-Rouge 46.41679 -74.86596 P PPL CA 10 15 4152 240 America/Montreal 2010-09-23
-6125653 Roberval Roberval 48.5168 -72.23244 P PPL CA 10 02 9287 113 America/Montreal 2008-04-11
-6125862 Roblin Roblin 51.22999 -101.3565 P PPL CA 03 1903 553 America/Winnipeg 2008-04-11
-6126749 Rocky Mountain House Rocky Mountain House 52.36683 -114.9188 P PPL CA 01 6527 982 America/Edmonton 2008-04-11
-6127681 Rosemère Rosemere 45.63338 -73.79919 P PPL CA 10 15 14173 29 America/Montreal 2010-09-23
-6127749 Rosetown Rosetown 51.5501 -108.00136 P PPL CA 11 2309 583 America/Regina 2008-04-11
-6127950 Rossland Rossland 49.08313 -117.80224 P PPL CA 02 3619 1103 America/Vancouver 2008-04-11
-6128008 Rosthern Rosthern 52.66679 -106.33446 P PPL CA 11 1405 507 America/Regina 2008-04-11
-6128089 Rougemont Rougemont 45.43338 -73.04914 P PPL CA 10 16 1183 49 America/Montreal 2008-04-11
-6128577 Rouyn-Noranda Rouyn-Noranda 48.23985 -79.02878 P PPL CA 10 08 24023 293 America/Montreal 2008-04-11
-6137063 Sackville Sackville 45.91875 -64.38455 P PPL CA 04 5411 13 America/Moncton 2010-06-08
-6137270 Saguenay Saguenay Saguenay,sagune,サグネ 48.41675 -71.06573 P PPL CA 10 02 143692 84 America/Montreal 2010-09-22
-6137361 Saint-Alexis-des-Monts Saint-Alexis-des-Monts 46.46676 -73.13244 P PPL CA 10 04 2015 189 America/Montreal 2008-04-11
-6137381 Saint-Ambroise Saint-Ambroise 48.55009 -71.33238 P PPL CA 10 02 2015 125 America/Montreal 2008-04-11
-6137404 Saint-André-Avellin Saint-Andre-Avellin 45.7168 -75.06599 P PPL CA 10 07 1868 177 America/Montreal 2008-04-11
-6137411 Saint Andrews Saint Andrews 45.08454 -67.06169 P PPL CA 04 1809 35 America/Moncton 2008-04-11
-6137462 Saint-Augustin Saint-Augustin 51.22602 -58.65017 P PPL CA 10 09 3961 7 America/Blanc-Sablon 2009-07-27
-6137489 Saint-Basile-le-Grand Saint-Basile-le-Grand 45.53338 -73.28246 P PPL CA 10 16 15605 13 America/Montreal 2010-09-23
-6137539 Saint-Bruno-de-Guigues Saint-Bruno-de-Guigues 47.46685 -79.43296 P PPL CA 10 08 2928 228 America/Montreal 2006-01-22
-6137540 Saint-Bruno-de-Montarville Saint-Bruno-de-Montarville 45.53341 -73.34916 P PPL CA 10 24388 41 America/Montreal 2010-09-23
-6137571 Saint-Césaire Saint-Cesaire 45.41678 -72.99914 P PPL CA 10 16 3175 32 America/Montreal 2008-04-11
-6137631 Saint-Côme--Linière Saint-Come--Liniere 46.06677 -70.51573 P PPL CA 10 12 2167 310 America/Montreal 2006-01-22
-6137633 Saint-Constant Saint-Constant 45.36678 -73.56588 P PPL CA 10 16 23957 26 America/Montreal 2010-09-23
-6137649 Saint-Cyrille-de-Wendover Saint-Cyrille-de-Wendover 45.93336 -72.43241 P PPL CA 10 04 1279 76 America/Montreal 2008-04-11
-6137655 Saint-Damase Saint-Damase 45.53341 -72.99914 P PPL CA 10 16 1349 30 America/Montreal 2008-04-11
-6137676 Saint-Denis-sur-Richelieu Saint-Denis-sur-Richelieu 45.78338 -73.14915 P PPL CA 10 16 1067 17 America/Montreal 2006-01-22
-6137696 Sainte-Adèle Sainte-Adele 45.95008 -74.13251 P PPL CA 10 15 10634 246 America/Montreal 2010-09-23
-6137702 Sainte-Agathe-des-Monts Sainte-Agathe-des-Monts 46.05009 -74.28252 P PPL CA 10 15 5706 375 America/Montreal 2006-01-22
-6137733 Sainte-Anne-de-Bellevue Sainte-Anne-de-Bellevue 45.40618 -73.9456 P PPL CA 10 5197 34 America/Montreal 2010-09-23
-6137749 Sainte-Anne-des-Monts Sainte-Anne-des-Monts 49.12402 -66.49243 P PPL CA 10 11 5602 15 America/Montreal 2009-07-31
-6137753 Sainte-Anne-des-Plaines Sainte-Anne-des-Plaines 45.76468 -73.81156 P PPL CA 10 15 10680 67 America/Montreal 2008-04-11
-6137781 Sainte-Catherine Sainte-Catherine 46.31836 -72.56632 P PPL CA 10 16211 10 America/Montreal 2010-09-23
-6137941 Sainte-Julie Sainte-Julie 45.58338 -73.33246 P PPL CA 10 16 29019 37 America/Montreal 2010-09-23
-6137947 Sainte-Julienne Sainte-Julienne 45.96677 -73.71587 P PPL CA 10 14 3211 116 America/Montreal 2006-01-22
-6138032 Sainte-Marthe-sur-le-Lac Sainte-Marthe-sur-le-Lac 45.53338 -73.9325 P PPL CA 10 15 11311 35 America/Montreal 2010-09-23
-6138038 Sainte-Martine Sainte-Martine 45.25008 -73.79919 P PPL CA 10 16 2535 33 America/Montreal 2008-04-11
-6138103 Sainte-Sophie Sainte-Sophie 45.81678 -73.89919 P PPL CA 10 15 1634 73 America/Montreal 2006-01-22
-6138118 Sainte-Thècle Sainte-Thecle 46.81676 -72.49911 P PPL CA 10 04 1340 155 America/Montreal 2008-04-11
-6138121 Sainte-Thérèse Sainte-Therese 45.63922 -73.82757 P PPL CA 10 15 25224 36 America/Montreal 2010-09-23
-6138175 Saint-Eustache Saint-Eustache 45.565 -73.90554 P PPL CA 10 15 42062 42 America/Montreal 2010-09-22
-6138201 Saint-Félicien Saint-Felicien 48.65007 -72.44906 P PPL CA 10 02 8088 111 America/Montreal 2008-04-11
-6138212 Saint-Félix-de-Valois Saint-Felix-de-Valois 46.16677 -73.43245 P PPL CA 10 14 3165 136 America/Montreal 2008-04-11
-6138260 Saint-Gabriel Saint-Gabriel 46.30007 -73.38245 P PPL CA 10 14 2901 190 America/Montreal 2008-04-11
-6138276 Saint-Gédéon Saint-Gedeon 48.50009 -71.76581 P PPL CA 10 02 1859 112 America/Montreal 2008-04-11
-6138310 Saint-Germain-de-Grantham Saint-Germain-de-Grantham 45.83337 -72.56582 P PPL CA 10 04 2145 86 America/Montreal 2008-04-11
-6138374 Saint-Hyacinthe Saint-Hyacinthe Sankt-Giacint,Санкт-Гиацинт 45.61678 -72.94914 P PPL CA 10 16 50326 30 America/Montreal 2010-01-29
-6138413 Saint-Jacques Saint-Jacques 45.95007 -73.56586 P PPL CA 10 14 2985 55 America/Montreal 2008-04-11
-6138495 Saint-Jean-sur-Richelieu Saint-Jean-sur-Richelieu Saint-Jean-sur-Richelieu,Sen-Zhan-sjur-Rishel'e,Сен-Жан-сюр-Ришелье 45.31678 -73.26586 P PPL CA 10 16 71613 29 America/Montreal 2010-01-29
-6138501 Saint-Jérôme Saint-Jerome 45.78036 -74.00365 P PPL CA 10 15 54948 95 America/Montreal 2008-04-11
-6138517 Saint John Saint John Saint John,Saint-Jean,Sent-Dzhon,St. John,seinteujon,sentojon,Сент-Джон,セントジョン,セント・ジョン,세인트존 45.27271 -66.06766 P PPL CA 04 87857 5 America/Moncton 2012-02-20
-6138558 Saint-Joseph-de-Coleraine Saint-Joseph-de-Coleraine 45.96677 -71.36577 P PPL CA 10 12 1319 273 America/Montreal 2006-01-22
-6138599 Saint-Lambert Saint-Lambert 48.95272 -79.4593 P PPL CA 10 08 21599 301 America/Montreal 2010-09-23
-6138610 Saint-Laurent Saint-Laurent Saint-Laurent,Sen-Loran,St Laurent,Ville Saint-Laurent,Ville St Laurent,Сен-Лоран 45.50008 -73.66585 P PPLX CA 10 77391 41 America/Montreal 2010-03-11
-6138617 Saint-Lazare Saint-Lazare 45.40008 -74.13256 P PPL CA 10 16 17016 56 America/Montreal 2010-09-23
-6138643 Saint-Lin-Laurentides Saint-Lin-Laurentides 45.85008 -73.76588 P PPL CA 10 14 14159 59 America/Montreal 2011-10-18
-6138719 Saint-Marc-des-Carrières Saint-Marc-des-Carrieres 46.68335 -72.0491 P PPL CA 10 03 2358 47 America/Montreal 2008-04-11
-6138733 Saint-Martin Saint-Martin 45.96677 -70.64903 P PPL CA 10 12 2110 262 America/Montreal 2008-04-11
-6138802 Saint-Michel-des-Saints Saint-Michel-des-Saints 46.68338 -73.91589 P PPL CA 10 14 1835 364 America/Montreal 2008-04-11
-6138914 Saint-Pie Saint-Pie 45.50008 -72.89913 P PPL CA 10 16 3034 39 America/Montreal 2008-04-11
-6138980 Saint-Raymond Saint-Raymond 45.46698 -73.60948 P PPL CA 10 9273 50 America/Montreal 2010-09-23
-6138987 Saint-Rémi Saint-Remi 45.26678 -73.61588 P PPL CA 10 16 4192 55 America/Montreal 2008-04-11
-6139045 Saint-Sauveur Saint-Sauveur 45.88686 -74.17943 P PPL CA 10 15 9191 254 America/Montreal 2011-09-26
-6139154 Saint-Tite Saint-Tite 46.73336 -72.56581 P PPL CA 10 04 2456 134 America/Montreal 2008-04-11
-6139289 Salaberry-de-Valleyfield Salaberry-de-Valleyfield 45.25008 -74.13253 P PPL CA 10 16 38662 46 America/Montreal 2008-04-11
-6139354 Salisbury Salisbury 46.03905 -65.04628 P PPL CA 04 1891 45 America/Moncton 2008-04-11
-6139413 Salmo Salmo 49.19986 -117.2689 P PPL CA 02 1125 665 America/Vancouver 2008-04-11
-6139416 Salmon Arm Salmon Arm Sehlmon-Arm,Сэлмон-Арм 50.6998 -119.30237 P PPL CA 02 16205 347 America/Vancouver 2008-05-13
-6141190 Sarnia Sarnia Sarnia 42.97866 -82.40407 P PPL CA 08 82998 185 America/Toronto 2009-07-31
-6141256 Saskatoon Saskatoon Saskatoon,Saskatun,Saskatuno,sasukato~un,Саскатун,サスカトゥーン 52.11679 -106.63452 P PPL CA 11 198958 501 America/Regina 2010-01-29
-6141439 Sault Ste. Marie Sault Ste. Marie 46.51677 -84.33325 P PPL CA 08 74948 186 America/Toronto 2010-09-22
-6143367 Sechelt Sechelt 49.46636 -123.76943 P PPL CA 02 5977 -9999 America/Vancouver 2008-04-11
-6144054 Selkirk Selkirk 50.1436 -96.88452 P PPL CA 03 9653 227 America/Winnipeg 2008-04-11
-6144195 Senneterre Senneterre 48.38349 -77.23275 P PPL CA 10 08 3228 312 America/Montreal 2008-04-11
-6144312 Sept-Îles Sept-Iles Set-Il',Сет-Иль 50.20011 -66.38208 P PPL CA 10 09 22582 5 America/Montreal 2010-01-29
-6144602 Sexsmith Sexsmith 55.34998 -118.78602 P PPL CA 01 1743 719 America/Edmonton 2008-04-11
-6145425 Shaunavon Shaunavon 49.65005 -108.4181 P PPL CA 11 1658 916 America/Regina 2008-04-11
-6145489 Shawinigan Shawinigan 46.56675 -72.74913 P PPL CA 10 04 49161 123 America/Montreal 2008-04-11
-6145563 Shawville Shawville 45.60011 -76.4827 P PPL CA 10 07 1608 159 America/Montreal 2008-04-11
-6145668 Shediac Shediac 46.21981 -64.54107 P PPL CA 04 4735 16 America/Moncton 2008-07-25
-6145887 Shelburne Shelburne 43.76686 -65.31552 P PPL CA 07 1939 26 America/Halifax 2008-04-11
-6145890 Shelburne Shelburne 44.0787 -80.20408 P PPL CA 08 4390 497 America/Toronto 2008-04-11
-6145951 Shellbrook Shellbrook 53.21679 -106.40109 P PPL CA 11 1192 494 America/Regina 2008-04-11
-6146143 Sherbrooke Sherbrooke Sherbruk,Шербрук 45.40008 -71.89908 P PPL CA 10 05 129447 175 America/Montreal 2010-01-29
-6146279 Sherwood Park Sherwood Park 53.51684 -113.3187 P PPL CA 01 55063 729 722 America/Edmonton 2007-02-13
-6147353 Sicamous Sicamous 50.83312 -118.98565 P PPL CA 02 2732 355 America/Vancouver 2008-04-11
-6149374 Slave Lake Slave Lake 55.28344 -114.76896 P PPL CA 01 7661 583 America/Edmonton 2008-04-11
-6149996 Smithers Smithers 54.78036 -127.17428 P PPL CA 02 5438 494 America/Vancouver 2008-04-11
-6150174 Smiths Falls Smiths Falls 44.90011 -76.01607 P PPL CA 08 10553 127 America/Toronto 2008-04-11
-6150293 Smoky Lake Smoky Lake 54.11687 -112.46863 P PPL CA 01 1063 618 America/Edmonton 2008-04-11
-6151264 Sooke Sooke 48.37463 -123.72762 P PPL CA 02 6145 39 America/Vancouver 2008-04-11
-6151352 Sorel-Tracy Sorel-Tracy Sorel'-Trejsi,Сорель-Трейси 46.03336 -73.11585 P PPL CA 10 16 33591 15 America/Montreal 2010-01-29
-6151455 Souris Souris 46.3501 -62.24862 P PPL CA 09 1284 8 America/Halifax 2008-04-11
-6151456 Souris Souris 49.6172 -100.2612 P PPL CA 03 1752 428 America/Winnipeg 2008-04-11
-6152561 South River South River 45.8334 -79.38293 P PPL CA 08 1193 369 America/Toronto 2008-04-11
-6153766 Spirit River Spirit River 55.78327 -118.83607 P PPL CA 01 1157 616 America/Edmonton 2008-04-11
-6154202 Springhill Springhill 45.65015 -64.04873 P PPL CA 07 3940 192 America/Halifax 2008-04-11
-6154383 Spruce Grove Spruce Grove 53.53344 -113.91874 P PPL CA 01 17767 704 America/Edmonton 2008-04-11
-6155033 St. Albert St. Albert 53.63344 -113.63533 P PPL CA 01 57719 663 America/Edmonton 2010-09-22
-6155721 St. Catharines St. Catharines Saint Catharines,Sankta Katarino,St. Catharines,sentokyasarinzu,セントキャサリンズ 43.16681 -79.24958 P PPL CA 08 131989 104 America/Toronto 2010-04-26
-6156102 Steinbach Steinbach 49.52579 -96.68451 P PPL CA 03 9607 263 America/Winnipeg 2008-04-11
-6156244 Stephenville Stephenville 48.55001 -58.5818 P PPL CA 05 6278 15 America/St_Johns 2008-04-11
-6156245 Stephenville Crossing Stephenville Crossing 48.50001 -58.4318 P PPL CA 05 1183 -9999 America/St_Johns 2008-04-11
-6156307 Stettler Stettler 52.31683 -112.71861 P PPL CA 01 5494 814 America/Edmonton 2008-04-11
-6157355 Stonewall Stonewall 50.13441 -97.32676 P PPL CA 03 4177 256 America/Winnipeg 2008-04-11
-6157536 Stony Plain Stony Plain 53.53343 -114.00205 P PPL CA 01 8939 705 America/Edmonton 2008-04-11
-6157977 Stratford Stratford Stratford,Стратфорд 43.36679 -80.94972 P PPL CA 08 30233 365 America/Toronto 2010-01-29
-6158023 Strathmore Strathmore 51.05011 -113.38523 P PPL CA 01 10009 976 America/Edmonton 2008-04-11
-6158357 St. Thomas St. Thomas 42.77361 -81.18038 P PPL CA 08 36110 232 America/Toronto 2010-07-18
-6159232 Summerland Summerland 49.59977 -119.66911 P PPL CA 02 6292 475 America/Vancouver 2008-04-11
-6159244 Summerside Summerside 46.39593 -63.78762 P PPL CA 09 14808 16 America/Halifax 2008-04-11
-6159474 Sundre Sundre 51.8001 -114.63532 P PPL CA 01 2384 1089 America/Edmonton 2008-04-11
-6159905 Surrey Surrey 49.10635 -122.82509 P PPL CA 02 394976 82 America/Vancouver 2010-09-22
-6159980 Sussex Sussex 45.72266 -65.50663 P PPL CA 04 4048 23 America/Moncton 2008-04-11
-6160070 Sutton Sutton 45.10008 -72.61582 P PPL CA 10 16 3805 176 America/Montreal 2010-09-23
-6160291 Swan Hills Swan Hills 54.71681 -115.40226 P PPL CA 01 1900 1139 America/Edmonton 2008-04-11
-6160362 Swan River Swan River 52.1058 -101.26759 P PPL CA 03 4198 340 America/Winnipeg 2008-04-11
-6160603 Swift Current Swift Current 50.28337 -107.80135 P PPL CA 11 14703 742 America/Swift_Current 2008-04-11
-6160806 Sylvan Lake Sylvan Lake 52.31681 -114.0853 P PPL CA 01 10518 933 America/Edmonton 2008-04-11
-6160919 Taber Taber 49.81674 -112.15181 P PPL CA 01 8163 805 America/Edmonton 2008-04-11
-6162654 Témiscaming Temiscaming 46.72122 -79.09712 P PPL CA 10 08 1854 240 America/Montreal 2008-04-11
-6162659 Temiskaming Shores Temiskaming Shores 47.49376 -79.71529 P PPL CA 08 10442 248 America/Toronto 2010-09-22
-6162949 Terrace Terrace 54.51634 -128.60345 P PPL CA 02 19443 70 America/Vancouver 2006-01-22
-6163012 Terrebonne Terrebonne 45.70004 -73.64732 P PPL CA 10 14 94703 18 America/Montreal 2010-09-22
-6164499 The Pas The Pas 53.82509 -101.25413 P PPL CA 03 6055 267 America/Winnipeg 2008-04-11
-6164831 Thessalon Thessalon 46.25006 -83.5666 P PPL CA 08 1464 175 America/Toronto 2008-04-11
-6165406 Thompson Thompson 55.7435 -97.85579 P PPL CA 03 12467 205 America/Winnipeg 2008-04-11
-6165719 Thorold Thorold 43.11682 -79.19958 P PPL CA 08 18224 178 America/Toronto 2010-09-22
-6165875 Three Hills Three Hills 51.70012 -113.26863 P PPL CA 01 3051 897 America/Edmonton 2008-04-11
-6166142 Thunder Bay Thunder Bay Tander Bej,Tander-Bej,Thunder Bay,sandabei,Тандер Бей,Тандер-Бей,サンダーベイ 48.4001 -89.31683 P PPL CA 08 99334 199 America/Thunder_Bay 2008-04-11
-6166224 Thurso Thurso 45.6001 -75.24931 P PPL CA 10 07 2476 55 America/Montreal 2008-04-11
-6166739 Timmins Timmins 48.46686 -81.33312 P PPL CA 08 42997 301 America/Toronto 2010-09-22
-6166987 Tisdale Tisdale 52.85002 -104.05096 P PPL CA 11 2862 448 America/Regina 2008-04-11
-6167125 Tobermory Tobermory 45.25007 -81.66647 P PPL CA 08 1427 192 America/Toronto 2012-01-31
-6167254 Tofield Tofield 53.36684 -112.66862 P PPL CA 01 1911 697 America/Edmonton 2008-04-11
-6167817 Torbay Torbay 47.66659 -52.73135 P PPL CA 05 3097 69 America/St_Johns 2006-01-22
-6167865 Toronto Toronto Torontas,Toronto,Torontu,Torontó,YTO,duo lun duo,roranro,tho rxn to,tolonto,toronto,twrntw,twrwntw,Τορόντο,Торонто,טורונטו,تورنتو,تورونتو,ரொறன்ரோ,โทรอนโต,トロント,多伦多,토론토 43.70011 -79.4163 P PPLA CA 08 4612191 175 America/Toronto 2011-01-04
-6168326 Trail Trail 49.09983 -117.70223 P PPL CA 02 9707 422 America/Vancouver 2008-04-11
-6169141 Trois-Rivières Trois-Rivieres Trois-Rivieres,Trois-Rivières,Trua-Riv'er,torowaribieru,torowarivu~ieru,Труа-Ривьер,トロワリビエール,トロワリヴィエール 46.35006 -72.54912 P PPL CA 10 04 119693 20 America/Montreal 2010-01-29
-6169587 Truro Truro 45.36685 -63.26538 P PPL CA 07 20650 17 America/Halifax 2006-01-22
-6171332 Two Hills Two Hills 53.71686 -111.75181 P PPL CA 01 1147 621 America/Edmonton 2008-04-11
-6171633 Ucluelet Ucluelet 48.93291 -125.55283 P PPL CA 02 1566 3 America/Vancouver 2008-04-11
-6172009 Unity Unity 52.45014 -109.16816 P PPL CA 11 2096 633 America/Regina 2008-04-11
-6172998 Valcourt Valcourt 45.50008 -72.31581 P PPL CA 10 05 2451 200 America/Montreal 2006-01-22
-6173001 Val-David Val-David 46.03338 -74.21592 P PPL CA 10 15 1211 325 America/Montreal 2006-01-22
-6173012 Val-des-Monts Val-des-Monts 45.6501 -75.66604 P PPL CA 10 07 9539 141 America/Montreal 2008-07-13
-6173017 Val-d'Or Val-d'Or 48.10018 -77.7828 P PPL CA 10 08 31123 314 America/Montreal 2010-09-23
-6173220 Valleyview Valleyview 55.06673 -117.28585 P PPL CA 01 1951 692 America/Edmonton 2008-04-11
-6173331 Vancouver Vancouver Ban'kouber,Vancouver,Vankuver,Vankuvera,Vankuvero,Vankuvur,Vankūvera,baenkubeo,bankuba,bankuba shi,wen ge hua,wnkwwr,wnkwwr, brytysh klmbya,wnqwbr,Βανκούβερ,Ванкувер,Ванкувър,ונקובר,ونکوور,ونکوور، بریتیش کلمبیا,ۋېنكۇۋېر,バンクーバー,バンクーバー市,溫哥華,밴쿠버 49.24966 -123.11934 P PPL CA 02 1837969 70 America/Vancouver 2011-02-19
-6173361 Vanderhoof Vanderhoof 54.01657 -124.01982 P PPL CA 02 1462 635 America/Vancouver 2008-04-11
-6173508 Varennes Varennes 45.68338 -73.43246 P PPL CA 10 16 20950 15 America/Montreal 2010-09-23
-6173570 Vaudreuil-Dorion Vaudreuil-Dorion 45.40008 -74.03251 P PPL CA 10 16 25789 22 America/Montreal 2010-09-23
-6173577 Vaughan Vaughan 43.8361 -79.49827 P PPL CA 08 238866 218 America/Toronto 2011-12-07
-6173635 Vegreville Vegreville 53.50015 -112.05182 P PPL CA 01 5678 635 America/Edmonton 2008-04-11
-6173750 Verchères Vercheres 45.78338 -73.34916 P PPL CA 10 4030 2 America/Montreal 2006-01-22
-6173801 Vermilion Vermilion 53.36686 -110.85166 P PPL CA 01 4151 602 America/Edmonton 2008-04-11
-6173864 Vernon Vernon 50.25809 -119.26905 P PPL CA 02 47274 380 America/Vancouver 2008-04-11
-6174041 Victoria Victoria Victoria,Viktorija,Viktorio,bikutoria,vu~ikutoria,wei duo li ya,wyqtwryh,Виктория,Викторија,ויקטוריה,ビクトリア,ヴィクトリア,維多利亞 48.43294 -123.3693 P PPLA CA 02 289625 6 America/Vancouver 2010-07-24
-6174151 Victoriaville Victoriaville 46.05007 -71.96579 P PPL CA 10 04 34426 131 America/Montreal 2008-04-11
-6174254 Viking Viking 53.10014 -111.76844 P PPL CA 01 1106 683 America/Edmonton 2008-04-11
-6174335 Ville-Marie Ville-Marie 47.33345 -79.43297 P PPL CA 10 08 2831 204 America/Montreal 2008-04-11
-6174457 Virden Virden 49.8508 -100.93262 P PPL CA 03 3237 442 America/Winnipeg 2008-04-11
-6174687 Vulcan Vulcan 50.40008 -113.25189 P PPL CA 01 1853 1043 America/Edmonton 2008-04-11
-6174727 Wabana Wabana 47.63319 -52.94806 P PPL CA 05 2362 84 America/St_Johns 2008-04-11
-6174914 Wadena Wadena 51.94999 -103.80102 P PPL CA 11 1319 542 America/Regina 2008-04-11
-6175059 Wainwright Wainwright 52.83904 -110.85723 P PPL CA 01 5380 678 America/Edmonton 2008-04-11
-6175108 Wakefield Wakefield 45.6668 -75.83265 P PPL CA 10 07 2000 305 America/Montreal 2006-05-26
-6176226 Warman Warman 52.31679 -106.56791 P PPL CA 11 3252 507 America/Regina 2008-04-11
-6176393 Warwick Warwick 45.95007 -71.9824 P PPL CA 10 04 3340 168 America/Montreal 2008-04-11
-6176421 Wasaga Beach Wasaga Beach Wasaga,Wasaga Beach 44.5168 -80.01637 P PPL CA 08 7567 188 America/Toronto 2010-03-11
-6176821 Waterloo Waterloo Vaterloo,Ватерлоо 45.35008 -72.51582 P PPL CA 10 16 4064 210 America/Montreal 2010-01-29
-6176823 Waterloo Waterloo Vaterloo,Ватерлоо 43.4668 -80.51639 P PPL CA 08 97475 325 America/Toronto 2010-01-29
-6176928 Watrous Watrous 51.66677 -105.46788 P PPL CA 11 1689 543 America/Regina 2008-04-11
-6176992 Watson Lake Watson Lake 60.06349 -128.70893 P PPL CA 12 1547 678 America/Whitehorse 2010-05-27
-6177869 Welland Welland 42.98342 -79.24958 P PPL CA 08 50331 180 America/Toronto 2010-09-22
-6178038 Wembley Wembley 55.14995 -119.13602 P PPL CA 01 1574 729 America/Edmonton 2008-04-11
-6179138 Westlock Westlock 54.15016 -113.86876 P PPL CA 01 5067 651 America/Edmonton 2008-04-11
-6179226 Westmount Westmount 45.48341 -73.59918 P PPL CA 10 20494 52 America/Montreal 2010-09-23
-6179602 Wetaskiwin Wetaskiwin 52.96683 -113.36869 P PPL CA 01 11302 758 America/Edmonton 2008-04-11
-6179652 Weyburn Weyburn 49.66675 -103.85109 P PPL CA 11 9362 568 America/Regina 2008-04-11
-6180144 Whistler Whistler Whistler Village 50.1164 -122.96946 P PPL CA 02 10600 688 America/Vancouver 2009-05-28
-6180266 White City White City 50.43338 -104.36778 P PPL CA 11 1813 606 America/Regina 2006-01-22
-6180285 Whitecourt Whitecourt 54.15015 -115.68548 P PPL CA 01 8763 689 America/Edmonton 2008-04-11
-6180550 Whitehorse Whitehorse Equus Albus,Uajtkhors,Vajtkhors,Whitehorse,bai ma shi,howaitohosu,Вајтхорс,Уайтхорс,ホワイトホース,白馬市 60.71611 -135.05375 P PPLA CA 12 23272 707 630 America/Whitehorse 2010-07-29
-6180961 White Rock White Rock White Rock 49.01636 -122.8026 P PPL CA 02 66450 -9999 America/Vancouver 2006-11-15
-6182001 Wilkie Wilkie 52.41683 -108.70142 P PPL CA 11 1198 662 America/Regina 2008-04-11
-6182212 Williams Lake Williams Lake 52.14153 -122.14451 P PPL CA 02 14168 674 America/Vancouver 2008-04-11
-6182958 Windsor Windsor Vindzor,Виндзор 44.98345 -64.13204 P PPL CA 07 3864 11 America/Halifax 2010-01-29
-6182959 Windsor Windsor Vindzor,Виндзор 45.56678 -71.99909 P PPL CA 10 05 5408 173 America/Montreal 2010-01-29
-6182962 Windsor Windsor Vindzor,Windsor,uinza,u~inza,wen sha,wyndzwr,Виндзор,ویندزور,ウィンザー,ウインザー,温莎 42.30008 -83.01654 P PPL CA 08 278013 190 America/Toronto 2008-04-11
-6183141 Wingham Wingham 43.88793 -81.31145 P PPL CA 08 2923 318 America/Toronto 2009-07-31
-6183204 Winkler Winkler 49.1817 -97.94104 P PPL CA 03 8270 271 America/Winnipeg 2008-04-11
-6183235 Winnipeg Winnipeg Vinipeg,Vinipego,Vinnipeg,WPG,Winnipeg,Winnipeg City,u~inipegu,wen ni bo,wynypg,Винипег,Виннипег,Вінніпег,Вінніпеґ,ויניפג,وینیپگ,ウィニペグ,温尼伯 49.8844 -97.14704 P PPLA CA 03 632063 245 America/Winnipeg 2010-07-24
-6183858 Wolfville Wolfville 45.08345 -64.36546 P PPL CA 07 3523 53 America/Halifax 2008-04-11
-6184365 Woodstock Woodstock Vudstok,Вудсток 43.13339 -80.7497 P PPL CA 08 33892 299 America/Toronto 2010-01-29
-6185021 Wynyard Wynyard 51.76674 -104.18436 P PPL CA 11 1793 559 America/Regina 2008-04-11
-6185138 Yamachiche Yamachiche 46.26676 -72.83243 P PPL CA 10 04 1255 4 America/Montreal 2008-04-11
-6185217 Yarmouth Yarmouth Yarmouth 43.83345 -66.11557 P PPL CA 07 7500 26 America/Halifax 2008-04-11
-6185377 Yellowknife Yellowknife Cultellus Flavus,Yellowknife,ieronaifu,ye luo na fu,yellonaipeu,イエローナイフ,耶罗纳夫,옐로나이프 62.456 -114.35255 P PPLA CA 13 15865 248 America/Yellowknife 2010-07-30
-6185607 Yorkton Yorkton 51.2167 -102.46766 P PPL CA 11 15172 504 America/Regina 2008-04-11
-6295855 Beauceville Beauceville CWHV 46.21785 -70.77873 P PPL CA 10 12 6226 229 174 America/Montreal 2011-06-14
-6324729 Halifax Halifax Galifaks,Halifax,Галифакс 44.64533 -63.57239 P PPLA CA 07 359111 23 America/Halifax 2010-01-29
-6324733 St. John's St. John's Saint John's,Sent-Dzhons,St Johns,St. John's,Сент-Джонс 47.56494 -52.70931 P PPLA CA 05 99182 35 America/St_Johns 2010-07-29
-6325479 Beaupré Beaupre 47.04428 -70.89529 P PPL CA 10 03 2803 21 America/Montreal 2011-12-14
-6325486 Château-Richer Chateau-Richer 46.96031 -71.03219 P PPL CA 10 03 3563 6 America/Montreal 2010-09-23
-6325494 Québec Quebec Kvebek,Quebec,Quebec City,Québec,Ville de Quebec,Ville de Québec,Квебек 46.81228 -71.21454 P PPLA CA 10 528595 54 America/Montreal 2010-06-13
-6325521 Lévis Levis 46.80326 -71.17793 P PPL CA 10 12 126396 87 America/Montreal 2008-04-11
-6325529 Montmagny Montmagny 46.98043 -70.55493 P PPL CA 10 12 11724 15 America/Montreal 2010-09-23
-6325572 Neuville Neuville 46.69823 -71.58275 P PPL CA 10 03 3638 18 America/Montreal 2010-09-23
-6354895 Rimouski Rimouski 48.44879 -68.52396 P PPL CA 10 01 42240 23 America/Montreal 2010-09-22
-6354897 Rivière-du-Loup Riviere-du-Loup 47.83044 -69.53419 P PPL CA 10 01 18586 65 America/Montreal 2010-09-23
-6354908 Sydney Sydney 46.1351 -60.1831 P PPL CA 07 105968 6 America/Glace_Bay 2010-09-22
-6354950 Tofino Tofino Tofino,Тофино 49.15207 -125.90315 P PPL CA 02 1655 25 America/Vancouver 2009-06-16
-6534203 L'Ancienne-Lorette L'Ancienne-Lorette 46.79392 -71.35191 P PPL CA 10 16516 27 America/Montreal 2010-09-22
-6545023 Edmundston Edmundston 47.3737 -68.32512 P PPL CA 04 16643 200 154 America/Moncton 2010-09-22
-6639619 Sainte Catherine de la Jacques Cartier Sainte Catherine de la Jacques Cartier 46.85244 -71.62056 P PPL CA 10 03 5021 159 America/Montreal 2010-09-23
-6690232 Baie-Saint-Paul Baie-Saint-Paul 47.44109 -70.49858 P PPL CA 10 03 7288 7 America/Montreal 2010-09-22
-6693777 Carleton-sur-Mer Carleton-sur-Mer 48.10749 -66.128 P PPL CA 10 11 4077 7 America/Montreal 2010-09-22
-6696258 Campbellton Campbellton 48.00751 -66.67272 P PPL CA 04 11 7384 9 America/Moncton 2010-09-22
-6696259 Bathurst Bathurst 47.61814 -65.65112 P PPL CA 04 12714 6 America/Moncton 2010-09-22
-6696260 Matane Matane 48.82857 -67.52197 P PPL CA 10 01 15000 74 America/Montreal 2008-10-10
-6942553 Paris Paris 43.2 -80.38333 P PPL CA 08 11177 255 America/Toronto 2009-06-25
-6943488 Amqui Amqui 48.46382 -67.43134 P PPL CA 10 01 6261 161 America/Montreal 2010-09-22
-6943811 Chandler Chandler 48.34935 -64.67926 P PPL CA 10 11 7914 17 America/Montreal 2010-09-23
-6943825 Bonaventure Bonaventure 48.04573 -65.49259 P PPL CA 10 11 2673 3 America/Montreal 2010-09-22
-6943826 New-Richmond New-Richmond 48.16059 -65.85823 P PPL CA 10 11 3748 7 America/Montreal 2010-09-23
-6943827 Thetford-Mines Thetford-Mines 46.09371 -71.30539 P PPL CA 10 12 25704 317 America/Montreal 2010-09-23
-6944109 Cabano Cabano 47.68065 -68.8781 P PPL CA 10 01 3199 168 America/Montreal 2010-09-22
-6944112 Forestville Forestville 48.73808 -69.08478 P PPL CA 10 09 3543 84 America/Montreal 2010-09-23
-6944113 Mont-Joli Mont-Joli 48.58388 -68.19214 P PPL CA 10 01 6568 81 America/Montreal 2010-09-23
-6945979 Lillooet Lillooet 50.6856 -121.942 P PPL CA 02 2324 276 America/Vancouver 2011-10-03
-6945986 La Malbaie La Malbaie 47.65753 -70.15594 P PPL CA 10 03 8959 26 America/Montreal 2010-09-23
-6945989 Sainte-Marie Sainte-Marie 46.43401 -71.01168 P PPL CA 10 12 11584 159 America/Montreal 2010-09-23
-6945991 Plessisville Plessisville 46.21856 -71.76201 P PPL CA 10 04 6677 163 America/Montreal 2010-09-23
-7116273 Fossambault-sur-lac Fossambault-sur-lac 46.87662 -71.61541 P PPL CA 10 03 2000 165 America/Montreal 2010-01-08
-7280414 Cole Harbour Cole Harbour 44.67244 -63.47506 P PPLX CA 07 20000 50 49 America/Halifax 2010-03-05
-7281931 Okanagan Okanagan Okanagan,Okanagan Country,Okanagan Valley,okanagan,オカナガン 50.36386 -119.34997 P PPLQ CA 02 297601 598 America/Vancouver 2012-01-17
-7281936 West Kelowna West Kelowna District of West Kelowna,West Kelowna,uesutokerouna,u~esutokerouna,ウェストケロウナ,ウエストケロウナ 49.8625 -119.58333 P PPL CA 02 28793 484 America/Vancouver 2011-02-19
-7302644 Tracadie-Sheila Tracadie-Sheila 47.51444 -64.91806 P PPL CA 04 4474 18 America/Moncton 2010-06-13
-7302647 Bellechasse Regional County Municipality Bellechasse Regional County Municipality Bellechasse,Bellechasse Regional County Municipality 46.66667 -70.71667 P PPL CA 10 12 29570 308 America/Montreal 2010-06-13
-7303198 Lake Louise Lake Louise Lehjk-Luiz,Лэйк-Луиз 51.40435 -116.28479 P PPL CA 01 1041 2605 America/Edmonton 2010-06-24
-7303783 Sydney Mines Sydney Mines 46.23669 -60.21767 P PPL CA 07 7312 0 18 America/Glace_Bay 2010-07-18
-7303786 Jonquière Jonquiere 48.41648 -71.24884 P PPL CA 10 02 54842 146 142 America/Montreal 2011-07-27
-7535673 Cap-Santé Cap-Sante 46.67159 -71.78812 P PPL CA 10 03 2666 38 America/Montreal 2010-09-22
-7535681 Saint-Augustin-de-Desmaures Saint-Augustin-de-Desmaures 46.74064 -71.45131 P PPL CA 10 03 17281 78 America/Montreal 2010-09-23
-7535690 Donnacona Donnacona 46.68042 -71.7239 P PPL CA 10 03 5564 60 America/Montreal 2011-06-05
-7535692 La Pocatière La Pocatiere 47.34836 -70.06186 P PPL CA 10 01 4575 30 America/Montreal 2010-09-23
-7535693 Saint-Joseph-de-Beauce Saint-Joseph-de-Beauce 46.3 -70.86667 P PPL CA 10 12 4454 170 America/Montreal 2010-09-23
-7535694 Metabetchouan–Lac-a-la-Croix Metabetchouan–Lac-a-la-Croix Metabetchouan–Lac-a-la-Croix,Métabetchouan–Lac-à-la-Croix 48.41 -71.78 P PPL CA 10 02 4084 160 America/Montreal 2012-02-22
-7602078 Ladner Ladner 49.08938 -123.08241 P PPL CA 02 200000 1 3 America/Vancouver 2010-11-15
-7669012 Walnut Grove Walnut Grove 49.16473 -122.64042 P PPLX CA 02 25683 40 America/Vancouver 2011-02-19
-7669018 Aldergrove Aldergrove 49.05801 -122.47087 P PPLX CA 02 12363 102 America/Vancouver 2011-02-19
-7731836 Saint Leonard Saint Leonard 47.17303 -67.92469 P PPL CA 04 2700 157 America/Moncton 2011-03-21
-7731837 Harrison Brook Harrison Brook 47.21304 -67.92847 P PPL CA 04 3200 165 America/Moncton 2011-03-21
-7803723 Omemee Omemee 44.29897 -78.55989 P PPL CA 08 1323 252 America/Toronto 2011-05-18
-7804010 Millbrook Millbrook 44.15077 -78.44796 P PPL CA 08 1652 215 America/Toronto 2011-05-18
-7870927 Napanee Downtown Napanee Downtown 44.24832 -76.95069 P PPLX CA 08 1500 92 America/Toronto 2011-06-20
-7870931 Skatepark Skatepark 44.25122 -76.94424 P PPLX CA 08 1500 93 America/Toronto 2011-06-20
-8131396 Breakeyville Breakeyville 46.68037 -71.22327 P PPLL CA 10 12 5000 101 98 America/Montreal 2012-01-06
-8224455 Saint-Antoine-de-Tilly Saint-Antoine-de-Tilly 46.66346 -71.57335 P PPL CA 10 12 1462 48 America/Montreal 2012-03-21
-7304591 West Island West Island -12.15681 96.82251 P PPLC CC 120 12 Indian/Cocos 2010-08-16
-203717 Yangambi Yangambi 0.81021 24.43359 P PPL CD 00 35531 458 Africa/Lubumbashi 2011-02-01
-204283 Watsa Watsa Watsa 3.03716 29.53551 P PPL CD 09 24516 1018 Africa/Lubumbashi 2012-02-02
-204318 Wamba Wamba Wamba 2.14838 27.99466 P PPL CD 09 17373 796 Africa/Lubumbashi 2012-02-02
-204405 Uvira Uvira Uvinza,Uvira,Увира -3.40667 29.14583 P PPL CD 12 170391 767 Africa/Lubumbashi 2012-01-18
-204953 Tshikapa Tshikapa Chikapa,Tshikapa,Чикапа -6.41667 20.8 P PPL CD 00 267462 481 Africa/Lubumbashi 2012-01-18
-205970 Sake Sake Sake -1.57361 29.045 P PPL CD 11 17151 1464 Africa/Lubumbashi 2012-01-18
-207570 Mwene-Ditu Mwene-Ditu Mvene-Ditu,Mwene-Ditu,Мвене-Диту -7 23.45 P PPL CD 00 189177 932 Africa/Lubumbashi 2012-01-18
-207596 Mweka Mweka Mueka,Mveka,Mweka,Мвека -4.85 21.56667 P PPL CD 00 50675 576 Africa/Lubumbashi 2012-01-18
-209228 Mbuji-Mayi Mbuji-Mayi Bakwanga,Mbuji-Mayi,Mbuy Mayi,Mbuzhi-Maji,Мбужи-Майи -6.15 23.6 P PPLA CD 04 874761 583 Africa/Lubumbashi 2012-01-18
-210379 Lusambo Lusambo Lusambo,Luzambo,Лусамбо -4.96667 23.45 P PPL CD 00 41416 461 Africa/Lubumbashi 2012-01-18
-210939 Luebo Luebo Luebo -5.35 21.41667 P PPL CD 00 35183 476 Africa/Lubumbashi 2012-02-02
-211098 Lubao Lubao Lubao,Senteri,Sentiry -5.36667 25.75 P PPL CD 00 43068 626 Africa/Lubumbashi 2012-01-18
-211647 Lodja Lodja Lodja,Lodzh,Loja,Лодж -3.48333 23.43333 P PPL CD 00 68244 460 Africa/Lubumbashi 2012-01-18
-211734 Lisala Lisala Lisala,Lisale,Lizala,Лисале 2.15 21.51667 P PPL CD 00 70087 417 Africa/Kinshasa 2012-01-18
-212360 Kongolo Kongolo Kangolo,Kongolo,Конголо -5.38333 27 P PPL CD 00 31943 562 Africa/Lubumbashi 2012-01-18
-212730 Kisangani Kisangani Kisangani,Singitini,Stanleystad,Stanleyville,ji sang jia ni,kisangani,Кисангани,キサンガニ,基桑加尼 0.51667 25.2 P PPLA CD 09 539158 401 Africa/Lubumbashi 2012-03-07
-212902 Kindu Kindu Kindu,Kindu-Port-Empain,Port de Kindu,Port-Empain,Кинду -2.95 25.95 P PPLA CD 10 135698 463 Africa/Lubumbashi 2012-01-18
-213940 Kasongo Kasongo Kasongo,Kazongo,Tongoni,Tongoni Kapaya,Касонго -4.45 26.66667 P PPL CD 00 55118 661 Africa/Lubumbashi 2012-01-18
-214389 Kaniama Kaniama -7.56667 24.18333 P PPL CD 00 29412 905 Africa/Lubumbashi 2006-01-17
-214481 Kananga Kananga Kananga,Kanange,Lulua,Luluabourg,Кананга -5.89583 22.41778 P PPLA CD 03 463546 643 Africa/Lubumbashi 2012-01-18
-214575 Kampene Kampene -3.6 26.66667 P PPL CD 00 37034 643 Africa/Lubumbashi 2006-01-17
-214614 Kamina Kamina Kamina,Kaminy,Камины -8.73861 24.99056 P PPL CD 05 73557 1125 Africa/Lubumbashi 2012-01-18
-214974 Kalemie Kalemie Albertstad,Albertville,Kalemi,Kalemie,Калеми -5.94749 29.19471 P PPL CD 05 146974 787 Africa/Lubumbashi 2008-07-25
-215527 Kabinda Kabinda -6.13333 24.48333 P PPL CD 00 59004 856 Africa/Lubumbashi 2006-01-17
-215605 Kabare Kabare -2.46833 28.82417 P PPL CD 12 37034 1551 Africa/Lubumbashi 2006-01-17
-215668 Kabalo Kabalo Kabalo -6.05 26.91667 P PPL CD 00 29833 556 Africa/Lubumbashi 2012-02-02
-215771 Isiro Isiro Isirio,Isiro,Paulis,Исиро 2.77391 27.61603 P PPL CD 09 127076 761 Africa/Lubumbashi 2012-01-18
-215976 Ilebo Ilebo Franqui,Ilebo,Port-Francqui,Илебо -4.31667 20.58333 P PPL CD 00 107093 358 Africa/Lubumbashi 2012-01-18
-216281 Goma Goma Goma,Ngoma,Гома -1.67917 29.22278 P PPLA CD 11 144124 1512 Africa/Lubumbashi 2012-01-18
-216404 Gbadolite Gbadolite Bado,Badolite,Gbadolite,Гбадолите 4.28333 21.01667 P PPL CD 00 50493 397 Africa/Kinshasa 2012-01-18
-216449 Gandajika Gandajika Gandajika -6.75 23.95 P PPL CD 00 154425 804 Africa/Lubumbashi 2012-01-18
-217389 Demba Demba Demba -5.51 22.26667 P PPL CD 03 22263 631 Africa/Lubumbashi 2012-01-18
-217562 Butembo Butembo Butembo,Бутембо 0.15 29.28333 P PPL CD 00 154621 1750 Africa/Lubumbashi 2012-01-18
-217570 Buta Buta But,Buta,Бут 2.78582 24.72998 P PPL CD 09 50130 402 Africa/Lubumbashi 2012-01-18
-217637 Businga Businga Businga 3.33333 20.88333 P PPL CD 00 28919 358 Africa/Kinshasa 2012-01-18
-217695 Bunia Bunia Bunia,Буниа 1.56667 30.25 P PPL CD 00 96764 1253 Africa/Lubumbashi 2012-01-18
-217745 Bumba Bumba Bumba,Бумба 2.18333 22.46667 P PPL CD 00 95520 365 Africa/Kinshasa 2012-01-18
-217831 Bukavu Bukavu Bukavu,Costermansstad,Costermansville,Букаву -2.50833 28.86083 P PPLA CD 12 225389 1509 Africa/Lubumbashi 2012-01-18
-217834 Bukama Bukama Bukama -9.2 25.85 P PPL CD 00 38770 599 Africa/Lubumbashi 2012-02-02
-218229 Bongandanga Bongandanga Bongandanga 1.5 21.05 P PPL CD 00 4105 398 Africa/Kinshasa 2012-01-18
-218253 Bondo Bondo Bondo 3.81461 23.68665 P PPL CD 09 17860 494 Africa/Lubumbashi 2012-02-02
-218680 Boende Boende Boende -0.21667 20.86667 P PPL CD 00 32091 345 Africa/Kinshasa 2012-01-18
-219057 Beni Beni Beni,Бени 0.5 29.46667 P PPL CD 00 89648 1143 Africa/Lubumbashi 2012-01-18
-219414 Basoko Basoko Basoko 1.23909 23.61598 P PPL CD 09 43709 375 Africa/Lubumbashi 2012-01-18
-220448 Aketi Aketi Aketi,Port Chaltin 2.73877 23.78326 P PPL CD 09 35161 380 Africa/Lubumbashi 2012-01-18
-922704 Lubumbashi Lubumbashi E'ville,Elisabethville,Elizabethstad,Elizabethville,E’ville,Lubumbashi,Lubumbasi,Lubumbasis,Lubumbaši,Lubumbašis,Lumumbashi,lu ben ba xi,lubumbasi,lubumbasi si,lwbwmbashy,rubunbashi,Élisabethville,Лубумбаши,لوبومباشي,ルブンバシ,盧本巴希,루붐바시,루붐바시 시 -11.66089 27.47938 P PPLA CD 05 1373770 1260 Africa/Lubumbashi 2012-03-07
-922741 Likasi Likasi Jadotsville,Jadotville,Likasi,Ликаси -10.98139 26.73333 P PPL CD 05 422414 1289 Africa/Lubumbashi 2012-01-18
-922773 Kolwezi Kolwezi Kolvezi,Kolwezi,Колвези -10.71484 25.46674 P PPL CD 05 418000 1485 Africa/Lubumbashi 2011-10-27
-922806 Kipushi Kipushi Kipushi,Кипуши -11.76667 27.23333 P PPL CD 00 62332 1330 Africa/Lubumbashi 2012-01-18
-923058 Kambove Kambove Kambove -10.87639 26.59694 P PPL CD 05 36702 1392 Africa/Lubumbashi 2012-02-02
-2311127 Tshela Tshela Tshela -4.98333 12.93333 P PPL CD 00 38845 157 Africa/Kinshasa 2012-02-02
-2311968 Nioki Nioki -2.71667 17.68333 P PPL CD 00 40695 325 Africa/Kinshasa 2006-01-17
-2312249 Mushie Mushie -3.01667 16.9 P PPL CD 00 33062 304 Africa/Kinshasa 2006-01-17
-2312888 Mbanza-Ngungu Mbanza-Ngungu Mbanza-Ngungu,Thystad,Thysville,Мбанза-Нгунгу -5.25 14.86667 P PPL CD 00 86356 690 Africa/Kinshasa 2012-01-18
-2312895 Mbandaka Mbandaka Bandaka,Cocquilhatville,Coquilhalville,Coquilhatstad,Coquilhatville,Mbandaka,Mbándáká,Wangata,Мбандака 0.04865 18.26034 P PPLA CD 02 184185 315 Africa/Kinshasa 2012-01-18
-2313002 Matadi Matadi Matadi,Matidi,matadi,Матади,מאטדי,マタディ -5.81667 13.45 P PPLA CD 08 180109 9 Africa/Kinshasa 2012-01-18
-2313084 Mangai Mangai -4.05 19.53333 P PPL CD 00 37188 421 Africa/Kinshasa 2006-01-17
-2313371 Lukolela Lukolela -1.06046 17.1821 P PPL CD 00 15000 283 Africa/Kinshasa 2012-02-17
-2313762 Libenge Libenge 3.65 18.63333 P PPL CD 00 27053 355 Africa/Kinshasa 2006-01-17
-2314302 Kinshasa Kinshasa Kinsasa,Kinsaso,Kinshasa,Kinshasae,Kinszasa,Kinsásá,Kinŝaso,Kinšasa,Leopoldstad,Leopoldville,Léopoldville,jin xia sha,kinshasa,kinsyasa,kynshasa,kynshaza,Киншасæ,Киншаса,קינשאסה,كينشاسا,کینشازا,ኪንሻሳ,キンシャサ,金夏沙,킨샤사 -4.32459 15.32146 P PPLC CD 06 7785965 283 Africa/Kinshasa 2010-05-30
-2314705 Kikwit Kikwit Kikvite,Kikwit,Kitwit,Киквите -5.04098 18.81619 P PPL CD 01 186991 466 Africa/Kinshasa 2011-05-12
-2315026 Kasongo-Lunda Kasongo-Lunda -6.46667 16.81667 P PPL CD 00 20060 482 Africa/Kinshasa 2006-01-17
-2315057 Kasangulu Kasangulu Kasangulu -4.59111 15.17083 P PPL CD 08 27961 387 Africa/Kinshasa 2012-02-02
-2315417 Inongo Inongo Inongo -1.95 18.26667 P PPL CD 00 40113 292 Africa/Kinshasa 2012-02-02
-2315728 Gemena Gemena Gemena,Gemene,Гемене 3.25 19.76667 P PPL CD 02 117639 394 Africa/Kinshasa 2012-01-18
-2316259 Bulungu Bulungu Bulungu -4.55 18.6 P PPL CD 00 48344 429 Africa/Kinshasa 2012-02-02
-2316473 Bosobolo Bosobolo Bosobolo 4.18333 19.9 P PPL CD 00 14553 408 Africa/Kinshasa 2012-01-18
-2316748 Bolobo Bolobo Bolobo -2.16667 16.23333 P PPL CD 00 27862 317 Africa/Kinshasa 2012-01-18
-2317397 Bandundu Bandundu Bandundu,Banningville,Бандунду -3.31667 17.36667 P PPLA CD 01 118211 300 Africa/Kinshasa 2012-03-22
-2593460 Masina Masina -4.38361 15.39139 P PPL CD 06 485167 288 Africa/Kinshasa 2007-05-31
-235826 Zemio Zemio Zemio 5.03144 25.13614 P PPL CF 00 14000 579 Africa/Bangui 2012-01-18
-236524 Rafaï Rafai 4.95 23.91667 P PPL CF 00 13459 565 Africa/Bangui 2006-01-17
-236844 Ouango Ouango Ouango,Quango,Uango 4.31325 22.55524 P PPL CF 00 4365 409 Africa/Bangui 2012-01-18
-236901 Ouadda Ouadda Ouadda,Quadda,Uadda 8.07771 22.40075 P PPL CF 03 5434 710 Africa/Bangui 2012-01-18
-236950 Obo Obo Obo 5.39978 26.48688 P PPLA CF 05 12887 642 Africa/Bangui 2012-01-18
-237379 Ndélé Ndele N'Delle,Nadele,Nadélé,Ndele,Ndélé,N’Delle 8.41091 20.64728 P PPLA CF 01 11764 514 Africa/Bangui 2012-01-18
-237478 Mobaye Mobaye Mobaye,Mobie 4.31902 21.17861 P PPLA CF 02 19431 388 Africa/Bangui 2012-01-18
-238373 Kembé Kembe 4.62275 21.88645 P PPL CF 00 11513 499 Africa/Bangui 2011-04-19
-238566 Ippy Ippy Ippi,Ippy 6.26793 21.22468 P PPL CF 00 16571 596 Africa/Bangui 2012-01-18
-239300 Gambo Gambo Gambo 4.64816 22.26331 P PPL CF 00 4971 483 Africa/Bangui 2012-01-18
-239899 Bria Bria Bria,Бриа 6.54233 21.98633 P PPLA CF 03 29027 572 Africa/Bangui 2012-01-18
-240210 Birao Birao Birao 10.28488 22.78818 P PPLA CF 14 10178 468 Africa/Bangui 2012-01-18
-240498 Bangassou Bangassou Bangassou,Bangassu,Bangasu,Бангасу 4.74132 22.81838 P PPLA CF 08 24361 506 Africa/Bangui 2012-01-18
-240604 Bambari Bambari Bambari,Бамбари 5.76795 20.67565 P PPLA CF 11 32547 465 Africa/Bangui 2012-01-18
-240999 Alindao Alindao Alinda,Alindao,Alindo 5.02666 21.20876 P PPL CF 00 14234 441 Africa/Bangui 2012-01-18
-2383119 Sibut Sibut Fort-Sibut,Sibut,Сибут 5.71801 19.07389 P PPLA CF 06 34267 431 Africa/Bangui 2012-01-18
-2383523 Paoua Paoua Pahua,Paoua 7.24269 16.44059 P PPL CF 13 18441 601 Africa/Bangui 2012-01-18
-2383827 Nola Nola Djembe,Nola 3.52716 16.04 P PPLA CF 16 26809 399 Africa/Bangui 2012-01-18
-2384377 Mongoumba Mongoumba Mongoumba 3.64153 18.59364 P PPL CF 00 10885 356 Africa/Bangui 2012-01-18
-2384770 Mbaïki Mbaiki Mbaiki,Mbaïki 3.86781 17.98923 P PPLA CF 07 67132 476 Africa/Bangui 2012-01-18
-2385535 Kouango Kouango Kouango,Kuango 4.99337 19.96186 P PPL CF 00 7529 363 Africa/Bangui 2012-01-18
-2386012 Kaga Bandoro Kaga Bandoro Crampel,Fort-Crampel,Kaga Bandoro,Kaga-Bandoro 6.98961 19.18744 P PPLA CF 15 56520 416 Africa/Bangui 2012-01-18
-2386042 Kabo Kabo 7.69937 18.62903 P PPL CF 12 13637 418 Africa/Bangui 2011-04-19
-2386756 Gamboula Gamboula Gamboula,Gamoula 4.11775 15.13926 P PPL CF 00 7646 589 Africa/Bangui 2012-01-18
-2387435 Damara Damara Damara,Дамара 4.96075 18.7035 P PPL CF 00 20093 415 Africa/Bangui 2012-01-18
-2387495 Carnot Carnot Carnot 4.9409 15.86645 P PPL CF 00 38071 511 Africa/Bangui 2012-01-18
-2387546 Bozoum Bozoum Bosum,Bozoum,Bozum,Bozume,Бозуме 6.31933 16.37992 P PPLA CF 13 40201 664 Africa/Bangui 2012-01-18
-2387890 Bouca Bouca Bouca,Bouka,Buka 6.51046 18.27331 P PPL CF 00 13250 468 Africa/Bangui 2012-01-18
-2387926 Bouar Bouar Bouar,Buar,Buare,Буаре 5.93404 15.59599 P PPLA CF 09 28581 976 Africa/Bangui 2012-01-18
-2388036 Bossangoa Bossangoa Amangba,Bosangoa,Bossango,Bossangoa,Босангоа 6.49263 17.45518 P PPLA CF 12 27428 456 Africa/Bangui 2012-01-18
-2388614 Boda Boda Boda 4.31887 17.46953 P PPL CF 00 16655 507 Africa/Bangui 2012-01-18
-2388720 Boali Boali Boali,Bouali 4.80048 18.12747 P PPL CF 00 5876 379 Africa/Bangui 2012-01-18
-2388873 Bimbo Bimbo Bimbo,Bimo 4.25671 18.41583 P PPLA CF 17 129655 371 Africa/Bangui 2010-08-21
-2389086 Berbérati Berberati Berberati,Berbérati,Берберати 4.26116 15.79216 P PPLA CF 04 61815 599 Africa/Bangui 2011-02-01
-2389691 Batangafo Batangafo Batangafo,Devo,Dévo 7.30082 18.2833 P PPL CF 12 15310 425 Africa/Bangui 2012-01-18
-2389804 Baoro Baoro Baoro,Baoro-Boubangoui,Baoro-Boudinghe,Baoro-Boudinghé 5.66667 15.96667 P PPL CF 00 6319 728 Africa/Bangui 2012-01-18
-2389853 Bangui Bangui Bangi,Bangis,Bangui,Mpan'nkoui,ban ji,bang-gi,bangi,bangwyy,Μπανγκουί,Банги,Бангі,בנגואי,بانگوئی,ባንጊ,バンギ,班基,방기 4.36122 18.55496 P PPLC CF 18 542393 351 Africa/Bangui 2010-05-30
-2255285 Sibiti Sibiti Sibidi,Sibiti -3.68192 13.34985 P PPLA CG 05 19089 531 Africa/Brazzaville 2011-10-26
-2255304 Sémbé Sembe Sembe,Ssembe,Sémbé 1.64806 14.58056 P PPL CG 10 3113 427 Africa/Brazzaville 2012-01-17
-2255414 Pointe-Noire Pointe-Noire Pointe-Noire,Puehnt-Nuar,Puent Nuaras,puaengteunualeu,Пуэнт-Нуар,푸앵트누아르 -4.77609 11.86352 P PPLA CG 7280295 659084 12 Africa/Brazzaville 2011-10-26
-2255542 Owando Owando Fort Pousset,Fort-Rousset,Ouando,Ovando,Owando,Овандо -0.48193 15.89988 P PPLA CG 13 23952 355 Africa/Brazzaville 2011-10-27
-2255564 Ouésso Ouesso Ouesso,Ouésso 1.61361 16.05167 P PPLA CG 10 23915 348 Africa/Brazzaville 2012-01-17
-2256895 Mossendjo Mossendjo Massendjo,Mossendio,Mossendjo -2.95056 12.72611 P PPL CG 07 18231 454 Africa/Brazzaville 2012-01-17
-2257879 Makoua Makoua Makoua,Makoue 0.00694 15.63333 P PPL CG 13 11355 324 Africa/Brazzaville 2012-01-17
-2257990 Madingou Madingou Madingo,Madingou,Madingu,Мадингу -4.15361 13.55 P PPLA CG 01 22760 216 Africa/Brazzaville 2012-01-17
-2258261 Dolisie Dolisie Dolisi,Dolisie,Dolosie,Loubomo,Долиси -4.19972 12.67389 P PPLA CG 07 103894 353 Africa/Brazzaville 2012-01-17
-2258378 Loandjili Loandjili Loandjili,Louantili -4.75611 11.85778 P PPL CG 04 23204 7 Africa/Brazzaville 2012-01-17
-2258984 Kinkala Kinkala Kinkala -4.36139 14.76444 P PPLA CG 11 13882 426 Africa/Brazzaville 2012-02-01
-2259383 Kayes Kayes Jacob,Kai,Kajes,Kaye,Kayes,Kaï,Nkayi,Кайес -4.16556 13.29278 P PPL CG 01 58737 151 Africa/Brazzaville 2012-01-17
-2259655 Impfondo Impfondo Desbordesville,Impfondo,Imponfo,Импфондо 1.63806 18.06667 P PPLA CG 06 20859 315 Africa/Brazzaville 2012-01-17
-2259947 Gamboma Gamboma -1.87639 15.86444 P PPL CG 08 20877 366 Africa/Brazzaville 2006-01-17
-2260009 Ewo Ewo Eouo,Ewo -0.8725 14.82056 P PPLA CG 14 4923 376 Africa/Brazzaville 2012-01-17
-2260401 Djambala Djambala Dambala,Djambala,Djamballa -2.54472 14.75333 P PPLA CG 08 9650 790 Africa/Brazzaville 2012-01-17
-2260535 Brazzaville Brazzaville Braza,Brazavil,Brazavilis,Brazavilo,Brazzavil',Brazzaville,Maya-Maya,Mprazabil,N'Tamo,beulajabil,brazafyl,brazawyl,brzwwyl,bu la chai wei er,burazavu~iru,Μπραζαβίλ,Браззавиль,ברזוויל,برازافيل,برازاویل,ብራዛቪል,ブラザヴィル,布拉柴维尔,브라자빌 -4.26583 15.28318 P PPLC CG 12 1284609 284 Africa/Brazzaville 2011-10-26
-2657886 Zwingen Zwingen 47.43825 7.53027 P PPL CH BL 1302 2793 2162 342 Europe/Zurich 2010-04-05
-2657887 Zweisimmen Zweisimmen Zweisimmen 46.55452 7.37385 P PPL CH BE 219 794 2813 944 Europe/Zurich 2012-01-17
-2657889 Zuzwil Zuzwil 47.47452 9.11196 P PPL CH SG 1728 3426 4226 533 Europe/Zurich 2010-04-05
-2657891 Bad Zurzach Bad Zurzach Bad Zurzach,Zurzach 47.58764 8.29365 P PPL CH AG 1911 4323 4213 345 Europe/Zurich 2010-04-05
-2657896 Zürich Zurich Cirihe,Cirikh,Ciurichas,Ciūrichas,Cjurikh,Cjurykh,Curych,Cīrihe,Lungsod ng Zuerich,Lungsod ng Zürich,Tsurique,Turicum,Turitg,ZRH,Zuerich,Zuerih,Zuric,Zurich,Zuricu,Zurigo,Zuriko,Zurique,Zurych,Zurìcu,Zyriche,Zúrich,Zürich,Zürih,churihhi,chwilihi,su li shi,sywrsh,zyryk,zyurikha,zywrh,zywrkh,Ζυρίχη,Цирих,Цюрих,Цюрых,ציריך,زيورخ,سيۇرىخ,ܙܝܘܪܚ,ܨܝܘܪܫ,ज़्यूरिख,チューリッヒ,苏黎世,취리히 47.36667 8.55 P PPLA CH ZH 112 261 341730 429 Europe/Zurich 2012-01-17
-2657898 Zuoz Zuoz Zuoz 46.60209 9.95885 P PPL CH GR 1827 3791 1209 1725 Europe/Zurich 2012-01-17
-2657899 Zunzgen Zunzgen Zunzgen 47.45671 7.80708 P PPL CH BL 1304 2863 2632 386 Europe/Zurich 2012-01-17
-2657900 Zumikon Zumikon 47.33158 8.62271 P PPL CH 160 4424 649 Europe/Zurich 2006-10-05
-2657908 Zug Zug Cug,Tugium,Zoug,Zug,Zugo,Цуг 47.17242 8.51744 P PPLA CH ZG 900 1711 23435 424 Europe/Zurich 2012-01-17
-2657910 Zuchwil Zuchwil 47.20173 7.56649 P PPL CH SO 1106 2534 9268 434 Europe/Zurich 2010-04-05
-2657912 Zollikon Zollikon 47.34019 8.57407 P PPL CH ZH 107 161 5812 469 Europe/Zurich 2006-10-05
-2657913 Zollikofen Zollikofen 46.99905 7.45809 P PPL CH BE 203 361 9121 558 Europe/Zurich 2010-04-05
-2657915 Zofingen Zofingen 47.28779 7.94586 P PPLA2 CH AG 1910 4289 11451 441 Europe/Zurich 2011-03-01
-2657916 Zizers Zizers 46.93575 9.56491 P PPL CH GR 1826 3947 3009 563 Europe/Zurich 2011-04-18
-2657926 Zernez Zernez Zernes,Zernez 46.70087 10.09461 P PPL CH GR 1825 3746 1053 1477 Europe/Zurich 2012-01-17
-2657928 Zermatt Zermatt Cermat,Prat-Borgno,Prât-Borgno,Zermatt,cai er ma te,tsu~erumatto,zrmt,zyrmat,Цермат,צרמט,زيرمات,ツェルマット,采尔马特 46.02126 7.74912 P PPL CH VS 2313 6300 6629 1608 1609 Europe/Zurich 2012-02-27
-2657931 Zell Zell Zell 47.13673 7.92495 P PPL CH LU 305 1150 1943 589 Europe/Zurich 2012-02-01
-2657935 Zäziwil Zaziwil 46.90196 7.66185 P PPL CH BE 212 628 1535 686 Europe/Zurich 2010-04-05
-2657940 Yvonand Yvonand 46.80034 6.74249 P PPL CH VD 2224 5939 2401 436 433 Europe/Zurich 2010-04-05
-2657941 Yverdon-les-Bains Yverdon-les-Bains Aebura,Eburodunum,Iverdon-le-Ben,Yverden,Yverdon,Ивердон-ле-Бен 46.77852 6.64115 P PPL CH VD 2224 5938 23702 438 Europe/Zurich 2012-03-30
-2657943 Wyssachen Wyssachen Wyssachen 47.07851 7.82922 P PPL CH BE 225 960 1251 710 Europe/Zurich 2012-01-17
-2657944 Wynigen Wynigen Wynigen 47.10586 7.66681 P PPL CH BE 206 424 2090 532 Europe/Zurich 2012-01-17
-2657945 Wynau Wynau 47.2557 7.81626 P PPL CH BE 202 345 1610 448 Europe/Zurich 2010-04-05
-2657947 Würenlos Wurenlos Wurenlos,Würenlos 47.44208 8.36439 P PPL CH AG 1902 4048 5497 418 Europe/Zurich 2012-02-01
-2657948 Würenlingen Wurenlingen Wurenling,Wurenlingen,Würenling,Würenlingen 47.53356 8.25666 P PPL CH AG 1902 4047 3741 363 Europe/Zurich 2012-01-17
-2657953 Worben Worben 47.10279 7.29518 P PPL CH BE 216 755 2042 439 Europe/Zurich 2010-04-05
-2657954 Worb Worb Worb 46.92984 7.56306 P PPL CH BE 212 627 11053 585 Europe/Zurich 2010-08-09
-2657955 Wollerau Wollerau Wollerau 47.19478 8.71903 P PPL CH SZ 503 1321 6883 520 Europe/Zurich 2012-01-17
-2657956 Wolhusen Wolhusen Wolhusen 47.05983 8.07389 P PPL CH LU 301 1009 4050 586 Europe/Zurich 2012-01-17
-2657957 Wolfwil Wolfwil Wolfwil 47.26819 7.78967 P PPL CH SO 1101 2408 2079 429 Europe/Zurich 2012-01-17
-2657961 Wolfenschiessen Wolfenschiessen Wolfenschiessen 46.90322 8.39423 P PPL CH NW 700 1511 2080 517 Europe/Zurich 2012-01-17
-2657963 Wohlen Wohlen Wohlen 47.35236 8.27877 P PPL CH AG 1903 4072 13875 421 Europe/Zurich 2012-01-17
-2657964 Wohlen Wohlen 46.97118 7.35685 P PPL CH BE 203 360 9159 546 Europe/Zurich 2010-04-05
-2657967 Wittnau Wittnau Wittnau 47.48139 7.97577 P PPL CH AG 1906 4181 1062 409 Europe/Zurich 2012-02-01
-2657968 Wittenbach Wittenbach Wittenbach 47.46308 9.37761 P PPL CH SG 1721 3204 8542 604 Europe/Zurich 2012-02-01
-2657969 Zürich (Kreis 7) / Witikon Zuerich (Kreis 7) / Witikon Witikon 47.35751 8.59105 P PPLX CH ZH 112 261 9099 599 Europe/Zurich 2006-10-21
-2657970 Winterthur Winterthur Eulachstadt,Vintertur,Vitudurum,Winterthour,Winterthur,Винтертур 47.5 8.75 P PPLA2 CH ZH 110 230 91908 449 Europe/Zurich 2010-11-23
-2657976 Windisch Windisch 47.47899 8.21842 P PPL CH AG 1904 4123 6689 363 Europe/Zurich 2010-04-05
-2657977 Wimmis Wimmis Wimmis 46.67587 7.63972 P PPL CH BE 217 769 2237 638 Europe/Zurich 2012-01-17
-2657978 Willisau Willisau Willisau Stadt 47.12183 7.99418 P PPLA2 CH LU 305 1151 3125 558 Europe/Zurich 2011-03-01
-2657988 Wildhaus Wildhaus Wildhaus,Wildhaus SG 47.20148 9.35488 P PPL CH SG 1727 3357 1221 1062 Europe/Zurich 2012-01-17
-2657989 Wilderswil Wilderswil Wilderswil 46.66369 7.86175 P PPL CH BE 211 594 2303 598 Europe/Zurich 2010-04-05
-2657992 Wilchingen Wilchingen Wilchingen 47.66746 8.46774 P PPL CH SH 1406 2974 2193 424 426 Europe/Zurich 2012-01-17
-2657993 Wila Wila 47.41928 8.84524 P PPL CH ZH 108 181 1387 572 Europe/Zurich 2006-10-05
-2657996 Wil Wil 47.46152 9.04552 P PPL CH SG 1728 3425 16808 569 Europe/Zurich 2010-04-05
-2657997 Wikon Wikon 47.26339 7.96801 P PPL CH LU 305 1147 1218 463 Europe/Zurich 2010-04-05
-2657998 Wigoltingen Wigoltingen Wigoltingen 47.59695 9.0314 P PPL CH TG 2008 4951 2040 431 Europe/Zurich 2012-01-17
-2658004 Wiesendangen / Wiesendangen (Dorf) Wiesendangen / Wiesendangen (Dorf) Wiesendangen (Dorf) 47.5217 8.78967 P PPLX CH ZH 110 229 1649 470 Europe/Zurich 2006-10-21
-2658006 Wiedlisbach Wiedlisbach Wiedlisbach 47.25194 7.6461 P PPL CH BE 226 995 2213 471 Europe/Zurich 2012-01-17
-2658007 Zürich (Kreis 3) / Alt-Wiedikon Zuerich (Kreis 3) / Alt-Wiedikon Alt-Wiedikon 47.36201 8.51497 P PPLX CH CH ZH 112 261 14931 431 Europe/Zurich 2006-10-21
-2658010 Wetzikon Wetzikon 47.3264 8.79779 P PPL CH ZH 121 12969 539 Europe/Zurich 2011-01-13
-2658011 Wettingen Wettingen Wettingen 47.4705 8.31636 P PPL CH AG 1902 4045 18191 386 Europe/Zurich 2012-01-17
-2658014 Werthenstein Werthenstein Werthenstein 47.05507 8.10661 P PPL CH LU 301 1009 1909 602 Europe/Zurich 2012-01-17
-2658021 Welschenrohr Welschenrohr Welschenrohr 47.28029 7.52634 P PPL CH SO 1102 2429 1179 678 Europe/Zurich 2012-01-17
-2658024 Weisslingen Weisslingen 47.43063 8.76787 P PPL CH ZH 108 180 1975 599 Europe/Zurich 2006-10-05
-2658035 Weiningen Weiningen 47.42022 8.43644 P PPL CH ZH 111 251 1753 419 Europe/Zurich 2006-10-05
-2658036 Weinfelden Weinfelden Weinfelden 47.56667 9.1 P PPLA2 CH TG 2008 4946 9414 429 Europe/Zurich 2011-03-01
-2658038 Weggis Weggis Weggis 47.03208 8.43219 P PPL CH LU 303 1069 3863 439 Europe/Zurich 2012-01-17
-2658039 Wegenstetten Wegenstetten Wegenstetten 47.49794 7.93159 P PPL CH AG 1909 4262 1080 435 Europe/Zurich 2012-01-17
-2658040 Weesen Weesen 47.13447 9.09644 P PPL CH SG 1726 3316 1402 420 424 Europe/Zurich 2010-04-05
-2658041 Wauwil Wauwil Wauwil 47.18457 8.021 P PPL CH LU 305 1127 1657 508 Europe/Zurich 2012-01-17
-2658042 Wattwil Wattwil Wattwil 47.30225 9.08757 P PPL CH SG 1727 3377 8089 613 Europe/Zurich 2012-02-01
-2658043 Wattenwil Wattenwil Wattenwil 46.76973 7.50835 P PPL CH BE 222 886 2788 598 Europe/Zurich 2012-01-17
-2658051 Wängi Wangi Wangi,Wängi 47.49761 8.95356 P PPL CH TG 2006 4781 4051 473 Europe/Zurich 2012-01-17
-2658052 Wangen an der Aare Wangen an der Aare Wangen an der Aare 47.232 7.65448 P PPL CH BE 226 992 1944 421 Europe/Zurich 2012-01-17
-2658053 Wangen Wangen Wangen bei Olten 47.34365 7.86982 P PPL CH SO 1108 2586 4686 420 Europe/Zurich 2010-04-05
-2658055 Walzenhausen Walzenhausen Walzenhausen 47.45007 9.60495 P PPL CH AR 1503 3037 2120 682 Europe/Zurich 2012-01-17
-2658058 Waltenschwil Waltenschwil Waltenschwil 47.33493 8.30344 P PPL CH AG 1908 4240 2192 431 Europe/Zurich 2012-01-17
-2658060 Wallisellen Wallisellen 47.41499 8.59672 P PPL CH ZH 103 69 11705 462 Europe/Zurich 2006-10-05
-2658061 Walenstadt Walenstadt Valenshtadt,Walenstadt,Wallendstadt,Wallenstadt,Валенштадт 47.12411 9.31194 P PPL CH SG 1725 3298 5000 426 Europe/Zurich 2011-05-24
-2658064 Walkringen Walkringen Walkringen 46.94856 7.6204 P PPL CH BE 212 626 1817 693 Europe/Zurich 2012-01-17
-2658066 Waldstatt Waldstatt Waldstatt 47.35627 9.28345 P PPL CH AR 1501 3007 1722 823 Europe/Zurich 2010-04-05
-2658067 Waldkirch Waldkirch Waldkirch 47.46859 9.28605 P PPL CH SG 1721 3444 3137 625 Europe/Zurich 2012-01-17
-2658071 Waldenburg Waldenburg Waldenburg 47.38333 7.75 P PPLA2 CH BL 1305 2895 1337 544 Europe/Zurich 2011-03-01
-2658073 Wald Wald 47.27595 8.91405 P PPL CH ZH 105 120 3061 621 Europe/Zurich 2006-10-05
-2658074 Wald Wald 46.81667 7.85 P PPL CH BE 223 906 1074 940 Europe/Zurich 2010-04-05
-2658075 Walchwil Walchwil Walchwil 47.10169 8.51693 P PPL CH ZG 900 1710 3268 479 Europe/Zurich 2012-01-17
-2658076 Wahlern Wahlern Wahlern,Walern 46.82806 7.35318 P PPL CH BE 221 854 6225 835 Europe/Zurich 2012-01-17
-2658077 Wahlen Wahlen Wahlen 47.40226 7.51511 P PPL CH BL 1302 2792 1383 404 Europe/Zurich 2012-01-17
-2658081 Wagenhausen Wagenhausen Wagenhausen 47.65969 8.8479 P PPL CH TG 2007 4871 1524 405 Europe/Zurich 2012-01-17
-2658082 Wädenswil Wadenswil 47.22683 8.6687 P PPL CH ZH 106 142 13269 450 Europe/Zurich 2011-05-05
-2658090 Vuadens Vuadens Vuadens,Wuadingen,Wüadingen 46.61731 7.02052 P PPL CH FR 1003 2160 1835 806 Europe/Zurich 2012-01-17
-2658093 Vouvry Vouvry Vouvry 46.33625 6.89053 P PPL CH VS 2308 6159 3296 391 Europe/Zurich 2012-01-17
-2658096 Vorderthal Vorderthal Vorder Waggithal,Vorder Wäggithal,Vordertal,Vorderthal 47.12092 8.90185 P PPL CH SZ 505 1348 1006 736 Europe/Zurich 2012-01-17
-2658103 Vordemwald Vordemwald 47.27585 7.90114 P PPL CH AG 1910 4287 1661 428 Europe/Zurich 2010-04-05
-2658105 Volketswil / Volketswil (Dorf) Volketswil / Volketswil (Dorf) Volketswil (Dorf) 47.39016 8.69085 P PPLX CH ZH 109 199 2723 470 Europe/Zurich 2006-10-21
-2658107 Vitznau Vitznau Vitznau 47.01014 8.4842 P PPL CH LU 303 1068 1496 448 Europe/Zurich 2012-01-17
-2658110 Visperterminen Visperterminen 46.25899 7.90192 P PPL CH VS 2313 6298 1440 1328 Europe/Zurich 2010-04-05
-2658112 Visp Visp Viege,Viège 46.2937 7.88149 P PPLA2 CH VS 2313 6297 6576 653 Europe/Zurich 2011-03-01
-2658115 Vionnaz Vionnaz 46.31101 6.90062 P PPL CH VS 2308 6158 1719 395 Europe/Zurich 2010-04-05
-2658118 Villnachern Villnachern 47.47098 8.15975 P PPL CH AG 1904 4122 1473 366 Europe/Zurich 2010-04-05
-2658119 Villmergen Villmergen Villmergen 47.34917 8.24583 P PPL CH AG 1903 4080 5489 425 Europe/Zurich 2012-01-17
-2658120 Villigen Villigen 47.52682 8.21486 P PPL CH AG 1904 4121 1381 367 Europe/Zurich 2010-04-05
-2658123 Villeneuve Villeneuve Vil'njov,Villeneuve,Villeneuve VD,Viln'ov,Вилньов,Вильнёв 46.39869 6.92654 P PPL CH VD 2221 5414 4349 376 Europe/Zurich 2010-04-05
-2658124 Villaz-Saint-Pierre Villaz-Saint-Pierre 46.72074 6.95638 P PPL CH FR 1002 2111 1093 728 Europe/Zurich 2010-04-05
-2658126 Villars-sur-Ollon Villars-sur-Ollon Vijjar-sjur-Olon,Villar,Villar-sjur-Olon,Villars,Вийяр-сюр-Олон,Виллар,Виллар-сюр-Олон 46.29832 7.05631 P PPL CH CH VD 2221 5409 2500 1273 Europe/Zurich 2010-04-05
-2658127 Villars-sur-Marly Villars-sur-Marly 46.77485 7.18581 P PPL CH FR 1004 2216 8008 724 Europe/Zurich 2010-04-05
-2658128 Villars-sur-Glâne Villars-sur-Glane 46.79054 7.11717 P PPL CH FR 1004 2228 10021 656 Europe/Zurich 2010-04-05
-2658135 Viganello Viganello 46.01342 8.96879 P PPL CH TI 2105 5192 6375 301 Europe/Zurich 2010-04-05
-2658137 Vicques Vicques Vicques 47.35102 7.40266 P PPL CH JU 2601 6727 1741 447 Europe/Zurich 2012-01-17
-2658143 Veyrier Veyrier 46.16699 6.18436 P PPL CH GE 2500 6645 9800 424 Europe/Zurich 2010-04-05
-2658144 Vex Vex Vex 46.2 7.4 P PPL CH VS 2305 6089 1418 1124 Europe/Zurich 2012-02-01
-2658145 Vevey Vevey Lungsod ng Vevey,V'ove,Veve,Vevey,Vevê,Vibiscum,vu~evu~ei,Веве,Вьове,ヴェヴェイ 46.46116 6.84328 P PPL CH VD 2230 5890 15812 388 Europe/Zurich 2010-04-05
-2658146 Vétroz Vetroz Vetroz,Vétroz 46.22414 7.28903 P PPL CH VS 2302 6025 4137 485 Europe/Zurich 2012-01-17
-2658151 Versoix Versoix Versoix,Versoix-la-Raison 46.28402 6.16166 P PPL CH GE 2500 6644 11467 370 Europe/Zurich 2012-02-28
-2658152 Verscio Verscio Verscio 46.19076 8.72772 P PPL CH TI 2104 5133 1009 574 Europe/Zurich 2012-01-17
-2658154 Vernier Vernier 46.21702 6.08497 P PPL CH GE 2500 6643 30086 440 Europe/Zurich 2010-04-05
-2658157 Vernayaz Vernayaz 46.13667 7.03906 P PPL CH VS 2310 6219 1612 455 Europe/Zurich 2010-04-05
-2658168 Verbier Verbier VERB'E,Verbier,ВЕРБЬЕ 46.09872 7.21621 P PPL CH VS 2303 6031 2000 1444 Europe/Zurich 2012-01-17
-2658172 Veltheim (Kreis 5) Veltheim Veltheim (Kreis 5) 47.51419 8.717 P PPLX CH ZH 110 230 8901 472 Europe/Zurich 2010-04-05
-2658173 Veltheim Veltheim 47.43796 8.14722 P PPL CH AG 1904 4120 1374 376 Europe/Zurich 2010-04-05
-2658176 Vechigen Vechigen Vechigen 46.94616 7.56065 P PPL CH BE 203 359 4619 605 Europe/Zurich 2010-08-09
-2658185 Varen Varen 46.3186 7.60743 P PPL CH VS 2306 6116 1203 759 Europe/Zurich 2010-04-05
-2658188 Vandœuvres Vandoeuvres Vandoeuvres,Vandœuvres 46.22179 6.20285 P PPL CH GE 2500 6642 2826 461 Europe/Zurich 2012-02-01
-2658194 Vallorbe Vallorbe 46.71256 6.37894 P PPL CH VD 2224 5764 3098 757 Europe/Zurich 2010-04-05
-2658209 Uzwil Uzwil Uzwil 47.43813 9.13922 P PPL CH SG 1728 3408 12111 535 Europe/Zurich 2012-01-17
-2658210 Uznach Uznach Uznach 47.22421 8.98263 P PPL CH SG 1726 3339 5561 411 Europe/Zurich 2012-02-01
-2658211 Utzenstorf Utzenstorf Utzenstorf 47.12981 7.55838 P PPL CH BE 209 552 3625 475 Europe/Zurich 2012-01-17
-2658212 Uttwil Uttwil Uttwil 47.5836 9.3424 P PPL CH TG 2001 4451 1492 418 Europe/Zurich 2012-02-01
-2658213 Uttigen Uttigen Uttigen 46.79435 7.57789 P PPL CH BE 224 944 1673 543 Europe/Zurich 2012-01-17
-2658216 Uster Uster 47.34713 8.72091 P PPLA2 CH ZH 109 198 23279 469 Europe/Zurich 2011-03-01
-2658217 Urtenen Urtenen 47.02667 7.50081 P PPL CH BE 209 551 5258 528 Europe/Zurich 2011-04-18
-2658223 Urnäsch Urnasch Urnaesch,Urnasch,Urnäsch 47.31669 9.2825 P PPL CH AR 1501 3006 2304 834 Europe/Zurich 2012-01-17
-2658230 Wetzikon / Unter-Wetzikon Wetzikon / Unter-Wetzikon Unter-Wetzikon 47.31637 8.79369 P PPLX CH ZH 105 121 2521 532 Europe/Zurich 2006-10-21
-2658232 Untervaz Untervaz Untervaz 46.9275 9.53422 P PPL CH GR 1826 3946 2303 573 Europe/Zurich 2012-01-17
-2658237 Untersiggenthal Untersiggenthal Unter-Siggental 47.50213 8.25554 P PPL CH AG 1902 4044 6344 385 Europe/Zurich 2010-04-05
-2658240 Unterseen Unterseen Unterseen 46.6853 7.84722 P PPL CH BE 211 593 5150 570 Europe/Zurich 2012-01-17
-2658244 Unterlunkhofen Unterlunkhofen Unterlunkhofen 47.3212 8.38102 P PPL CH AG 1903 4079 1263 395 Europe/Zurich 2010-04-05
-2658248 Unterkulm Unterkulm Kulm,Unterkulm 47.30998 8.11371 P PPL CH AG 1905 4146 3099 464 Europe/Zurich 2012-01-17
-2658249 Illnau / Unter-Illnau Illnau / Unter-Illnau Unter-Illnau 47.40787 8.72607 P PPLX CH ZH 108 174 2011 506 Europe/Zurich 2006-10-21
-2658250 Unteriberg Unteriberg Unteriberg 47.05 8.78333 P PPL CH SZ 506 1368 2307 1014 Europe/Zurich 2012-01-17
-2658253 Unterengstringen Unterengstringen 47.41396 8.44761 P PPL CH ZH 111 249 2675 421 Europe/Zurich 2006-10-05
-2658256 Unterehrendingen Unterehrendingen Ehrendingen 47.5025 8.34729 P PPL CH AG 1902 4049 1790 439 Europe/Zurich 2010-04-05
-2658264 Unterägeri Unterageri Ageri,Unteraegeri,Unterageri,Unteräegeri,Unterägeri,Ägeri 47.13644 8.5853 P PPL CH ZG 900 1709 7973 727 Europe/Zurich 2012-01-17
-2658269 Uitikon Uitikon Uitikon am Albis 47.36911 8.45699 P PPL CH 248 3282 562 Europe/Zurich 2006-10-05
-2658271 Uhwiesen Uhwiesen 47.67074 8.63542 P PPL CH 34 1140 468 Europe/Zurich 2006-10-05
-2658276 Uetikon Uetikon Uetikon am See 47.26441 8.67925 P PPL CH 159 3431 451 Europe/Zurich 2006-10-05
-2658277 Uetendorf Uetendorf Uetendorf,Utendorf,Ütendorf 46.77392 7.57251 P PPL CH BE 224 944 5654 557 Europe/Zurich 2012-01-17
-2658279 Uerkheim Uerkheim Uerkheim 47.30289 8.02371 P PPL CH AG 1910 4286 1302 455 Europe/Zurich 2012-01-17
-2658280 Uerikon Uerikon 47.23672 8.7573 P PPL CH ZH 107 158 1794 420 Europe/Zurich 2006-10-05
-2658281 Ueberstorf Ueberstorf Uberstorf,Ueberstorf,Überstorf 46.86587 7.30998 P PPL CH FR 1006 2308 2133 655 Europe/Zurich 2012-01-17
-2658283 Udligenswil Udligenswil Udligenswil 47.09005 8.40335 P PPL CH LU 303 1067 2252 621 Europe/Zurich 2012-02-01
-2658287 Turtmann Turtmann Turtmann 46.30148 7.70195 P PPL CH VS 2306 6114 1025 628 Europe/Zurich 2012-01-17
-2658288 Turgi Turgi 47.49201 8.25412 P PPL CH AG 1902 4042 2982 341 Europe/Zurich 2010-04-05
-2658289 Turbenthal Turbenthal Turbental 47.43633 8.84629 P PPL CH ZH 110 228 3109 555 Europe/Zurich 2006-10-05
-2658293 Tuggen Tuggen Tuggen 47.20291 8.94366 P PPL CH SZ 505 1347 2671 408 Europe/Zurich 2012-01-17
-2658299 Trun Trun Truns 46.74292 8.98716 P PPL CH GR 1831 3987 1243 871 Europe/Zurich 2010-04-05
-2658303 Trubschachen Trubschachen Trubschachen 46.92228 7.8452 P PPL CH BE 223 909 1530 731 Europe/Zurich 2012-01-17
-2658305 Trub Trub Trub 46.94168 7.87996 P PPL CH BE 223 908 1503 795 Europe/Zurich 2012-01-17
-2658306 Troistorrents Troistorrents 46.2289 6.91589 P PPL CH VS 2308 6156 3873 786 Europe/Zurich 2010-04-05
-2658307 Trogen Trogen Trogen,Trogen AR 47.40782 9.46498 P PPL CH AR 1502 3025 1618 904 Europe/Zurich 2010-04-05
-2658311 Trimmis Trimmis Trimmis,Trimmis Dorf 46.89907 9.56236 P PPL CH GR 1826 3945 2831 648 613 Europe/Zurich 2012-01-17
-2658312 Trimbach Trimbach Trimbach 47.3656 7.8868 P PPL CH SO 1105 2500 6220 438 Europe/Zurich 2012-01-17
-2658315 Triengen Triengen 47.23375 8.07729 P PPL CH LU 304 1104 4193 513 Europe/Zurich 2011-04-18
-2658317 Treyvaux Treyvaux Treyvaux 46.72745 7.13772 P PPL CH FR 1004 2226 1349 774 Europe/Zurich 2012-02-01
-2658324 Trélex Trelex 46.41538 6.20813 P PPL CH VD 2228 5730 1092 499 Europe/Zurich 2010-04-05
-2658328 Travers Travers 46.94018 6.67595 P PPL CH NE 2406 6512 1233 732 Europe/Zurich 2010-04-05
-2658331 Tramelan Tramelan Tramelan 47.22393 7.0995 P PPL CH BE 207 446 4186 936 Europe/Zurich 2012-01-17
-2658332 Trachselwald Trachselwald Trachselwald 47.01699 7.73639 P PPL CH BE 225 955 1068 683 Europe/Zurich 2012-01-17
-2658344 Töss (Kreis 4) Toss Toess (Kreis 4),Töss (Kreis 4),Winterthur Toss,Winterthur Töss 47.4789 8.70215 P PPLX CH CH ZH 110 230 8672 470 Europe/Zurich 2010-04-05
-2658353 Toffen Toffen Toffen 46.86031 7.49216 P PPL CH BE 222 884 2277 531 Europe/Zurich 2010-04-05
-2658371 Thusis Thusis 46.69724 9.43938 P PPL CH GR 1823 3668 2572 700 721 Europe/Zurich 2010-04-05
-2658376 Thundorf Thundorf Thundorf 47.54594 8.96358 P PPL CH TG 2004 4606 1179 546 546 Europe/Zurich 2012-03-08
-2658377 Thun Thun Thoune,Thun,Tun,to~un,tu en,twn,Тун,תון,トゥーン,图恩 46.75118 7.62166 P PPL CH BE 224 942 42136 560 565 Europe/Zurich 2012-01-17
-2658382 Thierachern Thierachern Thierachern,Tierachern 46.75319 7.57442 P PPL CH BE 224 941 2040 572 Europe/Zurich 2012-01-17
-2658386 Therwil Therwil Therwil 47.50117 7.55286 P PPL CH BL 1301 2775 9595 302 Europe/Zurich 2012-01-17
-2658387 Thayngen Thayngen 47.74717 8.70724 P PPL CH SH 1402 2920 4120 437 436 Europe/Zurich 2010-04-05
-2658388 Thalwil Thalwil 47.29175 8.56351 P PPL CH 141 13296 468 Europe/Zurich 2006-10-05
-2658395 Teufenthal Teufenthal Teufental,Teufenthal 47.32863 8.12074 P PPL CH AG 1905 4145 1665 453 Europe/Zurich 2012-01-17
-2658397 Teufen Teufen Teufen,Teufen AR 47.3908 9.38644 P PPL CH AR 1502 3024 5683 842 Europe/Zurich 2010-04-05
-2658398 Tesserete Tesserete Tesserete 46.06808 8.9658 P PPL CH TI 2105 5226 1533 536 Europe/Zurich 2012-02-01
-2658410 Tegerfelden Tegerfelden Tegerfelden 47.55809 8.28914 P PPL CH AG 1911 4320 1040 364 366 Europe/Zurich 2012-02-01
-2658415 Tavannes Tavannes 47.22079 7.19759 P PPL CH BE 214 713 3367 763 Europe/Zurich 2010-04-05
-2658417 Täuffelen Tauffelen Tauffelen,Täuffelen 47.06524 7.19704 P PPL CH BE 216 751 2492 487 Europe/Zurich 2012-02-01
-2658424 Tann Tann 47.26898 8.85024 P PPL CH 113 3034 507 Europe/Zurich 2006-10-05
-2658426 Tanay Tanay Taney,Tannay 46.34503 6.83041 P PPL CH VS 2308 6159 1124 1434 Europe/Zurich 2010-04-05
-2658427 Tamins Tamins Tamins 46.82964 9.40648 P PPL CH GR 1824 3733 1160 667 Europe/Zurich 2012-01-17
-2658432 Tägerwilen Tagerwilen Tagerwilen,Tägerwilen 47.65594 9.13167 P PPL CH TG 2005 4696 3414 414 Europe/Zurich 2012-02-01
-2658433 Tafers Tafers Tafers 46.81483 7.21852 P PPL CH FR 1006 2304 2833 661 Europe/Zurich 2012-01-17
-2658440 Sursee Sursee 47.16667 8.1 P PPLA2 CH LU 304 1095 8014 509 Europe/Zurich 2011-03-01
-2658449 Sumiswald Sumiswald Sumiswald 47.02747 7.74526 P PPL CH BE 225 957 5159 703 Europe/Zurich 2012-01-17
-2658452 Sulz Sulz Sulz 47.53602 8.09628 P PPL CH AG 1906 4178 1215 370 Europe/Zurich 2012-02-01
-2658455 Sulgen Sulgen Sulgen 47.5377 9.18497 P PPL CH TG 2002 4506 3367 451 Europe/Zurich 2012-01-17
-2658457 Suhr Suhr Suhr,Suhr AG 47.37172 8.07967 P PPL CH AG 1901 4012 9374 396 Europe/Zurich 2012-01-17
-2658464 Subingen Subingen Subingen 47.19852 7.61949 P PPL CH SO 1106 2532 2852 441 Europe/Zurich 2012-01-17
-2658469 Strengelbach Strengelbach 47.27917 7.92895 P PPL CH AG 1910 4285 4349 433 Europe/Zurich 2010-04-05
-2658478 Stettlen Stettlen Stettlen 46.95835 7.52508 P PPL CH BE 203 358 2884 563 Europe/Zurich 2010-08-09
-2658479 Stettfurt Stettfurt Stettfurt 47.52446 8.95509 P PPL CH TG 2004 4606 1048 477 Europe/Zurich 2012-01-17
-2658483 Steinhausen Steinhausen 47.1951 8.48581 P PPL CH ZG 900 1702 8509 425 Europe/Zurich 2011-04-18
-2658488 Steinen Steinen Steinen 47.04976 8.61214 P PPL CH SZ 506 1373 3041 477 Europe/Zurich 2012-01-17
-2658489 Stein am Rhein Stein am Rhein Shtajn-Am-Rajn,Штайн-Ам-Райн 47.65933 8.85964 P PPL CH SH 1405 2964 3224 408 Europe/Zurich 2010-04-05
-2658490 Stein Stein 47.54403 7.95256 P PPL CH AG 1909 4260 2504 301 Europe/Zurich 2010-04-05
-2658494 Steffisburg Steffisburg Steffisburg 46.77807 7.63249 P PPL CH BE 224 939 15191 584 Europe/Zurich 2012-01-17
-2658495 Steckborn Steckborn Steckborn 47.66667 8.98333 P PPLA2 CH TG 2007 4864 3229 402 Europe/Zurich 2011-03-01
-2658498 Staufen Staufen Staufen 47.38372 8.16606 P PPL CH AG 1907 4210 2424 417 Europe/Zurich 2012-02-01
-2658502 Stansstad Stansstad Stansstad 46.9768 8.33553 P PPL CH NW 700 1510 4471 435 Europe/Zurich 2010-04-05
-2658504 Stans Stans Stans 46.95845 8.366 P PPLA CH NW 700 1509 7475 453 Europe/Zurich 2012-01-17
-2658512 Stalden Stalden 46.23341 7.87273 P PPL CH VS 2313 6293 1232 777 Europe/Zurich 2010-04-05
-2658513 Staffelbach Staffelbach 47.28395 8.04208 P PPL CH AG 1910 4284 1059 486 Europe/Zurich 2010-04-05
-2658518 Stäfa Stafa 47.24254 8.72342 P PPL CH ZH 107 158 5737 425 Europe/Zurich 2006-10-05
-2658521 Stabio Stabio Stabio 45.85099 8.93918 P PPL CH TI 2106 5266 3917 357 Europe/Zurich 2012-01-17
-2658524 Spreitenbach Spreitenbach Spreitenbach 47.42016 8.36301 P PPL CH AG 1902 4040 10562 418 Europe/Zurich 2012-01-17
-2658536 Spiez Spiez Shpic,Spiez,Шпиц 46.68473 7.69111 P PPL CH BE 217 768 12594 595 Europe/Zurich 2012-01-17
-2658537 Speicher Speicher Speicher,Speicher AR 47.4109 9.44335 P PPL CH AR 1502 3023 3985 924 927 Europe/Zurich 2010-04-05
-2658549 Sorengo Sorengo Sorengo 45.99855 8.93713 P PPL CH TI 2105 5225 1629 385 Europe/Zurich 2012-02-01
-2658564 Solothurn Solothurn Soletta,Soleura,Soleure,Solodurum,Solothurn,Solura,Zoloturn,Золотурн 47.20791 7.53714 P PPLA CH SO 1109 2601 14853 440 Europe/Zurich 2012-01-21
-2658572 Sissach Sissach 47.46408 7.80888 P PPLA2 CH BL 1304 2861 5873 374 Europe/Zurich 2011-03-01
-2658575 Sirnach Sirnach 47.46222 8.99763 P PPL CH TG 2006 4761 6463 541 Europe/Zurich 2010-04-05
-2658576 Sion Sion S'on,Sedunum,Sion,Sionas,Sitten,Сьон 46.22908 7.35942 P PPLA CH VS 2312 6266 28045 503 Europe/Zurich 2012-01-17
-2658577 Sins Sins Sins 47.19216 8.39578 P PPL CH AG 1908 4239 3600 412 Europe/Zurich 2012-02-01
-2658592 Silenen Silenen Silenen 46.7891 8.67325 P PPL CH UR 400 1209 2243 540 Europe/Zurich 2012-01-17
-2658597 Sigriswil Sigriswil Sigriswil 46.71656 7.71335 P PPL CH BE 224 938 4341 797 Europe/Zurich 2010-04-05
-2658600 Signau Signau Signau 46.91944 7.72418 P PPL CH BE 223 907 2821 689 Europe/Zurich 2012-01-17
-2658606 Sierre Sierre 46.29192 7.53559 P PPL CH VS 2311 6248 14813 528 Europe/Zurich 2010-04-05
-2658613 Sevelen Sevelen 47.12213 9.48601 P PPL CH SG 1724 3275 4392 463 Europe/Zurich 2010-04-05
-2658614 Seuzach / Seuzach (Dorf) Seuzach / Seuzach (Dorf) Seuzach (Dorf) 47.53545 8.73728 P PPLX CH ZH 110 227 1419 450 Europe/Zurich 2006-10-21
-2658623 Seon Seon Seon 47.3449 8.15607 P PPL CH AG 1907 4209 4407 459 Europe/Zurich 2012-02-01
-2658626 Sennwald Sennwald Sennwald 47.26053 9.50268 P PPL CH SG 1724 3274 4768 454 Europe/Zurich 2012-01-17
-2658631 Sempach Sempach 47.13194 8.19391 P PPL CH LU 304 1102 3754 533 Europe/Zurich 2010-04-05
-2658632 Sementina Sementina 46.18363 8.99162 P PPL CH TI 2101 5019 2695 242 Europe/Zurich 2010-04-05
-2658634 Selzach Selzach 47.20531 7.45521 P PPL CH SO 1107 2556 2900 453 Europe/Zurich 2010-04-05
-2658635 Seltisberg Seltisberg Seltisberg 47.45947 7.71729 P PPL CH BL 1303 2823 1412 492 Europe/Zurich 2012-01-17
-2658642 Seftigen Seftigen Seftigen 46.78765 7.53936 P PPL CH BE 222 883 2014 582 Europe/Zurich 2012-01-17
-2658649 Seengen Seengen Seengen 47.32852 8.20509 P PPL CH AG 1907 4208 3288 474 Europe/Zurich 2012-02-01
-2658653 Seedorf Seedorf Seedorf 47.03445 7.31249 P PPL CH BE 201 312 2920 566 Europe/Zurich 2012-01-17
-2658654 Seedorf Seedorf Seedorf 46.88199 8.61611 P PPL CH UR 400 1214 1522 446 Europe/Zurich 2012-02-01
-2658655 Seeberg Seeberg Seeberg 47.15505 7.66665 P PPL CH BE 226 988 1321 485 Europe/Zurich 2012-01-17
-2658656 Zürich (Kreis 11) / Seebach Zuerich (Kreis 11) / Seebach Seebach 47.42181 8.54779 P PPLX CH ZH 112 261 17851 436 Europe/Zurich 2006-10-21
-2658660 Scuol Scuol Schuls,Scuol 46.79676 10.30595 P PPL CH GR 1825 3762 2184 1214 Europe/Zurich 2012-02-23
-2658665 Schwyz Schwyz Schwytz,Schwyz,Shvic,Suitius,Svitto,shuvu~itsu,Швиц,シュヴィーツ 47.02786 8.65611 P PPLA CH SZ 506 1372 14177 608 Europe/Zurich 2012-01-17
-2658669 Schwellbrunn Schwellbrunn Schwellbrunn 47.35255 9.24894 P PPL CH AR 1501 3004 1517 962 Europe/Zurich 2010-04-05
-2658681 Schwarzenberg Schwarzenberg Schwarzenberg 47.01705 8.17261 P PPL CH LU 303 1066 1591 817 Europe/Zurich 2012-01-17
-2658684 Schwanden Schwanden Schwanden,Schwanden GL 46.99541 9.0701 P PPL CH GL 800 1610 2541 557 Europe/Zurich 2012-01-17
-2658687 Schwaderloch Schwaderloch 47.58541 8.14455 P PPLA3 CH AG 1906 4176 726 329 Europe/Zurich 2011-07-31
-2658690 Schüpfheim Schupfheim Schupfheim,Schüpfheim 46.95161 8.01724 P PPL CH LU 301 1008 3723 723 Europe/Zurich 2012-01-17
-2658691 Schüpfen Schupfen Schupfen,Schüpfen 47.03661 7.37723 P PPL CH BE 201 311 3248 532 Europe/Zurich 2010-08-23
-2658696 Schübelbach Schubelbach 47.17326 8.92811 P PPL CH SZ 505 1346 7745 429 Europe/Zurich 2010-04-05
-2658701 Schötz Schotz Schotz,Schötz 47.16896 7.9887 P PPL CH LU 305 1143 3231 507 Europe/Zurich 2012-02-01
-2658706 Schönenwerd Schonenwerd Schonenwerd,Schönenwerd 47.3691 8.00167 P PPL CH SO 1108 2583 4732 388 Europe/Zurich 2012-01-17
-2658708 Schönenbuch Schonenbuch 47.53853 7.50572 P PPL CH BL 1301 2774 1313 366 Europe/Zurich 2010-04-05
-2658714 Schöftland Schoftland Schoftland,Schöftland 47.30572 8.05138 P PPL CH AG 1905 4144 3310 462 Europe/Zurich 2012-02-01
-2658718 Schmitten Schmitten Schmitten 46.8575 7.25031 P PPL CH FR 1006 2295 3403 640 Europe/Zurich 2012-02-01
-2658720 Schmerikon Schmerikon 47.22538 8.94836 P PPLA3 CH SG 1726 3338 3307 407 Europe/Zurich 2011-07-31
-2658724 Schlieren Schlieren 47.39668 8.44763 P PPL CH ZH 247 12695 399 Europe/Zurich 2011-01-17
-2658726 Schleitheim Schleitheim 47.74818 8.48213 P PPLA2 CH SH 1404 2952 1723 472 470 Europe/Zurich 2011-03-01
-2658732 Schinznach Dorf Schinznach Dorf Schinznach,Schinznach Dorf 47.4465 8.14089 P PPL CH AG 1904 4115 1736 383 Europe/Zurich 2012-01-17
-2658733 Schinznach Bad Schinznach Bad Bad Schinznach 47.44992 8.16833 P PPL CH AG 1904 4114 1327 360 Europe/Zurich 2010-04-05
-2658734 Schindellegi Schindellegi 47.1746 8.71345 P PPL CH SZ 503 1321 3174 764 759 Europe/Zurich 2010-04-05
-2658738 Schiers Schiers 46.96973 9.6872 P PPL CH GR 1830 3962 2423 665 Europe/Zurich 2011-04-18
-2658744 Schenkon Schenkon 47.1683 8.14384 P PPLA3 CH LU 304 1099 2616 554 Europe/Zurich 2011-07-31
-2658749 Schattdorf Schattdorf Schattdorf 46.8655 8.65466 P PPL CH UR 400 1213 4860 483 Europe/Zurich 2012-01-17
-2658754 Schänis Schanis Schanis,Schänis 47.15799 9.04736 P PPL CH SG 1726 3315 3404 423 Europe/Zurich 2012-01-17
-2658759 Schafisheim Schafisheim Schafisheim 47.37529 8.14076 P PPL CH AG 1907 4200 2758 424 Europe/Zurich 2012-02-01
-2658761 Schaffhausen Schaffhausen Safhauzo,Scafusa,Schaffhausen,Schaffhouse,Schaffusa,Schofhausen,Sciaffusa,Shaffkhauzen,Szafuza,shafuhauzen,Ŝafhaŭzo,Шаффхаузен,シャフハウゼン 47.69732 8.63493 P PPLA CH SH 1403 2939 33863 403 403 Europe/Zurich 2012-02-21
-2658769 Saxon Saxon Saxon 46.15005 7.18074 P PPL CH VS 2307 6141 3477 466 Europe/Zurich 2012-01-17
-2658774 Savigny Savigny 46.53844 6.73222 P PPL CH VD 2226 5611 3440 799 Europe/Zurich 2010-04-05
-2658775 Savièse Saviese Saviese,Savièse 46.25115 7.34558 P PPL CH VS 2312 6265 5575 840 Europe/Zurich 2012-01-17
-2658781 Sattel Sattel Sattel 47.08246 8.63565 P PPL CH SZ 506 1371 1597 811 Europe/Zurich 2012-01-17
-2658782 Satigny Satigny 46.21462 6.03553 P PPL CH GE 2500 6638 3055 422 Europe/Zurich 2011-01-14
-2658786 Sarnen Sarnen Sarnen,zarunen,ザルネン 46.89851 8.25068 P PPLA CH OW 600 1407 9410 468 Europe/Zurich 2012-01-17
-2658788 Sarmenstorf Sarmenstorf Sarmenstorf 47.31022 8.24949 P PPL CH AG 1903 4076 2322 535 Europe/Zurich 2012-02-01
-2658793 Sargans Sargans 47.04896 9.44103 P PPL CH SG 1725 3296 5045 487 Europe/Zurich 2010-04-05
-2658806 Sankt Stephan Sankt Stephan Sankt Stephan 46.51168 7.39386 P PPL CH BE 219 793 1352 1011 Europe/Zurich 2012-01-17
-2658807 Sankt Peterzell Sankt Peterzell Sankt Peterzell 47.31782 9.17449 P PPL CH SG 1727 3378 1207 702 Europe/Zurich 2012-02-01
-2658811 Sankt Niklaus Sankt Niklaus Sankt Niklaus 46.17706 7.80307 P PPL CH VS 2313 6292 2352 1109 Europe/Zurich 2012-02-01
-2658813 Saint Moritz Saint Moritz Saint Moritz,Saint-Moritz,Sankt Moritz,Sankt Moritz-Dorf,Sankt Murezzan,Sankt-Moritz,Sankta Maurico,Sankta Maŭrico,St. Moritz,sanmorittsu,サンモリッツ 46.4984 9.83909 P PPL CH GR 1827 3787 4952 1840 Europe/Zurich 2012-01-17
-2658816 Sankt Margrethen Sankt Margrethen 47.45253 9.63741 P PPL CH SG 1723 3236 5395 403 Europe/Zurich 2010-04-05
-2658820 Sankt Gallenkappel Sankt Gallenkappel Sankt Gallenkappel 47.24668 8.97388 P PPL CH SG 1726 3337 1811 599 Europe/Zurich 2012-02-01
-2658822 Sankt Gallen Sankt Gallen Saint Gallen,Saint-Gall,San Gallo,San Gallu,San Galo,Sanctogallum,Sankt Gallen,Sankt-Gallen,Sankt-Galo,St. Gallen,Санкт-Галлен 47.42391 9.37477 P PPLA CH SG 1721 3203 70572 684 Europe/Zurich 2011-01-24
-2658826 Sankt Antoni Sankt Antoni Saint-Antoine,Sankt Antoni,St. Antoni,St. Antoni FR 46.82207 7.26091 P PPL CH FR 1006 2302 1849 718 Europe/Zurich 2012-01-17
-2658846 Samaden Samaden Samaden,Samedan 46.53417 9.87122 P PPL CH GR 1827 3786 2700 1731 Europe/Zurich 2012-01-17
-2658847 Salvan Salvan Salvan 46.11634 7.01618 P PPL CH VS 2310 6218 1127 959 Europe/Zurich 2012-02-01
-2658849 Salmsach Salmsach Salmsach 47.55696 9.36889 P PPL CH TG 2001 4441 1293 403 Europe/Zurich 2012-01-17
-2658850 Salgesch Salgesch Salgesch 46.31056 7.56954 P PPL CH VS 2306 6113 1240 580 Europe/Zurich 2012-01-17
-2658852 Sâles Sales Sales,Sâles 46.63763 6.97363 P PPL CH FR 1003 2152 1326 826 Europe/Zurich 2012-02-01
-2658862 Saint-Prex Saint-Prex 46.47963 6.45992 P PPL CH VD 2227 5646 4461 379 Europe/Zurich 2010-04-05
-2658864 Saint-Maurice Saint-Maurice Saint-Maurice 46.21826 7.0032 P PPL CH VS 2310 6217 3701 419 Europe/Zurich 2012-01-17
-2658868 Saint-Léonard Saint-Leonard Saint-Leonard,Saint-Léonard 46.25152 7.41714 P PPL CH VS 2312 6266 1937 506 Europe/Zurich 2012-02-01
-2658871 Saint-Imier Saint-Imier Saint-Imier,Sankt Immer 47.15284 6.99692 P PPL CH BE 207 443 5220 814 Europe/Zurich 2010-04-05
-2658874 Sainte-Croix Sainte-Croix 46.82203 6.50283 P PPL CH VD 2224 5568 4214 1094 1082 Europe/Zurich 2010-04-05
-2658876 Saint-Cergue Saint-Cergue Saint-Cergue 46.4459 6.15736 P PPL CH VD 2228 5727 1816 1043 Europe/Zurich 2012-01-17
-2658878 Saint-Blaise Saint-Blaise Saint-Blaise 47.01323 6.98472 P PPL CH NE 2404 6459 3089 436 Europe/Zurich 2012-02-01
-2658880 Saint-Aubin-Sauges Saint-Aubin-Sauges 46.89419 6.77251 P PPL CH NE 2401 6414 2476 821 474 Europe/Zurich 2010-04-05
-2658881 Saillon Saillon Saillon 46.17208 7.18488 P PPL CH VS 2307 6140 1598 504 Europe/Zurich 2012-01-17
-2658882 Saignelégier Saignelegier Saignelegier,Saignelégier 47.25619 6.99648 P PPL CH JU 2602 6757 2194 985 Europe/Zurich 2010-08-09
-2658892 Safenwil Safenwil Safenwil 47.3214 7.98122 P PPL CH AG 1910 4283 3201 475 Europe/Zurich 2012-02-01
-2658894 Sachseln Sachseln Sachseln 46.86718 8.23344 P PPL CH OW 600 1406 4511 477 Europe/Zurich 2012-01-17
-2658897 Saas-Grund Saas-Grund 46.12281 7.93651 P PPL CH VS 2313 6291 1116 1564 Europe/Zurich 2010-04-05
-2658898 Saas-Fee Saas-Fee 46.11347 7.93488 P PPL CH VS 2313 6290 1611 1775 Europe/Zurich 2010-04-05
-2658904 Saanen Saanen Saanen 46.48956 7.25961 P PPL CH BE 220 843 6621 1010 Europe/Zurich 2012-01-17
-2658909 Rüti Rueti 47.25603 8.85552 P PPL CH ZH 105 117 9576 470 Europe/Zurich 2008-03-21
-2658912 Rüthi Ruthi 47.2948 9.53857 P PPL CH SG 1723 3256 1945 433 Europe/Zurich 2010-04-05
-2658914 Ruswil Ruswil Ruswil 47.08425 8.12645 P PPL CH LU 304 1098 6432 642 Europe/Zurich 2012-01-17
-2658917 Russikon Russikon 47.39669 8.77515 P PPL CH ZH 108 178 2415 628 Europe/Zurich 2006-10-05
-2658919 Rüschlikon Ruschlikon 47.30688 8.55135 P PPL CH 139 4653 478 Europe/Zurich 2006-10-05
-2658922 Rüschegg Ruschegg Rueschegg,Ruschegg,Rüeschegg,Rüschegg 46.77977 7.39167 P PPL CH BE 221 853 1697 933 Europe/Zurich 2012-01-17
-2658924 Rupperswil Rupperswil Rupperswil 47.40131 8.12877 P PPL CH AG 1904 4091 4137 370 Europe/Zurich 2012-02-28
-2658927 Rümlang Rumlang 47.45041 8.52993 P PPL CH ZH 97 5144 448 Europe/Zurich 2010-05-24
-2658935 Rüeggisberg Rueggisberg Rueggisberg,Rüeggisberg 46.82216 7.4389 P PPL CH BE 222 880 1933 944 Europe/Zurich 2012-01-17
-2658936 Rue Rue 46.61916 6.82225 P PPL CH FR 1002 2097 1108 662 Europe/Zurich 2010-04-05
-2658937 Rudolfstetten Rudolfstetten Rudolfstetten 47.37101 8.38083 P PPL CH AG 1903 4075 3800 483 Europe/Zurich 2012-02-01
-2658939 Rüderswil Ruderswil Ruderswil,Rüderswil 46.98415 7.72061 P PPL CH BE 223 905 2329 647 Europe/Zurich 2012-01-17
-2658940 Rubigen Rubigen 46.89868 7.5446 P PPL CH BE 212 623 2426 549 Europe/Zurich 2010-04-05
-2658952 Rothrist Rothrist Rothrist-Dorf 47.30508 7.89196 P PPL CH AG 1910 4282 7423 410 Europe/Zurich 2010-04-05
-2658954 Rothenthurm Rothenthurm Rotenturm,Rothenthurm 47.1042 8.67585 P PPL CH SZ 506 1370 2098 928 Europe/Zurich 2012-01-17
-2658968 Röschenz Roschenz Roschenz,Röschenz 47.42366 7.48024 P PPL CH SO 1110 2619 1753 437 Europe/Zurich 2012-01-17
-2658969 Rorschach Rorschach Rorschach,Rorshakh,Роршах 47.478 9.4903 P PPL CH SG 1722 3215 9000 404 Europe/Zurich 2010-04-05
-2658974 Rorbas Rorbas 47.53092 8.57555 P PPL CH ZH 103 68 1797 384 Europe/Zurich 2006-10-05
-2658976 Root Root Root 47.11458 8.39021 P PPL CH LU 303 1051 3886 426 Europe/Zurich 2012-01-17
-2658982 Romont Romont 46.69652 6.91898 P PPL CH FR 1002 2096 4483 763 Europe/Zurich 2010-04-05
-2658983 Römerswil Romerswil Romerswil,Römerswil 47.16813 8.24643 P PPL CH LU 302 1039 1882 713 Europe/Zurich 2012-02-01
-2658985 Romanshorn Romanshorn Romanshorn 47.56586 9.37869 P PPLA3 CH TG 2001 4436 8956 401 Europe/Zurich 2011-07-31
-2658986 Romanel Romanel Romanel,Romanel-sur-Lausanne 46.56667 6.60453 P PPL CH VD 2225 5592 3123 594 Europe/Zurich 2012-01-17
-2658989 Rolle Rolle 46.4582 6.33499 P PPL CH VD 2228 5861 4425 389 Europe/Zurich 2010-04-05
-2658991 Rohrbach Rohrbach 47.13521 7.81334 P PPL CH BE 202 338 1386 580 Europe/Zurich 2010-04-05
-2658992 Rohr Rohr 47.4 7.95 P PPL CH SO 1105 2493 2849 713 Europe/Zurich 2010-04-05
-2658993 Roggwil Roggwil 47.49981 9.3958 P PPL CH TG 2001 4431 2500 438 Europe/Zurich 2010-04-05
-2658994 Roggwil Roggwil 47.24119 7.82141 P PPL CH BE 202 337 3673 450 Europe/Zurich 2010-04-05
-2658998 Rodersdorf Rodersdorf Rodersdorf 47.4822 7.4576 P PPL CH SO 1104 2479 1338 371 Europe/Zurich 2012-01-17
-2659008 Riva San Vitale Riva San Vitale Riva San Vitale 45.90341 8.97104 P PPL CH TI 2106 5263 2390 277 Europe/Zurich 2012-01-17
-2659021 Ringgenberg Ringgenberg Ringgenberg,Ringgenberg BE 46.70114 7.89445 P PPL CH BE 211 590 2514 603 Europe/Zurich 2010-04-05
-2659024 Effretikon / Rikon Effretikon / Rikon Rikon 47.44674 8.79528 P PPLX CH ZH 108 174 1120 522 Europe/Zurich 2006-10-21
-2659028 Riggisberg Riggisberg Riggisberg 46.81028 7.48014 P PPL CH BE 222 879 2001 764 Europe/Zurich 2010-04-05
-2659036 Riedholz Riedholz 47.23158 7.56829 P PPL CH SO 1107 2554 1576 474 Europe/Zurich 2010-04-05
-2659046 Riddes Riddes 46.17276 7.2236 P PPL CH VS 2307 6139 2213 499 Europe/Zurich 2010-04-05
-2659050 Richterswil Richterswil 47.20622 8.69686 P PPL CH ZH 106 138 7103 482 Europe/Zurich 2010-08-27
-2659055 Riaz Riaz Riaz 46.64224 7.06183 P PPL CH FR 1003 2125 1894 729 Europe/Zurich 2012-01-17
-2659060 Rheinfelden Rheinfelden 47.55437 7.79403 P PPLA2 CH AG 1909 4258 10733 277 Europe/Zurich 2011-03-01
-2659062 Rheineck Rheineck 47.4663 9.59028 P PPL CH SG 1723 3235 3298 403 Europe/Zurich 2010-04-05
-2659064 Rhäzüns Rhazuns Rhazuns,Rhäzüns 46.79861 9.39837 P PPL CH GR 1824 3723 1257 658 Europe/Zurich 2012-01-17
-2659070 Renens Renens Renens 46.53989 6.5881 P PPL CH VD 2229 5591 17811 441 Europe/Zurich 2012-01-17
-2659076 Reinach Reinach Reinach 47.25944 8.18845 P PPL CH AG 1905 4141 7845 554 Europe/Zurich 2012-02-28
-2659077 Reigoldswil Reigoldswil Reigoldswil 47.39824 7.68718 P PPL CH BL 1305 2893 1509 531 Europe/Zurich 2012-01-17
-2659078 Reiden Reiden 47.24719 7.97135 P PPL CH LU 305 1140 3926 458 Europe/Zurich 2010-04-05
-2659079 Reichenburg Reichenburg Reichenburg 47.16747 8.98304 P PPL CH SZ 505 1345 2876 437 Europe/Zurich 2012-01-17
-2659082 Rehetobel Rehetobel Rehetobel 47.42611 9.483 P PPL CH AR 1503 3034 1779 946 Europe/Zurich 2010-04-05
-2659083 Regensdorf Regensdorf 47.4341 8.46874 P PPL CH ZH 104 96 7531 440 Europe/Zurich 2010-05-24
-2659085 Reconvilier Reconvilier 47.23431 7.22239 P PPL CH BE 214 703 2291 734 Europe/Zurich 2010-04-05
-2659088 Rechthalten Rechthalten Rechthalten 46.76766 7.24028 P PPL CH FR 1006 2301 1058 881 Europe/Zurich 2012-01-17
-2659089 Rebstein Rebstein Rebstein 47.39812 9.58503 P PPL CH SG 1723 3255 4163 417 Europe/Zurich 2012-01-17
-2659095 Elsau-Räterschen / Räterschen Elsau-Raeterschen / Raeterschen Raeterschen,Räterschen 47.49927 8.796 P PPLX CH ZH 110 219 1071 477 Europe/Zurich 2006-10-21
-2659098 Raron Raron Rarogne 46.31196 7.80029 P PPLA2 CH VS 2309 6199 1901 644 Europe/Zurich 2011-03-01
-2659099 Rapperswil Rapperswil Raperswil,Rappersvil',Rapperswil,Rapperswil SG,Рапперсвиль 47.22557 8.82228 P PPL CH SG 1726 3340 34776 408 Europe/Zurich 2010-04-05
-2659105 Randogne Randogne Randogne 46.31305 7.51086 P PPL CH VS 2311 6244 3157 1230 Europe/Zurich 2012-01-17
-2659109 Ramsen Ramsen Ramsen 47.70797 8.80949 P PPL CH SH 1405 2963 1316 418 415 Europe/Zurich 2010-08-09
-2659113 Rafz Rafz 47.60438 8.54305 P PPL CH ZH 103 67 3233 421 Europe/Zurich 2006-10-05
-2659115 Radelfingen Radelfingen Radelfingen 47.02146 7.27178 P PPL CH BE 201 309 1218 501 Europe/Zurich 2012-01-17
-2659122 Quarten Quarten 47.10016 9.23401 P PPL CH SG 1725 3295 2715 919 Europe/Zurich 2010-12-26
-2659126 Pura Pura 45.98647 8.86877 P PPLA3 CH TI 2105 5216 1069 396 Europe/Zurich 2011-07-31
-2659127 Pully Pully 46.51027 6.66183 P PPL CH VD 2226 5590 16263 428 Europe/Zurich 2010-04-05
-2659129 Puidoux Puidoux Puidoux 46.50093 6.78249 P PPL CH VD 2226 5607 2398 660 Europe/Zurich 2012-01-17
-2659136 Prilly Prilly 46.53938 6.59266 P PPL CH VD 2229 5591 10524 458 Europe/Zurich 2010-04-05
-2659142 Pregassona Pregassona 46.02021 8.97429 P PPL CH TI 2105 5192 7548 373 Europe/Zurich 2010-04-05
-2659147 Pratteln Pratteln 47.52071 7.69356 P PPL CH BL 1303 2831 14877 291 Europe/Zurich 2010-04-05
-2659150 Praroman Praroman 46.74653 7.17781 P PPL CH FR 1004 2220 1223 742 Europe/Zurich 2011-04-18
-2659152 Prangins Prangins Prangins 46.39396 6.24948 P PPL CH VD 2228 5725 3172 416 Europe/Zurich 2012-01-17
-2659165 Poschiavo Poschiavo Pesclavium,Poschiavo 46.3244 10.05721 P PPL CH GR 1822 3561 3428 1011 Europe/Zurich 2012-01-17
-2659166 Port-Valais Port-Valais Port-Valais 46.37156 6.87263 P PPL CH VS 2308 6154 2821 393 Europe/Zurich 2012-01-17
-2659171 Porrentruy Porrentruy Porrentruy,Pruntrut 47.41533 7.07522 P PPL CH JU 2603 6800 6521 442 Europe/Zurich 2012-01-17
-2659172 Pontresina Pontresina Pontresina 46.4955 9.90126 P PPL CH GR 1827 3784 1863 1822 Europe/Zurich 2010-04-05
-2659190 Plan-les-Ouates Plan-les-Ouates Plan-les-Ouates,Plan-les-Ouattes 46.16762 6.11912 P PPL CH GE 2500 6633 10540 406 Europe/Zurich 2012-02-28
-2659195 Plaffeien Plaffeien Plaffeien 46.74198 7.28666 P PPL CH FR 1006 2292 1938 854 Europe/Zurich 2012-01-17
-2659203 Pieterlen Pieterlen 47.17501 7.33791 P PPL CH BE 205 392 3317 440 Europe/Zurich 2010-04-05
-2659211 Pfyn Pfyn Pfyn 47.59763 8.9532 P PPL CH TG 2007 4841 1839 412 Europe/Zurich 2012-02-01
-2659212 Pfungen Pfungen 47.51394 8.6423 P PPL CH ZH 110 224 2369 420 Europe/Zurich 2006-10-05
-2659213 Pfaffhausen Pfaffhausen Pfaffhusen 47.36476 8.62375 P PPL CH CH ZH 109 193 1684 597 Europe/Zurich 2006-10-05
-2659215 Pfeffingen Pfeffingen 47.45984 7.58975 P PPL CH BL 1301 2772 2201 383 Europe/Zurich 2010-04-05
-2659218 Pfaffnau Pfaffnau Pfaffnau 47.22772 7.89719 P PPL CH LU 305 1139 2047 504 Europe/Zurich 2012-01-17
-2659219 Pfäffikon Pfaffikon 47.36453 8.79202 P PPLA2 CH ZH 108 177 7994 557 Europe/Zurich 2011-03-01
-2659227 Peseux Peseux 46.98704 6.88903 P PPL CH NE 2401 6412 5716 539 Europe/Zurich 2010-04-05
-2659228 Péry Pery 47.19398 7.24913 P PPL CH BE 207 439 1342 634 Europe/Zurich 2010-04-05
-2659231 Perroy Perroy Perroy 46.46821 6.36622 P PPL CH VD 2228 5860 1315 418 Europe/Zurich 2012-02-01
-2659234 Penthalaz Penthalaz 46.61077 6.52519 P PPL CH VD 2223 5495 2241 455 Europe/Zurich 2010-04-05
-2659243 Payerne Payerne Payerne 46.82201 6.93608 P PPL CH VD 2222 5822 7655 449 Europe/Zurich 2012-02-01
-2659246 Paudex Paudex 46.50548 6.66819 P PPL CH VD 2226 5590 1352 383 Europe/Zurich 2010-04-05
-2659260 Palézieux Palezieux Palezieux,Palézieux 46.54543 6.8325 P PPL CH VD 2226 5795 1209 636 Europe/Zurich 2012-01-17
-2659266 Ottenbach Ottenbach 47.28228 8.40432 P PPL CH ZH 101 11 2039 416 Europe/Zurich 2006-10-05
-2659267 Othmarsingen Othmarsingen Othmarsingen 47.40149 8.21852 P PPL CH AG 1907 4205 2267 414 Europe/Zurich 2012-02-01
-2659269 Otelfingen Otelfingen 47.46053 8.39141 P PPL CH 94 1808 439 Europe/Zurich 2006-10-05
-2659277 Orvin Orvin 47.16068 7.21368 P PPL CH BE 207 438 1181 673 Europe/Zurich 2010-04-05
-2659281 Orsières Orsieres 46.02903 7.14437 P PPL CH VS 2303 6034 2725 897 Europe/Zurich 2010-04-05
-2659282 Orpund Orpund Orpond 47.13891 7.30775 P PPL CH BE 216 744 2488 437 Europe/Zurich 2010-04-05
-2659283 Oron-la-ville Oron-la-ville Oron-la-ville 46.57181 6.8273 P PPL CH VD 2226 5802 1198 634 Europe/Zurich 2012-02-01
-2659286 Ormalingen Ormalingen Ormalingen 47.46636 7.861 P PPL CH BL 1304 2846 1803 408 Europe/Zurich 2012-02-01
-2659289 Orbe Orbe 46.72504 6.53069 P PPL CH VD 2224 5757 5132 477 Europe/Zurich 2010-04-05
-2659292 Opfikon Opfikon 47.43169 8.57588 P PPL CH ZH 103 66 1277 438 Europe/Zurich 2006-10-05
-2659296 Onex Onex Onex 46.18391 6.10181 P PPL CH GE 2500 6631 17302 419 Europe/Zurich 2012-02-28
-2659297 Olten Olten Olten 47.34999 7.90329 P PPLA2 CH SO 1108 2581 16411 406 Europe/Zurich 2011-03-01
-2659298 Ollon Ollon 46.29524 6.99314 P PPL CH VD 2221 5409 6665 452 Europe/Zurich 2010-04-05
-2659303 Oftringen Oftringen Oftringen 47.31382 7.92533 P PPL CH AG 1910 4280 10390 429 Europe/Zurich 2012-02-28
-2659307 Oetwil Oetwil am See Oetwil am See 47.27049 8.72023 P PPL CH ZH 107 157 4925 539 Europe/Zurich 2010-07-16
-2659310 Zürich (Kreis 11) / Oerlikon Zuerich (Kreis 11) / Oerlikon Oerlikon 47.40823 8.54258 P PPLX CH ZH 112 261 17922 459 Europe/Zurich 2006-10-21
-2659311 Oensingen Oensingen Oensingen,Onsingen,Önsingen 47.28639 7.72305 P PPL CH SO 1101 2407 4609 455 Europe/Zurich 2012-01-17
-2659317 Obfelden Obfelden 47.26413 8.4215 P PPL CH 10 4039 439 Europe/Zurich 2006-10-05
-2659321 Oberwil Oberwil 47.51407 7.55786 P PPL CH BL 1301 2771 10187 299 Europe/Zurich 2010-04-05
-2659325 Wetzikon / Ober-Wetzikon Wetzikon / Ober-Wetzikon Ober-Wetzikon 47.32514 8.80005 P PPLX CH ZH 105 121 3858 545 Europe/Zurich 2006-10-21
-2659331 Oberuzwil Oberuzwil 47.43076 9.12724 P PPL CH SG 1728 3407 5616 563 Europe/Zurich 2010-04-05
-2659332 Urdorf Ober Urdorf Urdorf 47.38507 8.42581 P PPL CH ZH 250 9205 424 Europe/Zurich 2011-01-13
-2659344 Obersiggenthal Obersiggenthal Ober-Siggental 47.4875 8.29652 P PPL CH AG 1902 4038 7990 392 Europe/Zurich 2010-04-05
-2659348 Oberschrot Oberschrot Oberschrot 46.73979 7.26896 P PPL CH FR 1006 2298 1099 895 Europe/Zurich 2012-01-17
-2659355 Oberrüti Oberruti 47.16673 8.39441 P PPL CH AG 1908 4237 1268 415 Europe/Zurich 2010-04-05
-2659357 Oberriet Oberriet Oberried,Oberriet 47.31988 9.56608 P PPL CH SG 1723 3254 7675 421 Europe/Zurich 2012-01-17
-2659358 Oberrieden Oberrieden 47.27444 8.57838 P PPL CH 137 4413 464 Europe/Zurich 2006-10-05
-2659367 Oberlunkhofen Oberlunkhofen Oberlunkhofen 47.3115 8.39142 P PPL CH AG 1903 4071 1880 448 Europe/Zurich 2012-01-17
-2659372 Oberkirch Oberkirch Oberkirch 47.15642 8.11567 P PPL CH LU 304 1095 3228 511 Europe/Zurich 2012-02-01
-2659378 Oberhelfenschwil Oberhelfenschwil 47.35673 9.11076 P PPL CH SG 1727 3375 1318 825 Europe/Zurich 2010-04-05
-2659384 Obergösgen Obergosgen Obergosgen,Obergösgen 47.36406 7.95276 P PPL CH SO 1108 2573 2076 386 Europe/Zurich 2012-01-17
-2659385 Oberglatt Oberglatt 47.47576 8.51896 P PPL CH 92 3564 430 Europe/Zurich 2006-10-05
-2659391 Oberentfelden Oberentfelden Entfelden 47.35639 8.04594 P PPL CH AG 1901 4010 7553 413 Europe/Zurich 2010-04-05
-2659392 Oberengstringen Oberengstringen 47.40841 8.46515 P PPL CH 245 5805 417 Europe/Zurich 2006-10-05
-2659394 Oberendingen Oberendingen Endingen,Oberendingen 47.53636 8.29338 P PPL CH AG 1911 4305 1935 412 Europe/Zurich 2012-01-17
-2659397 Oberegg Oberegg Oberegg,Oberegg AI 47.42402 9.55134 P PPL CH AI 1600 3111 1827 872 Europe/Zurich 2012-01-17
-2659399 Oberdorf Oberdorf Oberdorf 47.39308 7.75122 P PPL CH BL 1305 2892 2248 499 Europe/Zurich 2012-01-17
-2659402 Oberdiessbach Oberdiessbach 46.83333 7.95 P PPL CH LU 301 1006 2860 1622 Europe/Zurich 2010-04-05
-2659404 Oberburg Oberburg Oberburg 47.03774 7.62652 P PPL CH BE 206 418 2901 550 Europe/Zurich 2012-01-17
-2659406 Oberbuchsiten Oberbuchsiten 47.30508 7.75746 P PPL CH SO 1101 2406 1807 452 Europe/Zurich 2010-04-05
-2659408 Oberbipp Oberbipp 47.25296 7.6658 P PPL CH BE 226 983 1440 472 Europe/Zurich 2010-04-05
-2659422 Nyon Nyon Noviodunum,Nyon,n'on,Ньон 46.38318 6.23955 P PPL CH VD 2228 5724 16797 401 Europe/Zurich 2010-04-05
-2659426 Nürensdorf Nurensdorf 47.44814 8.64908 P PPL CH ZH 103 64 2310 513 Europe/Zurich 2006-10-05
-2659427 Nunningen Nunningen Nunningen 47.3945 7.62122 P PPL CH SO 1110 2621 1939 632 Europe/Zurich 2012-01-17
-2659433 Novazzano Novazzano 45.84073 8.98236 P PPLA3 CH TI 2106 5260 2395 346 Europe/Zurich 2011-07-31
-2659436 Nottwil Nottwil Nottwil 47.13569 8.13712 P PPL CH LU 304 1094 2911 523 Europe/Zurich 2012-01-17
-2659447 Niederwichtrach Niederwichtrach Wichtrach 46.8501 7.57748 P PPL CH BE 212 632 3843 548 Europe/Zurich 2010-04-05
-2659451 Niederurnen Niederurnen 47.12598 9.05428 P PPL CH GL 800 1622 3657 432 Europe/Zurich 2010-04-05
-2659456 Niederrohrdorf Niederrohrdorf Niederrohrdorf,Rohrdorf 47.42352 8.30643 P PPL CH AG 1902 4035 2784 461 Europe/Zurich 2012-02-28
-2659461 Niederlenz Niederlenz 47.40079 8.1764 P PPL CH AG 1907 4204 4022 383 Europe/Zurich 2010-04-05
-2659462 Niederhelfenschwil Niederhelfenschwil 47.47487 9.18543 P PPL CH SG 1728 3423 2668 580 582 Europe/Zurich 2011-08-08
-2659464 Niedergösgen Niedergosgen Gosgen,Gösgen,Niedergosgen,Niedergösgen 47.37217 7.99122 P PPL CH SO 1108 2572 3847 388 Europe/Zurich 2012-01-17
-2659467 Niedererlinsbach Niedererlinsbach Erlinsbach,Niedererlinsbach 47.39218 8.00503 P PPL CH SO 1105 2503 2258 397 Europe/Zurich 2012-01-17
-2659468 Niederbüren Niederburen Buren,Büren 47.46547 9.20568 P PPL CH SG 1728 3422 1415 490 Europe/Zurich 2010-04-05
-2659470 Niederbipp Niederbipp Niederbipp 47.26613 7.69461 P PPL CH BE 226 981 3862 462 Europe/Zurich 2012-02-01
-2659474 Nidau Nidau 47.12545 7.24033 P PPL CH BE 216 743 6696 437 Europe/Zurich 2010-04-05
-2659478 Neunkirch Neunkirch 47.69012 8.49981 P PPL CH SH 1401 2904 1911 430 Europe/Zurich 2010-04-05
-2659485 Neuhausem Neuhausem Neuhausem,Neuhausen am Rheinfall 47.68579 8.61474 P PPL CH SH 1403 2937 10019 471 Europe/Zurich 2012-01-17
-2659489 Neuenkirch Neuenkirch Neuenkirch 47.09989 8.20416 P PPL CH LU 304 1093 5963 550 Europe/Zurich 2012-01-17
-2659490 Neuenhof Neuenhof 47.4526 8.32577 P PPL CH AG 1902 4034 7957 404 Europe/Zurich 2012-02-28
-2659493 Neudorf Neudorf Neudorf 47.17699 8.20911 P PPL CH LU 304 1092 1068 675 Europe/Zurich 2012-01-17
-2659496 Neuchâtel Neuchatel Neuenburg,Nevshatel',Невшатель 46.99179 6.931 P PPLA CH NE 2404 6458 31270 441 Europe/Zurich 2011-05-04
-2659497 Netstal Netstal Netstal 47.06197 9.05534 P PPL CH GL 800 1625 2900 464 Europe/Zurich 2012-01-17
-2659504 Neftenbach / Dorf Neftenbach Neftenbach / Dorf Neftenbach Dorf Neftenbach 47.52764 8.6649 P PPLX CH ZH 110 223 3171 414 Europe/Zurich 2006-10-21
-2659506 Nebikon Nebikon Nebikon 47.19257 7.97806 P PPL CH LU 305 1126 2241 487 Europe/Zurich 2012-01-17
-2659510 Naters Naters 46.32536 7.98912 P PPL CH VS 2301 6007 7552 720 680 Europe/Zurich 2010-04-05
-2659515 Nänikon Nanikon 47.36975 8.68894 P PPL CH 198 1560 452 Europe/Zurich 2006-10-05
-2659516 Näfels Nafels Nafels,Näfels 47.09975 9.06411 P PPL CH GL 800 1619 3978 437 Europe/Zurich 2012-01-17
-2659522 Muttenz Muttenz 47.52271 7.64511 P PPL CH BL 1301 2770 16927 293 Europe/Zurich 2010-04-05
-2659529 Murten Murten Morat,Murten,Murten/Morat 46.92827 7.11715 P PPL CH FR 1005 2275 5800 542 462 Europe/Zurich 2010-04-05
-2659531 Muri Muri Muri,Muri AG 47.27428 8.33854 P PPLA2 CH AG 1908 4236 6463 478 Europe/Zurich 2011-03-01
-2659532 Muri Muri Muri,Muri bei Bern 46.93122 7.48658 P PPL CH BE 203 356 12374 558 Europe/Zurich 2010-08-09
-2659533 Murgenthal Murgenthal Murgental,Murgenthal 47.26667 7.81667 P PPL CH SO 1101 2408 3044 425 Europe/Zurich 2010-04-05
-2659538 Muotathal Muotathal Muotatal,Muotathal 46.97676 8.76499 P PPL CH SZ 506 1367 3548 640 Europe/Zurich 2012-01-17
-2659540 Muolen Muolen Muolen 47.52102 9.32554 P PPL CH SG 1721 3202 1118 490 Europe/Zurich 2012-02-01
-2659544 Münsterlingen Munsterlingen Munsterlingen,Münsterlingen 47.63089 9.23495 P PPL CH TG 2005 4691 2459 418 Europe/Zurich 2012-01-17
-2659546 Münsingen Munsingen 46.87298 7.561 P PPL CH BE 212 616 10928 539 Europe/Zurich 2010-04-05
-2659550 Münchwilen Munchwilen 47.47719 8.99677 P PPLA2 CH TG 2006 4746 4612 514 Europe/Zurich 2011-03-01
-2659551 Münchenstein Munchenstein 47.51378 7.62434 P PPL CH BL 1301 2769 11644 328 Europe/Zurich 2010-04-05
-2659552 Münchenbuchsee Munchenbuchsee 47.02175 7.45036 P PPL CH BE 209 546 9801 556 Europe/Zurich 2010-04-05
-2659553 Mumpf Mumpf 47.54563 7.92123 P PPL CH AG 1909 4255 1425 288 Europe/Zurich 2010-04-05
-2659555 Müllheim Mullheim Mullheim,Müllheim 47.60195 9.00357 P PPL CH TG 2007 4831 2493 411 Europe/Zurich 2012-01-17
-2659558 Mühlethurnen Muhlethurnen Muehlethurnen,Mühlethurnen 46.81345 7.50881 P PPL CH BE 222 876 1265 565 Europe/Zurich 2010-04-05
-2659561 Mühleberg Muhleberg 46.95466 7.26102 P PPL CH BE 213 668 2739 553 Europe/Zurich 2010-04-05
-2659564 Muhen Muhen Mittel-Muhen,Muhen 47.33671 8.05408 P PPL CH AG 1901 4009 3419 466 Europe/Zurich 2012-02-28
-2659568 Moutier Moutier Moutier 47.27818 7.36951 P PPL CH BE 214 700 7721 536 Europe/Zurich 2010-04-05
-2659569 Moudon Moudon Moudon 46.66948 6.80127 P PPL CH VD 2222 5678 4343 508 Europe/Zurich 2012-01-17
-2659574 Mosnang Mosnang Mosnang 47.36252 9.04296 P PPL CH SG 1727 3394 2936 721 Europe/Zurich 2012-02-01
-2659579 Mörschwil Morschwil Morschwil,Mörschwil 47.46867 9.42178 P PPL CH SG 1722 3214 3496 565 Europe/Zurich 2012-01-17
-2659587 Morges Morges 46.51127 6.49854 P PPL CH VD 2227 5642 14117 380 Europe/Zurich 2010-04-05
-2659597 Morbio Inferiore Morbio Inferiore Morbio,Morbio Inferiore 45.85341 9.01644 P PPL CH TI 2106 5268 4331 346 Europe/Zurich 2012-01-17
-2659601 Montreux Montreux Montr'o,Montreux,Montrjo,montoru,Монтрьо,Монтрё,მონტრე,モントルー 46.43301 6.91143 P PPL CH VD 2230 5886 22897 403 Europe/Zurich 2010-04-05
-2659613 Monthey Monthey Monthey 46.25546 6.96066 P PPL CH VS 2308 6153 15106 408 Europe/Zurich 2012-01-17
-2659616 Monte Carasso Monte Carasso Monte Carasso-Sementina 46.18649 8.99892 P PPL CH TI 2101 5013 2336 238 Europe/Zurich 2010-04-05
-2659623 Montana Montana Montana,Montana Vermala 46.31264 7.48408 P PPL CH VS 2311 6234 2301 1493 Europe/Zurich 2012-01-17
-2659625 Montagny Montagny Montagny-pres-Yverdon,Montagny-près-Yverdon 46.79289 6.61222 P PPL CH VD 2224 5922 1467 462 Europe/Zurich 2010-04-05
-2659627 Montagnola Montagnola Montagnola 45.98167 8.91772 P PPL CH TI 2105 5236 2297 472 Europe/Zurich 2012-01-17
-2659631 Mönchaltorf Monchaltorf 47.30958 8.72029 P PPL CH 196 2779 445 Europe/Zurich 2006-10-05
-2659636 Mollis Mollis Mollis 47.09418 9.07542 P PPL CH GL 800 1617 3014 447 Europe/Zurich 2012-01-17
-2659645 Möhlin Mohlin 47.55915 7.84329 P PPL CH AG 1909 4254 9382 310 Europe/Zurich 2010-04-05
-2659648 Mogelsberg Mogelsberg Mogelsberg 47.36222 9.13541 P PPL CH SG 1727 3375 2213 753 Europe/Zurich 2012-02-01
-2659658 Minusio Minusio 46.17769 8.81473 P PPL CH TI 2104 5118 6653 243 Europe/Zurich 2010-04-05
-2659666 Mézières Mezieres 46.67958 6.9263 P PPL CH FR 1002 2087 1060 769 Europe/Zurich 2010-04-05
-2659667 Meyrin Meyrin 46.23424 6.08025 P PPL CH GE 2500 6630 19772 445 Europe/Zurich 2011-01-14
-2659670 Mettmenstetten Mettmenstetten 47.24529 8.46347 P PPLX CH ZH 101 9 2798 473 Europe/Zurich 2006-10-05
-2659674 Messen Messen Messen 47.09128 7.44957 P PPL CH SO 1103 2457 1018 506 Europe/Zurich 2012-01-17
-2659676 Mesocco Mesocco Mesocco,Misox 46.39037 9.23323 P PPL CH GR 1828 3822 1262 777 Europe/Zurich 2012-01-17
-2659683 Merenschwand Merenschwand Merenschwand 47.2587 8.37532 P PPL CH AG 1908 4225 2479 399 Europe/Zurich 2012-02-01
-2659685 Menznau Menznau Menznau 47.08364 8.03971 P PPL CH LU 305 1136 2628 597 Europe/Zurich 2012-01-17
-2659686 Menzingen Menzingen Menzingen 47.17764 8.59215 P PPL CH ZG 900 1704 3878 806 Europe/Zurich 2012-01-17
-2659687 Menziken Menziken Menziken 47.24249 8.19047 P PPL CH AG 1905 4141 5415 579 Europe/Zurich 2012-02-28
-2659689 Mendrisio Mendrisio Mendrisio 45.86741 8.9821 P PPL CH TI 2106 5254 7310 358 Europe/Zurich 2012-01-17
-2659691 Mellingen Mellingen Mellinga,Mellingen,Mellingen AG 47.41903 8.27331 P PPL CH AG 1902 4033 4224 347 Europe/Zurich 2011-12-02
-2659692 Melide Melide 45.95455 8.94725 P PPL CH TI 2105 5198 1577 282 278 Europe/Zurich 2010-04-05
-2659695 Melchnau Melchnau Melchnau 47.18213 7.85128 P PPL CH BE 202 333 1467 531 Europe/Zurich 2010-04-05
-2659696 Melano Melano Melano 45.9221 8.98544 P PPL CH TI 2105 5219 1133 290 Europe/Zurich 2012-01-17
-2659699 Meisterschwanden Meisterschwanden 47.29489 8.22867 P PPL CH AG 1907 4202 2459 503 Europe/Zurich 2011-03-10
-2659700 Meiringen Meiringen Meiringen,Meyringen 46.72678 8.18396 P PPL CH BE 218 785 4652 596 Europe/Zurich 2012-01-17
-2659701 Meinisberg Meinisberg Montmenil,Montménil 47.15965 7.34801 P PPL CH BE 205 390 1198 446 Europe/Zurich 2010-04-05
-2659703 Meilen Meilen 47.27232 8.64617 P PPLA2 CH ZH 107 156 4419 464 Europe/Zurich 2011-03-01
-2659704 Meierskappel Meierskappel Meierskappel 47.12424 8.44436 P PPL CH LU 303 1064 1128 487 Europe/Zurich 2012-01-17
-2659708 Meggen Meggen 47.04691 8.37467 P PPL CH LU 303 1063 6533 476 Europe/Zurich 2010-04-05
-2659721 Mauensee Mauensee Mauensee 47.16847 8.06617 P PPL CH LU 304 1091 1199 516 Europe/Zurich 2012-01-17
-2659724 Matzingen Matzingen Matzingen 47.52026 8.93194 P PPL CH TG 2004 4591 2399 446 Europe/Zurich 2012-01-17
-2659726 Matzendorf Matzendorf 47.30374 7.6282 P PPL CH SO 1102 2427 1282 496 Europe/Zurich 2010-04-05
-2659731 Matten Matten Matten,Matten b.I.,Matten bei Interlaken 46.67833 7.86889 P PPL CH BE 211 594 3676 576 Europe/Zurich 2012-01-17
-2659739 Massagno Massagno Massagno 46.01562 8.94534 P PPL CH TI 2105 5192 5774 413 Europe/Zurich 2012-02-01
-2659748 Martigny-Ville Martigny-Ville Martigny 46.10276 7.07245 P PPL CH VS 2307 6136 14768 475 Europe/Zurich 2010-04-05
-2659750 Martigny-Combe Martigny-Combe 46.07817 7.05099 P PPL CH VS 2307 6137 1731 579 Europe/Zurich 2010-04-05
-2659753 Marthalen Marthalen 47.62913 8.65326 P PPL CH 35 1567 395 Europe/Zurich 2006-10-05
-2659754 Märstetten Maerstetten CH MAR 47.59252 9.06851 P PPL CH TG 2008 4941 2480 421 426 Europe/Zurich 2011-03-23
-2659755 Marsens Marsens Marsens 46.65649 7.06167 P PPL CH FR 1003 2131 1571 741 Europe/Zurich 2012-01-17
-2659772 Männedorf Mannedorf 47.25686 8.69893 P PPL CH 155 7951 460 Europe/Zurich 2006-10-05
-2659775 Malvaglia Malvaglia Malvaglia 46.41282 8.97921 P PPL CH TI 2102 5041 1290 380 Europe/Zurich 2012-01-17
-2659776 Malters Malters Malters 47.03628 8.18193 P PPL CH LU 303 1062 6181 504 Europe/Zurich 2012-01-17
-2659781 Malleray Malleray 47.23839 7.27286 P PPL CH BE 214 697 1918 700 Europe/Zurich 2010-04-05
-2659784 Malans Malans 46.98096 9.57527 P PPL CH GR 1826 3942 2051 556 Europe/Zurich 2010-04-28
-2659787 Maienfeld Maienfeld Magia,Maienfeld,Maienfeld GR,maienferuto,マイエンフェルト 47.00472 9.53115 P PPL CH GR 1826 3953 2435 506 Europe/Zurich 2010-08-09
-2659798 Magden Magden 47.52868 7.81128 P PPL CH AG 1909 4253 3433 324 Europe/Zurich 2010-04-05
-2659800 Magadino Magadino 46.14892 8.8561 P PPL CH TI 2104 5116 1538 197 Europe/Zurich 2010-04-05
-2659805 Madiswil Madiswil 47.16463 7.79858 P PPL CH BE 202 332 1991 538 Europe/Zurich 2010-04-05
-2659807 Lyssach Lyssach 47.06445 7.58228 P PPL CH BE 206 415 1375 519 Europe/Zurich 2010-04-05
-2659808 Lyss Lyss Lyss 47.0741 7.30655 P PPL CH BE 201 306 10937 445 Europe/Zurich 2010-08-09
-2659811 Luzern Luzern Liucerna,Ljucern,Loukerne,Lucerna,Lucerne,Lucerno,Luzern,Medicago sativa,lu sai en,lwzrn,rutsu~erun,Λουκέρνη,Люцерн,לוצרן,ルツェルン,卢塞恩 47.05048 8.30635 P PPLA CH LU 303 1061 57066 437 Europe/Zurich 2010-04-05
-2659812 Luzein Luzein Luzein 46.91957 9.7608 P PPL CH GR 1830 3861 1153 950 Europe/Zurich 2012-01-17
-2659814 Lützelflüh Lutzelfluh Luetzelflueh,Lutzelfluh,Lützelflüh 47.00757 7.69165 P PPL CH BE 225 955 4035 608 Europe/Zurich 2012-01-17
-2659819 Lutry Lutry 46.50241 6.68647 P PPL CH VD 2226 5606 8774 386 Europe/Zurich 2010-04-05
-2659820 Lütisburg Lutisburg Lutisburg-Dorf,Lütisburg-Dorf 47.39451 9.08312 P PPL CH SG 1727 3393 1476 582 Europe/Zurich 2010-04-05
-2659821 Luthern Luthern Luthern 47.05753 7.91692 P PPL CH LU 305 1135 1392 786 Europe/Zurich 2012-01-17
-2659822 Luterbach Luterbach Luterbach 47.21426 7.58463 P PPL CH SO 1106 2527 3292 433 Europe/Zurich 2012-02-01
-2659828 Lungern Lungern Lungern 46.78578 8.15984 P PPL CH OW 600 1405 1921 716 Europe/Zurich 2010-04-05
-2659831 Lumino Lumino Lumino 46.23072 9.06634 P PPL CH TI 2101 5001 1190 275 Europe/Zurich 2012-01-17
-2659836 Lugano Lugano Lugano,Luganum,lwghanw,Лугано,לוגאנו,لوغانو 46.01008 8.96004 P PPL CH TI 2105 5192 26365 284 Europe/Zurich 2010-04-05
-2659839 Luchsingen Luchsingen Luchsingen 46.9664 9.03715 P PPL CH GL 800 1614 1530 573 Europe/Zurich 2012-01-17
-2659840 Lucens Lucens 46.70854 6.83931 P PPL CH VD 2222 5675 2192 498 Europe/Zurich 2010-04-05
-2659845 Lotzwil Lotzwil 47.19135 7.79102 P PPL CH BE 202 331 2391 500 Europe/Zurich 2010-04-05
-2659851 Lostorf Lostorf Lostorf 47.38445 7.94849 P PPL CH SO 1105 2493 3749 443 Europe/Zurich 2012-01-17
-2659853 Losone Losone 46.16866 8.75928 P PPL CH TI 2104 5115 6070 239 Europe/Zurich 2010-04-05
-2659864 Lodrino Lodrino 46.30016 8.97986 P PPL CH TI 2107 5285 1526 271 Europe/Zurich 2010-04-05
-2659869 Locarno Locarno 46.17086 8.79953 P PPL CH TI 2104 5113 14509 206 Europe/Zurich 2010-04-05
-2659873 Littau Littau Littau 47.05 8.26274 P PPL CH LU 303 1060 16121 509 Europe/Zurich 2012-01-17
-2659878 Linthal Linthal Linthal,Linthal GL,Linththal 46.92127 8.99799 P PPL CH GL 800 1613 1080 662 652 Europe/Zurich 2012-01-17
-2659883 Linden Linden Linden,Linden bei Oberdiessbach 46.84872 7.67491 P PPL CH BE 212 614 1315 903 Europe/Zurich 2012-01-17
-2659888 Ligornetto Ligornetto Ligornetto 45.86148 8.95446 P PPL CH TI 2106 5253 1524 356 Europe/Zurich 2012-02-01
-2659891 Liestal Liestal Liestal 47.48455 7.73446 P PPLA CH BL 1303 2829 12832 327 Europe/Zurich 2010-04-05
-2659892 Liesberg Liesberg 47.40398 7.42787 P PPL CH BL 1302 2788 1210 534 Europe/Zurich 2010-04-05
-2659898 Lichtensteig Lichtensteig 47.32381 9.08758 P PPL CH SG 1727 3374 1945 638 Europe/Zurich 2010-04-05
-2659899 Leytron Leytron 46.1866 7.2078 P PPL CH VS 2307 6135 2194 491 Europe/Zurich 2010-04-05
-2659900 Leysin Leysin 46.34183 7.01151 P PPL CH VD 2221 5407 3066 1262 Europe/Zurich 2010-04-05
-2659903 Le Vaud Le Vaud Vaud 46.47753 6.23603 P PPL CH VD 2228 5731 1104 814 Europe/Zurich 2010-04-05
-2659904 Leuzigen Leuzigen Leuzigen 47.17458 7.45776 P PPL CH BE 205 388 1167 455 Europe/Zurich 2012-01-17
-2659907 Leukerbad Leukerbad 46.37943 7.62687 P PPL CH VS 2306 6111 1427 1383 Europe/Zurich 2010-04-05
-2659908 Leuk Leuk Leuk,Leuk Stadt 46.31667 7.63333 P PPLA2 CH VS 2306 6110 3386 721 Europe/Zurich 2011-03-01
-2659917 Les Ponts-de-Martel Les Ponts-de-Martel Les Ponts-Martel,Les Ponts-de-Martel 46.99925 6.73356 P PPL CH NE 2403 6437 1278 1011 Europe/Zurich 2012-01-17
-2659927 Les Geneveys-sur-Coffrane Les Geneveys-sur-Coffrane Les Geneveys-sur-Coffrane 47.014 6.85253 P PPL CH NE 2405 6471 1458 849 Europe/Zurich 2012-01-17
-2659937 Les Breuleux Les Breuleux Les Breuleux 47.21099 7.00792 P PPL CH JU 2602 6743 1277 1018 Europe/Zurich 2012-01-17
-2659938 Les Brenets Les Brenets Les Brenets 47.06708 6.70727 P PPL CH NE 2403 6431 1169 874 Europe/Zurich 2012-01-17
-2659939 Les Bois Les Bois Les Bois 47.17715 6.90498 P PPL CH JU 2602 6742 1104 1036 Europe/Zurich 2012-01-17
-2659952 Lenzburg Lenzburg 47.38853 8.17503 P PPLA2 CH AG 1907 4201 7392 402 Europe/Zurich 2011-03-01
-2659954 Lens Lens Lens 46.27965 7.44596 P PPL CH VS 2311 6240 3497 1134 Europe/Zurich 2012-02-01
-2659955 Le Noirmont Le Noirmont Le Noirmont,Noirmont 47.22567 6.9573 P PPL CH JU 2602 6754 1617 980 Europe/Zurich 2012-01-17
-2659956 Lenk Lenk 46.45826 7.44298 P PPL CH BE 219 792 2268 1067 Europe/Zurich 2010-04-05
-2659957 Lengnau Lengnau Lengnau 47.18382 7.37371 P PPL CH BE 205 387 7336 448 Europe/Zurich 2012-01-17
-2659959 Le Mont-sur-Lausanne Le Mont-sur-Lausanne Le Mont 46.55815 6.63145 P PPL CH VD 2225 5587 5270 684 Europe/Zurich 2010-04-05
-2659960 Le Locle Le Locle Le Locle 47.05953 6.75228 P PPL CH NE 2403 6436 10279 929 Europe/Zurich 2012-02-01
-2659963 Le Landeron Le Landeron Laneron,Laneron-Combes,Le Landeron 47.0562 7.07184 P PPL CH NE 2404 6455 4278 430 Europe/Zurich 2012-01-17
-2659967 Leibstadt Leibstadt Leibstadt 47.5879 8.17611 P PPL CH AG 1911 4311 1287 356 Europe/Zurich 2012-02-01
-2659974 Le Chenit Le Chenit 46.60688 6.23062 P PPL CH VD 2224 5872 4062 1015 Europe/Zurich 2010-04-05
-2659977 Le Châtelard Le Chatelard Chatelard,Châtelard,Le Chatelard,Le Chatelard-Montreux,Le Châtelard,Le Châtelard-Montreux,Shatlar,Шатлар 46.44527 6.89908 P PPL CH VD 2230 5886 23192 424 Europe/Zurich 2012-01-17
-2659988 Lavertezzo Lavertezzo Lavertezzo 46.25777 8.84329 P PPL CH TI 2104 5112 1168 622 Europe/Zurich 2012-01-17
-2659992 Lauterbrunnen Lauterbrunnen Lauterbrunnen,rautaburun'nen,ラウターブルンネン 46.59568 7.90765 P PPL CH BE 211 584 2646 813 Europe/Zurich 2012-01-17
-2659993 Lausen Lausen 47.47139 7.7603 P PPL CH BL 1303 2828 4892 336 Europe/Zurich 2010-04-05
-2659994 Lausanne Lausanne Lausana,Lausanne,Lausonium,Lauzano,Laŭzano,Losanna,Losena,Lozan,Lozana,Lozane,Lozanna,lo san,luo sang,rozan'nu,Λωζάνη,Лозана,Лозанна,לוזאן,โลซาน,ローザンヌ,洛桑 46.516 6.63282 P PPLA CH VD 2225 5586 116751 453 Europe/Zurich 2010-04-05
-2659996 Lauperswil Lauperswil Lauperswil 46.96544 7.74197 P PPL CH BE 223 903 2700 644 Europe/Zurich 2012-01-17
-2659997 Laupersdorf Laupersdorf Laupersdorf 47.31426 7.65053 P PPL CH SO 1102 2426 1670 501 Europe/Zurich 2012-01-17
-2659998 Laupen Laupen Laupen,Laupen BE 46.90214 7.23973 P PPL CH BE 213 667 2774 495 Europe/Zurich 2010-04-05
-2659999 Laufenburg Laufenburg 47.55985 8.06225 P PPLA2 CH AG 1906 4170 2000 318 Europe/Zurich 2011-03-01
-2660001 Laufen Laufen 47.42193 7.49946 P PPLA2 CH BL 1302 2787 5210 354 Europe/Zurich 2011-03-01
-2660002 Läufelfingen Laufelfingen Laeufelfingen 47.39457 7.85578 P PPL CH BL 1304 2852 1271 557 Europe/Zurich 2010-04-05
-2660007 La Tour-de-Trême La Tour-de-Treme La Tour-de-Treme,La Tour-de-Trême,Tour de Treme 46.61061 7.06496 P PPL CH FR 1003 2125 3686 747 Europe/Zurich 2012-01-17
-2660008 La Tour-de-Peilz La Tour-de-Peilz 46.45312 6.85856 P PPL CH VD 2230 5889 10522 387 Europe/Zurich 2010-04-05
-2660012 La Sarraz La Sarraz 46.65863 6.51077 P PPL CH VD 2227 5498 1734 490 Europe/Zurich 2010-04-05
-2660016 La Roche La Roche La Roche 46.69723 7.1393 P PPL CH FR 1003 2149 1405 750 Europe/Zurich 2012-01-17
-2660029 Langrickenbach Langrickenbach Langrickenbach 47.59409 9.24738 P PPL CH TG 2005 4681 1031 522 Europe/Zurich 2012-01-17
-2660030 Langnau / Langnau (Dorf) Langnau / Langnau (Dorf) Langnau (Dorf) 47.28643 8.53627 P PPLX CH ZH 106 136 4745 530 Europe/Zurich 2006-10-21
-2660032 Langnau Langnau 46.93936 7.78738 P PPL CH BE 223 902 8784 677 Europe/Zurich 2011-04-18
-2660034 Langenthal Langenthal Langental,Langenthal 47.21526 7.79607 P PPL CH BE 202 329 14184 478 Europe/Zurich 2012-01-17
-2660036 Langenbruck Langenbruck 47.34917 7.76802 P PPL CH BL 1305 2888 1049 707 Europe/Zurich 2010-04-05
-2660038 La Neuveville La Neuveville La Neuveville 47.0684 7.09955 P PPL CH BE 215 723 3495 467 Europe/Zurich 2012-01-17
-2660042 Landquart Landquart 46.95 9.56667 P PPLA2 CH GR 1826 3942 0 532 Europe/Zurich 2011-03-01
-2660075 Lachen Lachen Lachen 47.19152 8.8562 P PPL CH SZ 505 1341 6685 415 Europe/Zurich 2012-01-17
-2660076 La Chaux-de-Fonds La Chaux-de-Fonds Chaux-de-Fonds,La Chaux de Fonda,La Chaux-de-Fonds 47.09993 6.82586 P PPL CH NE 2402 6421 36825 995 Europe/Zurich 2010-04-05
-2660080 L'Abbaye L'Abbaye L'Abbaye 46.64966 6.31907 P PPLA3 CH VD 2224 5871 0 1009 Europe/Zurich 2011-07-31
-2660083 Laax Laax Laax,Laax bei Ilanz 46.80452 9.25787 P PPL CH GR 1831 3575 1252 1011 Europe/Zurich 2011-02-20
-2660086 Küttigen Kuttigen Kuettigen,Kuttigen,Küttigen 47.41566 8.04767 P PPL CH AG 1901 4008 5234 404 Europe/Zurich 2012-02-28
-2660088 Küssnacht Kussnacht Kuessnacht,Kuessnacht am Rigi,Kussnacht,Kussnacht am Rigi,Küssnacht,Küssnacht am Rigi 47.08557 8.44206 P PPL CH SZ 504 1331 11777 440 Europe/Zurich 2012-01-17
-2660089 Küsnacht Kuesnacht 47.31805 8.58401 P PPL CH ZH 154 11525 427 Europe/Zurich 2008-05-21
-2660090 Künten Kunten Kuenten,Kunten,Künten 47.3889 8.33105 P PPL CH AG 1902 4031 1732 427 Europe/Zurich 2012-01-17
-2660099 Krummenau Krummenau 47.24755 9.17054 P PPL CH SG 1727 3358 1453 716 Europe/Zurich 2011-04-18
-2660104 Kriens Kriens Kriens,Krienz,Krins,Кринс 47.03537 8.27631 P PPL CH LU 303 1059 25010 493 Europe/Zurich 2012-01-17
-2660105 Kriegstetten Kriegstetten Kriegstten 47.17449 7.59799 P PPL CH SO 1106 2525 1116 455 Europe/Zurich 2010-04-05
-2660108 Kreuzlingen Kreuzlingen Kreuzlingen 47.65 9.18333 P PPLA2 CH TG 2005 4671 17655 402 Europe/Zurich 2011-03-01
-2660112 Krauchthal Krauchthal Krauchtal 47.00964 7.5664 P PPL CH BE 206 414 2339 583 Europe/Zurich 2010-04-05
-2660115 Koppigen Koppigen Koppigen 47.13385 7.59875 P PPL CH BE 206 413 1977 479 Europe/Zurich 2012-01-17
-2660117 Konolfingen Konolfingen Konolfingen 46.87909 7.62013 P PPL CH BE 212 612 4562 662 Europe/Zurich 2010-04-05
-2660119 Köniz Koniz Koeniz,Köniz 46.92436 7.41457 P PPL CH BE 203 355 37196 577 Europe/Zurich 2010-04-05
-2660120 Kölliken Kolliken Kolliken,Kölliken 47.33882 8.02644 P PPL CH AG 1910 4276 4059 429 Europe/Zurich 2012-02-28
-2660121 Kollbrunn Kollbrunn 47.45793 8.78295 P PPL CH 231 1848 526 Europe/Zurich 2006-10-05
-2660123 Koblenz Koblenz 47.60972 8.2375 P PPL CH AG 1911 4310 1651 313 Europe/Zurich 2010-04-05
-2660124 Knutwil Knutwil Knutwil 47.19953 8.07315 P PPL CH LU 304 1089 1722 542 Europe/Zurich 2012-01-17
-2660125 Knonau Knonau 47.2235 8.46197 P PPL CH ZH 101 7 1077 431 Europe/Zurich 2006-10-05
-2660127 Kloten Kloten Kloten 47.45152 8.58491 P PPL CH ZH 62 16289 439 Europe/Zurich 2011-04-06
-2660128 Klosters Serneus Klosters Serneus Serneus,Serneus Dorf 46.88918 9.83826 P PPL CH GR 1830 3871 4044 998 Europe/Zurich 2010-04-05
-2660135 Klingnau Klingnau Klingnau 47.57998 8.25048 P PPL CH AG 1911 4309 3069 400 Europe/Zurich 2012-02-28
-2660141 Kleinlützel Kleinlutzel Kleinlutzel,Kleinlützel 47.42537 7.42294 P PPL CH SO 1110 2619 1296 417 Europe/Zurich 2012-02-01
-2660152 Kirchlindach Kirchlindach Kirchlindach 46.99965 7.41735 P PPL CH BE 203 354 2553 593 Europe/Zurich 2012-01-17
-2660155 Kirchberg Kirchberg 47.41159 9.0402 P PPL CH SG 1727 3392 8127 737 Europe/Zurich 2010-04-05
-2660156 Kirchberg Kirchberg 47.08538 7.58288 P PPL CH BE 206 412 5335 509 Europe/Zurich 2010-04-05
-2660160 Killwangen Killwangen Killwangen 47.43182 8.34805 P PPL CH AG 1902 4030 1783 419 Europe/Zurich 2012-01-17
-2660161 Kilchberg Kilchberg 47.32438 8.54548 P PPL CH 135 6511 467 Europe/Zurich 2006-10-05
-2660170 Kerzers Kerzers Chietres,Chiètres 46.97586 7.1957 P PPL CH FR 1005 2265 4459 455 Europe/Zurich 2010-04-05
-2660171 Kerns Kerns Kerns 46.90088 8.27652 P PPL CH OW 600 1404 5217 569 Europe/Zurich 2012-01-17
-2660177 Kehrsatz Kehrsatz Kehrsatz 46.91035 7.47096 P PPL CH BE 222 870 3636 572 Europe/Zurich 2010-04-05
-2660187 Kappelen Kappelen Kappelen,Kappelen BE 47.06015 7.2686 P PPL CH BE 201 302 1075 447 Europe/Zurich 2012-01-17
-2660191 Kandersteg Kandersteg Kandersteg 46.49467 7.67326 P PPL CH BE 210 565 1123 1172 Europe/Zurich 2010-04-05
-2660194 Kaltbrunn Kaltbrunn Kaltbrunn 47.21367 9.0259 P PPL CH SG 1726 3313 3803 441 Europe/Zurich 2012-01-17
-2660195 Kallnach Kallnach Kallnach 47.02032 7.23545 P PPL CH BE 201 304 1545 464 Europe/Zurich 2012-01-17
-2660200 Kaisten Kaisten 47.5416 8.04337 P PPL CH AG 1906 4169 2140 329 Europe/Zurich 2010-04-05
-2660204 Kaiseraugst Kaiseraugst 47.53966 7.72605 P PPL CH AG 1909 4252 3600 268 Europe/Zurich 2010-04-05
-2660205 Jussy Jussy 46.2359 6.26701 P PPL CH GE 2500 6626 1356 475 Europe/Zurich 2010-04-05
-2660219 Jonschwil Jonschwil 47.42402 9.08689 P PPL CH SG 1728 3405 3221 599 Europe/Zurich 2010-04-05
-2660220 Jonen Jonen Jonen 47.2974 8.39337 P PPL CH AG 1903 4071 1683 408 Europe/Zurich 2012-01-17
-2660221 Jona Jona 47.22983 8.83884 P PPL CH SG 1726 3340 17655 424 Europe/Zurich 2010-04-05
-2660226 Jenaz Jenaz 46.92892 9.71275 P PPL CH GR 1830 3863 1130 779 Europe/Zurich 2011-04-18
-2660228 Jegenstorf Jegenstorf 47.04802 7.50787 P PPL CH BE 209 540 4027 524 Europe/Zurich 2010-04-05
-2660247 Pfäffikon / Irgenhausen Pfaeffikon / Irgenhausen Irgenhausen,Irgenhusen 47.3624 8.79265 P PPLX CH CH ZH 108 177 2032 557 Europe/Zurich 2006-10-21
-2660250 Inwil Inwil Inwil 47.1253 8.34885 P PPL CH LU 302 1026 2163 427 Europe/Zurich 2012-01-17
-2660253 Interlaken Interlaken Interlaken,intaraken,Интерлакен,インターラーケン 46.68387 7.86638 P PPLA2 CH BE 211 593 5067 570 Europe/Zurich 2012-02-18
-2660254 Ins Ins Anet 47.00584 7.10609 P PPL CH BE 208 496 2826 478 Europe/Zurich 2010-04-05
-2660261 Ingenbohl Ingenbohl Ingenbohl 47.00464 8.61477 P PPL CH SZ 506 1364 7967 447 Europe/Zurich 2012-01-17
-2660269 Illnau Illnau 47.4113 8.72125 P PPL CH 174 2964 509 Europe/Zurich 2006-10-05
-2660275 Ilanz Ilanz Glion 46.77413 9.20461 P PPL CH GR 1831 3574 2321 705 Europe/Zurich 2010-04-05
-2660277 Igis Igis Igis 46.94531 9.57218 P PPL CH GR 1826 3942 6828 567 Europe/Zurich 2012-01-17
-2660279 Ibach Ibach 47.01105 8.64538 P PPL CH SZ 506 1372 3500 454 Europe/Zurich 2010-04-05
-2660280 Hüttwilen Huttwilen 47.60674 8.87343 P PPL CH TG 2007 4821 1381 465 Europe/Zurich 2010-04-18
-2660281 Huttwil Huttwil Huttwil 47.11502 7.86209 P PPL CH BE 225 954 4643 669 Europe/Zurich 2012-01-17
-2660292 Hünenberg Hunenberg 47.17536 8.42497 P PPL CH ZG 900 1703 9032 449 Europe/Zurich 2010-04-05
-2660298 Horw Horw Horw 47.01692 8.30956 P PPL CH LU 303 1059 12348 441 Europe/Zurich 2012-02-01
-2660303 Horn Horn Horn 47.49425 9.46246 P PPL CH SG 1722 3213 2274 400 Europe/Zurich 2012-01-17
-2660305 Horgen Horgen 47.25579 8.60027 P PPLA2 CH ZH 106 133 15973 471 Europe/Zurich 2011-03-01
-2660306 Zürich (Kreis 10) / Höngg Zuerich (Kreis 10) / Hoengg Hoengg,Höngg 47.40313 8.4971 P PPLX CH ZH 112 261 17117 468 Europe/Zurich 2006-10-21
-2660308 Homburg Homburg Homburg 47.63466 9.0079 P PPL CH TG 2007 4816 1406 606 Europe/Zurich 2012-01-17
-2660309 Hombrechtikon Hombrechtikon 47.25298 8.77212 P PPL CH 153 4767 496 Europe/Zurich 2006-10-05
-2660311 Hölstein Holstein Holstein,Hölstein 47.42512 7.77136 P PPL CH BL 1305 2886 2249 427 Europe/Zurich 2012-01-17
-2660322 Hohenrain Hohenrain Hohenrain 47.18083 8.31802 P PPL CH LU 302 1032 2090 604 Europe/Zurich 2012-02-01
-2660329 Hochwald Hochwald Hochwald 47.4583 7.6418 P PPL CH SO 1104 2475 1254 624 Europe/Zurich 2012-01-17
-2660332 Hochdorf Hochdorf 47.16667 8.28333 P PPLA2 CH LU 302 1031 8192 467 Europe/Zurich 2011-03-01
-2660334 Hitzkirch Hitzkirch 47.22403 8.26425 P PPL CH LU 302 1030 2165 499 Europe/Zurich 2010-05-31
-2660335 Hittnau / Hittnau (Dorf) Hittnau / Hittnau (Dorf) Hittnau (Dorf) 47.36334 8.82418 P PPLX CH ZH 108 173 1502 663 Europe/Zurich 2006-10-21
-2660338 Hinwil Hinwil 47.29426 8.84393 P PPLA2 CH ZH 105 117 5488 573 Europe/Zurich 2011-03-01
-2660341 Hinterrhein Hinterrhein Hinterrhein 46.53333 9.2 P PPLA2 CH GR 1823 3691 108 1668 Europe/Zurich 2011-03-01
-2660349 Hindelbank Hindelbank 47.0427 7.54143 P PPL CH BE 206 409 1994 523 Europe/Zurich 2010-04-05
-2660350 Himmelried Himmelried Himmelried 47.42111 7.59659 P PPL CH SO 1110 2618 1002 644 Europe/Zurich 2012-01-17
-2660351 Hilterfingen Hilterfingen Hilterfingen 46.73521 7.66185 P PPL CH BE 224 929 3841 588 Europe/Zurich 2010-04-05
-2660352 Hildisrieden Hildisrieden Hildisrieden 47.15068 8.22582 P PPL CH LU 304 1088 1882 681 Europe/Zurich 2012-01-17
-2660353 Hettlingen Hettlingen 47.5461 8.70532 P PPL CH 221 2221 428 Europe/Zurich 2006-10-05
-2660355 Herzogenbuchsee Herzogenbuchsee 47.18795 7.7062 P PPL CH BE 226 979 5522 474 Europe/Zurich 2010-04-05
-2660359 Herrliberg Herrliberg 47.29064 8.61464 P PPL CH ZH 107 152 5025 519 Europe/Zurich 2006-10-05
-2660361 Hermiswil Hermiswil 46.83125 7.47775 P PPL CH BE 222 880 3156 855 Europe/Zurich 2011-04-18
-2660365 Herisau Herisau Herisan,Herisau 47.38615 9.27916 P PPLA CH AR 1501 3001 15438 780 Europe/Zurich 2010-04-05
-2660367 Hergiswil Hergiswil Hergiswil,Hergiswil NW 46.98429 8.30944 P PPL CH NW 700 1507 5437 452 Europe/Zurich 2010-04-05
-2660371 Hérémence Heremence Heremence,Hérémence 46.18153 7.40492 P PPL CH VS 2305 6084 1331 1223 Europe/Zurich 2012-01-17
-2660376 Henggart Henggart 47.56272 8.68215 P PPL CH ZH 102 31 1574 443 Europe/Zurich 2006-10-05
-2660386 Heitenried Heitenried Heitenried 46.82762 7.29944 P PPL CH FR 1006 2296 1106 768 Europe/Zurich 2012-01-17
-2660388 Heimiswil Heimiswil 47.05989 7.65507 P PPL CH BE 206 407 1570 600 Europe/Zurich 2010-04-05
-2660390 Heimberg Heimberg Heimberg,Heimberg BE 46.79482 7.60433 P PPL CH BE 224 928 5501 564 Europe/Zurich 2012-01-17
-2660392 Heiden Heiden Heiden,Heiden AR 47.44255 9.53293 P PPL CH AR 1503 3032 3999 786 Europe/Zurich 2012-01-17
-2660394 Oberwinterthur (Kreis 2) / Hegi Oberwinterthur (Kreis 2) / Hegi Hegi 47.50317 8.77394 P PPLX CH ZH 110 230 1539 462 Europe/Zurich 2006-10-21
-2660400 Hausen am Albis / Hausen (Dorf) Hausen am Albis / Hausen (Dorf) Hausen (Dorf) 47.24496 8.53299 P PPLX CH ZH 101 4 3253 620 613 Europe/Zurich 2009-11-16
-2660410 Hasle Hasle Hasle 46.97786 8.05326 P PPL CH LU 301 1005 1725 752 Europe/Zurich 2012-01-17
-2660418 Hallau Hallau 47.69648 8.45827 P PPL CH SH 1406 2971 2000 424 Europe/Zurich 2010-04-05
-2660424 Hägglingen Hagglingen Hagglingen,Hägglingen 47.3885 8.25323 P PPL CH AG 1903 4068 2183 473 Europe/Zurich 2012-02-01
-2660425 Häggenschwil Haggenschwil Haggenschwil,Häggenschwil 47.49422 9.34247 P PPL CH SG 1721 3201 1216 570 Europe/Zurich 2012-01-17
-2660426 Hägendorf Hagendorf Hagendorf,Hägendorf 47.33436 7.84192 P PPL CH SO 1108 2579 4338 439 Europe/Zurich 2012-01-17
-2660432 Güttingen Guttingen Guttingen,Güttingen 47.60386 9.28691 P PPL CH TG 2005 4656 1336 420 Europe/Zurich 2012-02-01
-2660441 Gunzwil Gunzwil Gunzwil 47.21072 8.17932 P PPL CH LU 304 1081 1925 666 Europe/Zurich 2012-01-17
-2660442 Gunzgen Gunzgen 47.31375 7.83102 P PPL CH SO 1108 2578 1604 437 Europe/Zurich 2011-08-19
-2660452 Guggisberg Guggisberg Guggisberg 46.76756 7.32946 P PPL CH BE 221 852 1628 1119 Europe/Zurich 2012-01-17
-2660461 Gstaad Gstaad 46.47215 7.28685 P PPL CH BE 220 843 9200 1055 Europe/Zurich 2010-04-05
-2660462 Gryon Gryon 46.27377 7.05975 P PPL CH VD 2221 5405 1122 1152 Europe/Zurich 2010-04-05
-2660463 Gruyères Gruyeres Gruyeres,Gruyères 46.58365 7.08253 P PPL CH FR 1003 2135 1646 802 Europe/Zurich 2012-01-17
-2660465 Grüsch Grusch Grusch,Grüsch 46.97965 9.64639 P PPL CH GR 1830 3961 1243 631 Europe/Zurich 2012-02-01
-2660474 Grosswangen Grosswangen Grosswangen 47.13282 8.04781 P PPL CH LU 304 1086 2941 536 Europe/Zurich 2012-01-17
-2660489 Andelfingen Grossandelfingen Andelfingen 47.59447 8.67826 P PPLA2 CH ZH 102 30 1328 398 Europe/Zurich 2011-03-01
-2660491 Grossaffoltern Grossaffoltern Grossaffoltern 47.06595 7.36232 P PPL CH BE 201 303 2810 507 Europe/Zurich 2012-01-17
-2660493 Grône Grone Grone,Grun,Grône 46.25237 7.45365 P PPL CH VS 2311 6238 2039 511 Europe/Zurich 2012-01-17
-2660495 Grolley Grolley 46.8336 7.07116 P PPL CH FR 1004 2200 1575 624 Europe/Zurich 2010-04-05
-2660498 Grindelwald Grindelwald Grindelwald,gryndlwwld,gurinderuvu~aruto,gurinderuwaruto,גרינדלוולד,グリンデルワルト,グリンデルヴァルト 46.62396 8.03601 P PPL CH BE 211 576 3730 1047 Europe/Zurich 2010-04-05
-2660503 Grimisuat Grimisuat Grimisuat 46.2617 7.38489 P PPL CH VS 2312 6263 2332 886 Europe/Zurich 2012-02-01
-2660512 Grenchen Grenchen 47.1921 7.39586 P PPL CH SO 1107 2546 15927 454 Europe/Zurich 2010-04-05
-2660513 Grellingen Grellingen 47.44231 7.58906 P PPL CH BL 1302 2786 1767 334 Europe/Zurich 2010-04-05
-2660515 Greifensee Greifensee 47.36717 8.68115 P PPL CH 194 5032 444 Europe/Zurich 2006-10-05
-2660519 Gravesano Gravesano 46.04208 8.91832 P PPL CH TI 2105 5187 1062 368 Europe/Zurich 2010-04-05
-2660523 Gränichen Granichen Granichen,Gränichen 47.3593 8.10243 P PPL CH AG 1901 4006 6557 411 Europe/Zurich 2012-01-17
-2660529 Grandson Grandson 46.80946 6.646 P PPL CH VD 2224 5561 2735 445 Europe/Zurich 2010-04-05
-2660531 Grand-Savagnier Grand-Savagnier 47.05177 6.95534 P PPL CH NE 2405 6484 1116 744 Europe/Zurich 2011-04-18
-2660532 Le Grand-Saconnex Le Grand-Saconnex Grand-Saconnex,Le Grand-Saconnex,Saconnex 46.22642 6.1233 P PPL CH GE 2500 6634 9781 453 Europe/Zurich 2012-02-28
-2660542 Grächen Grachen Grachen,Gracher,Grächen,Grächer 46.19636 7.8395 P PPL CH VS 2313 6292 1362 1615 Europe/Zurich 2012-01-17
-2660543 Grabs Grabs 47.18248 9.44395 P PPL CH SG 1724 3273 6384 474 Europe/Zurich 2010-04-05
-2660545 Gottlieben Gottlieben Gottlieben 47.66418 9.13245 P PPLA3 CH TG 2005 4651 290 398 Europe/Zurich 2011-07-31
-2660549 Gossau Gossau Gossau 47.41694 9.25125 P PPL CH SG 1721 3443 17043 639 Europe/Zurich 2012-01-17
-2660550 Gossau Gossau 47.3051 8.75831 P PPL CH ZH 105 115 4287 473 Europe/Zurich 2006-10-05
-2660557 Gorgier Gorgier 46.90143 6.77985 P PPL CH NE 2401 6410 1832 479 Europe/Zurich 2010-04-05
-2660559 Gordola Gordola 46.1825 8.8573 P PPL CH TI 2104 5108 3974 255 Europe/Zurich 2010-04-05
-2660563 Gontenschwil Gontenschwil Gontenschwil 47.27455 8.14543 P PPL CH AG 1905 4135 2067 517 Europe/Zurich 2012-02-28
-2660564 Gonten Gonten Gonten 47.32725 9.34705 P PPL CH AI 1600 3102 1406 900 Europe/Zurich 2010-04-05
-2660568 Gommiswald Gommiswald 47.23128 9.02355 P PPL CH SG 1726 3313 2781 590 Europe/Zurich 2011-02-17
-2660572 Goldingen Goldingen Goldingen 47.26277 8.96627 P PPL CH SG 1726 3333 1013 698 Europe/Zurich 2012-01-17
-2660573 Goldau Goldau 47.04761 8.54616 P PPL CH SZ 506 1362 5285 517 Europe/Zurich 2010-04-05
-2660575 Goldach Goldach Goldach 47.47511 9.46846 P PPL CH SG 1722 3213 9094 444 Europe/Zurich 2012-01-17
-2660579 Glovelier Glovelier Glovelier 47.33466 7.20544 P PPL CH JU 2601 6714 1199 508 Europe/Zurich 2012-01-17
-2660587 Glattfelden Glattfelden 47.55871 8.50167 P PPL CH ZH 103 58 2578 375 Europe/Zurich 2006-10-05
-2660590 Glattbrugg Glattbrugg Glattburg 47.4313 8.56272 P PPLX CH ZH 103 66 2642 431 Europe/Zurich 2006-10-05
-2660594 Glarus Glarus Glaris,Glarona,Glarus 47.04057 9.06804 P PPLA CH GL 800 1609 5681 476 Europe/Zurich 2012-01-17
-2660600 Gland Gland 46.42082 6.2701 P PPL CH VD 2228 5721 10641 416 Europe/Zurich 2010-04-05
-2660603 Giubiasco Giubiasco 46.17246 9.00793 P PPL CH TI 2101 5005 7752 244 Europe/Zurich 2010-04-05
-2660604 Giswil Giswil Giswil 46.83333 8.18065 P PPL CH OW 600 1403 3563 488 Europe/Zurich 2012-01-17
-2660607 Gipf-Oberfrick Gipf-Oberfrick Gipf-Oberfrick 47.49875 8.00498 P PPL CH AG 1906 4165 3102 384 Europe/Zurich 2012-02-28
-2660612 Gimel Gimel Gimel 46.50945 6.30736 P PPL CH VD 2227 5428 1454 731 Europe/Zurich 2012-01-17
-2660614 Giffers Giffers Giffers 46.7623 7.20845 P PPL CH FR 1006 2307 1566 756 Europe/Zurich 2012-01-17
-2660625 Geuensee Geuensee Geuensee 47.1997 8.1069 P PPL CH LU 304 1085 2168 508 Europe/Zurich 2012-01-17
-2660631 Gersau Gersau Gersau 46.99419 8.525 P PPLA3 CH SZ 502 1311 1983 465 Europe/Zurich 2011-07-31
-2660637 Gerlafingen Gerlafingen Gerlafingen,Niedergerlafingen 47.16978 7.57505 P PPL CH SO 1106 2519 4864 451 Europe/Zurich 2012-01-17
-2660643 Genolier Genolier 46.43537 6.21809 P PPL CH VD 2228 5718 1498 546 Europe/Zurich 2010-04-05
-2660646 Genève Geneve Cenevre,GVA,Genava,Genebe,Genebra,Geneue,Geneva,Geneve,Genevi,Genevo,Genevra,Genewa,Genf,Genève,Ginebra,Ginevra,Jenewa,Xenebra - Geneve,Xenebra - Genève,Zeneva,Zhehneva,Zheneva,Znev,janiva,jeneba,jnyf,jnywa,junevu,ri nei wa,z'nbh,zheneva,Ĝenevo,Ženeva,Ženēva,Γενέβη,Γενευη,Γενεύη,Женева,Жэнева,Ժնև,ז'נבה,جنيف,جنیوا,جەنۋە,जनीवा,ჟენევა,ジュネーヴ,日内瓦,제네바 46.20222 6.14569 P PPLA CH GE 2500 6621 183981 400 Europe/Zurich 2011-06-16
-2660656 Gelterkinden Gelterkinden Gelterkinden 47.46497 7.85174 P PPL CH BL 1304 2846 5709 397 Europe/Zurich 2012-01-17
-2660659 Gebenstorf Gebenstorf 47.48136 8.23949 P PPL CH AG 1902 4029 4100 341 Europe/Zurich 2010-04-05
-2660665 Ganterschwil Ganterschwil Ganterswil 47.38103 9.09239 P PPL CH SG 1727 3403 1145 619 Europe/Zurich 2010-04-05
-2660670 Gams Gams 47.20429 9.44172 P PPL CH SG 1724 3272 2971 483 Europe/Zurich 2010-04-05
-2660672 Gampel Gampel 46.31599 7.7421 P PPL CH VS 2306 6118 1386 637 Europe/Zurich 2010-04-05
-2660681 Gais Gais Gais,Gais AR 47.3615 9.45356 P PPL CH AR 1502 3022 2778 924 Europe/Zurich 2010-04-05
-2660688 Gachnang Gachnang Gachnang 47.53893 8.85245 P PPL CH TG 2004 4571 3235 446 Europe/Zurich 2012-01-17
-2660700 Fully Fully 46.13851 7.11468 P PPL CH VS 2307 6133 5922 471 Europe/Zurich 2010-04-05
-2660701 Füllinsdorf Fullinsdorf 47.50688 7.73129 P PPL CH BL 1303 2825 4442 348 Europe/Zurich 2010-04-05
-2660703 Fulenbach Fulenbach Fulenbach 47.27496 7.83344 P PPL CH AG 1910 4279 1526 424 Europe/Zurich 2012-01-17
-2660707 Frutigen Frutigen Frutigen 46.58782 7.64751 P PPL CH BE 210 563 6671 788 Europe/Zurich 2012-01-17
-2660710 Froideville Froideville Froideville 46.60015 6.68457 P PPL CH VD 2223 5523 1518 808 Europe/Zurich 2012-02-01
-2660716 Frick Frick 47.51169 8.02471 P PPL CH AG 1906 4163 4583 390 Europe/Zurich 2012-02-28
-2660718 Fribourg Fribourg Freiburg,Freiburg im UEechtland,Freiburg im Uechtland,Freiburg im Üechtland,Friborg,Friborgo,Fribourg,Fribur,Friburas,Friburg,Friburgo,Friburgo im UEechtland,Friburgo im Üechtland,Friburgum,Fribôrg,Fribūras,Fryburg,furiburu,Фрибур,フリブール 46.80237 7.15128 P PPLA CH FR 1004 2196 32827 610 627 Europe/Zurich 2012-03-09
-2660719 Frenkendorf Frenkendorf Frenkendorf 47.50686 7.71648 P PPL CH BL 1303 2824 6180 330 Europe/Zurich 2012-01-17
-2660721 Freienbach Freienbach 47.20534 8.75842 P PPL CH SZ 503 1322 14302 410 Europe/Zurich 2010-04-05
-2660726 Frauenkappelen Frauenkappelen 46.95425 7.33835 P PPL CH BE 213 663 1281 602 Europe/Zurich 2010-04-05
-2660727 Frauenfeld Frauenfeld Frauenfeld,Фрауенфелд 47.55816 8.89854 P PPLA CH TG 2004 4566 21979 417 405 Europe/Zurich 2012-02-20
-2660728 Fraubrunnen Fraubrunnen 47.0862 7.52727 P PPL CH BE 209 538 1616 495 Europe/Zurich 2010-04-05
-2660733 Founex Founex 46.33277 6.19243 P PPL CH VD 2228 5717 2254 401 Europe/Zurich 2010-04-05
-2660742 Fontenais Fontenais Fontenais 47.40478 7.08191 P PPL CH JU 2603 6790 1289 449 Europe/Zurich 2012-01-17
-2660745 Fontainemelon Fontainemelon 47.05495 6.8868 P PPL CH NE 2405 6478 1647 884 Europe/Zurich 2010-04-05
-2660746 Flurlingen Flurlingen 47.6839 8.62995 P PPL CH ZH 102 29 1221 406 Europe/Zurich 2006-10-05
-2660747 Flums Flums 47.09058 9.34301 P PPL CH SG 1725 3292 4848 456 Europe/Zurich 2010-04-05
-2660748 Flühli Fluhli Fluhli,Flühli 46.88391 8.01558 P PPL CH LU 301 1004 1937 886 Europe/Zurich 2012-01-17
-2660751 Flüelen Flueelen Fljujlen,Flueelen,Flüelen,Флюйлен 46.9 8.61667 P PPLA3 CH UR 400 1207 2000 431 Europe/Zurich 2011-07-31
-2660757 Flims Flims Flims,Flims Dorf 46.83705 9.28458 P PPL CH GR 1824 3732 2536 1085 Europe/Zurich 2012-01-17
-2660758 Fleurier Fleurier 46.90224 6.58253 P PPL CH NE 2406 6512 3681 744 Europe/Zurich 2010-04-05
-2660762 Flawil Flawil Flawil 47.41461 9.18284 P PPL CH SG 1728 3402 9739 617 Europe/Zurich 2012-01-17
-2660764 Flamatt Flamatt 46.88994 7.32204 P PPL CH FR 1006 2309 4922 538 Europe/Zurich 2010-04-05
-2660766 Fischingen Fischingen Fischingen 47.41428 8.96914 P PPL CH TG 2006 4726 2548 617 Europe/Zurich 2012-01-17
-2660781 Fiesch Fiesch Fiesch 46.40039 8.1311 P PPL CH VS 2304 6057 1003 1084 Europe/Zurich 2012-01-17
-2660787 Feusisberg Feusisberg Feusisberg 47.18707 8.74724 P PPL CH SZ 503 1321 4210 696 Europe/Zurich 2012-01-17
-2660788 Feuerthalen Feuerthalen 47.69054 8.64357 P PPL CH ZH 102 27 2165 418 Europe/Zurich 2006-10-05
-2660798 Ferenbalm Ferenbalm 46.9488 7.21124 P PPL CH BE 213 662 1310 492 Europe/Zurich 2010-04-05
-2660802 Felsberg Felsberg Felsberg 46.84424 9.47684 P PPL CH GR 1824 3731 2088 569 Europe/Zurich 2012-01-17
-2660805 Feldmeilen Feldmeilen 47.27873 8.62165 P PPL CH 156 3732 444 Europe/Zurich 2006-10-05
-2660812 Fehraltorf Fehraltorf 47.38775 8.75149 P PPL CH ZH 108 172 3767 531 Europe/Zurich 2006-10-05
-2660826 Fällanden Fallanden 47.37169 8.63869 P PPL CH ZH 109 193 2100 448 Europe/Zurich 2006-10-05
-2660830 Faido Faido Faido-Borgo 46.477 8.80125 P PPL CH TI 2103 5072 1512 703 Europe/Zurich 2010-04-05
-2660840 Evolène Evolene Evolene,Evolène 46.11346 7.49436 P PPL CH VS 2305 6083 1557 1377 Europe/Zurich 2012-01-17
-2660841 Evionnaz Evionnaz 46.01667 7.01667 P PPL CH VS 2307 6142 1001 2245 Europe/Zurich 2010-04-05
-2660842 Evilard Evilard Evilard,Leubringen/Magglingen 47.14969 7.23755 P PPL CH BE 204 372 2328 712 Europe/Zurich 2012-01-17
-2660848 Ettiswil Ettiswil Ettiswil 47.15031 8.01759 P PPL CH LU 305 1128 1801 520 Europe/Zurich 2012-01-17
-2660849 Ettingen Ettingen Ettingen 47.48268 7.54982 P PPL CH BL 1301 2768 4980 326 Europe/Zurich 2012-01-17
-2660851 Estavayer-le-Lac Estavayer-le-Lac Estavayer 46.84876 6.8465 P PPL CH FR 1001 2015 5061 453 Europe/Zurich 2010-04-05
-2660856 Escholzmatt Escholzmatt Escholzmatt 46.91259 7.93418 P PPL CH LU 301 1003 3192 850 Europe/Zurich 2012-01-17
-2660857 Eschlikon Eschlikon Eschlikon-Dorf 47.46361 8.96381 P PPL CH TG 2006 4724 3425 571 Europe/Zurich 2010-04-05
-2660859 Eschenz Eschenz Eschenz 47.6507 8.86564 P PPL CH TG 2007 4806 1508 411 Europe/Zurich 2012-01-17
-2660860 Eschenbach Eschenbach Eschenbach 47.23981 8.92156 P PPL CH SG 1726 3332 9175 480 Europe/Zurich 2012-01-17
-2660863 Erstfeld Erstfeld Erstfeld 46.81885 8.65052 P PPL CH UR 400 1206 3876 473 Europe/Zurich 2012-01-17
-2660864 Ersigen Ersigen 47.09368 7.59507 P PPL CH BE 206 405 1507 499 Europe/Zurich 2010-04-05
-2660869 Ermatingen Ermatingen Ermatingen 47.67087 9.08462 P PPL CH TG 2005 4646 2453 402 Europe/Zurich 2012-01-17
-2660871 Erlenbach im Simmental Erlenbach im Simmental Erlenbach im Simmental 46.66021 7.55445 P PPL CH BE 217 763 1730 697 Europe/Zurich 2012-01-17
-2660872 Erlenbach Erlenbach 47.30298 8.59743 P PPL CH 151 4519 451 Europe/Zurich 2006-10-05
-2660873 Erlen Erlen Erlen 47.54832 9.23366 P PPL CH TG 2002 4476 3057 459 Europe/Zurich 2012-01-17
-2660874 Erlach Erlach Erlach 47.04297 7.0996 P PPL CH BE 208 492 1108 429 Europe/Zurich 2012-01-17
-2660876 Eriswil Eriswil Eriswil 47.07816 7.85149 P PPL CH BE 225 953 1414 751 Europe/Zurich 2012-01-17
-2660881 Ependes Ependes 46.75368 7.14609 P PPL CH FR 1004 2189 1006 751 Europe/Zurich 2010-04-05
-2660884 Epalinges Epalinges Epalinges 46.55178 6.66829 P PPL CH VD 2225 5584 7706 792 Europe/Zurich 2012-01-17
-2660887 Entlebuch Entlebuch Entlebuch 46.98333 8.06667 P PPLA2 CH LU 301 1002 3293 801 Europe/Zurich 2011-03-01
-2660892 Ennetbürgen Ennetburgen Ennetbuergen,Ennetburgen,Ennetbürgen 46.98333 8.33333 P PPLA3 CH NW 700 1505 4226 431 Europe/Zurich 2011-07-31
-2660893 Ennenda Ennenda Ennenda 47.03465 9.07725 P PPL CH GL 800 1607 2699 477 Europe/Zurich 2012-01-17
-2660902 Engelberg Engelberg Engelberg,Engelberg OW 46.82107 8.40133 P PPL CH OW 600 1402 4001 1015 1001 Europe/Zurich 2012-01-17
-2660907 Emmetten Emmetten Emmetten,Emmeuen 46.95658 8.51467 P PPLA3 CH NW 700 1504 1232 761 Europe/Zurich 2011-07-31
-2660911 Emmen Emmen Emmen 47.0811 8.30477 P PPL CH LU 302 1024 26889 427 Europe/Zurich 2012-01-17
-2660913 Embrach Embrach Unter Embrach 47.50561 8.59406 P PPL CH ZH 103 56 7088 425 Europe/Zurich 2010-05-26
-2660920 Elgg Elgg 47.49715 8.86523 P PPL CH ZH 110 217 3282 508 Europe/Zurich 2006-10-05
-2660925 Einsiedeln Einsiedeln Einsiedeln 47.11667 8.75 P PPLA2 CH SZ 501 1301 13148 882 997 Europe/Zurich 2011-12-28
-2660927 Eiken Eiken Eiken 47.53394 7.98883 P PPL CH AG 1906 4161 1923 324 Europe/Zurich 2012-02-01
-2660930 Eichberg Eichberg Eichberg 47.34304 9.5299 P PPL CH SG 1723 3251 1260 489 Europe/Zurich 2012-01-17
-2660931 Eich Eich Eich 47.15116 8.16696 P PPL CH LU 304 1084 1627 513 Europe/Zurich 2012-02-01
-2660932 Egnach Egnach Egnach 47.54264 9.38 P PPL CH TG 2001 4411 4179 405 Europe/Zurich 2012-01-17
-2660933 Egliswil Egliswil Egliswil 47.34954 8.18802 P PPL CH AG 1907 4195 1401 477 Europe/Zurich 2012-02-01
-2660935 Eggiwil Eggiwil Eggiwil 46.87575 7.79567 P PPL CH BE 223 901 2559 736 Europe/Zurich 2012-01-17
-2660937 Eggersriet Eggersriet 47.44202 9.46901 P PPL CH SG 1721 3212 2209 817 Europe/Zurich 2010-04-05
-2660942 Egg Egg 47.29976 8.69032 P PPL CH ZH 109 192 4003 548 Europe/Zurich 2006-10-05
-2660943 Egerkingen Egerkingen 47.31957 7.78424 P PPL CH SO 1101 2401 2923 433 Europe/Zurich 2010-04-05
-2660944 Effretikon Effretikon 47.42575 8.69094 P PPLX CH ZH 108 174 10119 506 Europe/Zurich 2006-10-05
-2660947 Ecublens Ecublens 46.60735 6.80895 P PPL CH FR 1002 2072 10065 591 Europe/Zurich 2010-04-05
-2660950 Echallens Echallens 46.6413 6.63317 P PPL CH VD 2223 5518 4972 622 Europe/Zurich 2010-04-05
-2660951 Ebnat-Kappel Ebnat-Kappel Ebnat,Ebnat-Kappel 47.26195 9.12473 P PPL CH SG 1727 3352 4852 644 Europe/Zurich 2011-11-03
-2660953 Ebikon Ebikon Ebikon 47.07937 8.34041 P PPL CH LU 303 1054 11471 437 Europe/Zurich 2012-01-17
-2660960 Dürrenroth Durrenroth Duerrenroth,Durrenroth,Dürrenroth 47.08816 7.7913 P PPL CH BE 225 952 1037 709 Europe/Zurich 2012-01-17
-2660962 Dürrenäsch Durrenasch Durrenasch,Dürrenäsch 47.31812 8.1585 P PPL CH AG 1907 4209 1187 580 Europe/Zurich 2012-02-01
-2660965 Dürnten Durnten 47.27856 8.84156 P PPL CH ZH 105 113 1032 514 Europe/Zurich 2006-10-05
-2660970 Düdingen Dudingen Dudingen,Duedingen,Düdingen,Guin 46.84915 7.18848 P PPL CH FR 1006 2293 7155 599 Europe/Zurich 2012-01-17
-2660971 Dübendorf Dubendorf 47.39724 8.61872 P PPL CH ZH 109 191 19882 436 Europe/Zurich 2008-03-17
-2660986 Dottikon Dottikon Dottikon 47.38437 8.23981 P PPL CH AG 1903 4065 3125 465 Europe/Zurich 2012-02-28
-2660989 Dornach Dornach 47.48038 7.61644 P PPL CH SO 1104 2473 6449 337 Europe/Zurich 2010-04-05
-2660999 Domdidier Domdidier 46.86716 7.01337 P PPL CH FR 1001 2013 2353 442 439 Europe/Zurich 2010-04-05
-2661000 Dombresson Dombresson 47.07192 6.9592 P PPL CH NE 2405 6475 1659 741 Europe/Zurich 2010-04-05
-2661001 Domat Domat Domat,Domat Ems,Ems 46.83483 9.45075 P PPL CH GR 1824 3722 6817 585 Europe/Zurich 2012-01-17
-2661009 Disentis Disentis 46.70341 8.8509 P PPL CH GR 1831 3982 2193 1155 Europe/Zurich 2010-04-05
-2661014 Dietlikon / Dietlikon (Dorf) Dietlikon / Dietlikon (Dorf) Dietlikon (Dorf) 47.41827 8.6188 P PPLX CH ZH 103 54 6149 442 Europe/Zurich 2006-10-21
-2661015 Dietikon Dietikon 47.40165 8.40015 P PPLX CH ZH 111 243 20893 397 Europe/Zurich 2006-10-05
-2661016 Diessenhofen Diessenhofen 47.68908 8.74958 P PPLA2 CH TG 2003 4545 0 406 Europe/Zurich 2011-03-01
-2661021 Diepoldsau Diepoldsau 47.386 9.65558 P PPL CH SG 1723 3234 5401 411 Europe/Zurich 2010-04-05
-2661023 Diemtigen Diemtigen Diemtigen 46.64928 7.56477 P PPL CH BE 217 762 2027 814 Europe/Zurich 2012-01-17
-2661024 Dielsdorf Dielsdorf 47.48146 8.4585 P PPLA2 CH ZH 104 86 4671 435 Europe/Zurich 2011-03-01
-2661025 Diegten Diegten 47.4138 7.81085 P PPL CH BL 1305 2884 1633 468 Europe/Zurich 2010-04-05
-2661030 Derendingen Derendingen Derendingen 47.1985 7.58844 P PPL CH SO 1106 2517 6093 439 Europe/Zurich 2012-01-17
-2661035 Delémont Delemont Delemont,Delsberg,Delémont 47.36493 7.34453 P PPLA CH JU 2601 6711 11315 432 Europe/Zurich 2010-04-05
-2661036 Deitingen Deitingen Deitingen 47.21579 7.61988 P PPL CH SO 1106 2516 2135 430 Europe/Zurich 2012-01-17
-2661038 Degersheim Degersheim 47.37429 9.20019 P PPL CH SG 1728 3401 3802 814 Europe/Zurich 2010-04-05
-2661039 Davos Davos Davos,Давос 46.80429 9.83723 P PPL CH GR 1830 3851 11024 1560 Europe/Zurich 2010-04-05
-2661045 Därligen Darligen Daerligen,Darligen,Därligen 46.66175 7.80808 P PPLA3 CH BE 211 575 390 571 Europe/Zurich 2011-07-31
-2661046 Dardagny Dardagny 46.19564 5.99497 P PPL CH GE 2500 6620 1329 436 Europe/Zurich 2010-04-05
-2661053 Dallenwil Dallenwil Dallenwil 46.9242 8.38785 P PPL CH NW 700 1503 1738 565 Europe/Zurich 2012-01-17
-2661057 Dagmersellen Dagmersellen Dagmersellen 47.21366 7.98466 P PPL CH LU 305 1125 3300 479 Europe/Zurich 2012-01-17
-2661058 Dachsen Dachsen 47.66515 8.6179 P PPL CH 25 1470 392 Europe/Zurich 2006-10-05
-2661063 Cully Cully 46.48892 6.72945 P PPL CH VD 2226 5602 1793 392 Europe/Zurich 2010-04-05
-2661064 Cugy Cugy 46.81479 6.88888 P PPL CH FR 1001 2011 1523 471 Europe/Zurich 2010-04-05
-2661066 Cugnasco Cugnasco Cugnasco 46.17444 8.9179 P PPL CH TI 2104 5113 1202 226 Europe/Zurich 2012-01-17
-2661072 Crissier Crissier Crissier 46.55165 6.57125 P PPL CH VD 2229 5583 6612 442 Europe/Zurich 2012-01-17
-2661086 Couvet Couvet Couvet 46.92613 6.63415 P PPL CH NE 2406 6512 2811 746 Europe/Zurich 2012-01-17
-2661089 Courtételle Courtetelle 47.34074 7.31827 P PPL CH JU 2601 6710 2248 440 Europe/Zurich 2010-04-05
-2661092 Courtelary Courtelary 47.17822 7.07236 P PPL CH BE 207 434 1163 697 Europe/Zurich 2010-04-05
-2661094 Court Court 47.23956 7.33655 P PPL CH BE 214 690 1328 667 Europe/Zurich 2010-04-05
-2661095 Courroux Courroux 47.36069 7.37371 P PPL CH JU 2601 6709 3085 417 Europe/Zurich 2010-04-05
-2661096 Courrendlin Courrendlin 47.33853 7.37243 P PPL CH JU 2601 6708 2314 436 Europe/Zurich 2010-04-05
-2661098 Gurwolf Gurwolf Cougevaux 46.90648 7.11215 P PPL CH FR 1005 2250 1057 477 476 Europe/Zurich 2010-04-05
-2661099 Courgenay Courgenay Courgenay 47.40365 7.12416 P PPL CH JU 2603 6784 2106 487 Europe/Zurich 2012-01-17
-2661100 Courfaivre Courfaivre Courfaivre 47.33504 7.282 P PPL CH JU 2601 6707 1508 457 Europe/Zurich 2012-01-17
-2661104 Cossonay Cossonay Cossonay-Ville 46.61443 6.50631 P PPL CH VD 2227 5477 2795 565 Europe/Zurich 2010-04-05
-2661110 Cortaillod Cortaillod Cortuillod 46.94306 6.8444 P PPL CH NE 2401 6408 4410 487 Europe/Zurich 2010-04-05
-2661111 Corsier Corsier 46.26297 6.22461 P PPL CH GE 2500 6619 1699 434 Europe/Zurich 2010-04-05
-2661114 Cornaux Cornaux Cornaux 47.08333 7.01667 P PPL CH NE 2404 6453 1557 1087 Europe/Zurich 2012-02-01
-2661115 Corminboeuf Corminboeuf Corminboeuf 46.81237 7.10492 P PPL CH FR 1004 2183 1702 642 Europe/Zurich 2012-02-01
-2661117 Corgémont Corgemont 47.19457 7.14517 P PPL CH BE 207 431 1503 666 Europe/Zurich 2010-04-05
-2661124 Coppet Coppet 46.31682 6.19114 P PPL CH VD 2228 5712 2124 390 Europe/Zurich 2010-04-05
-2661129 Conthey Conthey Conthey 46.22528 7.30372 P PPL CH VS 2302 6023 6634 495 Europe/Zurich 2012-02-01
-2661132 Confignon Confignon 46.17341 6.08437 P PPL CH GE 2500 6618 3425 438 Europe/Zurich 2010-04-05
-2661140 Comano Comano Comano 46.03593 8.95573 P PPL CH TI 2105 5162 1729 497 Europe/Zurich 2012-01-17
-2661144 Colombier Colombier 46.55709 6.47284 P PPL CH VD 2227 5630 9297 531 Europe/Zurich 2010-04-05
-2661148 Collombey Collombey 46.27008 6.94835 P PPL CH VS 2308 6152 5926 392 Europe/Zurich 2011-04-18
-2661160 Claro Claro 46.25763 9.02252 P PPL CH TI 2107 5282 2296 294 Europe/Zurich 2010-04-05
-2661167 Churwalden Churwalden 46.78143 9.54377 P PPL CH GR 1829 3911 1214 1252 Europe/Zurich 2010-04-05
-2661169 Chur Chur Chur,Coira,Coire,Couere,Couère,Cuera,Cuira,Curia Raetorum,Kur,ku er,Кур,庫爾 46.84986 9.53287 P PPLA CH GR 1829 3901 32429 601 Europe/Zurich 2010-08-09
-2661172 Chippis Chippis Chippis 46.28103 7.54288 P PPL CH VS 2311 6232 1556 529 Europe/Zurich 2012-02-01
-2661176 Chiasso Chiasso Chiasso 45.83203 9.03119 P PPL CH TI 2106 5250 8060 237 Europe/Zurich 2011-10-06
-2661178 Chézard-Saint-Martin Chezard-Saint-Martin Saint-Martin-Chezard,Saint-Martin-Chézard 47.06629 6.93332 P PPL CH NE 2405 6473 1655 744 Europe/Zurich 2010-04-05
-2661180 Chexbres Chexbres 46.48208 6.77805 P PPL CH VD 2226 5601 2133 570 Europe/Zurich 2010-04-05
-2661188 Chermignon-d'en Haut Chermignon-d'en Haut Chermignon,Chermignon-d'en Haut 46.28844 7.47487 P PPL CH VS 2311 6234 2773 1149 Europe/Zurich 2012-01-17
-2661191 Chêne-Bourg Chene-Bourg 46.19534 6.19406 P PPL CH GE 2500 6613 7959 422 Europe/Zurich 2010-04-05
-2661194 Chavornay Chavornay 46.70244 6.5694 P PPL CH VD 2224 5749 2841 455 Europe/Zurich 2010-04-05
-2661197 Chavannes Chavannes 46.53005 6.57068 P PPL CH VD 2229 5627 5454 399 Europe/Zurich 2010-04-05
-2661202 Châtel-Saint-Denis Chatel-Saint-Denis 46.52691 6.90083 P PPL CH FR 1007 2325 5094 809 Europe/Zurich 2010-04-05
-2661205 Château-d'Oex Chateau-d'Oex Chateau-d'Oex,Shato-Do,Шато-До 46.47455 7.13155 P PPL CH VD 2230 5841 3034 962 Europe/Zurich 2010-05-24
-2661209 Charrat-les-Chênes Charrat-les-Chenes Charrat,Charrat-les-Chenes,Charrat-les-Chênes 46.12202 7.13456 P PPL CH VS 2307 6132 1156 461 Europe/Zurich 2012-01-17
-2661211 Charmey Charmey Charmey 46.61622 7.16814 P PPL CH FR 1003 2127 1713 847 Europe/Zurich 2012-01-17
-2661214 Chardonne Chardonne 46.47676 6.8268 P PPL CH VD 2230 5882 2659 592 Europe/Zurich 2010-04-05
-2661219 Chancy Chancy 46.15003 5.97153 P PPLA3 CH GE 2500 6611 942 362 Europe/Zurich 2011-07-31
-2661223 Champéry Champery 46.17543 6.86903 P PPL CH VS 2308 6151 1191 1048 Europe/Zurich 2010-04-05
-2661226 Chamoson Chamoson Chamoson 46.20104 7.22341 P PPL CH VS 2302 6022 2628 637 Europe/Zurich 2012-01-17
-2661228 Cham Cham Cham 47.18213 8.46358 P PPL CH ZG 900 1702 13495 424 Europe/Zurich 2012-01-17
-2661229 Chalais Chalais Chalais 46.26702 7.50958 P PPL CH VS 2311 6232 2665 515 Europe/Zurich 2012-02-01
-2661231 Cevio Cevio Cevio 46.31608 8.60131 P PPL CH TI 2108 5310 1844 421 Europe/Zurich 2012-01-17
-2661233 Cernier Cernier 47.05878 6.9004 P PPL CH NE 2405 6472 2080 825 Europe/Zurich 2010-04-05
-2661241 Celerina Celerina Celerina 46.51452 9.8583 P PPL CH GR 1827 3782 1241 1734 Europe/Zurich 2012-02-01
-2661242 Cazis Cazis 46.72308 9.42881 P PPL CH GR 1823 3661 1641 648 Europe/Zurich 2011-04-18
-2661247 Caux Caux Caux sur Montreux,Ko,Ко 46.43241 6.93855 P PPL CH CH VD 2230 5886 2000 1064 Europe/Zurich 2010-06-15
-2661253 Castel San Pietro Castel San Pietro Castel San Pietro,Castello San Pietro 45.86061 9.00932 P PPL CH TI 2106 5249 2150 444 Europe/Zurich 2012-01-17
-2661260 Caslano Caslano Caslano 45.97153 8.88261 P PPL CH TI 2105 5171 3655 277 Europe/Zurich 2012-01-17
-2661265 Carouge Carouge 46.18096 6.13921 P PPL CH GE 2500 6608 19344 388 Europe/Zurich 2010-04-05
-2661269 Canobbio Canobbio 46.03426 8.96566 P PPL CH TI 2105 5176 1869 393 Europe/Zurich 2011-04-18
-2661280 Camorino Camorino Camorino 46.16435 9.00364 P PPL CH TI 2101 5004 2358 245 Europe/Zurich 2012-01-17
-2661293 Cadro Cadro 46.04595 8.98725 P PPL CH TI 2105 5163 1596 485 Europe/Zurich 2010-04-05
-2661294 Cadenazzo Cadenazzo Cadenazzo 46.15108 8.94199 P PPL CH TI 2101 5003 1906 208 Europe/Zurich 2012-01-17
-2661295 Cadempino Cadempino 46.03672 8.93403 P PPL CH TI 2105 5162 1351 319 Europe/Zurich 2010-04-05
-2661297 Buus Buus Buus 47.50542 7.86476 P PPL CH BL 1304 2844 1005 441 Europe/Zurich 2012-01-17
-2661299 Buttwil Buttwil 47.26828 8.31064 P PPL CH AG 1908 4236 1185 640 Europe/Zurich 2010-05-31
-2661300 Buttisholz Buttisholz Buttisholz 47.11442 8.09425 P PPL CH LU 304 1098 2890 567 Europe/Zurich 2012-01-17
-2661302 Bütschwil Butschwil 47.36022 9.07213 P PPL CH SG 1727 3391 3393 619 Europe/Zurich 2010-04-05
-2661305 Bussigny Bussigny 46.5511 6.55597 P PPL CH VD 2229 5583 7408 432 Europe/Zurich 2011-04-18
-2661306 Büsserach Busserach Busserach,Büsserach 47.39464 7.54116 P PPL CH SO 1110 2614 1863 413 Europe/Zurich 2012-01-17
-2661313 Büron Buron Buron,Büron 47.21206 8.09421 P PPL CH LU 304 1082 1951 501 Europe/Zurich 2012-02-01
-2661315 Bürglen Burglen Burglen,Bürglen 47.55036 9.15235 P PPL CH TG 2008 4911 3149 441 Europe/Zurich 2012-01-17
-2661316 Bürglen Burglen Burglen,Bürglen 46.87565 8.66539 P PPL CH UR 400 1205 3996 571 Europe/Zurich 2012-01-17
-2661318 Burgistein Burgistein Burgistein 46.78464 7.49988 P PPL CH BE 222 879 1058 765 Europe/Zurich 2012-01-17
-2661321 Burgdorf Burgdorf Berthoud,Burgdorf,Burgdorf BE 47.05901 7.62786 P PPL CH BE 206 404 14788 535 Europe/Zurich 2010-04-05
-2661328 Buochs Buochs Buochs 46.97398 8.42279 P PPL CH NW 700 1502 5524 441 Europe/Zurich 2012-01-17
-2661337 Bulle Bulle Bulle 46.6195 7.05674 P PPL CH FR 1003 2125 12095 769 Europe/Zurich 2012-01-17
-2661338 Bülach Bulach 47.52197 8.54049 P PPLA2 CH ZH 103 53 13172 419 Europe/Zurich 2011-03-01
-2661343 Bühler Buhler Buehler,Buehler AR,Bühler,Bühler AR 47.37348 9.42507 P PPL CH AR 1502 3021 1612 831 Europe/Zurich 2010-04-05
-2661348 Buchs Buchs Buchs,Buchs AG 47.38789 8.07375 P PPL CH AG 1901 4003 6599 390 Europe/Zurich 2010-04-05
-2661349 Buchs Buchs 47.16743 9.47794 P PPL CH CH, SG 1724 3271 10418 447 451 Europe/Zurich 2010-07-16
-2661350 Buchrain Buchrain 47.08602 8.34621 P PPL CH LU 303 1052 5341 422 Europe/Zurich 2011-04-18
-2661352 Buchholterberg Buchholterberg Buchholterberg 46.81351 7.67463 P PPL CH BE 212 601 1498 873 Europe/Zurich 2012-01-17
-2661359 Bubikon Bubikon 47.26698 8.8179 P PPL CH ZH 112 2052 523 Europe/Zurich 2011-01-17
-2661360 Bubendorf Bubendorf Bubendorf 47.44586 7.73759 P PPL CH BL 1303 2823 4543 376 Europe/Zurich 2012-01-17
-2661361 Brüttisellen Bruttisellen 47.42173 8.63263 P PPL CH ZH 109 200 3697 452 Europe/Zurich 2006-10-05
-2661362 Brütten Brutten 47.47318 8.67569 P PPL CH ZH 110 213 1556 622 Europe/Zurich 2006-10-05
-2661365 Brusio Brusio Brusio 46.25767 10.12604 P PPL CH GR 1822 3551 1152 750 Europe/Zurich 2012-01-17
-2661374 Brugg Brugg 47.48096 8.20869 P PPLA2 CH AG 1904 4095 9196 354 Europe/Zurich 2011-03-01
-2661375 Brügg Brugg Brjugg,Bruegg,Brugg,Brügg,Брюгг 47.1237 7.27887 P PPL CH BE 216 733 3868 434 Europe/Zurich 2010-08-09
-2661380 Bronschhofen Bronschhofen 47.47835 9.03454 P PPL CH SG 1728 3421 4489 566 Europe/Zurich 2010-04-05
-2661383 Broc Broc Broc 46.60514 7.09891 P PPLA3 CH FR 1003 2124 2148 719 Europe/Zurich 2011-07-31
-2661384 Brittnau Brittnau Brittnau 47.25954 7.94689 P PPL CH AG 1910 4274 3735 452 Europe/Zurich 2010-08-09
-2661388 Brissago Brissago Brisa,Brissago,Brissago TI 46.12013 8.71181 P PPL CH TI 2104 5097 1831 217 Europe/Zurich 2010-04-05
-2661389 Brislach Brislach 47.41763 7.5434 P PPL CH BL 1302 2782 1493 376 Europe/Zurich 2010-04-05
-2661394 Brig Brig Brig,Briga-Glis,Brigue,Brigue-Glis,buriku,Бриг,ブリーク 46.31667 7.98333 P PPLA2 CH CH VS 2301 6002 5000 680 677 Europe/Zurich 2011-03-01
-2661398 Brienz Brienz Brienz,Brienz BE,Brienzola,burientsu,ブリエンツ 46.7545 8.03847 P PPL CH BE 2899 563 Europe/Zurich 2010-08-09
-2661407 Bremgarten Bremgarten Bremgarten,Bremgarten AG,Bremogartum 47.35109 8.34214 P PPLA2 CH AG 1903 4063 6543 389 Europe/Zurich 2011-03-01
-2661412 Breitenbach Breitenbach Breitenbach 47.40564 7.54382 P PPL CH SO 1110 2613 3241 396 Europe/Zurich 2012-01-17
-2661414 Breíl Breil Breil,Breíl,Brigels 46.76986 9.06036 P PPL CH GR 1831 3981 1344 1281 Europe/Zurich 2012-01-17
-2661425 Bowil Bowil Bowil 46.89304 7.69757 P PPL CH BE 212 605 1414 730 Europe/Zurich 2012-01-17
-2661429 Boudry Boudry 46.94991 6.83757 P PPL CH NE 2401 6404 4886 446 Europe/Zurich 2010-04-05
-2661432 Bottmingen Bottmingen 47.52343 7.57211 P PPL CH BL 1301 2767 5912 295 Europe/Zurich 2010-04-05
-2661433 Bottighofen Bottighofen Bottighofen 47.63641 9.20884 P PPL CH TG 2005 4643 1882 417 Europe/Zurich 2012-02-01
-2661435 Bottens Bottens 46.61596 6.66149 P PPL CH VD 2223 5514 1030 730 Europe/Zurich 2010-04-05
-2661437 Bösingen Bosingen Bosingen,Bösingen,Grossbosingen,Grossbösingen 46.89229 7.2277 P PPL CH BE 213 666 3118 549 Europe/Zurich 2012-01-17
-2661446 Bonstetten Bonstetten 47.31505 8.46836 P PPL CH ZH 101 3 2260 544 Europe/Zurich 2006-10-05
-2661449 Boniswil Boniswil Boniswil 47.31725 8.18963 P PPL CH AG 1907 4192 1436 464 Europe/Zurich 2012-01-17
-2661450 Bönigen Bonigen Bonigen,Bönigen 46.68736 7.8935 P PPL CH BE 211 572 2233 569 Europe/Zurich 2012-01-17
-2661452 Boncourt Boncourt Boncourt 47.4956 7.01423 P PPL CH JU 2603 6774 1304 370 Europe/Zurich 2012-01-17
-2661453 Bonaduz Bonaduz Bonaduz 46.81103 9.39821 P PPL CH GR 1824 3721 2654 658 Europe/Zurich 2012-01-17
-2661455 Boltigen Boltigen Boltigen 46.6289 7.39111 P PPL CH BE 219 791 1443 823 Europe/Zurich 2012-01-17
-2661456 Bolligen Bolligen Bollaigues,Bolligen-Dorf 46.9751 7.49697 P PPL CH BE 203 352 6086 582 Europe/Zurich 2010-04-05
-2661463 Bodio Bodio 46.37808 8.90991 P PPL CH TI 2103 5064 1001 329 Europe/Zurich 2010-04-05
-2661467 Blumenstein Blumenstein Blumenstein,Blumenstein BE 46.7421 7.52136 P PPL CH BE 224 943 1154 663 Europe/Zurich 2012-01-17
-2661468 Blonay Blonay 46.46778 6.89615 P PPL CH VD 2230 5881 5244 629 Europe/Zurich 2010-04-05
-2661490 Birsfelden Birsfelden 47.5529 7.62322 P PPL CH BL 1301 2766 10232 259 Europe/Zurich 2010-04-05
-2661493 Birr Birr Birr,Birr-Lufig 47.43587 8.20801 P PPL CH AG 1904 4092 3884 395 Europe/Zurich 2012-02-28
-2661495 Birmenstorf Birmenstorf 47.46152 8.24816 P PPL CH AG 1902 4024 2462 388 Europe/Zurich 2010-04-05
-2661496 Birmensdorf Birmensdorf Birmenstorf 47.35515 8.44256 P PPL CH ZH 242 4772 472 Europe/Zurich 2011-01-17
-2661498 Bioggio Bioggio 46.01667 8.88333 P PPL CH TI 2105 5161 1784 859 Europe/Zurich 2010-04-05
-2661499 Binningen Binningen 47.54021 7.56932 P PPL CH BL 1301 2765 14130 316 Europe/Zurich 2010-04-05
-2661503 Bilten Bilten Bilten 47.15099 9.02821 P PPL CH GL 800 1602 2011 418 Europe/Zurich 2012-01-17
-2661506 Biglen Biglen Biglen 46.92629 7.62508 P PPL CH BE 212 603 1759 722 Europe/Zurich 2012-01-17
-2661511 Bière Biere 46.53761 6.33362 P PPL CH VD 2227 5425 1428 701 Europe/Zurich 2010-04-05
-2661513 Biel Biel Biel,Biel-Bienne,Biel/Bienne,Bienna,Bienne,Bil',Биль 47.1324 7.24411 P PPL CH BE 204 371 48614 434 439 Europe/Zurich 2012-02-06
-2661519 Biberist Biberist Biberist 47.18559 7.56005 P PPL CH SO 1106 2513 7889 452 Europe/Zurich 2012-01-17
-2661524 Biasca Biasca Biasco 46.35972 8.96965 P PPL CH TI 2107 5281 5885 305 Europe/Zurich 2010-04-05
-2661527 Bex Bex Bex 46.25214 7.01141 P PPL CH VD 2221 5402 5956 425 Europe/Zurich 2012-01-17
-2661528 Bévilard Bevilard 47.23711 7.28325 P PPL CH BE 214 682 1736 696 Europe/Zurich 2010-04-05
-2661531 Bevaix Bevaix 46.92958 6.8147 P PPL CH NE 2401 6402 3866 472 Europe/Zurich 2010-04-05
-2661533 Bettlach Bettlach 47.20062 7.42405 P PPL CH SO 1107 2543 4834 469 Europe/Zurich 2010-04-05
-2661534 Bettingen Bettingen 47.57039 7.66425 P PPL CH BS 1200 2702 1189 383 Europe/Zurich 2010-04-05
-2661542 Beromünster Beromunster Beromunster,Beromünster,Munster,Münster 47.20612 8.19265 P PPL CH LU 304 1081 2876 637 Europe/Zurich 2012-01-17
-2661547 Bernex Bernex 46.1765 6.07544 P PPL CH GE 2500 6607 9759 451 Europe/Zurich 2010-04-05
-2661552 Bern Bern Bann,Bern,Berna,Bernas,Berne,Berni,Berno,Bundesstadt,Bèrna,atharvaveda,barna,beleun,berun,bo en,bo er ni,brn,Βέρνη,Берн,Բեռն,ברן,برن,بېرن,ܒܪܢ,अथर्ववेद,बर्न,ቤርን,ベルン,伯尔尼,伯恩,베른 46.94809 7.44744 P PPLC CH BE 203 351 121631 549 Europe/Zurich 2010-04-05
-2661554 Beringen Beringen 47.69763 8.57431 P PPL CH SH 1403 2932 3216 455 454 Europe/Zurich 2010-04-05
-2661555 Berikon Berikon Berikon 47.35137 8.37209 P PPL CH AG 1903 4062 4527 556 Europe/Zurich 2012-02-28
-2661557 Berg Berg Berg 47.5797 9.16635 P PPL CH TG 2008 4891 2942 556 Europe/Zurich 2012-01-17
-2661560 Benken Benken Benken 47.19842 9.00434 P PPL CH SG 1726 3312 2419 412 Europe/Zurich 2012-01-17
-2661563 Belp Belp Belp 46.89129 7.49825 P PPL CH BE 222 861 9307 519 Europe/Zurich 2010-04-05
-2661564 Belmont-sur-Lausanne Belmont-sur-Lausanne 46.51891 6.67636 P PPL CH VD 2226 5581 3007 593 Europe/Zurich 2010-04-05
-2661566 Bellmund Bellmund 47.10852 7.24608 P PPL CH BE 216 732 1311 504 Europe/Zurich 2010-04-05
-2661567 Bellinzona Bellinzona Belinzona,Bellinzona,Bellinzone,Bilitio,berrintsu~ona,ベッリンツォーナ 46.19278 9.01703 P PPLA CH TI 2101 5002 16572 230 Europe/Zurich 2010-04-05
-2661568 Bellevue Bellevue 46.25739 6.15475 P PPL CH GE 2500 6622 3674 384 Europe/Zurich 2010-04-05
-2661574 Belfaux Belfaux 46.82171 7.10674 P PPL CH FR 1004 2175 2286 584 Europe/Zurich 2010-04-05
-2661579 Begnins Begnins 46.44152 6.24762 P PPL CH VD 2228 5704 1323 550 Europe/Zurich 2010-04-05
-2661585 Beckenried Beckenried Beckenried 46.96476 8.47394 P PPL CH NW 700 1501 3050 454 Europe/Zurich 2012-01-17
-2661586 Beatenberg Beatenberg Beatenbeig 46.69896 7.79428 P PPL CH BE 211 571 1188 1172 Europe/Zurich 2010-04-05
-2661593 Bauma Bauma 47.36745 8.87905 P PPL CH ZH 108 171 1029 641 Europe/Zurich 2006-10-05
-2661595 Bauen Bauen 46.93559 8.57836 P PPLA3 CH UR 400 1204 206 467 Europe/Zurich 2011-07-31
-2661596 Bätterkinden Batterkinden Batterkinden,Bätterkinden 47.13363 7.54104 P PPL CH BE 209 533 2748 472 Europe/Zurich 2012-02-01
-2661599 Bassersdorf Bassersdorf 47.44342 8.62851 P PPL CH ZH 103 52 7010 461 Europe/Zurich 2006-10-05
-2661600 Basse-Nendaz Basse-Nendaz Nendaz 46.18993 7.31209 P PPL CH VS 2302 6024 5410 1004 Europe/Zurich 2010-09-30
-2661601 Bassecourt Bassecourt Bassecourt 47.33829 7.24494 P PPL CH JU 2601 6701 3305 474 Europe/Zurich 2012-01-17
-2661604 Basel Basel Bala,Bale,Basel,Basilea,Basileia,Basilej,Basilia,Basiléia,Basle,Bazel,Bazel',Bazelis,Bazelo,Bazilej,Bazylea,Bâla,Bâle,Robur,ba sai er,bajel,bazeru,bazl,Базел,Базель,Բազել,באזל,بازل,バーゼル,巴塞尔,바젤 47.5584 7.57327 P PPLA CH BS 1200 2701 164488 279 Europe/Zurich 2012-01-17
-2661612 Bäriswil Bariswil 47.01947 7.52709 P PPL CH BE 206 403 1036 549 Europe/Zurich 2010-04-05
-2661613 Bäretswil Baretswil 47.33709 8.85645 P PPL CH ZH 105 111 1313 702 Europe/Zurich 2006-10-05
-2661624 Baltschieder Baltschieder 46.30888 7.8657 P PPL CH VS 2313 6281 1158 661 Europe/Zurich 2010-04-05
-2661626 Balsthal Balsthal Balstal,Balsthal 47.31613 7.69318 P PPL CH SO 1102 2422 5863 493 Europe/Zurich 2010-08-09
-2661632 Ballwil Ballwil Ballwil 47.15487 8.32138 P PPL CH LU 302 1023 2284 511 Europe/Zurich 2012-01-17
-2661635 Balgach Balgach Balgach 47.40544 9.6095 P PPL CH AI 1600 3111 4019 405 Europe/Zurich 2012-02-01
-2661637 Balerna Balerna Balerna 45.84882 9.01416 P PPL CH TI 2106 5242 3456 292 Europe/Zurich 2012-01-17
-2661641 Bagnes Bagnes Bagnes 46.08333 7.21667 P PPL CH VS 2303 6031 6626 924 Europe/Zurich 2012-01-17
-2661644 Bad Ragaz Bad Ragaz Bad Ragaz,Ragaz 47.00601 9.50266 P PPL CH SG 1725 3291 5063 512 Europe/Zurich 2010-08-09
-2661646 Baden Baden Aquae Helveticae,Baden,Baden AG 47.47333 8.30592 P PPLA2 CH AG 1902 4021 16118 418 Europe/Zurich 2011-03-01
-2661651 Bachenbülach Bachenbulach 47.50317 8.54556 P PPL CH ZH 103 51 2985 427 Europe/Zurich 2010-11-03
-2661653 Baar Baar Baar,Bar,Бар 47.19625 8.52954 P PPL CH ZG 900 1701 20546 447 Europe/Zurich 2012-01-17
-2661655 Ayent Ayent Ayent 46.27686 7.40676 P PPL CH VS 2305 6082 3243 975 Europe/Zurich 2012-01-17
-2661658 Avry Avry Avry,Avry-sur-Matran 46.78815 7.07006 P PPL CH FR 1004 2174 1326 685 Europe/Zurich 2012-01-17
-2661661 Avenches Avenches 46.88004 7.04071 P PPL CH VD 2222 5451 2758 480 478 Europe/Zurich 2010-04-05
-2661663 Auw Auw 47.21082 8.36583 P PPL CH AG 1908 4223 1610 485 Europe/Zurich 2010-04-05
-2661664 Auvernier Auvernier 46.97545 6.87903 P PPL CH NE 2401 6401 1555 434 Europe/Zurich 2010-04-05
-2661666 Zürich (Kreis 4) Aussersihl Aussersihl,Zuerich (Kreis 4),Zürich (Kreis 4) 47.37752 8.52127 P PPLX CH ZH 112 261 27273 416 Europe/Zurich 2010-04-05
-2661687 Aubonne Aubonne 46.49514 6.39155 P PPL CH VD 2227 5422 2703 512 Europe/Zurich 2010-04-05
-2661689 Au Au Au 47.43221 9.63387 P PPL CH SG 1723 3233 6673 403 Europe/Zurich 2012-01-17
-2661691 Au Au 47.24185 8.64406 P PPLL CH ZH 106 134 4844 478 Europe/Zurich 2006-10-05
-2661692 Attiswil Attiswil 47.24673 7.61353 P PPL CH BE 226 971 1389 467 Europe/Zurich 2010-04-05
-2661693 Attinghausen Attinghausen Attinghausen 46.86255 8.63036 P PPL CH UR 400 1203 1515 477 Europe/Zurich 2012-01-17
-2661694 Attalens Attalens Attalens 46.50996 6.84835 P PPL CH FR 1007 2321 2380 777 Europe/Zurich 2012-01-17
-2661698 Ascona Ascona 46.15451 8.77327 P PPL CH TI 2104 5091 5084 202 Europe/Zurich 2010-04-05
-2661701 Arzo Arzo 45.87606 8.94103 P PPL CH TI 2106 5241 1188 503 505 Europe/Zurich 2010-10-19
-2661703 Arzier Arzier 46.45962 6.20813 P PPL CH VD 2228 5702 1919 869 Europe/Zurich 2010-04-05
-2661708 Arth Arth Arth 47.06337 8.52348 P PPLA3 CH SZ 506 1362 9850 425 Europe/Zurich 2011-07-31
-2661712 Arosa Arosa Arosa,Arosa Bahnhof 46.77793 9.67621 P PPL CH GR 1829 3921 2307 1775 1801 Europe/Zurich 2012-02-28
-2661719 Arlesheim Arlesheim 47.49412 7.61979 P PPLA2 CH BL 1301 2763 9301 332 Europe/Zurich 2011-03-01
-2661720 Aristau Aristau Aristau 47.28692 8.36356 P PPL CH AG 1908 4222 1313 395 Europe/Zurich 2012-02-01
-2661721 Arisdorf Arisdorf 47.51323 7.76515 P PPL CH BL 1303 2821 1538 349 Europe/Zurich 2010-04-05
-2661725 Ardon Ardon Ardon 46.21064 7.25776 P PPL CH VS 2302 6021 2305 490 Europe/Zurich 2012-02-01
-2661729 Arch Arch 47.16533 7.43139 P PPL CH BE 205 381 1574 475 Europe/Zurich 2010-04-05
-2661731 Arbon Arbon Arbon 47.51667 9.43333 P PPLA2 CH TG 2001 4401 12933 408 Europe/Zurich 2011-03-01
-2661738 Apples Apples 46.55237 6.42889 P PPL CH VD 2227 5421 1201 630 Europe/Zurich 2010-04-05
-2661740 Appenzell Appenzell Apencelo,Appenzell 47.33103 9.40996 P PPLA CH AI 1600 3101 5649 783 Europe/Zurich 2010-04-05
-2661745 Anières Anieres 46.27673 6.22204 P PPL CH GE 2500 6602 2706 389 Europe/Zurich 2010-04-05
-2661748 Andwil Andwil Andwil 47.43855 9.27636 P PPL CH SG 1721 3443 1737 713 Europe/Zurich 2012-01-17
-2661750 Andermatt Andermatt Andermatt,Orsera,Андерматт 46.63565 8.59388 P PPL CH UR 400 1202 1258 1441 Europe/Zurich 2010-04-05
-2661756 Amriswil Amriswil Amriswil 47.54699 9.29836 P PPL CH TG 2002 4461 11351 452 Europe/Zurich 2012-01-17
-2661758 Amden Amden Amden 47.14888 9.14233 P PPLA3 CH SG 1726 3311 1557 903 910 Europe/Zurich 2012-02-21
-2661766 Altstätten Altstatten 47.37766 9.54746 P PPL CH SG 1723 3251 10574 447 Europe/Zurich 2010-04-05
-2661768 Altnau Altnau Altnau 47.61162 9.25905 P PPL CH TG 2005 4641 1887 443 Europe/Zurich 2012-01-17
-2661770 Altishofen Altishofen Altishofen 47.19916 7.96964 P PPL CH LU 305 1123 1368 482 Europe/Zurich 2012-01-17
-2661773 Alterswil Alterswil Alterswil 46.79587 7.25877 P PPL CH FR 1006 2291 1850 757 Europe/Zurich 2012-01-17
-2661776 Altendorf Altendorf Altendorf 47.19137 8.82944 P PPL CH SZ 505 1341 5280 428 Europe/Zurich 2012-02-01
-2661780 Altdorf Altdorf Al'tdorf,Altdorf,Altdorf UR,Artofe,arutodorufu,Альтдорф,アルトドルフ 46.88042 8.64441 P PPLA CH UR 400 1201 8678 458 465 Europe/Zurich 2012-02-17
-2661789 Alpnach Alpnach Alpnach 46.9402 8.27426 P PPL CH OW 600 1401 5218 451 Europe/Zurich 2012-01-17
-2661810 Allschwil Allschwil Allschwil 47.55074 7.53599 P PPL CH BL 1301 2762 18189 288 Europe/Zurich 2012-01-17
-2661814 Alle Alle Alle 47.42618 7.12911 P PPL CH JU 2603 6771 1693 447 Europe/Zurich 2012-02-01
-2661834 Aigle Aigle Aigle 46.3181 6.96457 P PPL CH VD 2221 5401 7723 408 Europe/Zurich 2012-01-17
-2661836 Agno Agno 45.98333 8.85 P PPL CH TI 2105 5178 3639 431 Europe/Zurich 2010-04-05
-2661842 Affoltern am Albis Affoltern am Albis Affoltern am Albis 47.27743 8.45128 P PPLA2 CH ZH 101 2 8928 496 Europe/Zurich 2012-01-30
-2661844 Affeltrangen Affeltrangen Affeltrangen 47.52701 9.03207 P PPL CH TG 2006 4776 2135 492 Europe/Zurich 2012-01-17
-2661849 Aeschi Aeschi AEschi,Aeschi bei Spiez,Äschi 46.65848 7.6965 P PPL CH BE 210 562 2000 860 866 Europe/Zurich 2010-04-05
-2661852 Aesch Aesch 47.47104 7.5973 P PPL CH BL 1301 2761 10138 307 Europe/Zurich 2010-04-05
-2661861 Adliswil Adliswil 47.30997 8.52462 P PPL CH ZH 131 15230 450 Europe/Zurich 2011-01-17
-2661862 Adligenswil Adligenswil Adligenswil 47.06521 8.36124 P PPL CH LU 303 1051 5576 547 Europe/Zurich 2012-02-01
-2661863 Adelboden Adelboden Adelboden 46.49142 7.56031 P PPL CH BE 210 561 3541 1328 Europe/Zurich 2011-01-10
-2661865 Acquarossa Acquarossa Acquarossa 46.45176 8.93999 P PPL CH TI 2102 5048 1814 517 Europe/Zurich 2012-01-17
-2661874 Aarwangen Aarwangen Aarwangen 47.23845 7.76854 P PPL CH BE 202 321 4171 454 Europe/Zurich 2010-04-05
-2661879 Aarburg Aarburg Aarburg 47.32067 7.89986 P PPL CH AG 1910 4271 6828 408 Europe/Zurich 2010-04-05
-2661880 Aarberg Aarberg Aarberg 47.04439 7.27578 P PPL CH BE 201 301 3911 458 Europe/Zurich 2010-08-09
-2661881 Aarau Aarau Aarau,Aaray,Aravia,a lao,alau,arau,aravia,Аарау,アーラウ,阿劳,아라우 47.39254 8.04422 P PPLA CH AG 1901 4001 15501 389 Europe/Zurich 2010-04-05
-2661882 Aadorf Aadorf 47.49204 8.90099 P PPL CH TG 2004 4551 7620 526 Europe/Zurich 2010-04-05
-3206590 Riehen Riehen 47.57884 7.64683 P PPL CH BS 1200 2703 20000 280 Europe/Zurich 2010-04-05
-3209498 Chêne-Bougeries Chene-Bougeries 46.19843 6.18642 P PPL CH GE 2500 6612 10487 423 Europe/Zurich 2010-04-05
-3209502 Meinier Meinier 46.24706 6.23423 P PPL CH GE 2500 6629 1811 442 Europe/Zurich 2010-04-05
-3209504 Puplinge Puplinge 46.21043 6.23114 P PPL CH GE 2500 6636 2163 431 Europe/Zurich 2010-04-05
-3209505 Thônex Thonex 46.18815 6.19904 P PPL CH GE 2500 6640 13057 408 Europe/Zurich 2010-04-05
-6252010 Wettswil / Wettswil (Dorf) Wettswil / Wettswil (Dorf) Wettswil (Dorf),Wettswil am Albis 47.34152 8.47149 P PPLX CH ZH 101 14 3605 560 563 Europe/Zurich 2006-10-21
-6252014 Sellenbüren Sellenbueren 47.34361 8.48301 P PPLX CH ZH 101 13 1572 560 561 Europe/Zurich 2006-10-05
-6255069 Itingen Itingen 47.46651 7.78502 P PPL CH BL 1304 2849 1750 370 366 Europe/Zurich 2010-04-05
-6285791 Ecublens Ecublens 46.52899 6.56261 P PPL CH VD 2229 5635 10262 409 419 Europe/Zurich 2010-04-05
-6290373 Affoltern / Hasenbüel Affoltern / Hasenbueel Hasenbueel,Hasenbüel 47.27324 8.45218 P PPLX CH ZH 101 2 1690 509 Europe/Zurich 2006-10-21
-6290375 Affoltern / Oberdorf Affoltern / Oberdorf Oberdorf 47.27799 8.45041 P PPLX CH ZH 101 2 1759 492 Europe/Zurich 2006-10-21
-6290376 Affoltern / Unterdorf Affoltern / Unterdorf Unterdorf 47.28257 8.45086 P PPLX CH ZH 101 2 1989 484 Europe/Zurich 2006-10-21
-6290378 Affoltern / Sonnenberg Affoltern / Sonnenberg Sonnenberg 47.28055 8.46008 P PPLX CH ZH 101 2 1262 547 Europe/Zurich 2006-10-21
-6290379 Schachen Schachen 47.32419 8.47251 P PPL CH ZH 101 3 1278 543 Europe/Zurich 2006-10-05
-6290434 Hedingen Hedingen 47.29794 8.44833 P PPL CH ZH 101 5 2835 504 Europe/Zurich 2006-10-05
-6290552 Obfelden / Oberlunnern Obfelden / Oberlunnern Oberlunnern 47.26197 8.41588 P PPLX CH ZH 101 10 1103 426 Europe/Zurich 2006-10-21
-6290556 Obfelden / Toussen Obfelden / Toussen Toussen 47.26574 8.43013 P PPLX CH ZH 101 10 1146 450 Europe/Zurich 2006-10-21
-6290655 Wettswil / Ausser-Dorf Wettswil / Ausser-Dorf Ausser-Dorf 47.33197 8.47732 P PPLX CH ZH 101 14 1438 575 Europe/Zurich 2006-10-21
-6290802 Kleinandelfingen Kleinandelfingen 47.60058 8.68362 P PPL CH ZH 102 33 1094 365 Europe/Zurich 2006-10-05
-6291053 Bülach / Niederflachs Buelach / Niederflachs Niederflachs 47.51426 8.53267 P PPLX CH ZH 103 53 3870 410 Europe/Zurich 2006-10-21
-6291056 Bülach / Soligänter Buelach / Soligaenter Soligaenter,Soligänter 47.52632 8.54106 P PPLX CH ZH 103 53 1434 430 Europe/Zurich 2006-10-21
-6291058 Bülach / Gstückt Buelach / Gstueckt Gstueckt,Gstückt 47.52337 8.54879 P PPLX CH ZH 103 53 1863 455 Europe/Zurich 2006-10-21
-6291061 Bülach / Seematt Buelach / Seematt Seematt 47.51716 8.54651 P PPLX CH ZH 103 53 2171 424 Europe/Zurich 2006-10-21
-6291103 Dietlikon / Eichwiesen Dietlikon / Eichwiesen Eichwiesen 47.4191 8.62078 P PPLX CH ZH 103 54 1386 439 Europe/Zurich 2006-10-21
-6291134 Embrach / Embrach (Dorfkern) Embrach / Embrach (Dorfkern) Embrach (Dorfkern) 47.504 8.59477 P PPLX CH ZH 103 56 2960 427 Europe/Zurich 2006-10-21
-6291139 Embrach / Kellersacker Embrach / Kellersacker Kellersacker 47.51455 8.59146 P PPLX CH ZH 103 56 1467 430 Europe/Zurich 2006-10-21
-6291171 Freienstein Freienstein 47.53307 8.58455 P PPL CH ZH 103 57 1617 382 Europe/Zurich 2006-10-05
-6291215 Hochfelden Hochfelden 47.52262 8.51564 P PPL CH ZH 103 59 1442 401 Europe/Zurich 2006-10-05
-6291226 End-Höri End-Hoeri 47.50799 8.51203 P PPL CH ZH 103 60 1041 419 Europe/Zurich 2006-10-05
-6291242 Kloten / Kloten (Zentrum) Kloten / Kloten (Zentrum) Kloten (Zentrum) 47.45134 8.58683 P PPLX CH ZH 103 62 1681 440 Europe/Zurich 2006-10-21
-6291243 Kloten / Freienberg (Chanzler-Chlini Chaseren) Kloten / Freienberg (Chanzler-Chlini Chaseren) Freienberg (Chanzler-Chlini Chaseren) 47.46584 8.58145 P PPLX CH ZH 103 62 1588 478 Europe/Zurich 2006-10-21
-6291246 Kloten / Horainli Kloten / Horainli Horainli 47.45399 8.58306 P PPLX CH ZH 103 62 1391 438 Europe/Zurich 2006-10-21
-6291247 Kloten / Geissberg Kloten / Geissberg Geissberg 47.45424 8.59066 P PPLX CH ZH 103 62 1941 448 Europe/Zurich 2006-10-21
-6291248 Kloten / Hostrass Kloten / Hostrass Hostrass 47.45255 8.59464 P PPLX CH ZH 103 62 1012 447 Europe/Zurich 2006-10-21
-6291249 Kloten / Holberg Kloten / Holberg Holberg 47.44642 8.57661 P PPLX CH ZH 103 62 2239 465 Europe/Zurich 2006-10-21
-6291251 Kloten / Balsberg Kloten / Balsberg Balsberg 47.44233 8.57496 P PPLX CH ZH 103 62 1389 462 Europe/Zurich 2006-10-21
-6291253 Kloten / Spitz Kloten / Spitz Spitz 47.44455 8.58724 P PPLX CH ZH 103 62 1153 482 Europe/Zurich 2006-10-21
-6291254 Kloten / Rütlen Kloten / Ruetlen Ruetlen,Rütlen 47.44726 8.58808 P PPLX CH ZH 103 62 2510 468 Europe/Zurich 2006-10-21
-6291286 Birchwil Birchwil 47.45431 8.63477 P PPL CH ZH 103 64 1066 505 Europe/Zurich 2006-10-05
-6291324 Glattbrugg / Wydacker/Bettacker/Lättenwiesen Glattbrugg / Wydacker/Bettacker/Laettenwiesen Wydacker/Bettacker/Laettenwiesen,Wydacker/Bettacker/Lättenwiesen 47.42908 8.56657 P PPLX CH ZH 103 66 1551 434 Europe/Zurich 2006-10-21
-6291325 Grossacker/Opfikon Grossacker/Opfikon 47.42696 8.57886 P PPL CH ZH 103 66 1076 447 Europe/Zurich 2006-10-05
-6291336 Glattbrugg / Rohr/Platten-Balsberg Glattbrugg / Rohr/Platten-Balsberg Rohr/Platten-Balsberg 47.43721 8.56642 P PPLX CH ZH 103 66 1780 429 Europe/Zurich 2006-10-21
-6291373 Wallisellen / Wallisellen-West Wallisellen / Wallisellen-West Wallisellen-West 47.41906 8.58586 P PPLX CH ZH 103 69 3511 460 Europe/Zurich 2006-10-21
-6291374 Wallisellen / Wallisellen-Ost Wallisellen / Wallisellen-Ost Wallisellen-Ost 47.41446 8.59727 P PPLX CH ZH 103 69 5031 455 Europe/Zurich 2006-10-21
-6291375 Wallisellen / Rieden Wallisellen / Rieden Rieden 47.41738 8.60028 P PPLX CH ZH 103 69 2261 460 Europe/Zurich 2006-10-21
-6291499 Dällikon / Dällikon (Dorf) Daellikon / Daellikon (Dorf) Daellikon (Dorf),Dällikon (Dorf) 47.43983 8.43813 P PPLX CH ZH 104 84 1583 440 Europe/Zurich 2006-10-21
-6291532 Neerach Neerach 47.51096 8.47099 P PPL CH ZH 104 88 1435 448 Europe/Zurich 2006-10-05
-6291546 Niederglatt / Niederglatt (Dorfkern) Niederglatt / Niederglatt (Dorfkern) Niederglatt (Dorfkern) 47.49065 8.50048 P PPLX CH ZH 104 89 1147 419 Europe/Zurich 2006-10-21
-6291558 Niederhasli Niederhasli Niederhasli (Dorf) 47.48012 8.48576 P PPL CH ZH 104 90 2848 418 421 Europe/Zurich 2010-10-27
-6291619 Oberglatt / Oberglatt (Dorfkern) Oberglatt / Oberglatt (Dorfkern) Oberglatt (Dorfkern) 47.47596 8.51929 P PPLX CH ZH 104 92 1406 430 Europe/Zurich 2006-10-21
-6291621 Oberglatt / Bahnhofquartier Oberglatt / Bahnhofquartier Bahnhofquartier 47.47143 8.51289 P PPLX CH ZH 104 92 1333 428 Europe/Zurich 2006-10-21
-6291625 Hofstetten Hofstetten 47.47778 8.50646 P PPL CH ZH 104 92 1115 432 Europe/Zurich 2006-10-05
-6291664 Sonnhalde Sonnhalde 47.45329 8.46091 P PPL CH ZH 104 96 1984 446 Europe/Zurich 2006-10-05
-6291682 Regensdorf / Hofacher-Geeren Regensdorf / Hofacher-Geeren Hofacher-Geeren 47.43525 8.4624 P PPLX CH ZH 104 96 1038 442 Europe/Zurich 2006-10-21
-6291683 Regensdorf / Feldblumen-Riedthofstrasse Regensdorf / Feldblumen-Riedthofstrasse Feldblumen-Riedthofstrasse 47.43618 8.46659 P PPLX CH ZH 104 96 1122 439 Europe/Zurich 2006-10-21
-6291714 Regensdorf / Obstgarten Regensdorf / Obstgarten Obstgarten 47.42772 8.46566 P PPLX CH ZH 104 96 1090 473 Europe/Zurich 2006-10-21
-6291716 Rümlang / Rümlang (Dorfkern) Ruemlang / Ruemlang (Dorfkern) Ruemlang (Dorfkern),Rümlang (Dorfkern) 47.4494 8.53255 P PPLX CH ZH 104 97 3528 445 Europe/Zurich 2006-10-21
-6291996 Tann / Tann (Dorfkern) Tann / Tann (Dorfkern) Tann (Dorfkern) 47.26494 8.85048 P PPLX CH ZH 105 113 2080 503 Europe/Zurich 2006-10-21
-6292217 Grüt Gruet 47.31151 8.78339 P PPL CH ZH 105 115 1565 555 Europe/Zurich 2006-10-05
-6292273 Binzikon Binzikon 47.27949 8.75842 P PPL CH ZH 105 116 1854 502 Europe/Zurich 2006-10-05
-6292364 Hadlikon Hadlikon 47.2875 8.85719 P PPL CH ZH 105 117 1321 591 Europe/Zurich 2006-10-05
-6292396 Rüti / Westlicher Dorfteil Rueti / Westlicher Dorfteil Westlicher Dorfteil 47.25548 8.8449 P PPLX CH ZH 105 118 3083 475 Europe/Zurich 2006-10-21
-6292397 Rüti / Dorfzentrum, Südl. Teil Rueti / Dorfzentrum, Suedl. Teil Dorfzentrum, Suedl. Teil,Dorfzentrum, Südl. Teil 47.25368 8.85654 P PPLX CH ZH 105 118 3618 469 Europe/Zurich 2006-10-21
-6292398 Rüti / Oberdorf Rueti / Oberdorf Oberdorf 47.25894 8.86512 P PPLX CH ZH 105 118 2875 540 Europe/Zurich 2006-10-21
-6292590 Wetzikon / Robenhausen Wetzikon / Robenhausen Robenhausen 47.33089 8.78762 P PPLX CH ZH 105 121 2213 540 Europe/Zurich 2006-10-21
-6292591 Wetzikon / Kempten Wetzikon / Kempten Kempten 47.33319 8.80982 P PPLX CH ZH 105 121 4377 561 Europe/Zurich 2006-10-21
-6292636 Adliswil / Adliswil (Stadtkern) Adliswil / Adliswil (Stadtkern) Adliswil (Stadtkern) 47.31128 8.52675 P PPLX CH ZH 106 131 2538 448 Europe/Zurich 2006-10-21
-6292637 Adliswil / Oberleimbach Adliswil / Oberleimbach Oberleimbach 47.3202 8.51508 P PPLX CH ZH 106 131 1411 499 Europe/Zurich 2006-10-21
-6292638 Adliswil / Sood Adliswil / Sood Sood 47.3187 8.52425 P PPLX CH ZH 106 131 1494 445 Europe/Zurich 2006-10-21
-6292639 Adliswil / Hündli-Zopf Adliswil / Huendli-Zopf Huendli-Zopf,Hündli-Zopf 47.31637 8.51888 P PPLX CH ZH 106 131 1553 469 Europe/Zurich 2006-10-21
-6292641 Adliswil / Sonnenberg Adliswil / Sonnenberg Sonnenberg 47.30958 8.52055 P PPLX CH ZH 106 131 1283 492 Europe/Zurich 2006-10-21
-6292642 Adliswil / Tal Adliswil / Tal Tal 47.31142 8.53446 P PPLX CH ZH 106 131 1125 463 Europe/Zurich 2006-10-21
-6292757 Horgen / Horgen (Dorfkern) Horgen / Horgen (Dorfkern) Horgen (Dorfkern) 47.25604 8.60159 P PPLX CH ZH 106 133 6140 449 Europe/Zurich 2006-10-21
-6292759 Horgen / Allmend Horgen / Allmend Allmend 47.24729 8.6066 P PPLX CH ZH 106 133 3809 515 Europe/Zurich 2006-10-21
-6292760 Horgen / Scheller-Stockerstrasse Horgen / Scheller-Stockerstrasse Scheller-Stockerstrasse 47.26584 8.5876 P PPLX CH ZH 106 133 2690 422 Europe/Zurich 2006-10-21
-6292761 Horgen / Oberdorf Horgen / Oberdorf Oberdorf 47.25533 8.59234 P PPLX CH ZH 106 133 2524 517 Europe/Zurich 2006-10-21
-6292878 Kilchberg / Bächler-Stocken Kilchberg / Baechler-Stocken Baechler-Stocken,Bächler-Stocken 47.32728 8.53957 P PPLX CH ZH 106 135 1147 496 Europe/Zurich 2006-10-21
-6292881 Kilchberg / Kilchberg (Dorfkern) Kilchberg / Kilchberg (Dorfkern) Kilchberg (Dorfkern) 47.32012 8.54306 P PPLX CH ZH 106 135 2244 492 Europe/Zurich 2006-10-21
-6292893 Langnau / Vitaquartier Langnau / Vitaquartier Vitaquartier 47.29377 8.53758 P PPLX CH ZH 106 136 1161 474 Europe/Zurich 2006-10-21
-6292896 Mühlehalde Muehlehalde 47.28306 8.53386 P PPL CH ZH 106 136 1220 549 Europe/Zurich 2006-10-05
-6292917 Oberrieden / Mitte Oberrieden / Mitte Mitte 47.27242 8.58021 P PPLX CH ZH 106 137 1807 448 Europe/Zurich 2006-10-21
-6292918 Oberrieden / Berg Oberrieden / Berg Berg 47.27628 8.57257 P PPLX CH ZH 106 137 1961 479 Europe/Zurich 2006-10-21
-6292919 Richterswil / Dorfkern Richterswil / Dorfkern Dorfkern 47.20715 8.70607 P PPLX CH ZH 106 138 1216 414 Europe/Zurich 2006-10-21
-6292920 Richterswil / Richterswil (Dorfkern) Richterswil / Richterswil (Dorfkern) Richterswil (Dorfkern) 47.20323 8.70516 P PPLX CH ZH 106 138 3292 441 Europe/Zurich 2006-10-21
-6292921 Richterswil / Burghalde Richterswil / Burghalde Burghalde 47.20973 8.69133 P PPLX CH ZH 106 138 1137 542 Europe/Zurich 2006-10-21
-6293080 Thalwil / Dorfkern Thalwil / Dorfkern Dorfkern 47.29047 8.56633 P PPLX CH ZH 106 141 6829 470 Europe/Zurich 2006-10-21
-6293081 Thalwil / Berg Thalwil / Berg Berg 47.29178 8.55602 P PPLX CH ZH 106 141 1568 521 Europe/Zurich 2006-10-21
-6293082 Thalwil Thalwil Nord 47.29748 8.55634 P PPLX CH ZH 106 141 1751 470 Europe/Zurich 2010-08-23
-6293083 Thalwil / Süd Thalwil / Sued Sued,Süd 47.28495 8.56954 P PPLX CH ZH 106 141 1255 470 Europe/Zurich 2006-10-21
-6293088 Gattikon Gattikon 47.28439 8.5483 P PPL CH ZH 106 141 2142 507 Europe/Zurich 2006-10-05
-6293096 Wädenswil / Dorf (Wädenswil) Waedenswil / Dorf (Waedenswil) Dorf (Waedenswil),Dorf (Wädenswil) 47.22923 8.6722 P PPLX CH ZH 106 142 2556 417 Europe/Zurich 2006-10-21
-6293097 Au / Unter-Dorf Au / Unter-Dorf Unter-Dorf 47.2473 8.6327 P PPLX CH ZH 106 142 1249 442 Europe/Zurich 2006-10-21
-6293098 Au / Mittel-Dorf Au / Mittel-Dorf Mittel-Dorf 47.24303 8.64591 P PPLX CH ZH 106 142 2562 460 Europe/Zurich 2006-10-21
-6293101 Wädenswil / Hangenmoos Waedenswil / Hangenmoos Hangenmoos 47.23367 8.65251 P PPLX CH ZH 106 142 1407 507 Europe/Zurich 2006-10-21
-6293102 Wädenswil / Büelen Waedenswil / Bueelen Bueelen,Büelen 47.23395 8.66346 P PPLX CH ZH 106 142 2710 440 Europe/Zurich 2006-10-21
-6293103 Wädenswil / Untermosen-Fuhr Waedenswil / Untermosen-Fuhr Untermosen-Fuhr 47.22772 8.66303 P PPLX CH ZH 106 142 1976 476 Europe/Zurich 2006-10-21
-6293104 Wädenswil / Leihof-Mühlebach Waedenswil / Leihof-Muehlebach Leihof-Muehlebach,Leihof-Mühlebach 47.22364 8.67149 P PPLX CH ZH 106 142 1830 481 Europe/Zurich 2006-10-21
-6293105 Wädenswil / Eichweid Waedenswil / Eichweid Eichweid 47.21847 8.6744 P PPLX CH ZH 106 142 1252 526 Europe/Zurich 2006-10-21
-6293106 Wädenswil / Boller-Giessen Waedenswil / Boller-Giessen Boller-Giessen 47.22115 8.68385 P PPLX CH ZH 106 142 1538 453 Europe/Zurich 2006-10-21
-6293192 Erlenbach / rechts des Dorfbachs oberhalb Bahnlinie Erlenbach / rechts des Dorfbachs oberhalb Bahnlinie rechts des Dorfbachs oberhalb Bahnlinie 47.30658 8.60271 P PPLX CH ZH 107 151 1470 533 Europe/Zurich 2006-10-21
-6293194 Erlenbach / links des Dorfbachs oberhalb Bahnlinie Erlenbach / links des Dorfbachs oberhalb Bahnlinie links des Dorfbachs oberhalb Bahnlinie 47.2995 8.60188 P PPLX CH ZH 107 151 1709 465 Europe/Zurich 2006-10-21
-6293330 Küsnacht / Dorf Kuesnacht / Dorf Dorf 47.31783 8.58303 P PPLX CH ZH 107 154 1574 420 Europe/Zurich 2006-10-21
-6293331 Küsnacht / Goldbach Kuesnacht / Goldbach Goldbach 47.32729 8.58077 P PPLX CH ZH 107 154 2607 468 Europe/Zurich 2006-10-21
-6293332 Küsnacht / Itschnach Kuesnacht / Itschnach Itschnach 47.32714 8.60068 P PPLX CH ZH 107 154 2397 584 Europe/Zurich 2006-10-21
-6293333 Küsnacht / Schiedhalden Kuesnacht / Schiedhalden Schiedhalden 47.32112 8.58881 P PPLX CH ZH 107 154 1033 496 Europe/Zurich 2006-10-21
-6293334 Küsnacht / Heslibach Kuesnacht / Heslibach Heslibach 47.31307 8.58849 P PPLX CH ZH 107 154 3228 427 Europe/Zurich 2006-10-21
-6293356 Männedorf / Dorfkern Maennedorf / Dorfkern Dorfkern 47.25612 8.69161 P PPLX CH ZH 107 155 4893 425 Europe/Zurich 2006-10-21
-6293364 Männedorf / Ausserfeld Maennedorf / Ausserfeld Ausserfeld 47.24636 8.70608 P PPLX CH ZH 107 155 1175 409 Europe/Zurich 2006-10-21
-6293608 Dorf Dorf 47.23715 8.73999 P PPL CH ZH 107 158 1226 451 Europe/Zurich 2006-10-05
-6293652 Uetikon / Grossdorf Uetikon / Grossdorf Grossdorf 47.26654 8.67765 P PPLX CH ZH 107 159 1040 458 Europe/Zurich 2006-10-21
-6293731 Zollikerberg Zollikerberg 47.3451 8.60088 P PPL CH ZH 107 161 4187 614 Europe/Zurich 2006-10-05
-6293903 Effretikon / Watt Effretikon / Watt Watt 47.42797 8.69822 P PPLX CH ZH 108 174 2632 535 Europe/Zurich 2006-10-21
-6293906 Effretikon / Rappenhalde-Bannhalde Effretikon / Rappenhalde-Bannhalde Rappenhalde-Bannhalde 47.42388 8.69653 P PPLX CH ZH 108 174 1758 519 Europe/Zurich 2006-10-21
-6293970 Tagelswangen Tagelswangen 47.4307 8.67284 P PPL CH ZH 108 176 1606 515 Europe/Zurich 2006-10-05
-6293977 Pfäffikon / Pfäffikon (Dorfkern) Pfaeffikon / Pfaeffikon (Dorfkern) Pfaeffikon (Dorfkern),Pfäffikon (Dorfkern) 47.36943 8.78309 P PPLX CH ZH 108 177 5595 549 Europe/Zurich 2006-10-21
-6294255 Dübendorf / Vogelquartier Duebendorf / Vogelquartier Vogelquartier 47.39502 8.61184 P PPLX CH ZH 109 191 1391 438 Europe/Zurich 2006-10-21
-6294257 Dübendorf / Wasserfurren Duebendorf / Wasserfurren Wasserfurren 47.39352 8.6085 P PPLX CH ZH 109 191 1060 440 Europe/Zurich 2006-10-21
-6294276 Dübendorf / Sonnenberg Duebendorf / Sonnenberg Sonnenberg 47.39469 8.63162 P PPLX CH ZH 109 191 1018 443 Europe/Zurich 2006-10-21
-6294285 Dübendorf / Kunklerstrasse Duebendorf / Kunklerstrasse Kunklerstrasse 47.40109 8.62724 P PPLX CH ZH 109 191 1284 442 Europe/Zurich 2006-10-21
-6294318 Hinteregg Hinteregg 47.30736 8.68339 P PPL CH ZH 109 192 1107 563 Europe/Zurich 2006-10-05
-6294319 Esslingen Esslingen 47.28325 8.71038 P PPL CH ZH 109 192 1203 512 Europe/Zurich 2006-10-05
-6294402 Benglen Benglen 47.36077 8.63687 P PPL CH ZH 109 193 1937 572 Europe/Zurich 2006-10-05
-6294411 Greifensee / Müllerwis / Seilerwis Greifensee / Muellerwis / Seilerwis Muellerwis / Seilerwis,Müllerwis / Seilerwis 47.37042 8.68151 P PPLX CH ZH 109 194 1064 448 Europe/Zurich 2006-10-21
-6294425 Greifensee / Pfisterhölzli Greifensee / Pfisterhoelzli Pfisterhoelzli,Pfisterhölzli 47.3643 8.68979 P PPLX CH ZH 109 194 1135 458 Europe/Zurich 2006-10-21
-6294446 Aesch Aesch 47.3297 8.6541 P PPL CH ZH 109 195 1717 636 Europe/Zurich 2006-10-05
-6294449 Binz Binz 47.35635 8.62657 P PPL CH ZH 109 195 1601 633 Europe/Zurich 2006-10-05
-6294491 Mönchaltorf / Dorf Moenchaltorf / Dorf Dorf 47.30401 8.72211 P PPLX CH ZH 109 196 1077 446 Europe/Zurich 2006-10-21
-6294531 Schwerzenbach / Chimli Schwerzenbach / Chimli Chimli 47.38592 8.65888 P PPLX CH ZH 109 197 1020 446 Europe/Zurich 2006-10-21
-6294532 Schwerzenbach / Blatten Schwerzenbach / Blatten Blatten 47.38308 8.64954 P PPLX CH ZH 109 197 1078 447 Europe/Zurich 2006-10-21
-6294547 Uster / Kirch-Uster Uster / Kirch-Uster Kirch-Uster 47.34579 8.71839 P PPLX CH ZH 109 198 10428 475 Europe/Zurich 2006-10-21
-6294548 Uster / Nieder-Uster Uster / Nieder-Uster Nieder-Uster 47.34743 8.70088 P PPLX CH ZH 109 198 4128 459 Europe/Zurich 2006-10-21
-6294549 Uster / Gschwader Uster / Gschwader Gschwader 47.36016 8.7139 P PPLX CH ZH 109 198 1763 470 Europe/Zurich 2006-10-21
-6294550 Uster / Ober-Uster Uster / Ober-Uster Ober-Uster 47.34874 8.73319 P PPLX CH ZH 109 198 5100 502 Europe/Zurich 2006-10-21
-6294551 Uster / Nossikon Uster / Nossikon Nossikon 47.34088 8.72555 P PPLX CH ZH 109 198 1433 483 Europe/Zurich 2006-10-21
-6294555 Nänikon / Nänikon (Dorfkern) Naenikon / Naenikon (Dorfkern) Naenikon (Dorfkern),Nänikon (Dorfkern) 47.37099 8.69254 P PPLX CH ZH 109 198 1178 453 Europe/Zurich 2006-10-21
-6294594 Kindhausen / Kindhausen (Dorf) Kindhausen / Kindhausen (Dorf) Kindhausen (Dorf) 47.40644 8.68296 P PPLX CH ZH 109 199 1107 494 Europe/Zurich 2006-10-21
-6294605 Hegnau / Sunnebüel-Eich Hegnau / Sunnebueel-Eich Sunnebueel-Eich,Sunnebüel-Eich 47.39246 8.6791 P PPLX CH ZH 109 199 3250 460 Europe/Zurich 2006-10-21
-6294614 Hegnau / Dammboden-Grindel Hegnau / Dammboden-Grindel Dammboden-Grindel 47.38713 8.66657 P PPLX CH ZH 109 199 2817 448 Europe/Zurich 2006-10-21
-6294617 Gutenswil Gutenswil 47.38387 8.71763 P PPLX CH ZH 109 199 1188 531 Europe/Zurich 2006-10-05
-6294626 Wangen Wangen 47.41182 8.64516 P PPL CH ZH 109 200 2015 442 Europe/Zurich 2006-10-05
-6294764 Elgg / Städtchen und Umgebung Elgg / Staedtchen und Umgebung Elgg / Staedtchen,Elgg / Städtchen,Staedtchen und Umgebung,Städtchen und Umgebung 47.49265 8.8668 P PPLX CH ZH 110 217 2342 529 Europe/Zurich 2010-04-07
-6294993 Seuzach Dorf / Breite-Weid Seuzach Dorf / Breite-Weid Breite-Weid 47.53345 8.73415 P PPLX CH ZH 110 227 1016 446 Europe/Zurich 2006-10-21
-6295077 Stadt Winterthur (Kreis 1) / Altstadt Stadt Winterthur (Kreis 1) / Altstadt Altstadt 47.49951 8.72872 P PPLX CH ZH 110 230 1665 451 Europe/Zurich 2006-10-21
-6295078 Stadt Winterthur (Kreis 1) / Lind Stadt Winterthur (Kreis 1) / Lind Lind 47.50571 8.73372 P PPLX CH ZH 110 230 4617 452 Europe/Zurich 2006-10-21
-6295079 Stadt Winterthur (Kreis 1) / Heiligberg Stadt Winterthur (Kreis 1) / Heiligberg Heiligberg 47.49409 8.72334 P PPLX CH ZH 110 230 3034 474 Europe/Zurich 2006-10-21
-6295080 Stadt Winterthur (Kreis 1) / Tössfeld Stadt Winterthur (Kreis 1) / Toessfeld Toessfeld,Tössfeld 47.4934 8.71512 P PPLX CH ZH 110 230 2207 438 Europe/Zurich 2006-10-21
-6295081 Stadt Winterthur (Kreis 1) / Brühlberg Stadt Winterthur (Kreis 1) / Bruehlberg Bruehlberg,Brühlberg 47.49764 8.71272 P PPLX CH ZH 110 230 1476 454 Europe/Zurich 2006-10-21
-6295082 Stadt Winterthur (Kreis 1) / Neuwiesen Stadt Winterthur (Kreis 1) / Neuwiesen Neuwiesen 47.50207 8.71625 P PPLX CH ZH 110 230 3149 430 Europe/Zurich 2006-10-21
-6295092 Oberwinterthur (Kreis 2) / Talacker Oberwinterthur (Kreis 2) / Talacker Talacker 47.50596 8.7515 P PPLX CH ZH 110 230 5375 475 Europe/Zurich 2006-10-21
-6295102 Oberwinterthur (Kreis 2) / Guggenbühl Oberwinterthur (Kreis 2) / Guggenbuehl Guggenbuehl,Guggenbühl 47.51339 8.75998 P PPLX CH ZH 110 230 5376 457 Europe/Zurich 2006-10-21
-6295111 Oberwinterthur (Kreis 2) / Zinzikon Oberwinterthur (Kreis 2) / Zinzikon Zinzikon 47.5195 8.7564 P PPLX CH ZH 110 230 1842 472 Europe/Zurich 2006-10-21
-6295121 Seen (Kreis 3) / Waser Seen (Kreis 3) / Waser Waser 47.48913 8.76034 P PPLX CH ZH 110 230 4088 457 Europe/Zurich 2006-10-21
-6295126 Seen (Kreis 3) / Büelwiesen Seen (Kreis 3) / Bueelwiesen Bueelwiesen,Büelwiesen 47.48446 8.76517 P PPLX CH ZH 110 230 2632 468 Europe/Zurich 2006-10-21
-6295131 Seen (Kreis 3) / Waldegg Seen (Kreis 3) / Waldegg Waldegg 47.48393 8.75586 P PPLX CH ZH 110 230 1184 456 Europe/Zurich 2006-10-21
-6295133 Seen (Kreis 3) / Ganzenbühl Seen (Kreis 3) / Ganzenbuehl Ganzenbuehl,Ganzenbühl 47.481 8.76249 P PPLX CH ZH 110 230 2362 478 Europe/Zurich 2006-10-21
-6295135 Seen (Kreis 3) / Oberseen Seen (Kreis 3) / Oberseen Oberseen 47.48205 8.77289 P PPLX CH ZH 110 230 2133 485 Europe/Zurich 2006-10-21
-6295138 Töss (Kreis 4) / Vorder-Dättnau Toess (Kreis 4) / Vorder-Daettnau Vorder-Daettnau,Vorder-Dättnau 47.48135 8.69855 P PPLX CH ZH 110 230 1476 485 Europe/Zurich 2006-10-21
-6295143 Töss (Kreis 4) / Schlosstal Toess (Kreis 4) / Schlosstal Schlosstal 47.49279 8.70223 P PPLX CH ZH 110 230 2762 432 Europe/Zurich 2006-10-21
-6295145 Töss (Kreis 4) / Eichliacker Toess (Kreis 4) / Eichliacker Eichliacker 47.48727 8.7074 P PPLX CH ZH 110 230 3626 436 Europe/Zurich 2006-10-21
-6295147 Veltheim (Kreis 5) / Rosenberg Veltheim (Kreis 5) / Rosenberg Rosenberg 47.51386 8.71583 P PPLX CH ZH 110 230 4765 481 Europe/Zurich 2006-10-21
-6295148 Veltheim (Kreis 5) / Blumenau Veltheim (Kreis 5) / Blumenau Blumenau 47.50618 8.71563 P PPLX CH ZH 110 230 4135 434 Europe/Zurich 2006-10-21
-6295166 Wülflingen (Kreis 6) / Oberfeld Wuelflingen (Kreis 6) / Oberfeld Oberfeld 47.49873 8.69897 P PPLX CH ZH 110 230 4288 454 Europe/Zurich 2006-10-21
-6295174 Wülflingen (Kreis 6) / Lindenplatz Wuelflingen (Kreis 6) / Lindenplatz Lindenplatz 47.51098 8.6929 P PPLX CH ZH 110 230 2555 419 Europe/Zurich 2006-10-21
-6295177 Wülflingen (Kreis 6) / Niederfeld Wuelflingen (Kreis 6) / Niederfeld Niederfeld 47.50904 8.67968 P PPLX CH ZH 110 230 1227 412 Europe/Zurich 2006-10-21
-6295179 Wülflingen (Kreis 6) / Härti Wuelflingen (Kreis 6) / Haerti Haerti,Härti 47.51262 8.684 P PPLX CH ZH 110 230 2602 411 Europe/Zurich 2006-10-21
-6295183 Mattenbach (Kreis 7) / Deutweg Mattenbach (Kreis 7) / Deutweg Deutweg 47.49419 8.73948 P PPLX CH ZH 110 230 5930 447 Europe/Zurich 2006-10-21
-6295184 Mattenbach (Kreis 7) / Gutschick Mattenbach (Kreis 7) / Gutschick Gutschick 47.49104 8.75258 P PPLX CH ZH 110 230 2923 453 Europe/Zurich 2006-10-21
-6295185 Mattenbach (Kreis 7) / Endliker Mattenbach (Kreis 7) / Endliker Endliker 47.48821 8.74938 P PPLX CH ZH 110 230 2169 456 Europe/Zurich 2006-10-21
-6295186 Kollbrunn / Kollbrunn (Dorfkern) Kollbrunn / Kollbrunn (Dorfkern) Kollbrunn (Dorfkern) 47.45748 8.77413 P PPLX CH ZH 110 231 1040 492 Europe/Zurich 2006-10-21
-6295296 Dietikon / Vorstadt Dietikon / Vorstadt Vorstadt 47.40819 8.39719 P PPLX CH ZH 111 243 2619 387 Europe/Zurich 2006-10-21
-6295299 Dietikon / Almend Dietikon / Almend Almend 47.40477 8.39168 P PPLX CH ZH 111 243 2118 400 Europe/Zurich 2006-10-21
-6295300 Dietikon / Oberdorf Dietikon / Oberdorf Oberdorf 47.40065 8.39416 P PPLX CH ZH 111 243 4147 408 Europe/Zurich 2006-10-21
-6295302 Dietikon / Kreuzacker Dietikon / Kreuzacker Kreuzacker 47.39919 8.40146 P PPLX CH ZH 111 243 1955 407 Europe/Zurich 2006-10-21
-6295304 Dietikon / Guggenbühl Dietikon / Guggenbuehl Guggenbuehl,Guggenbühl 47.40009 8.40818 P PPLX CH ZH 111 243 1312 389 Europe/Zurich 2006-10-21
-6295305 Dietikon / Hofacker Dietikon / Hofacker Hofacker 47.39718 8.41609 P PPLX CH ZH 111 243 2826 393 Europe/Zurich 2006-10-21
-6295306 Dietikon / Schönenwerd Dietikon / Schoenenwerd Schoenenwerd,Schönenwerd 47.39706 8.42576 P PPLX CH ZH 111 243 1218 396 Europe/Zurich 2006-10-21
-6295329 Oberengstringen / Zentrum Oberengstringen / Zentrum Zentrum 47.40711 8.46276 P PPLX CH ZH 111 245 1271 404 Europe/Zurich 2006-10-21
-6295331 Oberengstringen / Sonnenberg Oberengstringen / Sonnenberg Sonnenberg 47.41211 8.46055 P PPLX CH ZH 111 245 1477 440 Europe/Zurich 2006-10-21
-6295332 Oberengstringen / Rauchacher Oberengstringen / Rauchacher Rauchacher 47.40919 8.45627 P PPLX CH ZH 111 245 1126 401 Europe/Zurich 2006-10-21
-6295346 Schlieren / Zentrum Schlieren / Zentrum Zentrum 47.39779 8.4477 P PPLX CH ZH 111 247 1207 397 Europe/Zurich 2006-10-21
-6295347 Schlieren / Engstingerquartier Schlieren / Engstingerquartier Engstingerquartier 47.40338 8.44352 P PPLX CH ZH 111 247 1877 392 Europe/Zurich 2006-10-21
-6295349 Schlieren / Spital Schlieren / Spital Spital 47.39489 8.43027 P PPLX CH ZH 111 247 2587 410 Europe/Zurich 2006-10-21
-6295352 Schlieren / Freiestrasse Schlieren / Freiestrasse Freiestrasse 47.39598 8.44202 P PPLX CH ZH 111 247 1212 398 Europe/Zurich 2006-10-21
-6295354 Schlieren / Kamp Schlieren / Kamp Kamp 47.39358 8.44453 P PPLX CH ZH 111 247 1129 416 Europe/Zurich 2006-10-21
-6295357 Schlieren / Boden Schlieren / Boden Boden 47.39721 8.45734 P PPLX CH ZH 111 247 1241 395 Europe/Zurich 2006-10-21
-6295397 Urdorf / Bodenfeld Urdorf / Bodenfeld Bodenfeld 47.3892 8.42265 P PPLX CH ZH 111 250 1840 410 Europe/Zurich 2006-10-21
-6295398 Urdorf / Moos Urdorf / Moos Moos 47.38977 8.42886 P PPLX CH ZH 111 250 1266 426 Europe/Zurich 2006-10-21
-6295402 Urdorf / Oberurdorf Urdorf / Oberurdorf Oberurdorf 47.38072 8.42343 P PPLX CH ZH 111 250 1008 421 Europe/Zurich 2006-10-21
-6295432 Zürich (Kreis 12) / Auzelg Zuerich (Kreis 12) / Auzelg Auzelg 47.41511 8.57014 P PPLX CH ZH 112 261 1143 430 Europe/Zurich 2006-10-21
-6295436 Zürich (Kreis 11) / Schwandenholz Zuerich (Kreis 11) / Schwandenholz Schwandenholz 47.42476 8.52125 P PPLX CH ZH 112 261 1145 441 Europe/Zurich 2006-10-21
-6295444 Zürich (Kreis 2) / Mittel-Leimbach Zuerich (Kreis 2) / Mittel-Leimbach Mittel-Leimbach 47.32538 8.51391 P PPLX CH ZH 112 261 1891 493 Europe/Zurich 2006-10-21
-6295447 Zürich (Kreis 2) / Unter-Leimbach Zuerich (Kreis 2) / Unter-Leimbach Unter-Leimbach 47.33362 8.51433 P PPLX CH ZH 112 261 2778 477 Europe/Zurich 2006-10-21
-6295475 Zürich (Kreis 10) / Wipkingen Zuerich (Kreis 10) / Wipkingen Wipkingen 47.39503 8.52529 P PPLX CH ZH 112 261 15718 434 Europe/Zurich 2006-10-21
-6295481 Zürich (Kreis 10) / Rütihof Zuerich (Kreis 10) / Ruetihof Ruetihof,Rütihof 47.41444 8.47928 P PPLX CH ZH 112 261 3326 500 Europe/Zurich 2006-10-21
-6295483 Zürich (Kreis 1) / Rathaus Zuerich (Kreis 1) / Rathaus Rathaus 47.37161 8.54501 P PPLX CH ZH 112 261 3091 431 Europe/Zurich 2006-10-21
-6295484 Zürich (Kreis 11) / Affoltern Zuerich (Kreis 11) / Affoltern Affoltern 47.41814 8.5122 P PPLX CH ZH 112 261 17241 466 Europe/Zurich 2006-10-21
-6295490 Zürich (Kreis 12) / Saatlen Zuerich (Kreis 12) / Saatlen Saatlen 47.41127 8.5648 P PPLX CH ZH 112 261 5209 430 Europe/Zurich 2006-10-21
-6295491 Zürich (Kreis 12) / Schwamendingen-Mitte Zuerich (Kreis 12) / Schwamendingen-Mitte Schwamendingen-Mitte 47.4063 8.57242 P PPLX CH ZH 112 261 10476 431 Europe/Zurich 2006-10-21
-6295492 Zürich (Kreis 12) / Hirzenbach Zuerich (Kreis 12) / Hirzenbach Hirzenbach 47.40187 8.58633 P PPLX CH ZH 112 261 11335 432 Europe/Zurich 2006-10-21
-6295493 Zürich (Kreis 1) / Lindenhof Zuerich (Kreis 1) / Lindenhof Lindenhof 47.37188 8.54036 P PPLX CH ZH 112 261 1298 418 Europe/Zurich 2006-10-21
-6295494 Zürich (Kreis 1) / City Zuerich (Kreis 1) / City 47.37269 8.53576 P PPLX CH ZH 112 261 1089 418 Europe/Zurich 2009-11-13
-6295495 Zürich (Kreis 2) / Wollishofen Zuerich (Kreis 2) / Wollishofen Wollishofen 47.3401 8.53134 P PPLX CH ZH 112 261 16073 447 Europe/Zurich 2006-10-21
-6295496 Zürich (Kreis 2) / Enge Zuerich (Kreis 2) / Enge Enge 47.3605 8.53127 P PPLX CH ZH 112 261 8253 421 Europe/Zurich 2006-10-21
-6295497 Zürich (Kreis 3) / Friesenberg Zuerich (Kreis 3) / Friesenberg Friesenberg 47.36372 8.50417 P PPLX CH ZH 112 261 9909 465 Europe/Zurich 2006-10-21
-6295498 Zürich (Kreis 3) / Sihlfeld Zuerich (Kreis 3) / Sihlfeld Sihlfeld 47.37382 8.51164 P PPLX CH ZH 112 261 20977 416 Europe/Zurich 2006-10-21
-6295499 Zürich (Kreis 4) / Werd Zuerich (Kreis 4) / Werd Werd 47.37178 8.52584 P PPLX CH ZH 112 261 3911 418 Europe/Zurich 2006-10-21
-6295500 Zürich (Kreis 4) / Langstrasse Zuerich (Kreis 4) / Langstrasse Langstrasse 47.37767 8.52854 P PPLX CH ZH 112 261 10386 412 Europe/Zurich 2006-10-21
-6295501 Zürich (Kreis 4) / Hard Zuerich (Kreis 4) / Hard Hard 47.38311 8.50942 P PPLX CH ZH 112 261 12976 410 Europe/Zurich 2006-10-21
-6295502 Zürich (Kreis 5) / Gewerbeschule Zuerich (Kreis 5) / Gewerbeschule Gewerbeschule 47.38481 8.53011 P PPLX CH ZH 112 261 9891 419 Europe/Zurich 2006-10-21
-6295503 Zürich (Kreis 5) / Escher-Wyss Zuerich (Kreis 5) / Escher-Wyss Escher-Wyss 47.39052 8.51292 P PPLX CH ZH 112 261 1846 403 Europe/Zurich 2006-10-21
-6295504 Zürich (Kreis 6) / Unterstrass Zuerich (Kreis 6) / Unterstrass Unterstrass 47.3953 8.53721 P PPLX CH ZH 112 261 20045 476 Europe/Zurich 2006-10-21
-6295505 Zürich (Kreis 6) / Oberstrass Zuerich (Kreis 6) / Oberstrass Oberstrass 47.38917 8.5504 P PPLX CH ZH 112 261 9906 527 Europe/Zurich 2006-10-21
-6295506 Zürich (Kreis 7) / Fluntern Zuerich (Kreis 7) / Fluntern Fluntern 47.38013 8.56133 P PPLX CH ZH 112 261 7009 561 Europe/Zurich 2006-10-21
-6295507 Zürich (Kreis 7) / Hottingen Zuerich (Kreis 7) / Hottingen Hottingen 47.37011 8.56306 P PPLX CH ZH 112 261 9934 477 Europe/Zurich 2006-10-21
-6295508 Zürich (Kreis 7) / Hirslanden Zuerich (Kreis 7) / Hirslanden Hirslanden 47.3624 8.56755 P PPLX CH ZH 112 261 6769 469 Europe/Zurich 2006-10-21
-6295509 Zürich (Kreis 8) / Seefeld Zuerich (Kreis 8) / Seefeld Seefeld 47.35462 8.55537 P PPLX CH ZH 112 261 4998 415 Europe/Zurich 2006-10-21
-6295510 Zürich (Kreis 8) / Mühlebach Zuerich (Kreis 8) / Muehlebach Muehlebach,Mühlebach 47.35727 8.55744 P PPLX CH ZH 112 261 5570 425 Europe/Zurich 2006-10-21
-6295511 Zürich (Kreis 8) / Weinegg Zuerich (Kreis 8) / Weinegg Weinegg 47.3525 8.57011 P PPLX CH ZH 112 261 4951 472 Europe/Zurich 2006-10-21
-6295512 Zürich (Kreis 9) / Albisrieden Zuerich (Kreis 9) / Albisrieden Albisrieden 47.37398 8.49007 P PPLX CH ZH 112 261 16480 428 Europe/Zurich 2006-10-21
-6295513 Zürich (Kreis 9) / Altstetten Zuerich (Kreis 9) / Altstetten Altstetten 47.38946 8.48533 P PPLX CH ZH 112 261 28307 403 Europe/Zurich 2006-10-21
-6295514 Schwerzenbach Schwerzenbach 47.38213 8.65727 P PPL CH ZH 109 197 4180 447 Europe/Zurich 2006-10-05
-6295515 Steinmaur Steinmaur 47.4971 8.45216 P PPL CH ZH 104 101 1438 457 Europe/Zurich 2006-10-05
-6295517 Hegnau Hegnau 47.39227 8.66988 P PPL CH ZH 109 199 7961 451 Europe/Zurich 2006-10-05
-6295518 Gockhausen Gockhausen 47.38098 8.59978 P PPL CH ZH 109 191 1411 572 Europe/Zurich 2006-10-05
-6295520 Stadt Winterthur (Kreis 1) Stadt Winterthur (Kreis 1) 47.49494 8.71954 P PPL CH ZH 110 230 16182 439 Europe/Zurich 2006-10-05
-6295521 Zürich (Kreis 5) Zuerich (Kreis 5) 47.38767 8.52152 P PPLX CH ZH 112 261 11737 405 Europe/Zurich 2009-03-12
-6295522 Dänikon Daenikon 47.44674 8.40648 P PPL CH ZH 104 85 1682 430 Europe/Zurich 2006-10-05
-6295523 Zürich (Kreis 12) Zuerich (Kreis 12) 47.40372 8.57608 P PPLX CH ZH 112 261 28189 435 Europe/Zurich 2009-03-12
-6295524 Wülflingen (Kreis 6) Wuelflingen (Kreis 6) 47.51036 8.68333 P PPL CH ZH 110 230 12598 410 Europe/Zurich 2006-10-05
-6295525 Sulz Sulz 47.53954 8.78887 P PPL CH ZH 110 225 1244 455 Europe/Zurich 2006-10-05
-6295527 Seglingen Seglingen 47.57244 8.52093 P PPL CH ZH 103 55 1144 379 Europe/Zurich 2006-10-05
-6295528 Niederglatt Niederglatt 47.49066 8.49987 P PPL CH ZH 104 89 3632 417 Europe/Zurich 2006-10-05
-6295530 Ebmatingen Ebmatingen 47.34987 8.64013 P PPL CH ZH 109 195 2278 630 Europe/Zurich 2006-10-05
-6295531 Seen (Kreis 3) Seen (Kreis 3) 47.47646 8.76996 P PPL CH ZH 110 230 15434 478 Europe/Zurich 2006-10-05
-6295532 Zürich (Kreis 3) Zuerich (Kreis 3) 47.35785 8.50296 P PPLX CH ZH 112 261 46018 507 Europe/Zurich 2009-03-12
-6295533 Zürich (Kreis 11) Zuerich (Kreis 11) 47.42326 8.52166 P PPLX CH ZH 112 261 54260 445 Europe/Zurich 2009-03-12
-6295534 Zürich (Kreis 9) Zuerich (Kreis 9) 47.38245 8.47993 P PPLX CH ZH 112 261 44878 426 Europe/Zurich 2009-03-12
-6295536 Oberwinterthur (Kreis 2) Oberwinterthur (Kreis 2) 47.51692 8.76863 P PPL CH ZH 110 230 16356 455 Europe/Zurich 2006-10-05
-6295537 Geroldswil Geroldswil 47.42213 8.41085 P PPL CH ZH 111 244 3681 403 Europe/Zurich 2006-10-05
-6295539 Zürich (Kreis 10) Zuerich (Kreis 10) 47.40773 8.5005 P PPLX CH ZH 112 261 36216 516 Europe/Zurich 2009-03-12
-6295540 Zürich (Kreis 2) Zuerich (Kreis 2) 47.33756 8.5211 P PPLX CH ZH 112 261 29215 439 Europe/Zurich 2009-03-12
-6295542 Zürich (Kreis 8) Zuerich (Kreis 8) 47.3548 8.56097 P PPLX CH ZH 112 261 15519 430 Europe/Zurich 2009-03-12
-6295543 Wolfhausen Wolfhausen 47.25619 8.7991 P PPL CH ZH 105 112 2402 505 Europe/Zurich 2006-10-05
-6295545 Seuzach Dorf Seuzach Dorf 47.5356 8.73209 P PPL CH ZH 110 227 3969 444 Europe/Zurich 2006-10-05
-6295546 Zürich (Kreis 1) Zuerich (Kreis 1) 47.37055 8.54177 P PPLX CH ZH 112 261 6185 418 Europe/Zurich 2009-03-15
-6295547 Mattenbach (Kreis 7) Mattenbach (Kreis 7) 47.48705 8.74681 P PPL CH ZH 110 230 11043 446 Europe/Zurich 2006-10-05
-6295548 Zürich (Kreis 7) Zuerich (Kreis 7) 47.37328 8.58038 P PPLX CH ZH 112 261 33820 656 Europe/Zurich 2009-03-12
-6295549 Obermeilen Obermeilen 47.2679 8.66391 P PPL CH ZH 107 156 2871 432 Europe/Zurich 2006-10-05
-6295550 Zürich (Kreis 6) Zuerich (Kreis 6) 47.39223 8.54381 P PPLX CH ZH 112 261 29951 487 Europe/Zurich 2009-03-12
-6295551 Elsau-Räterschen Elsau-Raeterschen 47.50238 8.79874 P PPL CH ZH 110 219 1395 505 Europe/Zurich 2006-10-05
-6295645 Thalwil / See Thalwil / See See 47.29409 8.56929 P PPLX CH ZH 106 141 1893 423 Europe/Zurich 2006-10-21
-6639664 Préverenges Preverenges 46.51854 6.52682 P PPL CH VD 2227 5643 4695 411 407 Europe/Zurich 2010-04-05
-6640317 Langnau am Albis Langnau am Albis 47.28885 8.5411 P PPL CH ZH 106 136 7000 490 485 Europe/Zurich 2010-04-05
-6691324 Langendorf Langendorf 47.21974 7.51469 P PPL CH SO 1107 2550 3518 483 Europe/Zurich 2010-04-05
-6691631 Troinex Troinex 46.16313 6.14745 P PPL CH GE 2500 6641 2192 424 Europe/Zurich 2010-04-05
-6691640 Lancy Lancy 46.18981 6.11441 P PPLL CH GE 2500 6628 27291 421 Europe/Zurich 2010-04-05
-6695938 Stetten Stetten 47.74025 8.66298 P PPL CH SH 1402 2919 1065 577 573 Europe/Zurich 2010-04-05
-6695944 Löhningen Loehningen 47.70121 8.55236 P PPL CH SH 1401 2903 1124 480 478 Europe/Zurich 2010-04-05
-6697288 Lauffohr (Brugg) Lauffohr (Brugg) 47.50154 8.23122 P PPLX CH AG 1904 4095 2000 340 336 Europe/Zurich 2010-04-05
-6697711 Jongny Jongny 46.47883 6.84114 P PPL CH VD 2230 5885 1423 639 625 Europe/Zurich 2010-04-05
-6940549 Haag (Rheintal) Haag (Rheintal) 47.20989 9.48931 P PPL CH SG 1724 3274 1180 441 Europe/Zurich 2010-04-05
-6946577 Aire-la-Ville Aire-la-Ville 46.19057 6.04287 P PPL CH GE 2500 6601 1100 350 377 Europe/Zurich 2010-04-05
-6956026 Hausen Hausen 47.46396 8.20988 P PPL CH AG 1904 4100 2881 380 376 Europe/Zurich 2010-04-05
-7288522 Veyras Veyras 46.30212 7.53619 P PPLA3 CH VS 2311 6250 0 651 Europe/Zurich 2011-07-31
-7290028 Känerkinden Kaenerkinden 47.41188 7.83716 P PPLA3 CH BL 1304 2850 0 551 548 Europe/Zurich 2012-01-31
-7302536 Oberurnen Oberurnen 47.11412 9.05866 P PPL CH GL 800 1623 1932 430 431 Europe/Zurich 2010-06-10
-7521936 Schaffhausen, City Center Schaffhausen, City Center 47.69681 8.63346 P PPL CH SH 1403 2939 34000 412 Europe/Zurich 2010-08-23
-7701334 Cancori Cancori 46.45944 8.89944 P PPL CH TI 2102 5048 1460 1446 Europe/Zurich 2011-03-08
-7779000 Les Avanchets Les Avanchets 46.22168 6.10814 P PPL CH GE 2500 6643 5730 430 Europe/Zurich 2011-05-04
-2279172 Zuénoula Zuenoula Zenoula,Zouenoula,Zouénoula,Zuenoula,Zuénoula,Zénoula 7.43027 -6.05054 P PPL CI 83 34435 207 Africa/Abidjan 2012-02-28
-2279755 Yamoussoukro Yamoussoukro Giamoussoukro,Jamusukras,Jamusukro,Yamoussokro,Yamoussoukro,Yamussukro,Yamusukro,ya mu su ke luo,yamusukeulo,yamusukuro,Γιαμουσσούκρο,Јамусукро,Ямусукро,Յամուսուկրո,יאמוסוקרו,ያሙሱክሮ,ヤムスクロ,亚穆苏克罗,야무수크로 6.82055 -5.27674 P PPLC CI 81 194530 214 Africa/Abidjan 2012-01-17
-2280045 Vavoua Vavoua Vavoua,Vavua,Вавуа 7.38194 -6.47778 P PPL CI 80 31250 276 Africa/Abidjan 2012-01-17
-2280316 Toumodi Toumodi Toumodi,Tumodi 6.55799 -5.01769 P PPL CI 81 39005 152 Africa/Abidjan 2012-02-28
-2280333 Toulépleu Gueré Toulepleu Guere 6.57395 -8.42592 P PPL CI 84 14098 269 Africa/Abidjan 2011-06-05
-2280376 Touba Touba Touba,Tuba 8.28333 -7.68333 P PPLA CI 75 27504 470 Africa/Abidjan 2012-01-17
-2280589 Tengrela Tengrela Tengrela,Tingrela,Tingréla 10.48115 -6.40694 P PPL CI 87 39277 343 Africa/Abidjan 2012-02-28
-2280761 Tiassalé Tiassale Tiassale,Tiassalé 5.89839 -4.82293 P PPL CI 82 35090 70 Africa/Abidjan 2012-02-28
-2280995 Tanda Tanda Tan N'Da,Tan N’Da,Tanda,Tanga 7.80336 -3.16832 P PPL CI 92 20161 263 Africa/Abidjan 2012-02-28
-2281120 Tabou Tabou Tabou,Tabu 4.42295 -7.3528 P PPL CI 76 17134 9 Africa/Abidjan 2012-01-17
-2281606 Sinfra Sinfra 6.61667 -5.91667 P PPL CI 92 59919 252 Africa/Abidjan 2008-10-16
-2281951 Sassandra Sassandra Sassandra,Сассандра 4.95 -6.08333 P PPL CI 76 23274 23 Africa/Abidjan 2012-01-17
-2282006 San-Pédro San-Pedro San-Pedro,San-Pédro 4.74851 -6.6363 P PPLA CI 76 196751 9 Africa/Abidjan 2012-01-17
-2282178 Sakassou Sakassou Sakasso,Sakassou,Sakassu 7.45462 -5.29263 P PPL CI 90 15068 231 Africa/Abidjan 2012-01-17
-2282827 Oumé Oume Oume,Oumé,Ume 6.38309 -5.41759 P PPL CI 79 52070 211 Africa/Abidjan 2012-01-17
-2283016 Odienné Odienne Odienne,Odienné,Одиенне 9.50511 -7.56433 P PPLA CI 77 49857 452 Africa/Abidjan 2012-02-28
-2284589 Mankono Mankono Mankono 8.05861 -6.18972 P PPL CI 91 19095 335 Africa/Abidjan 2012-01-17
-2284647 Man Man Man 7.41251 -7.55383 P PPLA CI 78 139341 329 Africa/Abidjan 2012-01-17
-2284744 Maféré Mafere Mafere,Maféré 5.4151 -3.03006 P PPLA2 CI 89 0 122 Africa/Abidjan 2012-01-17
-2285449 Lakota Lakota Iakota,Lakota,Лакота 5.84752 -5.682 P PPL CI 88 38055 241 Africa/Abidjan 2012-02-28
-2286304 Korhogo Korhogo Korhogo,Korogo,Корого 9.45803 -5.62961 P PPLA CI 87 167359 421 Africa/Abidjan 2012-02-28
-2287298 Katiola Katiola Katiola,Lafouka 8.13728 -5.10095 P PPL CI 90 59641 305 Africa/Abidjan 2012-02-28
-2287778 Jacqueville Jacqueville Half Jack,Jackville,Jacqueville,Jaqueville 5.20515 -4.4146 P PPLA2 CI 82 0 12 Africa/Abidjan 2012-01-17
-2287790 Issia Issia 6.49224 -6.58558 P PPL CI 80 50313 211 Africa/Abidjan 2011-06-05
-2287958 Guiglo Guiglo Guglo,Guiglo 6.54368 -7.4935 P PPLA CI 84 39134 234 Africa/Abidjan 2012-02-28
-2287970 Guibéroua Guiberoua Guibehorouo,Guiberou,Guiberoua,Guibieouroua,Guibiéouroua,Guibéhorouo,Guibéroua 6.23869 -6.17146 P PPL CI 79 13186 209 Africa/Abidjan 2012-02-28
-2288105 Grand-Lahou Grand-Lahou Grand Lahu,Grand-Lahou 5.13553 -5.02396 P PPL CI 88 10273 72 Africa/Abidjan 2012-02-28
-2288115 Grand-Bassam Grand-Bassam Gran-Bassam,Grand-Bassam,Гран-Бассам 5.2118 -3.73884 P PPLA2 CI 82 73772 7 Africa/Abidjan 2012-01-17
-2288118 Affery Affery Aferi,Affery,Aféri,Grand Aferi,Grand Aféri 6.32035 -3.95235 P PPL CI 74 29909 97 Africa/Abidjan 2012-02-28
-2288829 Gagnoa Gagnoa Gagnoa,Gragnoa 6.13193 -5.9506 P PPLA CI 79 123184 216 Africa/Abidjan 2012-02-28
-2289049 Ferkessédougou Ferkessedougou Ferkesedugu,Ferkessedougou,Ferkessédougou,Firkessedougou,Firkessedugu,Firkessédougou,Firkessédugu,Pofire,Serkessedougou,Феркеседугу 9.5928 -5.19449 P PPL CI 87 62008 365 Africa/Abidjan 2012-02-28
-2289549 Duekoué Duekoue Duekoue,Duekoué 6.74202 -7.34918 P PPL CI 84 47198 275 Africa/Abidjan 2012-02-28
-2289887 Divo Divo Boudougou,Divo 5.83739 -5.35723 P PPLA CI 88 127867 149 Africa/Abidjan 2012-02-28
-2289983 Dimbokro Dimbokro Dimbokro 6.64678 -4.70519 P PPLA CI 86 67349 75 Africa/Abidjan 2012-02-28
-2290412 Daoukro Daoukro Daoukrou,Daukro,Даукро 7.0591 -3.9631 P PPL CI 86 40175 188 Africa/Abidjan 2010-01-29
-2290462 Danané Danane Danane,Danané,Fort Hittos,Данане 7.25957 -8.15498 P PPL CI 78 53808 347 Africa/Abidjan 2012-01-17
-2290486 Daloa Daloa Daloa,Далоа 6.87736 -6.45022 P PPLA CI 80 215652 262 Africa/Abidjan 2012-01-17
-2290582 Dabou Dabou Dab,Dabou,Dabu,Даб 5.32556 -4.37685 P PPLA2 CI 82 69661 21 Africa/Abidjan 2012-01-17
-2290609 Dabakala Dabakala Dabakala,Dabakla 8.36321 -4.42863 P PPL CI 90 13717 250 Africa/Abidjan 2012-02-28
-2290836 Boundiali Boundiali Boundiali,Boundiouli,Bundiali,Бундиали 9.52167 -6.48694 P PPL CI 87 38878 411 Africa/Abidjan 2012-01-17
-2290849 Bouna Bouna Bouna,Buna,Буна 9.26926 -2.9951 P PPL CI 92 23570 324 Africa/Abidjan 2012-02-28
-2290956 Bouaké Bouake Bouake,Bouaké,Buake,Bwake,Буаке 7.69385 -5.03031 P PPLA CI 90 567481 312 Africa/Abidjan 2012-02-28
-2290964 Bouaflé Bouafle Bouafle,Bouaflé,Buafle 6.99041 -5.7442 P PPLA CI 83 60962 208 Africa/Abidjan 2012-01-17
-2290985 Botro Botro Botro 7.85249 -5.31063 P PPL CI 90 13375 261 Africa/Abidjan 2012-01-17
-2291087 Bonoua Bonoua Bonoua,Bonua,Bunua,Grand Akapless 5.27247 -3.59625 P PPLA2 CI 82 37312 75 Africa/Abidjan 2012-02-28
-2291113 Bongouanou Bongouanou Bongouanou,Bonguanu,Bougouanou 6.65175 -4.20406 P PPL CI 86 34405 230 Africa/Abidjan 2012-02-28
-2291136 Bondoukou Bondoukou Bondoukau,Bondoukou,Bonduku,Boudoukou,Gontoukou,Бондуку 8.0402 -2.80003 P PPLA CI 92 58297 352 Africa/Abidjan 2012-02-28
-2291383 Bocanda Bocanda Bocanda,Bokanda 7.06264 -4.49948 P PPL CI 86 13079 115 Africa/Abidjan 2012-01-17
-2291580 Bingerville Bingerville Bingerville 5.35581 -3.88537 P PPLA2 CI 82 50694 75 Africa/Abidjan 2012-02-28
-2291666 Biankouma Biankouma Biankouma 7.73909 -7.61377 P PPL CI 78 22868 538 Africa/Abidjan 2012-01-17
-2291779 Béoumi Beoumi Beoumi,Beumi,Béoumi 7.67395 -5.58086 P PPL CI 90 23053 224 Africa/Abidjan 2012-02-28
-2292179 Bangolo Bangolo Bangolo,Zagna 7.01232 -7.4864 P PPL CI 78 17712 322 Africa/Abidjan 2012-02-28
-2292531 Azaguié Azaguie Azaguie,Azaguié 5.62984 -4.08204 P PPLA2 CI 74 0 93 Africa/Abidjan 2012-02-28
-2292542 Ayamé Ayame Ayame,Ayamé 5.6052 -3.15709 P PPLA2 CI 89 12315 90 Africa/Abidjan 2012-02-28
-2292755 Arrah Arrah Arra,Arrah 6.67342 -3.96938 P PPL CI 86 37432 149 Africa/Abidjan 2012-02-28
-2292852 Anyama Anyama An'jame,Aniama,Anyama,Anyama Sossokoua,Аньяме 5.49462 -4.05183 P PPLA2 CI 82 100653 95 Africa/Abidjan 2012-01-17
-2293045 Alépé Alepe Alepe,Alépé,Little Alepe 5.5004 -3.66308 P PPLA2 CI 82 0 13 Africa/Abidjan 2012-01-17
-2293107 Akoupé Akoupe Akoupe,Akoupé,Akupe 6.38423 -3.88759 P PPL CI 74 35970 153 Africa/Abidjan 2012-02-28
-2293260 Agnibilékrou Agnibilekrou Agnibilekrou,Agnibilékrou,Anibelekru 7.13113 -3.20415 P PPL CI 85 43061 231 Africa/Abidjan 2012-02-28
-2293268 Agboville Agboville Agbovile,Agboville,Агбовиле 5.92801 -4.21319 P PPLA2 CI 74 81770 35 Africa/Abidjan 2012-01-17
-2293342 Adzopé Adzope Adzope,Adzopé,Адзопе 6.10694 -3.86194 P PPL CI 74 61884 109 Africa/Abidjan 2012-01-17
-2293428 Adiaké Adiake Adiake,Adiaké 5.28634 -3.30402 P PPLA2 CI 89 16531 40 Africa/Abidjan 2012-01-17
-2293507 Aboisso Aboisso Abisso,Aboissa,Aboisso,Abuasso,Абуассо 5.46779 -3.20711 P PPLA2 CI 89 37654 12 Africa/Abidjan 2012-01-17
-2293521 Abobo Abobo Abobo,Abobo-Gare 5.41613 -4.0159 P PPL CI 82 900000 75 Africa/Abidjan 2012-02-28
-2293538 Abidjan Abidjan Abican,Abidjan,Abidzan,Abidzana,Abidzanas,Abidzhan,Abidżan,Abidžan,Abidžanas,Abidžāna,Abigano,Abijan,Abiyan,Abiyán,Abiĝano,a bi rang,abijan,abijang,abyjan,Абиджан,Абиџан,Абіджан,אביג'אן,أبيجان,アビジャン,阿比让,아비장 5.30966 -4.01266 P PPLA CI 82 3677115 74 Africa/Abidjan 2012-02-28
-2293549 Abengourou Abengourou Abengourou,Abenguru,Абенгуру 6.72972 -3.49639 P PPLA CI 85 104020 197 Africa/Abidjan 2012-01-17
-2596934 Séguéla Seguela Segele,Seguela,Séguéla,Сегеле 7.96111 -6.67306 P PPLA CI 91 51157 350 Africa/Abidjan 2012-01-20
-2596951 Agou Agou Agou 5.98289 -3.94393 P PPLA2 CI 74 0 93 Africa/Abidjan 2012-01-20
-2597172 Tiapoum Tiapoum Tiapoum 5.13622 -3.02308 P PPLA2 CI 89 0 14 Africa/Abidjan 2012-01-20
-2598243 Soubré Soubre Soubre,Soubré 5.78556 -6.60833 P PPL CI 76 58492 134 Africa/Abidjan 2012-01-20
-4035715 Avarua Avarua Avarua,Avarúa,abarua,Аваруа,アバルア -21.20778 -159.775 P PPLC CK 00 13373 6 Pacific/Rarotonga 2012-01-18
-3867625 Yumbel Yumbel Yumbel -37.08333 -72.56667 P PPL CL 06 11111 103 America/Santiago 2012-02-02
-3868121 Viña del Mar Vina del Mar Vin'ja-del'-Mar,Vina del Mar,Viña del Mar,Винья-дель-Мар,ビニャ・デル・マール -33.02457 -71.55183 P PPL CL 01 294551 17 America/Santiago 2010-01-29
-3868158 Villarrica Villarrica -39.28569 -72.2279 P PPL CL 04 31602 232 America/Santiago 2008-06-19
-3868192 Villa Alemana Villa Alemana Villa Alemana -33.04222 -71.37333 P PPL CL 01 97320 147 America/Santiago 2012-01-18
-3868210 Vilcún Vilcun Vilcun,Vilcún -38.65 -72.23333 P PPL CL 04 9241 333 America/Santiago 2012-02-02
-3868308 Vicuña Vicuna Vicuna,Vicuña -30.03194 -70.70806 P PPL CL 07 13496 624 America/Santiago 2012-01-18
-3868326 Victoria Victoria Victoria -38.21667 -72.33333 P PPL CL 04 24555 347 America/Santiago 2012-02-02
-3868626 Valparaíso Valparaiso Ciudad de Valparaiso,Ciudad de Valparaíso,Val'paraiso,Valparais,Valparaiso,Valparaíso,baruparaiso,wa er pa lai suo,Валпараисо,Вальпараисо,バルパライソ,瓦尔帕莱索 -33.03932 -71.62725 P PPLA CL 01 282448 23 America/Santiago 2009-01-10
-3868633 Vallenar Vallenar Vallenar -28.57083 -70.75806 P PPL CL 05 44895 426 America/Santiago 2012-01-18
-3868707 Valdivia Valdivia Ciudad de Valdivia,Ciudad de Valdivía,Val'divija,Valdivia,Вальдивия -39.81422 -73.24589 P PPLA CL 17 133419 17 America/Santiago 2010-07-21
-3869381 Traiguén Traiguen Traiguen,Traiguén -38.25 -72.68333 P PPL CL 04 14481 229 America/Santiago 2012-01-18
-3869657 Tomé Tome Tome,Tomé -36.61667 -72.95 P PPL CL 06 46698 26 America/Santiago 2012-01-18
-3869716 Tocopilla Tocopilla Tocopilla,Tokopil'ja,Токопилья -22.09198 -70.19792 P PPL CL 03 24460 37 America/Santiago 2012-01-18
-3869979 Teno Teno Teno -34.86667 -71.18333 P PPL CL 11 6858 267 America/Santiago 2012-01-18
-3870011 Temuco Temuco Ciudad Temuco,Temuco,Temuko,Темуко -38.73333 -72.6 P PPLA CL 04 238129 117 America/Santiago 2012-01-18
-3870243 Taltal Taltal Ciudad Taltal,Taltal -25.4 -70.48333 P PPL CL 03 10018 34 America/Santiago 2012-01-18
-3870282 Talcahuano Talcahuano Talcahuano -36.71667 -73.11667 P PPL CL 06 252968 44 America/Santiago 2012-01-18
-3870294 Talca Talca Tal'ka,Talca,Талька -35.43333 -71.66667 P PPLA CL 11 197479 98 America/Santiago 2012-01-18
-3870306 Talagante Talagante -33.66667 -70.93333 P PPL CL 12 51764 338 America/Santiago 2006-01-17
-3871286 San Vicente San Vicente -34.43333 -71.08333 P PPL CL 08 22572 210 America/Santiago 2006-01-17
-3871336 Santiago Santiago Ciles Santjagas,CiudadSantiago,Sanctiacobi,Sant'jago,Santiago,Santiago de Chile,Santiago de Xile,Santiago del Cile,Santiago do Chile,Santiago du Chili,Santiago du Ch·ili,Santjago,Santjago de Chile,Santjago de Chili,Stgo.,santiago,santixako,santyaghw,santyagw,santyyagw,sheng de ya ge,Čilės Santjagas,Σαντιάγο,Сантьяго,Сантяго де Чиле,Сантяго де Чили,סנטיאגו דה צ'ילה,سانتىياگو,سانتياغو,سانتیاگو,ซันติอาโก,სანტიაგო დე ჩილე,ሳንቲያጎ,サンティアゴ,圣地亚哥,산티아고 -33.45694 -70.64827 P PPLC CL 12 4837295 556 America/Santiago 2012-01-29
-3871616 Santa Cruz Santa Cruz Santa Cruz,Santa-Krus,Санта-Крус -34.63333 -71.36667 P PPL CL 08 33283 171 America/Santiago 2012-01-18
-3871781 San Pedro de Atacama San Pedro de Atacama San Pedro de Atacama,San-Pedro-de-Atakama,Сан-Педро-де-Атакама -22.91667 -68.21667 P PPL CL 03 2000 2440 America/Santiago 2012-01-18
-3872154 San Javier San Javier San Javier -35.6 -71.75 P PPL CL 11 22427 76 America/Santiago 2012-01-18
-3872255 San Felipe San Felipe San Felipe -32.75 -70.73333 P PPL CL 01 59294 643 America/Santiago 2012-01-18
-3872306 San Clemente San Clemente San Clemente -35.55 -71.48333 P PPL CL 11 13656 219 America/Santiago 2012-01-18
-3872326 San Carlos San Carlos -36.42477 -71.958 P PPL CL 06 31517 186 America/Santiago 2009-11-17
-3872348 San Bernardo San Bernardo San Bernardo -33.6 -70.71667 P PPL CL 12 249858 558 America/Santiago 2012-01-18
-3872395 San Antonio San Antonio San Antonio -33.59333 -71.62167 P PPL CL 01 85651 10 America/Santiago 2012-01-18
-3872594 Salamanca Salamanca Salamanca -31.775 -70.97222 P PPL CL 07 13265 501 America/Santiago 2012-01-18
-3873145 Río Bueno Rio Bueno Ciudad de Rio Bueno,Ciudad de Río Bueno,Rio Bueno,Río Bueno -40.31667 -72.96667 P PPL CL 17 15456 44 America/Santiago 2012-01-18
-3873441 Rengo Rengo Rengo -34.41667 -70.86667 P PPL CL 08 38100 310 America/Santiago 2012-01-18
-3873775 Rancagua Rancagua Rancagua,Rankagua,Ранкагуа -34.17083 -70.74444 P PPLA CL 08 212695 506 America/Santiago 2012-01-18
-3874096 Quilpué Quilpue Quilpue,Quilpué -33.045 -71.44944 P PPL CL 01 51 130263 113 America/Santiago 2012-01-30
-3874119 Quillota Quillota Quillota -32.88333 -71.26667 P PPL CL 01 67779 121 America/Santiago 2012-01-18
-3874552 Putre Putre Putre -18.19821 -69.56071 P PPLA2 CL 16 0 3544 America/Santiago 2012-01-30
-3874579 Purranque Purranque Purranque -40.91667 -73.16667 P PPL CL 14 13619 117 America/Santiago 2012-01-18
-3874787 Punta Arenas Punta Arenas Magallanes,Punta Arehnas,Punta Arenas,Punta Arenasas,peng ta a lei na si,puntaarenasu,Пунта Аренас,Пунта Арэнас,プンタアレナス,蓬塔阿雷纳斯 -53.15 -70.91667 P PPLA CL 10 117430 31 America/Santiago 2012-01-18
-3874930 Puerto Varas Puerto Varas Puerto Varas -41.31946 -72.98538 P PPL CL 14 24958 60 America/Santiago 2012-01-18
-3874943 Puerto Quellón Puerto Quellon -43.11667 -73.61667 P PPL CL 14 21823 23 America/Santiago 2010-05-25
-3874958 Puerto Natales Puerto Natales Natales,Puehrto-Natales,Puerto Natales,Пуэрто-Наталес -51.72363 -72.48745 P PPL CL CL 10 20000 28 America/Santiago 2009-02-24
-3874960 Puerto Montt Puerto Montt Ciudad de Puerto Montt,Puehrto-Mont,Puerto Mont,Puerto Montt,Пуерто Монт,Пуэрто-Монт -41.46985 -72.94474 P PPLA CL 14 160054 16 America/Santiago 2012-01-18
-3874982 Puerto Cisnes Puerto Cisnes Puerto Cisnes -44.75 -72.7 P PPL CL 02 2507 14 America/Santiago 2012-01-18
-3874997 Puerto Aisén Puerto Aisen Aisen,Aisén,Aysen,Ciudad de Aysen,Ciudad de Aysén,Puerto Aisen,Puerto Aisén,Puerto Aysen,Puerto Aysén -45.4 -72.7 P PPL CL CL 02 16936 255 America/Santiago 2012-01-18
-3875024 Puente Alto Puente Alto Puente Alto -33.61667 -70.58333 P PPL CL 12 3875022 510417 688 America/Santiago 2012-01-18
-3875070 Pucón Pucon Pukon,Пукон -39.28223 -71.95427 P PPL CL 04 26953 236 America/Santiago 2010-03-07
-3875746 Pitrufquén Pitrufquen Pitrufquen,Pitrufquén -38.98333 -72.65 P PPL CL 04 13743 93 America/Santiago 2012-01-18
-3876664 Penco Penco Ciudad de Penco,Penco,Penon,Peñon -36.73333 -72.98333 P PPL CL 06 46091 59 America/Santiago 2012-01-18
-3876685 Peñaflor Penaflor Pen'jaflor,Penaflor,Peñaflor,Пеньяфлор -33.61667 -70.91667 P PPL CL 12 65495 361 America/Santiago 2012-01-18
-3877146 Parral Parral Parral,Parralja,Парраля -36.15 -71.83333 P PPL CL 11 26904 176 America/Santiago 2012-01-18
-3877348 Panguipulli Panguipulli Panguipulli -39.63333 -72.33333 P PPL CL 04 16312 215 America/Santiago 2012-01-18
-3877644 Palena Palena Alto Palena,Palena -43.62306 -71.80389 P PPL CL CL 14 1690 392 America/Santiago 2012-01-18
-3877739 Paine Paine Paine,Pejn,Пейн -33.81667 -70.75 P PPL CL 12 32766 392 America/Santiago 2012-01-18
-3877918 Ovalle Ovalle Oval'e,Ovalle,Овалье -30.59833 -71.20028 P PPL CL 07 77138 232 America/Santiago 2012-01-18
-3877949 Osorno Osorno Osorno,Осорно -40.56667 -73.15 P PPL CL 14 135773 22 America/Santiago 2012-01-18
-3878456 Nueva Imperial Nueva Imperial Nueva Imperial -38.73333 -72.95 P PPL CL 04 18777 41 America/Santiago 2012-01-18
-3879123 Nacimiento Nacimiento Nacimiento -37.5 -72.66667 P PPL CL 06 21220 61 America/Santiago 2012-01-18
-3879200 Mulchén Mulchen Mul'chen,Mulchen,Mulchén,Мульчен -37.71667 -72.23333 P PPL CL 06 22170 139 America/Santiago 2012-01-18
-3879429 Monte Patria Monte Patria Monte Patria -30.69194 -70.94667 P PPL CL 07 13945 460 America/Santiago 2012-02-02
-3879627 Molina Molina Molina,Молина -35.11667 -71.28333 P PPL CL 11 28775 253 America/Santiago 2012-01-18
-3880107 Melipilla Melipilla Melipil'ja,Melipilla,Mellipilla,Мелипилья -33.7 -71.21667 P PPL CL 12 63100 187 America/Santiago 2012-01-18
-3881102 Machalí Machali -34.18333 -70.66667 P PPL CL 08 27595 555 America/Santiago 2006-01-17
-3881276 Lota Lota Lot,Lota,Лот -37.08333 -73.16667 P PPL CL 06 49763 49 America/Santiago 2012-01-18
-3882428 Los Ángeles Los Angeles Angeles,Ciudad de Los Anjeles,Los Angeles,Los Anjeles,Los Ángeles,Los-Andzheles,Лос-Анджелес -37.46667 -72.35 P PPL CL 06 125430 137 America/Santiago 2012-01-18
-3882434 Los Andes Los Andes Andes,Ciudad Los Andes,Los-And,Лос-Анд -32.83369 -70.59827 P PPL CL 01 56859 833 America/Santiago 2010-01-29
-3882559 Longaví Longavi Longavi,Longaví -35.96667 -71.68333 P PPL CL 11 6325 154 America/Santiago 2012-01-18
-3882582 Loncoche Loncoche Loncoche -39.36667 -72.63333 P PPL CL 04 15590 113 America/Santiago 2012-02-02
-3883035 Llaillay Llaillay Llaillai,Llaillay,Llay-Llay -32.85 -70.96667 P PPL CL 01 16646 386 America/Santiago 2012-01-18
-3883167 Linares Linares Linares,Линарес -35.85 -71.6 P PPL CL 11 69535 161 America/Santiago 2012-01-18
-3883214 Limache Limache Limache -33.01667 -71.26667 P PPL CL 01 35876 107 America/Santiago 2012-01-18
-3883457 Lebu Lebu Ciudad de Lebu,Lebu,Puerto Lebu -37.61667 -73.65 P PPL CL 06 22345 127 America/Santiago 2012-01-18
-3883615 Lautaro Lautaro Lautaro -38.51667 -72.45 P PPL CL 04 21579 254 America/Santiago 2012-02-02
-3883629 La Unión La Union Ciudad La Union,La Union,La Unión -40.28333 -73.08333 P PPL CL 14 26298 34 America/Santiago 2012-01-18
-3884373 La Serena La Serena La Serena,La-Serena,Ла-Серена -29.90778 -71.25417 P PPLA CL 07 154521 22 America/Santiago 2012-01-18
-3885273 Lampa Lampa Lampa -33.28333 -70.9 P PPL CL 12 29250 766 America/Santiago 2012-01-18
-3885456 La Ligua La Ligua -32.45242 -71.23106 P PPL CL 01 24857 78 America/Santiago 2007-09-16
-3885509 La Laja La Laja La Laja,Laja -37.26667 -72.7 P PPL CL 06 16550 110 America/Santiago 2012-01-18
-3887127 Iquique Iquique Ikike,Iquique,ikike,Ікіке,Икике,イキケ -20.22083 -70.14306 P PPLA CL 15 227499 25 America/Santiago 2012-01-18
-3887344 Illapel Illapel Illapel -31.63083 -71.16528 P PPL CL 07 22816 320 America/Santiago 2012-01-18
-3888214 Hacienda La Calera Hacienda La Calera Calera,Hacienda La Calera -32.78333 -71.21667 P PPL CL 01 49106 203 America/Santiago 2012-01-18
-3888749 Graneros Graneros Graneros -34.06667 -70.73333 P PPL CL 08 23301 477 America/Santiago 2012-02-02
-3889223 Futaleufú Futaleufu Futalelfu,Futalelfú,Futaleufu,Futaleufú -43.1675 -71.84833 P PPL CL CL 14 1826 1085 America/Santiago 2012-01-18
-3889263 Frutillar Frutillar Frutil'jar,Фрутильяр -41.12676 -73.04372 P PPL CL 14 16939 150 America/Santiago 2010-03-04
-3889322 Freire Freire Freire -38.95 -72.63333 P PPL CL 04 7813 116 America/Santiago 2012-02-02
-3890949 El Monte El Monte El Monte -33.68333 -71.01667 P PPL CL 12 23090 278 America/Santiago 2012-02-02
-3892454 Diego de Almagro Diego de Almagro Diego de Almagro -26.36667 -70.05 P PPL CL 05 18137 1020 America/Santiago 2012-02-02
-3892870 Curicó Curico Curico,Curicó -34.98333 -71.23333 P PPL CL 11 102438 235 America/Santiago 2012-01-18
-3892892 Curanilahue Curanilahue Curanilahue -37.46667 -73.35 P PPL CL 06 30611 206 America/Santiago 2012-02-02
-3893516 Corral Corral Ciudad de Corral,Puerto Corral -39.88972 -73.42747 P PPL CL CL 14 3500 0 32 America/Santiago 2007-04-19
-3893532 Coronel Coronel Coronel,Koronel',Коронель -37.01667 -73.13333 P PPL CL 06 92940 49 America/Santiago 2012-01-18
-3893629 Coquimbo Coquimbo Ciudad de Coquimbo,Coquimbo,Kokimbo,Кокимбо -29.95333 -71.34361 P PPL CL 07 161317 86 America/Santiago 2012-01-18
-3893656 Copiapó Copiapo Copiapo,Copiapó -27.36667 -70.33333 P PPLA CL 05 129280 387 America/Santiago 2012-01-18
-3893726 Constitución Constitucion Constitucion,Constitución -35.33333 -72.41667 P PPL CL 11 37917 19 America/Santiago 2012-01-18
-3893894 Concepción Concepcion Ciudad de Concepcion,Concepcion,Concepción,Konseps'on,Консепсьон -36.82699 -73.04977 P PPLA CL 06 215413 36 America/Santiago 2008-06-17
-3894177 Collipulli Collipulli Collipulli -37.95 -72.43333 P PPL CL 04 16392 263 America/Santiago 2012-01-18
-3894406 Coihueco Coihueco -36.61667 -71.83333 P PPL CL 06 7346 248 America/Santiago 2006-01-17
-3894426 Coihaique Coihaique Coyhaique,Kojajke,Койайке -45.57524 -72.06619 P PPLA CL 02 45787 299 America/Santiago 2010-01-29
-3894483 Cochrane Cochrane -47.2557 -72.5695 P PPL CL 02 2867 144 America/Santiago 2010-05-25
-3894871 Chonchi Chonchi Chonch,Chonchi,Trongchue,Trongchü -42.61278 -73.80917 P PPL CL CL 14 12572 92 America/Santiago 2012-01-18
-3895061 Chimbarongo Chimbarongo Chimbarongo -34.7 -71.05 P PPL CL 08 17356 308 America/Santiago 2012-01-18
-3895088 Chillán Chillan -36.60664 -72.10344 P PPL CL 06 150396 132 America/Santiago 2009-11-17
-3895113 Chile Chico Chile Chico Chile Chico -46.55 -71.73333 P PPL CL 02 2500 402 America/Santiago 2012-01-18
-3895138 Chiguayante Chiguayante Chiguayante -36.91667 -73.01667 P PPL CL 06 82545 164 America/Santiago 2012-01-18
-3895642 Chaitén Chaiten -42.91596 -72.70632 P PPL CL 14 4065 17 America/Santiago 2010-05-25
-3896105 Cauquenes Cauquenes Cauquenes,De Cauquenes,Kaukenes,Каукенес -35.9671 -72.32248 P PPL CL 11 31362 172 America/Santiago 2012-01-30
-3896218 Castro Castro Kastro,Кастро -42.4721 -73.77319 P PPL CL 14 29926 81 America/Santiago 2010-01-29
-3896433 Cartagena Cartagena Cartagena,Cartajena -33.55417 -71.60528 P PPL CL CL 01 16875 77 America/Santiago 2012-01-18
-3896774 Carahue Carahue Carahue,Carahuo -38.7 -73.16667 P PPL CL 04 11875 24 America/Santiago 2012-01-18
-3896924 Cañete Canete Canete,Cañete -37.8 -73.4 P PPL CL 06 20158 81 America/Santiago 2012-01-18
-3897334 Calbuco Calbuco Calbuco,Kallfueko,Kallfüko -41.76801 -73.1273 P PPL CL 14 12490 10 America/Santiago 2012-01-18
-3897347 Calama Calama Calama,Kalama,Калама -22.46667 -68.93333 P PPL CL 03 143084 2255 America/Santiago 2012-01-18
-3897557 Cabrero Cabrero Cabrero,Carrero -37.03333 -72.4 P PPL CL 06 18327 133 America/Santiago 2012-01-18
-3897724 Bulnes Bulnes -36.74232 -72.29854 P PPL CL 06 12715 96 America/Santiago 2009-11-17
-3897774 Buin Buin Buin,Буин -33.73333 -70.75 P PPL CL 12 55441 477 America/Santiago 2012-01-18
-3899361 Arica Arica Arica,Arika,Арика,אריקה -18.475 -70.30417 P PPLA CL 16 151 185999 35 America/Santiago 2012-01-30
-3899462 Arauco Arauco -37.2463 -73.31752 P PPL CL 06 24659 13 America/Santiago 2007-09-16
-3899539 Antofagasta Antofagasta Antafagasta,Antofagasta,antofagasuta,antopagaseuta,Антафагаста,Антофагаста,アントファガスタ,안토파가스타 -23.65 -70.4 P PPLA CL 03 309832 14 America/Santiago 2012-01-18
-3899629 Angol Angol Angol,Angol',Анголь -37.8 -72.71667 P PPL CL 04 44856 74 America/Santiago 2012-01-18
-3899695 Ancud Ancud Ancud,Ankun,Ankuñ -41.86972 -73.82028 P PPL CL 14 28020 39 America/Santiago 2012-01-18
-3950166 Puerto Chacabuco Puerto Chacabuco -45.46667 -72.81667 P PPL CL 02 1243 29 America/Santiago 2010-05-25
-3969755 La Junta La Junta -43.96028 -72.44028 P PPL CL 02 1200 35 America/Santiago 2010-05-25
-4030754 Hanga Roa Hanga Roa Hanga Roa,Khanga-Roa,hang-galoa,hanja rwa,Ханга-Роа,هانجا روا,항가로아 -27.15 -109.43333 P PPL CL 01 3304 12 Pacific/Easter 2012-01-18
-6458705 Las Gaviotas Las Gaviotas -39.86653 -73.18834 P PPL CL 14 1500 5 11 America/Santiago 2012-02-22
-6458708 Las Animas Las Animas -39.80867 -73.21821 P PPL CL 14 30000 10 10 America/Santiago 2007-04-15
-6930873 Остров Пасхи Ostrov Paskhi Ostrov Paskhi,Rapa Nui,Остров Пасхи -27.11124 -109.35053 P PPL CL 4000 211 Pacific/Easter 2009-02-24
-7281017 La Pintana La Pintana La Pintana -33.58331 -70.63419 P PPL CL 12 201178 630 America/Santiago 2010-03-12
-7281020 Lo Prado Lo Prado Lo Prado -33.4443 -70.72552 P PPL CL 12 104316 508 509 America/Santiago 2010-03-12
-7874740 Villa Presidente Frei, Ñuñoa, Santiago, Chile Villa Presidente Frei, Nunoa, Santiago, Chile -33.46069 -70.58024 P PPLX CL 12 15000 622 606 America/Santiago 2011-07-09
-2220849 Yoko Yoko Joko,Yoko 5.53333 12.31667 P PPL CM 11 5269 992 Africa/Douala 2012-01-16
-2220853 Yokadouma Yokadouma Yokadouma,Youkadouma 3.51667 15.05 P PPL CM 04 13287 523 Africa/Douala 2012-01-16
-2220957 Yaoundé Yaounde Giaounte,Jaunde,Jaundė,Jaúnde,Yaounde,Yaoundé,Yaunde,Yaundé,ya wen de,yaunde,Γιαουντέ,Јаунде,Яунде,Յաունդե,יאונדה,ያዉንዴ,ヤウンデ,雅温得,야운데 3.86667 11.51667 P PPLC CM 11 1299369 726 Africa/Douala 2012-01-16
-2221030 Yagoua Yagoua Jagua,Jágua,Yagoua,Yagua 10.34107 15.23288 P PPL CM 12 80235 336 Africa/Douala 2012-01-16
-2221046 Yabassi Yabassi Jabassi,Yabasi,Yabassi,Yabazi 4.45697 9.96822 P PPL CM 05 7560 49 Africa/Douala 2012-01-16
-2221053 Wum Wum Wum 6.38333 10.06667 P PPL CM 07 68836 1055 Africa/Douala 2012-01-16
-2221394 Tonga Tonga Lagosdorf,Tonga,Tonga's,Tonga’s 4.96667 10.7 P PPL CM 08 16036 809 Africa/Douala 2012-01-16
-2221504 Tiko Tiko Tiko 4.0745 9.3699 P PPL CM 09 55914 23 Africa/Douala 2012-01-16
-2221513 Tignère Tignere Tignere,Tignère,Tingere,Tingeré,Tinguere,Tinguéré 7.36667 12.65 P PPL CM 10 4353 1104 Africa/Douala 2012-01-16
-2221530 Tibati Tibati Tibati 6.46667 12.63333 P PPL CM 10 35589 860 Africa/Douala 2012-01-16
-2221607 Tcholliré Tchollire Cholire,Choliré,Chollire,Djolere,Djoléré,Jolere,Tcholere,Tcholire,Tcholiré,Tchollire,Tcholliré,Tcholéré,Tscholere 8.4022 14.1698 P PPL CM 13 23187 382 Africa/Douala 2012-01-16
-2222230 Sangmélima Sangmelima Sangmelima,Sangmelina,Sangmélima,Сангмелима 2.93333 11.98333 P PPL CM 14 54251 675 Africa/Douala 2012-01-16
-2222366 Saa Saa Saa 4.36667 11.45 P PPL CM 11 5727 512 Africa/Douala 2012-01-16
-2222439 Rey Bouba Rey Bouba Rei Buba,Rei-Bouba,Rey Bouba,Reï-Bouba 8.6724 14.1786 P PPL CM 13 11454 235 Africa/Douala 2012-01-16
-2222539 Poli Poli 8.48333 13.25 P PPL CM 13 5727 461 Africa/Douala 2006-01-17
-2222568 Pitoa Pitoa Piloa,Pitoa,Pitowa 9.38333 13.53333 P PPL CM 13 11454 207 Africa/Douala 2012-01-16
-2222623 Penja Penja Penja 4.63911 9.67987 P PPL CM 05 28406 148 Africa/Douala 2012-01-16
-2223162 Ombésa Ombesa Ombesa,Ombessa,Ombésa 4.6 11.25 P PPL CM 11 1833 459 Africa/Douala 2012-01-16
-2223216 Okola Okola 4.01667 11.38333 P PPL CM 11 5390 652 Africa/Douala 2011-03-06
-2223226 Okoa Okoa Okoa,Scho,So,Soa 3.98333 11.6 P PPL CM 11 3358 656 Africa/Douala 2012-01-16
-2223293 Obala Obala Obala 4.16667 11.53333 P PPL CM 11 30012 542 Africa/Douala 2012-01-16
-2223421 Ntui Ntui N'Dui,Ntui,Ntwi,N’Dui 4.45 11.63333 P PPL CM 11 6185 526 Africa/Douala 2012-01-16
-2223734 Nkoteng Nkoteng Nkoteng 4.51667 12.03333 P PPL CM 11 50334 583 Africa/Douala 2012-01-16
-2223763 Nkongsamba Nkongsamba Nkongsamba,Nkongsomba,Нконгсамба 4.9547 9.9404 P PPL CM 05 117063 844 Africa/Douala 2012-01-16
-2224212 Njinikom Njinikom Njinikom,Njnikom 6.23333 10.28333 P PPL CM 07 8247 1315 Africa/Douala 2012-01-16
-2224413 Nguti Nguti 5.3299 9.4185 P PPL CM 09 5498 228 Africa/Douala 2006-01-17
-2224584 Ngoro Ngoro Janjo,Janjō,Ngoro,Ngorro 4.95 11.38333 P PPL CM 11 2305 501 Africa/Douala 2012-01-16
-2224641 Ngomedzap Ngomedzap Ngomedzap 3.25 11.2 P PPL CM 11 4284 701 Africa/Douala 2012-01-16
-2224827 Ngaoundéré Ngaoundere Ngaoundere,Ngaoundéré,Ngaundere 7.31667 13.58333 P PPLA CM 10 231357 1111 Africa/Douala 2012-01-16
-2224863 Ngambé Ngambe Babimbi,Ngambe,Ngambé,Nganbe,Nganbé 4.23333 10.61667 P PPL CM 05 6414 546 Africa/Douala 2012-01-16
-2225263 Ndikiniméki Ndikinimeki Ndikinemeki,Ndikinimeki,Ndikiniméki 4.76667 10.83333 P PPL CM 11 8247 803 Africa/Douala 2012-01-16
-2225325 Alte Fakt Delele Alte Fakt Delele Alte Fakt Delele,Delele,Delelé,Ndelele,Ndélélé,Vieux-Delele,Vieux-Délélé 4.03333 14.93333 P PPL CM 04 5040 592 Africa/Douala 2012-01-16
-2225457 Nanga Eboko Nanga Eboko Nanga Eboko 4.68333 12.36667 P PPL CM 11 29909 615 Africa/Douala 2012-01-16
-2225703 Mvangué Mvangue 2.96667 11.51667 P PPL CM 14 1908 697 Africa/Douala 2011-03-06
-2225726 Muyuka Muyuka Mouyouka,Muyuka 4.2898 9.4103 P PPL CM 09 31384 41 Africa/Douala 2012-01-16
-2225728 Mutengene Mutengene 4.0913 9.3144 P PPL CM 09 47478 241 Africa/Douala 2006-01-17
-2225745 Mundemba Mundemba Mundemba,Mundenba,Ndian 4.9479 8.8724 P PPL CM 09 11912 111 Africa/Douala 2012-01-16
-2225940 Mouanko Mouanko Mouangko,Mouanko,Muankoo 3.63972 9.77694 P PPL CM 05 1604 13 Africa/Douala 2012-01-16
-2225991 Mora Mora Mora,More,Море 11.04611 14.14011 P PPL CM 12 55216 460 Africa/Douala 2012-01-16
-2226275 Mokolo Mokolo Mokolo 10.73978 13.80188 P PPL CM 12 275239 798 Africa/Douala 2012-01-16
-2226441 Mme-Bafumen Mme-Bafumen Me,Mme,Mme-Bafumen 6.33333 10.23333 P PPL CM 07 6149 1403 Africa/Douala 2012-01-16
-2226515 Minta Minta 4.58333 12.8 P PPL CM 11 4934 667 Africa/Douala 2006-01-17
-2226641 Mindif Mindif Mendif,Mindif 10.39757 14.43626 P PPL CM 12 10538 396 Africa/Douala 2012-01-16
-2227230 Melong Melong 5.1218 9.96143 P PPL CM 05 37086 792 Africa/Douala 2006-01-17
-2227402 Meïganga Meiganga Meiganda,Meiganga,Mejgange,Meïganga,Мейганге 6.51667 14.3 P PPL CM 10 80100 970 Africa/Douala 2012-01-16
-2227613 Mbouda Mbouda Mbouda 5.62578 10.25517 P PPL CM 08 111320 1409 Africa/Douala 2012-01-16
-2227853 Mbengwi Mbengwi Mbengwi 6.01667 10 P PPL CM 07 9734 1222 Africa/Douala 2012-01-16
-2227980 Mbankomo Mbankomo Mbankomo 3.78333 11.38333 P PPL CM 11 2387 732 Africa/Douala 2012-01-16
-2228005 Mbanga Mbanga M'Bange,Mbanga,M’Bangé 4.5016 9.5671 P PPL CM 05 42590 115 Africa/Douala 2012-01-16
-2228019 Mbang Mbang 4.58333 13.33333 P PPL CM 04 1237 683 Africa/Douala 2011-03-06
-2228028 Mbandjok Mbandjok Mbandjock,Mbandjok 4.45 11.9 P PPL CM 11 26947 548 Africa/Douala 2012-01-16
-2228079 Mbalmayo Mbalmayo Mbal'majo,Mbalmajo,Mbalmayo,Мбальмайо 3.51667 11.5 P PPL CM 11 80206 663 Africa/Douala 2012-01-16
-2228373 Maroua Maroua Maroua,Marua,Маруа 10.59095 14.31592 P PPLA CM 12 319941 406 Africa/Douala 2012-01-16
-2228499 Manjo Manjo Manjo 4.8428 9.8217 P PPL CM 05 37661 526 Africa/Douala 2012-01-16
-2228675 Mamfe Mamfe Mamfe 5.754 9.3123 P PPL CM 09 19472 93 Africa/Douala 2012-01-16
-2228881 Makary Makary Mafate,Mafaté,Mafete,Makari,Makary 12.5717 14.46662 P PPL CM 12 7331 290 Africa/Douala 2012-01-16
-2229152 Loum Loum Loum,Lum,Лум 4.7182 9.7351 P PPL CM 05 177429 235 Africa/Douala 2012-01-16
-2229267 Lolodorf Lolodorf Lelodorf,Lolodorf,Lolodrof 3.23333 10.73333 P PPL CM 14 22252 467 Africa/Douala 2012-01-16
-2229411 Limbe Limbe Limbe,Limbé,Victoria,Лимбе 4.0242 9.2149 P PPL CM 09 72106 69 Africa/Douala 2012-01-16
-2229681 Lagdo Lagdo Lagdo 9.05 13.73333 P PPL CM 13 24596 290 Africa/Douala 2012-01-16
-2229748 Kumbo Kumbo Kumbo 6.2 10.66667 P PPL CM 07 53970 1687 Africa/Douala 2012-01-16
-2229752 Kumba Kumba Kumba,Kumboj,Кумбой 4.6363 9.4469 P PPL CM 09 144413 244 Africa/Douala 2012-01-16
-2229761 Kribi Kribi Kribi,Криби 2.95 9.91667 P PPL CM 14 55224 24 Africa/Douala 2012-01-16
-2229780 Koza Koza 10.87079 13.87855 P PPL CM 12 3665 502 Africa/Douala 2006-01-17
-2229798 Kousséri Kousseri Fort Fureau,Fort-Foureau,Kousseri,Kousséri,Kusseri 12.07689 15.03063 P PPL CM 12 435547 300 Africa/Douala 2012-01-16
-2230028 Kontcha Kontcha Koncha,Kontcha,Kontscha 7.96667 12.23333 P PPL CM 10 8018 425 Africa/Douala 2012-01-16
-2230285 Bankim Bankim Bamkim,Bamkin,Bankin,Kimi,Nga's 6.08303 11.4905 P PPL CM 10 5727 731 Africa/Douala 2007-12-27
-2230599 Kaélé Kaele 10.10917 14.45083 P PPL CM 12 25199 373 Africa/Douala 2006-01-17
-2230641 Jakiri Jakiri Jakiri 6.1 10.65 P PPL CM 07 5269 1609 Africa/Douala 2012-01-16
-2230876 Guider Guider Gider,Guidder,Guider 9.93417 13.94861 P PPL CM 13 84647 348 Africa/Douala 2012-01-16
-2231319 Garoua Boulaï Garoua Boulai 5.88333 14.55 P PPL CM 04 46615 1034 Africa/Douala 2006-01-17
-2231320 Garoua Garoua Garoua,Garua,Гаруа 9.3 13.4 P PPLA CM 13 436899 195 Africa/Douala 2012-01-16
-2231482 Fundong Fundong Fundong 6.25 10.26667 P PPL CM 07 43509 1610 Africa/Douala 2012-01-16
-2231504 Foumbot Foumbot Foumbat,Foumbot 5.50787 10.6356 P PPL CM 08 84065 1057 Africa/Douala 2012-01-16
-2231506 Foumban Foumban Foumbam,Foumban,Fumban 5.7291 10.90011 P PPL CM 08 92673 1163 Africa/Douala 2012-01-16
-2231564 Fontem Fontem 5.4685 9.8818 P PPL CM 09 42689 902 Africa/Douala 2006-01-17
-2231775 Évodoula Evodoula Evodoula,Évodoula 4.08333 11.2 P PPL CM 11 1521 562 Africa/Douala 2012-01-16
-2231851 Essé Esse 4.1 11.9 P PPL CM 11 3803 640 Africa/Douala 2006-01-17
-2231881 Eséka Eseka Eseka,Eséka 3.65 10.76667 P PPL CM 11 22221 247 Africa/Douala 2012-01-16
-2232239 Edéa Edea Edea,Edéa,Ehdea,Édéa,Эдеа 3.8 10.13333 P PPL CM 05 203149 27 Africa/Douala 2012-01-16
-2232283 Ébolowa Ebolowa Ebolova,Ebolowa,Ébolowa 2.9 11.15 P PPLA CM 14 87875 583 Africa/Douala 2012-01-16
-2232444 Dschang Dschang Chang,Dchang,Djang,Dschang,Tchang 5.44559 10.055 P PPL CM 08 96112 1355 Africa/Douala 2012-01-16
-2232497 Doumé Doume Doume,Doumé,Dume,Dume-Station 4.23333 13.45 P PPL CM 04 5581 630 Africa/Douala 2012-01-16
-2232593 Douala Douala Douala,Doula,Duala,do~uara,du a la,Дуала,ドゥアラ,杜阿拉 4.04827 9.70428 P PPLA CM 05 1338082 19 Africa/Douala 2011-11-01
-2232774 Djohong Djohong Djohong,Doumba 6.83333 14.7 P PPL CM 10 4813 1271 Africa/Douala 2012-01-16
-2232997 Dizangué Dizangue Dizangue,Dizangué,Dizanque,Dizanqué 3.76667 9.98333 P PPL CM 05 19243 61 Africa/Douala 2012-01-16
-2233056 Dimako Dimako Dimako 4.38333 13.56667 P PPL CM 04 8476 649 Africa/Douala 2012-01-16
-2233100 Dibombari Dibombari Dibombari 4.1787 9.6561 P PPL CM 05 4811 57 Africa/Douala 2012-01-16
-2233118 Diang Diang 4.25 10.01667 P PPL CM 05 2062 56 Africa/Douala 2011-03-06
-2233410 Buea Buea Buea,Buéa 4.1527 9.241 P PPLA CM 09 47300 870 Africa/Douala 2012-01-16
-2233704 Bonabéri Bonaberi Bonaberi,Bonabéri,Boniberi,Bouaberi 4.0779 9.6759 P PPL CM 05 8091 13 Africa/Douala 2012-01-16
-2233805 Bogo Bogo 10.7336 14.60928 P PPL CM 12 16952 343 Africa/Douala 2006-01-17
-2234339 Bétaré Oya Betare Oya Betare,Betare Oya,Betaye-Oya,Bétaré Oya 5.6 14.08333 P PPL CM 04 11866 768 Africa/Douala 2012-01-16
-2234359 Bertoua Bertoua Bertoua,Bertua,Gamane,Бертуа 4.58333 13.68333 P PPLA CM 04 218111 665 Africa/Douala 2012-01-16
-2234455 Belo Belo Bello,Belo 6.13333 10.25 P PPL CM 07 8705 1138 Africa/Douala 2012-01-16
-2234520 Bélel Belel Belel,Bélel 7.05 14.43333 P PPL CM 10 6831 1448 Africa/Douala 2012-01-16
-2234536 Bélabo Belabo Belabo,Bélabo,Белабо 4.93333 13.3 P PPL CM 04 22553 614 Africa/Douala 2012-01-16
-2234545 Bekondo Bekondo Bekondo,Boa Bekondo 4.6819 9.3214 P PPL CM 09 7331 382 Africa/Douala 2012-01-16
-2234635 Bazou Bazou Bazou 5.05695 10.46978 P PPL CM 08 13058 1255 Africa/Douala 2012-01-16
-2234663 Batouri Batouri Batouri,Baturi 4.43333 14.36667 P PPL CM 04 43821 631 Africa/Douala 2012-01-16
-2234684 Batibo Batibo 5.8358 9.8553 P PPL CM 07 9163 1090 Africa/Douala 2006-01-17
-2234794 Banyo Banyo Banjo,Banyo 6.75 11.81667 P PPL CM 10 40798 1077 Africa/Douala 2012-01-16
-2234803 Bansoa Bansoa Bansoa 5.44718 10.31514 P PPL CM 08 7560 1499 Africa/Douala 2012-01-16
-2234842 Ngou Ngou Bangou,Banjou,Ngou 5.1959 10.38441 P PPL CM 08 7560 1426 Africa/Douala 2012-01-16
-2234865 Bangangté Bangangte Bangangte,Bangangté,Bangante,Banganté 5.14091 10.51975 P PPL CM 08 65385 1353 Africa/Douala 2012-01-16
-2234904 Bandjoun Bandjoun Bandjoun 5.37878 10.41816 P PPL CM 08 6872 1530 Africa/Douala 2012-01-16
-2234936 Bana Bana Bana 5.1481 10.2762 P PPL CM 08 5727 1418 Africa/Douala 2012-01-16
-2234941 Bamusso Bamusso Bamuso,Bamusso 4.4591 8.9027 P PPL CM 09 24741 8 Africa/Douala 2012-01-16
-2234968 Bamendjou Bamendjou Bamendjou 5.38875 10.33161 P PPL CM 08 6643 1594 Africa/Douala 2012-01-16
-2234974 Bamenda Bamenda Bamenda,Bamendy,Баменды 5.95266 10.15824 P PPLA CM 07 393835 1266 Africa/Douala 2012-01-16
-2235029 Bali Bali Bali,Бали 5.88724 10.01248 P PPL CM 07 72606 1352 Africa/Douala 2012-01-16
-2235189 Bafoussam Bafoussam Bafousam,Bafoussam,Bafusam,Bafussama,Befoussam,Бафуссама 5.47366 10.41786 P PPLA CM 08 290768 1478 Africa/Douala 2012-01-16
-2235194 Bafia Bafia Bafia,Bafia Ngitakuba,Bafiā Ngitakuba 4.75 11.23333 P PPL CM 11 69270 480 Africa/Douala 2012-01-16
-2235196 Bafang Bafang Bafang 5.15625 10.17882 P PPL CM 08 80688 1179 Africa/Douala 2012-01-16
-2235293 Babanki Babanki Babanki,Big Babanki 6.11667 10.25 P PPL CM 07 9851 1156 Africa/Douala 2012-01-16
-2235660 Ambam Ambam Ambam 2.38333 11.28333 P PPL CM 14 8476 570 Africa/Douala 2012-01-16
-2235776 Akonolinga Akonolinga Akomolinga,Akonolinga 3.76667 12.25 P PPL CM 11 17181 643 Africa/Douala 2012-01-16
-2235780 Akono Akono 3.5 11.33333 P PPL CM 11 3821 678 Africa/Douala 2011-03-06
-2235814 Akom II Akom II Akom,Akom II 2.78333 10.56667 P PPL CM 14 9709 507 Africa/Douala 2012-01-16
-2236053 Abong Mbang Abong Mbang Abong Mbang 3.98333 13.18333 P PPL CM 04 14661 694 Africa/Douala 2012-01-16
-2594800 Idenao Idenao 4.2475 9.00472 P PPL CM 09 17800 80 Africa/Douala 2006-01-17
-2595172 Ndom Ndom 4.4978 9.5628 P PPL CM 05 5498 123 Africa/Douala 2006-01-17
-6620518 Somié Somie Ndeba,Somie,Tchokmon 6.45843 11.43299 P PPL CM 10 2000 800 771 Africa/Douala 2007-12-27
-1279423 Zongzhai Zongzhai Tsung-chai,Zongzhai,Zongzhai Zhen,zong zhai,zong zhai zhen,总寨,总寨镇 39.61667 98.6 P PPLA4 CN 15 0 1538 Asia/Urumqi 2012-01-18
-1279429 Zongga Zongga Chi-lung,Gyirong,Jilong Xian,Jongka Dzong,Jongkha Dzong,Jung-ha,Jung-ha-tsung,Jung-ka,Jung-ka-tsung,Songka-dzong,Tsung-ka,Zongga,ji long xian,zong ga,吉隆县,宗嘎 29 85.25 P PPLA3 CN 14 0 5622 Asia/Kashgar 2012-01-18
-1279435 Zito Zito Lo-lung,Luolong Xian,Tzu-t'o,Tzu-t’o,Zito,Zituo,luo long xian,zi tuo,孜托,洛隆县 30.78333 95.88333 P PPLA3 CN 14 0 4691 Asia/Chongqing 2012-01-18
-1279472 Zhedao Zhedao Che-tao,Che-tao-chen,Liang-ho,Lianghe,Zhedao,zhe dao,遮岛 24.81934 98.27627 P PPLA3 CN 29 0 1202 Asia/Chongqing 2012-01-18
-1279485 Zhangfeng Zhangfeng Chang-Feng-Cheh,Chang-feng,Chang-feng-chieh,Changfengkai,Hsanghawng,Lung-ch'uan,Lung-ch’uan,Zhangfeng,zhang feng,章凤 24.22085 97.78683 P PPLA3 CN 29 0 936 Asia/Chongqing 2012-01-18
-1279489 Zhamog Zhamog Bomi,Bomi Xian,Bowo,Cha-mu,Po-mi,Zhamo,Zhamog,Zhamu,bo mi xian,zha mu,扎木,波密县 29.83333 95.75 P PPLA3 CN 14 0 3472 Asia/Chongqing 2012-01-18
-1279491 Zham Zham Zham,Zhangmu,Zhangmu Zhen,zhang mu,zhang mu zhen,樟木,樟木镇 27.98333 85.98333 P PPLA4 CN 14 0 2496 Asia/Kashgar 2012-01-18
-1279497 Zhadong Zhadong Cha-tung-tsung,Chung-pa,T'e-la-to-mu,T'e-la-to-mu-tsung,Tradom,Tradum,T’e-la-to-mu,T’e-la-to-mu-tsung,Zhabdun,Zhabdün,Zhadong,Zhadun,Zhadün,Zhongba,Zhongba Xian,zha dong,zhong ba xian,仲巴县,扎东 29.65 84.16667 P PPLA3 CN 14 0 4559 Asia/Kashgar 2012-01-18
-1279531 Zaindainxoi Zaindainxoi So-hsien,So-k'o-tsung-ch'eng,So-k’o-tsung-ch’eng,So-tsung,Sog Gomba,Sogxian,Sok Gomba,Sok-gompa,Sugsundong Gompa,Sugsundong Gömpa,Suo Xian,T'u-sung-tung-kung Miao,T’u-sung-tung-kung Miao,Ya-la,Zaindainxoi,Zandanxue,suo xian,zan dan xue,索县,赞丹学 31.85 93.66667 P PPLA3 CN 14 0 4134 Asia/Chongqing 2012-01-18
-1279548 Yumendong Zhen Yumendong Zhen Yu-men-tung-chan,Yumen Dong Zhan,Yumendong Zhen,Yü-men-tung-chan,yu men dong zhan,yu men dong zhen,玉门东站,玉门东镇 39.8 97.9 P PPLA4 CN 15 0 1907 Asia/Urumqi 2012-01-18
-1279553 Yuhu Yuhu Erh-yuan,Eryuan,Lan-ch'iung,Lan-ch’iung,Lang-ch'iung,Lang-ch’iung,Langkiunghsien,Lankiung,Lankiunghsien,Yu-hu-chen,Yuhu,Yü-hu-chen,yu hu,玉湖 26.10679 99.98292 P PPLA3 CN 29 0 2054 Asia/Chongqing 2012-01-18
-1279592 Yanduo Yanduo Ch'a-ya,Ch'a-ya-hsien,Chagyab Co,Chaya Xian,Ch’a-ya,Ch’a-ya-hsien,Ma-kung,Yanduo,Yen-tai-t'ang,Yen-tai-t’ang,Yen-to,Yendum,Yenmdo,Yêndum,Zhag'yab,Zhag’yab,cha ya xian,yan duo,察雅县,烟多 30.65 97.68333 P PPLA3 CN 14 0 3554 Asia/Chongqing 2012-01-18
-1279690 Xitieshan Xitieshan Hsi-t'ieh-shan,Hsi-t’ieh-shan,Xitieshan,Xitieshan Zhen,xi tie shan,xi tie shan zhen,锡铁山,锡铁山镇 37.28333 95.51667 P PPLA4 CN 06 0 2972 Asia/Urumqi 2012-01-18
-1279715 Rikaze Rikaze Gigatze,Hsi-ko-tzu,Hsi-ko-tzü,Jih-k'a-tse,Jih-k'e-tze,Jih-k'o-tse,Jih-k’a-tse,Jih-k’e-tze,Jih-k’o-tse,Rikaze,Sh'i-ka-tse,Shigadze,Shigatse,Shigatze,Sh’i-ka-tse,Siketze,Xigaze,Xigazê,Zhikatse,ri ka ze,ri ke ze shi,shigatsu~e shi,sigache,Шигадзе,シガツェ市,日喀则,日喀则市,시가체 29.25 88.88333 P PPLA2 CN 14 80000 3847 Asia/Urumqi 2012-01-18
-1279716 Xidong Xidong Xidong,Xidong Zhen,xi dong,xi dong zhen,西洞,西洞镇 39.6 98.4 P PPLA4 CN 15 0 1808 Asia/Urumqi 2012-01-18
-1279746 Xiexiong Xiexiong Jiangkaxi,Xexung,Xiexiong,Xiexiong Xiang,Xêxung,jiang ka xi,xie xiong,xie xiong xiang,协雄,协雄乡,江卡西 31.41 95.62 P PPLA4 CN 14 0 3801 Asia/Urumqi 2012-01-18
-1279749 Xêgar Xegar Dingri Xian,Hsieh-ka-erh,Hsieh-ka-erh-tsung,Hsieh-ko-erh,Shekar Dzong,Ting-jih,Tingri,Xegar,Xiega'er,Xiega’er,Xêgar,ding ri xian,xie ga er,协嘎尔,定日县 28.63333 87.08333 P PPLA3 CN 14 0 4476 Asia/Kashgar 2012-01-18
-1279754 Xarsingma Xarsingma Chomo,Hsia-ssu-ma,Shasima,Xarsingma,Xiasima,Ya-tung,Yadong,Yadong Xian,Zhuomu Xian,xia si ma,ya dong xian,zhuo mu xian,下司马,亚东县,卓木县 27.49402 88.95296 P PPLA3 CN 14 0 3677 Asia/Chongqing 2012-01-18
-1279812 Wangda Wangda Tso-kung,Wang-ta,Wangda,Zogang,Zuogong Xian,wang da,zuo gong xian,左贡县,汪达 29.68333 97.9 P PPLA3 CN 14 0 4511 Asia/Chongqing 2012-01-18
-1279843 Tungdor Tungdor Dongduo,Mi-lin,Mi-lin-hsien,Mi-ling,Milin Xian,Tung-to,Tung-to-ts'un,Tung-to-ts’un,Tungdor,dong duo,mi lin xian,东多,米林县 29.2 94.08333 P PPLA3 CN 14 0 2952 Asia/Chongqing 2012-01-18
-1279860 Darya Boyi Darya Boyi Daliya Buyi,Daliya Buyi Xiang,Darya Boye,Darya Boyi,T'ung-ku-tzu-pa-ssu-t'e,Tongguzbasti,Tongguzi Basite,T’ung-ku-tzu-pa-ssu-t’e,da li ya bu yi,da li ya bu yi xiang,tong gu zi ba si te,Тоңгузбасти,توڭگۇزباستى,达里雅布依,达里雅布依乡,通古孜巴斯特 38.38333 82 P PPLA4 CN 13 0 1175 Asia/Kashgar 2012-01-18
-1279865 Toding Toding Cha-ta,T'o-lin,T'o-lin-ma-ssu,T'o-t'e-lin-ko-ma,Ta-ting,Toding,Toling,Tolingmath,Totling,Totling-gompa,Tuling,Tuolin,T’o-lin,T’o-lin-ma-ssu,T’o-t’e-lin-ko-ma,Zanda,Zhada Xian,tuo lin,zha da xian,托林,札达县 31.53333 79.83333 P PPLA3 CN 14 0 4036 Asia/Kashgar 2012-01-18
-1279891 Tengyue Tengyue Momein,T'eng-ch'ung-hsien,Tengchong,Tengyue,Tengyueh,Tengyüeh,T’eng-ch’ung-hsien,teng yue,腾越 24.99492 98.51276 P PPLA3 CN 29 0 1639 Asia/Chongqing 2012-01-18
-1279945 Suzhou Suzhou Chiu-ch'uan,Chiu-ch'uan-hsien,Chiu-ch'uan-shih,Chiu-ch’üan,Chiu-ch’üan-hsien,Chiu-ch’üan-shih,Jiuquan,Kiuchoan,Kiuchuan,Kiuchuan-hsien,Kiuchüan,Kiuchüan-hsien,Su-chou,Suchow,Suchzhou,Suzhou,Tsin-tsuan-tsiun,jiu quan,su zhou,Сучжоу,肃州,酒泉 39.74318 98.51736 P PPLA2 CN 15 72732 1464 Asia/Chongqing 2012-01-18
-1280003 Shiquanhe Shiquanhe Ali Diqu,Ni-k'o-li,Ni-k’o-li,Nikri,Shih-ch'uan,Shih-ch’üan,Shiquanhe,a li de qu,shi quan he,狮泉河,阿里地区 32.51667 80.06667 P PPLA2 CN 14 0 4341 Asia/Kashgar 2012-01-18
-1280004 Shimen Shimen Shih-men-chen,Shih-men-ching,Shimen,Shimenzhen,Yun-lung,Yun-lung-hsien,Yunlong,Yün-lung,Yün-lung-hsien,shi men,石门 25.89479 99.42936 P PPLA3 CN 29 0 2097 Asia/Chongqing 2012-01-18
-1280008 Dianyang Dianyang Dianyang,Shidian,Shih-tien,Shih-tien-chen,Shih-tien-chieh,Shikuan,Shiküan,dian yang,甸阳 24.70261 99.15919 P PPLA3 CN 29 0 1826 Asia/Chongqing 2012-01-18
-1280013 Shengping Shengping A-tun,A-tun-tzu,Atun-hsien,Atun-tse,Atung,Atuntze,Dong,Shengping,Te-ch'in,Te-ch'in-hsien-tsang-tsu-tzu-chih-ch'u,Te-ch'in-she-chih-chu,Te-ch’in,Te-ch’in-hsien-tsang-tsu-tzu-chih-ch’ü,Te-ch’in-she-chih-chü,Tehching,Tehtsin,sheng ping,升平 28.51097 99.01592 P PPLA3 CN 29 0 4609 Asia/Chongqing 2012-01-18
-1280031 Shangpa Shangpa Fu-kung,Fugong,Shang-p'a,Shang-p'a-chieh,Shang-p'a-hsing-cheng-shu,Shang-p'a-ts'un,Shang-p’a,Shang-p’a-chieh,Shang-p’a-hsing-cheng-shu,Shang-p’a-ts’un,Shangba,Shangpa,shang pa,上帕 26.91948 98.95158 P PPLA3 CN 29 0 2984 Asia/Chongqing 2012-01-18
-1280037 Shache Shache Shache,So-ch'e,So-ch'e-chen,So-ch'e-hsien,So-ch'e-shih,So-ch’e,So-ch’e-chen,So-ch’e-hsien,So-ch’e-shih,Yangi-shahr,Yarkand,Yarkand New City,Yarkand Yangi-shahr,Yarkant,Yarkend,Yarkent,Yeken,Yəkən,Якән,يەكەن 38.41667 77.24056 P PPL CN 13 82509 1236 Asia/Kashgar 2012-01-18
-1280048 Segong Segong Nieh-jung,Nieh-lung-tsung,Nierong Xian,Nyainrong,Se-kung,Segong,Serkang,Sêrkang,nie rong xian,se gong,聂荣县,色贡 32.21667 92.11667 P PPLA3 CN 14 0 4680 Asia/Urumqi 2012-01-18
-1280107 Sajia Sajia Sa'gya,Sa'gyaxoi,Sa-chia,Sa-chia-tsung,Sajia,Sakya,Sakya Gomba,Sakya Gompa,Sakya Gömpa,Sayka Gompa,Sa’gya,Sa’gyaxoi,sa jia,萨迦 28.91667 88.05 P PPLA3 CN 14 0 4643 Asia/Kashgar 2012-01-18
-1280116 Rutog Rutog Jih-t'u,Jih-t'u-tsung,Jih-t’u,Jih-t’u-tsung,Lo-to-k'o,Lo-to-k'o-tsung,Lo-to-k’o,Lo-to-k’o-tsung,Ritu,Rudog,Rudok,Ruthog,Rutog,ri tu,日土 33.41844 79.63919 P PPLA3 CN 14 0 4253 Asia/Kashgar 2012-01-18
-1280174 Racaka Racaka Lawuchi,Lei-to-ch'i,Lei-to-ch’i,Lei-wu-ch'i,Lei-wu-ch'i-tsung,Lei-wu-ch’i,Lei-wu-ch’i-tsung,Lei-wu-tsung,Leiwuqi Xian,Neiwutsi,Racaka,Rezhaka,Ribochhe,Riowoche,Rivoche,Riwoche,Riwoqe,Riwoqê,lei wu qi xian,re zha ka,热扎卡,类乌齐县 31.4 96.51667 P PPLA3 CN 14 0 5015 Asia/Chongqing 2012-01-18
-1280181 Quxar Quxar Ch'u-hsia,Ch’ü-hsia,La-tzu,Lazi Xian,Lhaze,Lhazê,Quxar,Quxia,T'u-chiao,T'u-lin,T’u-chiao,T’u-lin,la zi xian,qu xia,拉孜县,曲下 29.1 87.65 P PPLA3 CN 14 0 3999 Asia/Kashgar 2012-01-18
-1280194 Qümong Qumong Ju Gompa,Jumang,Nixia,Serxu,Shih-ch'u,Shih-ch'ü,Shihchi,Sêrxü,Tsa-ch'u-k'a,Tsa-ch'ü-k'a,ni xia,འཇུ་མང,尼呷 32.97771 98.09795 P PPLA3 CN CN 32 0 4183 Asia/Chongqing 2007-07-08
-1280277 Qiangqinxue Qiangqinxue Jen-pang,Jen-pang-tsung,Jen-pu,Lun-p'eng-tsung,Lun-p’eng-tsung,Qamqenxoi,Qamqênxoi,Qiangqinxue,Renbu Xian,Rinphung Dzong,Rinpung Dzong,Rinpung-dsong,qiang qin xue,ren bu xian,仁布县,强钦雪 29.26667 89.9 P PPLA3 CN 14 0 5381 Asia/Chongqing 2012-01-18
-1280281 Qamdo Qamdo Ch'a-mu-to,Ch'ang-tu,Ch'ang-tu-hsien,Ch'ang-tu-tsung,Chamdo,Chamudo,Changdu,Chhamdo,Ch’a-mu-to,Ch’ang-tu,Ch’ang-tu-hsien,Ch’ang-tu-tsung,Qamdo,chang dou,昌都 31.16667 97.23333 P PPLA2 CN 14 86280 4354 Asia/Chongqing 2012-01-18
-1280284 Jiajuedibu Jiajuedibu Hsiang-sha,Hsiang-sha-tsung,Jiajuedibu,Qajortebu,Qajortêbu,Schen-ssa-dsong,Senja-dsong,Senja-dzong,Shansa-dzong,Shen-cha,Shen-cha-hsiang,Shen-cha-tsung,Shensa Dzong,Shentsa,Shentsa Dzong,Shenzha Xian,Xainza,jia jue di bu,shen zha xian,甲觉底布,申扎县 30.93333 88.63333 P PPLA3 CN 14 0 4679 Asia/Urumqi 2012-01-18
-1280315 Nyingchi Nyingchi Lin-chih,Linzhi,Nyingchi,Pula,lin zhi,林芝 29.53333 94.41667 P PPLA3 CN 14 0 3502 Asia/Chongqing 2012-01-18
-1280317 Pubu Pubu Baingoin,Bange Xian,P'u-pao,Pan-ko,Pubao,Pubu,P’u-pao,ban ge xian,pu bao,普保,班戈县 31.75 89.83333 P PPLA3 CN 14 0 4781 Asia/Urumqi 2012-01-18
-1280328 Pingyuan Pingyuan Chao-kou,Pingyuan,Tung-fang-hung-kung-she,Ying-chiang,Ying-chiang-hsien,Yingjiang,ping yuan,平原 24.73642 97.91358 P PPLA3 CN 29 0 839 Asia/Chongqing 2012-01-18
-1280356 Pagnag Pagnag Amdo,An-to,An-to-mai-ma,An-to-mai-ma-chan,An-tu-mai,Anduo Xian,Pagnag,Pana,an duo xian,pa na,安多县,帕那 32.33333 91.66667 P PPLA3 CN 14 0 4974 Asia/Urumqi 2012-01-18
-1280425 Luobuqiongzi Luobuqiongzi Bailang Xian,Bainang,Chiao-cho,Chiao-lo,Luobuqiongzi,Norbukyungze,Norbukyungzê,P'ei-na-mu-tsung,P'ing-nan,Pa-lang,Pai-lang,Pai-lang-tsung,Pal-lam,Pelam,Pen-nang Dzong,Pen-nang-dsong,Pena Dzong,Penam Dzong,Pennang,P’ei-na-mu-tsung,P’ing-nan,bai lang xian,luo bu qiong zi,洛布穷孜,白朗县 29.16667 89.25 P PPLA3 CN 14 0 3970 Asia/Urumqi 2012-01-18
-1280466 Ngamring Ngamring Ang-jen,Angren,Ngamring,Ngamringxoi,ang ren,昂仁 29.23333 87.16667 P PPLA3 CN 14 0 4721 Asia/Kashgar 2012-01-18
-1280477 Napug Napug Ge'gyai,Geji Xian,Gê’gyai,Ko-chi,Na-po,Napo,Napug,ge ji xian,na po,那坡,革吉县 32.41667 81.08333 P PPLA3 CN 14 0 4991 Asia/Kashgar 2012-01-18
-1280485 Nangxian Nangxian La-to,Lang,Lang-hsien,Lang-tsung,Langxian,Nan-ko,Nan-ko-tsung,Nang,Nang Dzong,Nangxian,lang xian,朗县 29.05 93.2 P PPLA3 CN 14 0 3938 Asia/Chongqing 2012-01-18
-1280517 Nagqu Nagqu Hei-ho,Hei-ho-chen,Kheykhe,Na-ch'u,Na-ch'u-k'a,Na-ch’ü,Na-ch’ü-k’a,Na-ko-ch'u-tsung,Na-ko-ch’u-tsung,Na-ku-chia,Nag-chu-dsong,Nagchhu Dzong,Nagchhuka,Nagchhukha,Nagchu,Nagchu-dzong,Nagchuka,Nagqu,Nakchukha Dzong,Naqu,na qu,那曲 31.5 92 P PPLA2 CN 14 30000 4609 Asia/Chongqing 2012-01-18
-1280564 Mengsuo Mengsuo Meng-hsaw,Mengsuo,Mong Hsaw,Möng Hsaw,meng suo,勐梭 22.60199 99.55137 P PPLA3 CN 29 0 1365 Asia/Chongqing 2012-01-18
-1280568 Mengmeng Mengmeng Meng-meng-hsiang,Mengmeng,Na-chai,Na-sai,Shuang-chiang,Shuang-chiang-hsien,Shuangjiang,Ssu-p'ai-shan,Ssu-p'ai-shan-hsien-tso,Ssu-p’ai-shan,Ssu-p’ai-shan-hsien-tso,Szepaishan,meng meng,勐勐 23.46502 99.80206 P PPLA3 CN 29 0 1011 Asia/Chongqing 2012-01-18
-1280574 Menglang Menglang Chen-pien,Chen-pien-ting,Hsia-kai-hsin,Lan-ts'ang,Lan-ts'ang-hsien,Lan-ts’ang,Lan-ts’ang-hsien,Lancang,Lancang Lahuzu Zizhixian,Meng-lang-pa,Meng-lang-pa-chen,Menglang,Menglangba,meng lang,勐朗 22.56214 99.91029 P PPLA3 CN 29 0 1082 Asia/Chongqing 2012-01-18
-1280579 Mengdong Mengdong Cangyuan,Meng-tung,Meng-tung-hsiang,Mengdong,Mengyong,Ts'ang-yuan,Ts'ang-yuan-k'a-wa-tsu-tzu-chih-hsien,Ts'ang-yuan-she-chih-chu,Ts'ang-yuan-wa-tsu-tzu-chih-hsien,Ts’ang-yüan,Ts’ang-yüan-k’a-wa-tsu-tzu-chih-hsien,Ts’ang-yüan-she-chih-chü,Ts’ang-yüan-wa-tsu-tzu-chih-hsien,meng dong,勐董 23.16152 99.20226 P PPLA3 CN 29 0 1815 Asia/Chongqing 2012-01-18
-1280590 Motuo Motuo Medog,Mo-t'o,Mo-t’o,Motuo,Mêdog,mo tuo,墨脱 29.31667 95.31667 P PPLA3 CN 14 0 1263 Asia/Chongqing 2012-01-18
-1280645 Maindong Maindong Coqen,Cuoqin Xian,Maindong,Men-tung,Men-tung-Ssu,Mendong,Mendong Gomba,Mendong Gompa,Mendong Gömpa,Ts'o-ch'in,Ts’o-ch’in,cuo qin xian,men dong,措勤县,门董 31.33333 85.41667 P PPLA3 CN 14 0 4899 Asia/Kashgar 2012-01-18
-1280659 Luzhang Luzhang Lu-chang,Lu-chang-chieh,Lu-chang-hsiang,Lu-chang-shang-chai,Lu-shui-she-chih-chu,Lu-shui-she-chih-chü,Lushui,Luzhang,Luzhangjie,lu zhang,鲁掌 25.97309 98.82345 P PPLA3 CN 29 0 1795 Asia/Chongqing 2012-01-18
-1280679 Luring Luring Gaize Xian,Gerze,Gêrzê,Kai-tse,Longren,Lumaringbo,Luring,gai ze xian,long ren,改则县,隆仁 32.26667 84.2 P PPLA3 CN 14 0 4500 Asia/Kashgar 2012-01-18
-1280694 Longshan Longshan Longling,Longshan,Lung-ling,Lung-ling-hsien,long shan,龙山 24.60089 98.70418 P PPLA3 CN 29 0 1590 Asia/Chongqing 2012-01-18
-1280706 Linshui Linshui Lin-schui,Lin-shui-i,Linshui,Linshui Xiang,Ning-shui,Ninshuy,lin shui,lin shui xiang,临水,临水乡 39.78333 98.81667 P PPLA4 CN 15 0 1349 Asia/Urumqi 2012-01-18
-1280737 Lhasa Lhasa La-sa-shih,Lasa,Lhasa,Lhasa Shi,Lhassa,Lkhasa,la sa,la sa shi,lasa,lassa,lhsh,rasa,Лхаса,להסה,لاسا شەھىرى,লাসা,ལྷ་ས་,ラサ,拉萨,拉萨市,라사,라싸 29.65 91.1 P PPLA CN 14 118721 3651 Asia/Chongqing 2012-01-18
-1280757 Laojunmiao Laojunmiao Lao-chun-miao,Lao-chün-miao,Laojunmiao,Laojunmiao Zhen,Yu-men-shih,Yu-men-yu-k'uang-ch'u,Yumen,Yü-men-shih,Yü-men-yu-k’uang-ch’ü,lao jun miao,lao jun miao zhen,yu men,玉门,老君庙,老君庙镇 39.83333 97.73333 P PPLA4 CN 15 84769 2026 Asia/Urumqi 2012-01-18
-1280759 Laojie Laojie Ch'u-t'ung-chieh,Ch'u-tung,Chiu-ch'eng,Chiu-ch’eng,Ch’ü-tung,Ch’ü-t’ung-chieh,Kuting,Laojie,Yongping,Yung-p'ing,Yung-p'ing-hsien,Yung-p’ing,Yung-p’ing-hsien,lao jie,老街 25.44829 99.5561 P PPLA3 CN 29 0 1811 Asia/Chongqing 2012-01-18
-1280849 Kashi Kashi K'a-shih,K'o-shih,Kachgar,Kaschgar,Kasgar,Kashgar,Kashgar Kona Shahr,Kashgar Kone Shahr,Kashi,Kashi Shi,Kaszgar,Kaxgar,Kaşgar,Kona Shahr,K̩əxk̩ər,K’a-shih,K’o-shih,Qeshqer,Shu-fu,Su-fu,kashugaru,kasyugaleu,ke shen,ke shen shi,Кашгар,Қәшқәр,قەشقەر,カシュガル,喀什,喀什市,카슈가르 39.45472 75.97972 P PPL CN 13 274717 1288 Asia/Kashgar 2012-01-18
-1280889 Kangmar Kangmar K'ang-ma,Kangma,Kangmar,Khang-ma,Khangmar,K’ang-ma,kang ma,康马 28.5 89.75 P PPLA3 CN 14 0 5260 Asia/Chongqing 2012-01-18
-1280927 Jomda Jomda Chiang-ta,Chiang-ta-tsung,Jiangda,Jomda,jiang da,江达 31.5 98.26667 P PPLA3 CN 14 0 4242 Asia/Chongqing 2012-01-18
-1280943 Jinta Jinta Ch'ing-t'a-ch'en,Chin-t'a,Chin-t'a-ch'eng,Chin-t'a-hsien,Chin-t’a,Chin-t’a-ch’êng,Chin-t’a-hsien,Chintachen',Chintachen’,Ch’ing-t’a-ch’en,Jinta,Jinta Xian,Jinta Zhen,Kinta,Wang-tzu-chuang,jin ta,jin ta xian,jin ta zhen,金塔,金塔县,金塔镇 39.98333 98.86667 P PPLA3 CN 15 0 1280 Asia/Urumqi 2012-01-18
-1280945 Jinhua Jinhua Chien-ch'uan,Chien-ch'uan-hsien,Chien-ch’uan,Chien-ch’uan-hsien,Jianchuan,Jinhua,Kienchwan-hsien,Kienchwanchow,jin hua,金华 26.538 99.91715 P PPLA3 CN 29 0 2201 Asia/Chongqing 2012-01-18
-1280948 Jinding Jinding Jinding,jin ding,金顶 26.43903 99.44061 P PPLA3 CN 29 0 2511 Asia/Chongqing 2012-01-18
-1280957 Jiayuguan Jiayuguan Ch'ia-hsu-kuan,Chia-yu-kuan,Chia-yü-kuan,Chiayukwan,Ch’ia-hsu-kuan,Czjajujguan',Jiayuguan,Kia-yu-kuan,Kiayukwan,Tseyasyuyguan',Tseyasyuyguan’,Yumen,jia yu guan,jia yu guan shi,Цзяюйгуань,嘉峪关,嘉峪关市 39.81667 98.3 P PPL CN 15 122396 1623 Asia/Urumqi 2012-01-18
-1281019 Hotan Hotan Ho-t'ien,Ho-t'ien-chen,Ho-tien-hsien,Ho-t’ien,Ho-t’ien-chen,Hotan,Hotən,Khotan,Xoten,he tian shi,hotan shi,Хотан,Хотән,خوتەن,خوتەن شەھىرى,ホータン市,和田市 37.09972 79.92694 P PPL CN CN 13 114000 1393 Asia/Kashgar 2012-01-18
-1281038 Hoit Taria Hoit Taria Hoit Taria,Huai-t'ou-t'a-la,Huai-t’ou-t’a-la,Huaitoutala Zhen,huai tou ta la,huai tou ta la zhen,怀头他拉,怀头他拉镇 37.35155 96.74974 P PPLA4 CN 06 0 2875 Asia/Urumqi 2012-01-18
-1281054 Heimahe Heimahe Hei-ma-ho,Heimahe,hei ma he,黑马河 36.72893 99.77684 P PPLA4 CN 06 0 3208 Asia/Chongqing 2012-01-18
-1281098 Gyigang Gyigang Ch'a-yu,Chayu Xian,Chi-kung,Ch’a-yü,Gyigang,Jigong,Sang-ang-ch'u,Sang-ang-ch’ü,Zayu,Zayü,cha yu xian,ji gong,吉公,察隅县 28.66667 97.51667 P PPLA3 CN 14 0 3284 Asia/Chongqing 2012-01-18
-1281119 Jiangzi Jiangzi Chiang-tzu,Chiang-tzu-tsung,G'jangdze,Gyam-dze,Gyang-tse Jong,Gyangtse,Gyangze,Gyangzê,Gyantse,Jiangzi,Kiangtze,jiang zi,Гьянгдзе,江孜 28.95 89.63333 P PPLA3 CN 14 10000 4552 Asia/Chongqing 2012-01-18
-1281124 Gyangkar Gyangkar Chiang-ka,Dinggye,Dinggyê,Dingjie Xian,Gyangkar,Jiangga,Ting-chieh,ding jie xian,jiang ga,定结县,江嘎 28.4 87.8 P PPLA3 CN 14 0 4193 Asia/Kashgar 2012-01-18
-1281127 Gyamotang Gyamotang Denchen,Denchin,Dengqen,Dingqing Xian,Dêngqên,Gyamotang,Jiamotang,Te-ch'ing,Te-chin,Te-ch’ing,Ting-ch'ing,Ting-ch'ing-chen,Ting-ch'ing-tsung,Ting-ch’ing,Ting-ch’ing-chen,Ting-ch’ing-tsung,ding qing xian,jia mo tang,丁青县,加莫塘 31.53333 95.43333 P PPLA3 CN 14 0 4955 Asia/Chongqing 2012-01-18
-1281189 Gengqing Gengqing Dege Gonchen,Deqe,Derge,Dêqê,Gengqing,Goinqen,Goinqên,Te-hua,Te-ke,Te-ko,Te-ko-hsien,Tehko,Teko Kengching,Tenko,geng qing,更庆 31.81649 98.59579 P PPLA3 CN 32 0 4008 Asia/Chongqing 2012-01-18
-1281203 Gengma Gengma Gengma,Keng-ma,Keng-ma-hsuan-fu-ssu,Keng-ma-she-chih-chu,Keng-ma-she-chih-chü,Keng-ma-t'ai-tsu-k'a-wa-tsu-tzu-chih-hsien,Keng-ma-t'ai-tsu-wa-tsu-tzu-chih-hsien,Keng-ma-t’ai-tsu-k’a-wa-tsu-tzu-chih-hsien,Keng-ma-t’ai-tsu-wa-tsu-tzu-chih-hsien,geng ma,耿马 23.52325 99.3786 P PPLA3 CN 29 0 1141 Asia/Chongqing 2012-01-18
-1281208 Jiding Jiding Geding,Gêding,Hsieh-t'ung-men,Hsieh-t’ung-men,Jiding,K'a-lu,K'o-la,Kara,Karu,K’a-lu,K’o-la,Setunmyn',Setunmyn’,Thongmon,Xaitongmoin,Xietongmen Xian,ji ding,xie tong men xian,吉丁,谢通门县 29.36667 88.25 P PPLA3 CN 14 0 3898 Asia/Kashgar 2012-01-18
-1281219 Gar Gar Ga'er,Gar,Garxincun,Ga’er,K'un-sa,Ka-erh,Ka-erh-k'un-sha,Ka-erh-k’un-sha,K’un-sa,ga er,噶尔 32.2 79.98333 P PPLA3 CN 14 0 4245 Asia/Kashgar 2012-01-18
-1281221 Gartog Gartog Chiang-ch'ia,Chiang-ch’ia,Chiang-k'a,Chiang-k'a-tsung,Chiang-k’a,Chiang-k’a-tsung,Gartog,Gatuo,Ka-t'o,Ka-t’o,Mang-k'ang,Mang-k’ang,Mangkang Xian,Markam,Markham,Ning-ching,Ning-ching-hsien,Ningtsin,ga tuo,mang kang xian,嘎托,芒康县 29.68333 98.55 P PPLA3 CN 14 0 4363 Asia/Chongqing 2012-01-18
-1281256 Kambaxoi Kambaxoi Gamba,Gambaxoi,Gangba Xian,Gangbaxue,K'ang-pa-tsung,Ka-mu-pa-tsung,Kambaxoi,Kampa Dzong,Kang-ma,Kang-ma-tsung,Kang-pa,Kang-pa-hsueh,Kang-pa-hsüeh,Khamba,Khamba Dzong,K’ang-pa-tsung,gang ba xian,gang ba xue,岗巴县,岗巴学 28.3 88.53333 P PPLA3 CN 14 0 4693 Asia/Kashgar 2012-01-18
-1281269 Nansan Nansan Chen-k'ang,Chen-k’ang,Feng-wei-pa,Fengwei,Fengweiba,Nansan,Zhenkang,nan san,南伞 23.79574 98.80397 P PPLA3 CN 29 0 1702 Asia/Chongqing 2012-01-18
-1281270 Fengshan Fengshan Feng-ch'ing,Feng-ch’ing,Feng-shan-chen,Fengqing,Fengshan,Shun-ning,Shun-ning-ch'eng,Shun-ning-ch’eng,Shun-ning-hsien,Shunningfu,feng shan,凤山 24.58333 99.9 P PPLA3 CN 29 0 1727 Asia/Chongqing 2012-01-18
-1281315 Dongdong Dongdong Dongdong,Dongdong Xiang,dong dong,dong dong xiang,东洞,东洞乡 39.5 98.66667 P PPLA4 CN 15 0 1589 Asia/Urumqi 2012-01-18
-1281323 Domartang Domartang Banbar,Bianba Xian,Domartang,Dongmatang,Pem Bar,Pemba-gompa,Pembar Gompa,Pembar Gömpa,Pien-pa,Pien-pa-ssu,Pien-pa-tsung,bian ba xian,dong ma tang,东马塘,边坝县 30.9 94.83333 P PPLA3 CN 14 0 4938 Asia/Chongqing 2012-01-18
-1281368 Dêqên Deqen Dechen,Deqing,de qing,Дечен,བདེ་ཆེན,德庆 29.96178 90.71875 P PPL CN 14 62400 3974 Asia/Chongqing 2011-02-22
-1281386 Dedang Dedang Chen-k'ang,Chen-k’ang,Dedang,Te-tang,Te-tang-chen,Yongde,Yung-te,de dang,德党 24.0118 99.23964 P PPLA3 CN 29 0 1628 Asia/Chongqing 2012-01-18
-1281405 Dartang Dartang Baqen,Baqing Xian,Baqên,Da'ertang,Dartang,Da’ertang,Pa-ch'ing,Pa-ch’ing,Ta-erh-t'ang,Ta-erh-t’ang,ba qing xian,da er tang,巴青县,达尔塘 31.93333 94 P PPLA3 CN 14 0 4138 Asia/Chongqing 2012-01-18
-1281484 Chongdui Chongdui Ch'ung-tui,Chongdui,Ch’ung-tui,Congdu,Congdü,Kuti,Nieh-la-mu,Nielamu Xian,Nyalam,Nyalam Dzong,Nyelam,Nyenam,chong dui,nie la mu xian,充堆,聂拉木县 28.15 85.96667 P PPLA3 CN 14 0 4063 Asia/Kashgar 2012-01-18
-1281497 Cikai Cikai Cikai,Gongshan,Kung-shan,Kung-shan-tu-lung-tsu-nu-tsu-tzu-chih-hsien,Tz'u-k'ai,Tz’u-k’ai,ci kai,茨开 27.76344 98.71105 P PPLA3 CN 29 0 2471 Asia/Chongqing 2012-01-18
-1281542 Youdian Youdian Changning,Youdian,Yu-tien,Yu-tien-hsien-tso,you dian,右甸 24.82894 99.59232 P PPLA3 CN 29 0 1822 Asia/Chongqing 2012-01-18
-1281544 Changma Changma Ch'ang-ma-pao,Ch'ang-ma-pao-tzu,Ch'ang-ma-ying-tzu,Ch'ing-ma,Changma,Changma Xiang,Chinma,Ch’ang-ma-pao,Ch’ang-ma-pao-tzu,Ch’ang-ma-ying-tzu,Ch’ing-ma,Ha-min,Ha-min-kuan-li-chu,Ha-min-kuan-li-chü,chang ma,chang ma xiang,昌马,昌马乡 39.86667 96.76667 P PPLA4 CN 15 0 2058 Asia/Urumqi 2012-01-18
-1281593 Burang Burang Burang,Durang,K'o-la-k'o-t'e,K’o-la-k’o-t’e,P'u-lan,P'u-lan-tsung,Pulan,Purang,P’u-lan,P’u-lan-tsung,T'a-k'o-la-k'o-t'e,Taklakhar,Taklakot,T’a-k’o-la-k’o-t’e,pu lan,Буранг,普兰 30.25 81.16667 P PPLA3 CN 14 5026 3917 Asia/Kashgar 2012-01-18
-1281674 Baohe Baohe Baohe,Wei-hsi,Wei-hsi-hsien,Weisi-hsien,Weixi,bao he,保和 27.19582 99.32483 P PPLA3 CN 29 0 2591 Asia/Chongqing 2012-01-18
-1281708 Baima Baima Baima,Basu Xian,Pa-hsiu,Pa-su,Pai-ma,ba su xian,bai ma,八宿县,白马 30.05 96.9 P PPLA3 CN 14 0 3413 Asia/Chongqing 2012-01-18
-1346620 Yilkiqi Yilkiqi Yilkiqi,Yilkiqi Xiang,Yilk̩iqi,Yilqichi,yi li ke qi,yi li ke qi xiang,yylqychy,Йилқычи,يىلقىچى,依力克其,依力克其乡 37.96111 77.24917 P PPLA4 CN 13 0 1323 Asia/Kashgar 2012-01-19
-1346629 Layka Layka Layika,Layka,Layka Xiang,Layk̩a,Layqa,la yi ka,la yi ka xiang,layqa,Лайқа,لايقا,拉依喀,拉依喀乡 37.07694 79.73167 P PPLA4 CN 13 0 1421 Asia/Kashgar 2012-01-19
-1360995 Wanjheri Sharīf Wanjheri Sharif Wanjheri Sharif,Wanjheri Sharīf 29.02634 110.63324 P PPLA4 CN 11 0 716 Asia/Karachi 2012-02-02
-1528998 Yumen Yumen Yu-men,Yu-men-chen,Yu-men-hsien,Yumen,Yumen Shi,Yumen Zhen,Yü-men,Yü-men-chen,Yü-men-hsien,yu men,yu men shi,yu men zhen,玉门,玉门市,玉门镇 40.28333 97.2 P PPLA3 CN 15 0 1461 Asia/Urumqi 2012-02-02
-1529004 Yuanquan Yuanquan An-hsi,An-hsi-hsien,Ansi,Ansi Xian,Anxi,Guazhou Xian,Xincheng,Yuanquan,Yuanquan Zhen,an xi xian,gua zhou xian,yuan quan,yuan quan zhen,安西县,渊泉,渊泉镇,瓜州县 40.5 95.8 P PPLA3 CN 15 0 1178 Asia/Urumqi 2012-01-18
-1529031 Yanqi Yanqi Ha-la-sha-erh,K'a-la-sha-erh,K'o-la-sha-erh,Kara-schahr,Karachahr,Karashahr,Karashar,Khara Shar,Kurashar',Kurashar’,K̩araxəh̨ər,K’a-la-sha-erh,K’o-la-sha-erh,Qara Shahr,Qarasheher,Yan'tsy,Yanqi,Yanqi Zhen,Yan’tsy,Yen-ch'i,Yen-ch'i-chen,Yen-ch'i-hsien,Yen-ch'i-hui-tsu-tzu-chih-ch'u,Yen-ch'i-hui-tsu-tzu-chih-hsien,Yen-ch’i,Yen-ch’i-chen,Yen-ch’i-hsien,Yen-ch’i-hui-tsu-tzu-chih-ch’ü,Yen-ch’i-hui-tsu-tzu-chih-hsien,Yenki,Yinki,yan qi,yan qi zhen,Қарашәһәр,قاراشەھەر,焉耆,焉耆镇 42.05861 86.56833 P PPLA3 CN 13 0 1062 Asia/Urumqi 2012-01-18
-1529061 Xiaxihao Xiaxihao Xiaxihao,Xiaxihao Xiang,xia xi hao,xia xi hao xiang,下西号,下西号乡 40.3 97.16667 P PPLA4 CN 15 0 1457 Asia/Urumqi 2012-01-18
-1529085 Wujiaqu Wujiaqu Wujiaqu,Wujiaqu Shi,wu jia qu,wu jia qu shi,五家渠,五家渠市 44.2 87.55 P PPLA3 CN 13 0 469 Asia/Urumqi 2012-01-18
-1529102 Urunchi Urunchi Dikhua,Ouroumtchi,Ti-hua,Ti-hua-ch'eng,Ti-hua-ch’eng,Ti-hua-hsien,Ti-hua-shih,Tihwa,Tihwafu,Tikhua,Tikhva,UEruemqi,Urumchi,Urumci,Urumptsi,Urumqi,Urumqi Shi,Urumtschi,Urumtsi,Urumutsi,Urumçi,Urumči,Urunchi,Wu-lu-mu-ch'i,Wu-lu-mu-ch'i-shih,Wu-lu-mu-ch’i,Wu-lu-mu-ch’i-shih,Wulumuqi,Wurumch'ih,Wurumch’ih,awrwmchy,awrwmtshy,ulumuchi,urumuchi,wu lu mu qi,wu lu mu qi shi,Ürümchi,Ürümqi,Ürümqi Shi,Урумчи,Үрүмчи,أورومتشي,ئۈرۈمچى,ئۈرۈمچى شەھىرى,ئۈرۈمچی,اورومچی,ウルムチ,乌鲁木齐,乌鲁木齐市,우루무치 43.80096 87.60046 P PPLA CN 13 1508225 862 Asia/Urumqi 2012-01-18
-1529103 Urho Urho Uer-ho,Urho,Wu'erhe Qu,Wu-er-ho,Wu-ho,Wu’erhe Qu,wu er he,wu er he qu,乌尔禾,乌尔禾区 46.1 85.66667 P PPLA3 CN 13 0 310 Asia/Urumqi 2012-01-18
-1529114 Turpan Turpan Lukchun,T'u-lu-fan,T'u-lu-fan-chen,T'u-lu-fan-hsien,T'urfang,Tourfan,Tufan,Turfan,Turfán,Turpan,T’u-lu-fan,T’u-lu-fan-chen,T’u-lu-fan-hsien,T’urfang,to~urufan,tu lu fan shi,tuleupan,Турпан,Турфан,تۇرپان,トゥルファン,吐鲁番市,투르판 42.93333 89.16667 P PPL CN CN 13 254900 17 Asia/Urumqi 2012-01-18
-1529195 Shihezi Shihezi Shih-ho-tzu,Shih-yen-tzu,Shihezi,Shikhedze,Shikhedzy,Shikhehczy,Shixenze,Xihənzə,seuheojeu,shi he zi shi,Шихэцзы,Шихәнзә,شىخەنزە,شىخەنزە شەھرى,شىخەنزە شەھىرى,石河子市,스허즈 44.3 86.03333 P PPL CN 13 572772 468 Asia/Urumqi 2012-01-18
-1529363 Kuqa Kuqa K'u-ch'e,K'u-ch'e-chen,K'u-ch'e-hsien,Kocha,Koutcha,Kucha,Kuchar,Kuchel,Kuchi,Kuchu,Kuga,Kuqa,K’u-ch’e,K’u-ch’e-chen,K’u-ch’e-hsien,ku che xian,Куча,كۇچا,库车县 41.72778 82.93639 P PPL CN 13 68105 1066 Asia/Urumqi 2012-01-18
-1529376 Korla Korla K'o-erh-lo,K'u-erh-le,K'u-erh-lo,K'u-erh-lo-chen,K'u-erh-lo-hsien,K'u-erh-lo-she-chih-chu,Koria,Korla,Korla Shi,Kourla,Kuerhlei,Kuerhli,Kuriya,Kurla,Kurlya,K’o-erh-lo,K’u-erh-le,K’u-erh-lo,K’u-erh-lo-chen,K’u-erh-lo-hsien,K’u-erh-lo-she-chih-chü,ku er lei,ku er lei shi,kwrla,Корла,كورلا,كورلا شەھىرى,库尔勒,库尔勒市 41.75972 86.14694 P PPL CN 13 179465 943 Asia/Urumqi 2012-01-18
-1529484 Hami Hami Chamil,Ha-mi-ch'eng-chen,Ha-mi-chen,Ha-mi-ch’eng-chen,Ha-mi-hsien,Ha-mi-shih,Hami,Kamil,Kha-mi,Khami,Khamil,Komul,Koumoul,Kumul,K̩umul,Qomul,Qumul,ha mi de qu,ha mi shi,hami,kumuru shi,Хами,Қумул,قۇمۇل,قۇمۇل شەھىرى,クムル市,哈密地区,哈密市,하미 42.8 93.45 P PPL CN 13 137072 740 Asia/Urumqi 2012-01-18
-1529492 Guazhou Guazhou Guazhou,Guazhou Xiang,gua zhou,gua zhou xiang,瓜州,瓜州乡 40.4 95.76667 P PPLA4 CN 15 0 1278 Asia/Urumqi 2012-01-18
-1529512 Ewirgol Ewirgol Ai-wei-erh-kou,Ehvirgol,Ewirghol,Ewirgol,Ewirgol Jiedao,Ewirƣol,ai wei er gou,ai wei er gou jie dao,Éwirghol,Эвирғол,ئېۋىرغول,艾维尔沟,艾维尔沟街道 42.96444 87.66111 P PPLA4 CN 13 0 1470 Asia/Urumqi 2012-01-18
-1529528 Dushanzi Dushanzi Dushanzi,Dushanzi Qu,Majtag,Maytag,Maytagh,Maytaƣ,T'u-shang-tzu,Tu-shan-tzu,Tushandzo,Tushandzy,Tushandzö,Tushantze,T’u-shang-tzu,du shan zi,du shan zi qu,ma yi ta ke shan,maytagh,Майтағ,مايتاغ,独山子,独山子区,玛依塔柯山 44.33333 84.85 P PPLA3 CN 13 0 721 Asia/Urumqi 2012-01-18
-1529569 Changji Changji Ch'ang-chi,Ch'ang-chi-chen,Ch'ang-chi-hsien,Chanczi,Changji,Changki,Chanki,Chantszi,Ch’ang-chi,Ch’ang-chi-chen,Ch’ang-chi-hsien,Ning-pien-i,Sandzhi,Sanji,sanjy,Санҗи,Чанцзи,سانجى 44.01667 87.31667 P PPL CN 13 198776 569 Asia/Urumqi 2012-01-18
-1529625 Baikouquan Baikouquan Baikouquan,Baikouquan Jiedao,Pai-k'ou-ch'uan,Pai-k’ou-ch’üan,bai kou quan,bai kou quan jie dao,百口泉,百口泉街道 45.96667 85.45 P PPLA4 CN 13 0 344 Asia/Urumqi 2012-01-18
-1529626 Baijiantan Baijiantan Baijiantan,Baijiantan Zhen,Pai-chien-t'an,Pai-chien-t’an,bai jian tan,bai jian tan zhen,白碱滩,白碱滩镇 45.63333 85.18333 P PPLA4 CN 13 93697 270 Asia/Urumqi 2012-01-18
-1529641 Aral Aral A-la-erh,Ala'er,Ala’er,Aral,Aral'skoe,a la er,yaral,Арал,Аральское,ئارال,阿拉尔 40.51556 81.26361 P PPL CN CN 13 260000 1010 Asia/Kashgar 2012-01-18
-1529651 Altay Altay A-erh-t'ai,A-erh-t’ai,A-le-t'ai,A-le-t’ai,A-lo-t'ai,A-lo-t'ai-chen,A-lo-t'ai-hsien,A-lo-t’ai,A-lo-t’ai-chen,A-lo-t’ai-hsien,A-shan,Altai,Altai-Sharasume,Altaj,Altajskaja,Altay,Ch'eng-hua,Ch'eng-hua-hsien,Ch'eng-hua-ssu,Cheng-hua-sze,Chenghwa,Chenghwasze,Chenkhua,Ch’eng-hua,Ch’eng-hua-hsien,Ch’eng-hua-ssu,Shara-Sumu,Sharasume,T'u-lo-t'a,Tulta,T’u-lo-t’a,a lei tai shi,aleotai,yaltay,Алтай,Алтайская,ئالتاي,阿勒泰市,아러타이 47.86667 88.11667 P PPL CN 13 139341 895 Asia/Urumqi 2012-01-18
-1529660 Aksu Aksu A-k'o-su,A-k'o-su-chen,A-k'o-su-hsien,A-k'o-su-hsin-ch'eng,A-k’o-su,A-k’o-su-chen,A-k’o-su-hsien,A-k’o-su-hsin-ch’eng,Ak Su Yangi Shahr,Akoso,Aksou,Aksu,Aksu New City,Ak̩su,Aqsu,Aqsu New City,Aqsu Yangi Shahr,New Aksu,Yangi-shahr,a ke su shi,akusu,Аксу,Ақсу,ئاقسۇ,ئاقسۇ شەھىرى,アクス,阿克苏市 41.12306 80.26444 P PPL CN 13 340020 1093 Asia/Kashgar 2012-01-18
-1532301 Anningqu Anningqu An-ning-ch'u,An-ning-ch’ü,Anningqu,Anningqu Zhen,an ning qu,an ning qu zhen,安宁渠,安宁渠镇 43.98333 87.53333 P PPLA4 CN 13 0 562 Asia/Urumqi 2012-01-19
-1532302 Diwopu Diwopu Diwopu,Diwopu Xiang,Ta-ti-wo-p'u,Ta-ti-wo-p’u,de wo bao,de wo bao xiang,地窝堡,地窝堡乡 43.88333 87.48333 P PPLA4 CN 13 0 695 Asia/Urumqi 2012-01-19
-1532362 Ergong Ergong Ergong,Ergong Jiedao,er gong,er gong jie dao,二工,二工街道 43.85 87.56667 P PPLA4 CN 13 0 784 Asia/Urumqi 2012-01-19
-1532368 Tiechanggou Tiechanggou T'ieh-ch'ang-kou,Tiechanggou,Tiechanggou Zhen,T’ieh-ch’ang-kou,tie chang gou,tie chang gou zhen,铁厂沟,铁厂沟镇 43.91667 87.78333 P PPLA4 CN 13 0 864 Asia/Urumqi 2012-02-02
-1532378 Lucaogou Lucaogou Lu-ts'ao-kou,Lu-ts’ao-kou,Lucaogou,Lucaogou Xiang,lu cao gou,lu cao gou xiang,芦草沟,芦草沟乡 43.86667 87.78333 P PPLA4 CN 13 0 889 Asia/Urumqi 2012-01-19
-1538459 Changshanzi Changshanzi Changshanzi,Changshanzi Zhen,zhang shan zi,zhang shan zi zhen,长山子,长山子镇 44.06056 87.58528 P PPLA4 CN 13 0 500 Asia/Urumqi 2012-01-19
-1538460 Sandaoba Sandaoba Sandaoba,Sandaoba Zhen,san dao ba,san dao ba zhen,三道坝,三道坝镇 44.11 87.61694 P PPLA4 CN 13 0 483 Asia/Urumqi 2012-01-19
-1538461 Yangmaogong Yangmaogong Yangmaogong,Yangmaogong Zhen,yang mao gong,yang mao gong zhen,羊毛工,羊毛工镇 44.13667 87.57722 P PPLA4 CN 13 0 476 Asia/Urumqi 2012-01-19
-1547549 Shechenzhuang Shechenzhuang Hechen,Hechen Zhen,Shechen,Shechenzhuang,he chen,he chen zhen,she chen,she chen zhuang,合陈,合陈镇,舍陈,舍陈庄 33.00576 120.23678 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1547557 Xiaohai Xiaohai Xiaohai,Xiaohai Zhen,xiao hai,xiao hai zhen,小海,小海镇 33.02956 120.47596 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1547574 Guanyinsi Guanyinsi Guanyinsi,Xinduo,Xinduo Zhen,guan yin si,xin duo,xin duo zhen,新垛,新垛镇,观音寺 33.08774 120.17989 P PPLA4 CN 04 0 0 Asia/Shanghai 2012-01-16
-1547621 Xindu Xindu Xindu,Xindu Jiedao,Yandu,Yandu Qu,xin dou,xin dou jie dao,yan dou,yan dou qu,新都,新都街道,盐都,盐都区 33.34167 120.13333 P PPLA3 CN 04 0 3 Asia/Shanghai 2012-01-16
-1547724 Gaojiazhuang Gaojiazhuang Gaojiazhuang,Hainan,Hainan Zhen,gao jia zhuang,hai nan,hai nan zhen,海南,海南镇,高家庄 33.04459 119.983 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-16
-1548357 Baizhang Baizhang Baizhang,Baizhang Zhen,Pai-ch'uan-chen,Pai-chang,Pai-chang-chen,Pai-ch’üan-chen,bai zhang,bai zhang zhen,百丈,百丈镇 31.92254 119.97055 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-16
-1548396 Changdai Changdai Changdai,Maqiao,Maqiao Zhen,ma qiao,ma qiao zhen,zhang dai,长垈,马桥,马桥镇 32.03611 120.21667 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548397 Shengci Shengci Shengci,Shengci Zhen,sheng ci,sheng ci zhen,生祠,生祠镇 32.03611 120.16389 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-16
-1548399 Hongguang Hongguang Hongguang,Hongguang Zhen,hong guang,hong guang zhen,红光,红光镇 32.06389 120.1 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548404 Sunjiadaqiao Sunjiadaqiao Sunjiadaqiao,Tuanjie,Tuanjie Zhen,sun jia da qiao,tuan jie,tuan jie zhen,团结,团结镇,孙家大桥 32.086 120.27736 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548422 Jiang’an Jiang'an Jiang'an,Jiang'an Zhen,Jiang’an,Jiang’an Zhen,jiang an,jiang an zhen,江安,江安镇 32.16944 120.40556 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-16
-1548423 Shanhu Shanhu Shanhu,Shanhu Zhen,shan hu,shan hu zhen,珊瑚,珊瑚镇 32.17803 120.32181 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-16
-1548424 Nansha Nansha Fengjiadai,Nansha,Nansha Zhen,feng jia dai,nan sha,nan sha zhen,南沙,南沙镇,封家垈 32.17284 120.21997 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-16
-1548433 Changqing Changqing Changqing,Changqing Zhen,chang qing,chang qing zhen,常青,常青镇 32.26111 120.45556 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548435 Gaoming Gaoming Gaoming,Gaoming Zhen,gao ming,gao ming zhen,高明,高明镇 32.25556 120.37778 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548444 Taoyuan Taoyuan Taoyuan,Taoyuan Zhen,tao yuan,tao yuan zhen,桃园,桃园镇 32.29722 120.61667 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548449 Liuchen Liuchen Baijiazhuang,Liuchen,Liuchen Zhen,bai jia zhuang,liu chen,liu chen zhen,刘陈,刘陈镇,白家庄 32.26667 120.15 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548459 Hengjiaduo Hengjiaduo Hengduo,Hengduo Zhen,Hengjiaduo,heng duo,heng duo zhen,heng jia duo,横垛,横垛镇,横家垛 32.31944 120.2803 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-16
-1548471 Yuanzhu Yuanzhu Dayuanduo,Yuanzhu,Yuanzhu Zhen,da yuan duo,yuan zhu,yuan zhu zhen,元竹,元竹镇,大元垛 32.32415 120.17484 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-16
-1548480 Guba Guba Feng-li-pa,Feng-li-pa-chen,Guba,Guba Zhen,Gubazhen,Ku-pa,Ku-pa-chen,gu ba,gu ba zhen,古坝,古坝镇 32.40496 120.95158 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548494 Yuanzhuang Yuanzhuang Yuanzhuang,Yuanzhuang Zhen,yuan zhuang,yuan zhuang zhen,袁庄,袁庄镇 32.44561 120.77288 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548495 Xue’an Xue'an Xue'an,Xue'an Zhen,Xue’an,Xue’an Zhen,xue an,xue an zhen,雪岸,雪岸镇 32.46389 120.68333 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548509 Liangxu Liangxu Liangxu,Liangxu Zhen,liang xu,liang xu zhen,梁徐,梁徐镇 32.46944 120.11667 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-16
-1548514 Xichang Xichang Xichang,Xichang Zhen,xi chang,xi chang zhen,西场,西场镇 32.525 120.59167 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-16
-1548531 Dingjiashe Dingjiashe Dingjiashe,Shengao,Shengao Zhen,chen gao,chen gao zhen,ding jia she,丁家舍,沈高,沈高镇 32.58611 120.13333 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548535 Dagong Dagong Dagong,Dagong Zhen,da gong,da gong zhen,大公,大公镇 32.625 120.52222 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548548 Yujiaduo Yujiaduo Yuduo,Yuduo Zhen,Yujiaduo,shu duo,shu duo zhen,shu jia duo,俞垛,俞垛镇,俞家垛 32.64077 120.01283 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548554 Baidian Baidian Baidian,Baidian Zhen,bai dian,bai dian zhen,白甸,白甸镇 32.67778 120.26389 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-16
-1548555 Xiaodianzhi Xiaodianzhi Xiaodianzhi,Xingtai,xiao dian zhi,xing tai,兴泰,小甸址 32.68611 120.075 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548558 Fudong Fudong Fudong,Fudong Zhen,fu dong,fu dong zhen,富东,富东镇 32.71944 120.55833 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548565 Tainan Tainan Heluolun,Tainan,Tainan Zhen,he luo lun,tai nan,tai nan zhen,台南,台南镇,鹤落埨 32.76205 120.26944 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-16
-1548566 Zhaowanzhuang Zhaowanzhuang Zhangguo,Zhangguo Zhen,Zhaowanzhuang,zhang guo,zhang guo zhen,zhao wan zhuang,张郭,张郭镇,赵万庄 32.74486 120.16667 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-16
-1548593 Taozhuang Taozhuang Taozhuang,Taozhuang Zhen,tao zhuang,tao zhuang zhen,陶庄,陶庄镇 32.86667 120.13889 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548609 Daiyao Daiyao Daijiayao,Daiyao,Daiyao Zhen,Hsing-tung,Tai-chia-yao,Tai-chia-yao-chen,Tai-yao,Tai-yao-chen,Yao-tai,dai yao,dai yao zhen,戴窑,戴窑镇 32.92913 120.21426 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-16
-1548681 Minggou Minggou Minggou,Minggoucun,Yong'anzhou,Yong'anzhou Zhen,Yong’anzhou,Yong’anzhou Zhen,ming gou,ming gou cun,yong an zhou,yong an zhou zhen,明沟,明沟村,永安洲,永安洲镇 32.24917 119.9075 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1548728 Yexu Yexu Yexu,Yexu Zhen,ye xu,ye xu zhen,野徐,野徐镇 32.39733 119.92798 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548757 Jiuliqiao Jiuliqiao Jiuliqiao,Taidong,Taidong Zhen,jiu li qiao,tai dong,tai dong zhen,九里桥,泰东,泰东镇 32.50556 119.97222 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-16
-1548878 Dongbaozhuang Dongbaozhuang Dongbao,Dongbaozhuang,dong bao,dong bao zhuang,东鲍,东鲍庄 32.98376 119.92047 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-16
-1548916 Zhougang Zhougang Zhougang,Zhougang Zhen,zhou gang,zhou gang zhen,周岗,周岗镇 31.79702 118.96073 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-16
-1549904 Huayuan Huayuan Huayuan,Huayuan Xiang,hua yuan,hua yuan xiang,花园,花园乡 34.075 119.45 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-16
-1549913 Tangjian Tangjian Tangjian,Tangjian Zhen,tang jian,tang jian zhen,汤涧,汤涧镇 34.13333 119.00417 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1549929 Changmao Changmao Changmao,Changmao Zhen,zhang mao,zhang mao zhen,长茂,长茂镇 34.21667 119.575 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-16
-1549939 Mengxingzhuang Mengxingzhuang Mengxingzhuang,Mengxingzhuang Zhen,meng xing zhuang,meng xing zhuang zhen,孟兴庄,孟兴庄镇 34.175 119.21667 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-16
-1549961 Tuhe Tuhe Tuhe,Tuhe Xiang,tu he,tu he xiang,图河,图河乡 34.33333 119.55 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-16
-1549987 Baixian Baixian Baixian,Baixian Xiang,bai xian,bai xian xiang,白蚬,白蚬乡 34.325 119.33333 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1549995 Muxu Muxu Muxu,Muxu Xiang,mu wei,mu wei xiang,穆圩,穆圩乡 34.39167 119.1125 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1549997 Gaoxu Gaoxu Gaoxu,Gaoxu Zhen,gao xu,gao xu zhen,高墟,高墟镇 34.33333 119.00833 P PPLA4 CN 04 0 0 Asia/Shanghai 2012-01-16
-1549999 Duigougang Duigougang Duigougang,Duigougang Zhen,dui gou gang,dui gou gang zhen,堆沟港,堆沟港镇 34.41667 119.775 P PPLA4 CN 04 0 255 Asia/Shanghai 2012-01-16
-1550003 Xufeng Xufeng Xufeng,Xufeng Zhen,wei feng,wei feng zhen,圩丰,圩丰镇 34.45 119.55 P PPLA4 CN 04 0 0 Asia/Shanghai 2012-01-16
-1550032 Gaogongdao Gaogongdao Gaogongdao,Gaogongdao Xiang,gao gong dao,gao gong dao xiang,高公岛,高公岛乡 34.69583 119.475 P PPLA4 CN 04 0 -9999 Asia/Shanghai 2012-01-16
-1550035 Zhongyun Zhongyun Zhongyun,Zhongyun Jiedao,zhong yun,zhong yun jie dao,中云,中云街道 34.65 119.40833 P PPLA4 CN 04 0 254 Asia/Shanghai 2012-01-16
-1550037 Yunshan Yunshan Yunshan,Yunshan Jiedao,yun shan,yun shan jie dao,云山,云山街道 34.7 119.36667 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-16
-1550038 Huaguoshan Huaguoshan Huaguoshan,Huaguoshan Xiang,hua guo shan,hua guo shan xiang,花果山,花果山乡 34.64167 119.23333 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-16
-1550044 Luoyang Luoyang Luoyang,Luoyang Zhen,luo yang,luo yang zhen,罗阳,罗阳镇 34.71081 119.10702 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-16
-1550048 Songzhuang Songzhuang Songzhuang,Songzhuang Zhen,song zhuang,song zhuang zhen,宋庄,宋庄镇 34.78332 119.14024 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-16
-1550084 Youyupu Youyupu Youyupu,Yu-yu-p'u,Yu-yü-p’u 27.55972 109.13778 P PPL CN CN 18 1124 738 Asia/Chongqing 2012-01-16
-1550143 Zhujiachang Zhujiachang Chu-chia-ch'ang,Chu-chia-ch’ang,Zhujiachang 27.3575 108.93833 P PPL CN CN 18 1295 508 Asia/Chongqing 2012-01-16
-1550222 Xujiaba Xujiaba Hsu-chia-pa,Hsü-chia-pa,Xujiaba 27.88472 108.11361 P PPL CN CN 18 3989 589 Asia/Chongqing 2012-01-16
-1552093 Sanchahe Sanchahe San-ch'a,San-ch’a,Sanchahe 28.49528 106.42833 P PPL CN CN 18 1770 1157 Asia/Chongqing 2012-01-16
-1552140 Sihe Sihe Sihe,si he,四合 30.7 119.25833 P PPLA4 CN 01 0 113 Asia/Shanghai 2012-01-16
-1552144 Yuewan Yuewan Yuewan,yue wan,月湾 30.7547 119.14143 P PPLA4 CN 01 0 80 Asia/Shanghai 2012-01-16
-1552180 Sanlidian Sanlidian Qingxi,Sanlidian,qing xi,san li dian,三里店,清溪 30.88333 119.4 P PPLA4 CN 01 0 45 Asia/Shanghai 2012-01-16
-1552183 Fengqiao Fengqiao Fengqiao,feng qiao,凤桥 30.84094 119.3059 P PPLA4 CN 01 0 67 Asia/Shanghai 2012-01-16
-1552224 Wangxi Wangxi Wangxi,Wangxi Zhen,wang xi,wang xi zhen,汪溪,汪溪镇 30.68673 118.97282 P PPLA4 CN 01 0 45 Asia/Shanghai 2012-01-16
-1552251 Yishan Yishan Yishan,Yishan Xiang,yi shan,yi shan xiang,峄山,峄山乡 30.82759 118.81698 P PPLA4 CN 01 0 71 Asia/Shanghai 2012-01-16
-1552260 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Xiang,gao qiao,gao qiao xiang,高桥,高桥乡 30.79957 118.57344 P PPLA4 CN 01 0 50 Asia/Shanghai 2012-01-16
-1552266 Xiangyang Xiangyang Xiangyang,Xiangyang Zhen,xiang yang,xiang yang zhen,向阳,向阳镇 30.89564 118.86678 P PPLA4 CN 01 0 21 Asia/Shanghai 2012-01-16
-1552269 Xiadu Xiadu Xiadu,Xiadu Xiang,xia du,xia du xiang,夏渡,夏渡乡 30.92364 118.77759 P PPLA4 CN 01 0 10 Asia/Shanghai 2012-01-16
-1552274 Jinba Jinba Jinba,Jinba Xiang,jin ba,jin ba xiang,金坝,金坝乡 30.87929 118.66986 P PPLA4 CN 01 0 47 Asia/Shanghai 2012-01-16
-1552285 Shuangxi Shuangxi Shuangxi,Shuangxi Zhen,shuang xi,shuang xi zhen,双溪,双溪镇 30.95815 118.80454 P PPLA4 CN 01 0 15 Asia/Shanghai 2012-01-16
-1552286 Dingdian Dingdian Dingdian,Dingdian Xiang,ding dian,ding dian xiang,丁店,丁店乡 30.98376 118.86152 P PPLA4 CN 01 0 16 Asia/Shanghai 2012-01-16
-1552304 Qinxi Qinxi Qinxi,Qinxi Xiang,qin xi,qin xi xiang,琴溪,琴溪乡 30.72943 118.49106 P PPLA4 CN 01 0 36 Asia/Shanghai 2012-01-16
-1552307 Taiyuan Taiyuan Taiyuan,Taiyuan Xiang,tai yuan,tai yuan xiang,太园,太园乡 30.71093 118.40048 P PPLA4 CN 01 0 45 Asia/Shanghai 2012-01-16
-1552318 Beigong Beigong Beigong,Beigong Xiang,bei gong,bei gong xiang,北贡,北贡乡 30.68092 118.19925 P PPLA4 CN 01 0 118 Asia/Shanghai 2012-01-16
-1552321 Yandun Yandun Yandun,Yandun Zhen,yan dun,yan dun zhen,烟墩,烟墩镇 30.72174 118.15757 P PPLA4 CN 01 0 84 Asia/Shanghai 2012-01-16
-1552324 Youhua Youhua Youhua,Youhua Xiang,you hua,you hua xiang,酉华,酉华乡 30.67796 118.00674 P PPLA4 CN 01 0 144 Asia/Shanghai 2012-01-16
-1552330 Gufeng Gufeng Gufeng,Gufeng Xiang,gu feng,gu feng xiang,孤峰,孤峰乡 30.76183 118.36483 P PPLA4 CN 01 0 46 Asia/Shanghai 2012-01-16
-1552332 Tongtuan Tongtuan Tongtuan,Tongtuan Xiang,tong tuan,tong tuan xiang,童疃,童疃乡 30.825 118.34167 P PPLA4 CN 01 0 25 Asia/Shanghai 2012-01-16
-1552346 Wenchang Wenchang Wenchang,Wenchang Zhen,wen chang,wen chang zhen,文昌,文昌镇 30.90403 118.48869 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-16
-1552349 Shipu Shipu Shipu,Shipu Zhen,shi pu,shi pu zhen,石铺,石铺镇 30.9152 118.38354 P PPLA4 CN 01 0 14 Asia/Shanghai 2012-01-16
-1552350 Gelin Gelin Gelin,Gelin Xiang,ge lin,ge lin xiang,葛林,葛林乡 30.88267 118.38196 P PPLA4 CN 01 0 19 Asia/Shanghai 2012-01-16
-1552361 Lüling Luling Luling,Luling Zhen,Lüling,Lüling Zhen,lu ling,lu ling zhen,绿岭,绿岭镇 30.84893 118.12652 P PPLA4 CN 01 0 76 Asia/Shanghai 2012-01-16
-1552364 Wenwucao Wenwucao Jinlang Xiang,Wenwucao,jin lang xiang,wen wu cao,文武曹,金榔乡 30.9209 118.11029 P PPLA4 CN 01 0 46 Asia/Shanghai 2012-01-16
-1552376 Donghe Donghe Donghe,Donghe Xiang,dong he,dong he xiang,东河,东河乡 30.97911 118.45573 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-16
-1552377 Jiulian Jiulian Jiulian,Jiulian Xiang,jiu lian,jiu lian xiang,九连,九连乡 30.95565 118.38227 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-16
-1552382 Gongshan Gongshan Gongshan,Gongshan Zhen,gong shan,gong shan zhen,工山,工山镇 30.93566 118.25048 P PPLA4 CN 01 0 23 Asia/Shanghai 2012-01-16
-1552384 Jiafa Jiafa Jiafa,Jiafa Zhen,jia fa,jia fa zhen,家发,家发镇 30.99301 118.25102 P PPLA4 CN 01 0 33 Asia/Shanghai 2012-01-16
-1552391 Chisha Chisha Chisha,Chisha Xiang,chi sha,chi sha xiang,赤沙,赤沙乡 30.99023 118.13243 P PPLA4 CN 01 0 15 Asia/Shanghai 2012-01-16
-1552397 Zhuyang Zhuyang Zhuyang,Zhuyang Xiang,zhu yang,zhu yang xiang,竹阳,竹阳乡 30.73047 118.00215 P PPLA4 CN 01 0 25 Asia/Shanghai 2012-01-16
-1552492 Menkoutang Menkoutang Ch'iu-ts'un,Ch’iu-ts’un,Menkoutang,Qiucun,Qiucun Zhen,Qiucunzhen,men kou tang,qiu cun,qiu cun zhen,邱村,邱村镇,门口塘 31.01408 119.43949 P PPLA4 CN 01 0 31 Asia/Shanghai 2012-01-16
-1552494 Dongchong Dongchong Dongchong,Zhaocun,dong chong,zhao cun,东冲,赵村 31.02023 119.3771 P PPLA4 CN 01 0 29 Asia/Shanghai 2012-01-16
-1552501 Quantoushan Quantoushan Nanfeng,Nanfeng Zhen,Nanfengzhen,Quantoushan,nan feng,nan feng zhen,quan tou shan,南丰,南丰镇,拳头山 31.07047 119.21424 P PPLA4 CN 01 0 14 Asia/Shanghai 2012-01-16
-1552504 Shuiming Shuiming Shuiming,Shuiming Xiang,shui ming,shui ming xiang,水鸣,水鸣乡 31.03333 119.15 P PPLA4 CN 01 0 39 Asia/Shanghai 2012-01-16
-1552510 Xinhang Xinhang Xinhang,Xinhang Zhen,Xinhangzhen,xin hang,xin hang zhen,新杭,新杭镇 31.07306 119.55696 P PPLA4 CN 01 0 69 Asia/Shanghai 2012-01-16
-1552568 Doumenkou Doumenkou Doumenkou,Wuxing,dou men kou,wu xing,五星,陡门口 31.00833 118.78333 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-16
-1552574 Guquan Guquan Guquan,Guquanzhen,gu quan,gu quan zhen,古泉,古泉镇 31.02017 118.65144 P PPLA4 CN 01 0 35 Asia/Shanghai 2012-01-16
-1552590 Rencunwan Rencunwan Rencunwan,Yangxian,ren cun wan,yang xian,仁村湾,养贤 31.09167 118.75833 P PPLA4 CN 01 0 10 Asia/Shanghai 2012-01-16
-1552618 Huaqiao Huaqiao Huaqiao,Huaqiao Zhen,hua qiao,hua qiao zhen,花桥,花桥镇 31.18668 118.69336 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-16
-1552638 Dongqi Dongqi Dongqi,dong qi,东七 31.00616 118.43285 P PPLA4 CN 01 0 10 Asia/Shanghai 2012-01-16
-1552658 Eshan Eshan Eshan,e shan,峨山 31.06429 118.21579 P PPLA4 CN 01 0 18 Asia/Shanghai 2012-01-16
-1552707 Jingshan Jingshan Jingshan,Jingshan Jiedao,Jingshanzhen,jing shan,jing shan jie dao,荆山,荆山街道 31.31342 118.44698 P PPLA4 CN 01 0 18 Asia/Shanghai 2012-01-16
-1552729 Xiaojiangba Xiaojiangba Baiyin Zhen,Baiyinzhen,Xiaojiangba,bai yin zhen,xiao jiang ba,小江坝,白茚镇 31.28495 118.06213 P PPLA4 CN 01 0 15 Asia/Shanghai 2012-01-16
-1552834 Shiqiao Shiqiao Shiqiao,Shiqiao Zhen,shi qiao,shi qiao zhen,石桥,石桥镇 31.4432 118.60018 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-16
-1552877 Liu‘an Liu`an Jiashan,Liu`an,Liu‘an,jia shan,liu an,佳山,六安 31.65 118.525 P PPLA4 CN 01 0 12 Asia/Shanghai 2012-01-16
-1552881 Niandou Niandou Niandou,nian dou,年陡 31.43333 118.45833 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-16
-1552882 Guandou Guandou Guandou,Guandou Jiedao,guan dou,guan dou jie dao,官陡,管陡街道 31.37739 118.38954 P PPLA4 CN 01 0 14 Asia/Shanghai 2012-01-16
-1552907 Longshanqiao Longshanqiao Longshanqiao,Longshanqiaozhen,Taibai,Taibai Zhen,long shan qiao,tai bai zhen,太白镇,龙山桥 31.49622 118.48122 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-16
-1552931 Dongjiang Matoukou Dongjiang Matoukou Dongjiang Matoukou,Jiangxin,dong jiang ma tou kou,jiang xin,东江马头口,江心 31.59644 118.451 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-16
-1552971 Yushan Yushan Yushan 31.67867 118.49458 P PPLA3 CN 01 0 14 Asia/Shanghai 2012-01-16
-1553033 Shiyang Shiyang Shiyang,Shiyang Zhen,shi yang,shi yang zhen,石杨,石杨镇 31.95 118.275 P PPLA4 CN 01 0 9 Asia/Shanghai 2012-01-16
-1553046 Erlangkou Erlangkou Erlangkou,Erlangkouzhen,er lang kou,er lang kou zhen,二郎口,二郎口镇 31.96969 118.12768 P PPLA4 CN 01 0 33 Asia/Shanghai 2012-01-16
-1553247 Shichuan Shichuan Ling-nan-ts'un,Ling-nan-ts’un,Lingnan,Shichuan,ling nan,shi chuan,岭南,石川 29.44111 118.16639 P PPLA4 CN 01 0 253 Asia/Shanghai 2012-01-16
-1553285 Banqiao Banqiao Banqiao,Banqiao Xiang,ban qiao,ban qiao xiang,板桥,板桥乡 29.61278 117.94861 P PPLA4 CN 01 0 289 Asia/Shanghai 2012-01-16
-1553299 Shanhou Shanhou Shanhou,Shanhou Xiang,shan hou,shan hou xiang,山后,山后乡 29.66169 117.86407 P PPLA4 CN 01 0 298 Asia/Shanghai 2012-01-16
-1553356 Liyang Liyang Liyang,Liyangzhen,li yang,li yang zhen,黎阳,黎阳镇 29.7057 118.28624 P PPLA4 CN 01 0 134 Asia/Shanghai 2012-01-16
-1553369 Xintan Xintan Hsin-t'an,Hsin-t’an,Xintan,Xintan Zhen,xin tan,xin tan zhen,新潭,新潭镇 29.7361 118.28085 P PPLA4 CN 01 0 136 Asia/Shanghai 2012-01-16
-1553371 Yiqi Yiqi Yiqi,Yiqi Zhen,yi qi,yi qi zhen,奕棋,奕棋镇 29.72669 118.25692 P PPLA4 CN 01 0 138 Asia/Shanghai 2012-01-16
-1553396 Zhengcun Zhengcun Cheng-ts'un,Cheng-ts’un,Zhengcun,Zhengcun Zhen,zheng cun,zheng cun zhen,郑村,郑村镇 29.86032 118.37407 P PPLA4 CN 01 0 122 Asia/Shanghai 2012-01-16
-1553399 Chengkan Chengkan Chengkan,Chengkan Zhen,cheng kan,cheng kan zhen,呈坎,呈坎镇 29.92361 118.28361 P PPLA4 CN 01 0 191 Asia/Shanghai 2012-01-16
-1553429 Jiangtan Jiangtan Jiangtan,Jiangtan Xiang,jiang tan,jiang tan xiang,江潭,江潭乡 29.69583 117.95833 P PPLA4 CN 01 0 183 Asia/Shanghai 2012-01-16
-1553431 Bingtan Bingtan Bingtan,Bingtan Xiang,bing tan,bing tan xiang,冰潭,冰潭乡 29.72258 117.91658 P PPLA4 CN 01 0 247 Asia/Shanghai 2012-01-16
-1553475 Xuling Xuling Hsu-ling,Hsü-ling,Xuling,Xuling Xiang,xu ling,xu ling xiang,胥岭,胥岭乡 29.89235 117.72406 P PPLA4 CN 01 0 142 Asia/Shanghai 2012-01-16
-1553484 Bishan Bishan Bishan,Bishan Xiang,San-tu,bi shan,bi shan xiang,碧山,碧山乡 29.95423 117.90902 P PPLA4 CN 01 0 246 Asia/Shanghai 2012-01-16
-1553488 Datan Datan Datan,Datan Xiang,da tan,da tan xiang,大坦,大坦乡 29.94565 117.75102 P PPLA4 CN 01 0 210 Asia/Shanghai 2012-01-16
-1553493 Guxi Guxi Guxi,Guxi Xiang,gu xi,gu xi xiang,古溪,古溪乡 29.94778 117.57634 P PPLA4 CN 01 0 177 Asia/Shanghai 2012-01-16
-1553494 Yangshu Yangshu Penglong,Penglong Xiang,Yangshu,peng long,peng long xiang,yang shu,彭龙,彭龙乡,杨树 29.94554 117.50905 P PPLA4 CN 01 0 160 Asia/Shanghai 2012-01-16
-1553496 Longjiang Longjiang Longjiang,Longjiang Xiang,long jiang,long jiang xiang,龙江,龙江乡 29.9635 117.95236 P PPLA4 CN 01 0 227 Asia/Shanghai 2012-01-16
-1553509 Zhupu Zhupu Zhupu,Zhupu Xiang,zhu pu,zhu pu xiang,竹铺,竹铺乡 30.03753 118.83217 P PPLA4 CN 01 0 314 Asia/Shanghai 2012-01-16
-1553528 Chang’an Chang'an Chang'an,Chang'an Zhen,Chang’an,Chang’an Zhen,zhang an,zhang an zhen,长安,长安镇 30.1524 118.51912 P PPLA4 CN 01 0 320 Asia/Shanghai 2012-01-16
-1553531 Jingzhou Jingzhou Jingzhou,Jingzhou Xiang,jing zhou,jing zhou xiang,荆州,荆州乡 30.19281 118.86242 P PPLA4 CN 01 0 660 Asia/Shanghai 2012-01-16
-1553539 Banqiaotou Banqiaotou Banqiaotou,Banqiaotou Xiang,ban qiao tou,ban qiao tou xiang,板桥头,板桥头乡 30.2 118.6 P PPLA4 CN 01 0 352 Asia/Shanghai 2012-01-16
-1553563 Shichuan Shichuan Shichuan,Shichuan Xiang,shi chuan,shi chuan xiang,仕川,仕川乡 30.29486 118.67057 P PPLA4 CN 01 0 331 Asia/Shanghai 2012-01-16
-1553566 Jingqiao Jingqiao Jingqiao,Jingqiao Xiang,jing qiao,jing qiao xiang,旌桥,旌桥乡 30.31462 118.58821 P PPLA4 CN 01 0 224 Asia/Shanghai 2012-01-16
-1553567 Huatan Huatan Huatan,Huatan Xiang,hua tan,hua tan xiang,华坦,华坦乡 30.32891 118.5381 P PPLA4 CN 01 0 198 Asia/Shanghai 2012-01-16
-1553570 Daguyun Daguyun Daguyun,Daguyun Xiang,da gu yun,da gu yun xiang,大谷运,大谷运乡 30.061 118.42208 P PPLA4 CN 01 0 319 Asia/Shanghai 2012-01-16
-1553571 Huangcun Huangcun Huangcun,Huangcun Xiang,huang cun,huang cun xiang,黄村,黄村乡 30.01451 118.40367 P PPLA4 CN 01 0 296 Asia/Shanghai 2012-01-16
-1553596 Shangzhuang Shangzhuang Shangzhuang,Shangzhuang Zhen,shang zhuang,shang zhuang zhen,上庄,上庄镇 30.12441 118.43359 P PPLA4 CN 01 0 287 Asia/Shanghai 2012-01-16
-1553623 Gengcheng Gengcheng Gengcheng,Gengcheng Zhen,geng cheng,geng cheng zhen,耿城,耿城镇 30.23044 118.15897 P PPLA4 CN 01 0 198 Asia/Shanghai 2012-01-16
-1553629 Suncun Suncun Suncun,Suncun Xiang,sun cun,sun cun xiang,孙村,孙村乡 30.31606 118.41349 P PPLA4 CN 01 0 166 Asia/Shanghai 2012-01-16
-1553729 Wanjia Wanjia Wan-chia-ch'iao,Wan-chia-ch’iao,Wanjia,wan jia,万家 30.40417 119.13333 P PPLA4 CN 01 0 223 Asia/Shanghai 2012-01-16
-1553739 Zhongxi Zhongxi Zhongxi,Zhongxi Zhen,zhong xi,zhong xi zhen,中溪,中溪镇 30.48657 119.1585 P PPLA4 CN 01 0 88 Asia/Shanghai 2012-01-16
-1553794 Xiaxi Xiaxi Xiaxi,Xiaxi Zhen,Xiaxizhen,xia xi,xia xi zhen,霞西,霞西镇 30.5 118.93333 P PPLA4 CN 01 0 88 Asia/Shanghai 2012-01-16
-1553800 Fangtang Fangtang Fangtang,Fangtang Xiang,fang tang,fang tang xiang,方塘,方塘乡 30.47917 118.72917 P PPLA4 CN 01 0 143 Asia/Shanghai 2012-01-16
-1553803 Yunle Yunle Yunle,Yunle Xiang,yun le,yun le xiang,云乐,云乐乡 30.45 118.63333 P PPLA4 CN 01 0 267 Asia/Shanghai 2012-01-16
-1553826 Tingxi Tingxi Tingxi,Tingxi Xiang,ting xi,ting xi xiang,汀溪,汀溪乡 30.60655 118.61032 P PPLA4 CN 01 0 202 Asia/Shanghai 2012-01-16
-1553829 Suhong Suhong Suhong,Suhong Xiang,su hong,su hong xiang,苏红,苏红乡 30.57917 118.54583 P PPLA4 CN 01 0 151 Asia/Shanghai 2012-01-16
-1553833 Qinglong Qinglong Qinglong,Qinglong Xiang,Qinglongqiao Xiang,qing long,qing long qiao xiang,qing long xiang,青龙,青龙乡,青龙桥乡 30.62083 118.9 P PPLA4 CN 01 0 156 Asia/Shanghai 2012-01-16
-1553840 Aimin Aimin Aimin,Aimin Xiang,ai min,ai min xiang,爱民,爱民乡 30.64748 118.61724 P PPLA4 CN 01 0 179 Asia/Shanghai 2012-01-16
-1553845 Caijiaqiao Caijiaqiao Caijiaqiao,Caijiaqiao Zhen,cai jia qiao,cai jia qiao zhen,蔡家桥,蔡家桥镇 30.34281 118.47014 P PPLA4 CN 01 0 158 Asia/Shanghai 2012-01-16
-1553849 Xinming Xinming Xinming,Xinming Xiang,xin ming,xin ming xiang,新明,新明乡 30.336 118.24425 P PPLA4 CN 01 0 205 Asia/Shanghai 2012-01-16
-1553853 Pinghu Pinghu Pinghu,Pinghu Zhen,ping hu,ping hu zhen,平湖,平湖镇 30.32815 118.00544 P PPLA4 CN 01 0 153 Asia/Shanghai 2012-01-16
-1553870 Xinhua Xinhua Xinhua,Xinhua Xiang,xin hua,xin hua xiang,新华,新华乡 30.44823 118.0393 P PPLA4 CN 01 0 141 Asia/Shanghai 2012-01-16
-1553878 Xinfeng Xinfeng Xinfeng,Xinfeng Xiang,xin feng,xin feng xiang,新丰,新丰乡 30.50419 118.07778 P PPLA4 CN 01 0 102 Asia/Shanghai 2012-01-16
-1553908 Dingjiaqiao Dingjiaqiao Dingjiaqiao,Dingjiaqiao Zhen,ding jia qiao,ding jia qiao zhen,丁家桥,丁家桥镇 30.6455 118.30842 P PPLA4 CN 01 0 42 Asia/Shanghai 2012-01-16
-1553911 Zhongcun Zhongcun Zhongcun,Zhongcun Xiang,zhong cun,zhong cun xiang,中村,中村乡 30.61667 118.18333 P PPLA4 CN 01 0 64 Asia/Shanghai 2012-01-16
-1554340 Muta Muta Muta,Muta Xiang,mu ta,mu ta xiang,木塔,木塔乡 29.77592 117.04995 P PPLA4 CN 01 0 112 Asia/Shanghai 2012-01-16
-1554363 Makeng Makeng Makeng,Makeng Xiang,ma keng,ma keng xiang,马坑,马坑乡 29.92468 117.08471 P PPLA4 CN 01 0 97 Asia/Shanghai 2012-01-16
-1554371 Huayuanli Huayuanli Huayuan,Huayuanli,Huayuanli Xiang,hua yuan li,hua yuan li xiang,花园里,花园里乡 29.96497 117.01471 P PPLA4 CN 01 0 46 Asia/Shanghai 2012-01-16
-1783552 Yuele Yuele Yueh-le,Yuele,Yuele Zhen,Yüeh-le,yue le,yue le zhen,悦乐,悦乐镇 36.26566 107.90945 P PPLA4 CN 15 0 1149 Asia/Chongqing 2012-01-18
-1783553 Yingge Yingge Ying-ko-tsui,Yingge,Yingge Zhen,Yinggezui,ying ge,ying ge zhen,鹦鸽,鹦鸽镇 34.09559 107.64857 P PPLA4 CN 26 0 852 Asia/Chongqing 2012-01-18
-1783554 Yaxing Yaxing Ya-hsing,Ya-hsing-shih,Yaxing,Yaxing Zhen,ya xing,ya xing zhen,雅星,雅星镇 19.44778 109.26273 P PPLA4 CN 31 0 146 Asia/Chongqing 2012-01-18
-1783556 Xianshui Xianshui Daou,Dawu,Tao-fou,Tao-fu,Tao-fu-hsien,Tao-tu,Tao-wu,Xianshui,xian shui,鲜水 30.99145 101.12701 P PPLA3 CN 32 0 3243 Asia/Chongqing 2012-01-18
-1783557 Lintan Chengguanzhen Lintan Chengguanzhen Chiu-ch'eng,Chiu-ch'eng-chen,Chiu-ch’eng,Chiu-ch’eng-chen,Chiu-t'ao-ch'eng,Chiu-t'ao-chou,Chiu-t’ao-chou,Chiu-t’ao-ch’eng,Jiucheng,Lin-t'an Chiu-ch'eng,Lin-t’an Chiu-ch’eng,Lintan,Lintan Chengguanzhen,Lintan Xian,Taochow,Taochow Old City,lin tan,lin tan cheng guan zhen,lin tan xian,临潭,临潭县,临潭城关镇 34.68885 103.35242 P PPLA3 CN 15 0 2762 Asia/Chongqing 2012-01-18
-1783573 Hangkou Hangkou Hangkou,Hangkou Zhen,Heng-k'ou,Heng-k’ou,hang kou,hang kou zhen,杭口,杭口镇 29.04739 114.44184 P PPLA4 CN 03 0 102 Asia/Shanghai 2012-01-18
-1783581 Changjing Changjing Ch'ang-ching,Ch'ang-ching-chen,Changjing,Ch’ang-ching,Ch’ang-ching-chen,zhang jing,长泾 31.75111 120.4775 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1783596 Longtan Longtan Longtan,Longtan Zhen,Tso-t'an,Tso-t’an,Zuotan,long tan,龙潭 23.71242 114.10591 P PPLA4 CN 30 0 95 Asia/Chongqing 2012-01-18
-1783600 Liaoyang Liaoyang Liao,Liao-hsien,Liaoyang,Liaoyang Zhen,Lyaosyan',Lyaosyan’,Tso-ch'uan,Tso-ch'uan-hsien,Tso-ch’üan,Tso-ch’üan-hsien,Zuoquan,Zuoquan Xian,liao yang,liao yang zhen,zuo quan xian,左权县,辽阳,辽阳镇 37.07977 113.33986 P PPLA3 CN 24 0 1139 Asia/Shanghai 2012-01-18
-1783621 Zunyi Zunyi Tsun-i,Tsun-i-ch'eng,Tsun-i-ch’eng,Tsun-i-hsien,Tsun-i-shih,Tsunyi,Tsunyi-hsien,Zunyi,zun yi shi,遵义市 27.68667 106.90722 P PPL CN 18 466292 867 Asia/Chongqing 2012-01-18
-1783625 Zuitou Zuitou T'ai-pai,T'ai-pai-ch'u,Ta-pai,Taibai Xian,Tsui-t'ou,Tsui-t'ou-chen,Tsui-t’ou,Tsui-t’ou-chen,Tszuytouchzhen',Tszuytouchzhen’,T’ai-pai,T’ai-pai-ch’ü,Zuitou,Zuitou Zhen,Zuitoujie,tai bai xian,zui tou,嘴头,太白县 34.06219 107.31266 P PPLA3 CN 26 0 1542 Asia/Chongqing 2012-01-18
-1783626 Zuitai Zuitai Chiu-k'ang-hsien,Chiu-k’ang-hsien,K'ang,K'ang-hsien,K'ang-hsien-ku-chih,Kangxian,K’ang,K’ang-hsien,K’ang-hsien-ku-chih,Pai-ma-kuan,Tsui-t'ai-tzu,Tsui-t’ai-tzu,Zuitai,Zuitai Zhen,Zuitaizi,ju tai,ju tai zhen,kang xian,咀台,咀台镇,康县 33.33083 105.60467 P PPLA3 CN 15 0 1181 Asia/Chongqing 2012-01-18
-1783628 Zuhu Zuhu Tsu-hu,Tsu-hu-pao,Zuhu,Zuhu Xiang,zu hu,zu hu xiang,阻虎,阻虎乡 39.73178 112.03088 P PPLA4 CN 24 0 1677 Asia/Chongqing 2012-01-18
-1783631 Zu’an Zu'an Tsu-an,Tsu-an-chen,Zu'an,Zu'an Zhen,Zu’an,Zu’an Zhen,zu an,zu an zhen,祖庵,祖庵镇 34.09556 108.48444 P PPLA4 CN 26 0 431 Asia/Chongqing 2012-01-18
-1783633 Zoucheng Zoucheng Chou-hsien,Tsou,Tsou-hsien,Tsowhsien,Zoucheng,Zouxian 35.40056 116.96556 P PPL CN 25 190537 76 Asia/Shanghai 2012-01-18
-1783636 Zoushi Zoushi Tsou-shih,Tsowshih,Zoushi,Zoushi Zhen,zou shi,zou shi zhen,陬市,陬市镇 29.04397 111.53886 P PPLA4 CN 11 0 44 Asia/Shanghai 2012-01-18
-1783639 Zouqiao Zouqiao Tsou-ch'iao,Tsou-ch’iao,Zouqiao,Zouqiao Xiang,zou qiao,zou qiao xiang,邹桥,邹桥乡 29.42384 115.48539 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-18
-1783643 Zouma Zouma Tsou-ma-p'ing,Tsou-ma-p’ing,Zouma,Zoumaping,Zuoma Zhen,zou ma,zou ma zhen,走马,走马镇 29.82833 110.42306 P PPLA4 CN 12 0 969 Asia/Chongqing 2012-01-18
-1783649 Zongying Zongying Tsung-chia-ying,Tsung-ying,Tsung-ying-chen,Zongying,Zongying Zhen,zong ying,zong ying zhen,宗营,宗营镇 33.15794 106.98042 P PPLA4 CN 26 0 537 Asia/Chongqing 2012-01-18
-1783651 Zongyang Zongyang Ts'ung-yang,Ts'ung-yang-chen,Ts’ung-yang,Ts’ung-yang-chen,Zongyang,cong yang,枞阳 30.69889 117.20417 P PPLA3 CN 01 0 36 Asia/Shanghai 2012-01-18
-1783657 Zongluzui Zongluzui Zongluzui,Zongluzui Zhen,zong lu ju,zong lu ju zhen,总路咀,总路咀镇 30.69683 115.06036 P PPLA4 CN 12 0 51 Asia/Shanghai 2012-01-18
-1783683 Yanjiang Yanjiang Czyjan,Tszoyan,Tszöyan,Tzeyang,Tzeyang-hsien,Tzu-yang,Tzu-yang-hsien,Yanjiang,Ziyang,yan jiang,Цзыян,雁江 30.12108 104.64811 P PPLA3 CN 32 87400 365 Asia/Chongqing 2012-01-18
-1783690 Zixi Zixi Tzu-ch'i-chieh,Tzu-chi,Tzu-ch’i-chieh,Tzu-hsi,Zixi,Zixi Xiang,zi xi,zi xi xiang,紫溪,紫溪乡 28.06949 117.784 P PPLA4 CN 03 0 211 Asia/Shanghai 2012-01-18
-1783694 Ziwu Ziwu Tzu-wu,Tzu-wu-chen,Ziwu,Ziwu Jieban,Ziwuzhen,zi wu,zi wu jie ban,子午,子午街办 34.05805 108.89362 P PPLA4 CN 26 0 499 Asia/Chongqing 2012-01-18
-1783699 Wenchang Wenchang Tsu-t'ung,Tsu-t’ung,Tzetung-hsien,Tzu-t'ung,Tzu-t'ung-hsien,Tzu-t’ung,Tzu-t’ung-hsien,Wenchang,Zitong,wen chang,文昌 31.63626 105.15502 P PPLA3 CN 32 0 484 Asia/Chongqing 2012-01-18
-1783707 Zishan Zishan Tzeshansu,Tzu-shan,Tzu-shan-hsu,Tzu-shan-hsü,Tzu-shan-shih,Zishan,Zishan Zhen,zi shan,zi shan zhen,梓山,梓山镇 25.95995 115.54122 P PPLA4 CN 03 0 129 Asia/Shanghai 2012-01-18
-1783708 Zirun Zirun Tzu-jun,Tzu-jun-ts'un,Tzu-jun-ts’un,Zirun,Zirun Xiang,zi run,zi run xiang,滋润,滋润乡 39.30346 112.68358 P PPLA4 CN 24 0 1041 Asia/Shanghai 2012-01-18
-1783719 Zilingpu Zilingpu Tzu-ling-p'u,Tzu-ling-p’u,Zilingpu,Zilingpu Zhen,zi ling pu,zi ling pu zhen,子陵铺,子陵铺镇 31.1314 112.21816 P PPLA4 CN 12 0 91 Asia/Chongqing 2012-01-18
-1783720 Zilang Zilang Tzu-liang-p'ing,Tzu-liang-p’ing,Zilang,Zilang Xiang,Ziliangping,zi liang,zi liang ping,zi liang xiang,子良,子良乡,子良坪 30.00393 111.21058 P PPLA4 CN 11 0 257 Asia/Shanghai 2012-01-18
-1783731 Zicheng Zicheng Tzekam,Tzekam-hsien,Tzu-ch'eng-chen,Tzu-chin,Tzu-ch’eng-chen,Wingon,Yung-an,Yunganhsien,Zicheng,Zijin,zi cheng,紫城 23.64442 115.1726 P PPLA3 CN 30 0 149 Asia/Shanghai 2012-01-18
-1783745 Zigong Zigong Tzekung,Tzeliuching,Tzeliutsing,Tzu-kung,Tzu-kung-shih,Tzu-liu-ching,Tzuliutsing,Zigong,zi gong,zi gong shi,自贡,自贡市 29.34162 104.77689 P PPL CN 32 689961 306 Asia/Chongqing 2012-01-18
-1783750 Zibu Zibu Zibu,Zibu Zhen,zi bu,zi bu zhen,梓埠,梓埠镇 28.85332 116.86293 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-18
-1783752 Zhuzuo Zhuzuo Zhuzuo,Zhuzuo Xiang,zhu ze,zhu ze xiang,竹笮,竹笮乡 26.38674 115.97978 P PPLA4 CN 03 0 193 Asia/Shanghai 2012-01-18
-1783762 Zhuzhoujiang Miaozuxiang Zhuzhoujiang Miaozuxiang Chu-chou-chiang,Zhuzhoujiang,Zhuzhoujiang Miaozuxiang 26.67528 110.07194 P PPL CN CN 11 1310 351 Asia/Chongqing 2012-01-18
-1783763 Zhuzhou Zhuzhou Chu-chou,Chu-chou-shih,Chuchow,Chzhuchzhou,Zhuzhou,Чжучжоу 27.83333 113.15 P PPL CN 11 709358 54 Asia/Chongqing 2012-01-18
-1783774 Zhuyuan Zhuyuan Chu-yuan,Chu-yuan-chen,Chu-yuan-chieh,Chu-yüan,Chu-yüan-chieh,Chü-yüan-chen,Zhuyuan,Zhuyuan Zhen,zhu yuan,zhu yuan zhen,竹园,竹园镇 24.10778 103.41861 P PPLA4 CN 29 0 1215 Asia/Chongqing 2012-01-18
-1783779 Zhuyeping Zhuyeping Zhuyeping,Zhuyeping Xiang,zhu ye ping,zhu ye ping xiang,竹叶坪,竹叶坪乡 29.47236 110.54193 P PPLA4 CN 11 0 427 Asia/Chongqing 2012-01-18
-1783786 Zhuyang Zhuyang Dazhu,Ta-chu,Ta-chu-ch'eng,Ta-chu-ch’eng,Ta-chu-hsien,Zhuyang,zhu yang,竹阳 30.73674 107.20116 P PPLA3 CN 32 0 400 Asia/Chongqing 2012-01-18
-1783792 Zhuxi Chengguanzhen Zhuxi Chengguanzhen Chu-ch'i,Chu-ch'i-hsien,Chu-ch’i,Chu-ch’i-hsien,Chu-hsi,Chuki,Chuki-hsien,Zhuxi,Zhuxi Chengguanzhen,zhu xi cheng guan zhen,竹溪城关镇 32.32569 109.72337 P PPLA3 CN 12 0 450 Asia/Chongqing 2012-01-18
-1783800 Zhuwa Zhuwa Zhuwa,Zhuwa Zhen,zhu wa,zhu wa zhen,竹瓦,竹瓦镇 30.59508 115.11656 P PPLA4 CN 12 0 54 Asia/Shanghai 2012-01-18
-1783804 Zhuting Zhuting Chu-t'ing,Chu-t’ing,Zhuting,Zhuting Xiang,zhu ting,zhu ting xiang,竹亭,竹亭乡 27.77601 114.07851 P PPLA4 CN 03 0 123 Asia/Chongqing 2012-01-18
-1783808 Zhutian Zhutian Chu-t'ien,Chu-t’ien,Zhutian,Zhutian Xiang,zhu tian,zhu tian xiang,珠田,珠田乡 28.75848 117.08115 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-18
-1783813 Zhutan Zhutan Chu-t'an,Chu-t'an-chen,Chu-t’an,Chu-t’an-chen,Zhutan,Zhutan Zhen,zhu tan,zhu tan zhen,株潭,株潭镇 28.05261 114.16055 P PPLA4 CN 03 0 139 Asia/Chongqing 2012-01-18
-1783820 Zhushi Zhushi Chu-shih,Zhushi,Zhushi Xiang,zhu shi,zhu shi xiang,诸市,诸市乡 33.06159 113.88882 P PPLA4 CN 09 0 79 Asia/Shanghai 2012-01-18
-1783825 Zhushan Chengguanzhen Zhushan Chengguanzhen Chu-shan,Chu-shan-hsien,Zhushan,Zhushan Chengguanzhen,zhu shan cheng guan zhen,竹山城关镇 32.22179 110.23614 P PPLA3 CN 12 0 259 Asia/Chongqing 2012-01-18
-1783836 Jiahe Chengguanzhen Jiahe Chengguanzhen Chia-ho,Chia-ho-hsien,Chu-ch'uan,Chu-ch’üan,Jiahe,Jiahe Chengguanzhen,Kiaho,Kiaho-hsien,Zhuquan,jia he cheng guan zhen,嘉禾城关镇 25.55936 112.36352 P PPLA3 CN 11 0 207 Asia/Chongqing 2012-01-18
-1783842 Zhuqi Zhuqi Chu-ch'i,Chu-ch’i,Chuki,Zhuqi 26.14611 119.10194 P PPL CN CN 07 2300 41 Asia/Shanghai 2012-01-18
-1783856 Zhuoyang Zhuoyang Zhuoyang,Zhuoyang Xiang,zhuo yang,zhuo yang xiang,卓洋,卓洋乡 26.63004 119.0215 P PPLA4 CN 07 2830 644 Asia/Shanghai 2012-01-18
-1783857 Zhuotian Zhuotian Cho-t'ien,Cho-t’ien,Zhuotian,Zhuotian Zhen,zhuo tian,zhuo tian zhen,濯田,濯田镇 25.55823 116.27568 P PPLA4 CN 07 0 274 Asia/Shanghai 2012-01-18
-1783873 Zhumadian Zhumadian Chu-ma-tien,Chu-ma-tien-chen,Chu-ma-tien-shih,Chzhumadjan',Hsin-chuang,Zhumadian,zhu ma dian shi,Чжумадянь,驻马店市 32.97944 114.02944 P PPL CN 09 8263100 89 Asia/Shanghai 2012-01-18
-1783886 Zhulin Zhulin Zhulin,Zhulin Zhen,zhu lin,zhu lin zhen,株林,株林镇 30.36946 115.49161 P PPLA4 CN 12 0 45 Asia/Shanghai 2012-01-18
-1783891 Zhuliang Zhuliang Chu-liang,Zhuliang,Zhuliang Zhen,zhu liang,zhu liang zhen,株良,株良镇 27.46838 116.60089 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-18
-1783894 Zhulan Zhulan Chu-lan-pu,Zhulan,Zhulan Xiang,Zhulanbu,zhu lan,zhu lan xiang,珠兰,珠兰乡 25.62681 115.71112 P PPLA4 CN 03 0 160 Asia/Shanghai 2012-01-18
-1783898 Zhukou Zhukou Chu-k'ou,Chu-k'ou-chen,Chu-k'ou-p'u,Chu-k’ou,Chu-k’ou-chen,Chu-k’ou-p’u,Zhukou,Zhukou Zhen,zhu kou,zhu kou zhen,朱口,朱口镇 26.97899 117.26048 P PPLA4 CN 07 0 315 Asia/Shanghai 2012-01-18
-1783903 Zhujing Zhujing Chin-shan,Chin-shan-hsien,Chu-ching,Chu-ching-chen,Chuking,Jinshan,Kinshan,Zhujing,Zhujing Zhen,zhu jing,zhu jing zhen,朱泾,朱泾镇 30.901 121.15966 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1783906 Zhujiazhuang Zhujiazhuang Chu-chia-chuang,Zhujiazhuang,Zhujiazhuang Zhen,zhu jia zhuang,zhu jia zhuang zhen,祝家庄,祝家庄镇 34.47236 107.7806 P PPLA4 CN 26 0 743 Asia/Chongqing 2012-01-18
-1783913 Zhujiang Zhujiang Chu-chiang-ch'ing,Chu-chiang-ch’ing,Zhujiang,Zhujiang Xiang,Zhujiangqing,zhu jiang,zhu jiang xiang,竹江,竹江乡 27.27685 114.70443 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-18
-1783920 Zhujiajiao Zhujiajiao Ching-t'ing-chiang,Ching-t’ing-chiang,Chu-chia-chiao,Chu-chieh-ko,Zhujiajiao,Zhujiajiao Zhen,zhu jia jiao,zhu jia jiao zhen,朱家角,朱家角镇 31.10757 121.05696 P PPLA4 CN 23 0 9 Asia/Shanghai 2012-01-18
-1783924 Zhuangxing Zhuangxing Chu-chia-hang,Chu-chia-hang-chen,Chu-chia-hsing-chen,Zhuangxing,Zhuhang,Zhuhang Xiang,Zhujiahang,zhuang xing,庄行 30.85157 121.33352 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1783934 Shangqiu Shangqiu Chu-chi,Chu-kia-tsi,Chu-sun-chi,Shancju,Shang-ch'iu,Shang-ch'iu-shih,Shang-ch’iu,Shang-ch’iu-shih,Shangqiu,Zhuji,Шанцю 34.45 115.65 P PPL CN 09 181218 51 Asia/Shanghai 2012-01-18
-1783940 Zhuji Zhuji Chu-chi,Chu-chi-hsien,Chu-chi-hsien-ch'eng,Chu-chi-hsien-ch’eng,Chuki,Chukihsien,Zhuji,Zhuji Shi,zhu ji,zhu ji shi,诸暨,诸暨市 29.71876 120.24233 P PPLA3 CN 02 110721 23 Asia/Shanghai 2012-01-18
-1783946 Zhuhong Zhuhong Chu-heng-chiang,Chu-hung,Chu-hung-chiang,Zhuhong,Zhuhong Zhen,zhu hong,zhu hong zhen,竹泓,竹泓镇 32.87883 119.98335 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-18
-1783949 Zhuhang Zhuhang Chu-hang,Chu-hang-chen,Chu-hsing-chen,Zhuhang,zhu xing,竹行 31.90139 120.9825 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1783956 Zhouqu Chengguanzhen Zhouqu Chengguanzhen Chou-ch'u,Chou-ch'u-hsien,Chou-ch’ü,Chou-ch’ü-hsien,Hsi-ku,Hsi-ku-hsien,Hsi-ku-hsien-ch'eng,Hsi-ku-hsien-ch’eng,Lung-tieh,Si-ku,Zhouqu,Zhouqu Chengguanzhen,Zhouqu Xian,Zhugqu,zhou qu,zhou qu cheng guan zhen,zhou qu xian,舟曲,舟曲县,舟曲城关镇 33.78417 104.36278 P PPLA3 CN 15 0 1326 Asia/Chongqing 2012-01-18
-1783964 Zhushi Zhushi Chu-kao-t'ang,Chu-kao-t’ang,Zhugaotang,Zhushi 27.08778 110.67694 P PPL CN CN 11 2130 289 Asia/Chongqing 2012-01-18
-1783970 Zhufeng Zhufeng Chu-feng,Chu-feng-chen,Zhufeng,Zhufeng Xiang,Zhufengzhen,zhu feng,竹峰 30.56813 118.93642 P PPLA4 CN 01 0 95 Asia/Shanghai 2012-01-18
-1783978 Zhudian Zhudian Zhudian,Zhudian Xiang,zhu dian,zhu dian xiang,朱店,朱店乡 35.11567 105.9466 P PPLA4 CN 15 0 1507 Asia/Chongqing 2012-01-18
-1783986 Zhucun Zhucun Chu-ts'un,Chu-ts’un,Zhucun,Zhucun Jiedao,zhu cun,朱村 23.2796 113.68785 P PPLA4 CN 30 0 10 Asia/Chongqing 2012-01-18
-1783988 Zhucheng Zhucheng Chu-ch'eng,Chu-ch’eng,Chu-hsien,Zhucheng 35.99472 119.3975 P PPL CN 25 109968 64 Asia/Shanghai 2012-01-18
-1784001 Zhuantang Zhuantang Chuan-t'ang,Chuan-t’ang,Zhuantang,Zhuantang Jiedao,Zhuantang Zhen,zhuan tang,zhuan tang jie dao,zhuan tang zhen,转塘,转塘街道,转塘镇 30.1635 120.07613 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-18
-1784008 Zhuanqiang Zhuanqiang Chuan-ch'iang,Chuan-ch’iang,Zhuanqiang,Zhuanqiang Zhen,zhuan qiang,zhuan qiang zhen,砖墙,砖墙镇 31.26373 118.81373 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1784033 Zhuangtou Zhuangtou 39.65778 117.29167 P PPL CN 28 2194 6 Asia/Shanghai 2000-11-21
-1784037 Zhuangtou Zhuangtou Chuang-t'ou,Chuang-tzu-t'ou,Chuang-tzu-t’ou,Chuang-t’ou,Zhuangtou,Zhuangtou Zhen,zhuang tou,zhuang tou zhen,庄头,庄头镇 34.2575 108.45167 P PPLA4 CN 26 0 413 Asia/Chongqing 2012-01-18
-1784040 Zhuangta Zhuangta Chuang-t'a,Chuang-t’a,Zhuangta,Zhuangta Xiang,zhuang ta,zhuang ta xiang,庄塌,庄塌乡 29.62815 110.9011 P PPLA4 CN 11 0 436 Asia/Chongqing 2012-01-18
-1784041 Zhuangshi Zhuangshi Chuang-shih,Chuang-shih-chen,Zhuangshi,Zhuangshi Jiedao,zhuang shi,zhuang shi jie dao,庄市,庄市街道 29.93306 121.60962 P PPLA4 CN 02 0 1 Asia/Shanghai 2012-01-18
-1784044 Zhuangqiao Zhuangqiao Chang-ch'iao,Chang-ch'iao-chen,Chang-ch’iao,Chang-ch’iao-chen,Changkiao,Chuang-ch'iao,Chuang-ch'iao-chen,Chuang-ch’iao,Chuang-ch’iao-chen,Zhuangqiao,Zhuangqiao Zhen,zhuang qiao,zhuang qiao zhen,庄桥,庄桥镇 29.93 121.54833 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1784050 Zhuangli Zhuangli Chuang-li,Chuang-li-chen,Zhuangli,Zhuangli Zhen,zhuang li,庄里 34.81958 109.05984 P PPLA4 CN 26 0 542 Asia/Chongqing 2012-01-18
-1784055 Zhuanghe Zhuanghe Chuang-ho,Chuang-ho-chen,Chuang-ho-chieh,Chuang-ho-hsien,Chwangho,Zhuanghe 39.70083 122.99111 P PPL CN 19 80384 5 Asia/Harbin 2012-01-18
-1784073 Zhouzhuang Zhouzhuang Chou-chuang,Chou-chuang-chen,Zhouzhuang,Zhouzhuang Zhen,zhou zhuang,zhou zhuang zhen,周庄,周庄镇 31.86539 120.41046 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1784074 Zhouzhuang Zhouzhuang Chou-chuang,Chou-chuang-chen,Chzhouchzhuan,Zhouzhuang,zhou zhuang,Чжоучжуан,周庄 31.11614 120.8451 P PPLA4 CN 04 22000 7 Asia/Shanghai 2012-01-18
-1784082 Zhouxin Zhouxin Chou-hsin,Chou-hsin-hsu,Chou-hsin-hsü,Chowsin,Zhouxin,Zhouxin Jiedao,zhou xin,洲心 23.68078 113.08494 P PPLA4 CN 30 0 19 Asia/Chongqing 2012-01-18
-1784083 Zhouxi Zhouxi Zhouxi,Zhouxi Zhen,Zhouxijie,zhou xi,zhou xi zhen,周溪,周溪镇 29.1859 116.38944 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1784087 Zhouxiang Zhouxiang Chou-hsiang,Chou-hsiang-chen,Zhouxiang,Zhouxiang Zhen,zhou xiang,zhou xiang zhen,周巷,周巷镇 30.17443 121.12769 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1784090 Zhouwang Zhouwang Chou-wang-p'u,Chou-wang-p’u,Zhouwang,Zhouwang Zhen,Zhouwangpu,zhou wang,zhou wang pu,zhou wang zhen,周旺,周旺铺,周旺镇 27.19444 111.19444 P PPLA4 CN 11 0 356 Asia/Chongqing 2012-02-28
-1784091 Zhouwangmiao Zhouwangmiao Chou-wang-miao,Chou-wang-miao-chen,Zhouwangmiao,Zhouwangmiao Zhen,zhou wang miao,zhou wang miao zhen,周王庙,周王庙镇 30.46367 120.50448 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1784094 Zhoutou Zhoutou Lao-chou-t'ou,Lao-chou-t’ou,Laozhoutou,Zhoutou,Zhoutou Xiang,zhou tou,zhou tou xiang,洲头,洲头乡 29.86409 116.31816 P PPLA4 CN 01 0 23 Asia/Shanghai 2012-01-18
-1784098 Zhoutian Zhoutian Chou-t'ien,Chou-t'ien-hsu,Chou-t’ien,Chou-t’ien-hsü,Zhoutian,Zhoutian Zhen,zhou tian,zhou tian zhen,周田,周田镇 25.32882 115.72783 P PPLA4 CN 03 0 212 Asia/Shanghai 2012-01-18
-1784099 Zhoutian Zhoutian Zhoutian,Zhoutian Zhen,zhou tian,zhou tian zhen,周田,周田镇 24.97233 113.81957 P PPLA4 CN 30 0 70 Asia/Shanghai 2012-02-28
-1784103 Zhoushi Zhoushi Chou-shu,Chou-shu-chen,Zhoushi,Zhoushu,zhou shi,周市 31.46361 120.98639 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1784109 Zhouquan Zhouquan Chou-ch'uan,Chou-ch'uan-chen,Chou-ch’üan,Chou-ch’üan-chen,Zhouquan,Zhouquan Zhen,zhou quan,zhou quan zhen,洲泉,洲泉镇 30.57926 120.34748 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1784123 Zhouling Zhouling Chou-kung-mu,Chou-ling,Zhouling,Zhouling Zhen,zhou ling,zhou ling zhen,周陵,周陵镇 34.40528 108.72722 P PPLA4 CN 26 0 475 Asia/Chongqing 2012-01-18
-1784130 Zhoukou Zhoukou Chou-chia-k'ou,Chou-chia-k’ou,Chou-k'ou,Chou-k'ou-chen,Chou-k’ou,Chou-k’ou-chen,Chow-kia-kow,Chzhouko,Shang-shui-hsien,Zhoukou,Zhoukouzhen,Чжоуко 33.63333 114.63333 P PPL CN 09 377061 54 Asia/Shanghai 2012-01-18
-1784131 Zhoukou Zhoukou Chou-k'ou,Chou-k'ou-chen,Chou-k’ou,Chou-k’ou-chen,Chowkow,Chzhoukou,Peng'an,Peng’an,Zhoukou,zhou kou,周口 31.03472 106.40113 P PPLA3 CN 32 0 320 Asia/Chongqing 2012-01-18
-1784132 Zhoukou Zhoukou Zhoukou,Zhoukou Zhen,zhou kou,zhou kou zhen,洲口,洲口镇 29.01528 112.045 P PPLA4 CN 11 0 27 Asia/Chongqing 2012-01-18
-1784155 Zhoujiadian Zhoujiadian Chou-chia-tien,Zhoujiadian,Zhoujiadian Zhen,zhou jia dian,zhou jia dian zhen,周家店,周家店镇 29.24798 111.9 P PPLA4 CN 11 0 39 Asia/Shanghai 2012-01-18
-1784163 Zhouhu Zhouhu Chou-hu,Chou-hu-shih,Zhouhu,Zhouhu Zhen,zhou hu,zhou hu zhen,洲湖,洲湖镇 27.1592 114.52026 P PPLA4 CN 03 0 75 Asia/Shanghai 2012-01-18
-1784174 Zhoufang Zhoufang Zhoufang,zhou fang zhen,周坊镇 28.52934 117.16662 P PPLA4 CN 03 0 79 Asia/Shanghai 2012-01-18
-1784178 Zhoucun Zhoucun Chou-lin-chen,Chou-ts'un,Chou-ts'un-chen,Chou-ts’un,Chou-ts’un-chen,Chowtsun,Zhoucun 36.81667 117.81667 P PPL CN 25 122402 53 Asia/Shanghai 2012-01-18
-1784182 Zhoucheng Zhoucheng Chou-ch'eng,Chou-ch'eng-fu,Chou-ch’eng,Chou-ch’eng-fu,Zhoucheng,zhou cheng,周城 34.43639 108.12111 P PPLA4 CN 26 0 572 Asia/Chongqing 2012-01-18
-1784185 Yuxi Yuxi Hongta,Hongta Qu,Hsin-hsing,Jujsi,Sinhing,Sinhingchow,Yu-ch'i,Yu-ch'i-hsien,Yu-hsi,Yuki,Yuki-hsien,Yuxi,Yü-ch’i,Yü-ch’i-hsien,Yü-hsi,Yüki,Yüki-hsien,Zhoucheng,hong ta,hong ta qu,yu xi,Юйси,玉溪,红塔,红塔区 24.355 102.54222 P PPLA3 CN 29 103829 1638 Asia/Chongqing 2012-01-18
-1784206 Zhongzhai Zhongzhai Zhongzhai,zhong zhai,中寨 34.64851 103.96485 P PPLA4 CN 15 0 2235 Asia/Chongqing 2012-01-18
-1784207 Zhongzhai Zhongzhai Chung-chai,Zhongzhai,zhong zhai,中寨 33.19133 104.42009 P PPLA4 CN 15 0 1375 Asia/Chongqing 2012-01-18
-1784209 Zhongzhai Zhongzhai Chung-chai-ch'ang,Chung-chai-ch’ang,Zhongzhai 27.19528 109.26861 P PPL CN CN 11 1110 487 Asia/Chongqing 2012-01-18
-1784213 Zhongzhai Zhongzhai Zhongzhai,Zhongzhai Xiang,zhong zhai,zhong zhai xiang,中寨,中寨乡 24.74182 114.39648 P PPLA4 CN 03 0 312 Asia/Chongqing 2012-01-18
-1784217 Zhongyun Zhongyun Chung-yun,Chung-yün,Zhongyun,Zhongyun Zhen,zhong yun,zhong yun zhen,中云,中云镇 29.22126 117.68594 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1784220 Zhongyuan Zhongyuan Chung-yuan,Chung-yuan-chen,Chung-yuan-shih,Chung-yüan,Chung-yüan-chen,Chung-yüan-shih,Lo-hui,Zhongyuan,Zhongyuan Zhen,zhong yuan,zhong yuan zhen,中原,中原镇 19.14787 110.46759 P PPLA4 CN 31 0 27 Asia/Chongqing 2012-01-18
-1784239 Ningxiang Ningxiang Chung-yang,Chung-yang-hsien,Ning-hsiang,Ningsianhsien,Ningxiang,Ningxiang Zhen,Zhongyang,Zhongyang Xian,ning xiang,ning xiang zhen,zhong yang xian,中阳县,宁乡,宁乡镇 37.34 111.20523 P PPLA3 CN 24 0 1231 Asia/Chongqing 2012-01-18
-1784244 Zhongxinqiao Zhongxinqiao 39.03472 117.5425 P PPL CN 28 1768 2 Asia/Shanghai 2000-11-21
-1784253 Zhongxing Zhongxing Chung-hsing,Chung-hsing-chen,Chunghing,Chunking,Siyang,Ssu-yang,Ssu-yang-hsien,Szeyang,Zhongxing 33.70389 118.67917 P PPL CN 04 57338 17 Asia/Shanghai 2012-01-18
-1784261 Zhongxing Zhongxing Zhongxing,Zhongxing Zhen,zhong xing,zhong xing zhen,中兴,中兴镇 19.56856 109.85248 P PPLA4 CN 31 0 96 Asia/Chongqing 2012-01-18
-1784272 Zhongxin Zhongxin Chiu-hua-p'ing,Chiu-hua-p’ing,Chung-hsin-chen,Hua-p'ing-chiu-chih,Hua-p'ing-hsien,Hua-p'ing-ku-chih,Hua-p’ing-chiu-chih,Hua-p’ing-hsien,Hua-p’ing-ku-chih,Huaping,Kiuyaping,Zhongxin,zhong xin,中心 26.61667 101.27154 P PPLA3 CN 29 0 1226 Asia/Chongqing 2012-01-18
-1784273 Zhongxin Zhongxin Chung-hsin,Chung-hsin-chen,Chung-hsin-hsu,Chung-hsin-hsü,Chungsun,Lien-p'ing,Lien-p’ing,Zhongxin,Zhongxin Zhen,zhong xin,zhong xin zhen,忠信,忠信镇 24.21626 114.71602 P PPLA4 CN 30 0 142 Asia/Chongqing 2012-01-18
-1784274 Zhongxin Zhongxin Chung-hsin,Zhongxin,Zhongxin Zhen,zhong xin,中新 23.28954 113.61356 P PPLA4 CN 30 0 20 Asia/Chongqing 2012-01-18
-1784291 Zhongtou Zhongtou Chung-t'ou,Chung-t'ou-chen,Chung-t’ou,Chung-t’ou-chen,Zhongtou,Zhongtou Zhen,zhong tou,zhong tou zhen,冢头,冢头镇 33.98836 113.33955 P PPLA4 CN 09 0 110 Asia/Chongqing 2012-01-18
-1784292 Zhongtong Zhongtong Zhongtong,Zhongtong Zhen,zhong tong,zhong tong zhen,中童,中童镇 28.30127 116.96811 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1784298 Zhongtang Zhongtang Chung-t'ang,Chung-t’ang,Zhongtang,Zhongtang Zhen,zhong tang,中堂 23.09668 113.65719 P PPLA4 CN 30 0 1 Asia/Chongqing 2012-01-18
-1784305 Zhonghe Zhonghe Zhonghe,Zhonghe Xiang,Zhongshuihe,zhong he,zhong he xiang,中河,中河乡 36.03292 106.17384 P PPLA4 CN 21 0 1782 Asia/Chongqing 2012-01-18
-1784309 Zhongshu Zhongshu Huancheng,Lu-liang-hsien,Luliang,Zhongshu,zhong shu,中枢 25.0273 103.66298 P PPLA3 CN 29 0 1838 Asia/Chongqing 2012-01-18
-1784310 Zhongshu Zhongshu Chung-shu-chen,Chzhunshu,Kuang-hsi,Kwangsi-hsien,Kwangsichow,Lu-hsi,Lu-hsi-hsien,Lusi-hsien,Luxi,Zhongshu,zhong shu,Чжуншу,中枢 24.51667 103.76667 P PPLA3 CN 29 91750 1701 Asia/Chongqing 2012-01-18
-1784319 Laocheng Laocheng Laocheng,Zhongshan,Zhongshan Zhen,lao cheng,zhong shan,zhong shan zhen,中山,中山镇,老城 25.02737 116.03578 P PPLA4 CN 07 0 265 Asia/Shanghai 2012-01-18
-1784320 Zhongshan Zhongshan Chung-saan,Chung-shan,Chung-shan-chen,Chung-shan-hsien,Fu-chung,Shan-chung-chen,Zhongshan,zhong shan,钟山 24.53333 111.3 P PPLA3 CN 16 0 139 Asia/Chongqing 2012-01-18
-1784337 Jinzhong Jinzhong Hui-tse,Hui-tse-hsien,Huize,Hweitseh,Hweitseh-hsien,Jinzhong,Tung-ch'uan,Tung-ch’uan,Tungchwan,Tungchwan-fu,Zhongping,jin zhong,金钟 26.37595 103.30639 P PPLA3 CN 29 0 2874 Asia/Chongqing 2012-01-18
-1784347 Zhongnan Zhongnan Chung-nan,Chung-nan-chen,Zhongnan,Zhongnanzhen,zhong nan,zhong nan zhen,终南,终南镇 34.14677 108.36017 P PPLA4 CN 26 0 419 Asia/Chongqing 2012-01-18
-1784350 Zhongming Zhongming Chung-ming,Chung-ming-chieh,Zhongming,Zhongming Zhen,zhong ming,zhong ming zhen,钟鸣,钟鸣镇 30.98482 118.05075 P PPLA4 CN 01 0 25 Asia/Shanghai 2012-01-18
-1784361 Zhongling Zhongling Chung-ling,Chung-ling-ch'iao,Chung-ling-ch’iao,Zhongling,Zhongling Xiang,zhong ling,zhong ling xiang,钟陵,钟陵乡 28.43822 116.47784 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-18
-1784369 Zhongjiapu Zhongjiapu Zhongjiapu,Zhongjiapu Xiang,zhong jia pu,zhong jia pu xiang,钟家铺,钟家铺乡 29.089 111.05011 P PPLA4 CN 11 0 214 Asia/Chongqing 2012-01-18
-1784373 Kaijiang Kaijiang Chung-chiang,Chung-chiang-hsien,Chungkiang,Chungkiang-hsien,Chzhuntszyan,Kaijiang,Zhongjiang,kai jiang,凯江 31.03959 104.67448 P PPLA3 CN 32 0 431 Asia/Chongqing 2012-01-18
-1784380 Zhonghuopu Zhonghuopu Chung-ho-p'u,Chung-ho-p’u,Chung-huo-p'u,Chung-huo-p’u,Chunghwopu,Zhonghuopu,Zhonghuopu Zhen,zhong huo pu,zhong huo pu zhen,中伙铺,中伙铺镇 29.76034 114.00105 P PPLA4 CN 12 0 53 Asia/Chongqing 2012-01-18
-1784404 Zhongguan Zhongguan Chung-kuan,Chung-kuan-chen,Zhongguan,Zhongguan Zhen,zhong guan,zhong guan zhen,钟管,钟管镇 30.64958 120.18451 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1784414 Zhongfang Zhongfang Chung-fang,Zhongfang,zhong fang,中方 27.41139 109.93194 P PPLA3 CN 11 1360 208 Asia/Chongqing 2012-01-18
-1784415 Zhongfang Zhongfang Chung-fang,Zhongfang 26.60083 119.42583 P PPL CN CN 07 1180 507 Asia/Shanghai 2012-01-18
-1784429 Zhongdeng Zhongdeng Chung-teng,Chung-teng-ts'un,Chung-teng-ts’un,Zhongdeng,Zhongdengcun 39.59056 117.35306 P PPL CN CN 28 2485 4 Asia/Shanghai 2012-01-18
-1784430 Lianhuashan Lianhuashan Lianhuashan,Lianhuashan Xiang,Zhongdang,lian hua shan,lian hua shan xiang,zhong dang,中垱,莲花山,莲花山乡 29.61852 116.99249 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-18
-1784444 Zhongcun Zhongcun Zhongcun,Zhongcun Xiang,zhong cun,zhong cun xiang,中村,中村乡 26.96044 115.82771 P PPLA4 CN 03 0 354 Asia/Shanghai 2012-01-18
-1784447 Zhongcun Zhongcun Chung-ts'un,Chung-ts’un,Zhongcun,Zhongcun Xiang,zhong cun,zhong cun xiang,中村,中村乡 25.3578 115.83506 P PPLA4 CN 03 0 220 Asia/Shanghai 2012-01-18
-1784452 Zhongchao Zhongchao Chung-ch'ao,Chung-ch'ao-so,Chung-ch’ao,Chung-ch’ao-so,Zhongchao 26.1375 109.22 P PPL CN CN 18 2262 461 Asia/Chongqing 2012-01-18
-1784457 Zhongbu Zhongbu Chung-fou,Chung-fou-chieh,Chung-pu,Chung-pu-chieh,Zhongbu,Zhongbu Zhen,Zhongbujie,zhong bu,zhong bu zhen,众埠,众埠镇 28.84619 117.29633 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-18
-1784461 Mingxing Mingxing Chung-pao,Mingxing,Zhongbao,Zhongbao Zhen,ming xing,zhong bao zhen,忠堡镇,明星 29.68033 109.27062 P PPLA4 CN 12 0 796 Asia/Chongqing 2012-01-18
-1784462 Zhongbao Zhongbao Zhongbao,Zhongbao Zhen,zhong bao,zhong bao zhen,中堡,中堡镇 25.19543 116.26524 P PPLA4 CN 07 0 359 Asia/Shanghai 2012-01-18
-1784463 Zhongfan Zhongfan Chung-pan,Zhongban,Zhongfan,zhong fan,中畈 28.54038 117.3782 P PPLA4 CN 03 0 65 Asia/Shanghai 2012-01-18
-1784468 Zhongba Zhongba Zhongba,zhong ba,中坝 31.77819 104.73932 P PPLA3 CN 32 0 535 Asia/Chongqing 2012-01-18
-1784469 Jiangyou Jiangyou Chiang-chang,Chiang-yu,Chiang-yu-hsien,Chung-pa,Chzhunba,Jiangyou 31.77819 104.73932 P PPLA3 CN 32 0 535 Asia/Chongqing 2012-01-18
-1784474 Zhongba Zhongba Chung-pa,Zhongba,Zhongba Zhen,zhong ba,zhong ba zhen,中坝,中坝镇 23.70731 115.34104 P PPLA4 CN 30 0 208 Asia/Shanghai 2012-01-18
-1784477 Zhong’an Zhong'an Chung-an-chen,Fuyuan,P'ing-i,P'ing-i-hsien,Pingyi-hsien,P’ing-i,P’ing-i-hsien,Zhong'an,Zhong’an,zhong an,中安 25.66667 104.23333 P PPLA3 CN 29 0 1882 Asia/Chongqing 2012-01-18
-1784480 Zhizhong Zhizhong Zhizhong,Zhizhong Zhen,zhi zhong,zhi zhong zhen,志仲,志仲镇 18.63101 109.25994 P PPLA4 CN 31 0 204 Asia/Chongqing 2012-01-18
-1784488 Zhixia Zhixia Chih-hsia,Zhixia,Zhixia Zhen,zhi xia,zhi xia zhen,值夏,值夏镇 26.98199 115.11081 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-18
-1784495 Zhitang Zhitang Chih-t'ang,Chih-tang-chen,Chih-t’ang,Zhitang,zhi tang,支塘 31.61158 120.95307 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1784497 Zhitan Zhitan Chih-t'an,Chih-t’an,To-t'an,To-t’an,Zhitan,Zhitan Xiang,shi tan,shi tan xiang,峙滩,峙滩乡 29.62052 117.30909 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-18
-1784513 Zhili Zhili Chih-li,Chih-li-shih,Zhili,Zhili Zhen,zhi li,zhi li zhen,织里,织里镇 30.87358 120.25667 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-18
-1784525 Zhijiang Zhijiang Chih-chian,Chih-chiang,Chih-chiang-hsien,Chihkiang,Chihkiang-hsien,Yuan-chou,Yuanchow,Yuen-chow-fu,Yüan-chou,Yüanchow,Zhijiang,zhi jiang,芷江 27.45814 109.6592 P PPLA3 CN 11 0 267 Asia/Chongqing 2012-01-18
-1784543 Zhifang Zhifang Chih-fang,Chih-fang-chen,Chih-fang-shih,Jiangxia Qu,Wu-ch'ang-hsien,Wu-ch’ang-hsien,Wuchang,Zhifang,Zhifang Jiedao,jiang xia qu,wu chang,wu chang xian,zhi fang,zhi fang jie dao,zhi fang zhen,武昌,武昌县,江夏区,纸坊,纸坊街道,纸坊镇 30.35 114.31667 P PPLA3 CN 12 0 36 Asia/Shanghai 2012-01-18
-1784553 Zhicheng Zhicheng Ch'ang-hsing,Ch'ang-hsing-hsien,Ch'ang-hsing-hsien-ch'eng,Changhing,Changhing-hsien,Changxing,Ch’ang-hsing,Ch’ang-hsing-hsien,Ch’ang-hsing-hsien-ch’eng,Zhicheng,zhang xing,zhi cheng,长兴,雉城 31.00611 119.90361 P PPLA3 CN 02 63753 14 Asia/Shanghai 2012-01-18
-1784554 Zhicheng Zhicheng Chih-ch'eng,Chih-chiang,Chih-chiang-chen,Chih-chiang-hsien,Chih-ch’eng,Chihkiang,Chihkianghsien,Zhicheng,Zhicheng Zhen,zhi cheng,zhi cheng zhen,枝城,枝城镇 30.29556 111.50472 P PPLA4 CN 12 159383 51 Asia/Chongqing 2012-01-18
-1784556 Zhibu Zhibu Chih-pu,Zhibu,Zhibu Zhen,zhi bu,zhi bu zhen,直埠,直埠镇 29.82065 120.24848 P PPLA4 CN 02 0 107 Asia/Shanghai 2012-01-18
-1784567 Zhetian Zhetian Zhetian,Zhetian Xiang,zhe tian,zhe tian xiang,柘田,柘田乡 27.23425 114.4078 P PPLA4 CN 03 0 156 Asia/Chongqing 2012-01-18
-1784568 Zhetang Zhetang Che-t'ang,Che-t'ang-chen,Che-t’ang,Che-t’ang-chen,Zhetang,Zhetang Zhen,zhe tang,zhe tang zhen,柘塘,柘塘镇 31.75614 118.91552 P PPLA4 CN 04 0 18 Asia/Shanghai 2012-01-18
-1784579 Zhenzhushan Zhenzhushan Chen-chu-shan,Zhenzhushan,Zhenzhushan Xiang,zhen zhu shan,zhen zhu shan xiang,珍珠山,珍珠山乡 29.18907 117.46124 P PPLA4 CN 03 0 212 Asia/Shanghai 2012-01-18
-1784580 Yizheng Yizheng I-cheng,I-cheng-hsien,Yangtzehsien,Yicheng,Yizheng,Zhenzhou 32.26917 119.17889 P PPL CN 04 176006 8 Asia/Shanghai 2012-01-18
-1784581 Zhenze Zhenze Chen-tse,Chen-tse-chen,Zhenze,Zhenze Zhen,zhen ze,zhen ze zhen,震泽,震泽镇 30.91571 120.50005 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1784586 Zhenyuan Zhenyuan Chen-yuan,Chen-yüan,Zhenyuan,Zhenyuan Zhen,zhen yuan,zhen yuan zhen,贞元,贞元镇 34.32502 108.19996 P PPLA4 CN 26 0 517 Asia/Chongqing 2012-01-18
-1784592 Wufeng Wufeng Chen-hsiung,Chen-hsiung-hsien,Chen-hsuing,Chensiung,Chensiung-hsien,Chensiungchow,Wufeng,Zhenxiong,wu feng,乌峰 27.45 104.83333 P PPLA3 CN 29 0 1892 Asia/Chongqing 2012-01-18
-1784617 Zhenping Chengguanzhen Zhenping Chengguanzhen Chen-p'ing,Chen-p'ing-hsien,Chen-p’ing,Chen-p’ing-hsien,Chengguan Zhen,Zhenping,Zhenping Chengguanzhen,zhen ping,zhen ping cheng guan zhen,镇平,镇平城关镇 33.03314 112.23321 P PPLA3 CN 09 0 189 Asia/Chongqing 2012-01-18
-1784642 Zhenjiang Zhenjiang Chen-chiang,Chen-chiang-ch'eng,Chen-chiang-ch’eng,Chen-chiang-hsien,Chen-chiang-shih,Chenkiang,Chinkiang,Tan-t'a,Tan-t'u,Tan-t’a,Tan-t’u,Tantuhsien,Zhenjiang,zhen jiang,zhen jiang shi,جېنجياڭ شەھىرى,鎮江,镇江,镇江市 32.20917 119.43417 P PPL CN 04 632552 17 Asia/Shanghai 2012-01-18
-1784647 Zhaobaoshan Zhaobaoshan Chen-hai,Chen-hai-hsien,Chen-hai-hsien-ch'eng,Chen-hai-hsien-ch’eng,Chinhai,Zhaobaoshan,Zhaobaoshan Jiedao,Zhenhai,Zhenhai Qu,zhao bao shan,zhao bao shan jie dao,zhen hai,zhen hai qu,招宝山,招宝山街道,镇海,镇海区 29.9695 121.68753 P PPLA3 CN 02 61979 3 Asia/Shanghai 2012-01-18
-1784648 Zhenhai Zhenhai Chen-hai,Chen-hai-ch'eng,Chen-hai-ch’eng,Zhenhai,zhen hai,镇海 24.25823 118.09049 P PPL CN 07 1400 114 Asia/Shanghai 2012-01-18
-1784658 Zhengzhou Zhengzhou Cheng,Cheng-chou,Cheng-chou-shih,Cheng-hsien,Chengchow,Chzhehnchzhou,Czengczou,Dzengdzou,Džengdžou,Trinh Chau,Trịnh Châu,Zhengzhou,zheng zhou,zheng zhou shi,Чжэнчжоу,جېڭجۇ شەھىرى,郑州,郑州市,鄭州 34.75778 113.64861 P PPLA CN 09 2014125 104 Asia/Shanghai 2012-01-18
-1784702 Zhengguo Zhengguo Cheng-kou-hsu,Cheng-kou-hsü,Cheng-kuo,Cheng-kuo-hsu,Cheng-kuo-hsü,Ching Kwo,Zhengguo,Zhengguo Zhen,zheng guo,正果 23.41823 113.88844 P PPLA4 CN 30 0 18 Asia/Chongqing 2012-01-18
-1784706 Zhengfang Zhengfang Cheng-fang,Zhengfang,Zhengfang Zhen,zheng fang,zheng fang zhen,郑坊,郑坊镇 28.70098 117.88915 P PPLA4 CN 03 0 149 Asia/Shanghai 2012-01-18
-1784707 Zhengfang Zhengfang Zhengfang,Zhengfang Xiang,zheng fang,zheng fang xiang,郑坊,郑坊乡 26.71343 117.7074 P PPLA4 CN 07 0 273 Asia/Shanghai 2012-01-18
-1784708 Zhengdun Zhengdun Cheng-tun,Zhengdun,Zhengdun Zhen,zheng dun,zheng dun zhen,郑墩,郑墩镇 27.49667 118.69472 P PPLA4 CN 07 0 233 Asia/Shanghai 2012-01-18
-1784715 Zhengdian Zhengdian Zhengdian,Zhengdian Jiedao,zheng dian,zheng dian jie dao,郑店,郑店街道 30.33333 114.25 P PPLA4 CN 12 0 52 Asia/Shanghai 2012-01-18
-1784721 Zhengcun Zhengcun Cheng-ts'un,Cheng-ts’un,Zhengcun,Zhengcun Xiang,zheng cun,zheng cun xiang,征村,征村乡 28.95454 114.52934 P PPLA4 CN 03 0 109 Asia/Shanghai 2012-01-18
-1784730 Zhengang Zhengang Chen-kang,Zhengang,Zhengang Xiang,zhen gang,zhen gang xiang,镇岗,镇岗乡 25.00044 115.31521 P PPLA4 CN 03 0 284 Asia/Shanghai 2012-01-18
-1784733 Zhendong Zhendong Zhendong,Zhengdong Xiang,zhen dong,zhen dong xiang,振东,振东乡 34.13333 120.21667 P PPLA4 CN 04 0 254 Asia/Shanghai 2012-01-18
-1784734 Zhendeqiao Zhendeqiao Zhendeqiao,Zhendeqiao Zhen,zhen de qiao,zhen de qiao zhen,镇德桥,镇德桥镇 29.13794 111.82807 P PPLA4 CN 11 0 34 Asia/Shanghai 2012-01-18
-1784755 Zhelin Zhelin Che-lin,Che-lin-ch'eng,Che-lin-ch’eng,Cholin,Zhelin,zhe lin,柘林 30.8325 121.46917 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1784756 Zhelin Zhelin Che-lin,Sanxiqiao,Zhelin,Zhelin Zhen,zhe lin,zhe lin zhen,柘林,柘林镇 29.23333 115.46667 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-18
-1784757 Zhelin Zhelin Che-lin,Chelim,Zhelin,Zhelin Zhen,zhe lin,柘林 23.5815 117.09111 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-18
-1784760 Zhelang Zhelang Chelang,Zhelang,Zhelang Jiedao,zhe lang,遮浪 22.6721 115.55795 P PPLA4 CN 30 0 16 Asia/Shanghai 2012-01-18
-1784790 Zhaxi Zhaxi Cha-hsi,Cha-hsi-chen,Wei-hsin,Wei-hsin-hsien,Weisin-hsien,Weixin,Zhaxi,zha xi,扎西 27.85081 104.96874 P PPLA3 CN 29 0 1633 Asia/Chongqing 2012-01-18
-1784800 Zhapu Zhapu Cha-p'u,Cha-p'u-chen,Cha-p’u,Cha-p’u-chen,Zhapu,Zhapuzhen,zha pu,zha pu zhen,乍浦,乍浦镇 30.60153 121.08686 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1784811 Zhaozhen Zhaozhen Chao-chen,Chao-chia-tu,Chaokiatu,Chin-t'ang,Chin-t’ang,Chzhaotszyadu,Jintang,Zhaozhen,zhao zhen,赵镇 30.8563 104.43606 P PPLA3 CN 32 0 450 Asia/Chongqing 2012-01-18
-1784820 Xinghua Xinghua Hsin-hsing,Hsing-hua,Hsing-hua-ch'eng,Hsing-hua-ch’eng,Hsing-hua-hsien,Sinkhua,Xinghua,Xinxing,Zhaoyang,Синхуа 32.93917 119.83417 P PPL CN 04 105918 8 Asia/Shanghai 2012-01-18
-1784822 Zhaoxie Zhaoxie Chao-hsieh,Zhaoxie,Zhaoxie Zhen,zhao xie,zhao xie zhen,招携,招携镇 27.16778 115.87058 P PPLA4 CN 03 0 153 Asia/Shanghai 2012-01-18
-1784823 Zhaoxiang Zhaoxiang Chao-hsiang,Zhaoxiang,zhao xiang,赵巷 31.15194 121.19203 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1784827 Zhaoxian Zhaoxian Chao-hsien,Chao-hsien-chen,Chzhaosyan'chzhen',Chzhaosyan’chzhen’,Zhaoxian,Zhaoxian Zhen,zhao xian,zhao xian zhen,招贤,招贤镇 34.74983 107.62335 P PPLA4 CN 26 0 1306 Asia/Chongqing 2012-01-18
-1784841 Zhaotong Zhaotong Chao-t'ung,Chao-t'ung-hsien,Chao-t’ung,Chao-t’ung-hsien,Chzhaotun,En-an,En-an-hsien,Zhaotong,Чжаотун 27.31667 103.71667 P PPL CN 29 109400 1974 Asia/Chongqing 2012-01-18
-1784846 Zhaoshi Zhaoshi Chao-Shih,Zhaoshi,Zhaoshi Zhen,zhao shi,zhao shi zhen,召市,召市镇 29.23574 109.42552 P PPLA4 CN 11 0 645 Asia/Chongqing 2012-01-18
-1784853 Zhaoqing Zhaoqing Chao-ch'ing,Chao-ch'ing-chen,Chao-chou,Chao-ch’ing,Chao-ch’ing-chen,Chao-king,Chzhaocin,Kao-yao,Kao-yao-hsien,Koyiu,Koyiu-hsien,Koynihsien,Shiuhing,Shiuhingfu,Zhaoqing,zhao qing,zhao qing shi,Чжаоцин,肇庆,肇庆市 23.05116 112.45972 P PPLA2 CN 30 361969 16 Asia/Chongqing 2012-01-18
-1784860 Zhaoping Zhaoping Chao-p'ing,Chao-p'ing-chen,Chao-p'ing-hsien,Chao-p’ing,Chao-p’ing-chen,Chao-p’ing-hsien,Zhaoping,zhao ping,昭平 24.17244 110.78703 P PPLA3 CN 16 0 112 Asia/Chongqing 2012-01-18
-1784874 Zhaokang Zhaokang Chao-k'ang,Chao-k'ang-chen,Chao-k’ang,Chao-k’ang-chen,Zhaokang,Zhaokeng Zhen,zhao kang,zhao kang zhen,赵康,赵康镇 35.72053 111.24725 P PPLA4 CN 24 0 465 Asia/Chongqing 2012-01-18
-1784892 Zhaopeng Zhaopeng Chao-chia-p'eng,Chao-chia-p’eng,Zhaojiapeng,Zhaopeng,Zhaopeng Zhen,zhao peng,zhao peng zhen,赵棚,赵棚镇 31.4132 113.84859 P PPLA4 CN 12 0 89 Asia/Shanghai 2012-01-18
-1784919 Zhaohe Zhaohe Chao-ho,Chao-ho-chen,Zhaohe,zhao he,赵河 33.18774 112.84527 P PPLA4 CN 09 0 149 Asia/Chongqing 2012-01-18
-1784920 Zhaoguli Zhaoguli 39.17833 117.24361 P PPL CN 28 2004 8 Asia/Shanghai 2000-11-21
-1784928 Zhaogezhuang Zhaogezhuang Chao-ko-chuang,Zhaogezhuang 39.78444 117.19583 P PPL CN CN 28 2442 8 Asia/Harbin 2012-01-18
-1784929 Zhaogezhuang Zhaogezhuang Chao-chia-chuang,Chao-ko-chuang,Chaokochwang,Zhaogezhuang 39.76667 118.4 P PPL CN 10 86555 83 Asia/Harbin 2012-01-18
-1784947 Zhaozhen Zhaozhen Chao-chen,Chao-ts'un,Chao-ts'un-chen,Chao-ts’un,Chao-ts’un-chen,Zhaocun,Zhaozhen,zhao zhen,赵镇 34.55722 108.49694 P PPLA4 CN 26 0 530 Asia/Chongqing 2012-01-18
-1784950 Zhaocun Zhaocun Zhaocun,zhao cun,赵村 33.75482 112.47961 P PPLA4 CN 09 0 256 Asia/Chongqing 2012-01-18
-1784953 Zhaoyuan Zhaoyuan Chao-yuan,Chao-yuan-hsien,Chao-yüan,Chao-yüan-hsien,Zhaocheng,Zhaoyuan 37.35917 120.39639 P PPL CN 25 100774 66 Asia/Shanghai 2012-01-18
-1784960 Zhaobei Zhaobei Chao-pei,Chao-pi-ts'un,Chao-pi-ts’un,Zhaobei,Zhaobei Zhen,zhao bei,zhao bei zhen,赵北,赵北镇 39.48444 114.03278 P PPLA4 CN 24 0 1157 Asia/Shanghai 2012-01-18
-1784969 Xiping Xiping Ch'u-ching,Chan-i,Chan-i-chen,Chan-i-hsien,Chanyi,Chanyi-hsien,Chanyichow,Ch’ü-ching,Xiping,Zhanyi,xi ping,西平 25.59784 103.79612 P PPLA3 CN 29 0 1865 Asia/Chongqing 2012-01-18
-1784972 Zhanxi Zhanxi Chan-chi,Chan-hsi,Zhanxi,Zhanxi Xiang,zhan xi,zhan xi xiang,湛溪,湛溪乡 28.04802 115.2285 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-18
-1784974 Zhantian Zhantian Zhantian,Zhantian Xiang,zhan tian,zhan tian xiang,湛田,湛田乡 26.59208 116.16107 P PPLA4 CN 03 0 239 Asia/Shanghai 2012-01-18
-1784976 Zhantang Zhantang Zhangtang Xiang,Zhantang,zhan tang,zhan tang xiang,站塘,站塘乡 25.41615 115.79217 P PPLA4 CN 03 0 213 Asia/Shanghai 2012-01-18
-1784982 Zhanping Zhanping Zhanping,Zhanping Xiang,zhan ping,zhan ping xiang,展坪,展坪乡 28.02974 116.24058 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-18
-1784990 Zhanjiang Zhanjiang Chan-chiang,Chan-chiang-shih,Chankiang,Chzhan'czjan,Fort Bayard,Hsi-ying,Kwangchow,Kwangchowan,Kwangchowwan,Tram Giang,Trạm Giang,Tsamkong,Zhanjiang,Zhanjiang Shi,zhan jiang,zhan jiang shi,Чжаньцзян,جاڭجياڭ شەھىرى,湛江,湛江市 21.28145 110.34271 P PPLA2 CN 30 637790 29 Asia/Chongqing 2012-01-18
-1784991 Zhanjiaji Zhanjiaji Zhanjiaji,Zhanjiaji Jiedao,zhan jia ji,zhan jia ji jie dao,湛家矶,湛家矶街道 30.669 114.3518 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-18
-1785000 Danzhu Danzhu Chang-tzu,Chang-tzu-chen,Chang-tzu-hsien,Chang-tzu-hsien-ch'eng,Chang-tzu-hsien-ch’eng,Chantszo,Chantszö,Danzhu,Danzhu Zhen,Zhangzi,Zhangzi Xian,dan zhu,dan zhu zhen,zhang zi xian,丹朱,丹朱镇,长子县 36.1245 112.86101 P PPLA3 CN 24 0 952 Asia/Chongqing 2012-01-18
-1785003 Zhangjiazhuang Zhangjiazhuang Chang-chia-chuang,Chang-chuang,Zhangjiazhuang,Zhangjiazhuang Xiang,Zhangzhuang,zhang jia zhuang,zhang jia zhuang xiang,张家庄,张家庄乡 39.26333 112.79389 P PPLA4 CN 24 0 1059 Asia/Shanghai 2012-01-18
-1785015 Zhangzhuang Zhangzhuang Chang-chuang,Zhangzhuang,Zhangzhuang Xiang,zhang zhuang,zhang zhuang xiang,章庄,章庄乡 27.52646 114.35892 P PPLA4 CN 03 0 249 Asia/Chongqing 2012-01-18
-1785018 Zhangzhou Zhangzhou Chang-chou,Chang-chou-shih,Changchow,Changchowfu,Chzhanchzhou,Lung-ch'i,Lung-ch'i-hsien-ch'eng,Lung-ch’i,Lung-ch’i-hsien-ch’eng,Lungki,Lunki,Zhangzhou,zhang zhou,zhang zhou shi,Чжанчжоу,جياڭجۇ شەھىرى,漳州,漳州市 24.51333 117.65556 P PPLA2 CN 07 589831 14 Asia/Shanghai 2012-01-18
-1785019 Zhangzhishan Zhangzhishan Chang-chih-chen,Chang-chih-shan,Chang-chih-shan-chen,Zhangzhishan,Zhangzhishan Zhen,zhang zhi shan,zhang zhi shan zhen,张芝山,张芝山镇 31.9247 121.00708 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1785021 Zhangzhen Zhangzhen Chang-chen,Chang-chia-fou,Zhangzhen,Zhangzhen Zhen,zhang zhen,zhang zhen zhen,章镇,章镇镇 29.80931 120.86837 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1785036 Zhangye Zhangye Chang-i,Chang-yeh,Chang-yeh-hsien,Chang-yeh-shih,Changyen,Ganzhou,Kan-chou,Kanchow,Zhangye 38.93417 100.45167 P PPL CN 15 96228 1481 Asia/Chongqing 2012-01-18
-1785041 Zhangyan Zhangyan Chang-yen,Chang-yen-chen,Chang-yin,Zhangyan,Zhangyan Zhen,zhang yan,zhang yan zhen,张堰,张堰镇 30.80663 121.28008 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1785055 Zhangwu Zhangwu Chang-wu,Chang-wu-ts'un,Chang-wu-ts’un,Zhangwu,zhang wu,鄣吴 30.77972 119.54389 P PPLA4 CN 02 0 68 Asia/Shanghai 2012-01-18
-1785066 Zhangwan Zhangwan Chang-wan,Zhangwan 26.71139 119.59194 P PPL CN CN 07 6590 19 Asia/Shanghai 2012-01-18
-1785068 Zhangting Zhangting Chang-t'ing,Chang-t'ing-chen,Chang-t’ing,Chang-t’ing-chen,Zhangting,Zhangtingzhen,zhang ting,zhang ting zhen,丈亭,丈亭镇 30.01528 121.28424 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1785104 Zhangpu Zhangpu Chang-p'u,Chang-p'u-chen,Chang-p’u,Chang-p’u-chen,Zhangpu,Zhangpu Zhen,zhang pu,zhang pu zhen,张浦,张浦镇 31.28746 120.93955 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1785132 Zhangliang Zhangliang Chang-liang-tien,Zhangliang,Zhangliang Zhen,Zhangliangdian,zhang liang,zhang liang zhen,张良,张良镇 33.66949 113.04047 P PPLA4 CN 09 0 126 Asia/Chongqing 2012-02-02
-1785140 Zhangjin Zhangjin Ch'ang-chin-ho-shih,Chang-chin-ho,Ch’ang-chin-ho-shih,Zhangjin,Zhangjin Zhen,Zhangjinhe,zhang jin,zhang jin zhen,张金,张金镇 30.19726 112.59769 P PPLA4 CN 12 0 33 Asia/Chongqing 2012-01-18
-1785157 Zhangjiayuan Zhangjiayuan Zhangjiayuan,Zhangjiayuan Xiang,zhang jia yuan,zhang jia yuan xiang,张家垣,张家垣乡 36.72185 106.333 P PPLA4 CN 21 0 1717 Asia/Chongqing 2012-01-18
-1785176 Zhangjiashan Zhangjiashan Chang-chia-Shan,Zhangjiashan,Zhangjiashan Zhen,zhang jia shan,zhang jia shan zhen,张家山,张家山镇 28.08523 115.47926 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-18
-1785177 Zhangjiaqiao Zhangjiaqiao Chang-chia-ch'iao,Chang-chia-ch’iao,Zhangjiaqiao,Zhangqiao,Zhangqiao Zhen,zhang jia qiao,zhang qiao,zhang qiao zhen,张家桥,张桥,张桥镇 32.11593 120.05969 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1785195 Zhangji Zhangji Chang-chia-chi,Zhangji,Zhangji Zhen,Zhangjiaji,zhang ji,zhang ji zhen,张集,张集镇 31.5116 112.77841 P PPLA4 CN 12 0 129 Asia/Chongqing 2012-01-18
-1785197 Zhangjiahe Zhangjiahe Chang-chia-ho,Zhangjiahe,zhang jia he,张家河 33.4414 106.56447 P PPLA4 CN 26 0 1182 Asia/Chongqing 2012-01-18
-1785205 Zhangfang Zhangfang Chang-chia-fang,Chang-chia-hsu,Chang-chia-hsü,Zhangfang,Zhangfang Zhen,Zhangjiafang,zhang fang,zhang fang zhen,张坊,张坊镇 28.32721 114.10302 P PPLA4 CN 11 0 236 Asia/Chongqing 2012-01-18
-1785224 Zhangji Zhangji Chang-chi,Zhangji,Zhangji Xiang,zhang ji,zhang ji xiang,张集,张集乡 34.05 119.65 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1785238 Zhanghuban Zhanghuban Chang-hu,Chang-hu-fan,Chang-hu-pan,Zhanghu Zhen,Zhanghuban,zhang hu ban,zhang hu zhen,樟湖坂,樟湖镇 26.38654 118.48408 P PPLA4 CN 07 0 93 Asia/Shanghai 2012-01-18
-1785258 Zhanggu Zhanggu Chang-ku,Chzhangu,Danba,Rimochegotyu,Romichangku,Rongzhag,Rumichangu,Tan-pa,Tan-pa-hsien,Ts'an-pa,Tsan'ba,Tsan’ba,Ts’an-pa,Zhanggu,zhang gu,章谷 30.8695 101.88413 P PPLA3 CN 32 0 2359 Asia/Chongqing 2012-01-18
-1785273 Zhanggang Zhanggang Chang-kang,Zhanggang,Zhanggang Zhen,zhang gang,zhang gang zhen,张港,张港镇 30.57204 112.87666 P PPLA4 CN 12 0 35 Asia/Chongqing 2012-01-18
-1785285 Zhangdu Zhangdu Chang-chia-tu,Chang-chia-tu-chen,Chang-tu,Changkiatu,Zhangdu,Zhangdu Zhen,zhang du,zhang du zhen,章渡,章渡镇 30.59637 118.22796 P PPLA4 CN 01 0 50 Asia/Shanghai 2012-01-18
-1785286 Zibo Zibo Chang-chou-shih,Chang-tien,Chang-tien-shih,Czybo,Tzu-po,Zhangdian,Zibo,shi bo,zi bo,zi bo shi,Цзыбо,زىبو شەھىرى,シ博,淄博,淄博市 36.79056 118.06333 P PPL CN 25 669770 51 Asia/Shanghai 2012-01-18
-1785290 Zhangdian Zhangdian Chang-tien,Chang-tien-chen,Zhangdian,Zhangdian Zhen,zhang dian,zhang dian zhen,张店,张店镇 34.2 119.3 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1785292 Zhangdian Zhangdian Chang-tien,Chang-tien chen,Zhangdian,Zhangdian Zhen,zhang dian,zhang dian zhen,张甸,张甸镇 32.40418 120.05147 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1785294 Anyang Anyang An'jang,An-yang-hsien,Anyang,Chang-te,Changte-fu,Changteh,Changten,Zhangde,Аньянг 36.09944 114.32889 P PPL CN 09 781129 79 Asia/Shanghai 2012-01-18
-1785309 Zhangcun Zhangcun Chang-ts'un,Chang-ts’un,Zhangcun,Zhangcun Jieban,zhang cun,zhang cun jie ban,张村,张村街办 35.65011 111.34944 P PPLA4 CN 24 0 434 Asia/Chongqing 2012-01-18
-1785326 Zhangcheng Zhangcheng Inghok,Inghokhsien,Ingtao,Intaihsien,Yongtai,Yung-fu,Yung-fu-chen,Yung-fu-hsien,Yung-t'ai,Yung-t'ai-ch'eng,Yung-t'ai-hsien,Yung-t’ai,Yung-t’ai-ch’eng,Yung-t’ai-hsien,Zhangcheng,zhang cheng,樟城 25.84676 118.93692 P PPLA3 CN 07 0 90 Asia/Shanghai 2012-01-18
-1785333 Zhangba Zhangba Chang-pa-ssu,Chang-ta-ssu,Zhangba,zhang ba,丈八 34.89654 107.6479 P PPLA4 CN 26 0 1463 Asia/Chongqing 2012-01-18
-1785341 Zhan’erxiang Zhan'erxiang Chan-erh-hsiang,Zhan'erxiang,Zhan’erxiang,zhan r xiang,站儿巷 33.77986 106.30034 P PPLA4 CN 15 0 1021 Asia/Chongqing 2012-01-18
-1785348 Zhakou Zhakou Zhakou,Zhakou Xiang,zha kou,zha kou xiang,闸口,闸口乡 29.85196 111.50074 P PPLA4 CN 11 0 86 Asia/Shanghai 2012-01-18
-1785351 Zhajin Zhajin Cha-ching,Cha-ching-chieh,Chachin,Chatsin,Zhajin,Zhajin Zhen,zha jin,zha jin zhen,渣津,渣津镇 29.00961 114.23597 P PPLA4 CN 03 0 131 Asia/Shanghai 2012-01-18
-1785372 Zhaishi Miaozudongzuxiang Zhaishi Miaozudongzuxiang Chai-shih-chen,Chiu-sui-ning,Chzhaysichzhen,Jiusuining,Sui-ning,Zaishi,Zhaishi,Zhaishi Miaozudongzuxiang,Zhaishizhen 26.50083 110.04444 P PPL CN CN 11 3750 442 Asia/Chongqing 2012-01-18
-1785389 Zhaike Zhaike Zhaike,Zhaike Xiang,zhai ke,zhai ke xiang,寨科,寨科乡 36.29156 106.42337 P PPLA4 CN 21 0 1893 Asia/Chongqing 2012-01-18
-1785400 Zhaigang Zhaigang Chai-kang,Chai-kang-hsu,Chai-kang-hsü,Lien-nan,Lien-nan-hsien,Zhaigang,Zhaigang Zhen,zhai gang,zhai gang zhen,寨岗,寨岗镇 24.5204 112.34859 P PPLA4 CN 30 0 119 Asia/Chongqing 2012-01-18
-1785414 Zezhang Zezhang Tse-chang,Tse-chang-ts'un,Tse-chang-ts’un,Zezhang,Zezhang Zhen,ze zhang,ze zhang zhen,泽掌,泽掌镇 35.71573 111.15553 P PPLA4 CN 24 0 459 Asia/Chongqing 2012-01-18
-1785420 Zengtian Zengtian Tseng-t'ien,Tseng-t'ien-chieh,Tseng-t’ien,Tseng-t’ien-chieh,Zengtian,Zengtian Zhen,zeng tian,zeng tian zhen,增田,增田镇 27.3563 115.83897 P PPLA4 CN 03 0 140 Asia/Shanghai 2012-01-18
-1785421 Zengtian Zengtian Tseng-t'ien,Tseng-t’ien,Zengtian,Zengtian Zhen,ceng tian,ceng tian zhen,曾田,曾田镇 24.02032 114.98102 P PPLA4 CN 30 0 216 Asia/Shanghai 2012-01-18
-1785427 Zengji Zengji Tseng-chia-chi,Zengji,Zengji Zhen,Zengjiaji,ceng ji,ceng ji zhen,曾集,曾集镇 30.72028 112.36983 P PPLA4 CN 12 0 82 Asia/Chongqing 2012-01-18
-1785432 Zengjia Zengjia Tseng-chia-ho,Zengjia,Zengjia Zhen,Zengjiahe,ceng jia,ceng jia zhen,曾家,曾家镇 32.61957 106.10118 P PPLA4 CN 32 1350 1397 Asia/Chongqing 2012-01-18
-1785434 Zengdian Zengdian Tseng-chia-tien,Zengdian,Zengdian Zhen,ceng dian,ceng dian zhen,曾店,曾店镇 31.12582 113.77027 P PPLA4 CN 12 0 60 Asia/Chongqing 2012-01-18
-1785439 Zekou Zekou Zekou,Zekou Jiedao,ze kou,ze kou jie dao,泽口,泽口街道 30.48706 112.87152 P PPLA4 CN 12 0 36 Asia/Chongqing 2012-01-18
-1785453 Zaozhuang Zaozhuang Czaochzhuan,I-hsien,Tsao-chuang,Tsao-chuang-shih,Tsaochwang,Tssaochwang,Zaozhuang,zao zhuang,zao zhuang shi,Цзаочжуан,枣庄,枣庄市 34.86472 117.55417 P PPL CN 25 183665 79 Asia/Shanghai 2012-01-18
-1785462 Zaoyang Zaoyang Tsao-yang,Tsao-yang-hsien,Zaoyang 32.12722 112.75417 P PPL CN 12 184509 113 Asia/Chongqing 2012-01-18
-1785464 Zaoxi Zaoxi Tsao-hsi,Zaoxi,zao xi,藻溪 30.2006 119.4901 P PPLA4 CN 02 0 126 Asia/Shanghai 2012-01-18
-1785468 Zaoshi Zaoshi Tsao-chiao-shih,Tsao-shih,Zaoshi,Zaoshi Zhen,zao shi,zao shi zhen,皂市,皂市镇 29.65438 111.23565 P PPLA4 CN 11 0 99 Asia/Shanghai 2012-01-18
-1785469 Zaoshi Zaoshi Guantang Pu,Tsao-shih,Zaoshi,Zaoshi Zhen,guan tang pu,zao shi,zao shi zhen,枣市,枣市镇,管塘铺 26.67083 113.44472 P PPLA4 CN 11 0 160 Asia/Chongqing 2012-02-28
-1785483 Xicun Xicun Tsao-lin,Tsao-lin-ts'un,Tsao-lin-ts’un,Xicun,Zaolin Zhen,xi cun,zao lin zhen,枣林镇,西村 39.15139 113.11545 P PPLA4 CN 24 0 904 Asia/Shanghai 2012-01-18
-1785486 Zaolin Zaolin Tsao-lin,Tsao-lin-ying,Zaolin,Zaolin Zhen,zao lin,zao lin zhen,枣林,枣林镇 34.36352 107.69618 P PPLA4 CN 26 0 659 Asia/Chongqing 2012-01-18
-1785489 Zaojiacheng Zaojiacheng 39.27611 117.43167 P PPL CN 28 7071 4 Asia/Shanghai 2000-11-21
-1785501 Zangzhai Zangzhai Tsang-chai,Zangzhai,Zangzhai Xiang,zang zhai,zang zhai xiang,臧寨,臧寨乡 39.62953 113.11367 P PPLA4 CN 24 0 993 Asia/Shanghai 2012-01-18
-1785522 Zagunao Zagunao Hsing-lung-ch'ang,Hsing-lung-ch’ang,Li,Li-hsien,Lixian,Shih-ku-nao,Tsa-ku-nao,Tsakulao,Tszagunao,Zagunao,za gu nao,杂谷脑 31.44288 103.17178 P PPLA3 CN 32 0 1908 Asia/Chongqing 2012-01-18
-1785529 Shangyuzhuang Shangyuzhuang Hsia-yu-chuang-tzu,Hsia-yü-chuang-tzu,Shangyuzhuang,Yu-chuang,Yuzhuang Xiang,Yü-chuang,shang yu zhuang,yu zhuang xiang,上榆庄,余庄乡 38.90756 112.20579 P PPLA4 CN 24 0 1674 Asia/Chongqing 2012-01-18
-1785541 Yuyue Yuyue Chia-yu,Chia-yu-hsien,Chia-yü,Chia-yü-hsien,Jiayu,Kiayu,Kiayuhsien,Yuyue,yu yue,鱼岳 30.0182 113.96325 P PPLA3 CN 12 0 24 Asia/Chongqing 2012-01-18
-1785545 Yuyao Yuyao Ju-kao,Jujao,Yu-yao-chen,Yu-yao-hsien,Yu-yao-hsien-ch'eng,Yuyao,Yuyao Shi,Yü-yao-chen,Yü-yao-hsien-ch’eng,yu yao,Юяо,余姚 30.05 121.14944 P PPL CN 02 114177 59 Asia/Shanghai 2012-01-18
-1785549 Yuyang Yuyang Yuyang,Yuyang Zhen,yu yang,yu yang zhen,渔洋,渔洋镇 30.17375 112.90283 P PPLA4 CN 12 0 33 Asia/Chongqing 2012-01-18
-1785555 Yuxin Yuxin Yu-hsien-tai,Yu-hsin,Yuxin,Yuxin Zhen,Yü-hsien-tai,Yü-hsin,yu xin,yu xin zhen,余新,余新镇 30.66879 120.78848 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1785556 Yuxin Yuxin Yu-hsin,Yuxin,Yuxin Zhen,Yü-hsin,yu xin,yu xin zhen,渔薪,渔薪镇 30.67293 112.99095 P PPLA4 CN 12 0 34 Asia/Chongqing 2012-01-18
-1785565 Xiushui Xiushui Xiushui,Xiushui Zhen,Yu,Yu Xian,Yu-hsien,Yuhsie,Yuxian,Yuysyan',Yuysyan’,Yü,Yü-hsien,Yühsie,xiu shui,xiu shui zhen,yu xian,盂县,秀水,秀水镇 38.10379 113.38865 P PPLA3 CN 24 0 946 Asia/Shanghai 2012-01-18
-1785566 Yuzhou Yuzhou Yu,Yu-hsien,Yuchow,Yuxian,Yuzhou,Yü,Yü-hsien 34.16278 113.46389 P PPL CN 09 87961 126 Asia/Shanghai 2012-01-18
-1785572 Yuxia Yuxia Yu-hsia,Yu-hsia-li,Yuxia,Yuxia Zhen,Yü-hsia,Yü-hsia-li,yu xia,yu xia zhen,余下,余下镇 34.06154 108.62905 P PPLA4 CN 26 60206 428 Asia/Chongqing 2012-01-18
-1785574 Yuxi Yuxi Yu-ch'i,Yu-hsi,Yuxi,Yü-ch’i,Yü-hsi 32.582 119.9978 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1785583 Yuwang Yuwang Yuwang,Yuwang Zhen,yu wang,yu wang zhen,予旺,予旺镇 36.81929 106.37767 P PPLA4 CN 21 0 1539 Asia/Chongqing 2012-01-18
-1785587 Yuwan Yuwan Yuwan,Yuwan Zhen,yu wan,yu wan zhen,鱼湾,鱼湾镇 24.16407 113.66502 P PPLA4 CN 30 0 86 Asia/Chongqing 2012-01-18
-1785591 Yutou Yutou Yo-tou-shi,Yu-t'ou-shih,Yutou,Yutou Zhen,Yü-t’ou-shih,yu tou,yu tou zhen,淤头,淤头镇 28.62149 118.50566 P PPLA4 CN 02 0 135 Asia/Shanghai 2012-01-18
-1785593 Yuting Yuting Yuting,Yuting Zhen,yu ting,yu ting zhen,渔亭,渔亭镇 29.84038 117.96968 P PPLA4 CN 01 0 175 Asia/Shanghai 2012-01-18
-1785614 Jicheng Jicheng Jicheng,Jicheng Zhen,Yu-she-hsien,Yushe,Yushe Xian,Yuyshe,Yü-she-hsien,ji cheng,ji cheng zhen,yu she xian,榆社县,箕城,箕城镇 37.06359 112.95769 P PPLA3 CN 24 0 994 Asia/Shanghai 2012-01-18
-1785620 Yushan Yushan Yushan,Yushan Zhen,yu shan,玉山 34.20563 109.50158 P PPLA4 CN 26 0 705 Asia/Chongqing 2012-01-18
-1785621 Yushan Yushan Yushan,Yushan Zhen,yu shan,yu shan zhen,玉山,玉山镇 33.19948 113.8155 P PPLA4 CN 09 0 89 Asia/Shanghai 2012-01-18
-1785622 Yushan Yushan Yushan,Yushan Zhen,yu shan,yu shan zhen,峪山,峪山镇 31.98946 112.36785 P PPLA4 CN 12 0 75 Asia/Chongqing 2012-01-18
-1785623 Yushan Yushan K'un-shan-ch'eng,K'un-shan-hsien,Kan-shan,Kun'shan',Kunshan,K’un-shan-ch’eng,K’un-shan-hsien,Yushan,yu shan,Куньшань,玉山 31.37762 120.9543 P PPLA3 CN 04 107986 10 Asia/Shanghai 2012-01-18
-1785625 Yushan Yushan Yu-shan-chieh,Yushan,Yü-shan-chieh,yu shan,玉山 26.90863 118.56713 P PPL CN 07 2640 420 Asia/Shanghai 2012-01-18
-1785642 Yuping Yuping Ching-pien,P'ing-pien,P'ing-pien-hsien,P'ing-pien-miao-tsu-tzu-chih-hsien,P’ing-pien,P’ing-pien-hsien,P’ing-pien-miao-tsu-tzu-chih-hsien,Tahotzu,Tsingpien,Yu-p'ing-chieh,Yuping,Yü-p’ing-chieh,yu ping,玉屏 22.97693 103.71085 P PPLA3 CN 29 0 1261 Asia/Chongqing 2012-01-18
-1785654 Yunyang Yunyang Yun-yang-chen,Yunyang,Yunyang Zhen,Yün-yang-chen,yun yang,yun yang zhen,云阳,云阳镇 34.63722 108.80861 P PPLA4 CN 26 0 450 Asia/Chongqing 2012-01-18
-1785655 Yunyang Yunyang Chiu-nan-chao,Jiunanzhao,Nan-chao,Nan-chao Old City,Nan-chao-chiu-chiu,Nan-chao-hsien,Nan-chao-ku-chih,Yunyang,yun yang,云阳 33.44743 112.71422 P PPL CN 09 73922 202 Asia/Chongqing 2012-01-18
-1785657 Junyang Junyang Gao'an Shi,Gao’an Shi,Jui-chou,Juichow,Juichowfu,Junyang,Junyang Jiedao,Kao-an,Kao-an-hsien,Yunyang,gao an shi,jun yang,jun yang jie dao,筠阳,筠阳街道,高安市 28.41667 115.36667 P PPLA3 CN 03 0 34 Asia/Shanghai 2012-02-02
-1785661 Yunxian Chengguanzhen Yunxian Chengguanzhen Yun,Yun-hsien,Yun-yang,Yun-yang-fu,Yunxian,Yunxian Chengguanzhen,Yün,Yün-hsien,Yün-yang,Yün-yang-fu,yun xian cheng guan zhen,郧县城关镇 32.83129 110.80875 P PPLA3 CN 12 0 203 Asia/Chongqing 2012-01-18
-1785662 Aihua Aihua Aihua,Yun,Yun-ch'eng-chen,Yun-hsien,Yunchow,Yunxian,Yün,Yün-ch’eng-chen,Yün-hsien,Yünchow,ai hua,爱华 24.41667 100.1 P PPLA3 CN 29 0 1180 Asia/Chongqing 2012-01-18
-1785665 Yunxixian Chengguanzhen Yunxixian Chengguanzhen Yun-hsi,Yun-hsi-hsien,Yunsi,Yunsi-hsien,Yunxi,Yunxi Chengguanzhen,Yunxixian Chengguanzhen,Yün-hsi,Yün-hsi-hsien,Yünsi-hsien,yun xi cheng guan zhen,yun xi xian cheng guan zhen,郧西县城关镇,郧西城关镇 32.98276 110.42306 P PPLA3 CN 12 0 222 Asia/Chongqing 2012-01-18
-1785666 Yunxi Yunxi Yan'tin,Yanting,Yan’tin,Yen-t'ing,Yen-t'ing-hsien,Yen-t’ing,Yen-t’ing-hsien,Yunxi,yun xi,云溪 31.2264 105.38614 P PPLA3 CN 32 0 386 Asia/Chongqing 2012-01-18
-1785669 Yunxi Yunxi Yunxi,yun xi,云溪 29.02612 118.93969 P PPLA4 CN 02 0 68 Asia/Shanghai 2012-01-18
-1785675 Yunting Yunting Yun-t'ing-chen,Yunting,Yün-t’ing-chen,yun ting,云亭 31.86441 120.33727 P PPLA4 CN 04 0 12 Asia/Shanghai 2012-01-18
-1785677 Yunti Yunti Yunti,Yunti Shezuxiang,yun ti,yun ti she zu xiang,云梯,云梯畲族乡 30.37444 119.28222 P PPLA4 CN 01 0 180 Asia/Shanghai 2012-01-18
-1785683 Yuntai Yuntai Yuntai,Yuntai Zhen,yun tai,yun tai zhen,云台,云台镇 33.44634 105.66561 P PPLA4 CN 15 0 1214 Asia/Chongqing 2012-01-18
-1785689 Yunshan Yunshan Yun-shan-shih,Yunshan,Yunshan Zhen,Yün-shan-shih,yun shan,yun shan zhen,云山,云山镇 28.17593 116.2995 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-18
-1785695 Yunmenling Yunmenling Chun-men-ling,Chün-men-ling,Yun-men-ling,Yunmenling,Yunmenling Zhen,Yün-men-ling,jun men ling,jun men ling zhen,筠门岭,筠门岭镇 25.2407 115.7444 P PPLA4 CN 03 0 218 Asia/Shanghai 2012-01-18
-1785698 Yunmeng Chengguanzhen Yunmeng Chengguanzhen Yun-meng-hsien,Yunmeng,Yunmeng Chengguanzhen,Yün-meng-hsien,yun meng cheng guan zhen,云梦城关镇 31.06251 113.76545 P PPLA3 CN 12 64390 43 Asia/Chongqing 2012-01-18
-1785700 Yunluo Yunluo Yunluo,yun luo,云落 23.25259 116.07486 P PPLA4 CN 30 0 78 Asia/Shanghai 2012-01-18
-1785705 Yunlong Yunlong Yunlong,Yunlong Zhen,yun long,yun long zhen,云龙,云龙镇 19.87654 110.46706 P PPLA4 CN 31 0 49 Asia/Chongqing 2012-01-18
-1785706 Yunling Yunling Yunling,Yunling Zhen,yun ling,yun ling zhen,云岭,云岭镇 30.65332 118.22409 P PPLA4 CN 01 0 79 Asia/Shanghai 2012-01-18
-1785707 Yunling Yunling Yin-siao-ting,Yun-hsiao,Yunling,Yunsiao,Yunxiao,Yün-hsiao,yun ling,云陵 23.95384 117.33604 P PPLA3 CN 07 0 11 Asia/Shanghai 2012-01-18
-1785710 Jinghong Jinghong Ch'e-li,Ch'e-li-hsien,Chianghung,Ching-hung,Ching-te,Chiu-lung-chiang,Ch’e-li,Ch’e-li-hsien,Jinghong,Kenghung,Kianghung,Kinlungkiang,Kiulungkiang,Kiulunkiang,Kuilung-kiang,Pan-na-ching-hung,Pan-na-yun-ching-hung,Pan-na-yün-ching-hung,Yun-ching-hung,Yun-ching-hung-chen,Yunjinghong,Yün-ching-hung,Yün-ching-hung-chen,cheiyng rung,jing hong,jing hong shi,เชียงรุ้ง,景洪,景洪市 21.99102 100.73409 P PPL CN 29 62105 611 Asia/Chongqing 2012-01-18
-1785716 Pizhou Pizhou P'ei-hsien,Peixian,Pizhou,P’ei-hsien,Yun-ho,Yun-ho-ch'e-chan,Yun-ho-chen,Yunhe,Yün-ho,Yün-ho-chen,Yün-ho-ch’e-chan 34.31139 117.95028 P PPL CN 04 82641 25 Asia/Shanghai 2012-01-18
-1785717 Yunhe Yunhe Kung-chi,Kung-chi-chieh,Yun-ho-chi,Yunhe,Yunhe Zhen,Yün-ho-chi,yun he,yun he zhen,运河,运河镇 34.08333 119.71667 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1785719 Yunhe Yunhe Hao-ch'ing,Hao-ch'ing-hsien,Hao-ch’ing,Hao-ch’ing-hsien,Heqing,Ho-ch'ing,Ho-ch’ing,Hoking,Hoking-hsien,Yunhe,yun he,云鹤 26.52497 100.1978 P PPLA3 CN 29 0 2195 Asia/Chongqing 2012-01-18
-1785725 Yunfu Yunfu Jun'fu,Tung-an,Wanfow,Yun-ch'eng,Yun-ch'eng-chen,Yun-fou,Yun-fou-hsien,Yunfu,Yün-ch’eng,Yün-ch’eng-chen,Yün-fou,Yün-fou-hsien,yun fu,Юньфу,云浮 22.93056 112.0373 P PPLA2 CN 30 2612800 77 Asia/Chongqing 2012-01-18
-1785738 Yuncheng Yuncheng An-i,An-i-hsien,Anyihsien,Yun'chen,Yun-ch'eng-chen,Yuncheng,Yuncheng Shi,Yun’chen,Yün-ch’eng-chen,an yi,yun cheng,yun cheng shi,安邑,运城,运城市 35.02306 110.99278 P PPL CN 24 201950 361 Asia/Chongqing 2012-01-18
-1785741 Yuncao Yuncao Ts'ao-yun,Ts’ao-yün,Yun-ts'ao,Yun-ts'ao-chen,Yun-ts'ao-ho,Yuncao,Yuncao Zhen,Yün-ts’ao,Yün-ts’ao-chen,Yün-ts’ao-ho,yun cao,yun cao zhen,运漕,运漕镇 31.42266 118.0741 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-18
-1785766 Yuling Yuling Yu-lin-ts'un,Yuling,Yuling Xiang,Yü-lin-ts’un,yu ling,yu ling xiang,榆岭,榆岭乡 39.55583 112.42944 P PPLA4 CN 24 0 1414 Asia/Chongqing 2012-01-18
-1785777 Yulin Yulin Yu-lin-hsien,Yulin,Yulinfu,Yü-lin-hsien 38.29056 109.74944 P PPL CN 26 90870 1064 Asia/Chongqing 2012-01-18
-1785781 Yulin Yulin Watlam,Watlam-hsien,Yo-ling,Yu-lin-chen,Yu-lin-hsien,Yulin,Yü-lin-chen,Yü-lin-hsien 22.63333 110.15 P PPL CN 16 148485 83 Asia/Chongqing 2012-01-18
-1785800 Yujing Yujing Wu-ching,Yu-ching,Yujing,Yujing Zhen,Yü-ching,yu jing,yu jing zhen,玉井,玉井镇 39.67552 112.6029 P PPLA4 CN 24 0 1465 Asia/Shanghai 2012-01-18
-1785802 Yujin Yujin Yu-chin,Yu-chin-chen,Yu-chin-t'un,Yujin,Yujin Zhen,Yü-chin,Yü-chin-chen,Yü-chin-t’un,yu jin,雨金 34.51508 109.24465 P PPLA4 CN 26 0 357 Asia/Chongqing 2012-01-18
-1785803 Yujin Yujin Chien-wei,Chien-wei-hsien,Kienwei,Kienwei-hsien,Qianwei,Yujin,yu jin,玉津 29.20909 103.94556 P PPLA3 CN 32 0 337 Asia/Chongqing 2012-01-18
-1785805 Wulingyuan Wulingyuan Wulingyuan,Wulingyuan Qu,Yujiazui,wu ling yuan,wu ling yuan qu,武陵源,武陵源区 29.34936 110.54407 P PPLA3 CN 11 0 327 Asia/Chongqing 2012-01-18
-1785829 Yujia Yujia Yu-chia,Yujia,Yujia Xiang,Yü-chia,yu jia,yu jia xiang,余家,余家乡 28.1744 117.02297 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-18
-1785843 Yuhuangmiao Yuhuangmiao Yuhuangmiao,yu huang miao,玉皇庙 33.72715 106.94891 P PPLA4 CN 26 0 981 Asia/Chongqing 2012-01-18
-1785858 Yuguzhuang Yuguzhuang 39.64 117.35889 P PPL CN 28 1442 7 Asia/Shanghai 2000-11-21
-1785866 Yugan Yugan Yu-kan,Yu-kan-chen,Yu-kan-hsien,Yu-kan-hsien-ch'eng,Yugan,Yugan Xian,Yü-kan,Yü-kan-chen,Yü-kan-hsien,Yü-kan-hsien-ch’eng,yu gan,yu gan xian,余干,余干县 28.69563 116.68439 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-18
-1785871 Yufang Yufang Yufang,Yufang Xiang,yu fang,yu fang xiang,余坊,余坊乡 26.90219 117.25482 P PPLA4 CN 07 0 354 Asia/Shanghai 2012-01-18
-1785882 Yueyang Yueyang An-tse,An-tse-ch'eng,An-tse-ch’eng,An-tse-hsien,Chiu-an-tse,Gu Xian,Guxian,Ku-hsien,Yueh-yang,Yueh-yang-chen,Yueyang,Yueyang Zhen,Yüeh-yang,Yüeh-yang-chen,gu xian,yue yang,yue yang zhen,古县,岳阳,岳阳镇 36.2896 111.91454 P PPLA3 CN 24 0 865 Asia/Chongqing 2012-01-18
-1785896 Yuecheng Yuecheng Yuecheng,Yueh-ch'un,Yueh-chien,Yueh-hsi,Yueh-sui,Yueh-sui-hsien,Yuehsi,Yuexi,Yüeh-chien,Yüeh-ch’ün,Yüeh-hsi,Yüeh-sui,Yüeh-sui-hsien,Yüehsi,yue cheng,越城 28.64157 102.5087 P PPLA3 CN 32 0 1679 Asia/Chongqing 2012-01-18
-1785922 Yuelai Yuelai Yueh-lai,Yueh-lai-chen,Yuelai,Yuelai Zhen,Yuelaizhen,Yüeh-lai,Yüeh-lai-chen,yue lai,yue lai zhen,悦来,悦来镇 31.9357 121.43245 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1785946 Jiulong Jiulong Iochi,Jiulong,Yo-ch'ih,Yo-ch’ih,Yochih-hsien,Yuechi,Yueh-ch'ih,Yueh-ch'ih-hsien,Yüeh-ch’ih,Yüeh-ch’ih-hsien,jiu long,九龙 30.53622 106.43713 P PPLA3 CN 32 0 387 Asia/Chongqing 2012-01-18
-1785961 Yudongzi Yudongzi Yu-tung-tzu,Yudongzi,Yü-tung-tzu,yu dong zi,鱼洞子 33.3251 106.32253 P PPLA4 CN 26 0 936 Asia/Chongqing 2012-01-18
-1785963 Yudong Yudong Yu-tung,Yu-tung-chen,Yudong,Yudong Zhen,Yutungchang,Yü-tung,Yü-tung-chen,yu dong,yu dong zhen,余东,余东镇 32.02723 121.355 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1785964 Yudong Yudong Baxian,Chi-chia-t'o,Chi-chia-t’o,Jujdun,Pa,Pa-hsien,Yu-tung-ch'i,Yu-tung-chen,Yu-tung-hsi,Yudong,Yudongxi,Yü-tung-chen,Yü-tung-ch’i,Yü-tung-hsi,Юйдун 29.385 106.51944 P PPL CN 33 81408 212 Asia/Chongqing 2012-01-18
-1785972 Yucun Yucun Yu-ts'un,Yucun,Yucun Xiang,Yü-ts’un,shu cun,shu cun xiang,俞村,俞村乡 30.34889 118.63139 P PPLA4 CN 01 0 232 Asia/Shanghai 2012-01-18
-1785974 Yuci Yuci Yu-tz'u,Yu-tz'u-hsien,Yu-tz'u-shih,Yuci,Yuci Qu,Yutzehsien,Yü-tz’u,Yü-tz’u-hsien,Yü-tz’u-shih,Yützehsien,yu ci,yu ci qu,榆次,榆次区 37.68028 112.73194 P PPL CN 24 235929 798 Asia/Chongqing 2012-01-18
-1785980 Yucheng Yucheng Chiu-yu-t'ai,Chiu-yü-t’ai,Hitaihsien,Jujchehn,Yu-t'ai,Yu-t'ai-hsien,Yucheng,Yü-t’ai,Yü-t’ai-hsien,Юйчэн 34.92889 116.46528 P PPL CN 25 62365 37 Asia/Shanghai 2012-01-18
-1785981 Yucheng Yucheng Yu-ch'eng-chen,Yucheng,Yucheng Zhen,Yü-ch’eng-chen,yu cheng,yu cheng zhen,于城,于城镇 30.53507 120.85229 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1785998 Yuanzhou Yuanzhou Yuanzhou,Yuanzhou Zhen,yuan zhou,园洲 23.12323 113.95344 P PPLA4 CN 30 0 7 Asia/Chongqing 2012-01-18
-1786039 Yuantan Yuantan Yuan-t'an-hsu,Yuan-t’an-hsü,Yuantan,Yuantan Zhen,yuan tan,源潭 23.66353 113.19588 P PPLA4 CN 30 0 21 Asia/Chongqing 2012-01-18
-1786050 Yuanshan Yuanshan Lianping Xian,Lien-p'ing,Lien-p'ing-hsien,Lien-p’ing,Lien-p’ing-hsien,Lin-ping,Linping-hsien,Linpingchow,Yuanshan,Yuanshan Zhen,lian ping xian,yuan shan,yuan shan zhen,元善,元善镇,连平县 24.37279 114.48439 P PPLA3 CN 30 0 228 Asia/Chongqing 2012-02-02
-1786052 Yuanren Yuanren Yuan-jen,Yuan-jen-chia,Yuanren,Yüan-jen,Yüan-jen-chia,yuan ren,原任 34.79681 109.45487 P PPLA4 CN 26 0 391 Asia/Chongqing 2012-01-18
-1786060 Yuanping Yuanping Yuanping,Yuanping Shi,yuan ping,yuan ping shi,原平,原平市 38.71528 112.7575 P PPL CN 24 82883 797 Asia/Shanghai 2012-01-18
-1786063 Yuanma Yuanma Ma-chieh,Makai,Yuan-mou-hsien,Yuanma,Yuanmou,Yuanmow,Yuanmow-hsien,Yüan-mou-hsien,Yüanmow,Yüanmow-hsien,yuan ma,元马 25.68197 101.872 P PPLA3 CN 29 0 1127 Asia/Chongqing 2012-01-18
-1786066 Yuanling Yuanling Ch'en-chou,Ch’en-chou,Shenchow,Shenchowfu,Yuan-ling-hsien,Yuanling,Yüan-ling-hsien,yuan ling,沅陵 28.44861 110.40222 P PPLA3 CN 11 0 120 Asia/Chongqing 2012-01-18
-1786067 Yuanlin Yuanlin Ch'ien-chiang,Ch'ien-chiang-hsien,Chien-kou,Ch’ien-chiang,Ch’ien-chiang-hsien,Juan'lin',Qianjiang,Tsienkiang,Yuanlin,Yuanlin Jiedao,yuan lin,yuan lin jie dao,Юаньлинь,园林,园林街道 30.41513 112.88595 P PPLA4 CN 12 179079 34 Asia/Chongqing 2012-01-18
-1786071 Yuankeng Yuankeng Yuankeng,Yuankeng Zhen,yuan keng,yuan keng zhen,元坑,元坑镇 26.76134 117.71068 P PPLA4 CN 07 0 141 Asia/Shanghai 2012-01-18
-1786088 Yuanhua Yuanhua Yuan-hua-chen,Yuan-hua-t'ang,Yuanhua,Yuanhua Zhen,Yüan-hua-chen,Yüan-hua-t’ang,yuan hua,yuan hua zhen,袁花,袁花镇 30.41454 120.77155 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1786092 Yuanguping Yuanguping Yuanguping,Yuanguping Zhen,yuan gu ping,yuan gu ping zhen,沅古坪,沅古坪镇 29.01583 110.72454 P PPLA4 CN 11 0 368 Asia/Chongqing 2012-01-18
-1786099 Yuandun Yuandun Chiu-tun-tzu,Yuan-tun,Yuan-tun-tzu,Yuandun,Yuandun Zhen,Yuandunzi,Yüan-tun,Yüan-tun-tzu,yuan dun,yuan dun zhen,元墩,元墩镇 33.02784 106.6392 P PPLA4 CN 26 0 742 Asia/Chongqing 2012-01-18
-1786110 Yuancheng Yuancheng Yuancheng,Yuancheng Xiang,yuan cheng,yuan cheng xiang,元城,元城乡 36.65202 107.78957 P PPLA4 CN 15 0 1295 Asia/Chongqing 2012-01-18
-1786112 Heyuan Heyuan Heyuan,Ho-yuan,Ho-yuan-hsien,Ho-yüan,Ho-yüan-hsien,Hoyun,Hoyunhsien,Hoyün,Yuancheng,he yuan,河源 23.73333 114.68333 P PPLA2 CN 30 93718 31 Asia/Chongqing 2012-01-18
-1786113 Yuanbuzi Yuanbuzi Yuan-pao-tzu,Yuanbuzi,Yuanbuzi Zhen,Yüan-pao-tzu,yuan bao zi,yuan bao zi zhen,元堡子,元堡子镇 39.8222 112.53434 P PPLA4 CN 24 0 1439 Asia/Shanghai 2012-01-18
-1786119 Yuanba Yuanba Yuanba,yuan ba,元坝 32.32564 105.96178 P PPLA3 CN 32 0 530 Asia/Chongqing 2012-01-18
-1786125 Youzha Youzha Youzha,Youzha Zhen,Youzhazhen,you zha,you zha zhen,油榨,油榨镇 32.01878 121.06306 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1786129 Youzhadi Youzhadi Xiyi,Xiyi Zhen,Youzhadi,xi yi zhen,you zha,油榨,西一镇 24.46611 103.27472 P PPLA4 CN 29 0 1996 Asia/Chongqing 2012-01-18
-1786131 Youzai Youzai Youzai,Youzhai Zhen,Yu-tsai,Yu-tsai-pao,you zai,you zai zhen,友宰,友宰镇 39.95091 113.88851 P PPLA4 CN 24 0 958 Asia/Shanghai 2012-01-18
-1786140 Youxikou Youxikou Youxikou,Youxikou Zhen,Yu-hsi-k'ou,Yu-hsi-k’ou,you xi kou,you xi kou zhen,尤溪口,尤溪口镇 26.39812 118.4439 P PPLA4 CN 07 0 80 Asia/Shanghai 2012-01-18
-1786141 Youxian Chengguanzhen Youxian Chengguanzhen Youxian,Youxian Chengguanzhen,Yu,Yu-hsien,Yu-hsien-ch'eng,Yu-hsien-ch’eng,you xian cheng guan zhen,攸县城关镇 26.98399 113.36231 P PPLA3 CN 11 0 86 Asia/Chongqing 2012-01-18
-1786148 Youxi Chengguanzhen Youxi Chengguanzhen Youxi,Youxi Chengguanzhen,Yu-ch'i,Yu-ch'i-hsien,Yu-ch'i-hsien-ch'eng,Yu-ch’i,Yu-ch’i-hsien,Yu-ch’i-hsien-ch’eng,Yu-hsi,Yuki,Yukihsien,you xi cheng guan zhen,尤溪城关镇 26.17361 118.17889 P PPLA3 CN 07 0 138 Asia/Shanghai 2012-01-18
-1786151 Youtian Youtian Youtian,Youtian Xiang,Yu-t'ien,Yu-t’ien,you tian,you tian xiang,油田,油田乡 27.51208 114.79276 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-18
-1786157 Youshui Youshui Youshui,Youshui Xiang,Yu-shui,you shui,you shui xiang,右水,右水乡 25.44347 115.66974 P PPLA4 CN 03 0 266 Asia/Shanghai 2012-01-18
-1786169 Youlan Youlan Youlan,Youlan Zhen,Yu-lan,Yu-lan-shih,you lan,you lan zhen,幽兰,幽兰镇 28.58002 116.15 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-18
-1786182 Youguzhuang Youguzhuang Hsi-lung-ko-chuang,Youguzhuang 39.90583 117.24611 P PPL CN CN 28 1470 14 Asia/Harbin 2012-01-18
-1786202 Youdunjie Youdunjie Youdunjie,Youdunjie Zhen,Yu-tun-chieh,you dun jie,you dun jie zhen,油墩街,油墩街镇 29.377 116.63742 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-18
-1786211 Youcheng Youcheng Youcheng,Youcheng Xiang,Yu-ch'eng,Yu-ch’eng,you cheng,you cheng xiang,游城,游城乡 29.2365 116.83077 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-18
-1786244 Yongxing Yongxing Yongxing,Yongxing Zhen,Yung-hsing,yong xing,yong xing zhen,永兴,永兴镇 27.92927 118.36891 P PPLA4 CN 07 0 259 Asia/Shanghai 2012-01-18
-1786247 Yongxing Chengguanzhen Yongxing Chengguanzhen Yongxing,Yongxing Chengguanzhen,Yung-hsin,Yung-hsing,Yung-hsing-hsien,Yung-hsing-hsien-ch'eng,Yung-hsing-hsien-ch’eng,Yunghing,Yunghing-hsien,yong xing cheng guan zhen,永兴城关镇 26.10665 113.13278 P PPLA3 CN 11 0 145 Asia/Chongqing 2012-01-18
-1786248 Yongxing Yongxing Yongxing,Yongxing Zhen,yong xing,yong xing zhen,永兴,永兴镇 19.89384 110.26294 P PPLA4 CN 31 0 94 Asia/Chongqing 2012-01-18
-1786257 Yongtai Yongtai Yongtai,Yung-t'ai,Yung-t’ai,yong tai,永太 34.88944 108.15 P PPLA4 CN 26 0 1200 Asia/Chongqing 2012-01-18
-1786259 Yongtai Yongtai Yongtai,Yongtai Zhen,Yung-t'ai,Yung-t'ai-chieh,Yung-t’ai,Yung-t’ai-chieh,yong tai,yong tai zhen,永泰,永泰镇 27.94296 115.4421 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-18
-1786266 Yongshan Yongshan Yongshan,Yongshan Zhen,Yung-shan,Yung-shan-shih,yong shan,yong shan zhen,涌山,涌山镇 29.1497 117.31484 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-18
-1786278 Yongping Yongping Ch'ien-shan,Ch'ien-shan-hsien,Ch'ien-shan-hsien-ch'eng,Ch’ien-shan,Ch’ien-shan-hsien,Ch’ien-shan-hsien-ch’eng,Yongping,Yongping Zhen,Yuan-hsien,Yuanshan,Yuanshanhsien,Yung-p'ing,Yung-p'ing-chen,Yung-p’ing,Yung-p’ing-chen,Yüanshan,yong ping,yong ping zhen,永平,永平镇 28.21554 117.7777 P PPLA4 CN 03 0 88 Asia/Shanghai 2012-01-18
-1786279 Yongping Yongping Yongping,Yongping Xiang,Yung-p'ing,Yung-p’ing,yong ping,yong ping xiang,永平,永平乡 25.28212 116.11417 P PPLA4 CN 07 0 393 Asia/Shanghai 2012-01-18
-1786288 Yongning Yongning Yongning,yong ning,永宁 33.83956 106.18865 P PPLA4 CN 15 0 849 Asia/Chongqing 2012-01-18
-1786290 Yongning Yongning T'ung-ku,T'ung-ku-hsien,Tonggu Xian,Tung-k'ou,Tung-k’ou,Tungkuting,T’ung-ku,T’ung-ku-hsien,Yongning,Yongning Zhen,tong gu xian,yong ning,yong ning zhen,永宁,永宁镇,铜鼓县 28.52449 114.36576 P PPLA3 CN 03 0 233 Asia/Shanghai 2012-01-18
-1786293 Yongning Yongning Yongning,Yung-ning 24.68 118.69 P PPL CN CN 07 8460 21 Asia/Shanghai 2012-01-18
-1786301 Yonglong Yonglong Yonglong,Yonglong Xiang,yong long,yong long xiang,永隆,永隆乡 25.4174 115.93117 P PPLA4 CN 03 0 365 Asia/Shanghai 2012-01-18
-1786306 Yongle Yongle Yongle,Yongle Zhen,Yongledian,Yung-le-chen,Yung-le-tien,Yung-lo-chen,yong le,yong le zhen,永乐,永乐镇 34.53278 108.93806 P PPLA4 CN 26 0 407 Asia/Chongqing 2012-01-18
-1786334 Yonghe Yonghe Yonghe,Yonghecun 39.07528 117.47556 P PPL CN CN 28 1286 3 Asia/Shanghai 2012-01-18
-1786336 Zhihe Zhihe Yonghe,Yonghe Xian,Yung-ho,Yung-ho-hsien,Yung-ho-hsien-ch'eng,Yung-ho-hsien-ch’eng,Yunghwohsien,Yunkhe,Zhihe,Zhihe Zhen,yong he xian,zhi he,zhi he zhen,永和县,芝河,芝河镇 36.77996 110.63956 P PPLA3 CN 24 0 911 Asia/Chongqing 2012-01-18
-1786342 Yonghe Yonghe Lien-shan,Lien-shan-chuang-tsu-yao-tsu-tzu-chih-hsien,Lien-shan-hsien,Yonghe,Yonghe Zhen,Yung-ho,Yung-ho-chen,Yung-ho-hsu,Yung-ho-hsü,yong he,yong he zhen,永和,永和镇 24.62594 112.03228 P PPLA4 CN 30 0 312 Asia/Chongqing 2012-01-18
-1786343 Yonghe Yonghe Yonghe,Yonghe Zhen,yong he,永和 24.14471 115.79938 P PPLA4 CN 30 0 139 Asia/Shanghai 2012-01-18
-1786344 Yonghan Yonghan Yonghan,Yonghan Zhen,Yung-han,Yung-han-hsu,Yung-han-hsü,yong han,永汉 23.57003 113.96821 P PPLA4 CN 30 0 26 Asia/Chongqing 2012-01-18
-1786346 Yonggu Yonggu Yonggu,Yonggu Xiang,Yung-ku,Yung-ku-ts'un,Yung-ku-ts’un,yong gu,yong gu xiang,永固,永固乡 35.7213 111.3631 P PPLA4 CN 24 0 441 Asia/Chongqing 2012-01-18
-1786351 Yongfu Yongfu Yongfu,Yung-fu,Yung-fu-chen,Yung-fu-hsien,yong fu,永福 25.00402 109.98185 P PPLA3 CN 16 0 205 Asia/Chongqing 2012-01-18
-1786354 Yongfeng Yongfeng Yongfeng,Yongfeng Zhen,Yung-feng,Yung-feng-chen,yong feng,永丰 34.99917 109.85926 P PPLA4 CN 26 0 425 Asia/Chongqing 2012-01-18
-1786356 Yongfeng Yongfeng Guangfeng,Kuang-feng,Kuang-feng-hsien,Kuang-feng-hsien-ch'eng,Kuang-feng-hsien-ch’eng,Kwangfeng,Kwangfeng-hsien,Yongfeng,Yongfeng Xiang,yong feng,yong feng xiang,永丰,永丰乡 28.41893 118.21366 P PPLA4 CN 03 0 123 Asia/Shanghai 2012-01-18
-1786357 Yongfeng Yongfeng Shuangfeng,Yongfeng,Yung-feng,Yung-feng-chen,Yung-feng-shih,Yungfengsze,yong feng,永丰 27.42829 112.18338 P PPLA3 CN 11 70783 118 Asia/Chongqing 2012-01-18
-1786364 Yongding Yongding Chu-chueh,Chuchih,Chucho,Chü-chüeh,Yongding,Yongren,Yung-jen,Yung-jen-hsien,Yung-ting-chen,yong ding,永定 26.04122 101.68642 P PPLA3 CN 29 0 1517 Asia/Chongqing 2012-01-18
-1786365 Yongding Yongding Fu-min-hsien,Yongding,yong ding,永定 25.1986 102.46189 P PPLA3 CN 29 0 1840 Asia/Chongqing 2012-01-18
-1786370 Taocheng Taocheng Taocheng,Yongchun,Yung-ch'un,Yung-ch'un-hsien,Yung-ch’un,Yung-ch’un-hsien,tao cheng,桃城 25.3123 118.30056 P PPLA3 CN 07 0 123 Asia/Shanghai 2012-01-18
-1786378 Yongchuan Yongchuan Jungchunghsien,Yongchang,Yongchuan,Yung-ch'uan,Yung-ch'uan-hsien,Yung-ch’uan,Yung-ch’uan-hsien,Yungchwan,Yungchwan-hsien 29.35139 105.89472 P PPL CN 33 94465 321 Asia/Chongqing 2012-01-18
-1786382 Yongbei Yongbei Yongbei,Yongsheng,Yung-pei,Yung-shen,Yung-sheng,Yung-sheng-chen,Yung-sheng-hsien,Yungpeh,Yungpeh-hsien,yong bei,永北 26.64623 100.78073 P PPLA3 CN 29 0 2537 Asia/Chongqing 2012-01-18
-1786412 Yizhang Chengguanzhen Yizhang Chengguanzhen I-chang,I-chang-hsien,Ichung,Yizhang,Yizhang Chengguanzhen,yi zhang cheng guan zhen,宜章城关镇 25.38323 112.97897 P PPLA3 CN 11 0 380 Asia/Chongqing 2012-01-18
-1786430 Yixi Yixi I-hsi,Yixi,Yixi Zhen,yi xi,意溪 23.69644 116.64456 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-18
-1786444 Yitao Yitao Yitao,Yitao Zhen,yi tao,yi tao zhen,沂涛,沂涛镇 34.08333 119.1 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1786448 Yitang Yitang I-t'ang,I-t'ang-chen,I-t’ang,I-t’ang-chen,Yitang,Yitang Zhen,yi tang,yi tang zhen,义堂,义堂镇 31.09568 113.70442 P PPLA4 CN 12 0 40 Asia/Chongqing 2012-01-18
-1786449 Yisuhe Yisuhe I-su-ho,Yisuhe,yi su he,易俗河 27.76544 112.92683 P PPLA3 CN 11 0 39 Asia/Chongqing 2012-01-18
-1786455 Yishui Yishui I-shui,I-shui-hsien,Yishui 35.78472 118.62806 P PPL CN 25 94115 156 Asia/Shanghai 2012-01-18
-1786457 Yishi Yishi I-shih-chieh,Yishi,Yishi Zhen,Yishijie,yi shi,yi shi zhen,一市,一市镇 29.19944 121.47472 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1786458 Yishi Yishi I-shih,I-shih-ch'eng,I-shih-chen,I-shih-ch’eng,I-shih-hsien,Ishi,Lin-i,Lin-i-hsien,Linyi,Linyi Xian,Yishi,Yishi Zhen,lin yi xian,yi shi,yi shi zhen,临猗县,猗氏,猗氏镇 35.16497 110.74598 P PPLA3 CN 24 0 482 Asia/Chongqing 2012-01-18
-1786462 Yishan Yishan Dayishan,Guanyun Xian,Kuan-yun,Kuan-yun-hsien,Kuan-yün,Kuan-yün-hsien,Ta-i-shan,Ta-i-shan-chen,Ta-shan-chen,Tayishan,Yishan,Yishan Zhen,guan yun xian,yi shan,yi shan zhen,伊山,伊山镇,灌云县 34.29944 119.25417 P PPLA3 CN 04 0 3 Asia/Shanghai 2012-02-02
-1786467 Yisa Yisa Honghe,Hung-ho,I-sa,I-sa-chen,Yisa,Yisa Zhen,Yisha,yi sa,迤萨 23.33231 102.44711 P PPLA3 CN 29 0 721 Asia/Chongqing 2012-01-18
-1786469 Yirong Yirong Yirong,Yirong Zhen,yi rong,yi rong zhen,义容,义容镇 23.5211 114.8283 P PPLA4 CN 30 0 46 Asia/Chongqing 2012-01-18
-1786474 Yiqiao Yiqiao I-ch'iao,I-ch'iao-chen,I-ch’iao,I-ch’iao-chen,Yiqiao,Yiqiao Zhen,yi qiao,yi qiao zhen,义桥,义桥镇 30.06956 120.19784 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1786478 Yinzu Yinzu Yin-tsu,Yin-tsu-chieh,Yinzu,Yinzu Zhen,yan zu,yan zu zhen,殷祖,殷祖镇 29.9603 114.8866 P PPLA4 CN 12 0 73 Asia/Shanghai 2012-01-18
-1786480 Yinzhu Yinzhu Yin-chu-pu,Yinzhu,Yinzhubu,yin zhu,印渚 29.98185 119.41685 P PPLA4 CN 02 0 53 Asia/Shanghai 2012-01-18
-1786485 Yinzhen Yinzhen Yin-chen,Yin-chia-hui,Yin-chia-hui-chen,Yinjiahui,Yinzhen,yin zhen,引镇 34.08268 109.09766 P PPLA4 CN 26 0 580 Asia/Chongqing 2012-01-18
-1786487 Yinying Yinying Jiao Qu,Lao-hu-kou,Shang-yin-ying,Yangquan Jiaoqu,Yinying,Yinying Zhen,jiao qu,yang quan jiao qu,yin ying,yin ying zhen,荫营,荫营镇,郊区,阳泉郊区 37.93694 113.5575 P PPLA3 CN 24 0 853 Asia/Shanghai 2012-01-18
-1786488 Yinyang Yinyang Yin-yang-chen,Yinyang,Yinyang Zhen,yin yang,yin yang zhen,寅阳,寅阳镇 31.71483 121.86187 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1786499 Yintang Yintang Yintang,Yintang Zhen,yin tang,yin tang zhen,银塘,银塘镇 31.59756 118.53089 P PPLA4 CN 01 0 18 Asia/Shanghai 2012-01-18
-1786517 Yinliu Yinliu 39.9825 117.39639 P PPL CN 28 1007 14 Asia/Harbin 2000-11-21
-1786519 Yinkeng Yinkeng Yinkang,Yinkeng,Yinkeng Zhen,yin keng,yin keng zhen,银坑,银坑镇 26.21512 115.61473 P PPLA4 CN 03 0 176 Asia/Shanghai 2012-01-18
-1786525 Yinjiang Yinjiang Yin-chiang,Yin-chiang-chiao,Yinjiang,Yinjiang Zhen,yin jiang,yin jiang zhen,鄞江,鄞江镇 29.7742 121.35519 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1786529 Yinji Yinji Yin-chia-chi,Yinji,Yinji Xiang,Yinjiaji,yin ji,yin ji xiang,尹集,尹集乡 31.94074 112.07386 P PPLA4 CN 12 0 120 Asia/Chongqing 2012-01-18
-1786531 Yinjiacheng Yinjiacheng Yinjiacheng,Yinjiacheng Xiang,yan jia cheng,yan jia cheng xiang,殷家城,殷家城乡 36.18866 106.94127 P PPLA4 CN 15 0 1378 Asia/Chongqing 2012-01-18
-1786535 Yinji Yinji Yinji,Yinji Zhen,yin ji,尹集 33.25082 113.575 P PPLA4 CN 09 0 129 Asia/Shanghai 2012-01-18
-1786538 Yining Yining Hsiu-shui,Hsiu-shui-hsien,I-ning,I-ning-chen,Iningchow,Siushui,Siushui-hsien,Suishiuhsien,Xiushui,Xiushui Xian,Yining,Yining Zhen,xiu shui xian,yi ning,yi ning zhen,义宁,义宁镇,修水县 29.03614 114.56362 P PPLA3 CN 03 0 112 Asia/Shanghai 2012-01-18
-1786545 Yingzhou Yingzhou Yingzhou,Yingzhou Zhen,ying zhou,ying zhou zhen,英州,英州镇 18.42149 109.84942 P PPLA4 CN 31 0 22 Asia/Chongqing 2012-01-18
-1786546 Zhongxiang Zhongxiang An-lu,Anlufu,Chung-hsiang,Chung-hsiang-hsien,Chungsiang,Yingzhong,Zhongxiang 31.16611 112.58306 P PPL CN 12 108883 50 Asia/Chongqing 2012-01-18
-1786559 Jincheng Jincheng Insyan',Insyan’,Jincheng,Jincheng Zhen,Ying,Ying Xian,Ying-hsien,Yingchow,jin cheng,jin cheng zhen,ying xian,应县,金城,金城镇 39.55912 113.18554 P PPLA3 CN 24 0 1006 Asia/Shanghai 2012-01-18
-1786572 Yingtou Yingtou Hsia-ying-t'ou,Hsia-ying-t’ou,Yingtou,Yingtou Zhen,ying tou,ying tou zhen,营头,营头镇 34.16014 107.75386 P PPLA4 CN 26 0 757 Asia/Chongqing 2012-01-18
-1786587 Yingshang Chengguanzhen Yingshang Chengguanzhen Yin-shang,Ying-shang-hsien,Yingshang,Yingshang Chengguanzhen,ying shang cheng guan zhen,颖上城关镇 32.62945 116.27014 P PPLA3 CN 01 61771 26 Asia/Shanghai 2012-01-18
-1786590 Yingqiao Yingqiao Yingqiao,Yingqiao Huizuzhen,ying qiao,ying qiao hui zu zhen,颍桥,颍桥回族镇 33.96342 113.5853 P PPLA4 CN 09 0 96 Asia/Shanghai 2012-01-18
-1786620 Yinggen Yinggen Ch'iung-chung,Ch’iung-chung,Qiongzhong,Qiongzhong Lizu Miaozu Zizhixian,Ying-ken,Ying-ken-chen,Ying-ken-p'u,Ying-ken-p’u,Yinggen,Yinggen Zhen,qiong zhong li zu miao zu zi zhi xian,ying gen,ying gen zhen,琼中黎族苗族自治县,营根,营根镇 19.03833 109.84 P PPLA3 CN 31 0 230 Asia/Chongqing 2012-01-18
-1786622 Yinggehai Yinggehai Inkohai,Yeko Hoi,Ying Khoa,Ying-ko-hai,Ying-ko-hai-shih,Ying-ko-tsui,Yinggehai,Yinggehai Zhen,ying ge hai,ying ge hai zhen,莺歌海,莺歌海镇 18.51142 108.68944 P PPLA4 CN 31 0 11 Asia/Chongqing 2012-01-18
-1786630 Yingdu Yingdu Ying-nei,Ying-tu,Yingdu 24.97167 118.24417 P PPL CN CN 07 4960 43 Asia/Shanghai 2012-01-18
-1786632 Yingdianjie Yingdianjie Yingdianjie,Yingdianjie Zhen,ying dian jie,ying dian jie zhen,应店街,应店街镇 29.81722 120.11389 P PPLA4 CN 02 0 88 Asia/Shanghai 2012-01-18
-1786634 Yingcheng Yingcheng Ying-te,Ying-te-hsien,Yingcheng,Yingde,Yingtak,Yingtak-hsien,ying cheng,英城 24.16588 113.41268 P PPLA3 CN 30 0 24 Asia/Chongqing 2012-01-18
-1786635 Yingcui Yingcui Ying-tsui-yen,Yingcui,Yingcui Zhen,Yingzuiyan,ying cui,ying cui zhen,英萃,英萃镇 32.4824 106.45108 P PPLA4 CN 32 0 625 Asia/Chongqing 2012-01-18
-1786640 Yingcheng Yingcheng Ying-ch'eng-hsien,Ying-ch’eng-hsien,Yingcheng 30.95 113.55 P PPL CN 12 265886 31 Asia/Chongqing 2012-01-18
-1786657 Yinchuan Yinchuan Ho-lan,In'chuan',Ngan Xuyen,Ngân Xuyên,Ning-hsia,Ningsia,Ningsia-hsien,Ningsiafu,Thanh pho Ngan Xuyen,Thành phố Ngân Xuyên,Yin-ch'uan-shih,Yin-ch’uan-shih,Yinchuan,Yinchuan Shi,yin chuan,yin chuan shi,Иньчуань,銀川,银川,银川市 38.46806 106.27306 P PPLA CN 21 475101 1117 Asia/Chongqing 2012-01-18
-1786676 Yima Yima I-ma,Jimy,Yima,Йимы 34.73806 111.88389 P PPL CN 09 82509 484 Asia/Chongqing 2012-01-18
-1786696 Yijing Yijing I-ching,I-ching-ts'un,I-ching-ts’un,Yijing,Yijing Xiang,yi jing,yi jing xiang,义井,义井乡 39.6393 113.21403 P PPLA4 CN 24 0 994 Asia/Shanghai 2012-01-18
-1786697 Yijing Yijing I-ching,I-ching-chen,Itsing,Yijing,Yijing Zhen,yi jing,yi jing zhen,义井,义井镇 39.06449 111.99984 P PPLA4 CN 24 0 1383 Asia/Chongqing 2012-01-18
-1786699 Yijing Yijing Cheng Qu,I-ching,I-ching-chen,Yijing,Yijing Jiedao,cheng qu,yi jing,yi jing jie dao,义井,义井街道,城区 37.83556 113.60194 P PPLA3 CN 24 0 672 Asia/Shanghai 2012-01-18
-1786702 Yijing Yijing Chin-t'ou-chen,Chin-t’ou-chen,I-ching,I-ching-chen,Yijing,Yijing Zhen,yi jing,yi jing zhen,义井,义井镇 34.57222 108.105 P PPLA4 CN 26 0 862 Asia/Chongqing 2012-01-18
-1786706 Yijiang Yijiang Ch'ing-i-chiang,Ch’ing-i-chiang,I-chiang-chen,Tsingkiang,Yijiang,Yijiang Zhen,yi jiang,yi jiang zhen,弋江,弋江镇 30.90745 118.48606 P PPLA4 CN 01 0 21 Asia/Shanghai 2012-01-18
-1786720 Yigou Yigou I-kou,I-kou-chen,I-kou-i,Igoui,Yigou 35.81139 114.31667 P PPL CN 09 59073 90 Asia/Shanghai 2012-01-18
-1786731 Qingzhou Qingzhou Ch'ing-chou,Ch’ing-chou,Cinchzhou,I-tu,I-tu-hsien,Qingzhou,Tsingchow,Tsingchowfu,Yidu,Yitu,Цинчжоу 36.69667 118.47972 P PPL CN 25 117056 98 Asia/Shanghai 2012-01-18
-1786738 Yidian Yidian I-tien,I-tien-chen,P'en-tien-chen,P’en-tien-chen,Yidian,Yidian Zhen,yi dian,yi dian zhen,益店,益店镇 34.40376 107.75309 P PPLA4 CN 26 0 647 Asia/Chongqing 2012-01-18
-1786746 Yichun Yichun I-ch'un,I-ch'un-chen,I-ch'un-hsien,I-ch’un,I-ch’un-chen,I-ch’un-hsien,Ichun',Yichun,Yichun Shi,Yuan-chou,Yuanchow,Yuen-chow-fu,Yüan-chou,Yüanchow,yi chun,yi chun shi,Ичунь,宜春,宜春市 27.83333 114.4 P PPLA2 CN 03 152169 99 Asia/Shanghai 2012-01-18
-1786751 Yichongqiao Yichongqiao Yichongqiao,Yichongqiao Xiang,yi chong qiao,yi chong qiao xiang,宜冲桥,宜冲桥乡 29.33136 110.86113 P PPLA4 CN 11 0 128 Asia/Chongqing 2012-01-18
-1786756 Tangxing Tangxing I-ch'eng,I-ch'eng-hsien,I-ch’eng,I-ch’eng-hsien,Tangxing,Tangxing Zhen,Yicheng,Yicheng Xian,Yichenghsien,tang xing,tang xing zhen,yi cheng xian,唐兴,唐兴镇,翼城县 35.74521 111.69872 P PPLA3 CN 24 0 603 Asia/Chongqing 2012-01-18
-1786759 Yicheng Yicheng Hsuan-ch'eng,Hsüan-ch’eng,I-ch'eng,I-ch'eng-hsien,I-ch’eng,I-ch’eng-hsien,Tzu-chung,Tzu-chung-hsien,Yicheng,Yicheng Jiedao,yan cheng,yan cheng jie dao,鄢城,鄢城街道 31.70472 112.25611 P PPLA3 CN 12 61027 63 Asia/Chongqing 2012-01-18
-1786760 Yicheng Yicheng I-ch'eng-chen,I-ch’eng-chen,I-hsing,I-hsing-ch'eng,I-hsing-ch’eng,I-hsing-hsien,Ihing,Yicheng,Yixing,yi cheng,宜城 31.37053 119.87027 P PPL CN 04 95530 4 Asia/Shanghai 2012-01-18
-1786764 Yichang Yichang I-ch'ang-hsien,I-ch'ang-shih,I-chang,I-ch’ang-hsien,I-ch’ang-shih,Ichan,Tung-hu,Yichang,yi chang shi,Ичан,يىچاڭ شەھىرى,宜昌市 30.71444 111.28472 P PPL CN 12 476725 63 Asia/Chongqing 2011-08-07
-1786770 Yibin Yibin Hsu-chou,Hsü-chou,I-pin,I-pin-hsien,I-pin-shih,Ibin',Suchow,Suifu,Süchow,Xufu,Xuzhou Cheng,Yibin,Yibin Shi,xu fu,xu zhou cheng,yi bin,yi bin shi,Ибинь,叙州城,叙府,宜宾,宜宾市 28.76667 104.62383 P PPLA3 CN 32 242111 291 Asia/Chongqing 2012-01-18
-1786778 Yezhou Yezhou Chien-shih,Chien-shih-hsien,Jianshi,Kien-shih,Kienshih-hsien,Yezhou,ye zhou,业州 30.60369 109.72333 P PPLA3 CN 12 0 557 Asia/Chongqing 2012-01-18
-1786789 Yexie Yexie Yeh-hsieh,Yeh-hsieh-chen,Yexie,Yexie Zhen,ye xie,ye xie zhen,叶榭,叶榭镇 30.94543 121.31643 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1786790 Kunyang Kunyang Kunyang,Kunyang Zhen,Shesyan,Yeh,Yeh-hsien,Yexian,kun yang,昆阳 33.62 113.345 P PPLA3 CN 09 0 90 Asia/Chongqing 2012-01-18
-1786796 Yetan Yetan Yetan,Yetan Zhen,ye tan,ye tan zhen,叶潭,叶潭镇 23.9056 115.17352 P PPLA4 CN 30 0 98 Asia/Shanghai 2012-01-18
-1786803 Yeping Yeping Yeh-p'ing,Yeh-p’ing,Yeping,Yeping Xiang,ye ping,ye ping xiang,叶坪,叶坪乡 25.90567 116.0697 P PPLA4 CN 03 0 199 Asia/Shanghai 2012-01-18
-1786811 Yeliguan Yeliguan Yeh-li-kuan,Yeliguan,ye li guan,冶力关 34.9644 103.66049 P PPLA4 CN 15 0 2195 Asia/Chongqing 2012-01-18
-1786841 Yazhou Yazhou Ya-chou,Yazhou,Yazhou Zhen,Yeh-chou-chuang,ya zhou,ya zhou zhen,雅周,雅周镇 32.39083 120.32556 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1786854 Yatunpu Yatunpu Ya-t'un-pao,Ya-t’un-pao,Yatunbu,Yatunpu,Yatunpu Xiang 26.155 109.62667 P PPL CN CN 11 1370 413 Asia/Chongqing 2012-01-18
-1786855 Yatou Yatou Jung-ch'eng,Jung-ch'eng-hsien,Jung-ch’eng,Jung-ch’eng-hsien,Rongcheng,Yai-t'ou,Yai-t'ou-chi,Yai-t’ou,Yai-t’ou-chi,Yatou,Zhunchehn,Жунчэн 37.15 122.38333 P PPL CN 25 91517 31 Asia/Shanghai 2012-01-18
-1786866 Yashan Yashan Liao-shan-chen,Shan-chieh,Ya-shan-chen,Ya-shan-chieh,Yashan,Yashan Zhen,ya shan,ya shan zhen,丫山,丫山镇 30.81667 118.01667 P PPLA4 CN 01 0 91 Asia/Shanghai 2012-01-18
-1786867 Yashan Yashan 22.1975 109.94194 P PPL CN 16 56629 64 Asia/Chongqing 2006-01-17
-1786872 Yaqueling Yaqueling Ya-ch'iao-ling,Ya-ch'ueh-ling,Ya-ch’iao-ling,Ya-ch’üeh-ling,Yaqueling,Yaqueling Zhen,ya que ling,ya que ling zhen,鸦鹊岭,鸦鹊岭镇 30.64543 111.58615 P PPLA4 CN 12 0 122 Asia/Chongqing 2012-01-18
-1786875 Yaqian Yaqian Ya-ch'ien,Ya-ch’ien,Yaqian,Yaqian Xiang,ya qian,ya qian xiang,衙前,衙前乡 28.28983 116.45288 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-18
-1786893 Yaoxu Yaoxu Yao-hsi-chieh,Yao-hsu,Yao-hsü,Yaoxu,Yaoxu Zhen,yao wei,yao wei zhen,姚圩,姚圩镇 27.85428 115.20812 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-18
-1786900 Yaozhou Yaozhou Yao,Yao-hsien,Yao-hsien-ch'eng,Yao-hsien-ch’eng,Yaochow,Yaochzhou,Yaosyan,Yaoxian,Yaozhou,Yaozhou Qu,yao zhou,yao zhou qu,耀州,耀州区 34.90528 108.97 P PPLA3 CN 26 0 627 Asia/Chongqing 2012-01-18
-1786926 Yaoshi Yaoshi Yao-shih,Yao-ssu,Yaoshi,Yaoshi Zhen,yao shi,腰市 34.05796 109.93659 P PPLA4 CN 26 0 875 Asia/Chongqing 2012-01-18
-1786927 Yaoshi Yaoshi Yao-shang,Yao-shih,Yaoshi 27.63944 109.53028 P PPL CN CN 11 1350 256 Asia/Chongqing 2012-01-18
-1786928 Yaoshi Yaoshi 26.29306 110.78917 P PPL CN 11 1580 318 Asia/Chongqing 2004-05-21
-1786948 Yaopi Yaopi Yaopi,Yaopi Zhen,yao bei,yao bei zhen,腰陂,腰陂镇 26.89496 113.64864 P PPLA4 CN 11 0 128 Asia/Shanghai 2012-02-28
-1786955 Yaoli Yaoli Yaoli,Yaoli Zhen,yao li,yao li zhen,瑶里,瑶里镇 29.54621 117.57502 P PPLA4 CN 03 0 113 Asia/Shanghai 2012-01-18
-1786960 Yaowang Yaowang Yao-chia-chuang,Yao-chuang,Yaojiazhuang,Yaowang,Yaowang Zhen,yao jia zhuang,yao wang,yao wang zhen,姚家庄,姚王,姚王镇 32.21667 120.06667 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1786964 Yaojiagou Yaojiagou Yao-chia-kou,Yaojiagou,Yaojiagou Zhen,yao jia gou,yao jia gou zhen,姚家沟,姚家沟镇 34.56641 107.52148 P PPLA4 CN 26 0 875 Asia/Chongqing 2012-01-18
-1786990 Yaodu Yaodu Chih-te,Dongzhi,Tung-chih,Yao-tu,Yao-tu-chen,Yao-tu-chieh,Yao-tu-hsu,Yao-tu-hsü,Yao-tu-wei,Yaodu,yao du,尧渡 30.1 117.01667 P PPLA3 CN 01 0 18 Asia/Shanghai 2012-01-18
-1786996 Yaodian Yaodian Yao-tien,Yao-tien-chen,Yaodian,Yaodian Zhen,yao dian,yao dian zhen,窑店,窑店镇 34.4075 108.85194 P PPLA4 CN 26 0 386 Asia/Chongqing 2012-01-18
-1786997 Yaojiadian Yaojiadian Yao-chia-tien,Yaojiadian,Yaojiadian Xiang,yao jia dian,yao jia dian xiang,姚家店,姚家店乡 30.36681 111.43763 P PPLA4 CN 12 0 87 Asia/Chongqing 2012-01-18
-1787003 Yaocun Yaocun Yao-ts'un,Yao-ts’un,Yaocun,yao cun,姚村 30.89181 119.10058 P PPLA4 CN 01 0 80 Asia/Shanghai 2012-01-18
-1787016 Yanzihe Yanzihe Yanzihe,Yanzihe Xiang,Yen-tzu-ho,yan zi he,yan zi he xiang,岩子河,岩子河乡 31.96897 113.60506 P PPLA4 CN 12 0 144 Asia/Chongqing 2012-01-18
-1787020 Yanzibian Yanzibian Yanzibian,Yanzibian Zhen,Yen-tzu-pien,yan zi bian,yan zi bian zhen,燕子砭,燕子砭镇 32.90119 105.9254 P PPLA4 CN 26 0 888 Asia/Chongqing 2012-01-18
-1787022 Yanzi Yanzi Yanzi,Yanzi Xiang,yan zi,yan zi xiang,燕子,燕子乡 29.96806 110.22028 P PPLA4 CN 12 0 1184 Asia/Chongqing 2012-01-18
-1787031 Yanzhou Yanzhou Ch'ie-fou,Ch’ie-fou,Tzeyang,Tzu-yang,Tzu-yang-ch'eng,Tzu-yang-ch’eng,Tzu-yang-hsien,Yanzhou,Yen-chou,Yenchow,Yenchow-fu,Yenzhou 35.55278 116.82861 P PPL CN 25 77276 54 Asia/Shanghai 2012-01-18
-1787046 Yanxia Yanxia Yanxia,Yanxia Xiang,Yen-hsia,yan sha,yan sha xiang,燕厦,燕厦乡 29.56974 114.86279 P PPLA4 CN 12 0 80 Asia/Shanghai 2012-01-18
-1787048 Yanxi Yanxi Yanxi,Yanxi Zhen,Yen-hsi,yan xi,yan xi zhen,砚溪,砚溪镇 27.64255 115.03905 P PPLA4 CN 03 0 70 Asia/Shanghai 2012-01-18
-1787053 Yanwu Yanwu Yanwu,Yanwu Xiang,yan wu,yan wu xiang,演武,演武乡 36.1577 107.07368 P PPLA4 CN 15 0 1409 Asia/Chongqing 2012-01-18
-1787057 Yanweigang Yanweigang Yanweigang,Yanweigang Zhen,Yen-wei-chiang,Yen-wei-kang,Yenhweikiang,yan wei gang,yan wei gang zhen,燕尾港,燕尾港镇 34.46667 119.76667 P PPLA4 CN 04 0 254 Asia/Shanghai 2012-01-18
-1787059 Yanwan Yanwan Yanwan,Yawan,Yen-wan,yan wan,岩湾 34.0337 106.9783 P PPLA4 CN 26 0 1454 Asia/Chongqing 2012-01-18
-1787065 Yantou Yantou Yantou,Yantou Xiang,Yen-t'ou,Yen-t’ou,yan tou,yan tou xiang,岩头,岩头乡 39.06059 113.32902 P PPLA4 CN 24 0 1254 Asia/Shanghai 2012-01-18
-1787072 Yantian Yantian Yantian,Yantian Zhen,Yen-t'ien,Yen-t’ien,yan tian,yan tian zhen,严田,严田镇 27.36594 114.37429 P PPLA4 CN 03 0 119 Asia/Chongqing 2012-01-18
-1787073 Yantian Yantian Yantian,Yen-t'ien,Yen-t’ien 26.85333 119.8575 P PPL CN CN 07 3190 23 Asia/Shanghai 2012-01-18
-1787075 Yantian Yantian Imtin,Yantian,Yantian Jiedao,Yen-t'ien,Yen-t'ien-tung,Yen-t’ien,Yen-t’ien-tung,Yim Tin,yan tian,盐田 22.58422 114.26722 P PPLA4 CN 30 0 15 Asia/Chongqing 2012-01-18
-1787079 Yantang Yantang Yantang,Yantang Zhen,Yen-t'ang,Yen-t’ang,Zhangshi,yan tang,yan tang zhen,zhang shi,严塘,严塘镇,樟市 26.78833 113.69583 P PPLA4 CN 11 0 159 Asia/Chongqing 2012-02-28
-1787080 Yantan Yantan Yantan,Yen-t'an,Yen-t’an,yan tan,沿滩 29.27396 104.8738 P PPLA3 CN 32 0 299 Asia/Chongqing 2012-01-18
-1787093 Yantai Yantai Cheefoo,Chefoo,Chifu,Jan'taj,Yantai,Yen-t'ai,Yen-t'ai-shih,Yen-t’ai,Yen-t’ai-shih,Яньтай 37.53333 121.4 P PPL CN 25 719332 17 Asia/Shanghai 2012-01-18
-1787094 Yansi Yansi An-ssu,Huizhou,Huizhou Qu,Yansi,Yansi Zhen,Yen-ssu,Yen-ssu-chieh,Yensze,hui zhou qu,yan si,yan si zhen,岩寺,岩寺镇,徽州区 29.82365 118.33679 P PPLA3 CN 01 0 137 Asia/Shanghai 2012-01-18
-1787123 Yanqiao Yanqiao Yanqiao,Yen-ch'iao,Yen-ch'ien,Yen-ch’iao,Yen-ch’ien,yan qiao,堰桥 31.71272 120.33095 P PPLA3 CN 04 0 4 Asia/Shanghai 2012-01-18
-1787125 Yanqian Yanqian Yanqian,Yanqian Zhen,Yen-ch'ien,Yen-ch’ien,yan qian,yan qian zhen,岩前,岩前镇 26.26259 117.45164 P PPLA4 CN 07 0 180 Asia/Shanghai 2012-01-18
-1787129 Yanmenguan Yanmenguan Yanmenguan,Yanmenguan Xiang,Yen-men Kuan,yan men guan,yan men guan xiang,雁门关,雁门关乡 39.19018 112.85946 P PPLA4 CN 24 0 1610 Asia/Shanghai 2012-01-18
-1787131 Yanmen Yanmen Yanmen,Yen-men 27.855 109.74028 P PPL CN CN 11 1590 161 Asia/Chongqing 2012-01-18
-1787143 Yanling Yanling Wei-yuan-hsien,Wei-yüan-hsien,Weiyuan,Yanling,yan ling,严陵 29.53065 104.66108 P PPLA3 CN 32 0 318 Asia/Chongqing 2012-01-18
-1787144 Yanliang Yanliang Yanliang,Yen-liang,Yen-liang-chen,yan liang,阎良 34.65918 109.22921 P PPLA3 CN 26 60891 395 Asia/Chongqing 2012-01-18
-1787151 Yankou Yankou Wusheng,Yankou,Yen-k'ou,Yen-k'ou-ch'ang,Yen-k'ou-chen,Yen-k’ou,Yen-k’ou-chen,Yen-k’ou-ch’ang,yan kou,沿口 30.35115 106.28669 P PPLA3 CN 32 0 288 Asia/Chongqing 2012-01-18
-1787152 Yankou Yankou Yankou,Yankouxiang,yan kou,yan kou xiang,岩口,岩口乡 27.34833 111.08806 P PPLA4 CN 11 0 320 Asia/Chongqing 2012-02-28
-1787163 Yanjing Yanjing Yanjing,Yanjing Zhen,yan jing,yan jing zhen,盐井,盐井镇 29.84277 111.75944 P PPLA4 CN 11 0 69 Asia/Shanghai 2012-01-18
-1787164 Yanjing Yanjing Pai-yen-ching,Yanjing,Yanyuan,Yen-ching,Yen-ching-hsiang,Yen-yuan,Yen-yüan,yan jing,盐井 27.42699 101.50968 P PPLA3 CN 32 0 2550 Asia/Chongqing 2012-01-18
-1787166 Yanjing Yanjing Lao-ya-kuan,Lao-ya-t'an,Lao-ya-t’an,Yanjin,Yanjing,Yen-chin,Yen-ching,Yen-ching-hsien,Yentsing,Yentsing-hsien,yan jing,盐井 28.07207 104.189 P PPLA3 CN 29 0 922 Asia/Chongqing 2012-01-18
-1787178 Yanjiao Yanjiao Qiyunshan,Qiyunshan Zhen,Yanjiao,qi yun shan,qi yun shan zhen,yan jiao,岩脚,齐云山,齐云山镇 29.82 118.04111 P PPLA4 CN 01 0 169 Asia/Shanghai 2012-01-18
-1787204 Yangzongnan Hengjie Yangzongnan Hengjie Yang-t'sung-ch'eng,Yang-t’sung-ch’eng,Yangzong,Yangzong Zhen,Yangzongnan Hengjie,yang zong,yang zong nan heng jie,yang zong zhen,阳宗,阳宗南横街,阳宗镇 24.82222 102.96945 P PPLA4 CN 29 0 1905 Asia/Chongqing 2012-01-18
-1787206 Yangzi Yangzi Yang-tzu-ch'iao,Yang-tzu-ch’iao,Yangzi,Yangzi Zhen,Yangziqiao,yang zi,yang zi zhen,杨梓,杨梓镇 29.6413 116.60412 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-18
-1787208 Yangzi Yangzi Yang-tzu,Yang-tzu-chen,Yangzi,Yangzi Zhen,yang zi,yang zi zhen,洋梓,洋梓镇 31.2921 112.63243 P PPLA4 CN 12 0 50 Asia/Chongqing 2012-01-18
-1787227 Yangzhou Yangzhou Chiang-tu,Chiang-tu-hsien,Han-chiang,Janchzhou,Kiangtu,Yang-chou,Yang-chou-shih,Yang-chow-fu,Yangchow,Yangzhou,yang zhou,yang zhou shi,Янчжоу,ياڭجو شەھىرى,扬州,扬州市,揚州,楊州 32.39722 119.43583 P PPL CN 04 539715 14 Asia/Shanghai 2012-01-18
-1787228 Yangzhou Yangzhou Yangzhou,Yangzhou Xiang,yang zhou,yang zhou xiang,杨洲,杨洲乡 29.16279 115.38028 P PPLA4 CN 03 0 109 Asia/Shanghai 2012-01-18
-1787230 Yangzhong Yangzhong Yang-chung,Yangzhong 26.70556 119.37444 P PPL CN CN 07 3640 358 Asia/Shanghai 2012-01-18
-1787231 Hutou Hutou Hutou,Yang-chung,Yangzhong Zhen,hu tou,yang zhong zhen,洋中镇,湖头 26.2771 118.4763 P PPLA4 CN 07 0 172 Asia/Shanghai 2012-01-18
-1787246 Yangyu Yangyu Yang-yu-ts'un,Yang-yü-ts’un,Yangyu,Yangyu Xiang,yang yu,yang yu xiang,阳隅,阳隅乡 35.42012 111.09097 P PPLA4 CN 24 0 720 Asia/Chongqing 2012-01-18
-1787247 Yangyu Yangyu Yang-yu-chen,Yang-yü-chen,Yangyu,Yangyu Zhen,yang yu,yang yu zhen,阳峪,阳峪镇 34.65121 108.20642 P PPLA4 CN 26 0 895 Asia/Chongqing 2012-01-18
-1787255 Yangxu Yangxu Yangxu,Yangxu Zhen,yang wei,yang wei zhen,杨圩,杨圩镇 28.36922 115.15849 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-18
-1787272 Yangxi Yangxi Yang-ch'i,Yang-ch'i-chen,Yang-ch’i,Yang-ch’i-chen,Yang-hsi,Yangxi,Yangxi Zhen,yang xi,yang xi zhen,杨溪,杨溪镇 30.15667 118.6421 P PPLA4 CN 01 0 240 Asia/Shanghai 2012-01-18
-1787274 Yangxi Yangxi Yang-hsi,Yangxi,Yangxi Xiang,yang xi,yang xi xiang,杨溪,杨溪乡 28.22977 116.73192 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-18
-1787277 Yangxi Yangxi Yang-hsi,Yangxi,Yangxi Zhen,yang xi,yang xi zhen,洋溪,洋溪镇 27.29799 114.21325 P PPLA4 CN 03 0 193 Asia/Chongqing 2012-01-18
-1787278 Yangxi Yangxi Yang-hsi,Yangxi,Yangxi Xiang,yang xi,yang xi xiang,洋溪,洋溪乡 26.31141 117.72672 P PPLA4 CN 07 0 220 Asia/Shanghai 2012-01-18
-1787285 Yangwang Yangwang Yang-wang-chen,Yangwang,Yangwang Zhen,yang wang,yang wang zhen,阳王,阳王镇 35.50716 111.11521 P PPLA4 CN 24 0 513 Asia/Chongqing 2012-01-18
-1787304 Yangtou Yangtou Yang-t'ou-ssu,Yang-t’ou-ssu,Yangtou 27.68944 109.41389 P PPL CN CN 18 1145 302 Asia/Chongqing 2012-01-18
-1787313 Yangtan Yangtan Kou-hsi-ts'un,Kou-hsi-ts’un,Yangtan,Yangtan Xiang,yang tan,yang tan xiang,杨谈,杨谈乡 35.77516 111.53847 P PPLA4 CN 24 0 565 Asia/Chongqing 2012-01-18
-1787314 Yangtan Yangtan Yangtan,yang tan,杨滩 30.70583 119.16806 P PPLA4 CN 01 0 85 Asia/Shanghai 2012-01-18
-1787323 Yangshuo Yangshuo Jansho,Yang-shuo-chen,Yang-shuo-hsien,Yangso,Yangso-hsien,yang shuo,Яншо,阳朔 24.78081 110.48967 P PPLS CN 16 300000 116 Asia/Chongqing 2010-01-11
-1787331 Zhangjiagang Zhangjiagang Sha-chou,Shazhou,Yang-she-chen,Yang-she-ying,Yangshe,Zhangjiagang Shi 31.865 120.53889 P PPL CN 04 66039 13 Asia/Shanghai 2006-01-17
-1787339 Yangsha Yangsha Yangsha,yang sha,羊沙 34.83155 103.66816 P PPLA4 CN 15 0 2558 Asia/Chongqing 2012-01-18
-1787351 Yangquan Yangquan Yang-ch'uan,Yang-ch'uan-chan,Yang-ch'uan-shih,Yang-ch’üan,Yang-ch’üan-chan,Yang-ch’üan-shih,Yangquan,Yangquan Shi,yang quan,yang quan shi,阳泉,阳泉市 37.8575 113.56333 P PPLA2 CN 24 413394 722 Asia/Shanghai 2012-01-18
-1787367 Yangqiao Yangqiao Yang-ch'iao,Yang-ch’iao,Yangqiao,Yangqiao Zhen,yang qiao,yang qiao zhen,杨桥,杨桥镇 27.95746 114.58997 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-18
-1787375 Yangpu Yangpu Yangpu,yang pu,杨浦 31.26193 121.51904 P PPLA3 CN 23 0 9 Asia/Shanghai 2012-01-18
-1787381 Yangpingguan Yangpingguan Ku'yang-p'ing-kuan,Ku’yang-p’ing-kuan,Yang-p'ing-kuan,Yang-p’ing-kuan,Yangpingguan,Yangpingguan Zhen,Yangpingkwan,Yanpingan',Yanpingan’,yang ping guan,yang ping guan zhen,阳平关,阳平关镇 32.96232 106.05398 P PPLA4 CN 26 0 584 Asia/Chongqing 2012-01-18
-1787384 Yangping Yangping Yang-p'ing-chen,Yang-p’ing-chen,Yangping,Yangping Zhen,yang ping,yang ping zhen,阳平,阳平镇 34.3379 107.48986 P PPLA4 CN 26 0 530 Asia/Chongqing 2012-01-18
-1787395 Yangmingbu Yangmingbu Yang-ming-pao,Yangmingbu,Yangmingbu Zhen,Yanminbao,yang ming bao,yang ming bao zhen,阳明堡,阳明堡镇 39.0125 112.87222 P PPLA4 CN 24 0 849 Asia/Shanghai 2012-01-18
-1787397 Yangming Yangming Heping Xian,Ho-p'ing,Ho-p'ing-hsien,Ho-p’ing,Ho-p’ing-hsien,Yang-ming-chen,Yangming,Yangming Zhen,he ping xian,yang ming,yang ming zhen,和平县,阳明,阳明镇 24.45088 114.9344 P PPLA3 CN 30 0 156 Asia/Shanghai 2012-02-02
-1787409 Yangmei Yangmei Yangmei,Yangmei Zhen,yang mei,yang mei zhen,杨梅,杨梅镇 24.10231 112.56176 P PPLA4 CN 30 0 472 Asia/Chongqing 2012-01-18
-1787421 Yanglu Yanglu Yanglu,Yanglu Xiang,Yangluwa,yang lu,yang lu xiang,羊路,羊路乡 36.63655 106.14164 P PPLA4 CN 21 0 1433 Asia/Chongqing 2012-01-18
-1787423 Guanshang Guanshang Guanshang,Guanshang Zhen,Yang-hsien,Yang-lo,Yanglochen,Yangluo,Yangluo Jiedao,guan shang,guan shang zhen,关上,关上镇 30.65704 114.55333 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-18
-1787437 Yangliuqing Yangliuqing Yang-liu-ch'ing,Yang-liu-ch'ing-chen,Yang-liu-ch’ing,Yang-liu-ch’ing-chen,Yangliuqing 39.1375 116.99972 P PPL CN 28 76387 8 Asia/Shanghai 2012-01-18
-1787438 Yangliu Yangliu Yang-tiu-p'u,Yang-tiu-p’u,Yangliu,Yangliu Zhen,Yangliupu,yang liu,yang liu zhen,杨柳,杨柳镇 30.83795 118.61173 P PPLA4 CN 01 0 38 Asia/Shanghai 2012-01-18
-1787455 Yanglinshi Yanglinshi Yang-lin,Yang-lin-shih,Yanglinshi,Yanglinshi Zhen,yang lin shi,yang lin shi zhen,杨林市,杨林市镇 29.97875 111.77555 P PPLA4 CN 12 0 55 Asia/Shanghai 2012-01-18
-1787458 Yangling Yangling Yang-ling-chen,Yangling,Yangling Qu,yang ling,yang ling qu,杨陵,杨陵区 34.27173 108.07891 P PPLA3 CN 26 0 460 Asia/Chongqing 2012-01-18
-1787470 Yanglang Yanglang Yang-lang-chen,Yanglang,Yanglang Xiang,Yanglangzhen,yang lang,yang lang xiang,杨郎,杨郎乡 36.22568 106.1697 P PPLA4 CN 21 0 1568 Asia/Chongqing 2012-01-18
-1787481 Yangjinzhuang Yangjinzhuang 39.885 117.39806 P PPL CN 28 1915 8 Asia/Harbin 2000-11-21
-1787497 Yangzhai Yangzhai Yang-chia-chai,Yang-chia-chia,Yangjiazhai,Yangkiachai,Yangzhai,Yangzhai Zhen,yang zhai,yang zhai zhen,杨寨,杨寨镇 31.51724 113.99508 P PPLA4 CN 12 0 53 Asia/Shanghai 2012-01-18
-1787521 Yangjiapo Yangjiapo 39.29417 117.8875 P PPL CN 28 2899 0 Asia/Shanghai 2000-11-21
-1787531 Yangjiang Yangjiang Yang-chiang,Yangjiang,Yangjiang Xiang,yang jiang,yang jiang xiang,洋江,洋江乡 27.85658 114.53405 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-18
-1787538 Yangji Yangji Yang-chia-chi,Yangji,Yangji Zhen,Yangjiaji,yang ji,yang ji zhen,杨集,杨集镇 31.21894 112.99492 P PPLA4 CN 12 0 235 Asia/Chongqing 2012-01-18
-1787554 Yangdian Yangdian Yangdian,yang dian,杨店 33.93332 106.42656 P PPLA4 CN 15 0 998 Asia/Chongqing 2012-01-18
-1787557 Yangjiachang Yangjiachang Yang-chia-ch'ang,Yang-chia-ch’ang,Yangjiachang,Yangjiachang Zhen,yang jia chang,yang jia chang zhen,杨家厂,杨家厂镇 30.06632 112.28477 P PPLA4 CN 12 0 43 Asia/Chongqing 2012-01-18
-1787579 Yanghu Yanghu Yanghu,Yanghu Zhen,yang hu,yang hu zhen,阳湖,阳湖镇 29.70237 118.2971 P PPLA4 CN 01 0 135 Asia/Shanghai 2012-01-18
-1787580 Yanghou Yanghou 26.64083 118.50806 P PPL CN 07 2530 318 Asia/Shanghai 2001-01-05
-1787581 Yanghong Yanghong Yang-hung,Yang-hung-tien,Yanghong,Yanghong Zhen,yang hong,yang hong zhen,阳洪,阳洪镇 34.51958 108.31516 P PPLA4 CN 26 0 604 Asia/Chongqing 2012-01-18
-1787590 Yanghe Yanghe Yang-chia-ho,Yanghe,Yanghe Zhen,yang he,yang he zhen,杨河,杨河镇 31.09625 113.58089 P PPLA4 CN 12 0 40 Asia/Chongqing 2012-01-18
-1787594 Yangguo Yangguo Yang-kuo,Yang-kuo-chen,Yangguo,Yangguo Zhen,yang guo,阳郭 34.35588 109.51963 P PPLA4 CN 26 0 638 Asia/Chongqing 2012-01-18
-1787599 Yangguang Yangguang Yangguang,Yangguang Zhen,Yanguang Zhen,yang guang,yang guang zhen,杨广,杨广镇 24.13722 102.79389 P PPLA4 CN 29 0 1815 Asia/Chongqing 2012-01-18
-1787601 Yanggu Yanggu Jang,Yang-ku,Yang-ku-hsien,Янг 36.11056 115.77528 P PPL CN 25 74725 42 Asia/Shanghai 2010-01-29
-1787610 Yanggang Yanggang Yanggang,Yanggang Zhen,yang gang,yang gang zhen,洋港,洋港镇 29.57818 115.13741 P PPLA4 CN 12 0 67 Asia/Shanghai 2012-01-18
-1787618 Yangfanglin Yangfanglin Yangfanglin,Yangfanglin Xiang,yang fang lin,yang fang lin xiang,杨芳林,杨芳林乡 29.48413 114.36302 P PPLA4 CN 12 0 131 Asia/Shanghai 2012-01-18
-1787619 Yangfangkou Yangfangkou Yangfangkou,Yangfangkou Zhen,yang fang kou,yang fang kou zhen,阳方口,阳方口镇 39.10071 112.33059 P PPLA4 CN 24 0 1262 Asia/Chongqing 2012-01-18
-1787624 Yangezhuang Yangezhuang Yangezhuang,Yen-ko-chuang 39.99639 117.69028 P PPL CN CN 28 3722 24 Asia/Harbin 2012-01-18
-1787638 Yangdi Yangdi Yangdi,Yangdi Xiang,yang de,yang de xiang,洋地,洋地乡 26.04864 116.32815 P PPLA4 CN 03 0 416 Asia/Shanghai 2012-01-18
-1787646 Yangcun Yangcun Wu-ch'ing,Wu-ch'ing-hsien,Wu-ch’ing,Wu-ch’ing-hsien,Wuqing,Yang-ts'un,Yang-ts’un,Yangcun 39.36389 117.06028 P PPL CN 28 63756 7 Asia/Shanghai 2012-01-18
-1787656 Yangcun Yangcun Yang-ts'un,Yang-ts’un,Yangcun,Yangcun Zhen,yang cun,yang cun zhen,杨村,杨村镇 24.63734 114.62799 P PPLA4 CN 03 0 309 Asia/Chongqing 2012-01-18
-1787657 Yangcun Yangcun Yang-t'sun,Yang-ts'un-hsu,Yang-ts’un-hsü,Yang-t’sun,Yangcun,Yangcun Zhen,yang cun,杨村 23.43366 114.46774 P PPLA4 CN 30 0 28 Asia/Chongqing 2012-01-18
-1787667 Fengcheng Fengcheng Fengcheng,Fengcheng Zhen,Yang-ch'eng-hsien,Yang-ch’eng-hsien,Yangcheng,Yangcheng Xian,feng cheng,feng cheng zhen,yang cheng xian,凤城,凤城镇,阳城县 35.4922 112.40428 P PPLA3 CN 24 0 655 Asia/Chongqing 2012-01-18
-1787669 Yangcheng Yangcheng Yang-shan-hsien,Yangcheng,Yangshan,Yeungshanhsien,yang cheng,阳城 24.4762 112.64521 P PPLA3 CN 30 0 64 Asia/Chongqing 2012-01-18
-1787681 Yangce Yangce Yang-cha,Yang-ts'e,Yang-ts’e,Yangce,Yangce Zhen,yang ce,羊册 32.99285 113.24706 P PPLA4 CN 09 0 171 Asia/Chongqing 2012-01-18
-1787689 Yangba Yangba Yang-chia-pa,Yangba,Yangba Zhen,yang ba,yang ba zhen,杨坝,杨坝镇 32.47463 106.78191 P PPLA4 CN 32 800 707 Asia/Chongqing 2012-01-18
-1787746 Yancheng Yancheng Jan'chehn,Yancheng,Yen-ch'eng,Yen-ch'eng-chen,Yen-ch'eng-hsien,Yen-ch’eng,Yen-ch’eng-chen,Yen-ch’eng-hsien,yan cheng,yan cheng shi,Яньчэн,يەنچېن شەھىرى,盐城,盐城市 33.38556 120.12528 P PPL CN 04 628441 6 Asia/Shanghai 2012-01-18
-1787758 Yanbodu Yanbodu Yanbodu,Yanbodu Zhen,Yen-pai-tu,Yen-po-tu,yan po du,yan po du zhen,岩泊渡,岩泊渡镇 29.37467 110.96814 P PPLA4 CN 11 0 109 Asia/Chongqing 2012-01-18
-1787781 Yakou Yakou Yakou,Yakow 24.67194 118.63722 P PPL CN CN 07 3660 9 Asia/Shanghai 2012-01-18
-1787794 Ya’erya Ya'erya Ya'erya,Ya'erya Xiang,Ya-chi-yai,Ya-erh-ya,Yan'erya,Yan’erya,Ya’erya,Ya’erya Xiang,Yen-erh-ya,Yen-ya,Yen-yai,ya r ya,ya r ya xiang,鸦儿崖,鸦儿崖乡 39.96876 112.99309 P PPLA4 CN 24 0 1411 Asia/Shanghai 2012-01-18
-1787805 Yacheng Yacheng Yacheng,Yacheng Zhen,ya cheng,ya cheng zhen,牙城,牙城镇 26.98829 120.18835 P PPLA4 CN 07 0 13 Asia/Shanghai 2012-01-18
-1787806 Yacheng Yacheng Chiu-yai-hsien,Ngaaiuen,Ngai chiu,Ngai-hsien,Yacheng,Yacheng Zhen,Yai,Yai-ch'eng,Yai-ch'eng-chen,Yai-chou,Yai-ch’eng,Yai-ch’eng-chen,Yai-hsien,Yaichiu,Yaichu,ya cheng,ya cheng zhen,崖城,崖城镇 18.37595 109.16474 P PPLA4 CN 31 0 9 Asia/Chongqing 2012-01-18
-1787808 Yacha Yacha Bach Sia,Baisha,Baisha Lizu Zizhixian,Pai-sha,Pai-sha-hsien,Pai-sha-shih,Paksha,Paktua,Ta-ch'i,Ta-ch’i,Ya-ch'i-chen,Ya-ch’i-chen,Yacha,Yacha Zhen,bai sha li zu zi zhi xian,ya cha,ya cha zhen,牙叉,牙叉镇,白沙黎族自治县 19.23056 109.4475 P PPLA3 CN 31 0 215 Asia/Chongqing 2012-01-18
-1787813 Yabai Yabai Wa-pai,Ya-pai,Ya-pai-chen,Ya-pei-chen,Yabai,Yabai Zhen,ya bai,ya bai zhen,哑柏,哑柏镇 34.17939 108.08662 P PPLA4 CN 26 0 451 Asia/Chongqing 2012-01-18
-1787821 Xuzhuang Xuzhuang Hsu-chuang,Hsü-chuang,Xuzhuang,Xuzhuang Zhen,xu zhuang,许庄 34.86455 109.94047 P PPLA4 CN 26 0 368 Asia/Chongqing 2012-01-18
-1787824 Tongshan Tongshan Hsu-chou,Hsu-chou-shih,Hsü-chou,Hsü-chou-shih,Sjujchzhou,Suchow,Suchow-fu,Süchow-fu,T'ung-shan,Tongshan,T’ung-shan,Xuzhou,swijeou,xu zhou,xu zhou shi,Сюйчжоу,شۈجو شەھىرى,徐州,徐州市,쉬저우 34.18045 117.15707 P PPLA3 CN 04 1199193 37 Asia/Shanghai 2012-01-18
-1787828 Xuyong Xuyong Hsu-yung,Hsu-yung-hsien,Hsü-yung,Hsü-yung-hsien,Suyung,Suyung-hsien,Suyüng,Süyung-hsien,Xuyong,Yongning,Yung-ning,Yungninghsien,xu yong,叙永 28.16992 105.43452 P PPLA3 CN 32 0 367 Asia/Chongqing 2012-01-18
-1787833 Xuyang Xuyang Xuyang,xu yang,徐杨 34.6183 109.14353 P PPLA4 CN 26 0 382 Asia/Chongqing 2012-01-18
-1787834 Xuyang Xuyang Jung,Jung-hsien,Rongxian,Xuyang,Yung-hsien,xu yang,旭阳 29.45941 104.41947 P PPLA3 CN 32 0 363 Asia/Chongqing 2012-01-18
-1787837 Xucheng Xucheng Hsu-wen,Hsu-wen-hsien,Hsü-wen,Hsü-wen-hsien,Suwen,Suwenyun,Tsuimen,Xucheng,Xuwen,xu cheng,徐城 20.35 110.12884 P PPLA3 CN 30 83267 114 Asia/Chongqing 2012-01-18
-1787838 Xuwei Xuwei Hsu-wei,Hsü-wei,Xuwei,Xuwei Zhen,xu wei,xu wei zhen,徐圩,徐圩镇 34.52598 119.53803 P PPLA4 CN 04 0 255 Asia/Shanghai 2012-01-18
-1787854 Xushuguan Xushuguan Hsu-kuan-chen,Hsu-shu-kuan,Hsü-kuan-chen,Hsü-shu-kuan,Hu-shu-kuan,Hushukwan,Xushuguan,hu shu guan,浒墅关 31.38028 120.49722 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1787856 Xushi Xushi Hsu-shih,Hsü-shih,Xushi,Xushi Zhen,xu shi,xu shi zhen,徐市,徐市镇 27.22781 118.0892 P PPLA4 CN 07 0 162 Asia/Shanghai 2012-01-18
-1787858 Shangrao Shangrao Kuanghsin,Kwangsin,Shang-jao,Shang-jao-hsien,Shang-jao-shih,Shangrao,Shangrao Shi,Xuri,shang rao,shang rao shi,上饶,上饶市 28.45322 117.9686 P PPLA2 CN 03 318769 89 Asia/Shanghai 2012-01-18
-1787899 Xundian Xundian Hsun-tien,Hsün-tien,Xundian,Xundian Zhen,xun dian,xun dian zhen,巡店,巡店镇 31.16188 113.6338 P PPLA4 CN 12 0 39 Asia/Chongqing 2012-01-18
-1787901 Xunchang Xunchang Xunchang,xun chang,巡场 28.45433 104.71498 P PPLA3 CN 32 64580 515 Asia/Chongqing 2012-01-18
-1787912 Xukou Xukou Hsu-k'ou,Hsu-k'ou-chen,Hsü-k’ou,Hsü-k’ou-chen,Xukou,xu kou,胥口 31.23044 120.47414 P PPLA4 CN 04 0 10 Asia/Shanghai 2012-01-18
-1787913 Xujing Xujing Hsu-ching-chen,Xujing,xu jing,徐泾 31.17612 121.27122 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1787917 Yuyue Yuyue Hsu-chia-chuang,Xujiazhuang,Xujiazhuang Zhen,Yuyue,Yuyue Zhen,xu jia zhuang zhen,yu yue,yu yue zhen,徐家庄镇,禹越,禹越镇 30.51895 120.26131 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1787923 Xujiaping Xujiaping Hsu-chia-p'ing,Hsü-chia-p’ing,Xujiaping,Xujiaping Zhen,xu jia ping,xu jia ping zhen,徐家坪,徐家坪镇 33.40545 106.05763 P PPLA4 CN 26 0 669 Asia/Chongqing 2012-01-18
-1787925 Xujiang Xujiang Guangchang Xian,Kuang-ch'ang,Kuang-ch'ang-hsien,Kuang-ch’ang,Kuang-ch’ang-hsien,Kwangchang,Kwangchang-hsien,Xujiang,Xujiang Zhen,guang chang xian,xu jiang,xu jiang zhen,广昌县,旴江,旴江镇 26.83944 116.32011 P PPLA3 CN 03 0 142 Asia/Shanghai 2012-01-18
-1787943 Xubu Xubu Hsu-chia-fou,Hsu-chia-pu,Hsü-chia-fou,Hsü-chia-pu,Xubu,Xubu Zhen,Xujiabu,xu bu,xu bu zhen,徐埠,徐埠镇 29.46457 116.31524 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1787948 Xujia Xujia Xujia,Xujia Xiang,xu jia,xu jia xiang,徐家,徐家乡 27.65005 116.69046 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-18
-1787957 Xuhui Xuhui Hsu-chia-hui,Hsu-chia-hui-chen,Hsu-chia-t'ang,Hsu-hui,Hsü-chia-hui,Hsü-chia-hui-chen,Hsü-chia-t’ang,Hsü-hui,Siccawei,Xuhui,xu hui,徐汇 31.19594 121.44709 P PPLA3 CN 23 0 11 Asia/Shanghai 2012-01-18
-1787958 Xuhe Xuhe Hsu-chia-ho,Hsü-chia-ho,Xuhe,Xuhe Zhen,xu he,xu he zhen,许河,许河镇 32.73333 120.65 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1787960 Xuhang Xuhang Hsu-chia-hang,Hsu-hang,Hsü-chia-hang,Hsü-hang,Xuhang,xu xing,徐行 31.41293 121.27065 P PPLA4 CN 23 0 4 Asia/Shanghai 2012-01-18
-1787976 Xuezhen Xuezhen Hsieh-chia-chen,Hsueh-chen,Hsueh-chia-chen,Hsüeh-chen,Hsüeh-chia-chen,Xuezhen,xue zhen,薛镇 34.95475 109.29652 P PPLA4 CN 26 0 577 Asia/Chongqing 2012-01-18
-1787989 Xuelu Xuelu Hsieh-lu-chen,Hsueh-lu,Hsueh-lu-chen,Hsüeh-lu,Hsüeh-lu-chen,Xuelu,Xuelu Zhen,xue lu,xue lu zhen,薛录,薛录镇 34.40961 108.34052 P PPLA4 CN 26 0 561 Asia/Chongqing 2012-01-18
-1787990 Xuekulue Xuekulue Hsieh-chia-k'ou-luan,Hsieh-chia-k'uo-luan,Hsieh-chia-k’ou-lüan,Hsieh-chia-k’uo-lüan,Hsueh-hu-lun,Hsuëh-hu-lun,Xuekulue,Xuekulun,Xukulue Xiang,xue ku lue,xue ku lue xiang,薛圐圙,薛圐圙乡 39.40798 112.79669 P PPLA4 CN 24 0 1027 Asia/Shanghai 2012-01-18
-1787994 Xuejiawa Xuejiawa Hsieh-chia-wa,Hsueh-chia-wa,Hsüeh-chia-wa,Xuejiawa,Xuejiawa Xiang,xue jia wa,xue jia wa xiang,薛家洼,薛家洼乡 39.04975 112.44245 P PPLA4 CN 24 0 1752 Asia/Chongqing 2012-01-18
-1788005 Funan Chengguanzhen Funan Chengguanzhen Fou-nan,Funan,Funan Chengguanzhen,Hsieh-chi,Hsieh-chi-chen,Xueji,fu nan cheng guan zhen,阜南城关镇 32.63678 115.61494 P PPLA3 CN 01 0 33 Asia/Shanghai 2012-01-18
-1788016 Xuefeng Xuefeng Chiu-ming-ch'i,Chiu-ming-ch’i,Guihua,Hsueh-feng,Hsueh-feng-chen,Hsüeh-feng,Hsüeh-feng-chen,Kuei-hua,Kweihwa,Kweihwahsien,Ming-ch'i,Ming-ch'i-hsien,Ming-ch’i,Ming-ch’i-hsien,Ming-hsi,Mingxi,San-ming,Xuefeng,xue feng,雪峰 26.35722 117.19778 P PPLA3 CN 07 0 364 Asia/Shanghai 2012-01-18
-1788020 Xuedian Xuedian Hsueh-tien,Hsüeh-tien,Xuedian,Xuedian Zhen,xue dian,xue dian zhen,薛店,薛店镇 35.46997 111.19933 P PPLA4 CN 24 0 697 Asia/Chongqing 2012-01-18
-1788022 Xuedian Xuedian Hsieh-tien,Hsueh-tien,Hsüeh-tien,Xuedian,Xuedian Zhen,xue dian,薛店 34.01195 113.08704 P PPLA4 CN 09 0 140 Asia/Chongqing 2012-01-18
-1788040 Xucun Xucun Hsu-ts'un,Hsu-ts'un-chen,Hsü-ts’un,Hsü-ts’un-chen,Xucun,Xucun Zhen,xu cun,xu cun zhen,许村,许村镇 30.43523 120.36473 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1788042 Xucun Xucun Hsu-ts'un,Hsü-ts’un,Xucun,Xucun Zhen,xu cun,xu cun zhen,许村,许村镇 29.18361 117.55528 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-18
-1788046 Xuchang Xuchang Hsu-ch'ang,Hsu-ch'ang-hsien,Hsu-ch'ang-shih,Hsu-chou,Hsuchow,Hsü-chou,Hsü-ch’ang,Hsü-ch’ang-hsien,Hsü-ch’ang-shih,Hsüchow,Syuychan,Xuchang 34.01667 113.81667 P PPL CN 09 449258 73 Asia/Shanghai 2012-01-18
-1788068 Xuanjiabao Xuanjiabao Hsuan-chia-p'u,Hsuan-chia-pao,Hsuan-p'u,Hsuan-pao,Hsüan-chia-pao,Hsüan-chia-p’u,Hsüan-pao,Hsüan-p’u,Xuanbao,Xuanbao Zhen,Xuanjiabao,Xuanjiapu,xuan bao,xuan bao zhen,xuan jia bao,宣堡,宣堡镇,宣家堡 32.29167 119.99722 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1788075 Xuanfeng Xuanfeng Hsuan-feng,Hsuan-feng-chen,Hsüan-feng-chen,Suanfengchen,Xuanfeng,Xuanfeng Zhen,xuan feng,xuan feng zhen,宣风,宣风镇 27.69624 114.11988 P PPLA4 CN 03 0 120 Asia/Chongqing 2012-01-18
-1788077 Zhushan Zhushan Hsuan-en,Hsuan-en-hsien,Hsüan-en,Hsüan-en-hsien,I-en,Suan-en-hsien,Suanen,Süan-en-hsien,Xuan'en,Xuan'en Xian,Xuan’en,Xuan’en Xian,Zhushan,xuan en xian,zhu shan,宣恩县,珠山 29.99452 109.47908 P PPLA3 CN 12 0 507 Asia/Chongqing 2012-01-18
-1788081 Xuanzhou Xuanzhou Hsuan-ch'eng,Hsuan-ch'eng-hsien,Hsüan-ch’eng,Hsüan-ch’eng-hsien,Ning-kuo,Ningkwo,Ningkwofu,Suancheng,Suancheng-hsien,Süancheng,Süancheng-hsien,Xuancheng,Xuanzhou 30.9525 118.75528 P PPL CN 01 127758 25 Asia/Shanghai 2012-01-18
-1788082 Xuancheng Xuancheng Hsuan-ch'eng,Hsüan-ch’eng,Xuancheng,Xuancheng Xiang,xuan cheng,xuan cheng xiang,宣城,宣城乡 25.4095 116.3841 P PPLA4 CN 07 0 312 Asia/Shanghai 2012-01-18
-1788102 Xizhou Xizhou Hsi-chou,Hsi-chou-chen,Sichow,Xizhou,Xizhou Zhen,xi zhou,xi zhou zhen,西周,西周镇 29.47889 121.67278 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1788123 Xizhai Xizhai Hsi-chai,Hsi-wang-chai,Xizhai,xi zhai,西寨 34.68476 110.05 P PPLA4 CN 26 0 338 Asia/Chongqing 2012-01-18
-1788156 Xiyan Xiyan Hsi-yen-shih,Muguatsyao,Xiyan,Xiyan Zhen,Xiyanshi 26.61639 110.47361 P PPL CN CN 11 3060 391 Asia/Chongqing 2012-01-18
-1788167 Leping Leping Hsi-yang,Hsi-yang-hsien,Leping,Leping Zhen,Lo-p'ing,Lo-p’ing,Siyang,Xiyang,Xiyang Xian,le ping,le ping zhen,xi yang xian,乐平,乐平镇,昔阳县 37.61469 113.66499 P PPLA3 CN 24 0 914 Asia/Shanghai 2012-01-18
-1788170 Xiyang Xiyang Hsi-yang,Hsi-yang-chen,Xiyang,Xiyang Zhen,xi yang,西阳 34.66033 109.00853 P PPLA4 CN 26 0 422 Asia/Chongqing 2012-01-18
-1788192 Xixing Xixing Hsi-hsing,Hsi-hsing-chen,Xixing,Xixing Jiedao,xi xing,xi xing jie dao,西兴,西兴街道 30.18911 120.22669 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1788206 Xixiang Xixiang Hsi-hsiang,Xixiang 35.16278 112.865 P PPL CN 09 60745 132 Asia/Chongqing 2012-01-18
-1788209 Longquan Longquan Hsi,Hsi-hsien,Hsi-hsien-ch'eng,Hsi-hsien-ch’eng,Longquan,Longquan Zhen,Lu-liang,Lü-liang,Sichow,Xi Xian,Xixian,long quan,long quan zhen,xi xian,隰县,龙泉,龙泉镇 36.69525 110.95564 P PPLA3 CN 24 0 1079 Asia/Chongqing 2012-01-18
-1788224 Xixi Xixi Hsi-hsi,Xixi 27.69722 110.96583 P PPL CN CN 11 2170 484 Asia/Chongqing 2012-01-18
-1788230 Xiwu Xiwu Hsi-wu,Hsi-wu-ts'un,Hsi-wu-ts’un,Xiwu,Xiwu Zhen,xi wu,xi wu zhen,西吴,西吴镇 34.29722 108.56639 P PPLA4 CN 26 0 403 Asia/Chongqing 2012-01-18
-1788231 Xiwu Xiwu Hsi-wu,K'u-chu,K’u-chu,Xiwu,Xiwu Xiang,xi wu,xi wu xiang,西武,西武乡 29.90626 117.88457 P PPLA4 CN 01 0 222 Asia/Shanghai 2012-01-18
-1788232 Xiwu Xiwu Hsi-wu,Hsi-wu-chen,Xiwu,Xiwu Zhen,Xiwuzhen,xi wu,xi wu zhen,西坞,西坞镇 29.68322 121.48352 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-18
-1788237 Xiwei Xiwei Xiwei,Xiwei Xiang,xi wei,xi wei xiang,溪尾,溪尾乡 26.18981 118.37426 P PPLA4 CN 07 0 203 Asia/Shanghai 2012-01-18
-1788259 Xiushi Xiushi Xiushi,Xiushi Zhen,xiu shi,xiu shi zhen,秀市,秀市镇 28.00078 115.92654 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1788263 Xiushan Xiushan Ch'i-lu,Ch’i-lu,T'ung-hai,T'ung-hai-hsien,Tonghai,Tonghai Xian,T’ung-hai,T’ung-hai-hsien,Xiushan,Xiushan Zhen,tong hai xian,xiu shan,xiu shan zhen,秀山,秀山镇,通海县 24.10999 102.76153 P PPLA3 CN 29 0 1829 Asia/Chongqing 2012-01-18
-1788268 Xiulin Xiulin Shih-shou,Shih-shou-hsien,Shih-show-hsien,Shishou,Xiulin 29.71667 112.4 P PPL CN 12 122411 36 Asia/Chongqing 2012-01-18
-1788269 Xiugu Xiugu Chin-ch'i,Chin-ch'i-hsien,Chin-ch'i-hsien-ch'eng,Chin-ch’i,Chin-ch’i-hsien,Chin-ch’i-hsien-ch’eng,Chin-hsi,Jinxi,Jinxi Xian,Kinki,Kinkihsien,Xiugu,Xiugu Zhen,jin xi xian,xiu gu,xiu gu zhen,秀谷,秀谷镇,金溪县 27.91132 116.77637 P PPLA3 CN 03 0 101 Asia/Shanghai 2012-01-18
-1788274 Xituan Xituan Hsi-t'uan,Hsi-t'uan-chen,Hsi-t’uan,Hsi-t’uan-chen,Xituan,Xituan Zhen,xi tuan,xi tuan zhen,西团,西团镇 33.10954 120.41829 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1788280 Xitou Xitou Ch'i-t'ou-chen,Ch’i-t’ou-chen,Hsi-t'ou,Hsi-t'ou-chen,Hsi-t’ou,Hsi-t’ou-chen,Xitou,Xitou Zhen,xi tou,xi tou zhen,溪头,溪头镇 30.01053 118.46731 P PPLA4 CN 01 0 155 Asia/Shanghai 2012-01-18
-1788282 Xitou Xitou Xitou,Xitou Xiang,xi tou,xi tou xiang,溪头,溪头乡 29.45404 118.07942 P PPLA4 CN 03 0 222 Asia/Shanghai 2012-01-18
-1788286 Xiting Xiting Hsi-t'ing,Hsi-t'ing-chen,Hsi-t’ing,Hsi-t’ing-chen,Xiting,Xiting Zhen,xi ting,xi ting zhen,西亭,西亭镇 32.12442 121.00388 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1788291 Xitangtuo Xitangtuo 39.31472 117.47944 P PPL CN 28 5684 5 Asia/Shanghai 2000-11-21
-1788297 Xitang Xitang Hsi-t'ang,Hsi-t'ang-chen,Hsi-t’ang,Hsi-t’ang-chen,Xitang,Xitang Zhen,xi tang,xi tang zhen,西塘,西塘镇 30.94729 120.88785 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1788298 Xitangqiao Xitangqiao Hsi-t'ang-ch'iao,Hsi-t’ang-ch’iao,Xitang,Xitangqiao,Xitangqiao Zhen,xi tang qiao,xi tang qiao zhen,西塘桥,西塘桥镇 30.60868 120.98286 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1788302 Houxixi Houxixi Houxixi,Hsi-t'an,Hsi-t’an,Xitan,hou xi xi,后溪西 23.76774 117.12266 P PPLA4 CN 07 0 15 Asia/Shanghai 2012-01-18
-1788316 Xishuijie Xishuijie Hsi-shui-chieh,Xishuijie,Xishuijie Xiang,xi shui jie,xi shui jie xiang,西水界,西水界乡 39.66366 112.23341 P PPLA4 CN 24 0 1541 Asia/Chongqing 2012-01-18
-1788328 Xishiqiao Xishiqiao Hsi-shih-ch'iao,Hsi-shih-ch’iao,Xishiqiao,Xishiqiao Zhen,xi shi qiao,xi shi qiao zhen,西石桥,西石桥镇 31.86889 120.08833 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1788330 Xishenba Xishenba Hsi-shen-chu,Hsi-shen-chü,Hsi-shen-pa,Sishen'tzyuy,Sishen’tzyuy,Xishenba,Xishenba Xiang,xi shen ba,xi shen ba xiang,喜神坝,喜神坝乡 32.80512 106.91991 P PPLA4 CN 26 0 734 Asia/Chongqing 2012-01-18
-1788351 Xishan Xishan Hsi-shan,Hsi-shan-wan-shou-kung,Wan-shou-kung,Xishan,Xishan Zhen,xi shan,xi shan zhen,西山,西山镇 28.55166 115.62479 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-18
-1788352 Xishan Xishan Hsi-shan-chieh,Xishan 25.68528 108.96389 P PPL CN CN 18 1452 229 Asia/Chongqing 2012-01-18
-1788365 Xisa Xisa Hsi-ch'ou,Hsi-ch'ou-hsien,Hsi-ch’ou,Hsi-ch’ou-hsien,Hsi-hsi,Hsi-sa,Hsi-sa-chen,Hsi-sa-chieh,Sichow-hsien,Sisha,Sishakai,Xichou,Xisa,xi sa,西洒 23.45 104.70775 P PPLA3 CN 29 0 1515 Asia/Chongqing 2012-01-18
-1788375 Xiqin Xiqin Hsi-ch'in,Hsi-ch’in,Sikin,Xiqin,Xiqin Zhen,xi qin,xi qin zhen,西芹,西芹镇 26.57207 118.10993 P PPLA4 CN 07 0 87 Asia/Shanghai 2012-01-18
-1788402 Xiongzhou Xiongzhou Namyung,Nan-hsiung,Nan-hsiung-hsien,Nanxiong,Nanyung-hsien,Xiongzhou,xiong zhou,雄州 25.11667 114.3 P PPLA3 CN 30 79050 119 Asia/Chongqing 2012-01-18
-1788406 Guixi Guixi Guixi,Guixi Shi,Kuei-ch'i,Kuei-ch'i-hsien,Kuei-ch'i-hsien-ch'eng,Kuei-ch’i,Kuei-ch’i-hsien,Kuei-ch’i-hsien-ch’eng,Kuei-hsi,Kweiki,Kweikihsien,Xiongshi,gui xi,gui xi shi,贵溪,贵溪市 28.28857 117.21329 P PPLA3 CN 03 73732 51 Asia/Shanghai 2012-01-18
-1788407 Xiongshan Xiongshan Cheng-ho,Cheng-ho-hsien,Chiu-cheng-ho,Xiongshan,Xiongshan Zhen,Zhenghe,xiong shan,xiong shan zhen,zheng he,政和,熊山,熊山镇 27.36439 118.85711 P PPLA3 CN 07 0 250 Asia/Shanghai 2012-01-18
-1788409 Xiongkou Xiongkou Hsiung-k'ou,Hsiung-k'ou-shih,Hsiung-k’ou,Hsiung-k’ou-shih,Xiongkou,Xiongkou Zhen,xiong kou,xiong kou zhen,熊口,熊口镇 30.30646 112.77527 P PPLA4 CN 12 0 30 Asia/Chongqing 2012-01-18
-1788414 Xionghe Xionghe Hsiung-chia-ho,Xionghe,Xionghe Zhen,Xiongjiahe,xiong he,xiong he zhen,熊河,熊河镇 30.08424 112.44306 P PPLA4 CN 12 0 34 Asia/Chongqing 2012-01-18
-1788416 Xiongji Xiongji Hsing-chia-chi,Hsiung-chia-chi,Xiongji,Xiongji Zhen,xiong ji,xiong ji zhen,熊集,熊集镇 31.95639 112.65472 P PPLA4 CN 12 0 105 Asia/Chongqing 2012-01-18
-1788425 Xinzhu Xinzhu Hsin-chu,Hsin-chu-chen,Xinzhu,xin zhu,新筑 34.38488 109.05543 P PPLA4 CN 26 0 380 Asia/Chongqing 2012-01-18
-1788450 Xinzhou Xinzhou Hsin,Hsin-hsien,Hsin-hsien-ch'eng,Hsin-hsien-ch’eng,Hsin-ting,Sinchow,Sinhsien,Xinfu Qu,Xinxian,Xinzhou,Xinzhou Shi,xin fu qu,xin zhou,xin zhou shi,忻州,忻州市,忻府区 38.40917 112.73333 P PPL CN 24 154003 794 Asia/Shanghai 2012-01-18
-1788452 Xinzhou Xinzhou Hsin-chou,Hsin-chou-chen,Sinchow,Xinzhou 30.86667 114.8 P PPL CN 12 78767 29 Asia/Shanghai 2012-01-18
-1788453 Xinzhou Xinzhou Hsin-chou,Xinzhou,Xinzhou Zhen,xin zhou,xin zhou zhen,新洲,新洲镇 29.55522 111.88135 P PPLA4 CN 11 0 38 Asia/Shanghai 2012-01-18
-1788457 Xinzhou Xinzhou Hsi-lung,Hsi-lung-hsien,Hsin-chou,Hsin-chou-chen,Longlin Gezu Zizhixian,Lung-lin,Lung-lin-hsiang,Lung-lin-ko-tsu-tzu-chih-hsien,Silung,Silung-hsien,Xinzhou,xin zhou,新州 24.87234 105.35117 P PPLA3 CN 16 0 961 Asia/Chongqing 2012-01-18
-1788461 Xinzhou Xinzhou Hsin-chou,Taan,Tam-chau,Tamchiu,Tamchow,Tan,Tan-hsien,Tanchow,Xinzhou,Xinzhou Zhen,xin zhou,xin zhou zhen,新州,新州镇 19.71446 109.31146 P PPLA4 CN 31 0 11 Asia/Chongqing 2012-01-18
-1788462 Xinzhi Xinzhi Hsin-chih,Hsin-chih-ts'un,Hsin-chih-ts’un,Pei-ts'un,Pei-ts’un,Xinzhi 36.49889 111.70472 P PPL CN 24 72303 519 Asia/Chongqing 2012-01-18
-1788463 Xinzhi Xinzhi Hsin-chih,Xinzhi,Xinzhi Xiang,xin zhi,xin zhi xiang,新祉,新祉乡 27.69456 114.68239 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-18
-1788467 Xinzheng Xinzheng Xinzheng,xin zheng,新政 31.27491 106.28714 P PPLA3 CN 32 0 333 Asia/Chongqing 2012-01-18
-1788468 Xinzheng Xinzheng Xinzheng,Xinzheng Zhen,xin zheng,xin zheng zhen,新政,新政镇 18.54298 109.62355 P PPLA4 CN 31 0 96 Asia/Chongqing 2012-01-18
-1788473 Zhelin Zhelin Hsin-che-lin,Xinzhelin,Zhelin,Zhelin Zhen,zhe lin,zhe lin zhen,柘林,柘林镇 29.20968 115.5064 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-18
-1788482 Xinzhan Xinzhan Hsin-chan,Xinzhan 28.38833 106.85667 P PPL CN CN 18 2400 528 Asia/Chongqing 2012-01-18
-1788491 Xinzhai Xinzhai Hsin-chai,Xinzhai,Xinzhai Xiang,xin zhai,xin zhai xiang,新寨,新寨乡 36.94276 107.94765 P PPLA4 CN 26 0 1360 Asia/Chongqing 2012-01-18
-1788493 Xinzhai Xinzhai Xinzhai,xin zhai,新寨 33.64387 104.68386 P PPLA4 CN 15 0 1588 Asia/Chongqing 2012-01-18
-1788508 Xinyu Xinyu Hsin-yu,Hsin-yu-chen,Hsin-yu-hsien,Hsin-yu-hsien-ch'eng,Hsin-yu-shih,Hsin-yü,Hsin-yü-chen,Hsin-yü-hsien,Hsin-yü-hsien-ch’eng,Hsin-yü-shih,Sinyu-hsien,Sinyü-hsien,Xinyu,Xinyu Shi,xin yu,xin yu shi,新余,新余市 27.80429 114.93335 P PPLA4 CN 03 97480 68 Asia/Shanghai 2012-01-18
-1788516 Xinying Xinying Hsin-hsing,Hsin-hsing-shih,Sinhin,Sunhing,Sunhingshi,Xinxing,Xinying,Xinying Zhen,xin ying,xin ying zhen,新盈,新盈镇 19.89295 109.52534 P PPLA4 CN 31 0 12 Asia/Chongqing 2012-01-18
-1788520 Xinyi Xinyi Hsin-i,Hsin-i-chen,Xinyi,xin yi,信义 34.56954 109.59966 P PPLA4 CN 26 0 343 Asia/Chongqing 2012-01-18
-1788522 Xinye Xinye Hsin-yeh,Hsin-yeh-hsien,Sin-ye-hsien,Sinyeh-hsien,Xinye 32.51861 112.35222 P PPL CN 09 61633 94 Asia/Chongqing 2012-01-18
-1788534 Xinyang Xinyang Czinan',Hsin-yang,Hsin-yang-hsien,Hsin-yang-shih,Sinyang,Sinyang-hsien,Xinyang,Цзинань 32.12278 114.06556 P PPL CN 09 1590668 89 Asia/Shanghai 2012-01-18
-1788537 Xinxu Xinxu Hsin-hsu,Hsin-hsü,Xinxu,Xinxu Zhen,xin wei,xin wei zhen,新圩,新圩镇 26.90636 115.13437 P PPLA4 CN 03 0 68 Asia/Shanghai 2012-01-18
-1788548 Xinxu Xinxu Xinxu,Xinxu Zhen,xin wei,新圩 24.05486 115.86355 P PPLA4 CN 30 0 107 Asia/Shanghai 2012-01-18
-1788563 Xinxing Xinxing Hsin-hsing,Xinxing,Xinxing Zhen,xin xing,xin xing zhen,新兴,新兴镇 34.77556 108.885 P PPLA4 CN 26 0 646 Asia/Chongqing 2012-01-18
-1788567 Xincheng Xincheng Hsin-hsing,Hsin-hsing-hsien,Sinhing,Sunhing,Sunhing-hsien,Xincheng,Xinxing,xin cheng,新城 22.70014 112.22407 P PPLA3 CN 30 0 37 Asia/Chongqing 2012-01-18
-1788568 Xinxing Xinxing Hsin-hsing,Hsin-hsing-shih,Hsing-hsing-shih,Xinxing,Xinxing Zhen,Xinying,xin xing,xin xing zhen,新兴,新兴镇 19.51099 110.17597 P PPLA4 CN 31 0 89 Asia/Chongqing 2012-01-18
-1788572 Xinxiang Xinxiang Hsin-hsiang,Hsin-hsiang-hsien,Hsin-hsiang-shih,Hsinghsiang,Sin'sjan,Singsieng,Sinsiang-hsien,Xinxiang,Синьсян 35.30889 113.86722 P PPL CN 09 743601 75 Asia/Shanghai 2012-01-18
-1788593 Xintian Xintian Hsin-t'ien-shan,Hsin-t’ien-shan,Xintian,Xintian Zhen,Xintianshan,xin tian,xin tian zhen,新田,新田镇 30.75531 118.76947 P PPLA4 CN 01 0 94 Asia/Shanghai 2012-01-18
-1788600 Xintian Xintian Hsin-t'ien,Hsin-t'ien-ch'iao,Hsin-t’ien,Hsin-t’ien-ch’iao,Xintian,Xintian Xiang,xin tian,xin tian xiang,新田,新田乡 27.82495 114.258 P PPLA4 CN 03 0 111 Asia/Chongqing 2012-01-18
-1788601 Longquan Longquan Hsin-t'ien,Hsin-t'ien-hsien,Hsin-t’ien,Hsin-t’ien-hsien,Longquan,Longquanzhen,Sintien-hsien,Xintian,long quan,龙泉 25.90139 112.21167 P PPLA3 CN 11 0 213 Asia/Chongqing 2012-01-18
-1788602 Xintian Xintian Hsin-t'ien,Hsin-t’ien,Xintian,Xintian Zhen,xin tian,xin tian zhen,新田,新田镇 25.36177 115.24551 P PPLA4 CN 03 0 201 Asia/Shanghai 2012-01-18
-1788606 Xintang Xintang Hsin-t'ang-pu,Hsin-t’ang-pu,Xintang,Xintang Xiang,Xintangpu,xin tang,xin tang xiang,新塘,新塘乡 29.61879 115.71358 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-18
-1788611 Xintang Xintang Hsin-t'ang,Hsin-t’ang,Santong,Suntong,Xintang,Xintang Zhen,xin tang,新塘 23.12238 113.60917 P PPLA4 CN 30 0 24 Asia/Chongqing 2012-01-18
-1788618 Xintai Xintai Hsin-t'ai,Hsin-t'ai-hsien,Hsin-t’ai,Hsin-t’ai-hsien,Hsing-t'ai,Hsing-t’ai,Sintai,Sintaihsien,Sintoihsien,Xintai 35.90056 117.75194 P PPL CN 25 222459 197 Asia/Shanghai 2012-01-18
-1788630 Xinshiba Xinshiba Chieh-lo,Ganluo,Hsi-hsi-chiao-pa,Hsin-shih-pa,Kan-lo,Xinshiba,xin shi ba,新市坝 28.97091 102.77126 P PPLA3 CN 32 0 1053 Asia/Chongqing 2012-01-18
-1788632 Xinshi Xinshi Hsin-shih,Hsin-shih-chen,Xinshi,Xinshi Zhen,xing shi,幸市 34.57258 109.5247 P PPLA4 CN 26 0 351 Asia/Chongqing 2012-01-18
-1788636 Xinshi Xinshi Hsin-shih,Hsin-shih-chen,Xinshi,Xinshi Zhen,xin shi,xin shi zhen,新市,新市镇 31.57673 118.73294 P PPLA4 CN 01 0 24 Asia/Shanghai 2012-01-18
-1788638 Xinshi Xinshi Ching-shan,Ching-shan-hsien,Jingshan,Kingshan,Kingshanhsien,Xinshi,xin shi,新市 31.04704 113.14098 P PPLA3 CN 12 98422 115 Asia/Chongqing 2012-01-18
-1788640 Xinshi Xinshi Hsin-shih,Hsin-shih-chen,Sinshih,Xinshi,Xinshi Zhen,xin shi,xin shi zhen,新市,新市镇 30.61738 120.28407 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1788650 Daxinshao Daxinshao Daxinshao,Xinshao,Xinshao Zhen,da xin shao,xin shao,xin shao zhen,大新哨,新哨,新哨镇 24.24052 103.45153 P PPLA4 CN 29 0 1367 Asia/Chongqing 2012-01-18
-1788652 Xinshan Xinshan An-yuan-hsien,An-yüan-hsien,Anyuan,Anyuan Xian,Xinshan,Xinshan Zhen,an yuan xian,xin shan,xin shan zhen,安远县,欣山,欣山镇 25.13732 115.3872 P PPLA3 CN 03 0 288 Asia/Shanghai 2012-01-18
-1788657 Xinquan Xinquan Hsin-ch'uan,Hsin-ch’üan,Xinquan,Xinquan Zhen,xin quan,xin quan zhen,新泉,新泉镇 25.35483 116.61209 P PPLA4 CN 07 0 294 Asia/Shanghai 2012-01-18
-1788669 Xinqiao Xinqiao Hsin-ch'iao,Hsin-ch'iao-chen,Hsin-ch’iao,Hsin-ch’iao-chen,Xinqiao,Xinqiao Zhen,xin qiao,xin qiao zhen,新桥,新桥镇 31.065 121.3075 P PPLA4 CN 23 0 5 Asia/Shanghai 2012-01-18
-1788673 Xinqiao Xinqiao Hsin-ch'iao,Hsin-ch’iao,Xinqiao,Xinqiao Zhen,xin qiao,xin qiao zhen,新桥,新桥镇 29.18947 110.50622 P PPLA4 CN 11 0 257 Asia/Chongqing 2012-01-18
-1788680 Xinqiao Xinqiao Hsin-ch'iao,Hsin-ch’iao,Xinqiao,Xinqiao Zhen,xin qiao,xin qiao zhen,新桥,新桥镇 25.88096 116.45164 P PPLA4 CN 07 0 342 Asia/Shanghai 2012-01-18
-1788691 Xinpu Xinpu Hsin-p'u,Hsin-p'u-yen,Hsin-p’u,Hsin-p’u-yen,Xinpu,Xinpu Zhen,Xinpuyan,Xinpuzhen,xin pu,xin pu zhen,新浦,新浦镇 30.24367 121.36419 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1788694 Xinpu Xinpu Hsien-p'u,Hsien-p’u,Hsin-hai-lien,Hsin-hai-lien-shih,Hsin-p'u,Hsin-p'u-chen,Hsin-p’u,Hsin-p’u-chen,Lianyungang,Lien-yun-chiang,Lien-yun-chiang-shih,Lien-yun-kang,Lien-yün-chiang,Lien-yün-chiang-shih,Lien-yün-kang,Sinpuchen,Tsin-pu,Xinpu,lian yun gang,lian yun gang shi,lyen-wingang,xin pu,ليەنيۈنگاڭ شەھىرى,新浦,连云港,连云港市,連雲港,連雲港市,롄윈강 34.59972 119.15944 P PPLA3 CN 04 392444 6 Asia/Shanghai 2012-01-18
-1788696 Xinpu Xinpu Hsin-p'u,Hsin-p'u-wan,Hsin-p’u,Hsin-p’u-wan,Xinpu,Xinpu Zhen,xin pu,xin pu zhen,新铺,新铺镇 33.1 106.45 P PPLA4 CN 26 0 630 Asia/Chongqing 2012-01-18
-1788697 Xinpu Xinpu Xinpu,Xinpu Xiang,xin pu,xin pu xiang,新铺,新铺乡 29.68135 111.37815 P PPLA4 CN 11 0 179 Asia/Shanghai 2012-01-18
-1788701 Xinpeicun Xinpeicun Hsin-p'ei-ts'un,Hsin-p’ei-ts’un,Peicun Xiang,Shiyihao Xiang,Xinpeicun,pei cun xiang,shen yi hao xiang,xin pei cun,什义号乡,新裴村,裴村乡 39.61755 113.52935 P PPLA4 CN 24 0 1060 Asia/Shanghai 2012-01-18
-1788707 Xinning Xinning Wu-ning-hsien,Wu-ning-hsien-ch'eng,Wu-ning-hsien-ch’eng,Wuning,Xinning,Xinning Zhen,xin ning,xin ning zhen,新宁,新宁镇 29.23922 115.09737 P PPLA4 CN 03 0 73 Asia/Shanghai 2012-01-18
-1788708 Xinning Xinning Fu-nan-hsiang,Fu-nan-hsien,Fu-sui,Funan,Hsin-ning,Xinning,xin ning,新宁 22.6708 107.88912 P PPLA3 CN 16 0 94 Asia/Chongqing 2012-01-18
-1788730 Xinmian Xinmian Nongchang,Shih-mien,Shimian,Xinmian,xin mian,新棉 29.23992 102.37208 P PPLA3 CN 32 0 1136 Asia/Chongqing 2012-01-18
-1788736 Xinlong Xinlong Xinlong,Xinlongxu,xin long,xin long zhen,新龙,新龙镇 25.19793 114.62254 P PPLA4 CN 30 0 148 Asia/Shanghai 2012-02-28
-1788745 Xinling Xinling Badong,Pa-tung,Pa-tung-hsien,Xinling,xin ling,信陵 31.0253 110.31816 P PPLA3 CN 12 0 597 Asia/Chongqing 2012-01-18
-1788747 Xinlicun Xinlicun 39.08472 117.33556 P PPL CN 28 2150 6 Asia/Shanghai 2000-11-21
-1788760 Xinkaikou Xinkaikou Hsin-k'ai-t'un,Hsin-k’ai-t’un,Xinkaikou 39.67889 117.19028 P PPL CN CN 28 2101 7 Asia/Shanghai 2012-01-18
-1788763 Xinkai Xinkai Hsin-k'ai-kang,Hsin-k’ai-kang,Hsu-chia,Hsü-chia,Xinkai,Xinkai Zhen,Xinkaigang,xin kai,xin kai zhen,新开,新开镇 31.90999 120.93973 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1788772 Xinjing Xinjing Ching-hsi,Ching-hsi-hsien,Ching-hsi-hsien-ch'eng,Ching-hsi-hsien-ch’eng,Jingxi,Kuei-shun,Kweishun,Tsingsi,Tsingsihsien,Xinjing,xin jing,新靖 23.20252 106.38207 P PPLA3 CN 16 0 923 Asia/Chongqing 2012-01-18
-1788793 Xinjiayuan Xinjiayuan Hsin-chia-yuan,Hsin-chia-yüan,Xinjiayuan,Xinjiayuan Xiang,xin jia yuan,xin jia yuan xiang,新家园,新家园乡 39.75324 112.98583 P PPLA4 CN 24 0 1065 Asia/Shanghai 2012-01-18
-1788800 Longxing Longxing Hsin-chiang,Hsin-chiang-hsien,Kiangchow,Longxing,Longxing Zhen,Sinkiang,Sinkianghsien,Xinjiang Xian,long xing,long xing zhen,xin jiang xian,新绛县,龙兴,龙兴镇 35.61297 111.21925 P PPLA3 CN 24 0 401 Asia/Chongqing 2012-01-18
-1788807 Xinjian Xinjian Hsin-chien,Shih-tu,Xinjian,Xinjian Xiang,xin jian,xin jian xiang,新建,新建乡 29.12498 117.93485 P PPLA4 CN 03 0 91 Asia/Shanghai 2012-01-18
-1788816 Xinji Xinji Hsin-chi,Hsin-chi-chen,Shu-lu-hsien,Shulu,Sin'tszi,Sin’tszi,Xinji 37.90278 115.20361 P PPL CN 10 145911 40 Asia/Shanghai 2012-01-18
-1788830 Xinji Xinji Hsin-chi,Xinji,Xinji Xiang,xin ji,xin ji xiang,辛集,辛集乡 33.7893 113.00025 P PPLA4 CN 09 0 132 Asia/Chongqing 2012-01-18
-1788836 Xinji Xinji Hsin-chi,Sin'tszi,Sin’tszi,Xinji,Xinji Zhen,xin ji,xin ji zhen,新集,新集镇 33.00806 106.82111 P PPLA4 CN 26 0 541 Asia/Chongqing 2012-01-18
-1788849 Xiniu Xiniu Hsi-niu,Hsi-niu-hsu,Hsi-niu-hsü,Hsi-niu-t'an,Hsi-niu-t’an,Xiniu,Xiniu Zhen,xi niu,xi niu zhen,西牛,西牛镇 24.16419 113.11078 P PPLA4 CN 30 0 48 Asia/Chongqing 2012-01-18
-1788852 Xining Xining Hsi-ning,Hsi-ning-shih,Sining,Sining-hsien,Siningfu,Tay Ninh,Tây Ninh,Xining,Xining Shi,sinin,sining,xi ning,xi ning shi,Синин,شىنىڭ شەھىرى,西宁,西宁市,西寧市,시닝 36.61667 101.76667 P PPLA CN 06 767531 2260 Asia/Chongqing 2012-01-18
-1788862 Xinhuang Xinhuang Hsin-huang,Hsin-huang-chen,Xinhuang,Xinhuang Shequ,Xinhuang Zhen,xin huang,xin huang she qu,xin huang zhen,新篁,新篁社区,新篁镇 30.62121 120.91486 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1788863 Xinhuang Xinhuang Hsin-huang,Hsin-huang-t'ung-tsu-tzu-chih-hsien,Hsin-huang-t’ung-tsu-tzu-chih-hsien,Huang,Huang-hsien,Xinhuang,xin huang,新晃 27.37359 109.13376 P PPLA3 CN 11 0 417 Asia/Chongqing 2012-01-18
-1788869 Shangmei Shangmei Hsin-hua,Hsin-hua-hsien,Shangmei,Sinhwa,Sinhwa-hsien,Xinhua,shang mei,上梅 27.74278 111.29556 P PPLA3 CN 11 75233 179 Asia/Chongqing 2012-01-18
-1788871 Xinhua Xinhua Ch'ao-chia,Ch'iao-chia,Ch'iao-chia-hsien,Ch’ao-chia,Ch’iao-chia,Ch’iao-chia-hsien,Kiaokia,Kiaokia-hsien,Qiaojia,Xinhua,xin hua,新华 26.88838 102.93324 P PPLA3 CN 29 0 767 Asia/Chongqing 2012-01-18
-1788875 Xinhua Xinhua Fu-chou,Fu-chou-hsien,Fu-chow,Fu-ning-hsien,Funing,Xinhua,xin hua,新华 23.6431 105.65317 P PPLA3 CN 29 0 975 Asia/Chongqing 2012-01-18
-1788879 Xinhe Xinhe Hsin-ho-chen,Shuxun,Xinhe,Xinhe Zhen,Xinhezhen,shu xun,xin he,xin he zhen,新河,新河镇,树勋 31.98358 121.34687 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1788899 Xingzi Xingzi Hsing-tzu,Hsing-tzu-fou,Hsing-tzu-hsu,Hsing-tzu-hsü,Xingzi,Xingzi Zhen,xing zi,xing zi zhen,星子,星子镇 25.00138 112.554 P PPLA4 CN 30 0 133 Asia/Chongqing 2012-01-18
-1788912 Weifen Weifen Hinghsien,Hsing,Hsing-hsien,Sinsyan',Sinsyan’,Weifen,Weifen Zhen,Xing Xian,Xingxian,wei fen,wei fen zhen,xing xian,兴县,蔚汾,蔚汾镇 38.48064 111.16664 P PPLA3 CN 24 0 1213 Asia/Chongqing 2012-01-18
-1788915 Zhongcheng Zhongcheng Hingwen,Hingwenhsien,Hsing-wen,Hsing-wen-hsien,Xingwen,Zhongcheng,zhong cheng,中城 28.30754 105.23075 P PPLA3 CN 32 0 338 Asia/Chongqing 2012-01-18
-1788919 Xingtian Xingtian Hingtien,Hsing-t'ien,Hsing-t'ien-i,Hsing-t’ien,Hsing-t’ien-i,Singtien,Xingtian,Xingtian Zhen,xing tian,xing tian zhen,兴田,兴田镇 27.5 118.06667 P PPLA4 CN 07 0 157 Asia/Shanghai 2012-01-18
-1788927 Xingtai Xingtai Chin-t'ai,Chin-t’ai,Hsing-t'ai,Hsing-t'ai-hsien,Hsing-tai-shih,Hsing-t’ai,Hsing-t’ai-hsien,Setay,Shun'de,Shun-te,Shunteh,Shuntehfu,Shun’de,Singtai,Xingtai,Yingtaihsien 37.06306 114.49417 P PPL CN 10 611739 76 Asia/Shanghai 2012-01-18
-1788932 Xingzhen Xingzhen Hsing-chen,Hsing-shih,Hsing-shih-chen,Xingshizhen,Xingzhen,xing zhen,兴镇 34.93217 109.44874 P PPLA4 CN 26 0 448 Asia/Chongqing 2012-01-18
-1788933 Xingsheng Xingsheng Xingsheng,Xingsheng Xiang,Xingshengzhuang,xing sheng,xing sheng xiang,兴盛,兴盛乡 35.45 106.33333 P PPLA4 CN 21 0 1888 Asia/Chongqing 2012-01-18
-1788941 Xingren Xingren Hsing-jen,Hsing-jen-chen,Xingren,Xingren Zhen,xing ren,xing ren zhen,兴仁,兴仁镇 32.06625 120.9379 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1788948 Xingping Xingping Hsing-p'ing,Hsing-p’ing,Xingping,xing ping,兴坪 35.84125 105.66031 P PPLA4 CN 21 0 1807 Asia/Chongqing 2012-01-18
-1788949 Xingping Xingping Dafuzhen,Hingping,Hsing-p'ing,Hsing-p'ing-hsien,Hsing-p’ing,Hsing-p’ing-hsien,Sinpin,Xingping,Xingping Shi,xing ping,xing ping shi,兴平,兴平市 34.3 108.48694 P PPLA4 CN 26 0 419 Asia/Chongqing 2012-01-18
-1788955 Xingou Xingou Hsin-kou,Hsin-kou-tsui,Xingou,Xingou Zhen,xin gou,xin gou zhen,新沟,新沟镇 30.13179 112.95292 P PPLA4 CN 12 0 34 Asia/Chongqing 2012-01-18
-1788957 Fuxing Fuxing Fuxing,Fuxing Jiedao,Hinghinghsien,Hingning,Hingning-hsien,Hsieng-ning,Hsin-ning,Hsing-ch'eng-chen,Hsing-ch’eng-chen,Hsing-ning,Hsing-ning-hsien,Xingning,fu xing,xing ning,兴宁,福兴 24.14455 115.71731 P PPLA3 CN 30 0 125 Asia/Shanghai 2012-01-18
-1788963 Xinglong Xinglong Hsing-lung,Hsing-lung-chen,Xinglong,Xinglongzhen,xing long,兴隆 35.70379 105.80989 P PPLA4 CN 21 0 1757 Asia/Chongqing 2012-01-18
-1788981 Xinglong Xinglong Hsing-lung-tien,Xinglong,Xinglong Xiang,xing long,xing long xiang,兴隆,兴隆乡 31.71365 113.61064 P PPLA4 CN 12 0 83 Asia/Chongqing 2012-01-18
-1788985 Xinglong Xinglong Hsing-lung,Ta-li-ts'un,Ta-li-ts’un,Xinglong,Xinglong Xiang,xing long,xing long xiang,兴隆,兴隆乡 30.35691 118.34123 P PPLA4 CN 01 0 195 Asia/Shanghai 2012-01-18
-1788988 Xinglong Xinglong Xinglong,Xinglong Zhen,xing long,xing long zhen,兴隆,兴隆镇 29.25841 109.03714 P PPLA4 CN 33 0 670 Asia/Chongqing 2012-01-18
-1788997 Xinglin Xinglin Hsing-lin,Hsing-lin-chen,Xinglin,Xinglin Zhen,xing lin,xing lin zhen,杏林,杏林镇 34.34418 107.99042 P PPLA4 CN 26 0 559 Asia/Chongqing 2012-01-18
-1789001 Xingkou Xingkou Hsing-k'ou-shih,Hsing-k’ou-shih,Xingkou,xing kou,星口 29.08448 118.29984 P PPLA4 CN 02 0 128 Asia/Shanghai 2012-01-18
-1789030 Xingguo Xingguo Ch'in-an,Ch'in-an-hsien,Ch'ing-ang,Ch’in-an,Ch’in-an-hsien,Ch’ing-ang,Qin'an,Qin’an,Tsin'an',Tsinanhsien,Tsin’an’,Xingguo,xing guo,兴国 34.85861 105.66861 P PPLA3 CN 15 0 1219 Asia/Chongqing 2012-01-18
-1789031 Xingguo Xingguo Hingkwo-fu,Hingkwochow,Hsin-yang,Hsing-kou,Xingguo,Yang-hsin,Yang-hsin-hsien,Yangsio,Yangxin,xing guo,兴国 29.92252 115.30208 P PPLA3 CN 12 0 28 Asia/Shanghai 2012-01-18
-1789053 Xingao Xingao Hsin-kao,Hsin-kao-ts'un,Hsin-kao-ts’un,Xingao,Xingao Xiang,xin gao,xin gao xiang,新高,新高乡 39.02607 112.96161 P PPLA4 CN 24 0 856 Asia/Shanghai 2012-01-18
-1789062 Xingang Xingang Hsin-chiang,Xingang,Xingang Zhen,xin gang,xin gang zhen,新港,新港镇 29.7542 116.09721 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-18
-1789065 Ankang Ankang An-k'ang-hsien,An-k’ang-hsien,Ankan,Ankang,Hingan,Hinganfu,Hsing-an,Xing'an,Xing’an,an kang,an kang shi,Анкан,安康,安康市 32.68 109.01722 P PPL CN 26 132654 273 Asia/Chongqing 2012-01-18
-1789066 Xing’an Xing'an Hingan,Hinganhsien,Hsing-an,Hsing-an-hsien,Hsing-an-hsien-ch'eng,Hsing-an-hsien-ch’eng,Xing'an,Xing’an,xing an,兴安 25.61964 110.64248 P PPLA3 CN 16 0 312 Asia/Chongqing 2012-01-18
-1789068 Xinfeng Xinfeng Hsin-feng,Hsin-feng-chen,Xinfeng,Xinfeng Jieban,Xinfengzhen,xin feng,新丰 34.42664 109.26364 P PPLA4 CN 26 0 389 Asia/Chongqing 2012-01-18
-1789075 Xinfeng Xinfeng Hsin-feng,Hsin-feng-chen,Hsin-feng-chi,Xinfeng,Xinfeng Zhen,xin feng,xin feng zhen,新丰,新丰镇 33.26831 120.45356 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1789079 Xinfeng Xinfeng Hsin-feng,Hsin-feng-chen,Xinfeng,Xinfeng Zhen,xin feng,xin feng zhen,新丰,新丰镇 30.709 120.91835 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1789080 Xinfengjie Xinfengjie Hsin-feng,Hsin-feng-chen,Hsin-feng-chieh,Sinfengchen,Xinfeng,Xinfengjie,Xinfengjie Zhen,xin feng jie,xin feng jie zhen,新丰街,新丰街镇 27.4268 116.58933 P PPLA4 CN 03 0 95 Asia/Shanghai 2012-01-18
-1789081 Xinfeng Xinfeng Hsin-feng,Hsin-feng-shih,Xinfeng,Xinfeng Xiang,xin feng,xin feng xiang,新丰,新丰乡 27.1089 116.21316 P PPLA4 CN 03 0 293 Asia/Shanghai 2012-01-18
-1789088 Xinfang Xinfang Hsin-fang,Xinfang,Xinfang Xiang,xin fang,xin fang xiang,新坊,新坊乡 27.70047 114.46992 P PPLA4 CN 03 0 120 Asia/Shanghai 2012-01-18
-1789095 Xindu Xindu Hsin-tu,Hsin-tu-hsien,Sin'du,Sintu,Sintu-hsien,Sin’du,Xindu,xin dou,新都 30.82236 104.15742 P PPLA3 CN 32 0 495 Asia/Chongqing 2012-01-18
-1789098 Xindou Xindou Chang,Changku,Chango,Chiu-lu-ho,Dango Gomba,Drango,Laojie,Lu-ho,Luhuo,Lukho,Xindou,Zhaggo,xin dou,新都 31.39587 100.67778 P PPLA3 CN 32 0 3192 Asia/Chongqing 2012-01-18
-1789118 Xindian Xindian Hsin-tien,Hsingtien,Sintien,Xindian 36.7975 118.29444 P PPL CN 25 82555 73 Asia/Shanghai 2012-01-18
-1789124 Xindian Xindian Xindian,xin dian,辛店 33.41359 113.37209 P PPLA4 CN 09 0 98 Asia/Chongqing 2012-01-18
-1789127 Xindian Xindian Hsin-tien,Xindian,Xindian Zhen,xin dian,xin dian zhen,新店,新店镇 32.26861 120.91648 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1789132 Xindian Xindian Hsin-tien,Xindian,Xindian Zhen,xin dian,xin dian zhen,新店,新店镇 26.1306 119.30687 P PPLA4 CN 07 2860 17 Asia/Shanghai 2012-01-18
-1789134 Xindian Xindian Hsin-tien,Xindian,xin dian,新店 24.59377 118.24105 P PPL CN 07 8145 19 Asia/Shanghai 2012-01-18
-1789137 Xindi Xindi Honghu,Hsin-ti,Hsin-ti-chen,Hung-hu,Shin-ti,Sinti,Xindi 29.81667 113.46667 P PPL CN 12 175761 27 Asia/Chongqing 2012-01-18
-1789139 Xindeng Xindeng Ch'eng-yang-chen,Chengyang,Ch’eng-yang-chen,Hsin-ch'eng,Hsin-ch’eng,Hsin-teng,Hsin-teng-hsien,Hsin-teng-hsien-ch'eng,Hsin-teng-hsien-ch’eng,Sin-cheng-hsien,Sincheng Che,Sinteng,Sintenghsien,Xindeng,xin deng,新登 29.97528 119.72667 P PPLA4 CN 02 0 22 Asia/Shanghai 2012-01-18
-1789143 Xindai Xindai Hsin-tai,Hsin-tai-chen,Xindai,Xindai Zhen,xin dai,xin dai zhen,新埭,新埭镇 30.82303 121.08243 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1789159 Xincun Xincun Hsin-ts'un,Hsin-ts'un-shih,Hsin-ts’un,Hsin-ts’un-shih,Tsunten,Xincun,Xincun Zhen,xin cun,xin cun zhen,新村,新村镇 18.41612 109.96396 P PPLA4 CN 31 0 11 Asia/Chongqing 2012-01-18
-1789161 Xinchong Xinchong Xinchong,Xinchong Zhen,xin chong,xin chong zhen,新冲镇,辛冲 30.77474 114.81544 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-18
-1789176 Feicheng Feicheng Fei-ch'eng-hsien,Fei-ch’eng-hsien,Feicheng,Feychen,Xincheng 36.24861 116.76583 P PPL CN 25 77606 115 Asia/Shanghai 2012-01-18
-1789180 Xincheng Xincheng Liu-chang,Liu-chang-chen,Liu-chang-ts'un,Liu-chang-tsun-chen,Liu-chang-ts’un,Liuzhang,Liuzhangzhen,Xincheng,Xincheng Zhen,Yuan-ch'u,Yuan-ch’ü,Yuangqu,Yuangqu Xian,xin cheng,xin cheng zhen,yuan qu xian,垣曲县,新城,新城镇 35.3 111.66417 P PPLA3 CN 24 0 555 Asia/Chongqing 2012-01-18
-1789181 Xincheng Xincheng Hsin-ch'eng,Hsin-ch’eng,Lin-t'an,Lin-t’an,Lintanhsien,T'ao-chou,Taochow,Taochzhou,T’ao-chou,Xincheng,xin cheng,新城 34.67431 103.5868 P PPLA4 CN 15 0 2760 Asia/Chongqing 2012-01-18
-1789186 Xincheng Xincheng Chao-chiao-hsien,Chao-chio,Chao-chueh,Chao-chüeh,Chaokioh,Xincheng,Zhaojue,xin cheng,新城 28.01512 102.84233 P PPLA3 CN 32 0 2085 Asia/Chongqing 2012-01-18
-1789190 Xincheng Chengguanzhen Xincheng Chengguanzhen Hsin-ch'eng,Hsin-ch'eng-hsien,Hsin-ch’eng,Hsin-ch’eng-hsien,Sincheng,Sincheng-hsien,Xincheng,Xincheng Chengguanzhen,xin cheng cheng guan zhen,忻城城关镇 24.08613 108.65261 P PPLA3 CN 16 0 150 Asia/Chongqing 2012-01-18
-1789201 Xinchang Chengguanzhen Xinchang Chengguanzhen Chengguan Zhen,Hsin-ch'ang,Hsin-ch'ang-hsien,Hsin-ch'ang-hsien-ch'eng,Hsin-ch’ang,Hsin-ch’ang-hsien,Hsin-ch’ang-hsien-ch’eng,Sinchang,Sinchanghsien,Xinchang Chengguanzhen,cheng guan zhen,xin chang cheng guan zhen,城关镇,新昌城关镇 29.50528 120.90017 P PPLA4 CN 02 0 53 Asia/Shanghai 2012-01-18
-1789213 Xincang Xincang Hsin-ts'ang,Hsin-ts'ang-chen,Hsin-ts’ang,Hsin-ts’ang-chen,Xincang,Xincang Zhen,xin cang,xin cang zhen,新仓,新仓镇 30.73151 121.17577 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1789218 Xinbuzi Xinbuzi Hsin-p'u-tzu,Hsin-pao-tzu,Hsin-p’u-tzu,Xinbuzi,xin bao zi,新堡子 34.98599 108.08646 P PPLA4 CN 26 0 1163 Asia/Chongqing 2012-01-18
-1789219 Xinbu Xinbu Hsin-p'u,Hsin-pao,Hsin-p’u,Hsin-t'un-p'u,Hsin-t'un-pao,Hsin-t’un-pao,Hsin-t’un-p’u,Xinbu,Xinbu Xiang,xin bao,xin bao xiang,新堡,新堡乡 38.605 111.9391 P PPLA4 CN 24 0 1475 Asia/Chongqing 2012-01-18
-1789227 Xinbao Xinbao Xinbao,xin bao,新堡 34.57418 103.6153 P PPLA4 CN 15 0 2486 Asia/Chongqing 2012-01-18
-1789228 Xinbang Xinbang Hsin-chung-pang,Hsin-pang,Xinbang,Xinbang Zhen,xin bang,xin bang zhen,新浜,新浜镇 30.93467 121.06147 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-18
-1789229 Xinba Xinba Hsin-pa,Xinba,Xinba Zhen,xin ba,xin ba zhen,新坝,新坝镇 34.44028 119.13111 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1789234 Xin’an Xin'an Xin'an,Xin'an Xiang,Xin'anzhou,Xin’an,Xin’an Xiang,Xin’anzhou,xin an,xin an xiang,新安,新安乡 29.88755 117.28038 P PPLA4 CN 01 0 113 Asia/Shanghai 2012-01-18
-1789237 Xin’an Xin'an Hsin-an-chen,Xin'an,Xin'an Zhen,Xin'anzhen,Xin’an,Xin’an Zhen,Xin’anzhen,xin an,xin an zhen,新安,新安镇 31.79786 121.78085 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1789265 Xin’an Xin'an Lai'an,Lai-an-hsien,Lai’an,Lia-an,Xin'an,Xin’an,xin an,新安 32.43799 118.40888 P PPLA3 CN 01 0 28 Asia/Shanghai 2012-01-18
-1789269 Xin’an Xin'an Gaoxing,Hsin-an,Xin'an,Xin'an Zhen,Xin’an,Xin’an Zhen,gao xing,xin an,xin an zhen,新安,新安镇,高兴 29.65 111.5 P PPLA4 CN 11 0 54 Asia/Chongqing 2012-01-18
-1789271 Xinan Xinan Hsi-nan,Nan-an,Xinan 26.72 119.85556 P PPL CN CN 07 3670 12 Asia/Shanghai 2012-01-18
-1789273 Sanshui Sanshui Hsi-man,Hsi-nan-chen,Hsin-nan,Sainam,Sainan,Sanshui,Xinan,san shui,三水 23.15486 112.89161 P PPL CN 30 153714 12 Asia/Chongqing 2012-01-18
-1789274 Xin’an Xin'an Hsin-an,Xin'an,Xin’an,xin an,新庵 23.12086 115.1909 P PPLA4 CN 30 0 90 Asia/Shanghai 2012-01-18
-1789278 Xinli Xinli Hang-chin-ch'i,Hang-chin-ch’i,Hanggin Qi,Hsi-ni-chen,O-erh-to-ssu-yu-i-hou-ch'i,O-erh-to-ssu-yu-i-hou-ch'i-pei-lo-miao,O-erh-to-ssu-yu-i-hou-ch’i,O-erh-to-ssu-yu-i-hou-ch’i-pei-lo-miao,Xini Zhen,Xinli,hang jin qi,xi ni,xi ni zhen,杭锦旗,锡尼,锡尼镇 39.84417 108.73472 P PPLA3 CN 20 0 1362 Asia/Chongqing 2012-02-02
-1789289 Ximei Ximei Ch'i-mei-chen,Ch'i-wei,Ch’i-mei-chen,Ch’i-wei,Naman,Nan'an,Nan-an-hsien,Nan’an,Ximei 24.96389 118.37944 P PPL CN 07 94326 28 Asia/Shanghai 2012-01-18
-1789298 Ximafang Ximafang Hsi-ma-fang,Ximafang,Ximafang Xiang,xi ma fang,xi ma fang xiang,西马坊,西马坊乡 38.6638 112.0171 P PPLA4 CN 24 0 1450 Asia/Chongqing 2012-01-18
-1789300 Xima Xima Hsi-ma-fan,Xima,Xima Zhen,Ximafan,xi ma,xi ma zhen,洗马,洗马镇 30.47052 115.47421 P PPLA4 CN 12 0 53 Asia/Shanghai 2012-01-18
-1789318 Xiliu Xiliu Hsi-liu,Hsi-liu-ts'un,Hsi-liu-ts’un,Xiliu,Xiliu Xiang,Xiliucun,xi liu,xi liu xiang,西留,西留乡 39.68318 113.54083 P PPLA4 CN 24 0 1075 Asia/Shanghai 2012-01-18
-1789329 Xiling Xiling Hsi-ling,Xiling 26.81444 119.04722 P PPL CN CN 07 3110 985 Asia/Shanghai 2012-01-18
-1789345 Xilai Xilai Hsi-lai,Hsi-lai-chen,Xilai,Xilai Zhen,xi lai,xi lai zhen,西来,西来镇 32.11849 120.42757 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1789351 Guxi Guxi Ch'i-k'ou,Ch’i-k’ou,Guxi,Guxi Zhen,Hsi-k'ou,Hsi-k’ou,Xikou,gu xi,gu xi zhen,古溪,古溪镇 30.67848 118.70808 P PPLA4 CN 01 0 165 Asia/Shanghai 2012-01-18
-1789355 Xikou Xikou Hsi-k'ou,Hsi-k'ou-chen,Hsi-k’ou,Hsi-k’ou-chen,Xikou,Xikou Zhen,xi kou,xi kou zhen,溪口,溪口镇 29.68524 121.27441 P PPLA4 CN 02 0 27 Asia/Shanghai 2012-01-18
-1789356 Xikou Xikou Ch'i-k'ou,Ch’i-k’ou,Hsi-k'ou,Hsi-k’ou,Shang-ch'i-k'ou,Shang-ch’i-k’ou,Shang-hsi-k'ou,Shang-hsi-k’ou,Shangkikow,Xikou,Xikou Zhen,xi kou,xi kou zhen,溪口,溪口镇 29.68626 118.00952 P PPLA4 CN 01 0 173 Asia/Shanghai 2012-01-18
-1789357 Xikou Xikou Hsi-k'ou,Hsi-k’ou,Xikou,Xikou Zhen,xi kou,xi kou zhen,溪口,溪口镇 29.22564 110.7582 P PPLA4 CN 11 0 365 Asia/Chongqing 2012-01-18
-1789358 Xikou Xikou Hsi-k'ou,Hsi-k’ou,Xikou,Xikou Zhen,xi kou,xi kou zhen,溪口,溪口镇 29.16312 114.37576 P PPLA4 CN 03 0 154 Asia/Shanghai 2012-01-18
-1789362 Xikou Xikou Hsi-k'ou,Hsi-k’ou,Xikou,Xikou Zhen,xi kou,xi kou zhen,溪口,溪口镇 26.84556 116.83233 P PPLA4 CN 07 0 297 Asia/Shanghai 2012-01-18
-1789376 Xitan Xitan Xijitan,Xitan,Xitanxiang,xi ji tan,xi tan,xi tan xiang,西吉滩,西滩,西滩乡 35.88378 105.74161 P PPLA4 CN 21 0 1975 Asia/Chongqing 2012-01-18
-1789399 Xijiao Xijiao Xijiao,Xijiao Xiang,xi jiao,xi jiao xiang,西郊,西郊乡 36.00958 106.27614 P PPLA4 CN 21 0 1744 Asia/Chongqing 2012-01-18
-1789404 Xijiang Xijiang Hsi-chiang,Hsi-chiang-hsu,Hsi-chiang-hsü,Hsi-chiang-shih,Sikiangshih,Xijiang,Xijiang Zhen,xi jiang,xi jiang zhen,西江,西江镇 25.83731 115.78056 P PPLA4 CN 03 0 197 Asia/Shanghai 2012-01-18
-1789405 Xijiang Xijiang Hsi-chiang,Hsi-chiang-hsu,Hsi-chiang-hsü,Xijiang,Xijiang Zhen,xi jiang,xi jiang zhen,西江,西江镇 24.75882 112.59371 P PPLA4 CN 30 0 396 Asia/Chongqing 2012-01-18
-1789410 Xijia Xijia Hsi-chia,Xijia,Xijia Xiang,xi gu,xi gu xiang,西贾,西贾乡 35.8086 111.32522 P PPLA4 CN 24 0 487 Asia/Chongqing 2012-01-18
-1789425 Xihuaiba Xihuaiba Hsi-huai-pa,Hsi-t'an-pa,Hsi-t’an-pa,Xihuaiba,xi huai ba,西淮坝 33.52575 105.91854 P PPLA4 CN 26 0 1003 Asia/Chongqing 2012-01-18
-1789427 Xihua Xihua Hsi-hua,Hsi-hua-hsien,Sihwahsien,Sikhua,Xihua 33.78333 114.51667 P PPL CN 09 66848 56 Asia/Shanghai 2012-01-18
-1789428 Xihu Xihu Hsi-hu,Xihu,Xihu Xiang,xi hu,xi hu xiang,西湖,西湖乡 29.84949 117.17918 P PPLA4 CN 03 0 142 Asia/Shanghai 2012-01-18
-1789462 Xihe Xihe Hsi-ho,Hsi-ho-chen,Sihochen,Xihe,Xihe Zhen,xi he,xi he zhen,淅河,淅河镇 31.68636 113.46585 P PPLA4 CN 12 90422 64 Asia/Chongqing 2012-01-18
-1789463 Xihe Xihe Hsi-ho,Hsi-ho-chen,Xihe,Xihe Zhen,xi he,xi he zhen,西河,西河镇 30.99175 118.47466 P PPLA4 CN 01 0 15 Asia/Shanghai 2012-01-18
-1789499 Xigang Xigang Xigang,Xigang Zhen,xi gang,xi gang zhen,西港,西港镇 29.0921 114.40179 P PPLA4 CN 03 0 116 Asia/Shanghai 2012-01-18
-1789512 Xifangcheng Xifangcheng Hsi-fang-ch'eng,Hsi-fang-ch’eng,Xifangcheng,Xifangcheng Zhen,xi fang cheng,xi fang cheng zhen,西坊城,西坊城镇 39.61217 113.48139 P PPLA4 CN 24 0 1044 Asia/Shanghai 2012-01-18
-1789526 Xietang Xietang Hsieh-chia-t'ang,Hsieh-chia-t’ang,Hsieh-t'ang,Hsieh-t’ang,Xietang,Xietang Zhen,xie tang,xie tang zhen,谢塘,谢塘镇 30.1219 120.9011 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1789537 Xieqiao Xieqiao Hsieh-ch'iao,Hsieh-ch'iao-chen,Hsieh-ch’iao,Hsieh-ch’iao-chen,Xieqiao,Xieqiao Zhen,xie qiao,xie qiao zhen,斜桥,斜桥镇 32.06169 120.38363 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1789538 Xieqiao Xieqiao Hsieh-ch'iao,Hsieh-ch'iao-chen,Hsieh-ch’iao,Hsieh-ch’iao-chen,Xieqiao,Xieqiao Zhen,xie qiao,xie qiao zhen,斜桥,斜桥镇 30.48873 120.56805 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-02-02
-1789550 Xiekou Xiekou Hsieh-k'ou,Hsieh-k'ou-chen,Hsieh-k’ou,Hsieh-k’ou-chen,Xiekou,xie kou,斜口 34.36089 109.15308 P PPLA4 CN 26 0 426 Asia/Chongqing 2012-01-18
-1789553 Xiejiaya Xiejiaya Xiejiaya,Xiejiaya Xiang,xie jia ya,xie jia ya xiang,谢家垭,谢家垭乡 28.98333 110.66667 P PPLA4 CN 11 0 336 Asia/Chongqing 2012-01-18
-1789554 Xiejiatan Xiejiatan Hsieh-chia-t'an,Hsieh-chia-t’an,Xiejiatan,Xiejiatan Zhen,xie jia tan,xie jia tan zhen,谢家滩,谢家滩镇 29.48765 116.71195 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1789575 Xiehu Xiehu Hsieh-hu,Hsieh-hu-chen,Xiehu,Xiehu Zhen,xie hu,洩湖 34.20418 109.24561 P PPLA4 CN 26 0 474 Asia/Chongqing 2012-01-18
-1789584 Xiefang Xiefang Hsieh-fang,Hsieh-fang-hsu,Hsieh-fang-hsü,Hsieh-fang-ts'un,Hsieh-fang-ts’un,Siehfang,Xiefang,Xiefang Zhen,xie fang,xie fang zhen,谢坊,谢坊镇 25.70654 115.86562 P PPLA4 CN 03 0 187 Asia/Shanghai 2012-01-18
-1789586 Xiedian Xiedian Chieh-tien,Chieh-tien-chen,Hsieh-tien,Hsieh-tien-chen,Wan-ch'uan,Wan-ch’üan,Wan-jung,Wanrong,Wanrong Xian,Xiedian,Xiedian Zhen,jie dian,jie dian zhen,wan rong xian,万荣县,解店,解店镇 35.42816 110.81181 P PPLA3 CN 24 0 578 Asia/Chongqing 2012-01-18
-1789593 Xidu Xidu Heng-yang,Hsi-tu,Xidu,xi du,西渡 26.95629 112.36828 P PPLA3 CN 11 0 67 Asia/Chongqing 2012-01-18
-1789597 Xiditou Xiditou Hai-ti-t'ou,Hai-ti-t’ou,Hsi-ti-t'ou,Hsi-ti-t’ou,Xiditou 39.25222 117.34639 P PPL CN CN 28 5407 5 Asia/Shanghai 2012-01-18
-1789600 Xidian Xidian Hsi-tien,Hsi-tien-chen,Xidian,Xidian Zhen,xi dian,xi dian zhen,西店,西店镇 29.49051 121.43303 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-18
-1789601 Xidi Xidi Hsi-ti,Xidi,Xidi Zhen,xi di,xi di zhen,西递,西递镇 29.90722 117.99241 P PPLA4 CN 01 0 235 Asia/Shanghai 2012-01-18
-1789622 Xicun Xicun Hsi-ts'un,Hsi-ts’un,Xicun,Xicun Zhen,xi cun,xi cun zhen,西村,西村镇 27.75512 114.21788 P PPLA4 CN 03 0 105 Asia/Chongqing 2012-01-18
-1789641 Hexi Hexi Hexi,Hexi Zhen,Ho-hsi,Ho-hsi-hsien,Hosi,Hosihsien,Hsi-ch'eng,Hsi-ch’eng,Xicheng,he xi,he xi zhen,河西,河西镇 24.14361 102.64861 P PPLA4 CN 29 0 1820 Asia/Chongqing 2012-01-18
-1789643 Xichehe Xichehe Hsi-ch'e,Hsi-ch'e-ho,Hsi-ch’e,Hsi-ch’e-ho,Hsi-tung,Sicheshih,Xiche,Xichehe,Xichehe Zhen,xi che he,xi che he zhen,洗车河,洗车河镇 29.07112 109.53321 P PPLA4 CN 11 0 333 Asia/Chongqing 2012-01-18
-1789647 Xichang Xichang Hsi-ch'ang,Hsi-ch'ang-hsien,Hsi-ch’ang,Hsi-ch’ang-hsien,Ning-yuan,Ning-yüan,Ningyuanfu,Sichan,Sichang,Sichanghsien,Xichang,sichang,xi chang,xi chang shi,Сичан,西昌,西昌市,ꀒꎂ,시창 27.89642 102.26342 P PPLA3 CN 32 126787 1558 Asia/Chongqing 2012-01-18
-1789657 Xibu Xibu Hsi-fou,Hsi-pu,Xibu,Xibu Zhen,xi bu,xi bu zhen,西埠,西埠镇 31.77837 118.28492 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-18
-1789658 Xibu Xibu Dongshan,Hsi-pu,Hsi-pu-chen,Hsi-pu-hsu,Hsi-pu-hsü,Tung-shan,Xibu,Xipu,xi bu,西埔 23.69906 117.42511 P PPLA3 CN 07 0 16 Asia/Shanghai 2012-01-18
-1789659 Xibing Xibing Ch'i-ping,Ch’i-ping,Hsi-ping,Xibing 26.98139 119.72472 P PPL CN CN 07 5050 16 Asia/Shanghai 2012-01-18
-1789684 Yukou Yukou Hsia-chuang,Xiazhuang,Yu-k'ou-ts'un,Yukou,Yukou Xiang,Yü-k’ou-ts’un,yu kou,yu kou xiang,峪口,峪口乡 39.05482 113.0456 P PPLA4 CN 24 0 913 Asia/Shanghai 2012-01-18
-1789693 Xiazhuang Xiazhuang Hsia-chuang,Hsia-chuang-chen,Linshu,Xiazhuang 34.91611 118.63889 P PPL CN 25 63285 60 Asia/Shanghai 2012-01-18
-1789703 Xiazhen Xiazhen Hsia-chen,Weishan,Xiazhen,Xiazhencun 34.80222 117.11167 P PPL CN 25 125667 39 Asia/Shanghai 2012-01-18
-1789705 Xiazhen Xiazhen Hsia-chen,Xiazhen,Xiazhen Zhen,xia zhen,xia zhen zhen,下镇,下镇镇 28.6461 118.40244 P PPLA4 CN 03 0 124 Asia/Shanghai 2012-01-18
-1789709 Xiazhai Xiazhai Hsia-chai,Hsia-chai-tzu,Xiazhai,Xiazhai Zhen,xia zhai,下寨 34.71453 109.76505 P PPLA4 CN 26 0 360 Asia/Chongqing 2012-01-18
-1789727 Xiayong Xiayong Hsia-yung,Xiayong,Xiayong Zhen,xia yong,霞涌 22.77355 114.65079 P PPLA4 CN 30 0 8 Asia/Chongqing 2012-01-18
-1789745 Xiayang Xiayang Hsia-yang,Xiayang,Xiayang Xiang,xia yang,xia yang xiang,夏阳,夏阳乡 26.42876 117.45417 P PPLA4 CN 07 0 345 Asia/Shanghai 2012-01-18
-1789752 Yaofeng Yaofeng Hsia,Hsia-chen,Hsia-hsien,Hsia-hsien-ch'eng,Hsia-hsien-ch’eng,Siahsien,Xia Xian,Xiaxian,Yaofeng,Yaofeng Zhen,xia xian,yao feng,yao feng zhen,夏县,瑶峰,瑶峰镇 35.13861 111.21222 P PPLA3 CN 24 0 410 Asia/Chongqing 2012-01-18
-1789759 Xiawuqi Xiawuqi 39.61361 117.05333 P PPL CN 28 1718 12 Asia/Shanghai 2000-11-21
-1789776 Xiatuanpu Xiatuanpu Hsia-t'uan-pao,Hsia-t’uan-pao,Xiatuanpu,Xiatuanpu Xiang,xia tuan bao,xia tuan bao xiang,下团堡,下团堡乡 39.36028 112.37667 P PPLA4 CN 24 0 1129 Asia/Chongqing 2012-01-18
-1789780 Xiatang Xiatang Hsia-t'ang,Hsia-t'ang-chen,Hsia-t’ang,Hsia-t’ang-chen,Hsia-yang,Hsia-yang-chen,Xiatang,Xiatang Zhen,xia tang,xia tang zhen,下汤,下汤镇 33.71987 112.6798 P PPLA4 CN 09 0 191 Asia/Chongqing 2012-01-18
-1789789 Xiashuitou Xiashuitou Hsia-shui-t'ou,Hsia-shui-t’ou,Xiashuitou,Xiashuitou Xiang,xia shui tou,xia shui tou xiang,下水头,下水头乡 39.52773 112.08186 P PPLA4 CN 24 0 1408 Asia/Chongqing 2012-01-18
-1789799 Xiashi Xiashi Hai-ning-hsien,Haining,Hsia-shih,Hsia-shih-chen,Siashih,Xiashi,Xiashi Jiedao,xia shi,xia shi jie dao,硖石,硖石街道 30.53629 120.68638 P PPLA3 CN 02 70171 7 Asia/Shanghai 2012-01-18
-1789803 Xiashe Xiashe Hsia-she,Hsia-she-ts'un,Hsia-she-ts’un,Xiahe,Xiashe,Xiashe Zhen,xia she,xia she zhen,下社,下社镇 39.51417 113.29306 P PPLA4 CN 24 0 1048 Asia/Shanghai 2012-01-18
-1789810 Xiashan Xiashan Ho-shan-chen,Qiangjiao,Qiangjiao Zhen,Xiashan,Xiashanzhen,qiang jiao zhen,xia shan,峡山,强蛟镇 29.46477 121.5305 P PPLA4 CN 02 0 27 Asia/Shanghai 2012-01-18
-1789812 Xiashan Xiashan Hapshan,Hsia-shan,Hsia-shan-hsu,Hsia-shan-hsü,Xiashan,Xiashan Jiedao,Xiashanzhen,xia shan,峡山 23.24981 116.42712 P PPLA3 CN 30 0 8 Asia/Shanghai 2012-01-18
-1789819 Xiaruyue Xiaruyue Hsia-ju-yueh,Hsia-ju-yüeh,Xiaruyue,Xiaruyue Xiang,xia ru yue,xia ru yue xiang,下茹越,下茹越乡 39.212 113.35741 P PPLA4 CN 24 0 989 Asia/Shanghai 2012-01-18
-1789823 Xiaqu Xiaqu Xiaqu,Xiaqu Xiang,xia qu,xia qu xiang,下渠,下渠乡 26.8237 117.15654 P PPLA4 CN 07 0 369 Asia/Shanghai 2012-01-18
-1789832 Xiapu Xiapu Hsia-p'u,Hsia-p’u,Xiapu,Xiapu Zhen,sha pu,sha pu zhen,厦铺,厦铺镇 29.51441 114.46423 P PPLA4 CN 12 0 101 Asia/Shanghai 2012-01-18
-1789833 Xiapu Xiapu Hsia-p'u,Hsia-p’u,Xiapu,Xiapu Xiang,xia pu,xia pu xiang,下浦,下浦乡 27.79642 114.44316 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-18
-1789873 Xiaozhai Xiaozhai Hsiao-chai,Xiaozhai,xiao zhai,小寨 34.04566 109.28714 P PPLA4 CN 26 0 653 Asia/Chongqing 2012-01-18
-1789877 Xiaoyue Xiaoyue Hsiao-yueh,Hsiao-yueh-chen,Hsiao-yüeh,Hsiao-yüeh-chen,Xiaoyue,Xiaoyue Zhen,xiao yue,xiao yue zhen,小越,小越镇 30.07122 120.92796 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1789897 Gongyi Gongyi Gongyi,Hsiao-i,Hsiao-i-chen,Kung-hsien,Xiaoyi 34.76 112.97139 P PPL CN 09 56033 136 Asia/Chongqing 2012-01-18
-1789898 Xiaoyi Xiaoyi Hsiao-i,Hsiao-i-chen,Xiaoyi,Xiaoyi Zhen,xiao yi,孝义 34.61778 109.70301 P PPLA4 CN 26 0 345 Asia/Chongqing 2012-01-18
-1789918 Xiaoxita Xiaoxita Hsiao-hsi-t'a,Hsiao-hsi-t'a-shih,Hsiao-hsi-t’a,Hsiao-hsi-t’a-shih,I-ch'ang,I-ch'ang-hsien,I-ch’ang,I-ch’ang-hsien,Xiaoxita,Xiaoxita Jiedao,Yichang,xiao xi ta,xiao xi ta jie dao,yi chang,yi chang xian,宜昌,宜昌县,小溪塔,小溪塔街道 30.77135 111.32146 P PPLA3 CN 12 0 75 Asia/Chongqing 2012-01-18
-1789935 Xiaoxi Xiaoxi Hsiao-hsi,Xiaoxi,Xiaoxi Xiang,xiao xi,xiao xi xiang,小溪,小溪乡 25.7704 115.3299 P PPLA4 CN 03 0 182 Asia/Shanghai 2012-01-18
-1789937 Xiaoxi Xiaoxi Hsiao-ch'i,Hsiao-ch'i-chen,Hsiao-ch’i,Hsiao-ch’i-chen,P'ing-ho,Pinghe,P’ing-ho,Xiaoxi,xiao xi,小溪 24.35249 117.29071 P PPLA3 CN 07 0 136 Asia/Shanghai 2012-01-18
-1789945 Xiaoweizhai Xiaoweizhai 26.19028 107.5125 P PPL CN 18 58913 757 Asia/Chongqing 2006-01-17
-1789951 Xiaowangmiao Xiaowangmiao Hsiao-wang-miao,Hsiao-wang-miao-shih,Xiaowangmiao,Xiaowangmiao Zhen,xiao wang miao,xiao wang miao zhen,萧王庙,萧王庙镇 29.70139 121.35583 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-18
-1789963 Xiaotian Xiaotian Hsiao-t'ien,Hsiao-t’ien,Xiaotian,Xiaotian Xiang,Xiaotian Zhen,xiao tian,xiao tian xiang,xiao tian zhen,肖田,肖田乡,肖田鎮 27.04204 116.09251 P PPLA4 CN 03 0 265 Asia/Shanghai 2012-01-18
-1789973 Xiaosong Xiaosong Hsiao-sung,Hsiao-sung-shih,Xiaosong,Xiaosong Zhen,xiao song,xiao song zhen,小松,小松镇 26.44242 116.3055 P PPLA4 CN 03 0 275 Asia/Shanghai 2012-01-18
-1789985 Xiaoshidian Xiaoshidian Hsiao-shih-tien,Xiaoshidian,Xiaoshidian Zhen,xiao shi dian,xiao shi dian zhen,小史店,小史店镇 33.15512 113.3201 P PPLA4 CN 09 0 133 Asia/Chongqing 2012-01-18
-1789995 Shangqiao Shangqiao Hsiao-shang-ch'iao,Hsiao-shang-ch'iao-pei-chai,Hsiao-shang-ch’iao,Hsiao-shang-ch’iao-pei-chai,Shangqiao,Shangqiao Zhen,Xiaoshangqiao,shang qiao,shang qiao zhen,商桥,商桥镇 33.70598 113.95667 P PPLA4 CN 09 0 63 Asia/Shanghai 2012-01-18
-1789998 Xiaoshan Xiaoshan Hsiao-chan,Hsiao-chi-shan,Hsiao-shan,Hsiao-shan-hsien,Hsiao-shan-hsien-ch'eng,Hsiao-shan-hsien-ch’eng,Siaoshan,Siaoshanhsien,Sjaoshan',Xiaoshan,Xiaoshan Xian,xiao shan,xiao shan xian,Сяошань,萧山,萧山县 30.16746 120.25883 P PPLA3 CN 02 95234 14 Asia/Shanghai 2012-01-18
-1790001 Xiaoshajiang Xiaoshajiang Hsiao-sha-chiang,Xiaoshajiang,Xiaoshajiang Zhen,xiao sha jiang,xiao sha jiang zhen,小沙江,小沙江镇 27.52139 110.74806 P PPLA4 CN 11 2160 1333 Asia/Chongqing 2012-02-28
-1790007 Xiaosanjiang Xiaosanjiang Hsiao-chiang,Xiaojiang,Xiaosanjiang,Xiaosanjiang Zhen,xiao san jiang,xiao san jiang zhen,小三江,小三江镇 24.28196 112.13296 P PPLA4 CN 30 0 203 Asia/Chongqing 2012-01-18
-1790017 Xiaoqiu Xiaoqiu Hsiao-ch'iu,Hsiao-ch'iu-chen,Hsiao-ch’iu,Hsiao-ch’iu-chen,Shui-ch'iu-chen,Shui-ch’iu-chen,Xiaoqiu,Xiaoqiu Zhen,Xiaoqiuzhen,Xiaoqu,xiao qiu,xiao qiu zhen,校丘,校丘镇 34.90944 108.77139 P PPLA4 CN 26 0 964 Asia/Chongqing 2012-01-18
-1790029 Xiaoqiao Xiaoqiao Hsiao-ch'iao,Hsiao-ch’iao,Xiaoqiao,Xiaoqiao Zhen,xiao qiao,xiao qiao zhen,小桥,小桥镇 26.95384 118.46607 P PPLA4 CN 07 0 145 Asia/Shanghai 2012-01-18
-1790034 Xiaopu Xiaopu Xiaopu,xiao pu,小浦 31.02955 119.82958 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1790037 Xiaopingyi Xiaopingyi Hsiao-p'ing-i,Hsiao-p'ing-i-ts'un,Hsiao-p’ing-i,Hsiao-p’ing-i-ts’un,Xiaopingyi,Xiaopingyi Xiang,xiao ping yi,xiao ping yi xiang,小平易,小平易乡 39.38474 112.48135 P PPLA4 CN 24 0 1104 Asia/Chongqing 2012-01-18
-1790052 Xiaonangou Xiaonangou Xiaonangou,Xiaonangou Xiang,xiao nan gou,xiao nan gou xiang,小南沟,小南沟乡 36.62435 106.81809 P PPLA4 CN 15 0 1798 Asia/Chongqing 2012-01-18
-1790064 Xiaomei Xiaomei Hsiao-mei,Hsiao-mei-chen,Xiaomei,Xiaomei Zhen,xiao mei,xiao mei zhen,小梅,小梅镇 27.82583 118.97222 P PPLA4 CN 02 0 342 Asia/Shanghai 2012-01-18
-1790081 Xiaolukou Xiaolukou Hsia-lu-k'ou,Hsia-lu-k’ou,Hsiao-lu-k'ou,Hsiao-lu-k’ou,Xiaolukou,Xiaolukou Zhen,xiao lu kou,xiao lu kou zhen,小路口,小路口镇 29.8615 117.6077 P PPLA4 CN 01 0 180 Asia/Shanghai 2012-01-18
-1790085 Xiaolou Xiaolou Hsiao-lou,Xiaolou,Xiaolou Zhen,xiao lou,小楼 23.38444 113.82818 P PPLA4 CN 30 0 13 Asia/Chongqing 2012-01-18
-1790088 Xiaolongmen Xiaolongmen Hsiao-lung,Hsiao-lung-men,Hsiao-lung-p'u,Hsiao-lung-p’u,Xiaolongmen 27.80194 110.16056 P PPL CN CN 11 1070 187 Asia/Chongqing 2012-01-18
-1790090 Xiaolong Xiaolong Hsiao-lung,Xiaolong,Xiaolong Zhen,xiao long,xiao long zhen,小龙,小龙镇 26.68182 115.25475 P PPLA4 CN 03 0 280 Asia/Shanghai 2012-01-18
-1790091 Xiaolong Xiaolong Xiaolong,Xiaolong Xiang,xiao long,xiao long xiang,晓龙,晓龙乡 25.54138 115.54484 P PPLA4 CN 03 0 188 Asia/Shanghai 2012-01-18
-1790100 Xiaolingwei Xiaolingwei Hsiao-ling-wei,Xiaolingwei,xiao ling wei,孝陵卫 32.03333 118.85 P PPL CN 04 66031 13 Asia/Shanghai 2012-01-18
-1790104 Xiaolin Xiaolin Hsiao-lin,Hsiao-lin-chen,Xiaolin,Xiaolin Zhen,Xiaolinzhen,xiao lin,xiao lin zhen,逍林,逍林镇 30.17274 121.30588 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1790116 Xiaokeng Xiaokeng Xiaokeng,Xiaokeng Zhen,xiao keng,xiao keng zhen,小坑,小坑镇 24.7097 113.82177 P PPLA4 CN 30 0 278 Asia/Shanghai 2012-02-28
-1790124 Xiaojingzhuang Xiaojingzhuang Hsiao-chin-chuang,Hsiao-ching-chuang,Xiaojingzhuang,Xiaojingzhuang Xiang,xiao jing zhuang,xiao jing zhuang xiang,小京庄,小京庄乡 39.8864 112.65165 P PPLA4 CN 24 0 1451 Asia/Shanghai 2012-01-18
-1790148 Xiaojian Xiaojian Hsiao-chien-tzu,Xiaojian,Xiaojian Zhen,Xiaojianji,Yu-shun-chi,Yü-shun-chi,xiao jian,xiao jian zhen,小尖,小尖镇 34.13333 119.65 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1790157 Xiaojiang Xiaojiang Hsiao-chiang,Hsiao-chiang-shih,Xiaojiang,Xiaojiang Zhen,xiao jiang,xiao jiang zhen,小将,小将镇 29.38326 121.11543 P PPLA4 CN 02 0 266 Asia/Shanghai 2012-01-18
-1790160 Xiaojiang Xiaojiang Hsiao-chiang,Hsiao-chiang-chen,Hsiao-chiang-hsu,Hsiao-chiang-hsü,Hsiao-ching-hsu,Hsiao-ching-hsü,P'u-pei,Pubei,P’u-pei,Siukonghu,Siukonghü,Xiaojiang,xiao jiang,小江 22.28146 109.52934 P PPLA3 CN 16 0 78 Asia/Chongqing 2012-01-18
-1790163 Xiaogang Xiaogang Hsiao-chia-kang,Xiaogang,Xiaogang Zhen,Xiaojiagang,xiao gang,xiao gang zhen,肖港,肖港镇 31.07742 113.93363 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-18
-1790184 Xiaohu Xiaohu Hsiao-hu,Xiaohu,Xiaohu Zhen,xiao hu,xiao hu zhen,小湖,小湖镇 27.33333 118.26667 P PPLA4 CN 07 0 147 Asia/Shanghai 2012-01-18
-1790189 Bange Bange Bange,Bangebao,Hsiao-ho-ch'eng,Hsiao-ho-chen,Hsiao-ho-ch’eng,Shao-k'o-ch'eng,Shao-k’o-ch’eng,Siaohocheng,Xiaohe Xiang,ban ge,ban ge bao,xiao he xiang,半个,半个堡,硝河乡 35.88704 105.84982 P PPLA4 CN 21 0 1847 Asia/Chongqing 2012-01-18
-1790194 Xiaohenglong Xiaohenglong Hsiao-heng-lung,Xiaohenglong 27.605 110.51694 P PPL CN CN 11 1500 570 Asia/Chongqing 2012-01-18
-1790196 Xiaohemiao Xiaohemiao Hsiao-ho-miao,Xiaohemiao,xiao he miao,小河庙 32.95897 106.66539 P PPLA4 CN 26 0 687 Asia/Chongqing 2012-01-18
-1790210 Xiaohe Xiaohe Hsiao-ho,Hsiao-ho-chen,Hsiao-ho-wan,Hsiasho,Xiaohe,Xiaohe Zhen,xiao he,xiao he zhen,小河,小河镇 31.80389 112.15222 P PPLA4 CN 12 0 75 Asia/Chongqing 2012-01-18
-1790214 Heshikou Heshikou Heshikou,Hsiao-ho,Hsiao-ho-chen,Xiaohe,Xiaohe Xiang,he shi kou,xiao he,xiao he xiang,合石口,小河,小河乡 28.2223 114.05827 P PPLA4 CN 11 0 199 Asia/Chongqing 2012-01-18
-1790220 Xiaohai Xiaohai Hsiao-hai,Hsiao-hai-chen,Xiaohai,Xiaohai Zhen,Xiaohaizhen,xiao hai,xiao hai zhen,小海,小海镇 31.95518 120.96434 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1790236 Xiaoguan Xiaoguan Hsiao-kuan,Xiaoguan,Xiaoguan Dongzuxiang,xiao guan,xiao guan dong zu xiang,晓关,晓关侗族乡 29.87588 109.31931 P PPLA4 CN 12 0 1023 Asia/Chongqing 2012-01-18
-1790248 Xiaogang Xiaogang Hsiao-kang-k'ou,Hsiao-kang-k’ou,Xiaogang,Xiaogang Zhen,Xiaogangkou,xiao gang,xiao gang zhen,小港,小港镇 28.24676 115.86277 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1790250 Xiaogang Xiaogang Hsiao-kang-chen,Xiaogang,Xiaogang Zhen,xiao gang,xiao gang zhen,小港,小港镇 29.95033 121.74293 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1790254 Xiaogan Xiaogan Hsiao-kan,Hsiao-kan-hsien,Siaokan,Siaokanhsien,Xiaogan,xiao gan shi,شياۋگەن شەھىرى,孝感市 30.91667 113.9 P PPL CN 12 160437 28 Asia/Chongqing 2011-08-07
-1790260 Xiaodongzhuang Xiaodongzhuang 39.06194 117.39889 P PPL CN 28 3784 4 Asia/Shanghai 2000-11-21
-1790263 Xiaodong Xiaodong Xiaodong,Xiaodong Zhen,xiao dong,xiao dong zhen,肖东,肖东镇 30.03333 121.1 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1790272 Xiaodian Xiaodian Hsiao-tien-chuang,Xiaodian,Xiaodianzhuang 39.25194 117.21778 P PPL CN CN 28 5086 6 Asia/Shanghai 2012-01-18
-1790274 Xiaodian Xiaodian Hsiao-t'ien,Hsiao-tien-chen,Hsiao-t’ien,Xiaodian,Xiaodian Jiedao,Xiaodian Qu,xiao dian,xiao dian jie dao,xiao dian qu,小店,小店区,小店街道 37.73639 112.55639 P PPLA3 CN 24 0 775 Asia/Chongqing 2012-01-18
-1790289 Xiaocun Xiaocun Hsiao-ts'un,Hsiao-ts’un,Xiaocun,Xiaocun Zhen,xiao cun,xiao cun zhen,小村,小村镇 34.26388 108.26144 P PPLA4 CN 26 0 442 Asia/Chongqing 2012-01-18
-1790296 Xiaochuan Xiaochuan Hsiao-ch'uan,Hsiao-ch'uan-chen,Hsiao-ch’uan,Hsiao-ch’uan-chen,Xiaochuan,Xiaochuan Zhen,xiao chuan,xiao chuan zhen,小川,小川镇 33.6806 105.56156 P PPLA4 CN 15 0 1261 Asia/Chongqing 2012-01-18
-1790300 Xiaochi Xiaochi Hsiao-ch'ih-k'ou,Hsiao-ch’ih-k’ou,Xiaochi,Xiaochi Zhen,Xiaochikou,xiao chi,xiao chi zhen,小池,小池镇 29.75359 115.98951 P PPLA4 CN 12 0 19 Asia/Shanghai 2012-01-18
-1790302 Xiaochi Xiaochi Hsiao-ch'ih,Hsiao-ch'ih-hsu,Hsiao-ch’ih,Hsiao-ch’ih-hsü,Siaochih,Xiaochi,Xiaochi Zhen,xiao chi,xiao chi zhen,小池,小池镇 25.14434 116.88544 P PPLA4 CN 07 0 467 Asia/Shanghai 2012-01-18
-1790311 Xiaocha Xiaocha Xiaocha,Xiaocha Xiang,xiao cha,xiao cha xiang,小岔,小岔乡 36.15182 106.75971 P PPLA4 CN 21 0 1688 Asia/Chongqing 2012-01-18
-1790315 Xiaobu Xiaobu Hsiao-p'u,Hsiao-p’u,Xiaobu,Xiaobu Zhen,Xiaopu,xiao bu,xiao bu zhen,小布,小布镇 26.78632 115.83121 P PPLA4 CN 03 0 297 Asia/Shanghai 2012-01-18
-1790338 Xi’ao Xi'ao Xi'ao,Xi'ao Zhen,Xi’ao,Xi’ao Zhen,xi ao,xi ao zhen,细坳,细坳镇 24.69135 115.25716 P PPLA4 CN 30 0 308 Asia/Shanghai 2012-01-18
-1790339 Xianzong Xianzong Hsien-tsung,Xianzong,Xianzong Zhen,xian zong,xian zong zhen,仙踪,仙踪镇 31.8013 118.0078 P PPLA4 CN 01 0 17 Asia/Shanghai 2012-01-18
-1790345 Xianyuan Xianyuan Ch'eng-hsiang-chen,Chiu-t'ai-p'ing,Chiu-t’ai-p’ing,Ch’eng-hsiang-chen,Hsien-yuan,Hsien-yuan-chen,Hsien-yüan,Hsien-yüan-chen,T'ai-p'ing,T'ai-p'ing-chen,T'ai-p'ing-hsien,T’ai-p’ing,T’ai-p’ing-chen,T’ai-p’ing-hsien,Xianyuan,Xianyuan Zhen,xian yuan,xian yuan zhen,仙源,仙源镇 30.30542 118.2002 P PPLA4 CN 01 0 138 Asia/Shanghai 2012-01-18
-1790347 Xianyuan Xianyuan Hsien-yuan,Hsien-yüan,Xianyuan,Xianyuan Xiang,xian yuan,xian yuan xiang,仙源,仙源乡 28.2987 114.25833 P PPLA4 CN 03 0 328 Asia/Chongqing 2012-01-18
-1790353 Xianyang Xianyang Hsien-yang,Hsien-yang-hsien,Hsien-yang-shih,San'jan,Sienyanghsien,Syanyan,Xianyang,Xianyang Shi,xian yang,xian yang shi,Саньян,咸阳,咸阳市 34.33778 108.70261 P PPLA3 CN 26 1034081 387 Asia/Chongqing 2012-01-18
-1790354 Xianyang Xianyang Hsien-yang,Xianyang,Xianyang Zhen,xian yang,xian yang zhen,仙阳,仙阳镇 28.04558 118.51833 P PPLA4 CN 07 0 276 Asia/Shanghai 2012-01-18
-1790356 Xianyan Xianyan Hsien-yen,Hsien-yen-chen,Xianyan,Xianyan Zhen,xian yan,xian yan zhen,仙岩,仙岩镇 29.67543 120.81321 P PPLA4 CN 02 0 49 Asia/Shanghai 2012-01-18
-1790357 Xianxi Xianxi Hsien-hsi-chen,Tung-tao,Xianxi,Xianxi Zhen 26.33472 109.64306 P PPL CN CN 11 2910 334 Asia/Chongqing 2012-01-18
-1790358 Xianxiang Xianxiang Hsien-hsiang-chen,Xianxiang,Xianxiang Zhen,xian xiang,xian xiang zhen,咸祥,咸祥镇 29.69034 121.77884 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1790363 Yejia Yejia Hsien-hsia,Shan-chia-ts'un,Shan-chia-ts’un,Xianxia,Xianxia Zhen,Yejia,xian xia,xian xia zhen,ye jia,仙霞,仙霞镇,叶家 30.40764 119.28766 P PPLA4 CN 01 0 147 Asia/Shanghai 2012-01-18
-1790364 Xianxia Xianxia Hsien-hsia,Hsien-hsia-kuan,Shan-hsia-kuan,Xianxia,Xianxia Xiang,xian xia,xian xia xiang,仙下,仙下乡 26.11312 115.56313 P PPLA4 CN 03 0 156 Asia/Shanghai 2012-01-18
-1790371 Xiantao Xiantao Hsien-t'ao-chen,Hsien-t’ao-chen,Mianyang,Mien-yang,Mien-yang Hsien,Sientaochen,Xiantao,Xiantaozhen 30.38333 113.4 P PPL CN 12 239406 30 Asia/Chongqing 2012-01-18
-1790374 Xiantang Xiantang Hsien-t'ang,Hsien-t’ang,Xiantang,xian tang,仙塘 23.80894 114.78509 P PPLA3 CN 30 0 38 Asia/Chongqing 2012-01-18
-1790376 Xiantan Xiantan Hsien-t'an-ch'ang,Hsien-t’an-ch’ang,Xiantan,Xiantanchang,xian tan,先滩 28.81859 106.1927 P PPL CN 32 1100 317 Asia/Chongqing 2012-01-18
-1790377 Xiantaiba Xiantaiba Hsien-t'ai-pa,Hsien-t’ai-pa,Xiantaiba,xian tai ba,仙台坝 33.3934 106.3685 P PPLA4 CN 26 0 960 Asia/Chongqing 2012-01-18
-1790379 Xianshuigu Xianshuigu Hsien-shui-ku,T'ien-ching,T'ien-ching-hsien,T’ien-ching,T’ien-ching-hsien,Xianshuigu 38.985 117.38278 P PPL CN 28 74028 5 Asia/Shanghai 2012-01-18
-1790387 Xianrenwan Xianrenwan Hsien-jen-wan,Xianrenwan 27.75444 110.32972 P PPL CN CN 11 1030 151 Asia/Chongqing 2012-01-18
-1790392 Jiangdu Jiangdu Chiang-tu,Hsien-nu-chen,Hsien-nu-miao,Hsien-nu-miao-chen,Hsien-nü-chen,Hsien-nü-miao,Hsien-nü-miao-chen,Jiangdu,Siennumiao,Siennümiao,Xiannumiao,Xiannümiao 32.43667 119.55083 P PPL CN 04 83936 11 Asia/Shanghai 2012-01-18
-1790396 Xianning Xianning Hsien-ning,Sjan'nin,Xianning,Сяньнин 29.88333 114.21667 P PPL CN 12 179494 37 Asia/Shanghai 2011-08-07
-1790402 Xianlin Xianlin Hsien-lin,Hsien-lin-fou,Hsien-lin-pu,Xianlin,Xianlinbu,xian lin,闲林 30.22583 119.98139 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1790412 Xianju Xianju Hsien-chu,Hsien-chü,Xianju,Xianju Xiang,xian ju,xian ju xiang,仙居,仙居乡 31.40015 112.03379 P PPLA4 CN 12 0 119 Asia/Chongqing 2012-01-18
-1790413 Xianju Xianju Hsien-chu,Hsien-chu-hsien,Hsien-chu-hsien-ch'eng,Hsien-chü,Hsien-chü-hsien,Hsien-chü-hsien-ch’eng,Sienku,Sienkuhsien,Sienkü,Xianju 28.85 120.73333 P PPL CN 02 61532 55 Asia/Shanghai 2012-01-18
-1790435 Xiangzhou Xiangzhou Hsiang,Hsiang-chou,Hsiang-chou-chen,Hsiang-hsien,Tseung-hsien,Xiangzhou,xiang zhou,象州 23.97282 109.66678 P PPLA3 CN 16 0 77 Asia/Chongqing 2012-01-18
-1790437 Zhuhai Zhuhai Chau Hai,Chu Hai,Chu Hải,Chu-hai,Chzhukhaj,Châu Hải,Heung chau,Hsiang-chou,Hsiang-chou-chen,Hsiang-chou-fou,Huengchow,Xiangzhou,Zhuhai,zhu hai,zhu hai shi,Чжухай,جۇخەي شەھىرى,珠海,珠海市 22.27694 113.56778 P PPLA2 CN 30 501199 35 Asia/Chongqing 2012-01-18
-1790442 Xiangcheng Xiangcheng Hsiang-ch'eng-chen,Hsiang-ch’eng-chen,Hsiang-yun,Hsiang-yun-hsien,Hsiang-yün,Hsiang-yün-hsien,Siangyun,Siangyün,Xiangcheng,Xiangyun,Yun-nan,Yunnanhsien,Yunnansen,Yün-nan,xiang cheng,祥城 25.46687 100.56248 P PPLA3 CN 29 0 1986 Asia/Chongqing 2012-01-18
-1790446 Guhan Guhan Guhan,Hsiang-yuan,Hsiang-yuan-hsien,Hsiang-yüan,Hsiang-yüan-hsien,Siangyuanhsien,Siangyüanhsien,Syan'yuan',Syan’yuan’,Xiangyuan,gu han,古韩 36.53547 113.02528 P PPLA3 CN 24 0 890 Asia/Shanghai 2012-01-18
-1790451 Wenxing Wenxing Hsiang-yin,Hsiang-yin-hsien,Siangyin,Siangyinhsien,Wenxing,Xiangyin,wen xing,文星 28.66667 112.88333 P PPLA3 CN 11 57117 27 Asia/Chongqing 2012-01-18
-1790460 Xiangyang Xiangyang Hsiang-yang,Hsiang-yang-ts'un,Hsiang-yang-ts’un,Xiangyang,Xiangyang Zhen,Xiangyangcun,xiang yang,xiang yang zhen,向阳,向阳镇 31.87222 121.78778 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1790461 Xiangyangpu Xiangyangpu Hsiang-yang,Hsiang-yang-pao,Xiangyangpu,Xiangyangpu Xiang,xiang yang bao,xiang yang bao xiang,向阳堡,向阳堡乡 39.60725 112.35134 P PPLA4 CN 24 0 1361 Asia/Chongqing 2012-01-18
-1790471 Xiangxiang Xiangxiang Hsan-shan,Hsiang-hsiang,Hsiang-hsiang-hsien,Siangsiang,Siangsianghsien,Xiangxiang,xiang xiang,湘乡 27.73333 112.53333 P PPL CN 11 87592 46 Asia/Chongqing 2012-01-18
-1790488 Xiangtang Xiangtang Hsiang-t'ang,Hsiang-t’ang,Xiangtang,Xiangtang Zhen,xiang tang,xiang tang zhen,向塘,向塘镇 28.42644 115.96323 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-18
-1790492 Xiangtan Xiangtan Hsiang-t'an-ch'eng,Hsiang-t'an-hsien,Hsiang-t'an-shih,Hsiang-tan,Hsiang-t’an-ch’eng,Hsiang-t’an-hsien,Hsiang-t’an-shih,Siangtan,Siangtanhsien,Sjantan',Xiangtan,Сянтань 27.85 112.9 P PPL CN 11 674189 31 Asia/Chongqing 2012-01-18
-1790496 Xiangshuitang Xiangshuitang Hsiang-shui-t'an,Hsiang-shui-t’an,Xiangshuitang,Xiangshuitang Xiang,xiang shui tan,xiang shui tan xiang,响水滩,响水滩乡 29.47479 116.5501 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1790498 Xiangshui Xiangshui Hsiang-shui-ssu,Xiangshui,Xiangshui Zhen,Xiangshuisi,xiang shui,xiang shui zhen,湘水,湘水镇 32.94222 107.07972 P PPLA4 CN 26 0 601 Asia/Chongqing 2012-01-18
-1790506 Xiangshui Xiangshui Hsiang-shui,Hsiang-shui-hsu,Hsiang-shui-hsü,Xiangshui,Xiangshui Zhen,xiang shui,响水 23.26871 114.21871 P PPLA4 CN 30 0 31 Asia/Chongqing 2012-01-18
-1790508 Xiangshui Xiangshui Xiangshui,Xiangshui Zhen,xiang shui,xiang shui zhen,响水,响水镇 18.59319 109.61206 P PPLA4 CN 31 0 94 Asia/Chongqing 2012-01-18
-1790510 Xiangshi Xiangshi Xiangshi,Xiangshi Zhen,xiang shi,xiang shi zhen,象市,象市镇 29.5172 110.83746 P PPLA4 CN 11 0 128 Asia/Chongqing 2012-01-18
-1790516 Xiangshan Xiangshan Hsiang-shan,Xiangshan,Xiangshan Zhen,xiang shan,xiang shan zhen,向山,向山镇 31.66222 118.59355 P PPLA4 CN 01 0 30 Asia/Shanghai 2012-01-18
-1790518 Menghai Menghai Fo-hai,Fo-hai-hsien,Fuhai-hsien,Menghai,Pan-na-meng-hai,Xiangshan,meng hai,勐海 21.95322 100.38409 P PPLA3 CN 29 0 1174 Asia/Chongqing 2012-01-18
-1790526 Xiangquan Xiangquan Hsiang-ch'uan,Hsiang-ch'uan-chen,Hsiang-ch’üan,Hsiang-ch’üan-chen,Xiangquan,Xianquan Zhen,xiang quan,xiang quan zhen,香泉,香泉镇 31.87038 118.31635 P PPLA4 CN 01 0 15 Asia/Shanghai 2012-01-18
-1790527 Xiangqiao Xiangqiao Hsiang-ch'iao,Hsiang-ch'iao-chen,Hsiang-ch’iao,Hsiang-ch’iao-chen,Xiangqiao,Xiangqiao Zhen,xiang qiao,相桥 34.61514 109.36617 P PPLA4 CN 26 0 366 Asia/Chongqing 2012-01-18
-1790532 Xiangong Xiangong Hsien-kung,Hsien-kung-chen,Xiangong,Xiangong Zhen,xian gong,xian gong zhen,县功,县功镇 34.52683 107.06806 P PPLA4 CN 26 0 741 Asia/Chongqing 2012-01-18
-1790534 Changning Changning Changning,Changning Zhen,Hsiang-ning,Hsiang-ning-hsien,Siangninghsien,Syannin,Xiangning,Xiangning Xian,chang ning,chang ning zhen,xiang ning xian,乡宁县,昌宁,昌宁镇 35.97983 110.82211 P PPLA3 CN 24 0 1159 Asia/Chongqing 2012-01-18
-1790536 Xiangmiao Xiangmiao Hsiang-miao,Xiangmiao,xiang miao,香庙 34.99252 108.226 P PPLA4 CN 26 0 1124 Asia/Chongqing 2012-01-18
-1790541 Xiangling Xiangling Chiu-hsiang-ling,Hsiang-ling,Hsiang-ling-ch'eng,Hsiang-ling-ch’eng,Hsiang-ling-hsien,Sianglinghsien,Syanlin,Xiangling,Xiangling Zhen,xiang ling,xiang ling zhen,襄陵,襄陵镇 36.02722 111.4 P PPLA4 CN 24 0 428 Asia/Chongqing 2012-01-18
-1790560 Xianghuaqiao Xianghuaqiao Hsiang-hua-ch'iao,Hsiang-hua-ch’iao,Xianghuaqiao,Xianghuaqiao Jiedao,xiang hua qiao,xiang hua qiao jie dao,香花桥,香花桥街道 31.17451 121.11692 P PPLA4 CN 23 0 3 Asia/Shanghai 2012-01-18
-1790567 Xianghu Xianghu Hsiang-hu,Xianghu,Xianghu Zhen,xiang hu,xiang hu zhen,湘湖,湘湖镇 29.32537 117.31588 P PPLA4 CN 03 0 50 Asia/Shanghai 2012-01-18
-1790568 Xianghu Xianghu Jui-chin,Jui-chin-hsien,Juikin,Juikin-hsien,Ruijin Shi,Shuikin,Shuikin-hsien,Xianghu,Xianghu Zhen,rui jin shi,xiang hu,xiang hu zhen,瑞金市,象湖,象湖镇 25.8 116 P PPLA3 CN 03 0 228 Asia/Shanghai 2012-01-18
-1790573 Xianghe Xianghe Hsiang-ho-kuan,Hsiang-ho-tien,Xianghe,Xiangheguan,xiang he,象河 33.10891 113.42492 P PPLA4 CN 09 0 166 Asia/Chongqing 2012-01-18
-1790578 Xianghe Xianghe Ch'uan-chiao,Ch'uan-chiao-hsien,Chuantsiao,Chuantsiao-hsien,Chüantsiao-hsien,Ch’üan-chiao,Ch’üan-chiao-hsien,Quanjiao,Xianghe,xiang he,襄河 32.09088 118.25001 P PPLA3 CN 01 0 12 Asia/Shanghai 2012-01-18
-1790583 Xiangfu Xiangfu Hsiang-fu-kuan,Hsiang-fu-kuan-chieh,Xiangfu,Xiangfu Zhen,Xiangfuguan,xiang fu,xiang fu zhen,祥符,祥符镇 28.4747 115.43037 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-18
-1790586 Zhangwan Zhangwan Xiangfanbei,Xiangyang Qu,Xiangzhou Qu,Zhangwan,Zhangwan Zhen,xiang fan bei,xiang yang qu,xiang zhou qu,zhang wan,zhang wan zhen,张湾,张湾镇,襄州区,襄樊北,襄阳区 32.1 112.16667 P PPLA3 CN 12 0 69 Asia/Chongqing 2012-01-18
-1790587 Xiangyang Xiangyang Fan-ch'eng,Fan-ch'eng-chen,Fan-ch’eng,Fan-ch’eng-chen,Hsiang-fan,Hsiang-fan-shih,Hsiang-yang,Hsiang-yang-hsien,Siangfan,Siangyang,Siangyang-hsien,Siangyangfu,Sjanfan',Xiangfan,Xiangyang,Xiangyang Shi,fan cheng,fan cheng zhen,xiang fan,xiang fan shi,xiang yang,xiang yang fu,xiang yang shi,Сянфань,شياڭفان شەھىرى,樊城,樊城镇,襄樊,襄樊市,襄阳,襄阳市,襄阳府 32.0422 112.14479 P PPLA2 CN 12 462956 71 Asia/Chongqing 2012-01-18
-1790601 Xiangcheng Xiangcheng Hsiang-ch'eng,Hsiang-ch'eng-hsien,Hsiang-ch’eng,Hsiang-ch’eng-hsien,Xiangcheng,xiang cheng,襄城 33.84703 113.4778 P PPLA3 CN 09 65833 85 Asia/Shanghai 2012-01-18
-1790602 Xiangcheng Xiangcheng Hsiang-ch'eng,Hsiang-ch’eng,Xiangcheng,Xiangcheng Zhen,xiang cheng,xiang cheng zhen,相城,相城镇 28.19904 115.16152 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-18
-1790620 Xiancun Xiancun Hsien-ts'un,Hsien-ts’un,Xiancun 26.93861 119.36028 P PPL CN CN 07 2150 154 Asia/Shanghai 2012-01-18
-1790630 Xi’an Xi'an Ch'ang-an,Ch'ang-an-hsien,Ch’ang-an,Ch’ang-an-hsien,Hsi Gnan Fu,Hsi-an,Hsi-an-shih,Hsi-ching,Hsi-ching-shih,Hsingan,SIA,Si-Gan-Fu,Sian,Sian',Siana,Sianas,Sianfu,Siaņa,Siking,Singan,Sjiano,Tay An,Tây An,Xi'an,Xi'an - xi an,Xi'an - 西安,Xi'an Shi,Xian,Xi’an,Xi’an Shi,Xī'ān,si xan,sian,xi an,xi an shi,Ŝjiano,Сиань,شىئەن شەھىرى,ซีอาน,西安,西安市,시안 34.25833 108.92861 P PPLA CN 26 3225812 416 Asia/Chongqing 2012-01-18
-1790633 Xi’an Xi'an Xi'an,Xi'an Zhen,Xi’an,Xi’an Zhen,xi an,xi an zhen,西岸,西岸镇 24.92056 112.28695 P PPLA4 CN 30 0 124 Asia/Chongqing 2012-01-18
-1790635 Xiamujiao Xiamujiao Hsia-mu-chiao,Hsia-shui-chiao,Xiamujiao,Xiamujiao Xiang,xia mu jiao,xia mu jiao xiang,下木角,下木角乡 39.46419 112.08044 P PPLA4 CN 24 0 1472 Asia/Chongqing 2012-01-18
-1790636 Xiamiao Xiamiao Hsia-miao,Hsia-miao-chen,Xiamiao,Xiamiao Zhen,xia miao,下庙 34.57649 109.77057 P PPLA4 CN 26 0 340 Asia/Chongqing 2012-01-18
-1790637 Xiamiangao Xiamiangao Hsia-mien-kao,Mien-kao-kou,Xiamiangao,Xiamiangao Xiang,xia mian gao,xia mian gao xiang,下面高,下面高乡 39.49753 112.51239 P PPLA4 CN 24 0 1204 Asia/Shanghai 2012-01-18
-1790645 Xiamen Xiamen Amoy,Ha Mon,Hsia-men,Hsia-men-shih,Hạ Môn,Shamen,Sia-men,Siamen,Sjamehn',Sjamyn',Ssu-ming,Ssu-ming-hsien,Szeming-hsien,Xiamen,Xiamen - sha men,Xiamen - 厦门,Xiamen Shi,amoi,sha men,sha men shi,Сямынь,Сямэнь,شيامېن شەھىرى,アモイ,厦门,厦门市 24.47979 118.08187 P PPLA2 CN 07 578337 12 Asia/Shanghai 2012-01-18
-1790646 Xiamei Xiamei Hsia-mei,Xiamei,Xiamei Zhen,xia mei,霞美 23.9974 117.68224 P PPLA4 CN 07 0 11 Asia/Shanghai 2012-01-18
-1790647 Xiamayu Xiamayu Hsia-ma-yu,Hsia-ma-yü,Xiamayu,Xiamayu Xiang,xia ma yu,xia ma yu xiang,下马峪,下马峪乡 39.39606 113.10841 P PPLA4 CN 24 0 1051 Asia/Shanghai 2012-01-18
-1790652 Xiamao Xiamao Hsia-mao,Xiamao,Xiamao Zhen,xia mao,xia mao zhen,夏茂,夏茂镇 26.57649 117.66581 P PPLA4 CN 07 0 195 Asia/Shanghai 2012-01-18
-1790664 Xialiang Xialiang Hsia-liang-ho-k'ou,Hsia-liang-ho-k’ou,Xialiang,Xialiang Xiang,Xialiang Zhen,Xialianghekou,xia liang,xia liang xiang,xia liang zhen,下两,下两乡,下两镇 32.07672 106.77152 P PPLA4 CN 32 1500 550 Asia/Chongqing 2012-01-18
-1790665 Xiali Xiali Xiali,xia li,夏李 33.53088 113.21246 P PPLA4 CN 09 0 115 Asia/Chongqing 2012-01-18
-1790672 Xialaba Xialaba Hsia-la-pa,Xialaba,Xialaba Xiang,xia la ba,xia la ba xiang,下喇叭,下喇叭乡 39.59222 112.6575 P PPLA4 CN 24 0 1537 Asia/Shanghai 2012-01-18
-1790673 Xiakouyi Xiakouyi Hsia-k'ou-i,Hsia-k’ou-i,Xiakouyi,Xiakouyi Zhen,xia kou yi,xia kou yi zhen,硖口驿,硖口驿镇 33.21117 106.40751 P PPLA4 CN 26 0 703 Asia/Chongqing 2012-01-18
-1790681 Xiakou Xiakou Chia-k'ou-shih,Chia-k’ou-shih,Hsia-k'ou,Hsia-k'ou-shih,Hsia-k’ou,Hsia-k’ou-shih,Xiachuan,Xiachuan Zhen,Xiakou,xia chuan,xia chuan zhen,xia kou,峡口,峡川,峡川镇 29.14432 118.98723 P PPLA4 CN 02 0 100 Asia/Shanghai 2012-01-18
-1790683 Xiakeng Xiakeng Hsia-k'eng,Hsia-k’eng,Xiakeng,Xiakeng Zhen,xia keng,xia keng zhen,霞坑,霞坑镇 29.96 118.66083 P PPLA4 CN 01 0 161 Asia/Shanghai 2012-01-18
-1790685 Kajiaman Kajiaman Kajiaman,Kajiaman Xiang,Xiakajia,ka jia man,ka jia man xiang,卡家曼,卡家曼乡 35.08851 102.91393 P PPLA4 CN 15 0 2771 Asia/Chongqing 2012-01-18
-1790691 Xiayuan Xiayuan Hsia-chia-yuan,Hsia-chia-yüan,Xiajiayuan,Xiayuan,Xiayuan Zhen,xia yuan,xia yuan zhen,下原,下原镇 32.23167 120.64139 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1790696 Xiajiang Xiajiang Chiu-hsia-chiang,Hiakiang,Hiakiang-hsien,Hsia-chiang,Hsia-chiang-hsien,Xiajiang 25.75556 108.69194 P PPL CN CN 18 1198 222 Asia/Chongqing 2012-01-18
-1790707 Xiahu Xiahu Hsia-hu,Xiahu 26.61056 119.94833 P PPL CN CN 07 5070 26 Asia/Shanghai 2012-01-18
-1790719 Xiahan Xiahan Hsia-han,Hsia-han-ts'un,Hsia-han-ts’un,Xiahan,Xiahan Xiang,xia han,xia han xiang,下韩,下韩乡 39.72465 113.61433 P PPLA4 CN 24 0 1092 Asia/Shanghai 2012-01-18
-1790723 Xiaji Xiaji Hsia-kua-chen,Hsia-kuei,Hsia-kuei-chen,Xiagui,Xiaji,Xiaji Zhen,xia ji,下吉 34.72587 109.50724 P PPLA4 CN 26 0 364 Asia/Chongqing 2012-01-18
-1790734 Xiaguan Xiaguan Hsia-kuan,Hsia-kuan-chen,Kuan-ch'i,Kuan-ch’i,Xiaguan,Xiaguan Zhen,xia guan,xia guan zhen,下管,下管镇 29.84393 121.03059 P PPLA4 CN 02 0 76 Asia/Shanghai 2012-01-18
-1790751 Xiagang Xiagang Hsia-chiang,Hsia-chiang-chen,Hsia-kang,Xiagang,xia gang,夏港 31.89667 120.21 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1790755 Qixian Qixian Hsia-fang-ch'iao,Hsia-fang-ch’iao,Qixian,Qixian Zhen,Xiafangqiao,qi xian,qi xian zhen,齐贤,齐贤镇 30.12248 120.53706 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-18
-1790774 Xiadao Xiadao Hsia-tao,Siaotao,Siatao,Xiadao,Xiadao Zhen,xia dao,xia dao zhen,夏道,夏道镇 26.57508 118.26943 P PPLA4 CN 07 0 118 Asia/Shanghai 2012-01-18
-1790778 Xiacun Xiacun Hsia-ts'un,Hsia-ts’un,Xiacun,Xiacun Zhen,xia cun,xia cun zhen,下村,下村镇 27.92346 114.94914 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-18
-1790785 Xiacheng Xiacheng Xiacheng,xia cheng,峡城 34.99604 103.80267 P PPLA4 CN 15 0 2056 Asia/Chongqing 2012-01-18
-1790787 Xiache Xiache Xiache,Xiache Xiang,Xiachejie,xia che,xia che xiang,下车,下车乡 34.35 119.31667 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-18
-1790795 Xiacang Xiacang Hsia-ts'ang,Hsia-ts'ang-chen,Hsia-ts’ang,Hsia-ts’ang-chen,Xiacang 39.78639 117.41667 P PPL CN CN 28 3546 8 Asia/Harbin 2012-01-18
-1790796 Xiabuji Xiabuji Hsia-pu-chi,Xiabuji,Xiabuji Xiang,xia bu ji,xia bu ji xiang,下埠集,下埠集乡 28.30858 116.38205 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-18
-1790807 Xiabaishi Xiabaishi Hsia-pai-shih,Pai-shih,Xiabaishi 26.81528 119.67917 P PPL CN CN 07 8320 43 Asia/Shanghai 2012-01-18
-1790840 Wuzhou Wuzhou Ts'ang-wu,Ts'ang-wu-hsien,Ts’ang-wu,Ts’ang-wu-hsien,Wu-chou,Wu-chou-shih,Wuchow,Wuzhou,wu zhou,梧州 23.48333 111.31667 P PPLA2 CN 16 265846 75 Asia/Chongqing 2012-01-18
-1790847 Wu’an Wu'an Wu'an,Wu'an Zhen,Wu-an-yen,Wu-chen,Wuzhen,Wu’an,Wu’an Zhen,wu an,wu an zhen,武安,武安镇 31.68361 112.00444 P PPLA4 CN 12 0 77 Asia/Chongqing 2012-01-18
-1790848 Wuzhen Wuzhen T'ung-hsiang,T’ung-hsiang,Wu-chen,Wuzhen,Wuzhen Zhen,wu zhen,wu zhen zhen,乌镇,乌镇镇 30.74536 120.4851 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1790852 Yancheng Yancheng Uchzhay,Wu-chai,Wu-chai-hsien,Wu-chia,Wuzhai,Wuzhai Xian,Yancheng,Yancheng Zhen,wu zhai xian,yan cheng,yan cheng zhen,五寨县,砚城,砚城镇 38.91538 111.86928 P PPLA3 CN 24 0 1442 Asia/Chongqing 2012-01-18
-1790862 Wuyuan Wuyuan Hai-yen,Hai-yen-hsien,Hai-yen-hsien-ch'eng,Hai-yen-hsien-ch’eng,Haiyan,Haiyan Xian,Wu-yuan-chen,Wu-yüan-chen,Wuyuan,Wuyuan Zhen,hai yan,hai yan xian,wu yuan,wu yuan zhen,武原,武原镇,海盐,海盐县 30.51539 120.94856 P PPLA3 CN 02 0 11 Asia/Shanghai 2012-02-02
-1790863 Ziyang Ziyang Wu-yuan-hsien,Wu-yüan-hsien,Wuyuan,Wuyuan Xian,Ziyang,Ziyang Zhen,wu yuan xian,zi yang,zi yang zhen,婺源县,紫阳,紫阳镇 29.24972 117.85472 P PPLA3 CN 03 0 93 Asia/Shanghai 2012-01-18
-1790864 Wuyu Wuyu Wuyu,wu yu,浯屿 24.33551 118.14489 P PPL CN 07 3100 29 Asia/Shanghai 2012-01-18
-1790884 Wuquan Wuquan Uyan,Wu-yang-hsien,Wuquan,Wuquan Zhen,Wuyang,wu quan,舞泉 33.44408 113.5709 P PPLA3 CN 09 0 97 Asia/Shanghai 2012-01-18
-1790885 Wuyang Wuyang Wu-yang-chi,Wuyang 31.9925 116.24722 P PPL CN 01 79070 33 Asia/Shanghai 2012-01-18
-1790886 Wujin Wujin Hsin-chin,Hsin-ching,Hsin-ching-hsien,Sinsing,Sintsing,Sintsinghsien,Wujin,Wuyang,Xinjin,wu jin,五津 30.41131 103.81302 P PPLA3 CN 32 0 464 Asia/Chongqing 2012-01-18
-1790889 Wuyang Wuyang Wu-yang-shih,Wuyang,Wuyang Zhen 26.74278 110.32833 P PPL CN CN 11 2590 464 Asia/Chongqing 2012-01-18
-1790890 Wuyang Wuyang Wu-yang-hsu,Wu-yang-hsü,Wuyang,Wuyang Zhen,wu yang,wu yang zhen,武阳,武阳镇 25.76857 115.91803 P PPLA4 CN 03 0 207 Asia/Shanghai 2012-01-18
-1790894 Wuxue Wuxue Guangji,Kuang-chi,Kuang-chi-hsien,Wu-hsueh,Wu-hsueh-chen,Wu-hsüeh,Wu-hsüeh-chen,Wusueh,Wuxue,Wuxue Jiedao,wu xue,wu xue jie dao,武穴,武穴街道 29.85058 115.5525 P PPLA3 CN 12 220661 23 Asia/Shanghai 2012-01-18
-1790896 Wuxuan Wuxuan Mosun,Mosun-hsien,Mosün,Mosün-hsien,Wu-hsuan,Wu-hsuan-chen,Wu-hsuan-hsien,Wu-hsuen-hsien,Wu-hsüan,Wu-hsüan-chen,Wu-hsüan-hsien,Wu-hsüen-hsien,Wuxuan,wu xuan,武宣 23.62466 109.652 P PPLA3 CN 16 0 68 Asia/Chongqing 2012-01-18
-1790907 Wuxing Wuxing Wu-hsing,Wuxing,wu xing,五星 34.06611 108.79111 P PPLA4 CN 26 0 420 Asia/Chongqing 2012-01-18
-1790911 Shixiang Shixiang Shixiang,Wuxie,Wuxie Zhen,shi xiang,wu xie zhen,五泄镇,狮象 29.68791 120.085 P PPLA4 CN 02 0 77 Asia/Shanghai 2012-01-18
-1790917 Fengzhou Fengzhou Duancun,Fengzhou,Fengzhou Zhen,Tuan-ts'un,Tuan-ts'un-chen,Tuan-ts’un,Tuan-ts’un-chen,Wu-hsiang,Wuxiang,Wuxiang Xian,feng zhou,feng zhou zhen,wu xiang xian,丰州,丰州镇,武乡县 36.84278 112.85417 P PPLA3 CN 24 0 952 Asia/Chongqing 2012-01-18
-1790918 Wuxiang Wuxiang Mi-le-yuan,Mi-le-yüan,Wu-hsiang,Wu-hsiang-chen,Wuxiang,Wuxiang Zhen,wu xiang,wu xiang zhen,武乡,武乡镇 33.18639 107.04889 P PPLA4 CN 26 0 581 Asia/Chongqing 2012-01-18
-1790923 Wuxi Wuxi Usi,Wu-hsi,Wu-hsi-hsien,Wu-hsi-shih,Wusih,Wusih-hsien,Wusihsien,Wuxi,wu xi,wu xi shi,Уси,ۋۇشى شەھىرى,无锡,无锡市,無錫 31.56887 120.28857 P PPL CN 04 1108647 10 Asia/Shanghai 2012-01-18
-1790925 Wuxi Wuxi Usi,Wu-ch'i,Wu-ch'i-chen,Wu-ch’i,Wu-ch’i-chen,Wu-hsi,Wuxi,Wuxi Zhen,wu xi,wu xi zhen,Уси,乌溪,乌溪镇 31.3097 118.65547 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-18
-1790933 Wuwangkou Wuwangkou Wuwangkou,Wuwangkou Xiang,wu wang kou,wu wang kou xiang,吴王口,吴王口乡 39.04512 114.01858 P PPLA4 CN 10 0 502 Asia/Shanghai 2012-01-18
-1790942 Wutong Wutong T'ung-hsiang,Tongxiang,Tongxiang Shi,Tunghiang,T’ung-hsiang,Wu-t'ung,Wu-t'ung-chen,Wu-t’ung,Wu-t’ung-chen,Wutong,Wutong Jiedao,tong xiang,tong xiang shi,wu tong,wu tong jie dao,桐乡,桐乡市,梧桐,梧桐街道 30.63288 120.5608 P PPLA3 CN 02 0 8 Asia/Shanghai 2012-01-18
-1790959 Taicheng Taicheng Taicheng,Taicheng Zhen,Wu-t'ai-hsien,Wu-t’ai-hsien,Wucheng,Wutai,Wutai Xian,tai cheng,tai cheng zhen,wu tai xian,五台县,台城,台城镇 38.73102 113.228 P PPLA3 CN 24 0 1089 Asia/Shanghai 2012-01-18
-1790990 Wushi Wushi Wu-shih,Wu-shih-hsu,Wu-shih-hsü,Wushek,Wushi,Wushi Zhen,Wushihhui,wu shi,wu shi zhen,乌石,乌石镇 24.57339 113.5912 P PPLA4 CN 30 0 24 Asia/Shanghai 2012-02-28
-1791037 Wuqiao Wuqiao Wu-ch'iao,Wu-ch'iao-ho,Wu-ch’iao,Wu-ch’iao-ho,Wuqiao,Wuqiao Zhen,wu qiao,wu qiao zhen,伍桥,伍桥镇 28.58499 115.2423 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-18
-1791056 Dongyang Dongyang Dongyang,Dongyang Shi,Tung-yang,Tung-yang-hsien,Tung-yang-hsien-ch'eng,Tung-yang-hsien-ch’eng,Wuning,dong yang,dong yang shi,东阳,东阳市 29.26778 120.22528 P PPLA3 CN 02 130387 97 Asia/Shanghai 2012-01-18
-1791064 Wuming Chengxiangzhen Wuming Chengxiangzhen Wu-ming-hsien,Wu-yuan,Wu-yüan,Wuming,Wuming Chengxiangzhen,wu ming cheng xiang zhen,武鸣城厢镇 23.18937 108.25478 P PPLA3 CN 16 0 116 Asia/Chongqing 2012-01-18
-1791072 Wumaying Wumaying Wu-chia-ma-ying,Wumaying,Wumaying Xiang,wu ma ying,wu ma ying xiang,吴马营,吴马营乡 39.645 112.48556 P PPLA4 CN 24 0 1344 Asia/Shanghai 2012-01-18
-1791079 Wuma Wuma Wuma,wu ma,五马 33.0635 105.44253 P PPLA4 CN 15 0 1225 Asia/Chongqing 2012-01-18
-1791108 Wulipu Wulipu Wulipu,Wulipu Zhen,wu li pu,wu li pu zhen,五里铺,五里铺镇 30.73695 112.20075 P PPLA4 CN 12 0 84 Asia/Chongqing 2012-01-18
-1791111 Wuli Wuli Wuli,Wuli Xiang,Wuliping,wu li,wu li xiang,五里,五里乡 29.89646 110.34498 P PPLA4 CN 12 0 1157 Asia/Chongqing 2012-01-18
-1791121 Changde Changde Ch'ang-te,Ch'ang-te-ch'eng,Ch'ang-te-hsien,Ch'ang-te-shih,Chandeh,Changde,Changde Shi,Changteh,Changteh-hsien,Ch’ang-te,Ch’ang-te-ch’eng,Ch’ang-te-hsien,Ch’ang-te-shih,Wuling,chang de,chang de shi,Чандэ,常德,常德市 29.04638 111.6783 P PPLA3 CN 11 517780 35 Asia/Shanghai 2012-01-18
-1791126 Wulijie Wulijie Wu-li-chieh,Wulijie,Wulijie Zhen,wu li jie,wu li jie zhen,五里界,五里界镇 30.33949 114.39211 P PPLA4 CN 12 0 42 Asia/Shanghai 2012-01-18
-1791156 Wukang Wukang Wu-k'ang-hsien,Wu-k'ang-hsien-ch'eng,Wu-k’ang-hsien,Wu-k’ang-hsien-ch’eng,Wukang,Wukang Zhen,wu kang,wu kang zhen,武康,武康镇 30.54155 119.95935 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1791162 Wujing Wujing Wu-ching,Wu-ching-chen,Wujing,Wujing Zhen,wu jing,wu jing zhen,午井,午井镇 34.31574 107.82549 P PPLA4 CN 26 0 645 Asia/Chongqing 2012-01-18
-1791164 Wujing Wujing Wu-ching,Wu-ching-hsu,Wu-ching-hsü,Wujing,Wujing Zhen,wu jing,wu jing zhen,乌迳,乌迳镇 25.26204 114.59808 P PPLA4 CN 30 0 143 Asia/Shanghai 2012-02-28
-1791176 Wujiayao Wujiayao Wu-chia-yao,Wujiayao,Wujiayao Zhen,wu jia yao,wu jia yao zhen,吴家窑,吴家窑镇 39.78452 112.85656 P PPLA4 CN 24 0 1277 Asia/Shanghai 2012-01-18
-1791184 Wujiashan Wujiashan Dongxihu,Dongxihu Qu,Wujiashan,Wujiashan Jiedao,dong xi hu,wu jia shan,东西湖,吴家山 30.61702 114.13166 P PPLA3 CN 12 0 26 Asia/Shanghai 2012-01-18
-1791193 Wujiao Wujiao Wujiao,Wujiao Xiang,wu jiao,wu jiao xiang,五蛟,五蛟乡 36.44979 107.80542 P PPLA4 CN 15 0 1216 Asia/Chongqing 2012-01-18
-1791198 Wujiang Wujiang Wu-chiang,Wu-chiang-chen,Wujiang,Wujiang Zhen,Wukiang,wu jiang,wu jiang zhen,乌江,乌江镇 31.8605 118.45795 P PPLA4 CN 01 0 14 Asia/Shanghai 2012-01-18
-1791200 Wujiang Wujiang Wu-chiang,Wujiang,Wujiang Zhen,wu jiang,wu jiang zhen,乌江,乌江镇 27.2141 115.26451 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-18
-1791209 Wudian Wudian Wu-chia-ta-tien,Wu-chia-tien,Wudian,Wudian Zhen,Wujiadian,Wukiatien,wu dian,wu dian zhen,吴店,吴店镇 31.92808 113.6423 P PPLA4 CN 12 0 140 Asia/Chongqing 2012-01-18
-1791213 Wujia Wujia Wujia,Wujia Xiang,Wujiagang,wu jia,wu jia xiang,伍家,伍家乡 30.64635 111.34713 P PPLA4 CN 12 0 67 Asia/Chongqing 2012-01-18
-1791219 Wuji Wuji Wu-chi,Wuji,Wuji Zhen,wu ji,wu ji zhen,吴集,吴集镇 34.20111 119.04333 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1791236 Wuhu Wuhu Ukhu,Wu-hu-hsien,Wu-hu-shih,Wuhu,Wuhu Shi,wu hu,wu hu shi,Уху,芜湖,芜湖市 31.33657 118.37548 P PPLA2 CN 01 507524 17 Asia/Shanghai 2012-01-18
-1791241 Wuhe Chengguanzhen Wuhe Chengguanzhen Wu-ho,Wu-ho-hsien,Wuhe,Wuhe Chengguanzhen,wu he cheng guan zhen,五河城关镇 33.1386 117.86582 P PPLA3 CN 01 0 15 Asia/Shanghai 2012-01-18
-1791247 Wuhan Wuhan Uhana,Uhaņa,Ukhan',Vu Han,Vuhano,Vũ Hán,Wu-han-shih,Wuhan,Wuhan Shi,uhan,wu han,wu han shi,Ухань,ۋۇخەن شەھىرى,武汉,武汉市,武漢,우한 30.58333 114.26667 P PPLA CN 12 4184206 20 Asia/Shanghai 2012-01-18
-1791249 Wuhai Wuhai Hai-p'o-wan-shih,Hai-po-wan,Hai-p’o-wan-shih,Haibowan,Wu-hai-shih,Wuhai,hai bo wan,wu hai,wu hai shi,乌海,乌海市,海勃湾 39.66472 106.81222 P PPLA2 CN 20 218427 1101 Asia/Chongqing 2012-01-18
-1791266 Wugong Wugong Wu-kung,Wu-kung-chen,Wugong,wu gong,武功 33.33412 113.56956 P PPLA4 CN 09 0 91 Asia/Shanghai 2012-01-18
-1791271 Yakou Yakou Wugang,Yakou,ya kou,垭口 33.29649 113.52351 P PPLA4 CN 09 0 143 Asia/Chongqing 2012-01-18
-1791278 Wufu Wufu Wufu,Wufu Zhen,wu fu,wu fu zhen,五夫,五夫镇 27.61239 118.20501 P PPLA4 CN 07 0 217 Asia/Shanghai 2012-01-18
-1791285 Wufeng Wufeng Ch'ang-lo,Changlo-fu,Ch’ang-lo,Wu-feng-hsien,Wufeng,wu feng,五峰 30.2 110.69081 P PPLA3 CN 12 0 760 Asia/Chongqing 2012-01-18
-1791292 Wudui Wudui Wudui,Wudui Xiang,wu dui,wu dui xiang,五队,五队乡 34.31667 119.7 P PPLA4 CN 04 0 255 Asia/Shanghai 2012-01-18
-1791307 Wudian Wudian Wu-tien,Wudian,Wudian Zhen,wu dian,wu dian zhen,吴店,吴店镇 31.98325 112.77102 P PPLA4 CN 12 0 109 Asia/Chongqing 2012-01-18
-1791317 Wangjiaping Wangjiaping Wangjiaping,Wu-tao-shui,Wudaoshui,Wudaoshui Zhen,wang jia ping,wu dao shui zhen,五道水镇,汪家坪 29.7037 109.91316 P PPLA4 CN 11 0 476 Asia/Chongqing 2012-01-18
-1791325 Wuda Wuda Bayinsai,Ud,Wu-ta,Wu-ta-shih,Wuda,Wuda Qu,ba yin sai,wu da,wu da qu,乌达,乌达区,巴音赛 39.49944 106.71167 P PPL CN 20 129922 1129 Asia/Chongqing 2012-01-18
-1791339 Wucheng Wucheng Wu-ch'eng-ts'un,Wu-ch’eng-ts’un,Wucheng,Wucheng Xiang,wu cheng,wu cheng xiang,吴城,吴城乡 39.83472 113.62355 P PPLA4 CN 24 0 1265 Asia/Shanghai 2012-01-18
-1791341 Laocheng Laocheng Laocheng,Laowucheng,Wu-ch'eng-hsien,Wu-ch’eng-hsien,Wucheng 37.14278 115.88833 P PPL CN CN 25 3922 33 Asia/Shanghai 2012-01-18
-1791344 Wucheng Wucheng Wucheng,Wucheng Zhen,wu cheng,吴城 33.45004 113.75413 P PPLA4 CN 09 0 88 Asia/Shanghai 2012-01-18
-1791346 Wucheng Wucheng Wu-wei-hsien,Wucheng,Wuwei,Wuweichow,wu cheng,无城 31.2837 117.90193 P PPLA3 CN 01 0 11 Asia/Shanghai 2012-01-18
-1791347 Wucheng Wucheng Wucheng,Wucheng Zhen,wu cheng,wu cheng zhen,五城,五城镇 29.60077 118.17495 P PPLA4 CN 01 60212 149 Asia/Shanghai 2012-01-18
-1791388 Wenzhou Wenzhou Vehn'chzhou,Wen-chou,Wen-chou-shih,Wenchow,Wenchow-fu,Wenzhou,Yung-chia,Yung-chia-hsien,Yungkai,Yungkia,Yungkia-hsien,Вэньчжоу 27.99942 120.66682 P PPL CN 02 865672 10 Asia/Shanghai 2012-01-18
-1791398 Wenyan Wenyan Wen-chia-yen,Wenyan,Wenyan Zhen,wen yan,wen yan zhen,闻堰,闻堰镇 30.12735 120.17051 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-18
-1791406 Wenxian Chengguanzhen Wenxian Chengguanzhen Chengguan Zhen,Wen,Wen-hsien,Wenxian,Wenxian Chengguanzhen,cheng guan zhen,wen xian,wen xian cheng guan zhen,城关镇,文县,文县城关镇 32.94662 104.67939 P PPLA3 CN 15 0 942 Asia/Chongqing 2012-01-18
-1791409 Tongcheng Tongcheng Tongcheng,Tongcheng Zhen,Ven'si,Ven’si,Wen-hsi,Wen-hsi-hsien,Wensi,Wensihsien,Wenxi Xian,tong cheng,tong cheng zhen,wen xi xian,桐城,桐城镇,闻喜县 35.35468 111.21608 P PPLA3 CN 24 0 470 Asia/Chongqing 2012-01-18
-1791415 Wentang Wentang Wentang,Wentang Zhen,wen tang,wen tang zhen,温塘,温塘镇 29.17015 110.20398 P PPLA4 CN 11 0 258 Asia/Chongqing 2012-01-18
-1791416 Wentang Wentang Wentang,Wentang Zhen,wen tang,wen tang zhen,温汤,温汤镇 27.69253 114.28569 P PPLA4 CN 03 0 179 Asia/Chongqing 2012-01-18
-1791420 Fengcheng Fengcheng Fengcheng,Fengcheng Zhen,Ven'shuy,Ven’shuy,Wen-shui-hsien,Wenshui,Wenshui Xian,feng cheng,feng cheng zhen,wen shui xian,凤城,凤城镇,文水县 37.43278 112.02333 P PPLA3 CN 24 0 760 Asia/Chongqing 2012-01-18
-1791422 Wenshui Wenshui 28.45056 106.52667 P PPL CN 18 5531 1039 Asia/Chongqing 2001-06-15
-1791428 Wenshang Wenshang Wen-shang-hsien,Wenshang 35.7275 116.49611 P PPL CN 25 59455 44 Asia/Shanghai 2012-01-18
-1791438 Wenquan Wenquan Wen-ch'uan,Wen-ch’üan,Wenquan,Wenquan Zhen,wen quan,wen quan zhen,温泉,温泉镇 33.13333 106.74396 P PPLA4 CN 26 0 538 Asia/Chongqing 2012-01-18
-1791440 Wenquan Wenquan Wenquan,Ying-hsien,Ying-shan-hsien,Yingshan,wen quan,温泉 30.84928 115.6991 P PPLA3 CN 12 0 430 Asia/Shanghai 2012-01-18
-1791441 Wenquan Wenquan Wenquan,Wenquan Zhen,wen quan,wen quan zhen,温泉,温泉镇 29.41592 115.88977 P PPLA4 CN 03 0 69 Asia/Shanghai 2012-01-18
-1791445 Wenquan Wenquan Wen-ch'uan,Wen-ch’üan,Wenquan,Wenquan Zhen,wen quan,温泉 23.64436 113.65321 P PPLA4 CN 30 0 54 Asia/Chongqing 2012-01-18
-1791448 Wenqiao Wenqiao Wen-ch'iao,Wen-ch’iao,Wenqiao,Wenqiao Xiang,wen qiao,wen qiao xiang,文桥,文桥乡 29.66143 116.29865 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-18
-1791453 Wenping Wenping Lu-tien,Lu-tien-hsien,Ludian,Lutienting,Wen-p'ing-chen,Wen-p’ing-chen,Wenping,wen ping,文屏 27.19306 103.5273 P PPLA3 CN 29 0 2018 Asia/Chongqing 2012-01-18
-1791459 Wenlong Wenlong Wen-lung-hsu,Wen-lung-hsü,Wenlong,Wenlong Zhen,Wenlung,wen long,wen long zhen,汶龙,汶龙镇 24.76704 114.89877 P PPLA4 CN 03 0 362 Asia/Shanghai 2012-01-18
-1791464 Wenling Wenling T'ai-p'ing,Taipinghsien,T’ai-p’ing,Wen-ling-hsien,Wen-ling-hsien-ch'eng,Wen-ling-hsien-ch’eng,Wenlin,Wenling 28.36694 121.36 P PPL CN 02 67433 15 Asia/Shanghai 2012-01-18
-1791466 Wenlin Wenlin Jen-shou,Jen-shou-hsien,Jenshow,Jenshow-hsien,Renshou,Wenlin,wen lin,文林 29.99814 104.13992 P PPLA3 CN 32 0 426 Asia/Chongqing 2012-01-18
-1791479 Wenjiapo Wenjiapo Wen-chia-p'o,Wen-chia-p’o,Wenjiapo,wen jia po,文家坡 34.69294 107.1346 P PPLA4 CN 26 0 838 Asia/Chongqing 2012-01-18
-1791481 Wenjiao Wenjiao Mankiao,Wen-chiao-shih,Wenjiao,Wenjiao Zhen,Wunkao,wen jiao,wen jiao zhen,文教,文教镇 19.66992 110.90674 P PPLA4 CN 31 0 9 Asia/Chongqing 2012-01-18
-1791483 Wenjiangsi Wenjiangsi Wen-chiang-ssu,Wenjiangsi,wen jiang si,温江寺 33.8123 106.53868 P PPLA4 CN 26 0 1338 Asia/Chongqing 2012-01-18
-1791493 Wenheng Wenheng Wenheng,Wenheng Xiang,wen heng,wen heng xiang,文亨,文亨乡 25.66742 116.75429 P PPLA4 CN 07 0 383 Asia/Shanghai 2012-01-18
-1791501 Wengtian Wengtian Weng-t'ien,Weng-t'ien-shih,Weng-t’ien,Weng-t’ien-shih,Wengtian,Wengtian Zhen,weng tian,weng tian zhen,翁田,翁田镇 19.93296 110.87313 P PPLA4 CN 31 0 45 Asia/Chongqing 2012-01-18
-1791515 Wengang Wengang Wengang,Wengang Zhen,wen gang,wen gang zhen,文港,文港镇 28.28659 116.10875 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-18
-1791520 Wenfeng Wenfeng Chi-shai-hsien,Chi-shui,Chi-shui-hsien-ch'eng,Chi-shui-hsien-ch’eng,Jishui,Jishui Xian,Kishui,Kishuihsien,Wenfeng,Wenfeng Zhen,ji shui xian,wen feng,wen feng zhen,吉水县,文峰,文峰镇 27.19899 115.11963 P PPLA3 CN 03 0 48 Asia/Shanghai 2012-01-18
-1791521 Wenfang Wenfang Wen-fang-chen,Wenfang,Wenfang Zhen,wen fang,wen fang zhen,文坊,文坊镇 28.0388 117.33908 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-18
-1791522 Laxiong Laxiong Laxiong,Wendu,Wendu Cangzuxiang,la xiong,wen dou,wen dou cang zu xiang,拉雄,文都,文都藏族乡 35.78148 102.39726 P PPLA4 CN 06 0 2176 Asia/Chongqing 2012-01-18
-1791527 Wencun Wencun Wen-ts'un,Wen-ts’un,Wencun,Wencun Zhen,wen cun,wen cun zhen,汶村,汶村镇 21.86244 112.49441 P PPLA4 CN 30 0 8 Asia/Chongqing 2012-01-18
-1791536 Wendeng Wendeng Chiu-wen-teng,K'un-yu,K’un-yü,Wen-teng,Wen-teng-ch'eng,Wen-teng-ch’eng,Wen-teng-hsien,Wencheng,Wendeng 37.19361 122.05111 P PPL CN 25 115370 42 Asia/Shanghai 2012-01-18
-1791539 Wencheng Wencheng Wencheng,Wencheng Xiang,wen cheng,wen cheng xiang,文城,文城乡 33.05585 113.7978 P PPLA4 CN 09 0 82 Asia/Shanghai 2012-01-18
-1791544 Wencheng Wencheng Mencheong,Mencheonghsien,Vun Sio,Wen-ch'ang-hsien,Wen-ch'eng-chen,Wen-chiang,Wen-ch’ang-hsien,Wen-ch’eng-chen,Wenchang,Wencheng,Wencheng Zhen,wen cheng,wen cheng zhen,文城,文城镇 19.61717 110.74826 P PPLA4 CN 31 0 2 Asia/Chongqing 2012-01-18
-1791551 Wen’an Wen'an Wen'an,Wen'an Zhen,Wen-an-ssu,Wen’an,Wen’an Zhen,wen an,wen an zhen,问安,问安镇 30.52434 111.82273 P PPLA4 CN 12 0 54 Asia/Chongqing 2012-01-18
-1791560 Weizhuang Weizhuang Wei-chuang,Wei-chuang-chen,Weizhuang,Weizhuang Zhen,wei zhuang,韦庄 34.97356 109.9273 P PPLA4 CN 26 0 568 Asia/Chongqing 2012-01-18
-1791566 Weizhou Weizhou Mao-wen,Mao-wen-ch'iang-tsu-tzu-chih-hsien,Mao-wen-ch’iang-tsu-tzu-chih-hsien,Veychzhou,Wei-chiu,Wei-chou,Wei-chou-chen,Weikiu,Weizhou,Wenchuan,wei zhou,威州 31.4792 103.5802 P PPLA3 CN 32 0 1332 Asia/Chongqing 2012-01-18
-1791572 Weiyuankou Weiyuankou Weiyuankou,Weiyuankou Zhen,wei yuan kou,wei yuan kou zhen,韦源口,韦源口镇 30.13333 115.23333 P PPLA4 CN 12 0 18 Asia/Shanghai 2012-01-18
-1791575 Weiyuan Weiyuan Wei-yuan-pao,Wei-yüan-pao,Weiyuan,Weiyuan Zhen,Weiyuanbu,wei yuan,wei yuan zhen,威远,威远镇 39.94856 112.34148 P PPLA4 CN 24 0 1338 Asia/Chongqing 2012-01-18
-1791579 Weiyuan Weiyuan Ching-ku,Ching-ku-chieh,Ching-ku-hsien,Dajie,Jinggu,Kingku,Kingkuhsien,Mongwaw,Weiyuan,wei yuan,威远 23.46831 100.68354 P PPLA3 CN 29 0 929 Asia/Chongqing 2012-01-18
-1791583 Weixin Weixin Wei-hsin-ch'ang,Wei-hsin-ch’ang,Weixin,Weixin Zhen,Weixinchang,wei xin,wei xin chang,wei xin zhen,维新,维新场,维新镇 29.75966 111.10792 P PPLA4 CN 11 0 121 Asia/Chongqing 2012-01-18
-1791602 Weitian Weitian Wei-t'ien,Wei-t’ien,Weitian,Weitian Zhen,wei tian,渭田 27.71306 118.78667 P PPLA4 CN 07 0 283 Asia/Shanghai 2012-01-18
-1791603 Weitang Weitang Hsu-t'ang-chen,Hsü-t’ang-chen,Weitang,Yu-t'ang,Yu-t'ang-chen,Yü-t’ang,Yü-t’ang-chen,wei tian zhen,渭田镇 27.71306 118.78667 P PPLA4 CN 07 0 283 Asia/Shanghai 2012-01-18
-1791604 Weitang Weitang Chia-shan,Chia-shan-hsien,Chiu-shan,Jiashan,Kashan,Weitang,Weitang Zhen,jia shan,wei tang,wei tang zhen,嘉善,魏塘,魏塘镇 30.85021 120.91138 P PPLA3 CN 02 0 8 Asia/Shanghai 2012-01-18
-1791619 Weishan Weishan Wei-shan-chen,Weishan,Weishan Zhen,wei shan,wei shan zhen,巍山,巍山镇 29.32999 120.43482 P PPLA4 CN 02 0 117 Asia/Shanghai 2012-01-18
-1791623 Weirong Weirong Veybenchzhen',Veybenchzhen’,Wei-ch'eng-chen,Wei-ch’eng-chen,Wei-jung,Wei-jung-chen,Wei-jung-tschon,Wei-jung-tschön,Wei-peng-chen,Wei-shu-chen,Wei-wu-chen,Weirong,wei rong,威戎 35.36752 105.761 P PPLA4 CN 15 0 1591 Asia/Chongqing 2012-01-18
-1791636 Weinan Weinan Veynan,Wei-nan-hsien,Weinan,Weinan Shi,wei nan,渭南 34.50355 109.50891 P PPLA2 CN 26 172321 354 Asia/Chongqing 2012-01-18
-1791660 Weidian Weidian Wei-chia-tien,Weidian,Weidian Zhen,Weijiadian,wei dian,wei dian zhen,卫店,卫店镇 31.31694 113.97568 P PPLA4 CN 12 0 56 Asia/Shanghai 2012-01-18
-1791673 Weihai Weihai Vehjkhaj,Wei-hai-shih,Wei-hai-wei,Wei-hai-wei-shih,Weihai,wei hai,wei hai shi,weihai,Вэйхай,ۋېيخەي شەھىرى,威海,威海市,웨이하이 37.50167 122.11361 P PPL CN 25 152595 11 Asia/Shanghai 2012-01-18
-1791681 Weifang Weifang Vehjfan,Wei,Wei-fang-shih,Wei-hsien,Weifang,wei fang,wei fang shi,Вэйфан,潍坊,潍坊市 36.71 119.10194 P PPL CN 25 394732 30 Asia/Shanghai 2012-01-18
-1791690 Weicun Weicun Wei-ts'un,Wei-ts'un-chen,Wei-ts’un,Wei-ts’un-chen,Weicun,Weicun Zhen,wei cun,wei cun zhen,魏村,魏村镇 31.96667 119.91667 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1791710 Waxi Waxi Waxi,Waxi Zhen,wa xi,wa xi zhen,瓦溪,瓦溪镇 23.53809 115.10493 P PPLA4 CN 30 0 100 Asia/Shanghai 2012-01-18
-1791715 Wawu Wawu Wawu,Wawumiao,wa wu,瓦屋 33.88964 112.66086 P PPLA4 CN 09 0 244 Asia/Chongqing 2012-01-18
-1791733 Wanzhi Wanzhi Wan-chih,Wan-chih-chen,Wanzhi,Wu-hu-hsien,Wuhu,wan zhi,湾沚 31.14607 118.57069 P PPLA3 CN 01 0 23 Asia/Shanghai 2012-01-18
-1791745 Wanxiang Wanxiang Wan-hsiang,Wan-hsiang-chen,Wanxiang,Wanxiang Zhen,Wanxiangzhen,wan xiang,wan xiang zhen,万祥,万祥镇 30.96955 121.81503 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-18
-1791748 Wanxian Wanxian Wan,Wan-hsien,Wan-hsien-shih,Wanxian 30.80389 108.38972 P PPL CN 33 188980 102 Asia/Chongqing 2012-01-18
-1791752 Wantouqiao Wantouqiao Wan-t'ou-ch'iao,Wan-t’ou-ch’iao,Wantouqiao 26.84111 110.61944 P PPL CN CN 11 1620 331 Asia/Chongqing 2012-01-18
-1791753 Wantian Wantian Wan-t'ien,Wan-t’ien,Wantian,Wantian Xiang,wan tian,wan tian xiang,万田,万田乡 25.94148 115.72088 P PPLA4 CN 03 0 155 Asia/Shanghai 2012-01-18
-1791759 Wantan Wantan Wan-yun,Wan-yün,Wantan,Wantan Zhen,wan tan,wan tan zhen,湾潭,湾潭镇 30.04829 110.42359 P PPLA4 CN 12 0 1173 Asia/Chongqing 2012-01-18
-1791763 Wanshi Wanshi Wanshi,wan shi,万市 30.09774 119.56893 P PPLA4 CN 02 0 80 Asia/Shanghai 2012-01-18
-1791773 Wanquan Wanquan Wanquan,Wanquan Xiang,wan quan,wan quan xiang,万全,万全乡 26.67124 117.18511 P PPLA4 CN 07 0 285 Asia/Shanghai 2012-01-18
-1791779 Wanning Wanning Maning,Manning,Manyun,Van Leng,Wan,Wan-ch'eng-chen,Wan-ch’eng-chen,Wan-hsien,Wan-ning-hsien,Wancheng,Wanning,wan ning shi,万宁市 18.80028 110.39667 P PPL CN 31 64954 11 Asia/Chongqing 2012-01-18
-1791782 Xiasanhe Xiasanhe Wan-sheng-sha,Wannian,Wannian Zhen,Xiasanhe,wan nian,wan nian zhen,xia san he,万年,万年镇,下三和 31.98228 121.41929 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1791784 Wanmingang Wanmingang Wanmin Xiang,Wanmingang,wan min gang,wan min xiang,万民乡,万民岗 29.40769 109.91931 P PPLA4 CN 11 0 454 Asia/Chongqing 2012-01-18
-1791785 Wanmao Wanmao Wanmao,wan mao,完冒 34.8 103.2 P PPLA4 CN 15 0 3025 Asia/Chongqing 2012-01-18
-1791786 Wanling Wanling Wanling,Wanling Zhen,wan ling,wan ling zhen,湾岭,湾岭镇 19.17485 109.93565 P PPLA4 CN 31 0 263 Asia/Chongqing 2012-01-18
-1791792 Wanli Wanli Wanli,Wanli Jiedao,wan li,wan li jie dao,湾里,湾里街道 31.39716 118.38909 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-18
-1791804 Wanbu Wanbu Wan-chia-fou,Wan-chia-pu,Wan-chia-tou,Wanbu,Wanbu Zhen,Wanjiabu,wan bu,wan bu zhen,万埠,万埠镇 28.858 115.65193 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1791807 Wanhu Wanhu Wanhu,Wanhu Zhen,wan hu,wan hu zhen,万户,万户镇 29.24465 116.5132 P PPLA4 CN 03 0 28 Asia/Shanghai 2012-01-18
-1791813 Wangguan Wangguan Vantszoguan',Vantszöguan’,Wang-tzi-k'uan,Wang-tzu-kuan,Wang-tzï-k’üan,Wangguan,Wangziguan,wang guan,望关 33.45917 105.36167 P PPLA4 CN 15 0 1269 Asia/Chongqing 2012-01-18
-1791819 Wangzhuangbu Wangzhuangbu Vaychzhuanbao,Wang-chuang-pao,Wangchwangpao,Wangjuangbu,Wangzhuangbu,Wangzhuangbu Zhen,wang zhuang bao,wang zhuang bao zhen,王庄堡,王庄堡镇 39.43538 113.90902 P PPLA4 CN 24 0 1151 Asia/Shanghai 2012-01-18
-1791859 Wangxian Wangxian Wang-hsien,Wang-hsien-chieh,Wangxian,Wangxian Xiang,wang xian,wang xian xiang,望仙,望仙乡 27.25702 115.87168 P PPLA4 CN 03 0 155 Asia/Shanghai 2012-01-18
-1791867 Wangwu Wangwu Wang-wu-shih,Wangwu,Wangwu Zhen,wang wu,wang wu zhen,王五,王五镇 19.65623 109.29071 P PPLA4 CN 31 0 27 Asia/Chongqing 2012-01-18
-1791874 Xiawangwa Xiawangwa Wangwa Xiang,Xiawangwa,wang wa xiang,xia wang wa,下王洼,王洼乡 36.10602 106.63609 P PPLA4 CN 21 0 1727 Asia/Chongqing 2012-01-18
-1791888 Wangtan Wangtan Wang-t'an-shih,Wang-t’an-shih,Wangtan,Wangtan Zhen,wang tan,wang tan zhen,王坛,王坛镇 29.78683 120.67182 P PPLA4 CN 02 0 49 Asia/Shanghai 2012-01-18
-1791910 Wangren Wangren Wang-jen,Wang-jen-p'u,Wang-jen-p’u,Wangren,Wangren Zhen,wang ren,wang ren zhen,汪仁,汪仁镇 30.15372 115.1235 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-18
-1791913 Wangqu Wangqu Wang-ch'u,Wang-ch'u-chen,Wang-ch’ü,Wang-ch’ü-chen,Wangqu,Wangqu Zhen,wang qu,wang qu zhen,王曲,王曲镇 34.07678 108.96406 P PPLA4 CN 26 0 473 Asia/Chongqing 2012-01-18
-1791914 Wangqinzhuang Wangqinzhuang 39.22583 117.08806 P PPL CN 28 3934 7 Asia/Shanghai 2000-11-21
-1791919 Wangqiao Wangqiao Wang-ch'iao,Wang-ch’iao,Wangqiao,Wangqiao Zhen,wang qiao,wang qiao zhen,王桥,王桥镇 34.61611 108.64222 P PPLA4 CN 26 0 459 Asia/Chongqing 2012-01-18
-1791922 Wangqiao Wangqiao Wangqiao,Wangqiao Zhen,wang qiao,wang qiao zhen,王桥,王桥镇 28.17662 116.7134 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-18
-1791925 Wangpu Wangpu Wangpu,wang pu,王铺 35.05712 105.43585 P PPLA4 CN 15 0 1916 Asia/Chongqing 2012-01-18
-1791927 Wangping Wangping Wangping,wang ping,王坪 33.92766 112.45903 P PPLA4 CN 09 0 590 Asia/Chongqing 2012-01-18
-1791935 Wangmudu Wangmudu T'u-mu-tu,T’u-mu-tu,Wang-mu-tu,Wangmudu,Wangmudu Zhen,wang mu du,wang mu du zhen,王母渡,王母渡镇 25.61095 114.99654 P PPLA4 CN 03 0 139 Asia/Shanghai 2012-01-18
-1791937 Wangmin Wangmin Wangmin,Wangminbu,Wangminxiang,wang min,王民 35.80098 105.73606 P PPLA4 CN 21 0 1787 Asia/Chongqing 2012-01-18
-1791939 Wangmeng Wangmeng Wangmeng,Wangmeng Xiang,wang meng,wang meng xiang,王孟,王孟乡 33.92873 113.9551 P PPLA4 CN 09 0 64 Asia/Shanghai 2012-01-18
-1791943 Wangluo Wangluo Wang-lo,Wangluo,wang luo,王洛 33.96769 113.4797 P PPLA4 CN 09 0 105 Asia/Shanghai 2012-01-18
-1791958 Wangliao Wangliao Wang-liao-chen,Wangliao,Wangliao Zhen,wang liao,王寮 34.80771 109.2317 P PPLA4 CN 26 0 472 Asia/Chongqing 2012-01-18
-1791994 Wangjiaxu Wangjiaxu Wang-chia-hsu,Wang-chia-hsü,Wangjiaxu,Wangjiaxu Xiang,wang jia wei,wang jia wei xiang,汪家圩,汪家圩乡 28.5388 115.30909 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-18
-1792003 Wangjiaqiao Wangjiaqiao Wang-chia-ch'iao,Wang-chia-ch’iao,Wangjiaqiao,Wangjiaqiao Zhen,wang jia qiao,wang jia qiao zhen,王家桥,王家桥镇 30.1351 111.67112 P PPLA4 CN 12 0 86 Asia/Chongqing 2012-01-18
-1792013 Wangjiangjing Wangjiangjing Wang-chiang-ching,Wang-chiang-ching-chen,Wangjiangjing,Wangjiangjing Zhen,wang jiang jing,wang jiang jing zhen,王江泾,王江泾镇 30.88345 120.7053 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1792014 Wangjiang Wangjiang Wang-chiang,Wang-chiang-hsien,Wangjiang,Wangkiang,Wangkiang-hsien,wang jiang,望江 30.11544 116.68313 P PPLA3 CN 01 0 14 Asia/Shanghai 2012-01-18
-1792029 Wangdian Wangdian Wang-chia-tien,Wangdian,Wangjiadian,Wangkiatien,wang dian,wang dian zhen,王店,王店镇 31.39272 113.96674 P PPLA4 CN 12 0 50 Asia/Shanghai 2012-01-18
-1792030 Wangdian Wangdian Wang-chia-tien,Wangdian,Wangdian Zhen,Wangjiadian,wang dian,wang dian zhen,王店,王店镇 30.70839 111.66867 P PPLA4 CN 12 0 161 Asia/Chongqing 2012-01-18
-1792039 Wangjiachang Wangjiachang Wang-chia-ch'ang,Wang-chia-ch’ang,Wangjiachang,Wangjiachang Zhen,wang jia chang,wang jia chang zhen,王家厂,王家厂镇 29.76139 111.53444 P PPLA4 CN 11 0 57 Asia/Chongqing 2012-01-18
-1792063 Wangji Wangji Wangji,wang ji,汪集 30.7782 114.70318 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-18
-1792068 Wanghu Wanghu Wang-hu-ts'un,Wang-hu-ts’un,Wang-ku,Wanghu,Wanghu Xiang,wang hu,wang hu xiang,望狐,望狐乡 39.79559 113.9579 P PPLA4 CN 24 0 1448 Asia/Shanghai 2012-01-18
-1792087 Jiaonan Jiaonan Chiao-nan,Jiaonan,Wang-ko-chuang,Wanggezhuang 35.87861 119.97528 P PPL CN 25 75656 8 Asia/Shanghai 2012-01-18
-1792092 Wanggang Wanggang Wang-chia-kang,Wang-kang,Wanggang,Wanggang Zhen,wang gang,wang gang zhen,汪岗,汪岗镇 30.62278 115.17294 P PPLA4 CN 12 0 58 Asia/Shanghai 2012-01-18
-1792110 Wang’er Wang'er Wang'er,Wang'er Zhen,Wang-erh,Wang’er,Wang’er Zhen,wang er,wang er zhen,汪二,汪二镇 28.28926 117.51639 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-18
-1792112 Wangdun Wangdun Wangdun,Wangdun Xiang,wang dun,wang dun xiang,汪墩,汪墩乡 29.33752 116.26293 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-18
-1792121 Wangdian Wangdian Wang-tien,Wangdian,wang dian,王店 32.8035 113.4734 P PPLA4 CN 09 0 194 Asia/Chongqing 2012-01-18
-1792123 Wangdian Wangdian Wang-tien,Wang-tien-chen,Wangdian,Wangdian Zhen,wang dian,wang dian zhen,王店,王店镇 30.62421 120.71561 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1792127 Wangcun Wangcun Wang-ts'un-p'u,Wang-ts’un-p’u,Wangcun,Wangcunpu,wang cun,王村 33.01686 112.41202 P PPLA4 CN 09 0 147 Asia/Chongqing 2012-01-18
-1792148 Wangcun Wangcun Wang-ts'un,Wang-ts’un,Wangcun,Wangcun Zhen,wang cun,wang cun zhen,汪村,汪村镇 29.62924 117.80517 P PPLA4 CN 01 0 289 Asia/Shanghai 2012-01-18
-1792158 Wangcheng Wangcheng Wang-tzu-ch'eng,Wang-tzu-ch’eng,Wangcheng,Wangcheng Zhen,wang cheng,wang cheng zhen,王城,王城镇 31.95798 112.93633 P PPLA4 CN 12 0 125 Asia/Chongqing 2012-01-18
-1792163 Wangbuzhuang Wangbuzhuang Wang-pu-chuang,Wang-pu-chuang-chen,Wangbuzhuang,Wangpu 39.6775 117.42861 P PPL CN CN 28 2659 8 Asia/Shanghai 2012-01-18
-1792171 Anping Anping Anping,Wang'anping,Wang’anping 27.86639 110.11611 P PPL CN CN 11 2630 138 Asia/Chongqing 2012-01-18
-1792175 Wanfu Wanfu Wanfu,Wanfu Zhen,wan fu,wan fu zhen,万福,万福镇 27.41154 114.88293 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-18
-1792177 Wandian Wandian Wan-chia-tien,Wandian,Wandian Zhen,wan dian,wan dian zhen,万店,万店镇 31.83282 113.49143 P PPLA4 CN 12 0 82 Asia/Chongqing 2012-01-18
-1792184 Wancun Wancun Wancun,Wancun Xiang,wan cun,wan cun xiang,万村,万村乡 28.71287 117.472 P PPLA4 CN 03 0 56 Asia/Shanghai 2012-01-18
-1792196 Wan’an Wan'an Wan'an,Wan'an Zhen,Wan-an-ts'un,Wan-an-ts’un,Wan’an,Wan’an Zhen,wan an,wan an zhen,万安,万安镇 35.54192 111.12796 P PPLA4 CN 24 0 471 Asia/Chongqing 2012-01-18
-1792198 Wan’an Wan'an Wan'an,Wan'an Zhen,Wan-an-chieh,Wan’an,Wan’an Zhen,Wao-an-chieh,wan an,wan an zhen,万安,万安镇 29.79167 118.21528 P PPLA4 CN 01 0 141 Asia/Shanghai 2012-01-18
-1792199 Wan’an Wan'an Wan'an,Wan'an Zhen,Wan-an-chen,Wan’an,Wan’an Zhen,wan an,wan an zhen,万安,万安镇 26.89649 117.42531 P PPLA4 CN 07 0 271 Asia/Shanghai 2012-01-18
-1792200 Wan’an Wan'an Wan'an,Wan'an Xiang,Wan’an,Wan’an Xiang,wan an,wan an xiang,万安,万安乡 25.13493 116.09196 P PPLA4 CN 07 0 298 Asia/Shanghai 2012-01-18
-1792232 Waina Waina Waina,Wainapu,wai na,外纳 33.20639 105.04972 P PPLA4 CN 15 0 880 Asia/Chongqing 2012-01-18
-1792260 Wafangdian Wafangdian Fu,Fu-hsien,Fuxian,Wa-fan-tien,Wa-fang-tien,Wa-fang-tien-chen,Wafangdian 39.61833 122.00806 P PPL CN 19 250591 103 Asia/Harbin 2012-01-18
-1792270 Zhongwadi Zhongwadi Chung-wa-ti,Hsi-wa-ti,Tung-wa-ti,Tung-yen-ts'un,Tung-yen-ts’un,Wa-ti,Wadi Zhen,Zhongwadi,wa di zhen,zhong wa di,中畖底,畖底镇 35.44333 111.15222 P PPLA4 CN 24 0 683 Asia/Chongqing 2012-01-18
-1792283 Ulan Ulan Etuoke Qi,Khotok,O-cha-k'o-ch'i,O-cha-k’o-ch’i,O-erh-to-ssu-yu-i-chung-ch'i,O-erh-to-ssu-yu-i-chung-ch'i-wang-fu,O-erh-to-ssu-yu-i-chung-ch’i,O-erh-to-ssu-yu-i-chung-ch’i-wang-fu,O-t'o-k'o-ch'i,O-t'o-k'o-miao,O-t’o-k’o-ch’i,O-t’o-k’o-miao,Ordos Barun Gar Domda,Otog,Otog Qi,Residency Knyaz' Otok,Residency Knyaz’ Otok,Ulan,Ulan Balgas,Wu-lan-chen,Wu-lan-ha-la-ka-su,Wu-lan-ha-la-ka-su-chen,Wulan,Wulan Zhen,Wulanhalagasu,e tuo ke qi,wu lan,wu lan zhen,乌兰,乌兰镇,鄂托克旗 39.09333 107.98583 P PPLA3 CN 20 0 1369 Asia/Chongqing 2012-01-18
-1792286 Tuzhai Tuzhai T'u-chai,Tuzhai,T’u-chai,tu zhai,涂寨 24.98301 118.83194 P PPL CN 07 5800 29 Asia/Shanghai 2012-01-18
-1792296 Tutang Tutang Tutang,Tutang Zhen,tu tang,tu tang zhen,土塘,土塘镇 29.36239 116.41816 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-18
-1792334 Tuokou Tuokou T'o-k'ou,T'o-k'ou-p'u,Tokow,Tuokou,T’o-k’ou,T’o-k’ou-p’u 27.12472 109.62472 P PPL CN CN 11 2350 221 Asia/Chongqing 2012-01-18
-1792340 Tuojiang Tuojiang Feng-huang-hsien,Fenghuang,Fenghwang,Fenghwang-hsien,Fenghwangtin,Fengwang,T'o-chiang-chen,Tuojiang,T’o-chiang-chen,tuo jiang,沱江 27.95472 109.56798 P PPLA3 CN 11 0 378 Asia/Chongqing 2012-01-18
-1792341 Tuojiang Tuojiang Chiang-hua-hsien,Chiang-hua-yao-tsu-tzu-chih-hsien,Chiu-chiang-hua,Kianghwa,Kianghwa-hsien,T'o-chiang,T'o-chiang-chen,Tuojiang,Tuojiangzhen,T’o-chiang,T’o-chiang-chen,tuo jiang,沱江 25.18667 111.57167 P PPLA3 CN 11 0 230 Asia/Chongqing 2012-01-18
-1792346 Tuofeng Tuofeng T'o-feng,Tuofeng,Tuofeng Xiang,T’o-feng,tuo feng,tuo feng xiang,驼峰,驼峰乡 39.6178 113.44835 P PPLA4 CN 24 0 1040 Asia/Shanghai 2012-01-18
-1792350 Tuodian Tuodian Shuang-pai,Shuangbai,T'o-tien,T'o-tien-chen,T'o-tien-chieh,Tuodian,T’o-tien,T’o-tien-chen,T’o-tien-chieh,tuo dian,妥甸 24.66667 101.63333 P PPLA3 CN 29 0 1855 Asia/Chongqing 2012-01-18
-1792351 Tuochuan Tuochuan T'o-ch'uan-pu,Tuochuan,Tuochuan Zhen,Tuochuanbu,T’o-ch’uan-pu,tuo chuan,tuo chuan zhen,拖船,拖船镇 28.15313 115.66062 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-18
-1792353 Tuocheng Tuocheng Chiu-lung-ch'uan,Chiu-lung-ch’uan,Lung-ch'uan,Lung-ch'uan-hsien,Lung-chun,Lung-chün,Lung-ch’uan,Lung-ch’uan-hsien,T'o-ch'eng,T'o-ch'eng-chen,Tuocheng,Tuocheng Zhen,T’o-ch’eng,T’o-ch’eng-chen,tuo cheng,tuo cheng zhen,佗城,佗城镇 24.06235 115.18576 P PPLA4 CN 30 0 64 Asia/Shanghai 2012-01-18
-1792359 Huangshan Huangshan Huangshan,Huangshan Shi,T'un-ch'i,T'un-ch'i-chen,T'un-ch'i-shih,T'un-hsi,Tun'si,Tunki,Tunqi,Tunxi,Tunxi Qu,T’un-ch’i,T’un-ch’i-chen,T’un-ch’i-shih,T’un-hsi,huang shan,huang shan shi,tun xi,tun xi qu,Туньси,屯溪,屯溪区,黄山,黄山市 29.71139 118.3125 P PPLA3 CN 01 77000 134 Asia/Shanghai 2012-01-18
-1792365 Linjiang Linjiang Linjiang,Linjiang Zhen,T'un-ch'ang,T'un-liu-chen,T'un-liu-hsien,T'un-liu-hsien-ch'eng,Tunliu,Tunliu Xian,T’un-ch’ang,T’un-liu-chen,T’un-liu-hsien,T’un-liu-hsien-ch’eng,lin jiang,lin jiang zhen,tun liu xian,屯留县,麟绛,麟绛镇 36.3275 112.88194 P PPLA3 CN 24 0 920 Asia/Chongqing 2012-01-18
-1792375 Tuncheng Tuncheng T'un-ch'ang-chen,T'un-ch'ang-shih,Ting-ch'ang,Ting-ch’ang,Tunchang,Tuncheng,T’un-ch’ang-chen,T’un-ch’ang-shih,tun cheng,tun cheng zhen,屯城,屯城镇 19.36333 110.09778 P PPLA3 CN 31 0 120 Asia/Chongqing 2012-01-18
-1792387 Tumen Tumen Tumen,Tumen Zhen,tu men,tu men zhen,土门,土门镇 33.05278 110.35278 P PPLA4 CN 12 0 272 Asia/Chongqing 2012-01-18
-1792403 Tubu Tubu Hsu-chia-fou,Hsü-chia-fou,T'u-chia,T'u-chia-fou,T'u-chia-fou-chen,T'u-chia-pu,Tubu,Tubu Xiang,Tujiabu,Tukiafow,T’u-chia,T’u-chia-fou,T’u-chia-fou-chen,T’u-chia-pu,Yongxiu,Yung-hsiu,tu bu,tu bu xiang,涂埠,涂埠乡 29.04532 115.81267 P PPLA3 CN 03 0 20 Asia/Shanghai 2012-01-18
-1792410 Tuguan Tuguan T'u-kuan-ts'un,Tuguan,Tuguan Zhen,Tuguancun,T’u-kuan-ts’un,Xinjie,tu guan,tu guan zhen,土官,土官镇 24.94536 102.20028 P PPLA4 CN 29 0 1869 Asia/Chongqing 2012-01-18
-1792418 Tufang Tufang Tufang,Tufang Zhen,tu fang,tu fang zhen,涂坊,涂坊镇 25.47123 116.45812 P PPLA4 CN 07 0 361 Asia/Shanghai 2012-01-18
-1792427 Tudian Tudian T'u-tien,T'u-tien-shih,Tudian,Tudian Zhen,T’u-tien,T’u-tien-shih,tu dian,tu dian zhen,屠甸,屠甸镇 30.5804 120.61392 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1792434 Tucheng Tucheng Tucheng,Tucheng Xiang,tu cheng,tu cheng xiang,土城,土城乡 30.65606 111.1065 P PPLA4 CN 12 0 136 Asia/Chongqing 2012-01-18
-1792456 Tuanlinpu Tuanlinpu T'uanlin,Tuanlinpu,Tuanlinpu Zhen,T’uanlin,tuan lin pu,tuan lin pu zhen,团林铺,团林铺镇 30.8769 112.17606 P PPLA4 CN 12 0 100 Asia/Chongqing 2012-01-18
-1792459 Tuankou Tuankou Tuankou,tuan kou,湍口 30.04194 119.15279 P PPLA4 CN 02 0 203 Asia/Shanghai 2012-01-18
-1792467 Tuanfeng Tuanfeng Tuanfeng,Twanfeng,tuan feng,团风 30.71361 114.91613 P PPLA3 CN 12 0 29 Asia/Shanghai 2012-01-18
-1792482 Touzao Touzao Touzao,Touzao Zhen,tou zao,tou zao zhen,头灶,头灶镇 32.88923 120.54924 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1792484 Touying Touying 39.96389 117.21833 P PPL CN 28 1498 21 Asia/Harbin 2000-11-21
-1792485 Touying Touying Touying,Touying Xiang,tou ying,tou ying xiang,头营,头营乡 36.16485 106.21845 P PPLA4 CN 21 0 1584 Asia/Chongqing 2012-01-18
-1792502 Toufang Toufang Toufang,tou fang,透防 33.25 105.1 P PPLA4 CN 15 0 1423 Asia/Chongqing 2012-01-18
-1792516 Loushanguan Loushanguan Loushanguan,T'ung-tzu,T'ung-tzu-ch'eng,T'ung-tzu-hsien,Tongzi,Tungtze,Tungtze-hsien,T’ung-tzu,T’ung-tzu-ch’eng,T’ung-tzu-hsien 28.1375 106.82 P PPL CN 18 80344 948 Asia/Chongqing 2012-01-18
-1792520 Tongzhou Tongzhou T'ung,T'ung-chen,T'ung-chou,T'ung-chou-ch'u,T'ung-chou-shih,T'ung-hsien,T'ung-hsien-chen,Tingchow,Tongxian,Tongzhou,Tunchzhou,Tunsyan',Tunsyan’,T’ung,T’ung-chen,T’ung-chou,T’ung-chou-ch’ü,T’ung-chou-shih,T’ung-hsien,T’ung-hsien-chen,Тунчжоу 39.90528 116.59944 P PPL CN 22 163326 29 Asia/Harbin 2012-01-18
-1792528 Tongyuan Tongyuan T'ung-yuan-fang,Tongyuan,Tongyuan Zhen,Tongyuanfang,Tungyunfang,T’ung-yüan-fang,tong yuan,通远 34.55353 109.04039 P PPLA4 CN 26 0 394 Asia/Chongqing 2012-01-18
-1792529 Tongyuan Tongyuan T'ung-yuan,T'ung-yuan-chen,Tongyuan,Tongyuan Zhen,T’ung-yüan,T’ung-yüan-chen,tong yuan,tong yuan zhen,通元,通元镇 30.45585 120.83904 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1792530 Tongyuan Tongyuan T'ung-yuan,Tongyuan,Tongyuan Xiang,T’ung-yüan,tong yuan,tong yuan xiang,桐源,桐源乡 28.07845 116.22194 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-18
-1792539 Tongyang Tongyang T'ung-shan,T'ung-shan-hsien,Tongshan,Tongyang,T’ung-shan,T’ung-shan-hsien,tong yang,通羊 29.67054 114.59694 P PPLA3 CN 12 0 314 Asia/Shanghai 2012-01-18
-1792543 Tongxing Tongxing T'ung-hsing-chen,Tongxing,Tongxing Xiang,Tongxingzhen,T’ung-hsing-chen,tong xing,通兴 32.01546 121.56134 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1792544 Tongxing Tongxing T'ung-hsing,T'ung-hsing-chi,T'ung-hsing-chieh,Tongxing,Tongxing Zhen,Tongxingjie,T’ung-hsing,T’ung-hsing-chi,T’ung-hsing-chieh,tong xing,tong xing zhen,同兴,同兴镇 34.41667 119.4 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1792554 Tongxian Tongxian Tongxian,Tongxian Xiang,tong xian,tong xian xiang,通贤,通贤乡 25.30169 116.4564 P PPLA4 CN 07 0 315 Asia/Shanghai 2012-01-18
-1792560 Pingxiang Pingxiang Pingxiang,Pingxiang Zhen,T'ung-wei,T'ung-wei-hien,T'ung-wei-hsien,Tongwei,Tunwey,T’ung-wei,T’ung-wei-hien,T’ung-wei-hsien,ping xiang,ping xiang zhen,平襄,平襄镇 35.2079 105.25058 P PPLA3 CN 15 0 1778 Asia/Chongqing 2012-01-18
-1792562 Tongwan Tongwan T'ung-wan,Tongwan,T’ung-wan 27.58111 110.27722 P PPL CN CN 11 2530 174 Asia/Chongqing 2012-01-18
-1792568 Tongping Tongping T'ung-shu-p'ing,Tongping,Tongping Zhen,Tongshuping,T’ung-shu-p’ing,tong ping,tong ping zhen,桐坪,桐坪镇 27.25006 114.92469 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-18
-1792583 Tongshan Tongshan T'ung-shan,T'ung-shan-hsu,T'ung-shan-ts'un,Tongshan,Tongshan Xiang,T’ung-shan,T’ung-shan-hsü,T’ung-shan-ts’un,tong shan,tong shan xiang,铜山,铜山乡 30.42435 118.24852 P PPLA4 CN 01 0 184 Asia/Shanghai 2012-01-18
-1792585 Fuding Fuding Fu-ting,Fu-ting-hsien,Fuding,Tongshan 27.32734 120.214 P PPL CN 07 63250 13 Asia/Shanghai 2012-01-18
-1792592 Tongren Tongren Kiangkowhsien,T'ung-jen,T'ung-jen-hsien,T'ung-yen,Tongren,Tongren Shi,T’ung-jen,T’ung-jen-hsien,T’ung-yen 27.71722 109.18528 P PPL CN 18 90593 263 Asia/Chongqing 2012-01-18
-1792594 Tongquan Tongquan Ma-lung,Ma-lung-hsien,Malong,T'ung-ch'uan-chen,Tongquan,T’ung-ch’üan-chen,tong quan,通泉 25.4 103.56667 P PPLA3 CN 29 0 2034 Asia/Chongqing 2012-01-18
-1792603 Tongqian Tongqian Tongqian,Tongqianba,tong qian,铜钱 33.06917 105.76389 P PPLA4 CN 15 0 751 Asia/Chongqing 2012-01-18
-1792621 Wusong Wusong T'ung-ling,T'ung-ling-hsien,Tongling,T’ung-ling,T’ung-ling-hsien,Wusong,Yuan-hsien-ch'eng,Yüan-hsien-ch’eng,tong ling,tong ling shi,wu song,五松,铜陵,铜陵市 30.95 117.78333 P PPLA3 CN 01 312588 7 Asia/Shanghai 2012-01-18
-1792628 Tongle Tongle Chiu-lo-yeh,Le-yeh,Leye,Lo-yeh,Lo-yeh-hsien,Lo-yeh-hsien-ch'eng,Lo-yeh-hsien-ch’eng,Lo-yeh-hsu,Lo-yeh-hsü,T'ung-lo,T'ung-lo-hsiang,Tongle,T’ung-lo,T’ung-lo-hsiang,tong le,同乐 24.84757 106.5764 P PPLA3 CN 16 0 1169 Asia/Chongqing 2012-01-18
-1792635 Tongjinpu Tongjinpu Tongjinpu,Tongjinpu Zhen,tong jin pu,tong jin pu zhen,通津铺,通津铺镇 29.53845 110.96685 P PPLA4 CN 11 0 152 Asia/Chongqing 2012-01-18
-1792681 Tonggu Tonggu Lao-chin-p'ing,Lao-chin-p’ing,Tonggu 26.57222 109.30944 P PPL CN CN 18 1158 436 Asia/Chongqing 2012-01-18
-1792684 Tongfang Tongfang T'ung-fang,Tongfang,Tongfang Zhen,T’ung-fang,tong fang,tong fang zhen,童坊,童坊镇 25.80367 116.55062 P PPLA4 CN 07 0 544 Asia/Shanghai 2012-01-18
-1792692 Tongchuan Tongchuan San'tay,San-t'ai-hsien,San-t’ai-hsien,Santai,San’tay,T'ung-ch'uan,Tongchuan,Tunchuan,Tungchwan,Tungchwan-fu,T’ung-ch’uan,tong chuan,潼川 31.09407 105.08731 P PPLA3 CN 32 58346 386 Asia/Chongqing 2012-01-18
-1792695 Tongzha Tongzha T'ung-ch'eng-cha,T'ung-ch'eng-cha-chen,Tongchengzha,Tongzha,Tongzha Zhen,T’ung-ch’eng-cha,T’ung-ch’eng-cha-chen,tong zha,tong zha zhen,铜闸,铜闸镇 31.4845 118.1327 P PPLA4 CN 01 0 7 Asia/Shanghai 2012-01-18
-1792704 Tongchang Tongchang T'ung-ch'ang,Tongchang,Tongchang Yizuxiang,T’ung-ch’ang,tong chang,tong chang yi zu xiang,铜厂,铜厂彝族乡 24.71333 102.03472 P PPLA4 CN 29 0 2149 Asia/Chongqing 2012-01-18
-1792717 Tong’an Tong'an T'ung-an-ch'iao-chen,Tong'an,Tong'an Zhen,Tong’an,Tong’an Zhen,T’ung-an-ch’iao-chen,tong an,通安 31.37278 120.45195 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1792718 Tong’an Tong'an T'ung-an,T'ung-an-shih,Tong'an,Tong'an Xiang,Tong’an,Tong’an Xiang,T’ung-an,T’ung-an-shih,tong an,tong an xiang,同安,同安乡 28.56051 114.89301 P PPLA4 CN 03 0 105 Asia/Shanghai 2012-01-18
-1792725 Tingzhou Tingzhou Ch'ang-t'ing-hsien,Changting,Ch’ang-t’ing-hsien,T'ing-chou,Tingchow,Tingchowfu,Tingzhou,T’ing-chou,ting zhou,汀州 25.82856 116.32964 P PPLA3 CN 07 0 395 Asia/Shanghai 2012-01-18
-1792727 Tingxiandu Tingxiandu T'ing-hsien-tu,Tingxiandu,Tingxiandu Zhen,T’ing-hsien-tu,ting xian du,ting xian du zhen,停弦渡,停弦渡镇 29.5878 111.62514 P PPLA4 CN 11 0 58 Asia/Shanghai 2012-01-18
-1792733 Tingsiqiao Tingsiqiao T'ing-ssu-ch'iao,Ting-sze-chiao,Tingsiqiao,Tingsiqiao Zhen,Tingszekiao,T’ing-ssu-ch’iao,ting si qiao,ting si qiao zhen,汀泗桥,汀泗桥镇 29.81668 114.16691 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-18
-1792738 Tingpang Tingpang T'ing-p'ang-chen,Tingbangzhen,Tingpang,Tingpang Zhen,T’ing-p’ang-chen,ting pang,ting pang zhen,亭旁,亭旁镇 29.04075 121.33864 P PPLA4 CN 02 0 36 Asia/Shanghai 2012-01-18
-1792749 Tingjiang Tingjiang T'ing-t'ou,Tingjiang,T’ing-t’ou 26.07306 119.50722 P PPL CN CN 07 5320 12 Asia/Shanghai 2012-01-18
-1792752 Tingdong Tingdong T'ing-tung,Tingdong,T’ing-tung 25.82444 108.6125 P PPL CN CN 18 1577 322 Asia/Chongqing 2012-01-18
-1792767 Tieshan Tieshan T'ieh-shan-miao,Tieshan,Tieshanmiao,T’ieh-shan-miao,tie shan,铁山 33.33324 113.52971 P PPLA4 CN 09 0 99 Asia/Chongqing 2012-01-18
-1792768 Tieshanlong Tieshanlong T'ieh-shan-lung,Tieshanlong,Tieshanlong Zhen,T’ieh-shan-lung,tie shan long,tie shan long zhen,铁山垄,铁山垄镇 25.7335 115.51137 P PPLA4 CN 03 0 267 Asia/Shanghai 2012-01-18
-1792772 Tieshan Tieshan T'ieh-shan,Tieshan,Tieshan Zhen,T’ieh-shan,tie shan,tie shan zhen,铁山,铁山镇 27.39917 118.92611 P PPLA4 CN 07 0 255 Asia/Shanghai 2012-01-18
-1792785 Tielu Tielu T'ieh-lu,T'ieh-lu-chen,Tielu,T’ieh-lu,T’ieh-lu-chen,tie lu,铁炉 34.39399 109.44317 P PPLA4 CN 26 0 571 Asia/Chongqing 2012-01-18
-1792811 Tiechang Tiechang T'ieh-ch'ang,T'ieh-ch'ang-hsu,Tiechang,Tiechang Zhen,T’ieh-ch’ang,T’ieh-ch’ang-hsü,tie chang,tie chang zhen,铁场,铁场镇 24.16345 115.48933 P PPLA4 CN 30 0 137 Asia/Shanghai 2012-01-18
-1792814 Tiebiancheng Tiebiancheng T'ieh-pien-ch'eng,Tiebiancheng,Tiebiancheng Zhen,T’ieh-pien-ch’eng,tie bian cheng,tie bian cheng zhen,铁边城,铁边城镇 36.98991 107.84795 P PPLA4 CN 26 0 1405 Asia/Chongqing 2012-01-18
-1792841 Tianzhou Tianzhou Chiu-feng-i,Feng-i,T'ien-chou,T'ien-chou-chen,T'ien-chou-hsu,T'ien-yang,Tianyang,Tianzhou,Tienchow,T’ien-chou,T’ien-chou-chen,T’ien-chou-hsü,T’ien-yang,tian zhou,田州 23.77861 106.89718 P PPLA3 CN 16 0 119 Asia/Chongqing 2012-01-18
-1792852 Tianxin Tianxin T'ien-hsin,T'ien-hsin-hsu,Tianxin,Tianxin Zhen,T’ien-hsin,T’ien-hsin-hsü,tian xin,tian xin zhen,田心,田心镇 28.13564 114.60396 P PPLA4 CN 03 0 118 Asia/Shanghai 2012-01-18
-1792857 Tianxin Tianxin T'ien-hsin,T'ien-hsin-hsu,Tianxin,Tianxin Zhen,T’ien-hsin,T’ien-hsin-hsü,tian xin,tian xin zhen,天心,天心镇 25.39805 115.50432 P PPLA4 CN 03 0 237 Asia/Shanghai 2012-01-18
-1792864 Tianwang Tianwang T'ien-wang,T'ien-wang-ts'un,Tianwang,Tianwang Zhen,T’ien-wang,T’ien-wang-ts’un,tian wang,tian wang zhen,天王,天王镇 34.30136 107.46957 P PPLA4 CN 26 0 549 Asia/Chongqing 2012-01-18
-1792881 Tiantang Tiantang T'ien-t'ang,T'ien-t'ang-chen,T'ing-t'ang-ssu,Tiantang,Tiantang Zhen,Tyan'tanchzhen,Tyan’tanchzhen,T’ien-t’ang,T’ien-t’ang-chen,T’ing-t’ang-ssu,tian tang,tian tang zhen,天堂,天堂镇 34.91952 107.55079 P PPLA4 CN 26 0 1091 Asia/Chongqing 2012-01-18
-1792882 Tiantang Tiantang Tiantang,Ya-ch'ien,Ya-ch'ien-chen,Ya-ch’ien,Ya-ch’ien-chen,Yaqian,Yueh-hsi,Yuexi,Yüeh-hsi,tian tang,天堂 30.85 116.35 P PPLA3 CN 01 0 376 Asia/Shanghai 2012-01-18
-1792889 Tiantai Chengguanzhen Tiantai Chengguanzhen Chengguan Zhen,T'ien-t'ai,T'ien-t'ai-hsien,Tiantai,Tiantai Chengguanzhen,T’ien-t’ai,T’ien-t’ai-hsien,cheng guan zhen,tian tai,tian tai cheng guan zhen,城关镇,天台,天台城关镇 29.13633 121.02958 P PPLA3 CN 02 0 59 Asia/Shanghai 2012-01-18
-1792892 Tianshuijun Tianshuijun Tianshuijun,Tianshuijun Jiedao,tian shui jun,tian shui jun jie dao,天水郡,天水郡街道 34.54389 105.68972 P PPLA4 CN 15 0 1414 Asia/Chongqing 2012-01-18
-1792898 Tianshi Tianshi T'ien-shih,T'ien-shih-chen,Tianshi,Tianshi Zhen,T’ien-shih,T’ien-shih-chen,tian shi,田市 34.62212 109.42814 P PPLA4 CN 26 0 359 Asia/Chongqing 2012-01-18
-1792910 Tianqian Tianqian Tianqian,tian qian,田墘 22.7279 115.50258 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-18
-1792916 Tianpeng Tianpeng P'eng,P'eng-hsien,Pengxian,Pensyan',Pensyan’,P’eng,P’eng-hsien,Tianpeng,tian peng,天彭 30.98664 103.93933 P PPLA3 CN 32 60797 611 Asia/Chongqing 2012-01-18
-1792919 Tianning Tianning T'ien-ning,T'ien-ning-chuang,Tianning,Tianning Zhen,Tianningzhuang,T’ien-ning,T’ien-ning-chuang,tian ning,tian ning zhen,天凝,天凝镇 30.89604 120.80057 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1792934 Tianlou Tianlou T'ien-lou,Tianlou,Tianlou Xiang,T’ien-lou,tian lou,tian lou xiang,田楼,田楼乡 34.25 119.6 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-18
-1792947 Tianjin Tianjin T'ien-chin,T'ien-ching,T'ien-ching-shih,Tchien-tin,Tchien-ťin,Thien Tan,Thiên Tân,Tiandzinas,Tianjin,Tianjin Shi,Tianjing,Tiencin,Tiencsin,Tientsin,Tiençin,Tjan'czin',Tjandzin,Tjangino,Tjanĝino,T’ien-chin,T’ien-ching,T’ien-ching-shih,theiyn cin,tian jin,tian jin shi,tyanjyn,tyenjin,tyyng'yn,Тяндзин,Тяньцзинь,טיינג'ין,تيانجين,تيەنجىن شەھىرى,เทียนจิน,天津,天津市,톈진 39.14222 117.17667 P PPLA CN 28 3766207 11 Asia/Shanghai 2012-01-18
-1792949 Tianjiazhuang Tianjiazhuang Ch'ien-chia-chuang,Ch’ien-chia-chuang,T'ien-chia-chuang,T'ien-chia-p'u,Tianjiazhuang,Tianjiazhuang Zhen,T’ien-chia-chuang,T’ien-chia-p’u,tian jia zhuang,tian jia zhuang zhen,田家庄,田家庄镇 34.51516 107.47595 P PPLA4 CN 26 0 783 Asia/Chongqing 2012-01-18
-1792951 Wuxue Shi Wuxue Shi T'ien-chia-chen,T'ien-chia-p'u,Tienkeachin,Tienkiachen,T’ien-chia-chen,T’ien-chia-p’u,Wuxue Jiedao,Wuxue Shi,wu xue jie dao,wu xue shi,武穴市,武穴街道 29.91525 115.41432 P PPLA3 CN 12 0 33 Asia/Shanghai 2012-02-02
-1792993 Tiandu Tiandu T'ien-tu,T'ien-tu-chen,Tiandu,Tiandu Zhen,T’ien-tu,T’ien-tu-chen,tian du,tian du zhen,天度,天度镇 34.49229 107.96207 P PPLA4 CN 26 0 671 Asia/Chongqing 2012-01-18
-1792994 Tiandu Tiandu T'ien-tu,T'ien-tu-ts'un,Tiandu,Tiandu Zhen,T’ien-tu,T’ien-tu-ts’un,tian du,tian du zhen,田独,田独镇 18.2846 109.58232 P PPLA4 CN 31 0 17 Asia/Chongqing 2012-01-18
-1792997 Tiandiba Tiandiba Chin-yang,Jinyang,T'ien-ti-pa,Tiandiba,Tiantai,T’ien-ti-pa,tian de ba,天地坝 27.70178 103.24806 P PPLA3 CN 32 0 1347 Asia/Chongqing 2012-01-18
-1792999 Tiandeng Tiandeng Chen-tu,T'ien-teng,T'ien-teng-chen,T'ien-teng-hsiang,Tiandeng,T’ien-teng,T’ien-teng-chen,T’ien-teng-hsiang,tian deng,天等 23.12658 107.09369 P PPLA3 CN 16 0 458 Asia/Chongqing 2012-01-18
-1793010 Tianchi Tianchi Tianchi,Tianchi Xiang,tian chi,tian chi xiang,天池,天池乡 36.23639 107.31155 P PPLA4 CN 15 0 1458 Asia/Chongqing 2012-01-18
-1793011 Tianchi Tianchi Le-chih,Lechzhi,Lezhi,Lo-chih,Lo-chih-hsien,Tianchi,tian chi,天池 30.28112 105.02346 P PPLA3 CN 32 0 440 Asia/Chongqing 2012-01-18
-1793013 Tiancheng Tiancheng Ch'ung-yang,Ch'ung-yang-hsien,Chongyang,Chongyang Xian,Ch’ung-yang,Ch’ung-yang-hsien,T'sun-yang,Tiancheng,Tiancheng Zhen,Tsungyang,Tsungyang-hsien,T’sun-yang,chong yang xian,tian cheng,tian cheng zhen,天城,天城镇,崇阳县 29.54022 114.04155 P PPLA3 CN 12 0 64 Asia/Chongqing 2012-01-18
-1793016 Tianbu Tianbu T'ien-pu,T'ien-pu-chen,Tianbu,Tianbu Zhen,Tianbuzhen,T’ien-pu,T’ien-pu-chen,tian bu,tian bu zhen,天补,天补镇 31.93066 121.12045 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1793017 Tianbu Tianbu Tianbu,Tianbu Xiang,tian bu,tian bu xiang,田埠,田埠乡 26.39541 116.19077 P PPLA4 CN 03 0 248 Asia/Shanghai 2012-01-18
-1793036 Tengzhou Tengzhou T'eng,T'eng-hsien,Tehnchzhou,Teng Xian,Tengzhou,Tengzhou Shi,T’eng,T’eng-hsien,teng xian,teng zhou,teng zhou shi,Тэнчжоу,滕县,滕州,滕州市 35.07706 117.15176 P PPL CN 25 105456 68 Asia/Shanghai 2012-02-02
-1793039 Tengtian Tengtian T'eng-t'ien,T'eng-t'ien-chen,Tengtian,Tengtian Zhen,T’eng-t’ien,T’eng-t’ien-chen,teng tian,teng tian zhen,藤田,藤田镇 27.07872 115.65867 P PPLA4 CN 03 0 124 Asia/Shanghai 2012-01-18
-1793041 Tengqiao Tengqiao T'eng-ch'iao,Tengqiao,Tengqiao Zhen,T’eng-ch’iao,teng qiao,teng qiao zhen,腾桥,腾桥镇 27.76149 116.50958 P PPLA4 CN 03 0 79 Asia/Shanghai 2012-01-18
-1793048 Tengzhou Tengzhou T'eng,T'eng-ch'eng-chen,T'eng-hsien,Tengcheng,Tengxian,Tengyun,Tengyün,Tengzhou,T’eng,T’eng-ch’eng-chen,T’eng-hsien,teng zhou,藤州 23.38806 110.89116 P PPLA3 CN 16 0 40 Asia/Chongqing 2012-01-18
-1793049 Temuli Temuli Butuo,Pu-t'o,Pu-t’o,Temuli,te mu li,特木里 27.70795 102.80768 P PPLA3 CN 32 0 2397 Asia/Chongqing 2012-01-18
-1793064 Tawo Tawo Tawo,Tawo Zhen,ta wo,ta wo zhen,塔卧,塔卧镇 29.19476 109.95846 P PPLA4 CN 11 0 419 Asia/Chongqing 2012-01-18
-1793084 Taqian Taqian T'a-ch'ien,Taqian,Taqian Zhen,T’a-ch’ien,ta qian,ta qian zhen,塔前,塔前镇 29.0625 117.08278 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-18
-1793089 Taozhuang Taozhuang T'ao-chuang,Taozhuang,T’ao-chuang 34.85 117.33333 P PPL CN 25 60137 53 Asia/Shanghai 2012-01-18
-1793090 Taozhuang Taozhuang T'ao-chuang,T'ao-chuang-chen,Taozhuang,Taozhuang Zhen,T’ao-chuang,T’ao-chuang-chen,tao zhuang,tao zhuang zhen,陶庄,陶庄镇 30.96917 120.80651 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1793092 Taozhou Taozhou Guangde,Kuang-te,Kuang-te-hsien,Kwangteh,Kwangteh-hsien,Kwangtenchow,Lang-kuang,Taozhou,Taozhou Zhen,guang de,tao zhou,tao zhou zhen,广德,桃州,桃州镇 30.90641 119.40865 P PPLA3 CN 01 0 49 Asia/Shanghai 2012-01-18
-1793105 Zhangjiang Zhangjiang T'ao-yuan-hsien,Taoyuan,Taoyuan Xian,T’ao-yüan-hsien,Zhangjiang,Zhangjiang Zhen,tao yuan,tao yuan xian,zhang jiang,zhang jiang zhen,桃源,桃源县,漳江,漳江镇 28.91103 111.4799 P PPLA3 CN 11 0 46 Asia/Shanghai 2012-01-18
-1793113 Taoyan Taoyan T'ao-yen,T'ao-yen-shih,Taoyan,Taoyan Zhen,T’ao-yen,T’ao-yen-shih,tao yan,tao yan zhen,陶堰,陶堰镇 30.02139 120.72812 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1793118 Shuangqiaotou Shuangqiaotou Chang-she,Chang-she-ts'un,Chang-she-ts’un,Shuangqiaotou,T'ao-hsin,Taoxin,Taoxin Zhen,T’ao-hsin,shuang qiao tou,tao xin zhen,双桥头,陶辛镇 31.1621 118.48933 P PPLA4 CN 01 0 9 Asia/Shanghai 2012-01-18
-1793119 Taoxia Taoxia T'ao-hsia-chan,T'ao-ts'un,Taoxia,Taoxia Zhen,Taoxiazhan,T’ao-hsia-chan,T’ao-ts’un,tao xia,桃下 34.54337 109.97839 P PPLA4 CN 26 0 351 Asia/Chongqing 2012-01-18
-1793122 Taoxi Taoxi T'ao-hsi,Taoxi,Taoxi Zhen,T’ao-hsi,tao xi,tao xi zhen,桃溪,桃溪镇 25.36342 116.1863 P PPLA4 CN 07 0 307 Asia/Shanghai 2012-01-18
-1793128 Taosi Taosi T'ao-ssu,T'ao-ssu-ts'un,Taosi,Taosi Xiang,T’ao-ssu,T’ao-ssu-ts’un,tao si,tao si xiang,陶寺,陶寺乡 35.89696 111.49875 P PPLA4 CN 24 0 522 Asia/Chongqing 2012-01-18
-1793134 Taosha Taosha T'ao-sha-hsu,Taosha,Taosha Zhen,T’ao-sha-hsü,tao sha,tao sha zhen,陶沙,陶沙镇 28.05118 116.06693 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-18
-1793151 Taokeng Taokeng Kengkouxu,Taokeng,Taokeng Xiang,keng kou wei,tao keng,tao keng xiang,坑口圩,桃坑,桃坑乡 26.66776 113.74971 P PPLA4 CN 11 0 188 Asia/Shanghai 2012-02-28
-1793156 Taohuajiang Taohuajiang T'ao-chiang,T'ao-chiang-chen,T'ao-hua-chiang,Taohuajiang,Taojiang,T’ao-chiang,T’ao-chiang-chen,T’ao-hua-chiang,tao hua jiang,桃花江 28.52361 112.12528 P PPLA3 CN 11 0 45 Asia/Chongqing 2012-01-18
-1793165 Taocun Taocun T'ao-chia-ts'un,Taocun,Taocun Xiang,Taojiacun,T’ao-chia-ts’un,tao cun,tao cun xiang,陶村,陶村乡 39.44784 112.45239 P PPLA4 CN 24 0 1171 Asia/Chongqing 2012-01-18
-1793166 Taochang Taochang T'ao-chia-ch'ang,Taochang,Taochang Zhen,Taojiachang,T’ao-chia-ch’ang,tao chang,tao chang zhen,陶厂,陶厂镇 31.5976 118.12233 P PPLA4 CN 01 0 21 Asia/Shanghai 2012-01-18
-1793180 Taohong Taohong Longhui,Lung-hui,T'ao-hung-chen,Taohong,Taohuaping,Taohwaping,T’ao-hung-chen,tao hong,桃洪 27.10107 110.99486 P PPLA3 CN 11 0 276 Asia/Chongqing 2012-01-18
-1793188 Taodian Taodian T'ao-tien,Taodian,Taodian Xiang,T’ao-tien,tao dian,tao dian xiang,陶店,陶店乡 30.53964 114.96537 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-18
-1793193 Taochuan Taochuan Taochuan,Taochuan Zhen,tao chuan,tao chuan zhen,桃川,桃川镇 34.05692 107.54694 P PPLA4 CN 26 0 1157 Asia/Chongqing 2012-01-18
-1793198 Taocheng Taocheng Shou-ch'eng-chen,Shou-ch’eng-chen,T'ao-ch'eng-p'u,Taocheng,Taocheng Zhen,T’ao-ch’eng-p’u,tao cheng,tao cheng zhen,涛城,涛城镇 31.0979 119.24741 P PPLA4 CN 01 0 18 Asia/Shanghai 2012-01-18
-1793199 Taocheng Taocheng Daxin,Ta-hsin,Taocheng,Yang-li,Yang-li-hsien,tao cheng,桃城 22.87936 107.15648 P PPLA3 CN 16 0 326 Asia/Chongqing 2012-01-18
-1793218 Tanxi Tanxi T'an-ch'i,T'an-hsi,Tanxi,Tanxi Zhen,T’an-ch’i,T’an-hsi,tan xi,tan xi zhen,滩溪,滩溪镇 28.98396 115.63477 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-18
-1793220 Tanxi Tanxi Tanxi,Tanxi Zhen,tan xi,潭西 22.938 115.5548 P PPLA4 CN 30 0 12 Asia/Shanghai 2012-01-18
-1793221 Tanwan Tanwan 27.96639 110.15028 P PPL CN 11 1630 137 Asia/Chongqing 2004-06-29
-1793226 Tantou Tantou T'an-t'ou-shih,Tantou,Tantou Zhen,T’an-t’ou-shih,tan tou,tan tou zhen,坦头,坦头镇 29.11168 121.11873 P PPLA4 CN 02 0 60 Asia/Shanghai 2012-01-18
-1793228 Tantou Tantou Tantou,Tantou Zhen,tan tou,tan tou zhen,滩头,滩头镇 27.26389 111.14417 P PPLA4 CN 11 0 362 Asia/Chongqing 2012-02-28
-1793229 Tantou Tantou T'an-t'ou-shih,Tantou,Tantou Xiang,T’an-t’ou-shih,tan tou,tan tou xiang,潭头,潭头乡 26.8372 115.48994 P PPLA4 CN 03 0 123 Asia/Shanghai 2012-01-18
-1793230 Tantou Tantou 26.03139 119.59861 P PPL CN 07 69050 13 Asia/Shanghai 2006-01-17
-1793236 Tanshi Tanshi T'an-shih,T'an-shih-shih,Tanshi,Tanshi Zhen,T’an-shih,T’an-shih-shih,tan shi,tan shi zhen,坛石,坛石镇 28.71512 118.49331 P PPLA4 CN 02 0 154 Asia/Shanghai 2012-01-18
-1793238 Tanshang Tanshang T'an-shang-ts'un,Tanshang,Tanshang Zhen,T’an-shang-ts’un,tan shang,tan shang zhen,滩上,滩上镇 38.95818 113.17083 P PPLA4 CN 24 0 1330 Asia/Shanghai 2012-01-18
-1793242 Tanshan Tanshan Tanshan,Tanshan Xiang,tan shan,tan shan xiang,炭山,炭山乡 36.37746 106.30452 P PPLA4 CN 21 0 2004 Asia/Chongqing 2012-01-18
-1793243 Tanshan Tanshan Tanshan,Tanshan Zhen,tan shan,tan shan zhen,潭山,潭山镇 28.54389 114.75169 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-18
-1793245 Tanqiu Tanqiu T'an-ch'iu,Tanqiu,Tanqiu Xiang,T’an-ch’iu,tan qiu,tan qiu xiang,潭丘,潭丘乡 27.6315 115.59707 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-18
-1793246 Tanqiao Tanqiao T'an-ch'iao,Tanqiao,Tanqiao Zhen,T’an-ch’iao,tan qiao,tan qiao zhen,滩桥,滩桥镇 30.16462 112.29608 P PPLA4 CN 12 0 33 Asia/Chongqing 2012-01-18
-1793250 Tanniu Tanniu Tanniu,Tanniu Zhen,tan niu,tan niu zhen,潭牛,潭牛镇 19.7117 110.73109 P PPLA4 CN 31 0 24 Asia/Chongqing 2012-01-18
-1793264 Tanjiaqiao Tanjiaqiao T'an-chia-ch'iao,Tanjiaqiao,Tanjiaqiao Zhen,T’an-chia-ch’iao,tan jia qiao,tan jia qiao zhen,谭家桥,谭家桥镇 30.17444 118.26833 P PPLA4 CN 01 0 199 Asia/Shanghai 2012-01-18
-1793269 Tanjiahe Tanjiahe T'an-chia-ho,T'an-chia-ho-shih,Tanjiahe,Tanjiahe Xiang,T’an-chia-ho,T’an-chia-ho-shih,tan jia he,tan jia he xiang,谭家河,谭家河乡 31.90213 113.96418 P PPLA4 CN 09 0 114 Asia/Shanghai 2012-01-18
-1793286 Tangzhai Tangzhai Chu-tzu-chieh,Chü-tzu-chieh,Tang-chai,Tangzhai 34.43278 116.59111 P PPL CN 01 67936 46 Asia/Shanghai 2012-01-18
-1793288 Tangzang Tangzang T'ang-tsang,Tangzang,Tangzang Zhen,T’ang-tsang,tang cang,tang cang zhen,唐藏,唐藏镇 34.09056 106.58361 P PPLA4 CN 26 0 1238 Asia/Chongqing 2012-01-18
-1793296 Tangyin Tangyin Tangyin,Tangyin Zhen,tang yin,tang yin zhen,棠阴,棠阴镇 27.49391 116.30394 P PPLA4 CN 03 0 122 Asia/Shanghai 2012-01-18
-1793299 Tangyang Tangyang T'ang-chia-yang,Tangyang,Tangyang Zhen,T’ang-chia-yang,tang yang,tang yang zhen,唐洋,唐洋镇 32.65 120.7 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1793305 Tangxian Tangxian Piyaanhsien,T'ang-hsien-chen,T'ang-hsien-chien,Tangxian,Tangxian Zhen,T’ang-hsien-chen,T’ang-hsien-chien,tang xian,tang xian zhen,唐县,唐县镇 31.97931 113.1144 P PPLA4 CN 12 0 122 Asia/Chongqing 2012-01-18
-1793319 Tangwan Tangwan T'ang-wan-chen,Tangwan,Tangwan Zhen,T’ang-wan-chen,tang wan,tang wan zhen,塘湾,塘湾镇 32.445 119.95917 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1793322 Tangwan Tangwan T'ang-pei-wan,Tangwan,Tangwan Zhen,T’ang-pei-wan,tang wan,tang wan zhen,塘湾,塘湾镇 28.07632 117.22239 P PPLA4 CN 03 0 70 Asia/Shanghai 2012-01-18
-1793328 Tangxia Tangxia T'ang-t'ou-hsia,T'ang-t'ou-hsia-hsu,Tangtouxia,Tangtowhwa,Tangxia,Tangxia Zhen,Thon-theu-ha,T’ang-t’ou-hsia,T’ang-t’ou-hsia-hsü,tang sha,塘厦 22.80971 114.09246 P PPLA4 CN 30 0 28 Asia/Chongqing 2012-01-18
-1793339 Tangtang Tangtang T'ang-ho-hsu,T'ang-tang-hsu,Tangtang,Tangtang Zhen,T’ang-ho-hsü,T’ang-tang-hsü,tang tang,汤塘 23.74642 113.4692 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-18
-1793346 Tangshan Tangshan T'ang-shan-chen,T'ang-shan-shih,Tangshan,Tanshan',Tongshan,T’ang-shan-chen,T’ang-shan-shih,tang shan,tang shan shi,Таншань,تاڭشەن شەھىرى,唐山,唐山市 39.63333 118.18333 P PPL CN 10 1596949 36 Asia/Harbin 2012-01-18
-1793359 Tangqi Tangqi T'ang-ch'i,T'ang-ch'i-chen,T'ang-hsi,Tangqi,Tangqi Zhen,Tangxi,Tangxi Zhen,T’ang-ch’i,T’ang-ch’i-chen,T’ang-hsi,tang qi,tang qi zhen,塘栖,塘栖镇 30.47832 120.18105 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1793360 Tangpu Tangpu T'ang-p'u-chen,Tangpu,Tangpu Zhen,T’ang-p’u-chen,tang pu,tang pu zhen,汤浦,汤浦镇 29.86087 120.78373 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-18
-1793361 Tangpu Tangpu Tangpu,Tangpu Zhen,tang pu,tang pu zhen,棠浦,棠浦镇 28.4441 114.98496 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-18
-1793364 Tangping Tangping Ho-t'ang,Ho-t’ang,T'ang-p'ing-hsu,Tangping,T’ang-p’ing-hsü,tang ping,塘平 22.02647 111.93229 P PPL CN 30 81729 19 Asia/Chongqing 2012-01-18
-1793380 Tangkou Tangkou 26.95417 119.01278 P PPL CN 07 4000 805 Asia/Shanghai 2001-01-05
-1793382 Tangkeng Tangkeng Feng-shun,T'ang-k'eng-chen,T'ang-k'eng-hsu,Tangkeng,Tonghang,T’ang-k’eng-chen,T’ang-k’eng-hsü,tang keng,汤坑 23.75912 116.17092 P PPLA3 CN 30 0 18 Asia/Shanghai 2012-01-18
-1793384 Tangjie Tangjie Tangjie,Tangjie Zhen,tang jie,tang jie zhen,堂街,堂街镇 33.89755 113.31525 P PPLA4 CN 09 0 107 Asia/Chongqing 2012-01-18
-1793385 Tangjiazhuang Tangjiazhuang T'ang-chia-chuang,T'ang-chia-chuang-tzu,Tangjiazhuang,Tangkiachwang,T’ang-chia-chuang,T’ang-chia-chuang-tzu 39.73333 118.45 P PPL CN 10 79489 45 Asia/Harbin 2012-01-18
-1793401 Tangjiafang Tangjiafang T'ang-chia-fang,Tangjiafang,Tantszyafan,T’ang-chia-fang 26.84 110.36472 P PPL CN CN 11 1450 466 Asia/Chongqing 2012-01-18
-1793408 Tanghui Tanghui Tanghui,Tanghui Jiedao,tang hui,tang hui jie dao,塘汇,塘汇街道 30.79466 120.77198 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1793409 Tanghua Tanghua Tanghua,Tanghua Xiang,Tanghuapu,tang hua,tang hua pu,tang hua xiang,堂华铺,棠华,棠华乡 29.37017 111.86535 P PPLA4 CN 11 0 36 Asia/Shanghai 2012-01-18
-1793419 Tanghe Tanghe Pi-yuan,Pi-yüan,T'ang-ho,T'ang-ho-hsien,Tanghe,T’ang-ho,T’ang-ho-hsien 32.68833 112.8275 P PPL CN 09 68514 109 Asia/Chongqing 2012-01-18
-1793424 Tanggu Tanggu T'ang-ku,Tanggu,Tango,Tung-ku,T’ang-ku,Танго 39.02111 117.64694 P PPL CN 28 535298 6 Asia/Shanghai 2012-01-18
-1793440 Tangdukou Tangdukou Shao-yang-hsien,Shaoyang,T'ang-tu,T'ang-tu-k'ou,T'ang-tu-k'ou-chen,Tangdukou,T’ang-tu,T’ang-tu-k’ou,T’ang-tu-k’ou-chen,tang du kou,塘渡口 26.96589 111.24138 P PPLA3 CN 11 0 323 Asia/Chongqing 2012-01-18
-1793441 Tangdi Tangdi T'ang-li-shu,Tangdi,Tangdi Zhen,Tangdishu,T’ang-li-shu,tang di,tang di zhen,棠棣,棠棣镇 31.23904 113.58663 P PPLA4 CN 12 0 63 Asia/Chongqing 2012-01-18
-1793450 Tangcun Tangcun T'ang-ts'un,Tangcun,Tangcun Zhen,T’ang-ts’un,Xiangjia,tang cun,tang cun zhen,xiang jia,唐村,唐村镇,项家 29.80623 118.84822 P PPLA4 CN 02 0 134 Asia/Shanghai 2012-01-18
-1793452 Tangcun Tangcun T'ang-ts'un,Tangcun,Tangcun Xiang,T’ang-ts’un,tang cun,tang cun xiang,塘村,塘村乡 25.54061 115.34229 P PPLA4 CN 03 0 290 Asia/Shanghai 2012-01-18
-1793455 Tangchuan Tangchuan Tangchuan,Tangchuan Xiang,tang chuan,tang chuan xiang,汤川,汤川乡 26.11457 118.42616 P PPLA4 CN 07 0 845 Asia/Shanghai 2012-01-18
-1793457 Tangchijie Tangchijie Tangchi,Tangchi Zhen,Tangchijie,tang chi,tang chi jie,tang chi zhen,汤池,汤池街,汤池镇 24.96167 103.03361 P PPLA4 CN 29 0 1786 Asia/Chongqing 2012-01-18
-1793476 Tancheng Tancheng Tancheng,Tancheng Xiang,tan cheng,tan cheng xiang,潭城,潭城乡 27.43753 115.49762 P PPLA4 CN 03 0 114 Asia/Shanghai 2012-01-18
-1793478 Tancheng Tancheng Haitanchin,P'ing-t'an-hsien,P'ing-t'an-hsien-ch'eng,Pingtan,Pingtankieh,P’ing-t’an-hsien,P’ing-t’an-hsien-ch’eng,Tancheng,tan cheng,潭城 25.50808 119.80722 P PPLA3 CN 07 0 9 Asia/Shanghai 2012-01-18
-1793482 Tanbu Tanbu T'an-pu,Tanbu,Tanbu Zhen,T’an-pu,tan bu,tan bu zhen,潭埠,潭埠镇 28.11644 114.21568 P PPLA4 CN 03 0 135 Asia/Chongqing 2012-01-18
-1793498 Taizi Taizi T'ai-tzu-miao,Taizi,Taizi Zhen,Taizimiao,T’ai-tzu-miao,tai zi,tai zi zhen,太子,太子镇 30.03333 115.18333 P PPLA4 CN 12 0 51 Asia/Shanghai 2012-01-18
-1793505 Taizhou Taizhou T'ai,T'ai-chou,T'ai-chou-shih,T'ai-hsien,T'ai-hsien-ch'eng,Taichow,Taizhou,Taizhou Shi,Tajchzhou,T’ai,T’ai-chou,T’ai-chou-shih,T’ai-hsien,T’ai-hsien-ch’eng,tai zhou,tai zhou shi,Тайчжоу,泰州,泰州市 32.49333 119.91063 P PPLA3 CN 04 612356 10 Asia/Shanghai 2012-01-18
-1793511 Taiyuan Taiyuan T'ai-yuan-shih,Taiyuan,Taiyuan Shi,Taiyuan-fu,Taiyüan-fu,Tajjuan',T’ai-yüan-shih,Yang-ch'u,Yang-ch’ü,Yangku,Yangkü,Yanka,tai yuan,tai yuan shi,Тайюань,太原,太原市 37.86944 112.56028 P PPLA CN 24 2722475 795 Asia/Chongqing 2012-01-18
-1793513 Taiyu Taiyu T'ai-yu-chen,Taiyu,T’ai-yü-chen,tai yu,太峪 34.93272 108.05981 P PPLA4 CN 26 0 1017 Asia/Chongqing 2012-01-18
-1793517 Taiyigong Taiyigong T'ai-i-kung,Taiyigong,T’ai-i-kung,tai yi gong,太乙宫 34.02617 109.0016 P PPLA4 CN 26 0 653 Asia/Chongqing 2012-01-18
-1793529 Taiyang Taiyang T'ai-yang-chen,Taiyang,T’ai-yang-chen,tai yang,太阳 30.18526 119.29611 P PPLA4 CN 02 0 116 Asia/Shanghai 2012-01-18
-1793530 Taiyang Taiyang T'ai-yang-hsu,Taiyang,Taiyang Zhen,T’ai-yang-hsü,tai yang,tai yang zhen,太阳,太阳镇 28.19721 115.26806 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-18
-1793531 Taiyang Taiyang T'ai-yang-hsu,Taiyang,Taiyang Zhen,T’ai-yang-hsü,tai yang,tai yang zhen,太阳,太阳镇 28.0621 116.4778 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-18
-1793533 Taixing Taixing T'ai-hsing,T'ai-hsing-ch'eng,T'ai-hsing-chen,T'ai-hsing-hsien,Taihing,Taixing,Taixing Shi,Taixing Zhen,T’ai-hsing,T’ai-hsing-chen,T’ai-hsing-ch’eng,T’ai-hsing-hsien,tai xing,tai xing shi,tai xing zhen,泰兴,泰兴市,泰兴镇 32.16667 120.01361 P PPLA3 CN 04 79655 9 Asia/Shanghai 2012-01-18
-1793536 Taixi Taixi T'ai-hsi,Taixi,Taixi Xiang,T’ai-hsi,tai xi,tai xi xiang,台溪,台溪乡 26.10192 118.2473 P PPLA4 CN 07 0 280 Asia/Shanghai 2012-01-18
-1793560 Taipingzhuang Taipingzhuang T'ai-p'ing-chuang,Taipingzhuang,Taipingzhuang Xiang,T’ai-p’ing-chuang,tai ping zhuang,tai ping zhuang xiang,太平庄,太平庄乡 39.04794 112.13601 P PPLA4 CN 24 0 1532 Asia/Chongqing 2012-01-18
-1793565 Taiping Taiping T'ai-p'ing-chen,Taiping,Taiping Xiang,Taipingzhen,T’ai-p’ing-chen,tai ping,tai ping xiang,太平,太平乡 29.83194 109.92278 P PPLA4 CN 12 0 930 Asia/Chongqing 2012-01-18
-1793581 Taipingqiao Taipingqiao T'ai-p'ing-ch'iao,Taipingqiao,Taipingqiao Xiang,T’ai-p’ing-ch’iao,tai ping qiao,tai ping qiao xiang,太平桥,太平桥乡 29.06188 111.33718 P PPLA4 CN 11 0 59 Asia/Shanghai 2012-01-18
-1793590 Taipingguan Taipingguan T'ai-p'ing-kuan,Taipingguan,Taipingguan Xiang,T’ai-p’ing-kuan,tai ping guan,tai ping guan xiang,太平关,太平关乡 29.75242 116.42967 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1793591 Taiping Taiping T'ai-p'ing-tu,Taiping,Taipingdu,T’ai-p’ing-tu,tai ping,太平 28.14083 106.03771 P PPL CN 32 3000 327 Asia/Chongqing 2012-01-18
-1793601 Taiping Taiping Taiping,Taiping Zhen,Taipingchang,tai ping,太平 23.44122 113.48351 P PPLA4 CN 30 0 23 Asia/Chongqing 2012-01-18
-1793624 Taiping Taiping Taiping,Taiping Zhen,tai ping,tai ping zhen,太平,太平镇 26.44567 118.41869 P PPLA4 CN 07 0 60 Asia/Shanghai 2012-01-18
-1793627 Taiping Taiping Chihing,Chihinghsien,Shih-hsing,Shih-hsing-hsien,Shih-shing,Shixing Xian,Taiping,Taiping Zhen,shi xing xian,tai ping,tai ping zhen,太平,太平镇,始兴县 24.94723 114.06152 P PPLA3 CN 30 0 103 Asia/Chongqing 2012-02-02
-1793630 Taiping Taiping Taiping,Taiping Zhen,tai ping,tai ping zhen,太平,太平镇 24.25529 112.55783 P PPLA4 CN 30 0 121 Asia/Chongqing 2012-01-18
-1793631 Taiping Taiping Taiping,Taiping Zhen,tai ping,太平 23.9006 117.01511 P PPLA4 CN 07 0 66 Asia/Shanghai 2012-01-18
-1793632 Taiping Taiping Taiping,Taiping Zhen,tai ping,tai ping zhen,太平,太平镇 23.67136 112.87864 P PPLA4 CN 30 0 21 Asia/Chongqing 2012-01-18
-1793650 Taimei Taimei Taimei,Taimei Zhen,tai mei,泰美 23.32258 114.47344 P PPLA4 CN 30 0 52 Asia/Chongqing 2012-01-18
-1793662 Yanglinjie Yanglinjie T'ai-huai-chen,Taihuai Zhen,T’ai-huai-chen,Yanglinjie,tai huai zhen,yang lin jie,台怀镇,杨林街 39.00898 113.5909 P PPLA4 CN 24 0 1715 Asia/Shanghai 2012-01-18
-1793665 Jinxi Jinxi Jinxi,T'ai-hu-hsien,Taihu,T’ai-hu-hsien,jin xi,晋熙 30.43226 116.29217 P PPLA3 CN 01 0 40 Asia/Shanghai 2012-01-18
-1793683 Taihe Chengguanzhen Taihe Chengguanzhen T'a-ho,T'ai-ho,T'ai-ho-hsien,Taihe,Taihe Chengguanzhen,T’a-ho,T’ai-ho,T’ai-ho-hsien,tai he cheng guan zhen,太和城关镇 33.16552 115.64886 P PPLA3 CN 01 0 35 Asia/Shanghai 2012-01-18
-1793684 Taihe Taihe She-hung,Shehong,T'ai-ho,T'ai-ho-ch'ang,T'ai-ho-chen,Taihe,Taykhe,T’ai-ho,T’ai-ho-chen,T’ai-ho-ch’ang,tai he,太和 30.87123 105.38454 P PPLA3 CN 32 0 337 Asia/Chongqing 2012-01-18
-1793687 Taihe Taihe T'ai-ho,T'ai-ho-hsu,Taihe,Taihe Zhen,T’ai-ho,T’ai-ho-hsü,tai he,tai he zhen,太和,太和镇 27.05272 116.61105 P PPLA4 CN 03 0 126 Asia/Shanghai 2012-01-18
-1793691 Mingxing Mingxing Mingxing,Mingxing Zhen,T'ai-ku,T'ai-ku-hsien,Taigu,Taigu Xian,T’ai-ku,T’ai-ku-hsien,ming xing,ming xing zhen,tai gu xian,太谷县,明星,明星镇 37.42639 112.54417 P PPLA3 CN 24 0 788 Asia/Chongqing 2012-01-18
-1793700 Taicheng Taicheng Hsin-ning,Sunning,Sunninghsien,Sünninghsien,T'ai-ch'eng-chen,T'ai-shan-hsien,Taicheng,Taicheng Jiedao,Taishan,Taishan Shi,Tajshan',Toishan,Toyshan,T’ai-ch’eng-chen,T’ai-shan-hsien,tai cheng,tai cheng jie dao,tai shan shi,Тайшань,台城,台城街道,台山市 22.25135 112.7799 P PPLA3 CN 30 145440 3 Asia/Chongqing 2012-01-18
-1793703 Chengxiang Chengxiang Chengxiang,Chengxiang Zhen,T'ai-ts'ang,T'ai-ts'ang-ch'eng,T'ai-ts'ang-hsien,Taicang,Taicang Shi,T’ai-ts’ang,T’ai-ts’ang-ch’eng,T’ai-ts’ang-hsien,cheng xiang,cheng xiang zhen,tai cang,tai cang shi,城厢,城厢镇,太仓,太仓市 31.44778 121.09389 P PPLA3 CN 04 0 4 Asia/Shanghai 2012-01-18
-1793707 Taibao Taibao Taibao,Taibao Zhen,tai bao,tai bao zhen,太保,太保镇 24.69657 112.17871 P PPLA4 CN 30 0 398 Asia/Chongqing 2012-01-18
-1793718 Taibai Taibai T'ai-pai,T'ai-pai-chen,Taibai,Taibai Zhen,Taibaisi,T’ai-pai,T’ai-pai-chen,tai bai,tai bai zhen,太白,太白镇 29.08727 117.68937 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-18
-1793724 Tai’an Tai'an T'ai-an-hsien,T'ai-an-shih,Tai'an,Taianfu,Tai’an,Tajan',T’ai-an-hsien,T’ai-an-shih,Тайань 36.18528 117.12 P PPL CN 25 5499000 143 Asia/Shanghai 2012-01-18
-1793729 Tafang Tafang Ta-tang,Tafang,Tafang Xiang,ta fang,ta fang xiang,塔坊,塔坊乡 29.78064 117.66422 P PPLA4 CN 01 0 110 Asia/Shanghai 2012-01-18
-1793737 Tadou Tadou Lianhe Xiang,Lien-ho,T'a-tou,Tadou,T’a-tou,lian he xiang,ta dou,塔兜,联合乡 26.37157 118.22972 P PPLA4 CN 07 0 220 Asia/Shanghai 2012-01-18
-1793738 Tadianjie Tadianjie T'a-tien-chieh,Tadian,Tadian Zhen,Tadianjie,T’a-tien-chieh,ta dian,ta dian jie,ta dian zhen,塔甸,塔甸街,塔甸镇 24.24833 102.15917 P PPLA4 CN 29 0 1832 Asia/Chongqing 2012-01-18
-1793743 Suzhou Suzhou Su-hsien,Suchow,Suchzhou,Suxian,Suzhou,su zhou shi,Сучжоу,شيۇجۇ شەھىرى,宿州市 33.63611 116.97889 P PPL CN 01 205130 34 Asia/Shanghai 2012-01-18
-1793761 Fuyu Fuyu Fuyu,Su-sung,Su-sung-hsien,Susong,fu yu,孚玉 30.15 116.11667 P PPLA3 CN 01 0 20 Asia/Shanghai 2012-01-18
-1793774 Suozhen Suozhen Huantai,So-chen,Suozhen,Suozhencun 36.95389 118.10472 P PPL CN 25 58766 20 Asia/Shanghai 2012-01-18
-1793777 Suojie Suojie So-shih,So-shih-chieh,Suojie,Suojie Xiang,Suoshi,suo jie,suo jie xiang,所街,所街乡 29.88 110.90531 P PPLA4 CN 11 0 256 Asia/Chongqing 2012-01-18
-1793798 Sunzhen Sunzhen Sun-chen,Sun-chia-chuang,Sun-chuang,Sunzhen,Sunzhenjie,sun zhen,孙镇 34.98364 109.75357 P PPLA4 CN 26 0 517 Asia/Chongqing 2012-01-18
-1793824 Sunqiao Sunqiao Sun-chia-ch'iao,Sun-chia-ch’iao,Sunjiaqiao,Sunqiao,Sunqiao Zhen,sun qiao,sun qiao zhen,孙桥,孙桥镇 31.0868 113.01447 P PPLA4 CN 12 0 115 Asia/Chongqing 2012-01-18
-1793833 Sunbu Sunbu Sun-chia-ch'iao,Sun-chia-ch’iao,Sun-chia-fou,Sun-chia-pu,Sunbu,Sunbu Zhen,Sunjiabu,Sunkiapu,sun bu,sun bu zhen,孙埠,孙埠镇 30.9 118.88278 P PPLA4 CN 01 0 31 Asia/Shanghai 2012-01-18
-1793846 Sunfang Sunfang Sun-fang-chieh,Sunfang,Sunfang Zhen,sun fang,sun fang zhen,孙坊,孙坊镇 27.86884 116.18186 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-18
-1793847 Sunduan Sunduan Sun-tuan,Sun-tuan-chen,Sunduan,Sunduan Zhen,sun duan,sun duan zhen,孙端,孙端镇 30.06981 120.69656 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1793857 Quguoqiongwa Quguoqiongwa Quguoqiongwa,Senduo Xiang,Sumdo,qu guo qiong wa,sen duo,sen duo xiang,曲果琼哇,森多,森多乡 35.51851 100.9328 P PPLA4 CN 06 0 3260 Asia/Chongqing 2012-01-18
-1793879 Suizhou Suizhou Sui,Sui-hsien,Suichow,Suixian 31.71111 113.36306 P PPL CN 12 323945 67 Asia/Chongqing 2006-01-17
-1793889 Suixi Suixi Sui-ch'i,Sui-ch'i-k'ou,Sui-ch'i-shih,Sui-chi-chen,Sui-ch’i,Sui-ch’i-k’ou,Sui-ch’i-shih,Sui-hsi,Suixi,sui xi,濉溪 33.89067 116.77472 P PPLA3 CN 01 74172 34 Asia/Shanghai 2012-01-18
-1793890 Suicheng Suicheng Lei-pei,Sui-ch'i,Sui-ch'i-hsien,Sui-ch’i,Sui-ch’i-hsien,Sui-hsi,Suicheng,Suikai,Suikaihsien,Suixi,sui cheng,遂城 21.41422 110.2365 P PPLA3 CN 30 0 16 Asia/Chongqing 2012-01-18
-1793892 Suishan Suishan Emei,O-mei,Suishan,sui shan,绥山 29.60831 103.48603 P PPLA3 CN 32 0 433 Asia/Chongqing 2012-01-18
-1793899 Suicheng Suicheng Sui-ch'eng-chen,Sui-ch’eng-chen,Sui-ning-ch'eng,Sui-ning-ch’eng,Sui-ning-hsien,Suicheng,Suining 33.8963 117.93307 P PPLA3 CN 04 61430 22 Asia/Shanghai 2012-01-18
-1793900 Suining Suining Sui-ning-hsien,Suining,Sujnin,Suynin,sui ning,Суйнин,遂宁 30.50802 105.57332 P PPLA3 CN 32 124924 291 Asia/Chongqing 2012-01-18
-1793908 Suicheng Suicheng Chien-ning,Chien-ning-hsien,Jianning,Jianning Xian,Kienning,Kienninghsien,Suicheng,Suicheng Zhen,jian ning xian,sui cheng,sui cheng zhen,建宁县,濉城,濉城镇 26.83779 116.83592 P PPLA3 CN 07 0 303 Asia/Shanghai 2012-01-18
-1793910 Sui’an Sui'an Chang-p'u,Chang-p'u-ch'eng,Chang-p'u-hsien,Chang-p’u,Chang-p’u-ch’eng,Chang-p’u-hsien,Chanpuhs,Sui'an,Sui’an,Zhangpu,sui an,绥安 24.08698 117.60912 P PPLA3 CN 07 0 13 Asia/Shanghai 2012-01-18
-1793922 Sucun Sucun Su-ts'un,Su-ts’un,Sucun,Ts'un,Ts’un,su cun,苏村 34.64186 109.85047 P PPLA4 CN 26 0 349 Asia/Chongqing 2012-01-18
-1793928 Suchen Suchen Su-ch'en-chuang,Su-ch’en-chuang,Suchen,Suchen Zhen,su chen,su chen zhen,苏陈,苏陈镇 32.50551 120.01373 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1793953 Songyuan Songyuan Chien-she-chen,Songxi,Songyuan,Songyuan Zhen,Sung-ch'i,Sung-ch'i-hsien,Sung-cheng,Sung-ch’i,Sung-ch’i-hsien,Sung-hsi,Sungki,Sungki-hsien,song xi,song yuan,song yuan zhen,松源,松源镇,松溪 27.5273 118.77657 P PPLA3 CN 07 0 205 Asia/Shanghai 2012-01-18
-1793961 Songyang Songyang Songming,Songyang,Sung-ming,Sung-ming-ch'eng,Sung-ming-ch’eng,Sung-ming-hsien,Sung-yang-chen,song yang,嵩阳 25.32511 103.02982 P PPLA3 CN 29 0 1909 Asia/Chongqing 2012-01-18
-1793968 Songxia Songxia Songxia,Songxia Zhen,Sung-hsia,Sung-hsia-chen,song sha,song sha zhen,崧厦,崧厦镇 30.09763 120.84125 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1793972 Songxi Songxi Songxi,Songxi Zhen,Sung-hsi,song xi,song xi zhen,嵩溪,嵩溪镇 26.26547 116.94507 P PPLA4 CN 07 0 312 Asia/Shanghai 2012-01-18
-1793984 Songshi Songshi Songshi,Songshi Zhen,Sung-shih,song shi,song shi zhen,嵩市,嵩市镇 27.7739 116.91454 P PPLA4 CN 03 0 141 Asia/Shanghai 2012-01-18
-1793989 Songshan Songshan Songshan,Songshan Zhen,Sung-shan,Sung-shan-li,song shan,song shan zhen,松山,松山镇 27.63234 114.65938 P PPLA4 CN 03 0 141 Asia/Shanghai 2012-01-18
-1794001 Songmuping Songmuping Songmuping,Songmuping Zhen,Sung-mu-p'ing,Sung-mu-p’ing,song mu ping,song mu ping zhen,松木坪,松木坪镇 30.13323 111.47902 P PPLA4 CN 12 0 248 Asia/Chongqing 2012-01-18
-1794016 Songkou Songkou Songkou,Songkou Zhen,Sung-k'ou,Sung-k'ou-p'ing,Sung-k'ou-ying,Sung-k’ou,Sung-k’ou-p’ing,Sung-k’ou-ying,song kou,song kou zhen,嵩口,嵩口镇 26.14412 116.88723 P PPLA4 CN 07 0 278 Asia/Shanghai 2012-01-18
-1794019 Songkan Songkan Songkan,Sung-k'an,Sung-k’an 28.54972 106.85972 P PPL CN CN 18 4400 425 Asia/Chongqing 2012-01-18
-1794035 Songjiang Songjiang Songjiang,Songjiang Qu,Sunchiang,Sung-chiang,Sung-chiang-hsien,Sungkiang,Sungkiang-hsien,Sunkiang,Sunkiangfu,song jiang,song jiang qu,松江,松江区 31.03595 121.2146 P PPLA3 CN 23 130218 5 Asia/Shanghai 2012-01-18
-1794044 Songhu Songhu Songhu,Songhu Zhen,Sung-hu,Sung-hu-chieh,song hu,song hu zhen,松湖,松湖镇 28.37898 115.6505 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1794045 Songhe Songhe Songhe,Songhe Zhen,Sung-ho,Sung-ho-cheh,Sung-ho-chen,song he,song he zhen,宋河,宋河镇 31.19647 113.28373 P PPLA4 CN 12 0 70 Asia/Chongqing 2012-01-18
-1794059 Songcun Songcun Songcun,Sung-ts'un,Sung-ts’un,song cun,宋村 29.68106 118.84046 P PPLA4 CN 02 0 188 Asia/Shanghai 2012-01-18
-1794060 Songcheng Songcheng Funing,Funing-fu,Hsia-p'u,Hsia-p'u-hsien,Hsia-p’u,Hsia-p’u-hsien,Siapo,Siapu,Siapu-hsien,Songcheng,Songcheng Jiedao,Xiapu,song cheng,song cheng jie dao,松城,松城街道 26.88194 120.00111 P PPLA4 CN 07 0 22 Asia/Shanghai 2012-01-18
-1794063 Songbu Songbu Songbu,Songbu Zhen,song bu,song bu zhen,宋埠,宋埠镇 28.73306 115.49341 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-18
-1794064 Shangsongfan Shangsongfan Shangsongfan,Songban,Songfan,shang song fan,song fan,上宋畈,宋畈 28.99326 118.52587 P PPLA4 CN 02 0 123 Asia/Shanghai 2012-01-18
-1794067 Songbai Songbai Shen-nung-chia,Shennongjia,Songbai,Sung-hsiang-p'ing,Sung-hsiang-p’ing,song bai,松柏 31.75685 110.67252 P PPLA3 CN 12 0 1166 Asia/Chongqing 2012-01-18
-1794069 Song’ao Song'ao Song'ao,Song'ao Zhen,Song’ao,Song’ao Zhen,Sung-ao,Sung-ao-shih,song ao,song ao zhen,松岙,松岙镇 29.61193 121.6859 P PPLA4 CN 02 0 35 Asia/Shanghai 2012-01-18
-1794087 Sizao Sizao Chung-ssu-tsao,Hsi-ssu-tsao,Sizao,Sizao Zhen,Ssu-tsao,si zao,si zao zhen,四灶,四灶镇 32.84969 120.46302 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1794103 Siyang Siyang Shang-ssu,Shang-ssu-hsien,Shangsi,Shangsze,Shangsze-hsien,Siyang,si yang,思阳 22.16841 107.94309 P PPLA3 CN 16 0 226 Asia/Chongqing 2012-01-18
-1794109 Sicheng Sicheng Sicheng,Sixian,Ssu,Ssu-chou,Ssu-hsien,Suhsien,Szechow,Szehsien,Szu-hsien,si cheng,泗城 33.48936 117.85679 P PPLA3 CN 01 0 20 Asia/Shanghai 2012-01-18
-1794113 Sixi Sixi Sixi,Sixi Zhen,Ssu-hsi,si xi,si xi zhen,泗溪,泗溪镇 28.3135 115.08198 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-18
-1794140 Sishui Sishui Sishui,Ssu-shui,Ssu-shui-hsien,Szeshuihsien 35.64889 117.27583 P PPL CN 25 90175 112 Asia/Shanghai 2012-01-18
-1794152 Sishilijie Sishilijie Sishilijie,Sishilijie Zhen,Ssu-shih-li-chieh,si shi li jie,si shi li jie zhen,四十里街,四十里街镇 29.11392 116.75776 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-18
-1794164 Siquanpu Siquanpu Siquanpu,Siquanpu Zhen,si quan pu,si quan pu zhen,思泉铺,思泉铺镇 28.16724 114.60092 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-18
-1794173 Siqian Siqian Siqian,Siqian Zhen,Ssu-ch'ien,Ssu-ch'ien-chieh,Ssu-ch'ien-chien,Ssu-ch'ing,Ssu-ch’ien,Ssu-ch’ien-chieh,Ssu-ch’ien-chien,Ssu-ch’ing,si qian,si qian zhen,司前,司前镇 24.68896 114.07742 P PPLA4 CN 30 0 219 Asia/Chongqing 2012-01-18
-1794177 Sipu Sipu Sipu,Sipu Xiang,Ssu-p'u,Ssu-p’u,si pu,si pu xiang,司铺,司铺乡 28.43535 117.70868 P PPLA4 CN 03 0 154 Asia/Shanghai 2012-01-18
-1794191 Simingshan Simingshan Simingshan,Simingshan Zhen,si ming shan,si ming shan zhen,四明山,四明山镇 29.73589 121.11021 P PPLA4 CN 02 0 616 Asia/Shanghai 2012-01-18
-1794198 Simenqian Simenqian Simen Qianzhen,Simenqian,Ssu-men-ch'ien,Ssu-men-ch’ien,si men qian,si men qian zhen,司门前,司门前镇 27.48722 110.88611 P PPLA4 CN 11 5640 376 Asia/Chongqing 2012-02-28
-1794204 Simen Simen Simen,Simen Zhen,Ssu-men,Ti-ssu-men,Ti-ssu-men-shih,si men,si men zhen,泗门,泗门镇 30.16167 121.03889 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1794206 Simapu Simapu Simapu,Simapu Zhen,Ssu-ma-p'u,Ssu-ma-p'u-hsu,Ssu-ma-p’u,Ssu-ma-p’u-hsü,si ma pu,司马浦 23.25998 116.36405 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-18
-1794209 Simao Simao Fu-hsing-chen,Simao,Simao Zhen,Ssu-mao,Ssu-mao-chen,Ssu-mao-hsien,Szemao,Szemao-hsien,si mao,si mao zhen,思茅,思茅镇 22.78863 100.97481 P PPLA3 CN 29 0 1331 Asia/Chongqing 2012-01-18
-1794220 Silidian Silidian Silidian,Ssu-li-tien,si li dian,四里店 33.46643 112.91573 P PPLA4 CN 09 0 195 Asia/Chongqing 2012-01-18
-1794224 Sili Sili Sili,Sili Zhen,Ssu-li,si li,si li zhen,泗沥,泗沥镇 28.4 117.16667 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-18
-1794227 Dachangshandao Dachangshandao Ch'ang-hai-hsien,Ch'ang-shan,Changhai,Ch’ang-hai-hsien,Ch’ang-shan,Dachangshandao,Dachangshandao Zhen,Sikuanshi,Ssu-k'uai-shih,Ssu-k’uai-shih,Ta-ch'ang-shan-tao,Ta-ch’ang-shan-tao,da zhang shan dao,da zhang shan dao zhen,大长山岛,大长山岛镇 39.27556 122.6 P PPLA4 CN 19 0 18 Asia/Harbin 2012-01-18
-1794230 Sikou Sikou Sikou,Sikou Zhen,Ssu-k'ou,Ssu-k’ou,si kou,si kou zhen,思口,思口镇 29.35427 117.81226 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-18
-1794231 Sikeshu Sikeshu Sikeshu,si ke shu,四棵树 33.28596 112.34895 P PPLA4 CN 09 0 218 Asia/Chongqing 2012-01-18
-1794234 Sijiu Sijiu Sijiu,Sijiu Zhen,Ssu-chiu,si jiu,si jiu zhen,四九,四九镇 22.21961 112.85357 P PPLA4 CN 30 0 14 Asia/Chongqing 2012-01-18
-1794236 Sijing Sijing Sijing,Ssu-ching,Ssu-ching-chen,Szeking,si jing,泗泾 31.11444 121.26833 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1794247 Sijia Sijia Sijia,Sijia Zhen,Sijiaba,Ssu-chia,Ssu-chia-pa,si jia,si jia zhen,四甲,四甲镇 32.01428 121.27583 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1794274 Sigaozhuang Sigaozhuang Sigaozhuang,Ssu-kao-chuang 39.46778 117.25028 P PPL CN CN 28 1246 4 Asia/Shanghai 2012-01-18
-1794283 Si’en Si'en Huan-chiang,Huanjiang,Si'en,Si’en,Ssu-en,Sze-ngen-hsien,Szeenhsien,Szengen,si en,思恩 24.84198 108.27162 P PPLA3 CN 16 0 233 Asia/Chongqing 2012-01-18
-1794284 Sidui Sidui Nan-ssu-tui,Sidui,Sidui Zhen,Siduijie,Ssu-tui,Ssu-tui-chieh,si dui,si dui zhen,四队,四队镇 34.41667 119.46667 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1794286 Sidu Sidu Sidu,Sidu Zhen,Ssu-tu,si dou,si dou zhen,四都,四都镇 29.15154 114.59024 P PPLA4 CN 03 0 93 Asia/Shanghai 2012-01-18
-1794290 Sidu Sidu Sidu,Sidu Zhen,Ssu-tu,si dou,si dou zhen,四都,四都镇 25.65518 116.19871 P PPLA4 CN 07 0 342 Asia/Shanghai 2012-01-18
-1794291 Sidu Sidu Sidu,Sidu Zhen,Ssu-tu,si dou,四都 23.78356 117.27351 P PPLA4 CN 07 0 13 Asia/Shanghai 2012-01-18
-1794302 Sicheng Sicheng Ling-lo,Ling-lo-hsien,Ling-yun-chen,Ling-yun-hsien,Ling-yün-chen,Ling-yün-hsien,Lingyun,Sicheng,Ssu-ch'eng,Ssu-ch’eng,Sze-cheng-fu,Sze-chêng-fu,Szecheng,si cheng,泗城 24.4054 106.58154 P PPLA3 CN 16 0 1047 Asia/Chongqing 2012-01-18
-1794307 Si’an Si'an Ch'en-chiu-tien,Ch'en-chiu-tien-chen,Chiu-tien,Chiu-tien-chen,Ch’en-chiu-tien,Ch’en-chiu-tien-chen,Si'an,Si'an Zhen,Si’an,Si’an Zhen,Ssu-an,si an,si an zhen,四安,四安镇 32.1349 120.93707 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1794308 Si’an Si'an Si'an,Si'an Zhen,Si’an,Si’an Zhen,Ssu-an,Ssu-an-chen,Szean,si an,si an zhen,泗安,泗安镇 30.89833 119.65361 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-18
-1794310 Shuyuan Shuyuan Shuyuan,Shuyuan Zhen,shu yuan,shu yuan zhen,书院,书院镇 30.93127 121.8601 P PPLA4 CN 23 0 5 Asia/Shanghai 2012-01-18
-1794328 Shuozhou Shuozhou Shohchow,Shohsien,Shosyan',Shosyan’,Shou-hsien,Shuo,Shuo-hsien,Shuoxian,Shuozhou,shuo zhou,朔州 39.31583 112.4225 P PPLA2 CN 24 0 1098 Asia/Chongqing 2012-01-18
-1794371 Shuizhai Shuizhai Shui-chai,Shui-chai-chen,Shui-chai-hsu,Shui-chai-hsü,Shuizhai,Wuhua,shui zhai,水寨 23.92961 115.76499 P PPLA3 CN 30 0 106 Asia/Shanghai 2012-01-18
-1794382 Shuiyang Shuiyang Shui-yang-chen,Shuiyang,Shuiyang Zhen,shui yang,shui yang zhen,水阳,水阳镇 31.22778 118.79077 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-18
-1794387 Shuixi Shuixi Shui-hsi,Shui-hsi-chieh,Shuixi,Shuixi Zhen,shui xi,shui xi zhen,水西,水西镇 27.82305 115.02986 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-18
-1794401 Shuitou Shuitou Jiaokou Xian,Shui-t'ou-chen,Shui-t’ou-chen,Shuitou,Shuitou Zhen,jiao kou xian,shui tou,shui tou zhen,交口县,水头,水头镇 36.97306 111.2091 P PPLA3 CN 24 0 1421 Asia/Chongqing 2012-01-18
-1794410 Shuitianba Shuitianba Shui-t'ien-pa,Shui-t’ien-pa,Shuitianba,Shuitianba Xiang,shui tian ba,shui tian ba xiang,水田坝,水田坝乡 29.4529 109.72055 P PPLA4 CN 11 0 644 Asia/Chongqing 2012-01-18
-1794412 Shuidatian Shuidatian Shui-t'ien,Shui-t’ien,Shuidatian,Shuitian 27.85222 109.60472 P PPL CN CN 11 1080 256 Asia/Chongqing 2012-01-18
-1794426 Shuiqian Shuiqian Shui-ch'ien,Shui-ch’ien,Shuiqian,Shuiqian Xiang,shui qian,shui qian xiang,水茜,水茜乡 26.46659 116.74315 P PPLA4 CN 07 0 375 Asia/Shanghai 2012-01-18
-1794433 Shuinan Shuinan Shui-nan-shih,Shuinan,Shuinan Zhen,shui nan,shui nan zhen,水南,水南镇 26.95787 115.30066 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-18
-1794434 Shuinanxu Shuinanxu Shuinanxu,Shuinanxu Xiang,shui nan wei,shui nan wei xiang,水南圩,水南圩乡 26.83558 116.48561 P PPLA4 CN 03 0 262 Asia/Shanghai 2012-01-18
-1794441 Shuimen Shuimen Shui-men-k'eng,Shui-men-k’eng,Shuimen,Shuimen Shezuxiang,shui men,shui men she zu xiang,水门,水门畲族乡 26.97173 120.06896 P PPLA4 CN 07 0 354 Asia/Shanghai 2012-01-18
-1794448 Shuikou Shuikou Shui-k'ou-hsu,Shui-k’ou-hsu,Shuikou,Shuikouxu,shui kou,shui kou zhen,水口,水口镇 25.15492 114.47553 P PPLA4 CN 30 0 125 Asia/Shanghai 2012-02-28
-1794455 Shuikou Shuikou Shuikou,Shuikou Zhen,shui kou,shui kou zhen,水口,水口镇 34.97179 107.99847 P PPLA4 CN 26 0 1273 Asia/Chongqing 2012-01-18
-1794459 Shuikou Shuikou Shiakou,Shui-kow,Shuikou,Shuikou Zhen,shui kou,shui kou zhen,水口,水口镇 26.3836 118.73027 P PPLA4 CN 07 3760 68 Asia/Shanghai 2012-01-18
-1794465 Shuikou Shuikou Shui-k'ou-hsu,Shui-k’ou-hsü,Shuikou,Shuikou Zhen,shui kou,水口 23.98584 115.89368 P PPLA4 CN 30 0 109 Asia/Shanghai 2012-01-18
-1794479 Laixi Laixi Lai-hsi,Laixi,Laixi Shi,Shui-chi,Shui-kou-t'ou,Shui-kou-t’ou,Shuiji,Shuikowtow 36.85917 120.52694 P PPL CN 25 75849 54 Asia/Shanghai 2012-01-18
-1794480 Shuiji Shuiji Shui-chi,Shui-chi-hsien,Shuiji,Shuiji Zhen,Shuiki,Shuiki-hsien,shui ji,shui ji zhen,水吉,水吉镇 27.42139 118.34502 P PPLA4 CN 07 0 153 Asia/Shanghai 2012-01-18
-1794481 Shuihu Shuihu Changfeng,Shui-chia-hu,Shuihu,Shuijiahu,Sui-chia-hu,shui hu,水湖 32.47667 117.15778 P PPLA3 CN 01 0 30 Asia/Shanghai 2012-01-18
-1794486 Shuigou Shuigou Shui-kou,Shuigou,Shuigou Zhen,shui gou,shui gou zhen,水沟,水沟镇 34.74858 107.01279 P PPLA4 CN 26 0 804 Asia/Chongqing 2012-01-18
-1794496 Shuidong Shuidong Shui-tung,Shui-tung-chen,Shuidong,Shuidong Zhen,shui dong,shui dong zhen,水东,水东镇 30.78833 118.95444 P PPLA4 CN 01 0 36 Asia/Shanghai 2012-01-18
-1794499 Shuidong Shuidong Shui-tang-shih,Shui-tung,Shui-tung-chen,Shuidong,Sui-tung,Tien-pai,shui dong,水东 21.52337 110.98538 P PPLA3 CN 30 0 14 Asia/Chongqing 2012-01-18
-1794506 Shuichun Shuichun Shuichun,Shuicun,shui chun,水唇 23.32559 115.72513 P PPLA4 CN 30 0 96 Asia/Shanghai 2012-01-18
-1794511 Shuiche Shuiche 27.68694 110.99972 P PPL CN 11 3550 447 Asia/Chongqing 2004-06-29
-1794518 Shuibu Shuibu Shuibu,Shuibu Zhen,shui bu,shui bu zhen,水步,水步镇 22.3356 112.79248 P PPLA4 CN 30 0 11 Asia/Chongqing 2012-01-18
-1794521 Shuibian Shuibian Shui-pien,Shuibian,Shuibian Zhen,Xiajiang Xian,shui bian,shui bian zhen,xia jiang xian,峡江县,水边,水边镇 27.60805 115.32636 P PPLA3 CN 03 0 45 Asia/Shanghai 2012-01-18
-1794524 Shuibei Shuibei Shui-pei,Shui-pei-chieh,Shuibei,Shuibei Zhen,shui bei,shui bei zhen,水北,水北镇 28.04118 115.05725 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-18
-1794525 Shuibeijie Shuibeijie Shui-pei,Shuibei,Shuibeijie,Shuibeijie Zhen,shui bei jie,shui bei jie zhen,水北街,水北街镇 27.69056 118.57083 P PPLA4 CN 07 0 223 Asia/Shanghai 2012-01-18
-1794532 Shuhe Shuhe Shih-ho-chen,Shu-ho-chen,Shuhe,Shuhezhen,Zhiliang,shu he,shu he zhen,zhi liang,志良,竖河,竖河镇 31.9925 121.61417 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1794545 Shucheng Chengguanzhen Shucheng Chengguanzhen Shu-ch'eng-hsien,Shu-ch’eng-hsien,Shucheng,Shucheng Chengguanzhen,shu cheng cheng guan zhen,舒城城关镇 31.4444 116.94717 P PPLA3 CN 01 0 22 Asia/Shanghai 2012-01-18
-1794550 Shuangzhong Shuangzhong Hu-k'ou-hsien,Hu-k'ou-hsien-ch'eng,Hu-k’ou-hsien,Hu-k’ou-hsien-ch’eng,Hukou,Hukou Xian,Hukow,Hukow-hsien,Shuangzhong,Shuangzhong Zhen,hu kou,hu kou xian,shuang zhong,shuang zhong zhen,双钟,双钟镇,湖口,湖口县 29.74296 116.22426 P PPLA3 CN 03 0 41 Asia/Shanghai 2012-01-18
-1794551 Shuangzhao Shuangzhao Shuang-chao,Shuang-chao-chen,Shuang-chao-ling,Shuang-chao-p'u,Shuang-chao-p’u,Shuangzhao,Shuangzhao Zhen,shuang zhao,shuang zhao zhen,双照,双照镇 34.40222 108.61722 P PPLA4 CN 26 0 500 Asia/Chongqing 2012-01-18
-1794561 Shuangxikou Shuangxikou Shuang-ch'i-k'ou,Shuang-ch’i-k’ou,Shuangxikou,Shuangxikou Xiang,shuang xi kou,shuang xi kou xiang,双溪口,双溪口乡 29.25 111.36667 P PPLA4 CN 11 0 63 Asia/Chongqing 2012-01-18
-1794565 Shuangxiqiao Shuangxiqiao Shuangxi,Shuangxiqiao,Shuangxiqiao Zhen,shuang xi,shuang xi qiao,shuang xi qiao zhen,双溪,双溪桥,双溪桥镇 29.927 114.48085 P PPLA4 CN 12 0 66 Asia/Shanghai 2012-01-18
-1794567 Shuangxi Shuangxi Ching-an,Ching-an-ch'eng,Ching-an-ch’eng,Ching-an-hsien,Jing'an Xian,Jing’an Xian,Shuangxi,Shuangxi Zhen,Tsingan,Tsingan-hsien,Tsingonhsien,jing an xian,shuang xi,shuang xi zhen,双溪,双溪镇,靖安县 28.86295 115.35194 P PPLA3 CN 03 0 68 Asia/Shanghai 2012-02-02
-1794569 Shuangxi Shuangxi Shuang-hsi,Shuangxi 27.22833 109.85583 P PPL CN CN 11 1040 238 Asia/Chongqing 2012-01-18
-1794570 Shuangxi Shuangxi Ch'iu-p'ing-nan,Ch’iu-p’ing-nan,P'ing-nam,P’ing-nam,Shuang-hsi,Shuangxi,shuang xi,双溪 27.02248 119.0414 P PPL CN 07 3980 843 Asia/Shanghai 2012-01-18
-1794576 Shuangwang Shuangwang Shuangwang,Shuangwang Xiang,shuang wang,双王 34.52649 109.48977 P PPLA4 CN 26 0 347 Asia/Chongqing 2012-01-18
-1794585 Shuangtang Shuangtang Shuangtang,Shuangtang Zhen,shuang tang,shuang tang zhen,双塘,双塘镇 28.03596 116.73216 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-18
-1794591 Shuangshu Shuangshu 39.56389 117.02444 P PPL CN 28 2134 12 Asia/Shanghai 2000-11-21
-1794593 Shuangshipu Shuangshipu Feng,Feng-hsien,Fengxian,Shuang-shi-chen,Shuang-shih-chen,Shuang-shih-p'u,Shuang-shih-p’u,Shuangshipu,Shuangshipu Zhen,Shwangshih-chen,feng xian,shuang shi pu,shuang shi pu zhen,凤县,双石铺,双石铺镇 33.91705 106.52466 P PPLA3 CN 26 0 962 Asia/Chongqing 2012-01-18
-1794605 Shuangqiaoping Shuangqiaoping Shuangqiaoping,Shuangqiaoping Zhen,shuang qiao ping,shuang qiao ping zhen,双桥坪,双桥坪镇 29.2662 111.77283 P PPLA4 CN 11 0 53 Asia/Shanghai 2012-01-18
-1794626 Longbo Longbo Longbo,Longbozhen,Shuangpai,long po,泷泊 25.92922 111.6222 P PPLA3 CN 11 0 557 Asia/Chongqing 2012-01-18
-1794627 Shuangnian Shuangnian Shuang-nien,Shuang-nien-ts'un,Shuang-nien-ts’un,Shuangnian,Shuangnian Xiang,shuang nian,shuang nian xiang,双碾,双碾乡 39.63547 112.10074 P PPLA4 CN 24 0 1598 Asia/Chongqing 2012-01-18
-1794633 Shuangmiao Shuangmiao Shuang-miao-chieh,Shuangmiao,shuang miao,双庙 33.9075 113.63424 P PPLA4 CN 09 0 82 Asia/Shanghai 2012-01-18
-1794653 Dongsheng Dongsheng Dongsheng,Shuang-liu-ch'eng-kuan-chen,Shuang-liu-ch’eng-kuan-chen,Shuang-liu-hsien,Shuangliu,Shuanlyu,Shwangliu,Shwangliu-hsien,dong sheng,东升 30.57383 103.92127 P PPLA3 CN 32 0 509 Asia/Chongqing 2012-01-18
-1794654 Shuangliu Shuangliu Shuangliu,Shuangliu Jiedao,shuang liu,shuang liu jie dao,双柳,双柳街道 30.5922 114.64179 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-18
-1794658 Shuanglin Shuanglin Shuang-lin-chen,Shuanglin,Shuanglin Zhen,Songlin,shuang lin,shuang lin zhen,双林,双林镇 30.78117 120.3144 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1794659 Shuanglin Shuanglin Shuanglin,Shuanglin Zhen,shuang lin,shuang lin zhen,双林,双林镇 27.93996 114.75533 P PPLA4 CN 03 0 90 Asia/Shanghai 2012-01-18
-1794685 Shuangjiang Shuangjiang Shuang-chiang,Shuang-chiang-k'ou,Shuang-chiang-k’ou,Shuangjiang,T'ung-tao,T'ung-tao-t'ung-tsu-tzu-chih-hsien,Tongdao,T’ung-tao,T’ung-tao-t’ung-tsu-tzu-chih-hsien,shuang jiang,双江 26.15467 109.7138 P PPLA3 CN 11 8320 525 Asia/Chongqing 2012-01-18
-1794688 Shuangjiang Shuangjiang Eshan,Eshan Yizu Zizhixian,Hsi-o,Ngeshan-hsien,O-shan,O-shan-hsien,O-shan-hsien-i-tsu-tzu-chih-ch'u,O-shan-hsien-i-tsu-tzu-chih-ch’ü,O-shan-i-tsu-tzu-chih-hsien,Shuangjiang,Shuangjiang Zhen,Sihohsien,e shan yi zu zi zhi xian,shuang jiang,shuang jiang zhen,双江,双江镇,峨山彝族自治县 24.17261 102.40049 P PPLA3 CN 29 0 1544 Asia/Chongqing 2012-01-18
-1794712 Shuanghe Shuanghe Shuang-ho,Shuanghe,Shuanghe Xiang,shuang he,shuang he xiang,双河,双河乡 31.6744 112.81486 P PPLA4 CN 12 0 167 Asia/Chongqing 2012-01-18
-1794715 Shuanghe Shuanghe Shuang-ho,Shuang-ho-k'ou,Shuang-ho-k’ou,Shuanghe,Shuanghe Zhen,shuang he,shuang he zhen,双河,双河镇 31.28078 112.27057 P PPLA4 CN 12 0 58 Asia/Chongqing 2012-01-18
-1794732 Shuangjiang Shuangjiang Shuang-lin,Shuanggang,Shuangjiang 39.04 117.30389 P PPL CN CN 28 3914 1 Asia/Shanghai 2012-01-18
-1794733 Shuanggang Shuanggang Shuang-chiang,Shuang-kang,Shuanggang,Shuanggang Zhen,shuang gang,shuang gang zhen,双港,双港镇 34.26667 119.66667 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1794747 Shuangfeng Shuangfeng Shuang-feng-chen,Shuangfeng,Shuangfeng Zhen,shuang feng,shuang feng zhen,双凤,双凤镇 31.51417 121.03093 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1794757 Shuangdian Shuangdian Shuang-tien,Shuang-tien-chen,Shuangdian,Shuangdian Zhen,shuang dian,shuang dian zhen,双甸,双甸镇 32.35 120.81667 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1794762 Shuangcheng Shuangcheng Che-jung,Che-jung-hsien,Che-jung-hsien-ch'eng,Che-jung-hsien-ch’eng,Che-yang,Shuangcheng,Zherong,shuang cheng,双城 27.24 119.89444 P PPLA3 CN 07 0 666 Asia/Shanghai 2012-01-18
-1794766 Shuangbaiyang Shuangbaiyang Shuang-pai-yang,Shuangbaiyang,shuang bai yang,双白杨 34.57408 107.03073 P PPLA4 CN 26 0 800 Asia/Chongqing 2012-01-18
-1794779 Chaoyang Chaoyang Chaoyang,Chaoyang Zhen,Shaoyang,Shou-yang-hsien,Shouyang,Shouyang Xian,Showyang,chao yang,chao yang zhen,shou yang xian,寿阳县,朝阳,朝阳镇 37.90801 113.15044 P PPLA3 CN 24 0 1062 Asia/Shanghai 2012-02-02
-1794781 Shouchun Shouchun Shou,Shou-hsien,Shouchun,Shouxian,Shouyang,Showchow,Showhsien,Shuo-hsien,shou chun,寿春 32.58162 116.79292 P PPLA3 CN 01 0 18 Asia/Shanghai 2012-01-18
-1794788 Shoushan Shoushan 26.96444 119.16167 P PPL CN 07 1470 940 Asia/Shanghai 2001-01-05
-1794794 Shouguang Shouguang Chiu-shou-kuang,Shou-kuang,Shou-kuang-hsien,Shouguan,Shouguang,Showkwang,Шоугуан 36.88 118.7375 P PPL CN 25 79212 26 Asia/Shanghai 2012-01-18
-1794806 Shizuishan Shizuishan Shih-tsui,Shih-tsui-shan,Shih-tsui-shan-shih,Shih-tsui-tzu,Shitszuyshan',Shitszuyshan’,Shizuishan 39.23333 106.76944 P PPL CN 21 136570 1103 Asia/Chongqing 2012-01-18
-1794810 Shizong Shizong Shih-tsung,Shih-tsung-tien,Shizong,Shizong Zhen,shi zong,shi zong zhen,十总,十总镇 32.19383 121.12374 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1794819 Shizi Shizi Shih-tzu-p'u,Shih-tzu-p’u,Shizi,Shizi Zhen,Shizipu,shi zi,shi zi zhen,十字,十字镇 30.98056 119.12806 P PPLA4 CN 01 0 32 Asia/Shanghai 2012-01-18
-1794825 Shizilu Shizilu Chu-nan,Chü-nan,Junan,Shih-tzu-lu,Shizilu 35.17111 118.82889 P PPL CN 25 86749 101 Asia/Shanghai 2012-01-18
-1794831 Shizikou Shizikou Shih-tzu-k'ou,Shih-tzu-k’ou,Shizikou,Shizikou Zhen,shi zi kou,shi zi kou zhen,狮子口,狮子口镇 29.9872 112.01302 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-18
-1794855 Shizhuang Shizhuang Shih-chuang,Shih-chuang-chen,Shizhuang,Shizhuang Zhen,shi zhuang,shi zhuang zhen,石庄,石庄镇 32.14028 120.52472 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1794856 Shizhuang Shizhuang Shih-chuang,Shih-chuang-chen,Shizhuang,Shizhuang Zhen,shi zhuang,shi zhuang zhen,石庄,石庄镇 31.91843 120.0246 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1794865 Shizhen Shizhen Shih-chen,Shih-chen-chieh,Shizhen,Shizhen Zhen,Shizhenjie,shi zhen,shi zhen zhen,石镇,石镇镇 28.85425 116.96622 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-18
-1794875 Shiyun Shiyun Shiyun,Shiyun Xiang,shen yun,shen yun xiang,什运,什运乡 18.99482 109.6008 P PPLA4 CN 31 0 248 Asia/Chongqing 2012-01-18
-1794902 Shiyan Shiyan Shih-tien,Shih-yen,Shih-yen-chen,Shiyan,Shiyan Zhen,shi yan,shi yan zhen,时堰,时堰镇 32.715 120.17528 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-18
-1794903 Shiyan Shiyan Shih-yen,Shih-yen-chen,Shih-yen-shih,Shijan',Shiyan,Shiyan Shi,shi yan,shi yan shi,Шиянь,十堰,十堰市 32.6475 110.77806 P PPLA2 CN 12 3460000 247 Asia/Chongqing 2012-01-18
-1794904 Shiyan Shiyan Shih-yen,Shijan,Shiyan,Шиян 32.56667 110.78333 P PPL CN 12 408055 318 Asia/Chongqing 2011-08-07
-1794920 Shijiang Shijiang Shih-hsia-chiang,Shijiang,Shixiajiang,Yu-hsia-chiang 27.08194 110.79333 P PPL CN CN 11 9330 277 Asia/Chongqing 2012-01-18
-1794923 Shixia Shixia Shih-hsia,Shixia,shi xia,石峡 33.7834 105.38769 P PPLA4 CN 15 0 1409 Asia/Chongqing 2012-01-18
-1794925 Shixia Shixia Shih-hsia,Shixia,Shixia Xiang,shi xia,shi xia xiang,石峡,石峡乡 27.67312 116.90212 P PPLA4 CN 03 0 175 Asia/Shanghai 2012-01-18
-1794947 Shiwan Shiwan Shih-wan,Shiwan,shi wan,石湾 22.99693 113.07988 P PPL CN 30 82031 17 Asia/Chongqing 2012-01-18
-1794971 Shitanjing Shitanjing Shih-t'an-ching,Shih-t’an-ching,Shitanjing 39.23417 106.34389 P PPL CN 21 78765 1428 Asia/Chongqing 2012-01-18
-1794981 Shitang Shitang Shih-t'ang,Shih-t’ang,Shitang,Shitang Zhen,shi tang,shi tang zhen,石塘,石塘镇 28.1142 117.84493 P PPLA4 CN 03 0 148 Asia/Shanghai 2012-01-18
-1794987 Shitan Shitan Shih-t'an,Shih-t’an,Shitan,Shitan Zhen,shi tan,shi tan zhen,石潭,石潭镇 34.57484 108.35744 P PPLA4 CN 26 0 703 Asia/Chongqing 2012-01-18
-1794989 Shitan Shitan Shih-t'an,Shih-t'an-chieh,Shih-t’an,Shih-t’an-chieh,Shitan,Shitan Zhen,shi tan,shi tan zhen,石滩,石滩镇 28.12991 115.83805 P PPLA4 CN 03 0 28 Asia/Shanghai 2012-01-18
-1794991 Shitan Shitan Shih-t'an,Shih-t’an,Shitan,Shitan Zhen,shi tan,shi tan zhen,石潭,石潭镇 24.1254 112.76451 P PPLA4 CN 30 0 67 Asia/Chongqing 2012-01-18
-1794992 Shitan Shitan Shitan,Shitan Zhen,shi tan,石滩 23.17444 113.78786 P PPLA4 CN 30 0 14 Asia/Chongqing 2012-01-18
-1794996 Qili Qili Ch'i-li,Ch’i-li,Qili,Shih-t'ai,Shih-t’ai,Shitai,qi li,七里 30.19906 117.47798 P PPLA3 CN 01 0 108 Asia/Shanghai 2012-01-18
-1795013 Shishan Shishan Shishan,Shishan Xiang,shi shan,shi shan xiang,市山,市山乡 27.2122 116.49618 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-18
-1795027 Shiqiu Shiqiu Shiqiu,Shiqiu Zhen,shi jiao,shi jiao zhen,石湫,石湫镇 31.64932 118.92374 P PPLA4 CN 04 0 13 Asia/Shanghai 2012-01-18
-1795039 Shiqiao Shiqiao Shih-ch'iao,Shih-ch’iao,Shiqiao,shi qiao,石桥 34.75861 108.65944 P PPLA4 CN 26 0 757 Asia/Chongqing 2012-01-18
-1795042 Shiqiao Shiqiao Shih-ch'iao,Shih-ch’iao,Shiqiao,Shiqiao Xiang,shi qiao,shi qiao xiang,石桥,石桥乡 33.92503 113.89814 P PPLA4 CN 09 0 64 Asia/Shanghai 2012-01-18
-1795048 Shiqiaoyi Shiqiaoyi Shih-ch'iao,Shih-ch’iao,Shiqiao,Shiqiaoyi,Shiqiaoyi Xiang,shi qiao yi,shi qiao yi xiang,石桥驿,石桥驿乡 31.25813 112.21842 P PPLA4 CN 12 0 64 Asia/Chongqing 2012-01-18
-1795055 Shiqiao Shiqiao P'an-yu-hsien,Panyu,P’an-yu-hsien,Shekkiu,Shih-ch'iao,Shih-ch'iao-chen,Shih-ch’iao,Shih-ch’iao-chen,Shikiu,Shiqiao,fan yu,shi qiao,市桥,番禺 22.93736 113.36063 P PPL CN 30 135308 9 Asia/Chongqing 2012-01-18
-1795058 Shiqian Shiqian Shih-ch'ien,Shih-ch'ien-hsien,Shih-ch’ien,Shih-ch’ien-hsien,Shihtsien,Shihtsien-hsien,Shiqian 27.5225 108.22806 P PPL CN CN 18 9571 477 Asia/Chongqing 2012-01-18
-1795060 Shiqi Shiqi Chung-shan,Chung-shan-ku-chih,Heungschan,Heungshan,Hsiang-shan,Shekki,Shih-ch'i,Shih-ch'i-chen,Shih-ch’i,Shih-ch’i-chen,Shiqi,Shiqi Jiedao,Shiqizhen,Zhongshan,shi qi,shi qi jie dao,石岐,石岐街道 22.51682 113.38521 P PPLA3 CN 30 342306 8 Asia/Chongqing 2012-01-18
-1795074 Yilong Yilong Shih-p'ing,Shih-p'ing-hsien,Shih-p’ing,Shih-p’ing-hsien,Shihpingchow,Shiping,Yilong,yi long,异龙 23.69137 102.48701 P PPLA3 CN 29 0 1435 Asia/Chongqing 2012-01-18
-1795083 Shipai Shipai Shih-p'ai,Shih-p'ai-chen,Shih-p’ai,Shih-p’ai-chen,Shipai,Shipai Zhen,shi pai,shi pai zhen,石牌,石牌镇 30.98639 112.50087 P PPLA4 CN 12 0 48 Asia/Chongqing 2012-01-18
-1795085 Shipaidong Shipaidong Shipai,Shipai Zhen,Shipaidong,shi pai dong,shi pai zhen,石牌洞,石牌镇 29.57271 109.58689 P PPLA4 CN 11 0 560 Asia/Chongqing 2012-01-18
-1795093 Shinao Shinao Shih-nao,Shih-nao-hsu,Shih-nao-hsü,Shinao,Shinao Zhen,shi nao,shi nao zhen,石脑,石脑镇 28.39085 115.29059 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-18
-1795095 Shinan Shinan Shih-nan,Shinan,shi nan,石南 22.75584 109.85384 P PPLA3 CN 16 0 137 Asia/Chongqing 2012-01-18
-1795112 Shimenqiao Shimenqiao Shih-men-ch'iao,Shih-men-ch’iao,Shimenqiao,Shimenqiao Zhen,shi men qiao,shi men qiao zhen,石门桥,石门桥镇 28.90522 111.73606 P PPLA4 CN 11 0 37 Asia/Shanghai 2012-01-18
-1795113 Shimenlou Shimenlou Shih-men-lou,Shimenlou,Shimenlou Zhen,shi men lou,shi men lou zhen,石门楼,石门楼镇 28.9705 114.85411 P PPLA4 CN 03 0 291 Asia/Shanghai 2012-01-18
-1795121 Shimenjie Shimenjie Shih-men,Shih-men-chieh,Shihmenkai,Shimenjie,Shimenjie Zhen,shi men jie,shi men jie zhen,石门街,石门街镇 29.57747 116.76706 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-18
-1795127 Shimen Shimen Shih-men,Shih-men-ts'un,Shih-men-ts’un,Shimen,Shimen Xiang,shi men,shi men xiang,石门,石门乡 35.25611 111.54222 P PPLA4 CN 24 0 815 Asia/Chongqing 2012-01-18
-1795132 Shimen Shimen Shimen,shi men,石门 33.28855 112.48454 P PPLA4 CN 09 0 183 Asia/Chongqing 2012-01-18
-1795136 Shimen Shimen Shih-men,Shih-men-wan,Shih-men-wan-chen,Shih-wan-chen,Shimen,Shimen Zhen,shi men,shi men zhen,石门,石门镇 30.62747 120.44249 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1795139 Shimen Shimen Chujiang,Shih-men,Shih-men-hsien,Shimen,Shimen Xian,chu jiang,shi men,shi men xian,楚江,石门,石门县 29.57833 111.36944 P PPLA3 CN 11 0 51 Asia/Chongqing 2012-01-18
-1795142 Shimen Shimen Shih-men,Shimen,Shimen Xiang,shi men,shi men xiang,石门,石门乡 27.77936 116.65889 P PPLA4 CN 03 0 56 Asia/Shanghai 2012-01-18
-1795165 Shima Shima Shih-ma,Shih-ma-hsu,Shih-ma-hsü,Shima,Shima Zhen,shi ma,shi ma zhen,石马,石马镇 26.99594 115.74255 P PPLA4 CN 03 0 174 Asia/Shanghai 2012-01-18
-1795166 Shima Shima Longhai,Lung-hai,Shih-ma,Shih-ma-chen,Shima,Шима 24.44778 117.81111 P PPL CN 07 68375 9 Asia/Shanghai 2012-01-18
-1795172 Lingquan Lingquan Lingquan,Lingquan Zhen,Shih-lou,Shih-lou-hsien,Shihlowhsien,Shilou,Shilou Xian,ling quan,ling quan zhen,shi lou xian,灵泉,灵泉镇,石楼县 36.99949 110.844 P PPLA3 CN 24 0 973 Asia/Chongqing 2012-01-18
-1795178 Shilong Shilong Shilong,Shilong Zhen,shi long,shi long zhen,石龙,石龙镇 30.89541 112.84217 P PPLA4 CN 12 0 41 Asia/Chongqing 2012-01-18
-1795184 Shilong Shilong Shehlung,Sheklung,Shih-lung,Shilong,Shilong Zhen,shi long,石龙 23.11227 113.84248 P PPL CN 30 109733 14 Asia/Chongqing 2012-01-18
-1795186 Shiliyuan Shiliyuan Shih-li-yuan,Shih-li-yüan,Shiliping,Shiliyuan,shi li yuan,十里塬 34.89694 108.475 P PPLA4 CN 26 0 1134 Asia/Chongqing 2012-01-18
-1795192 Shilu Shilu Ch'ang-chiang,Changjiang,Changjiang Lizu Zizhi Xian,Ch’ang-chiang,Shih-liu,Shih-lu,Shih-lu-chen,Shih-lu-ling,Shiliu,Shilu,Shilu Zhen,chang jiang li zu zi zhi xian,shi lu,shi lu zhen,昌江黎族自治县,石碌,石碌镇 19.25984 109.04884 P PPLA3 CN 31 0 89 Asia/Chongqing 2012-01-18
-1795196 Tongchuan Tongchuan Shih-li-p'u,Shih-li-p’u,Shilipu,T'ung-ch'uan,T'ung-ch'uan-shih,Tongchuan,T’ung-ch’uan,T’ung-ch’uan-shih 35.08056 109.08972 P PPL CN 26 223603 851 Asia/Chongqing 2012-01-18
-1795200 Shilipu Shilipu Shih-li-p'u,Shih-li-p’u,Shilipu,Shilipu Zhen,shi li pu,shi li pu zhen,十里铺,十里铺镇 30.60929 112.18066 P PPLA4 CN 12 0 61 Asia/Chongqing 2012-01-18
-1795221 Shiliang Shiliang Shih-liang,Shih-liang-shih,Shiliang,Shiliang Zhen,shi liang,shi liang zhen,石梁,石梁镇 29.0202 118.78505 P PPLA4 CN 02 0 119 Asia/Shanghai 2012-01-18
-1795226 Shilaoren Shilaoren Shilaoren,Shilaorencun 36.09778 120.49083 P PPL CN CN 25 3355 39 Asia/Shanghai 2012-01-18
-1795234 Shikou Shikou Shih-k'ou,Shih-k’ou,Shikou,Shikou Zhen,shi kou,shi kou zhen,石口,石口镇 28.82909 116.62511 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1795261 Shijing Shijing Shih-ching,Shihtsing,Shijing,shi jing,石井 24.61956 118.42437 P PPL CN 07 4000 16 Asia/Shanghai 2012-01-18
-1795265 Shijie Shijie Shih-chieh-tu,Shijie,Shijie Zhen,Shijiedu,shi jie,shi jie zhen,誓节,誓节镇 30.94257 119.21997 P PPLA4 CN 01 0 28 Asia/Shanghai 2012-01-18
-1795268 Shijiazhuang Shijiazhuang Shiczjachzhuan,Shih-chia-chuang,Shijiazhuang,Shijiazhuang Zhen,shi jia zhuang,shi jia zhuang zhen,Шицзячжуан,石家庄,石家庄镇 38.57535 112.01593 P PPLA4 CN 24 0 1332 Asia/Chongqing 2012-01-18
-1795270 Shijiazhuang Shijiazhuang Chen-t'ou,Chen-t’ou,Chentow,Shiczjachzhuan,Shidzjadzhuan,Shih-chia-chuang,Shih-chia-chuang-shih,Shih-chuang-shih,Shih-men,Shih-men-shih,Shihjiazhuang,Shihkiachwan,Shihkiachwang,Shijiazhuang,Shijiazhuang Shi,Shitszyachzhuan,Thach Gia Trang,Thạch Gia Trang,shi jia zhuang,shi jia zhuang shi,Шидзяджуан,Шицзячжуан,شىجياجۇاڭ شەھىرى,石家庄,石家庄市,石家荘市 38.04139 114.47861 P PPLA CN 10 1992474 77 Asia/Shanghai 2012-01-18
-1795299 Shijiaochang Shijiaochang Shih-chiao,Shijiao,Shijiaochang 28.92444 106.75611 P PPL CN CN 33 2000 365 Asia/Chongqing 2012-01-18
-1795300 Shijiao Shijiao Fakang,Fatkong,Fatkong-hsien,Fatkongting,Fo-kang,Fo-kang-hsien,Fogang,Fukang,Shih-chiao,Shih-chiao-chen,Shih-chueh,Shijiao,shi jiao,石角 23.86438 113.53863 P PPLA3 CN 30 0 73 Asia/Chongqing 2012-01-18
-1795301 Shijiao Shijiao Shih-chiao,Shih-chiao-hsu,Shih-chiao-hsü,Shijiao,Shijiao Zhen,shi jiao,石角 23.55837 112.96237 P PPLA4 CN 30 0 11 Asia/Chongqing 2012-01-18
-1795303 Shijiang Shijiang Shijiang,Shijiang Xiang,shi jiang,shi jiang xiang,石江,石江乡 27.82162 115.7241 P PPLA4 CN 03 0 140 Asia/Shanghai 2012-01-18
-1795315 Shijia Shijia Shih-chia,Shih-chia-chen,Shijia,Shijia Zhen,shi jia,施家 34.81771 109.38321 P PPLA4 CN 26 0 394 Asia/Chongqing 2012-01-18
-1795326 Shihuiqiao Shihuiqiao Shih-hui-ch'iao,Shih-hui-ch’iao,Shihuiqiao,Shihuiqiao Zhen,shi hui qiao,shi hui qiao zhen,拾回桥,拾回桥镇 30.55319 112.27233 P PPLA4 CN 12 0 36 Asia/Chongqing 2012-01-18
-1795327 Shihuipu Shihuipu Shihuipu,Shihuipu Zhen,shi hui pu,shi hui pu zhen,石灰铺,石灰铺镇 24.25969 113.22582 P PPLA4 CN 30 0 44 Asia/Chongqing 2012-01-18
-1795331 Shihudang Shihudang Shih-hu-tang,Shihudang,shi hu dang,石湖荡 30.98516 121.11446 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-18
-1795333 Shihuang Shihuang Shih-huang,Shih-huang-shih,Shihuang,Shihuang Zhen,shi huang,shi huang zhen,石璜,石璜镇 29.53934 120.65236 P PPLA4 CN 02 0 42 Asia/Shanghai 2012-01-18
-1795351 Shigutang Shigutang Shigutang,Shigutang Zhen,Shih-ku-hsu,Shih-ku-hsü,Shih-ku-t'ang,Shih-ku-t’ang,shi gu tang,shi gu tang zhen,石牯塘,石牯塘镇 24.35108 113.1475 P PPLA4 CN 30 0 80 Asia/Chongqing 2012-01-18
-1795370 Shigou Shigou Shigou,Shih-kou,Ssu-kou,shi gou,柿沟 34.69656 107.05371 P PPLA4 CN 26 0 775 Asia/Chongqing 2012-01-18
-1795373 Shigongqiao Shigongqiao Shigongqiao,Shigongqiao Zhen,Shih-kong-chow,Shihkungkiao,shi gong qiao,shi gong qiao zhen,石公桥,石公桥镇 29.18333 111.86667 P PPLA4 CN 11 0 25 Asia/Chongqing 2012-01-18
-1795385 Shigang Shigang Shigang,Shigang Zhen,Shih-chiang,Shih-chiang-chen,Shih-kang,Shih-kang-chen,Shihkiang,shi gang,shi gang zhen,石港,石港镇 32.2174 120.97229 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1795389 Shigang Shigang Shigang,Shigang Zhen,shi gang,shi gang zhen,石岗,石岗镇 28.44311 115.62534 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-18
-1795392 Shifosi Shifosi Hsin-min-shih,Shifosi,Shifosi Zhen,Shih-fo-ssu,shi fu si,shi fu si zhen,石佛寺,石佛寺镇 33.07912 112.1556 P PPLA4 CN 09 0 192 Asia/Chongqing 2012-01-18
-1795394 Shifosi Shifosi Shifosi,Shifosi Zhen,shi fu si,shi fu si zhen,石佛寺,石佛寺镇 29.95205 115.62444 P PPLA4 CN 12 0 40 Asia/Shanghai 2012-01-18
-1795401 Shifang Shifang Shifang,shi fang,石坊 33.00275 104.57145 P PPLA4 CN 15 0 1002 Asia/Chongqing 2012-01-18
-1795402 Shifang Shifang Shifang,Shifang Zhen,Shih-fang,shi fang,shi fang zhen,十方,十方镇 25.0349 116.22392 P PPLA4 CN 07 0 275 Asia/Shanghai 2012-01-18
-1795413 Shidu Shidu Shidu,Shidu Xiang,Shih-tu,shi du,shi du xiang,石渡,石渡乡 29.21143 114.93247 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-18
-1795424 Shidixi Shidixi Shidi,Shidi Zhen,Shidixi,Shih-t'i-hsi,Shih-t'ien-ch'i,Shih-ti-ch'i,Shih-ti-ch’i,Shih-t’i-hsi,Shih-t’ien-ch’i,shi di,shi di xi,shi di zhen,石堤,石堤西,石堤镇 29.04282 110.10288 P PPLA4 CN 11 0 461 Asia/Chongqing 2012-01-18
-1795428 Shide Shide Shide,Shide Zhen,Shih-te,Shih-te-chen,Shih-te-ts'un,Shih-te-ts’un,shi de,shi de zhen,史德,史德镇 34.39111 108.42722 P PPLA4 CN 26 0 533 Asia/Chongqing 2012-01-18
-1795437 Xincheng Xincheng Hsiang-fen,Hsiang-fen-hsien,Shicun,Shih-ts'un,Shih-ts'un-chen,Shih-ts’un,Shih-ts’un-chen,Xiangfen,Xiangfen Xian,Xincheng,Xincheng Zhen,xiang fen xian,xin cheng,xin cheng zhen,新城,新城镇,襄汾县 35.875 111.43528 P PPLA3 CN 24 0 434 Asia/Chongqing 2012-01-18
-1795441 Shicong Shicong Shicong,Shicong Zhen,shi cong,shi cong zhen,石淙,石淙镇 30.72298 120.26259 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1795456 Shicheng Shicheng Chou-ning,Chou-ning-hsien,Chou-tun,Chou-tun-chen,Chowtun,Shicheng,Shoutun,Showtan,Zhouning,Zhouning Shi,shi cheng,狮城 27.10671 119.33499 P PPLA3 CN 07 0 888 Asia/Shanghai 2012-01-18
-1795466 Shicao Shicao Shicao,Shih-ts'ao,Shih-ts’ao,shi cao,石槽 34.7504 109.94114 P PPLA4 CN 26 0 349 Asia/Chongqing 2012-01-18
-1795484 Shibi Shibi Shibi,Shibi Zhen,Shih-pi,shi bi,shi bi zhen,石鼻,石鼻镇 28.72999 115.569 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-18
-1795485 Shibi Shibi Shibi,Shibi Zhen,shi bi,shi bi zhen,石壁,石壁镇 19.16518 110.3029 P PPLA4 CN 31 0 25 Asia/Chongqing 2012-01-18
-1795493 Shibei Shibei Shibei,Shibei Zhen,Shih-p'o-chieh,Shih-pei,Shih-pei-chieh,Shih-p’o-chieh,shi bei,shi bei zhen,石陂,石陂镇 27.69776 118.36008 P PPLA4 CN 07 0 236 Asia/Shanghai 2012-01-18
-1795502 Shibantan Shibantan Shibantan,Shibantan Zhen,Shih-pan-t'an,Shih-pan-t’an,shi ban tan,shi ban tan zhen,石板滩,石板滩镇 29.1567 111.63408 P PPLA4 CN 11 0 53 Asia/Shanghai 2012-01-18
-1795520 Shiba Shiba Shiba,Shiba Zhen,Shih-pa,Shih-pa-hsu,Shih-pa-hsü,Shih-po-hsu,Shih-po-hsü,shi ba,石坝 23.53011 114.57226 P PPLA4 CN 30 0 38 Asia/Chongqing 2012-01-18
-1795539 Shewan Shewan Shewan,she wan,赊湾 32.73409 113.24056 P PPLA4 CN 09 0 137 Asia/Chongqing 2012-01-18
-1795546 Sheshiqiao Sheshiqiao She-shih-ch'iao,She-shih-ch’iao,Sheshiqiao,Sheshiqiao Zhen,Yu-shih-ch'iao,Yü-shih-ch’iao,she shi qiao,she shi qiao zhen,佘市桥,佘市桥镇 29.44305 111.51816 P PPLA4 CN 11 0 63 Asia/Shanghai 2012-01-18
-1795555 Shedian Shedian She-ch'i,She-ch'i-chen,She-ch’i,She-ch’i-chen,Shedian,Shedian Zhen,Shekichen,Sheqi,she dian,赊店 33.06128 112.94259 P PPLA3 CN 09 0 122 Asia/Chongqing 2012-01-18
-1795564 Shenzhen Shenzhen Shen-ch'uan,Shen-ch'uan-shih,Shen-chen,Shen-ch’üan,Shen-ch’üan-shih,Shenzhen,Shenzhen Zhen,Shenzhenzhen,shen zhen,shen zhen zhen,深甽,深甽镇 29.41591 121.33971 P PPLA4 CN 02 0 189 Asia/Shanghai 2012-01-18
-1795565 Shenzhen Shenzhen Bao'an,Pao-an,Pao-an-hsien,SZX,Sham Chun Hu,Shehn'chzhehn',Shen-ch'uan,Shen-ch'uan-chen,Shen-ch'uan-hsu,Shen-ch'üan,Shen-ch'üan-chen,Shen-ch'üan-hsü,Shen-chen,Shen-chun,Shenzhen,Shiem Chun,Shumchun,Shumchün,Tham Quyen,Thâm Quyến,Tschhimtschun,shen zhen,shen zhen shi,shensen shi,shyntshyn,Шэньчжэнь,شينتشين,شېنجېن شەھىرى,深セン市,深圳,深圳市 22.54554 114.0683 P PPLA2 CN 30 1795563 3000000 4 Asia/Chongqing 2012-02-14
-1795579 Shenxian Shenxian Hsin,Hsin-hsien,Hsin-hsien-ch'eng,Hsin-hsien-ch’eng,Shen-hsien,Shenxian,Sinhsien 36.24111 115.66722 P PPL CN 25 79196 41 Asia/Shanghai 2012-01-18
-1795589 Dongshentou Dongshentou Dongshentou,Shen-t'ou-chen,Shen-t’ou-chen,Shentou Zhen,Tung-shen-t'ou,Tung-shen-t’ou,dong shen tou,shen tou zhen,东神头,神头镇 39.38687 112.58042 P PPLA4 CN 24 0 1064 Asia/Shanghai 2012-01-18
-1795593 Shentangbu Shentangbu Shen-t'ang-pao,Shen-t’ang-pao,Shentangbu,Shentangbu Xiang,shen tang bao,shen tang bao xiang,神堂堡,神堂堡乡 39.1178 113.92331 P PPLA4 CN 24 0 773 Asia/Shanghai 2012-01-18
-1795606 Shenshan Shenshan Shenshan,Shenshan Zhen,shen shan,shen shan zhen,神山,神山镇 29.89735 114.02567 P PPLA4 CN 12 0 32 Asia/Chongqing 2012-01-18
-1795609 Shenquan Shenquan Shen-ch'uan,Shen-ch'uan-so-ch'eng,Shen-ch’üan,Shen-ch’üan-so-ch’eng,Shenquan,Shenquan Zhen,shen quan,神泉 22.9677 116.3048 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-18
-1795618 Shenlun Shenlun Shen-chia-lun,Shenlun,Shenlun Zhen,chen lun,chen lun zhen,沈埨,沈埨镇 32.79056 119.96694 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1795620 Shenlin Shenlin Shenlin,Shenlin Xiang,Shenlinpu,shen lin,shen lin pu,shen lin xiang,神林,神林乡,神林铺 35.58027 105.92479 P PPLA4 CN 21 0 1821 Asia/Chongqing 2012-01-18
-1795623 Shenjing Shenjing Shen-ching,Shen-ching-hsu,Shen-ching-hsü,Shenjing,Shenjing Zhen,shen jing,shen jing zhen,深井,深井镇 21.98303 112.50097 P PPLA4 CN 30 0 9 Asia/Chongqing 2012-01-18
-1795632 Shenjiamen Jiedao Shenjiamen Jiedao P'u-t'o,Putuo,P’u-t’o,San Ka Mun,Shen-chia-men,Shen-chia-men-chen,Shenjiamen,Shenjiamen Jiedao,Shenjiamenzhen,Shenkiamen,Sinkeamun,chen jia men,chen jia men jie dao,沈家门,沈家门街道 29.95762 122.29802 P PPLA4 CN 02 95433 25 Asia/Shanghai 2012-01-18
-1795633 Shenji Shenji Shen-chia-chi,Shenji,Shenji Zhen,Shenjiaji,chen ji,chen ji zhen,沈集,沈集镇 30.85737 112.36858 P PPLA4 CN 12 0 80 Asia/Chongqing 2012-01-18
-1795644 Shengze Shengze Sheng-tse,Sheng-tse-chen,Shengze,Shengze Zhen,sheng ze,sheng ze zhen,盛泽,盛泽镇 30.90884 120.66931 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1795647 Shengzhou Shi Shengzhou Shi Ch'eng,Ch'eng-hsien,Ch'eng-hsien-ch'eng,Ch’eng,Ch’eng-hsien,Ch’eng-hsien-ch’eng,Sheng-hsien,Shengxian,Shengzhou,Shengzhou Shi,sheng zhou shi,嵊州市 29.59583 120.81667 P PPLA3 CN 02 0 37 Asia/Shanghai 2012-01-18
-1795661 Shengrenjian Shengrenjian Chiu-p'ing-lu,Chiu-p’ing-lu,Jiupinglu,P'ing-lu-hsien,Pinglu,Pinglu Xian,Pinlu,P’ing-lu-hsien,Sheng-jen-chien,Sheng-jen-chien-chen,Sheng-jen-chien-ts'un,Sheng-jen-chien-ts’un,Shengrenjian,Shengrenjian Zhen,ping lu xian,sheng ren jian,sheng ren jian zhen,圣仁涧,圣仁涧镇,平陆县 34.84422 111.19131 P PPLA3 CN 24 0 387 Asia/Chongqing 2012-01-18
-1795669 Shengmi Shengmi Hsin-chien,Shangmi Zhen,Sheng-mi,Sheng-mi-chen,Sheng-mi-chieh,Shengmi,Shengmijie,sheng mi,sheng mi zhen,生米,生米镇 28.5729 115.79249 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-18
-1795682 Shengjiaba Shengjiaba Shengjiaba,Shengjiaba Xiang,sheng jia ba,sheng jia ba xiang,盛家坝,盛家坝乡 29.98482 109.21926 P PPLA4 CN 12 0 818 Asia/Chongqing 2012-01-18
-1795691 Shengang Shengang Shen-chiang,Shen-kang,Shengang,Shengang Zhen,shen gang,shen gang zhen,申港,申港镇 31.88661 120.13841 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1795693 Shengang Shengang Shen-kang,Shen-kang-hsu,Shen-kang-hsü,Shengang,Shengang Zhen,shen gang,神岗 23.48578 113.52306 P PPLA4 CN 30 0 29 Asia/Chongqing 2012-01-18
-1795696 Shendu Shendu Shen-tu,Shendu,Shendu Zhen,shen du,shen du zhen,深渡,深渡镇 29.86778 118.61056 P PPLA4 CN 01 0 115 Asia/Shanghai 2012-01-18
-1795698 Shendang Shendang Shen-tang,Shen-tang-chen,Shendang,Shendang Zhen,chen dang,chen dang zhen,沈荡,沈荡镇 30.57736 120.82129 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1795699 Shencun Shencun Shen-chia-chen,Shen-ts'un,Shen-ts'un-chen,Shen-ts'un-p'u,Shen-ts’un,Shen-ts’un-chen,Shen-ts’un-p’u,Shencun,Shencun Zhen,chen cun,chen cun zhen,沈村,沈村镇 31.05 118.85 P PPLA4 CN 01 0 12 Asia/Shanghai 2012-01-18
-1795701 Longquan Longquan Longquan,Longquan Zhen,Shen-ch'ih,Shen-ch'ih-hsien,Shen-ch'ih-hsien-ch'eng,Shen-ch’ih,Shen-ch’ih-hsien,Shen-ch’ih-hsien-ch’eng,Shenchi Xian,long quan,long quan zhen,shen chi xian,神池县,龙泉,龙泉镇 39.08446 112.19119 P PPLA3 CN 24 0 1521 Asia/Chongqing 2012-01-18
-1795712 Shejiaping Shejiaping She-chia-p'ing,She-chia-p’ing,Shejiaping,Shejiaping Xiang,she jia ping,she jia ping xiang,佘家坪,佘家坪乡 28.97709 111.25208 P PPLA4 CN 11 0 112 Asia/Shanghai 2012-01-18
-1795717 Shegeng Shegeng She-keng,Shegeng,Shegeng Xiang,she geng,she geng xiang,社赓,社赓乡 28.43566 116.66346 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-18
-1795719 Shefu Shefu She-fu-hsu,She-fu-hsü,Shefu,Shefu Xiang,she fu,she fu xiang,社富,社富乡 26.16735 115.36481 P PPLA4 CN 03 0 147 Asia/Shanghai 2012-01-18
-1795727 Shazikou Shazikou Sha-tzu-k'ou,Sha-tzu-k’ou,Shazikou 36.115 120.53722 P PPL CN CN 25 4750 7 Asia/Shanghai 2012-01-18
-1795736 Shazhouba Shazhouba Sha-chou-pa,Shazhouba,Shazhouba Zhen,sha zhou ba,sha zhou ba zhen,沙洲坝,沙洲坝镇 25.88476 115.99337 P PPLA4 CN 03 0 209 Asia/Shanghai 2012-01-18
-1795749 Shayang Shayang Sha-yang-chen,Shayang,sha yang,沙洋 30.71784 112.60577 P PPLA3 CN 12 0 35 Asia/Chongqing 2012-01-18
-1795759 Shaxi Shaxi Sha-ch'i,Sha-ch'i-chen,Sha-ch’i,Sha-ch’i-chen,Sha-hsi,Sha-t'ou,Sha-t’ou,Shaxi,Shaxi Zhen,sha xi,sha xi zhen,沙溪,沙溪镇 31.5666 121.06396 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1795761 Shaxi Shaxi Sha-hsi,Shaxi,Shaxi Zhen,sha xi,sha xi zhen,沙溪,沙溪镇 29.516 121.12782 P PPLA4 CN 02 0 154 Asia/Shanghai 2012-01-18
-1795763 Shaxi Shaxi Sha-hsi,Shaxi,Shaxi Zhen,sha xi,sha xi zhen,沙溪,沙溪镇 26.89359 115.5931 P PPLA4 CN 03 0 135 Asia/Shanghai 2012-01-18
-1795765 Shaxi Shaxi Shaxi,Shaxi Xiang,sha xi,sha xi xiang,沙溪,沙溪乡 26.33441 117.34716 P PPLA4 CN 07 0 221 Asia/Shanghai 2012-01-18
-1795767 Shaxi Shaxi Sha-ch'i,Sha-ch'i-hsu,Sha-ch’i,Sha-ch’i-hsü,Sha-hsi,Shaxi,Shaxi Zhen,sha xi,sha xi zhen,沙溪,沙溪镇 24.61441 113.67064 P PPLA4 CN 30 0 144 Asia/Shanghai 2012-02-28
-1795768 Lingding Lingding Lingding,Shaxi Zhen,ling ding,sha xi zhen,岭顶,沙西镇 23.92612 117.53304 P PPLA4 CN 07 0 7 Asia/Shanghai 2012-01-18
-1795770 Shawu Shawu Shawu,Shawutang,sha wu,沙芜 26.01942 116.96844 P PPLA4 CN 07 0 284 Asia/Shanghai 2012-01-18
-1795776 Shawan Shawan Shawan,Shawan Zhen,sha wan,sha wan zhen,沙湾,沙湾镇 33.62736 104.5637 P PPLA4 CN 15 0 1489 Asia/Chongqing 2012-01-18
-1795805 Shataping Shataping Shataping,Shataping Xiang,sha ta ping,sha ta ping xiang,沙塔坪,沙塔坪乡 29.58856 110.03864 P PPLA4 CN 11 0 381 Asia/Chongqing 2012-01-18
-1795807 Shatang Shatang Shatang,Shatangpu,sha tang,沙塘 35.58432 105.9878 P PPLA4 CN 21 0 1886 Asia/Chongqing 2012-01-18
-1795816 Shashi Shashi Sha-shih,Sha-shih-shih,Shashi,Shasi,Шаши 30.30722 112.24472 P PPL CN 12 498780 45 Asia/Chongqing 2012-01-18
-1795819 Shashi Shashi Sha-shih,Shashi,Shashi Zhen,sha shi,sha shi zhen,沙市,沙市镇 27.02368 114.07552 P PPLA4 CN 03 0 141 Asia/Chongqing 2012-01-18
-1795838 Shaping Shaping Ebian,O-pien,Shaping,Shapingting,sha ping,沙坪 29.23082 103.26587 P PPLA3 CN 32 0 683 Asia/Chongqing 2012-01-18
-1795842 Shaping Shaping Gaohe,Hao-shan,Kao-hao,Kao-ho,Sha-p'ing,Sha-p'ing-chen,Sha-p'ing-hsu,Sha-p’ing,Sha-p’ing-chen,Sha-p’ing-hsü,Shaping,sha ping,沙坪 22.75452 112.95652 P PPL CN 30 107589 16 Asia/Chongqing 2012-01-18
-1795855 Shaoxing Shaoxing Shao-hsing,Shao-hsing-hsien,Shao-hsing-hsien-ch'eng,Shao-hsing-hsien-ch’eng,Shao-hsing-shih,Shaohing,Shaohing-hsien,Shaohingfu,Shaosin,Shaoxing,saosing,shao xing,shao xing shi,soheung,Шаосин,شاۋشىن شەھىرى,紹興市,绍兴,绍兴市,사오싱,소흥 30.01102 120.57153 P PPLA3 CN 02 421283 12 Asia/Shanghai 2012-01-18
-1795857 Shaowu Shaowu Shao-wu-hsien,Shaowu,shao wu,邵武 27.34089 117.4831 P PPL CN 07 112585 196 Asia/Shanghai 2012-01-18
-1795874 Shaoguan Shaoguan Ch'u-chiang,Ch'u-chiang-hsien,Chao-kuan,Ch’ü-chiang,Ch’ü-chiang-hsien,Kakong,Kiukianghsien,Kukiang,Kukong,Kukong-hsien,Kükiang,Kükong,Kükong-hsien,Shao-chou,Shao-kuan,Shaoguan,Shaoguan',Shaokwan,Shiuchow,Shiukuan,shao guan,shao guan shi,Шаогуань,韶关,韶关市 24.8 113.58333 P PPLA2 CN 30 628749 69 Asia/Chongqing 2012-01-18
-1795893 Shanzhuang Shanzhuang Shan-chuang,Shanzhuang,Shanzhuang Xiang,shan zhuang,shan zhuang xiang,山庄,山庄乡 27.5161 114.59711 P PPLA4 CN 03 0 131 Asia/Shanghai 2012-01-18
-1795908 Shanyang Shanyang Shan-yang-chen,Shanyang,Shanyang Zhen,shan yang,shan yang zhen,山阳,山阳镇 30.76657 121.36807 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-18
-1795909 Shanyang Shanyang Shanyang,Shanyang Zhen,shan yang,shan yang zhen,杉洋,杉洋镇 26.67019 119.20509 P PPLA4 CN 07 6810 642 Asia/Shanghai 2012-01-18
-1795919 Shancheng Shancheng Shan,Shan-hsien,Shancheng,Shanxian 34.79528 116.08167 P PPL CN 25 74459 45 Asia/Shanghai 2012-01-18
-1795922 Shanxia Shanxia Shan-hsia,Shanxia,shan xia,山下 27.79853 118.30122 P PPLA4 CN 07 0 405 Asia/Shanghai 2012-01-18
-1795928 Shanwei Shanwei Shan'vehj,Shanwei,Swabue,shan wei,shan wei shi,Шаньвэй,汕尾,汕尾市 22.78199 115.3475 P PPLA2 CN 30 165699 9 Asia/Shanghai 2012-01-18
-1795935 Shantoudian Shantoudian Shan-t'ou-tien,Shan-t’ou-tien,Shantoudian,shan tou dian,山头店 33.78819 113.52207 P PPLA4 CN 09 0 84 Asia/Shanghai 2012-01-18
-1795940 Shantou Shantou Shan'tou,Shan-t'ou-shih,Shan-t’ou-shih,Shantou,Shantow,Swatow,Sán Đầu,cang hwad saw thea,shan tou,shan tou shi,Шаньтоу,จังหวัดซัวเถา,汕头,汕头市,汕頭,汕頭市 23.36814 116.71479 P PPLA2 CN 30 1333973 17 Asia/Shanghai 2012-01-18
-1795941 Shanting Shanting 35.07528 117.45778 P PPL CN 25 80843 146 Asia/Shanghai 2006-01-17
-1795946 Shantang Shantang Shan-t'ang-hsu,Shan-t’ang-hsü,Shang-t'ang-hsui,Shang-t’ang-hsui,Shantang,Shantang Zhen,shan tang,shan tang zhen,山塘,山塘镇 23.63 112.947 P PPLA4 CN 30 0 15 Asia/Chongqing 2012-01-18
-1795969 Shanmen Shanmen 27.225 110.69278 P PPL CN 11 3130 348 Asia/Chongqing 2004-06-29
-1795977 Shanlian Shanlian Shan-lien,Shan-lien-shih,Shanlian,Shanlian Zhen,shan lian,shan lian zhen,善琏,善琏镇 30.69683 120.30782 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1795978 Shanli Shanli Men-li,Shanli,Shanli Zhen,shan li,shan li zhen,闪里,闪里镇 29.87648 117.34737 P PPLA4 CN 01 0 101 Asia/Shanghai 2012-01-18
-1795983 Shankou Shankou Shan-k'ou-chieh,Shan-k’ou-chieh,Shankou,Shankou Zhen,Shankow,shan kou,shan kou zhen,山口,山口镇 28.81043 114.46297 P PPLA4 CN 03 0 150 Asia/Shanghai 2012-01-18
-1796000 Shanhe Shanhe Shan-ho,Shanhe,Shanhe Xiang,shan he,shan he xiang,山河,山河乡 35.51667 106.15 P PPLA4 CN 21 0 2228 Asia/Chongqing 2012-01-18
-1796018 Shangzhuang Shangzhuang Shang-chuang,Shangzhuang,Shangzhuang Zhen,shang zhuang,shang zhuang zhen,尚庄,尚庄镇 28.25517 115.682 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-18
-1796049 Shangyi Shangyi Shangyi,Shangyi Zhen,shang yi,shang yi zhen,上义,上义镇 23.28323 114.81846 P PPLA4 CN 30 0 97 Asia/Chongqing 2012-01-18
-1796071 Shangxi Shangxi Shangxi,Shangxi Xiang,shang xi,shang xi xiang,上溪,上溪乡 26.90868 115.7635 P PPLA4 CN 03 0 417 Asia/Shanghai 2012-01-18
-1796090 Shangtian Shangtian Shang-t'ien-fan,Shang-t'ien-fan-shih,Shang-t’ien-fan,Shang-t’ien-fan-shih,Shangtian,Shangtian Zhen,Shangtianfang,Shangtianzhen,shang tian,shang tian zhen,尚田,尚田镇 29.6175 121.405 P PPLA4 CN 02 0 23 Asia/Shanghai 2012-01-18
-1796095 Shangtang Shangtang Shangtang,Shangtang Zhen,shang tang,shang tang zhen,上塘,上塘镇 28.29199 115.7329 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1796097 Shangtang Shangtang Shang-hang-hsu,Shang-hang-hsü,Shangtang,Shangtang Zhen,shang tang,shang tang zhen,上唐,上唐镇 27.37975 116.65377 P PPLA4 CN 03 0 88 Asia/Shanghai 2012-01-18
-1796115 Shangshi Shangshi Shang-shih,Shang-shih-tien,Shangshi,Shangshi Zhen,Shangshidian,shang shi,shang shi zhen,尚市,尚市镇 31.94237 113.23231 P PPLA4 CN 12 0 118 Asia/Chongqing 2012-01-18
-1796136 Shangqing Shangqing Shang-ch'ing,Shang-ch'ing-kung,Shang-ch’ing,Shang-ch’ing-kung,Shangqing,Shangqing Zhen,shang qing,shang qing zhen,上清,上清镇 28.04612 117.03432 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1796139 Shangpu Shangpu Shang-p'u-shih,Shang-p’u-shih,Shangpu,Shangpu Zhen,shang pu,shang pu zhen,上浦,上浦镇 29.90692 120.83102 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1796142 Shangping Shangping Shang-p'ing-hsu,Shang-p'ing-yu,Shang-p’ing-hsü,Shang-p’ing-yü,Shangping,Shangping Zhen,shang ping,shang ping zhen,上坪,上坪镇 24.70188 115.44595 P PPLA4 CN 30 0 246 Asia/Shanghai 2012-01-18
-1796143 Shangping Shangping Shangping,Shangping Zhen,shang ping,shang ping zhen,上坪,上坪镇 24.48573 114.5894 P PPLA4 CN 30 0 302 Asia/Chongqing 2012-01-18
-1796149 Shangpai Shangpai Fei-hsi,Feixi,Shang-p'ai-chen,Shang-p'ai-ho,Shang-p'ai-ho-chen,Shang-p’ai-chen,Shang-p’ai-ho,Shang-p’ai-ho-chen,Shangpai,Shangpaihe,shang pai,上派 31.72194 117.15944 P PPLA3 CN 01 0 19 Asia/Shanghai 2012-01-18
-1796161 Shangma Shangma Shangma,Shangma Jieban,shang ma,shang ma jie ban,上马,上马街办 35.58997 111.34204 P PPLA4 CN 24 0 417 Asia/Chongqing 2012-01-18
-1796167 Shanglu Shanglu Shang-lu-fan,Shang-lu-fang,Shanglu,Shanglu Zhen,shang lu,shang lu zhen,上泸,上泸镇 28.22174 117.94696 P PPLA4 CN 03 0 123 Asia/Shanghai 2012-01-18
-1796172 Shangling Shangling Shangling,Shangling Zhen,shang ling,shang ling zhen,上陵,上陵镇 24.60708 114.99249 P PPLA4 CN 30 0 328 Asia/Shanghai 2012-01-18
-1796179 Shangliang Shangliang Shang-liang-ho-k'ou,Shang-liang-ho-k’ou,Shangliang,Shangliang Xiang,Shanglianghekou,shang liang,shang liang xiang,上两,上两乡 32.54397 106.84316 P PPLA4 CN 32 600 751 Asia/Chongqing 2012-01-18
-1796188 Shangjiuwu Shangjiuwu Shang-chiu-wu,Shangjiuwu,Shangjiuwu Zhen,shang jiu wu,shang jiu wu zhen,商酒务,商酒务镇 33.94896 112.97767 P PPLA4 CN 09 0 167 Asia/Chongqing 2012-01-18
-1796195 Shangjie Shangjie Hsia-chieh-hsiang,Shang-chieh,Shang-chieh-chen,Shangjie,Yang-p'i,Yang-p'i-hsien,Yang-p’i,Yang-p’i-hsien,Yangbi,shang jie,上街 25.67106 99.98025 P PPLA3 CN 29 0 1831 Asia/Chongqing 2012-01-18
-1796214 Shanghu Shanghu Shang-hu-shih,Shanghu,Shanghu Zhen,shang hu,shang hu zhen,尚湖,尚湖镇 29.14765 120.65398 P PPLA4 CN 02 0 544 Asia/Shanghai 2012-01-18
-1796220 Shanghexi Shanghexi Shang-ho-ch'i,Shang-ho-ch’i,Shanghexi,Shanghexi Xiang,shang he xi,shang he xi xiang,上河溪,上河溪乡 29.47547 109.8027 P PPLA4 CN 11 0 684 Asia/Chongqing 2012-01-18
-1796228 Linjiang Linjiang Linjiang,Linjiang Zhen,Shang-hang-hsien,Shanghang,Shanghang Xian,lin jiang,lin jiang zhen,shang hang,shang hang xian,上杭,上杭县,临江,临江镇 25.05167 116.4203 P PPLA3 CN 07 0 193 Asia/Shanghai 2012-01-18
-1796236 Shanghai Shanghai SHA,San'nkae,Sanchajus,Sangaj,Sangay,Sanghaj,Sanghay,Sanhaja,Sanhajo,Sanxay,Schanghai,Shang-hai,Shang-hai-shih,Shangai,Shangaj,Shanghai,Shanghai - shang hai,Shanghai - 上海,Shankhaj,Sjanghae,Sjanghai,Sjanghæ,Szanghaj,Thuong Hai,Thượng Hải,Xangai,cankay,sanghai,seiynghi,shang hai,shang hai shi,shanghay,shanghhay,shanhai,zhong guo shang hai,Ŝanhajo,Şangay,Şanghay,Şanxay,Šanchajus,Šangaj,Šanghaj,Šanhaja,Σανγκάη,Шангај,Шанхай,שאנגחאי,شانغهاي,شانگهای,شاڭخەي,شاڭخەي شەھىرى,சாங்காய்,เซี่ยงไฮ้,შანჰაი,上海,上海市,中国上海,상하이 31.22222 121.45806 P PPLA CN 23 14608512 12 Asia/Shanghai 2012-03-01
-1796247 Shanggu Shanggu Shang-ku,Shanggu,Shanggu Xiang,shang gu,shang gu xiang,上固,上固乡 26.80228 115.58289 P PPLA4 CN 03 0 147 Asia/Shanghai 2012-01-18
-1796258 Shangfu Shangfu Shang-fu-chen,Shang-shu,Shangfu,Shangfu Zhen,shang fu,shang fu zhen,上富,上富镇 28.67556 115.00413 P PPLA4 CN 03 0 89 Asia/Shanghai 2012-01-18
-1796264 Shangfang Shangfang Shang-fang-chen,Shangfang,shang fang,上方 29.26909 118.91614 P PPLA4 CN 02 0 188 Asia/Shanghai 2012-01-18
-1796269 Shangdundu Shangdundu Linchuan,Shang-tun-t'ou,Shang-tun-tu,Shang-tun-t’ou,Shangdundu,Shangdundu Zhen,shang dun du,shang dun du zhen,上顿渡,上顿渡镇 27.93827 116.29269 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-18
-1796281 Shangdian Shangdian Shang-chuang,Shang-tien,Shangdian,Shangdian Zhen,shang dian,尚店 33.22952 113.44726 P PPLA4 CN 09 0 149 Asia/Chongqing 2012-01-18
-1796283 Shangde Shangde Shangde,shang de,尚德 32.90727 104.76958 P PPLA4 CN 15 0 877 Asia/Chongqing 2012-01-18
-1796300 Shangcang Shangcang Shang-ts'ang,Shang-ts'ang-chen,Shang-ts’ang,Shang-ts’ang-chen,Shangcang 39.89944 117.38806 P PPL CN CN 28 1312 11 Asia/Harbin 2012-01-18
-1796320 Shangbahe Shangbahe Shang-pa-ho,Shangbahe,Shangbanhe Zhen,shang ba he,shang ba he zhen,上巴河,上巴河镇 30.65095 115.10434 P PPLA4 CN 12 0 42 Asia/Shanghai 2012-01-18
-1796336 Shandang Shandang Shan-tang,Shandang,Shandang Zhen,shan dang,shan dang zhen,山砀,山砀镇 27.63188 115.79719 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-18
-1796339 Shancheng Shancheng Shancheng,Shancheng Xiang,Xianchengbu,shan cheng,shan cheng xiang,山城,山城乡 36.9568 107.02663 P PPLA4 CN 15 0 1402 Asia/Chongqing 2012-01-18
-1796340 Shancheng Shancheng Shancheng,T'ai-ning-hsien,Taining,T’ai-ning-hsien,shan cheng,杉城 26.90053 117.16312 P PPLA3 CN 07 0 303 Asia/Shanghai 2012-01-18
-1796341 Shancheng Shancheng Nan-ching,Nan-ching-ch'eng,Nan-ching-ch’eng,Nan-ching-hsien,Nanjing,Shan-ch'eng-chen,Shan-ch’eng-chen,Shancheng,shan cheng,山城 24.49155 117.34568 P PPLA3 CN 07 0 118 Asia/Shanghai 2012-01-18
-1796356 Shaliuhe Shaliuhe Gangca,Kang-ch'a,Kang-ch’a,Sha-liu-ho,Shaliuhe,sha liu he,沙柳河 37.326 100.13439 P PPLA3 CN 06 0 3302 Asia/Chongqing 2012-01-18
-1796357 Shaliu Shaliu Sha-liu-chen,Shaliu,Shaliu Zhen,Shaliuzhen,sha liu,sha liu zhen,沙柳,沙柳镇 29.15 121.4 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1796367 Shangshaleng Shangshaleng Sha-leng-ho,Shalenghe Xiang,Shang-sha-leng-ho,Shangshaleng,sha leng he xiang,shang sha leng,上沙塄,沙塄河乡 39.1979 112.48882 P PPLA4 CN 24 0 1109 Asia/Chongqing 2012-01-18
-1796371 Shakou Shakou Sha-k'ou-hsu,Sha-k’ou-hsü,Shakou,Shakou Zhen,sha kou,sha kou zhen,沙口,沙口镇 24.42276 113.5178 P PPLA4 CN 30 0 47 Asia/Chongqing 2012-01-18
-1796375 Shajing Shajing Sha-ching,Shajing,Shajing Zhen,sha jing,沙迳 23.59032 114.09505 P PPLA4 CN 30 0 45 Asia/Chongqing 2012-01-18
-1796379 Shajiang Shajiang Sha-chiang,Shajiang 26.7825 119.96694 P PPL CN CN 07 6310 13 Asia/Shanghai 2012-01-18
-1796408 Shahejie Shahejie Chiu-chiang,Jiujiang,Sha-ho,Sha-ho-p'u,Sha-ho-p’u,Shahe,Shahejie,Shahejie Zhen,Shahezhen,Shahochen,sha he jie,sha he jie zhen,沙河街,沙河街镇 29.60794 115.8872 P PPLA3 CN 03 0 32 Asia/Shanghai 2012-01-18
-1796411 Shahedian Shahedian Sha-ho-tien,Shahedian,Shahedian Zhen,sha he dian,沙河店 32.99694 113.72486 P PPLA4 CN 09 0 92 Asia/Shanghai 2012-01-18
-1796417 Shahe Shahe Fan-chih,Fan-chih-hsien,Sha-ho,Sha-ho-chen,Shahe,Shahe Zhen,sha he,sha he zhen,砂河,砂河镇 39.27083 113.54778 P PPLA4 CN 24 0 1081 Asia/Shanghai 2012-01-18
-1796421 Shahecheng Shahecheng Sha-ho,Sha-ho-ch'eng-kuan,Sha-ho-ch’eng-kuan,Sha-ho-hsien,Shahe,Shahecheng,Shahhsien,Shakhe 36.93833 114.50583 P PPL CN 10 125132 73 Asia/Shanghai 2012-01-18
-1796424 Shahe Shahe Sha-ho-tzu,Shahe,Shahe Zhen,Shahezi,sha he,sha he zhen,沙河,沙河镇 32.203 106.72577 P PPLA4 CN 32 0 506 Asia/Chongqing 2012-01-18
-1796440 Guorenduo Guorenduo Guorenduo,Shagou Xiang,guo ren duo,sha gou xiang,沙沟乡,郭仁多 35.91717 100.93649 P PPLA4 CN 06 0 2735 Asia/Chongqing 2012-01-18
-1796444 Shagedu Shagedu Chun-ko-erh-ch'i,Chun-ko-erh-ch’i,Jungar Qi,O-erh-to-ssu-tso-i-ch'ien-ch'i,O-erh-to-ssu-tso-i-ch’ien-ch’i,Sha-ch'i-tu,Sha-ch’i-tu,Sha-ko-tu,Shagedu,Shagedu Zhen,Zhunge'er Qi,Zhunge’er Qi,sha ge du,sha ge du zhen,zhun ge er qi,准格尔旗,沙圪堵,沙圪堵镇 39.6475 110.85944 P PPLA4 CN 20 0 1002 Asia/Chongqing 2012-01-18
-1796447 Shagang Shagang Sha-kang,Shagang,Shagang Zhen,sha gang,sha gang zhen,沙岗,沙岗镇 30.06667 112.63333 P PPLA4 CN 12 0 29 Asia/Chongqing 2012-01-18
-1796460 Shadaoguan Shadaoguan Sha-tao-kuan,Shadaoguan,Shadaoguan Zhen,sha dao guan,sha dao guan zhen,沙道观,沙道观镇 30.17284 111.92204 P PPLA4 CN 12 0 46 Asia/Chongqing 2012-01-18
-1796461 Shadaogou Shadaogou Sah-tao-kou,Shadaogou,Shadaogou Zhen,sha dao gou,sha dao gou zhen,沙道沟,沙道沟镇 29.69389 109.55639 P PPLA4 CN 12 0 586 Asia/Chongqing 2012-01-18
-1796463 Shacun Shacun Sha-ts'un,Sha-ts'un-hsu,Sha-ts’un,Sha-ts’un-hsü,Shacun 26.639 115.07095 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-18
-1796479 Shaba Shaba Shaba,Shaba Zhen,sha ba,sha ba zhen,砂坝,砂坝镇 29.26653 110.01711 P PPLA4 CN 11 0 418 Asia/Chongqing 2012-01-18
-1796484 Se’ergu Se'ergu Se'ergu,Se'ergu Xiang,Sergu,Se’ergu,Se’ergu Xiang,se er gu,se er gu xiang,色尔古,色尔古乡 31.93825 103.41942 P PPLA4 CN 32 0 1809 Asia/Chongqing 2012-01-18
-1796493 Seke Seke Se-ta,Serkog,Sêrkog,se ke,色柯 32.27146 100.33316 P PPLA3 CN CN 32 0 3884 Asia/Chongqing 2007-07-09
-1796514 Sanzhang Sanzhang San-chang,San-chang-ts'un,San-chang-ts’un,Sanzhang,Sanzhang Zhen,san zhang,三张 34.44674 109.46073 P PPLA4 CN 26 0 547 Asia/Chongqing 2012-01-18
-1796516 Sanzao Sanzao San-tsao,Sanzao,Ssu-tsao 32.81667 120.35 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1796527 Sanyuan Chengguanzhen Sanyuan Chengguanzhen Chengguan Zhen,San-yuan-hsien,San-yüan-hsien,Sanyuan Chengguanzhen,cheng guan zhen,san yuan cheng guan zhen,三原城关镇,城关镇 34.61472 108.92833 P PPLA3 CN 26 0 425 Asia/Chongqing 2012-01-18
-1796531 Sanyu Sanyu San-yu-chen,San-yu-chia,San-yü-chen,San-yü-chia,Sanyu,Sanyu Zhen,Sanyuzhen,san yu,san yu zhen,三余,三余镇 32.12388 121.28252 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1796533 Sanying Sanying Sanying,Sanying Zhen,san ying,san ying zhen,三营,三营镇 36.28154 106.15546 P PPLA4 CN 21 0 1536 Asia/Chongqing 2012-01-18
-1796548 Sanyang Sanyang San-yang-chen,Sanyang,Sanyang Zhen,Sanyangzhen,san yang,san yang zhen,三阳,三阳镇 31.9266 121.47188 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1796549 Sanyang Sanyang Sanyang,Sanyang Xiang,Sanyangkeng,san yang,san yang xiang,三阳,三阳乡 30.02317 118.78334 P PPLA4 CN 01 0 258 Asia/Shanghai 2012-01-18
-1796550 Sanyanggang Sanyanggang San-yang-kang,Sanyanggang,Sanyanggang Zhen,san yang gang,san yang gang zhen,三阳港,三阳港镇 28.9766 111.34603 P PPLA4 CN 11 0 61 Asia/Shanghai 2012-01-18
-1796551 Sanyang Sanyang Sanyang,Sanyang Zhen,san yang,san yang zhen,三阳,三阳镇 31.31647 113.18448 P PPLA4 CN 12 0 113 Asia/Chongqing 2012-01-18
-1796554 Sanyang Sanyang Sanyang,Sanyang Zhen,san yang,san yang zhen,三阳,三阳镇 27.92312 114.38864 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-18
-1796556 Sanya Sanya Sama,Samah,San'ja,San-ah,San-ya-chen,San-ya-chiang,San-ya-chiang-shih,Sanya,Ya Xian,Ya-hsien,Yai-hsien,Yehsien,san ya,Санья,三亚 18.24306 109.505 P PPLA2 CN 31 144753 11 Asia/Chongqing 2012-01-18
-1796558 Sanxing Sanxing San-hsing-chen,Sanxing,Sanxing Zhen,Sanxingzhen,san xing,san xing zhen,三星,三星镇 31.96812 121.11542 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1796563 Sanxing Sanxing San-hsing,San-pai-ch'iu,San-pai-ch’iu,San-pai-hsing,San-po-ch'iu,San-po-ch’iu,Sanxing,Sanxing Zhen,san xing,san xing zhen,三兴,三兴镇 28.21553 114.46144 P PPLA4 CN 03 0 120 Asia/Shanghai 2012-01-18
-1796565 Sanxi Sanxi San-hsi-k'ou,San-hsi-k’ou,Sanxi,Sanxi Zhen,Sanxikou,san xi,san xi zhen,三溪,三溪镇 29.82617 114.93978 P PPLA4 CN 12 0 80 Asia/Shanghai 2012-01-18
-1796572 Sanxi Sanxi San-ch'i,San-ch'i-chen,San-ch’i,San-ch’i-chen,San-hsi,Sanxi,Sanxi Zhen,san xi,san xi zhen,三溪,三溪镇 30.37774 118.42776 P PPLA4 CN 01 0 133 Asia/Shanghai 2012-01-18
-1796573 Sanxi Sanxi San-hsi,Sanxi,Sanxi Xiang,san xi,san xi xiang,三溪,三溪乡 27.14392 116.39248 P PPLA4 CN 03 0 201 Asia/Shanghai 2012-01-18
-1796590 Santang Santang San-t'ang-shih,San-t’ang-shih,Santang,Santang Xiang,san tang,san tang xiang,三塘,三塘乡 28.73525 116.56756 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-18
-1796617 Sanshilipu Sanshilipu Sanshilipu,Sanshilipu Zhen,Shilipu,san shi li pu,san shi li pu zhen,三十里铺,三十里铺镇 36.09755 107.77839 P PPLA4 CN 15 0 1101 Asia/Chongqing 2012-01-18
-1796637 Sanshan Sanshan San-shan-chieh,Sanshan,Sanshan Qu,san shan,san shan qu,三山,三山区 31.22319 118.22448 P PPLA3 CN 01 0 25 Asia/Shanghai 2012-01-18
-1796640 Sansha Sansha Sansha,Sansha Zhen,san sha,san sha zhen,三沙,三沙镇 26.9242 120.20877 P PPLA4 CN 07 0 41 Asia/Shanghai 2012-01-18
-1796641 Sanrao Sanrao Chiu-jao-p'ing,Chiu-jao-p’ing,Jao-p'ing,Jao-p'ing-hsien,Jao-p’ing,Jao-p’ing-hsien,San-jao,Sanrao,Sanrao Zhen,san rao,三饶 23.98261 116.83149 P PPLA4 CN 30 0 68 Asia/Shanghai 2012-01-18
-1796644 Sanquan Sanquan San-ch'uan,San-ch'uan-chen,San-ch’üan,San-ch’üan-chen,Sanquan,Sanquan Zhen,san quan,san quan zhen,三泉,三泉镇 35.67528 111.15806 P PPLA4 CN 24 0 448 Asia/Chongqing 2012-01-18
-1796647 Sanqiao Sanqiao San-ch'iao,San-ch'iao-chen,San-ch’iao,San-ch’iao-chen,Sanqiao,Sanqiao Jieban,san qiao,san qiao jie ban,三桥,三桥街办 34.28684 108.83554 P PPLA4 CN 26 0 390 Asia/Chongqing 2012-01-18
-1796663 Sanming Sanming San'min,San-ming-hsien,San-ming-shih,San-yuan,San-yuan-hsien,San-yüan,San-yüan-hsien,Sanming,san ming,san ming shi,Саньмин,سەنمىڭ شەھىرى,三明,三明市 26.24861 117.61861 P PPLA2 CN 07 209444 126 Asia/Shanghai 2012-01-18
-1796664 Sanmiaoqian Sanmiaoqian San-miao-ch'ien,San-miao-ch’ien,Sanmiaoqian,Sanmiaoqian Xiang,Sanmiaoqiao,san miao qian,san miao qian xiang,三庙前,三庙前乡 28.9703 116.76732 P PPLA4 CN 03 0 15 Asia/Shanghai 2012-01-18
-1796671 Sanmenpo Sanmenpo Sanmenpo,Sanmenpo Zhen,san men po,san men po zhen,三门坡,三门坡镇 19.71655 110.55805 P PPLA4 CN 31 0 112 Asia/Chongqing 2012-01-18
-1796687 Sanlong Sanlong Lung-wang-miao,San-lung,Sanlong,Sanlong Zhen,san long,san long zhen,三龙,三龙镇 33.41849 120.51085 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1796688 Sanlong Sanlong San-lung,San-lung-chieh,San-lung-shih,Sanlong,Sanlong Xiang,san long,san long xiang,三龙,三龙乡 29.3853 117.14511 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-18
-1796695 Sanligang Sanligang San-li-kang,Sanligang,Sanligang Zhen,san li gang,san li gang zhen,三里岗,三里岗镇 31.49353 113.07345 P PPLA4 CN 12 0 169 Asia/Chongqing 2012-01-18
-1796696 Sanlifan Sanlifan Sanlifan,Sanlifan Zhen,san li fan,san li fan zhen,三里畈,三里畈镇 30.83553 115.26659 P PPLA4 CN 12 0 57 Asia/Shanghai 2012-01-18
-1796705 Sanli Sanli Sanli,Sanli Xiang,san li,san li xiang,三里,三里乡 28.6809 116.37848 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1796718 Sankou Sankou San-k'ou-chen,San-k’ou-chen,Sankou,Sankou Zhen,san kou,san kou zhen,三口,三口镇 30.25928 118.21374 P PPLA4 CN 01 0 162 Asia/Shanghai 2012-01-18
-1796719 Sankou Sankou Sankou,san kou,三口 30.09887 119.74206 P PPLA4 CN 02 0 56 Asia/Shanghai 2012-01-18
-1796728 Sanjie Sanjie San-chieh,San-chieh-chen,Sanjie,Sanjie Zhen,san jie,san jie zhen,三界,三界镇 29.75909 120.84786 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1796764 Sanjiang Sanjiang San-chiang-k'ou,San-chiang-k’ou,Sanjiang,Sanjiang Zhen,Sanjiangkou,san jiang,san jiang zhen,三江,三江镇 28.29269 116.00474 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-18
-1796776 Sanjiang Sanjiang Liannan,Lien-nan,Lien-nan-yao-tsu-tzu-chih-ch'u,Lien-nan-yao-tsu-tzu-chih-ch’ü,Lien-nan-yao-tsu-tzu-chih-hsien,Linnam,Samkong,San-chiang,San-chiang-ch'eng,San-chiang-chen,San-chiang-ch’eng,San-chiang-hsu,San-chiang-hsü,Sanjiang,san jiang,三江 24.72063 112.29442 P PPLA3 CN 30 0 109 Asia/Chongqing 2012-01-18
-1796781 Sanjiang Sanjiang Samkong,San-chiang,San-chiang-shih,Sanjiang,Sanjiang Zhen,Sankiang,Tam Ko,san jiang,san jiang zhen,三江,三江镇 19.88062 110.60102 P PPLA4 CN 31 0 11 Asia/Chongqing 2012-01-18
-1796803 Sanhu Sanhu Sanhu,Sanhu Zhen,Sanhuchen,san hu,san hu zhen,三湖,三湖镇 27.92416 115.42805 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-18
-1796808 Shangsanhe Shangsanhe San-ho-chen,Sanhe,Sanhe Xiang,Sanhe Zhen,Sanhezhen,Shangsanhe,Shangsanhe Zhen,san he,san he zhen,shang san he,shang san he zhen,三和,三和镇,上三和,上三和镇 31.87589 121.11873 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1796824 Sanhe Sanhe Sanhe,san he,三河 33.29927 105.16692 P PPLA4 CN 15 0 1105 Asia/Chongqing 2012-01-18
-1796836 Sangzi Sangzi Sangzi,Shang-tzu 39.90556 117.15722 P PPL CN CN 28 4315 20 Asia/Harbin 2012-01-18
-1796839 Sangzhou Sangzhou Sang-chou,Sang-chou-chen,Sangchow,Sangzhou,Sangzhou Zhen,Sangzhouzhen,sang zhou,sang zhou zhen,桑洲,桑洲镇 29.15746 121.31633 P PPLA4 CN 02 0 37 Asia/Shanghai 2012-01-18
-1796859 Sanguansi Sanguansi San-kuan,San-kuan-shih,San-kuan-ssu,Sanguansi,Sanguansi Tujiazuxiang,san guan si,san guan si tu jia zu xiang,三官寺,三官寺土家族乡 29.43068 110.65236 P PPLA4 CN 11 0 224 Asia/Chongqing 2012-01-18
-1796862 Sanguanmiao Sanguanmiao San-kuan-miao,Sanguanmiao,san guan miao,三官庙 34.25485 109.416 P PPLA4 CN 26 0 1002 Asia/Chongqing 2012-01-18
-1796876 Sangmu Sangmu Sang-mu-ch'ang,Sang-mu-ch’ang,Sangmu 28.21528 106.26889 P PPL CN CN 18 1110 1179 Asia/Chongqing 2012-01-18
-1796883 Sangke Sangke La-sze,Sangke,Sangke Xiang,Sangkog,sang ke,sang ke xiang,桑科,桑科乡 35.12497 102.44411 P PPLA4 CN 15 0 3050 Asia/Chongqing 2012-01-18
-1796892 Sangengluo Sangengluo Sangengluo,Sangengluo Zhen,san geng luo,san geng luo zhen,三更罗,三更罗镇 18.86306 110.18051 P PPLA4 CN 31 0 159 Asia/Chongqing 2012-01-18
-1796910 Sandun Sandun San-tun,San-tun-chen,Sandun,Sandun Zhen,san dun,san dun zhen,三墩,三墩镇 30.3247 120.07763 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1796921 Sandu Sandu San-tu,Sandu,Sandu Zhen,san dou,san dou zhen,三都,三都镇 29.17468 114.68523 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1796922 Sandu Sandu San-tu,San-tu-hsu,San-tu-hsü,Sandu,Sandu Zhen,san dou,san dou zhen,三都,三都镇 28.56992 114.44637 P PPLA4 CN 03 0 243 Asia/Shanghai 2012-01-18
-1796930 Sandouping Sandouping San-tou-p'ing,San-tou-p’ing,San-yu-p'ing,San-yu-p’ing,Sandouping,Sandouping Zhen,Santowping,san dou ping,san dou ping zhen,三斗坪,三斗坪镇 30.81502 111.01048 P PPLA4 CN 12 0 62 Asia/Chongqing 2012-01-18
-1796936 Sandian Sandian San-tien,San-tien-chieh,San-tien-shih,Sandian,Sandian Jiedao,san dian,san dian jie dao,三店,三店街道 30.92932 114.79564 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-18
-1796946 Sandao Sandao Sandao,Sandao Zhen,san dao,san dao zhen,三道,三道镇 18.46699 109.66436 P PPLA4 CN 31 0 75 Asia/Chongqing 2012-01-18
-1796955 Sanchang Sanchang San-ch'ang-shih,San-ch’ang-shih,Sanchang,Sanchang Zhen,Sanchangzhen,san chang,san chang zhen,三厂,三厂镇 31.89472 121.23722 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1796958 Sanchakou Sanchakou 39.78444 117.31861 P PPL CN 28 2636 7 Asia/Harbin 2000-11-21
-1796960 Sankou Sankou Sanchakou,Sankou,Sankou Zhen,san kou,san kou zhen,三口,三口镇 34.18333 119.48333 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1796971 Sanchagang Sanchagang San-ch'a-kang,San-ch’a-kang,Sanchagang,Sanchagang Zhen,san cha gang,san cha gang zhen,三汊港,三汊港镇 29.27418 116.39092 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-18
-1796976 Sancha Sancha San-ch'a-ho,San-ch’a-ho,Sancha,Sancha Zhen,san cha,san cha zhen,三岔,三岔镇 36.0511 107.0454 P PPLA4 CN 15 0 1263 Asia/Chongqing 2012-01-18
-1796979 Sancha Sancha San-ch'a-i,San-ch’a-i,Sancha,Sancha Zhen,san cha,san cha zhen,三岔,三岔镇 33.84097 106.67212 P PPLA4 CN 26 0 1325 Asia/Chongqing 2012-01-18
-1796983 Sancha Sancha Sancha,Sancha Xiang,san cha,san cha xiang,三岔,三岔乡 29.06222 110.56444 P PPLA4 CN 11 0 430 Asia/Chongqing 2012-01-18
-1796989 Changsha Changsha Ch'ang-sha-chen,Changsha,Ch’ang-sha-chen,K'ai-p'ing-hsien,Kaiping,K’ai-p’ing-hsien,San-pu,San-pu-chen,Sanbu,zhang sha,长沙 22.38265 112.68353 P PPLA3 CN 30 0 7 Asia/Chongqing 2012-01-18
-1796991 Sanbiao Sanbiao San-piao,Sanbiao,Sanbiao Xiang,san biao,san biao xiang,三标,三标乡 25.04208 115.59022 P PPLA4 CN 03 0 430 Asia/Shanghai 2012-01-18
-1797023 Ruoshui Ruoshui Jo-shui,Ruoshui,Zhoshuy 27.00194 109.96667 P PPL CN CN 11 1210 202 Asia/Chongqing 2012-01-18
-1797028 Runzhen Runzhen Jun-chen,Runzhen,T'ung-jun-chen,Tunzhun'chzhen,Tunzhun’chzhen,T’ung-jun-chen,run zhen,闰镇 34.87 108.5075 P PPLA4 CN 26 0 1084 Asia/Chongqing 2012-01-18
-1797034 Rende Rende Hsun-tien,Hsun-tien-hsien,Hsun-tien-hui-tsu-tzu-chih-hsien,Hsün-tien,Hsün-tien-hsien,Hsün-tien-hui-tsu-tzu-chih-hsien,Rende,Runde,Suntien-hsien,Suntienchow,Süntien-hsien,Xundian,ren de,仁德 25.5582 103.27604 P PPLA3 CN 29 0 1865 Asia/Chongqing 2012-01-18
-1797038 Runan Runan Ju-nan,Ju-nan-hsien,Juning,Runan 33.00111 114.35417 P PPL CN 09 60202 56 Asia/Shanghai 2012-01-18
-1797039 Rulong Rulong Chan-hua,Chan-hua-hsien,Chzhankhua,Hsin-lung,Huai-jou,Khuayzhou,Nyagrong,Rulong,Tan-hua,Wuxi,Xinlong,ru long,茹龙 30.94178 100.30958 P PPLA3 CN 32 0 3065 Asia/Chongqing 2012-01-18
-1797041 Rulin Rulin Ch'eng-pu,Ch'eng-pu-hsien,Ch'eng-pu-miao-tsu-tzu-chih-hsien,Chenbu,Chengbu,Ch’eng-pu,Ch’eng-pu-hsien,Ch’eng-pu-miao-tsu-tzu-chih-hsien,Ju-lin-chen,Rulin,Zhulin'chzhen',Zhulin’chzhen’,ru lin,儒林 26.34704 110.26627 P PPLA3 CN 11 0 637 Asia/Chongqing 2012-01-18
-1797046 Ruixi Ruixi Ruixi,Ruixi Zhen,Ruixu,rui xi,rui xi zhen,瑞溪,瑞溪镇 19.73442 110.12461 P PPLA4 CN 31 0 29 Asia/Chongqing 2012-01-18
-1797047 Ruishi Ruishi Jui-t'a-p'u,Jui-t’a-p’u,Ruishi,Ruitapu Zhen,rui shi,rui ta pu zhen,瑞塔铺镇,瑞市 29.41861 110.26575 P PPLA4 CN 11 0 321 Asia/Chongqing 2012-01-18
-1797051 Ruilin Ruilin Jui-lin,Jui-lin-chai,Ruilin,Ruilin Zhen,rui lin,rui lin zhen,瑞林,瑞林镇 26.16753 115.84175 P PPLA4 CN 03 0 162 Asia/Shanghai 2012-01-18
-1797054 Ruihong Ruihong Jui-hung,Jui-hung-chen,Ruihong,Ruihong Zhen,rui hong,rui hong zhen,瑞洪,瑞洪镇 28.7303 116.4049 P PPLA4 CN 03 0 28 Asia/Shanghai 2012-01-18
-1797060 Guwei Guwei Guwei,Guwei Zhen,Jui-ch'eng,Jui-ch'eng-hsien,Jui-ch’eng,Jui-ch’eng-hsien,Ruicheng,Ruicheng Xian,Zhuychei,gu wei,gu wei zhen,rui cheng xian,古魏,古魏镇,芮城县 34.71034 110.6571 P PPLA3 CN 24 0 565 Asia/Chongqing 2012-01-18
-1797064 Ruhu Ruhu Ch'i-ju-hu,Ch'i-nu,Ch'i-nu-hu,Ch'i-nu-hu-hsu,Ch’i-ju-hu,Ch’i-nu-hu-hsü,Ch’i-nü,Ch’i-nü-hu,Ju-hu,Ruhu,Ruhu Zhen,ru hu,汝湖 23.18085 114.4529 P PPLA4 CN 30 0 16 Asia/Chongqing 2012-01-18
-1797069 Rucheng Rucheng Ju-ch'eng-chen,Ju-ch’eng-chen,Ju-kao,Ju-kao-ch'eng,Ju-kao-ch’eng,Ju-kao-hsien,Rucheng,Rucheng Zhen,Rugao Shi,ru cheng,ru cheng zhen,ru gao shi,如城,如城镇,如皋市 32.38833 120.55528 P PPLA3 CN 04 0 7 Asia/Shanghai 2012-01-18
-1797071 Rudong Rudong Rudong,Rudong Xiang,Rudongpu,ru dong,ru dong pu,ru dong xiang,如东,如东乡,如东铺 29.73333 111.98333 P PPLA4 CN 11 0 35 Asia/Chongqing 2012-01-18
-1797076 Rucheng Chengguanzhen Rucheng Chengguanzhen Ju-ch'eng,Ju-ch'eng-hsien,Ju-ch’eng,Ju-ch’eng-hsien,Ju-kuei,Kuei-yang,Kweiyang,Kweiyanghsien,Rucheng,Rucheng Chengguanzhen,Yu-ch'eng,Yu-ch’eng,ru cheng cheng guan zhen,汝城城关镇 25.53257 113.72014 P PPLA3 CN 11 0 716 Asia/Chongqing 2012-01-18
-1797077 Rucheng Rucheng Ju-yuan,Ju-yuan-ch'eng-kuan,Ju-yuan-hsien,Ju-yuan-hsien-ch'eng,Ju-yuan-yao-tsu-tzu-chih-hsien,Ju-yüan,Ju-yüan-ch’eng-kuan,Ju-yüan-hsien,Ju-yüan-hsien-ch’eng,Ju-yüan-yao-tsu-tzu-chih-hsien,Jui-yuan,Jui-yüan,Rucheng,Rucheng Zhen,Ruyuan,Yuyuan,Yuyuanhsien,Yuyüanhsien,ru cheng,ru cheng zhen,乳城,乳城镇 24.77846 113.2686 P PPLA3 CN 30 0 89 Asia/Shanghai 2012-01-18
-1797079 Ru’ao Ru'ao Ju-ao,Ju-ao-shih,Ru'ao,Ru'ao Zhen,Ru’ao,Ru’ao Zhen,ru ao,ru ao zhen,儒岙,儒岙镇 29.35947 120.91663 P PPLA4 CN 02 0 385 Asia/Shanghai 2012-01-18
-1797083 Rouyuan Rouyuan Hua-ch'ih,Hua-ch’ih,Huachi,Jou-yuan-ch'eng,Jou-yuan-ch'eng-tzu,Jou-yuan-li,Jou-yüan-ch’eng,Jou-yüan-ch’eng-tzu,Jou-yüan-li,Rouyuan,Rouyuan Zhen,Rouyuanchengzi,rou yuan,rou yuan zhen,柔远,柔远镇 36.46092 107.98311 P PPLA4 CN 15 0 1276 Asia/Chongqing 2012-01-18
-1797091 Rongwo Rongwo Lung-wu,Lung-wu-chen,Lung-wu-ssu,Rongwo,T'ung-jen,T'ung-jen-hsien,Tongren,Tunzhen',Tunzhen’,T’ung-jen,T’ung-jen-hsien,long wu,long wu zhen,隆务,隆务镇 35.51483 102.016 P PPLA3 CN 06 0 2506 Asia/Chongqing 2012-01-18
-1797094 Rongshui Rongshui Chiu-jung-hsien,Jung,Jung-hsien,Jung-shui,Jung-shui-chen,Jung-shui-hsien,Rongshui,Ta-miao-shan,Ta-miao-shan-miao-tsu-tzu-chih-ch'u,Ta-miao-shan-miao-tsu-tzu-chih-ch’ü,rong shui,融水 25.06667 109.25 P PPLA3 CN 16 0 114 Asia/Chongqing 2012-01-18
-1797099 Rongmei Rongmei Hao-feng,Hao-feng-hsien,Hefeng,Hefeng Xian,Ho-feng,Hofeng-hsien,Rongmei,Rongmei Zhen,he feng,he feng xian,rong mei,rong mei zhen,容美,容美镇,鹤峰,鹤峰县 29.89333 110.02611 P PPLA3 CN 12 0 503 Asia/Chongqing 2012-01-18
-1797101 Rongkou Rongkou Jung-k'ou,Jung-k’ou,Rongkou,Rongkou Xiang,rong kou,rong kou xiang,溶口,溶口乡 29.7454 117.54103 P PPLA4 CN 01 0 101 Asia/Shanghai 2012-01-18
-1797102 Rongjiawan Rongjiawan Jung-chia-wan,Jungchiangwan,Jungkiawan,Rongjiawan,Yueyang,rong jia wan,荣家湾 29.15 113.10244 P PPLA3 CN 11 0 48 Asia/Chongqing 2012-01-18
-1797117 Rongcheng Rongcheng Ch'ing-yang,Ch'ing-yang-hsien,Ch’ing-yang,Ch’ing-yang-hsien,Qingyang,Rongcheng,Tsingyang,Tsingyanghsien,rong cheng,蓉城 30.63398 117.8517 P PPLA3 CN 01 0 12 Asia/Shanghai 2012-01-18
-1797120 Fuqing Fuqing Fu-ch'ing,Fu-ch'ing-hsien,Fu-ch'ing-hsien-ch'eng,Fu-ch’ing,Fu-ch’ing-hsien,Fu-ch’ing-hsien-ch’eng,Fucin',Fuqing,Futsing,Putsinghsien,Rongcheng,Фуцинь 25.725 119.37944 P PPL CN 07 67397 25 Asia/Shanghai 2012-01-18
-1797121 Jieyang Jieyang Chieh-yang,Chieh-yang-hsien,Chieh-yung,Chien Yang,Jieyang,Kiehyang,Kityang,Kityang-hsien,Rongcheng,jie yang,jie yang shi,揭阳,揭阳市 23.52886 116.36416 P PPLA2 CN 30 1001985 10 Asia/Shanghai 2012-01-18
-1797122 Rongzhou Rongzhou Jung,Jung-ch'eng-chen,Jung-ch’eng-chen,Jung-hsien,Jung-yun,Jung-yün,Rongcheng,Rongxian,Rongzhou,Yung-hsien,rong zhou,容州 22.87724 110.55717 P PPLA3 CN 16 0 77 Asia/Chongqing 2012-01-18
-1797132 Rizhao Rizhao Jichaohsien,Jih-chao,Jih-chao-hsien,Rijao,Rizhao,ri zhao,ri zhao shi,日照,日照市 35.4275 119.45528 P PPL CN 25 246387 16 Asia/Shanghai 2012-01-18
-1797136 Rixinhe Rixinhe Jih-hsin-chen,Jih-hsing-chen,Rixinhe,Rixinzhen,Shaozhi,Shaozhi Zhen,ri xin he,shao zhi,shao zhi zhen,少直,少直镇,日新河 31.9225 121.67972 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1797144 Rifeng Rifeng Hsin-ch'eng,Hsin-ch’eng,Li-ch'uan-hsien,Li-ch’uan-hsien,Lichuan,Lichuan Xian,Lichwan,Lichwan-hsien,Rifeng,Rifeng Zhen,Sincheng,li chuan xian,ri feng,ri feng zhen,日峰,日峰镇,黎川县 27.29728 116.91107 P PPLA3 CN 03 0 119 Asia/Shanghai 2012-01-18
-1797145 Ridong Ridong Jih-tung,Ridong,Ridong Xiang,ri dong,ri dong xiang,日东,日东乡 25.98392 116.2701 P PPLA4 CN 03 0 293 Asia/Shanghai 2012-01-18
-1797175 Rentian Rentian Jen-t'ien,Jen-t’ien,Rentian,Rentian Zhen,ren tian,ren tian zhen,壬田,壬田镇 25.98727 116.11661 P PPLA4 CN 03 0 220 Asia/Shanghai 2012-01-18
-1797178 Renshan Renshan Jen-shan,Jen-shan-hsu,Jen-shan-hsü,Nien-shan,Nimshan,Renshan,ren shan,稔山 22.83795 114.80423 P PPLA4 CN 30 0 13 Asia/Chongqing 2012-01-18
-1797181 Renqiu Renqiu Jen-ch'iu,Jen-ch'iu-ch'eng-kuan,Jen-ch'iu-hsien,Jen-ch’iu,Jen-ch’iu-ch’eng-kuan,Jen-ch’iu-hsien,Jenkiu,Jenkiuhsien,Renqiu,Zhen'tsyu,Zhen’tsyu,ren qiu shi,任丘市 38.69889 116.09361 P PPL CN 10 98569 13 Asia/Shanghai 2012-01-18
-1797195 Renhua Renhua Jen-hua,Jen-hua-hsien,Renhua,Yanfa,Yanfa-hsien,ren hua,仁化 25.09125 113.74446 P PPLA3 CN 30 0 108 Asia/Chongqing 2012-01-18
-1797198 Renheping Renheping Jen-ho-p'ing,Jen-ho-p’ing,Renheping,Renheping Zhen,ren he ping,ren he ping zhen,仁和坪,仁和坪镇 30.10222 111.23669 P PPLA4 CN 12 0 617 Asia/Chongqing 2012-01-18
-1797211 Renhe Renhe Jen-ho,Jen-ho-hsu,Jen-ho-hsü,Renhe,Renhe Zhen,ren he,ren he zhen,仁和,仁和镇 27.65657 115.26036 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-18
-1797212 Renhe Renhe Jen-ho,Jen-ho-chen,Jen-ho-chieh,Jenhokai,Renhe,Yung-jen,Yung-jen Old City,ren he,仁和 26.49926 101.7386 P PPLA3 CN 32 0 1110 Asia/Chongqing 2012-01-18
-1797219 Renfengzhuang Renfengzhuang Jen-feng-chuang,Renfengzhuang 39.31139 117.66222 P PPL CN CN 28 3006 2 Asia/Shanghai 2012-01-18
-1797233 Renchaoxi Renchaoxi Jen-ch'ao-ch'i,Jen-ch'ao-hsi,Jen-ch’ao-ch’i,Jen-ch’ao-hsi,Renchaoxi,Rengchaoxi Xiang,ren chao xi,ren chao xi xiang,人潮溪,人潮溪乡 29.60898 110.58568 P PPLA4 CN 11 0 256 Asia/Chongqing 2012-01-18
-1797239 Raoshi Raoshi Jao-p'o-ch'iao,Jao-p’o-ch’iao,Jao-shih,Jao-shih-ch'iao,Jao-shih-ch’iao,Raoshi,Raoshi Xiang,rao shi,rao shi xiang,遶市,遶市乡 27.85004 114.14323 P PPLA4 CN 03 0 119 Asia/Chongqing 2012-01-18
-1797252 Ranghe Ranghe Jang-ho,Jang-ho-chen,Jangho Cheno,Kun-ho,Ranghe,rang he,瀼河 33.69223 112.85082 P PPLA4 CN 09 0 144 Asia/Chongqing 2012-01-18
-1797258 Quzi Quzi Ch'u-tzu,Ch'u-tzu-chen,Ch’u-tzu-chen,Ch’ü-tzu,Huan,Huan-hsien,Quzi,Quzi Zhen,Tsyuytszochzhen,Tsyuytszöchzhen,qu zi,qu zi zhen,曲子,曲子镇 36.29323 107.51204 P PPLA4 CN 15 0 1158 Asia/Chongqing 2012-01-18
-1797259 Quzi Quzi Ch'u-tzu,Ch’ü-tzu,Liu-tzu,Quzi,qu zi,渠子 34.86565 108.18765 P PPLA4 CN 26 0 1169 Asia/Chongqing 2012-01-18
-1797264 Quzhou Quzhou Ch'u,Ch'u-chou,Ch'u-hsien,Ch'u-hsien-ch'eng,Chu-chow,Chuchowfu,Ch’ü,Ch’ü-chou,Ch’ü-hsien,Ch’ü-hsien-ch’eng,Quxian,Quzhou 28.95944 118.86861 P PPL CN 02 82216 77 Asia/Shanghai 2012-01-18
-1797271 Quyang Quyang Ching,Ching-chou,Ching-hsien,Ching-hsien-ch'eng,Ching-hsien-ch’eng,Jingxian,Quyang,Tsingchow,Tsinghsien,Tszinsyan',Tszinsyan’,qu yang,渠阳 26.57507 109.63808 P PPLA3 CN 11 0 440 Asia/Chongqing 2012-01-18
-1797275 Quxia Quxia Ch'u-hsia-chen,Ch’ü-hsia-chen,Hsia-ma-yu,Hsia-ma-yu-chen,Hsia-ma-yü,Hsia-ma-yü-chen,Hsia-mu-yu,Hsia-mu-yü,Quxia,Quxia Zhen,Quxiazhen,qu xia,qu xia zhen,曲霞,曲霞镇 32.10037 120.15698 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1797281 Quxi Quxi Quxi,Quxi Xiang,qu xi,qu xi xiang,曲溪,曲溪乡 25.65376 116.91517 P PPLA4 CN 07 0 632 Asia/Shanghai 2012-01-18
-1797283 Quxi Quxi Quxi,qu xi,曲溪 23.58994 116.39802 P PPLA3 CN 30 0 20 Asia/Shanghai 2012-01-18
-1797287 Lechang Lechang Ch'iu-ch'u-wo,Ch'u-wu,Ch'u-wu-hsien,Ch’iu-ch’ü-wo,Ch’ü-wu,Ch’ü-wu-hsien,Kuwo,Kuwohsien,Küwo,Lechang,Lechang Zhen,Quwo Xian,Tsyuyvo,le chang,le chang zhen,qu wo xian,乐昌,乐昌镇,曲沃县 35.64201 111.46722 P PPLA3 CN 24 0 460 Asia/Chongqing 2012-01-18
-1797293 Qutang Qutang Ch'u-t'ang,Ch'u-t'ang-chen,Ch’ü-t’ang,Ch’ü-t’ang-chen,Kutang,Qutang,Qutang Zhen,qu tang,qu tang zhen,曲塘,曲塘镇 32.49641 120.32708 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1797308 Qulai Qulai Ch'u-lai,Ch’ü-lai,Qulai,Qulai Xiang,qu lai,qu lai xiang,曲濑,曲濑乡 27.05966 114.86045 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-18
-1797318 Qujing Qujing Ch'u-ching,Ch'u-ching-hsien,Chiu-ch'u-ching,Chiu-ch’ü-ching,Ch’ü-ching,Ch’ü-ching-hsien,Ku-tsing-fu,Kutsing,Kutsinghsien,Kü-tsing-fu,Kütsing,Nan-ning,Qujing,qu jing shi,曲靖市 25.48333 103.78333 P PPL CN 29 146015 1887 Asia/Chongqing 2012-01-18
-1797326 Qujiang Qujiang Ch'u,Ch'u-hsien,Ch’ü,Ch’ü-hsien,Qujiang,Quxian,Tsyuysyan',Tsyuysyan’,qu jiang,渠江 30.84206 106.96785 P PPLA3 CN 32 0 284 Asia/Chongqing 2012-01-18
-1797327 Qujiang Qujiang Ch'u-chiang,Ch'u-chiang-chen,Ch’ü-chiang,Ch’ü-chiang-chen,Qujiang,Qujiang Zhen,qu jiang,qu jiang zhen,曲江,曲江镇 28.24715 115.79097 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-18
-1797333 Qufu Qufu Ch'u-fou,Ch'u-fou-hsien,Ch'u-fou-hsien-ch'eng,Ch'u-fu-hsien,Chu-fu,Chü-fu,Ch’u-fu-hsien,Ch’ü-fou,Ch’ü-fou-hsien,Ch’ü-fou-hsien-ch’eng,Kinfowhsien,Kufow,Küfow,Qufu,chwipu,qu fu,qu fu shi,曲阜,曲阜市,취푸 35.59667 116.99111 P PPL CN 25 85144 69 Asia/Shanghai 2012-01-18
-1797342 Qucun Qucun Ch'u-ts'un,Ch'u-ts'un-chen,Ch’ü-ts’un,Ch’ü-ts’un-chen,Qucun,Qucun Zhen,qu cun,qu cun zhen,曲村,曲村镇 35.73334 111.54503 P PPLA4 CN 24 0 492 Asia/Chongqing 2012-01-18
-1797352 Quanzhou Quanzhou Ch'uan,Ch'uan-chou,Ch'uan-chou-chen,Ch'uan-hsien,Ch'uan-hsien-ch'eng,Chuanchow,Ch’üan,Ch’üan-chou,Ch’üan-chou-chen,Ch’üan-hsien,Ch’üan-hsien-ch’eng,Quanzhou,quan zhou,全州 25.9446 111.0364 P PPLA3 CN 16 0 152 Asia/Chongqing 2012-01-18
-1797353 Quanzhou Quanzhou Ch'uan-chou,Ch'uan-chou-shih,Chin-chiang,Chin-chiang-hsien,Chinchew,Chuanchowfu,Chüanchowfu,Ch’üan-chou,Ch’üan-chou-shih,Cjuan'chzhou,Quanzhou,Tsin-chiang,Tsingkianghsien,Tsinkiang,Zaitun,Zayton,quan zhou,Цюаньчжоу,泉州 24.91389 118.58583 P PPLA2 CN 07 184143 14 Asia/Shanghai 2012-01-18
-1797355 Quanzhai Quanzhai Ch'uan-chai,Ch’üan-chai,Kuan-chai,Quanzhai,Quanzhai Zhen,quan zhai,quan zhai zhen,权寨,权寨镇 33.44246 113.85836 P PPLA4 CN 09 0 71 Asia/Shanghai 2012-01-18
-1797368 Quanshang Quanshang Ch'uan-shang,Ch’üan-shang,Quanshang,Quanshang Zhen,quan shang,quan shang zhen,泉上,泉上镇 26.41922 116.96236 P PPLA4 CN 07 0 447 Asia/Shanghai 2012-01-18
-1797371 Quannan Xian Quannan Xian Ch'eng-hsiang-chen,Ch'ien-nan-hsien,Ch'uan-nan,Chengxiang,Chengxiang Zhen,Ch’eng-hsiang-chen,Ch’ien-nan-hsien,Ch’üan-nan,Kien-nan,Kiennan-hsien,Quannan Xian,cheng xiang,cheng xiang zhen,quan nan xian,全南县,城厢,城厢镇 24.74636 114.52491 P PPLA3 CN 03 0 260 Asia/Chongqing 2012-02-02
-1797385 Quangang Quangang Ch'uan-chiang,Ch'uan-chiang-chieh,Ch’üan-chiang,Ch’üan-chiang-chieh,Quangang,Quangang Zhen,quan gang,quan gang zhen,泉港,泉港镇 28.15594 115.59658 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-18
-1797398 Qizili Qizili Ch'i-tzu-li,Ch’i-tzu-li,Qizili,Qizili Zhen,qi zi li,qi zi li zhen,杞梓里,杞梓里镇 30.0017 118.74058 P PPLA4 CN 01 0 203 Asia/Shanghai 2012-01-18
-1797402 Qizhou Qizhou Ch'i-ch'un,Ch'i-ch'un-hsien,Ch'i-chou,Ch’i-chou,Ch’i-ch’un,Ch’i-ch’un-hsien,Kichow,Kichow-fu,Kichowhup,Kichun,Kichun-hsien,Qizhou,Qizhou Zhen,qi zhou,qi zhou zhen,蕲州,蕲州镇 30.06667 115.33333 P PPLA4 CN 12 0 19 Asia/Shanghai 2012-01-18
-1797404 Qizhen Qizhen Ch'i-chen,Ch'i-chia-chai,Ch’i-chen,Ch’i-chia-chai,Qizhen,Tsitszyachay,qi zhen,齐镇 34.21062 107.7136 P PPLA4 CN 26 0 608 Asia/Chongqing 2012-01-18
-1797414 Qiying Qiying Ch'i-ying,Ch’i-ying,Qiying,Qiying Zhen,qi ying,qi ying zhen,七营,七营镇 36.50324 106.14862 P PPLA4 CN 21 0 1468 Asia/Chongqing 2012-01-18
-1797417 Wuxi Wuxi Ch'i-yang,Ch'i-yang-ch'eng,Ch'i-yang-hsien,Ch’i-yang,Ch’i-yang-ch’eng,Ch’i-yang-hsien,Kiyang,Kiyang-hsien,Qiyang,Wuxi,wu xi,浯溪 26.57307 111.84184 P PPLA3 CN 11 66442 87 Asia/Chongqing 2012-01-18
-1797431 Zhaoyu Zhaoyu Ch'i,Ch'i-hsien,Ch'i-hsien-ch'eng,Ch’i,Ch’i-hsien,Ch’i-hsien-ch’eng,Kihsien,Qi Xian,Qixian,Zhaoyu,Zhaoyu Zhen,qi xian,zhao yu,zhao yu zhen,昭余,昭余镇,祁县 37.35528 112.31667 P PPLA3 CN 24 0 766 Asia/Chongqing 2012-01-18
-1797438 Qixia Qixia Ch'i-hsia,Ch'i-hsia-hsien,Ch’i-hsia,Ch’i-hsia-hsien,Qixia,Tsisia 37.2975 120.82556 P PPL CN 25 79106 141 Asia/Shanghai 2012-01-18
-1797451 Qiuxi Qiuxi Qiuxi,Qiuxi Zhen,qiu xi,qiu xi zhen,秋溪,秋溪镇 27.84877 116.2718 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-18
-1797465 Qiukou Qiukou Ch'iu-k'ou,Ch’iu-k’ou,Qiukou,Qiukou Zhen,qiu kou,qiu kou zhen,秋口,秋口镇 29.34701 117.89964 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-18
-1797466 Qiujin Qiujin Ch'iu-chin,Ch'iu-ching,Ch'iu-ching-chieh,Chiu-ching-shih,Ch’iu-chin,Ch’iu-ching,Ch’iu-ching-chieh,Qiujin,Qiujin Zhen,qiu jin,qiu jin zhen,虬津,虬津镇 29.16944 115.67895 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-18
-1797475 Qiucun Qiucun Ch'iu-ts'un,Ch'iu-ts'un-chen,Ch'iu-ts'un-ling,Ch’iu-ts’un,Ch’iu-ts’un-chen,Ch’iu-ts’un-ling,Qiucun,Qiucun Zhen,Qiucunzhen,qiu cun,qiu cun zhen,裘村,裘村镇 29.60444 121.62139 P PPLA4 CN 02 0 25 Asia/Shanghai 2012-01-18
-1797476 Qiuchuan Qiuchuan Ch'iu-ch'uan,Ch'iu-chuan-chen,Ch’iu-chuan-chen,Ch’iu-ch’uan,Qiuchuan,qiu chuan,qiu chuan zhen,球川,球川镇 28.86667 118.31667 P PPLA4 CN 02 0 179 Asia/Shanghai 2012-01-18
-1797479 Qiu’ai Qiu'ai Ch'iu-ai,Ch'iu-chieh,Ch'iu-i,Ch'iu-yai,Ch'iu-yai-chen,Ch’iu-ai,Ch’iu-chieh,Ch’iu-i,Ch’iu-yai,Ch’iu-yai-chen,Qiu'ai,Qiuai Zhen,Qiu’ai,Yin-hsien,qiu ai,qiu ai zhen,邱隘,邱隘镇 29.85198 121.63161 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1797487 Qitao Qitao Ch'i-t'ao,Ch’i-t’ao,Qitao,Qitao Xiang,qi tao,qi tao xiang,七套,七套乡 34.16667 119.85 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1797501 Qishi Qishi Ch'i-shih,Ch’i-shih,Qishi,Qishi Zhen,qi shi,企石 23.0681 114.01236 P PPLA4 CN 30 0 13 Asia/Chongqing 2012-01-18
-1797519 Qiqin Qiqin Ch'i-ch'in,Ch'i-ch'in-chieh,Ch’i-ch’in,Ch’i-ch’in-chieh,Qiqin,Qiqin Zhen,qi qin,qi qin zhen,七琴,七琴镇 27.70569 115.60509 P PPLA4 CN 03 0 100 Asia/Shanghai 2012-01-18
-1797524 Qiping Qiping Ch'i-p'ing,Ch'i-p'ing-ao,Ch’i-p’ing,Ch’i-p’ing-ao,Qiping,Qiping Zhen,qi ping,qi ping zhen,棋坪,棋坪镇 28.66549 114.20441 P PPLA4 CN 03 0 308 Asia/Chongqing 2012-01-18
-1797535 Qiongshan Qiongshan Ch'iung-chou,Ch'iung-shan,Ch'iung-shan-hsien,Ch’iung-chou,Ch’iung-shan,Ch’iung-shan-hsien,Kiung chow fu,Kiungchow,Kiungshan,Kiungshan-hsien,Qiongshan,Qiongzhou 20.00583 110.35417 P PPL CN 31 87657 18 Asia/Chongqing 2012-01-18
-1797537 Qiongxi Qiongxi Ha-la-ma,Hongyuan,Hung-yuan,Hung-yüan,Hurama,Li Hsien,Qiongxi,qiong xi,邛溪 32.79272 102.54294 P PPLA3 CN 32 0 3493 Asia/Chongqing 2012-01-18
-1797543 Yuanjiang Yuanjiang Qionghu,Yuan-chiang,Yuan-chiang-hsien,Yuanjiang,Yuankiang,Yuankiang-hsien,Yuen Kong,Yüan-chiang,Yüan-chiang-hsien,Yüankiang,Yüankiang-hsien,yuan jiang,沅江 28.84298 112.35217 P PPL CN 11 66145 35 Asia/Chongqing 2012-01-18
-1797551 Qinzhou Qinzhou Ch'in,Ch'in-chou,Ch'in-chou-chen,Ch'in-chou-chuang-tsu-tzu-chih-hsien,Ch'in-hsien,Chinchow,Ch’in,Ch’in-chou,Ch’in-chou-chen,Ch’in-chou-chuang-tsu-tzu-chih-hsien,Ch’in-hsien,Qinzhou,Yamchow,Yamhsien,qin zhou shi,钦州市 21.95 108.61667 P PPL CN 16 100996 10 Asia/Chongqing 2012-01-18
-1797554 Qinhe Qinhe Ch'in-yuan,Ch'in-yuan-hsien,Ch’in-yüan,Ch’in-yüan-hsien,Qinhe,Qinhe Zhen,Qinyuan,Qinyuan Xian,Tsin'yuan',Tsin’yuan’,qin he,qin he zhen,qin yuan xian,沁河,沁河镇,沁源县 36.50139 112.32472 P PPLA3 CN 24 0 1040 Asia/Chongqing 2012-01-18
-1797559 Dingchang Dingchang Ch'in-hsien,Ch’in-hsien,Dingchang,Dingchang Zhen,Qin Xian,Qinxian,ding chang,ding chang zhen,qin xian,定昌,定昌镇,沁县 36.76306 112.68722 P PPLA3 CN 24 0 957 Asia/Chongqing 2012-01-18
-1797568 Longgang Longgang Ch'in-shui,Ch'in-shui-hsien,Ch’in-shui,Ch’in-shui-hsien,Longgang,Longgang Zhen,Qinshui,Qinshui Xian,Tsin'shuy,Tsin’shuy,long gang,long gang zhen,qin shui xian,沁水县,龙港,龙港镇 35.68941 112.15798 P PPLA3 CN 24 0 1055 Asia/Chongqing 2012-01-18
-1797575 Qinnan Qinnan Ch'in-nan,Ch'in-nan-ts'ang,Qinnancang 33.25306 119.91333 P PPL CN 04 55975 1 Asia/Shanghai 2006-01-17
-1797595 Qinhuangdao Qinhuangdao Ch'in-huang-tao,Ch'in-huang-tao-shih,Chinwangtao,Ch’in-huang-tao,Ch’in-huang-tao-shih,Cin'khuandao,Qinhuangdao,qin huang dao shi,Циньхуандао,چىنخۇاڭداۋ شەھىرى,秦皇岛市,秦皇島市 39.93167 119.58833 P PPL CN 10 759718 6 Asia/Harbin 2012-01-18
-1797630 Qingyuan Qingyuan Ch'ing-hsu,Ch'ing-hsu-hsien,Ch'ing-yuan,Ch'ing-yuan-ch'eng,Ch'ing-yuan-hsien,Ch’ing-hsü,Ch’ing-hsü-hsien,Ch’ing-yüan,Ch’ing-yüan-ch’eng,Ch’ing-yüan-hsien,Qingxu,Qingxu Xian,Qingyuan,Qingyuan Zhen,Sukowhsien,Sükowhsien,T'sinyuan',Tsingyuanhsien,Tsingyüanhsien,T’sinyuan’,qing xu xian,qing yuan,qing yuan zhen,清徐县,清源,清源镇 37.61748 112.32583 P PPLA3 CN 24 0 784 Asia/Chongqing 2012-01-18
-1797645 Qingyang Qingyang Ch'ing-yang,Ch'ing-yang-chen,Ch’ing-yang,Ch’ing-yang-chen,Qingyang,Qingyangzhen,qing yang,青阳 31.76595 120.24706 P PPLA4 CN 04 0 12 Asia/Shanghai 2012-01-18
-1797646 Qingyangyi Qingyangyi Ch'ing-yang-i,Ch’ing-yang-i,Qingyangyi,Qingyangyi Zhen,qing yang yi,qing yang yi zhen,青羊驿,青羊驿镇 33.08443 106.39011 P PPLA4 CN 26 0 673 Asia/Chongqing 2012-01-18
-1797656 Qingcheng Qingcheng An-hua,Ch'ing-yang,Ch'ing-yang-hsien,Ch’ing-yang,Ch’ing-yang-hsien,Qingcheng,Qingcheng Zhen,Qingyang,Tsinyan,qing cheng,qing cheng zhen,庆城,庆城镇 35.9989 107.88548 P PPLA4 CN 15 0 1097 Asia/Chongqing 2012-01-18
-1797658 Jinjiang Jinjiang Ch'ing-yang,Ch'ing-yang-chen,Chin-chiang,Ch’ing-yang,Ch’ing-yang-chen,Jinjiang,Qingyang,jin jiang,晋江 24.81978 118.57414 P PPL CN 07 89623 33 Asia/Shanghai 2012-01-18
-1797676 Qinglang Qinglang Ch'ing-hsi,Chiu-ch'ing-ch'i,Chiu-ch’ing-ch’i,Ch’ing-hsi,Qinglang,Qingxi 27.12472 108.73278 P PPL CN CN 18 2895 398 Asia/Chongqing 2012-01-18
-1797677 Qingxi Qingxi Ch'ing-ch'i,Choulin,Ch’ing-ch’i,Qingxi,Tsintsi 26.42861 110.35972 P PPL CN CN 11 1910 434 Asia/Chongqing 2012-01-18
-1797679 Qingxi Qingxi Ch'ing-ch'i,Ch'ing-ch'i-hsu,Ch’ing-ch’i,Ch’ing-ch’i-hsü,Qingxi,Qingxi Xiang,qing xi,qing xi xiang,清溪,清溪乡 25.22949 115.61392 P PPLA4 CN 03 0 530 Asia/Shanghai 2012-01-18
-1797680 Qingxi Qingxi Ch'ing-ch'i,Ch'ing-ch'i-hsu,Ch'ing-ch'i-t'ang,Ch'ing-hsi,Ch'ing-hsi-hsu,Ch’ing-ch’i,Ch’ing-ch’i-hsü,Ch’ing-ch’i-t’ang,Ch’ing-hsi,Ch’ing-hsi-hsü,Qingxi,Qingxi Zhen,Tsyang-kai,qing xi,清溪 22.84894 114.15536 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-18
-1797736 Qingshuihe Qingshuihe Ch'in-ho,Ch'ing-shui-ho,Ch’in-ho,Ch’ing-shui-ho,Qingshuihe,Qinhe,Qinhe Xiang,qin he xiang,qing shui he,亲和乡,清水河 39.72198 113.10784 P PPLA4 CN 24 0 997 Asia/Shanghai 2012-01-18
-1797747 Qingshui Qingshui Ch'ing-shui-chen,Ch'ing-shui-ho,Ch’ing-shui-chen,Ch’ing-shui-ho,Qingshui,Qingshui Jiedao,Qingshuizhen,qing shui,qing shui jie dao,清水,清水街道 31.31724 118.47686 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-18
-1797767 Qingshan Qingshan Ch'ing-shan,Ch'ing-shan-ch'iao,Ch’ing-shan,Ch’ing-shan-ch’iao,Qingshan,Qingshan Xiang,Qingshanqiao,qing shan,qing shan xiang,青山,青山乡 29.69416 116.69794 P PPLA4 CN 01 0 57 Asia/Shanghai 2012-01-18
-1797782 Qingshanhu Qingshanhu Ch'ing-shan,Ch’ing-shan,Qingshan,Qingshanhu,Qingshanhu Jiedao,qing shan,qing shan hu,qing shan hu jie dao,青山,青山湖,青山湖街道 30.2506 119.81208 P PPLA4 CN 02 0 18 Asia/Shanghai 2012-01-18
-1797793 Qingquan Qingquan Ch'i-shui,Ch'i-shui-hsien-ch'eng,Ch’i-shui,Ch’i-shui-hsien-ch’eng,Cincjuan',Hsi-shui,Hsi-shui-hsien,Kishui-hsien,Qingquan,Qingshui Zhen,Sishui,Xishui,Xishui Xian,qing quan,qing quan zhen,xi shui xian,Цинцюань,浠水县,清泉,清泉镇 30.45113 115.25593 P PPLA3 CN 12 76154 35 Asia/Shanghai 2012-01-18
-1797795 Qingqiaoyi Qingqiaoyi Ch'ing-ch'iao-ho,Ch'ing-ch'iao-i,Ch'ing-ch'iao-p'u,Ch’ing-ch’iao-ho,Ch’ing-ch’iao-i,Ch’ing-ch’iao-p’u,Qingqiaoyi,qing qiao yi,青桥驿 33.32897 106.97617 P PPLA4 CN 26 0 968 Asia/Chongqing 2012-01-18
-1797798 Qingpu Qingpu Ch'ing-p'u,Ch'ing-p'u-hsien,Ch’ing-p’u,Ch’ing-p’u-hsien,Qingpu,Tsingpi hsien,Tsingpu,Tsingpu hsien,qing pu,青浦 31.15394 121.11408 P PPLA3 CN 23 0 6 Asia/Shanghai 2012-01-18
-1797805 Qingshuitang Qingshuitang Ch'ing-p'ing,Ch’ing-p’ing,Qingping,Qingping Zhen,Qingshuitang,qing ping zhen,qing shui tang,青坪镇,青水塘 29.79769 109.06942 P PPLA4 CN 12 0 911 Asia/Chongqing 2012-01-18
-1797836 Qinglong Qinglong Qinglong,Qinglong Zhen,Qinglongjie,qing long,qing long jie,qing long zhen,青龙,青龙街,青龙镇 24.44278 102.9825 P PPLA4 CN 29 0 1643 Asia/Chongqing 2012-01-18
-1797852 Qinglian Qinglian Ch'ing-lien,Ch'ing-lien-hsu,Chinglienchu,Ch’ing-lien,Ch’ing-lien-hsü,Qinglian,Qinglian Zhen,Tsinglin,qing lian,qing lian zhen,青莲,青莲镇 24.46108 112.75536 P PPLA4 CN 30 0 62 Asia/Chongqing 2012-01-18
-1797859 Qingkou Qingkou Ch'ing-k'ou,Ch'ing-k'ou-chen,Ch’ing-k’ou,Ch’ing-k’ou-chen,Ganyu Xian,Kan-yu,Kan-yu-hsien,Kan-yü,Kan-yü-hsien,Qingkou,Qingkou Zhen,Tsingkow,gan yu xian,qing kou,qing kou zhen,赣榆县,青口,青口镇 34.84828 119.10835 P PPLA3 CN 04 0 3 Asia/Shanghai 2012-02-02
-1797870 Qingjiangqiao Qingjiangqiao Ch'ing-chiang-ch'iao,Ch’ing-chiang-ch’iao,Qingjiang,Qingjiang Xiang,Qingjiangqiao 26.60444 110.98528 P PPL CN CN 11 1090 323 Asia/Chongqing 2012-01-18
-1797873 Huaiyin Huaiyin Ch'ing-chiang,Ch'ing-chiang-p'u,Ch'ing-chiang-shih,Ch’ing-chiang,Ch’ing-chiang-p’u,Ch’ing-chiang-shih,Huai-yin,Huai-yin-ch'eng,Huai-yin-ch’eng,Huai-yin-hsien,Huai-yin-shih,Huaiyin,Hwaiyin,Hwaiyin-hsien,Qingjiang,Tsingkiangpo,Tsinkiangpu 33.58861 119.01917 P PPL CN 04 555230 14 Asia/Shanghai 2012-01-18
-1797875 Qingjiang Qingjiang Ch'ing-chiang,Ch’ing-chiang,Qingjiang,Qingjiang Xiang,qing jiang,qing jiang xiang,清江,清江乡 29.19211 114.78714 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-18
-1797883 Qinghua Qinghua Ch'ing-hua,Ch'ing-hua-chen,Ch’ing-hua,Ch’ing-hua-chen,Qinghua,Qinghua Zhen,qing hua,qing hua zhen,青化,青化镇 34.42569 107.83631 P PPLA4 CN 26 0 639 Asia/Chongqing 2012-01-18
-1797884 Qinghua Qinghua Ch'ing-feng-chen,Ch'ing-hua,Ch'ing-hua-chen,Ch’ing-feng-chen,Ch’ing-hua,Ch’ing-hua-chen,Hsia-ch'ing-hua,Hsia-ch’ing-hua,Qinghua,qing hua,青化 34.18409 108.02854 P PPLA4 CN 26 0 454 Asia/Chongqing 2012-01-18
-1797886 Qinghua Qinghua Ch'ing-hua,Ch’ing-hua,Qinghua,Qinghua Zhen,qing hua,qing hua zhen,清华,清华镇 29.41901 117.77434 P PPLA4 CN 03 0 110 Asia/Shanghai 2012-01-18
-1797905 Qingguang Qingguang Ch'ing-kuang,Ch’ing-kuang,Qingguang 39.195 117.02667 P PPL CN CN 28 7448 10 Asia/Shanghai 2012-01-18
-1797915 Qingfu Qingfu Ch'ing-fu,Ch'ing-fu-hsien,Ch’ing-fu,Ch’ing-fu-hsien,Kingfu-hsien,Qingfu,qing fu,庆符 28.43701 104.51622 P PPLA3 CN 32 0 339 Asia/Chongqing 2012-01-18
-1797929 Qingdao Qingdao Cching-tao,Ch'ing-tao,Ch'ing-tao-shih,Ch’ing-tao,Ch’ing-tao-shih,Cindao,Cingdao,Qingdao,Qingdao Shi,Thanh Đảo,Tsingtao,Tsingtau,chingdao,chyngdayw,qing dao,qing dao shi,Čching-tao,Čingdao,Циндао,چىڭداۋ شەھىرى,چینگدائو,青岛,青岛市,青島,칭다오 36.09861 120.37194 P PPL CN 25 1642245 36 Asia/Shanghai 2012-01-18
-1797933 Qingcun Qingcun Ch'ing-ts'un,Ch'ing-ts'un-chiang,Ch'ing-ts'un-chiang-chen,Ch'ing-ts'un-kang,Ch'ing-ts'un-kang-chen,Ch’ing-ts’un,Ch’ing-ts’un-chiang,Ch’ing-ts’un-chiang-chen,Ch’ing-ts’un-kang,Ch’ing-ts’un-kang-chen,Qingcun,Qingcungang,qing cun,青村 30.92473 121.57994 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1797934 Qingciyao Qingciyao Ch'ing-tz'u-yao,Ch’ing-tz’u-yao,Qingciyao,Qingciyao Zhen,qing ci yao,qing ci yao zhen,青磁窑,青磁窑镇 39.61983 113.76761 P PPLA4 CN 24 0 1383 Asia/Shanghai 2012-01-18
-1797945 Qingyuan Qingyuan Ch'ing-yuan,Ch'ing-yuan-hsien,Ch’ing-yüan,Ch’ing-yüan-hsien,Qingcheng,Qingyuan,Tsingyuan,Tsingyun,Tsingyunhsien,Tsingyüan,Tsingyün,Tsingyünhsien,qing yuan,清远 23.7 113.03333 P PPLA2 CN 30 151287 11 Asia/Chongqing 2012-01-18
-1797955 Qindu Qindu Ch'in-tu,Ch'in-tu-chen,Ch’in-tu,Ch’in-tu-chen,Qindu,Qindu Zhen,Qinduzhen,qin du,qin du zhen,秦度,秦度镇 34.1025 108.75083 P PPLA4 CN 26 0 413 Asia/Chongqing 2012-01-18
-1797959 Qincheng Qincheng Nan-feng-hsien,Nanfeng,Nanfeng Xian,Qincheng,Qincheng Zhen,nan feng xian,qin cheng,qin cheng zhen,南丰县,琴城,琴城镇 27.2127 116.53008 P PPLA3 CN 03 0 98 Asia/Shanghai 2012-01-18
-1797971 Qimeng Qimeng Ch'i-meng,Ch’i-meng,Qimeng 26.48472 108.99944 P PPL CN CN 18 1362 507 Asia/Chongqing 2012-01-18
-1797972 Qishan Qishan Ch'i-men,Ch'i-men-hsien,Ch’i-men,Ch’i-men-hsien,Kimen,Kimenhsien,Qimen,Qishan,Qishan Zhen,qi shan,祁山 29.84431 117.71937 P PPLA3 CN 01 0 164 Asia/Shanghai 2012-01-18
-1797988 Qilin Qilin Ch'i-lin,Ch'i-lin-chen,Ch’i-lin,Ch’i-lin-chen,Qilin,Qilin Zhen,Qilinzhen,qi lin,qi lin zhen,麒麟,麒麟镇 31.93662 121.34913 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1798016 Qili Qili Qili,Qili Xiang,qi li,qi li xiang,七里,七里乡 28.44781 116.26848 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-18
-1798031 Qijiaxi Qijiaxi Qijiaxi,Qijiaxi Xiang,qi jia xi,qi jia xi xiang,七甲溪,七甲溪乡 28.86874 110.64793 P PPLA4 CN 11 0 235 Asia/Chongqing 2012-01-18
-1798037 Qijiaping Qijiaping Ch'i-chia-p'ing,Ch’i-chia-p’ing,Qijiaping,Qijiaping Zhen,qi jia ping,qi jia ping zhen,七甲坪,七甲坪镇 28.88485 110.85364 P PPLA4 CN 11 0 196 Asia/Chongqing 2012-01-18
-1798043 Qihe Qihe Ch'i-chia-ho,Ch’i-chia-ho,Qihe,Qihe Zhen,Qijiahe,qi he,qi he zhen,qi jia he,漆家河,漆河,漆河镇 29.13278 111.37539 P PPLA4 CN 11 0 61 Asia/Shanghai 2012-01-18
-1798047 Qihong Qihong Ch'a-k'ou,Ch'ang-t'ou,Ch'i-hung,Ch’a-k’ou,Ch’ang-t’ou,Ch’i-hung,Qihong,Qihong Xiang,qi hong,qi hong xiang,祁红,祁红乡 29.69524 117.6688 P PPLA4 CN 01 0 292 Asia/Shanghai 2012-01-18
-1798056 Qigong Qigong Ch'i-kung,Ch'i-kung-hsu,Ch’i-kung,Ch’i-kung-hsü,Qigong,Qigong Zhen,qi gong,qi gong zhen,七拱,七拱镇 24.31038 112.5689 P PPLA4 CN 30 0 94 Asia/Chongqing 2012-01-18
-1798078 Qidu Qidu Ch'i-tu,Ch’i-tu,Qidu 26.76528 119.54722 P PPL CN CN 07 7770 14 Asia/Shanghai 2012-01-18
-1798082 Hongqiao Hongqiao Ch'i-tung,Ch’i-tung,Hongqiao,Hung-ch'iao,Hung-ch'iao-chen,Hung-ch'iao-shih,Hung-ch’iao,Hung-ch’iao-chen,Hung-ch’iao-shih,Hungkiao,Khuncjao,Qidong,hong qiao,Хунцяо,洪桥 26.76837 112.10814 P PPLA3 CN 11 58287 125 Asia/Chongqing 2012-01-18
-1798091 Xiumei Xiumei Ch'i-ch'ung-yen,Ch’i-ch’ung-yen,Qichongyan,Xiumei,Xiumei Zhen,qi zhong yan,xiu mei,xiu mei zhen,七重堰,修梅,修梅镇 29.51391 111.62586 P PPLA4 CN 11 0 67 Asia/Shanghai 2012-01-18
-1798093 Qibu Qibu Qibu,Qibu Xiang,qi bu,qi bu xiang,齐埠,齐埠乡 28.72151 116.86398 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-18
-1798095 Qibu Qibu Ch'i-pu,Ch’i-pu,Qibu 26.5075 119.545 P PPL CN CN 07 3110 14 Asia/Shanghai 2012-01-18
-1798100 Qiawan Qiawan Ch'ia-wan,Ch’ia-wan,Qiawan,Qiawan Zhen,qia wan,qia wan zhen,洽湾,洽湾镇 27.27412 116.57499 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-18
-1798105 Qiaozhuang Qiaozhuang Ch'iao-ch'un,Ch'iao-chuang,Ch'iao-chuang-chen,Ch'ing-ch'uan,Ch’iao-chuang,Ch’iao-chuang-chen,Ch’iao-ch’un,Ch’ing-ch’uan,Qiaozhuang,Qingchuan,Qingchuan Xian,Qingchuan Zhen,qiao zhuang,qiao zhuang zhen,qing chuan xian,乔庄,乔庄镇,青川县 32.59026 105.23343 P PPLA3 CN 32 0 800 Asia/Chongqing 2012-01-18
-1798107 Qiaozhen Qiaozhen Ch'iao-chen,Ch'iao-shang-chen,Ch’iao-chen,Ch’iao-shang-chen,Qiaozhen,Tsyaoshanchzhen',Tsyaoshanchzhen’,qiao zhen,桥镇 34.48655 107.13918 P PPLA4 CN 26 0 937 Asia/Chongqing 2012-01-18
-1798116 Qiaowa Qiaowa Bowa,Jiaowu,Mu-li-tsang-tsu-tzu-chih-hsien,Muli,Qiaowa,qiao wa,乔瓦 27.93079 101.27781 P PPLA3 CN 32 0 2304 Asia/Chongqing 2012-01-18
-1798133 Qiaotou Qiaotou Qiaotou,qiao tou,桥头 33.75369 104.81418 P PPLA4 CN 15 0 1591 Asia/Chongqing 2012-01-18
-1798134 Qiaotou Qiaotou Qiaotou,qiao tou,桥头 33.10763 104.81168 P PPLA4 CN 15 0 1066 Asia/Chongqing 2012-01-18
-1798135 Qiaotou Qiaotou Ch'iao-t'ou,Ch'iao-t'ou-chen,Ch’iao-t’ou,Ch’iao-t’ou-chen,Qiaotou,Qiaotou Zhen,qiao tou,qiao tou zhen,桥头,桥头镇 33.05515 112.81016 P PPLA4 CN 09 0 131 Asia/Chongqing 2012-01-18
-1798146 Qiaotou Qiaotou Qiaotou,Qiaotou Zhen,qiao tou,qiao tou zhen,桥头,桥头镇 19.96451 109.92637 P PPLA4 CN 31 0 32 Asia/Chongqing 2012-01-18
-1798147 Qiaoting Qiaoting Ch'iao-t'ing,Ch’iao-t’ing,Qiaoting,Qiaoting Xiang,qiao ting,qiao ting xiang,乔亭,乔亭乡 30.38889 118.54667 P PPLA4 CN 01 0 274 Asia/Shanghai 2012-01-18
-1798148 Qiaosi Qiaosi Ch'iao-ssu,Ch'iao-ssu-chen,Ch’iao-ssu,Ch’iao-ssu-chen,Kiaosze,Qiaosi,Qiaosi Zhen,qiao si,qiao si zhen,乔司,乔司镇 30.3516 120.28559 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1798150 Qiaoshe Qiaoshe Ch'iao-she,Ch’iao-she,Qiaoshe,Qiaoshe Zhen,qiao she,qiao she zhen,樵舍,樵舍镇 28.85 115.98333 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-18
-1798158 Qiaonan Qiaonan Ch'iao-nan,Ch’iao-nan,Qiaonan,Qiaonan Zhen,qiao nan,桥南 34.34333 109.59262 P PPLA4 CN 26 0 686 Asia/Chongqing 2012-01-18
-1798159 Qiaomu Qiaomu Ch'iao-mu,Ch'iao-mu-wan,Ch'iao-wan,Ch’iao-mu,Ch’iao-mu-wan,Ch’iao-wan,Qiaomu,Qiaomu Xiang,Qiaomuwan,qiao mu,qiao mu xiang,乔木,乔木乡 30.70367 118.07726 P PPLA4 CN 01 0 38 Asia/Shanghai 2012-01-18
-1798176 Qiaojiang Qiaojiang Ch'iao-chiang,Ch’iao-chiang,Qiaojiang 27.93722 110.67639 P PPL CN CN 11 3290 169 Asia/Chongqing 2012-01-18
-1798183 Qiaogu Qiaogu 39.3125 117.72472 P PPL CN 28 2635 2 Asia/Shanghai 2000-11-21
-1798190 Qiaodong Qiaodong Ch'iao-tung,Ch’iao-tung,Qiaodong,Qiaodong Zhen,qiao dong,qiao dong zhen,桥东,桥东镇 28.05839 115.81957 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1798203 Qi’an Qi'an Ch'i-an,Ch'i-an-chen,Ch’i-an,Ch’i-an-chen,Qi'an,Qi'an Zhen,Qi'anzhen,Qi’an,Qi’an Zhen,Qi’anzhen,qi an,qi an zhen,骑岸,骑岸镇 32.17582 121.04467 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1798219 Yuqian Yuqian Ch'ien-yang,Ch’ien-yang,Qianyang,Yu-ch'ien,Yu-ch'ien-hsien,Yu-ch'ien-hsien-chih,Yuqian,Yuqian Zhen,Yutsien,Yutsien-hsien,Yü-ch’ien,Yü-ch’ien-hsien,Yü-ch’ien-hsien-chih,Yütsien-hsien,wu qian,於潜 30.1881 119.39315 P PPLA4 CN 02 0 100 Asia/Shanghai 2012-01-18
-1798227 Qianxiang Qianxiang Qianxiang,Qianxiang Zhen,qian xiang,qian xiang zhen,千祥,千祥镇 29.0426 120.31358 P PPLA4 CN 02 0 143 Asia/Shanghai 2012-01-18
-1798256 Qianshan Qianshan Ch'ien-shan,Ch’ien-shan,Qianshan,Qianshan Xiang,qian shan,qian shan xiang,钱山,钱山乡 27.34815 114.13353 P PPLA4 CN 03 0 205 Asia/Chongqing 2012-01-18
-1798268 Qianqing Qianqing Ch'ien-ch'ing,Ch'ien-ch'ing-chen,Ch’ien-ch’ing,Ch’ien-ch’ing-chen,Qianqing,Qianqing Zhen,qian qing,qian qing zhen,钱清,钱清镇 30.12506 120.40512 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1798271 Qianqiao Qianqiao Ch'ien-ch'iao-chen,Ch’ien-ch’iao-chen,Qianqiao,qian qiao,钱桥 31.603 120.22496 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1798292 Qianling Qianling Baojing,Pao-ching,Pao-ching-hsien,Paotsing,Paotsing-hsien,Qianling,qian ling,迁陵 28.71667 109.61667 P PPLA3 CN 11 0 698 Asia/Chongqing 2012-01-18
-1798299 Qiankou Qiankou Ch'ien-k'ou,Ch'ien-k'ou-chen,Ch’ien-k’ou,Ch’ien-k’ou-chen,Qiankou,Qiankou Zhen,Tsienkow,qian kou,qian kou zhen,潜口,潜口镇 29.87056 118.29528 P PPLA4 CN 01 0 176 Asia/Shanghai 2012-01-18
-1798323 Qianjia Qianjia Ch'ien-chia,Ch'ien-chia-tung,Ch’ien-chia,Ch’ien-chia-tung,Qianjia,Qianjia Zhen,qian jia,qian jia zhen,千家,千家镇 18.56924 109.08203 P PPLA4 CN 31 0 148 Asia/Chongqing 2012-01-18
-1798343 Qiangtou Qiangtou Ch'iang-t'ou,Ch'iang-t'ou-chen,Ch’iang-t’ou,Ch’iang-t’ou-chen,Qiangtou,Qiangtou Zhen,qiang tou,qiang tou zhen,墙头,墙头镇 29.46389 121.78056 P PPLA4 CN 02 0 17 Asia/Shanghai 2012-01-18
-1798349 Qiangbai Qiangbai Ch'iang-pai,Ch'iang-pai-chen,Ch’iang-pai,Ch’iang-pai-chen,Qiangbai,Qiangbai Zhen,qiang bai,羌白 34.74714 109.81038 P PPLA4 CN 26 0 361 Asia/Chongqing 2012-01-18
-1798353 Qianfang Qianfang Ch'ien-fang,Ch’ien-fang,Qianfang,Qianfang Zhen,qian fang,qian fang zhen,前坊,前坊镇 28.52351 116.23357 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-18
-1798361 Qiandong Qiandong Ch'ien-tung,Ch'ien-tung-chen,Ch’ien-tung,Ch’ien-tung-chen,Qiandong,Qiandong Zhen,qian dong,qian dong zhen,阡东,阡东镇 34.52111 108.63778 P PPLA4 CN 26 0 512 Asia/Chongqing 2012-01-18
-1798362 Qiandong Qiandong Ch'ien-tung,Ch'ien-tung-hsu,Ch’ien-tung,Ch’ien-tung-hsü,Qiandong,Qiandong Zhen,qian dong,钱东 23.67381 116.9145 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-18
-1798364 Qiandeng Qiandeng Qiandeng,Qiandeng Zhen,qian deng,qian deng zhen,千灯,千灯镇 31.26698 120.99694 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1798371 Qiancheng Qiancheng Ch'ien-ch'eng,Ch'ien-ch'eng-chen,Ch'ien-yang,Ch'ien-yang-hsien,Chiu-ch'ien-yang,Chiu-ch’ien-yang,Ch’ien-ch’eng,Ch’ien-ch’eng-chen,Ch’ien-yang,Ch’ien-yang-hsien,Kienyang,Kienyang-hsien,Qiancheng,Tsyan'chen,Tsyan’chen,qian cheng,黔城 27.18501 109.76543 P PPLA3 CN 11 9260 214 Asia/Chongqing 2012-01-18
-1798382 Qiagai Qiagai Qiagai,qia gai,恰盖 34.84496 103.45913 P PPLA4 CN 15 0 2906 Asia/Chongqing 2012-01-18
-1798384 Zixiao Zixiao Ch'ia-ts'un,Ch’ia-ts’un,Qiacun,Zixiao,Zixiao Zhen,qia cun,zi xiao,zi xiao zhen,洽村,紫霄,紫霄镇 27.01759 116.28251 P PPLA4 CN 03 0 142 Asia/Shanghai 2012-01-18
-1798402 Qabqir Qabqir Qabqir,Qabqir Jiedao,Qiabuqi,ka bu qi,ka bu qi jie dao,卡布其,卡布其街道 39.61611 106.87361 P PPLA4 CN 20 0 1226 Asia/Chongqing 2012-01-18
-1798407 Puzi Puzi P'u-tzu-chiao,Puzi,Puzi Zhen,Puzijiao,P’u-tzu-chiao 26.98639 109.77639 P PPL CN CN 11 1450 323 Asia/Chongqing 2012-01-18
-1798417 Puyuan Puyuan P'u-yuan-chen,Puyuan,Puyuan Zhen,P’ü-yuan-chen,pu yuan,pu yuan zhen,濮院,濮院镇 30.68022 120.62912 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1798422 Puyang Puyang K'ai-chou,Kaichow,K’ai-chou,P'u-yang-hsien,Puyan',Puyang,Puyan’,P’u-yang-hsien 35.70278 115.00528 P PPL CN 09 666322 55 Asia/Shanghai 2012-01-18
-1798424 Puyang Puyang Puyang,Puyang Zhen,pu yang,pu yang zhen,浦阳,浦阳镇 29.98734 120.2485 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1798425 Puyang Puyang P'u-chiang,P'u-chiang-hsien-ch'eng,P'u-yang-chen,Pujiang,Pukiang,Pukianghsien,Puyang,P’u-chiang,P’u-chiang-hsien-ch’eng,P’u-yang-chen 29.46028 119.88611 P PPL CN CN 02 3590000 82 Asia/Shanghai 2012-01-18
-1798427 Pucheng Pucheng P'u,P'u-hsien,Pu Xian,Pucheng,Pucheng Zhen,Pusyan',Pusyan’,Puxian,P’u,P’u-hsien,pu cheng,pu cheng zhen,pu xian,蒲县,蒲城,蒲城镇 36.41361 111.095 P PPLA3 CN 24 0 958 Asia/Chongqing 2012-01-18
-1798443 Puting Puting De'an,De’an,Puting,Puting Zhen,Te-an,Te-an-hsien,Teian,Teian-hsien,pu ting,pu ting zhen,蒲亭,蒲亭镇 29.33129 115.75746 P PPLA3 CN 03 0 26 Asia/Shanghai 2012-01-18
-1798446 Futian Futian Fu-t'en,Fu-t'ien-ch'iao,Fu-t’en,Fu-t’ien-ch’iao,Futian,Futian Xiang,P'u-ti'en-ch'iao,P'ut'ien,Putian,P’u-ti’en-ch’iao,P’ut’ien,fu tian,fu tian xiang,甫田,甫田乡 29.2683 114.95892 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1798449 Putian Putian Hinghwa,Hinghwafu,Hsing-hua,P'u-t'ien,P'u-t'ien-hsien,P'u-t'ien-hsien-ch'eng,Putian,Putjan',P’u-t’ien,P’u-t’ien-hsien,P’u-t’ien-hsien-ch’eng,pu tian,Путянь,莆田 25.43944 119.01028 P PPLA2 CN 07 376558 23 Asia/Shanghai 2012-01-18
-1798463 Pushang Pushang Pushang,Pushang Zhen,bu shang,bu shang zhen,埔上,埔上镇 26.9337 117.77026 P PPLA4 CN 07 0 143 Asia/Shanghai 2012-01-18
-1798472 Puqian Puqian P'u-ch'ien,P'u-ch'ien-shih,Pachin,Pochin,Potsin,Puqian,Puqian Zhen,Putsien,Putsin,P’u-ch’ien,P’u-ch’ien-shih,pu qian,pu qian zhen,铺前,铺前镇 20.02627 110.57754 P PPLA4 CN 31 0 10 Asia/Chongqing 2012-01-18
-1798473 Puqi Puqi P'u-ch'i,P'u-ch'i-hsien,Puchihhsien,Puqi,P’u-ch’i,P’u-ch’i-hsien 29.71667 113.88333 P PPL CN 12 132891 40 Asia/Chongqing 2012-01-18
-1798480 Pumiao Pumiao P'u-ching,P'u-ching-chen,P'u-ching-hsu,P'u-maio,P'u-miao-chen,P'u-miao-hsu,Pu chi,Pumiao,P’u-ching,P’u-ching-chen,P’u-ching-hsü,P’u-maio,P’u-miao-chen,P’u-miao-hsü,Yongning,Yung-ning,Yung-ning-hsien 22.75 108.48333 P PPL CN 16 61690 92 Asia/Chongqing 2012-01-18
-1798490 Pulandian Pulandian Adams,Hou-lung-fang,Hsin-chin,Huranten,P'u-lan-tien,P'u-lan-tien-chen,Po-lan-te,Pulandian,P’u-lan-tien,P’u-lan-tien-chen,Xinjin 39.39528 121.96694 P PPL CN 19 104277 14 Asia/Harbin 2012-01-18
-1798492 Pukou Pukou Pukou,Pukou Xiang 26.52222 109.55583 P PPL CN CN 11 1950 432 Asia/Chongqing 2012-01-18
-1798495 Pujijie Pujijie P'u-chi-chen,P'u-chi-chieh,Pujijie,P’u-chi-chen,P’u-chi-chieh,pu ji jie,普集街 34.23326 108.24513 P PPLA4 CN 26 0 425 Asia/Chongqing 2012-01-18
-1798500 Wugong Wugong P'u-chi,P'u-chi-chen,Puji,Puji Zhen,P’u-chi,P’u-chi-chen,Wu-kung,Wugong,pu ji zhen,wu gong,普集镇,武功 34.25829 108.20675 P PPLA4 CN 26 0 441 Asia/Chongqing 2012-01-18
-1798501 Puji Puji P'u-chi,Puji,Puji Zhen,Pujichang,P’u-chi,pu ji,pu ji zhen,普济,普济镇 32.23908 106.45478 P PPLA4 CN 32 2000 509 Asia/Chongqing 2012-01-18
-1798505 Puji Puji P'u-ke,P'u-ko,P'u-ko-ch'ang,P'u-ko-she-chih-chu,Puge,Puji,Pule,P’u-ke,P’u-ko,P’u-ko-ch’ang,P’u-ko-she-chih-chü,pu ji,普基 27.38019 102.54126 P PPLA3 CN 32 0 1404 Asia/Chongqing 2012-01-18
-1798508 Puhua Puhua P'u-hua-chen,Puhua,Puhua Zhen,P’u-hua-chen,pu hua,普化 34.15609 109.39512 P PPLA4 CN 26 0 563 Asia/Chongqing 2012-01-18
-1798513 Puhechang Puhechang P'u-ho,P'u-ho-ch'ang,Puhe,Puhechang,P’u-ho,P’u-ho-ch’ang 28.9525 106.83111 P PPL CN CN 33 1600 304 Asia/Chongqing 2012-01-18
-1798524 Pudong Pudong P'u-tung,Phố Đông,Pootung,Pudong,Pudun,P’u-tung,pu dong,pu dong xin qu,shang hai pu dong,Пудун,上海浦东,浦东,浦东新区,浦東新区 31.23513 121.52759 P PPLA4 CN 23 0 11 Asia/Shanghai 2012-01-18
-1798532 Pucheng Chengguanzhen Pucheng Chengguanzhen P'u-ch'eng-hsien,Pucheng Chengguanzhen,P’u-ch’eng-hsien,pu cheng cheng guan zhen,蒲城城关镇 34.95611 109.58406 P PPLA3 CN 26 0 489 Asia/Chongqing 2012-01-18
-1798537 Pu’an Pu'an Chien-chou,Chien-ke,Chien-ko,Chien-ko-hsien,Chien-kê,Jiange,Jiange Xian,Kienchow Peh,Kienko,Kienko-hsien,Pu'an,Pu'an Zhen,Pu’an,Pu’an Zhen,Tszyan'ge,Tszyan’ge,jian ge xian,pu an,pu an zhen,剑阁县,普安,普安镇 32.03728 105.46686 P PPLA4 CN 32 0 480 Asia/Chongqing 2012-01-18
-1798548 Poyang Poyang Boyang,Jao-chou,Jaochow,P'o-yang-chen,P'o-yang-hsien,P'o-yang-hsien-ch'eng,Pojankhu,Poyang,Poyang Xian,Poyang Zhen,P’o-yang-chen,P’o-yang-hsien,P’o-yang-hsien-ch’eng,po yang,po yang xian,po yang zhen,Поянху,鄱阳,鄱阳县,鄱阳镇 28.99242 116.66754 P PPLA3 CN 03 70787 23 Asia/Shanghai 2012-02-02
-1798559 Potou Potou Potou,po tou,坡头 21.26841 110.43545 P PPLA3 CN 30 0 3 Asia/Chongqing 2012-01-18
-1798564 Wangge’ertang Wangge'ertang Panggurtang,Ponggartang,Wangge'ertang,Wangge'ertang Xiang,Wangge’ertang,Wangge’ertang Xiang,Yuan-ka-t'an,Yüan-ka-t’an,wang ge er tang,wang ge er tang xiang,བང་གུར་ཐང,王格尔塘,王格尔塘乡 35.24172 102.83307 P PPLA4 CN 15 0 2704 Asia/Chongqing 2012-01-18
-1798587 Pogan Pogan P'o-kan,P'o-kan-chieh,Pogan,Pogan Xiang,P’o-kan,P’o-kan-chieh,po gan,po gan xiang,珀玕,珀玕乡 28.32712 116.78331 P PPLA4 CN 03 0 61 Asia/Shanghai 2012-01-18
-1798598 Pitong Pitong P'i,P'i-hsien,Pisyan',Pisyan’,Pitong,Pixian,P’i,P’i-hsien,pi tong,郫筒 30.80993 103.88253 P PPLA3 CN 32 0 564 Asia/Chongqing 2012-01-18
-1798600 Pisha Pisha Dongfeng,Ning-nan-hsien,Ningnan,Pisha,Tung-feng-kung-she,pi sha,披砂 27.07057 102.75771 P PPLA3 CN 32 0 1204 Asia/Chongqing 2012-01-18
-1798632 Pingyin Pingyin P'ing-yin-hsien,Pingyin,P’ing-yin-hsien 36.28306 116.44528 P PPL CN 25 62050 43 Asia/Shanghai 2012-01-18
-1798634 Pingyi Pingyi P'ing-i,P'ing-i-chen,P'ing-i-chi,Pingyi,P’ing-i,P’ing-i-chen,P’ing-i-chi,Ta-p'ing-i,Ta-p’ing-i 35.50056 117.63083 P PPL CN 25 78254 154 Asia/Shanghai 2012-01-18
-1798636 Gutao Gutao Gutao,Gutao Zhen,P'ing-yao-hsien,Pin'yao,Pingyao,Pingyao Xian,Pinujao,Pin’yao,P’ing-yao-hsien,gu tao,gu tao zhen,ping yao gu cheng,ping yao xian,Пинъяо,古陶,古陶镇,平遥县,平遥古城 37.2025 112.17806 P PPLA3 CN 24 42000 763 Asia/Chongqing 2012-01-18
-1798637 Pingyao Pingyao P'ing-yao-chen,Pingyao,P’ing-yao-chen,ping yao,瓶窑 30.40056 119.96333 P PPLA4 CN 02 0 18 Asia/Shanghai 2012-01-18
-1798654 Pingxiang Pingxiang Dingsiang,P'ing-hsiang,P'ing-hsiang-chen,P'ing-hsiang-hsien,P'ing-hsiang-hsien-ch'eng,P'ing-hsiang-shih,Pingsiang,Pingsiang-hsien,Pingxiang,P’ing-hsiang,P’ing-hsiang-chen,P’ing-hsiang-hsien,P’ing-hsiang-hsien-ch’eng,P’ing-hsiang-shih 27.61667 113.85 P PPL CN 03 372123 144 Asia/Chongqing 2012-01-18
-1798661 Pingxi Pingxi Pingxi,Pingxi Xiang,ping xi,ping xi xiang,坪溪,坪溪乡 27.11571 115.93105 P PPLA4 CN 03 0 310 Asia/Shanghai 2012-01-18
-1798665 Pingwang Pingwang P'ing-wang-chen,Pingwang,Pingwang Zhen,P’ing-wang-chen,ping wang,ping wang zhen,平望,平望镇 30.97667 120.63611 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1798688 Qingyang Qingyang P'ing-shun-hsien,Pingshun,Pingshun Xian,Pinshun',Pinshun’,P’ing-shun-hsien,Qingyang,Qingyang Zhen,ping shun xian,qing yang,qing yang zhen,平顺县,青羊,青羊镇 36.20712 113.41721 P PPLA3 CN 24 0 1180 Asia/Shanghai 2012-01-18
-1798689 Pingshui Pingshui P'ing-shui-chen,Pingshui,Pingshui Zhen,P’ing-shui-chen,ping shui,ping shui zhen,平水,平水镇 29.89364 120.6194 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-18
-1798690 Pingshui Pingshui Huangsha Pu,P'ing-shui-hsu,Pingshui,Pingshui Zhen,P’ing-shui-hsü,huang sha pu,ping shui,ping shui zhen,平水,平水镇,黄沙铺 26.84301 113.40136 P PPLA4 CN 11 0 108 Asia/Shanghai 2012-02-28
-1798694 Pingshi Pingshi P'ing-shih,P'ing-shih-hsu,Pingshek,Pingshi,Pingshi Zhen,P’ing-shih,P’ing-shih-hsü,ping shi,ping shi zhen,坪石,坪石镇 25.28667 113.0514 P PPLA4 CN 30 0 188 Asia/Chongqing 2012-01-18
-1798708 Pingshan Pingshan P'ing-shan-hsu,P'ing-shan-shih,Pingshan,Pingshan Zhen,P’ing-shan-hsü,P’ing-shan-shih,ping shan,ping shan zhen,屏山,屏山镇 26.21815 116.28326 P PPLA4 CN 03 0 218 Asia/Shanghai 2012-01-18
-1798710 Pingshan Pingshan Lu-ch'uan,Lu-ch'uan-hsien,Lu-ch’üan,Lu-ch’üan-hsien,Luquan,P'ing-shan-chen,Pingshan,P’ing-shan-chen,ping shan,屏山 25.51985 102.47581 P PPLA3 CN 29 0 1738 Asia/Chongqing 2012-01-18
-1798713 Pingshan Pingshan Hui-tung,Huidong,Ping-shan-hsu,Ping-shan-hsü,Pingshan,ping shan,平山 22.99376 114.71311 P PPLA3 CN 30 113631 22 Asia/Chongqing 2012-01-18
-1798715 Pingshan Pingshan P'ing-shan-hsu,Phyungsan,Pingshan,Pingshan Jiedao,P’ing-shan-hsü,ping shan,坪山 22.69336 114.33783 P PPLA4 CN 30 0 41 Asia/Chongqing 2012-01-18
-1798725 Pingqiao Pingqiao Hsin-yang,P'ing-ch'iao,Pingqiao,Pingqiao Jiedao,P’ing-ch’iao,Xinyang,ping qiao,ping qiao jie dao,xin yang,信阳,平桥,平桥街道 32.09583 114.12028 P PPLA3 CN 09 0 80 Asia/Shanghai 2012-01-18
-1798733 Pingnan Pingnan Pingnam,Pingnam-hsien,Pingnamyun,Pingnamyün,Pingnan,ping nan,平南 23.5543 110.39757 P PPLA3 CN 16 62483 39 Asia/Chongqing 2012-01-18
-1798735 Pingmu Pingmu P'ing-mou,P'ing-mou-chen,P'ing-shui,Pingmu,Pingmu Zhen,P’ing-mou,P’ing-mou-chen,P’ing-shui,ping mu,ping mu zhen,平木,平木镇 33.98103 107.03334 P PPLA4 CN 26 0 1258 Asia/Chongqing 2012-01-18
-1798739 Pingma Pingma P'ing-ma-chen,Pingma,P’ing-ma-chen,T'ien-tung,Tiandong,T’ien-tung,ping ma,平马 23.63743 107.1014 P PPLA3 CN 16 0 111 Asia/Chongqing 2012-01-18
-1798745 Pingluo Pingluo Pingluo,Pingluo Zhen,ping luo,ping luo zhen,平洛,平洛镇 33.5488 105.41033 P PPLA4 CN 15 0 1094 Asia/Chongqing 2012-01-18
-1798749 Pinglumiao Pinglumiao Pinglu,Pinglumiao,ping lu miao,平路庙 34.90994 109.73445 P PPLA4 CN 26 0 391 Asia/Chongqing 2012-01-18
-1798752 Pingling Pingling P'ing-ling-hsu,Pingling,Pingling Zhen,P’ing-ling-hsü,ping ling,平陵 23.65162 114.33942 P PPLA4 CN 30 0 49 Asia/Chongqing 2012-01-18
-1798753 Pinglin Pinglin Pinglin,Pinglin Zhen,ping lin,ping lin zhen,平林,平林镇 31.82476 112.70933 P PPLA4 CN 12 0 140 Asia/Chongqing 2012-01-18
-1798754 Pinglin Pinglin P'ing-lin-shih,P'ing-lin-ssu,P'ing-ling,Pinglin,Pinglin Zhen,Pinglishin,P’ing-lin-shih,P’ing-lin-ssu,P’ing-ling,ping lin,ping lin zhen,平林,平林镇 31.41545 113.60536 P PPLA4 CN 12 0 57 Asia/Chongqing 2012-01-18
-1798760 Pingliang Pingliang P'ing-liang-hsien,P'ing-liang-shih,Pingliang,Pinljan,Pinlyan,P’ing-liang-hsien,P’ing-liang-shih,Пинлян 35.53917 106.68611 P PPL CN 15 108156 1354 Asia/Chongqing 2012-01-18
-1798764 Pingli Pingli Pingli,Pingli Zhen,ping li,ping li zhen,平里,平里镇 29.73666 117.60911 P PPLA4 CN 01 0 99 Asia/Shanghai 2012-01-18
-1798768 Pingle Pingle Chiu-p'ing-lo,Chiu-p’ing-lo,P'ing-lo,P'ing-lo-chen,P'ing-lo-hsien,Pingle,P’ing-lo,P’ing-lo-chen,P’ing-lo-hsien,ping le,平乐 24.64522 110.64306 P PPLA3 CN 16 0 102 Asia/Chongqing 2012-01-18
-1798775 Pingkan Pingkan Pingkan,Pingkan Zhen,ping kan,ping kan zhen,坪坎,坪坎镇 33.8637 106.99787 P PPLA4 CN 26 0 1100 Asia/Chongqing 2012-01-18
-1798783 Hanchang Hanchang Hanchang,P'ing-chiang,Ping-chiang-hsien,Pingjiang,Pingkiang-hsien,P’ing-chiang,han chang,汉昌 28.7 113.58333 P PPLA3 CN 11 0 65 Asia/Chongqing 2012-01-18
-1798784 Pingjiang Pingjiang P'ing-chiang,Pingjiang,P’ing-chiang 25.97056 108.39528 P PPL CN CN 18 1076 329 Asia/Chongqing 2012-01-18
-1798790 Pinghu Pinghu Pinghu,Pinghu Xiang,ping hu,ping hu xiang,平湖,平湖乡 30.90903 115.35814 P PPLA4 CN 12 0 71 Asia/Shanghai 2012-01-18
-1798791 Pinghu Pinghu P'ing-hu-chen,Pinghu,Pinghu Zhen,P’ing-hu-chen,ping hu,ping hu zhen,平湖,平湖镇 26.73731 118.79207 P PPLA4 CN 07 0 409 Asia/Shanghai 2012-01-18
-1798799 Pinghai Pinghai Pinghai,Pinghai Zhen,Pinghoi,ping hai,平海 22.6152 114.8708 P PPLA4 CN 30 0 13 Asia/Chongqing 2012-01-18
-1798805 Pingpu Pingpu P'ing-kou-p'u,Pinggoupu,Pingpu,Pingpu Zhen,P’ing-kou-p’u,ping pu,ping pu zhen,平铺,平铺镇 31.00982 118.32208 P PPLA4 CN 01 0 12 Asia/Shanghai 2012-01-18
-1798813 Pingfeng Pingfeng Pingfeng,ping feng,平峰 35.74182 105.56197 P PPLA4 CN 21 0 2067 Asia/Chongqing 2012-01-18
-1798821 Pingdu Pingdu P'ing-tu,P'ing-tu-hsien,Pindu,Pingdu,P’ing-tu,P’ing-tu-hsien,Пинду 36.78444 119.94639 P PPL CN 25 91077 59 Asia/Shanghai 2012-01-18
-1798822 Pingdu Pingdu An-fu-hsien,Anfu,Anfu Xian,Pingdu,Pingdu Zhen,an fu xian,ping dou,ping dou zhen,安福县,平都,平都镇 27.3863 114.61018 P PPLA3 CN 03 0 90 Asia/Shanghai 2012-01-18
-1798827 Pingdingshan Pingdingshan Chu-ko-chen,Chu-ko-miao,P'ing-ting-shan,P'ing-ting-shan-shih,Pindinshan',Pindinshan’,Pingdingshan,P’ing-ting-shan,P’ing-ting-shan-shih,ping ding shan,Пиндиншань,平顶山 33.73847 113.30119 P PPL CN 09 889675 88 Asia/Chongqing 2012-01-18
-1798828 Guanshan Guanshan Guanshan,Guanshan Zhen,P'ing-ting,P'ing-ting-hsien,P'ing-ting-hsien-ch'eng,Pindin,Pingding,Pingding Xian,Piutingchow,P’ing-ting,P’ing-ting-hsien,P’ing-ting-hsien-ch’eng,guan shan,guan shan zhen,ping ding,ping ding xian,冠山,冠山镇,平定,平定县 37.81464 113.59224 P PPLA3 CN 24 0 764 Asia/Shanghai 2012-01-18
-1798846 Pingchuan Pingchuan Pingchuan,Wu-p'ing-hsien,Wu-p’ing-hsien,Wuping,Wuping Xian,ping chuan,wu ping,wu ping xian,平川,武平,武平县 25.09453 116.09601 P PPLA3 CN 07 0 273 Asia/Shanghai 2012-01-18
-1798859 Pingba Pingba P'ing-pa,P'ing-pa-chen,Pingba,Pingba Zhen,P’ing-pa,P’ing-pa-chen,ping ba,ping ba zhen,坪坝,坪坝镇 31.31527 113.31653 P PPLA4 CN 12 0 80 Asia/Chongqing 2012-01-18
-1798889 Xinguan Xinguan P'ien-kuan,P'ien-kuan-hsien,Pianguan,Pianguan Xian,Pienkwanhsien,Pyan'guan',Pyan’guan’,P’ien-kuan,P’ien-kuan-hsien,Xinguan,Xinguan Zhen,pian guan xian,xin guan,xin guan zhen,偏关县,新关,新关镇 39.45527 111.53001 P PPLA3 CN 24 0 1261 Asia/Chongqing 2012-01-18
-1798894 Piancheng Piancheng P'ien-ch'eng,P'ien-ch'eng-pao,Piancheng,P’ien-ch’eng,P’ien-ch’eng-pao,pian cheng,偏城 35.96634 105.96948 P PPLA4 CN 21 0 1949 Asia/Chongqing 2012-01-18
-1798898 Pengzhai Pengzhai Pengzhai,Pengzhai Zhen,peng zhai,peng zhai zhen,彭寨,彭寨镇 24.35933 115.07273 P PPLA4 CN 30 0 107 Asia/Shanghai 2012-01-18
-1798899 Longcheng Longcheng Longcheng,Longcheng Zhen,P'eng-tse Hsien,Pengze Xian,P’eng-tse Hsien,long cheng,long cheng zhen,peng ze xian,彭泽县,龙城,龙城镇 29.89912 116.55105 P PPLA3 CN 03 1798899 0 34 Asia/Shanghai 2012-01-18
-1798909 Penguanzhuang Penguanzhuang P'en-kuan-chuang,Penguanzhuang,Penkwan,P’en-kuan-chuang 39.48417 117.81333 P PPL CN CN 28 1329 6 Asia/Shanghai 2012-01-18
-1798913 Pengsi Pengsi Pengsi,Pengsi Zhen,peng si,peng si zhen,彭思,彭思镇 30.27258 115.27166 P PPLA4 CN 12 0 40 Asia/Shanghai 2012-01-18
-1798928 Penglai Penglai P'eng-lai-chen,Penglai,Penglaizhen,Ponlaychzhen',Pynlaychzhen',Pynlaychzhen’,Pönlaychzhen’,P’eng-lai-chen,peng lai,蓬莱 30.58217 105.25141 P PPLA3 CN 32 0 316 Asia/Chongqing 2012-01-18
-1798932 Penglai Penglai P'eng-lai-shih,Penglai,Penglai Zhen,P’eng-lai-shih,peng lai,peng lai zhen,蓬莱,蓬莱镇 19.53784 110.53598 P PPLA4 CN 31 0 156 Asia/Chongqing 2012-01-18
-1798933 Pengkou Pengkou P'eng-kow,Pengkou,Pengkou Zhen,P’eng-kow,peng kou,peng kou zhen,朋口,朋口镇 25.53093 116.68445 P PPLA4 CN 07 0 366 Asia/Shanghai 2012-01-18
-1798946 Pengcheng Pengcheng P'eng-ch'eng-chen,Penchenchzhen',Penchenchzhen’,Pengcheng,P’eng-ch’eng-chen 36.43111 114.17 P PPL CN 10 68442 147 Asia/Shanghai 2012-01-18
-1798949 Pendiqing Pendiqing Pendiqing,Pendiqing Xiang,pen de qing,pen de qing xiang,盆地青,盆地青乡 39.94191 112.00383 P PPLA4 CN 20 0 1491 Asia/Chongqing 2012-01-18
-1798957 Peishe Peishe P'ei-she-ts'un,Peishe,Peishe Xiang,P’ei-she-ts’un,pei she,pei she xiang,裴社,裴社乡 35.29731 111.31879 P PPLA4 CN 24 0 516 Asia/Chongqing 2012-01-18
-1798972 Peicheng Peicheng P'ei,P'ei-ch'eng-chen,P'ei-hsien,Peicheng,Peixian,P’ei,P’ei-ch’eng-chen,P’ei-hsien 34.73611 116.92472 P PPLA3 CN 04 0 40 Asia/Shanghai 2012-01-18
-1798994 Panzhuang Panzhuang P'an-chia-chuang,P'an-chuang,P'an-chuang-chen,P'ang-chuang,Panerh,Pang-kia-chwang,Panzhuang,P’an-chia-chuang,P’an-chuang,P’an-chuang-chen,P’ang-chuang 39.33472 117.46278 P PPL CN 28 4864 4 Asia/Shanghai 2012-01-18
-1798998 Dadukou Dadukou Dadukou,Dukou,Pan'chzhikhua,Panzhihua,Ta-tu-k'ou,Ta-tu-k’ou,Tu-k'ou,Tu-k'ou-shih,Tu-k’ou,Tu-k’ou-shih,da du kou,Паньчжихуа,大渡口 26.5479 101.70539 P PPLA3 CN 32 461513 1110 Asia/Chongqing 2012-01-18
-1799002 Panyang Panyang Panyang,Panyang Xiang,pan yang,pan yang xiang,泮洋,泮洋乡 26.5495 118.8313 P PPLA4 CN 07 880 678 Asia/Shanghai 2012-01-18
-1799009 Qingnianlu Qingnianlu P'an-ch'i,P'an-hsi,P'o-hsi,P'o-hsi-chieh,Panki,Panxi,Panxi Zhen,Posi,P’an-ch’i,P’an-hsi,P’o-hsi,P’o-hsi-chieh,Qingnianlu,pan xi,pan xi zhen,qing nian lu,盘溪,盘溪镇,青年路 24.22306 103.09806 P PPLA4 CN 29 0 1149 Asia/Chongqing 2012-01-18
-1799020 Pantang Pantang Pantang,Pantang Zhen,pan tang,pan tang zhen,盘塘,盘塘镇 29.21473 111.50616 P PPLA4 CN 11 0 74 Asia/Shanghai 2012-01-18
-1799051 Panlian Panlian I-mi-ssu,Mi-i,Mi-i-chieh,Mi-i-ssu,Miyi,Miyikai,Panlian,pan lian,攀连 26.88778 102.10836 P PPLA3 CN 32 0 1099 Asia/Chongqing 2012-01-18
-1799056 Panjing Panjing Panjing,Panjing Xiang,pan jing,pan jing xiang,泮境,泮境乡 25.05286 116.5282 P PPLA4 CN 07 0 333 Asia/Shanghai 2012-01-18
-1799060 Panjiawan Panjiawan P'an-chia-wan,Panjiawan,P’an-chia-wan,pan jia wan,潘家弯 34.34054 107.30682 P PPLA4 CN 26 0 577 Asia/Chongqing 2012-01-18
-1799061 Panjiawan Panjiawan P'an-chia-wan,Panjiawan,Panjiawan Xiang,P’an-chia-wan,pan jia wan,pan jia wan xiang,潘家湾,潘家湾乡 30.22109 111.19919 P PPLA4 CN 12 0 306 Asia/Chongqing 2012-01-18
-1799075 Pangushan Pangushan P'an-ku-shan,Pangushan,Pangushan Zhen,P’an-ku-shan,pan gu shan,pan gu shan zhen,盘古山,盘古山镇 25.6428 115.42234 P PPLA4 CN 03 0 244 Asia/Shanghai 2012-01-18
-1799085 Pangguang Pangguang P'ang-kuang,P'ang-kuang-chen,P'ang-lung,P'ang-lung-chen,Pangguang,Pangguang Zhen,P’ang-kuang,P’ang-kuang-chen,P’ang-lung,P’ang-lung-chen,pang guang,pang guang zhen,庞光,庞光镇 34.02889 108.66194 P PPLA4 CN 26 0 454 Asia/Chongqing 2012-01-18
-1799086 Panggezhuang Panggezhuang P'ang-ko-chuang,Panggezhuang,P’ang-ko-chuang 39.80472 117.16611 P PPL CN CN 28 3217 13 Asia/Harbin 2012-01-18
-1799089 Pandu Pandu P'an-tu,Pandu,P’an-tu 26.2375 119.45194 P PPL CN CN 07 3580 17 Asia/Shanghai 2012-01-18
-1799102 Jiangkou Jiangkou Hu Chiang Kou,Hu-chiang-k'ou-hsu,Hu-chiang-k’ou-hsü,Jiangkou,Jiangkou Zhen,P'a-chiang-k'ou,P'a-chiang-k'ou-hsu,P'ao-chiang-kou,P'ao-chiang-kou-hsu,Pajiangkou,Pakonghow,P’a-chiang-k’ou,P’a-chiang-k’ou-hsü,P’ao-chiang-kou,P’ao-chiang-kou-hsü,jiang kou,jiang kou zhen,江口,江口镇 23.73694 113.22111 P PPLA4 CN 30 0 15 Asia/Chongqing 2012-01-18
-1799109 Fatou Fatou Fatou,Fatou Xiang,P'ai-t'ou-chen,Paitou,P’ai-t’ou-chen,fa tou,筏头 30.54639 119.85167 P PPLA4 CN 02 0 76 Asia/Shanghai 2012-01-18
-1799110 Paitou Paitou P'ai-t'ou-chen,Paitou,Paitou Zhen,Paitow,P’ai-t’ou-chen,pai tou,pai tou zhen,牌头,牌头镇 29.60624 120.15078 P PPLA4 CN 02 0 22 Asia/Shanghai 2012-01-18
-1799112 Paitan Paitan P'ai-t'an-hsu,Paitan,Paitan Zhen,P’ai-t’an-hsü,pai tan,派潭 23.49071 113.77536 P PPLA4 CN 30 0 21 Asia/Chongqing 2012-01-18
-1799114 Paishi Paishi P'ai-shih,Paishi,Paishi Zhen,P’ai-shih,pai shi,pai shi zhen,排市,排市镇 29.722 115.05451 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-18
-1799117 Paipu Paipu P'ai-p'u-shih,Paipu,Paipu Zhen,P’ai-p’u-shih,pai pu,pai pu zhen,排浦,排浦镇 19.63981 109.15861 P PPLA4 CN 31 0 7 Asia/Chongqing 2012-01-18
-1799120 Pailou Pailou P'ai-lou-kang,Pailou,Pailou Xiang,P’ai-lou-kang,pai lou,pai lou xiang,牌楼,牌楼乡 31.05447 112.28207 P PPLA4 CN 12 0 90 Asia/Chongqing 2012-01-18
-1799129 Paibu Paibu P'ai-pu,Paibu,Paibu Zhen,P’ai-pu,pai bu,pai bu zhen,排埠,排埠镇 28.43388 114.24817 P PPLA4 CN 03 0 333 Asia/Chongqing 2012-01-18
-1799140 Oumiao Oumiao Ou-chia-miao,Ou-chia-tien,Oukiamiao,Oumiao,Oumiao Zhen,ou miao,ou miao zhen,欧庙,欧庙镇 31.86119 112.16783 P PPLA4 CN 12 0 68 Asia/Chongqing 2012-01-18
-1799155 Oljoq Oljoq Ao-le-chao-ch'i,Ao-le-chao-ch’i,Aolezhaoqi Zhen,Etuokeqian Qi,Oljoq,Otog Qianqi,ao lei zhao qi,ao lei zhao qi zhen,e tuo ke qian qi,敖勒召其,敖勒召其镇,鄂托克前旗 38.36667 107.5 P PPLA3 CN 20 0 1316 Asia/Chongqing 2012-01-18
-1799160 Nyinqug Nyinqug Ningxiu,Nyinqug,ning xiu,宁秀 35.20299 100.8424 P PPLA4 CN 06 0 3376 Asia/Chongqing 2012-01-18
-1799174 Nuojiang Nuojiang Nuojiang,T'ung-chiang,T'ung-chiang-hsien,Tongjiang,Tungkiang,Tungkiang-hsien,T’ung-chiang,T’ung-chiang-hsien,nuo jiang,诺江 31.91562 107.24273 P PPLA3 CN 32 0 395 Asia/Chongqing 2012-01-18
-1799194 Guang’an Guang'an Guang'an,Guang’an,Kuang-an,Kuang-an-hsien,Kwang-an-hsien,Kwangan,Kwanganchow,Nonghui,guang an,广安 30.47413 106.63696 P PPLA3 CN 32 0 244 Asia/Chongqing 2012-01-18
-1799206 Niyang Niyang Niyang,Niyang Zhen,Niyangzhen,ni yang,ni yang zhen,泥阳,泥阳镇 33.81944 105.82139 P PPLA4 CN 15 0 1087 Asia/Chongqing 2012-01-18
-1799209 Nixi Nixi Ni-hsi,Ni-hsi-ch'ung,Ni-hsi-ch’ung,Nixi,Nixi Xiang,Nixi Zhen,Nixichong,ni xi,ni xi xiang,ni xi zhen,泥溪,泥溪乡,泥溪镇 29.79221 116.86406 P PPLA4 CN 01 0 52 Asia/Shanghai 2012-01-18
-1799242 Niutian Niutian Niu-t'ien,Niu-t'ien-hsu,Niu-t’ien,Niu-t’ien-hsü,Niutian,Niutian Zhen,niu tian,niu tian zhen,牛田,牛田镇 27.30125 115.72318 P PPLA4 CN 03 0 100 Asia/Shanghai 2012-01-18
-1799279 Niujiapai Niujiapai 39.52222 117.28944 P PPL CN 28 1593 8 Asia/Shanghai 2000-11-21
-1799312 Niudaokou Niudaokou 39.78611 117.25222 P PPL CN 28 2108 10 Asia/Harbin 2000-11-21
-1799319 Niuchehe Niuchehe Daifuyu,Niu-ch'e-ho,Niu-ch’e-ho,Niuchehe,Niuchehe Xiang,da fu yu,niu che he,niu che he xiang,大富堉,牛车河,牛车河乡 29.04849 110.97497 P PPLA4 CN 11 0 352 Asia/Chongqing 2012-01-18
-1799330 Niubitan Niubitan Niu-pi-t'an,Niu-pi-t’an,Niubitan,Niubitan Zhen,niu bi tan,niu bi tan zhen,牛鼻滩,牛鼻滩镇 29.00862 111.86024 P PPLA4 CN 11 0 34 Asia/Shanghai 2012-01-18
-1799337 Nishi Nishi Hupingshan,Hupingshan Zhen,Ni-sha,Ni-sha-shih,Ni-shih,Nishi,hu ping shan,hu ping shan zhen,ni shi,壶瓶山,壶瓶山镇,泥市 29.93552 110.77823 P PPLA4 CN 11 0 262 Asia/Chongqing 2012-01-18
-1799341 Ningzhou Ningzhou Chengjiao,Hua-ning-hsien,Huaning,Huaning Xian,Li,Li-hsien,Ning-chou,Ningchow,Ningzhou,Ningzhou Zhen,hua ning,hua ning xian,ning zhou,ning zhou zhen,华宁,华宁县,宁州,宁州镇 24.19608 102.92705 P PPLA3 CN 29 0 1637 Asia/Chongqing 2012-01-18
-1799346 Shunling Shunling Ning-yuan-hsien,Ning-yüan-hsien,Ningyuan,Shunling,Shunlingzhen,shun ling,舜陵 25.59167 111.93028 P PPLA3 CN 11 0 196 Asia/Chongqing 2012-01-18
-1799348 Ningyang Ningyang Ning-yang-hsien,Ningyang,Ninyan 35.76417 116.79139 P PPL CN 25 82994 65 Asia/Shanghai 2012-01-18
-1799352 Yutan Yutan Ning-hsiang,Ning-hsiang-hsien,Ningsiang,Ningsiang-hsien,Ningxiang,Yutan,yu tan,玉潭 28.25 112.55 P PPLA3 CN 11 55312 53 Asia/Chongqing 2012-01-18
-1799358 Fenghuang Fenghuang Feng-huang-ts'un,Feng-huang-ts’un,Fenghuang,Fenghuang Zhen,Nin'u,Ning-wu-hsien,Ningwu,Ningwu Xian,Ningwufu,Nin’u,Ting-wu,feng huang,feng huang zhen,ning wu xian,凤凰,凤凰镇,宁武县 38.9978 112.29779 P PPLA3 CN 24 0 1405 Asia/Chongqing 2012-01-18
-1799362 Hanyuan Hanyuan Ch'iang-chou,Ch’iang-chou,Hanyuan,Hanyuan Zhen,Ning-ch'iang,Ning-ch'iang-hsien,Ning-ch’iang,Ning-ch’iang-hsien,Ningkiang,Ningkiang-hsien,Ningkiangchow,Ningqiang,Ningqiang Xian,Nintsyan,han yuan,han yuan zhen,ning qiang,ning qiang xian,宁强,宁强县,汉源,汉源镇 32.834 106.25035 P PPLA3 CN 26 0 797 Asia/Chongqing 2012-01-18
-1799379 Ninghe Ninghe Chiu-ning-ho,Ho-chen,Jiuninghe,Ning-ho,Ning-ho-hsien,Ninghe,Ninghezhen 39.46194 117.7625 P PPL CN CN 28 3683 2 Asia/Shanghai 2012-01-18
-1799383 Ninghai Ninghai Mou-p'ing,Mou-p'ing-hsien,Mou-p’ing,Mou-p’ing-hsien,Mowping,Muping,Ning-hai,Ninghai,Ninghaichow 37.38333 121.58333 P PPL CN 25 56937 10 Asia/Shanghai 2012-01-18
-1799384 Ninghai Ninghai Ning-hai-hsien,Ninghai,ning hai,宁海 29.28917 121.42472 P PPLA3 CN 02 68330 38 Asia/Shanghai 2012-01-18
-1799389 Ning’er Ning'er Ning'er,Ning-erh,Ning-erh-chen,Ning-erh-hsien,Ning’er,P'u-erh,Pu'er,Pu-erh-pu,Puerhfu,Pu’er,P’u-erh,ning er,宁洱 23.04053 101.03683 P PPLA3 CN 29 0 1380 Asia/Chongqing 2012-01-18
-1799391 Ningdun Ningdun Ningdun,Ningdun Zhen,ning dun,ning dun zhen,宁墩,宁墩镇 30.45889 119.10833 P PPLA4 CN 01 0 130 Asia/Shanghai 2012-01-18
-1799393 Ningchegu Ningchegu Dahebei,Ning-ch'e-ku,Ning-ch’e-ku,Ningchegu,Ta-ho-pei 39.15889 117.6625 P PPL CN CN 28 6074 5 Asia/Shanghai 2012-01-18
-1799397 Ningbo Ningbo Chiang-pei-an,Ninbo,Ning-hsien,Ning-po,Ning-po-shih,Ningbo,Ningbo Shi,Yin-hsien,ning bo,ning bo shi,ningbo,Нинбо,نىڭبو شەھىرى,宁波,宁波市,寧波,닝보 29.87819 121.54945 P PPLA2 CN 02 719867 15 Asia/Shanghai 2012-01-18
-1799406 Xinjie Xinjie Ni-hsu-chuang,Ni-hsü-chuang,Ni-hu-chuang,Nihuzhuang,Xinjie,Xinjie Zhen,ni hu zhuang,xin jie,xin jie zhen,倪浒庄,新街,新街镇 32.33655 120.11017 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1799413 Nieying Nieying Nieh-ying,Nieh-ying-chen,Nieying,Nieying Zhen,nie ying,nie ying zhen,聂营,聂营镇 39.12639 113.13306 P PPLA4 CN 24 0 890 Asia/Shanghai 2012-01-18
-1799416 Nieqiao Nieqiao Nieh-ch'iao,Nieh-ch’iao,Nieqiao,Nieqiao Zhen,nie qiao,nie qiao zhen,聂桥,聂桥镇 29.39237 115.65255 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-18
-1799418 Niejiahe Niejiahe Nieh-chia-ho,Niejiahe,Niejiahe Zhen,nie jia he,nie jia he zhen,聂家河,聂家河镇 30.30474 111.29579 P PPLA4 CN 12 0 183 Asia/Chongqing 2012-01-18
-1799450 Nianyushan Nianyushan Nianyushan,Nianyushan Zhen,Nien-yu-shan,Nien-yü-shan,Yeh-yu-shan,Yeh-yü-shan,Yen-yu-shan,Yen-yü-shan,nian yu shan,nian yu shan zhen,鲇鱼山,鲇鱼山镇 29.20671 117.10378 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-18
-1799455 Nianqiao Nianqiao Nianqiao,Nien-ch'iao,Nien-ch’iao,Tung-nien-ch'iao,Tung-nien-ch’iao,nian qiao,埝桥 34.8083 109.86134 P PPLA4 CN 26 0 362 Asia/Chongqing 2012-01-18
-1799462 Niangxi Niangxi Hsin-shao,Niang-ch'i,Niang-ch'i-chen,Niang-ch’i,Niang-ch’i-chen,Niang-hsi,Niangxi,Xinshao,niang xi,酿溪 27.30856 111.43186 P PPLA3 CN 11 0 246 Asia/Chongqing 2012-01-18
-1799491 Neijiang Neijiang Nei-chiang,Nei-chiang-hsien,Nei-chiang-shih,Neijiang,Neikiang,Neikianghsien,nei jiang,nei jiang shi,内江,内江市 29.58354 105.06216 P PPLA3 CN 32 546854 349 Asia/Chongqing 2012-01-18
-1799529 Napo Chengxiangzhen Napo Chengxiangzhen Chanpin-hsien,Chen-pien,Chen-pien-hsien,Mu-pien,Mu-pien-hsien,Napo,Napo Chengxiangzhen,na po cheng xiang zhen,那坡城厢镇 23.47944 105.79157 P PPLA3 CN 16 0 1017 Asia/Chongqing 2012-01-18
-1799535 Naodian Naodian Nao-tien,Nao-tien-chi,Naodian,Naodian Zhen,nao dian,nao dian zhen,闹店,闹店镇 33.8544 113.21102 P PPLA4 CN 09 0 117 Asia/Chongqing 2012-01-18
-1799552 Nanzhou Nanzhou Nan,Nan-hsien,Nanchowting,Nanxian,Nanzhou,nan zhou,南洲 29.35955 112.40243 P PPLA3 CN 11 54449 33 Asia/Chongqing 2012-01-18
-1799565 Nanzhao Chengguanzhen Nanzhao Chengguanzhen Chengguan Zhen,Li-ch'ing-tien,Li-ch’ing-tien,Nan-chao,Nan-chao-hsien,Nan-shao,Nanzhao,Nanzhao Chengguanzhen,nan zhao,nan zhao cheng guan zhen,南召,南召城关镇 33.49249 112.42723 P PPLA3 CN 09 0 206 Asia/Chongqing 2012-01-18
-1799566 Nanzhao Nanzhao Chao-an,Chao-an-hsien,Nanzhao,Zhao'an,Zhao’an,nan zhao,南诏 23.71988 117.17116 P PPLA3 CN 07 0 20 Asia/Shanghai 2012-01-18
-1799574 Nanzhang Chengguanzhen Nanzhang Chengguanzhen Nan-chang,Nan-chang-hsien,Nanzhang,Nanzhang Chengguanzhen,nan zhang cheng guan zhen,南漳城关镇 31.78394 111.82752 P PPLA3 CN 12 83604 130 Asia/Chongqing 2012-01-18
-1799578 Nanzha Nanzha Nan-cha,Nan-cha-chen,Nanzha,Nanzha Zhen,nan zha,nan zha zhen,南闸,南闸镇 31.85769 120.23751 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1799581 Nanyulinxi Nanyulinxi Nanyulin Xiang,Nanyulinxi,Yu-lin-ts'un,Yü-lin-ts’un,nan yu lin xi,nan yu lin xiang,南榆林乡,南榆林西 39.20892 112.68142 P PPLA4 CN 24 0 1076 Asia/Shanghai 2012-01-18
-1799591 Nanyuan Nanyuan Nanyuan,Nanyuan Xiang,nan yuan,nan yuan xiang,南源,南源乡 27.48849 116.40788 P PPLA4 CN 03 0 326 Asia/Shanghai 2012-01-18
-1799622 Nanyang Nanyang Nan-yang,Nan-yang-ts'un,Nan-yang-ts’un,Nanyang,Nanyang Zhen,Nanyangcun,nan yang,nan yang zhen,南阳,南阳镇 31.87389 121.70889 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1799629 Nanyang Nanyang Nan'jan,Nan-yang-shih,Nanyang,nan yang shi,Наньян,南阳市 32.99472 112.53278 P PPL CN 09 251532 131 Asia/Chongqing 2012-01-18
-1799634 Shaxiaba Shaxiaba Nanyang,Nanyang Zhen,Shaxiaba,nan yang,nan yang zhen,sha xia ba,南阳,南阳镇,沙下坝 25.32236 116.50023 P PPLA4 CN 07 0 307 Asia/Shanghai 2012-01-18
-1799640 Nanya Nanya Nanya,Nanya Zhen,nan ya,nan ya zhen,南雅,南雅镇 26.87625 118.30747 P PPLA4 CN 07 0 99 Asia/Shanghai 2012-01-18
-1799642 Nanxun Nanxun Han-hsun,Han-hsün,Nan-hsun,Nan-hsun-chen,Nan-hsün,Nan-hsün-chen,Nanxun,Nanxun Zhen,Nanzin,nan xun,nan xun zhen,南浔,南浔镇 30.86902 120.41994 P PPLA3 CN 02 0 10 Asia/Shanghai 2012-01-18
-1799658 Nanxing Nanxing Nan-hsing,Nan-hsing-tsun,Nanxing,Nanxing Zhen,nan xing,nan xing zhen,南星,南星镇 33.76848 106.67097 P PPLA4 CN 26 0 1293 Asia/Chongqing 2012-01-18
-1799664 Nanxindian Nanxindian Nan-hsin-tien,Nanxindian,Nanxindian Xiang,nan xin dian,nan xin dian xiang,南辛店,南辛店乡 35.96955 111.35922 P PPLA4 CN 24 0 470 Asia/Chongqing 2012-01-18
-1799674 Nanxiang Nanxiang Nan-hsiang,Nan-hsiang-chen,Nansiang,Nanxiang,Nanxiang Zhen,nan xiang,nan xiang zhen,南翔,南翔镇 31.29979 121.3118 P PPLA4 CN 23 0 5 Asia/Shanghai 2012-01-18
-1799686 Nanxi Nanxi Nan-ch'i,Nan-ch'i-hsien,Nan-ch’i,Nan-ch’i-hsien,Nan-hsi,Nanki,Nanki-hsien,Nanxi,nan xi,南溪 28.84209 104.97958 P PPLA3 CN 32 0 274 Asia/Chongqing 2012-01-18
-1799697 Nanwanling Nanwanling Nanwanling,nan wan ling,南湾岭 34.81707 107.14691 P PPLA4 CN 26 0 1196 Asia/Chongqing 2012-01-18
-1799722 Nantong Nantong Nan'tun,Nan-t'ung,Nan-t'ung-hsien,Nan-t'ung-shih,Nan-t’ung,Nan-t’ung-hsien,Nan-t’ung-shih,Nantong,T'ung-chou,Tungchow,T’ung-chou,nan tong,nan tong shi,Наньтун,نەنتۇڭ شەھىرى,南通,南通市 32.03028 120.87472 P PPL CN 04 666251 6 Asia/Shanghai 2012-01-18
-1799732 Nantang Nantang Nantang,Nantang Zhen,nan tang,南塘 22.91374 115.90716 P PPLA4 CN 30 0 18 Asia/Shanghai 2012-01-18
-1799759 Nanshenzao Nanshenzao Nan-shen-tsao,Nanshenzao,Nanshenzao Zhen,nan chen zao,nan chen zao zhen,南沈灶,南沈灶镇 32.78333 120.53333 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1799764 Nanshe Nanshe Hsin-nan-she,Nanshe,Nanshe Xiang,nan she,南社 34.7732 109.11149 P PPLA4 CN 26 0 477 Asia/Chongqing 2012-01-18
-1799781 Nanshan Nanshan Nan-shan-pa,Nanshan,Nanshan Zhen,Nanshanba,nan shan,nan shan zhen,南山,南山镇 25.59905 116.4961 P PPLA4 CN 07 0 312 Asia/Shanghai 2012-01-18
-1799783 Nanshan Nanshan Nanshan,Nanshan Zhen,nan shan,nan shan zhen,南山,南山镇 26.61986 118.3247 P PPLA4 CN 07 0 108 Asia/Shanghai 2012-01-18
-1799795 Nansha Nansha Nansha,nan sha,南沙 23.18037 102.8333 P PPLA3 CN 29 0 1028 Asia/Chongqing 2012-01-18
-1799805 Nanrenfu Nanrenfu 39.64611 117.19167 P PPL CN 28 3365 6 Asia/Shanghai 2000-11-21
-1799809 Nanquan Nanquan Kuan-ch'uan,Kuan-ch’uan,Lan-ch'uan-ts'un,Lan-ch’üan-ts’un,Nan-ch'uan,Nan-ch’üan,Nanquan,Nanquan Xiang,nan quan,nan quan xiang,南泉,南泉乡 39.42042 113.17719 P PPLA4 CN 24 0 1050 Asia/Shanghai 2012-01-18
-1799812 Nanqiu Nanqiu Nanqiu,Nanqiu Xiang,nan jiao,nan jiao xiang,南湫,南湫乡 36.89951 106.72339 P PPLA4 CN 15 0 1735 Asia/Chongqing 2012-01-18
-1799824 Nanqiao Nanqiao Nan-ch'iao,Nan-ch'iao-shih,Nan-ch’iao,Nan-ch’iao-shih,Nanqiao,Nanqiao Zhen,nan qiao,nan qiao zhen,南桥,南桥镇 18.66813 110.12505 P PPLA4 CN 31 0 49 Asia/Chongqing 2012-01-18
-1799832 Pucheng Pucheng Fu-chang,Nanpu,Nanpu Zhen,P'u-ch'eng-hsien,Pucheng,P’u-ch’eng-hsien,nan pu,nan pu zhen,pu cheng,南浦,南浦镇,浦城 27.92333 118.53333 P PPLA3 CN 07 59832 235 Asia/Shanghai 2012-01-18
-1799841 Yongle Yongle Nan'pin,Nanping,Nan’pin,Yongle,yong le,永乐 33.26465 104.23278 P PPLA3 CN 32 0 1416 Asia/Chongqing 2012-01-18
-1799844 Nanping Nanping Chiu-kung-an,Kung-an,Kung-an-hsien,Nanping,Nanping Zhen,nan ping,nan ping zhen,南平,南平镇 29.90948 112.07413 P PPLA4 CN 12 0 40 Asia/Shanghai 2012-01-18
-1799846 Nanping Nanping Nan'pin,Nan-p'ing-hsien,Nan-p'ing-hsien-ch'eng,Nan-p'ing-shih,Nan-p’ing-hsien,Nan-p’ing-hsien-ch’eng,Nan-p’ing-shih,Nanping,Yenping,Yenping-fu,nan ping,Наньпин,南平 26.645 118.17361 P PPLA2 CN 07 171674 102 Asia/Shanghai 2012-01-18
-1799869 Nanning Nanning Nam Ninh,Nan'nin,Nan-ning-shih,Nanning,Nanning Shi,Yung-ning,Yung-ning-hsien,nan ning,nan ning shi,Наньнин,نەننىڭ شەھىرى,南宁,南宁市,南寧 22.81667 108.31667 P PPLA CN 16 803788 91 Asia/Chongqing 2012-01-18
-1799876 Nanmuping Nanmuping 27.31111 109.67861 P PPL CN 11 1320 359 Asia/Chongqing 2004-06-29
-1799880 Nanmo Nanmo Nanmo,Nanmo Zhen,Nanmozhuang,nan mo,nan mo zhen,南莫,南莫镇 32.59306 120.27417 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1799887 Nanmiao Nanmiao Nanmiao,Nanmiao Xiang,nan miao,nan miao xiang,南庙,南庙乡 27.68793 114.41276 P PPLA4 CN 03 0 142 Asia/Shanghai 2012-01-18
-1799895 Nanmaizhu Nanmaizhu 39.5025 117.74472 P PPL CN 28 2309 6 Asia/Shanghai 2000-11-21
-1799897 Nanma Nanma I-yuan,I-yüan,Nanma,Yiyuan 36.18167 118.15833 P PPL CN 25 74406 280 Asia/Shanghai 2012-01-18
-1799899 Quanfu Quanfu Nan-ma-shih,Nanma,Nanma Zhen,Quanfu,nan ma zhen,quan fu,南马镇,泉府 29.1039 120.22017 P PPLA4 CN 02 0 104 Asia/Shanghai 2012-01-18
-1799903 Nanlu Nanlu Nanlu,nan lu,南路 30.64062 119.87169 P PPLA4 CN 02 0 131 Asia/Shanghai 2012-01-18
-1799904 Nanlü Nanlu Nam Lu,Namli,Nan-ko-shih,Nan-lu-shih,Nan-lü-shih,Nanlu,Nanlu Zhen,Nanlü,Nanlü Zhen,nan lu,nan lu zhen,南吕,南吕镇 19.25011 110.07545 P PPLA4 CN 31 0 135 Asia/Chongqing 2012-01-18
-1799908 Nanlong Nanlong Nan-pu,Nan-pu-hsien,Nanbu,Nanlong,nan long,南隆 31.35333 106.06309 P PPLA3 CN 32 63405 352 Asia/Chongqing 2012-01-18
-1799913 Nanlinqiao Nanlinqiao Nan-lin-ch'iao,Nan-lin-ch’iao,Nanlinqiao,Nanlinqiao Zhen,nan lin qiao,nan lin qiao zhen,南林桥,南林桥镇 29.57235 114.34843 P PPLA4 CN 12 0 102 Asia/Shanghai 2012-01-18
-1799918 Jishan Jishan Jishan,Nan-ling-hsien,Nanling,ji shan,籍山 30.92149 118.33017 P PPLA3 CN 01 0 15 Asia/Shanghai 2012-01-18
-1799919 Nanling Nanling Nanling,Nanling Zhen,nan ling,nan ling zhen,南岭,南岭镇 23.32552 115.41877 P PPLA4 CN 30 0 357 Asia/Shanghai 2012-01-18
-1799934 Nankun Nankun Nan-chen-shih,Nan-k'un-shih,Nan-k’un-shih,Nankun,Nankun Zhen,nan kun,nan kun zhen,南坤,南坤镇 19.32119 109.94213 P PPLA4 CN 31 0 163 Asia/Chongqing 2012-01-18
-1799939 Nankou Nankou Nankou,nan kou,南口 26.62616 117.41843 P PPLA4 CN 07 0 173 Asia/Shanghai 2012-01-18
-1799946 Nankang Nankang Hingtzu,Hsing-tzu,Hsing-tzu-hsien,Nan-k'ang-chen,Nan-k’ang-chen,Nangkang,Nankang,Nankang Zhen,Nankang-fu,Singtze,Singtze-hsien,Tsingtzeh,Tsingtzehsien,Xingzi,Xingzi Xian,nan kang,nan kang zhen,xing zi xian,南康,南康镇,星子县 29.44654 116.04068 P PPLA3 CN 03 0 32 Asia/Shanghai 2012-01-18
-1799962 Nanjing Nanjing Nan'czin,Nan-ching,Nan-ching-shih,Nanjing,Nankin,Nanking,nan jing,Нанкин,Наньцзин,南京 32.06167 118.77778 P PPLA CN 04 3087010 22 Asia/Shanghai 2012-02-20
-1799963 Nanjing Nanjing Nan-ching,Nan-ching-hsu,Nan-ching-hsü,Nanjing,Nanjing Zhen,Nankin,nan jing,nan jing zhen,Нанкин,南迳,南迳镇 24.68629 114.40128 P PPLA4 CN 03 0 302 Asia/Chongqing 2012-01-18
-1799967 Nanjie Nanjie Guangning,Kuang-ning,Kuang-ning-hsien,Kwongning,Kwongning-hsien,Nan-chieh,Nan-chieh-chen,Nanjie,nan jie,南街 23.62541 112.43848 P PPLA3 CN 30 0 40 Asia/Chongqing 2012-01-18
-1799984 Nanjiang Nanjiang Nan'tszyan,Nan-chiang,Nan-chiang-hsien,Nanjiang,Nanjiang Xian,Nanjiang Zhen,Nankiang,Nankiang-hsien,Nan’tszyan,nan jiang,nan jiang xian,nan jiang zhen,南江,南江县,南江镇 32.35389 106.83238 P PPLA3 CN 32 0 577 Asia/Chongqing 2012-01-18
-1799986 Nanjian Nanjian Nan-chien,Nan-chien-chen,Nan-chien-i-tsu-tzu-chih-hsien,Nanjian,Nankien,nan jian,南涧 25.04801 100.53224 P PPLA3 CN 29 0 1400 Asia/Chongqing 2012-01-18
-1799988 Nanjia Nanjia Nan-chia,Nan-chia-ts'un,Nan-chia-ts’un,Nanjia,Nanjia Zhen,nan gu,nan gu zhen,南贾,南贾镇 35.81114 111.3672 P PPLA4 CN 24 0 529 Asia/Chongqing 2012-01-18
-1799991 Zhujiaqiao Zhujiaqiao Chu-chia-ch'iao,Chu-chia-ch’iao,Nan-chi,Nanji,Nanji Xiang,Nanjixiang,Zhujiaqiao,nan ji,nan ji xiang,zhu jia qiao,南极,南极乡,朱家桥 30.39917 119.06778 P PPLA4 CN 01 0 153 Asia/Shanghai 2012-01-18
-1800007 Nanhu Nanhu Nanhu,Nanhu Zhen,nan hu,nan hu zhen,南湖,南湖镇 35.33769 105.96038 P PPLA4 CN 15 0 1678 Asia/Chongqing 2012-01-18
-1800014 Nanhezhong Nanhezhong Nan-ho-chung,Nanhezhong,Nanhezhong Zhen,nan he zhong,nan he zhong zhen,南河种,南河种镇 39.48542 113.25735 P PPLA4 CN 24 0 1048 Asia/Shanghai 2012-01-18
-1800018 Nanheng Nanheng Nanheng,Nanheng Xiang,nan heng,nan heng xiang,南亨,南亨乡 24.70202 114.79799 P PPLA4 CN 03 0 309 Asia/Chongqing 2012-01-18
-1800030 Nanhe Nanhe Nanhe,Nanhe Zhen,nan he,nan he zhen,南河,南河镇 34.25 119.76667 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1800065 Nangong Nangong Nan'gun,Nan-kung,Nan-kung-ch'eng-kuan,Nan-kung-ch’eng-kuan,Nan-kung-hsien,Nangong,Nan’gun 37.35806 115.37444 P PPL CN 10 82386 29 Asia/Shanghai 2012-01-18
-1800069 Nangaoqiao Nangaoqiao Baique Xiang,Nan-chia-ch'iao,Nan-chia-ch’iao,Nangaoqiao,bai que xiang,nan gao qiao,南皋桥,白雀乡 30.92071 120.09777 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1800076 Nangang Nangang Nan-kang,Nangang,Nangang Xiang,nan gang,nan gang xiang,南岗,南岗乡 34.24389 119.14417 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1800087 Nanfeng Nanfeng Nan-feng-chieh,Nanfeng,Nanfeng Zhen,nan feng,nan feng zhen,南峰,南峰镇 29.26303 116.5614 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-18
-1800088 Nanfeng Nanfeng Hoikin,Hoikin-hsien,K'ai-chien,K'ai-chien-hsien,K’ai-chien,K’ai-chien-hsien,Nan-feng-chen,Nanfeng,nan feng,南丰 23.74344 111.79593 P PPL CN 30 86129 44 Asia/Chongqing 2012-01-18
-1800089 Nanfeng Nanfeng Namfung,Nan-feng-shih,Nanfeng,Nanfeng Zhen,nan feng,nan feng zhen,南丰,南丰镇 19.41018 109.55024 P PPLA4 CN 31 0 197 Asia/Chongqing 2012-01-18
-1800093 Nanfang Nanfang Nan-fang-chen,Nanfang,Nanfang Zhen,nan fang,nan fang zhen,南访,南访镇 34.70861 108.33306 P PPLA4 CN 26 0 1047 Asia/Chongqing 2012-01-18
-1800097 Duji Duji Duji,Nan-tu-chi,Nanduji,Tu-chi,du ji,杜集 33.99765 116.8284 P PPLA3 CN 01 0 34 Asia/Shanghai 2012-01-18
-1800101 Nandu Nandu Nan-tu,Nan-tu-hsu,Nan-tu-hsü,Nandu 22.8525 110.82333 P PPL CN 16 61881 88 Asia/Chongqing 2012-01-18
-1800107 Nanding Nanding Nan-ting,Nanding 36.74833 118.05583 P PPL CN 25 85495 64 Asia/Shanghai 2012-01-18
-1800119 Nandan Chengguanzhen Nandan Chengguanzhen Nan-tan,Nan-tan-chen,Nan-tan-hsien,Nandan,Nandan Chengguanzhen,Nantanchow,nan dan cheng guan zhen,南丹城关镇 25.01036 107.55712 P PPLA3 CN 16 0 682 Asia/Chongqing 2012-01-18
-1800132 Nancun Nancun Nan-ts'un,Nan-ts’un,Nancun,Nancun Zhen,Zezhou Xian,nan cun,nan cun zhen,ze zhou xian,南村,南村镇,泽州县 35.46765 112.77268 P PPLA3 CN 24 0 768 Asia/Chongqing 2012-01-18
-1800138 Nancun Nancun Nan-ts'un,Nan-ts’un,Nancun,Nancun Xiang,nan cun,nan cun xiang,南村,南村乡 27.30984 115.92002 P PPLA4 CN 03 0 170 Asia/Shanghai 2012-01-18
-1800146 Nanchong Nanchong Nan'chun,Nan-ch'ung,Nan-ch'ung-hsien,Nan-ch'ung-shih,Nan-ch’ung,Nan-ch’ung-hsien,Nan-ch’ung-shih,Nanchong,Nan’chun,Shun'tsin,Shun-ch'ing,Shun-ch’ing,Shunking,Shun’tsin,nan chong,Наньчун,南充 30.79508 106.08474 P PPLA3 CN 32 7150000 287 Asia/Chongqing 2012-01-18
-1800154 Nancheng Nancheng Nancheng,Nancheng Zhen,nan cheng,nan cheng zhen,南城,南城镇 34.56167 119.22417 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1800163 Nanchang Nanchang Nam Xuong,Nam Xương,Nan'chan,Nan-ch'ang-hsien,Nan-ch'ang-shih,Nan-ch’ang-hsien,Nan-ch’ang-shih,Nanchang,Nanchang-fu,nan chang,nan chang shi,Наньчан,نەنچاڭ شەھىرى,南昌,南昌市 28.68333 115.88333 P PPLA CN 03 1871351 38 Asia/Shanghai 2012-01-18
-1800168 Nancang Nancang 39.20056 117.13694 P PPL CN 28 3507 8 Asia/Shanghai 2000-11-21
-1800171 Nancaicun Nancaicun Nancaicun,Ts'ai-ts'un,Ts’ai-ts’un 39.47528 117.01611 P PPL CN CN 28 2357 10 Asia/Shanghai 2012-01-18
-1800181 Nanbao Nanbao Nanbao,Nanbao Zhen,nan bao,nan bao zhen,南宝,南宝镇 19.68242 109.59596 P PPLA4 CN 31 0 91 Asia/Chongqing 2012-01-18
-1800194 Nan’ao Nan'ao Cezi,Cezixiang,Nan'ao,Nan-ao-ts'un,Nan-ao-ts’un,Nan’ao,ce zi,ce zi xiang,nan ao,冊子,冊子乡,南岙 30.08333 121.93306 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-18
-1800234 Nada Nada Chan-hsien,Danxian,Danzhou,Danzhou Shi,Na-ta,Na-ta-chen,Na-ta-shih,Nada,Nada Zhen,Nodoa,Tan-hsien,dan zhou shi,na da,na da zhen,儋州市,那大,那大镇 19.52257 109.5786 P PPLA3 CN 31 0 145 Asia/Chongqing 2012-01-18
-1800268 Muxi Muxi Mu-ch'uan-hsien,Mu-ch’uan-hsien,Muchuan,Muxi,mu xi,沐溪 28.95964 103.90086 P PPLA3 CN 32 0 400 Asia/Chongqing 2012-01-18
-1800296 Mulan Mulan Mulan,Mulan Xiang,mu lan,mu lan xiang,木兰,木兰乡 26.49603 116.39019 P PPLA4 CN 03 0 278 Asia/Shanghai 2012-01-18
-1800306 Muhuguan Muhuguan Mu-hu-kuan,Muhuguan,Muhuguan Zhen,mu hu guan,牧护关 34.04423 109.57725 P PPLA4 CN 26 0 1208 Asia/Chongqing 2012-01-18
-1800327 Mugang Mugang Mu-kang,Mugang,Mugang Zhen,mu gang,mu gang zhen,木港,木港镇 29.72339 115.24621 P PPLA4 CN 12 0 49 Asia/Shanghai 2012-01-18
-1800337 Mudaikou Mudaikou Mu-tai-k'ou,Mu-tai-k’ou,Mudaikou,Shangyang,Shangyang Zhen,mu dai kou,shang yang,shang yang zhen,上垟,上垟镇,木岱口 27.96472 118.86583 P PPLA4 CN 02 0 331 Asia/Shanghai 2012-01-18
-1800348 Mubo Mubo Mubo,Mubo Xiang,mu bo,mu bo xiang,木钵,木钵乡 36.44628 107.43594 P PPLA4 CN 15 0 1208 Asia/Chongqing 2012-01-18
-1800357 Moyuan Moyuan Moyuan,Moyuan Xiang,mo yuan,mo yuan xiang,漠源,漠源乡 26.67925 117.55026 P PPLA4 CN 07 0 308 Asia/Shanghai 2012-01-18
-1800361 Moxi Moxi Mo-hsi-t'ou,Mo-hsi-t’ou,Moxi,Moxi Xiang,Moxitou,mo xi,mo xi xiang,磨溪,磨溪乡 29.36581 115.58012 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-18
-1800371 Motou Motou Mo-t'ou-chen,Mo-t’ou-chen,Motou,Motou Zhen,mo tou,mo tou zhen,磨头,磨头镇 32.28333 120.56667 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1800376 Moshi Moshi Mo-shih,Moshi,Moshi Zhen,mo shi,mo shi zhen,磨市,磨市镇 29.76376 110.94904 P PPLA4 CN 11 0 168 Asia/Chongqing 2012-01-18
-1800391 Mailing Mailing Mailing,mai ling,麦岭 33.7742 113.64469 P PPLA4 CN 09 0 77 Asia/Shanghai 2012-01-18
-1800411 Shangmofang Shangmofang Mo-fang-pao,Mofang,Shangmofang,Shangmofang Xiang,shang mo fang,shang mo fang xiang,上磨坊,上磨坊乡 39.10499 113.01797 P PPLA4 CN 24 0 879 Asia/Shanghai 2012-01-18
-1800430 Miyang Miyang Mi-lo,Mi-lo-hsien,Mi-lo-hsien-i-tsu-tzu-chih-ch'u,Mi-lo-hsien-i-tsu-tzu-chih-ch’ü,Mile,Mile Xian,Miyang,mi lei,mi lei xian,mi yang,弥勒,弥勒县,弥阳 24.40417 103.44278 P PPLA3 CN 29 72485 1433 Asia/Chongqing 2012-01-18
-1800436 Mishi Mishi Mi-t'o-ssu,Mi-t’o-ssu,Mishi,Mishi Zhen,Mituosi,mi shi,mi shi zhen,弥市,弥市镇 30.22751 112.11847 P PPLA4 CN 12 0 41 Asia/Chongqing 2012-01-18
-1800448 Minzhu Minzhu Minzhu,Minzhu Xiang,min zhu,min zhu xiang,民主,民主乡 25.00252 115.93979 P PPLA4 CN 07 0 336 Asia/Shanghai 2012-01-18
-1800453 Chengjiao Chengguanzhen Chengjiao Chengguanzhen Chengguanzhen,Chengjiao,Chengjiao Chengguanzhen,MIN'SYAN,MIN’SYAN,Min,Min Xian,Min Xian Chengjiao Chengguanzhen,Min-hsien,Minchow,Minxian,cheng guan zhen,cheng jiao,cheng jiao cheng guan zhen,min xian,min xian cheng jiao cheng guan zhen,城关镇,城郊,城郊城关镇,岷县,岷县城郊城关镇 34.43583 104.03056 P PPLA3 CN 15 0 2316 Asia/Chongqing 2012-01-18
-1800468 Minle Minle Minle,Minle Zhen,min le,民乐 23.65916 113.467 P PPLA4 CN 30 0 40 Asia/Chongqing 2012-01-18
-1800475 Minjian Minjian Ma-pien,Ma-pien-hsien,Mabian,Mapienting,Minjian,min jian,民建 28.84622 103.54575 P PPLA3 CN 32 0 555 Asia/Chongqing 2012-01-18
-1800480 Minhang Minhang Min-hang-chen,Ming-hang,Minhang,Shang-hai,min xing,闵行 31.1088 121.37472 P PPLA4 CN 23 0 12 Asia/Shanghai 2012-01-18
-1800498 Mingshui Mingshui Chang-ch'iu,Chang-ch’iu,Ming-shui-chen,Mingshui,Zhangqiu 36.71667 117.5 P PPL CN 25 114858 73 Asia/Shanghai 2012-01-18
-1800508 Mingkou Mingkou Mingkou,Mingkou Zhen,ming kou,ming kou zhen,名口,名口镇 28.91852 117.43058 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-18
-1800519 Mingguang Mingguang Chia-shan,Chia-shan-hsien,Jiashan,Ming-kuang,Ming-kuang-chen,Mingguang,Mingkwang 32.78017 117.96378 P PPL CN 01 68351 16 Asia/Shanghai 2012-01-18
-1800521 Minggang Minggang Ming-chiang,Ming-kang,Minggang,Mingkiang,Mintszyan 32.45861 114.04861 P PPL CN 09 67945 78 Asia/Shanghai 2012-01-18
-1800522 Mingfeng Mingfeng Mingfeng,Yuan'an,Yuan-an-hsien,Yuan’an,Yüan-an-hsien,ming feng,鸣凤 31.06167 111.64278 P PPLA3 CN 12 0 110 Asia/Chongqing 2012-01-18
-1800523 Mingdu Mingdu Ming-tu,Ming-tu-chen,Mingdu,Mingdu Zhen,Wu-tu-chen,ming du,鸣犊 34.13052 109.10264 P PPLA4 CN 26 0 490 Asia/Chongqing 2012-01-18
-1800526 Min’an Min'an Longshan,Lung-shan,Lung-shan-hsien,Min'an,Min’an,long shan,min an,民安,龙山 29.45936 109.43906 P PPLA3 CN 11 0 486 Asia/Chongqing 2012-01-18
-1800527 Min’an Min'an Min'an,Min-an-chen,Min’an 26.05528 119.4975 P PPL CN 07 5000 70 Asia/Shanghai 2012-01-18
-1800531 Miluo Chengguanzhen Miluo Chengguanzhen Ku-lo,Mi-lo,Mi-lo-hsien,Miluo,Miluo Chengguanzhen,mi luo cheng guan zhen,汨罗城关镇 28.81605 113.07622 P PPLA3 CN 11 0 33 Asia/Chongqing 2012-01-18
-1800533 Ganlu Ganlu Ganlu,Ganlu Zhen,Miliangpu,gan lu,gan lu zhen,mi liang pu,甘露,甘露镇,米粮铺 29.25273 115.76391 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-18
-1800544 Micheng Micheng Mi-ch'eng-chen,Mi-ch’eng-chen,Mi-tu,Mi-tu-chen,Mi-tu-chieh,Mi-tu-hsien,Micheng,Midu,mi cheng,弥城 25.32037 100.49931 P PPLA3 CN 29 0 1662 Asia/Chongqing 2012-01-18
-1800560 Miaoxi Miaoxi Miao-hsi,Miao-hsi-shih,Miaoxi,Miaoxi Xiang,Miaoxi Zhen,miao xi,miao xi xiang,miao xi zhen,妙西,妙西乡,妙西镇 30.78196 120.004 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1800578 Miaoshou Miaoshou Miaoshou,Miaoshou Zhen,miao shou,miao shou zhen,庙首,庙首镇 30.26639 118.39139 P PPLA4 CN 01 0 217 Asia/Shanghai 2012-01-18
-1800579 Miaoshi Miaoshi Miaoshi,Miaoshi Zhen,miao shi,miao shi zhen,苗市,苗市镇 29.54376 111.24245 P PPLA4 CN 11 0 134 Asia/Shanghai 2012-01-18
-1800587 Miaoqian Miaoqian Miao-ch'ien,Miao-ch’ien,Miaoqian,Miaoqian Zhen,miao qian,miao qian zhen,庙前,庙前镇 25.32988 116.67994 P PPLA4 CN 07 0 327 Asia/Shanghai 2012-01-18
-1800603 Miaogou Miaogou Miao-kou,Miaogou,Miaogou Xiang,miao gou,miao gou xiang,庙沟,庙沟乡 36.88085 107.9166 P PPLA4 CN 26 0 1374 Asia/Chongqing 2012-01-18
-1800619 Miaoba Miaoba Miao-pa,Miaoba,miao ba,庙坝 33.1685 106.32033 P PPLA4 CN 26 0 888 Asia/Chongqing 2012-01-18
-1800624 Jiannan Jiannan Jiannan,Mianzhu,Mien-chu,Mien-chu-hsien,Myan'chzhu,Myan’chzhu,jian nan,剑南 31.34355 104.19588 P PPLA3 CN 32 0 600 Asia/Chongqing 2012-01-18
-1800627 Mianyang Mianyang Mianyang,Mien-chou,Mien-yang,Mien-yang-hsien,Mienchow,Mjan'jan,Myan'yan,Myan’yan,mian yang,Мяньян,绵阳 31.45934 104.75424 P PPLA3 CN 32 264136 468 Asia/Chongqing 2012-01-18
-1800629 Mianyang Mianyang Mianxian,Mianyang,Mianyang Zhen,Mien,Mien-hsien,mian xian,mian yang,mian yang zhen,勉县,勉阳,勉阳镇 33.15703 106.69445 P PPLA3 CN 26 0 549 Asia/Chongqing 2012-01-18
-1800636 Chengxiang Chengxiang Chengxiang,Mianning,Mien-ning,Mien-ning-hsien,cheng xiang,城厢 28.55262 102.1682 P PPLA3 CN 32 0 1787 Asia/Chongqing 2012-01-18
-1800657 Mentougou Mentougou Men-t'ou-kou,Men-t'ou-kou-ho-t'an,Men-t’ou-kou,Men-t’ou-kou-ho-t’an,Mentougou 39.93917 116.09167 P PPL CN 22 197772 112 Asia/Harbin 2012-01-18
-1800663 Wenlan Wenlan Meng-tzu,Meng-tzu-ch'eng,Meng-tzu-ch’eng,Meng-tzu-hsien,Mengtsz,Mengtszhsien,Mengtze-hsien,Mengzi,Mongtseau,Mongtze,Wenlan,Wenlan Zhen,wen lan,文澜 23.36002 103.43684 P PPLA3 CN 29 0 1309 Asia/Chongqing 2012-01-18
-1800670 Mengzhai Mengzhai Meng-chai,Mengzhai,Mengzhai Zhen,meng zhai,孟寨 33.54252 113.60889 P PPLA4 CN 09 0 78 Asia/Shanghai 2012-01-18
-1800675 Mengyin Mengyin Meng-yin-hsien,Mengyin 35.70694 117.92639 P PPL CN 25 65889 182 Asia/Shanghai 2012-01-18
-1800686 Mengxi Mengxi Meng-hsi,Mengxi,Mengxi Zhen,Mengxisi,meng xi,meng xi si,meng xi zhen,梦溪,梦溪寺,梦溪镇 29.75 111.81667 P PPLA4 CN 11 0 38 Asia/Chongqing 2012-01-18
-1800698 Mengshan Mengshan Mengshan,Mengshan Xiang,meng shan,meng shan xiang,蒙山,蒙山乡 28.12302 114.96312 P PPLA4 CN 03 0 79 Asia/Shanghai 2012-01-18
-1800699 Mengshan Mengshan Meng-shan-chen,Meng-shan-hsien,Mengshan,Wing-on,Winganchow,Wingonchow,Yung-an,meng shan,蒙山 24.21406 110.51775 P PPLA3 CN 16 0 157 Asia/Chongqing 2012-01-18
-1800702 Mengquan Mengquan Meng-ch'uan,Meng-ch’üan,Mengquan 39.82528 117.47667 P PPL CN CN 28 1533 5 Asia/Harbin 2012-01-18
-1800703 Mengquan Mengquan Baiyanghu,Mengquan,Mengquan Zhen,bai yang hu,meng quan,meng quan zhen,白洋湖,蒙泉,蒙泉镇 29.41468 111.47498 P PPLA4 CN 11 0 68 Asia/Shanghai 2012-01-18
-1800712 Menglie Menglie Chiang-ch'eng,Chiang-ch'eng-ha-ni-tsu-i-tsu-tzu-chih-hsien,Chiang-ch'eng-hsien,Chiang-ch’eng,Chiang-ch’eng-ha-ni-tsu-i-tsu-tzu-chih-hsien,Chiang-ch’eng-hsien,Jiangcheng,Kiangcheng-hsien,Meng-lieh,Meng-lieh-chieh,Mengli,Menglie,Mengliejie,meng lie,勐烈 22.55967 101.8679 P PPLA3 CN 29 0 1202 Asia/Chongqing 2012-01-18
-1800716 Mengla Mengla Mengla,Mong La,Muong La,Pan-na-meng-la,meng la,勐腊 21.46859 101.55069 P PPLA3 CN 29 0 685 Asia/Chongqing 2012-01-18
-1800722 Mengjiaxi Mengjiaxi Meng-chia,Meng-chia-ch'i,Meng-chia-ch’i,Mengjiaxi,Mengjiaxi Zhen,meng jia xi,meng jia xi zhen,孟家溪,孟家溪镇 29.85497 112.08846 P PPLA4 CN 12 0 44 Asia/Shanghai 2012-01-18
-1800759 Mengcun Mengcun Meng-ts'un,Meng-ts'un-chen,Meng-ts’un,Meng-ts’un-chen,Mengcun,meng cun,孟村 34.16646 109.21518 P PPLA4 CN 26 0 716 Asia/Chongqing 2012-01-18
-1800764 Mengcheng Chengguanzhen Mengcheng Chengguanzhen Meng-ch'eng-hsien,Meng-ch’eng-hsien,Mengcheng,Mengcheng Chengguanzhen,meng cheng cheng guan zhen,蒙城城关镇 33.26611 116.56605 P PPLA3 CN 01 69916 29 Asia/Shanghai 2012-01-18
-1800766 Mengbi Mengbi Mengbi,Mengbixiang,meng bi,meng bi xiang,猛必,猛必乡 29.38102 109.79752 P PPLA4 CN 11 0 706 Asia/Chongqing 2012-01-18
-1800774 Meizhuang Meizhuang Mei-chuang,Mei-chuang-shih,Meizhuang,Meizhuang Zhen,mei zhuang,mei zhuang zhen,梅庄,梅庄镇 28.58899 116.40622 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-18
-1800779 Meizhou Meizhou Chia-ying,Kaying,Mehjchzhou,Mei,Mei-ch'eng-chen,Mei-ch’eng-chen,Mei-hsien,Meixian,Meizhou,mei zhou,Мэйчжоу,梅州 24.29769 116.10724 P PPLA2 CN 30 144212 83 Asia/Shanghai 2012-01-18
-1800780 Meizhou Meizhou Mei-chou,Mei-chou-hsun,Mei-chou-hsün,Meizhou,mei zhou,梅洲 23.80856 117.31331 P PPLA4 CN 07 0 11 Asia/Shanghai 2012-01-18
-1800785 Meiyuan Meiyuan Mei-yuan-chen,Mei-yüan-chen,Meiyuan,Meiyuan Zhen,mei yuan,美原 34.94498 109.35288 P PPLA4 CN 26 0 525 Asia/Chongqing 2012-01-18
-1800791 Meiyan Meiyan Hai-yen,Hai-yen-chen,Mei-yen,Mei-yen-chen,Meiyan,Meiyan Jiedao,Meiyan Zhen,mei yan,mei yan jie dao,mei yan zhen,梅偃,梅偃街道,梅偃镇 30.97874 120.58582 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1800792 Meixing Meixing Hsiao-chin,Hsin-chieh-tzu,MOWKUNG,Meixing,Mou-kun,Mou-kung,Mou-kung-hsien,Mougun,Mowkung-hsien,Mowkungting,Siaokin,Sin'tszetszo,Sin'tszetszy,Sinkaisze,Sin’tszetszy,Sin’tszetszö,Xiaojin,Zainlha,mei xing,美兴 31.00107 102.36435 P PPLA3 CN 32 0 2292 Asia/Chongqing 2012-01-18
-1800797 Meixian Meixian Mei-hsien,Mei-hsien-fan,Meixian,Meixian Zhen,mei xian,mei xian zhen,梅仙,梅仙镇 26.2409 118.24792 P PPLA4 CN 07 0 108 Asia/Shanghai 2012-01-18
-1800801 Meixi Meixi Meixi,Meixi Xiang,mei xi,mei xi xiang,梅溪,梅溪乡 28.77201 116.39479 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-18
-1800808 Meitang Meitang Meitang,Meitang Xiang,mei tang,mei tang xiang,梅塘,梅塘乡 27.09766 114.80705 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-18
-1800815 Meishan Meishan Chin-chai,Chin-chai-hsien,Jinzhai,Mei-shan-chen,Meishan,mei shan,梅山 31.68472 115.87639 P PPLA3 CN 01 0 66 Asia/Shanghai 2012-01-18
-1800829 Wuchuan Wuchuan Hai-lu,Mei-lu-shih,Mei-mao,Meilu,Muiluk,Wuchuan,wu chuan,吴川 21.45713 110.76591 P PPL CN 30 104168 7 Asia/Chongqing 2012-01-18
-1800831 Meilong Meilong Mei-lung,Mei-lung-hsu,Mei-lung-hsü,Meilong,mei long,梅陇 22.89516 115.21001 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-18
-1800833 Meiling Meiling Meiling,Meiling Zhen,mei ling,mei ling zhen,梅岭,梅岭镇 25.29498 114.35708 P PPLA4 CN 30 0 244 Asia/Shanghai 2012-02-28
-1800835 Meilin Meilin Mei-ts'un,Mei-ts’un,Meilin,Meilin Zhen,mei lin,mei lin zhen,梅林,梅林镇 30.56697 119.08063 P PPLA4 CN 01 0 69 Asia/Shanghai 2012-01-18
-1800837 Meilin Meilin Meilin,Meilin Xiang,mei lin,mei lin xiang,梅林,梅林乡 29.18714 117.87779 P PPLA4 CN 03 0 118 Asia/Shanghai 2012-01-18
-1800838 Meilin Meilin Meilin,Meilin Zhen,mei lin,mei lin zhen,梅林,梅林镇 28.27955 115.65669 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-18
-1800839 Meilin Meilin Gan Xian,Ganxian,Kan-hsien,Mei-lin-chen,Meilin,Meilin Zhen,gan xian,mei lin,mei lin zhen,梅林,梅林镇,赣县 25.86674 115.01002 P PPLA3 CN 03 0 132 Asia/Shanghai 2012-01-18
-1800855 Meijiang Meijiang Meijiang,Meijiang Zhen,Ning-tu,Ning-tu-hsien,Ningdu Xian,mei jiang,mei jiang zhen,ning dou xian,宁都县,梅江,梅江镇 26.47583 116.015 P PPLA3 CN 03 0 195 Asia/Shanghai 2012-01-18
-1800862 Meihua Meihua Meihua,Meihua Zhen,mei hua,mei hua zhen,梅花,梅花镇 25.18164 113.06601 P PPLA4 CN 30 0 406 Asia/Chongqing 2012-01-18
-1800869 Meigang Meigang Meigang,Meigang Xiang,mei gang,mei gang xiang,梅港,梅港乡 28.43695 116.81448 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-18
-1800882 Meicheng Meicheng Ch'ien-shan,Ch’ien-shan,Meicheng,Qianshan,Tsienshanhsien,mei cheng,梅城 30.63444 116.57278 P PPLA3 CN 01 0 31 Asia/Shanghai 2012-01-18
-1800885 Meicheng Meicheng Meicheng,Min-ch'ing,Min-ch'ing-hsien,Min-ch'ing-hsien-ch'eng,Min-ch’ing,Min-ch’ing-hsien,Min-ch’ing-hsien-ch’eng,Min-tsing-hsien,Minqing,Mintsing,mei cheng,梅城 26.21528 118.86111 P PPLA3 CN 07 0 152 Asia/Shanghai 2012-01-18
-1800886 Meichang Meichang 39.36611 117.18056 P PPL CN 28 4009 9 Asia/Shanghai 2000-11-21
-1800898 Mazhuang Mazhuang 39.20556 117.13333 P PPL CN 28 1487 8 Asia/Shanghai 2000-11-21
-1800904 Mazhuang Mazhuang Ma-chuang,Ma-chuang-chen,Mazhuang,Mazhuang Zhen,ma zhuang,ma zhuang zhen,马庄,马庄镇 34.43694 108.65556 P PPLA4 CN 26 0 507 Asia/Chongqing 2012-01-18
-1800906 Mazhu Mazhu Ma-chu,Ma-chu-chen,Mazhu,ma zhu,ma zhu zhen,马渚,马渚镇 30.07801 121.047 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1800907 Mazhou Mazhou Ma-chou,Ma-chou-hsu,Ma-chou-hsü,Mazhou,Mazhou Zhen,ma zhou,ma zhou zhen,麻州,麻州镇 25.50838 115.77528 P PPLA4 CN 03 0 183 Asia/Shanghai 2012-01-18
-1800912 Mazhaozhen Mazhaozhen Ma-chao,Ma-chao-chen,Mazhao Zhen,Mazhaozhen,ma zhao,ma zhao zhen,马召,马召镇 34.07026 108.18998 P PPLA4 CN 26 0 490 Asia/Chongqing 2012-01-18
-1800919 Mazha Mazha Ma-cha,Ma-cha-hsu,Ma-cha-hsü,Mazha,Mazha Zhen,ma zha,麻榨 23.46204 114.00575 P PPLA4 CN 30 0 23 Asia/Chongqing 2012-01-18
-1800929 Mayingzhuang Mayingzhuang Ma-ying-chuang,Mayingzhuang,Mayingzhuang Xiang,ma ying zhuang,ma ying zhuang xiang,马营庄,马营庄乡 39.36947 112.98576 P PPLA4 CN 24 0 1041 Asia/Shanghai 2012-01-18
-1800931 Maying Maying Ma-ying-ts'un,Ma-ying-ts’un,Maying,Maying Xiang,ma ying,ma ying xiang,马营,马营乡 39.71972 112.71694 P PPLA4 CN 24 0 1534 Asia/Shanghai 2012-01-18
-1800935 Maying Maying Ma-ying-chen,Maying,ma ying,马营 35.30524 105.02093 P PPLA4 CN 15 0 2128 Asia/Chongqing 2012-01-18
-1800936 Maying Maying Ma-ying-chen,Maying,Maying Zhen,ma ying,ma ying zhen,马营,马营镇 34.34154 107.22893 P PPLA4 CN 26 0 575 Asia/Chongqing 2012-01-18
-1800945 Mayanhe Mayanhe Ma-yen,Ma-yen-ho,Mayan,Mayanhe,ma yan he,麻沿河 34.0725 105.73694 P PPLA4 CN 15 0 1368 Asia/Chongqing 2012-01-18
-1800951 Maxu Maxu Maxu,Maxu Zhen,ma wei,ma wei zhen,马圩,马圩镇 28.13357 116.46744 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-18
-1800970 Mawei Mawei Ma-wei,Ma-wei-chen,Mawei,Mawei Zhen,Maweipo,ma wei,ma wei zhen,马嵬,马嵬镇 34.31639 108.37167 P PPLA4 CN 26 0 434 Asia/Chongqing 2012-01-18
-1800981 Mawang Mawang Ma-wang-ts'un,Ma-wang-ts’un,Mawang,Mawang Jieban,Mawangcun,Mawangzhen,ma wang,ma wang jie ban,马王,马王街办 34.20417 108.7125 P PPLA4 CN 26 0 401 Asia/Chongqing 2012-01-18
-1800997 Matoupu Matoupu Matoupu,Matoupu Zhen,ma tou pu,ma tou pu zhen,码头铺,码头铺镇 29.77128 111.41158 P PPLA4 CN 11 0 132 Asia/Shanghai 2012-01-18
-1801014 Matou Matou Ma-t'ou-ch'en,Ma-t’ou-ch’en,Matou,Matou Zhen,ma tou,ma tou zhen,码头,码头镇 29.83146 115.57739 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1801018 Matou Matou Ma-t'ou-hsu,Ma-t’ou-hsü,Matou,Matou Zhen,ma tou,ma tou zhen,马头,马头镇 24.12635 114.31736 P PPLA4 CN 30 0 137 Asia/Chongqing 2012-01-18
-1801019 Matou Matou Kuo-te,Kuo-te-chen,Kuo-te-hsien,Kwoteh,Kwoteh-hsien,Ma-t'ou-chen,Ma-t’ou-chen,Matou,P'ing-kuo,P'ing-kuo-hsien,P’ing-kuo,P’ing-kuo-hsien,ma tou,马头 23.35534 107.5564 P PPLA3 CN 16 0 135 Asia/Chongqing 2012-01-18
-1801021 Matiwan Matiwan Matiwan,ma ti wan,马蹄湾 33.47819 106.04896 P PPLA4 CN 26 0 922 Asia/Chongqing 2012-01-18
-1801032 Matang Matang Ma-t'ang-chen,Ma-t’ang-chen,Matang,Matang Zhen,Matangzhen,ma tang,ma tang zhen,马塘,马塘镇 32.32387 121.04056 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1801039 Mataigou Mataigou Ma-t'ai-kou,Ma-t’ai-kou,Mataigou,Mataigou Xiang,Mataygou,T'ao-lo,Taole,T’ao-lo,ma tai gou,ma tai gou xiang,马太沟,马太沟乡 38.79667 106.67222 P PPLA4 CN 21 0 1101 Asia/Chongqing 2012-01-18
-1801062 Mashankou Mashankou Mashankou,Mashankou Zhen,ma shan kou,ma shan kou zhen,马山口,马山口镇 33.20577 112.00261 P PPLA4 CN 09 0 208 Asia/Chongqing 2012-01-18
-1801066 Mashan Mashan Ma-shan-chen,Ma-shan-shih,Mashan,Mashan Zhen,ma shan,ma shan zhen,马山,马山镇 30.07937 120.65803 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1801090 Maqiao Maqiao Ma-ch'iao,Ma-ch'iao-shih,Ma-ch’iao,Ma-ch’iao-shih,Maqiao,Maqiao Zhen,ma qiao,ma qiao zhen,马桥,马桥镇 29.80734 114.35442 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-18
-1801103 Maping Maping Ma-p'ing-chiang,Ma-p’ing-chiang,Maping,Maping Zhen,Mapingkang,ma ping,ma ping zhen,马坪,马坪镇 31.60092 113.55055 P PPLA4 CN 12 0 63 Asia/Chongqing 2012-01-18
-1801126 Maoyang Maoyang Maoyang,Maoyang Zhen,mao yang,毛阳 18.93795 109.50243 P PPLA4 CN 31 0 211 Asia/Chongqing 2012-01-18
-1801149 Maoshan Maoshan Mao-shan-ts'un,Mao-shan-ts’un,Maoshan,Maoshan Zhen,mao shan,mao shan zhen,茅山,茅山镇 32.74178 120.00624 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1801166 Maoping Maoping Maoping,mao ping,茅坪 30.82972 110.97778 P PPLA3 CN 12 0 229 Asia/Chongqing 2012-01-18
-1801169 Maoping Maoping Maoping,Maoping Xiang,mao ping,mao ping xiang,茅坪,茅坪乡 29.34201 109.4901 P PPLA4 CN 11 0 887 Asia/Chongqing 2012-01-18
-1801172 Maoping Maoping Fang-p'ing,Fang-p’ing,Maoping,Maoping Zhen 26.73694 109.22111 P PPL CN CN 18 1123 351 Asia/Chongqing 2012-01-18
-1801174 Maoping Maoping Maoping,Maoping Zhen,T'u-ch'iao,T’u-ch’iao 26.51972 110.41194 P PPL CN CN 11 2800 502 Asia/Chongqing 2012-01-18
-1801180 Maoming Maoming Hsin-p'o,Hsin-p’o,Mao-ming-shih,Maoming,mao ming,茂名 21.65 110.9 P PPLA2 CN 30 0 25 Asia/Chongqing 2012-01-18
-1801187 Maolin Maolin Mao-lin-chen,Mao-lin-ts'un,Mao-lin-ts’un,Maolin,Maolin Zhen,mao lin,mao lin zhen,茂林,茂林镇 30.50896 118.24819 P PPLA4 CN 01 0 81 Asia/Shanghai 2012-01-18
-1801189 Maoli Maoli Mao-lao-tien,Maoli,Maoli Zhen,Maolidian,mao li,mao li zhen,毛李,毛李镇 30.50694 112.4725 P PPLA4 CN 12 0 40 Asia/Chongqing 2012-01-18
-1801195 Maojing Maojing Mao-ching,Maojing,Maojing Xiang,mao jing,mao jing xiang,毛井,毛井乡 36.46448 106.60656 P PPLA4 CN 15 0 1765 Asia/Chongqing 2012-01-18
-1801200 Haimen Haimen Hai-men-hsien,Haimen,Haimen Shi,Haimen Zhen,Haimenting,Haimenzhen,Mao-chia-chen,Maojiazhen,hai men,hai men shi,hai men zhen,海门,海门市,海门镇 31.89722 121.15444 P PPLA3 CN 04 0 5 Asia/Shanghai 2012-01-18
-1801202 Maojiazao Maojiazao Mao-chia-tsao,Maojiazao,Maojiazao Zhen,mao jia zao,mao jia zao zhen,毛家皂,毛家皂镇 39.91874 113.26958 P PPLA4 CN 24 0 1020 Asia/Shanghai 2012-01-18
-1801211 Maojiagang Maojiagang Mao-chia-chiang,Maojiagang,Maojiagang Zhen,mao jia gang,mao jia gang zhen,毛家港,毛家港镇 30.04389 112.06861 P PPLA4 CN 12 0 40 Asia/Chongqing 2012-01-18
-1801227 Maogang Maogang Liu-chiang-chen,Mao-chiang,Mao-chiang-chen,Mao-kang,Mao-kang-chen,Maogang,mao gang,泖港 30.93487 121.209 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1801240 Maodian Maodian Mao-tien,Maodian,Maodian Zhen,mao dian,mao dian zhen,茅店,茅店镇 25.90583 115.04482 P PPLA4 CN 03 0 118 Asia/Shanghai 2012-01-18
-1801241 Maodi Maodi Mao-ti,Maodi,Maodi Zhen,mao de,mao de zhen,茂地,茂地镇 26.70251 118.07365 P PPLA4 CN 07 0 780 Asia/Shanghai 2012-01-18
-1801279 Liangshuijing Liangshuijing Liangshuijing,Manshui,Manshui Xiang,liang shui jing,man shui,man shui xiang,凉水井,漫水,漫水乡 29.28838 109.27643 P PPLA4 CN 12 0 378 Asia/Chongqing 2012-01-18
-1801286 Manjiang Manjiang Man-chiang,Manjiang,Manjiang Xiang,Mankiang,man jiang,man jiang xiang,漫江,漫江乡 28.8231 114.40515 P PPLA4 CN 03 0 141 Asia/Shanghai 2012-01-18
-1801298 Quedantang Quedantang Guinan,Guynan',Guynan’,Kuei-nan,Mang-la,Mangla Xiang,Mangra,Quedantang,mang la xiang,que dan tang,却旦塘,茫拉乡 35.65022 100.60006 P PPLA4 CN 06 0 2945 Asia/Chongqing 2012-01-18
-1801330 Malou Malou Malou,ma lou,马楼 33.67987 112.98597 P PPLA4 CN 09 0 131 Asia/Chongqing 2012-01-18
-1801345 Maling Maling Maling,Maling Zhen,ma ling,ma ling zhen,马岭,马岭镇 36.21757 107.64326 P PPLA4 CN 15 0 1137 Asia/Chongqing 2012-01-18
-1801350 Tianya Tianya Ma-ling-shih,Maling,Tianya,Tianya Zhen,Yamamia,Yamamin,tian ya,tian ya zhen,天涯,天涯镇 18.30835 109.32676 P PPLA4 CN 31 0 14 Asia/Chongqing 2012-01-18
-1801353 Malin Malin 26.455 110.64167 P PPL CN 11 2150 846 Asia/Chongqing 2004-05-21
-1801366 Maliang Maliang Maliang,Maliang Zhen,ma liang,ma liang zhen,马良,马良镇 30.88565 112.54793 P PPLA4 CN 12 0 50 Asia/Chongqing 2012-01-18
-1801367 Malianchuan Malianchuan Ma-lien-ch'uan,Ma-lien-ch’uan,Malian Xiang,Malianchuan,ma lian chuan,ma lian xiang,马连乡,马连川 35.80959 105.92435 P PPLA4 CN 21 0 1890 Asia/Chongqing 2012-01-18
-1801368 Malian Malian Ma-lien,Ma-lien-ts'un,Ma-lien-ts’un,Malian,Malian Zhen,ma lian,ma lian zhen,马连,马连镇 34.36881 108.33405 P PPLA4 CN 26 0 548 Asia/Chongqing 2012-01-18
-1801374 Mali Mali Ma-li-chen,Ma-li-p'o-kung-she,Ma-li-p'o-shih,Ma-li-p’o-kung-she,Ma-li-p’o-shih,Mali,Malipo,ma li,麻栗 23.12622 104.7409 P PPLA3 CN 29 0 1239 Asia/Chongqing 2012-01-18
-1801383 Makou Makou Makou,Makou Zhen,ma kou,ma kou zhen,马口,马口镇 28.95684 115.76148 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-18
-1801398 Majin Majin Kinmachen,Ma-chin,Ma-chin-chen,Ma-chin-chien,Majin,Majin Zhen,ma jin,ma jin zhen,马金,马金镇 29.30311 118.40917 P PPLA4 CN 02 0 160 Asia/Shanghai 2012-01-18
-1801401 Majie Majie Ma-chieh,Majie,Majiezi 25.03333 102.63611 P PPL CN 29 131696 1897 Asia/Chongqing 2012-01-18
-1801454 Majiadian Majiadian Ma-chia-tien,Majiadian 39.65778 117.26611 P PPL CN CN 28 1911 6 Asia/Shanghai 2012-01-18
-1801455 Zhijiang Zhijiang Chih-chiang,Ma-chia-tien,Majiadian,Zhijiang 30.42139 111.75333 P PPL CN 12 60169 46 Asia/Chongqing 2012-01-18
-1801485 Mahuiling Mahuiling Mahuiling,Mahuiling Zhen,ma hui ling,ma hui ling zhen,马迴岭,马迴岭镇 29.44614 115.80166 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1801493 Souziqiu Souziqiu Mahekou,Mahekou Baizuxiang,Souziqiu,ma he kou,ma he kou bai zu xiang,suo zi qiu,梭子丘,马合口,马合口白族乡 29.54349 110.36336 P PPLA4 CN 11 0 456 Asia/Chongqing 2012-01-18
-1801501 Magutian Magutian Ma-ku-t'ien,Ma-ku-t’ien,Magutian,Magutian Zhen,ma gu tian,马谷田 32.67383 113.47373 P PPLA4 CN 09 0 173 Asia/Chongqing 2012-01-18
-1801510 Magong Magong Ma-kung,Ma-tsung,Magong,ma gong,马宫 22.79019 115.23853 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-18
-1801511 Magitang Magitang Chien-cha,Jainca,Janca,Ma-k'o,Ma-k'o-t'ang,Ma-kai-t'ang,Ma-kai-t’ang,Ma-k’o,Ma-k’o-t’ang,Magitang,Maketang Zhen,ma ke tang,ma ke tang zhen,马克唐,马克唐镇 35.93859 102.02968 P PPLA3 CN 06 0 2068 Asia/Chongqing 2012-01-18
-1801520 Majiang Majiang Majiang,Majiang Zhen,ma jiang,ma jiang zhen,马江,马江镇 26.71161 113.54 P PPLA4 CN 11 0 119 Asia/Shanghai 2012-02-28
-1801536 Ma’e Ma'e Ma'e,Ma'e Zhen,Ma-o,Ma-o-chen,Ma’e,Ma’e Zhen,ma e,ma e zhen,马额,马额镇 34.82444 108.93028 P PPLA4 CN 26 0 651 Asia/Chongqing 2012-01-18
-1801537 Ma’e Ma'e Ma'e,Ma'e Zhen,Ma-o,Ma-o-chen,Ma’e,Ma’e Zhen,ma e,马额 34.40322 109.38469 P PPLA4 CN 26 0 545 Asia/Chongqing 2012-01-18
-1801554 Madian Madian Hsi-ma-tien,Ma-tien,Madian,Madian Zhen,ma dian,ma dian zhen,马甸,马甸镇 32.24139 119.95639 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1801558 Madaotou Madaotou Ma-tao-t'ou,Ma-tao-t’ou,Madaotou,Madaotou Xiang,ma dao tou,ma dao tou xiang,马道头,马道头乡 39.87611 112.76861 P PPLA4 CN 24 0 1540 Asia/Shanghai 2012-01-18
-1801561 Madao Madao Ma-tao,Ma-tao-chen,Ma-tao-i,Madao,Madao Zhen,Madaoi,Mataoyi,ma dao,ma dao zhen,马道,马道镇 33.42418 107.00014 P PPLA4 CN 26 0 898 Asia/Chongqing 2012-01-18
-1801564 Madang Madang Ma-tang,Madang,Madang Zhen,Matung,ma dang,ma dang zhen,马垱,马垱镇 29.98807 116.65208 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-18
-1801579 Macheng Macheng Macheng,Macheng Zhen,Machengpu,ma cheng,ma cheng zhen,麻城,麻城镇 30.90874 112.28984 P PPLA4 CN 12 0 70 Asia/Chongqing 2012-01-18
-1801582 Macheng Macheng Ma-ch'eng-hsien,Ma-ch’eng-hsien,Macheng 31.17833 115.03194 P PPL CN 12 126366 58 Asia/Shanghai 2012-01-18
-1801590 Machang Machang Ma-ch'ang-chen,Ma-ch’ang-chen,Machang,Machang Zhen,ma chang,ma chang zhen,马厂,马厂镇 34.08333 119.01667 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1801601 Mabugang Mabugang Mabugang,Mabugang Zhen,ma bu gang,ma bu gang zhen,麻布岗,麻布岗镇 24.5891 115.4117 P PPLA4 CN 30 0 261 Asia/Shanghai 2012-01-18
-1801604 Mabu Mabu Ma-pu,Mabu,Mabu Zhen,ma bu,ma bu zhen,马埠,马埠镇 27.56 115.39244 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-18
-1801615 Maba Maba Ch'u-chiang,Ch’ü-chiang,Ma-pa,Ma-pa-hsu,Ma-pa-hsü,Maba,Qujiang,ma ba,马坝 24.68412 113.59839 P PPLA3 CN 30 113609 68 Asia/Chongqing 2012-01-18
-1801616 Ma’ao Ma'ao Ma'ao,Ma'ao Zhen,Ma-ao-chieh,Ma-shih-ch'ieh,Ma-shih-ch’ieh,Ma’ao,Ma’ao Zhen,ma ao,ma ao zhen,马坳,马坳镇 29.05537 114.32695 P PPLA4 CN 03 0 115 Asia/Shanghai 2012-01-18
-1801617 Ma’an Ma'an Ma'an,Ma'anshi,Ma-an-shih,Ma’an,Ma’anshi 26.9775 110.72111 P PPL CN 11 1500 295 Asia/Chongqing 2012-01-18
-1801620 Ma’anshan Ma'anshan Kai-yuan,Ma'anshan,Ma'anshan Shi,Ma-an-shan-shih,Mang-shan,Ma’anshan,Ma’anshan Shi,ma an shan,ma an shan shi,马鞍山,马鞍山市 31.69568 118.49825 P PPLA2 CN 01 0 5 Asia/Shanghai 2012-01-18
-1801632 Ma’an Ma'an Ma'an,Ma'an Zhen,Ma-an-chen,Ma’an,Ma’an Zhen,Yuan-chia-ch'iao,Yüan-chia-ch’iao,ma an,ma an zhen,马鞍,马鞍镇 30.1473 120.58174 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1801640 Luzhou Luzhou Khehfehj,Lu,Lu-chou,Lu-chou-shih,Lu-hsien,Luchow,Luzhou,lu zhou,Хэфэй,泸州 28.87239 105.44049 P PPLA3 CN 32 0 270 Asia/Chongqing 2012-01-18
-1801645 Luzhi Luzhi Lu-chih,Lu-chih-chen,Luzhi,lu zhi,甪直 31.27389 120.86889 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1801650 Luzhai Luzhai Lu-chai,Lu-chai-chen,Lu-chai-hsu,Lu-chai-hsü,Luzhai,lu zhai,鹿寨 24.49754 109.73315 P PPLA3 CN 16 0 94 Asia/Chongqing 2012-01-18
-1801654 Luyuan Luyuan Gaolin,Gaoling,Kao-ling,Kao-ling-hsien,Kao-ling-hsien-ch'eng,Kao-ling-hsien-ch’eng,Luyuan,lu yuan,鹿苑 34.53596 109.08508 P PPLA3 CN 26 0 380 Asia/Chongqing 2012-01-18
-1801669 Luyang Luyang 27.62389 110.09889 P PPL CN 11 3150 261 Asia/Chongqing 2004-06-29
-1801682 Lüxiang Luxiang Lu-hsiang,Luxiang,Luxiang Zhen,Lü-hsiang,Lüxiang,lu xiang,lu xiang zhen,吕巷,吕巷镇 30.82985 121.1701 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1801684 Luxia Luxia Lu-hsia,Luxia 26.93 118.80722 P PPL CN CN 07 3540 911 Asia/Shanghai 2012-01-18
-1801688 Luxi Luxi Lu-ch'i,Lu-ch’i,Luxi,Luxi Xiang,lu xi,lu xi xiang,芦溪,芦溪乡 29.70736 117.50652 P PPLA4 CN 01 0 83 Asia/Shanghai 2012-01-18
-1801689 Luxi Luxi Lu-hsi,Luxi,Luxi Xian,Luxi Zhen,lu xi,lu xi xian,lu xi zhen,芦溪,芦溪县,芦溪镇 27.63618 114.03529 P PPLA3 CN 03 0 143 Asia/Chongqing 2012-01-18
-1801696 Luwan Luwan Luwan,lu wan,卢湾 31.20908 121.46335 P PPLA3 CN 23 0 12 Asia/Shanghai 2012-01-18
-1801709 Lütian Lutian Lu-t'ien,Lutian,Lutian Zhen,Lü-t’ien,Lütian,Lütian Zhen,lu tian,吕田 23.81336 113.94511 P PPLA4 CN 30 0 211 Asia/Chongqing 2012-01-18
-1801719 Lusi Lusi Lusi,Lusi Xiang,Lusibu,lu ci,lu ci bu,lu ci xiang,鸬鹚,鸬鹚乡,鸬鹚埠 28.89874 117.30338 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-18
-1801720 Lüsigang Lusigang Lu-ssu,Lu-ssu-chen,Lusi,Lusigang,Lusigang Zhen,Lusze,Lü-ssu,Lü-ssu-chen,Lüsi,Lüsigang,Lüsigang Zhen,lu si gang,lu si gang zhen,吕四港,吕四港镇 32.05533 121.59554 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1801722 Lüshun Lushun Lu-shun-k'ou,Lu-shun-k'ou-ch'u,Lu-shun-shih,Lueshun,Lueshunkou,Lushun,Lusunkchou,Lušunkchou,Lü-shun-k’ou,Lü-shun-k’ou-ch’ü,Lü-shun-shih,Lüshun,Lüshunkou,Por Arthur,Port Arthur,Port-Artur,Redzyun,Riojun,Ryojun,Rëdzyun,lu shun,lu shun kou qu,lwisun,port-artur,Порт-Артур,פורט ארתור,旅順,旅顺口区,뤼순 38.8 121.26667 P PPL CN 19 82345 4 Asia/Shanghai 2012-01-18
-1801727 Lushui Lushui Lushui,Lushui Zhen,Zhuzishan,lu shui,lu shui zhen,zhu zi shan,潞水,潞水镇,竹子山 26.95975 113.55581 P PPLA4 CN 11 0 206 Asia/Shanghai 2012-02-28
-1801730 Liushikou Liushikou Liushi,Liushi Zhen,Liushikou,Lu-shih-k'ou,Lu-shih-k'ou-shih,Lü-shih-k’ou,Lü-shih-k’ou-shih,liu shi kou,liu shi zhen,六石口,六石镇 29.30597 120.3321 P PPLA4 CN 02 0 93 Asia/Shanghai 2012-01-18
-1801735 Lüshan Lushan Lu-shan-chen,Lushan,Lushan Zhen,Lushanzhen,Lü-shan-chen,Lüshan,Lüshan Zhen,Lüshanzhen,lu shan,lu shan zhen,吕山,吕山镇 30.93022 119.91791 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1801738 Luyang Luyang Lu-shan-hsien,Lushan,Luyang,Luyang Jiedao,lu yang,lu yang jie dao,鲁阳,鲁阳街道 33.73564 112.90508 P PPLA3 CN 09 0 129 Asia/Chongqing 2012-01-18
-1801753 Luqiao Luqiao Lu-ch'iao,Lu-ch'iao-chen,Lu-ch’iao,Lu-ch’iao-chen,Luqiao,Luqiao Zhen,Yu-ch'iao-chen,Yü-ch’iao-chen,lu qiao,lu qiao zhen,鲁桥,鲁桥镇 34.685 108.91778 P PPLA4 CN 26 0 450 Asia/Chongqing 2012-01-18
-1801757 Luqiao Luqiao Lu-ch'iao,Lu-ch'iao-chen,Lu-ch’iao,Lu-ch’iao-chen,Luqiao,Luqiaozhen,lu qiao,路桥 28.58084 121.37715 P PPL CN 02 427890 9 Asia/Shanghai 2012-01-18
-1801782 Luoyuan Luoyuan Lo-yuan,Lo-yuan-chieh,Lo-yüan,Lo-yüan-chieh,Luoyuan,Luoyuan Zhen,Luoyuanjie,luo yuan,洛源 34.20014 109.81728 P PPLA4 CN 26 0 1239 Asia/Chongqing 2012-01-18
-1801791 Luoyang Luoyang Lo-yang-tien,Lojan,Luoyang,Luoyang Zhen,Luoyangdian,luo yang,luo yang zhen,Лоян,洛阳,洛阳镇 31.47292 113.42532 P PPLA4 CN 12 0 101 Asia/Chongqing 2012-01-18
-1801792 Luoyang Luoyang Honan,Honanfu,Lac Duong,Lo-yand,Lo-yang,Lo-yang-hsien,Lo-yang-shih,Lojan,Luoyang,Lạc Dương,luo yang,luo yang shi,lwoyang,Лоян,洛阳市,洛陽,뤄양 34.68361 112.45361 P PPL CN 09 1390581 149 Asia/Chongqing 2012-01-18
-1801797 Luoyang Luoyang Lo-yang,Lojan,Luoyang,luo yang,Лоян,洛阳 24.95938 118.683 P PPL CN 07 66188 1 Asia/Shanghai 2012-02-28
-1801799 Luoyang Luoyang Boluo,Fu-ch'eng,Fu-ch'eng-chen,Fu-ch’eng,Fu-ch’eng-chen,Hsien-ch'eng-chen,Hsien-ch’eng-chen,Lojan,Luoyang,Luoyang Zhen,Po-ch'eng-chen,Po-ch’eng-chen,Po-lo,Po-lo-hsien,Poklo,Poklohsien,luo yang,Лоян,罗阳 23.16244 114.27342 P PPLA3 CN 30 123144 16 Asia/Chongqing 2012-01-18
-1801806 Luoxiong Luoxiong Lo-p'ing,Lo-p'ing-hsien,Lo-p’ing,Lo-p’ing-hsien,Lopingchow,Luoping,Luoxiong,luo xiong,罗雄 24.88558 104.29225 P PPLA3 CN 29 0 1520 Asia/Chongqing 2012-01-18
-1801811 Luoxi Luoxi Lo-hsi,Luoxi,Luoxi Xiang,luo xi,luo xi xiang,罗溪,罗溪乡 29.08981 114.98255 P PPLA4 CN 03 0 160 Asia/Shanghai 2012-01-18
-1801812 Luoxi Luoxi Luoxi,Luoxi Zhen,luo xi,luo xi zhen,罗溪,罗溪镇 28.4149 116.15074 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-18
-1801821 Luowa Luowa Luowa,Luowa Xiang,luo wa,luo wa xiang,罗洼,罗洼乡 36.26038 106.58162 P PPLA4 CN 21 0 1793 Asia/Chongqing 2012-01-18
-1801825 Luotuo’ao Luotuo'ao Luotuo'ao,Luotuo'ao Zhen,Luotuo’ao,Luotuo’ao Zhen,luo tuo ao,luo tuo ao zhen,骆驼坳,骆驼坳镇 30.68641 115.39257 P PPLA4 CN 12 0 103 Asia/Shanghai 2012-01-18
-1801826 Luotouzhen Luotouzhen Lo-t'o-ch'iao,Lo-t’o-ch’iao,Luotouzhen,Luotuo,Luotuo Jiedao,luo tuo,luo tuo jie dao,骆驼,骆驼街道 29.98 121.58444 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1801829 Luotian Luotian Luotian,Luotian Zhen,luo tian,luo tian zhen,罗田,罗田镇 27.54026 115.04909 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-18
-1801830 Luotian Luotian Luotian,Luotian Zhen,luo tian,luo tian zhen,螺田,螺田镇 27.01299 115.53898 P PPLA4 CN 03 0 131 Asia/Shanghai 2012-01-18
-1801843 Luoshe Luoshe Lo-she-chen,Luoshe,Luoshe Zhen,luo she,luo she zhen,洛舍,洛舍镇 30.63444 120.08889 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1801850 Luorong Luorong Chiu-lo-jung,Lo-jung,Lo-jung-hsien,Lo-jung-hsien-ch'eng,Lo-jung-hsien-ch’eng,Loyung-hsien,Luorong 24.40583 109.60861 P PPL CN 16 67593 76 Asia/Chongqing 2012-01-18
-1801858 Luoqiao Luoqiao Li-liao,Lo-ch'iao,Lo-ch’iao,Luoqiao 26.46694 119.01028 P PPL CN CN 07 1030 811 Asia/Shanghai 2012-01-18
-1801864 Luoping Luoping Luoping,Luoping Zhen,luo ping,luo ping zhen,罗坪,罗坪镇 29.23182 115.25738 P PPLA4 CN 03 0 107 Asia/Shanghai 2012-01-18
-1801889 Luokou Luokou Lo-k'ou,Lo-k’ou,Luokou,Luokou Zhen,luo kou,luo kou zhen,洛口,洛口镇 26.85324 116.07018 P PPLA4 CN 03 0 226 Asia/Shanghai 2012-01-18
-1801891 Luokeng Luokeng Lo-k'eng,Lo-k'eng-hsu,Lo-k’eng,Lo-k’eng-hsü,Luokeng,Luokeng Zhen,luo keng,luo keng zhen,罗坑,罗坑镇 24.51937 113.33739 P PPLA4 CN 30 0 208 Asia/Shanghai 2012-02-28
-1801894 Luojiu Luojiu Lo-chiu,Luojiu 27.51583 109.80889 P PPL CN CN 11 2130 259 Asia/Chongqing 2012-01-18
-1801895 Luojing Luojing Luojing,Luojing Zhen,luo jing,luo jing zhen,罗泾,罗泾镇 31.4782 121.33907 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1801907 Luojiaping Luojiaping Luojiaping,Luoping,Luoping Xiang,luo jia ping,luo ping,luo ping xiang,罗坪,罗坪乡,罗家坪 29.75518 110.6985 P PPLA4 CN 11 0 427 Asia/Chongqing 2012-01-18
-1801909 Luojiang Luojiang Lo-chiang,Lo-chiang-chen,Lo-chiang-hsien,Lokiang,Lokiang-hsien,Lotszyan,Luojiang,luo jiang,罗江 31.30497 104.50484 P PPLA3 CN 32 0 509 Asia/Chongqing 2012-01-18
-1801912 Luodian Luodian Lo-chia-tien,Luodian,Luodian Xiang,Luojiadian,luo dian,luo dian xiang,骆店,骆店乡 31.5473 113.77938 P PPLA4 CN 12 0 96 Asia/Chongqing 2012-01-18
-1801928 Luohong Luohong Lo-hung,Luohong,Luohongxiang,Zhongluohong,luo hong,luo hong xiang,zhong luo hong,中罗洪,罗洪,罗洪乡 27.55556 111.07528 P PPLA4 CN 11 0 500 Asia/Chongqing 2012-02-28
-1801934 Luohe Luohe Lo-he,Lo-ho,Lo-ho-chai,Lo-ho-shih,Luohe,T'a-ho,T'a-ho-chai,T’a-ho,T’a-ho-chai 33.57167 114.03528 P PPL CN 09 417356 64 Asia/Shanghai 2012-01-18
-1801951 Luofu Luofu Lo-fu,Luofu,Luofu Zhen,luo fu,罗浮 24.52705 115.57646 P PPLA4 CN 30 0 273 Asia/Shanghai 2012-01-18
-1801954 Luoshi Luoshi Lo-fang,Lo-fang-chieh,Luofang,Luoshi,Luoshi Zhen,luo shi,luo shi zhen,罗市,罗市镇 28.68333 115.06667 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-18
-1801955 Luofang Luofang Luofang,Luofang Zhen,luo fang,luo fang zhen,罗坊,罗坊镇 27.85482 115.1127 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-18
-1801958 Luofang Luofang Lo-fang,Luofang,Luofang Xiang,luo fang,luo fang xiang,罗坊,罗坊乡 25.75068 116.68369 P PPLA4 CN 07 0 372 Asia/Shanghai 2012-01-18
-1801970 Luodian Luodian Lo-tien,Luodian,Luodian Zhen,luo dian,luo dian zhen,罗店,罗店镇 31.11273 113.39213 P PPLA4 CN 12 0 55 Asia/Chongqing 2012-01-18
-1801980 Luochuan Luochuan Luochuan,Luochuan Xiang,luo chuan,luo chuan xiang,罗川,罗川乡 36.6122 106.00167 P PPLA4 CN 21 0 1708 Asia/Chongqing 2012-01-18
-1801982 Luocheng Luocheng Guanghan,Han-chou,Hanchow,Kuang-han,Kuang-han-hsien,Kwanghan,Kwanghan-hsien,Luocheng,luo cheng,雒城 30.98021 104.28081 P PPLA3 CN 32 0 482 Asia/Chongqing 2012-01-18
-1801983 Luocheng Luocheng Lo-ch'eng-p'u,Lo-ch’eng-p’u,Luocheng,luo cheng,罗城 29.38481 104.02862 P PPL CN 32 73581 471 Asia/Chongqing 2012-01-18
-1801984 Luocheng Luocheng Huei-an,Hui'an,Hui-an-hsien,Hui’an,Hweian,Hweianhsien,Luocheng,luo cheng,螺城 25.03231 118.79495 P PPLA3 CN 07 0 34 Asia/Shanghai 2012-01-18
-1801998 Luobei Luobei Luobei,Luobei Xiang,luo bei,luo bei xiang,罗陂,罗陂乡 27.15073 115.70313 P PPLA4 CN 03 0 136 Asia/Shanghai 2012-01-18
-1802001 Luo’ao Luo'ao Lo-ao,Lo-wa,Luo'ao,Luo'ao Zhen,Luo’ao,Luo’ao Zhen,luo ao,luo ao zhen,罗坳,罗坳镇 25.93473 115.29295 P PPLA4 CN 03 0 142 Asia/Shanghai 2012-01-18
-1802013 Lufu Lufu Dongfanghong,Lu-nan-hsien,Lu-nan-i-tsu-tzu-chih-hsien,Lufu,Lunan,Lunan-chow,Shilin Yizu Zizhixian,lu fu,shi lin yi zu zi zhi xian,石林彝族自治县,鹿阜 24.7602 103.26647 P PPLA3 CN 29 0 1681 Asia/Chongqing 2012-01-18
-1802015 Lümeng Lumeng Lumeng,Lumeng Xiang,Lumengdu,Lümeng,Lümeng Xiang,Lümengdu,lu meng,lu meng xiang,吕蒙,吕蒙乡 29.26956 117.17162 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-18
-1802036 Lukou Lukou Lu-k'ou-chen,Lu-k’ou-chen,Lukou,Lukou Zhen,lu kou,lu kou zhen,禄口,禄口镇 31.77082 118.86817 P PPLA4 CN 04 0 11 Asia/Shanghai 2012-01-18
-1802037 Lukou Lukou Lukou,Lukou Zhen,lu kou zhen,路口镇 30.49255 114.93639 P PPLA4 CN 12 0 33 Asia/Shanghai 2012-01-18
-1802038 Lukou Lukou Lukou,Lukou Zhen,lu kou,lu kou zhen,路口,路口镇 29.57098 114.20616 P PPLA4 CN 12 0 118 Asia/Shanghai 2012-01-18
-1802040 Lukou Lukou Chu-chou,Chu-chou-hsien,Lu-k'ou-shih,Lu-k’ou-shih,Lukou,Lukow,Zhuzhou,lu kou,渌口 27.69187 113.15214 P PPLA3 CN 11 0 41 Asia/Chongqing 2012-01-18
-1802042 Lukou Lukou Lukou,Lukou Zhen,lu kou,lu kou zhen,路口,路口镇 27.28363 114.1002 P PPLA4 CN 03 0 265 Asia/Chongqing 2012-01-18
-1802068 Lucheng Lucheng Lu-chiang,Lu-chiang-hsien,Lucheng,Lujiang,Lukiang,Lukiang-hsien,lu cheng,庐城 31.23357 117.28057 P PPLA3 CN 01 89119 15 Asia/Shanghai 2012-01-18
-1802076 Lubu Lubu Lu-chia-pu,Lubu,Lubu Zhen,Lujiabu,lu bu,lu bu zhen,陆埠,陆埠镇 29.99052 121.23034 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1802078 Lujia Lujia Lu-chia,Lu-chia-pang,Lu-chia-peng,Lu-chia-peng-chen,Lu-chia-pin,Lu-chia-pin-chen,Lu-hsia-peng,Lu-hsia-peng-chen,Lujia,Lujia Zhen,Lujiabang,Lujiabangzhen,lu jia,lu jia zhen,陆家,陆家镇 31.3125 121.04472 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1802095 Luhua Luhua Heishui,Lu-hua-ch'eng,Lu-hua-ch’eng,Luhua,Lukhuachen,lu hua,芦花 32.06708 102.98786 P PPLA3 CN 32 0 2346 Asia/Chongqing 2012-01-18
-1802128 Lugang Lugang Lugang,Lugang Xiang,lu gang,lu gang xiang,鹿冈,鹿冈乡 27.40492 115.61862 P PPLA4 CN 03 0 91 Asia/Shanghai 2012-01-18
-1802133 Lufeng Lufeng Hsu-p'u,Hsu-p'u-hsien,Hsü-p’u,Hsü-p’u-hsien,Lufeng,Supu,Supu-hsien,Süpu-hsien,Xupu,lu feng,卢峰 27.90944 110.58583 P PPLA3 CN 11 0 162 Asia/Chongqing 2012-01-18
-1802136 Lüeyang Chengguanzhen Lueyang Chengguanzhen Liao-yang,Lioyan,Loayang,Lueh-yang,Lueh-yang-hsien,Lueyang,Lueyang Chengguanzhen,Lüeh-yang,Lüeh-yang-hsien,Lüeyang,Lüeyang Chengguanzhen,e yang,e yang cheng guan zhen,略阳,略阳城关镇 33.33204 106.15496 P PPLA4 CN 26 0 745 Asia/Chongqing 2012-01-18
-1802139 Ludu Ludu Lu-tu-ch'iao,Lu-tu-ch’iao,Ludu,Ludu Xiang,Ludu Zhen,Luduqiao,lu du,lu du zhen,陆渡,陆渡镇 31.47056 121.18222 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1802162 Daxing Daxing Daxing,Daxing Zhen,Luchun,Lüchun,Ta-hsing-chai,Ta-hsing-chen,Ta-hsing-chieh,da xing,大兴 22.96916 102.40611 P PPLA3 CN 29 0 1800 Asia/Chongqing 2012-01-18
-1802166 Luhua Luhua Lu-ch'eng-chen,Lu-ch'eng-hsien,Lu-ch’eng-chen,Lu-ch’eng-hsien,Luchen,Lucheng,Lucheng Shi,Luhua,Luhua Jiedao,lu cheng,lu cheng shi,lu hua,lu hua jie dao,潞华,潞华街道,潞城,潞城市 36.33139 113.22444 P PPLA3 CN 24 0 944 Asia/Shanghai 2012-01-18
-1802171 Kangding Kangding Dardo,K'an-ting,K'ang-ting,K'ang-ting-hsien,Kandin,Kangding,Ta-chien-lu,Tarchendo,Tatsienlu,Tatsientu,Кандин 30.05127 101.96033 P PPL CN CN 32 100000 2530 Asia/Chongqing 2009-08-12
-1802174 Wenquan Wenquan Lu-ch'eng-chen,Lu-ch'uan-hsien,Lu-ch’eng-chen,Lu-ch’uan-hsien,Lucheng,Luchuan,Luchwan,Luchwan-hsien,Wenquan,wen quan,温泉 22.32528 110.25556 P PPLA3 CN 16 0 99 Asia/Chongqing 2012-01-18
-1802177 Lubu Lubu Lu-pu,Lubu,lu bu,禄步 23.17422 112.28094 P PPL CN 30 95820 13 Asia/Chongqing 2012-01-18
-1802179 Lubiaojie Lubiaojie Lu-piao,Lu-piao-chieh,Lubiao,Lubiao Zhen,Lubiaojie,lu biao,lu biao jie,lu biao zhen,禄脿,禄脿街,禄脿镇 24.97563 102.26869 P PPLA4 CN 29 0 1907 Asia/Chongqing 2012-01-18
-1802204 Luancheng Luancheng Luan'chen,Luan-ch'eng-ch'eng-kuan,Luan-ch'eng-hsien,Luan-ch’eng-ch’eng-kuan,Luan-ch’eng-hsien,Luancheng,Luan’chen,Lwanchenghsien 37.87917 114.65167 P PPL CN 10 597130 55 Asia/Shanghai 2012-01-18
-1802214 Louzhuang Louzhuang Louzhuang,Louzhuang Zhen,lou zhuang,lou zhuang zhen,娄庄,娄庄镇 32.55137 120.2202 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1802225 Louguan Louguan Chi-chia,Chiao-chia,Chiao-chia-chen,Lou-kuan,Louguan,Louguan Zhen,lou guan,lou guan zhen,楼观,楼观镇 34.09301 108.29912 P PPLA4 CN 26 0 451 Asia/Chongqing 2012-01-18
-1802232 Loufan Loufan Ho-chia-chuang,Hsin-lou-fan,Lou-fan-chen,Loufan,Loufan Xian,Loufan Zhen,lou fan,lou fan xian,lou fan zhen,娄烦,娄烦县,娄烦镇 38.0918 111.80721 P PPLA3 CN 24 0 1248 Asia/Chongqing 2012-01-18
-1802238 Loudi Loudi Lou-ti,Lou-ti-chen,Lou-ti-shih,Loudi 27.73444 111.99444 P PPL CN 11 150684 135 Asia/Chongqing 2012-01-18
-1802247 Longzhouping Longzhouping Ch'ang-yang-hsien,Changyang,Ch’ang-yang-hsien,Longzhouping,Longzhouping Zhen,long zhou ping,long zhou ping zhen,龙舟坪,龙舟坪镇 30.49525 111.15979 P PPLA4 CN 12 0 97 Asia/Chongqing 2012-01-18
-1802249 Longzhou Longzhou Li-chiang,Longzhou,Lung-ching,Lung-ching-hsien,Lung-chou,Lung-chou-chen,Lung-hsien,Lung-shou,Lungchow,Lungchow-hsien,long zhou,龙州 22.39967 106.78967 P PPLA3 CN 16 0 215 Asia/Chongqing 2012-01-18
-1802256 Longyuanba Longyuanba Longyuanba,Longyuanba Zhen,Lung-yuan-pa,Lung-yüan-pa,long yuan ba,long yuan ba zhen,龙源坝,龙源坝镇 24.9432 114.4502 P PPLA4 CN 03 0 250 Asia/Chongqing 2012-01-18
-1802272 Longyang Longyang Longyang,Longyang Zhen,Lung-yang,Lung-yang-chen,long yang,龙阳 34.84537 109.6871 P PPLA4 CN 26 0 376 Asia/Chongqing 2012-01-18
-1802276 Longyan Longyan Longyan,Lung-yen,Lung-yen-hsien,Lungyenchow,long yan,龙岩 25.10722 117.0225 P PPLA2 CN 07 0 360 Asia/Shanghai 2012-01-18
-1802287 Longxu Longxu Cangwu,Jung-hsu,Jung-hsü,Longxu,Lung-hsu,Lung-hsu-chen,Lung-hsü,Lung-hsü-chen,Ts'ang-wu,Ts'ang-wu-hsien,Ts’ang-wu,Ts’ang-wu-hsien,Yunghu,Yunghü,long wei,龙圩 23.41667 111.23333 P PPLA3 CN 16 0 50 Asia/Chongqing 2012-01-18
-1802301 Longxian Longxian Longxian,Longxian Zhen,Lung-hsien,Lung-hsien-chen,Lung-hsien-hsu,Lung-hsien-hsü,Lungsinhu,Lungsinhü,Weng-yuan-hsien,Weng-yüan-hsien,Wengyuan Xian,long xian,long xian zhen,weng yuan xian,翁源县,龙仙,龙仙镇 24.35349 114.12843 P PPLA3 CN 30 0 147 Asia/Chongqing 2012-02-02
-1802312 Longxi Longxi Longxi,Longxi Zhen,Lung-hsi,long xi,龙溪 23.13296 114.11736 P PPLA4 CN 30 0 11 Asia/Chongqing 2012-01-18
-1802315 Longwo Longwo Longwo,Longwo Zhen,Lung-wo,Lung-wo-hsu,long wo,long wo zhen,龙窝,龙窝镇 23.47745 115.28883 P PPLA4 CN 30 0 225 Asia/Shanghai 2012-01-18
-1802364 Longtou’an Longtou'an Longtou'an,Longtou’an,Lung-t'ou-an,Lung-t’ou-an,Lungtowan 27.67028 110.33611 P PPL CN 11 2790 150 Asia/Chongqing 2012-01-18
-1802388 Longtan Longtan Longtan,Longtan Zhen,Longtanshui,long tan,long tan shui,long tan zhen,龙潭,龙潭水,龙潭镇 28.96198 111.13095 P PPLA4 CN 11 0 125 Asia/Chongqing 2012-01-18
-1802389 Longtanping Longtanping Longtanping,Longtanping Zhen,long tan ping,long tan ping zhen,龙潭坪,龙潭坪镇 29.67692 110.15662 P PPLA4 CN 11 0 423 Asia/Chongqing 2012-01-18
-1802391 Longtanhe Longtanhe Longtanhe,Longtanhe Zhen,Lung-t'an-ho,Lung-t’an-ho,long tan he,long tan he zhen,龙潭河,龙潭河镇 29.24338 111.07605 P PPLA4 CN 11 0 113 Asia/Chongqing 2012-01-18
-1802402 Longhe Longhe Longhe,Longhe Zhen,Longtang,Lung-t'ang,Lung-t’ang,long he,long he zhen,龙河,龙河镇 19.38177 110.21024 P PPLA4 CN 31 0 112 Asia/Chongqing 2012-01-18
-1802409 Longtan Longtan Longtan,Lung-t'an,Lung-t'an-ssu,Lung-t’an,Lung-t’an-ssu 27.41139 110.53639 P PPL CN CN 11 2800 490 Asia/Chongqing 2012-01-18
-1802431 Longsheng Longsheng Longsheng,Lung-sheng,Lung-sheng-hsien,Lung-sheng-ko-tsu-lien-ho-tzu-chih-hsien,Lung-sheng-ko-tsu-tzu-chih-hsien,long sheng,龙胜 25.79361 110.00917 P PPLA3 CN 16 0 357 Asia/Chongqing 2012-01-18
-1802443 Longshan Longshan Longshan,Longshanzhen,Lung-shan,long shan,long shan zhen,龙山,龙山镇 30.07861 121.55278 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1802458 Longquan Longquan Longquan,Longquanyi,Lung-ch'uan-i,Lung-ch’üan-i,Luntsyuan'i,Luntsyuan’i,long quan,龙泉 30.5613 104.26893 P PPLA3 CN 32 0 523 Asia/Chongqing 2012-01-18
-1802472 Longquan Longquan Longquan,Longquan Zhen,long quan,long quan zhen,龙泉,龙泉镇 30.73095 111.49024 P PPLA4 CN 12 0 103 Asia/Chongqing 2012-01-18
-1802476 Longquan Longquan I-men,I-men-hsien,Longquan,Longquan Zhen,Luncjuan',Yimen,Yimen Xian,long quan,yi men,yi men xian,Лунцюань,易门,易门县,龙泉 24.67192 102.1613 P PPLA3 CN 29 91534 1591 Asia/Chongqing 2012-01-18
-1802483 Longping Longping Longping,Longping Zhen,Lung-p'ing,Lung-p’ing,long ping,long ping zhen,龙坪,龙坪镇 29.86956 115.69742 P PPLA4 CN 12 0 22 Asia/Shanghai 2012-01-18
-1802495 Longnan Longnan Longnan,Longnan Xian,Longnan Zhen,Lung-nan,Lung-nan-chen,Lung-nan-hsien,long nan,long nan xian,long nan zhen,龙南,龙南县,龙南镇 24.9 114.78333 P PPLA3 CN 03 0 216 Asia/Shanghai 2012-01-18
-1802498 Longmu Longmu Longmu,Longmu Zhen,long mu,long mu zhen,龙母,龙母镇 24.26073 115.43358 P PPLA4 CN 30 0 173 Asia/Shanghai 2012-01-18
-1802525 Longmen Longmen Longmen,Longmen Jiedao,Lung-men,long men,long men jie dao,龙门,龙门街道 25.09697 116.96782 P PPLA4 CN 07 0 372 Asia/Shanghai 2012-01-18
-1802526 Longmen Longmen Longmen,Lung-men,Lung-men-hsu,Lung-men-hsü 24.95972 118.08889 P PPL CN CN 07 5370 118 Asia/Shanghai 2012-01-18
-1802527 Longcheng Longcheng Longcheng,Longmen,Lung-ch'eng-chen,Lung-ch’eng-chen,Lung-men,Lung-men-hsien,Lungmoon,long cheng,龙城 23.7309 114.24395 P PPLA3 CN 30 0 85 Asia/Chongqing 2012-01-18
-1802533 Longmen Longmen Ling-men-shih,Longmen,Longmen Zhen,Lung-men,long men,long men zhen,龙门,龙门镇 19.44293 110.32553 P PPLA4 CN 31 0 126 Asia/Chongqing 2012-01-18
-1802541 Longlin Longlin Longlin,long lin,龙林 33.94278 105.06739 P PPLA4 CN 15 0 1316 Asia/Chongqing 2012-01-18
-1802545 Longlisuo Longlisuo Longli,Longlisuo,Lung-li-so 26.41417 109.10222 P PPL CN CN 18 2450 456 Asia/Chongqing 2012-01-18
-1802550 Longkou Longkou Longkou,Lung-k'ou,Lung-kou-shih,Lung-k’ou,Lungkow 37.65083 120.32861 P PPL CN 25 60444 2 Asia/Shanghai 2012-01-18
-1802556 Longkou Longkou Longkou,Longkou Zhen,Lung-k'ou,Lung-k'ou-chen,Lung-k’ou,Lung-k’ou-chen,Lungkow,long kou,long kou zhen,龙口,龙口镇 26.18583 115.30088 P PPLA4 CN 03 0 136 Asia/Shanghai 2012-01-18
-1802567 Longju Longju Longju,Longju Zhen,Lung-chu,Lung-chü,long ju,long ju zhen,龙苴,龙苴镇 34.36667 119.1 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1802571 Longjin Longjin Ch'ing-liu,Ch'ing-liu-hsien,Ch’ing-liu,Ch’ing-liu-hsien,Donghua,Longjin,Longjin Zhen,Qingliu,dong hua,long jin,long jin zhen,qing liu,东华,清流,龙津,龙津镇 26.18197 116.81464 P PPLA3 CN 07 0 299 Asia/Shanghai 2012-01-18
-1802578 Longjie Longjie Longjie,Longjie Zhen,Lung-chieh,long jie,long jie zhen,隆街,隆街镇 24.19326 114.36312 P PPLA4 CN 30 0 137 Asia/Chongqing 2012-01-18
-1802580 Longjiazhai Longjiazhai Longjia Zhen,Longjiazhai,Longzhai,Lung-chia-chai,long jia zhai,long jia zhen,龙家寨,龙家镇 29.20458 109.828 P PPLA4 CN 11 0 528 Asia/Chongqing 2012-01-18
-1802593 Longjiang Longjiang Longjiang,Longjiang Zhen,Lung-chiang,Lung-chiang-hsu,Lung-chiang-hsü,Lung-t'ing-hsu,Lung-t’ing-hsü,Lungkong,long jiang,隆江 22.98458 116.17 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-18
-1802602 Longhutang Longhutang Longhutang,Longhutang Zhen,Longhuzhen,Lung-hu-chan,Lung-hu-chen,Lung-k'u-chen,Lung-k’u-chen,Lung-yao-chen,long hu tang,long hu tang zhen,龙虎塘,龙虎塘镇 31.85 119.98333 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1802618 Longhua Longhua Longhua,Longhua Zhen,Lung-ho,Lung-hua,Lung-hua-hsu,Lung-hua-hsü,long hua,龙华 23.61371 114.19188 P PPLA4 CN 30 0 56 Asia/Chongqing 2012-01-18
-1802619 Longhua Longhua Longhua,Longhua Zhen,Lung-hua,long hua,龙华 23.18962 114.10078 P PPLA4 CN 30 0 11 Asia/Chongqing 2012-01-18
-1802620 Longhua Longhua Longhua,Lung Wa,Lung-hua,Lung-hua-hsu,Lung-hua-hsü,long hua,龙华 22.65525 113.9984 P PPLA4 CN 30 0 69 Asia/Chongqing 2012-01-18
-1802625 Longhu Longhu Longhu,Longhu Zhen,long hu,龙湖 23.55494 116.64519 P PPLA4 CN 30 0 11 Asia/Shanghai 2012-01-18
-1802634 Longgun Longgun Longgun,Longgun Zhen,Lung-kun,long gun,long gun zhen,龙滚,龙滚镇 19.06005 110.51537 P PPLA4 CN 31 0 12 Asia/Chongqing 2012-01-18
-1802644 Longgao Longgao Longgao,Longgao Zhen,Lung-kao,long gao,long gao zhen,龙高,龙高镇 34.95528 108.31503 P PPLA4 CN 26 0 1134 Asia/Chongqing 2012-01-18
-1802652 Longgang Longgang Longgang,Longgang Zhen,Lung-kang,long gang,long gang zhen,龙港,龙港镇 29.62558 114.95028 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-18
-1802653 Longgang Shezu Longgang Shezu Longgang,Longgang Shezu,Longgang Shezu Xiang,Lung-kang,Lung-kang-hsu,Lung-kang-hsü,long gang she zu,long gang she zu xiang,龙冈畲族,龙冈畲族乡 26.73842 115.58309 P PPLA4 CN 03 0 146 Asia/Shanghai 2012-01-18
-1802654 Longgang Longgang Longgang,Longgang Xiang,Lung-kang,Lung-kang-hsu,Lung-kang-hsü,long gang,long gang xiang,龙岗,龙岗乡 26.10876 116.26004 P PPLA4 CN 03 0 234 Asia/Shanghai 2012-01-18
-1802682 Longchuan Longchuan Cheh-nam,Chen-nan,Chen-nan-chou,Chen-nan-hsien,Longchuan,Lung-ch'uan-chen,Lung-ch’uan-chen,Nanhua,long chuan,龙川 25.16152 101.29418 P PPLA3 CN 29 0 1915 Asia/Chongqing 2012-01-18
-1802686 Longcheng Longcheng Longcheng,long cheng,陇城 35.00096 105.97339 P PPLA4 CN 15 0 1497 Asia/Chongqing 2012-01-18
-1802687 Longcheng Longcheng Hsiao,Hsiao-hsien,Hsiao-hsien-ch'eng,Hsiao-hsien-ch’eng,Longcheng,Lung-ch'eng,Lung-ch'eng-chen,Lung-ch’eng,Lung-ch’eng-chen,Siaohsien,Xiaoxian,long cheng,龙城 34.18448 116.95077 P PPLA3 CN 01 0 38 Asia/Shanghai 2012-01-18
-1802689 Longcheng Longcheng Ch'eng-kung,Ch'eng-kung-hsien,Chenggong,Chenggong Xian,Ch’eng-kung,Ch’eng-kung-hsien,Longcheng,Longcheng Zhen,Lung-ch'eng-chen,Lung-ch’eng-chen,cheng gong,cheng gong xian,long cheng,long cheng zhen,呈贡,呈贡县,龙城,龙城镇 24.89827 102.79965 P PPLA3 CN 29 0 1945 Asia/Chongqing 2012-01-18
-1802701 Longbu Longbu Longbu,Longbu Zhen,Lung-pu,long bu,long bu zhen,龙布,龙布镇 25.47348 115.376 P PPLA4 CN 03 0 275 Asia/Shanghai 2012-01-18
-1802707 Long’an Long'an Long'an,Long’an,Lun'yan',Lung-yan,Lungan,Lunganfu,Lun’yan’,P'ing-wu-hsien,Pingwu,Pinu,P’ing-wu-hsien,long an,龙安 32.40934 104.52868 P PPLA3 CN 32 0 873 Asia/Chongqing 2012-01-18
-1802708 Long’an Long'an Long'an,Long'an Zhen,Long’an,Long’an Zhen,Lung-an,Lung-an-chen,long an,long an zhen,龙安,龙安镇 27.22741 116.80341 P PPLA4 CN 03 0 116 Asia/Shanghai 2012-01-18
-1802710 Long’an Chengxiangzhen Long'an Chengxiangzhen Long'an,Long'an Chengxiangzhen,Long’an,Long’an Chengxiangzhen,Lung-an,Lung-an-hsiang,Lung-an-hsien,long an cheng xiang zhen,隆安城厢镇 23.20712 107.6509 P PPLA3 CN 16 0 99 Asia/Chongqing 2012-01-18
-1802714 Lizui Lizui Li-tsui,Li-tsui-shih,Lizui,Lizui Zhen,li ju,li ju zhen,黎咀,黎咀镇 24.34222 115.32526 P PPLA4 CN 30 0 91 Asia/Shanghai 2012-01-18
-1802729 Lizhuangzi Lizhuangzi 39.00417 117.52556 P PPL CN 28 1397 1 Asia/Shanghai 2000-11-21
-1802740 Lizhu Lizhu Li-chu,Li-chu-shih,Lizhu,Lizhu Zhen,li zhu,li zhu zhen,漓渚,漓渚镇 29.95528 120.46667 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1802750 Lizhai Lizhai Li-chai,Lizhai,Lizhai Xiang,li zhai,li zhai xiang,李宅,李宅乡 29.00844 117.91891 P PPLA4 CN 03 0 93 Asia/Shanghai 2012-01-18
-1802769 Liyuan Liyuan Liyuan,Liyuan Zhen,li yuan,li yuan zhen,礼元,礼元镇 35.50692 111.32324 P PPLA4 CN 24 0 520 Asia/Chongqing 2012-01-18
-1802772 Liyuan Liyuan Liyuan,Liyuan Zhen,Sang-chih,Sang-chih-hsien,Sangzhi,Sangzhi Xian,li yuan,li yuan zhen,sang zhi,sang zhi xian,桑植,桑植县,澧源,澧源镇 29.39537 110.15591 P PPLA3 CN 11 0 325 Asia/Chongqing 2012-01-18
-1802786 Liyang Liyang Hsu-yang-chen,Hsü-yang-chen,Li-yang,Liyang,Liyang Zhen,li yang,栎阳 34.58515 109.20857 P PPLA4 CN 26 0 373 Asia/Chongqing 2012-01-18
-1802787 Liyang Liyang Hexian,Ho,Ho-han,Ho-hsien,Hochow,Liyang,li yang,历阳 31.71667 118.35 P PPLA3 CN 01 0 18 Asia/Shanghai 2012-01-18
-1802788 Licheng Licheng Li-ch'eng-chen,Li-ch’eng-chen,Li-yang-ch'eng,Li-yang-ch’eng,Li-yang-hsien,Licheng,Liyang,li cheng,凓城 31.4308 119.52399 P PPLA3 CN 04 72276 3 Asia/Shanghai 2012-01-18
-1802789 Liyang Liyang Li-yang-chieh,Liyang,Liyang Zhen,Liyangzhen,li yang,li yang zhen,力洋,力洋镇 29.30667 121.615 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-18
-1802791 Lixu Lixu Chou-ts'un,Chou-ts’un,Li-hsu,Li-hsü,Lixu,Lixu Zhen,li wei,li wei zhen,黎圩,黎圩镇 28.06861 116.63165 P PPLA4 CN 03 0 61 Asia/Shanghai 2012-01-18
-1802793 Lixiqiao Lixiqiao Li-ch'i-ch'iao,Li-ch’i-ch’iao,Litsitsyao,Lixiqiao 26.79472 110.41806 P PPL CN CN 11 1960 414 Asia/Chongqing 2012-01-18
-1802803 Lixin Chengguanzhen Lixin Chengguanzhen Li-hsin,Li-hsin-chi,Li-hsin-p'u,Li-hsin-p’u,Liu-hsien-p'u,Liu-hsien-p’u,Lixin,Lixin Chengguanzhen,li xin cheng guan zhen,利辛城关镇 33.14328 116.22718 P PPLA3 CN 01 0 26 Asia/Shanghai 2012-01-18
-1802804 Lixin Lixin Li-hsin,Li-hsin-hsun,Li-hsin-hsün,Lixin,Lixin Zhen,li xin,li xin zhen,里心,里心镇 26.83127 116.67051 P PPLA4 CN 07 0 444 Asia/Shanghai 2012-01-18
-1802812 Liyang Liyang Li,Li-chou,Li-hsien,Li-hsien-ch'eng,Li-hsien-ch’eng,Li-yang-chen,Lichow,Lixian,Liyang,Liyang Zhen,li xian,li yang,li yang zhen,澧县,澧阳,澧阳镇 29.63681 111.75174 P PPLA3 CN 11 0 43 Asia/Shanghai 2012-01-18
-1802820 Lixi Lixi Li-hsi,Lixi,Lixi Zhen,li xi,li xi zhen,澧溪,澧溪镇 29.24859 114.83822 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-18
-1802821 Lixi Lixi Li-hsi,Lixi,Lixi Zhen,li xi,li xi zhen,梨溪,梨溪镇 27.62809 116.36667 P PPLA4 CN 03 0 84 Asia/Shanghai 2012-01-18
-1802824 Lixi Lixi Lixi,Lixi Zhen,li xi,li xi zhen,黎溪,黎溪镇 23.94359 113.24747 P PPLA4 CN 30 0 26 Asia/Chongqing 2012-01-18
-1802829 Liwang Liwang Li-wang-pu,Liwang,Liwang Zhen,Liwangbu,li wang zhen,李旺镇 36.66744 106.10133 P PPLA4 CN 21 0 1425 Asia/Chongqing 2012-01-18
-1802835 Liuzikou Liuzikou Liu-tzu-k'ou,Liu-tzu-k’ou,Liutze,Liuzikou 39.87028 117.34667 P PPL CN CN 28 2986 9 Asia/Harbin 2012-01-18
-1802848 Liuzhuang Liuzhuang Liu-chuang,Liuchwang,Liuzhuang,Liuzhuang Zhen,liu zhuang,liu zhuang zhen,刘庄,刘庄镇 33.1377 120.29289 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1802854 Liuzhi Liuzhi Liuzhi,Liuzhi Jiedao,Liuzhidian,liu zhi,liu zhi jie dao,六指,六指街道 30.88453 114.49483 P PPLA4 CN 12 0 45 Asia/Shanghai 2012-01-18
-1802875 Liuyang Liuyang Liu-yang-hsien,Liujang,Liuyang,liu yang,Лиуянг,浏阳 28.15 113.63333 P PPL CN CN 11 1380000 77 Asia/Chongqing 2012-01-18
-1802886 Liuxia Liuxia Liu-hsia,Liu-hsia-chen,Liuxia,Liuxia Jiedao,Liuxia Zhen,liu xia,liu xia jie dao,liu xia zhen,留下,留下街道,留下镇 30.24546 120.05287 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1802889 Liuwudian Liuwudian Liuwudian,liu wu dian,刘五店 24.55552 118.19558 P PPL CN 07 2950 -9999 Asia/Shanghai 2012-01-18
-1802906 Liutao Liutao Liutao,Liutao Xiang,liu tao,liu tao xiang,六套,六套乡 34.11278 119.79417 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1802915 Liusi Liusi Liu-ssu-ch'iao,Liu-ssu-ch’iao,Liusi,Liusi Zhen,Liusiqiao,liu si,liu si zhen,流泗,流泗镇 29.78784 116.36033 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1802918 Liushui Liushui Liu-shui-kou,Liushui,Liushui Zhen,Liushuigou,liu shui,liu shui zhen,流水,流水镇 31.56707 112.44798 P PPLA4 CN 12 0 55 Asia/Chongqing 2012-01-18
-1802936 Liushan Liushan Liu-shan-chen,Liushan,Liushan Zhen,liu shan,liu shan zhen,留山,留山镇 33.47366 112.54619 P PPLA4 CN 09 0 215 Asia/Chongqing 2012-01-18
-1802940 Puning Puning Liu-sha-chen,Liu-sha-hsu,Liu-sha-hsü,Liusha,P'u-ning-hsien,Puning,P’u-ning-hsien,pu ning,普宁 23.31072 116.16869 P PPL CN 30 118023 12 Asia/Shanghai 2012-01-18
-1802942 Liurenba Liurenba Liu-jen-pa,Liurenba,Liurenba Zhen,liu ren ba,liu ren ba zhen,刘仁八,刘仁八镇 29.93786 114.83014 P PPLA4 CN 12 0 87 Asia/Shanghai 2012-01-18
-1802950 Liuqu Liuqu Liu-ch'u,Liu-ch'u-chen,Liu-ch’ü,Liu-ch’ü-chen,Liuqu,Liuqu Zhen,liu qu,流曲 34.86646 109.26548 P PPLA4 CN 26 0 481 Asia/Chongqing 2012-01-18
-1802954 Liuqiao Liuqiao Liu-ch'iao,Liu-ch’iao,Liuqiao,Liuqiao Zhen,Pei-liu-ch'iao,Pei-liu-ch'iao-chen,Pei-liu-ch’iao,Pei-liu-ch’iao-chen,liu qiao,liu qiao zhen,刘桥,刘桥镇 32.16864 120.84048 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1802965 Liupai Liupai Liu-p'ai-chen,Liu-p'ai-hsiang,Liu-p'ai-hsu,Liu-p’ai-chen,Liu-p’ai-hsiang,Liu-p’ai-hsü,Liupai,T'ien-o,Tian'e,Tian’e,T’ien-o,liu pai,六排 25.04 107.17315 P PPLA3 CN 16 0 697 Asia/Chongqing 2012-01-18
-1802986 Liulin Liulin Liu-lin-chen,Liulin,Liulin Xian,Liulin Zhen,liu lin,liu lin xian,liu lin zhen,柳林,柳林县,柳林镇 37.45333 110.90189 P PPLA3 CN 24 0 940 Asia/Chongqing 2012-01-18
-1802991 Liulin Liulin Liu-lin-chen,Liu-lin-p'u,Liu-lin-p’u,Liulin,Liulin Zhen,liu lin,liu lin zhen,柳林,柳林镇 34.54943 107.3094 P PPLA4 CN 26 0 837 Asia/Chongqing 2012-01-18
-1802994 Liulin Liulin Liu-lin-tien,Liulin,Liulin Zhen,liu lin,liu lin zhen,柳林,柳林镇 31.53941 113.23247 P PPLA4 CN 12 0 117 Asia/Chongqing 2012-01-18
-1803010 Liukuaizhuang Liukuaizhuang 39.24472 117.33083 P PPL CN 28 5384 5 Asia/Shanghai 2000-11-21
-1803012 Liukou Liukou Liukou,Liukou Zhen,liu kou,liu kou zhen,流口,流口镇 29.70503 117.78179 P PPLA4 CN 01 0 253 Asia/Shanghai 2012-01-18
-1803052 Zhujita Zhujita Liu-chia-p'ing,Liu-chia-p’ing,Liujiaping,Liujiaping Baizuxiang,Zhujita,liu jia ping,liu jia ping bai zu xiang,zhu ji ta,刘家坪,刘家坪白族乡,珠矶塔 29.46754 110.22429 P PPLA4 CN 11 0 320 Asia/Chongqing 2012-01-18
-1803081 Liujiachang Liujiachang Liu-chia-ch'ang,Liu-chia-ch’ang,Liujiachang,Liujiachang Zhen,liu jia chang,liu jia chang zhen,刘家场,刘家场镇 30.0606 111.47068 P PPLA4 CN 12 0 157 Asia/Chongqing 2012-01-18
-1803085 Liujia Liujia Liu-chia,Liu-chia-chen,Liuhao,Liuhao Zhen,Liujia,Liujia Zhen,Liujiazhen,liu hao,liu hao zhen,liu jia,liu jia zhen,六甲,六甲镇,刘浩,刘浩镇 32.05951 121.48161 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1803093 Liuji Liuji Liu-chi,Liuji,Liuji Zhen,liu ji,刘集 34.77336 109.3064 P PPLA4 CN 26 0 424 Asia/Chongqing 2012-01-18
-1803109 Liuhou Liuhou Liu-hou-chi,Liuhou,Liuhou Zhen,Liuhouji,liu hou,liu hou zhen,刘猴,刘猴镇 31.48447 112.02225 P PPLA4 CN 12 0 110 Asia/Chongqing 2012-01-18
-1803122 Liuhe Liuhe Liu-ho,Liuhe,liu he,柳河 33.31703 112.80076 P PPLA4 CN 09 0 185 Asia/Chongqing 2012-01-18
-1803124 Liuhe Liuhe Liu-ho,Liu-ho-chen,Liuhe,Liuhe Zhen,liu he,liu he zhen,浏河,浏河镇 31.50972 121.25528 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1803145 Liugu Liugu Liu-ku,Liu-ku-chen,Liugu,Liugu Zhen,liu gu,留古 34.74416 109.27771 P PPLA4 CN 26 0 435 Asia/Chongqing 2012-01-18
-1803157 Liufang Liufang Liufang,Liufang Xiang,liu fang,liu fang xiang,流芳,流芳乡 29.54166 116.26614 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-18
-1803159 Liuduzhai Liuduzhai Chai-shih,Hetian Xiang,Liu-tu-chai,Liuduzhai,Liuduzhai Zhen,Lung-hui,Lung-hui-hsien,Lunghwei,Sai-shih,he tian xiang,liu dou zhai,liu dou zhai zhen,六都寨,六都寨镇,荷田乡 27.36611 110.935 P PPLA4 CN 11 8970 311 Asia/Chongqing 2012-02-28
-1803167 Liudu Liudu Liu-tu,Liudu,liu dou,六都 23.06685 112.01951 P PPLA3 CN 30 0 8 Asia/Chongqing 2012-01-18
-1803193 Liucheng Liucheng Liucheng,Wen-chiang,Wen-chiang-hsien,Wenjiang,Wenkiang,Wenkiang-hsien,liu cheng,柳城 30.7 103.83771 P PPLA3 CN 32 0 542 Asia/Chongqing 2012-01-18
-1803214 Liuba Liuba Liu-pa,Liu-pa-hsien,Liu-pa-hsien-ch'eng,Liu-pa-hsien-ch’eng,Liuba,Lyuba,liu ba,留坝 33.61861 106.91889 P PPLA3 CN 26 0 988 Asia/Chongqing 2012-01-18
-1803216 Aozhong Aozhong Aozhong,Liu'ao Zhen,Liu’ao Zhen,ao zhong,liu ao zhen,六鳌镇,鳌中 23.93501 117.74771 P PPLA4 CN 07 0 11 Asia/Shanghai 2012-01-18
-1803217 Liu’anzhuang Liu'anzhuang 39.23389 117.19306 P PPL CN 28 4698 3 Asia/Shanghai 2000-11-21
-1803223 Litian Litian Litian,Litian Xiang,Litianjie,hai tian,hai tian xiang,浬田,浬田乡 27.21122 114.72949 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-18
-1803224 Litian Litian Li-t'ien,Li-t’ien,Litian,Litian Zhen,li tian,li tian zhen,澧田,澧田镇 27.01691 114.14013 P PPLA4 CN 03 0 133 Asia/Chongqing 2012-01-18
-1803225 Litian Litian Litian,li tian,里田 26.01517 116.69964 P PPLA4 CN 07 0 433 Asia/Shanghai 2012-01-18
-1803233 Lita Lita Li-t'a-hsu,Li-t’a-hsü,Lita,Lita Zhen,li ta,li ta zhen,里塔,里塔镇 27.3588 116.53552 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-18
-1803245 Lishui Lishui Ch'u-chou,Chuchow,Chuchowfu,Ch’u-chou,Li-shui-hsien,Lishui,Lishui Shi,chu zhou fu,li shui,li shui shi,li shui xian,丽水,丽水县,丽水市,处州府 28.46042 119.91029 P PPLA2 CN 02 98946 72 Asia/Shanghai 2012-01-18
-1803258 Lishi Lishi Li-shih,Lishi,Lishi Zhen,li shi,li shi zhen,犁市,犁市镇 24.89962 113.52975 P PPLA4 CN 30 0 47 Asia/Shanghai 2012-02-28
-1803266 Lintong Lintong Lin'tun,Lin-t'ung,Lin-t'ung-hsien,Lin-t’ung,Lin-t’ung-hsien,Lintong,Lin’tun,Lishan,lin tong,临潼 34.37803 109.20892 P PPLA3 CN 26 75882 425 Asia/Chongqing 2012-01-18
-1803267 Lishan Lishan Lishan,Lishan Zhen,Lishanchen,li shan,li shan zhen,厉山,厉山镇 31.85764 113.29505 P PPLA3 CN 12 0 85 Asia/Chongqing 2012-01-18
-1803277 Liren Liren Liren,Liren Zhen,li ren,li ren zhen,里仁,里仁镇 24.89896 114.87812 P PPLA4 CN 03 0 220 Asia/Shanghai 2012-01-18
-1803281 Liquan Chengguanzhen Liquan Chengguanzhen Chengguanzhen,Li-ch'uan,Li-ch'uan-hsien,Li-ch'uan-hsien-ch'eng,Li-ch’üan,Li-ch’üan-hsien,Li-ch’üan-hsien-ch’eng,Liquan Chengguanzhen,cheng guan zhen,li quan cheng guan zhen,城关镇,礼泉城关镇 34.48111 108.42361 P PPLA4 CN 26 0 560 Asia/Chongqing 2012-01-18
-1803298 Linzi Linzi Lin-tzu,Lin-tzu-chen,Linzi,Linzi Zhen,lin zi,lin zi zhen,林梓,林梓镇 32.3 120.75 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1803300 Liuzhou Liuzhou Linzhou,Liu-chiang,Liu-chou,Liu-chou-shih,Liuchow,Liuchowfu,Liuzhou,Ma-p'ing,Ma-p’ing,Mapinghsien,liu zhou,柳州 24.31258 109.38916 P PPLA2 CN 16 0 94 Asia/Chongqing 2012-01-18
-1803318 Linyi Linyi I-chou,Ichow,Ichowfu,Lan-shan,Lin'i,Lin-i,Lin-i-hsien,Lin-i-shih,Linyi,Liuyihsien,Yichow,lin yi,lin yi shi,Линьи,临沂,临沂市 35.06306 118.34278 P PPL CN 25 270669 69 Asia/Shanghai 2012-01-18
-1803326 Linquan Linquan Lin,Lin Xian,Lin'syan',Lin-hsien,Linquan,Linquan Zhen,Linxian,Lin’syan’,lin quan,lin quan zhen,lin xian,临县,临泉,临泉镇 37.97965 111.02059 P PPLA3 CN 24 0 1036 Asia/Chongqing 2012-01-18
-1803331 Linxia Linxia Ho-chou,Khechzhou,Lin'sja,Lin'sya,Lin-hsia,Lin-hsia-hsien,Lin-hsia-shih,Lin-hsin,Linsia,Linxia,Lin’sya,Линься 35.60028 103.20639 P PPL CN 15 202402 1893 Asia/Chongqing 2012-01-18
-1803334 Linxi Linxi Lin-hsi,Lin-hsi-chuang,Linsi,Linxi 39.7 118.43333 P PPL CN 10 100316 36 Asia/Harbin 2012-01-18
-1803335 Linxi Linxi Lin-ch'i,Lin-ch'i-chen,Lin-ch’i,Lin-ch’i-chen,Lin-hsi,Linxi,Linxi Zhen,lin xi,lin xi zhen,临溪,临溪镇 29.99139 118.53528 P PPLA4 CN 01 0 136 Asia/Shanghai 2012-01-18
-1803340 Linwu Chengguanzhen Linwu Chengguanzhen Lin-wu-hsien,Linwu,Linwu Chengguanzhen,lin wu,lin wu cheng guan zhen,临武,临武城关镇 25.23247 112.53981 P PPLA3 CN 11 0 341 Asia/Chongqing 2012-01-18
-1803346 Lintingkou Lintingkou Lin-t'ing,Lin-t'ing-chen,Lin-t’ing,Lin-t’ing-chen,Lintingkou 39.63028 117.50028 P PPL CN CN 28 3521 255 Asia/Shanghai 2012-01-18
-1803352 Linshui Linshui 36.42472 114.20472 P PPL CN 10 109955 138 Asia/Shanghai 2006-01-17
-1803354 Linshe Linshe Linshe,lin she,林畲 26.3184 117.07119 P PPLA4 CN 07 0 483 Asia/Shanghai 2012-01-18
-1803355 Linshanhe Linshanhe Lin-shan-ho,Lin-shan-ho-chieh,Linshanhe,Linshanhe Zhen,Linshano,lin shan he,lin shan he zhen,淋山河,淋山河镇 30.74267 114.88409 P PPLA4 CN 12 0 29 Asia/Shanghai 2012-01-18
-1803356 Linshan Linshan Lin-shan-wei,Lin-shan-wei-ch'eng,Lin-shan-wei-ch’eng,Linshan,Linshan Zhen,lin shan,lin shan zhen,临山,临山镇 30.15395 120.99182 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1803362 Linquan Chengguanzhen Linquan Chengguanzhen Lin-ch'uan,Lin-ch'uan-hsien,Lin-ch’üan,Lin-ch’üan-hsien,Linquan,Linquan Chengguanzhen,Shen-ch'iu,Shen-ch'iu-chi,Shen-ch’iu,Shen-ch’iu-chi,lin quan cheng guan zhen,临泉城关镇 33.08506 115.29023 P PPLA3 CN 01 0 34 Asia/Shanghai 2012-01-18
-1803364 Linqu Linqu Lin-ch'u,Lin-ch'u-hsien,Lin-ch’ü,Lin-ch’ü-hsien,Linqu 36.51556 118.53972 P PPL CN 25 77472 97 Asia/Shanghai 2012-01-18
-1803365 Linqiong Linqiong Ch'iung-lai,Chiung-lai-hsien,Chiungchou,Ch’iung-lai,Kiungchow,Kiunglaihsien,Kung-lai,Linqiong,Qionglai,Tsyunlay,lin qiong,临邛 30.41587 103.46088 P PPLS CN 32 55587 511 Asia/Chongqing 2012-01-18
-1803367 Linqing Linqing Lin-ch'ing,Lin-ch'ing-hsien,Lin-ch'ing-shih,Lin-ch’ing,Lin-ch’ing-hsien,Lin-ch’ing-shih,Linqing,Lintsing,Lintsingchow 36.84556 115.71167 P PPL CN 25 110046 36 Asia/Shanghai 2012-01-18
-1803372 Linpu Linpu Lin-p'u-chen,Lin-p’u-chen,Linpu,Linpu Zhen,lin pu,lin pu zhen,临浦,临浦镇 30.04406 120.24493 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-18
-1803373 Linping Linping Lin-p'ing-chen,Lin-p’ing-chen,Linping,Linping Zhen,Linpingzhen,lin ping,lin ping zhen,临平,临平镇 34.46444 108.09667 P PPLA4 CN 26 0 605 Asia/Chongqing 2012-01-18
-1803374 Linping Linping Lin-p'ing-chen,Lin-p’ing-chen,Linping,Linpingzhen,Yu-hang Hsien,Yuhang,Yü-hang Hsien,lin ping,lin ping zhen,临平,临平镇 30.4225 120.29722 P PPL CN 02 78180 15 Asia/Shanghai 2012-01-18
-1803382 Linli Linli Anfu,Anfu Zhen,Lin-li-hsien,Linli,Linli Xian,an fu,an fu zhen,lin li,lin li xian,临澧,临澧县,安福,安福镇 29.45 111.65 P PPLA3 CN 11 0 50 Asia/Chongqing 2012-01-18
-1803383 Linkuang Linkuang Linkuang,Linkuang Zhen,lin kuang,lin kuang zhen,磷矿,磷矿镇 31.29543 112.41875 P PPLA4 CN 12 0 74 Asia/Chongqing 2012-01-18
-1803387 Linkou Linkou 26.24806 109.86361 P PPL CN 11 2270 396 Asia/Chongqing 2004-05-21
-1803396 Linjiang Linjiang Lin-chiang,Linjiang,lin jiang,临江 33.06218 104.92142 P PPLA4 CN 15 0 819 Asia/Chongqing 2012-01-18
-1803400 Linjiang Linjiang Lin-chiang,Lin-chiang-chieh,Linjiang,Linjiang Zhen,Linkiangkai,lin jiang,lin jiang zhen,临江,临江镇 27.82409 118.45546 P PPLA4 CN 07 0 222 Asia/Shanghai 2012-01-18
-1803422 Linhai Linhai Lin-hai-hsien,Linhai,T'ai-chou,Taichow,Taichowfu,Taizhou,T’ai-chou 28.85 121.11667 P PPL CN 02 152937 19 Asia/Shanghai 2012-01-18
-1803438 Xiayang Xiayang Ling,Ling-chen,Ling-hsien,Lingxian,Ninghsien,Xiayang,xia yang,霞阳 26.48136 113.79803 P PPLA3 CN 11 0 217 Asia/Chongqing 2012-01-18
-1803444 Lingxi Lingxi Ling-ch'i-chen,Ling-ch’i-chen,Ling-hsi,Lingxi,Yongshun,Yung-shun,Yung-shun-hsien,Yungshunfu,ling xi,灵溪 29.005 109.84472 P PPLA3 CN 11 0 251 Asia/Chongqing 2012-01-18
-1803451 Lingui Lingui Baziyan,Ertang,Lin-kuei,Lingui,lin gui,临桂 25.245 110.20444 P PPLA3 CN 16 0 163 Asia/Chongqing 2012-01-18
-1803468 Cuifeng Cuifeng Cuifeng,Cuifeng Zhen,Ling-shih,Ling-shih-hsien,Ling-shih-hsien-ch'eng,Ling-shih-hsien-ch’eng,Lingshi,Lingshi Xian,Linshi,cui feng,cui feng zhen,ling shi xian,灵石县,翠峰,翠峰镇 36.84517 111.78172 P PPLA3 CN 24 0 811 Asia/Chongqing 2012-01-18
-1803481 Lingshan Lingshan Lingshan,Lingshan Zhen,ling shan,ling shan zhen,灵山,灵山镇 19.96917 110.42811 P PPLA4 CN 31 0 15 Asia/Chongqing 2012-01-18
-1803486 Wuling Wuling Ling-ch'iu,Ling-ch'iu-hsien,Ling-ch’iu,Ling-ch’iu-hsien,Lingkiuhsien,Lingqiu,Lingqiu Xian,Wuling,Wuling Zhen,ling qiu xian,wu ling,wu ling zhen,武灵,武灵镇,灵丘县 39.46799 114.14842 P PPLA3 CN 24 0 1018 Asia/Shanghai 2012-01-18
-1803488 Lingqiao Lingqiao Ling-ch'iao,Ling-ch’iao,Lingqiao,Lingqiao Zhen,ling qiao,ling qiao zhen,灵桥,灵桥镇 30.03032 120.02928 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1803489 Lingqian Lingqian Ling-ch'ien,Ling-ch'ien-chen,Ling-ch’ien,Ling-ch’ien-chen,Lingqian,Lingqian Zhen,ling qian,ling qian zhen,陵前,陵前镇 34.76056 108.98389 P PPLA4 CN 26 0 555 Asia/Chongqing 2012-01-18
-1803499 Lingkou Lingkou Lingkou,Lingkou Zhen,ling kou,零口 34.47749 109.36098 P PPLA4 CN 26 0 392 Asia/Chongqing 2012-01-18
-1803514 Lingjiang Lingjiang Cangxi,Lingjiang,Ts'ang-ch'i-hsien,Ts'ang-hsi,Tsangki-hsien,Ts’ang-ch’i-hsien,Ts’ang-hsi,ling jiang,陵江 31.7346 105.93162 P PPLA3 CN 32 0 389 Asia/Chongqing 2012-01-18
-1803520 Linghu Linghu Ling-hu-chen,Linghu,Linghu Zhen,Wu-hsing,Wu-hsing-hsien,ling hu,ling hu zhen,菱湖,菱湖镇 30.71752 120.17311 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1803534 Lingdian Lingdian Ling-tien,Ling-tien-chen,Lingdian,Lingdian Zhen,Lingdianzhen,Linjiang,Linjiang Zhen,lin jiang,lin jiang zhen,ling dian,ling dian zhen,临江,临江镇,灵甸,灵甸镇 31.86668 121.42024 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1803539 Lingdi Lingdi Ling-ti,Lingdi,Lingdi Xiang,ling di,ling di xiang,岭底,岭底乡 28.20626 118.29888 P PPLA4 CN 03 0 249 Asia/Shanghai 2012-01-18
-1803540 Lingdi Lingdi Ling-ti,Lingdi,Lingdi Zhen,ling de,ling de zhen,灵地,灵地镇 25.8692 116.81269 P PPLA4 CN 07 0 355 Asia/Shanghai 2012-01-18
-1803546 Chongwen Chongwen Chongwen,Chongwen Zhen,L'ing-ch'uan-hsien,Lin-chuan,Lingchuan,Lingchuan Xian,L’ing-ch’uan-hsien,chong wen,chong wen zhen,ling chuan xian,崇文,崇文镇,陵川县 35.77491 113.25079 P PPLA3 CN 24 0 1184 Asia/Shanghai 2012-01-18
-1803550 Lingcheng Lingcheng Ling-ch'eng-chen,Ling-ch’eng-chen,Ling-pi,Ling-pi-hsien,Lingbi,Lingcheng,ling cheng,灵城 33.53766 117.53357 P PPLA3 CN 01 0 24 Asia/Shanghai 2012-01-18
-1803551 Lingcheng Lingcheng Beiliu,Lingcheng,Paklow,Paklow-hsien,Pei-liu,Pei-liu-hsien,Pie-liu 22.70722 110.34917 P PPL CN 16 54848 102 Asia/Chongqing 2012-01-18
-1803552 Lingcheng Lingcheng Ling-shan-hsien,Lingcheng,Lingshan,ling cheng,灵城 22.44421 109.29463 P PPLA3 CN 16 0 88 Asia/Chongqing 2012-01-18
-1803554 Lingbei Lingbei Lingbei,Lingbei Zhen,ling bei,ling bei zhen,岭背,岭背镇 26.05104 115.46689 P PPLA4 CN 03 0 126 Asia/Shanghai 2012-01-18
-1803555 Lingbei Lingbei Ling-pei,Lingbei,Lingbei Zhen,ling bei,ling bei zhen,岭背,岭背镇 24.61344 112.70231 P PPLA4 CN 30 0 75 Asia/Chongqing 2012-01-18
-1803560 Lincheng Lincheng Hsien-ch'eng-chen,Hsien-ch’eng-chen,Limkao-hsien,Limko,Limkohsien,Limkou,Limkow,Lin'chehn,Lin-kae,Lin-kao,Lin-kao-chen,Lin-kao-hsien,Lincheng,Lincheng Zhen,Lingao,Lingao Xian,Lunkao,lin cheng,lin cheng zhen,lin gao xian,Линьчэн,临城,临城镇,临高县 19.90778 109.68583 P PPLA3 CN 31 64874 29 Asia/Chongqing 2012-01-18
-1803561 Lingang Lingang Lin-Kang,Lin-chiang,Lingang,Lingang Zhen,lin gang,lin gang zhen,临港,临港镇 29.02889 117.30837 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-18
-1803567 Linfen Linfen Lin'fyn',Lin-fen-hsien,Linfen,Linfen Shi,Ping-yang,Ping-yang-fu,Saratsi,Yaodu Qu,lin fen,lin fen shi,ping yang,ping yang fu,yao dou qu,Линьфынь,临汾,临汾市,尧都区,平阳,平阳府,臨汾 36.08889 111.51889 P PPL CN 24 232566 451 Asia/Chongqing 2012-01-18
-1803572 Lindian Lindian Lin-chia-tien,Lin-tien,Lindian,Lindian Zhen,lin dian,蔺店 34.72175 109.60214 P PPLA4 CN 26 0 352 Asia/Chongqing 2012-01-18
-1803574 Linjiadai Linjiadai Lin-chia-tai-chen,Lin-tai,Lindai,Lindai Zhen,Linjiadai,lin dai zhen,lin jia dai,林埭镇,林家埭 30.65469 121.09814 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1803583 Lincheng Lincheng Lincheng,lin cheng,林城 30.93374 119.78682 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1803584 Lincheng Lincheng Hui-t'ung,Hui-t'ung-hsien,Hui-t’ung,Hui-t’ung-hsien,Huitong,Hweitung,Hweitung-hsien,Khoytun,Lincheng,lin cheng,林城 26.86932 109.66336 P PPLA3 CN 11 0 263 Asia/Chongqing 2012-01-18
-1803594 Lin’an Lin'an Lin'an,Lin'an Shi,Lin-an-hsien,Lin-an-hsien-ch'eng,Lin-an-hsien-ch’eng,Lin’an,Lin’an Shi,lin an,lin an shi,临安,临安市 30.23583 119.71806 P PPLA3 CN 02 0 51 Asia/Shanghai 2012-01-18
-1803608 Limin Limin Li-min-pao,Limin,Limin Zhen,li min,li min zhen,利民,利民镇 39.30777 112.12035 P PPLA4 CN 24 0 1688 Asia/Chongqing 2012-01-18
-1803616 Liling Liling Li-ling-ch'eng,Li-ling-ch’eng,Li-ling-hsien,Lilin,Liling,li ling,Лилин,醴陵 27.66667 113.5 P PPL CN 11 98162 69 Asia/Chongqing 2012-01-18
-1803618 Lili Lili Fenhu Zhen,Li-li-chen,Lili,Lili Jiedao,fen hu zhen,li li,li li jie dao,汾湖镇,黎里,黎里街道 30.99409 120.70686 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1803625 Likou Likou Likou,Likou Zhen,li kou,li kou zhen,历口,历口镇 29.90091 117.50782 P PPLA4 CN 01 0 123 Asia/Shanghai 2012-01-18
-1803644 Lijiaxiang Lijiaxiang Li-chia-hsiang,Lijiaxiang,li jia xiang,李家巷 30.95083 119.97583 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-18
-1803668 Lijiang Lijiang Li-chiang,Lijiang,Lijiang Xiang,li jiang,li jiang xiang,溧江,溧江乡 27.83812 115.46571 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-18
-1803670 Lijiang Lijiang Hsiao-yen,Lijiang,Yuan-chiang,Yuan-chiang-hsien,Yuanjiang,Yuankiang,Yuankiang-hsien,Yüan-chiang,Yüan-chiang-hsien,Yüankiang,Yüankiang-hsien,li jiang,澧江 23.5711 102.00417 P PPLA3 CN 29 0 408 Asia/Chongqing 2012-01-18
-1803679 Lijiahe Lijiahe Li-chia-ho,Lijiahe,Lijiahe Xiang,li jia he,li jia he xiang,李家河,李家河乡 29.58912 109.45659 P PPLA4 CN 12 0 532 Asia/Chongqing 2012-01-18
-1803697 Liji Liji Hsiao-li,Hsiao-li-chi,Li-chi,Liji,Liji Xiang,Xiaoliji,li ji,li ji xiang,李集,李集乡 34.105 119.25278 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1803702 Liji Liji Li-chi,Liji,Liji Zhen,li ji,li ji zhen,李集,李集镇 30.87247 114.66577 P PPLA4 CN 12 0 29 Asia/Shanghai 2012-01-18
-1803710 Liheng Liheng Li-heng-chi,Li-heng-chuang,Liheng,Liheng Zhen,Lihengzhuang,li heng,li heng zhen,李恒,李恒镇 34.13333 119.05 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1803711 Lihen Lihen Li'an Xiang,Li-an,Lihen,Li’an Xiang,li an xiang,li hen,利安乡,黎痕 29.75416 116.99224 P PPLA4 CN 01 0 96 Asia/Shanghai 2012-01-18
-1803720 Lihai Lihai Li-hai-so,Li-hai-so-ch'eng,Li-hai-so-ch’eng,Lihai,Lihai Zhen,li hai,li hai zhen,沥海,沥海镇 30.12006 120.75802 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1803726 Ligonggang Ligonggang Ligonggang,Ligonggang Zhen,li gong gang,li gong gang zhen,理公港,理公港镇 29.09496 111.20149 P PPLA4 CN 11 0 73 Asia/Shanghai 2012-01-18
-1803737 Ligang Ligang Li-chiang,Li-kang,Li-kang-chen,Ligang,li gang,利港 31.92472 120.07861 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1803740 Lifuta Lifuta Lifuta,Lifuta Zhen,li fu ta,li fu ta zhen,利福塔,利福塔镇 29.34376 110.07452 P PPLA4 CN 11 0 354 Asia/Chongqing 2012-01-18
-1803748 Lieqiao Lieqiao Lieh-ch'iao,Lieh-ch’iao,Lieqiao,Lieqiao Xiang,lie qiao,lie qiao xiang,烈桥,烈桥乡 28.56377 117.52232 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-18
-1803751 Liebu Liebu Liebu,Liebu Xiang,Lieh-pao,lie bao,lie bao xiang,烈堡,烈堡乡 39.32561 111.95594 P PPLA4 CN 24 0 1683 Asia/Chongqing 2012-01-18
-1803757 Lidian Lidian Lidian,li dian,李店 35.22682 105.68755 P PPLA4 CN 15 0 1448 Asia/Chongqing 2012-01-18
-1803760 Lidian Lidian Li-chia-tien,Lidian,Lidian Zhen,li dian,li dian zhen,李店,李店镇 31.21604 113.75786 P PPLA4 CN 12 0 60 Asia/Chongqing 2012-01-18
-1803772 Licun Licun Li-ts'un,Li-ts’un,Licun,Licun Zhen,li cun,li cun zhen,里村,里村镇 35.76072 111.45475 P PPLA4 CN 24 0 485 Asia/Chongqing 2012-01-18
-1803775 Licun Licun Li-ts'un,Li-ts’un,Licun,Licun Xiang,li cun,li cun xiang,利村,利村乡 25.84706 115.39274 P PPLA4 CN 03 0 142 Asia/Shanghai 2012-01-18
-1803782 Lichuan Lichuan Li-ch'uan-hsien,Li-ch’uan-hsien,Lichuan,Lichuan',Lichwan-hsien,Личуань 30.3 108.85 P PPL CN 12 72653 1255 Asia/Chongqing 2012-01-18
-1803787 Lihou Lihou Li-ch'eng-hsien,Li-ch’eng-hsien,Lichen,Licheng,Licheng Xian,Lihou,Lihou Zhen,li cheng xian,li hou,li hou zhen,黎侯,黎侯镇,黎城县 36.50289 113.36945 P PPLA3 CN 24 0 747 Asia/Shanghai 2012-01-18
-1803790 Licheng Licheng Laipo,Laipo-hsien,Li-ch'eng-chen,Li-ch’eng-chen,Li-p'u-hsien,Li-p’u-hsien,Licheng,Lipu,li cheng,荔城 24.50649 110.38919 P PPLA3 CN 16 0 170 Asia/Chongqing 2012-01-18
-1803791 Licheng Licheng Licheng,Tseng-ch'eng,Tseng-ch'eng-hsien,Tseng-ch’eng,Tseng-ch’eng-hsien,Tsengching,Tsengshing,Zengcheng,ceng cheng,li cheng,曾城,荔城 23.29554 113.82836 P PPLA3 CN 30 172775 13 Asia/Chongqing 2012-01-18
-1803799 Libu Libu Li-pu,Libu,Libu Zhen,li bu,li bu zhen,黎埠,黎埠镇 24.56715 112.42058 P PPLA4 CN 30 0 111 Asia/Chongqing 2012-01-18
-1803804 Libei Libei Feng-p'o-ch'iao,Feng-p’o-ch’iao,Li-pei,Libei,Libei Zhen,li bei,li bei zhen,礼陂,礼陂镇 27.64601 116.13293 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-18
-1803807 Libao Libao Li-pao,Li-pao-chen,Libao,Libao Zhen,Lipu,li bao,li bao zhen,李堡,李堡镇 32.56306 120.68389 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1803824 Miaojia Miaojia Liaojiacun,Liaojiacun Zhen,Miaojia,liao jia cun zhen,miao zhai,廖家村镇,苗寨 29.39018 109.99503 P PPLA4 CN 11 0 330 Asia/Chongqing 2012-01-18
-1803834 Liaocheng Liaocheng Liao-ch'eng-hsien,Liao-ch'eng-shih,Liao-ch’eng-hsien,Liao-ch’eng-shih,Liaocheng,Tung-ch'ang,Tung-ch’ang,Tungchangfu,liao cheng,liao cheng shi,聊城,聊城市 36.44389 115.96472 P PPL CN 25 226930 39 Asia/Shanghai 2012-01-18
-1803836 Liaobu Liaobu Liao-pu,Liaobu,Liaobu Zhen,liao bu,寮步 22.99312 113.88068 P PPLA4 CN 30 0 9 Asia/Chongqing 2012-01-18
-1803841 Lianzhou Lianzhou Lianxian,Lianzhou,Lien,Lien-chou,Lien-chou-chen,Lien-chou-ko-tsu-tzu-chih-hsien,Lien-hsien,Lien-yang,Linchow,Linhsien,lian zhou,连州 24.78111 112.3825 P PPLA3 CN 30 92827 113 Asia/Chongqing 2012-01-18
-1803842 Lianzhou Lianzhou Hepu,Ho-p'u,Ho-p'u-hsien,Ho-p’u,Ho-p’u-hsien,Hoppo,Hoppohsien,Lianzhou,Lien-chou,Lien-chou-chen,Limchow,Limchowfu,Linchow,lian zhou,廉州 21.6682 109.16946 P PPLA3 CN 16 71423 4 Asia/Chongqing 2012-01-18
-1803848 Lianyun Lianyun Lao-yao,Lianyun,Lianyun Jiedao,Lianyungang,Lianyungang Shi,Lien-yun,Lien-yun-chiang,Lien-yun-kang,Lien-yun-shih,Lien-yün,Lien-yün-chiang,Lien-yün-kang,Lien-yün-shih,lian yun,lian yun gang,lian yun jie dao,连云,连云港,连云街道 34.73194 119.4425 P PPLA4 CN 04 0 238 Asia/Shanghai 2012-01-18
-1803861 Liantang Liantang Chang-lien-t'ang,Chang-lien-t'ang-chen,Chang-lien-t’ang,Chang-lien-t’ang-chen,Liantang,Lien-t'ang,Lien-t’ang,Tung-lien-t'ang-chen,Tung-lien-t’ang-chen,lian tang,练塘 31.01167 121.04606 P PPLA4 CN 23 0 4 Asia/Shanghai 2012-01-18
-1803879 Lianshi Lianshi Lianshi,Lianshi Zhen,Lien-shih,Lien-shih-chen,lian shi,lian shi zhen,练市,练市镇 30.70846 120.41672 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1803886 Lianran Lianran Anning,Anning Shi,Anning-chow,Lianran,Lianran Zhen,an ning,an ning shi,lian ran,lian ran zhen,安宁,安宁市,连然,连然镇 24.92271 102.48496 P PPLA3 CN 29 106795 1836 Asia/Chongqing 2012-01-18
-1803897 Lianjiangkou Lianjiangkou Lianjiangkou,Lianjiangkou Zhen,Lien Chang Kou,Lien-chiang-k'ou,Lien-chiang-k'ou-hsu,Lien-chiang-k’ou,Lien-chiang-k’ou-hsü,lian jiang kou,lian jiang kou zhen,连江口,连江口镇 24.03278 113.30387 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-18
-1803906 Lianhuasi Lianhuasi Lianhuasi,Lianhuasi Zhen,Lianhuasizhan,Lien-hua-ssu,Lien-hua-ssu-chan,lian hua si,莲花寺 34.52458 109.84086 P PPLA4 CN 26 0 374 Asia/Chongqing 2012-01-18
-1803924 Lianhu Lianhu Lianhu,Lianhu Xiang,lian hu,lian hu xiang,莲湖,莲湖乡 28.99549 116.54199 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-18
-1803927 Lianhe Lianhe Lianhe,lian he,莲河 24.57298 118.34171 P PPL CN 07 2130 -9999 Asia/Shanghai 2012-01-18
-1803935 Liangzhu Liangzhu Liang-chu,Liang-chu-chen,Liangzhu,Liangzhu Zhen,liang zhu,liang zhu zhen,良渚,良渚镇 30.3793 120.04704 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1803944 Liangyaping Liangyaping 27.71833 110.67083 P PPL CN 11 1240 284 Asia/Chongqing 2004-06-29
-1803948 Liangxiang Liangxiang Liang-hsiang,Liang-hsiang-chen,Liang-hsiang-hsien,Liangsiang,Liangxiang,Liangxiangzhen,Lyansyan 39.73194 116.14 P PPL CN 22 76744 45 Asia/Shanghai 2012-01-18
-1803954 Liangwa Liangwa Liang-wu,Liangwa,Liangwa Zhen,liang wa,liang wa zhen,梁洼,梁洼镇 33.84586 112.92522 P PPLA4 CN 09 0 199 Asia/Chongqing 2012-01-18
-1803961 Liangting Liangting Liang-t'ing-chen,Liang-t'ing-ssu,Liang-t’ing-chen,Liang-t’ing-ssu,Liangting,Liangting Zhen,Yu-t'ing,Yu-t'ing-chen,Yu-t'ing-ssu,Yü-t’ing,Yü-t’ing-chen,Yü-t’ing-ssu,liang ting,liang ting zhen,两亭,两亭镇 34.7887 107.48972 P PPLA4 CN 26 0 1308 Asia/Chongqing 2012-01-18
-1803974 Liangshuikou Liangshuikou Liangshuikou,Liangshuikou Zhen,liang shui kou,liang shui kou zhen,凉水口,凉水口镇 29.54139 110.09639 P PPLA4 CN 11 0 359 Asia/Chongqing 2012-01-18
-1803979 Liangshui Liangshui Liangshui,Liangshui Zhen,liang shui,liang shui zhen,两水,两水镇 33.43177 104.80909 P PPLA4 CN 15 0 1054 Asia/Chongqing 2012-01-18
-1803987 Liangshan Liangshan Liangshan,Liangshan Zhen,liang shan,liang shan zhen,良山,良山镇 27.6724 114.90613 P PPLA4 CN 03 0 86 Asia/Shanghai 2012-01-18
-1803995 Liangnong Liangnong Liang-lung,Liang-t'ung,Liang-t'ung-chen,Liang-t’ung,Liang-t’ung-chen,Liangnong,Liangnong Zhen,liang nong,liang nong zhen,梁弄,梁弄镇 29.91278 121.07465 P PPLA4 CN 02 0 31 Asia/Shanghai 2012-01-18
-1804006 Liangkou Liangkou Leungkowhu,Leungkowhü,Liang-k'ou-hsu,Liang-k’ou-hsü,Liangkou,Liangkou Zhen,liang kou,良口 23.71995 113.72807 P PPLA4 CN 30 0 73 Asia/Chongqing 2012-01-18
-1804009 Xincheng Xincheng Liang-chia-yu-fang,Liangjiayoufang,Xincheng,Xincheng Zhen,Youyu Xian,Yu-yu,Yu-yü,xin cheng,xin cheng zhen,you yu xian,右玉县,新城,新城镇 39.98677 112.46135 P PPLA3 CN 24 0 1340 Asia/Shanghai 2012-01-18
-1804041 Lianghekou Lianghekou Hsia-liang-ho-k'ou,Hsia-liang-ho-k’ou,Liang-ho-k'ou,Liang-ho-k’ou,Lianghekou,Lianghekou Zhen,liang he kou,liang he kou zhen,两河口,两河口镇 33.35 106.35 P PPLA4 CN 26 0 885 Asia/Chongqing 2012-01-18
-1804071 Liangfang Liangfang Liangfang,Liangfang Zhen,liang fang,liang fang zhen,良坊,良坊镇 27.21319 114.03889 P PPLA4 CN 03 0 246 Asia/Chongqing 2012-01-18
-1804073 Liangduo Liangduo Liang-to,Liang-to-chen,Liangduo,Liangduo Zhen,liang duo,liang duo zhen,梁垛,梁垛镇 32.77635 120.36373 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1804081 Liangdang Chengguanzhen Liangdang Chengguanzhen Chengguanzhen,Liang-tang,Liang-tang-hsien,Liangdang,Liangdang Chengguanzhen,Liangdang Xian,Lyandan,liang dang,liang dang cheng guan zhen,liang dang xian,两当,两当县,两当城关镇 33.90972 106.30222 P PPLA3 CN 15 0 965 Asia/Chongqing 2012-01-18
-1804088 Liangcunchang Liangcunchang Liang-ts'un,Liang-ts’un,Liangcun,Liangcunchang 28.40667 106.42444 P PPL CN CN 18 1671 1070 Asia/Chongqing 2012-01-18
-1804089 Liangcun Liangcun Liang-ts'un,Liang-ts’un,Liangcun,Liangcun Zhen,liang cun,liang cun zhen,良村,良村镇 26.55904 115.57606 P PPLA4 CN 03 0 224 Asia/Shanghai 2012-01-18
-1804106 Lianfeng Lianfeng Liancheng,Lianfeng,Lien-ch'eng,Lien-ch'eng-hsien,Lien-ch’eng,Lien-ch’eng-hsien,lian feng,莲峰 25.70441 116.72162 P PPLA3 CN 07 0 397 Asia/Shanghai 2012-01-18
-1804111 Liancun Liancun Liancun,lian cun,廉村 33.61102 113.47426 P PPLA4 CN 09 0 79 Asia/Chongqing 2012-01-18
-1804119 Liancheng Liancheng Guangnan,Kuang-nan,Kuang-nan-hsien,Kwangnan,Kwangnan-hsien,Kwangnanfu,Liancheng,Pao-ning,lian cheng,莲城 24.05192 105.07497 P PPLA3 CN 29 0 1245 Asia/Chongqing 2012-01-18
-1804120 Lianjiang Lianjiang Lei-pei,Liancheng,Lianjiang,Lien-chiang,Lien-chiang-hsien,Limkong,Limkong-hsien,Lunkong,Shih-ch'eng,Shih-ch’eng,lian jiang,廉江 21.64673 110.28172 P PPL CN 30 100341 46 Asia/Chongqing 2012-01-18
-1804121 Liancai Liancai Liancai,Liancaipu,Liancaizhen,Lien-ts'ai-p'u,Lien-ts’ai-p’u,lian cai,联财 35.55976 105.85965 P PPLA4 CN 21 0 1763 Asia/Chongqing 2012-01-18
-1804144 Letianxi Letianxi Le-t'ien-hsi,Le-t’ien-hsi,Letianxi,Letianxi Zhen,le tian xi,le tian xi zhen,乐天溪,乐天溪镇 30.86975 111.07155 P PPLA4 CN 12 0 102 Asia/Chongqing 2012-01-18
-1804147 Lesuhe Lesuhe Le-su-ho,Le-su-ho-k'ou,Le-su-ho-k’ou,Lesuhe,Lesuhe Zhen,Lo-su-ho,Lo-su-ho-k'ou,Lo-su-ho-k’ou,le su he,le su he zhen,乐素河,乐素河镇 33.20327 106.03624 P PPLA4 CN 26 0 914 Asia/Chongqing 2012-01-18
-1804153 Leshan Leshan Chia-ting,Kiating,Kiatingfu,Lehshan',Leshan,Lo-shan,Lo-shan-hsien,le shan,Лэшань,乐山 29.56228 103.76386 P PPL CN 32 154477 375 Asia/Chongqing 2012-01-18
-1804156 Leping Leping Leping,Leping Shi,Leping Zhen,Lo-p'ing-chen,Lo-p'ing-hsien,Lo-p’ing-chen,Lo-p’ing-hsien,le ping,le ping shi,le ping zhen,乐平,乐平市,乐平镇 28.96667 117.11667 P PPLA3 CN 03 0 23 Asia/Shanghai 2012-01-18
-1804162 Lengshuitan Lengshuitan Leng-shui-t'an-shih,Leng-shui-t'ang,Leng-shui-t’an-shih,Leng-shui-t’ang,Lengshuitan,Lengshuitanqu,leng shui tan,冷水滩 26.4111 111.59559 P PPL CN 11 88935 101 Asia/Chongqing 2012-01-18
-1804163 Lengshui Lengshui Leng-shui-chi,Lengshui,Lengshui Zhen,Lengshuipu,Lunsuipu,leng shui,leng shui zhen,冷水,冷水镇 31.11214 112.43476 P PPLA4 CN 12 0 67 Asia/Chongqing 2012-01-18
-1804169 Lengshuijiang Lengshuijiang Leng-chiang,Leng-chiang-shih,Leng-shui-chen,Leng-shui-chiang,Leng-shui-chiang-shih,Lengshuijiang,leng shui jiang,leng shui jiang shi,冷水江,冷水江市 27.68806 111.42944 P PPL CN 11 115399 194 Asia/Chongqing 2012-01-18
-1804198 Leli Leli Leli,Lo-li,Lo-li-chen,Lo-li-chieh,Lo-li-fou,Lo-li-hsu,Lo-li-hsü,T'ien-lin,Tianlin,T’ien-lin,le li,乐里 24.35406 106.2437 P PPLA3 CN 16 0 583 Asia/Chongqing 2012-01-18
-1804208 Leiyang Leiyang Lei-yang-hsien,Leiyang,lei yang,耒阳 26.40238 112.85908 P PPLA3 CN 11 129116 69 Asia/Chongqing 2012-01-18
-1804234 Leigong Leigong Lei-kung-tien,Leigong,Leigong Zhen,Leigongdian,lei gong,lei gong zhen,雷公,雷公镇 31.29355 113.51111 P PPLA4 CN 12 0 116 Asia/Chongqing 2012-01-18
-1804237 Leidian Leidian Leidian,Leidian Zhen,lei dian,lei dian zhen,雷甸,雷甸镇 30.52241 120.14052 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1804252 Lecheng Lecheng Lechang,Lecheng,Lo-ch'ang,Lo-ch'ang-hsien,Lo-ch’ang,Lo-ch’ang-hsien,Loh Ch'ang,Loh Ch’ang,Lohchong-hsien,Lokcheon,Lokchong,le cheng,乐城 25.12383 113.32542 P PPL CN 30 124268 108 Asia/Chongqing 2012-01-18
-1804264 Lazi Lazi Lazi,Lazikou,la zi,la zi kou,腊子,腊子口 34.06634 103.89402 P PPLA4 CN 15 0 1949 Asia/Chongqing 2012-01-18
-1804271 Lasengmiao Lasengmiao Lasengmiao,Lasengmiao Zhen,la seng miao,la seng miao zhen,拉僧庙,拉僧庙镇 39.32306 106.83556 P PPLA4 CN 20 0 1135 Asia/Chongqing 2012-01-18
-1804279 Laozhuang Laozhuang Laozhuang,Laozhuang Zhen,Shan-sun-lao-chuang,lao zhuang,lao zhuang zhen,老庄,老庄镇 33.13652 112.2795 P PPLA4 CN 09 0 210 Asia/Chongqing 2012-01-18
-1804295 Laoyingpan Laoyingpan Laoyingpan,Laoyingpan Zhen,lao ying pan,lao ying pan zhen,老营盘,老营盘镇 26.55917 115.21639 P PPLA4 CN 03 0 224 Asia/Shanghai 2012-01-18
-1804305 Laoxin Laoxin Lao-hsin-k'ou,Lao-hsin-k’ou,Laoxin,Laoxinkou,lao xin,lao xin zhen,老新,老新镇 30.19048 112.85132 P PPLA4 CN 12 0 30 Asia/Chongqing 2012-01-18
-1804344 Laoqiao Laoqiao Laoqiao,Laoqiao Zhen,lao qiao,lao qiao zhen,醪桥,醪桥镇 27.30231 115.14208 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-18
-1804359 Laolong Laolong Lao-lung,Lao-lung-chen,Lao-lung-ssu,Laolong,Longchuan,Lung-ch'uan,Lung-ch'uan-hsien,Lung-ch’uan,Lung-ch’uan-hsien,lao long,老隆 24.10727 115.23688 P PPLA3 CN 30 0 90 Asia/Shanghai 2012-01-18
-1804386 Laohekou Laohekou Guanghua,Ho-k'ou-chen,Ho-k’ou-chen,Kuang-hua,Lao-ho-k'ou,Lao-ho-k’ou,Laohekou,Laohokow 32.38583 111.66778 P PPL CN 12 253112 93 Asia/Chongqing 2012-01-18
-1804401 Laogang Laogang Lao-chiang,Lao-chiang-chen,Lao-kang,Lao-kang-chen,Laogang,lao gang,老港 31.02917 121.84306 P PPLA4 CN 23 0 5 Asia/Shanghai 2012-01-18
-1804405 Laodian Laodian Lao-tien,Laodian,Laodian Zhen,lao dian,lao dian zhen,涝店,涝店镇 34.1714 108.56418 P PPLA4 CN 26 0 408 Asia/Chongqing 2012-01-18
-1804407 Laodaosi Laodaosi Lao-tao-shih,Lao-tao-ssu,Laodaosi,Laodaosi Zhen,lao dao si,lao dao si zhen,老道寺,老道寺镇 33.1685 106.88428 P PPLA4 CN 26 0 534 Asia/Chongqing 2012-01-18
-1804417 Laocheng Laocheng Laocheng,Laocheng Zhen,Mo-shih,Sung-tsu,Sung-tzu,Sung-tzu-hsien,Sungtze,lao cheng,lao cheng zhen,老城,老城镇 30.34523 111.7091 P PPLA4 CN 12 0 48 Asia/Chongqing 2012-01-18
-1804419 Laocheng Laocheng Laocheng,Laocheng Zhen,lao cheng,lao cheng zhen,老城,老城镇 24.68785 114.9893 P PPLA4 CN 03 0 268 Asia/Shanghai 2012-01-18
-1804430 Lanzhou Lanzhou Kao-lan-hsien,Kaolan,Lan Chau,Lan Châu,Lan'chzhou,Lan-chou,Lan-chou-shih,Lanchow,Lanchowfu,Langouo,Lanzhou,Lanzhou Shi,Lanĝoŭo,lan zhou,lan zhou shi,Ланьчжоу,لەنجۇ شەھىرى,兰州,兰州市,蘭州,蘭州市 36.05639 103.79222 P PPLA CN CN 15 3200000 1545 Asia/Chongqing 2012-01-18
-1804440 Lanxi Lanxi Lan-hsi,Lanxi,Lanxi Zhen,lan xi,lan xi zhen,兰溪,兰溪镇 30.34694 115.14205 P PPLA4 CN 12 0 18 Asia/Shanghai 2012-01-18
-1804442 Lanxi Lanxi Lan-ch'i,Lan-ch'i-hsien,Lan-ch'i-hsien-ch'eng,Lan-ch’i,Lan-ch’i-hsien,Lan-ch’i-hsien-ch’eng,Lan-hsi,Lanxi 29.21946 119.47695 P PPL CN 02 73706 45 Asia/Shanghai 2012-01-18
-1804450 Lantian Lantian Lan-t'ien,Lan-t’ien,Lantian,Lantian Zhen,lan tian,lan tian zhen,兰田,兰田镇 29.90678 118.08714 P PPLA4 CN 01 0 232 Asia/Shanghai 2012-01-18
-1804451 Lianyuan Lianyuan Lan-t'ien,Lan-t'ien-chen,Lan-t'ien-shih,Lan-t’ien,Lan-t’ien-chen,Lan-t’ien-shih,Lantian,Lianyuan,Lien-yuan,Lien-yüan,lian yuan,涟源 27.68833 111.66417 P PPLA3 CN 11 66501 151 Asia/Chongqing 2012-01-18
-1804452 Lantian Lantian Lan-t'ien,Lan-t'ien-ch'ang,Lan-t'ien-fang,Lan-t’ien,Lan-t’ien-ch’ang,Lan-t’ien-fang,Lantian 27.025 109.29472 P PPL CN CN 18 1292 354 Asia/Chongqing 2012-01-18
-1804455 Lantian Lantian Futian Yaozuxiang,Lan-t'ien,Lan-t’ien,Lantian,Lantian Yaozuxiang,lan tian,蓝田 23.86576 114.22588 P PPLA4 CN 30 0 167 Asia/Chongqing 2012-01-18
-1804456 Lantang Lantang Lantang,Lantang Zhen,lan tang,lan tang zhen,蓝塘,蓝塘镇 23.4176 114.93026 P PPLA4 CN 30 0 62 Asia/Chongqing 2012-01-18
-1804463 Tafeng Tafeng Lan-chia,Lan-shan-hsien,Lanshan,Tafeng,ta feng,塔峰 25.35407 112.18987 P PPLA3 CN 11 0 278 Asia/Chongqing 2012-01-18
-1804465 Lanqiao Lanqiao Lan-ch'iao,Lan-ch'iao-chen,Lan-ch’iao,Lan-ch’iao-chen,Lanqiao,lan qiao,蓝桥 34.07431 109.45793 P PPLA4 CN 26 0 1019 Asia/Chongqing 2012-01-18
-1804472 Lanli Lanli 27.88694 109.91861 P PPL CN 11 1660 149 Asia/Chongqing 2004-05-20
-1804497 Rangxi Rangxi Lang-hsi-kang,Langxi Zhen,Langxigang,Rangxi,Rangxi Zhen,lang xi zhen,rang xi,rang xi zhen,浪西镇,瀼溪,瀼溪镇 29.91549 116.72241 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-18
-1804499 Jianping Jianping Chien-p'ing,Chien-p’ing,Jianping,Kienping,Lang-ch'i,Lang-ch'i-chen,Lang-ch'i-hsien,Lang-ch’i,Lang-ch’i-chen,Lang-ch’i-hsien,Lang-hsi,Langki,Langki-hsien,Langxi,jian ping,建平 31.13831 119.1733 P PPLA3 CN 01 0 8 Asia/Shanghai 2012-01-18
-1804500 Langxi Langxi Langxi,Langxi Xiang,lang xi,lang xi xiang,朗溪,朗溪乡 28.9218 110.30904 P PPLA4 CN 11 0 571 Asia/Chongqing 2012-01-18
-1804506 Languan Languan Lan-t'ien,Lan-t'ien-hsien,Lan-tyan,Lan-t’ien,Lan-t’ien-hsien,Languan,Languan Zhen,Lantian,lan guan,lan guan zhen,蓝关,蓝关镇 34.15754 109.31415 P PPLA3 CN 26 0 505 Asia/Chongqing 2012-01-18
-1804518 Langqiao Langqiao Lang-ch'iao,Lang-ch'iao-ho,Lang-ch’iao,Lang-ch’iao-ho,Langqiao,Langqiao Zhen,lang qiao,lang qiao zhen,榔桥,榔桥镇 30.47767 118.45264 P PPLA4 CN 01 0 143 Asia/Shanghai 2012-01-18
-1804540 Langfang Langfang An-tz'u,An-tz’u,Anci,Lanfan,Lang-fang-chen,Langfang,lang fang shi,Ланфан,廊坊市 39.50972 116.69472 P PPL CN 10 720119 18 Asia/Shanghai 2012-01-18
-1804578 Weichanglu Weichanglu I,I-hsien,Lai-chou,Lai-chow-fu,Laichow,Laizhou,Laizhou Shi,Weichanglu,Weichanglu Jiedao,Ye Xian,Yeh,Yehsien,Yixian,lai zhou,lai zhou shi,wen chang lu,wen chang lu jie dao,ye xian,掖县,文昌路,文昌路街道,莱州,莱州市 37.17167 119.92139 P PPLA3 CN 25 90070 35 Asia/Shanghai 2012-01-18
-1804583 Laiyuan Laiyuan Laiyuan,Laiyuan Xiang,Xiacun,lai yuan,lai yuan xiang,赖源,赖源乡 25.56309 117.02056 P PPLA4 CN 07 0 895 Asia/Shanghai 2012-01-18
-1804586 Laiyang Laiyang Lai-yang-hsien,Lai-yank,Laiyang 36.97583 120.71361 P PPL CN 25 169594 40 Asia/Shanghai 2012-01-18
-1804591 Laiwu Laiwu Chiu-lai-wu,Lai-wu-hsien,Laiwu,lai wu,lai wu shi,莱芜,莱芜市 36.19278 117.65694 P PPL CN 25 124108 182 Asia/Shanghai 2012-01-18
-1804602 Xiangfeng Xiangfeng Lai-feng-hsien,Laifeng Shi,Xiangfeng,xiang feng,翔凤 29.50761 109.40266 P PPLA3 CN 12 0 461 Asia/Chongqing 2012-01-18
-1804603 Laifang Laifang Laifang,lai fang,赖坊 25.93603 116.88415 P PPLA4 CN 07 0 307 Asia/Shanghai 2012-01-18
-1804605 Laicun Laicun Lai-ts'un,Lai-ts'un-hsu,Lai-ts’un,Lai-ts’un-hsü,Laicun,Laicun Zhen,lai cun,lai cun zhen,赖村,赖村镇 26.34715 115.81892 P PPLA4 CN 03 0 188 Asia/Shanghai 2012-01-18
-1804609 Laibin Laibin Lai-pin,Lai-pin-chen,Lai-pin-hsien,Laibin,Laiping 23.7 109.26667 P PPL CN 16 59835 83 Asia/Chongqing 2012-01-18
-1804618 Labrang Labrang Hsia-ho,Hsia-ho-hsien,La-pu-leng,Labran,Labrang,Labuilengzhen,Labuleng,Lapulengsze,Lorang Trashikhyil,Syakhe,Te-wu-lu,Te-wu-lu-shih,Xiahe,Xiahe Xian,la bo leng,la bo leng zhen,xia he xian,夏河县,拉卜楞,拉卜楞镇 35.20125 102.52117 P PPLA3 CN 15 0 2926 Asia/Chongqing 2012-01-18
-1804619 Labao Labao La-pao,La-pao-chen,La-pao-chieh,La-pao-hsu,La-pao-hsü,Labao,Lapu,Liu-chiang,Liu-chiang-hsien,la bao,拉堡 24.25985 109.33414 P PPLA3 CN 16 0 109 Asia/Chongqing 2012-01-18
-1804622 Kyiling Kyiling Jilang,Kyiling,Zhongtie Xiang,ji lang,zhong tie xiang,中铁乡,吉浪 35.24481 100.1329 P PPLA4 CN 06 0 3363 Asia/Chongqing 2012-01-18
-1804645 Kunyang Kunyang Kunyang,P'ing-yang-hsien,P'ing-yang-hsien-ch'eng,Pingyang,P’ing-yang-hsien,P’ing-yang-hsien-ch’eng 27.66583 120.56583 P PPL CN 02 65009 146 Asia/Shanghai 2012-01-18
-1804646 Kunyang Kunyang Chin-ning,Chiu-k'un-yang,Chiu-k'un-yang-hsien-ch'eng,Chiu-k’un-yang,Chiu-k’un-yang-hsien-ch’eng,Jinning,Jinning Xian,K'un-yang-hsien,Kunyang,Kunyang Zhen,K’un-yang-hsien,jin ning xian,kun yang,kun yang zhen,昆阳,昆阳镇,晋宁县 24.66753 102.5919 P PPLA3 CN 29 0 1896 Asia/Chongqing 2012-01-18
-1804651 Kunming Kunming Con Minh,Côn Minh,K'un-ming-hsien,K'un-ming-shih,Kchun-ming,Kun'min,Kunming,Kunming Shi,Kunmingas,K’un-ming-hsien,K’un-ming-shih,Yun-nan,Yunnanfu,Yün-nan,Yünnanfu,kun ming,kun ming shi,kunming,Куньмин,昆明,昆明市,쿤밍 25.03889 102.71833 P PPLA CN 29 1023674 1895 Asia/Chongqing 2012-01-18
-1804658 Kuiyong Kuiyong K'uei-yung,K'uei-yung-hsu,Khitschhung,Kuiyong,Kuiyong Jiedao,K’uei-yung,K’uei-yung-hsü,kui yong,葵涌 22.63458 114.41619 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-18
-1804664 Kuitan Kuitan K'uei-t'an,K'uei-t'an-hsu,Keulon,Kuitan,Kuitan Zhen,Kweitam,Kweitan,K’uei-t’an,K’uei-t’an-hsü,kui tan,葵潭 23.06837 115.97335 P PPLA4 CN 30 0 30 Asia/Shanghai 2012-01-18
-1804672 Kuimeishan Kuimeishan Kuimeishan,Kuimeishan Zhen,kui mei shan,kui mei shan zhen,岿美山,岿美山镇 24.66898 114.88779 P PPLA4 CN 03 0 305 Asia/Chongqing 2012-01-18
-1804685 Kuangyuan Kuangyuan Dongfeng,I-liang,I-liang-hsien,Kuangyuan,Yiliang,Yiliang Xian,kuang yuan,yi liang,yi liang xian,匡远,宜良,宜良县 24.91379 103.14789 P PPLA3 CN 29 0 1538 Asia/Chongqing 2012-01-18
-1804686 Kuangyan Kuangyan K'uang-yen,K'uang-yen-shih,Kuangyan,Kuangyan Zhen,K’uang-yen,K’uang-yen-shih,kuang yan,kuang yan zhen,匡堰,匡堰镇 30.15127 121.29586 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1804694 Kuanchuan Kuanchuan K'uan-ch'uan-p'u,Kuanchuan,Kuanchuan Xiang,K’uan-ch’uan-p’u,kuan chuan,kuan chuan xiang,宽川,宽川乡 32.99437 106.2594 P PPLA4 CN 26 0 773 Asia/Chongqing 2012-01-18
-1804709 Kouzhen Kouzhen K'ou-chen,K'ou-t'ou-chen,Koutouzhen,Kouzhen,K’ou-chen,K’ou-t’ou-chen,kou zhen,口镇 34.70889 108.6975 P PPLA4 CN 26 0 620 Asia/Chongqing 2012-01-18
-1804714 Koujiahe Koujiahe K'ou-chia-ho,Koujiahe,K’ou-chia-ho,kou jia he,寇家河 34.71882 107.06445 P PPLA4 CN 26 0 845 Asia/Chongqing 2012-01-18
-1804732 Konglong Konglong K'ung-lung,K'ung-lung-chen,Konglong,Konglong Zhen,K’ung-lung,K’ung-lung-chen,kong long,kong long zhen,孔垄,孔垄镇 29.88668 115.90323 P PPLA4 CN 12 0 19 Asia/Shanghai 2012-01-18
-1804733 Huzhuang Huzhuang Chou-chia-yuan,Chou-chia-yüan,Dongkongjiazhuang,Huzhuang,Huzhuang Zhen,K'ung-chia-chuang,Kongjiazhuang,K’ung-chia-chuang,Tung-k'ung-chia-chuang,Tung-k’ung-chia-chuang,dong kong jia zhuang,hu zhuang,hu zhuang zhen,东孔家庄,胡庄,胡庄镇 32.35184 120.02144 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1804734 Kongwan Kongwan K'ung-chia-wan,Kongjiawan,Kongwan,Kongwan Zhen,K’ung-chia-wan,kong wan,kong wan zhen,孔湾,孔湾镇 31.57096 112.26634 P PPLA4 CN 12 0 55 Asia/Chongqing 2012-01-18
-1804751 Kesha Kesha K'o-sha,Kesha,Kesha Xiang,K’o-sha,ke sha,ke sha xiang,颗沙,颗沙乡 29.0958 109.94757 P PPLA4 CN 11 0 366 Asia/Chongqing 2012-01-18
-1804753 Keqiao Keqiao K'o-ch'iao,K'o-ch'iao-chen,Keqiao,Keqiao Jiedao,K’o-ch’iao,K’o-ch’iao-chen,ke qiao,ke qiao jie dao,柯桥,柯桥街道 30.07265 120.48644 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1804758 Kengyuan Kengyuan 26.34028 119.76778 P PPL CN 07 3560 19 Asia/Shanghai 2001-01-05
-1804761 Kengtian Kengtian Kengtian,Kengtian Xiang,keng tian,keng tian xiang,坑田,坑田乡 27.345 115.37873 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1804775 Lanyi Lanyi K'o-lan,K'o-lan-hsien,K'o-lan-hsien-ch'eng,Kelan,Kelan Xian,Kolanchow,K’o-lan,K’o-lan-hsien,K’o-lan-hsien-ch’eng,Lanyi,Lanyi Zhen,ke lan xian,lan yi,lan yi zhen,岚漪,岚漪镇,岢岚县 38.71983 111.59783 P PPLA3 CN 24 0 1460 Asia/Chongqing 2012-01-18
-1804781 Kefang Kefang Kefang,ke fang,客坊 26.7174 116.58694 P PPLA4 CN 07 0 441 Asia/Shanghai 2012-01-18
-1804784 Kedian Kedian K'o-tien,Kedian,Kedian Zhen,K’o-tien,ke dian,ke dian zhen,客店,客店镇 31.36053 112.86747 P PPLA4 CN 12 0 118 Asia/Chongqing 2012-01-18
-1804805 Kanshan Kanshan K'an-shan-chen,Kanshan,Kanshan Zhen,K’an-shan-chen,kan shan,kan shan zhen,坎山,坎山镇 30.19397 120.40714 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1804819 Kangshan Kangshan Hung-shan,Kangshan,Kangshan Xiang,kang shan,kang shan xiang,康山,康山乡 28.88122 116.43113 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-18
-1804826 Kangle Kangle Kangle,Kangle Jiedao,Kangle Zhen,Wan-tsai,Wan-tsai-hsien,Wan-tsai-hsien-ch'eng,Wan-tsai-hsien-ch’eng,Wanzai,Wanzai Xian,kang le,kang le jie dao,kang le zhen,wan zai xian,万载县,康乐,康乐街道,康乐镇 28.09557 114.45007 P PPLA3 CN 03 0 92 Asia/Shanghai 2012-01-18
-1804850 Kaiyuan Kaiyuan A-mi,Ami-hsien,Amichow,K'ai-yuan-hsien,Kaiyuan,Kajjuan',K’ai-yüan-hsien,kai yuan,Кайюань,开远 23.69767 103.30372 P PPL CN 29 198423 1259 Asia/Chongqing 2012-01-18
-1804869 Xinning Xinning Hsin-ning,K'ai-chiang,K'ai-chiang-hsien,Kaijiang,Kaikiang,Kaikianghsien,Kaytszan,K’ai-chiang,K’ai-chiang-hsien,Sin'nin,Sinning,Sinninghsien,Sin’nin,Xinning,xin ning,新宁 31.08515 107.86508 P PPLA3 CN 32 0 462 Asia/Chongqing 2012-01-18
-1804873 Kaihua Chengguanzhen Kaihua Chengguanzhen Chengguan Zhen,K'ai-hua-hsien,K'ai-hua-hsien-ch'eng,Kaihua,Kaihua Chengguanzhen,Kaihwa,Kaihwa-hsien,K’ai-hua-hsien,K’ai-hua-hsien-ch’eng,cheng guan zhen,kai hua,kai hua cheng guan zhen,城关镇,开化,开化城关镇 29.14306 118.40333 P PPLA3 CN 02 0 222 Asia/Shanghai 2012-01-18
-1804874 Kaihua Kaihua Kaihua,Kaihwa,Kaihwafu,Wen-shan-hsien,Wenshan,kai hua,开化 23.3687 104.28 P PPLA3 CN 29 64404 1394 Asia/Chongqing 2012-01-18
-1804879 Kaifeng Kaifeng K'ai-feng-hsien,K'ai-feng-shih,Kai Feng,Kai-feng Fu,Kai-fêng Fu,Kaifeng,Kajfehn,Kajfyn,Khai Phong,K’ai-feng-hsien,K’ai-feng-shih,kai feng,kai feng shi,kaipeong,khifng,Кайфын,Кайфэн,קאיפנג,كەيفېڭ شەھىرى,ไคฟง,开封市,開封,카이펑 34.79111 114.34833 P PPL CN CN 09 4800000 73 Asia/Shanghai 2012-01-18
-1804892 Juye Juye Chin-yeh,Chu-yeh,Chu-yeh-hsien,Chü-yeh,Chü-yeh-hsien,Juye,Kuyehhsien 35.39472 116.08833 P PPL CN 25 58107 44 Asia/Shanghai 2012-01-18
-1804894 Juxing Juxing Chu-hsing,Chu-hsing-chen,Chü-hsing,Chü-hsing-chen,Juxing,Juxing Zhen,Juxingzhen,Wangbao,Wangbao Zhen,ju xing,ju xing zhen,wang bao,wang bao zhen,王鲍,王鲍镇,聚星,聚星镇 31.96639 121.54278 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1804899 Juxi Juxi Chu-hsi,Chü-hsi,Juxi,Juxi Zhen,ju xi,ju xi zhen,莒溪,莒溪镇 25.49465 116.73871 P PPLA4 CN 07 0 360 Asia/Shanghai 2012-01-18
-1804900 Juting Juting Chu-t'ing,Chü-t’ing,Juting,ju ting,巨亭 33.05534 106.08453 P PPLA4 CN 26 0 599 Asia/Chongqing 2012-01-18
-1804917 Junxi Junxi Datian,Junxi,Ta-t'ien,Ta-t'ien-ch'eng,Ta-t'ien-hsien,Ta-t’ien,Ta-t’ien-ch’eng,Ta-t’ien-hsien,jun xi,均溪 25.67508 117.8447 P PPLA3 CN 07 0 377 Asia/Shanghai 2012-01-18
-1804922 Junshan Junshan 30.36605 114.12698 P PPLA4 CN 12 0 35 Asia/Shanghai 2011-07-09
-1804935 Junlian Junlian Chun-lien,Chün-lien,Junlian,Kunlien,Kunlien-hsien,Künlien-hsien,Yun-lien,Yun-lien-hsien,Yün-lien,Yün-lien-hsien,jun lian,筠连 28.17106 104.51162 P PPLA3 CN 32 0 450 Asia/Chongqing 2012-01-18
-1804936 Junkou Junkou Chun-k'ou,Chün-k’ou,Junkou,Junkou Zhen,jun kou,jun kou zhen,均口,均口镇 26.65814 116.79467 P PPLA4 CN 07 0 349 Asia/Shanghai 2012-01-18
-1804946 Junchuan Junchuan Chun-ch'uan,Chun-ch'uan-tien,Chunchwantien,Chün-ch’uan,Chün-ch’uan-tien,Junchuan,Junchuan Zhen,jun chuan,jun chuan zhen,均川,均川镇 31.65206 113.21843 P PPLA4 CN 12 0 83 Asia/Chongqing 2012-01-18
-1804950 Junbu Junbu Junbu,Junbu Xiang,jun bu,jun bu xiang,君埠,君埠乡 26.70452 115.66564 P PPLA4 CN 03 0 210 Asia/Shanghai 2012-01-18
-1804977 Juexi Juexi Chueh-hsi,Chueh-hsi-so-ch'eng,Chüeh-hsi,Chüeh-hsi-so-ch’eng,Juexi,Juexi Jiedao,jue xi,jue xi jie dao,爵溪,爵溪街道 29.47361 121.94722 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1804979 Juegang Juegang Chueh-chiang,Chueh-chiang-chen,Chueh-kang,Chuehkiang,Chüeh-chiang,Chüeh-chiang-chen,Chüeh-kang,Chüehkiang,Ju-tung,Juegang,Juegang Zhen,Juegangzhen,Rudong,jue gang,jue gang zhen,ru dong,如东,掘港,掘港镇 32.31737 121.18552 P PPLA3 CN 04 73317 10 Asia/Shanghai 2012-01-18
-1804983 Longhu Longhu Juding,Longhu,Longhu Zhen,ju ding,long hu,long hu zhen,居丁,龙湖,龙湖镇 19.57748 110.39448 P PPLA4 CN 31 0 54 Asia/Chongqing 2012-01-18
-1804991 Juanshui Juanshui Juanshui,T'ung-ch'eng,T'ung-ch'eng-hsien,Tongcheng,T’ung-ch’eng,T’ung-ch’eng-hsien,juan shui,隽水 29.30306 113.88676 P PPLA3 CN 12 0 117 Asia/Chongqing 2012-01-18
-1804996 Liulin Liulin Cho-ni,Cho-ni-she-chih-chu,Cho-ni-she-chih-chü,Chone,Chzhoni,Jone,Jonê,Knyazya Dzhoni,Liulin,Liulin Zhen,Zhuoni,Zhuoni Xian,liu lin,liu lin zhen,zhuo ni,zhuo ni xian,卓尼,卓尼县,柳林,柳林镇 34.58972 103.50417 P PPLA3 CN 15 0 2539 Asia/Chongqing 2012-01-18
-1805012 Shuangqiao Shuangqiao Chi-yuan,Chi-yuan-hsien,Chi-yüan,Chi-yüan-hsien,Jiyuan,Jiyuan Shi,Shuangqiao,Shuangqiao Jiedao,Tsiyuanhsien,ji yuan,ji yuan shi,ji yuan xian,shuang qiao,shuang qiao jie dao,双桥,双桥街道,济源,济源县,济源市 35.09 112.58 P PPLA2 CN 09 0 152 Asia/Chongqing 2012-01-18
-1805022 Jiyang Jiyang Chi-yang,Jiyang,Jiyang Zhen,ji yang,ji yang zhen,吉阳,吉阳镇 27.13932 118.13167 P PPLA4 CN 07 0 150 Asia/Shanghai 2012-01-18
-1805026 Jixiang Jixiang Jixiang,Jixiang Xiang,ji xiang,ji xiang xiang,吉巷,吉巷乡 26.67275 118.91219 P PPLA4 CN 07 0 461 Asia/Shanghai 2012-01-18
-1805030 Jichang Jichang Chi,Chi-chen,Chi-hsien,Chi-hsien-ch'eng,Chi-hsien-ch’eng,Ji Xian,Jichang,Jichang Zhen,Jixian,Kichow,ji chang,ji chang zhen,ji xian,吉县,吉昌,吉昌镇 36.10111 110.67333 P PPLA3 CN 24 0 882 Asia/Chongqing 2012-01-18
-1805032 Jixian Jixian Chi-hsien,Jixian,Jixian Zhen,Nan-chi-hsien,ji xian,ji xian zhen,集贤,集贤镇 34.08863 108.39783 P PPLA4 CN 26 0 450 Asia/Chongqing 2012-01-18
-1805052 Jiuzhou Jiuzhou Jiuzhou,Jiuzhou Zhen,jiu zhou,jiu zhou zhen,旧州,旧州镇 19.76266 110.40356 P PPLA4 CN 31 0 34 Asia/Chongqing 2012-01-18
-1805064 Yuhang Yuhang Chiu-yu-hang,Chiu-yü-hang,Jiuyuhang,Yu-hang-chen,Yu-hang-hsien,Yu-hang-hsien-ch'eng,Yuhang,Yuhang Zhen,Yü-hang-chen,Yü-hang-hsien-ch’eng,yu hang,余杭 30.27528 119.9325 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-18
-1805066 Yongping Yongping Chiu-yung-shou,Jiuyongshou,Yongping,Yung-p'ing,Yung-p’ing,Yung-shou-hsien,Yung-shou-ku-chih,yong ping,永平 34.81083 108.04139 P PPLA4 CN 26 0 1263 Asia/Chongqing 2012-01-18
-1805090 Jiuxian Jiuxian Chiu-hsien,Chiu-hsien-chen,Jiuxian,jiu xian,旧县 33.49545 113.29965 P PPLA4 CN 09 0 107 Asia/Chongqing 2012-01-18
-1805096 Jiuxian Jiuxian Jiuxian,Jiuxian Xiang,jiu xian,jiu xian xiang,旧县,旧县乡 25.22397 116.4976 P PPLA4 CN 07 0 337 Asia/Shanghai 2012-01-18
-1805097 Jiuxi Jiuxi Chiu-hsi,Jiuxi,Jiuxi Xiang,jiu xi,jiu xi xiang,九溪,九溪乡 29.18102 111.27174 P PPLA4 CN 11 0 58 Asia/Shanghai 2012-01-18
-1805101 Wugong Wugong Chiu-wu-kung,Jiuwugong,Ugun,Wu-kung,Wu-kung-hsien,Wugong,Wugong Zhen,wu gong,wu gong zhen,武功,武功镇 34.3283 108.10761 P PPLA4 CN 26 0 476 Asia/Chongqing 2012-01-18
-1805111 Jiusi Jiusi Chiu-ssu,Jiusi,Jiusi Xiang,jiu si,jiu si xiang,旧司,旧司乡 29.43363 109.25507 P PPLA4 CN 12 0 503 Asia/Chongqing 2012-01-18
-1805132 Jiulong Jiulong Chiu-lung,Chiu-lung-chen,Jiulong,Jiulong Zhen,Jiulongzhen,jiu long,jiu long zhen,久隆,久隆镇 31.90806 121.57139 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1805148 Jiulong Jiulong Chiu-lung,Jiulong,Jiulong Zhen,jiu long,jiu long xiang,九龙,九龙乡 28.52121 116.63303 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-18
-1805151 Jiulong Jiulong Jiulong,Jiulong Zhen,jiu long,jiu long zhen,九龙,九龙镇 24.14414 112.91442 P PPLA4 CN 30 0 95 Asia/Chongqing 2012-01-18
-1805164 Lianzhu Lianzhu Jiulian,Lianzhu,Meikiang,Mo-chiang,Mo-chiang-hsien,Mojiang,Mokianghsien,T'a-lang,T'a-lang-t'ing,T’a-lang,T’a-lang-t’ing,lian zhu,联珠 23.40844 101.71028 P PPLA3 CN 29 0 1523 Asia/Chongqing 2012-01-18
-1805169 Jiukou Jiukou Chiu-k'ou,Chiu-k'ou-chen,Chiu-k’ou,Chiu-k’ou-chen,Jiukou,Jiukou Zhen,Kiukow,jiu kou,jiu kou zhen,旧口,旧口镇 30.8644 112.66611 P PPLA4 CN 12 0 40 Asia/Chongqing 2012-01-18
-1805173 Jiujie Jiujie Jiujie,jiu jie,九街 33.55109 113.76451 P PPLA4 CN 09 0 71 Asia/Shanghai 2012-01-18
-1805174 Jiujie Jiujie Jiujie,Jiujie Jiedao,jiu jie,jiu jie jie dao,旧街,旧街街道 30.83505 114.92115 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-18
-1805179 Jiujiang Jiujiang Chiu-chiang,Chiu-chiang-hsien,Chiu-chiang-shih,Jiujiang,Kiukiang,Kiukiang-hsien,Te-hua,jiu jiang,九江 29.73333 115.98333 P PPLA2 CN 03 258807 10 Asia/Shanghai 2012-01-18
-1805182 Jiuji Jiuji Chiu-chi,Jiuji,Jiuji Zhen,jiu ji,jiu ji zhen,九集,九集镇 31.815 111.99833 P PPLA4 CN 12 0 114 Asia/Chongqing 2012-01-18
-1805184 Jiuhua Jiuhua Chiu-hua-chen,Chiu-hua-shan,Jiuhua,Jiuhua Zhen,jiu hua,jiu hua zhen,九华,九华镇 32.13861 120.65778 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1805192 Jiuhe Jiuhe Chiu-ho,Chiu-ho-hsu,Chiu-ho-hsü,Chiu-ho-shih,Jiuhe,Jiuhe Zhen,jiu he,jiu he zhen,九和,九和镇 23.49244 115.05269 P PPLA4 CN 30 0 90 Asia/Shanghai 2012-01-18
-1805199 Jiuguan Jiuguan Chiu-kuan,Chiu-kuan-shih,Jiuguan,Jiuguan Zhen,Sheng-she,jiu guan,jiu guan zhen,旧馆,旧馆镇 30.8381 120.2768 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1805208 Jiufeng Jiufeng Chiu-feng,Chiu-feng-hsu,Chiu-feng-hsü,Jiufeng,Jiufeng Zhen,jiu feng,jiu feng zhen,九峰,九峰镇 25.34454 113.37375 P PPLA4 CN 30 0 544 Asia/Chongqing 2012-01-18
-1805211 Jiufang Jiufang Chiu-fang,Jiufang,Mo-chia-chiu-fang,Wu-chia-chiu-fang,jiu fang,酒房 34.81451 107.39274 P PPLA4 CN 26 0 1294 Asia/Chongqing 2012-01-18
-1805229 Jiuchenggong Jiuchenggong Jiuchenggong,Lin-yu,Lin-yu-hsien,Lin-yu-hsien-ch'eng,Lin-yu-hsien-ch’eng,Lingyu,Linyou,Tangjiu Chenggong,jiu cheng gong,lin you,九成宫,麟游 34.67868 107.78758 P PPLA3 CN 26 0 1038 Asia/Chongqing 2012-01-18
-1805253 Jiubao Jiubao Jiubao,Jiubao Zhen,jiu bao,jiu bao zhen,九堡,九堡镇 25.94571 115.90046 P PPLA4 CN 03 0 213 Asia/Shanghai 2012-01-18
-1805261 Jitian Jitian Chi-t'ien,Chi-t’ien,Jitian,Lianshan,Lien-shan,ji tian,吉田 24.57541 112.09049 P PPLA3 CN 30 0 298 Asia/Chongqing 2012-01-18
-1805267 Jishui Jishui Chi-shui,Chi-shui-chi,Jishui 33.73333 115.4 P PPL CN 09 77540 41 Asia/Shanghai 2012-01-18
-1805270 Jishou Jishou Ch'ien-ch'eng,Chi-shou,Chi-shou-hsien,Ch’ien-ch’eng,Jishou,Kishow,So-li,ji shou,ji shou shi,吉首,吉首市 28.31667 109.71667 P PPL CN 11 102332 205 Asia/Chongqing 2012-01-18
-1805280 Jifeng Jifeng Chi-shan,Chi-shan-hsien,Jifeng,Jifeng Zhen,Jishan,Jishan Xian,Tsishanhsien,ji feng,ji feng zhen,ji shan xian,稷山县,稷峰,稷峰镇 35.61347 110.95854 P PPLA3 CN 24 0 402 Asia/Chongqing 2012-01-18
-1805290 Jinzipai Jinzipai Chin-tzu-p'ai,Chin-tzu-p’ai,Jinzipai,Jinzipai Zhen,jin zi pai,jin zi pai zhen,金字牌,金字牌镇 29.84631 117.80778 P PPLA4 CN 01 0 142 Asia/Shanghai 2012-01-18
-1805298 Jinzhou Jinzhou Chin,Chin-chou,Chin-chou-chen,Chin-chow,Chin-hsien,Czin'chzhou,Jinxian,Jinzhou,Kin,Kinchow,Kinhsien,Kinshu,Kinsyu,Tschintschou,Цзиньчжоу 39.1 121.71667 P PPL CN 19 215386 8 Asia/Harbin 2011-10-09
-1805310 Jinyuan Jinyuan Chin-yuan,Chin-yuan-hsien,Chin-yüan,Chin-yüan-hsien,Chiu-chin-yuan,Chiu-chin-yüan,Jinyuan,Jinyuan Jiedao,Jinyuan Qu,T'ai-yuan,T'ai-yuan-chen,Taiyuanhsien,T’ai-yüan,T’ai-yüan-chen,jin yuan,jin yuan jie dao,jin yuan qu,晋源,晋源区,晋源街道 37.72694 112.47083 P PPLA3 CN 24 0 779 Asia/Chongqing 2012-01-18
-1805323 Jinxiu Jinxiu Chin-hsiu,Chin-hsiu-chen,Chin-hsiu-hsiang,Chin-hsiu-ku-chih,Chin-hsiu-ts'un,Chin-hsiu-ts’un,Jinxiu,Kinsiu,Ta-yao-shan,Ta-yao-shan-hsien-yao-tsu-tzu-chih-ch'u,Ta-yao-shan-hsien-yao-tsu-tzu-chih-ch’ü,Ta-yao-shan-yao-tsu-tzu-chih-ch'u,Ta-yao-shan-yao-tsu-tzu-chih-ch’ü,Ta-yao-shan-yao-tsu-tzu-chih-hsien,jin xiu,金秀 24.13721 110.18009 P PPLA3 CN 16 0 908 Asia/Chongqing 2012-01-18
-1805334 Jinxiang Jinxiangzhen Chin-chen-wei,Chin-chen-wei-ch'eng,Chin-chen-wei-ch’eng,Chin-hsiang,Jinxiang,Jinxiangzhen,Kinchenwei,Kinsiang,jin xiang,金乡 27.43265 120.60625 P PPL CN 02 84231 10 Asia/Shanghai 2011-09-11
-1805347 Jintian Jintian Chin-t'ien,Chin-t’ien,Jintian,Jintian Xiang,jin tian,jin tian xiang,金田,金田乡 27.15017 114.4386 P PPLA4 CN 03 0 108 Asia/Chongqing 2012-01-18
-1805357 Jintang Jintang Jintang,Jintang Zhen,jin tang,jin tang zhen,金塘,金塘镇 30.00579 121.86621 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1805358 Jintang Jintang Chin-t'ang,Chin-t’ang,Jintang,Jintang Zhen,jin tang,jin tang zhen,金塘,金塘镇 29.31389 114.16992 P PPLA4 CN 12 0 189 Asia/Shanghai 2012-01-18
-1805361 Jintan Jintan Chin-t'an,Chin-t’an,Jintan,Jintan Zhen,jin tan,jin tan zhen,金滩,金滩镇 27.27168 115.11867 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-18
-1805362 Jintan Jintan Chin-t'an,Chin-t’an,Jintan,Jintan Zhen,jin tan,jin tan zhen,浸潭,浸潭镇 24.065 112.80789 P PPLA4 CN 30 0 64 Asia/Chongqing 2012-01-18
-1805375 Jinshiqiao Jinshiqiao Chin-shih-ch'iao,Chin-shih-ch’iao,Jinshiqiao,Jinshiqiao Zhen,jin shi qiao,jin shi qiao zhen,金石桥,金石桥镇 27.58425 110.93634 P PPLA4 CN 11 1630 480 Asia/Shanghai 2012-02-28
-1805379 Jinshi Jinshi Chin-shih,Ching-shih,Ching-shih-chen,Ching-shih-shih,Jinshi,Jinshi Shi,Tsingshih,jin shi,jin shi shi,津市,津市市 29.60487 111.87012 P PPLA3 CN 11 82906 65 Asia/Chongqing 2012-01-18
-1805380 Jinshi Jinshi Chin-shih,Chin-shih-chen,Hsin-ning,Hsin-ning-hsien,Jinshi,Sinning,Sinning-hsien,Xinning,jin shi,金石 26.41796 110.80017 P PPLA3 CN 11 0 343 Asia/Chongqing 2012-01-18
-1805389 Jinshan Jinshan Chin-shan,Chin-shan-chen,Jinshan,Jinshanzhen,jin shan,金山 34.2899 109.38086 P PPLA4 CN 26 0 1065 Asia/Chongqing 2012-01-18
-1805391 Jinshanwei Jinshanwei Chin-shan-wei,Chin-shan-wei-ch'eng,Chin-shan-wei-ch’eng,Chinshan,Jinshanwei,Jinwei,Kin-shan,jin shan wei,金山卫 30.72333 121.315 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-18
-1805394 Jinshanpu Jinshanpu Chin-shan-p'u,Chin-shan-p’u,Jinshanpu,Jinshanpu Xiang,jin shan pu,jin shan pu xiang,金山铺,金山铺乡 39.29468 113.67913 P PPLA4 CN 24 0 1149 Asia/Shanghai 2012-01-18
-1805399 Jinshan Jinshan Jinshan,Lu-feng-hsien,Lufeng,jin shan,金山 25.11508 102.09832 P PPLA3 CN 29 0 1649 Asia/Chongqing 2012-01-18
-1805401 Jinshan Jinshan Chin-shan,Jinshan,Jinshan Zhen,jin shan,jin shan zhen,锦山,锦山镇 19.99804 110.68956 P PPLA4 CN 31 0 14 Asia/Chongqing 2012-01-18
-1805408 Jinsha Jinsha Chin-sha,Chin-sha-chen,Czin'sha,Jinsha,Jinsha Zhen,Kinsha,Nan-t'ung,Nan-t'ung-hsien,Nan-t’ung,Nan-t’ung-hsien,Nantong,Tongzhou,Tongzhou Shi,jin sha,jin sha zhen,tong zhou,tong zhou shi,Цзиньша,通州,通州市,金沙,金沙镇 32.08982 121.07355 P PPLA3 CN 04 95647 6 Asia/Shanghai 2012-01-18
-1805409 Jinsha Jinsha Chin-sha,Jinsha,Jinsha Zhen,jin sha,jin sha zhen,金沙,金沙镇 30.2644 118.72982 P PPLA4 CN 01 0 209 Asia/Shanghai 2012-01-18
-1805414 Jinrui Jinrui Chin-jui,Jinrui,Jinrui Zhen,jin rui,jin rui zhen,金瑞,金瑞镇 27.92677 114.20182 P PPLA4 CN 03 0 112 Asia/Chongqing 2012-01-18
-1805415 Jinqu Jinqu Chin-ch'u,Chin-ch'u-chen,Chin-ch’ü,Chin-ch’ü-chen,Jinqu,Jinqu Zhen,jin qu,jin qu zhen,金渠,金渠镇 34.2119 107.7789 P PPLA4 CN 26 0 583 Asia/Chongqing 2012-01-18
-1805431 Jinping Jinping Jinping,Jinping Zhen,jin ping,jin ping zhen,锦屏,锦屏镇 34.51667 119.11667 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1805433 Jinping Jinping Ching-tung,Ching-tung-hsien,Jingdong,Jinping,Kingtung-hsien,Kingtungsin,Kingtungting,jin ping,锦屏 24.43374 100.81989 P PPLA3 CN 29 0 1530 Asia/Chongqing 2012-01-18
-1805434 Jinping Jinping Ch'iu-pei,Ch'iu-pei-hsien,Ch’iu-pei,Ch’iu-pei-hsien,Jinping,Kiupehhsien,Qiubei,jin ping,锦屏 24.03054 104.22702 P PPLA3 CN 29 0 1463 Asia/Chongqing 2012-01-18
-1805435 Jinhe Jinhe Chin-ho,Chin-p'ing,Chin-p'ing-hsien,Chin-p’ing,Chin-p’ing-hsien,Chin-sha,Ho-chin,Jinhe,Jinping,Wang-pu-chieh,Wang-pu-t'ien,Wang-pu-t’ien,Wangpatien,Wangpotien,jin he,金河 22.76667 103.25 P PPLA3 CN 29 0 1317 Asia/Chongqing 2012-01-18
-1805438 Jinpanling Jinpanling Jinpanling,Jinpanling Zhen,jin pan ling,jin pan ling zhen,金盘岭,金盘岭镇 29.33535 116.99552 P PPLA4 CN 03 0 68 Asia/Shanghai 2012-01-18
-1805467 Jinkou Jinkou Chin-k'ou,Chin-k’ou,Jinkou,Jinkou Jiedao,Jinkou Zhen,Wu-ch'ang,Wu-ch'ang-hsien,Wu-ch’ang,Wu-ch’ang-hsien,jin kou,jin kou jie dao,金口,金口街道 30.34008 114.12989 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-18
-1805482 Jinjing Jinjing Chin-ching,Jinjing,Kintsing 24.575 118.59722 P PPL CN CN 07 6990 14 Asia/Shanghai 2012-01-18
-1805501 Jinjiang Jinjiang An-jen,Anjenhsien,Chin-chiang,Chin-chiang-chen,Jinjiang,Jinjiang Zhen,Yu-chiang,Yu-chiang-hsien,Yu-chiang-hsien-ch'eng,Yukiang,Yü-chiang,Yü-chiang-hsien,Yü-chiang-hsien-ch’eng,jin jiang,jin jiang zhen,锦江,锦江镇 28.40051 116.89983 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-18
-1805505 Jinjiang Jinjiang Ch'eng-mai New City,Ch'eng-mai-hsien,Chengmai,Chin-chiang,Chin-chiang-chen,Chin-chiang-shih,Ching-mae,Chinkiang,Ch’eng-mai New City,Ch’eng-mai-hsien,Fa Hi,Jinjiang,Kimkang,Teng-mai-hsien,Tsingmai,Tsingmai-hsien 19.72917 110.00639 P PPL CN 31 68720 22 Asia/Chongqing 2012-01-18
-1805507 Jinjiahe Jinjiahe Chin-chia-ho,Jinjiahe,Jinjiahe Zhen,jin jia he,jin jia he zhen,金家河,金家河镇 33.34097 105.96703 P PPLA4 CN 26 0 881 Asia/Chongqing 2012-01-18
-1805515 Jinji Jinji Chin-chi,Chin-chi-hsu,Chin-chi-hsü,Jinji 23.22806 110.82611 P PPL CN 16 56816 42 Asia/Chongqing 2012-01-18
-1805518 Jining Jining Chi-ning,Chi-ning-hsien,Chi-ning-shih,Czinin,Jining,Tsi-ning-hsien,Tsining,ji ning shi,Цзинин,济宁市 35.405 116.58139 P PPL CN 25 450327 43 Asia/Shanghai 2012-01-18
-1805522 Jinhui Jinhui Chin-hui-ch'iao,Chin-hui-ch’iao,Jinhui,Jinhuiqiao,jin hui,金汇 30.98973 121.49251 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1805528 Jinhua Jinhua Chin-hua,Chin-hua-hsien,Chin-hua-hsien-ch'eng,Chin-hua-hsien-ch’eng,Chin-hua-shih,Czin'khua,Jinhua,Kinhwa,Kinhwa-hsien,Kinhwafu,jin hua xian,Цзиньхуа,金華縣 29.10778 119.65472 P PPL CN 02 142206 54 Asia/Shanghai 2012-01-18
-1805531 Jinhe Jinhe Chin-ho,Chin-ho-chen,Jinhe,Ma-yang,Ma-yang-hsien 27.71694 109.60472 P PPL CN CN 11 3790 202 Asia/Chongqing 2012-01-18
-1805540 Jingzhou Jingzhou Chiang-ling,Chiang-ling-hsien,Ching-chou,Chingchou-fu,Czinchzhou,Jiangling,Jingzhou,Kiangling,Kiangling-hsien,Kingchow,Kingchowfu,Kingling,jing zhou,jing zhou shi,Цзинчжоу,荆州市,荊州 30.35028 112.19028 P PPL CN 12 177878 39 Asia/Chongqing 2011-08-07
-1805542 Jingzhou Jingzhou Jingzhou,Jingzhou Zhen,jing zhou,汫洲 23.62376 116.93316 P PPLA4 CN 30 0 15 Asia/Shanghai 2012-01-18
-1805553 Jingyao Jingyao Ching-yao,Ching-yao-chen,Jingyao,Jingyao Zhen,jing yao,荆姚 34.8454 109.4441 P PPLA4 CN 26 0 397 Asia/Chongqing 2012-01-18
-1805558 Jingyang Jingyang Ching-te,Ching-te-hsien,Jingde,Jingyang,Tsingteh,Tsingtehhsien,jing yang,旌阳 30.29194 118.5425 P PPLA3 CN 01 0 188 Asia/Shanghai 2012-01-18
-1805560 Yancheng Yancheng Ching-yen,Ching-yen-hsien,Jingyan,Tsingyuan,Tsingyuan-hsien,Tsingyüan,Tsingyüan-hsien,Yancheng,yan cheng,研城 29.65068 104.06723 P PPLA3 CN 32 0 389 Asia/Chongqing 2012-01-18
-1805563 Tianchang Tianchang Ching-ching,Ching-hsing,Ching-hsing-hsien,Ching-nan,Chiu-ching-hsing,Jingnan,Jingxing,Jiujingxing,Tianchang,Tianchang Zhen,Tsingsinghsien 37.99806 114.01556 P PPL CN 10 61292 281 Asia/Shanghai 2012-01-18
-1805565 Xiluodu Xiluodu Ching-kuei,Ching-ti,Ching-ti-pa,Jingxin,Kingti,Tsingti,Tsingtipa,Xiluodu,Yongshan,Yung-shan,xi luo du,溪落渡 28.20063 103.58226 P PPLA3 CN 29 0 1653 Asia/Chongqing 2012-01-18
-1805568 Jingchuan Jingchuan Ching,Ching-hsien,Jingchuan,Jingxian,Kinghsien,jing chuan,泾川 30.68916 118.40431 P PPLA3 CN 01 0 35 Asia/Shanghai 2012-01-18
-1805572 Jingxi Jingxi Ching-hsi,Jingxi,Jingxi Jiedao,jing xi,jing xi jie dao,荆西,荆西街道 26.19454 117.54526 P PPLA4 CN 07 0 184 Asia/Shanghai 2012-01-18
-1805583 Jingtou Jingtou Jingtou,Jingtou Zhen,jing tou,迳头 23.96977 113.67748 P PPLA4 CN 30 0 116 Asia/Chongqing 2012-01-18
-1805599 Jingping Jingping Ching-p'ing,Ching-p'ing-chen,Ching-p’ing,Ching-p’ing-chen,Jingping,Jingping Zhen,Pinglu Qu,Tsingpingchen,Tszin'pin,Tszin’pin,jing ping,jing ping zhen,ping lu qu,井坪,井坪镇,平鲁区 39.52 112.28389 P PPLA3 CN 24 0 1373 Asia/Chongqing 2012-01-18
-1805606 Jingning Chengguanzhen Jingning Chengguanzhen Ching-ning,Ching-ning-hsien,Jingning,Jingning Chengguanzhen,Tszinnin,jing ning,jing ning cheng guan zhen,静宁,静宁城关镇 35.52036 105.72301 P PPLA3 CN 15 0 1663 Asia/Chongqing 2012-01-18
-1805611 Jingmen Jingmen Ching-men,Ching-men-hsien,Czinmehn',Jingmen,King monn,King mönn,King-men-chow,Kingmen,Kingmen-hsien,jing men shi,Цзинмэнь,جىڭمېن شەھىرى,荆门市 31.03361 112.20472 P PPL CN 12 167750 94 Asia/Chongqing 2011-08-07
-1805612 Jingmao Jingmao Ching-mao,Ching-mao-ts'un,Ching-mao-ts’un,Jingmao,Jingmao Xiang,jing mao,jing mao xiang,景毛,景毛乡 35.88183 111.35586 P PPLA4 CN 24 0 485 Asia/Chongqing 2012-01-18
-1805614 Jinglou Jinglou Jinglou,Jinglou Zhen,jing lou,jing lou zhen,经楼,经楼镇 28.10012 115.42607 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1805615 Jinglongqiao Jinglongqiao Jinglongqiao,Jinglongqiao Xiang,jing long qiao,jing long qiao xiang,景龙桥,景龙桥乡 29.30316 111.09698 P PPLA4 CN 11 0 147 Asia/Chongqing 2012-01-18
-1805618 Jingling Jingling Jingling,T'ien-men,T'ien-men-hsien,Tianmen,T’ien-men,T’ien-men-hsien 30.65 113.1 P PPL CN 12 224871 30 Asia/Chongqing 2012-01-18
-1805619 Jingling Jingling Jingling,Jingling Zhen,jing ling,jing ling zhen,镜岭,镜岭镇 29.37343 120.78289 P PPLA4 CN 02 0 69 Asia/Shanghai 2012-01-18
-1805622 Echeng Echeng Ching-le,Ching-lo,Ching-lo-hsien,Dzinle,Echeng,Echeng Zhen,Jingle,Jingle Xian,Tsinglo,Tsinglohsien,e cheng,e cheng zhen,jing le xian,静乐县,鹅城,鹅城镇 38.37444 111.97166 P PPLA3 CN 24 0 1392 Asia/Chongqing 2012-01-18
-1805638 Jingjiang Jingjiang Ching-chiang-tien,Ching-chiang-tien-shih,Jingjiang,Jingjiang Zhen,Jingjiangdian,jing jiang,jing jiang zhen,靖江,靖江镇 30.23344 120.46236 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1805639 Jingcheng Jingcheng Ching-ch'eng-chen,Ching-chiang,Ching-chiang-hsien,Ching-ch’eng-chen,Jingcheng,Jingcheng Zhen,Jingjiang,Jingjiang Shi,jing cheng,jing cheng zhen,jing jiang,jing jiang shi,靖城,靖城镇,靖江,靖江市 32.01417 120.2625 P PPLA3 CN 04 0 8 Asia/Shanghai 2012-01-18
-1805658 Jinghai Jinghai Ching-hai,Jinghai,Tsinghai,jing hai,靖海 23.00811 116.51741 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-18
-1805664 Jinggongqiao Jinggongqiao Ching-kung-ch'iao,Ching-kung-ch’iao,Jinggongqiao,Jinggongqiao Zhen,jing gong qiao,jing gong qiao zhen,经公桥,经公桥镇 29.74845 117.2134 P PPLA4 CN 03 0 100 Asia/Shanghai 2012-01-18
-1805671 Jinggan Jinggan Ching-yang,Ching-yang-hsien,Ching-yang-hsien-ch'eng,Ching-yang-hsien-ch’eng,Jinggan,Jinggan Zhen,Jingyang,Kingyang,Tszin'yan,Tszin’yan,jing gan,jing gan zhen,jing yang,泾干,泾干镇,泾阳 34.53 108.83417 P PPLA3 CN 26 0 409 Asia/Chongqing 2012-01-18
-1805680 Jingdezhen Jingdezhen Ching-te-chen,Ching-te-chen-shih,Czindehchzhehn',Fou-liang,Fou-liang-hsien,Fowliang,Fowliang-hsien,Jingdezhen,Jingdezhen Shi,Kingtechen,Kingteh,Kingtehchen,Kingtehchin,jing de zhen,jing de zhen shi,Цзиндэчжэнь,景徳鎮,景德镇,景德镇市 29.2947 117.20789 P PPLA2 CN 03 310565 48 Asia/Shanghai 2012-01-18
-1805704 Jing’an Jing'an Ching-an,Doumen,Jing'an,Jing’an,Tou-men,Tou-men-hsu,Tou-men-hsü,Tou-men-t'u-ch'eng,Tou-men-t’u-ch’eng,Towmoon,jing an,井岸 22.20739 113.2849 P PPLA3 CN 30 0 16 Asia/Chongqing 2012-01-18
-1805709 Jin’e Jin'e Jin'e,Jin’e,Longchang,Lung-ch'ang,Lung-ch'ang-hsien,Lung-ch’ang,Lung-ch’ang-hsien,jin e,金鹅 29.34313 105.28443 P PPLA3 CN 32 0 374 Asia/Chongqing 2012-01-18
-1805711 Jindui Jindui Chin-tui-ch'eng,Chin-tui-ch’eng,Jindui,Jindui Zhen,Jinduicheng,jin dui,金堆 34.33402 109.96747 P PPLA4 CN 26 0 1375 Asia/Chongqing 2012-01-18
-1805726 Jincun Jincun Chin-ts'un,Chin-ts’un,Jincun,Jincun Zhen,jin cun,jin cun zhen,金村,金村镇 35.50194 112.90583 P PPLA4 CN 24 0 760 Asia/Chongqing 2012-01-18
-1805727 Jincun Jincun Jincun,jin cun,靳村 33.95125 112.26222 P PPLA4 CN 09 0 671 Asia/Chongqing 2012-01-18
-1805733 Jinchang Jinchang Baijiazui,Czin'chan,Jinchang,Jinchuan,Jinchuanzhen,Pai-chia-tsui,Цзиньчан 38.49528 102.17389 P PPL CN 15 144363 1562 Asia/Chongqing 2012-01-18
-1805734 Jinchuan Jinchuan Chin-ch'uan,Chin-ch’uan,Ching-hua,Ching-hua-hsien,Jinchuan,Quqen,Quqên,Sui-ching,Sui-ching-t'un,Sui-ching-t’un,Suytszin,Ta-chin,Ta-chin-hsien,Tszinkhua,jin chuan,金川 31.47712 102.06236 P PPLA3 CN 32 0 2165 Asia/Chongqing 2012-01-18
-1805735 Jinchuan Jinchuan Hsin-kan,Hsin-kan-hsien,Hsin-kan-hsien-ch'eng,Hsin-kan-hsien-ch’eng,Jinchuan,Jinchuan Zhen,Sinkan,Sinkan-hsien,Xingan,Xingan Xian,jin chuan,jin chuan zhen,xin gan xian,新干县,金川,金川镇 27.76036 115.3885 P PPLA3 CN 03 0 44 Asia/Shanghai 2012-01-18
-1805741 Jincheng Jincheng Chin-ch'eng,Chin-ch'eng-hsien,Chin-ch’eng,Chin-ch’eng-hsien,Jincheng,Jincheng Shi,Tse-chou,Tseh-chow-fu,Tsehchow,Tsincheng,Tsinchenghsien,jin cheng,jin cheng shi,晋城,晋城市 35.50222 112.83278 P PPLA2 CN 24 332650 711 Asia/Chongqing 2012-01-18
-1805743 Jincheng Jincheng Hsi-ch'ung,Hsi-ch'ung-hsien,Hsi-ch’ung,Hsi-ch’ung-hsien,Jincheng,Sichun,Sichung,Sichunghsien,Xichong,jin cheng,晋城 30.99712 105.88191 P PPLA3 CN 32 0 332 Asia/Chongqing 2012-01-18
-1805744 Jincheng Jincheng Jincheng,Lei-po,Lei-po-hsien,Leibo,Leipoting,jin cheng,锦城 28.26648 103.56838 P PPLA3 CN 32 0 1211 Asia/Chongqing 2012-01-18
-1805745 Jincheng Jincheng Jincheng,Wu-ting,Wu-ting-hsien,Wuding,Wutingchow,jin cheng,近城 25.50147 102.40058 P PPLA3 CN 29 0 1759 Asia/Chongqing 2012-01-18
-1805746 Jincheng Jincheng Chin-ch'eng,Chin-ch’eng,Chin-ning,Jincheng,Jincheng Zhen,jin cheng,jin cheng zhen,晋城,晋城镇 24.70222 102.74417 P PPLA4 CN 29 0 1911 Asia/Chongqing 2012-01-18
-1805749 Jinbi Jinbi Chin-pi,Chin-pi-chen,Chin-pi-chieh,Jinbi,Ta-yao,Ta-yao-hsien,jin bi,金碧 25.70855 101.33679 P PPLA3 CN 29 0 1859 Asia/Chongqing 2012-01-18
-1805753 Jinan Jinan Chi-nan,Chi-nan-shih,Czinan',Dzinanas,Jinan,Jinan Shi,Li-ch'eng,Li-ch’eng,Te Nam,Tsi-nan-fu,Tsinah,Tsinan,Tể Nam,ji nan,ji nan shi,jinan,Цзинань,جىنەن شەھىرى,济南,济南市,済南,지난 36.66833 116.99722 P PPLA CN 25 2069266 32 Asia/Shanghai 2012-01-18
-1805754 Jin’an Jin'an Jin'an,Jin’an,Songpan,Sung-p'an,Sung-p'an-hsien,Sung-p’an,Sung-p’an-hsien,Sungqu,jin an,进安 32.63941 103.59683 P PPLA3 CN 32 0 2851 Asia/Chongqing 2012-01-18
-1805757 Jimo Jimo Chi-mo,Chi-mo-hsien,Jimo,Tsimo,Tsimohsien,ji mo shi,即墨市 36.38972 120.46222 P PPL CN 25 70733 25 Asia/Shanghai 2012-01-18
-1805773 Jilong Jilong Chi-lung,Chi-lung-hsu,Chi-lung-hsü,Jilong,ji long,吉隆 22.80404 114.9209 P PPLA4 CN 30 0 12 Asia/Chongqing 2012-01-18
-1805790 Jijiazhuang Jijiazhuang Chi-chia-chuang,Jijiazhuang,Jijiazhuang Xiang,ji jia zhuang,ji jia zhuang xiang,吉家庄,吉家庄乡 39.84892 113.45414 P PPLA4 CN 24 0 971 Asia/Shanghai 2012-01-18
-1805798 Jiangjin Jiangjin Chiang-chin,Chiang-ching,Chiang-ching-ch'eng,Chiang-ching-ch’eng,Chiang-ching-hsien,Jiangjin,Jijiang,Kiangtsin,Kiangtsing-hsien 29.29056 106.25417 P PPL CN 33 61161 213 Asia/Chongqing 2012-01-18
-1805826 Jiedu Jiedu Chieh-chu-tu,Jiedu,Jiedu Zhen,Jiezhudu,jie du,jie du zhen,接渡,接渡镇 28.95 117.16667 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1805833 Jiexiu Jiexiu Chieh-hsien,Chieh-hsiu,Chieh-hsiu-hsien,Jiexiu,Jiexiu Shi,Kiehsiu,Kiehsuihsien,jie xiu,jie xiu shi,介休,介休市 37.02444 111.9125 P PPL CN 24 77178 756 Asia/Chongqing 2012-01-18
-1805835 Jietou Jietou Chiatou,Chieh-t'ou,Chieh-t'ou-chen,Chieh-t’ou,Chieh-t’ou-chen,Jietou,Jietou Zhen,jie tou,jie tou zhen,街头,街头镇 29.11588 120.80376 P PPLA4 CN 02 0 97 Asia/Shanghai 2012-01-18
-1805837 Jieting Jieting Jieting,Jieting Zhen,jie ting,jie ting zhen,街亭,街亭镇 29.64428 120.27108 P PPLA4 CN 02 0 28 Asia/Shanghai 2012-01-18
-1805840 Jieshui Jieshui Jieshui,Jieshui Xiang,jie shui,jie shui xiang,界水,界水乡 27.78503 114.75945 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-18
-1805844 Jieshou Jieshou Chieh-shou,Chieh-shou-chen,Chieh-shou-chi,Chieh-shou-shih,Chiehshow,Shou-t'ai,jie shou,jie shou shi,界首,界首市 33.26338 115.36108 P PPL CN 01 1810843 141993 42 Asia/Shanghai 2009-08-19
-1805848 Jieshou Jieshou Chieh-shou,Chieh-shou-shih,Jieshou,Jieshou Zhen,Maotangxia,jie shou,jie shou zhen,mao tang xia,毛塘下,界首,界首镇 26.60666 113.40607 P PPLA4 CN 11 0 108 Asia/Shanghai 2012-02-28
-1805857 Jieshi Jieshi Chieh-shih,Chieh-shih-ch'eng,Chieh-shih-ch’eng,Jieshi,Jieshi Zhen,Kitchioh,jie shi,碣石 22.81338 115.82574 P PPLA4 CN 30 137444 14 Asia/Shanghai 2012-01-18
-1805860 Jiesheng Jiesheng Chiapcheng,Chieh-sheng,Chieh-sheng-so-ch'eng,Chieh-sheng-so-ch'eng-ko,Chieh-sheng-so-ch’eng,Chieh-sheng-so-ch’eng-ko,Jiesheng,Jiesheng Zhen,Siacheng,jie sheng,捷胜 22.71898 115.44565 P PPLA4 CN 30 0 12 Asia/Shanghai 2012-01-18
-1805879 Xinmen Xinmen Chieh-k'ou,Chieh-k’ou,Chiehkouchen,Jiekou,Jiekou Zhen,Kaikow,Kaikowchen,Xinmen,jie kou,jie kou zhen,xin men,新门,街口,街口镇 29.75184 118.72378 P PPLA4 CN 01 0 154 Asia/Shanghai 2012-01-18
-1805880 Jiekou Jiekou Ch'ung-fa,Chieh-k'ou,Chieh-k'ou-chen,Chieh-k’ou,Chieh-k’ou-chen,Ch’ung-fa,Conghua,Jiekou,Ts'ung-hua,Ts'ung-hua-hsien,Tsung-fa-hsien,Tsungfa,Ts’ung-hua,Ts’ung-hua-hsien,cong hua,jie kou,从化,街口 23.54371 113.58039 P PPLA3 CN 30 0 31 Asia/Chongqing 2012-01-18
-1805884 Jiehu Jiehu Chieh-hu,Chieh-hu-chi,I-nan,Jiehu,Yinan 35.54278 118.455 P PPL CN 25 69245 117 Asia/Shanghai 2012-01-18
-1805885 Jieheshi Jieheshi Chieh-ho-shih,Jieheshi,Jieheshi Zhen,jie he shi,jie he shi zhen,街河市,街河市镇 30.01343 111.71464 P PPLA4 CN 12 0 48 Asia/Chongqing 2012-01-18
-1805892 Jieguanting Jieguanting Chieh-kuan-t'ing,Chieh-kuan-t’ing,Jieguanting,Jieguanting Zhen,Tszeguan'tin,Tszeguan’tin,jie guan ting,jie guan ting zhen,接官亭,接官亭镇 33.26806 106.25194 P PPLA4 CN 26 0 834 Asia/Chongqing 2012-01-18
-1805906 Xinjiebu Xinjiebu Chieh-pu,Jiebu,Xinjiebu,Xinjiebu Xiang,xin jie bu,xin jie bu xiang,新界埠,新界埠乡 28.22598 115.0574 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-18
-1805907 Jiebu Jiebu Chieh-pu,Jiebu,Jiebu Xiang,jie bu,jie bu xiang,界埠,界埠乡 27.7694 115.37857 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-18
-1805912 Xinji Xinji Jicun,Xinji,ji cun,xin ji,新济,济村 26.33808 116.55515 P PPLA4 CN 07 0 397 Asia/Shanghai 2012-01-18
-1805926 Jibu Jibu Jibu,Jibu Zhen,ji bu,ji bu zhen,吉埠,吉埠镇 26.02103 115.15694 P PPLA4 CN 03 0 179 Asia/Shanghai 2012-01-18
-1805935 Jiazi Jiazi Chia-tzu,Jiazi,Jiazi Zhen,Kapchi,Kapohi,jia zi,甲子 22.87791 116.06705 P PPLA4 CN 30 130298 13 Asia/Shanghai 2012-01-18
-1805937 Jiazhuang Jiazhuang Chia-chuang,Jiazhuang,Jiazhuang Xiang,gu zhuang,gu zhuang xiang,贾庄,贾庄乡 39.24215 112.53268 P PPLA4 CN 24 0 1072 Asia/Shanghai 2012-01-18
-1805953 Jiaxing Jiaxing Chia-hsing,Chia-hsing-hsien,Chia-hsing-hsien-ch'eng,Chia-hsing-hsien-ch’eng,Chiahsing-Fu,Czjasin,Jiaxing,Ka-shing-fu,Kashing,Kashing-hsien,jia xing,jia xing shi,Цзясин,جياشىڭ شەھىرى,嘉兴,嘉興,嘉興市 30.7522 120.75 P PPLA2 CN 02 466101 8 Asia/Shanghai 2012-01-18
-1805978 Jiaqu Jiaqu Chia-ch'u,Chia-ch'u-chen,Chia-ch’ü,Chia-ch’ü-chen,Jiaqu,gu qu,贾曲 34.91776 109.54189 P PPLA4 CN 26 0 431 Asia/Chongqing 2012-01-18
-1805980 Jiaqiao Jiaqiao Jiaqiao,Jiaqiao Xiang,Jiaqiao Zhen,jia qiao,jia qiao xiang,jia qiao zhen,架桥,架桥乡,架桥镇 29.16692 111.49749 P PPLA4 CN 11 0 52 Asia/Shanghai 2012-01-18
-1805987 Jiaozuo Jiaozuo Chiao-tso,Chiao-tso-chen,Chiao-tso-kung-k'uang-ch'u,Chiao-tso-kung-k’uang-ch’ü,Chiao-tso-shih,Jiaozuo,Tsiaotso,Tszyaotszochzhen 35.23972 113.23306 P PPL CN 09 517540 138 Asia/Shanghai 2012-01-18
-1805988 Jiaoziya Jiaoziya Chiao-tzu-wu,Chiao-tzu-ya,Jiaoziya,Jiaoziya Zhen,jiao zi ya,jiao zi ya zhen,教字垭,教字垭镇 29.28861 110.32222 P PPLA4 CN 11 0 276 Asia/Chongqing 2012-01-18
-1805999 Jiaoyang Jiaoyang Chiao-yang,Jiaoyang,Jiaoyang Xiang,jiao yang,jiao yang xiang,蛟洋,蛟洋乡 25.22789 116.73656 P PPLA4 CN 07 0 658 Asia/Shanghai 2012-01-18
-1806001 Jiaoxie Jiaoxie Chiao-hsieh,Chiao-hsieh-chen,Jiaoxie,Jiaoxie Zhen,jiao xie,交斜 34.66514 109.68596 P PPLA4 CN 26 0 352 Asia/Chongqing 2012-01-18
-1806014 Liuheng Liuheng Chiao-t'ou,Chiao-t’ou,Jiaotou,Jiaotouzhen,Liuheng,Liuheng Zhen,jiao tou zhen,liu heng,liu heng zhen,六横,六横镇,峧头镇 29.74481 122.10896 P PPLA4 CN 02 0 83 Asia/Shanghai 2012-01-18
-1806017 Jiaotang Jiaotang Chiao-t'ang,Chiao-t’ang,Jiaotang,Jiaotang Zhen,jiao tang,jiao tang zhen,蛟塘,蛟塘镇 29.31033 115.92434 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-18
-1806018 Jiaotan Jiaotan Chiao-t'an,Chiao-t'un,Chiao-t’an,Chiao-t’un,Jiaotan,Jiaotan Zhen,jiao tan,jiao tan zhen,蛟潭,蛟潭镇 29.54999 117.21214 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-18
-1806025 Jiaoqiao Jiaoqiao Jiaoqiao,Jiaoqiao Zhen,jiao qiao,jiao qiao zhen,蛟桥,蛟桥镇 28.74552 115.85878 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-18
-1806026 Jiaoqi Jiaoqi Jiaoqi,Jiaoqi Zhen,jiao qi,jiao qi zhen,焦圻,焦圻镇 29.64833 112.08196 P PPLA4 CN 11 0 38 Asia/Shanghai 2012-01-18
-1806041 Jiaocheng Jiaocheng Chen-p'ing,Chen-p’ing,Chiao-ch'eng,Chiao-ch'eng-chen,Chiao-ch’eng,Chiao-ch’eng-chen,Chiao-ling,Chiao-ling-hsien,Chiuling,Chiuling-hsien,Chuiling,Jiaocheng,Jiaoling,jiao cheng,蕉城 24.67741 116.13889 P PPLA3 CN 30 0 128 Asia/Shanghai 2012-01-18
-1806047 Jiaokui Jiaokui I-liang,I-liang-hsien,Jiaokui,Yiliang,Yiliang-hsien,jiao kui,角奎 27.59414 104.00478 P PPLA3 CN 29 0 1256 Asia/Chongqing 2012-01-18
-1806061 Jiaokou Jiaokou Chiao-k'ou,Chiao-k'ou-chen,Chiao-k’ou,Chiao-k’ou-chen,Jiaokou,Jiaokou Zhen,jiao kou,交口 34.55016 109.2968 P PPLA4 CN 26 0 356 Asia/Chongqing 2012-01-18
-1806079 Jiaogong Jiaogong Jiaogong,jiao gong,角弓 33.56547 104.64636 P PPLA4 CN 15 0 1196 Asia/Chongqing 2012-01-18
-1806090 Jiaodai Jiaodai Chiao-tai,Chiao-tai-chen,Jiaodai,Jiaodai Zhen,jiao dai,焦岱 34.05941 109.24639 P PPLA4 CN 26 0 587 Asia/Chongqing 2012-01-18
-1806092 Jiaocun Jiaocun Chiao-ts'un,Chiao-ts’un,Jiaocun,Jiaocun Zhen,jiao cun,jiao cun zhen,焦村,焦村镇 30.19193 118.06678 P PPLA4 CN 01 0 240 Asia/Shanghai 2012-01-18
-1806095 Tianning Tianning Chiao-ch'eng,Chiao-ch'eng-hsien,Chiao-ch’eng,Chiao-ch’eng-hsien,Jiaocheng,Jiaocheng Xian,Kiaochenghsien,Tianning,Tianning Zhen,Tszyaochen,jiao cheng xian,tian ning,tian ning zhen,交城县,天宁,天宁镇 37.54722 112.16053 P PPLA3 CN 24 0 762 Asia/Chongqing 2012-01-18
-1806096 Jiaozhou Jiaozhou Chiao,Chiao-hsien,Jiaocheng,Jiaoxian,Jiaozhou,Kiaochow,Kiaohsien 36.28389 120.00333 P PPL CN 25 165026 10 Asia/Shanghai 2012-01-18
-1806097 Ningde Ningde Jiaocheng,Ning-te,Ning-te-hsien,Ningde,Ningteh,Ningtehhsien,ning de,ning de shi,نىڭدې شەھىرى,宁德,宁德市 26.66167 119.52278 P PPLA2 CN 07 65170 20 Asia/Shanghai 2012-01-18
-1806114 Juzhen Juzhen Chien-chen,Chu-chen,Chü-chen,Jianzhen,Juzhen,Juzhen Zhen,ju zhen,ju zhen zhen,苴镇,苴镇镇 32.41352 121.19427 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1806124 Jiancheng Jiancheng Chien-chou,Chien-yang,Chien-yang-hsien,Jiancheng,Jianyang,Kienchow,Kienchow Nan,Kienyang-hsien,Tszyan'yan,Tszyan’yan,jian cheng,简城 30.39097 104.54912 P PPLA3 CN 32 0 409 Asia/Chongqing 2012-01-18
-1806137 Jiantou Jiantou Jiantou,Jiantou Zhen,jian tou,jian tou zhen,涧头,涧头镇 24.05488 114.69927 P PPLA4 CN 30 0 123 Asia/Chongqing 2012-01-18
-1806138 Jiantiao Jiantiao Chien-t'iao,Chien-t'iao-so,Chien-t'iao-so-ch'eng,Chien-t’iao,Chien-t’iao-so,Chien-t’iao-so-ch’eng,Jiantiao,Jiantiao Zhen,Kientiao,jian tiao,jian tiao zhen,健跳镇,键跳 29.04389 121.6275 P PPLA4 CN 02 0 19 Asia/Shanghai 2012-01-18
-1806141 Jiantianjie Jiantianjie Chien-t'ien,Chien-t’ien,Jiantian,Jiantianjie,Jiantianjie Xiang,jian tian jie,jian tian jie xiang,枧田街,枧田街乡 29.42304 116.98582 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1806146 Lin’an Lin'an Chien-shui,Chien-shui-hsien,Jianshui,Kienshui,Kienshui-hsien,Lin'an,Lin'an Zhen,Linanfu,Lin’an,Lin’an Zhen,lin an,临安 23.60255 102.83092 P PPLA3 CN 29 0 1311 Asia/Chongqing 2012-01-18
-1806157 Jianshan Jianshan Chien-shan,Jianshan,Jianshan Zhen,jian shan,jian shan zhen,尖山,尖山镇 29.22499 120.71623 P PPLA4 CN 02 0 531 Asia/Shanghai 2012-01-18
-1806158 Jianshan Jianshan Jianshan,Jianshan Zhen,jian shan,jian shan zhen,建山,建山镇 28.13042 115.19035 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-18
-1806163 Jianqiao Jianqiao Chien-ch'iao,Chien-ch'iao-chen,Chien-ch’iao,Chien-ch’iao-chen,Jianqiao,Jianqiao Zhen,Kienkiao,jian qiao,jian qiao zhen,笕桥,笕桥镇 30.31955 120.21512 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1806167 Jian’ou Jian'ou Chien-ning,Chien-ou,Chien-ou-hsien,Chien-ou-hsien-ch'eng,Chien-ou-hsien-ch’eng,Jian'ou,Jian’ou,Kienning,Kienningfu,Kienow,Kienowhsien,Zhicheng,jian ou,建瓯 27.04694 118.32528 P PPL CN 07 59187 124 Asia/Shanghai 2012-01-18
-1806176 Tongzilin Tongzilin Jiankang,Tongzilin,Yanbian,Yen-pien,Yen-pien-hsien,tong zi lin,桐子林 26.70039 101.85134 P PPLA3 CN 32 0 1012 Asia/Chongqing 2012-01-18
-1806177 Jianjun Jianjun Chien-chun,Chien-chun-chen,Chien-chün,Chien-chün-chen,Jianjun,Jianjun Zhen,Ku-tun,Yongshou,Yung-shou,Yung-shou-hsien,jian jun,jian jun zhen,yong shou,永寿,监军,监军镇 34.69139 108.13972 P PPLA3 CN 26 0 982 Asia/Chongqing 2012-01-18
-1806180 Jianjiang Jianjiang Chien-chiang,Jianjiang 26.54972 119.755 P PPL CN CN 07 5540 8 Asia/Shanghai 2012-01-18
-1806192 Jiangzhou Jiangzhou Jiangzhou,Jiangzhou Zhen,jiang zhou,jiang zhou zhen,江洲,江洲镇 29.78759 116.12014 P PPLA4 CN 03 0 15 Asia/Shanghai 2012-01-18
-1806200 Jiangzhang Jiangzhang Chiang-chang,Chiang-chang-chen,Jiangzhang,Jiangzhang Zhen,jiang zhang,jiang zhang zhen,绛帐,绛帐镇 34.25974 107.92204 P PPLA4 CN 26 0 472 Asia/Chongqing 2012-01-18
-1806204 Jiangzao Jiangzao Jiangzao,Jiangzao Zhen,jiang zao,jiang zao zhen,姜灶,姜灶镇 31.99424 121.03236 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1806209 Xiaopu Xiaopu Chiang-yung,Jiangyong,Xiaopu,Xiaopuzhen,Yung-ming,Yung-ming-hsien,xiao pu,潇浦 25.23917 111.31664 P PPLA3 CN 11 0 268 Asia/Chongqing 2012-01-18
-1806214 Jiangyi Jiangyi Chiang-i,Jiangyi,Jiangyi Zhen,jiang yi,jiang yi zhen,江益,江益镇 29.21162 115.77263 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-18
-1806218 Jiangyan Jiangyan Chiang-yen,Chiang-yen-chen,Jiangyan,Jiangyan Shi,Jiangyan Zhen,Kiangyen,T'ai-hsien,Taixian,T’ai-hsien,jiang yan,jiang yan shi,jiang yan zhen,姜堰,姜堰市,姜堰镇 32.50611 120.14278 P PPLA3 CN 04 70375 9 Asia/Shanghai 2012-01-18
-1806221 Jiangya Jiangya Chiang-ya,Jiangya,Jiangya Zhen,jiang ya,jiang ya zhen,江垭,江垭镇 29.50428 110.76382 P PPLA4 CN 11 0 153 Asia/Chongqing 2012-01-18
-1806233 Gujiang Gujiang Chang-hsien,Chiang,Chiang-chen,Chiang-hsien,Chiang-hsien-ch'eng,Chiang-hsien-ch’eng,Gujiang,Gujiang Zhen,Jiang Xian,Jiangxian,Kianghsien,Tszyan'syan,Tszyan’syan,gu jiang,gu jiang zhen,jiang xian,古绛,古绛镇,绛县 35.49399 111.55334 P PPLA3 CN 24 0 734 Asia/Chongqing 2012-01-18
-1806240 Jiangwei Jiangwei Jiangwei,Jiangwei Zhen,jiang wei,jiang wei zhen,江尾,江尾镇 24.43761 114.11948 P PPLA4 CN 30 0 144 Asia/Chongqing 2012-01-18
-1806243 Jiangwan Jiangwan Chiang-wan,Jiangwan,Jiangwan Zhen,jiang wan,jiang wan zhen,江湾,江湾镇 29.37194 118.04694 P PPLA4 CN 03 0 119 Asia/Shanghai 2012-01-18
-1806244 Jiangwan Jiangwan Chiang-wan,Jiangwan,Jiangwan Zhen,jiang wan,jiang wan zhen,江湾,江湾镇 24.62622 113.22421 P PPLA4 CN 30 0 231 Asia/Shanghai 2012-02-28
-1806245 Jiangwakou Jiangwakou Chiang-wa-k'ou,Chiang-wa-k’ou,Jiangwakou 39.5225 117.7025 P PPL CN CN 28 2018 0 Asia/Shanghai 2012-01-18
-1806248 Jianguang Jianguang Feng-ch'eng-hsien,Feng-ch’eng-hsien,Fengcheng,Fengcheng Shi,Jianguang,feng cheng,feng cheng shi,丰城,丰城市 28.19377 115.7836 P PPL CN 03 61469 31 Asia/Shanghai 2012-01-18
-1806267 Jiangshi Jiangshi Chiang-shih-chieh,Jiangshi,Tszyansitsze 27.12333 109.73778 P PPL CN CN 11 1510 197 Asia/Chongqing 2012-01-18
-1806272 Jiangshan Jiangshan Chiang-shan,Ching-shan-chen,Jiangshan,Jiangshanzhen,jiang shan,jiang shan zhen,姜山,姜山镇 29.77119 121.53149 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1806274 Jiangshan Jiangshan Jiangshan,Jiangshan Xiang,jiang shan,jiang shan xiang,江山,江山乡 25.18016 116.97328 P PPLA4 CN 07 0 587 Asia/Shanghai 2012-01-18
-1806278 Jiangqiao Jiangqiao Chiang-ch'iao-chen,Chiang-ch’iao-chen,Jiangqiao,jiang qiao,江桥 31.23896 121.32484 P PPLA4 CN 23 0 4 Asia/Shanghai 2012-01-18
-1806295 Jiangna Jiangna Chiang-na,Chiang-na-chen,Jiangna,Kiangna,Yanshan,Yen-shan,Yen-shan-hsien,jiang na,江那 23.6092 104.37312 P PPLA3 CN 29 0 1583 Asia/Chongqing 2012-01-18
-1806299 Jiangmen Jiangmen Chiang-men,Chiang-men-ch'eng,Chiang-men-ch’eng,Chiang-men-shih,Czjanmehn',Hsin-hui,Hsin-hui-hsien,Jiangmen,Kongmoon City,Kongmun,Pakhai,Sunwui,jiang men,jiang men shi,Цзянмэнь,江门,江门市 22.58333 113.08333 P PPLA2 CN 30 532419 11 Asia/Chongqing 2012-01-18
-1806300 Jiangluo Jiangluo Chiang-lang-pa,Chiang-lo-chen,Chiang-lo-pa,Jiangluo,Jiangluo Zhen,Jiangluozhen,Tszyanlanba,jiang luo,jiang luo zhen,江洛,江洛镇 33.90139 105.82194 P PPLA4 CN 15 0 1175 Asia/Chongqing 2012-01-18
-1806309 Jiangkou Jiangkou Chiang-k'ou,Chiang-k'ou-chen,Chiang-k’ou,Chiang-k’ou-chen,Jiangkou,Jiangkou Zhen,Tszyankouchzhen',Tszyankouchzhen’,jiang kou,jiang kou zhen,江口,江口镇 33.73052 107.05002 P PPLA4 CN 26 0 1106 Asia/Chongqing 2012-01-18
-1806311 Jiangkou Jiangkou Chiang-k'ou,Chiang-k'ou-chen,Chiang-k’ou,Chiang-k’ou-chen,Jiangkou,P'ing-ch'ang-she-chih-chu,Pingchang,P’ing-ch’ang-she-chih-chü,Tszyankou,jiang kou,江口 31.56506 107.09736 P PPLA3 CN 32 0 379 Asia/Chongqing 2012-01-18
-1806314 Jiangkou Jiangkou Jiangkou,Jiangkou Zhen,San-chiang-k'ou,San-chiang-k’ou,jiang kou,jiang kou zhen,江口,江口镇 29.7329 121.40367 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1806319 Jiangkouxu Jiangkouxu Chiang-k'ou,Chiang-k’ou,Jiangkou,Jiangkouxu,Kiangkow 27.69417 109.73583 P PPL CN CN 11 1450 174 Asia/Chongqing 2012-01-18
-1806325 Jiangkou Jiangkou Hsin-feng-chiang-k'ou,Hsin-feng-chiang-k’ou,Jiangkou,Jiangkou Zhen,jiang kou,jiang kou zhen,江口,江口镇 25.95701 115.13302 P PPLA4 CN 03 0 120 Asia/Shanghai 2012-01-18
-1806327 Jiangkou Jiangkou Chiang-k'ou,Chiang-k’ou,Jiangkou,Kiang-k'ou,Kiang-k’ou,Kiangkow 25.48722 119.19861 P PPL CN 07 59902 13 Asia/Shanghai 2012-01-18
-1806333 Jiangkou Jiangkou Chiang-k'ou,Chiang-k'ou-chen,Chiang-k'ou-hsu,Chiang-k’ou,Chiang-k’ou-chen,Chiang-k’ou-hsü,Fengkai,Jiangkou,Te-feng,jiang kou,江口 23.43843 111.49683 P PPLA3 CN 30 0 33 Asia/Chongqing 2012-01-18
-1806359 Jiangfang Jiangfang Jiangfang,Jiangfang Xiang,Jiangjiafang 26.495 110.34472 P PPL CN CN 11 1120 455 Asia/Chongqing 2012-01-18
-1806364 Jiangbu Jiangbu Chiang-chia-pu,Jiangbu,Jiangbu Xiang,Jiangjiabu,jiang bu,jiang bu xiang,江埠,江埠乡 28.63102 116.57959 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1806367 Jiangjia Jiangjia Jiangjia,Jiangjia Zhen,jiang jia,jiang jia zhen,姜家,姜家镇 29.47715 118.66139 P PPLA4 CN 02 0 113 Asia/Shanghai 2012-01-18
-1806374 Jianghua Jianghua Chiang-hua-ch'iao,Chiang-hua-ch’iao,Jianghua,Jianghua Zhen,Jianghuaqiao,jiang hua,jiang hua zhen,蒋华,蒋华镇 32.07342 120.00895 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1806383 Jianggang Jianggang Ch'iang-chiang,Ch'iang-kang,Ch’iang-chiang,Ch’iang-kang,Jianggang,Jianggang Zhen,Nan-ch'iang,Nan-ch’iang,jiang gang,jiang gang zhen,弶港,弶港镇 32.75861 120.83417 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1806388 Jiangduo Jiangduo Chiang-to,Chiang-to-chen,Jiangduo,Jiangduo Zhen,jiang duo,jiang duo zhen,蒋垛,蒋垛镇 32.36608 120.24107 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1806390 Gangdong Gangdong Chiang-tung,Gangdong,Jiangdong 27.91694 110.83417 P PPL CN CN 11 1380 413 Asia/Chongqing 2012-01-18
-1806400 Jiangcun Jiangcun Chiang-ts'un,Chiang-ts’un,Jiangcun,Jiangcun Xiang,Ta-chiang-ts'un,Ta-chiang-ts’un,jiang cun,jiang cun xiang,江村,江村乡 29.772 117.36318 P PPLA4 CN 03 0 75 Asia/Shanghai 2012-01-18
-1806407 Jiangcheng Jiangcheng Chiang-ch'eng,Chiang-ch'uan,Chiang-ch'uan-hsien,Chiang-ch’eng,Chiang-ch’uan,Chiang-ch’uan-hsien,Chiu-chiang-ch'uan,Chiu-chiang-ch’uan,Jiangcheng,Jiangcheng Zhen,Kiangchwan,Kiangchwan-hsien,jiang cheng,jiang cheng zhen,江城,江城镇 24.42417 102.805 P PPLA4 CN 29 0 1735 Asia/Chongqing 2012-01-18
-1806408 Yangjiang Yangjiang Chiang-ch'eng-chen,Chiang-ch’eng-chen,Janczjan,Jiangcheng,Liang-yang,Yang-chiang,Yang-chiang-hsien,Yangjiang,Yeungkong,Yeungkong-hsien,yang jiang,yang jiang shi,Янцзян,阳江,阳江市 21.85 111.96667 P PPLA2 CN 30 399735 29 Asia/Chongqing 2012-01-18
-1806412 Jiangbei Jiangbei Chiang-pei-hsu,Chiang-pei-hsü,Jiangbei,Jiangbei Zhen,Jiangbeixu,jiang bei,jiang bei zhen,江背,江背镇 26.30117 115.48257 P PPLA4 CN 03 0 176 Asia/Shanghai 2012-01-18
-1806421 Jiang’an Jiang'an Jiang'an,Jiang'an Qu,Jiang’an,Jiang’an Qu,jiang an,jiang an qu,江岸,江岸区 30.6089 114.30683 P PPLA3 CN 12 0 35 Asia/Shanghai 2011-08-07
-1806422 Jiang’an Jiang'an Chiang-an,Chiang-an-hsien,Jiang'an,Jiang’an,Kiangan,Kiangan-hsien,jiang an,江安 28.73335 105.0683 P PPLA3 CN 32 0 282 Asia/Chongqing 2012-01-18
-1806426 Jianfeng Jianfeng Jianfeng,Jianfeng Xiang,jian feng,jian feng xiang,尖峰,尖峰乡 26.75078 116.47676 P PPLA4 CN 03 0 291 Asia/Shanghai 2012-01-18
-1806427 Jianfeng Jianfeng Chien-feng,Jianfeng,Jianfeng Zhen,Jianfengling,jian feng,jian feng zhen,尖峰,尖峰镇 18.69391 108.79149 P PPLA4 CN 31 0 58 Asia/Chongqing 2012-01-18
-1806439 Jianchang Jianchang Chien-ch'ang,Chien-ch’ang,Jianchang,Jianchang Zhen,Kienchang,Kienchangfu,Nan-ch'eng-hsien,Nan-ch’eng-hsien,Nancheng,Nancheng Xian,jian chang,jian chang zhen,nan cheng xian,南城县,建昌,建昌镇 27.55831 116.63978 P PPLA3 CN 03 0 78 Asia/Shanghai 2012-01-18
-1806445 Ji’an Ji'an Chi-an,Chi-an-shih,Czian',Ji'an,Ji'an Shi,Ji’an,Ji’an Shi,Kian,Kian-hsien,Kianfu,Luling,ji an,ji an shi,Цзиань,吉安,吉安市 27.11716 114.97927 P PPLA2 CN 03 245000 72 Asia/Shanghai 2012-01-18
-1806449 Jiamiao Jiamiao Jiamiao,Jiamiao Xiang,gu miao,gu miao xiang,贾庙,贾庙乡 30.79618 115.08198 P PPLA4 CN 12 0 173 Asia/Shanghai 2012-01-18
-1806450 Jiamaying Jiamaying Cha-ma-ying,Chia-ma-ying,Chiama,Jiamaying 37.20806 115.95 P PPL CN CN 25 1836 30 Asia/Shanghai 2012-01-18
-1806459 Jialu Jialu Chia-lu,Jialu,Jialu Zhen,jia lu,jia lu zhen,甲路,甲路镇 30.42682 118.84631 P PPLA4 CN 01 0 172 Asia/Shanghai 2012-01-18
-1806460 Jialou Jialou Chia-lou,Jialou,Kialow,Shen-lou,Tszyalou,gu lou,贾楼 32.89474 113.45072 P PPLA4 CN 09 0 140 Asia/Chongqing 2012-01-18
-1806466 Guangyuan Guangyuan Guangyuan,Jialing,Kuan-yuan,Kuan-yüan,Kuang-yuan,Kuang-yuan-hsien,Kuang-yüan,Kuang-yüan-hsien,Kwangyuan,Kwangyuanhsien,Kwangyüan,Kwangyüanhsien,guang yuan,广元 32.44202 105.823 P PPL CN 32 213365 525 Asia/Chongqing 2012-01-18
-1806470 Jiale Jiale Jiale,Jiale Zhen,jia le,jia le zhen,加乐,加乐镇 19.58621 109.99753 P PPLA4 CN 31 0 102 Asia/Chongqing 2012-01-18
-1806471 Jialai Jialai Chia-lai,Jialai,Jialai Zhen,Ka lai,Kialoi,jia lai,jia lai zhen,加来,加来镇 19.70806 109.69556 P PPLA4 CN 31 0 76 Asia/Chongqing 2012-01-18
-1806483 Yancheng Yancheng Chia-chiang,Chia-chiang-hsien,Jiajiang,Kiakiang,Kiakiang-hsien,Yancheng,yan cheng,漹城 29.74357 103.56679 P PPLA3 CN 32 0 415 Asia/Chongqing 2012-01-18
-1806488 Jiaji Jiaji Ch'iung-hai,Ch'iung-tung,Ch'iung-tung-hsien,Chia-chi,Chia-chi-chen,Chia-chi-shih,Ch’iung-hai,Ch’iung-tung,Ch’iung-tung-hsien,Jiaji,Jiaji Zhen,Kachek,Katchek,Qionghai,Qionghai Shi,jia ji,jia ji zhen,qiong hai shi,嘉积,嘉积镇,琼海市 19.2425 110.46417 P PPLA3 CN 31 0 24 Asia/Chongqing 2012-01-18
-1806491 Jiahu Jiahu Jiahu,Jiahu Xiang,jia hu,jia hu xiang,夹湖,夹湖乡 24.71015 114.65288 P PPLA4 CN 03 0 280 Asia/Chongqing 2012-01-18
-1806508 Jiading Jiading Chia-tang,Chia-ting,Chia-ting-hsien,Jiading,Jiadingzhen,Jiadingzhen Jiedao,Kiating,Kiating Ku,jia ding,jia ding zhen,jia ding zhen jie dao,嘉定,嘉定镇,嘉定镇街道 31.38806 121.23972 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-18
-1806515 Jiacun Jiacun Chia-ts'un,Chia-ts'un-chen,Chia-ts’un,Chia-ts’un-chen,Jiacun,Jiacun Zhen,gu cun,gu cun zhen,贾村,贾村镇 34.45294 107.20425 P PPLA4 CN 26 0 841 Asia/Chongqing 2012-01-18
-1806516 Jiachuan Jiachuan Chia-ch'uan,Chia-ch'uan-chen,Chia-ch’uan,Chia-ch’uan-chen,Jiachuan,Jiachuan Zhen,jia chuan,jia chuan zhen,嘉川,嘉川镇 32.20907 106.21494 P PPLA4 CN 32 0 500 Asia/Chongqing 2012-01-18
-1806535 Huzhou Huzhou Hu-chou,Hu-chou-shih,Huchow,Huchowfu,Huhinghsien,Huzhou,Huzhou Shi,Wu-hsing,Wu-hsing-hsien,Wu-hsing-hsien-ch'eng,Wu-hsing-hsien-ch’eng,Wuhing,Wuxing,Wuxing Qu,hu zhou,hu zhou shi,wu xing,wu xing qu,吴兴,吴兴区,湖州,湖州市 30.8703 120.0933 P PPLA2 CN 02 158320 6 Asia/Shanghai 2012-01-18
-1806545 Huyuan Huyuan Huyuan,Huyuan Xiang,hu yuan,hu yuan xiang,湖源,湖源乡 26.12944 117.76956 P PPLA4 CN 07 0 827 Asia/Shanghai 2012-01-18
-1806546 Huyu Huyu Hu-yu-ts'un,Hu-yü-ts’un,Huyu,Huyu Xiang,hu yu,hu yu xiang,胡峪,胡峪乡 39.20052 113.10261 P PPLA4 CN 24 0 1042 Asia/Shanghai 2012-01-18
-1806553 Huyang Huyang Huyang,T'ang-kou,T'ang-kou-chen,T’ang-kou,T’ang-kou-chen,hu yang,湖阳 31.38692 118.82325 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-18
-1806555 Huyang Huyang Huyang,Huyang Xiang,hu yang,hu yang xiang,湖洋,湖洋乡 25.04297 116.31957 P PPLA4 CN 07 0 270 Asia/Shanghai 2012-01-18
-1806559 Huxiaoqiao Huxiaoqiao Hu-hsiao-ch'iao,Hu-hsiao-ch'iao-chen,Hu-hsiao-ch’iao,Hu-hsiao-ch’iao-chen,Huanggu Zhen,Huxiaoqiao,hu xiao qiao,huang gu zhen,虎啸桥,黄姑镇 30.6704 121.15724 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1806561 Ganting Ganting Ganting,Ganting Zhen,Hu,Hu-hsien,Huxian,Khusyan,gan ting,gan ting zhen,hu xian,户县,甘亭,甘亭镇 34.10111 108.59444 P PPLA3 CN 26 0 417 Asia/Chongqing 2012-01-18
-1806564 Huxi Huxi Hu-hsi,Huxi,Huxi Zhen,hu xi,hu xi zhen,湖溪,湖溪镇 29.17929 120.39096 P PPLA4 CN 02 0 149 Asia/Shanghai 2012-01-18
-1806589 Hutang Hutang Hu-t'ang,Hu-t'ang-ch'iao,Hu-t’ang,Hu-t’ang-ch’iao,Hutang,Hutangqiao,hu tang,湖塘 31.73826 119.98161 P PPLA3 CN 04 0 6 Asia/Shanghai 2012-01-18
-1806591 Hutang Hutang 31.53333 119.48333 P PPL CN 04 56370 0 Asia/Shanghai 2006-01-17
-1806594 Mishixiang Mishixiang Hushu,Mishixiang,Mishixiang Jiedao,mi shi xiang,mi shi xiang jie dao,米市巷,米市巷街道 30.29483 120.14342 P PPLA4 CN 02 0 17 Asia/Shanghai 2012-01-18
-1806602 Xushan Xushan Cixi,Cixi Shi,Hu-shan-chen,Hu-shan-so-ch'eng,Hu-shan-so-ch’eng,Hushan,Tz'u-ch'i,Tz'u-hsi,Tz’u-ch’i,Tz’u-hsi,Xushan,Xushan Jiedao,ci xi,ci xi shi,hu shan,hu shan jie dao,慈溪,慈溪市,浒山,浒山街道 30.1764 121.2457 P PPLA3 CN 02 0 11 Asia/Shanghai 2012-01-18
-1806605 Hushan Hushan Hushan,Hushan Xiang,gu shan,gu shan xiang,鹄山,鹄山乡 28.06788 115.00417 P PPLA4 CN 03 0 61 Asia/Shanghai 2012-01-18
-1806617 Huping Huping Huping,Huping Xiang,hu ping,hu ping xiang,湖坪,湖坪乡 27.19299 115.74799 P PPLA4 CN 03 0 144 Asia/Shanghai 2012-01-18
-1806619 Huozhuangzi Huozhuangzi 39.28806 117.3125 P PPL CN 28 2413 6 Asia/Shanghai 2000-11-21
-1806627 Huotong Huotong Ho-t'ung,Ho-t’ung,Huo-t'ung,Huo-t’ung,Huotong 26.84972 119.41806 P PPL CN CN 07 8450 43 Asia/Shanghai 2012-01-18
-1806643 Huoshaodian Huoshaodian Huo-shao-tien,Huoshaodian,huo shao dian,火烧店 33.54242 106.91994 P PPLA4 CN 26 0 1072 Asia/Chongqing 2012-01-18
-1806646 Hengshan Hengshan Hengshan,Ho-shan,Ho-shan-hsien,Huoshan,Hwoshan,Hwoshanhsien,Khoshan,heng shan,衡山 31.40802 116.31866 P PPLA3 CN 01 0 67 Asia/Shanghai 2012-01-18
-1806651 Huoqiu Chengguanzhen Huoqiu Chengguanzhen Ho-ch'iu,Ho-ch'iu-hsien,Ho-ch’iu,Ho-ch’iu-hsien,Huo-ch'iu,Huo-ch’iu,Huoqiu,Huoqiu Chengguanzhen,Hwokiu,Hwokiu-hsien,huo qiu cheng guan zhen,霍邱城关镇 32.35473 116.2939 P PPLA3 CN 01 61904 30 Asia/Shanghai 2012-01-18
-1806653 Huomachong Huomachong Huo-ma-ch'ung,Huo-ma-ch’ung,Huomachong 27.88333 110.23 P PPL CN CN 11 1930 178 Asia/Chongqing 2012-01-18
-1806661 Huoli Huoli Ho-li,Ho-li-chen,Houli Zhen,Huoli,huo li,huo li zhen,霍里,霍里镇 31.69166 118.57722 P PPLA4 CN 01 0 31 Asia/Shanghai 2012-01-18
-1806675 Huogezhuang Huogezhuang 39.74389 117.3675 P PPL CN 28 1474 8 Asia/Harbin 2000-11-21
-1806684 Huochang Huochang Huochang,Huochang Tujiazuxiang,huo chang,huo chang tu jia zu xiang,火场,火场土家族乡 28.92897 110.54476 P PPLA4 CN 11 0 283 Asia/Chongqing 2012-01-18
-1806687 Yong’an Yong'an Hun-yuan-hsien,Hun-yüan-hsien,Hunyuan Xian,Khun'yuan',Khun’yuan’,Yong'an,Yong'an Zhen,Yong’an,Yong’an Zhen,hun yuan xian,yong an,yong an zhen,永安,永安镇,浑源县 39.69571 113.68708 P PPLA3 CN 24 0 1093 Asia/Shanghai 2012-01-18
-1806696 Humen Humen Fumunchai,Fumuntschai,Hu-men-chai,Hu-nien,Humen,Humen Zhen,Khumehn',hu men,Хумэнь,虎门 22.81898 113.67306 P PPLA4 CN 30 191891 20 Asia/Chongqing 2012-01-18
-1806715 Huliao Huliao Dapu,Hu-liao-hsu,Hu-liao-hsü,Huliao,Huliaoxu,Ta-pu,Ta-pu-hsien,hu liao,湖寮 24.38089 116.64932 P PPLA3 CN 30 0 258 Asia/Shanghai 2012-01-18
-1806719 Hule Hule Holossu,Hu-le-ssu,Hu-lo-ssu,Hu-lo-ssu-chen,Hule,Hule Zhen,Hulesi,hu le,hu le zhen,胡乐,胡乐镇 30.35335 118.77279 P PPLA4 CN 01 0 163 Asia/Shanghai 2012-01-18
-1806724 Hukou Hukou Hu-k'ou-hsu,Hu-k’ou-hsü,Hukou,Hukou Zhen,Hukouxu,hu kou,hu kou wei,hu kou zhen,湖口,湖口圩,湖口镇 26.60629 113.65161 P PPLA4 CN 11 0 125 Asia/Shanghai 2012-02-28
-1806725 Hukou Hukou Hukou,Hukou Zhen,hu kou,hu kou zhen,湖口,湖口镇 25.17812 114.39622 P PPLA4 CN 30 0 129 Asia/Shanghai 2012-02-28
-1806728 Hukeng Hukeng Hukeng,Hukeng Zhen,hu keng,hu keng zhen,浒坑,浒坑镇 27.47302 114.30843 P PPLA4 CN 03 0 235 Asia/Chongqing 2012-01-18
-1806753 Huji Huji Hu-chia-chi,Huji,Huji Zhen,Hujiaji,hu ji,hu ji zhen,胡集,胡集镇 32.51667 120.38333 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1806755 Hujiagou Hujiagou Hu-chia-kou,Hujiagou,Sanhu,Sanhu Xiang,hu jia gou,san hu xiang,三胡乡,胡家沟 29.57407 109.32332 P PPLA4 CN 12 0 547 Asia/Chongqing 2012-01-18
-1806757 Hujiadun Hujiadun Hu-chia-tun,Hu-chia-tun-chen,Hu-ho,Huhe Zhen,Huhezhen,Hujiadun,hu he zhen,hu jia dun,护河镇,护驾墩 31.51014 118.58986 P PPLA4 CN 01 0 12 Asia/Shanghai 2012-01-18
-1806763 Hujiaba Hujiaba Hu-chia-pa,Hujiaba,Hujiaba Zhen,hu jia ba,hu jia ba zhen,胡家坝,胡家坝镇 32.97759 106.46881 P PPLA4 CN 26 0 655 Asia/Chongqing 2012-01-18
-1806773 Huji Huji Hu-chi,Huji,Huji Zhen,hu ji,hu ji zhen,胡集,胡集镇 31.43333 112.31528 P PPLA4 CN 12 0 85 Asia/Chongqing 2012-01-18
-1806776 Huizhou Huizhou Hui-chou,Hui-chou-ch'eng,Hui-chou-chen,Hui-chou-ch’eng,Hui-chou-shih,Hui-yang,Hui-yang-hsien,Huichou-fu,Huizhou,Khuehjchzhou,Kuei-shan,Waichow,Waichowfu,Waiyeung,Weichow,hui zhou,hui zhou shi,Хуэйчжоу,恵州,恵州市,惠州,惠州市 23.08333 114.4 P PPLA2 CN 30 289201 23 Asia/Chongqing 2012-01-18
-1806788 Huixian Chengguanzhen Huixian Chengguanzhen Chengguan Zhen,Hui,Hui-ch'eng,Hui-ch’eng,Hui-hsien,Hui-hsien-ch'eng,Hui-hsien-ch’eng,Huixian,Huixian Chengguanzhen,Khuysyan',Khuysyan’,cheng guan zhen,hui xian,hui xian cheng guan zhen,城关镇,徽县,徽县城关镇 33.76833 106.08083 P PPLA3 CN 15 0 911 Asia/Chongqing 2012-01-18
-1806792 Huiwen Huiwen Huiwen,Huiwen Zhen,hui wen,hui wen zhen,会文,会文镇 19.46337 110.72464 P PPLA4 CN 31 0 20 Asia/Chongqing 2012-01-18
-1806802 Huishungou Huishungou Hui-shun-kou,Huishungou,hui shun gou,辉顺沟 38.71238 112.41095 P PPLA4 CN 24 0 2089 Asia/Chongqing 2012-01-18
-1806807 Huishi Huishi Hui-ning-hsien,Huining,Huishi,Huishi Zhen,Khuynin,hui shi,会师 35.69196 105.04858 P PPLA3 CN 15 0 1730 Asia/Chongqing 2012-01-18
-1806810 Xinshichang Xinshichang Huishan,Huishan Zhen,Xinshichang,hui shan zhen,xin shi chang,回山镇,新市场 29.27986 120.80674 P PPLA4 CN 02 0 428 Asia/Shanghai 2012-01-18
-1806830 Huilongshan Huilongshan Chiung-lung-shan,Hui-lung-shan,Huilongshan,Huilongshan Zhen,hui long shan,hui long shan zhen,回龙山,回龙山镇 30.61804 114.97699 P PPLA4 CN 12 0 58 Asia/Shanghai 2012-01-18
-1806840 Huilong Huilong Ch'i-tung,Ch'i-tung-hsien,Chen-yang-shih,Ch’i-tung,Ch’i-tung-hsien,Huilong,Huilong Zhen,Kvidonga,Qidong,Qidong Shi,Wei-tung-chen,Weidong,hui long,hui long zhen,qi dong,qi dong shi,Квидонга,启动,启动市,汇龙,汇龙镇 31.81111 121.655 P PPLA3 CN 04 74818 7 Asia/Shanghai 2012-01-18
-1806842 Huilong Huilong Hui-lung,Huilong,Huilong Zhen,hui long zhen,迴龙镇 27.48073 118.40753 P PPLA4 CN 07 0 180 Asia/Shanghai 2012-01-18
-1806854 Huili Chengguanzhen Huili Chengguanzhen Hui-li-hsien,Huili,Huili Chengguanzhen,Hweili,Hweili-hsien,Hweilichow,hui li,hui li cheng guan zhen,会理,会理城关镇 26.66256 102.24392 P PPLA3 CN 32 0 1798 Asia/Chongqing 2012-01-18
-1806857 Huikou Huikou Huikou,Huikou Zhen,Huikoujie,hui kou,hui kou zhen,汇口,汇口镇 29.81832 116.24537 P PPLA4 CN 01 0 18 Asia/Shanghai 2012-01-18
-1806869 Huifeng Huifeng Hui-feng-chen,Huifeng,Huifeng Xiang,Huifeng Zhen,Huifengzhen,hui feng,hui feng zhen,惠丰,惠丰镇 31.78473 121.63335 P PPLA4 CN 04 0 0 Asia/Shanghai 2012-01-18
-1806875 Huidong Huidong Ch'ien-chin-kung-she,Ch’ien-chin-kung-she,Hui-tung,Huidong,Hweitung,Ts'an-yu-kuan,Ts'an-yu-pa,Ts’an-yü-kuan,Ts’an-yü-pa,Ying-p'an,Ying-p’an,hui dong,会东 26.63745 102.57568 P PPLA3 CN 32 0 1676 Asia/Chongqing 2012-01-18
-1806880 Huicheng Huicheng Hsi-hsien,Hui-ch'eng-chen,Hui-chou,Hui-ch’eng-chen,Huicheng,Huicheng Zhen,Hweichow,Hweichow Sihsen,She,She-hsien,She-hsin,Shexian,Sihsien,hui cheng,hui cheng zhen,she xian,徽城,徽城镇,歙县 29.86925 118.43364 P PPLA3 CN 01 0 133 Asia/Shanghai 2012-01-18
-1806881 Huicheng Huicheng Hui-ch'eng-chen,Hui-ch’eng-chen,Hui-lai-hsien,Huicheng,Huilai,Hweilai,Hweilai-hsien,hui cheng,惠城 23.03845 116.28988 P PPLA3 CN 30 125919 10 Asia/Shanghai 2012-01-18
-1806882 Xinhui Xinhui Chiu-hsin-hui,Hsin-hui,Hsin-hui Old City,Hsin-hui-chiu-ch'eng,Hsin-hui-chiu-ch’eng,Hsin-hui-hsien,Hsin-hui-ku-chih,Hui-ch'eng-chen,Hui-ch’eng-chen,Huicheng,Sanwui,Sun-hui,Sun-wei,Sunweihsien,Sunwui,Sunwui Old City,Xinhui,xin hui,新会 22.456 113.0482 P PPL CN 30 195129 0 Asia/Chongqing 2012-01-18
-1806887 Huibu Huibu Hui-pu,Huibu,Huibu Xiang,hui bu,hui bu xiang,会埠,会埠乡 28.72563 115.18163 P PPLA4 CN 03 0 61 Asia/Shanghai 2012-01-18
-1806888 Huibu Huibu Hui-pu,Huibu,Huibu Zhen,hui bu,hui bu zhen,灰埠,灰埠镇 28.29409 115.25187 P PPLA4 CN 03 0 59 Asia/Shanghai 2012-01-18
-1806904 Longquan Longquan Hu-kuan,Hu-kuan-hsien,Huguan,Huguan Xian,Hukwanhsien,Khuguan,Longquan,Longquan Zhen,hu guan xian,long quan,long quan zhen,壶关县,龙泉,龙泉镇 36.11736 113.18571 P PPLA3 CN 24 0 1111 Asia/Shanghai 2012-01-18
-1806914 Hufang Hufang Hufang,Hufang Zhen,hu fang,hu fang zhen,湖坊,湖坊镇 28.16222 117.55018 P PPLA4 CN 03 0 75 Asia/Shanghai 2012-01-18
-1806916 Hufang Hufang Hufang,Hufang Zhen,hu fang,hu fang zhen,胡坊,胡坊镇 26.21804 117.22912 P PPLA4 CN 07 0 452 Asia/Shanghai 2012-01-18
-1806923 Hudong Hudong Hudong,Hudong Xiang,hu dong,hu dong xiang,虎洞,虎洞乡 36.549 106.97219 P PPLA4 CN 15 0 1430 Asia/Chongqing 2012-01-18
-1806924 Hudong Hudong Hudong,Hudong Zhen,hu dong,湖东 22.81802 115.94998 P PPLA4 CN 30 0 3 Asia/Shanghai 2012-01-18
-1806934 Hucun Hucun Hu-ts'un,Hu-ts’un,Hucun,Hucun Zhen,hu cun,hu cun zhen,湖村,湖村镇 26.35045 116.84618 P PPLA4 CN 07 0 422 Asia/Shanghai 2012-01-18
-1806951 Hubei Hubei Hu-pei,Hu-pei-ts'un,Hu-pei-ts’un,Hubei,Hubei Xiang,Khubehj,hu bei,hu bei xiang,Хубэй,虎北,虎北乡 38.99842 112.01144 P PPLA4 CN 24 0 1552 Asia/Chongqing 2012-01-18
-1806960 Huazhou Huazhou Fachow,Fahsien,Fu-ch'eng-chen,Fu-ch’eng-chen,Hau-hsien,Hua,Hua-chou,Hua-hsien,Huazhou 21.63333 110.58333 P PPL CN 30 91701 35 Asia/Chongqing 2012-01-18
-1806976 Huayuan Huayuan Hua-yuan-shih,Hua-yüan-shih,Huayuan,Hwayuan,Hwayüan,hua yuan,花园 31.31422 114.01775 P PPLA3 CN 12 0 40 Asia/Shanghai 2012-01-18
-1806977 Huayuan Huayuan Hua-yuan-chen,Hua-yuan-hsien,Hua-yüan-chen,Hua-yüan-hsien,Huayuan,Yang-sui,Yung-sui,Yung-sui-hsien,hua yuan,花垣 28.61667 109.46667 P PPLA3 CN 11 0 432 Asia/Chongqing 2012-01-18
-1806978 Huayuan Huayuan Hua-yuan-shih,Hua-yüan-shih,Huayuan,Khuayuan'shi,Khuayuan’shi 26.91361 110.53583 P PPL CN CN 11 1540 343 Asia/Chongqing 2012-01-18
-1806986 Shuanghejiedao Shuanghejiedao Huaying,Shuang-ho,Shuanghe,Shuanghejiedao,shuang he jie dao,双河街道 30.37448 106.77266 P PPLA3 CN 32 0 256 Asia/Chongqing 2012-01-18
-1806993 Huayang Huayang Hua-yang-ch'uan,Hua-yang-ch’uan,Huayang,hua yang,华阳 34.41553 109.99386 P PPLA4 CN 26 0 1390 Asia/Chongqing 2012-01-18
-1806996 Huayang Huayang Chi-ch'i,Chi-ch'i-hsien,Chi-ch’i,Chi-ch’i-hsien,Chi-hsi,Chiki,Chikihsien,Huayang,Huayang Zhen,Jixi,hua yang,hua yang zhen,华阳,华阳镇 30.07087 118.59032 P PPLA3 CN 01 0 175 Asia/Shanghai 2012-01-18
-1807005 Huazhou Huazhou Hua,Hua-hsien,Hua-hsien-ch'eng,Hua-hsien-ch’eng,Huaxian,Huazhou,Huazhou Zhen,Hwahsien,Khuasyan,hua zhou,hua zhou zhen,华州,华州镇 34.51522 109.75759 P PPLA3 CN 26 0 350 Asia/Chongqing 2012-01-18
-1807012 Huaxijie Huaxijie Hua-hsi-chen,Huaxi Zhen,Huaxijie,hua xi jie,hua xi zhen,华溪街,华溪镇 24.07501 103.01398 P PPLA4 CN 29 0 1459 Asia/Chongqing 2012-01-18
-1807041 Huarong Huarong Hua-jung,Hua-jung-chen,Huarong,hua rong,hua rong zhen,华容,华容镇 30.53333 114.73333 P PPLA3 CN 12 0 41 Asia/Shanghai 2012-01-18
-1807042 Huarong Chengguanzhen Huarong Chengguanzhen Hua-jung,Hua-jung-hsien,Huarong,Huarong Chengguanzhen,Hwajung-hsien,Hwayunghsien,hua rong cheng guan zhen,华容城关镇 29.51889 112.54837 P PPLA3 CN 11 0 27 Asia/Chongqing 2012-01-18
-1807043 Huaqiuba Huaqiuba Hua-ch'iu,Hua-ch'iu-pa,Hua-ch’iu,Hua-ch’iu-pa,Huaqiu,Huaqiuba 28.12528 106.61083 P PPL CN CN 18 1212 1172 Asia/Chongqing 2012-01-18
-1807046 Huajiaqiao Huajiaqiao Hua-chia-ch'iao-chen,Hua-chia-ch’iao-chen,Huajiaqiao,Huaqiao,Huaqiao Zhen,hua jia qiao,hua qiao,hua qiao zhen,花家桥,花桥,花桥镇 31.30389 121.07611 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1807053 Huaqiao Huaqiao Hua-ch'iao,Hua-ch’iao,Huaqiao,Huaqiao Zhen,hua qiao,hua qiao zhen,画桥,画桥镇 28.51614 117.04288 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-18
-1807054 Huaqiao Huaqiao Hua-ch'iao,Hua-ch’iao,Huaqiao,Huaqiao Xiang,hua qiao,hua qiao xiang,花桥,花桥乡 28.53491 114.95941 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-18
-1807058 Huaqiao Huaqiao Hua-ch'iao,Hua-ch’iao,Huaqiao 27.70806 110.14194 P PPL CN CN 11 2240 270 Asia/Chongqing 2012-01-18
-1807082 Huantuo Huantuo 39.2225 117.31361 P PPL CN 28 6561 4 Asia/Shanghai 2000-11-21
-1807095 Fenghuangshan Fenghuangshan Fenghuangshan,Hua-nien,Huanian,Huanian Zhen,feng huang shan,hua nian,hua nian zhen,凤凰山,化念,化念镇 24.07966 102.20657 P PPLA4 CN 29 0 1133 Asia/Chongqing 2012-01-18
-1807102 Huangzhuang Huangzhuang Huang-chuang,Huang-chuang-chen,Huangzhuang 39.48167 117.51361 P PPL CN CN 28 3076 0 Asia/Shanghai 2012-01-18
-1807103 Huangzhuang Huangzhuang Huang-chuang,Huangzhuang 39.33861 117.05333 P PPL CN CN 28 2908 9 Asia/Shanghai 2012-01-18
-1807104 Huangzhuang Huangzhuang 39.31472 117.05333 P PPL CN 28 2908 7 Asia/Shanghai 2000-11-21
-1807111 Huangzhu Huangzhu Huang-chu,Huang-chu-shih,Huangzhu,Huangzhu Zhen,Vongchuk,Wangchiu,Wongchuk,huang zhu,huang zhu zhen,黄竹,黄竹镇 19.47852 110.4387 P PPLA4 CN 31 0 153 Asia/Chongqing 2012-01-18
-1807112 Huangzhou Huangzhou Huang-chou,Huang-chou-chen,Huang-chou-fu,Huang-kang,Huang-kang-hsien,Huang-kang-ku-chih,Huanggang,Huangzhou,Hwangchow,Hwangchow-fu,Hwangkang,Hwangkang-hsien,Khuanchzhou,Wongkong,Хуанчжоу 30.45 114.8 P PPL CN 12 122563 19 Asia/Shanghai 2012-01-18
-1807119 Huangzhai Huangzhai Huang-chai,Huang-chai-chen,Huang-t'u-chai,Huang-t'u-chai-chen,Huang-t’u-chai,Huang-t’u-chai-chen,Huangzhai,Huangzhai Zhen,Hwangtuchai,Yang-ch'u,Yang-ch’ü,Yangqu,Yangqu Xian,huang zhai,huang zhai zhen,yang qu xian,阳曲县,黄寨,黄寨镇 38.07514 112.65946 P PPLA3 CN 24 0 896 Asia/Chongqing 2012-01-18
-1807123 Huangze Huangze Huang-tse,Huang-tse-chen,Huangze,Huangze Zhen,huang ze,huang ze zhen,黄泽,黄泽镇 29.57894 120.92365 P PPLA4 CN 02 0 36 Asia/Shanghai 2012-01-18
-1807143 Huangyan Huangyan Huang-yen,Huang-yen-hsien,Huang-yen-hsien-ch'eng,Huang-yen-hsien-ch’eng,Huangyan,Hwang-yen-hsien,Hwangyen 28.64778 121.25944 P PPL CN 02 150448 9 Asia/Shanghai 2012-01-18
-1807150 Huangxikou Huangxikou Huang-hsi-k'ou,Huang-hsi-k’ou,Huangxikou 27.71889 110.385 P PPL CN CN 11 1770 134 Asia/Chongqing 2012-01-18
-1807162 Huangwan Huangwan Huang-wan-chen,Huangwan,Huangwan Xiang,Huangwan Zhen,Wang-wan-chen,huang wan,huang wan xiang,huang wan zhen,黄湾,黄湾乡,黄湾镇 30.36715 120.79531 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1807172 Huangling Huangling Huangling,Huangling Xiang,Huangtuling,huang ling,huang ling xiang,黄岭,黄岭乡 29.7999 116.56523 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-18
-1807175 Huangtukuang Huangtukuang Huang-t'u-t'ang,Huang-t’u-t’ang,Huangtukeng,Huangtukuang,Khuantuken 26.91528 110.40778 P PPL CN CN 11 1990 427 Asia/Chongqing 2012-01-18
-1807183 Huangtugang Huangtugang Huang-t'u-kang,Huang-t’u-kang,Huangtugang,Huangtugang Zhen,huang tu gang,huang tu gang zhen,黄土岗,黄土岗镇 27.89536 115.22833 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-18
-1807186 Huangtu Huangtu Heng-kung-chen,Heng-t'u,Heng-t’u,Huangtu,Huangtuzhen,huang tu,huang tu zhen,璜土,璜土镇 31.87389 120.04056 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1807194 Huangtian Huangtian Huangtian,Huangtian Zhen,huang tian,huang tian zhen,黄田,黄田镇 23.88034 114.97886 P PPLA4 CN 30 0 55 Asia/Shanghai 2012-01-18
-1807206 Huangtang Huangtang Huang-t'ang-hsu,Huang-t’ang-hsü,Huangtang,Huangtang Zhen,huang tang,huang tang zhen,黄塘,黄塘镇 23.69701 114.98208 P PPLA4 CN 30 0 134 Asia/Shanghai 2012-01-18
-1807209 Huangtan Huangtan Huangtan,Huangtan Xiang,huang tan,huang tan xiang,黄坛,黄坛乡 29.5224 117.07838 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-18
-1807210 Huangtan Huangtan Heng-t'an,Heng-t'an-shih,Heng-t’an,Heng-t’an-shih,Huang-t'an,Huang-t’an,Huangtan,Huangtan Zhen,huang tan,huang tan zhen,黄坛,黄坛镇 29.29611 121.35833 P PPLA4 CN 02 0 53 Asia/Shanghai 2012-01-18
-1807211 Huangtan Huangtan Huangtan,Huangtan Zhen,huang tan,huang tan zhen,黄潭,黄潭镇 26.67712 117.32048 P PPLA4 CN 07 0 184 Asia/Shanghai 2012-01-18
-1807230 Huangshi Huangshi Huang-shih,Huang-shih-kuan,Huangshi,Huangshi Zhen,Huangshiguan,huang shi,huang shi xiang,黄石,黄石乡 26.24163 115.93432 P PPLA4 CN 03 0 193 Asia/Shanghai 2012-01-18
-1807234 Huangshi Huangshi Huan-shi,Huan-shih,Huang-shih,Huang-shih-shih,Huangshi,Huangshi Shi,Hwangshih,Khuanshi,Shi hui yao,Shi-hu-yao,Shihhweiyao,Shihpao,Shikhoyya,huang shi,huang shi shi,Хуанши,黄石,黄石市 30.20417 115.07761 P PPLA2 CN 12 688090 27 Asia/Shanghai 2012-01-18
-1807235 Huangshi Huangshi Huang-shih,Huang-shih-shih,Huangshi,Huangshi Zhen,huang shi,huang shi zhen,黄石,黄石镇 29.18226 111.19515 P PPLA4 CN 11 0 64 Asia/Shanghai 2012-01-18
-1807242 Huangsha Huangsha Huang-sha-ch'iao,Huang-sha-ch’iao,Huangsha,Huangsha Zhen,Huangshaqiao,huang sha,huang sha zhen,黄沙,黄沙镇 28.92289 114.67149 P PPLA4 CN 03 0 185 Asia/Shanghai 2012-01-18
-1807258 Huangshan Huangshan Huangshan,Huangshan Zhen,huang shan,huang shan zhen,璜山,璜山镇 29.57316 120.3245 P PPLA4 CN 02 0 40 Asia/Shanghai 2012-01-18
-1807259 Huangshan Huangshan Huangshan,huang shan,黄山 26.82634 100.21906 P PPLA3 CN 29 0 2378 Asia/Chongqing 2012-01-18
-1807268 Huanggang Huanggang Huang-sha-kang,Huanggang,Huanggang Zhen,Huangshagang,huang gang,huang gang zhen,黄港,黄港镇 28.86066 114.76434 P PPLA4 CN 03 0 245 Asia/Shanghai 2012-01-18
-1807269 Huangshagang Huangshagang Huang-sha-kang,Huangsha,Huangshagang,Huangshagang Zhen,huang sha gang,huang sha gang zhen,黄沙岗,黄沙岗镇 28.31586 115.36755 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-18
-1807270 Huangsha Huangsha Huang-sha-chen,Huangsha,Huangsha Zhen,huang sha,huang sha zhen,黄沙,黄沙镇 33.13301 106.78688 P PPLA4 CN 26 0 533 Asia/Chongqing 2012-01-18
-1807271 Huangshapu Huangshapu Huang-sha-p'u,Huang-sha-p’u,Huangsha,Huangshapu,Huangshapu Zhen,huang sha pu,huang sha pu zhen,黄沙铺,黄沙铺镇 29.74197 114.67993 P PPLA4 CN 12 0 101 Asia/Shanghai 2012-01-18
-1807273 Huangsangkou Huangsangkou Huangsangkou,Huangsangkou Zhen,huang sang kou,huang sang kou zhen,黄颡口,黄颡口镇 30.01418 115.32795 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-18
-1807283 Huangqiao Huangqiao Huang-ch'iao,Huang-ch'iao-chen,Huang-ch’iao,Huang-ch’iao-chen,Huangqiao,Huangqiao Zhen,Hwangkiao,Wangkia,huang qiao,huang qiao zhen,黄桥,黄桥镇 32.24072 120.2328 P PPLA4 CN 04 0 10 Asia/Shanghai 2012-01-18
-1807285 Huangqiao Huangqiao Huang-ch'iao,Huang-ch'iao-p'u,Huang-ch’iao,Huang-ch’iao-p’u,Huangqiao 27.02194 110.84056 P PPL CN CN 11 2600 265 Asia/Chongqing 2012-01-18
-1807287 Huangqiang Huangqiang Huangqiang,huang qiang,黄羌 23.15592 115.41572 P PPLA4 CN 30 0 30 Asia/Shanghai 2012-01-18
-1807301 Dasha Dasha Dasha,Huangpu,Whampoa,da sha,Даша,大沙 23.10998 113.44437 P PPL CN 30 116307 7 Asia/Chongqing 2012-01-18
-1807308 Huangpi Huangpi Huang-p'o,Huang-pei,Huang-pei-hsien,Huang-p’o,Huangpi,Huangpi Qu,Hwangpei,Hwangpei-hsien,huang bei,huang bei qu,黄陂,黄陂区 30.88453 114.37789 P PPLA3 CN 12 57554 29 Asia/Shanghai 2012-01-18
-1807339 Huangmei Huangmei Huang-mei-hsien,Huangmei,Hwangmei,Hwangmei-hsien,huang mei,黄梅 30.19235 116.02496 P PPLA3 CN 12 77633 48 Asia/Shanghai 2012-01-18
-1807341 Huangmaoyuan Huangmaoyuan 27.40417 110.47472 P PPL CN 11 1910 561 Asia/Chongqing 2004-06-29
-1807348 Huangmao Huangmao Huangmao,Huangmao Zhen,huang mao,huang mao zhen,黄茅,黄茅镇 28.10773 114.07272 P PPLA4 CN 03 0 170 Asia/Chongqing 2012-01-18
-1807352 Huangludian Huangludian Huang-lu-tien,Huangludian,Huangludian Zhen,huang lu dian,huang lu dian zhen,皇路店,皇路店镇 33.25628 112.63562 P PPLA4 CN 09 0 155 Asia/Chongqing 2012-01-18
-1807364 Huanglong Huanglong Huang-lung,Huang-lung-tang,Huanglong,Huanglong Zhen,Huanglongdang,huang long,huang long zhen,黄龙,黄龙镇 31.97389 112.45583 P PPLA4 CN 12 0 99 Asia/Chongqing 2012-01-18
-1807369 Huanglong Huanglong Huang-lung-p'u,Huang-lung-p’u,Huang-lung-ts'un,Huang-lung-ts’un,Huanglong 26.54139 110.93444 P PPL CN CN 11 1920 315 Asia/Chongqing 2012-01-18
-1807373 Huangliu Huangliu Huang-liu-shih,Huangliu,Huangliu Zhen,huang liu,huang liu zhen,黄流,黄流镇 18.50263 108.78918 P PPLA4 CN 31 0 12 Asia/Chongqing 2012-01-18
-1807402 Huangkeng Huangkeng Huangkeng,Huangkeng Zhen,huang keng,huang keng zhen,黄坑,黄坑镇 25.23364 114.50052 P PPLA4 CN 30 0 145 Asia/Shanghai 2012-02-28
-1807409 Huangjinjing Huangjinjing Huang-chin-ching,Huangjinjing,huang jin jing,黄金井 27.59 110.89806 P PPL CN CN 11 1710 518 Asia/Chongqing 2012-02-28
-1807412 Huangjing Huangjing Heng-ching,Heng-ching-chen,Huang-ching,Huang-ching-chen,Huangjing,Huanjing Zhen,huang jing,huang jing zhen,璜泾,璜泾镇 31.65444 121.10194 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1807413 Huangjindong Huangjindong Huangjindong,Huangjindong Xiang,huang jin dong,huang jin dong xiang,黄金洞,黄金洞乡 29.95182 109.07691 P PPLA4 CN 12 0 872 Asia/Chongqing 2012-01-18
-1807416 Huangjinbu Huangjinbu Huang-chin-fou,Huang-chin-pu,Huangjinbu,Huangjinbu Zhen,Hwangkinfow,huang jin bu,huang jin bu zhen,黄金埠,黄金埠镇 28.47922 116.80286 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1807460 Huanghuatan Huanghuatan Huanghuatan,Huanghuatan Xiang,huang hua tan,huang hua tan xiang,黄花滩,黄花滩乡 39.65361 113.84194 P PPLA4 CN 24 0 1588 Asia/Shanghai 2012-01-18
-1807464 Huanghuai Huanghuai Huanghuai,Huanghuai Zhen,huang huai,黄槐 24.47363 115.7778 P PPLA4 CN 30 0 249 Asia/Shanghai 2012-01-18
-1807468 Huanghua Huanghua Huang-chia-ch'ang,Huang-chia-ch’ang,Huanghua,Huanghua Xiang,Huanghuachang,huang hua,huang hua xiang,黄花,黄花乡 30.85976 111.37845 P PPLA4 CN 12 0 159 Asia/Chongqing 2012-01-18
-1807473 Huanghu Huanghu Huang-hu-chen,Huanghu,Hwanghu,huang hu,黄湖 30.45046 119.80652 P PPLA4 CN 02 0 31 Asia/Shanghai 2012-01-18
-1807498 Huanggang Huanggang Huang-kang,Huang-kang-k'ou,Huang-kang-k’ou,Huanggang,Huanggang Xiang,Huanggangkou,huang gang,huang gang xiang,黄岗,黄岗乡 28.48346 114.54354 P PPLA4 CN 03 0 150 Asia/Shanghai 2012-01-18
-1807506 Huanggang Huanggang Feng-kang,Fengkanghsu,Fengkanghsü,Fengkansu,Fengkansü,Huang-kang,Huanggang,Huanggang Zhen,huang gang,huang gang zhen,凰岗,凰岗镇 29.15609 117.0034 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1807508 Huanggang Huanggang Huang-kang,Huang-kang-ch'eng,Huang-kang-chen,Huang-kang-ch’eng,Huanggang,Huanggang Zhen,Jao-p'ing,Jao-p’ing,Khuangan,Ng kng,Raoping,Ung Kung,huang gang,Хуанган,黄冈 23.67704 116.99961 P PPLA3 CN 30 225956 13 Asia/Shanghai 2012-01-18
-1807518 Huangfang Huangfang Huangfang,Huangfang Xiang,huang fang,huang fang xiang,黄坊,黄坊乡 26.97969 116.87919 P PPLA4 CN 07 0 400 Asia/Shanghai 2012-01-18
-1807520 Huangduobu Huangduobu Huangduobu,Huangduobu Xiang,huang duo bao,huang duo bao xiang,黄铎堡,黄铎堡乡 36.30678 106.06617 P PPLA4 CN 21 0 1565 Asia/Chongqing 2012-01-18
-1807529 Huangdu Huangdu Huang-tu,Huang-tu-chen,Huangdu,Hwangtu,huang du,黄渡 31.27672 121.20777 P PPLA4 CN 23 0 4 Asia/Shanghai 2012-01-18
-1807540 Huangdao Huangdao Huang-tao,Huang-tao-chen,Huangdao,huang dao,黄道 34.06787 113.15907 P PPLA4 CN 09 0 234 Asia/Chongqing 2012-01-18
-1807544 Daxing Daxing Dasin,Daxing,Huang-ts'un,Huang-ts'un-chen,Huang-ts’un,Huang-ts’un-chen,Huangcun,Ta-hsing,Ta-hsing-hsien,Дасин 39.72139 116.32917 P PPL CN 22 104904 42 Asia/Shanghai 2012-01-18
-1807546 Huangcun Huangcun Huancun Xiang,Huang-ts'un,Huang-ts’un,Huangcun,huang cun,huang cun xiang,黄村,黄村乡 30.60868 118.32702 P PPLA4 CN 01 0 52 Asia/Shanghai 2012-01-18
-1807550 Huangcun Huangcun Huang-ts'un,Huang-ts’un,Huangcun,Huangcun Zhen,huang cun,huang cun zhen,黄村,黄村镇 23.83095 115.21904 P PPLA4 CN 30 0 150 Asia/Shanghai 2012-01-18
-1807553 Huangchuan Huangchuan Huang-ch'uan-hsien,Huang-chou,Huang-ch’uan-hsien,Huangchuan,Hwangchwan,Hwangchwan-hsien,Hwangehwan,Kuang-chou,Kwangchow 32.12722 115.03944 P PPL CN 09 72663 34 Asia/Shanghai 2012-01-18
-1807562 Huangcaotuo Huangcaotuo 39.17556 117.32056 P PPL CN 28 3170 3 Asia/Shanghai 2000-11-21
-1807580 Huangbei Huangbei Huang-p'o-hsu,Huang-pei,Huang-p’o-hsü,Huangbei,Huangbei Zhen,huang bei,huang bei zhen,黄陂,黄陂镇 27.30181 116.12422 P PPLA4 CN 03 0 128 Asia/Shanghai 2012-01-18
-1807581 Huangbei Huangbei Huang-p'o,Huang-pei,Huang-p’o,Huangbei,Huangbei Zhen,huang bei,huang bei zhen,黄陂,黄陂镇 26.69222 115.84889 P PPLA4 CN 03 0 259 Asia/Shanghai 2012-01-18
-1807582 Huangbei Huangbei Huang-p'o,Huang-pei,Huang-pei-hsu,Huang-pei-hsü,Huang-p’o,Huangbei,Huangbei Zhen,Wongpo,huang bei,黄陂 24.41155 115.73857 P PPLA4 CN 30 0 180 Asia/Shanghai 2012-01-18
-1807583 Huangbayi Huangbayi Huang-pa-i,Huangbayi,Huangbayi Xiang,Hwangpayi,Khuanbai,huang ba yi,huang ba yi xiang,黄坝驿,黄坝驿乡 32.75483 106.12672 P PPLA4 CN 26 0 895 Asia/Chongqing 2012-01-18
-1807592 Huang’ao Huang'ao Huang'ao,Huang'ao Xiang,Huang’ao,Huang’ao Xiang,huang ao,huang ao xiang,黄坳,黄坳乡 28.97957 114.80596 P PPLA4 CN 03 0 226 Asia/Shanghai 2012-01-18
-1807598 Hong’an Chengguanzhen Hong'an Chengguanzhen Chengguan Zhen,Hong'an,Hong'an Chengguanzhen,Hong'an Xian,Hong’an,Hong’an Chengguanzhen,Hong’an Xian,Huang'an,Huang-an-hsien,Huang’an,Hung-an,Hwangan,Hwanganhsien,hong an cheng guan zhen,红安城关镇 31.36208 114.63689 P PPLA3 CN 12 0 63 Asia/Shanghai 2012-01-18
-1807599 Huanfeng Huanfeng Han-shan-hsien,Huanfeng,huan feng,环峰 31.71667 118.1 P PPLA3 CN 01 0 9 Asia/Shanghai 2012-01-18
-1807603 Huancheng Huancheng Huai-hsien,Huan,Huan-hsien,Huancheng,Huancheng Zhen,Huanxian,Khuan'syan',Khuan’syan’,huan cheng,huan cheng zhen,环城,环城镇 36.57561 107.29596 P PPLA4 CN 15 0 1235 Asia/Chongqing 2012-01-18
-1807606 Huamu Huamu Huamu,Huamu Zhen,hua mu,hua mu zhen,花木,花木镇 31.2109 121.54393 P PPLA4 CN 23 0 10 Asia/Shanghai 2012-01-18
-1807634 Huajialing Huajialing Huajialing,hua jia ling,华家岭 35.37927 105.00918 P PPLA4 CN 15 0 2388 Asia/Chongqing 2012-01-18
-1807640 Huaizhong Huaizhong Huai-chung,Huaizhong,Huaizhong Zhen,huai zhong,huai zhong zhen,怀忠,怀忠镇 27.08758 114.35955 P PPLA4 CN 03 0 119 Asia/Chongqing 2012-01-18
-1807645 Huaiyuan Chengguanzhen Huaiyuan Chengguanzhen Huai-yuan-hsien,Huai-yüan-hsien,Huaiyuan,Huaiyuan Chengguanzhen,Hwaiyuan,Hwaiyuanhsien,Hwaiyüan,huai yuan cheng guan zhen,怀远城关镇 32.95893 117.16566 P PPLA3 CN 01 65530 19 Asia/Shanghai 2012-01-18
-1807653 Huaiya Huaiya Huai-ya-chen,Huaiya,Huaiya Zhen,huai ya,huai ya zhen,槐芽,槐芽镇 34.20754 107.87256 P PPLA4 CN 26 0 487 Asia/Chongqing 2012-01-18
-1807654 Huaitu Huaitu Huaitu,huai tu,淮土 26.19184 116.46968 P PPLA4 CN 07 0 370 Asia/Shanghai 2012-01-18
-1807671 Yunzhong Yunzhong Huai-jen,Huai-jen-chen,Huai-jen-hsien,Huairen Xian,Hwaijensha,Yunzhong,Yunzhong Zhen,huai ren xian,yun zhong,yun zhong zhen,云中,云中镇,怀仁县 39.82707 113.09622 P PPLA3 CN 24 0 1039 Asia/Shanghai 2012-01-18
-1807681 Huainan Huainan 32.62639 116.99694 P PPL CN 01 1027655 47 Asia/Shanghai 2006-01-17
-1807687 Huaicheng Huaicheng Huai-ch'eng-chen,Huai-chi,Huai-chi-hsien,Huai-ch’eng-chen,Huaicheng,Huaiji,Waitsap,Waitsap-hsien,huai cheng,怀城 23.90513 112.19314 P PPLA3 CN 30 89294 82 Asia/Chongqing 2012-01-18
-1807689 Huaihua Huaihua Huaihua,Khuajkhua,Yu-shu-wan-chen,Yushuwan,Yü-shu-wan-chen,Хуайхуа 27.54944 109.95917 P PPL CN 11 127322 245 Asia/Chongqing 2012-01-18
-1807695 Huaidian Huaidian Huai-tien,Huai-tien-chen,Huaidian,Khuaydyan,Shen-ch'iu,Shen-ch’iu,Shenqiu 33.43333 115.03333 P PPL CN 09 89978 40 Asia/Shanghai 2012-01-18
-1807697 Huaidao Huaidao Huai-tao,Huaidao,Huaidao Xiang,huai dao,huai dao xiang,怀道,怀道乡 38.67848 112.24136 P PPLA4 CN 24 0 1584 Asia/Chongqing 2012-01-18
-1807700 Huaibei Huaibei Hsu-kou,Hsü-kou,Huai-pei,Huai-pei-shih,Huaibei,Khuajbehj,Sui-hsi-shih,huai bei,huai bei shi,Хуайбэй,淮北,淮北市 33.97444 116.79167 P PPL CN 01 903039 51 Asia/Shanghai 2012-01-18
-1807706 Huagu Huagu Hua-ku,Hua-ku-t'ang,Hua-ku-t’ang,Huagu,Huagutang,hua gu,花鼓 30.91505 119.29482 P PPLA4 CN 01 0 36 Asia/Shanghai 2012-01-18
-1807723 Huagai Huagai Huagai,hua gai,花荄 31.54634 104.55532 P PPLA3 CN 32 0 518 Asia/Chongqing 2012-01-18
-1807727 Huafeng Huafeng Hua'an,Hua-an-hsien,Hua-feng-chen,Huafeng,Hua’an,Hwaan,Hwafeng,hua feng,华丰 25.00167 117.5275 P PPLA3 CN 07 0 144 Asia/Shanghai 2012-01-18
-1807737 Huacheng Huacheng Huacheng,Majinpu,Majinpu Xiang,hua cheng,ma jin pu,ma jin pu xiang,化城,马金铺,马金铺乡 24.78854 102.80623 P PPLA4 CN 29 0 1935 Asia/Chongqing 2012-01-18
-1807746 Huabeitun Huabeitun Hua-pei-t'un,Hua-pei-ts'un,Hua-pei-ts’un,Hua-pei-t’un,Huabeitun,Huabeitun Xiang,hua bei tun,hua bei tun xiang,化北屯,化北屯乡 38.69885 112.10052 P PPLA4 CN 24 0 1456 Asia/Chongqing 2012-01-18
-1807763 Houzhen Houzhen Hou-chen,Hou-tzu,Hou-tzu-chen,Houzhen,Houzizhen,hou zhen,厚镇 34.25979 109.50799 P PPLA4 CN 26 0 946 Asia/Chongqing 2012-01-18
-1807769 Houzhai Houzhai Hou-chai,Hou-chai-chen,Houzhai,Lung-ao,Nan'ao,Nan’ao,hou zhai,后宅 23.44799 116.99469 P PPLA3 CN 30 0 102 Asia/Shanghai 2012-01-18
-1807783 Houxiang Houxiang 39.51278 117.11583 P PPL CN 28 1800 6 Asia/Shanghai 2000-11-21
-1807793 Housuo Housuo Hou-so,Hou-so-ts'un,Hou-so-ts’un,Housuo,Housuo Xiang,hou suo,hou suo xiang,后所,后所乡 39.31083 112.84389 P PPLA4 CN 24 0 1037 Asia/Shanghai 2012-01-18
-1807811 Houping Houping Houping,Houping Zhen,hou ping,hou ping zhen,后坪,后坪镇 29.06694 110.32111 P PPLA4 CN 11 0 239 Asia/Chongqing 2012-01-18
-1807816 Houmen Houmen Hau-men,Houmen,hou men,鲘门 22.81354 115.15442 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-18
-1807818 Xintian Xintian Ch'u-wo,Ch'u-wu,Ch’ü-wo,Ch’ü-wu,Hou-ma-chen,Hou-ma-shih,Houma,Houma Shi,Howma,Khouma,Xintian,Xintian Xiang,hou ma shi,xin tian,xin tian xiang,侯马市,新田,新田乡 35.61358 111.3566 P PPLA3 CN 24 0 423 Asia/Chongqing 2012-01-18
-1807831 Houjie Houjie Hou-chieh,Houjie,Houjie Zhen,Howkai,hou jie,厚街 22.94266 113.65615 P PPLA4 CN 30 0 20 Asia/Chongqing 2012-01-18
-1807848 Houjiagang Houjiagang Hou-chia-kang,Houjiagang,Houjiagang Xiang,hou jia gang,hou jia gang xiang,侯家岗,侯家岗乡 29.52327 116.84738 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-18
-1807874 Hougong Hougong Hou-kung,Hougong,Hougong Xiang,hou gong,hou gong xiang,后宫,后宫乡 35.35778 111.39832 P PPLA4 CN 24 0 589 Asia/Chongqing 2012-01-18
-1807878 Hougang Hougang Hougang,Hougang Zhen,hou gang,hou gang zhen,后港,后港镇 32.6868 120.25441 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1807879 Hougang Hougang Hou-Kang,Hougang,Hougang Zhen,hou gang,hou gang zhen,后港,后港镇 30.51722 112.38389 P PPLA4 CN 12 0 34 Asia/Chongqing 2012-01-18
-1807905 Hou’an Hou'an Hou'an,Hou'an Xiang,Hou’an,Hou’an Xiang,hou an,hou an xiang,厚岸,厚岸乡 30.54924 118.05181 P PPLA4 CN 01 0 91 Asia/Shanghai 2012-01-18
-1807910 Hor Hor Heri,Heri Xiang,Ho-jih,Hor,he ri,和日 35.23178 100.98686 P PPLA4 CN 06 0 3461 Asia/Chongqing 2012-01-18
-1807916 Hongzhou Hongzhou Hongzhou,Hung-chou 26.12583 109.40889 P PPL CN CN 18 1127 378 Asia/Chongqing 2012-01-18
-1807923 Hongyuan Hongyuan Hongyuan,Hongyuan Zhen,Hung-yuan,Hung-yüan,hong yuan,hong yuan zhen,洪源,洪源镇 29.32175 117.15026 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-18
-1807936 Hongyang Hongyang Hongyang,Hung-yang 26.52861 119.4625 P PPL CN CN 07 1850 59 Asia/Shanghai 2012-01-18
-1807943 Hongyanxi Hongyanxi Hongyan,Hongyanxi,Hongyanxi Xiang,Hongyanxi Zhen,Hung-yen,hong yan xi,hong yan xi xiang,hong yan xi zhen,红岩溪,红岩溪乡,红岩溪镇 29.28596 109.63256 P PPLA4 CN 11 0 550 Asia/Chongqing 2012-01-18
-1807953 Hongxingqiao Hongxingqiao Hongxingqiao,Hung-ch'i-chen,Hung-ch’i-chen,Hung-hsing-ch'iao,Hung-hsing-ch’iao,hong xing qiao,虹星桥 30.92333 119.86889 P PPLA4 CN 02 0 3 Asia/Shanghai 2012-01-18
-1807963 Hongxi Hongxi Hongjiatan,Hongxi,Hongxi Zhen,Hung-chia-t'an-chen,Hung-chia-t’an-chen,hong xi,hong xi zhen,洪溪,洪溪镇 30.91088 120.83849 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1807966 Hongxi Hongxi Hong-ch'i-chen,Hong-ch’i-chen,Hongxi,Hongxi Zhen,hong xi,hong xi zhen,虹溪,虹溪镇 24.145 103.31972 P PPLA4 CN 29 0 1460 Asia/Chongqing 2012-01-18
-1807977 Haoshui Haoshui Haoshui,Haoshui Xiang,Hongtulu,hao shui,hao shui xiang,hong tu lu,好水,好水乡,红土路 35.65 106.1 P PPLA4 CN 21 0 2169 Asia/Chongqing 2012-01-18
-1807981 Dahuaishu Dahuaishu Dahuaishu,Dahuaishu Zhen,Hongtong,Hongtong Xian,Hung-chao,Hung-chao-hsien,Hung-tung,Hung-tung-hsien,Khundun,da huai shu,da huai shu zhen,hong dong xian,大槐树,大槐树镇,洪洞县 36.26556 111.67528 P PPLA3 CN 24 0 460 Asia/Chongqing 2012-01-18
-1807987 Hongtang Hongtang Hongtang,Hongtang Zhen,Hongtangxiang,Hung-t'ang-hsiang,Hung-t’ang-hsiang,hong tang,hong tang zhen,洪塘,洪塘镇 29.95175 121.50606 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1807988 Hongtang Hongtang Hongtang,Hongtang Zhen,Hung-t'ang,Hung-t'ang-shih,Hung-t’ang,Hung-t’ang-shih,hong tang,hong tang zhen,洪塘,洪塘镇 27.90474 114.28878 P PPLA4 CN 03 0 125 Asia/Chongqing 2012-01-18
-1807993 Hongsipu Hongsipu Hongsipu,Hongsipu Zhen,Hung-ssu-p'u,Hung-ssu-pao,Hung-ssu-p’u,hong si bao,hong si bao zhen,红寺堡,红寺堡镇 37.39917 106.06028 P PPLA3 CN 21 0 1338 Asia/Chongqing 2012-01-18
-1808048 Hongqiao Hongqiao Hongqiao,hong qiao,洪桥 30.98928 119.9848 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1808061 Hongmiao Hongmiao Hongmiao,Hongmiao Zhen,Hongmiaotang,Hung-miao,Hung-miao-t'ang,Hung-miao-t’ang,hong miao,hong miao zhen,红庙,红庙镇 32.86439 106.91358 P PPLA4 CN 26 0 639 Asia/Chongqing 2012-01-18
-1808072 Hongmen Hongmen Hongmen,Hongmen Zhen,Hung-men,hong men,hong men zhen,洪门,洪门镇 27.49178 116.71069 P PPLA4 CN 03 0 80 Asia/Shanghai 2012-01-18
-1808077 Honglong Honglong Honglong,Honglongdian,Hsia-chiang-wu,Huang-lung-tien,Hung-lung,Hung-lung-tien,hong long,虹龙 30.49875 119.00447 P PPLA4 CN 01 0 118 Asia/Shanghai 2012-01-18
-1808083 Honglin Honglin Honglin,Honglin Zhen,Honglinqiao,Hung-lin-ch'iao,Hung-lin-ch’iao,hong lin,hong lin zhen,洪林,洪林镇 30.97972 118.98202 P PPLA4 CN 01 0 16 Asia/Shanghai 2012-01-18
-1808087 Honglan Honglan Honglan,Honglan Zhen,Hung-lan,Hung-lan-fou,hong lan,hong lan zhen,洪蓝,洪蓝镇 31.60732 118.98023 P PPLA4 CN 04 0 13 Asia/Shanghai 2012-01-18
-1808090 Hongkou Hongkou Hongkew,Hongkou,Hung-k'ou,Hung-k'ou-ch'u,Hung-k’ou,Hung-k’ou-ch’ü,hong kou,虹口 31.25 121.48917 P PPLA3 CN 23 0 253 Asia/Shanghai 2012-01-18
-1808103 Donghe Donghe Donghe,Donghe Zhen,Feng-chia-pa,Fengjiaba,Hongjiang,Vantsanba,Wang-ts'ang,Wang-ts'ang-hsien,Wang-ts'ang-pa,Wang-ts’ang,Wang-ts’ang-hsien,Wang-ts’ang-pa,Wangcang,Wangcang Xian,Wangsangpa,dong he,dong he zhen,wang cang,wang cang xian,东河,东河镇,旺苍,旺苍县 32.23341 106.30126 P PPLA3 CN 32 0 483 Asia/Chongqing 2012-01-18
-1808105 Hongjiang Hongjiang Hongjiang,Hongjiang Xiang,Hung-chiang,hong jiang,hong jiang xiang,洪江,洪江乡 27.62027 114.39292 P PPLA4 CN 03 0 237 Asia/Shanghai 2012-01-18
-1808106 Hongjiang Hongjiang Ch'ien-yang,Ch’ien-yang,Hongjiang,Hung-chiang,Hung-chiang-chen,Hung-chiang-shih,Hungkiang,Khuntszyan 27.11 109.99556 P PPL CN 11 59199 197 Asia/Chongqing 2012-01-18
-1808110 Hongjiaguan Hongjiaguan Hongjiaguan,Hongjiaguan Baizuxiang,Hung-chia-kuan,hong jia guan,hong jia guan bai zu xiang,洪家关,洪家关白族乡 29.47708 110.16677 P PPLA4 CN 11 0 290 Asia/Chongqing 2012-01-18
-1808118 Honghuatao Honghuatao Honghuatao,Honghuatao Zhen,Hung-hua-t'ao,Hung-hua-t’ao,hong hua tao,hong hua tao zhen,红花套,红花套镇 30.51453 111.4034 P PPLA4 CN 12 0 55 Asia/Chongqing 2012-01-18
-1808134 Honghe Honghe Honghe,Honghe Xiang,hong he,hong he xiang,红河,红河乡 35.76667 106.7 P PPLA4 CN 21 0 1420 Asia/Chongqing 2012-01-18
-1808154 Hongde Hongde Hongde,Hongde Xiang,Hung-te,Hung-te-ch'eng,Hung-te-ch’eng,Hung-to-tsch'ong,Hung-tö-tsch’öng,Hungtu,Khunde,Kung-te-ch'eng,Kung-te-ch’eng,hong de,hong de xiang,洪德,洪德乡 36.74138 107.18431 P PPLA4 CN 15 0 1292 Asia/Chongqing 2012-01-18
-1808163 Hongchuan Hongchuan Hongchuan,Hongchuan Zhen,hong chuan,hong chuan zhen,红川,红川镇 33.75056 105.89083 P PPLA4 CN 15 0 999 Asia/Chongqing 2012-01-18
-1808180 Hezuoqiao Hezuoqiao Hezuoqiao,Hezuoqiao Xiang,he zuo qiao,he zuo qiao xiang,合作桥,合作桥乡 29.21806 110.575 P PPLA4 CN 11 0 241 Asia/Chongqing 2012-01-18
-1808181 Hezuo Hezuo Hei-ts'o,Hei-ts’o,Hezuo,Hezuo Shi,Hezuo Zhen,Hezuozhen,Ho-tso,Hu-yen-k'eng-erh,Hu-yen-k’eng-erh,Khuyankor,Khuyankyr,Khuyankör,Te-wu-lu,Te-wu-lu-shih,he zuo,he zuo shi,he zuo zhen,合作,合作市,合作镇 34.98556 102.90944 P PPLA3 CN 15 0 2898 Asia/Chongqing 2012-01-18
-1808189 Hezhi Hezhi Hezhi,Hezhi Xiang,Ho-chih,Ho-chih-ts'un,Ho-chih-ts’un,he zhi,he zhi xiang,贺职,贺职乡 39.09274 111.85016 P PPLA4 CN 24 0 1341 Asia/Chongqing 2012-01-18
-1808198 Heze Heze Caozhou,He-tse,Heze,Ho-tse,Ho-tse-shih,Hotseh,Hotseh-hsien,Hê-tse,Ko-tse,Ko-tse-hsien,Ts'ao-chou,Ts'aochow,Tsaochowfu,Ts’ao-chou,Ts’aochow,he ze,he ze shi,菏泽,菏泽市 35.24306 115.44111 P PPL CN 25 254602 47 Asia/Shanghai 2012-01-18
-1808212 Hechuan Hechuan Hechuan,Heyang,Ho-ch'uan,Ho-ch'uan-hsien,Ho-ch'uan-shih,Ho-chou,Ho-ch’uan,Ho-ch’uan-hsien,Ho-ch’uan-shih,Hochow,Hochwan,Hochwan-hsien 29.99472 106.25722 P PPL CN 33 97575 220 Asia/Chongqing 2012-01-18
-1808220 Hexing Hexing Hexing,Hexing Xiang,he xing,he xing xiang,和兴,和兴乡 33.22292 113.97933 P PPLA4 CN 09 0 74 Asia/Shanghai 2012-01-18
-1808228 Hexiangqiao Hexiangqiao Hexiangqiao,Hexiangqiao Zhen,Ho-hsiang-ch'iao,Ho-hsiang-ch’iao,he xiang qiao,he xiang qiao zhen,荷香桥,荷香桥镇 27.22028 110.96333 P PPLA4 CN 11 4570 278 Asia/Chongqing 2012-02-28
-1808233 Hexia Hexia Hexia,Hexia Zhen,Ho-hsia,he xia,he xia zhen,河下,河下镇 27.79289 114.8485 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-18
-1808237 Hexi Hexi Hexi,Ho-hsi,Ho-hsi-fang,he xi,河西 34.94537 107.79553 P PPLA4 CN 26 0 1367 Asia/Chongqing 2012-01-18
-1808251 Hetou Hetou Hetou,Hetou Xiang,Ho-t'ou,Ho-t’ou,he tou,he tou xiang,河头,河头乡 39.74175 113.27362 P PPLA4 CN 24 0 985 Asia/Shanghai 2012-01-18
-1808253 Hetou Hetou Hetou,Hetou Zhen,Ho-t'ou,Ho-t'ou-chen,Ho-t’ou,Ho-t’ou-chen,he tou,he tou zhen,河头,河头镇 29 121.1 P PPLA4 CN 02 0 44 Asia/Shanghai 2012-01-18
-1808258 Hetian Hetian Hetian,Hetian Zhen,Ho-t'ien,Ho-t'ien-hsun,Ho-t’ien,Ho-t’ien-hsün,Hotein,he tian,he tian zhen,河田,河田镇 25.667 116.41543 P PPLA4 CN 07 0 280 Asia/Shanghai 2012-01-18
-1808259 Hetian Hetian Hetian,Ho-t'ien,Ho-t'ien-hsu,Ho-t’ien,Ho-t’ien-hsü,Hotin,he tian,河田 23.30577 115.65029 P PPLA3 CN 30 0 59 Asia/Shanghai 2012-01-18
-1808268 Hetang Hetang Hetang,Hetang Zhen,Ho-tang,he tang,he tang zhen,鹤塘,鹤塘镇 26.66276 119.11062 P PPLA4 CN 07 3430 466 Asia/Shanghai 2012-01-18
-1808269 Hetan Hetan Hetan,Hetan Zhen,Hetanbu,Ho-t'an,Ho-t'an-fou,Ho-t’an,Ho-t’an-fou,he tan,he tan zhen,河潭,河潭镇 28.36818 117.29607 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-18
-1808274 Yixing Yixing Heshun,Heshun Xian,Ho-shun,Ho-shun-hsien,Kheshun,Yixing,Yixing Zhen,he shun xian,yi xing,yi xing zhen,义兴,义兴镇,和顺县 37.3376 113.53926 P PPLA3 CN 24 0 1379 Asia/Shanghai 2012-01-18
-1808287 Heshui Heshui Heshui,Heshui Zhen,he shui,he shui zhen,合水,合水镇 24.3904 114.93035 P PPLA4 CN 30 0 146 Asia/Shanghai 2012-01-18
-1808295 Heshi Heshi Heshi,Heshi Zhen,Ho-shih,he shi,he shi zhen,何市,何市镇 28.83943 114.61005 P PPLA4 CN 03 0 181 Asia/Shanghai 2012-01-18
-1808296 Heshi Heshi Heshi,Heshi Zhen,he shi,he shi zhen,合市,合市镇 28.02002 116.65039 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-18
-1808298 Heshi Heshi Hao-shih,Hao-shu-xia,Heshi,Heshi Zhen,Ho-shih,Hokschua,he shi,he shi zhen,鹤市,鹤市镇 24.0084 115.35644 P PPLA4 CN 30 0 245 Asia/Shanghai 2012-01-18
-1808301 Heshengbao Heshengbao Heshengbao,Heshengbao Xiang,Heshengbu,Ho-sheng-pao,he sheng bao,he sheng bao xiang,合盛堡,合盛堡乡 39.57526 112.90584 P PPLA4 CN 24 0 1009 Asia/Shanghai 2012-01-18
-1808304 Heshe Heshe Heshe,Heshe Zhen,he she,he she zhen,和舍,和舍镇 19.59734 109.72075 P PPLA4 CN 31 0 129 Asia/Chongqing 2012-01-18
-1808308 Heshang Heshang Heshang,Heshang Zhen,Ho-chen,Ho-shang-chen,Ho-shang-tien,he shang,he shang zhen,河上,河上镇 29.94341 120.16068 P PPLA4 CN 02 0 32 Asia/Shanghai 2012-01-18
-1808316 Yiyang Yiyang Heshan,I-yang,I-yang-ch'eng,I-yang-ch’eng,I-yang-hsien,I-yang-shih,I-yeng,Ijan,Yiyang,Yiyang-hsien,Иян 28.58917 112.32833 P PPL CN 11 202608 25 Asia/Chongqing 2012-01-18
-1808320 Herong Herong Herong,Herong Zhen,Ho-jung,Ho-jung-chen,Ho-yong-chen,he rong,he rong zhen,河溶,河溶镇 30.70693 111.97266 P PPLA4 CN 12 0 49 Asia/Chongqing 2012-01-18
-1808323 Wenbi Wenbi Chiu-ho-ch'u,Chiu-ho-ch’ü,Hequ,Hequ Xian,Ho-ch'u,Ho-ch'u-ch'eng,Ho-ch'u-hsien,Ho-ch’ü,Ho-ch’ü-ch’eng,Ho-ch’ü-hsien,Hoku,Hokuhsien,Hokü,Hokühsien,Wenbi,Wenbi Zhen,he qu xian,wen bi,wen bi zhen,文笔,文笔镇,河曲县 39.3874 111.19115 P PPLA3 CN 24 0 957 Asia/Chongqing 2012-01-18
-1808331 Heqiao Heqiao Heqiao,Ho-ch'iao,Ho-ch'iao-chen,Ho-ch’iao,Ho-ch’iao-chen,he qiao,河桥 30.10361 119.23028 P PPLA4 CN 02 0 103 Asia/Shanghai 2012-01-18
-1808333 Hepu Hepu Hepu,Hepu Zhen,Ho-p'u,Ho-p’u,he pu,he pu zhen,河铺,河铺镇 30.99428 115.38269 P PPLA4 CN 12 0 90 Asia/Shanghai 2012-01-18
-1808334 Hepu Hepu Hepu,Hepu Zhen,Hepuzhen,Ho-p'u,Ho-p’u,he pu,he pu zhen,鹤浦,鹤浦镇 29.15308 121.90309 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1808336 Hepo Hepo Chieh-hsi,Hepo,Ho-p'o,Ho-p'o-hsu,Ho-p’o,Ho-p’o-hsü,Jiexi,Khehpo,he po,Хэпо,河婆 23.43077 115.82991 P PPLA3 CN 30 131238 41 Asia/Shanghai 2012-01-18
-1808344 Heping Heping Heping,Ho-p'ing,Ho-p'ing-chen,Ho-p’ing,Ho-p’ing-chen,he ping,和平 30.83111 119.89833 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1808345 Hepingyizu Hepingyizu Chin-k'ou-ho,Chin-k’ou-ho,Heping,Hepingyizu,Jinkouhe,Kinkowho,he ping yi zu,和平彝族 29.24693 103.08249 P PPLA3 CN 32 0 827 Asia/Chongqing 2012-01-18
-1808355 Heping Heping Heping,Ho-p'ing,Ho-p’ing,he ping,和平 23.25112 116.48153 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-18
-1808361 Hengzhou Hengzhou Heng,Heng-chou-chen,Heng-hsien,Hengchou,Hengchow,Hengxian,Hengzhou,heng zhou,横州 22.70727 109.25749 P PPLA3 CN 16 0 64 Asia/Chongqing 2012-01-18
-1808370 Hengyang Hengyang Henchow,Heng-chou,Heng-nan,Heng-nan-hsien,Heng-yang-ch'eng,Heng-yang-ch’eng,Heng-yang-shih,Hengchow,Hengchowfu,Hengyang,Hengyang-hsien,Khehnujan,Хэнъян 26.88806 112.615 P PPL CN 11 759602 50 Asia/Chongqing 2012-01-18
-1808372 Hengyan Hengyan Heng-yen,Heng-yen-chen,Hengyan,heng yan,横沿 29.4113 118.59085 P PPLA4 CN 02 0 120 Asia/Shanghai 2012-01-18
-1808374 Hengxianhe Hengxianhe Heng-hsien-ho,Hengxianhe,Hengxianhe Zhen,Hui-ch'ien-ho,Hui-ch’ien-ho,Hui-hsien-ho,heng xian he,heng xian he zhen,横现河,横现河镇 33.33951 106.08188 P PPLA4 CN 26 0 674 Asia/Chongqing 2012-01-18
-1808377 Hengxi Hengxi Heng-ch'i,Heng-ch'i-ch'iao,Heng-ch’i,Heng-ch’i-ch’iao,Heng-hsi,Hengxi,Hengxi Zhen,heng xi,heng xi zhen,横溪,横溪镇 31.71667 118.76667 P PPLA4 CN 04 0 12 Asia/Shanghai 2012-01-18
-1808378 Hengxizhen Hengxizhen Heng-hsi,Heng-hsi-chen,Hengxi,Hengxi Zhen,Hengxizhen,heng xi,heng xi zhen,横溪,横溪镇 29.72549 121.59043 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1808386 Hengtang Hengtang Hengtang,Hengtang Zhen,Huang-t'ang-p'u,Huang-t’ang-p’u,heng tang,heng tang zhen,横塘,横塘镇 29.34658 115.88691 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-18
-1808392 Hengshui Hengshui Heng-shui-ch'eng-kuan,Heng-shui-ch’eng-kuan,Heng-shui-hsien,Hengshui,Khenshuy,heng shui shi,衡水市 37.73222 115.70111 P PPL CN 10 456356 25 Asia/Shanghai 2012-01-18
-1808398 Hengshui Hengshui Heng-shui-chen,Hengshui,Hengshui Zhen,heng shui,heng shui zhen,横水,横水镇 34.46881 107.52419 P PPLA4 CN 26 0 722 Asia/Chongqing 2012-01-18
-1808421 Kaiyun Kaiyun Heng-shan-ch'eng,Heng-shan-ch’eng,Heng-shan-hsien,Hengshan,Kaiyun,kai yun,开云 27.21351 112.856 P PPLA3 CN 11 0 55 Asia/Chongqing 2012-01-18
-1808431 Hengqu Hengqu Heng-ch'u,Heng-ch'u-chen,Heng-ch’ü,Heng-ch’ü-chen,Hengqu,Hengqu Zhen,Khentsyuy,heng qu,heng qu zhen,横渠,横渠镇 34.19627 107.95985 P PPLA4 CN 26 0 468 Asia/Chongqing 2012-01-18
-1808433 Hengqiao Hengqiao Heng-ch'iao,Heng-ch’iao,Hengqiao,Hengqiao Xiang,Hsi-heng-ch'iao,Hsi-heng-ch’iao,Tung-heng-ch'iao,Tung-heng-ch’iao,heng qiao,heng qiao xiang,横桥,横桥乡 35.57757 111.22371 P PPLA4 CN 24 0 402 Asia/Chongqing 2012-01-18
-1808442 Henglu Henglu Henglu,Henglutou,heng lu,横路 30.30972 119.31417 P PPLA4 CN 02 0 263 Asia/Shanghai 2012-01-18
-1808443 Henglu Henglu Heng-lu-p'u,Heng-lu-p’u,Henglu,Henglu Xiang,heng lu,heng lu xiang,横路,横路乡 29.415 115.10944 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-18
-1808459 Hengli Hengli Heng-li-hsu,Heng-li-hsü,Hengli,Hengli Zhen,Wanglik,heng li,横沥 23.17247 114.61194 P PPLA4 CN 30 0 20 Asia/Chongqing 2012-01-18
-1808468 Hengjie Hengjie Heng-chieh,Hengjie,Hengjie Zhen,heng jie,heng jie zhen,横街,横街镇 28.70439 118.1431 P PPLA4 CN 03 0 106 Asia/Shanghai 2012-01-18
-1808474 Hengjiang Hengjiang Heng-chiang,Hengjiang,Hengjiang Zhen,Huang-chiang,heng jiang,heng jiang zhen,横江,横江镇 26.14346 116.3488 P PPLA4 CN 03 0 229 Asia/Shanghai 2012-01-18
-1808476 Hengjian Hengjian Heng-chien,Hengjian,Hengjian Xiang,Hung-chien-ts'un,Hung-chien-ts’un,heng jian,heng jian xiang,横涧,横涧乡 39.27296 113.88022 P PPLA4 CN 24 0 1235 Asia/Shanghai 2012-01-18
-1808486 Henghe Henghe Heng-ho,Heng-ho-shih,Henghe,Henghe Zhen,heng he,heng he zhen,横河,横河镇 30.12932 121.2371 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1808487 Henghe Henghe Heng-ho,Henghe,Henghe Zhen,heng he,横河 23.34376 114.1171 P PPLA4 CN 30 0 26 Asia/Chongqing 2012-01-18
-1808490 Henggouqiao Henggouqiao Heng-kou-ch'iao,Heng-kou-ch’iao,Henggouqiao,Henggouqiao Zhen,heng gou qiao,heng gou qiao zhen,横沟桥,横沟桥镇 29.9322 114.35629 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-18
-1808494 Henggang Henggang Heng-kang,Henggang,Henggang Zhen,heng gang,heng gang zhen,横港,横港镇 29.5566 115.48776 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-18
-1808496 Henggang Henggang Heng-kang,Heng-kang-hsu,Heng-kang-hsü,Henggang,Henggang Jiedao,Wangkong,heng gang,横岗 22.65155 114.20243 P PPLA4 CN 30 0 65 Asia/Chongqing 2012-01-18
-1808498 Hengfan Hengfan Heng-fan-chen,Hengfan,Hengpan,Hueng-pan,heng fan,横畈 30.33074 119.75122 P PPLA4 CN 02 0 46 Asia/Shanghai 2012-01-18
-1808501 Hengdong Chengguanzhen Hengdong Chengguanzhen Heng-tung,Hengdong,Hengdong Chengguanzhen,Wu-chi,heng dong cheng guan zhen,衡东城关镇 27.08333 112.95 P PPLA3 CN 11 0 68 Asia/Chongqing 2012-01-18
-1808503 Hengdian Hengdian Heng-tien,Hengdian,Hengdian Jiedao,heng dian,heng dian jie dao,横店,横店街道 30.80532 114.29172 P PPLA4 CN 12 0 51 Asia/Shanghai 2012-01-18
-1808505 Hengdian Hengdian Hengdian,Hengdian Zhen,heng dian,heng dian zhen,横店,横店镇 29.15698 120.31478 P PPLA4 CN 02 0 132 Asia/Shanghai 2012-01-18
-1808518 Hengbanqiao Hengbanqiao Heng-pan-ch'iao,Heng-pan-ch’iao,Hengbanqiao,Hengbanqiao Zhen,heng ban qiao,heng ban qiao zhen,横板桥,横板桥镇 27.17167 110.86528 P PPLA4 CN 11 1610 294 Asia/Chongqing 2012-02-28
-1808534 Helong Helong Helong,Helong Xiang,he long,he long xiang,合龙,合龙乡 25.9445 116.13414 P PPLA4 CN 03 0 207 Asia/Shanghai 2012-01-18
-1808535 Helixi Helixi Helixi,Helixi Zhen,Ho-li-ch'i,Ho-li-ch'i-chen,Ho-li-chu,Ho-li-chü,Ho-li-ch’i,Ho-li-ch’i-chen,Ho-li-hsi,Ho-li-hsi-chen,Holiki,Ning-kuo,Ning-kuo-hsien,Ningguo,Ningguo Shi,Ningkwo,Ningkwohsien,he li xi,he li xi zhen,ning guo,ning guo shi,宁国,宁国市,河沥溪,河沥溪镇 30.62841 118.98124 P PPLA3 CN 01 0 57 Asia/Shanghai 2012-01-18
-1808550 Hele Hele Hele,Hele Zhen,Ho-le,Ho-lo-shih,he le,he le zhen,和乐,和乐镇 18.90181 110.47263 P PPLA4 CN 31 0 7 Asia/Chongqing 2012-01-18
-1808566 Hekou Hekou Hekou,Hekou Zhen,Ho-k'ou,Ho-k'ou-chien,Ho-k’ou,Ho-k’ou-chien,Kou-k'ou,Kou-k’ou,he kou,he kou zhen,河口,河口镇 33.95903 106.8149 P PPLA4 CN 26 0 1202 Asia/Chongqing 2012-01-18
-1808575 Hekou Hekou Guandupu,Hekou,Hekou Zhen,Ho-k'ou,Ho-k’ou,Hohkow,Hokow,guan du pu,he kou,he kou zhen,合口,合口镇,管渡铺 29.62886 111.57961 P PPLA4 CN 11 0 50 Asia/Shanghai 2012-01-18
-1808576 Pailou Pailou Hekou,Hekou Xiang,Ho-k'ou,Ho-k’ou,Pailou,he kou,he kou xiang,pai lou,河口,河口乡,牌楼 29.54987 109.85707 P PPLA4 CN 11 0 476 Asia/Chongqing 2012-01-18
-1808585 Hekou Hekou Hekou,Ho-k'ou,Ho-k'ou-hsu,Ho-k’ou,Ho-k’ou-hsü,he kou,河口 23.18138 115.60027 P PPLA4 CN 30 0 41 Asia/Shanghai 2012-01-18
-1808588 Hekou Hekou Hekou,Ho-k'ou,Ho-k'ou-hsien,Ho-k'ou-shih,Ho-k'ou-yao-tsu-miao-tsu-tzu-chih-hsien,Ho-k'ou-yao-tsu-tzu-chih-hsien,Ho-k’ou,Ho-k’ou-hsien,Ho-k’ou-shih,Ho-k’ou-yao-tsu-miao-tsu-tzu-chih-hsien,Ho-k’ou-yao-tsu-tzu-chih-hsien,Hokow,Hokow-hsien,he kou,河口 22.53851 104.01109 P PPLA3 CN 29 0 143 Asia/Chongqing 2012-01-18
-1808600 Hejiayan Hejiayan Hejiayan,Hejiayan Zhen,Ho-chia-ya,Ho-chia-yai,Ho-chia-yen,he jia yan,he jia yan zhen,何家岩,何家岩镇 33.25897 106.32583 P PPLA4 CN 26 0 1024 Asia/Chongqing 2012-01-18
-1808602 Hewan Hewan Hejiawan,Hewan,Hewan Zhen,Ho-chia-wan,Ho-wan,he wan,he wan zhen,何湾,何湾镇 30.81632 118.08099 P PPLA4 CN 01 0 57 Asia/Shanghai 2012-01-18
-1808612 Hejiang Hejiang Hejiang,Ho-chiang,Ho-chiang-hsien,Hokiang,Hokianghsien,he jiang,合江 28.81161 105.83359 P PPLA3 CN 32 0 236 Asia/Chongqing 2012-01-18
-1808624 Hejiabao Hejiabao Hejiabao,Hejiabao Xiang,Hejiabu,Ho-chia-pao,he jia bao,he jia bao xiang,何家堡,何家堡乡 39.81364 113.04906 P PPLA4 CN 24 0 1044 Asia/Shanghai 2012-01-18
-1808628 Hejia Hejia Hejia,Hetian,he jia,he tian,何家,何田 29.32795 118.31468 P PPLA4 CN 02 0 224 Asia/Shanghai 2012-01-18
-1808673 Heilongkou Heilongkou Hei-lung-k'ou,Hei-lung-k’ou,Heilongkou,Heilongkou Zhen,hei long kou,黑龙口 34.00959 109.7306 P PPLA4 CN 26 0 903 Asia/Chongqing 2012-01-18
-1808681 Heilangkou Heilangkou Hei-lang-k'ou-chen,Hei-lang-k’ou-chen,Heilangkou 39.61278 117.40167 P PPL CN CN 28 1357 7 Asia/Shanghai 2012-01-18
-1808701 Heicheng Heicheng Hei-ch'eng-chen,Hei-ch’eng-chen,Heicheng,Heicheng Zhen,hei cheng,hei cheng zhen,黑城,黑城镇 36.37019 106.08623 P PPLA4 CN 21 0 1524 Asia/Chongqing 2012-01-18
-1808707 Hehu Hehu Hehu,Hehu Xiang,he hu,he hu xiang,荷湖,荷湖乡 27.92872 115.72364 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-18
-1808716 Hefu Hefu Hefu,Hefu Zhen,Ho-fu,he fu,he fu zhen,河洑,河洑镇 29.03843 111.59723 P PPLA4 CN 11 0 44 Asia/Shanghai 2012-01-18
-1808722 Hefei Hefei Che-fej,Hefei,Hefejus,Hefėjus,Ho-fei,Ho-fei-hsien,Ho-fei-shih,Hop Phi,Hợp Phì,Khehfehj,Lu-chou,Luchow,Luchowfu,Lunchow,he fei,he fei shi,khfy,Хэфэй,خفي,خېفېي شەھىر,合肥,合肥市 31.86389 117.28083 P PPLA CN 01 1388904 24 Asia/Shanghai 2012-01-18
-1808731 Hedian Hedian Hedian,Hedian Zhen,Ho-chia-tien,he dian,he dian zhen,何店,何店镇 31.59356 113.32142 P PPLA4 CN 12 0 74 Asia/Chongqing 2012-01-18
-1808740 Hedi Hedi Hedi,Hedi Zhen,Ho-ti,he di,he di zhen,河底,河底镇 35.33371 111.35692 P PPLA4 CN 24 0 532 Asia/Chongqing 2012-01-18
-1808744 Hede Hede Hede,Ho-te,Ho-te-chen,Ho-te-kung-ssu,Hsia-ssu-chiang,Khede,Sheyang,Хеде 33.76806 120.25167 P PPL CN 04 89107 3 Asia/Shanghai 2012-01-18
-1808747 Hecun Hecun Hecun,Ho-ts'un,Ho-ts'un-ch'ien,Ho-ts'un-chen,Ho-ts’un,Ho-ts’un-chen,Ho-ts’un-ch’ien 36.53333 114.11111 P PPL CN 10 83009 247 Asia/Shanghai 2012-01-18
-1808749 Hecun Hecun Hecun,he cun,合村 29.93913 119.30658 P PPLA4 CN 02 0 80 Asia/Shanghai 2012-01-18
-1808750 Hecun Hecun Hecun,Hecun Zhen,Ho-ts'un,Ho-ts'un-shih,Ho-ts’un,Ho-ts’un-shih,he cun,he cun zhen,贺村,贺村镇 28.67027 118.5287 P PPLA4 CN 02 0 123 Asia/Shanghai 2012-01-18
-1808764 Hebu Hebu Hebu,Hebu Xiang,Ho-pu,he pu,he pu xiang,荷浦,荷浦乡 27.8364 115.39042 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-18
-1808770 Hebi Hebi Hao-pi,Hao-pi-chen,Hao-pi-chi,Hao-pi-shih,Hebi,Ho-pi,Ho-pi-shih,Hopitsi,he bi shi,鹤壁市 35.89917 114.1925 P PPL CN 09 244662 138 Asia/Shanghai 2012-01-18
-1808772 Hebeitun Hebeitun Hebeitun,Ho-pei-t'un,Ho-pei-t’un,Ho-po-t'un,Ho-po-t’un 39.57472 117.11333 P PPL CN CN 28 4248 9 Asia/Shanghai 2012-01-18
-1808783 Heba Heba Heba,he ba,何坝 33.93624 105.21625 P PPLA4 CN 15 0 1772 Asia/Chongqing 2012-01-18
-1808795 Haokou Haokou Hao-tzu-k'ou,Hao-tzu-k’ou,Haokou,Haokou Zhen,Haozikou,hao kou,hao kou zhen,浩口,浩口镇 30.38128 112.63993 P PPLA4 CN 12 0 33 Asia/Chongqing 2012-01-18
-1808796 Haozigang Haozigang Haozigang,Haozigang Zhen,hao zi gang,hao zi gang zhen,蒿子港,蒿子港镇 29.27169 112.05673 P PPLA4 CN 11 0 33 Asia/Shanghai 2012-01-18
-1808807 Haozhai Haozhai Haozhai,Haozhai Zhen,Ho-chai,hao zhai,hao zhai zhen,郝寨,郝寨镇 33.00959 113.03456 P PPLA4 CN 09 0 136 Asia/Chongqing 2012-01-18
-1808810 Haoxue Haoxue Hao-hsueh,Hao-hsüeh,Haoxue,Ho-hsueh,Ho-hsüeh,hao xue,郝穴 30.04761 112.46759 P PPLA3 CN 12 0 30 Asia/Chongqing 2012-01-18
-1808836 Haodian Haodian Hao-chia-tien,Haodian,Haodian Zhen,Haojiadian,Ho-chia-tien,hao dian,hao dian zhen,郝店,郝店镇 31.79304 113.74546 P PPLA4 CN 12 0 127 Asia/Chongqing 2012-01-18
-1808848 Haocun Haocun Haocun,hao cun,濠村 27.59152 118.46817 P PPLA4 CN 07 0 225 Asia/Shanghai 2012-01-18
-1808857 Hanzhong Hanzhong Han-chung,Han-chung-fu,Han-chung-shih,Hantai,Hantai Qu,Hanzhong,Hanzhong Shi,Khan'chzhun,Khan’chzhun,Nan'chzhen,Nan-cheng,Nan-cheng-hsien,Nan’chzhen,han tai,han tai qu,han zhong,han zhong shi,Ханьчжун,汉中,汉中市,汉台,汉台区 33.07278 107.03028 P PPLA3 CN 26 145986 515 Asia/Chongqing 2012-01-18
-1808861 Hanyuan Hanyuan Hanyuan,Hsi-ho,Hsi-ho-hsien,Si-ho-hien,Si-ho-hién,Siho,Sikhe,Xihe,Xihe Xian,han yuan,xi he,xi he xian,汉源,西和,西和县 34.01083 105.29194 P PPLA3 CN 15 0 1663 Asia/Chongqing 2012-01-18
-1808872 Fu’an Fu'an Fu'an,Fu-an-hsien,Fuanja,Fu’an,Hanyang,Фуаня 27.08917 119.64528 P PPL CN 07 71053 30 Asia/Shanghai 2012-01-18
-1808879 Hanting Hanting Han-t'ing-chen,Han-t’ing-chen,Hanting,Hanting Qu,Hantingchieh,Wei-hsien,Weixian,han ting,han ting qu,wei xian,寒亭,寒亭区,潍县 36.77083 119.21083 P PPL CN 25 90637 18 Asia/Shanghai 2012-01-18
-1808880 Hanting Hanting Han-t'ing-chen,Han-t’ing-chen,Hanting,Hanting Zhen,Hung-chia-tsui,han ting,han ting zhen,寒亭,寒亭镇 30.91868 118.54848 P PPLA4 CN 01 0 23 Asia/Shanghai 2012-01-18
-1808881 Hantang Hantang Hantang,Hantang Zhen,Nantang,han tang,han tang zhen,翰堂,翰堂镇 28.15283 114.7894 P PPLA4 CN 03 0 70 Asia/Shanghai 2012-01-18
-1808887 Hanshou Hanshou Han-shou-ch'eng,Han-shou-ch’eng,Han-shou-hsien,Hanshou,Hanshou Xian,Hanshow-hsien,Longyang,Longyang Zhen,han shou,han shou xian,long yang,long yang zhen,汉寿,汉寿县,龙阳,龙阳镇 28.90583 111.95611 P PPLA3 CN 11 0 31 Asia/Chongqing 2012-01-18
-1808899 Hanjiashu Hanjiashu Han-chia-shu,Hanjiashu,Hanliushu 39.1875 117.07306 P PPL CN CN 28 7533 7 Asia/Shanghai 2012-01-18
-1808915 Hanjia Hanjia Han-chia,Hanjia,han jia,韩家 34.9286 107.86802 P PPLA4 CN 26 0 1376 Asia/Chongqing 2012-01-18
-1808917 Hanji Hanji Han-chia-chi,Han-kia-tsi,Hang-chang-ch'ih,Hang-chang-ch’ih,Hanji,Hanji Zhen,Hanjiaji,Lin-hsia,Lin-hsia-hsien,Linxia Xian,Ta-chia-li-shan,han ji,han ji zhen,lin xia xian,临夏县,韩集,韩集镇 35.49544 102.9926 P PPLA3 CN 15 0 2159 Asia/Chongqing 2012-01-18
-1808926 Hangzhou Hangzhou Hanchow-fu,Hang,Hang Chau,Hang-chou,Hang-chou-shih,Hang-hsien,Hangchow,Hangzhou,Hàng Châu,Khanchzhou,hang zhou,hang zhou shi,hangjeou,Ханчжоу,خاڭجۇ شەھىر,杭州,杭州市,항저우 30.29365 120.16142 P PPLA CN 02 1878129 12 Asia/Shanghai 2012-01-18
-1808931 Hangu Hangu Han-ku,Han-ku-shih,Hangu,Khanga,Ханга 39.24889 117.78917 P PPL CN 28 208369 3 Asia/Shanghai 2012-01-18
-1808935 Hangou Hangou Han-kou,Han-kou-chen,Hangou 39.29083 117.09 P PPL CN CN 28 2400 6 Asia/Shanghai 2012-01-18
-1808936 Hangongdu Hangongdu Hangongdu,Hangongdu Zhen,han gong du,han gong du zhen,韩公渡,韩公渡镇 29.08882 111.9189 P PPLA4 CN 11 0 35 Asia/Shanghai 2012-01-18
-1808944 Hangchuan Hangchuan Guangze,Hangchuan,Kuang-te,Kuang-tse,Kuang-tse-hsien,Kwangtseh,Kwangtseh-hsien,Kwangtsen,hang chuan,杭川 27.51947 117.33491 P PPLA3 CN 07 0 385 Asia/Shanghai 2012-01-18
-1808951 Hanfang Hanfang Hanfang,Hanfang Xiang,han fang,han fang xiang,韩坊,韩坊乡 25.48877 115.093 P PPLA4 CN 03 0 188 Asia/Shanghai 2012-01-18
-1808956 Changzhi Changzhi Ch'ang-chih,Ch'ang-chih-hsien,Ch'ang-chih-shih,Chang-chi,Changzhi,Changzhi Shi,Ch’ang-chih,Ch’ang-chih-hsien,Ch’ang-chih-shih,Handian,Luan,Luanfu,lu an,lu an fu,zhang zhi,zhang zhi shi,潞安,潞安府,长治,长治市 36.18389 113.10528 P PPLA2 CN 24 0 937 Asia/Shanghai 2012-01-18
-1808957 Handian Handian Ch'ang-chih-hsien,Changzhi,Changzhi Xian,Ch’ang-chih-hsien,Han-tien,Han-tien-chen,Handian,Handian Zhen,han dian,han dian zhen,zhang zhi xian,长治县,韩店,韩店镇 36.04583 113.04417 P PPLA3 CN 24 0 971 Asia/Chongqing 2012-01-18
-1808963 Handan Handan Han-tan,Han-tan-hsien,Han-tan-shih,Handan,Khan'dan',Ханьдань 36.60056 114.46778 P PPL CN 10 1358318 66 Asia/Shanghai 2012-01-18
-1808977 Hanchuan Hanchuan Han-ch'uan-hsien,Han-ch’uan-hsien,Hanchuan,Hanchwan,Hanchwanhsien 30.65 113.76667 P PPL CN 12 87737 25 Asia/Chongqing 2012-01-18
-1808981 Hancheng Hancheng Han-ch'eng-hsien,Han-ch’eng-hsien,Hancheng,Khanchen 35.46028 110.42917 P PPL CN 26 58049 383 Asia/Chongqing 2012-01-18
-1809003 Haizhou Haizhou Chiu-tung-hai,Hai-chou,Haichow,Haizhou,Tung-hai,Tung-hai-ch'eng,Tung-hai-ch’eng,Tung-hai-hsien,hai zhou,海州 34.58167 119.12889 P PPL CN 04 59098 6 Asia/Shanghai 2012-01-18
-1809010 Haiyou Haiyou Hai-yu,Hai-yu-chen,Haiyou,Haiyou Zhen,Haiyouzhen,Sanmen,hai you,hai you zhen,san men,三门,海游,海游镇 29.12358 121.37344 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1809013 Haiyan Haiyan Hai-yen-chen,Haiyan,Haiyan Zhen,Haiyanzhen,hai yan,hai yan zhen,海晏,海晏镇 32.14405 121.3418 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1809023 Haiyang Haiyang Hai-yang-chen,Haiyang,Haiyang Zhen,Hsiu-ning,Hsiu-ning-hsien,Siuning,Siuning-hsien,Xiuning,hai yang,hai yang zhen,xiu ning,休宁,海阳,海阳镇 29.78612 118.17698 P PPLA3 CN 01 0 157 Asia/Shanghai 2012-01-18
-1809033 Haitou Haitou Hai-t'ou-chen,Hai-t’ou-chen,Haitou,Haitou Zhen,hai tou,hai tou zhen,海头,海头镇 34.93361 119.16972 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1809034 Haitou Haitou Hai-t'ou-chiang,Hai-t'ou-shih,Hai-t’ou-chiang,Hai-t’ou-shih,Haitou,Haitou Zhen,Hoita,Hoitou,Hoitow,hai tou,hai tou zhen,海头,海头镇 19.50563 108.95054 P PPLA4 CN 31 0 10 Asia/Chongqing 2012-01-18
-1809049 Hairag Hairag Ch'ia-erh-ch'i,Chargi,Ch’ia-erh-ch’i,Ha'ergaixiang,Ha-erh-kai,Ha-erh-kai-hsiang,Hairag,Ha’ergaixiang,K'a-erh,K'a-erh-ch'i,Kharg,Khargi,K’a-erh,K’a-erh-ch’i,ha er gai,哈尔盖 37.22317 100.41617 P PPLA4 CN 06 0 3266 Asia/Chongqing 2012-01-18
-1809061 Jiaojiang Jiaojiang Hai-men-chen,Haimen,Jiaojiang 28.68028 121.44278 P PPL CN 02 470804 12 Asia/Shanghai 2012-01-18
-1809062 Haimen Haimen Hai-men-so,Haimen,Haimen Zhen,Haimun,Haimung,Hoimoon,hai men,海门 23.19349 116.61422 P PPLA4 CN 30 125427 16 Asia/Shanghai 2012-01-18
-1809074 Haikou Haikou Hai-k'ou-shih,Hai-k’ou-shih,Haikou,Haikou Zhen,hai kou,hai kou zhen,海口,海口镇 29.10682 117.80736 P PPLA4 CN 03 0 64 Asia/Shanghai 2012-01-18
-1809077 Haikou Haikou Haikou,Haikou Zhen,hai kou,hai kou zhen,海口,海口镇 24.77985 102.57548 P PPLA4 CN 29 112644 1909 Asia/Chongqing 2012-01-29
-1809078 Haikou Haikou Ha k'uo-shih,Ha k’uo-shih,Hai Khau,Hai-k'ou-shih,Hai-k'ou-so-ch'eng,Hai-k’ou-shih,Hai-k’ou-so-ch’eng,Haik-how,Haikou,Haikou Shi,Haikow,Heihow,Hoi Hao,Hoihau,Hoihow,Hải Khẩu,Khajkou,hai kou,hai kou shi,Хайкоу,خەيكو شەھىر,海口,海口市 20.04583 110.34167 P PPLA CN 31 615835 14 Asia/Chongqing 2012-01-18
-1809084 Haihui Haihui Haihui,Haihui Zhen,hai hui,hai hui zhen,海会,海会镇 29.54333 116.05336 P PPLA4 CN 03 0 136 Asia/Shanghai 2012-01-18
-1809096 Haifu Haifu Hai-fu-chen,Haifu,Haifu Zhen,Haifuzhen,hai fu,hai fu zhen,海复,海复镇 31.98667 121.6875 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1809100 Haicheng Haicheng Hai-ch'eng-chen,Hai-ch’eng-chen,Hai-feng-hsien,Haicheng,Haifeng,Hoifung,Hoifung-hsien,hai cheng,海城 22.97533 115.33179 P PPLA3 CN 30 0 10 Asia/Shanghai 2012-01-18
-1809112 Haibeitou Haibeitou Hai-pei-t'ou,Hai-pei-t’ou,Haibeitou,Haibeitou Xiang,hai bei tou,hai bei tou xiang,海北头,海北头乡 39.80382 113.18501 P PPLA4 CN 24 0 994 Asia/Shanghai 2012-01-18
-1809116 Hai’an Hai'an Hai'an,Hai'an Xian,Hai'an Zhen,Hai-an-chen,Hai’an,Hai’an Xian,Hai’an Zhen,hai an,hai an xian,hai an zhen,海安,海安县,海安镇 32.54361 120.45 P PPLA3 CN 04 0 9 Asia/Shanghai 2012-01-18
-1809139 Guzhen Chengguanzhen Guzhen Chengguanzhen Guzhen,Guzhen Chengguanzhen,Ku-chen,gu zhen cheng guan zhen,固镇城关镇 33.31056 117.31056 P PPLA3 CN 01 0 22 Asia/Shanghai 2012-01-18
-1809153 Guyong Guyong Chiang-le,Chiang-lo,Chiang-lo-hsien,Guyong,Jiangle,Tsianglo,Tsianglohsien,gu yong,古镛 26.73083 117.46833 P PPLA3 CN 07 0 162 Asia/Shanghai 2012-01-18
-1809157 Guyi Guyi Guyi,Ku-i,Ku-i-chen,Kuyi,San-chiang,San-chiang-hsien,San-chiang-t'ung-tsu-tzu-chih-hsien,San-chiang-t’ung-tsu-tzu-chih-hsien,San-kiang,Sanjiang,gu yi,古宜 25.77778 109.60028 P PPLA3 CN 16 0 160 Asia/Chongqing 2012-01-18
-1809159 Guye Guye Guye,Ku-yeh 39.73333 118.41667 P PPL CN 10 41484 39 Asia/Harbin 2012-01-18
-1809162 Guyang Guyang Guyang,Guzhang,Ku-chang,Ku-chang-hsien,Ku-chang-p'ing,Ku-chang-p’ing,gu yang,古阳 28.61667 109.93333 P PPLA3 CN 11 0 370 Asia/Chongqing 2012-01-18
-1809169 Guxiang Guxiang Gugang,Guxiang,Guxiang Zhen,Ku-chiang-chan,Ku-hsiang,gu xiang,古巷 23.66511 116.5649 P PPLA4 CN 30 0 15 Asia/Shanghai 2012-01-18
-1809190 Guxian Guxian Guxian,Guxian Zhen,Ku-hsien,gu xian,gu xian zhen,古县,古县镇 27.15357 115.51544 P PPLA4 CN 03 0 98 Asia/Shanghai 2012-01-18
-1809192 Guxi Guxi Guxi,Guxi Zhen,Ku-ch'i,Ku-ch'i-chen,Ku-ch’i,Ku-ch’i-chen,Ku-hsi,gu xi,gu xi zhen,古溪,古溪镇 32.34596 120.33467 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1809203 Gutian Gutian Gutian,Gutian Zhen,Ku-t'ien,Ku-t’ien,gu tian,gu tian zhen,姑田,姑田镇 25.69563 116.96571 P PPLA4 CN 07 0 452 Asia/Shanghai 2012-01-18
-1809204 Gutian Gutian Gutian,Gutian Zhen,Ku-t'ien,Ku-t’ien,gu tian,gu tian zhen,古田,古田镇 25.22778 116.8181 P PPLA4 CN 07 0 717 Asia/Shanghai 2012-01-18
-1809206 Gutang Gutang Gutang,Gutang Zhen,gu tang,gu tang zhen,姑塘,姑塘镇 29.62185 116.11807 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-18
-1809208 Gutan Gutan Gutan,Gutan Xiang,Ku-t'an,Ku-t’an,gu tan,gu tan xiang,古坦,古坦乡 29.45332 117.68022 P PPLA4 CN 03 0 161 Asia/Shanghai 2012-01-18
-1809222 Gushi Gushi Gushi,Gushi Zhen,Ku-shih,Ku-shih-chen,gu shi,故市 34.6425 109.58426 P PPLA4 CN 26 0 351 Asia/Chongqing 2012-01-18
-1809224 Gushi Gushi Gushi,Gushi Zhen,Ku-shih,gu shi,gu shi zhen,古市,古市镇 29.06127 114.14797 P PPLA4 CN 03 0 170 Asia/Chongqing 2012-01-18
-1809233 Gushan Gushan Gushan,Gushan Zhen,Ku-shan,Ku-shan-chen,gu shan,gu shan zhen,孤山,孤山镇 32.06667 120.3 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1809239 Xiagulei Xiagulei Daowei Cangzu Xiang,Guru,Gurü,Xiagulei,dao wei cang zu xiang,gu lei,xia gu lei,下古雷,古雷,道帏藏族乡 35.65318 102.64583 P PPLA4 CN 06 0 2626 Asia/Chongqing 2012-01-18
-1809263 Guozhen Guozhen Baoji,Chencang Qu,Gochzhen,Guo Zhen,Guo zhen,Guozhen,Guozhen zhen,Ko-chen,Kuo-chen,Pao-chi,Pao-chi-hsien,chen cang qu,guo zhen,guo zhen zhen,虢镇,虢镇镇,陈仓区 34.36591 107.35904 P PPLA3 CN 26 85415 551 Asia/Chongqing 2012-01-18
-1809264 Guozhen Guozhen Guozhen,Kuo-chen,Kuo-chia-pa,guo zhen,郭镇 33.32806 105.82486 P PPLA4 CN 26 0 1250 Asia/Chongqing 2012-01-18
-1809271 Guoyang Chengguanzhen Guoyang Chengguanzhen Guoyang,Guoyang Chengguanzhen,Ke-yang,Ko-yang,Ko-yang-hsien,Kuo-yang,Kwoyang,Kwoyang-hsien,wo yang cheng guan zhen,涡阳城关镇 33.5055 116.2308 P PPLA3 CN 01 0 31 Asia/Shanghai 2012-01-18
-1809300 Guojiazhuang Guojiazhuang Guojiazhuang,Guojiazhuang Zhen,Kuo-chia-chuang,guo jia zhuang,guo jia zhuang zhen,郭家庄,郭家庄镇 35.30449 111.16253 P PPLA4 CN 24 0 460 Asia/Chongqing 2012-01-18
-1809305 Guoyuan Guoyuan Guojiayuan,Guoyuan,Guoyuan Zhen,Kuo-chia-yuan,Kuo-chia-yüan,guo yuan,guo yuan zhen,郭园,郭园镇 32.1675 120.60306 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1809326 Guoji Guoji Guoji,Kuo-chi,guo ji,郭集 32.97812 113.12217 P PPLA4 CN 09 0 136 Asia/Chongqing 2012-01-18
-1809329 Guohua Guohua Guohua,Guohua Zhen,guo hua,guo hua zhen,国华,国华镇 32.47974 106.29229 P PPLA4 CN 32 0 626 Asia/Chongqing 2012-01-18
-1809338 Guofuchang Guofuchang Guofu,Guofuchang,Kuo-fu 28.85 106.60139 P PPL CN CN 33 1200 649 Asia/Chongqing 2012-01-18
-1809343 Guodu Guodu Guodu,Guodu Jieban,Kuo-tu,Kuo-tu-chen,guo du,guo du jie ban,郭杜,郭杜街办 34.15537 108.86431 P PPLA4 CN 26 0 429 Asia/Chongqing 2012-01-18
-1809361 Guocun Guocun Guocun,guo cun,郭村 29.55479 118.63296 P PPLA4 CN 02 0 134 Asia/Shanghai 2012-01-18
-1809362 Guochuan Guochuan Daijiayanxing,Guochuan,Guochuan Zhen,Guochuangang,dai jia yan xing,guo chuan,guo chuan zhen,戴家烟行,过船,过船镇 32.15639 119.93861 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1809398 Gulonggang Gulonggang Gulonggang,Gulonggang Zhen,Ku-lung-kang,gu long gang,gu long gang zhen,古龙冈,古龙冈镇 26.44778 115.69697 P PPLA4 CN 03 0 250 Asia/Shanghai 2012-01-18
-1809406 Guling Guling Guling,Guling Zhen,gu ling,gu ling zhen,牯岭,牯岭镇 29.56902 115.9761 P PPLA4 CN 03 0 1145 Asia/Shanghai 2012-01-18
-1809408 Gulin Gulin Gulin,Ku-lin,Ku-lin-hsien,gu lin,古蔺 28.04223 105.81038 P PPLA3 CN 32 0 506 Asia/Chongqing 2012-01-18
-1809410 Guli Guli Guli,Guli Zhen,Ku-li,gu li,gu li zhen,谷里,谷里镇 31.88333 118.68333 P PPLA4 CN 04 0 12 Asia/Shanghai 2012-01-18
-1809412 Guli Guli Guli,Yongkang,Yung-k'ang,Yung-k'ang-hsien,Yung-k’ang,Yung-k’ang-hsien,Гули 28.88333 120.03333 P PPL CN CN 02 536000 111 Asia/Shanghai 2012-01-18
-1809417 Gulaobei Gulaobei Gulaobei,Gulaobei Jiedao,Ku-lao-pei,gu lao bei,gu lao bei jie dao,古老背,古老背街道 30.51941 111.42664 P PPLA3 CN 12 0 58 Asia/Chongqing 2012-01-18
-1809423 Gulai Gulai Gulai,Gulai Zhen,K'o-lai,Ku-lai,Ku-lai-ts'un,Ku-lai-ts’un,K’o-lai,gu lai,gu lai zhen,谷来,谷来镇 29.69094 120.6427 P PPLA4 CN 02 0 200 Asia/Shanghai 2012-01-18
-1809436 Shangyuan Shangyuan Chung-ku-chiao,Gujiao Zhen,Ku-chiao,Nan-ku-chiao,Pei-ku-chiao,Shangyuan,gu jiao zhen,shang yuan,上院,古交镇 35.61506 111.13237 P PPLA4 CN 24 0 423 Asia/Chongqing 2012-01-18
-1809439 Gujiang Gujiang Gujiang,Gujiang Zhen,Ku-chiang,gu jiang,gu jiang zhen,固江,固江镇 27.18809 114.788 P PPLA4 CN 03 0 64 Asia/Shanghai 2012-01-18
-1809451 Guiyu Guiyu Guiyu,Guiyu Zhen,gui yu,贵屿 23.32213 116.34295 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-18
-1809461 Guiyang Guiyang Guiyang,Guiyang Shi,Gujangas,Gujjan,Kuei-chu,Kuei-yang,Kuei-yang-shih,Kweichu,Kweiyang,Kweiyangfu,Quy Duong,Quý Dương,gui yang,gui yang shi,Гуйян,گۇيياڭ شەھىرى,貴陽,贵阳,贵阳市 26.58333 106.71667 P PPLA CN 18 1171633 1087 Asia/Chongqing 2012-01-18
-1809463 Guiyang Chengguanzhen Guiyang Chengguanzhen Guiyang,Guiyang Chengguanzhen,Kuei-yang,Kuei-yang-ch'eng,Kuei-yang-ch’eng,Kuei-yang-hsien,Kweiyang,Kweiyang-hsien,Kweiyangchow,gui yang cheng guan zhen,桂阳城关镇 25.73333 112.74589 P PPLA3 CN 11 0 319 Asia/Chongqing 2012-01-18
-1809471 Guitou Guitou Guitou,Guitou Zhen,Kuei-t'ou,Kuei-t'ou-hsu,Kuei-t’ou,Kuei-t’ou-hsü,gui tou,gui tou zhen,桂头,桂头镇 24.94553 113.4263 P PPLA4 CN 30 0 79 Asia/Shanghai 2012-01-18
-1809479 Guishan Guishan Guishan,Guishan Xiang,gui shan,gui shan xiang,皈山,皈山乡 30.65 119.55 P PPLA4 CN 02 0 57 Asia/Shanghai 2012-01-18
-1809481 Guishan Guishan Guishan,Hsin-p'ing,Hsin-p'ing-hsien,Hsin-p’ing,Hsin-p’ing-hsien,Sinping-hsien,Xinping,gui shan,桂山 24.05027 102.00018 P PPLA3 CN 29 0 1875 Asia/Chongqing 2012-01-18
-1809483 Guiren Guiren Guiren,Kuei-jen,Kuei-jen-chi 33.66972 118.18889 P PPL CN 04 57446 22 Asia/Shanghai 2012-01-18
-1809486 Guiping Guiping Guiping,Hsun-chou,Hsün-chou,Kuei-p'ing,Kuei-p'ing-hsien,Kuei-p’ing,Kuei-p’ing-hsien,Kweiping,Kweiping-hsien,Sun-chow-fu,Sunchow,Sunshow,Sün-chow-fu,Sünchow 23.3925 110.08139 P PPL CN 16 71066 43 Asia/Chongqing 2012-01-18
-1809498 Guilin Guilin Guilin,Gujlin',Kuei-lin,Kuei-lin-shih,Kweilin,Kweilin-hsien,Lin-kuei,Lin-kuei-hsien,Lin-kwei,Ling-ch'uan,Ling-ch’uan,Que Lam,Quế Lâm,gui lin,gui lin shi,Гуйлинь,桂林,桂林市 25.28194 110.28639 P PPLA2 CN 16 649352 160 Asia/Chongqing 2012-01-18
-1809521 Guidong Chengguanzhen Guidong Chengguanzhen Guidong,Guidong Chengguanzhen,Kuei-tung,Kuei-tung-hsien,Kweitung,Kweitung-hsien,gui dong cheng guan zhen,桂东城关镇 26.0817 113.98226 P PPLA3 CN 11 0 1088 Asia/Chongqing 2012-01-18
-1809532 Guigang Guigang Guicheng,Guigang,Guixian,Kuei,Kuei-hsien,Kweihsien 23.09639 109.60917 P PPL CN 16 76430 51 Asia/Chongqing 2012-01-18
-1809543 Gugaozhuang Gugaozhuang Gugao,Gugao Zhen,Gugaozhuang,Ku-kao,Ku-kao-chuang,gu gao,gu gao zhen,gu gao zhuang,顾高,顾高庄,顾高镇 32.3646 120.16336 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1809548 Gufeng Gufeng Gufeng,Ku-fen,Ku-fen-chen,Ku-feng-chen,Ku-hsia,Pingnan,gu feng,古峰 26.90833 118.98194 P PPLA3 CN 07 9390 831 Asia/Shanghai 2012-01-18
-1809573 Gucun Gucun Gucun,Gucun Zhen,Ku-ts'un,Ku-ts’un,gu cun,gu cun zhen,固村,固村镇 26.24163 116.14805 P PPLA4 CN 03 0 200 Asia/Shanghai 2012-01-18
-1809597 Gucheng Gucheng Gucheng,Gucheng Zhen,Ku-ch'eng,Ku-ch'eng-chen,Ku-ch’eng,Ku-ch’eng-chen,gu cheng,gu cheng zhen,古城,古城镇 35.91152 111.31924 P PPLA4 CN 24 0 519 Asia/Chongqing 2012-01-18
-1809599 Gucheng Gucheng Gucheng,Gucheng Zhen,Ku-ch'eng,Ku-ch’eng,gu cheng,gu cheng zhen,古城,古城镇 35.85694 106.45806 P PPLA4 CN 21 0 1619 Asia/Chongqing 2012-01-18
-1809610 Gucheng Chengguanzhen Gucheng Chengguanzhen Gucheng,Gucheng Chengguanzhen,Ku-ch'eng,Ku-ch'eng-hsien,Ku-ch’eng,Ku-ch’eng-hsien,gu cheng cheng guan zhen,古城城关镇 32.26604 111.63476 P PPLA3 CN 12 74038 88 Asia/Chongqing 2012-01-18
-1809612 Gucheng Gucheng Gucheng,Gucheng Zhen,Ku-ch'eng,Ku-ch'eng-chen,Ku-ch’eng,Ku-ch’eng-chen,gu cheng,gu cheng zhen,固城,固城镇 31.30568 118.96406 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-18
-1809615 Gucheng Gucheng Gucheng,Gucheng Zhen,Ku-ch'eng,Ku-ch’eng,gu cheng,gu cheng zhen,古城,古城镇 25.8645 116.16799 P PPLA4 CN 07 0 242 Asia/Shanghai 2012-01-18
-1809619 Gubu Gubu Gubu,Gubu Zhen,Ku-pu,gu bu,gu bu zhen,古埠,古埠镇 28.71732 116.80152 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-18
-1809625 Gubei Gubei Gubei,Gubei Zhen,gu bei,gu bei zhen,古陂,古陂镇 25.33458 115.0989 P PPLA4 CN 03 0 166 Asia/Shanghai 2012-01-18
-1809629 Guapo Guapo Guapo,Guapo Zhen,Kua-p'o,Kua-p'o-chen,Kua-p’o,Kua-p’o-chen,gua po,瓜坡 34.47728 109.70602 P PPLA4 CN 26 0 393 Asia/Chongqing 2012-01-18
-1809650 Guanzhuang Guanzhuang Guanzhuang,Guanzhuang Zhen,Kuan-chuang,guan zhuang,guan zhuang zhen,关庄,关庄镇 34.95726 108.86648 P PPLA4 CN 26 0 956 Asia/Chongqing 2012-01-18
-1809651 Guanzhuang Guanzhuang Guanzhuang,Guanzhuang Zhen,Hsi-kuan-chuang,Kuan-chuang,guan zhuang,guan zhuang zhen,官庄,官庄镇 34.89917 108.41139 P PPLA4 CN 26 0 1124 Asia/Chongqing 2012-01-18
-1809653 Guanzhuang Guanzhuang Guanzhuang,Kuan-chuang,guan zhuang,官庄 32.88654 113.29549 P PPLA4 CN 09 0 182 Asia/Chongqing 2012-01-18
-1809662 Guanzhuang Guanzhuang Guanzhuang,Guanzhuang Shezu Xiang,Kuan-chuang,Kuan-chuang-hsu,Kuan-chuang-hsü,guan zhuang,guan zhuang she zu xiang,官庄,官庄畲族乡 25.30944 116.34472 P PPLA4 CN 07 0 239 Asia/Shanghai 2012-01-18
-1809675 Guanyuan Guanyuan Guanyuan,Guanyuan Matou,Guanyuan Xiang,guan yuan,guan yuan ma tou,guan yuan xiang,官垸,官垸乡,官垸码头 29.55873 112.00991 P PPLA4 CN 11 0 33 Asia/Shanghai 2012-02-02
-1809691 Guanyinsi Guanyinsi Guanyinsi,Kuan-yin-ssu,guan yin si,观音寺 33.36667 106.45476 P PPLA4 CN 26 0 934 Asia/Chongqing 2012-01-18
-1809706 Guanyinge Guanyinge Guanyinge,Guanyinge Zhen,guan yin ge,观音阁 23.4 114.59075 P PPLA4 CN 30 0 28 Asia/Chongqing 2012-01-18
-1809745 Guantou Guantou Guantou,Guantou Zhen,Kuan-t'ou,Kuan-t'ou-chen,Kuan-t’ou,Kuan-t’ou-chen,guan tou,guan tou zhen,关头,关头镇 34.65727 108.07448 P PPLA4 CN 26 0 1016 Asia/Chongqing 2012-01-18
-1809747 Guantou Guantou Guantou,Kuan-t'ou,Kuan-t’ou,Kwantow 26.13528 119.56333 P PPL CN CN 07 5790 14 Asia/Shanghai 2012-01-18
-1809749 Guanting Guanting Guanting,Guanting Xiang,Kuan-t'ing,Kuan-t’ing,guan ting,guan ting xiang,官厅,官厅乡 36.16314 106.41469 P PPLA4 CN 21 0 1718 Asia/Chongqing 2012-01-18
-1809750 Guanting Guanting Guanting,Guanting Zhen,Kuan-t'ing,Kuan-t’ing,guan ting,guan ting zhen,官亭,官亭镇 35.87544 102.79962 P PPLA4 CN 06 0 1841 Asia/Chongqing 2012-01-18
-1809752 Guanting Guanting Guanting,Guanting Zhen,Kuan-t'ing,Kuan-t’ing,guan ting,guan ting zhen,官亭,官亭镇 33.81652 104.53227 P PPLA4 CN 15 0 1428 Asia/Chongqing 2012-01-18
-1809757 Guantian Guantian Guantian,Guantian Xiang,Kuan-t'ien,Kuan-t’ien,guan tian,guan tian xiang,官田,官田乡 27.06454 114.66656 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-18
-1809762 Guantangyi Guantangyi Guantangyi,Guantangyi Zhen,Kuan-t'ang-i,Kuan-t’ang-i,guan tang yi,guan tang yi zhen,官塘驿,官塘驿镇 29.77564 114.08595 P PPLA4 CN 12 0 56 Asia/Chongqing 2012-01-18
-1809780 Guanshan Guanshan Guanshan,Guanshan Zhen,Kuan-shan,Kuan-shan-chen,guan shan,关山 34.69277 109.37583 P PPLA4 CN 26 0 378 Asia/Chongqing 2012-01-18
-1809782 Guanshan Guanshan Guanshan,Guanshan Xiang,Kuan-shan,guan shan,guan shan xiang,冠山,冠山乡 27.09968 115.44618 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1809804 Guanqian Guanqian Guanqian,Guanqian Zhen,guan qian,guan qian zhen,馆前,馆前镇 25.93702 116.54305 P PPLA4 CN 07 0 519 Asia/Shanghai 2012-01-18
-1809819 Guanlu Guanlu Guanlu,Guanlu Zhen,Kuan-lu,Kuan-lu-chen,guan lu,官路 34.73779 109.72184 P PPLA4 CN 26 0 364 Asia/Chongqing 2012-01-18
-1809827 Guanlan Guanlan Guanlan,Kuan-lan,Kuan-lan-hsu,Kuan-lan-hsü,guan lan,观澜 22.7211 114.05244 P PPLA4 CN 30 0 36 Asia/Chongqing 2012-01-18
-1809831 Guankou Guankou Dujiangyan Shi,Guankou,Guankou Zhen,Guanxian,Kuan,Kuan-hsien,Kwanhsien,dou jiang yan shi,guan kou,guan kou zhen,灌口,灌口镇,都江堰市 31.00242 103.62227 P PPLA3 CN 32 0 725 Asia/Chongqing 2012-01-18
-1809833 Guankou Guankou Guankou,Guankou Zhen,Kuan-k'ou,Kuan-k’ou,guan kou,guan kou zhen,关口,关口镇 30.55 115.33333 P PPLA4 CN 12 0 56 Asia/Shanghai 2012-01-18
-1809858 Guangzhou Guangzhou CAN,Cantao,Canton,Cantão,Fan-yu,Fan-yü,Guanchzhou,Guangdzou,Guangdžou,Guangzhou,Guangzhou Shi,Gvangjcouh,Kanton,Kantono,Kouang-chou,Kuang-chou,Kuang-chou-shih,Kwang-chowfu,Kwangchow,P'an-yu,Puyun,Puyün,P’an-yü,Quang Chau,Quảng Châu,Shengcheng,guang zhou,guang zhou shi,gwangjeou,qwanghtshw,Гуанчжоу,Кантон,قوانغتشو,گوانگژو,گۇاڭجۇ شەھىرى,广州,广州市,広州,広州市,광저우 23.11667 113.25 P PPLA CN 30 3152825 15 Asia/Chongqing 2012-02-20
-1809861 Guangyubu Guangyubu Guangyubu,Guangyubu Xiang,Kuang-yu-pao,Kuang-yü-pao,Pao-tzu-shang,guang yu bao,guang yu bao xiang,光裕堡,光裕堡乡 39.18923 113.41135 P PPLA4 CN 24 0 1063 Asia/Shanghai 2012-01-18
-1809866 Guanyang Guanyang Guanyang,Kuan-yang,Kuan-yang-chen,Kuan-yang-hsien,Kwangyang-hsien,Kwanyanghsien,guan yang,灌阳 25.49523 111.13487 P PPLA3 CN 16 0 259 Asia/Chongqing 2012-01-18
-1809879 Guangshui Guangshui Guangshui,Guangshui Jiedao,Kuang-shui,Kuang-shui-chen,Kuang-shui-shih,Kwangshia,Kwangshui,guang shui,guang shui jie dao,广水,广水街道 31.6199 113.9978 P PPLA4 CN 12 154771 83 Asia/Shanghai 2012-01-18
-1809889 Guangping Guangping Guangping,Guangping Zhen,Kuang-p'ing,Kuang-p’ing,guang ping,guang ping zhen,广平,广平镇 26.09116 117.81904 P PPLA4 CN 07 0 382 Asia/Shanghai 2012-01-18
-1809899 Guangming Guangming Ganxiangying,Guangming,Hsi-te,Kan-hsiang-ying,Kan-shan-ying,Xide,guang ming,光明 28.3102 102.41189 P PPLA3 CN 32 0 1881 Asia/Chongqing 2012-01-18
-1809900 Guangming Guangming Guangming,Guangming Xiang,guang ming,guang ming xiang,光明,光明乡 26.79478 117.38993 P PPLA4 CN 07 0 226 Asia/Shanghai 2012-01-18
-1809910 Huquan Huquan Guangling,Guangling Xian,Huquan,Huquan Zhen,Kuang-ling,Kuang-ling-hsien,Kwang-ling,guang ling xian,hu quan,hu quan zhen,壶泉,壶泉镇,广灵县 39.79538 114.18303 P PPLA3 CN 24 0 1137 Asia/Shanghai 2012-01-18
-1809911 Guangling Guangling Guangling,Guangling Zhen,Guanglingzhen,Kuang-ling,Kuang-ling-chen,guang ling,guang ling zhen,广陵,广陵镇 32.10441 120.23627 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1809915 Guangji Guangji Chi-chen,Guangji,Guangji Zhen,Kuang-chi,guang ji,guang ji zhen,广济,广济镇 34.1182 108.14776 P PPLA4 CN 26 0 492 Asia/Chongqing 2012-01-18
-1809922 Guanghai Guanghai Guanghai,Guanghai Zhen,Kuang-hai,Kuang-hai-ch'eng,Kuang-hai-chai,Kuang-hai-ch’eng,Kuanghay,Kueng-hai,Kueng-shi,Kwonghoi,guang hai,guang hai zhen,广海,广海镇 21.96164 112.79307 P PPLA4 CN 30 0 12 Asia/Chongqing 2012-01-18
-1809923 Guangfuqiao Guangfuqiao Guangfuqiao,Guangfuqiao Zhen,guang fu qiao,guang fu qiao zhen,广福桥,广福桥镇 29.47699 111.29819 P PPLA4 CN 11 0 139 Asia/Shanghai 2012-01-18
-1809939 Guangcun Guangcun Guangcun,Guangcun Zhen,guang cun,guang cun zhen,光村,光村镇 19.81766 109.47686 P PPLA4 CN 31 0 15 Asia/Chongqing 2012-01-18
-1809942 Guangchen Guangchen Guangchen,Guangchen Zhen,Kuang-ch'en-chen,Kuang-ch’en-chen,guang chen,guang chen zhen,广陈,广陈镇 30.75215 121.12603 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1809945 Guang’ao Guang'ao Guang'ao,Guang'ao Jiedao,Guang’ao,Guang’ao Jiedao,guang ao,广澳 23.23083 116.77604 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-18
-1809950 Guangang Guangang Guangang,Guangang Zhen,Kuan-chiang,Kuan-kang,guan gang,guan gang zhen,官港,官港镇 29.91159 116.92858 P PPLA4 CN 01 0 95 Asia/Shanghai 2012-01-18
-1809955 Guan’er Guan'er Guan'er,Guan'er Xiang,Guan’er,Guan’er Xiang,Kuan-erh,Kuan-erh-shang,guan r,guan r xiang,官儿,官儿乡 39.51582 113.63519 P PPLA4 CN 24 0 1571 Asia/Shanghai 2012-01-18
-1809964 Guandu Guandu Chiu-hsi-shui,Guandu,Hsi-shui,Hsi-shui-hsien,Kuan-tu,Kuan-tu-ch'ang,Kuan-tu-ch’ang,Sishui,Sishui-hsien 28.61361 106.08139 P PPL CN CN 18 2064 672 Asia/Chongqing 2012-01-18
-1809972 Guandiping Guandiping Guandiping,Guandiping Zhen,Kuan-ti-p'ing,Kuan-ti-p’ing,guan de ping,guan de ping zhen,官地坪,官地坪镇 29.59232 110.4362 P PPLA4 CN 11 0 530 Asia/Chongqing 2012-01-18
-1809982 Guandi Guandi Guandi,Guandi Zhen,Kuan-ti,Kuan-ti-chen,guan di,官底 34.71281 109.44289 P PPLA4 CN 26 0 372 Asia/Chongqing 2012-01-18
-1809988 Guandao Guandao Guandao,Kuan-t'ou-chen,Kuan-tao,Kuan-t’ou-chen,guan dao,官道 34.63007 109.48328 P PPLA4 CN 26 0 353 Asia/Chongqing 2012-01-18
-1809994 Guanchi Guanchi Guanchi,Guanchi Zhen,Kuan-ch'ih,Kuan-ch’ih,Kuan-yu-ch'ih,Kuan-yü-ch’ih,guan chi,官池 34.70306 109.94036 P PPLA4 CN 26 0 355 Asia/Chongqing 2012-01-18
-1809998 Guanhaiwei Guanhaiwei Guancheng,Guanchengzhen,Guanhaiwei,Guanhaiwei Zhen,Kuan-ch'eng,Kuan-ch'eng-chen,Kuan-ch’eng,Kuan-ch’eng-chen,Kuan-hai-wei,Kuan-hai-wei-ch'eng,Kuan-hai-wei-ch’eng,guan hai wei,guan hai wei zhen,观海卫,观海卫镇 30.17033 121.4018 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1810000 Guanchao Guanchao Guanchao,Guanchao Zhen,guan chao,guan chao zhen,观巢,观巢镇 27.8857 114.8642 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-18
-1810012 Guanbuqiao Guanbuqiao Guanbuqiao,Guanbuqiao Zhen,Kuan-pu-ch'iao,Kuan-pu-ch’iao,guan bu qiao,guan bu qiao zhen,官埠桥,官埠桥镇 29.90072 114.31877 P PPLA4 CN 12 0 31 Asia/Shanghai 2012-01-18
-1810013 Guanbu Guanbu Guanbu,Guanbu Zhen,guan bu,关埠 23.43361 116.46361 P PPLA4 CN 30 0 5 Asia/Shanghai 2012-01-18
-1810023 Guali Guali Guali,Guali Zhen,Kua-li,Kua-li-shih,gua li,gua li zhen,瓜沥,瓜沥镇 30.18661 120.45359 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1810053 Goujie Goujie Goujie,Goujie Zhen,Kou-chieh,Kou-chieh-tzu,Kowkaitze,gou jie,gou jie zhen,狗街,狗街镇 24.78917 103.14194 P PPLA4 CN 29 0 1532 Asia/Chongqing 2012-01-18
-1810073 Gongyi Gongyi Gongyi,Gongyibu,Gongyizhen,gong yi,gong yi zhen,公易,公易镇 35.69064 105.7217 P PPLA4 CN 21 0 1882 Asia/Chongqing 2012-01-18
-1810080 Gongxi Gongxi Gongxi,Gongxi Zhen,Kung-ch'i,Kung-ch’i,Kung-hsi,Kung-p'o,Kung-p'o-hsu,Kung-pei,Kung-pei-hsu,Kung-pei-hsü,Kung-p’o,Kung-p’o-hsü,gong xi,gong xi zhen,公溪,公溪镇 27.66101 115.90421 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-18
-1810094 Gongqiao Gongqiao Gongqiao,Gongqiao Zhen,Gongshengqiao,Kung-ch'eng-ch'iao,Kung-ch’eng-ch’iao,Kung-sheng-ch'iao,Kung-sheng-ch’iao,gong qiao,gong qiao zhen,功桥,功桥镇 31.57128 118.18381 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-18
-1810104 Gongping Gongping Gongping,Kongpeng,Kung-p'ing,Kung-p’ing,gong ping,公平 23.06166 115.39045 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-18
-1810120 Gongjing Gongjing Gongjing,KUNGTSING,Kung-ching,gong jing,贡井 29.34748 104.71157 P PPLA3 CN 32 0 317 Asia/Chongqing 2012-01-18
-1810124 Gongjiang Gongjiang Gongjiang,Gongjiang Zhen,Yu-tu,Yu-tu-hsien,Yudu,Yudu Xian,Yü-tu,Yü-tu-hsien,gong jiang,gong jiang zhen,yu dou xian,于都县,贡江,贡江镇 25.95735 115.41002 P PPLA3 CN 03 0 131 Asia/Shanghai 2012-01-18
-1810135 Gonghe Gonghe Gonghe,Mou-ting,Mou-ting-ch'eng,Mou-ting-ch’eng,Mou-ting-hsien,Mouding,Mowting-hsien,Ting-yuan,Ting-yüan,gong he,共和 25.25575 101.51857 P PPLA3 CN 29 0 1811 Asia/Chongqing 2012-01-18
-1810139 Gongfang Gongfang Gongfang,Gongfang Zhen,Kung-fang,Kung-fang-hsu,Kung-fang-hsü,gong fang,gong fang zhen,龚坊,龚坊镇 27.5923 115.75343 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-18
-1810141 Gongdian Gongdian Gongdian,gong dian,龚店 33.66255 113.43521 P PPLA4 CN 09 0 84 Asia/Chongqing 2012-01-18
-1810147 Gongchuan Gongchuan Gongchuan,Gongchuan Zhen,Kung-ch'uan,Kung-ch’uan,gong chuan,gong chuan zhen,贡川,贡川镇 26.09193 117.43747 P PPLA4 CN 07 0 157 Asia/Shanghai 2012-01-18
-1810149 Gongchenqiao Gongchenqiao Gongchenqiao,Gongchenqiao Jiedao,Kung-ch'en-ch'iao,Kung-ch’en-ch’iao,gong chen qiao,gong chen qiao jie dao,拱宸桥,拱宸桥街道 30.31745 120.13243 P PPLA4 CN 02 0 18 Asia/Shanghai 2012-01-18
-1810152 Gongcheng Gongcheng Gongcheng,Kung-ch'eng,Kung-ch'eng-chen,Kung-ch'eng-hsien,Kung-ch’eng,Kung-ch’eng-chen,Kung-ch’eng-hsien,gong cheng,恭城 24.83333 110.81667 P PPLA3 CN 16 0 133 Asia/Chongqing 2012-01-18
-1810159 Gongba Gongba Gongba,gong ba,拱坝 33.48458 104.52861 P PPLA4 CN 15 0 1745 Asia/Chongqing 2012-01-18
-1810176 Geyuan Geyuan Geyuan,Geyuan Zhen,Ko-yuan,Ko-yüan,ge yuan,ge yuan zhen,葛源,葛源镇 28.60264 117.67184 P PPLA4 CN 03 0 140 Asia/Shanghai 2012-01-18
-1810190 Geshan Geshan Geshan,Geshan Zhen,Ko-shan,Ko-shan-ts'un,Ko-shan-ts’un,ge shan,ge shan zhen,歌山,歌山镇 29.28772 120.4375 P PPLA4 CN 02 0 110 Asia/Shanghai 2012-01-18
-1810192 Geping Geping Geping,Geping Xiang,ge ping,ge ping xiang,戈坪,戈坪乡 27.65377 115.1206 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-18
-1810199 Gengzhen Gengzhen Gengzhen,Keng-chen,Keng-chia-chi-chen,geng zhen,耿镇 34.43862 109.09984 P PPLA4 CN 26 0 364 Asia/Chongqing 2012-01-18
-1810202 Gengwan Gengwan Gengjiawan,Gengwan,Gengwan Xiang,Keng-chia-wan,geng jia,geng jia wan,geng jia xiang,耿家,耿家乡,耿家湾 36.88135 107.25783 P PPLA4 CN 15 0 1313 Asia/Chongqing 2012-01-18
-1810233 Geliao Geliao Geliao,Ko-liao,Ko-liao-ts'un,Ko-liao-ts’un 38.71972 112.26528 P PPLA4 CN 24 0 1624 Asia/Chongqing 2012-01-18
-1810240 Xicheng Xicheng Gejiu,Ko-chiu,Ko-chiu-hsien,Ko-chiu-shih,Kokiu,Kokiu-hsien,Kokiuchang,Ku-chiu,Xicheng,ge jiu shi,xi cheng,个旧市,锡城 23.30602 103.16351 P PPLA3 CN 29 136135 2147 Asia/Chongqing 2012-01-18
-1810256 Gedong Gedong Fangshan,Fangshan Xian,Gedong,Gedong Zhen,Ko-tung,Ko-tung-chen,fang shan xian,ge dong,ge dong zhen,圪洞,圪洞镇,方山县 37.89311 111.25544 P PPLA3 CN 24 0 1268 Asia/Chongqing 2012-01-18
-1810271 Ganzi Ganzi Ganzi,Ganzi Zhen,Garze,Garzê,Kan-tze-hsien,Kan-tzu,Kantse,Kantsi,Kantze,gan zi,gan zi zhen,甘孜,甘孜镇 31.62439 99.99049 P PPLA3 CN 32 0 3378 Asia/Chongqing 2012-01-18
-1810286 Gaozhuang Gaozhuang 39.26917 117.97556 P PPL CN 28 3011 3 Asia/Shanghai 2000-11-21
-1810291 Gaozhuang Gaozhuang Gaozhuang,Gaozhuang Zhen,Kao-chuang,gao zhuang,gao zhuang zhen,高庄,高庄镇 34.46443 108.92728 P PPLA4 CN 26 0 389 Asia/Chongqing 2012-01-18
-1810295 Gaozhou Gaozhou Gaozhou,Kao-chou,Kaochow,Kochow,Kochowfu,Mao-ming,Mao-ming-hsien,Mowming,gao zhou,高州 21.93924 110.84607 P PPL CN 30 166069 57 Asia/Chongqing 2012-01-18
-1810301 Gaozeng Gaozeng Gaozeng,Kao-tseng 25.80167 108.9375 P PPL CN CN 18 1650 254 Asia/Chongqing 2012-01-18
-1810305 Gaoyu Gaoyu Gaoyu,Gaoyu Xiang,gao yu,gao yu xiang,高禹,高禹乡 30.82119 119.60795 P PPLA4 CN 02 0 26 Asia/Shanghai 2012-01-18
-1810309 Gaoyou Gaoyou Gaoyou,Kao-yu,Kao-yu-ch'eng,Kao-yu-ch’eng,Kao-yu-hsien,Kaoyuchow 32.78583 119.42778 P PPL CN 04 90911 6 Asia/Shanghai 2012-01-18
-1810314 Gaoyi Gaoyi Gaoyi,Kao-i,gao yi,高邑 32.74356 113.45647 P PPLA4 CN 09 0 165 Asia/Chongqing 2012-01-18
-1810330 Gaoya Gaoya Gaoya,Gaoya Zhen,Kao-ya,Kao-ya-chen,Kao-yai-chen,Kao-yen,Kao-yen-chen,gao ya,gao ya zhen,高崖,高崖镇 34.89676 107.31423 P PPLA4 CN 26 0 1126 Asia/Chongqing 2012-01-18
-1810335 Gaoxing Gaoxing Gaoxing,Gaoxing Zhen,Gaoxingxu,Kao-hsing,Kao-hsing-hsu,Kao-hsing-hsü,gao xing,gao xing zhen,高兴,高兴镇 26.43306 115.2825 P PPLA4 CN 03 0 189 Asia/Shanghai 2012-01-18
-1810338 Gaoxian Gaoxian Gaoxian,Gaoxian Zhen,Kao-hsien,Kao-hsien-chen,gao xian,gao xian zhen,高显,高显镇 35.71907 111.4204 P PPLA4 CN 24 0 448 Asia/Chongqing 2012-01-18
-1810359 Gaotangling Gaotangling Gaotangling,Kao-t'ang-ling,Kao-t’ang-ling,Wangcheng,gao tang ling,高塘岭 28.36667 112.81667 P PPLA3 CN 11 0 28 Asia/Chongqing 2012-01-18
-1810364 Gaotang Gaotang Gaotang,Gaotang Zhen,Kao-t'ang,Kao-t'ang-chen,Kao-t'ang-chieh,Kao-t’ang,Kao-t’ang-chen,Kao-t’ang-chieh,gao tang,高塘 34.40658 109.65203 P PPLA4 CN 26 0 559 Asia/Chongqing 2012-01-18
-1810367 Gaotang Gaotang Gaotang,Gaotang Zhen,Kao-t'ang,Kao-t’ang,gao tang,gao tang zhen,高唐,高唐镇 26.80333 117.58702 P PPLA4 CN 07 0 137 Asia/Shanghai 2012-01-18
-1810371 Gaotan Gaotan Gaotan,gao tan,高潭 23.18835 115.30594 P PPLA4 CN 30 0 158 Asia/Shanghai 2012-01-18
-1810399 Gaoqiu Gaoqiu Gaoqiu,Gaoqiu Zhen,gao qiu,gao qiu zhen,高丘,高丘镇 33.15883 112.07596 P PPLA4 CN 09 0 263 Asia/Chongqing 2012-01-18
-1810410 Gaoqiao Gaoqiao Gaoqiao,gao qiao,高桥 34.09525 105.94883 P PPLA4 CN 15 0 1341 Asia/Chongqing 2012-01-18
-1810418 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Zhen,Kao-ch'iao-chen,Kao-ch’iao-chen,gao qiao,gao qiao zhen,高桥,高桥镇 30.52486 120.54368 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1810419 Gaoqiao Gaoqiao Gaoqiao,Kao-ch'iao,Kao-ch'iao-chen,Kao-ch’iao,Kao-ch’iao-chen,gao qiao,高桥 30.10204 119.9369 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1810420 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Zhen,Kao-ch'iao,Kao-ch’iao,gao qiao,gao qiao zhen,高桥,高桥镇 29.9081 121.45418 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-18
-1810421 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Zhen,gao qiao,gao qiao zhen,高桥,高桥镇 29.85646 114.51283 P PPLA4 CN 12 0 54 Asia/Shanghai 2012-01-18
-1810425 Gaoyi Gaoyi Gaoqiao,Gaoyi,Gaoyi Xiang,Kao-i 26.95944 110.01556 P PPL CN CN 11 1110 290 Asia/Chongqing 2012-01-18
-1810427 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Zhen,Kao-ch'iao,Kao-ch’iao,gao qiao,gao qiao zhen,高桥,高桥镇 26.56035 117.77497 P PPLA4 CN 07 0 141 Asia/Shanghai 2012-01-18
-1810428 Gaoqiao Gaoqiao Gaoqiao,Kao-ch'iao,Kao-ch’iao 26.63361 110.9 P PPL CN CN 11 1670 417 Asia/Chongqing 2012-01-18
-1810437 Gaoping Gaoping Gaoping,Nan-ch'ung,Nan-ch’ung,Nanchong,gao ping,高坪 30.77576 106.10294 P PPLA3 CN 32 204368 283 Asia/Chongqing 2012-01-18
-1810442 Gaoping Gaoping Daqiaobian,Gaoping,Gaoping Zhen,da qiao bian,gao ping,gao ping zhen,大桥边,高坪,高坪镇 27.48 111.1425 P PPLA4 CN 11 0 322 Asia/Chongqing 2012-02-28
-1810446 Gaopai Gaopai Gaopai,Gaopai Xiang,Kao-p'ai,Kao-p'ai-hsu,Kao-p’ai,Kao-p’ai-hsü,gao pai,gao pai xiang,高排,高排乡 25.48959 115.60825 P PPLA4 CN 03 0 265 Asia/Shanghai 2012-01-18
-1810447 Gaoniang Gaoniang Gaoniang,Kao-niang,Kao-niang-chen 26.8425 109.17889 P PPL CN CN 18 2500 607 Asia/Chongqing 2012-01-18
-1810458 Gaomi Gaomi Gaomi,Kao-mi,Kao-mi-hsien 36.38333 119.75278 P PPL CN 25 150793 24 Asia/Shanghai 2012-01-18
-1810464 Gaoluo Gaoluo Gaoluo,Gaoluo Xiang,Kao-lo,gao luo,gao luo xiang,高罗,高罗乡 29.73221 109.49135 P PPLA4 CN 12 0 588 Asia/Chongqing 2012-01-18
-1810470 Gaolong Gaolong Gaolong,Gaolong Zhen,Kao-lung,gao long,gao long zhen,高陇,高陇镇 26.95034 113.78682 P PPLA4 CN 11 0 157 Asia/Shanghai 2012-02-28
-1810489 Gaoleshan Gaoleshan Chengfeng Xian,Gaoleshan,Gaoleshan Zhen,Hsien-feng,Hsien-feng-hsien,Sienfenghsien,Xianfeng,cheng feng xian,gao le shan,gao le shan zhen,成丰县,高乐山,高乐山镇 29.67825 109.14453 P PPLA3 CN 12 0 739 Asia/Chongqing 2012-01-18
-1810496 Gaolan Gaolan Gaolan,Gaolan Xiang,Kao-feng,Kao-lan,gao lan,gao lan xiang,高岚,高岚乡 28.0246 114.7061 P PPLA4 CN 03 0 115 Asia/Shanghai 2012-01-18
-1810500 Gaojingzhuang Gaojingzhuang Gaojingzhuang,Kao-ching-chuang 39.41611 117.63 P PPL CN CN 28 1167 5 Asia/Shanghai 2012-01-18
-1810508 Gaojia Gaojia Gaojia,Gaojia Zhen,Gaojiazhen,Kao-chia-chen,Minzhu,gao jia,gao jia zhen,min zhu,民主,高家,高家镇 31.82611 121.58389 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1810513 Gaojiayan Gaojiayan Gaojiayan,Gaojiayan Zhen,Kao-chia-yen,gao jia yan,gao jia yan zhen,高家堰,高家堰镇 30.60881 111.05573 P PPLA4 CN 12 0 230 Asia/Chongqing 2012-01-18
-1810525 Gaojialing Gaojialing Gaojialing,Gaojialing Zhen,gao jia ling,gao jia ling zhen,高家岭,高家岭镇 29.16754 116.7823 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-18
-1810533 Gaojiabu Gaojiabu Gaojiabu,Gaojiabu Xiang,Kao-chia-pao,Kao-chia-pao-ts'un,Kao-chia-pao-ts’un,gao jia bao,gao jia bao xiang,高家堡,高家堡乡 39.79249 112.44611 P PPLA4 CN 24 0 1409 Asia/Shanghai 2012-01-18
-1810543 Gaohu Gaohu Gaohu,Gaohu Zhen,Kao-hu,gao hu,gao hu zhen,高湖,高湖镇 28.92611 115.23636 P PPLA4 CN 03 0 104 Asia/Shanghai 2012-01-18
-1810545 Gaohe Gaohe Ao-ho-fou,Gaohe,Gaohebu,Kao-ho,Kao-ho-fou,Kao-ho-pu,Kaohofow,gao he,高河 30.7077 116.83529 P PPLA3 CN 01 0 18 Asia/Shanghai 2012-01-18
-1810553 Gaogou Gaogou Gaogou,Gaogou Zhen,Kao-chia-kou,Kao-kou,Kao-kou-chen,gao gou,gao gou zhen,高沟,高沟镇 34.0175 119.18861 P PPL CN 04 56214 5 Asia/Shanghai 2012-01-18
-1810556 Gaogongdao Gaogongdao Gaogongdao,Gaogongdao Xiang,gao gong dao,gao gong dao xiang,高公岛,高公岛乡 34.7 119.46667 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1810592 Gaocun Gaocun Gaocun,Gaocun Zhen,Kao-ts'un,Kao-ts'un-shih,Kao-ts’un,Kao-ts’un-shih,gao cun,gao cun zhen,高村,高村镇 28.34216 114.4344 P PPLA4 CN 03 0 141 Asia/Shanghai 2012-01-18
-1810593 Gaocun Gaocun Gaocun,Kao-ts'un,Kao-ts'un-chen,Kao-ts’un,Kao-ts’un-chen,Ma-yang-hsien,Mayang,gao cun,高村 27.87731 109.78476 P PPLA3 CN 11 0 177 Asia/Chongqing 2012-01-18
-1810602 Gaocheng Gaocheng Gaocheng,Gaocheng Zhen,Kao-ch'eng,Kao-ch’eng,gao cheng,gao cheng zhen,高城,高城镇 31.94702 113.44218 P PPLA4 CN 12 0 112 Asia/Chongqing 2012-01-18
-1810605 Gaocheng Gaocheng Gaocheng,Gaocheng Xiang,Kao-ch'eng,Kao-ch’eng,gao cheng,gao cheng xiang,高城,高城乡 28.10186 114.34952 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-18
-1810610 Gaobu Gaobu Gaobu,Gaobu Zhen,Kao-pu,gao bu,gao bu zhen,皋埠,皋埠镇 30.0092 120.66421 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1810637 Ganzhou Ganzhou Ganzhou,Ganzhou Zhen,Kan-chou,Kan-chou-chieh,gan zhou,gan zhou zhen,干洲,干洲镇 28.81842 115.43272 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-18
-1810638 Ganzhou Ganzhou Ganzhou,Kan,Kan-chou,Kan-chou-shih,Kan-hsien,Kanchow,gan zhou,赣州 25.85 114.93333 P PPLA2 CN 03 0 118 Asia/Shanghai 2012-01-18
-1810643 Ganyao Ganyao Ganyao,Ganyao Zhen,Kan-yao-chen,gan yao,gan yao zhen,干窑,干窑镇 30.88876 120.88532 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1810645 Ganyan Ganyan Ganyan,Ganyan Tujiazu Xiang,gan yan,gan yan tu jia zu xiang,甘堰,甘堰土家族乡 29.27861 110.77917 P PPLA4 CN 11 0 197 Asia/Chongqing 2012-01-18
-1810649 Ganxitan Ganxitan Ganxitan,Ganxitan Zhen,Kan-hsi-t'an,Kan-hsi-t’an,gan xi tan,gan xi tan zhen,甘溪滩,甘溪滩镇 29.86761 111.3758 P PPLA4 CN 11 0 143 Asia/Shanghai 2012-01-18
-1810665 Gantang Gantang Gantang,Gantang Zhen,Kan-t'ang,Kan-t'ang-chen,Kan-t'ang-ts'un,Kan-t’ang,Kan-t’ang-chen,Kan-t’ang-ts’un,Taiping,gan tang,gan tang zhen,甘棠,甘棠镇 30.29694 118.13056 P PPLA3 CN 01 0 180 Asia/Shanghai 2012-01-18
-1810670 Gantang Gantang Gantang,Kan-t'ang,Kan-t'ang-pao,Kan-t’ang,Kan-t’ang-pao 26.92 119.63333 P PPL CN CN 07 2770 14 Asia/Shanghai 2012-01-18
-1810671 Gantang Gantang Gantang,Kan-t'ang,Kan-t’ang 26.79833 118.93611 P PPL CN CN 07 2770 895 Asia/Shanghai 2012-01-18
-1810673 Lingchuan Lingchuan Gantang,Kan-t'ang,Kan-t'ang-hsiang,Kan-t'ang-hsu,Kan-t'ang-tu,Kan-t’ang,Kan-t’ang-hsiang,Kan-t’ang-hsü,Kan-t’ang-tu,Lingchuan,ling chuan,灵川 25.40951 110.32278 P PPLA3 CN 16 0 167 Asia/Chongqing 2012-01-18
-1810677 Ganshui Ganshui Ganshui,Kan-shui,Kan-shui-ch'ang,Kan-shui-ch’ang 28.74222 106.71111 P PPL CN CN 33 5300 414 Asia/Chongqing 2012-01-18
-1810685 Ganpu Ganpu Ganpu,Ganpu Zhen,Kan-p'u,Kan-p'u-ch'eng,Kan-p'u-chen,Kan-p’u,Kan-p’u-chen,Kan-p’u-ch’eng,gan pu,gan pu zhen,澉浦,澉浦镇 30.3935 120.88972 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1810692 Ganlin Ganlin Ganlin,Ganlin Zhen,Kan-lin,gan lin,gan lin zhen,甘霖,甘霖镇 29.52056 120.71417 P PPLA4 CN 02 0 38 Asia/Shanghai 2012-01-18
-1810694 Ganlan Ganlan Ganlan,Ganlan Zhen,Kan-lan,gan lan,gan lan zhen,干览,干览镇 30.10268 122.13698 P PPLA4 CN 02 0 40 Asia/Shanghai 2012-01-18
-1810699 Ganjing Ganjing Ganjing,Ganjing Zhen,Kan-ching,Nan-kan-ching,gan jing,gan jing zhen,甘井,甘井镇 34.72056 108.06417 P PPLA4 CN 26 0 1042 Asia/Chongqing 2012-01-18
-1810704 Ganjiachang Ganjiachang Ganjiachang,Ganjiachang Xiang,gan jia chang,gan jia chang xiang,甘家厂,甘家厂乡 29.75 112.06667 P PPLA4 CN 12 0 37 Asia/Chongqing 2012-01-18
-1810705 Ganjia Ganjia Ganjia,Ganjia Xiang,gan jia,gan jia xiang,甘加,甘加乡 35.40124 102.5164 P PPLA4 CN 15 0 2954 Asia/Chongqing 2012-01-18
-1810708 Ganhe Ganhe Ganhe,Ganhe Zhen,Kan-ho,gan he,gan he zhen,甘河,甘河镇 34.15778 108.51444 P PPLA4 CN 26 0 409 Asia/Chongqing 2012-01-18
-1810730 Gangshangji Gangshangji Gangshangji,Gangshangji Zhen,Kang-shang-chi,gang shang ji,gang shang ji zhen,岗上积,岗上积镇 28.11557 116.51971 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-18
-1810736 Gangouyi Gangouyi Gangouyi,Kan-kou-i,gan gou yi,甘沟驿 35.95632 105.01878 P PPLA4 CN 15 0 1634 Asia/Chongqing 2012-01-18
-1810754 Gangkou Gangkou Chiang-k'ou,Chiang-k’ou,Gangkou,Gangkou Zhen,Kang-k'ou,Kang-k’ou,gang kou,gang kou zhen,港口,港口镇 30.73278 118.91111 P PPLA4 CN 01 0 44 Asia/Shanghai 2012-01-18
-1810755 Gangkoujie Gangkoujie Gangkou,Gangkoujie,Gangkoujie Zhen,Kang-k'ou,Kang-k’ou,gang kou jie,gang kou jie zhen,港口街,港口街镇 29.72504 115.78189 P PPLA4 CN 03 0 16 Asia/Shanghai 2012-01-18
-1810756 Gangkou Gangkou Gangkou,Gangkou Zhen,gang kou,gang kou zhen,港口,港口镇 29.25738 114.33255 P PPLA4 CN 03 0 244 Asia/Shanghai 2012-01-18
-1810758 Gangkou Gangkou Gangkou,Gangkou Xiang,gang kou,gang kou xiang,港口,港口乡 28.73556 114.28918 P PPLA4 CN 03 0 233 Asia/Shanghai 2012-01-18
-1810760 Gangkou Gangkou Gangkou,Gangkou Zhen,Kang-k'ou,Kang-k’ou,gang kou,gang kou zhen,港口,港口镇 28.19014 117.3393 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-18
-1810762 Gangkou Gangkou Gangkou,Gangkou Zhen,Kang-k'ou,Kang-k’ou,gang kou,港口 22.57478 114.89753 P PPLA4 CN 30 0 8 Asia/Chongqing 2012-01-18
-1810774 Ganfang Ganfang Ganfang,Ganfang Xiang,Kan-fang,gan fang,gan fang xiang,甘坊,甘坊乡 28.64295 114.86605 P PPLA4 CN 03 0 156 Asia/Shanghai 2012-01-18
-1810777 Yaluhu Yaluhu Gan'dutan,Gando,Gandu,Gandu Zhen,Ganducheng,Gan’dutan,Kan-tou-t'ang,Kan-tou-t’ang,Kan-tu,Kan-tu-ssu,Kan-tu-t'ang,Kan-tu-t’ang,Yaluhu,gan dou zhen,ya lu hu,牙路乎,甘都镇 35.89096 102.32898 P PPLA4 CN 06 0 1946 Asia/Chongqing 2012-01-18
-1810783 Gancheng Gancheng Gancheng,Gancheng Xiang,Ganchengzi,gan cheng,gan cheng xiang,甘城,甘城乡 36.59153 106.33943 P PPLA4 CN 21 0 1543 Asia/Chongqing 2012-01-18
-1810785 Gancheng Gancheng Chiu-kan-en,Gancheng,Gancheng Zhen,Kamyan,Kan-ch'eng,Kan-ch’eng,Kan-en,Kan-en-hsien,Kan-ngen,Kanem,Kenen,Kumyan,gan cheng,gan cheng zhen,感城,感城镇 18.85157 108.64036 P PPLA4 CN 31 0 6 Asia/Chongqing 2012-01-18
-1810787 Ganchang Ganchang Ganchang,Ganchang Zhen,Ganchangxi,Kan-ch'ang,Kan-ch'ang-ch'i,Kan-ch’ang,Kan-ch’ang-ch’i,gan chang,gan chang zhen,赶场,赶场镇 32.40518 106.92494 P PPLA4 CN 32 800 629 Asia/Chongqing 2012-01-18
-1810797 Gaiyang Gaiyang Gaiyang,Gaiyang Zhen,Kai-yang,gai yang,gai yang zhen,盖洋,盖洋镇 26.43878 117.06114 P PPLA4 CN 07 0 387 Asia/Shanghai 2012-01-18
-1810804 Gabasumdo Gabasumdo Gabasongduo,Gabasumdo,Ka-pa-sung-tu,Lo-pa-sung-tu,T'ung-te,Tongde,T’ung-te,Ya-pa-sung-tu,ga ba song duo,尕巴松多 35.2589 100.54994 P PPLA3 CN 06 0 3113 Asia/Chongqing 2012-01-18
-1810808 Fuzhuang Fuzhuang 39.26611 117.93444 P PPL CN 28 1468 255 Asia/Shanghai 2000-11-21
-1810821 Fuzhou Fuzhou Foochow,Fu-chou,Fu-chou-shih,Fuchau,Fuchzhou,Fudzou,Fudžou,Fuzhou,Hok-ciu,Hók-ciŭ,Lin-sen,Lin-sen-hsien,Min Hsien,Min-hou,Min-hou-hsien,Min-hou-hsien-ch'eng,Min-hou-hsien-ch’eng,Minhow,Minhow-hsien,Phuc Chau,Phúc Châu,fu zhou,fu zhou shi,Фучжоу,فۇجو شەھىرى,福州,福州市 26.06139 119.30611 P PPLA CN 07 1179720 14 Asia/Shanghai 2012-01-18
-1810822 Fujia Fujia Fujia,Fujia Zhen,Fuzhen,fu jia,fu jia zhen,伏家,伏家镇 33.81889 105.95361 P PPLA4 CN 15 0 1010 Asia/Chongqing 2012-01-18
-1810845 Fuyang Fuyang Fou-yang,Fou-yang-hsien,Fowyang,Fowyang-hsien,Fu-yang-shih,Fujan,Fuyan,Fuyang,Inchzhou,Puyanghsien,Ying-chou,Yingchow,Yingchow-fu,fu yang shi,Фуян,阜阳市 32.9 115.81667 P PPL CN 01 170023 31 Asia/Shanghai 2012-01-18
-1810846 Fuyang Fuyang Fu-yang-hsien,Fujan',Fuyang,Fuyang Shi,Puyang,fu yang,fu yang shi,Фуянь,富阳,富阳市 30.05333 119.95194 P PPLA3 CN 02 70183 22 Asia/Shanghai 2012-01-18
-1810848 Fuyang Fuyang Chiu-fu-ch'uan,Chiu-fu-ch’uan,Fu-ch'uan-hsien,Fu-ch’uan-hsien,Fu-yang-chen,Fuchuan,Fuchwan,Fuchwan-hsien,Fuyang,fu yang,富阳 24.83441 111.25802 P PPLA3 CN 16 0 222 Asia/Chongqing 2012-01-18
-1810849 Fuyang Fuyang Fuyang,Fuyang Zhen,fu yang,浮洋 23.57863 116.59507 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-18
-1810869 Fuxing Fuxing Fu-hsing,Fu-hsing-chen,Fuxing,Fuxing Zhen,fu xing,fu xing zhen,复兴,复兴镇 29.9056 116.41422 P PPLA4 CN 01 0 21 Asia/Shanghai 2012-01-18
-1810879 Fuxi Fuxi Fuxi,Fuxi Zhen,fu xi,fu xi zhen,扶溪,扶溪镇 25.22191 113.85463 P PPLA4 CN 30 0 160 Asia/Chongqing 2012-01-18
-1810894 Futian Futian Futian,Futian Zhen,fu tian,fu tian zhen,阜田,阜田镇 27.42897 114.9271 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-18
-1810895 Futian Futian Fu-t'ien,Fu-t'ien-chen,Fu-t’ien,Fu-t’ien-chen,Futian,Futian Jie,fu tian,fu tian jie,富田,富田街 26.82247 115.24946 P PPLA4 CN 03 0 112 Asia/Shanghai 2012-01-18
-1810897 Futian Futian Fu-t'ien,Fu-t'ien-hsu,Fu-t’ien,Fu-t’ien-hsü,Fuktin,Futian,Futian Zhen,fu tian,福田 23.21608 113.96425 P PPLA4 CN 30 0 20 Asia/Chongqing 2012-01-18
-1810899 Futang Futang Futang,Futang Zhen,fu tang,fu tang zhen,福堂,福堂镇 24.41706 112.09204 P PPLA4 CN 30 0 293 Asia/Chongqing 2012-01-18
-1810906 Fushui Fushui Fu-shui-kang,Fushui,Fushui Zhen,Fushuigang,fu shui,fu shui zhen,洑水,洑水镇 31.33604 113.69201 P PPLA4 CN 12 0 44 Asia/Chongqing 2012-01-18
-1810909 Fushui Fushui Fu-shui-chen,Fushui,Fushui Zhen,fu shui,敷水 34.54683 109.95382 P PPLA4 CN 26 0 343 Asia/Chongqing 2012-01-18
-1810915 Fushanzhuang Fushanzhuang Fu-shan-chuang,Fushanzhuang,Fushanzhuang Xiang,fu shan zhuang,fu shan zhuang xiang,福善庄,福善庄乡 39.24694 112.62556 P PPLA4 CN 24 0 1053 Asia/Shanghai 2012-01-18
-1810920 Fushan Fushan Fu-shan-hsien,Fushan 37.49583 121.25806 P PPL CN 25 65622 12 Asia/Shanghai 2012-01-18
-1810921 Tiantan Tiantan Fou-shan,Fou-shan-hsien,Fushan,Fushan Xian,Tiantan,Tiantan Zhen,fu shan xian,tian tan,tian tan zhen,天坛,天坛镇,浮山县 35.96611 111.84167 P PPLA3 CN 24 0 835 Asia/Chongqing 2012-01-18
-1810926 Fushan Fushan Fushan,Fushan Xiang,fu shan,fu shan xiang,富山,富山乡 28.51547 115.85314 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-18
-1810927 Fushan Fushan Fushan,Fushan Zhen,fu shan,浮山 23.85762 116.88828 P PPLA4 CN 30 0 32 Asia/Shanghai 2012-01-18
-1810928 Fushan Fushan Fu-shan-shih,Fushan,Fushan Zhen,fu shan,fu shan zhen,福山,福山镇 19.83611 109.92625 P PPLA4 CN 31 0 91 Asia/Chongqing 2012-01-18
-1810943 Fuqiao Fuqiao Fou-ch'iao,Fou-ch'iao-chen,Fou-ch’iao,Fou-ch’iao-chen,Fu-ch'iao,Fu-ch’iao,Fuqiao,Fuqiao Zhen,fu qiao,fu qiao zhen,浮桥,浮桥镇 31.605 121.20167 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1810976 Fuling Fuling Fu-ling-hsia,Fu-ling-hsia-chen,Fuling,Fuling Zhen,Fulingxia,fu ling,fu ling zhen,伏岭,伏岭镇 30.13861 118.72778 P PPLA4 CN 01 0 248 Asia/Shanghai 2012-01-18
-1810979 Fuling Fuling Fou-chou,Fou-ling,Fou-ling-hsien,Fowchou,Fowchow,Fowling,Fowlinghsien,Fuchou,Fulin,Fuling,Pei-ling,Фулин 29.70222 107.39194 P PPL CN 33 166507 297 Asia/Chongqing 2012-01-18
-1810980 Fuling Fuling Fu-ling-chen,Fuling,Fuling Zhen,fu ling,fu ling zhen,富岭,富岭镇 27.89472 118.64139 P PPLA4 CN 07 0 257 Asia/Shanghai 2012-01-18
-1810986 Fuliangpengjie Fuliangpengjie Fuliangpeng,Fuliangpengjie,fu liang peng,fu liang peng jie,富良棚,富良棚街 24.31495 102.08889 P PPLA4 CN 29 0 1937 Asia/Chongqing 2012-01-18
-1810988 Fuliang Fuliang Chiu-fou-liang,Fuliang,Fuliang Xian,Fuliang Zhen,fu liang,fu liang xian,fu liang zhen,浮梁,浮梁县,浮梁镇 29.37639 117.24667 P PPLA3 CN 03 0 48 Asia/Shanghai 2012-01-18
-1810997 Fukou Fukou Fukou,Fukou Zhen,fu kou,fu kou zhen,富口,富口镇 26.44901 117.69027 P PPLA4 CN 07 0 186 Asia/Shanghai 2012-01-18
-1811022 Fushi Fushi Fu-shun-hsien,Fujiang,Fushi,Fushun,fu shi,富世 29.18382 105.00114 P PPLA3 CN 32 0 294 Asia/Chongqing 2012-01-18
-1811028 Fuji Fuji Fu-chi,Fuji,fu ji,福集 29.14819 105.37391 P PPLA3 CN 32 0 291 Asia/Chongqing 2012-01-18
-1811044 Fufeng Fufeng Fu-feng-hsien,Fu-feng-hsien-ch'eng,Fu-feng-hsien-ch’eng,Fufeng,Fufeng Xian,Fufyn,fu feng,fu feng xian,扶风,扶风县 34.3605 107.87348 P PPLA3 CN 26 0 531 Asia/Chongqing 2012-01-18
-1811046 Fu’e Fu'e Fu'e,Fu'e Zhen,Fu-ho,Fu-o,Fu’e,Fu’e Zhen,fu ye,fu ye zhen,富堨,富堨镇 29.90861 118.37389 P PPLA4 CN 01 0 138 Asia/Shanghai 2012-01-18
-1811053 Fudian Fudian Fu-tien,Fudian,Fudian Zhen,fu dian,fu dian zhen,付店,付店镇 33.93187 112.35642 P PPLA4 CN 09 0 737 Asia/Chongqing 2012-01-18
-1811063 Fuchun Fuchun Fuchun,Fuchun Zhen,fu chun,fu chun zhen,赋春,赋春镇 29.32412 117.54347 P PPLA4 CN 03 0 107 Asia/Shanghai 2012-01-18
-1811066 Fuchuan Fuchuan Fou-ch'uan-chi,Fou-ch’uan-chi,Fu-ch'uan-chi,Fu-ch’uan-chi,Fuchuan,Fuchuan Zhen,fu chuan,fu chuan zhen,阜川,阜川镇 33.00238 106.68974 P PPLA4 CN 26 0 643 Asia/Chongqing 2012-01-18
-1811076 Fucheng Fucheng Fucheng,Fucheng Xiang,fu cheng,fu cheng xiang,富城,富城乡 25.53631 115.88713 P PPLA4 CN 03 0 284 Asia/Shanghai 2012-01-18
-1811082 Fubao Fubao Fo-pao-ch'ang,Fo-pao-ch’ang,Fu-pao,Fubao,Fubaochang,fu bao,福宝 28.76905 106.07667 P PPL CN 32 3500 246 Asia/Chongqing 2012-01-18
-1811103 Foshan Foshan Fachan,Fatshan,Fo-shan-chen,Fo-shan-shih,Foshan,Foshan',Fu-shan-chen,Namhoi,Nan-hai,Nanhai-hsien,Nanhoi,Nom Hoy,Phat Son,Phật Sơn,fo shan,fu shan,fu shan shi,Фошань,فۇشەن شەھىر,仏山,佛山,佛山市 23.02677 113.13148 P PPLA2 CN 30 627348 5 Asia/Chongqing 2012-01-18
-1811114 Fenyi Fenyi Chieh-ch'iao,Chieh-ch'iao-chen,Chieh-ch’iao,Chieh-ch’iao-chen,Fen-i,Fen-i-chen,Fenyi,Fenyi Xian,Fenyi Zhen,I-chieh-ch'iao,I-chieh-ch’iao,fen yi,fen yi xian,fen yi zhen,分宜,分宜县,分宜镇 27.81117 114.66805 P PPLA3 CN 03 58478 84 Asia/Shanghai 2012-01-18
-1811119 Fenxiang Fenxiang Fen-hsiang-ch'ang,Fen-hsiang-ch’ang,Fenxiang,Fenxiang Zhen,Fenxiangchang,fen xiang,fen xiang zhen,分乡,分乡镇 30.91205 111.41878 P PPLA4 CN 12 0 169 Asia/Chongqing 2012-01-18
-1811120 Yong’an Yong'an Fen-hsi,Fen-hsi-hsien,Fen-hsi-hsien-ch'eng,Fen-hsi-hsien-ch’eng,Fensi,Fenxi,Fenxi Xian,Yong'an,Yong'an Zhen,Yong’an,Yong’an Zhen,fen xi xian,yong an,yong an zhen,永安,永安镇,汾西县 36.65762 111.56643 P PPLA3 CN 24 0 924 Asia/Chongqing 2012-01-18
-1811123 Xiantai Xiantai Fentai,Xiantai,Xiantai Zhen,xian tai,仙台 33.5301 113.45094 P PPLA4 CN 09 0 89 Asia/Chongqing 2012-01-18
-1811143 Fenshui Fenshui Fenshui,fen shui,分水 29.92911 119.42867 P PPLA4 CN 02 0 44 Asia/Shanghai 2012-01-18
-1811150 Fenlu Fenlu Fenlu,Fenlu Zhen,fen lu,fen lu zhen,分路,分路镇 29.78862 115.90244 P PPLA4 CN 12 0 20 Asia/Shanghai 2012-01-18
-1811151 Yangqitan Yangqitan Fenkou,Fenkou Zhen,Yangqitan,fen kou,fen kou zhen,yang qi tan,杨旗坦,汾口,汾口镇 29.43514 118.54368 P PPLA4 CN 02 0 130 Asia/Shanghai 2012-01-18
-1811153 Fenjie Fenjie Fen-chieh,Fen-chieh-chen,Fenjie,Fenjie Zhen,fen jie,fen jie zhen,分界,分界镇 32.27788 120.33001 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1811167 Fengzhou Fengzhou Chiu-feng-hsien,Feng,Feng-chou,Feng-chou-chen,Feng-hsien,Fengzhou,Fengzhou Zhen,feng zhou,feng zhou zhen,凤州,凤州镇 33.9769 106.65192 P PPLA4 CN 26 0 1026 Asia/Chongqing 2012-01-18
-1811169 Fengzhou Fengzhou Feng-chou,Fengzhou,feng zhou,丰州 24.95762 118.53365 P PPL CN 07 6500 12 Asia/Shanghai 2012-01-18
-1811173 Fengyuan Fengyuan Feng-yuan-chen,Feng-yüan-chen,Fengyuan,Fengyuan Zhen,feng yuan,丰原 34.44566 109.5636 P PPLA4 CN 26 0 659 Asia/Chongqing 2012-01-18
-1811174 Fengyu Fengyu Feng-yu-ts'un,Feng-yü-ts’un,Fengyu,Fengyu Xiang,feng yu,feng yu xiang,峰峪,峰峪乡 39.9251 113.60535 P PPLA4 CN 24 0 970 Asia/Shanghai 2012-01-18
-1811182 Fengyi Fengyi Chiu-mao-hsien,Feng-i,Fengyi,Fengyizhen,Mao,Mao-hsien,Mao-wen-ch'iang-tsu-tzu-chih-hsien,Mao-wen-ch’iang-tsu-tzu-chih-hsien,Maowen,Mowchow,Mowhsien,feng yi,凤仪 31.68465 103.84987 P PPLA3 CN 32 0 1579 Asia/Chongqing 2012-01-18
-1811186 Fengyang Fuchengzhen Fengyang Fuchengzhen Chiu-feng-yang,Chiu-feng-yang-fu-ch'eng,Chiu-feng-yang-fu-ch’eng,Feng-yang-hsien,Fengyang,Fengyang Fuchengzhen,feng yang fu cheng zhen,凤阳府城镇 32.87969 117.54465 P PPLA3 CN 01 0 42 Asia/Shanghai 2012-01-18
-1811187 Fengyang Fengyang Fengyang,Fengyang Xiang,feng yang,feng yang xiang,凤阳,凤阳乡 27.86058 114.64158 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-18
-1811189 Fengyang Fengyang Fengyang,Fengyang Zhen,feng yang,feng yang zhen,丰阳,丰阳镇 25.04904 112.27521 P PPLA4 CN 30 0 217 Asia/Chongqing 2012-01-18
-1811200 Fengxian Fengxian Feng,Feng-hsien,Fengxian 34.70388 116.58717 P PPLA3 CN 04 57153 40 Asia/Shanghai 2012-01-18
-1811207 Fengxi Fengxi Feng-hsi,Fengxi,Fengxi Xiang,feng xi,feng xi xiang,枫溪,枫溪乡 26.51121 116.85112 P PPLA4 CN 07 0 634 Asia/Shanghai 2012-01-18
-1811208 Fengxi Fengxi Feng-ch'i,Feng-ch’i,Feng-hsi,Fengxi,Fengxi Zhen,feng xi,枫溪 23.65459 116.59851 P PPLA4 CN 30 0 14 Asia/Shanghai 2012-01-18
-1811218 Fengtian Fengtian Feng-t'ien,Feng-t'ien-chieh,Feng-t’ien,Feng-t’ien-chieh,Fengtian,Fengtian Zhen,feng tian,feng tian zhen,枫田,枫田镇 27.37072 114.69566 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-18
-1811224 Fengtai Fengtai Fengtai,Fengtaizhen 39.55806 117.74917 P PPL CN CN 28 7230 5 Asia/Shanghai 2012-01-18
-1811229 Fengtai Chengguanzhen Fengtai Chengguanzhen Feng-t'ai-hsien,Feng-t’ai-hsien,Fengtai,Fengtai Chengguanzhen,feng tai cheng guan zhen,凤台城关镇 32.70825 116.72956 P PPLA3 CN 01 0 18 Asia/Shanghai 2012-01-18
-1811245 Fengshan Fengshan Fengshan,Lo-t'ien,Lo-t'ien-hsien,Lo-t’ien,Lo-t’ien-hsien,Luotian,feng shan,凤山 30.88712 115.42091 P PPLA3 CN 12 0 97 Asia/Shanghai 2012-01-18
-1811248 Fengshan Fengshan Fengshan,Lo-yuan,Lo-yuan-hsien,Lo-yüan,Lo-yüan-hsien,Luoyuan,Luyuanhsien,feng shan,凤山 26.48556 119.54917 P PPLA3 CN 07 0 8 Asia/Shanghai 2012-01-18
-1811249 Fengshan Fengshan Fengshan,Fengshan Xiang,feng shan,feng shan xiang,丰山,丰山乡 26.42695 116.44034 P PPLA4 CN 03 0 254 Asia/Shanghai 2012-01-18
-1811251 Fengshan Fengshan Fengshan,Fengshan Xiang,feng shan,feng shan xiang,凤山,凤山乡 25.05252 115.38015 P PPLA4 CN 03 0 328 Asia/Shanghai 2012-01-18
-1811254 Fengcheng Fengcheng Feng-ch'eng-chen,Feng-ch'eng-hsiang,Feng-ch’eng-chen,Feng-ch’eng-hsiang,Feng-shan-hsien,Feng-shan-hsien-ch'eng,Feng-shan-hsien-ch’eng,Fengcheng,Fengshan,feng cheng,凤城 24.57117 107.04243 P PPLA3 CN 16 0 554 Asia/Chongqing 2012-01-18
-1811260 Fengrun Fengrun Chiu-feng-jun,Feng-jun,Feng-jun-ch'eng-kuan,Feng-jun-ch’eng-kuan,Feng-jun-hsien,Fengrun 39.83333 118.11667 P PPL CN 10 65150 28 Asia/Harbin 2012-01-18
-1811266 Fengqiao Fengqiao Fengqiao,Fengqiao Zhen,feng qiao,feng qiao zhen,凤桥,凤桥镇 30.66108 120.85449 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1811267 Fengqiao Fengqiao Feng-ch'iao,Feng-ch'iao-chen,Feng-ch’iao,Feng-ch’iao-chen,Fengkiao,Fengqiao,Fengqiao Zhen,feng qiao,feng qiao zhen,枫桥,枫桥镇 29.79038 120.41519 P PPLA4 CN 02 0 17 Asia/Shanghai 2012-01-18
-1811268 Fengpu Fengpu Fengpu,Fengpu Xiang,Fong-pu,feng bu,feng bu xiang,凤埔,凤埔乡 26.68276 118.76006 P PPLA4 CN 07 3560 406 Asia/Shanghai 2012-01-18
-1811273 Fengmu Fengmu Fengmu,Fengmu Zhen,feng mu,feng mu zhen,枫木,枫木镇 19.20933 110.00828 P PPLA4 CN 31 0 142 Asia/Chongqing 2012-01-18
-1811276 Fengming Fengming Ch'i-shan,Ch'i-shan-hsien,Ch'i-shan-hsien-ch'eng,Ch’i-shan,Ch’i-shan-hsien,Ch’i-shan-hsien-ch’eng,Fengming,Fengming Zhen,Qishan,Tsishan',Tsishan’,feng ming,feng ming zhen,qi shan,岐山,风鸣,风鸣镇 34.44139 107.61778 P PPLA3 CN 26 0 677 Asia/Chongqing 2012-01-18
-1811281 Fenglu Fenglu Ch'eng-chiang,Ch'eng-chiang-hsien,Chengjiang,Chengjiang Xian,Chengkiang,Chengkiang-hsien,Ch’eng-chiang,Ch’eng-chiang-hsien,Fenglu,Fenglu Zhen,Ho-yang,cheng jiang,cheng jiang xian,feng lu,feng lu zhen,凤麓,凤麓镇,澄江,澄江县 24.67652 102.91129 P PPLA3 CN 29 0 1756 Asia/Chongqing 2012-01-18
-1811282 Fenglingtou Fenglingtou Fen-ling-t'ou,Fen-ling-t’ou,Fenglingtou,Fenglingtou Zhen,feng ling tou,feng ling tou zhen,枫岭头,枫岭头镇 28.46315 117.84537 P PPLA4 CN 03 0 95 Asia/Shanghai 2012-01-18
-1811289 Fenglin Fenglin Fenglin,Fenglin Zhen,feng lin,feng lin zhen,枫林,枫林镇 29.76134 115.39633 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-18
-1811293 Fengli Fengli Feng-li-ch'ang,Feng-li-chen,Feng-li-ch’ang,Fengli,Fengli Zhen,Fenglizhen,feng li,feng li zhen,丰利,丰利镇 32.44793 121.04353 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1811299 Fengle Fengle Fengle,Fengle Zhen,feng le,feng le zhen,丰乐,丰乐镇 31.46622 112.473 P PPLA4 CN 12 0 57 Asia/Chongqing 2012-01-18
-1811305 Fengkou Fengkou Fengkou,Fengkow 30.08333 113.26667 P PPL CN 12 67139 28 Asia/Chongqing 2012-01-18
-1811309 Fengjing Fengjing Feng-ching,Feng-ching-chen,Fengjing,Fengjingzhen,Fengking,feng jing,枫泾 30.89019 121.01195 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-18
-1811320 Fengjiang Fengjiang Feng-chiang,Fengjiang,Fengjiang Zhen,feng jiang,feng jiang zhen,枫江,枫江镇 27.40043 115.00099 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-18
-1811331 Fenghuo Fenghuo Fenghuo,Fenghuo Zhen,feng huo,feng huo zhen,烽火,烽火镇 34.55333 108.62833 P PPLA4 CN 26 0 511 Asia/Chongqing 2012-01-18
-1811332 Fenghui Fenghui Feng-hui-chen,Fenghui,Fenghui Zhen,Hui-feng-chen,Shang-yu,Shang-yu-hsien,Shang-yü,Shang-yü-hsien,feng hui,feng hui zhen,丰惠,丰惠镇 29.94924 120.97656 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1811359 Sanchanlu Sanchanlu Fenghuang,Fenghuang Zhen,Sanchanlu,feng huang zhen,san cha lu,三叉路,风凰镇 30.92514 114.74823 P PPLA4 CN 12 0 45 Asia/Shanghai 2012-01-18
-1811362 Fenghuang Fenghuang Fenghuang,Fenghuang Zhen,feng huang,凤凰 23.90716 116.69824 P PPLA4 CN 30 0 349 Asia/Shanghai 2012-01-18
-1811377 Fenggang Fenggang Feng-chiang,Fenggang,Fenggang Xiang,feng gang,feng gang xiang,枫港,枫港乡 28.5939 116.58672 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-18
-1811378 Fenggang Fenggang Chiu-i-huang,Fenggang,Fenggang Zhen,I-huang,I-huang-hsien,I-huang-hsien-ch'eng,I-huang-hsien-ch’eng,Ihwang,Ihwang-hsien,Yihuang,Yihuang Xian,feng gang,feng gang zhen,yi huang xian,宜黄县,风冈,风冈镇 27.54566 116.21456 P PPLA3 CN 03 0 102 Asia/Shanghai 2012-01-18
-1811389 Shuangzhu Shuangzhu Feng-pu,Feng-tu,Fengdu,Shuangzhu 26.62528 118.6525 P PPL CN CN 07 3390 508 Asia/Shanghai 2012-01-18
-1811396 Fengdie Fengdie Fengdie,feng die,峰迭 33.81049 104.24507 P PPLA4 CN 15 0 1446 Asia/Chongqing 2012-01-18
-1811408 Fengchuan Fengchuan Fen-hsin,Feng-hsin,Feng-hsin-hsien,Feng-hsin-hsien-ch'eng,Feng-hsin-hsien-ch’eng,Fengchuan,Fengchuan Zhen,Fengsin,Fengsin-hsien,Fengxin Xian,feng chuan,feng chuan zhen,feng xin xian,冯川,冯川镇,奉新县 28.7 115.38333 P PPLA3 CN 03 0 47 Asia/Shanghai 2012-02-02
-1811415 Fengcheng Fengcheng Chiu-feng-hsien,Chiu-hsien,Feng-hsien,Feng-hsien-ch'eng,Feng-hsien-ch’eng,Feng-hsien-ku-chih,Fengcheng,Fengcheng Zhen,feng cheng,feng cheng zhen,奉城,奉城镇 30.91578 121.6404 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1811416 Fengcheng Fengcheng Fengcheng,Lianjiang,Lien-chiang,Lien-chiang-hsien,Lien-chiang-hsien-ch'eng,Lien-chiang-hsien-ch’eng,Lienkang,Lienkong,Lienkong-hsien,feng cheng,凤城 26.19722 119.53917 P PPLA3 CN 07 0 15 Asia/Shanghai 2012-01-18
-1811417 Fengcheng Fengcheng An-ch'i,An-ch'i-hsien,An-ch’i,An-ch’i-hsien,An-hsi,Anki,Ankihsien,Anxi,Fengcheng,feng cheng,凤城 25.03672 118.18414 P PPLA3 CN 07 0 114 Asia/Shanghai 2012-01-18
-1811418 Fengcheng Fengcheng Fengcheng,Yongding,Yung-ting,Yung-ting-hsien,feng cheng,凤城 24.72365 116.72429 P PPLA3 CN 07 0 195 Asia/Shanghai 2012-01-18
-1811419 Fengcheng Fengcheng Ch'ang-ning,Changninghsien,Chongning,Ch’ang-ning,Fengcheng,Fengcheng Zhen,Hsin-feng,Hsin-feng-hsien,Hsin-feng-hsien-ch'eng,Hsin-feng-hsien-ch’eng,Sinfenghsien,Sinfung,Sun-feng-hsien,Sunfung,Xinfeng Xian,feng cheng,xin feng xian,xin feng zhen,丰城,新丰县,新丰镇 24.05905 114.20508 P PPLA3 CN 30 0 159 Asia/Chongqing 2012-02-02
-1811426 Fencheng Fencheng Feichenghsien,Fen'chen,Fen-ch'eng-chen,Fen-ch'eng-hsien,Fen-ch’eng-chen,Fen-ch’eng-hsien,Fencheng,Fencheng Zhen,Feng-ch'eng,Feng-ch’eng,Fen’chen,T'ai-p'ing,Taipinghsien,Taupin,T’ai-p’ing,fen cheng,fen cheng zhen,汾城,汾城镇 35.81765 111.27425 P PPLA4 CN 24 0 515 Asia/Chongqing 2012-01-18
-1811440 Feicheng Feicheng Chiu-fei-hsien,Fei,Fei-hsien,Fei-hsien-ch'eng,Fei-hsien-ch’eng,Feicheng,Feixian,Pi-hsien 35.26056 117.9675 P PPL CN 25 80929 114 Asia/Shanghai 2012-01-18
-1811446 Feiluan Feiluan 26.5625 119.5975 P PPL CN 07 3120 15 Asia/Shanghai 2001-01-05
-1811462 Fasi Fasi Fasi,Fasi Zhen,fa si,fa si zhen,法泗,法泗镇 30.1564 114.1564 P PPLA4 CN 12 0 33 Asia/Shanghai 2012-01-18
-1811479 Fancheng Fancheng Chiu-fan-chih,Fan-chih,Fan-chih-ch'eng,Fan-chih-ch’eng,Fan-chih-hsien,Fan-shih,Fancheng,Fancheng Zhen,Fanshi Xian,Fansze,Fantzehsien,fan cheng,fan cheng zhen,fan shi xian,繁城,繁城镇,繁峙县 39.18992 113.26401 P PPLA3 CN 24 0 925 Asia/Shanghai 2012-01-18
-1811481 Yangia Yangia Fan-shih,Fanshi,Fanshi Zhen,Fanshizhen,Yangia,fan shi,fan shi zhen,yang jia,杨家,范市,范市镇 30.10443 121.46732 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1811492 Fankou Fankou Fan-k'ou-chieh,Fan-k’ou-chieh,Fankou,Fankou Jiedao,fan kou,fan kou jie dao,樊口,樊口街道 30.41667 114.83333 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-18
-1811496 Fanzhuangzi Fanzhuangzi Fan-chia-chuang,Fanchia,Fanjiazhuang,Fanzhuangzi 39.19361 117.335 P PPL CN CN 28 6493 4 Asia/Shanghai 2012-01-18
-1811501 Fanjiazhai Fanjiazhai Fan-chia,Fan-chia-chai,Fanjiazhai,fan jia zhai,范家寨 34.59836 107.3988 P PPLA4 CN 26 0 955 Asia/Chongqing 2012-01-18
-1811504 Fanzhen Fanzhen Fan-chia-p'u,Fan-chia-p’u,Fanjiapu,Fanzhen,Fanzhen Zhen,fan zhen,fan zhen zhen,范镇,范镇镇 29.58294 115.56419 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-18
-1811512 Fanjiachuan Fanjiachuan Fanjiachuan,Fanjiachuan Xiang,fan jia chuan,fan jia chuan xiang,樊家川,樊家川乡 36.58002 107.46071 P PPLA4 CN 15 0 1286 Asia/Chongqing 2012-01-18
-1811528 Fangxian Chengguanzhen Fangxian Chengguanzhen Fang,Fang-hsien,Fangxian,Fangxian Chengguanzhen,fang xian cheng guan zhen,房县城关镇 32.055 110.73417 P PPLA3 CN 12 0 432 Asia/Chongqing 2012-01-18
-1811531 Fangxi Fangxi Fang-hsi,Fangxi,Fangxi Zhen,fang xi,fang xi zhen,芳溪,芳溪镇 28.34521 114.63864 P PPLA4 CN 03 0 79 Asia/Shanghai 2012-01-18
-1811533 Fangting Fangting Fangting,Shifang,Shih-fang,Shih-fang-hsien 31.12766 104.16649 P PPLA3 CN 32 0 529 Asia/Chongqing 2012-01-18
-1811534 Fangtian Fangtian Fangtian,fang tian,方田 26.18468 116.54023 P PPLA4 CN 07 0 396 Asia/Shanghai 2012-01-18
-1811542 Fangshan Fangshan Chou-k'ou-tien-ch'u,Chou-k’ou-tien-ch’ü,Fang-shan-hsien,Fangshan,Ta-fang-shan 39.69833 115.9925 P PPL CN 22 97026 49 Asia/Shanghai 2012-01-18
-1811549 Fangqiang Fangqiang Fangqiang,Fangqiang Zhen,fang qiang,fang qiang zhen,方强,方强镇 33.37956 120.42586 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1811557 Fangli Fangli Fang-li-chen,Fangli,Fangli Zhen,Wan-li-chen,fang li,fang li zhen,方里,方里镇 34.82306 108.73694 P PPLA4 CN 26 0 919 Asia/Chongqing 2012-01-18
-1811559 Fangjiazhuang Fangjiazhuang Fang-chia-chuang,Fang-chuang-chen,Fangjiazhuang 39.72972 117.42056 P PPL CN CN 28 2679 7 Asia/Harbin 2012-01-18
-1811573 Fanggaoping Fanggaoping Fang-kao-p'ing,Fang-kao-p’ing,Fanggaoping,Fanggaoping Zhen,fang gao ping,fang gao ping zhen,方高坪,方高坪镇 30.68552 114.92696 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-18
-1811585 Fangcun Fangcun Changhong,Fang-ts'un,Fang-ts’un,Fangcun,fang cun,zhang hong,芳村,长虹 29.24194 118.23861 P PPLA4 CN 02 0 411 Asia/Shanghai 2012-01-18
-1811586 Fangcun Fangcun Fang-ts'un,Fang-ts'un-chen,Fang-ts’un,Fang-ts’un-chen,Fangcun,Fangcun Zhen,fang cun,fang cun zhen,方村,芳村,芳村镇 29.05426 118.61304 P PPLA4 CN 02 0 117 Asia/Shanghai 2012-01-18
-1811607 Fanyang Fanyang Fan-ch'ang-hsien,Fan-ch’ang-hsien,Fanchang,Fanyang,Fanyang Zhen,fan yang,fan yang zhen,繁阳,繁阳镇 31.08471 118.19425 P PPLA3 CN 01 0 15 Asia/Shanghai 2012-01-18
-1811609 Famen Famen Ch'ung-cheng-chen,Chunchzhenchzhen',Chunchzhenchzhen’,Ch’ung-cheng-chen,Fa-men-ssu,Famen,Famen Zhen,Famensi,fa men,fa men si,fa men zhen,法门,法门寺,法门镇 34.43696 107.89866 P PPLA4 CN 26 0 619 Asia/Chongqing 2012-01-18
-1811619 Ezhou Ezhou Echeng,Echeng-hsien,Ezhou,O-ch'eng,O-ch'eng-hsien,O-ch’eng,O-ch’eng-hsien,Shou-ch'ang,Shou-ch’ang,Wuchanghsien 30.4 114.83333 P PPL CN 12 193652 25 Asia/Shanghai 2011-08-07
-1811634 Erwangzhuang Erwangzhuang Erh-chuang,Erh-chuang-chen,Erh-chuang-tzu,Erh-hsin-chuang,Erhchuangtze,Erwangzhuang 39.39167 117.35389 P PPL CN CN 28 1282 5 Asia/Shanghai 2012-01-18
-1811662 Erqu Erqu Chou-chih,Chou-chih-hsien,Chowchih,Chowchihhsien,Chzhouchzhi,Erqu,Erqu Zhen,Zhouzhi,er qu,er qu zhen,zhou zhi,二曲,二曲镇,周至 34.15278 108.20639 P PPLA3 CN 26 0 442 Asia/Chongqing 2012-01-18
-1811673 Erlong Erlong Erlong,er long,二龙 33.21957 112.1847 P PPLA4 CN 09 0 286 Asia/Chongqing 2012-01-18
-1811682 Erlang Erlang Erlang,Erlangmiao,er lang,二郎 33.83946 105.58832 P PPLA4 CN 15 0 1372 Asia/Chongqing 2012-01-18
-1811686 Dawu Chengguanzhen Dawu Chengguanzhen Dawu,Dawu Chengguanzhen,Dawu Xian,Erh-lang-fan,Erh-lang-tien,Erlangdian,Ta-wu,da wu cheng guan zhen,大悟城关镇 31.60965 114.11806 P PPLA3 CN 12 0 145 Asia/Shanghai 2012-01-18
-1811689 Erkou Erkou Erh-k'ou,Erh-k’ou,Erkou,Erkou Xiang,er kou,er kou xiang,耳口,耳口乡 27.95793 117.14581 P PPLA4 CN 03 0 117 Asia/Shanghai 2012-01-18
-1811693 Erjia Erjia Erh-chia,Erh-chia-chen,Erhkia,Erjia,Erjia Zhen,Erjiazhen,er jia,er jia zhen,二甲,二甲镇 32.02345 121.19074 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1811704 Erdu Erdu Erdu,Erdu Zhen,Erh-tu,er dou,er dou zhen,二都,二都镇 27.45632 116.17206 P PPLA4 CN 03 0 104 Asia/Shanghai 2012-01-18
-1811715 Erba Erba Erba,Erba Zhen,Erh-pa,er ba,er ba zhen,二坝,二坝镇 31.36525 118.30815 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-18
-1811717 Eqiao Eqiao Eqiao,Erqiao Zhen,O-ch'iao,O-ch'iao-chen,O-ch’iao,O-ch’iao-chen,e qiao,e qiao zhen,峨桥,峨桥镇 31.17593 118.28349 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-18
-1811720 Enshi Enshi Ehn'shi,En-shih,En-shih-hsien,Enshi,Shih-nan,Shihnanfu,Эньши 30.3 109.48333 P PPL CN 12 95227 451 Asia/Chongqing 2012-01-18
-1811722 Enle Enle Enle,en le,恩乐 23.96049 101.08265 P PPLA3 CN 29 0 1598 Asia/Chongqing 2012-01-18
-1811724 Enjiang Enjiang Enjiang,Enjiang Zhen,Yongfeng Xian,Yung-feng,Yung-feng-hsien,Yung-feng-hsien-ch'eng,Yung-feng-hsien-ch’eng,en jiang,en jiang zhen,yong feng xian,恩江,恩江镇,永丰县 27.32178 115.42925 P PPLA3 CN 03 0 73 Asia/Shanghai 2012-01-18
-1811729 Encheng Encheng Ehn'pin,En-p'ing-chen,En-p'ing-hsien,En-p’ing-chen,En-p’ing-hsien,Encheng,Enping,Yan-ping-hsien,Yanping,Yin Ping,en ping,si cheng,Эньпин,思城,恩平 22.18389 112.3026 P PPL CN 30 110921 31 Asia/Chongqing 2012-01-18
-1811737 Eman Eman Eman,Eman Zhen,e man,e man zhen,峨蔓,峨蔓镇 19.85723 109.26271 P PPLA4 CN 31 0 11 Asia/Chongqing 2012-01-18
-1811738 Eling Eling Eling,Eling Zhen,O-ling,O-ling-chen,e ling,e ling zhen,峨岭,峨岭镇 30.8451 118.3017 P PPLA4 CN 01 0 26 Asia/Shanghai 2012-01-18
-1811739 Ekou Ekou Ekou,Ekou Zhen,Hao-chia-chieh,Haojiajie,O-k'ou,O-k'ou-chen,O-k’ou,O-k’ou-chen,e kou,e kou zhen,峨口,峨口镇 39.13125 113.19119 P PPLA4 CN 24 0 950 Asia/Shanghai 2012-01-18
-1811744 Ehu Ehu Ehu,Ehu Zhen,O-hu,O-hu-t'an,O-hu-t’an,e hu,e hu zhen,鹅湖,鹅湖镇 29.47614 117.4484 P PPLA4 CN 03 0 63 Asia/Shanghai 2012-01-18
-1811746 Ehen Hudag Ehen Hudag A-la-shan-yu-ch'i,A-la-shan-yu-ch’i,Alashanyou Qi,Alxa Youqi,Ehen Hudag,Ekenhu Duge Zhen,O-k'en-hu-tu-ko,O-k’en-hu-tu-ko,a la shan you qi,e ken hu dou ge,e ken hu dou ge zhen,阿拉善右旗,额肯呼都格,额肯呼都格镇 39.2 101.66667 P PPLA3 CN 20 0 1493 Asia/Chongqing 2012-01-18
-1811754 Duzhuang Duzhuang Duzhuang,Duzhuang Zhen,Tu-chia-chuang,Tu-chuang,du zhuang,du zhuang zhen,杜庄,杜庄镇 39.935 113.46722 P PPLA4 CN 24 0 1002 Asia/Shanghai 2012-01-18
-1811762 Duze Duze Duze,Duze Zhen,She-tse,Tu-tse,Tu-tse-chen,du ze,du ze zhen,杜泽,杜泽镇 29.12443 118.94559 P PPLA4 CN 02 0 99 Asia/Shanghai 2012-01-18
-1811764 Duyun Duyun Dujun,Duyun,Pingchowhsien,Tu-yun,Tu-yun-ch'eng,Tu-yun-hsien,Tu-yun-shih,Tu-yün,Tu-yün-ch’eng,Tu-yün-hsien,Tu-yün-shih,Дуюн 26.26667 107.51667 P PPL CN 18 91136 815 Asia/Chongqing 2012-01-18
-1811771 Zhengyang Zhengyang Duxun Zhen,Tu-hsun,Tu-hsün,Zhengyang,du xun zhen,zheng yang,杜浔镇,正阳 23.9446 117.602 P PPLA4 CN 07 0 12 Asia/Shanghai 2012-01-18
-1811783 Dushu Dushu Dushu,Dushu Zhen,Tu-shu,Tu-shu-chen,du shu,du shu zhen,独树,独树镇 33.32543 113.15969 P PPLA4 CN 09 0 140 Asia/Chongqing 2012-01-18
-1811801 Duqu Duqu Duqu,Duqu Zhen,Tu-ch'u,Tu-ch'u-chen,Tu-ch’ü,Tu-ch’ü-chen,du qu,杜曲 34.11002 109.00165 P PPLA4 CN 26 0 467 Asia/Chongqing 2012-01-18
-1811812 Duozhu Duozhu Duozhu,San-t'o-chu,San-to,San-to-chu-hsu,San-to-chu-hsü,San-t’o-chu,To-chu,duo zhu,多祝 23.03025 114.94411 P PPLA4 CN 30 0 43 Asia/Chongqing 2012-01-18
-1811815 Duowen Duowen Duowen,Duowen Zhen,To-wen,To-wen-shih,duo wen,duo wen zhen,多文,多文镇 19.77623 109.76583 P PPLA4 CN 31 0 123 Asia/Chongqing 2012-01-18
-1811828 Duodaoshi Duodaoshi Duodao,Duodaoshi,Duodaoshi Jiedao,To-tao,To-tao-shih,duo dao shi,duo dao shi jie dao,掇刀石,掇刀石街道 30.96174 112.18476 P PPLA4 CN 12 0 109 Asia/Chongqing 2012-01-18
-1811829 Duobao Duobao Duobao,Duobao Zhen,Duobaowan,To-pao-wan,Topaowanchen,duo bao,duo bao zhen,多宝,多宝镇 30.67 112.68952 P PPLA4 CN 12 90257 36 Asia/Chongqing 2012-01-18
-1811833 Duntou Duntou Duntou,Duntou Zhen,dun tou,dun tou zhen,墩头,墩头镇 32.65 120.36667 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1811838 Dunshang Dunshang Dunshang,Dunshang Zhen,Tun-shang,dun shang,dun shang zhen,墩尚,墩尚镇 34.70872 119.03899 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1811844 Dunhou Dunhou Dunhou,Dunhou Zhen,Ji'an,Ji'an Xian,Ji’an,Ji’an Xian,Tun-hou,dui hou,dui hou zhen,ji an xian,吉安县,敦厚,敦厚镇 27.05 114.9 P PPLA3 CN 03 0 65 Asia/Shanghai 2012-01-18
-1811868 Dukou Dukou Dukou,Dukou Zhen,du kou,du kou zhen,渡口,渡口镇 29.32924 111.93521 P PPLA4 CN 11 0 39 Asia/Shanghai 2012-01-18
-1811871 Dujing Dujing Dujing,Tu-ching,Tu-ching-shih,Zitong,Zitong Zhen,du jing,zi tong,zi tong zhen,杜井,梓桐,梓桐镇 29.60147 118.755 P PPLA4 CN 02 0 131 Asia/Shanghai 2012-01-18
-1811878 Dushi Dushi Dujiawei,Dushi,Dushi Zhen,du shi,du shi zhen,杜市,杜市镇 28.05216 115.98049 P PPLA4 CN 03 0 41 Asia/Shanghai 2012-01-18
-1811885 Dujiang Dujiang Dujiang,Dujiang Zhen,du jiang,du jiang zhen,渡江,渡江镇 24.86667 114.7 P PPLA4 CN 03 0 259 Asia/Chongqing 2012-01-18
-1811907 Duhu Duhu Duhu,Duhu Zhen,Tohuk,Tu-hu,dou hu,dou hu zhen,都斛,都斛镇 22.06938 112.94148 P PPLA4 CN 30 0 2 Asia/Chongqing 2012-01-18
-1811926 Doucun Doucun Doucun,Ducun,Fu-p'ing-hsien,Fu-p'ing-hsien-ch'eng,Fu-p’ing-hsien,Fu-p’ing-hsien-ch’eng,Fupin,Fuping,dou cun,窦村 34.74808 109.17968 P PPLA3 CN 26 0 445 Asia/Chongqing 2012-01-18
-1811929 Ducheng Ducheng Dosing,Ducheng,Tu-ch'eng,Tu-ch'eng-hsu,Tu-ch’eng,Tu-ch’eng-hsü,Yunan,dou cheng,都城 23.23729 111.53172 P PPLA3 CN 30 95525 27 Asia/Chongqing 2012-01-18
-1811931 Duchang Duchang Duchang,Duchang Xian,Duchang Zhen,Tu-ch'ang,Tu-ch'ang-hsien,Tu-ch'ang-hsien-ch'eng,Tu-ch’ang,Tu-ch’ang-hsien,Tu-ch’ang-hsien-ch’eng,dou chang,dou chang xian,dou chang zhen,都昌,都昌县,都昌镇 29.266 116.18631 P PPLA3 CN 03 0 27 Asia/Shanghai 2012-01-18
-1811932 Dubu Dubu Dubu,Dubu Zhen,du bu,du bu zhen,杜步,杜步镇 24.33374 112.66088 P PPLA4 CN 30 0 75 Asia/Chongqing 2012-01-18
-1811956 Duanjia Duanjia Duanjia,Tuan-chia,Tuan-chia-chai,duan jia,段家 34.87256 109.81844 P PPLA4 CN 26 0 480 Asia/Chongqing 2012-01-18
-1811958 Duanfen Duanfen Duanfen,Duanfen Zhen,Tuan-fen,duan fen,duan fen zhen,端芬,端芬镇 22.05852 112.75421 P PPLA4 CN 30 0 4 Asia/Chongqing 2012-01-18
-1811983 Doushan Doushan Doushan,Doushan Zhen,Tou-shan,Towshan,dou shan,dou shan zhen,斗山,斗山镇 22.06282 112.82844 P PPLA4 CN 30 0 12 Asia/Chongqing 2012-01-18
-1811988 Doumuhu Doumuhu Doumuhu,Doumuhu Zhen,Tou-mu-hu,dou mu hu,dou mu hu zhen,斗姆湖,斗姆湖镇 28.94894 111.62858 P PPLA4 CN 11 0 40 Asia/Shanghai 2012-01-18
-1811990 Doumen Doumen Doumen,Doumen Jieban,Doumenzhen,Tou-men,Tou-men-chen,dou men,dou men jie ban,斗门,斗门街办 34.21742 108.75259 P PPLA4 CN 26 0 397 Asia/Chongqing 2012-01-18
-1811995 Doumen Doumen Baishenglou,Doumen,Doumen Zhen,Tou-men,Tou-men-chen,dou men,dou men zhen,斗门,斗门镇 30.0976 120.5925 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1812010 Doujia Doujia Doujia,Doujia Zhen,Tou-chia,dou jia,dou jia zhen,窦家,窦家镇 34.79722 108.30028 P PPLA4 CN 26 0 1107 Asia/Chongqing 2012-01-18
-1812012 Douhudi Douhudi Douhudi,Doushi,Gong'an,Gong’an,Kung-an,Tou-hu-ti,Tou-shih,Towhuti,dou hu di,斗湖堤 30.06056 112.22417 P PPLA3 CN 12 0 40 Asia/Chongqing 2012-01-18
-1812016 Dougou Dougou Dougou,Dougou Xiang,dou gou,dou gou xiang,陡沟,陡沟乡 34.28333 119.11667 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1812018 Dougou Dougou Dougou,Dougou Zhen,Tou-kou,Tou-kou-pa,dou gou,dou gou zhen,陡沟,陡沟镇 31.35833 118.01399 P PPLA4 CN 01 0 6 Asia/Shanghai 2012-01-18
-1812025 Douba Douba Douba,dou ba,豆坝 33.25711 105.46812 P PPLA4 CN 15 0 1437 Asia/Chongqing 2012-01-18
-1812056 Nanjie Nanjie Dongzhen Zhen,Nanjie,Tung-chen,dong zhen zhen,nan jie,东镇镇,南街 35.42723 111.30848 P PPLA4 CN 24 0 491 Asia/Chongqing 2012-01-18
-1812057 Xinyi Xinyi Dongzhen,Hsin-i,Tung-chen,Tung-chen-chen,Tung-chen-hsu,Tung-chen-hsü,Xinyi,xin yi,信宜 22.37303 110.94746 P PPL CN 30 98259 89 Asia/Chongqing 2012-01-18
-1812058 Dongzhaogezhuang Dongzhaogezhuang 39.94889 117.37 P PPL CN 28 1613 10 Asia/Harbin 2000-11-21
-1812060 Dongzhao Dongzhao Dongzhao,Dongzhao Xiang,Tung-chao,Tung-chao-ts'un,Tung-chao-ts’un,dong zhao,dong zhao xiang,东赵,东赵乡 37.69417 112.84806 P PPLA4 CN 24 0 813 Asia/Shanghai 2012-01-18
-1812071 Dongzhai Dongzhai Dongzhai,Dongzhai Zhen,Tung-chai,Tung-chai-chen,dong zhai,dong zhai zhen,东寨,东寨镇 38.80852 112.09789 P PPLA4 CN 24 0 1591 Asia/Chongqing 2012-01-18
-1812072 Dongzha Dongzha Chia-hsing,Dongzha,Dongzha Jiedao,Dongzha Xiang,Tung-cha,Tung-cha-chen,Tung-cha-k'ou-chen,Tung-cha-k’ou-chen,dong shan,dong shan jie dao,dong shan xiang,东栅,东栅乡,东栅街道 30.76113 120.78594 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1812084 Dongyueguan Dongyueguan Dongyueguan,Dongyueguan Zhen,Tung-yueh-kuan,Tung-yüeh-kuan,dong yue guan,dong yue guan zhen,东岳观,东岳观镇 29.55999 111.03555 P PPLA4 CN 11 0 215 Asia/Chongqing 2012-01-18
-1812091 Dongyuan Dongyuan Dongyuan,Tung-yuan,Tung-yüan,dong yuan,东园 24.91738 118.75236 P PPL CN 07 6100 14 Asia/Shanghai 2012-01-18
-1812092 Donglan Donglan Donglan,Dongyuan,Tung-lan,Tung-lan-chen,Tung-lan-hsien,Tung-lan-hsien-ch'eng,Tung-lan-hsien-ch’eng,Tunlangchow,dong lan,东兰 24.55018 107.38288 P PPLA3 CN 16 0 330 Asia/Chongqing 2012-01-18
-1812093 Dongyuan Dongyuan Dongyuan,Tung-yuan,Tung-yüan,dong yuan,东园 23.50195 116.12541 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-18
-1812096 Dongyou Dongyou Dongyou,Dongyou Zhen,Tung-yu,dong you,dong you zhen,东游,东游镇 27.16278 118.63139 P PPLA4 CN 07 0 133 Asia/Shanghai 2012-01-18
-1812101 Dongying Dongying Dongying,Dun'in,Tung-ying,dong ying,dong ying shi,Дуньин,东营,东营市 37.45639 118.48556 P PPL CN 25 306450 8 Asia/Shanghai 2012-01-18
-1812132 Dongxing Dongxing Cheng-tung-yu-chen,Cheng-tung-yü-chen,Dongxing,Dongxing Xiang,Dongxingzhen,Tung-hsing-chen,Tung-hsing-wei,dong xing,东兴 31.98176 120.1606 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1812164 Dongxi Dongxi Dongxi,Dongxichang,Dongxizhen,Tung-hsi-chen,dong xi,dong xi zhen,东溪,东溪镇 32.06577 106.24843 P PPL CN 32 4000 461 Asia/Chongqing 2012-01-18
-1812166 Dongxi Dongxi Dongxi,Dongxi Xiang,dong xi,dong xi xiang,洞溪,洞溪乡 29.14225 110.82506 P PPLA4 CN 11 0 663 Asia/Chongqing 2012-01-18
-1812168 Dongxi Dongxi Dongxi,Tung-hsi 28.76139 106.66111 P PPL CN CN 33 7000 389 Asia/Chongqing 2012-01-18
-1812171 Dongwu Dongwu Dongwu,Tung-wu,dong wu,东坞 34.79917 108.52861 P PPLA4 CN 26 0 1029 Asia/Chongqing 2012-01-18
-1812211 Dongshan Dongshan Ch'ien-shan,Ch'ien-shan-chen,Chen-tse,Ch’ien-shan,Ch’ien-shan-chen,Dongshan,Dongshan Zhen,Dongting,Tung-shan,Tung-shan-chen,dong shan,东山 31.08327 120.40361 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1812212 Dongting Dongting Dongting,Tung-hu-t'ing,Tung-hu-t’ing,Tung-t'ing,Tung-t'ing-hu,Tung-t'ing-hu-chen,Tung-t’ing,Tung-t’ing-hu,Tung-t’ing-hu-chen,dong ting,东亭 30.87222 119.51966 P PPLA4 CN 01 0 49 Asia/Shanghai 2012-01-18
-1812222 Dongtang Dongtang Dongtang,Dongtang Zhen,dong tang,dong tang zhen,董塘,董塘镇 25.08225 113.63165 P PPLA4 CN 30 0 104 Asia/Chongqing 2012-01-18
-1812228 Dongtai Dongtai Dongtai,Dongtai Shi,Dongtai Zhen,Tung-t'ai,Tung-t'ai-chen,Tung-t'ai-hsien,Tung-t’ai,Tung-t’ai-chen,Tung-t’ai-hsien,dong tai,dong tai shi,dong tai zhen,东台,东台市,东台镇 32.85231 120.30947 P PPLA3 CN 04 110988 7 Asia/Shanghai 2012-01-18
-1812229 Dongtazhuang Dongtazhuang Dongta,Dongtazhuang 39.89389 117.33722 P PPL CN CN 28 1440 6 Asia/Harbin 2012-01-18
-1812237 Dongshui Dongshui Dongshui,Dongshui Zhen,Tung-shui,Tung-shui-hsu,Tung-shui-hsü,dong shui,dong shui zhen,东水,东水镇 24.2599 115.16864 P PPLA4 CN 30 0 108 Asia/Shanghai 2012-01-18
-1812249 Dongshi Dongshi Dongshi,Dongshi Zhen,Tung-shih,dong shi,dong shi zhen,董市,董市镇 30.41 111.70194 P PPLA4 CN 12 0 46 Asia/Chongqing 2012-01-18
-1812250 Dongshi Dongshi Dongshi,Dongshi Xiang,dong shi,dong shi xiang,洞市,洞市乡 29.80919 111.37538 P PPLA4 CN 11 0 174 Asia/Shanghai 2012-01-18
-1812256 Dongsheng Dongsheng Dongsheng,Dongsheng Qu,Dunshen,Tung-sheng,Tung-sheng-hsien,dong sheng,dong sheng qu,东胜,东胜区 39.81608 109.97763 P PPL CN 20 99809 1439 Asia/Chongqing 2012-01-18
-1812264 Dongshe Dongshe Dongshe,Dongshe Zhen,Tung-she,Tung-she-chen,dong she,dong she zhen,东社,东社镇 32.09758 121.18498 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1812277 Dongshanba Dongshanba Dongshanba,Dongshanba Zhen,dong shan ba,dong shan ba zhen,东山坝,东山坝镇 26.74057 116.06046 P PPLA4 CN 03 0 216 Asia/Shanghai 2012-01-18
-1812282 Dongshan Dongzuxiang Dongshan Dongzuxiang Dongshan,Dongshan Dongzuxiang,Dunshan',Dunshan’,Tung-shan 26.595 109.89667 P PPL CN CN 11 1390 427 Asia/Chongqing 2012-01-18
-1812287 Dongshan Dongshan Dongshan,Dongshan Zhen,dong shan,dong shan zhen,东山,东山镇 19.7515 110.23252 P PPLA4 CN 31 0 25 Asia/Chongqing 2012-01-18
-1812288 Dongsha Dongsha Dongsha,Dongsha Zhen,Dongshajiao,Tung-sha-chiao,dong sha,dong sha zhen,东沙,东沙镇 30.31418 122.14123 P PPLA4 CN 02 0 3 Asia/Shanghai 2012-01-18
-1812308 Dongqiao Dongqiao Dongqiao,Dongqiao Zhen,Tung-ch'iao,Tung-ch’iao,dong qiao,dong qiao zhen,东桥,东桥镇 31.19322 112.83118 P PPLA4 CN 12 0 109 Asia/Chongqing 2012-01-18
-1812317 Dongpu Dongpu Dongpu,Dongpu Zhen,Tung-p'u,Tung-p'u-shih,Tung-p’u,Tung-p’u-shih,dong pu,dong pu zhen,东浦,东浦镇 30.05583 120.53133 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1812332 Dongping Dongping An-hua-hsien,Anhua,Dongping,Tung-p'ing,Tung-p'ing-chen,Tung-p’ing,Tung-p’ing-chen,dong ping,东坪 28.38017 111.20586 P PPLA3 CN 11 0 135 Asia/Chongqing 2012-01-18
-1812333 Dongping Dongping Dongping,Dongping Zhen,Tung-p'ing,Tung-p’ing,dong ping,dong ping zhen,东平,东平镇 27.42861 118.63833 P PPLA4 CN 07 0 237 Asia/Shanghai 2012-01-18
-1812334 Dongping Dongping Dongping,Dongping Xiang,dong ping,dong ping xiang,东坪,东坪乡 27.30982 116.68279 P PPLA4 CN 03 0 114 Asia/Shanghai 2012-01-18
-1812344 Dongnigu Dongnigu Dongnigu,Tung-ni-chan,Tung-ni-ku 39.01667 117.43778 P PPL CN CN 28 4447 0 Asia/Shanghai 2012-01-18
-1812356 Dongmen Dongmen Dongmen,Lo-ch'eng,Lo-ch'eng-hsien,Lo-ch’eng,Lo-ch’eng-hsien,Loshing-hsien,dong men,东门 24.79198 108.9 P PPLA3 CN 16 0 348 Asia/Chongqing 2012-01-18
-1812363 Dongmafang Dongmafang Dongmafang,Dongmafang Xiang,Tung-ma-fang,dong ma fang,dong ma fang xiang,东马坊,东马坊乡 38.68085 112.32408 P PPLA4 CN 24 0 1718 Asia/Chongqing 2012-01-18
-1812379 Lianhua Lianhua Donglong,Lianhua,Lianhua Zhen,Tang-leng,Tung-lung,lian hua,莲华 23.57594 116.8006 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-18
-1812381 Dongli Dongli Dongli,Dongli Zhen,dong li,东里 23.56564 116.81943 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-18
-1812392 Dongliu Dongliu Dongliu,Dongliu Xiang,dong liu,dong liu xiang,东留,东留乡 25.14402 115.98907 P PPLA4 CN 07 0 505 Asia/Shanghai 2012-01-18
-1812395 Dongling Dongling Dongling,Donlin,dong ling,Донлин,东岭 24.98271 118.8979 P PPL CN 07 4000 34 Asia/Shanghai 2012-01-18
-1812420 Dongkou Dongkou Dongkou,Dunkou,Tung-k'ou,Tung-k'ou-chen,Tung-k’ou,Tung-k’ou-chen,Tungkow,dong kou,洞口 27.05272 110.5361 P PPLA3 CN 11 0 403 Asia/Chongqing 2012-01-18
-1812422 Dongkengkou Dongkengkou Dongkengkou,Tung-k'eng-k'ou,Tung-k’eng-k’ou,Yanglin,Yanglin Zhen,dong keng kou,yang lin,yang lin zhen,东坑口,杨林,杨林镇 29.05635 118.14318 P PPLA4 CN 02 0 219 Asia/Shanghai 2012-01-18
-1812427 Dongkan Dongkan Binhai,Dongkan,Pin-hai,Tung-k'an,Tung-k'an-chen,Tung-k’an,Tung-k’an-chen 33.99972 119.83083 P PPL CN 04 72789 6 Asia/Shanghai 2012-01-18
-1812432 Dongjituo Dongjituo Dongjituo,Tung-chi-t'o,Tung-chi-t’o,Tungchituo 39.42194 117.57417 P PPL CN CN 28 1400 2 Asia/Shanghai 2012-01-18
-1812454 Dongjiao Dongjiao Dongjiao,Dongjiao Zhen,dong jiao,dong jiao zhen,东郊,东郊镇 19.57696 110.8562 P PPLA4 CN 31 0 29 Asia/Chongqing 2012-01-18
-1812471 Dongjia Dongjia Dongjia,Dongjia Zhen,Tung-chia,dong jia,dong jia zhen,董家,董家镇 28.27447 115.51044 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-18
-1812489 Donghu Donghu Donghu,Donghu Xiang,Tung-hu,Tung-hu-ts'un,Tung-hu-ts’un,dong hu,dong hu xiang,东湖,东湖乡 39.09387 112.11292 P PPLA4 CN 24 0 1425 Asia/Chongqing 2012-01-18
-1812500 Xian’an Xian'an Donghong,Xian'an,Xian'an Zhen,Xian’an,Xian’an Zhen,xian an,仙庵 23.07859 116.50469 P PPLA4 CN 30 0 16 Asia/Shanghai 2012-01-18
-1812503 Donghenan Donghenan Donghenan,Donghenan Zhen,Ho-nan,Ho-nan-chen,Tung-ho-nan,Tung-ho-nan-chen,dong he nan,dong he nan zhen,东河南,东河南镇 39.38194 114.04417 P PPLA4 CN 24 0 1044 Asia/Shanghai 2012-01-18
-1812521 Donghai Donghai Donghai,Donghai Jiedao,Lu-feng-hsien,Lu-feng-hsien-ch'eng,Lu-feng-hsien-ch’eng,Lufeng,Lufung,Lukfung,dong hai,lu feng,东海,陆丰 22.94594 115.64204 P PPLA3 CN 30 188602 14 Asia/Shanghai 2012-01-18
-1812531 Dongguan Dongguan Dongguan,Dongguan Jiedao,Dongguan Zhen,Tung-kuan,Tung-kuan-chen,dong guan,dong guan jie dao,dong guan zhen,东关,东关街道,东关镇 30.01166 120.81407 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-02-02
-1812537 Dongguan Dongguan Baode,Baode Xian,Dongguan,Dongguan Zhen,Pao-te,Pao-te-hsien,Pao-teh,Paotehchow,bao de xian,dong guan,dong guan zhen,东关,东关镇,保德县 39.01732 111.12674 P PPLA3 CN 24 0 983 Asia/Chongqing 2012-01-18
-1812543 Dongguan Dongguan Dongguan,Dongguan Zhen,Tung-kuan,dong guan,dong guan zhen,东馆,东馆镇 27.8272 116.46032 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-18
-1812545 Dongguan Dongguan Dongguan,Dunguan',Kuan-ch'eng-chen,Kuan-ch’eng-chen,Tung-kuan,Tung-kuan-hsien,Tungkun,dong guan,dong wan shi,Дунгуань,دوڭۋەن شەھىرى,东莞,东莞市 23.04889 113.74472 P PPLA2 CN 30 390219 10 Asia/Chongqing 2012-01-18
-1812546 Donggu Donggu Donggu,Donggu Zhen,Gonglue,Gonglüe,Tung-ku,Tung-yin,dong gu,dong gu zhen,东固,东固镇 26.72501 115.39104 P PPLA4 CN 03 0 189 Asia/Shanghai 2012-01-18
-1812573 Donggang Donggang Donggang,Donggang Xiang,dong gang,dong gang xiang,东港,东港乡 28.93652 114.22593 P PPLA4 CN 03 0 173 Asia/Shanghai 2012-01-18
-1812585 Dongfeng Dongfeng Dongfeng,Dongfeng Zhen,Tung-feng,Tung-feng-t'ang,Tung-feng-t'un,Tung-feng-t’ang,Tung-feng-t’un,dong feng,dong feng zhen,东峰,东峰镇 27.10233 118.49568 P PPLA4 CN 07 0 122 Asia/Shanghai 2012-01-18
-1812594 Dong’erying Dong'erying 39.9575 117.27917 P PPL CN 28 2583 15 Asia/Harbin 2000-11-21
-1812597 Dongdu Dongdu Dongdu,Tung-tu 35.85 117.7 P PPL CN 25 72957 200 Asia/Shanghai 2012-01-18
-1812600 Dongditou Dongditou 39.26139 117.36833 P PPL CN 28 5925 3 Asia/Shanghai 2000-11-21
-1812613 Dongdai Dongdai Dongdai,Tung-tai 26.24194 119.61694 P PPL CN CN 07 8240 13 Asia/Shanghai 2012-01-18
-1812619 Dongcun Dongcun Dongcun,Dongcun Zhen,Lan Xian,Lan-hsien,Lanxian,Tung-ts'un,Tung-ts'un-chen,Tung-ts’un,Tung-ts’un-chen,dong cun,dong cun zhen,lan xian,东村,东村镇,岚县 38.29442 111.70352 P PPLA3 CN 24 0 1215 Asia/Chongqing 2012-01-18
-1812621 Dongcun Dongcun Dongcun,Haiyang,Tung-ts'un,Tung-ts'un-chi,Tung-ts’un,Tung-ts’un-chi 36.77667 121.15972 P PPL CN 25 92282 38 Asia/Shanghai 2012-01-18
-1812625 Dongcun Dongcun Dongcun,Dongcun Xiang,dong cun,dong cun xiang,东村,东村乡 26.3631 115.55228 P PPLA4 CN 03 0 202 Asia/Shanghai 2012-01-18
-1812634 Dongchuan Dongchuan Chien-ch'uan-chen,Chien-ch’uan-chen,Dongchuan,Yao'an,Yao-chou,Yaochow,Yao’an,dong chuan,栋川 25.47655 101.28468 P PPLA3 CN 29 0 2146 Asia/Chongqing 2012-01-18
-1812635 Dongchong Dongchong Dongchong,Tangchung,Tung-ch'ung,Tung-ch'ung-k'ou,Tung-ch’ung,Tung-ch’ung-k’ou 26.56306 119.865 P PPL CN CN 07 2440 30 Asia/Shanghai 2012-01-18
-1812642 Dongchen Dongchen Dongchen,Dongchen Zhen,Tung-ch'en,Tung-ch'en-chen,Tung-ch’en,Tung-ch’en-chen,dong chen,dong chen zhen,东陈,东陈镇 32.41667 120.65 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1812662 Dongbei Dongbei Dongbei,Dongbei Zhen,Tung-p'o,Tung-pei,Tung-p’o,dong bei,dong bei zhen,东陂,东陂镇 27.20969 116.13118 P PPLA4 CN 03 0 158 Asia/Shanghai 2012-01-18
-1812663 Dongbei Dongbei Dongbei,Dongbei Zhen,Tung-p'o,Tung-p'o-hsu,Tung-p'u,Tung-pei,Tung-pei-hsu,Tung-pei-hsü,Tung-p’o,Tung-p’o-hsü,Tung-p’u,dong bei,dong bei zhen,东陂,东陂镇 24.99745 112.29592 P PPLA4 CN 30 0 152 Asia/Chongqing 2012-01-18
-1812672 Dongbang Dongbang Dongbang,Dongbang Zhen,Tung-pang-shih,Tung-peng-shih,dong bang,dong bang zhen,董浜,董浜镇 31.64694 120.92778 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1812681 Dong’ao Dong'ao Dong'ao,Dong'ao Zhen,Dong’ao,Dong’ao Zhen,dong ao,dong ao zhen,东澳,东澳镇 18.71554 110.39555 P PPLA4 CN 31 0 8 Asia/Chongqing 2012-01-18
-1812701 Dizhang Dizhang Chang-ti,Chang-ti-wan,Dizhang,Dizhang Zhen,Ti-chang,Ti-chang-wan,di zhang,di zhang zhen,底张,底张镇 34.42639 108.77361 P PPLA4 CN 26 0 450 Asia/Chongqing 2012-01-18
-1812702 Dizhai Dizhai Dizhai,Dizhai Zhen,Ti-chai,Ti-chai-chen,di zhai,狄寨 34.2103 109.11506 P PPLA4 CN 26 0 725 Asia/Chongqing 2012-01-18
-1812728 Dingzhou Dingzhou Dingxian,Dingzhou,Dinsyan,T'ang-hsien,Ting,Ting-hsien,Ting-hsien-ch'eng-kuan,Ting-hsien-ch’eng-kuan,Tingchow,T’ang-hsien 38.51306 114.99556 P PPL CN 10 152934 64 Asia/Shanghai 2012-01-18
-1812729 Dingzhai Dingzhai Dingzhai,Dingzhai Xiang,Ting-chai,ding zhai,ding zhai xiang,丁寨,丁寨乡 29.6 109.05 P PPLA4 CN 12 0 763 Asia/Chongqing 2012-01-18
-1812735 Dingying Dingying Dingying,Ting-ying,ding ying,丁营 33.75456 113.60311 P PPLA4 CN 09 0 79 Asia/Shanghai 2012-01-18
-1812737 Dingyan Dingyan Dingyan,Dingyan Zhen,Ting-yen,Ting-yen-chen,ding yan,ding yan zhen,丁堰,丁堰镇 32.36 120.70944 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1812747 Jinchang Jinchang Dingxiang,Dingxiang Xian,Dinsyan',Dinsyan’,Jinchang,Jinchang Zhen,Ting-hsiang,Ting-hsiang-hsien,Ting-hsiang-hsien-ch'eng,Ting-hsiang-hsien-ch’eng,Tingsiang,ding xiang xian,jin chang,jin chang zhen,定襄县,晋昌,晋昌镇 38.49808 112.9236 P PPLA3 CN 24 0 752 Asia/Shanghai 2012-01-18
-1812754 Dingtao Dingtao Dingtao,Ting-t'ao,Ting-t'ao-hsien,Ting-t’ao,Ting-t’ao-hsien 35.06833 115.5625 P PPL CN 25 58206 52 Asia/Shanghai 2012-01-18
-1812755 Dingtang Dingtang Dingtang,Dingtang Zhen,Dingtangzhen,Ting-shan,Ting-t'ang,Ting-t’ang,ding tang,ding tang zhen,定塘,定塘镇 29.23033 121.84217 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1812767 Dingqiao Dingqiao Dingqiao,Dingqiao Zhen,Ting-ch'iao,Ting-ch'iao-chen,Ting-ch’iao,Ting-ch’iao-chen,ding qiao,ding qiao zhen,丁桥,丁桥镇 30.4231 120.63913 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1812768 Dingping Dingping Dingping,Lin'shuy,Lin-shui-hsien,Ling-shui,Linshui,Lin’shuy,ding ping,鼎屏 30.33862 106.927 P PPLA3 CN 32 0 356 Asia/Chongqing 2012-01-18
-1812782 Dingjiayao Dingjiayao Dingjiayao,Dingjiayao Xiang,Ting-chia-yao,ding jia yao,ding jia yao xiang,丁家窑,丁家窑乡 39.99334 112.20962 P PPLA4 CN 24 0 1461 Asia/Chongqing 2012-01-18
-1812788 Dingjiang Dingjiang Dingjiang,Dingjiang Zhen,Ting-chiang,ding jiang,ding jiang zhen,丁江,丁江镇 27.16966 115.30167 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-18
-1812805 Dinghai Dinghai Dinghai,Ting-tiai 26.28472 119.79361 P PPL CN CN 07 7620 120 Asia/Shanghai 2012-01-18
-1812818 Dingcheng Dingcheng Dingcheng,Dingyuan,Ting-ch'eng-chen,Ting-ch’eng-chen,Ting-yuan,Ting-yuan-hsien,Ting-yüan,Ting-yüan-hsien,Yuan-t'ing,Yüan-t’ing,ding cheng,定城 32.51609 117.65952 P PPLA3 CN 01 0 68 Asia/Shanghai 2012-01-18
-1812826 Dingcheng Dingcheng Ding'an,Dingcheng,Dingcheng Zhen,Ding’an,Hsien-kou-shih,Ting-an,Ting-an-chen,Ting-an-hsien,Ting-ch'eng,Ting-ch’eng,Xiangou,ding cheng,ding cheng zhen,xian gou,仙沟,定城,定城镇 19.67995 110.3702 P PPLA4 CN 31 0 41 Asia/Chongqing 2012-01-18
-1812834 Dikou Dikou Dikou,Dikou Zhen,Ti-k'ou,Ti-k’ou,di kou,di kou zhen,迪口,迪口镇 26.75002 118.46501 P PPLA4 CN 07 0 254 Asia/Shanghai 2012-01-18
-1812848 Digang Digang Digang,Digang Zhen,Ti-chiang,Ti-chiang-chen,Ti-kang,Tikangchen,di gang,di gang zhen,荻港,荻港镇 31.12871 118.00579 P PPLA4 CN 01 0 23 Asia/Shanghai 2012-01-18
-1812850 Dietaisi Dietaisi Dietaisi,Dietaisi Xiang,Tieh-t'ai-ssu,Tieh-t’ai-ssu,die tai si,die tai si xiang,迭台寺,迭台寺乡 38.80576 112.20332 P PPLA4 CN 24 0 1674 Asia/Chongqing 2012-01-18
-1812856 Diduo Diduo Diduo,Diduo Zhen,Ti-to,Ti-to-chen,di duo,di duo zhen,荻垛,荻垛镇 32.85601 120.07746 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1812860 Didian Didian Didian,Ti-tien,di dian,底店 34.98488 109.21806 P PPLA4 CN 26 0 825 Asia/Chongqing 2012-01-18
-1812861 Didian Didian Didian,Ti-tien,di dian,底店 34.92716 107.95356 P PPLA4 CN 26 0 1343 Asia/Chongqing 2012-01-18
-1812869 Diaoyumiao Diaoyumiao Diaoyu,Diaoyu Zhen,Diaoyumiao,diao yu,diao yu miao,diao yu zhen,钓鱼,钓鱼庙,钓鱼镇 33.08596 119.97344 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1812879 Diaojingyan Diaojingyan Diaojing,Diaojing Xiang,Diaojingyan,diao jing,diao jing xiang,diao jing yan,吊井,吊井乡,吊井岩 29.06709 109.92817 P PPLA4 CN 11 0 335 Asia/Chongqing 2012-02-02
-1812885 Diaofeng Diaofeng Diaofeng,Diaofeng Xiang,diao feng,diao feng xiang,钓峰,钓峰乡 26.72333 115.92675 P PPLA4 CN 03 0 241 Asia/Shanghai 2012-01-18
-1812896 Dianzhong Dianzhong Dianzhong,Dianzhong Zhen,Tien-chung,dian zhong,dian zhong zhen,甸中,甸中镇 24.405 102.22472 P PPLA4 CN 29 0 1600 Asia/Chongqing 2012-01-18
-1812949 Dianbu Dianbu Dianbu,Fei-tung,Feidong,Tien-fou,Tien-fou-chen,Tien-pu,Tienfow,dian bu,店埠 31.87416 117.45186 P PPLA3 CN 01 0 19 Asia/Shanghai 2012-01-18
-1812955 Dezhou Dezhou Dezhou,Te,Te-chou,Te-chou-shih,Te-hsien,Techow,Teh-hsien,Tehchow,Tehetsouen,de zhou shi,德州市 37.44861 116.2925 P PPL CN 25 379555 27 Asia/Shanghai 2012-01-18
-1812956 Dezhou Dezhou Dechang,Dezhou,Te-ch'ang,Te-ch'ang-hsien,Te-ch’ang,Te-ch’ang-hsien,Tehchang,de zhou,德州 27.40809 102.18001 P PPLA3 CN 32 0 1389 Asia/Chongqing 2012-01-18
-1812961 Deyang Deyang Dehjan,Deyan,Deyang,Te-yang,Te-yang-hsien,Tehyang,Tehyang-hsien,de yang shi,Дэян,德阳市 31.13019 104.38198 P PPLA3 CN 32 152194 501 Asia/Chongqing 2012-01-18
-1812976 Deshan Deshan Dejiao,Deshan,Deshan Zhen,Te-shan,de shan,de shan zhen,德山,德山镇 28.92828 111.71239 P PPLA4 CN 11 0 39 Asia/Shanghai 2012-01-18
-1812981 Deqing Deqing Deqing,Deqing Xian,Te-ch'ing,Te-ch'ing-hsien,Te-ch'ing-hsien-ch'eng,Te-ch’ing,Te-ch’ing-hsien,Te-ch’ing-hsien-ch’eng,Tehtsing,de qing,de qing xian,德清,德清县 30.54485 119.9599 P PPLA3 CN 02 87576 9 Asia/Shanghai 2012-01-18
-1812982 Decheng Decheng Ch'ing-ch'eng,Ch’ing-ch’eng,Decheng,Deqing,Takhing,Taking,Te-ch'ing,Te-ch'ing-chen,Te-ch'ing-hsien,Te-ch’ing,Te-ch’ing-chen,Te-ch’ing-hsien,Te-feng,de cheng,德城 23.14284 111.7841 P PPLA3 CN 30 0 25 Asia/Chongqing 2012-01-18
-1812984 Dengzhuang Dengzhuang Dengzhuang,Dengzhuang Zhen,Teng-chuang,Teng-chuang-chen,deng zhuang,deng zhuang zhen,邓庄,邓庄镇 35.96446 111.52246 P PPLA4 CN 24 0 486 Asia/Chongqing 2012-01-18
-1812988 Penglai Penglai Dengzhou,P'eng-lai-hsien,Pehnlaj,Penglai,P’eng-lai-hsien,Teng-chou,Tengchow,Tengchowfu,Пэнлай 37.80861 120.75083 P PPL CN 25 85279 17 Asia/Shanghai 2012-01-18
-1812990 Dengzhou Dengzhou Dengxian,Dengzhou,Teng,Teng-hsien 32.68222 112.08194 P PPL CN 09 59338 119 Asia/Chongqing 2012-01-18
-1812994 Dengta Dengta Dengta,Dengta Zhen,Teng-t'a,Teng-t'a-hsu,Teng-t’a,Teng-t’a-hsü,deng ta,deng ta zhen,灯塔,灯塔镇 24.0134 114.78838 P PPLA4 CN 30 0 130 Asia/Chongqing 2012-01-18
-1813009 Dengjiapu Dengjiapu Dengjiapu,Teng-chia-p'u,Teng-chia-p’u 26.90444 110.92 P PPL CN CN 11 2750 311 Asia/Chongqing 2012-01-18
-1813016 Dengfeng Dengfeng Dengfeng,Teng-feng,Teng-feng-hsien 34.45528 113.02806 P PPL CN 09 62375 379 Asia/Chongqing 2012-01-18
-1813029 Dehenglong Dehenglong Dehenglong,Dehenglong Xiang,de heng long,de heng long xiang,德恒隆,德恒隆乡 35.9712 102.15195 P PPLA4 CN 06 0 2815 Asia/Chongqing 2012-01-18
-1813039 Debao Chengguanzhen Debao Chengguanzhen Chenan,Chenanfu,Debao,Debao Chengguanzhen,T'ien-pao,T'ien-pao-hsien,T'ien-pao-hsien-ch'eng,Te-pao,T’ien-pao,T’ien-pao-hsien,T’ien-pao-hsien-ch’eng,de bao cheng guan zhen,德保城关镇 23.38471 106.57352 P PPLA3 CN 16 0 688 Asia/Chongqing 2012-01-18
-1813046 Dazuo Dazuo Dazuo,Ta-tso,da zuo,大岞 24.88616 118.96433 P PPL CN 07 9580 19 Asia/Shanghai 2012-01-18
-1813085 Dazhongzhuang Dazhongzhuang Dazhongzhuang,Ta-chung-chuang 39.68083 117.56417 P PPL CN CN 28 1889 1 Asia/Shanghai 2012-01-18
-1813088 Dazhong Dazhong Dafeng,Dazhong,Dazhong Zhen,Dazhongji,Ta-chung-chen,Ta-chung-chi,Ta-feng,da zhong,da zhong zhen,大中,大中镇 33.19973 120.4578 P PPLA3 CN 04 84323 7 Asia/Shanghai 2012-01-18
-1813091 Dazhipo Dazhipo Dazhipo,Dazhipo Zhen,Ta-chih-p'o,Ta-chih-p'o-shih,Ta-chih-p’o,Ta-chih-p’o-shih,da zhi po,da zhi po zhen,大致坡,大致坡镇 19.80316 110.68191 P PPLA4 CN 31 0 28 Asia/Chongqing 2012-01-18
-1813097 Dazhe Dazhe Dazhe,P'ing-ch'eng-chen,Pingyuan,P’ing-ch’eng-chen,Ta-che,Ta-che-hsu,Ta-che-hsü,Ta-chih-chen,da zhe,大柘 24.58037 115.85828 P PPLA3 CN 30 0 185 Asia/Shanghai 2012-01-18
-1813108 Dazhan Dazhan Dazhan,Dazhan Zhen,da zhan,da zhan zhen,大站,大站镇 24.16055 113.43054 P PPLA4 CN 30 0 44 Asia/Chongqing 2012-01-18
-1813144 Dayuan Dayuan Dayuan,T'ai-yuan-chen,Ta-yuan,Ta-yuan-chen,Ta-yüan,Ta-yüan-chen,T’ai-yüan-chen,da yuan,大源 30.00611 119.99556 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1813148 Dayuan Dayuan Dayuan,Dayuan Xiang,da yuan,da yuan xiang,大源,大源乡 26.9402 117.37372 P PPLA4 CN 07 0 335 Asia/Shanghai 2012-01-18
-1813151 Dayuan Dayuan Dayuan,Dayuan Zhen,da yuan,da yuan zhen,大源,大源镇 25.26531 113.27889 P PPLA4 CN 30 0 192 Asia/Chongqing 2012-01-18
-1813165 Dayou Dayou Dayou,Dayou Zhen,Dayu,Li Yu,Li Yü,Ta-yu,da you,da you zhen,大有,大有镇 34.22056 119.88111 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1813168 Dayou Dayou Dayou,Dayou Xiang,Ta-yu,Ta-yu-p'ing,Ta-yu-p’ing,da you,da you xiang,大由,大由乡 26.14504 116.18205 P PPLA4 CN 03 0 208 Asia/Shanghai 2012-01-18
-1813171 Zhangjiajie Zhangjiajie Dayong,Ta-yung,Ta-yung-hsien,Yongding,Yongding Qu,Yung-ting,Yung-ting-chen,Zhangjiajie,Zhangjiajie Shi,yong ding,yong ding qu,zhang jia jie,zhang jia jie shi,张家界,张家界市,永定,永定区 29.12944 110.47833 P PPLA3 CN 11 86083 174 Asia/Chongqing 2012-01-18
-1813184 Daying Daying Daying,Daying Zhen,Ta-ying,Ta-ying-chen,da ying,da ying zhen,大营,大营镇 39.29019 113.75758 P PPLA4 CN 24 0 1161 Asia/Shanghai 2012-01-18
-1813196 Dayin Dayin Dayin,Dayin Zhen,Ta-yin,da yin,da yin zhen,大隐,大隐镇 29.94005 121.37107 P PPLA4 CN 02 0 1 Asia/Shanghai 2012-01-18
-1813206 Daye Daye Daye,Ta-ye-li,Ta-yeh,Ta-yeh-ch'eng,Ta-yeh-ch’eng,Ta-yeh-hsien 30.08333 114.95 P PPL CN 12 61847 25 Asia/Shanghai 2012-01-18
-1813225 Dayanggezhuang Dayanggezhuang 39.81889 117.42361 P PPL CN 28 2300 10 Asia/Harbin 2000-11-21
-1813245 Dayandang Dayandang Dayandang,Dayandang Zhen,Ta-yen-tang,da yan dang,da yan dang zhen,大堰垱,大堰垱镇 29.75 111.63333 P PPLA4 CN 11 0 57 Asia/Chongqing 2012-01-18
-1813246 Daohe Daohe Daohe,Daohe Xiang,Dayanchang,da yan chang,dao he,dao he xiang,大岩场,道河,道河乡 29.54553 111.72809 P PPLA4 CN 11 0 37 Asia/Shanghai 2012-01-18
-1813247 Dayanbei Dayanbei Dayanbei,Dayanbei Xiang,Ta-yen-pei,Ta-yen-pei-chen,da yan bei,da yan bei xiang,大严备,大严备乡 39.15553 112.02191 P PPLA4 CN 24 0 1542 Asia/Chongqing 2012-01-18
-1813251 Dayan Dayan Dayan,Dayan Xiang,Ta-yen,da yan,da yan xiang,大堰,大堰乡 30.33932 111.08409 P PPLA4 CN 12 0 615 Asia/Chongqing 2012-01-18
-1813252 Dayan Dayan Dayan,Dayan Zhen,Ta-yen,Ta-yen-shih,da yan,da yan zhen,大堰,大堰镇 29.50767 121.29953 P PPLA4 CN 02 0 252 Asia/Shanghai 2012-01-18
-1813253 Dayan Dayan Le Giang,Li-chiang,Li-chiang-fu,Li-chiang-hsien,Li-chiang-na-hsi-tsu-tzu-chih-hsien,Liczjan,Lijiang,Lijiang City,Likiang-hsien,Lệ Giang,Ta-yen-chen,li jiang,li jiang shi,Лицзян,丽江市,麗江 26.86879 100.22072 P PPL CN CN 29 1137600 2397 Asia/Chongqing 2008-07-12
-1813261 Daxu Daxu Daxu,Daxu Zhen,Ta-hsu,Ta-hsu-chieh-shih,Ta-hsü,Ta-hsü-chieh-shih,da xu,da xu zhen,大徐,大徐镇 29.53167 121.87972 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-18
-1813280 Daxinzhuang Daxinzhuang Daxingzhuang,Daxinzhuang,Daxinzhuang Zhen,Ta-hsin-chuang,Ta-hsing-chuang,da xin zhuang,da xin zhuang zhen,大辛庄,大辛庄镇 36.23333 113.08333 P PPLA4 CN 24 0 922 Asia/Shanghai 2012-01-18
-1813285 Daxing Daxing Daxing,Daxing Xiang,Daxing Zhen,Daxingzhen,Ta-hsing,Ta-hsing-chen,Ta-hsing-ts'un,Ta-hsing-ts’un,da xing,da xing zhen,大兴,大兴镇 31.75615 121.67607 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1813299 Daxing Daxing Daxing,Lang-ch'u,Lang-ch’ü,Langku,Langkü,Ning-lang-hsien,Ning-lang-i-tsu-tzu-chih-hsien,Ning-lang-she-chih-chu,Ning-lang-she-chih-chü,Ninglang,da xing,大兴 27.26369 100.86387 P PPLA3 CN 29 0 2430 Asia/Chongqing 2012-01-18
-1813303 Xindian Xindian Daxindian,Ta-hsin-tien,Xindian,Xindian Zhen,xin dian,xin dian zhen,新店,新店镇 33.61849 113.85046 P PPLA4 CN 09 0 68 Asia/Shanghai 2012-01-18
-1813316 Daxi Daxi Daxi,Daxi Xiang,Daxidu,Ta-hsi-tu,da xi,da xi xiang,大溪,大溪乡 28.58819 116.69827 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-18
-1813317 Dongshan Dongshan Daxibian,Dongshan,da xi bian,dong shan,东山,大溪边 29.30278 118.54333 P PPLA4 CN 02 0 219 Asia/Shanghai 2012-01-18
-1813325 Dazhou Dazhou Dasyan',Dasyan’,Daxian,Dazhou,Sui-ting,Sui-ting-fu,Suting,Suydin,Ta,Ta-hsien,da zhou,达州 31.21592 107.50092 P PPLA3 CN 32 130749 309 Asia/Chongqing 2012-01-18
-1813344 Dawukou Dawukou Dawukou,Shih-tsui-shan,Shizuishan,Ta-wei-k'ou,Ta-wei-k’ou,Ta-wu-k'ou,Ta-wu-k’ou 39.04194 106.39583 P PPL CN 21 131880 1119 Asia/Chongqing 2012-01-18
-1813383 Dawangtai Dawangtai Dawangtai,Ta-wang-t'ai,Ta-wang-t’ai,Wang-chia-t'ai,Wang-chia-t’ai,Wang-t'ai-tzu,Wang-t’ai-tzu 39.27028 117.47861 P PPL CN CN 28 5195 4 Asia/Shanghai 2012-01-18
-1813403 Wangcunzhen Wangcunzhen Dawang,Ta-wang,Ta-wang-ts'un,Ta-wang-ts’un,Wangcun Zhen,Wangcunzhen,wang cun,wang cun zhen,王村,王村镇 34.37639 108.18167 P PPLA4 CN 26 0 578 Asia/Chongqing 2012-01-18
-1813404 Dawang Dawang Dawang,Ta-wang,Ta-wang-chia,da wang,大王 34.30287 109.47464 P PPLA4 CN 26 0 977 Asia/Chongqing 2012-01-18
-1813406 Dawang Dawang Dawang,Dawang Zhen,Ta-wang,Ta-wang-chen,da wang,da wang zhen,大王,大王镇 34.20303 108.65139 P PPLA4 CN 26 0 392 Asia/Chongqing 2012-01-18
-1813413 Dawan Dawan Dawan,Dawan Zhen,Ta-wan,da wan,da wan zhen,大湾,大湾镇 24.33998 112.94804 P PPLA4 CN 30 0 49 Asia/Chongqing 2012-01-18
-1813432 Datuan Datuan Datuan,Ta-t'uan,Ta-t'uan-chen,Ta-t’uan,Ta-t’uan-chen,da tuan,大团 30.97381 121.73356 P PPLA4 CN 23 0 10 Asia/Shanghai 2012-01-18
-1813451 Datong Datong Datong,Datun,Ta-t'ung,Ta-t’ung,Датун 32.62082 117.06318 P PPL CN 01 61085 39 Asia/Shanghai 2012-01-18
-1813463 Datianzhuang Datianzhuang 39.2725 117.75361 P PPL CN 28 2254 1 Asia/Shanghai 2000-11-21
-1813469 Datian Datian Datian,Datian Xiang,da tian,da tian xiang,大田,大田乡 26.92864 116.9999 P PPLA4 CN 07 0 332 Asia/Shanghai 2012-01-18
-1813471 Datian Datian Datian,Datian Xiang,Ta-t'ien,Ta-t'ien-shih,Ta-t’ien,Ta-t’ien-shih,da tian,da tian xiang,大田,大田乡 25.85592 115.12788 P PPLA4 CN 03 0 107 Asia/Shanghai 2012-01-18
-1813479 Datangzhuang Datangzhuang Datangzhuang,Ta-t'ang-chuang,Ta-t’ang-chuang 39.39944 117.43417 P PPL CN CN 28 2294 4 Asia/Shanghai 2012-01-18
-1813482 Datangping Datangping Datang,Datangping,Datangping Xiang,da tang ping,da tang ping xiang,大塘坪,大塘坪乡 28.99422 115.90226 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-18
-1813486 Datang Datang Datang,Datang Zhen,da tang,da tang zhen,大塘,大塘镇 24.76969 113.69165 P PPLA4 CN 30 0 118 Asia/Shanghai 2012-02-28
-1813514 Dasizhuang Dasizhuang Dasi,Dasi Zhen,Dasizhuang,Ta-ssu,Ta-ssu-chuang,da si,da si zhen,da si zhuang,大泗,大泗庄,大泗镇 32.35811 119.96607 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1813517 Dasi Dasi 39.00917 117.22278 P PPL CN 28 1167 4 Asia/Shanghai 2001-02-09
-1813543 Shiqiao Shiqiao Dashiqiao,Shiqiao,Shiqiao Zhen,shi qiao,shi qiao zhen,石桥,石桥镇 33.92064 113.15591 P PPLA4 CN 09 0 118 Asia/Chongqing 2012-01-18
-1813567 Dashentang Dashentang 39.21722 117.9525 P PPL CN 28 2362 3 Asia/Shanghai 2001-08-07
-1813569 Dashengqiao Dashengqiao Dasheng,Dasheng Zhen,Dashengqiao,Ta-sheng-ch'iao,Ta-sheng-ch’iao,da sheng,da sheng qiao,da sheng zhen,大生,大生桥,大生镇 32.13884 119.9859 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1813614 Darong Darong Darong,Ta-jung-tung 25.78194 108.86389 P PPL CN CN 18 1171 212 Asia/Chongqing 2012-01-18
-1813617 Darenzhuang Darenzhuang Darenzhuang,Darenzhuang Xiang,Ta-jen-chuang,da ren zhuang,da ren zhuang xiang,大仁庄,大仁庄乡 39.68411 113.89001 P PPLA4 CN 24 0 1607 Asia/Shanghai 2012-01-18
-1813618 Darenzhuang Darenzhuang 39.03889 117.25194 P PPL CN 28 3950 5 Asia/Shanghai 2000-11-21
-1813629 Daqi Daqi Daqi,Daqitou,Daqizhen,Ta-ch'i,Ta-ch'i-chen,Ta-ch'i-t'ou,Ta-ch’i,Ta-ch’i-chen,Ta-ch’i-t’ou,da qi,da qi zhen,大碶,大碶镇 29.8921 121.79598 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1813647 Qiaobian Qiaobian Daqiaobian,Qiaobian,Qiaobian Zhen,Ta-ch'iao-pien,Ta-ch’iao-pien,qiao bian,qiao bian zhen,桥边,桥边镇 30.6823 111.18664 P PPLA4 CN 12 0 68 Asia/Chongqing 2012-01-18
-1813649 Daqiao Daqiao Daqiao,da qiao,大桥 33.74631 105.27866 P PPLA4 CN 15 0 1119 Asia/Chongqing 2012-01-18
-1813650 Daqiao Daqiao Ch'iao-k'ou,Ch’iao-k’ou,Daqiao,Daqiao Zhen,Ta-ch'iao,Ta-ch'iao-k'ou,Ta-ch’iao,Ta-ch’iao-k’ou,da qiao,da qiao zhen,大桥,大桥镇 32.99331 120.63596 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1813655 Daqiao Daqiao Daqiao,Daqiao Jiedao,Ta-ch'iao,Ta-ch'iao-chen,Ta-ch’iao,Ta-ch’iao-chen,da qiao,da qiao jie dao,大桥,大桥街道 31.46247 118.40944 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-18
-1813658 Fenghua Shi Fenghua Shi Chung-cheng,Daqiao,Daqiaozhen,Feng-hua-hsien,Fenghua,Fenghua Shi,Fenghwa,Fenghwahsien,Ta-ch'iao,Ta-ch’iao,feng hua,feng hua shi,奉化,奉化市 29.65628 121.4064 P PPLA3 CN 02 76653 17 Asia/Shanghai 2012-01-18
-1813661 Daqiao Daqiao Daqiao,Daqiao Zhen,Ta-ch'iao,Ta-ch’iao,da qiao,da qiao zhen,大桥,大桥镇 28.74305 118.40618 P PPLA4 CN 02 0 134 Asia/Shanghai 2012-01-18
-1813668 Daqiao Daqiao Daqiao,Daqiao Zhen,Ta-ch'iao,Ta-ch’iao,da qiao,da qiao zhen,大桥,大桥镇 26.615 118.90639 P PPLA4 CN 07 4000 430 Asia/Shanghai 2012-01-18
-1813669 Daqiao Daqiao Daqiao,Daqiao Zhen,da qiao,da qiao zhen,大桥,大桥镇 25.35216 115.14795 P PPLA4 CN 03 0 172 Asia/Shanghai 2012-01-18
-1813670 Daqiao Daqiao Daqiao,Daqiao Zhen,Ta-ch'iao,Ta-ch’iao,da qiao,da qiao zhen,大桥,大桥镇 24.98775 113.13333 P PPLA4 CN 30 0 515 Asia/Shanghai 2012-01-18
-1813676 Daqiang Daqiang Daqiang,Ta-ch'iang,Ta-ch’iang,da qiang,大墙 34.45028 108.33833 P PPLA4 CN 26 0 580 Asia/Chongqing 2012-01-18
-1813680 Daqi Daqi Daqi,Daqi Xiang,da qi,da qi xiang,大崎,大崎乡 30.85325 115.19113 P PPLA4 CN 12 0 96 Asia/Shanghai 2012-01-18
-1813683 Dabaozi Dabaozi Dabaozi,Dabaozi Xiang,Dabuzi,Dapuzi,Ta-p'u-tzu,Ta-pao-tzu,Ta-p’u-tzu 26.69556 109.44778 P PPL CN CN 11 1440 404 Asia/Chongqing 2012-01-18
-1813713 Daping Daping Daping,Daping Zhen,Ta-p'ing,Ta-p’ing,da ping,da ping zhen,大坪,大坪镇 29.01297 110.4926 P PPLA4 CN 11 0 526 Asia/Chongqing 2012-01-18
-1813729 Dapeng Dapeng Dapeng,Dapeng Jiedao,Ta-peng-so-ch'eng,Ta-peng-so-ch’eng,Taipang,Taipung,Taipungshosheng,da peng,大鹏 22.59701 114.47091 P PPLA4 CN 30 0 24 Asia/Chongqing 2012-01-18
-1813734 Xuetian Xuetian Dapan,Dapan Zhen,Xuetian,da pan zhen,xue tian,大盘镇,学田 29.00453 120.562 P PPLA4 CN 02 0 525 Asia/Shanghai 2012-01-18
-1813746 Daoxian Daoxian Daoxian,Daoxian Zhen,Tao-hsien,Tao-hsien-chen,Tao-yen-chen,dao xian,到贤 34.86007 109.31576 P PPLA4 CN 26 0 488 Asia/Chongqing 2012-01-18
-1813762 Daoshi Daoshi Daoshi,Daoshi Zhen,Daoshiwu,Niao-shih-wu,Tao-shih-wu,dao shi,岛石 30.29222 118.94833 P PPLA4 CN 02 0 479 Asia/Shanghai 2012-01-18
-1813775 Huaxian Huaxian Daokou,Hua-hsien,Huaxian,Tao-k'ou,Tao-k'ou-chen,Tao-k’ou,Tao-k’ou-chen,Taokow 35.56389 114.50583 P PPL CN 09 56637 64 Asia/Shanghai 2012-01-18
-1813776 Daojiao Daojiao Daojiao,Daojiao Zhen,dao jiao,道滘 23 113.65944 P PPLA4 CN 30 0 2 Asia/Chongqing 2012-01-18
-1813777 Daojiang Daojiang Daojiang,Daojiangzhen,Daoxian,Tao,Tao-chiang,Tao-chiang-chen,Tao-chou,Tao-hsien,dao jiang,道江 25.49603 111.55146 P PPLA3 CN 11 0 182 Asia/Chongqing 2012-01-18
-1813783 Qushan Qushan Daodou,Daodou'ao,Daodouzhen,Daodou’ao,Qushan,Qushan Zhen,Ta-ch'u,Ta-ch’ü,Tao-tou-ao,dao dou,dao dou zhen,qu shan,qu shan zhen,岛斗,岛斗镇,衢山,衢山镇 30.45005 122.28427 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1813803 Danyang Danyang Danyang,Tan-yang 26.35222 119.48139 P PPL CN CN 07 1990 92 Asia/Shanghai 2012-01-18
-1813812 Danshui Danshui Dan'shuem,Danshui,Danshui Jiedao,Huiyang Qu,Huiyangshi,Tamshui,Tamshuihu,Tamshuihü,Tan-shui,Tanshuihu,dan shui,hui yang qu,Даньшуем,惠阳区,淡水 22.7984 114.46716 P PPLA3 CN 30 126701 27 Asia/Chongqing 2012-01-18
-1813828 Danjiangkou Danjiangkou Chun-hsien,Chün-hsien,Dan'czjankou,Danjiangkou,Junxian,Junxian Danjiang,Sha-t'o-ying,Sha-t’o-ying,Shatoin,Tan-chiang,Tan-chiang-k'ou,Tan-chiang-k’ou,Даньцзянкоу 32.54278 111.50861 P PPL CN 12 92008 108 Asia/Chongqing 2012-01-18
-1813839 Xinshui Xinshui Danin,Daning,Daning Xian,Hsi-ning Hsien,Ta-ning,Ta-ning-hsien,Ta-ning-hsien-ch'eng,Ta-ning-hsien-ch’eng,Xinshui,Xinshui Zhen,da ning xian,xin shui,xin shui zhen,大宁县,昕水,昕水镇 36.47839 110.75522 P PPLA3 CN 24 0 846 Asia/Chongqing 2012-01-18
-1813851 Gushu Gushu Dangtu,Gushu,Taiping,Taiping-fu,Tang-t'u,Tang-t'u-hsien,Tang-t’u,Tang-t’u-hsien,gu shu,姑熟 31.55978 118.48289 P PPLA3 CN 01 60335 12 Asia/Shanghai 2012-01-18
-1813855 Dangcheng Dangcheng Dangcheng,Dangshan,Dongshan,Tang-shan,Tang-shan-hsien,dang cheng,砀城 34.42787 116.37657 P PPLA3 CN 01 0 46 Asia/Shanghai 2012-01-18
-1813859 Dangmu Dangmu Dangmu,Dangmu Zhen,Tang-mu,Tang-mu-chen,dang mu,党睦 34.81418 109.62101 P PPLA4 CN 26 0 377 Asia/Chongqing 2012-01-18
-1813860 Dangliuzhuang Dangliuzhuang Dangliuzhuang,Dangliuzhuang Zhen,Tang-liu-chuang,dang liu zhuang,dang liu zhuang zhen,党留庄,党留庄镇 39.98897 113.4222 P PPLA4 CN 24 0 1030 Asia/Shanghai 2012-01-18
-1813864 Dangjiaxian Dangjiaxian Dangjiaxian,dang jia xian,党家岘 35.52992 105.3017 P PPLA4 CN 15 0 2143 Asia/Chongqing 2012-01-18
-1813875 Dangchang Chengguanzhen Dangchang Chengguanzhen Chengguan Zhen,Danchanchzhen',Danchanchzhen’,Dangchang,Dangchang Chengguanzhen,Dangchang Xian,Tanchang,Tang-ch'ang,Tang-ch'ang-chen,Tang-ch'ang-pao,Tang-ch’ang,Tang-ch’ang-chen,Tang-ch’ang-pao,Tang-tsch'ang-tschon,Tang-tsch’ang-tschön,Yen-ch'ang-chen,Yen-ch’ang-chen,cheng guan zhen,dang chang,dang chang cheng guan zhen,dang chang xian,城关镇,宕昌,宕昌县,宕昌城关镇 34.04462 104.39464 P PPLA3 CN 15 0 1722 Asia/Chongqing 2012-01-18
-1813884 Danfeng Danfeng Danfeng,Shih-tsung,Shih-tsung-ch'eng,Shih-tsung-ch’eng,Shih-tsung-hsien,Shizong,dan feng,丹凤 24.83054 104.0082 P PPLA3 CN 29 0 1837 Asia/Chongqing 2012-01-18
-1813887 Dandian Dandian Dadian Zhen,Dandian,T'au-tien,T’au-tien,dan dian,dan dian zhen,但店,但店镇 30.76787 115.17776 P PPLA4 CN 12 0 49 Asia/Shanghai 2012-01-18
-1813889 Dancun Dancun Dancun,Dancun Zhen,Tan-ts'un,Tan-ts'un-chen,Tan-ts’un,Tan-ts’un-chen,dan cun,淡村 34.71947 109.05352 P PPLA4 CN 26 0 504 Asia/Chongqing 2012-01-18
-1813892 Dancheng Dancheng Dancheng,Tan-ch'eng,Tan-ch'eng-chi,Tan-ch’eng,Tan-ch’eng-chi 33.63333 115.18333 P PPL CN 09 65411 43 Asia/Shanghai 2012-01-18
-1813893 Danxi Danxi Dancheng,Danxi,Danxi Jiedao,Hsiang-shan,Hsiang-shan-hsien,Siangshan,Siangshanhsien,Tan-ch'eng,Tan-ch'eng-chen,Tan-ch’eng,Tan-ch’eng-chen,Xiangshan,dan xi,dan xi jie dao,xiang shan,丹西,丹西街道,象山 29.47472 121.86556 P PPLA3 CN 02 0 10 Asia/Shanghai 2012-01-18
-1813933 Damiao Damiao Damiao,Damiao Xiang,Ta-miao,da miao,da miao xiang,大庙,大庙乡 28.07651 114.88413 P PPLA4 CN 03 0 131 Asia/Shanghai 2012-01-18
-1813965 Damai Damai Damai,Damai Xiang,da mai,da mai xiang,达麦,达麦乡 35.20006 102.66414 P PPLA4 CN 15 0 2787 Asia/Chongqing 2012-01-18
-1813970 Dama Dama Dama,Dama Zhen,Ta-ma,da ma,da ma zhen,大麻,大麻镇 30.50233 120.34111 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1813981 Daluo Daluo Daluo,Daluo Zhen,da luo,da luo zhen,大洛,大洛镇 26.25099 117.78939 P PPLA4 CN 07 0 401 Asia/Shanghai 2012-01-18
-1813985 Dalun Dalun Dalun,Dalun Zhen,Dalunzhuang,Ta-lun,Ta-lun-chuang,da lun,da lun zhen,大埨,大埨镇 32.44376 120.24192 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1813995 Dalubian Dalubian Dalubian,Dalubian Zhen,da lu bian,da lu bian zhen,大路边,大路边镇 25.04144 112.62911 P PPLA4 CN 30 0 163 Asia/Chongqing 2012-01-18
-1814005 Dalu Dalu Dalu,Dalu Zhen,da lu,da lu zhen,大路,大路镇 19.3895 110.46527 P PPLA4 CN 31 0 54 Asia/Chongqing 2012-01-18
-1814007 Dalongzhan Dalongzhan Dalongzhan,Dalongzhan Zhen,da long zhan,da long zhan zhen,大龙站,大龙站镇 29.20472 111.75298 P PPLA4 CN 11 0 60 Asia/Shanghai 2012-01-18
-1814011 Dalong Dalong Dalong,Dalongkou,Ta-lung,Ta-lung-k'ou,Ta-lung-k’ou,da long,大陇 31.43333 118.71289 P PPLA4 CN 01 0 9 Asia/Shanghai 2012-01-18
-1814033 Daliu Daliu Daliu,Daliu Xiang,Daliudian,Ta-liu-tien,da liu,da liu xiang,大刘,大刘乡 33.50364 113.90295 P PPLA4 CN 09 0 69 Asia/Shanghai 2012-01-18
-1814042 Dalinhe Dalinhe Dalinhe,Dalinhe Xiang,Lin-ho-ts'un,Lin-ho-ts’un,Ta-lin-ho,da lin he,da lin he xiang,大临河,大临河乡 39.55556 113.36111 P PPLA4 CN 24 0 1036 Asia/Shanghai 2012-01-18
-1814056 Dalikou Dalikou Dali Zhen,Dalikou,Ta-li,Ta-li-k'ou,Ta-li-k’ou,da li kou,da li zhen,大历口,大历镇 26.88943 118.00246 P PPLA4 CN 07 0 183 Asia/Shanghai 2012-01-18
-1814078 Daliang Daliang Daliang,Daljan,Ta-hang-chen,Ta-liang,Ta-liang-chen,Далян 39.53944 117.095 P PPL CN CN 28 2140 8 Asia/Shanghai 2012-01-18
-1814082 Daliang Daliang Daliang,Daljan,P'an-shun,P’an-shun,Schuntak,Shun-te,Shun-te-hsien,Shunde,Shuntak,Ta-liang,Ta-liang-chen,da liang,shun de qu,Далян,大良,顺德区 22.85042 113.24701 P PPL CN 30 210411 7 Asia/Chongqing 2012-01-18
-1814087 Dalian Dalian Dairen,Dal'niy,Dalian,Dalian Shi,Daljan',Dalny,Dal’niy,Lu-ta,Lu-ta-shih,Luda,Lü-ta,Lü-ta-shih,Lüda,Ta-lien,Ta-lien-shih,da lian,da lian shi,Далянь,大连,大连市 38.91222 121.60222 P PPL CN 19 2035307 33 Asia/Shanghai 2012-01-18
-1814092 Dali Dali Dali,T'ung-chou,Ta-li,Ta-li-hsien,Tunchzhou,Tungchow,Tungchowfu,T’ung-chou,da li,大荔 34.79586 109.93895 P PPLA3 CN 26 0 351 Asia/Chongqing 2012-01-18
-1814093 Dali Dali Chung-ho-chen,Dali,Ta-ho,Ta-li,Talifu,da li,da li shi,Дали,大理,大理市 25.7 100.18333 P PPL CN 29 134040 1974 Asia/Chongqing 2012-01-18
-1814104 Dalang Dalang Dalang,Dalang Zhen,da lang,da lang zhen,大崀,大崀镇 24.45445 112.49614 P PPLA4 CN 30 0 351 Asia/Chongqing 2012-01-18
-1814105 Dalang Dalang Dalang,Dalang Zhen,Ta-lang,Ta-lang-hsu,Ta-lang-hsü,da lang,大朗 22.94741 113.93188 P PPLA4 CN 30 0 26 Asia/Chongqing 2012-01-18
-1814108 Dalan Dalan Dalan,Dalan Zhen,Ta-lan,da lan,大岚 23.28174 114.71567 P PPLA4 CN 30 0 61 Asia/Chongqing 2012-01-18
-1814123 Dakoutun Dakoutun Dakoutun,Ta-k'ou-t'un,Ta-k’ou-t’un 39.58333 117.22889 P PPL CN CN 28 5814 10 Asia/Shanghai 2012-01-18
-1814139 Dajishan Dajishan Dajishan,Dajishan Zhen,Ta-chi-shan,da ji shan,da ji shan zhen,大吉山,大吉山镇 24.60521 114.3614 P PPLA4 CN 03 0 417 Asia/Chongqing 2012-01-18
-1814152 Dajing Dajing Dajing,Dajing Zhen,Ta-ching,Ta-ching-chen,da jing,大荆 34.05834 109.86425 P PPLA4 CN 26 0 901 Asia/Chongqing 2012-01-18
-1814169 Dajie Dajie Chiang-ch'uan,Chiang-ch’uan,Dajie,Dajie Zhen,Jiangchuan,Jiangchuan Xian,Ta-chieh-chen,Ta-chieh-tzu,da jie,da jie zhen,jiang chuan,jiang chuan xian,大街,大街镇,江川,江川县 24.29623 102.75064 P PPLA3 CN 29 0 1731 Asia/Chongqing 2012-01-18
-1814195 Dajiang Dajiang Dajiang,Dajiang Zhen,Ta-chiang,da jiang,da jiang zhen,大江,大江镇 22.37708 112.80007 P PPLA4 CN 30 0 5 Asia/Chongqing 2012-01-18
-1814198 Dajianchang Dajianchang 39.47778 117.08306 P PPL CN 28 1098 9 Asia/Shanghai 2000-11-21
-1814201 Dajia Dajia Dajia,Dajia Xiang,da jia,da jia xiang,大甲,大甲乡 26.63909 119.27541 P PPLA4 CN 07 0 648 Asia/Shanghai 2012-01-18
-1814204 Daji Daji Daji,Daji Jiedao,da ji,da ji jie dao,大集,大集街道 30.50887 114.04281 P PPLA4 CN 12 0 35 Asia/Shanghai 2012-01-18
-1814208 Daiyue Daiyue Daiyue,Daiyue Zhen,Dayyuechzhen,Shan-yin-hsien,Shanyin,Shanyin Xian,Tai-yo,Tai-yueh,Tai-yueh-chen,Tai-yüeh,Tai-yüeh-chen,Taiyoh,dai yue,dai yue zhen,shan yin xian,山阴县,岱岳,岱岳镇 39.52038 112.81684 P PPLA3 CN 24 0 1054 Asia/Shanghai 2012-01-18
-1814213 Shangguan Shangguan Dai Xian,Daixian,Daysyan',Daysyan’,Shangguan,Shangguan Zhen,Tai,Tai-ch'eng,Tai-ch’eng,Tai-hsien,Tai-hsien-ch'eng,Tai-hsien-ch’eng,Taichow,dai xian,shang guan,shang guan zhen,上馆,上馆镇,代县 39.06901 112.92913 P PPLA3 CN 24 0 878 Asia/Shanghai 2012-01-18
-1814216 Daixi Daixi Daixi,Daixi Zhen,Tai-ch'i,Tai-ch’i,Tai-hsi,dai xi,dai xi zhen,埭溪,埭溪镇 30.6629 120.00999 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-18
-1814217 Daixi Daixi Daixi,Tai-hsi,Yang-k'ou,Yang-k’ou 26.8125 119.11417 P PPL CN CN 07 1290 577 Asia/Shanghai 2012-01-18
-1814232 Gaoting Gaoting Daishan,Gaoting,Gaoting Zhen,gao ting,gao ting zhen,高亭,高亭镇 30.24588 122.19895 P PPLA3 CN 02 0 6 Asia/Shanghai 2012-01-18
-1814236 Dainan Dainan Dainan,Dainan Zhen,Tai-chia-tse,Tai-nan,dai nan,dai nan zhen,戴南,戴南镇 32.71703 120.12906 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1814246 Daijiaba Daijiaba Daijiaba,Daijiaba Zhen,Tai-chia-pa,dai jia ba,dai jia ba zhen,代家坝,代家坝镇 33.0097 106.18352 P PPLA4 CN 26 0 822 Asia/Chongqing 2012-01-18
-1814252 Daifang Daifang Daifang,Daifang Zhen,Tai-fang,Tai-fang-hsu,Tai-fang-hsü,Tai-fang-ts'un,Tai-fang-ts’un,dai fang,dai fang zhen,戴坊,戴坊镇 27.55146 115.70604 P PPLA4 CN 03 0 94 Asia/Shanghai 2012-01-18
-1814253 Duifang Duifang Daifang,Duifang,Duifang Xiang,dui fang,dui fang xiang,对坊,对坊乡 26.21261 115.97864 P PPLA4 CN 03 0 199 Asia/Shanghai 2012-01-18
-1814270 Dahuangwei Dahuangwei Dahuangwei,Dahuangwei Xiang,Huang-wei-ts'un,Huang-wei-ts’un,Ta-huang-wei,da huang wei,da huang wei xiang,大黄巍,大黄巍乡 39.53126 113.07186 P PPLA4 CN 24 0 1000 Asia/Shanghai 2012-01-18
-1814273 Dahuangpu Dahuangpu Dahuangbu,Dahuangpu,Ta-huang-Pao,Ta-huang-p'u,Ta-huang-p’u 39.44111 117.27778 P PPL CN CN 28 1254 7 Asia/Shanghai 2012-01-18
-1814277 Dahuang Dahuang Dahuang,Dahuang Xiang,da huang,da huang xiang,大黄,大黄乡 28.78333 116.93333 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-18
-1814282 Dahua Dahua Dahua,Ta-hua,Ta-hua-hsiang,Ta-hua-hsu,Ta-hua-hsü,da hua,大化 23.76798 107.9841 P PPLA3 CN 16 0 230 Asia/Chongqing 2012-01-18
-1814287 Dahu Dahu Dahu,Dahu Zhen,Ta-hu,da hu,da hu zhen,大湖,大湖镇 26.04971 117.32358 P PPLA4 CN 07 0 214 Asia/Shanghai 2012-01-18
-1814288 Dahu Dahu Dahu,Dahu Zhen,da hu,da hu zhen,大湖,大湖镇 24.2443 114.82434 P PPLA4 CN 30 0 143 Asia/Chongqing 2012-01-18
-1814314 Daheng Daheng Daheng,Daheng Zhen,Ta-heng,da heng,da heng zhen,大横,大横镇 26.76678 118.25773 P PPLA4 CN 07 0 110 Asia/Shanghai 2012-01-18
-1814321 Dahe Dahe Dahe,Dahe Zhen,Dahekou,Ta-ho-k'ou,Ta-ho-k’ou,da he,da he zhen,大河,大河镇 32.19572 106.93237 P PPLA4 CN 32 1000 533 Asia/Chongqing 2012-01-18
-1814324 Dahejia Dahejia Dahejia,Dahejia Zhen,Dakhztszya,Ta-ho-chia,Ta-hz-chia,da he jia,da he jia zhen,大河家,大河家镇 35.83417 102.75756 P PPLA4 CN 15 0 1802 Asia/Chongqing 2012-01-18
-1814339 Dahe’an Dahe'an Dahe'an,Dahe'an Zhen,Dahe’an,Dahe’an Zhen,da he an,da he an zhen,大河岸,大河岸镇 30.84806 115.4818 P PPLA4 CN 12 0 115 Asia/Shanghai 2012-01-18
-1814345 Ziyuan Ziyuan Dahe,Ta-fou-t'ou,Ta-fou-t’ou,Tzu-yuan,Tzu-yüan,Ziyuan,zi yuan,资源 26.03667 110.64056 P PPLA3 CN 16 0 427 Asia/Chongqing 2012-01-18
-1814348 Dahe Dahe Dahe,Dahe Xiang,Ta-ho,da he,da he xiang,大禾,大禾乡 25.40063 116.10136 P PPLA4 CN 07 0 327 Asia/Shanghai 2012-01-18
-1814356 Dahao Dahao Dahao,Dahao Jiedao,da hao,达濠 23.28733 116.71609 P PPLA4 CN 30 0 11 Asia/Shanghai 2012-01-18
-1814367 Daguo Daguo Daguo,Daguo Xiang,da guo,da guo xiang,大郭,大郭乡 33.79077 113.7958 P PPLA4 CN 09 0 68 Asia/Shanghai 2012-01-18
-1814392 Dagou Dagou Dagou,da gou,大沟 35.97986 105.23253 P PPLA4 CN 15 0 1883 Asia/Chongqing 2012-01-18
-1814402 Dazhasi Dazhasi Dagcagoin,Dazhasi,Jo-erh-kai,Ta-cha-ssu,Ta-cha-szu,Ta-ko-cha-ssu,Zoige,Zoigê,da zha si,达扎寺 33.57795 102.96412 P PPLA3 CN 32 0 3446 Asia/Chongqing 2012-01-18
-1814414 Dagang Dagang Dagang,Ta-kang,Ta-kang-hsu,Ta-kang-hsü,da gang,da gang zhen,大岗,大岗镇 28.16754 116.14686 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-18
-1814417 Dagan Dagan Dagan,Dagan Zhen,Ta-kan,da gan,da gan zhen,大干,大干镇 26.9316 117.73281 P PPLA4 CN 07 0 149 Asia/Shanghai 2012-01-18
-1814435 Dafeng Dafeng Dafeng,Shang-lin-hsien,Shang-liu,Shanglin,Shangling,da feng,大丰 23.45171 108.58811 P PPLA3 CN 16 0 125 Asia/Chongqing 2012-01-18
-1814447 Dafan Dafan Dafan,Dafan Zhen,Ta-fan,Ta-fan-chen,da fan,da fan zhen,大畈,大畈镇 29.65883 114.66437 P PPLA4 CN 12 0 72 Asia/Shanghai 2012-01-18
-1814454 Daduo Daduo Daduo,Daduo Zhen,Ta-to,Ta-to-chen,da duo,da duo zhen,大垛,大垛镇 32.89706 120.03407 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1814456 Dadunqiu Dadunqiu Dadunqiu,Ta-tun-ch'iu,Ta-tun-ch’iu 39.40611 117.03306 P PPL CN CN 28 2279 5 Asia/Shanghai 2012-01-18
-1814464 Daduan Daduan Daduan,Daduan Zhen,Tu-tuan,da duan,da duan zhen,大塅,大塅镇 28.65834 114.55427 P PPLA4 CN 03 0 207 Asia/Shanghai 2012-01-18
-1814471 Dadong Dadong Dadong,Dadong Xiang,da dong,da dong xiang,大洞,大洞乡 29.48827 114.9496 P PPLA4 CN 03 0 110 Asia/Shanghai 2012-01-18
-1814483 Dadian Dadian Dadian,Ta-tien,da dian,大店 34.775 108.60944 P PPLA4 CN 26 0 827 Asia/Chongqing 2012-01-18
-1814492 Dadeng Dadeng Dadeng,da deng,大嶝 24.54386 118.32753 P PPL CN 07 2520 16 Asia/Shanghai 2012-01-18
-1814503 Daciyao Daciyao Daciyao,Daciyao Zhen,Ta-tz'u-yao,Ta-tz’u-yao,da ci yao,da ci yao zhen,大磁窑,大磁窑镇 39.63784 113.7291 P PPLA4 CN 24 0 1274 Asia/Shanghai 2012-01-18
-1814514 Yajin Yajin Dachi,Dachi Zhen,Ta-ch'ih,Ta-ch’ih,Yajin,da chi,da chi zhen,ya jin,大池,大池镇,雅金 25.12601 116.79433 P PPLA4 CN 07 0 499 Asia/Shanghai 2012-01-18
-1814524 Dacheng Dacheng Dacheng,Dacheng Zhen,T'ien-ch'eng-chen,Ta-ch'eng,Ta-ch'eng-chen,Ta-ch’eng,Ta-ch’eng-chen,T’ien-ch’eng-chen,da cheng,大程 34.66094 109.1342 P PPLA4 CN 26 0 392 Asia/Chongqing 2012-01-18
-1814525 Dacheng Dacheng Dacheng,Dacheng Zhen,Ta-ch'eng,Ta-ch’eng,da cheng,da cheng zhen,大城,大城镇 28.53823 115.51884 P PPLA4 CN 03 0 41 Asia/Shanghai 2012-01-18
-1814570 Dabu Dabu Dabu,Dabu Xiang,Ta-pu,da bu,da bu xiang,大埠,大埠乡 25.69294 115.06959 P PPLA4 CN 03 0 133 Asia/Shanghai 2012-01-18
-1814572 Dabu Dabu Dabu,Dapu,Liucheng,Ta-p'u-chen,Ta-pu,Ta-p’u-chen,da bu,大埔 24.66739 109.23547 P PPLA3 CN 16 0 100 Asia/Chongqing 2012-01-18
-1814573 Dabu Dabu Dabu,Dabuzhen,Ta-pu-hsu,Ta-pu-hsü,Ta-pu-tung,da bu,da bu zhen,大布,大布镇 24.53967 113.13766 P PPLA4 CN 30 0 614 Asia/Shanghai 2012-01-18
-1814577 Dabizhuang Dabizhuang Dabizhuang,Ta-pi-chuang,Tapi 39.19306 117.25583 P PPL CN CN 28 5818 6 Asia/Shanghai 2012-01-18
-1814596 Dabao’anzhen Dabao'anzhen Dabao'an,Dabao'anzhen,Dabao’an,Dabao’anzhen,Ta-an-chuang 39.89944 117.47639 P PPL CN 28 2600 9 Asia/Harbin 2012-01-18
-1814610 Dabaizhuang Dabaizhuang Dabaizhuang,Ta-pai-chuang 39.44472 117.38028 P PPL CN CN 28 1295 8 Asia/Shanghai 2012-01-18
-1814616 Dabaidi Dabaidi Dabaidi,Dabaidi Xiang,Ta-pai-ti,da bai de,da bai de xiang,大柏地,大柏地乡 26.10199 116.04156 P PPLA4 CN 03 0 315 Asia/Shanghai 2012-01-18
-1814621 Dabachang Dabachang Dabachang,Ta-pa-ch'ang,Ta-pa-ch’ang 27.7425 108.34333 P PPL CN CN 18 1086 571 Asia/Chongqing 2012-01-18
-1814635 Xiazhi Xiazhi Da'ao,Da’ao,Ta-ao,Xiazhi,Xiazhi Zhen,xia shi,xia shi zhen,虾峙,虾峙镇 29.75621 122.23572 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1814639 Da’anping Da'anping Da'an Xiang,Da'anping,Da’an Xiang,Da’anping,Ta-an-p'ing,Ta-an-p’ing,da an ping,da an xiang,大安乡,大安坪 29.53599 109.67139 P PPLA4 CN 11 0 1107 Asia/Chongqing 2012-01-18
-1814642 Da’an Da'an Da'an,Da'an Zhen,Daan'i,Daan’i,Da’an,Da’an Zhen,Ta-an,Ta-an-i,Taanchen,Taanyi,da an,da an zhen,大安,大安镇 33.05583 106.29583 P PPLA4 CN 26 0 692 Asia/Chongqing 2012-01-18
-1814652 Da’an Da'an Da'an,Da'an Zhen,Da’an,Da’an Zhen,Ta-an,Ta-an-hsu,Ta-an-hsü,Taion,da an,大安 23.07275 115.6264 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-18
-1814653 Da’an Da'an Da'an,Da'an Zhen,Da’an,Da’an Zhen,da an,da an zhen,打安,打安镇 19.28535 109.36854 P PPLA4 CN 31 0 225 Asia/Chongqing 2012-01-18
-1814659 Cuntou Cuntou Cuntou,Cuntou Zhen,Ts'un-t'ou,Ts'un-t'ou-shih,Ts’un-t’ou,Ts’un-t’ou-shih,cun tou,cun tou zhen,村头,村头镇 29.26583 118.46861 P PPLA4 CN 02 0 175 Asia/Shanghai 2012-01-18
-1814662 Cunqian Cunqian Cunqian,Cunqian Xiang,Ts'un-ch'ien,Ts'un-ch'ien-chieh,Ts’un-ch’ien,Ts’un-ch’ien-chieh,cun qian,cun qian xiang,村前,村前乡 28.46968 115.1318 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-18
-1814684 Cuimu Cuimu Cuimu,Cuimu Zhen,Ts'ui-mu,Ts'ui-mu-chen,Tsuymuchzhen',Tsuymuchzhen’,Ts’ui-mu,Ts’ui-mu-chen,cui mu,cui mu zhen,崔木,崔木镇 34.81136 107.85974 P PPLA4 CN 26 0 1500 Asia/Chongqing 2012-01-18
-1814689 Cuijiang Cuijiang Ch'ing-ning,Ch’ing-ning,Cuijiang,Cuijiang Zhen,Ning-hua-ch'eng-kuan,Ning-hua-ch’eng-kuan,Ning-hua-hsien,Ning-hua-hsien-ch'eng,Ning-hua-hsien-ch’eng,Ninghua,Ninghua Xian,Ninghwa,Ninghwa-hsien,cui jiang,cui jiang zhen,ning hua xian,宁化县,翠江,翠江镇 26.26322 116.64991 P PPLA3 CN 07 0 326 Asia/Shanghai 2012-01-18
-1814691 Cuijiamatou Cuijiamatou 39.07472 117.30056 P PPL CN 28 1990 1 Asia/Shanghai 2000-11-21
-1814697 Cuihuangkou Cuihuangkou Cuihuangkou,Ts'ui-huang-chuang,Ts'ui-huang-k'ou,Ts’ui-huang-chuang,Ts’ui-huang-k’ou 39.52583 117.18056 P PPL CN CN 28 4334 8 Asia/Shanghai 2012-01-18
-1814698 Cuihua Cuihua Cuihua,Daguan,Ta-kuan,Ta-kuan-hsien,Takwan-hsien,cui hua,翠华 27.73766 103.85738 P PPLA3 CN 29 0 1794 Asia/Chongqing 2012-01-18
-1814720 Ciyantang Ciyantang Ciyantang,Ciyantang Zhen,ci yan tang,ci yan tang zhen,茨岩塘,茨岩塘镇 29.41473 109.5954 P PPLA4 CN 11 0 816 Asia/Chongqing 2012-01-18
-1814727 Cishangang Cishangang Cishangang,Tz'u-shan-kang,Tz’u-shan-kang,ci shan gang,祠山岗 30.90983 119.5095 P PPLA4 CN 01 0 44 Asia/Shanghai 2012-01-18
-1814735 Cili Cili Cili,Cili Xian,Lingyang,Lingyang Zhen,Tsu-li,Tz'u-li,Tz'u-li-hsien,Tzeli,Tzeli-hsien,Tz’u-li,Tz’u-li-hsien,ci li,ci li xian,ling yang,ling yang zhen,慈利,慈利县,零阳,零阳镇 29.42444 111.12013 P PPLA3 CN 11 0 101 Asia/Chongqing 2012-01-18
-1814736 Cikou Cikou Cikou,Cikou Xiang,Tz'u-k'ou,Tz’u-k’ou,ci kou,ci kou xiang,慈口,慈口乡 29.68896 114.79476 P PPLA4 CN 12 0 91 Asia/Shanghai 2012-01-18
-1814743 Cihua Cihua Cihua,Cihua Zhen,Tz'u-hua,Tz’u-hua,ci hua,ci hua zhen,慈化,慈化镇 28.01228 114.02735 P PPLA4 CN 03 0 178 Asia/Chongqing 2012-01-18
-1814744 Cihu Cihu Cihu,Tz'u-hu,Tz'u-hu-chen,Tzehu,Tz’u-hu,Tz’u-hu-chen,ci hu,慈湖 31.74289 118.50556 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-18
-1814749 Cigou Cigou Cigou,Tz'u-kou,Tz’u-kou,ci gou,茨沟 33.83305 113.58274 P PPLA4 CN 09 0 83 Asia/Shanghai 2012-01-18
-1814753 Cicheng Cicheng Cicheng,Cicheng Zhen,Tsekihsien,Tz'u-ch'eng,Tz'u-ch'eng-chen,Tz'u-ch'i,Tz'u-ch'i-hsien,Tzeki,Tz’u-ch’eng,Tz’u-ch’eng-chen,Tz’u-ch’i,Tz’u-ch’i-hsien,ci cheng,ci cheng zhen,慈城,慈城镇 29.98232 121.44018 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1814754 Ciba Ciba Ciba,ci ba,茨芭 34.07886 113.05381 P PPLA4 CN 09 0 194 Asia/Chongqing 2012-01-18
-1814757 Chuzhou Chuzhou Ch'u,Ch'u-ch'uan,Ch'u-hsien,Chuchow,Chuxian,Chuzhou,Ch’u,Ch’u-ch’üan,Ch’u-hsien,chu zhou,chu zhou shi,چۇجۇ شەھىرى,滁州,滁州市 32.32194 118.29778 P PPL CN 01 280582 24 Asia/Shanghai 2012-01-18
-1814765 Chushan Chushan Ch'u-shan-chai,Chushan,Chushan Zhen,Ch’u-shan-chai,chu shan,chu shan zhen,出山,出山镇 33.29548 113.6528 P PPLA4 CN 09 0 100 Asia/Shanghai 2012-01-18
-1814767 Chunxi Chunxi Ch'un-hsi,Chunxi,Ch’un-hsi,Gaochun,Kao-ch'un,Kao-ch’un,Kao-shun,Kao-shun-hsien,chun xi,淳溪 31.32243 118.87024 P PPLA3 CN 04 0 14 Asia/Shanghai 2012-01-18
-1814769 Chunshui Chunshui Ch'un-shui-chen,Chun'shuy,Chunshui,Chunshui Zhen,Chun’shuy,Ch’un-shui-chen,chun shui,春水 33.03264 113.45796 P PPLA4 CN 09 0 141 Asia/Chongqing 2012-01-18
-1814780 Chunhua Chunhua Chengguan Zhen,Chunhua,Chunhwa,Chunhwa-hsien,Shun-hua,Shun-hua-hsien,Shun-hua-hsien-ch'eng,Shun-hua-hsien-ch’eng,Shunhwahsien,cheng guan zhen,chun hua,城关镇,淳化 34.79889 108.575 P PPLA3 CN 26 0 850 Asia/Chongqing 2012-01-18
-1814782 Chunhu Chunhu Chunhu,Chunhu Zhen,Tsun-hu-chen,chun hu,chun hu zhen,莼湖,莼湖镇 29.57861 121.51556 P PPLA4 CN 02 0 19 Asia/Shanghai 2012-01-18
-1814786 Yangchun Yangchun Ch'un-ch'eng-chen,Chuncheng,Ch’un-ch’eng-chen,Yang-ch'un-hsien,Yang-ch’un-hsien,Yangchun,Yeungchun,yang chun,阳春 22.16667 111.78333 P PPL CN 30 153547 22 Asia/Chongqing 2012-01-18
-1814789 Chumi Chumi Ch'u-mi-p'u,Chumi,Chumi Zhen,Ch’u-mi-p’u 28.23361 106.83278 P PPL CN CN 18 3500 980 Asia/Chongqing 2012-01-18
-1814802 Chuimatan Chuimatan Chuimatan,Chuimatan Zhen,Jishishan Bonanzu Dongxiangzu,chui ma tan,chui ma tan zhen,ji shi shan bao an zu dong xiang zu,吹麻滩,吹麻滩镇,积石山保安族东乡族 35.7181 102.87407 P PPLA3 CN 15 0 2291 Asia/Chongqing 2012-01-18
-1814818 Chuandian Chuandian Ch'uan-hsin-tien,Chuandian,Chuandian Zhen,Chuanxindian,Ch’uan-hsin-tien,chuan dian,chuan dian zhen,川店,川店镇 30.5905 112.07359 P PPLA4 CN 12 0 66 Asia/Chongqing 2012-01-18
-1814821 Chuantang Chuantang Chuantang,Chuantang Zhen,chuan tang,chuan tang zhen,船塘,船塘镇 24.16548 114.94072 P PPLA4 CN 30 0 147 Asia/Shanghai 2012-01-18
-1814822 Chuantan Chuantan Chuantan,Chuantan Zhen,chuan tan,chuan tan zhen,船滩,船滩镇 29.23958 114.67156 P PPLA4 CN 03 0 113 Asia/Shanghai 2012-01-18
-1814830 Chuanshan Chuanshan Chuanshan,Chuanshan Xiang 25.06667 108.08333 P PPLA4 CN 16 0 358 Asia/Chongqing 2012-01-18
-1814846 Dengzishan Dengzishan Chuanjie,Dengzishan,chuan jie,川街 24.89858 102.04518 P PPLA4 CN 29 0 1426 Asia/Chongqing 2012-01-18
-1814852 Chuangang Chuangang Ch'uan-chiang,Ch'uan-chiang-chen,Ch'uan-kang,Chuangang,Chuangang Zhen,Ch’uan-chiang,Ch’uan-chiang-chen,Ch’uan-kang,chuan gang,chuan gang zhen,川港,川港镇 31.92887 121.05614 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1814870 Yiwu Yiwu Choucheng,I-wu,I-wu-hsien,Yiwu,Yiwuhsien,yi wu,yi wu xian,义乌,義烏縣 29.31506 120.07676 P PPLA3 CN 02 89629 84 Asia/Shanghai 2012-02-02
-1814884 Chongxing Chongxing Chongxing,Chongxing Zhen,Chung-hsing,Chung-hsing-shih,zhong xing,zhong xing zhen,重兴,重兴镇 19.41317 110.59556 P PPLA4 CN 31 0 38 Asia/Chongqing 2012-01-18
-1814888 Chongxian Chongxian Ch'ung-hsien,Ch'ung-hsien-hsu,Chongxian,Chongxian Xiang,Ch’ung-hsien,Ch’ung-hsien-hsü,chong xian,chong xian xiang,崇贤,崇贤乡 26.54889 115.34389 P PPLA4 CN 03 0 238 Asia/Shanghai 2012-01-18
-1814896 Chongru Chongru Ch'ung-ju,Chongru,Ch’ung-ju 26.95111 119.92528 P PPL CN CN 07 2800 247 Asia/Shanghai 2012-01-18
-1814899 Chongren Chongren Ch'ung-jen,Ch'ung-jen-chen,Chongren,Chongren Zhen,Ch’ung-jen,Ch’ung-jen-chen,chong ren,chong ren zhen,崇仁,崇仁镇 29.60933 120.70524 P PPLA4 CN 02 0 57 Asia/Shanghai 2012-01-18
-1814906 Chongqing Chongqing Cchung-cching,Ch'ung-ch'ing,Ch'ung-ch'ing-shih,Chongqing,Chongqing - zhong qing,Chongqing - 重庆,Chongqing Shi,Chuncin,Chungking,Ch’ung-ch’ing,Ch’ung-ch’ing-shih,Congcingas,Csungking,Cuncina,Pa,Pa-hsien,Trung Khanh,Trùng Khánh,Tsjoengking,Yu-chou,Yuzhou,Yü-chou,chungching,tshwnghtshyngh,z'wngz'yng,zhong qing,zhong qing shi,Čchung-čching,Čongčingas,Čuncina,Чунцин,צ'ונגצ'ינג,تشونغتشينغ,چونگکینگ,چۇڭچىڭ شەھىرى,重庆,重庆市,重慶市,충칭 29.56278 106.55278 P PPLA CN 33 3967028 225 Asia/Chongqing 2012-01-18
-1814909 Chongning Chongning Ch'ung-ning,Ch'ung-ning-chen,Chongning,Chongning Zhen,Ch’ung-ning,Ch’ung-ning-chen,chong ning,崇凝 34.38226 109.58623 P PPLA4 CN 26 0 673 Asia/Chongqing 2012-01-18
-1814918 Chonglou Chonglou Ch'ung-lou,Ch'ung-lou-hsu,Ch'ung-wei-hsu,Cheung-kok,Chonglou,Chonglou Zhen,Chunglaw,Chunglow,Chunglu,Chunglü,Ch’ung-lou,Ch’ung-lou-hsü,Ch’ung-wei-hsü,chong lou,chong lou zhen,冲蒌,冲蒌镇 22.12948 112.80747 P PPLA4 CN 30 0 8 Asia/Chongqing 2012-01-18
-1814919 Chonglong Chonglong Chonglong,Tzechow,Tzechung,Tzechung-hsien,Tzu-chou,Tzu-chung,Tzu-chung-hsien,Zizhong,zhong long,重龙 29.78062 104.85224 P PPLA3 CN 32 58441 361 Asia/Chongqing 2012-01-18
-1814924 Chonggu Chonggu Ch'ung-ku-chen,Chonggu,Chung-ku,Ch’ung-ku-chen,zhong gu,重固 31.20361 121.17056 P PPLA4 CN 23 0 3 Asia/Shanghai 2012-01-18
-1814928 Chongfu Chongfu Ch'ung-fu-chen,Ch'ung-te,Ch'ung-te-chen,Ch'ung-te-hsien,Ch'ung-te-hsien-ch'eng,Chongde,Chongfu,Chongfu Zhen,Ch’ung-fu-chen,Ch’ung-te,Ch’ung-te-chen,Ch’ung-te-hsien,Ch’ung-te-hsien-ch’eng,Shih-men,Tsungteh,chong fu,chong fu zhen,崇福,崇福镇 30.53113 120.4309 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-18
-1814934 Chizhou Chizhou Ch'ih-chou,Ch'ih-chou-chen,Chih-chow-fu,Chihchow,Chizhou,Ch’ih-chou,Ch’ih-chou-chen,Guichi,Kuei-ch'ih,Kuei-ch'ih-hsien,Kuei-ch’ih,Kuei-ch’ih-hsien,Kweichih,Kweichih-hsien,Kweighih,chi zhou,chi zhou shi,池州,池州市 30.65778 117.48306 P PPL CN 01 148375 25 Asia/Shanghai 2012-01-18
-1814945 Chixi Chixi Ch'ih-hsi,Chixi,Chixi Xiang,Ch’ih-hsi,chi xi,chi xi xiang,池溪,池溪乡 28.39708 116.41978 P PPLA4 CN 03 0 17 Asia/Shanghai 2012-01-18
-1814946 Chixi Chixi Ch'ih-ch'i,Chixi,Ch’ih-ch’i 26.91111 119.48306 P PPL CN CN 07 3810 122 Asia/Shanghai 2012-01-18
-1814949 Chiwei Chiwei Ch'ih-wei,Chiwei,Chiwei Jiedao,Ch’ih-wei,chi wei,池尾 23.30359 116.13196 P PPLA4 CN 30 0 25 Asia/Shanghai 2012-01-18
-1814964 Chishui Chishui Ch'ih-shui,Ch'ih-shui-chen,Chishui,Chishui Zhen,Ch’ih-shui,Ch’ih-shui-chen,chi shui,赤水 34.50723 109.64244 P PPLA4 CN 26 0 346 Asia/Chongqing 2012-01-18
-1814977 Chishi Chishi Chishi,chi shi,赤石 22.87947 115.06901 P PPLA4 CN 30 0 10 Asia/Chongqing 2012-01-18
-1814995 Chikeng Chikeng Chikeng,chi keng,赤坑 22.85077 115.45828 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-18
-1814999 Chitu Chitu Ch'ih-chien-t'an,Ch'ih-hsien-t'an,Chijiantan,Chitu,Ch’ih-chien-t’an,Ch’ih-hsien-t’an 39.20333 117.40278 P PPL CN CN 28 8939 1 Asia/Shanghai 2012-01-18
-1815010 Chiguang Chiguang Chiguang,Chiguang Zhen,chi guang,chi guang zhen,赤光,赤光镇 24.3863 115.43104 P PPLA4 CN 30 0 230 Asia/Shanghai 2012-01-18
-1815013 Chigan Chigan Ch'ih-kan,Ch'ih-kan-chen,Chigan,Chigan Zhen,Ch’ih-kan,Ch’ih-kan-chen,chi gan,chi gan zhen,叱干,叱干镇 34.70778 108.4325 P PPLA4 CN 26 0 1055 Asia/Chongqing 2012-01-18
-1815014 Zoumaling Zoumaling Chidong,Chidong Zhen,Zoumaling,chi dong,chi dong zhen,zou ma ling,赤东,赤东镇,走马岭 30.21235 115.42684 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-18
-1815018 Chicheng Chicheng Chicheng,Feng-chi,Fontsi,Fyntsi,P'eng-ch'i,P'eng-ch'i-hsien,P'eng-hsi,Pengki,Pengki-hsien,Pengxi,P’eng-ch’i,P’eng-ch’i-hsien,P’eng-hsi,chi cheng,赤城 30.77936 105.71214 P PPLA3 CN 32 0 347 Asia/Chongqing 2012-01-18
-1815022 Chiba Chiba Chiba,chi ba,池坝 33.64657 104.78224 P PPLA4 CN 15 0 2546 Asia/Chongqing 2012-01-18
-1815024 Chi’an Chi'an Ch'ih-an,Ch'ih-an-shih,Chi'an,Chi'an Zhen,Chi’an,Chi’an Zhen,Ch’ih-an,Ch’ih-an-shih,chi an,chi an zhen,赤岸,赤岸镇 29.14501 120.03036 P PPLA4 CN 02 0 82 Asia/Shanghai 2012-01-18
-1815035 Chexi Chexi Chexi,Chexi Xiang,Chexihe,che xi,che xi he,che xi xiang,车溪,车溪乡,车溪河 29.71689 111.69081 P PPLA4 CN 11 0 43 Asia/Shanghai 2012-01-18
-1815040 Chetou Chetou Chetou,Chetou Xiang,che tou,che tou xiang,车头,车头乡 25.19394 115.33221 P PPLA4 CN 03 0 257 Asia/Shanghai 2012-01-18
-1815041 Chetian Chetian Chetian,Chetiean Xiang,che tian,che tian xiang,车田,车田乡 29.14183 109.0461 P PPLA4 CN 33 0 659 Asia/Chongqing 2012-01-18
-1815043 Chetian Chetian Ch'e-t'ien-hsu,Chetian,Chetian Zhen,Ch’e-t’ien-hsü,che tian,che tian zhen,车田,车田镇 24.4336 115.28634 P PPLA4 CN 30 0 183 Asia/Shanghai 2012-01-18
-1815053 Chenzhuang Chenzhuang Chenzhuang,Chenzhuang Zhen,chen zhuang,陈庄 34.87224 109.60384 P PPLA4 CN 26 0 387 Asia/Chongqing 2012-01-18
-1815055 Chenzhuang Chenzhuang Chenzhuang,chen zhuang,陈庄 32.65645 113.29765 P PPLA4 CN 09 0 155 Asia/Chongqing 2012-01-18
-1815059 Chenzhou Chenzhou Ch'en,Ch'en-chou-shih,Ch'en-hsien,Chehn'chzhou,Chenchow,Chenzhou,Ch’en,Ch’en-chou-shih,Ch’en-hsien,chen zhou,Чэньчжоу,郴州 25.8 113.03333 P PPLA2 CN 11 179038 180 Asia/Chongqing 2012-01-18
-1815063 Chenying Chenying Ch'en-ying-chen,Ch'en-ying-chieh,Chenying,Chenying Zhen,Ch’en-ying-chen,Ch’en-ying-chieh,Wan-nien,Wannian,Wannian Xian,chen ying,chen ying zhen,wan nian xian,万年县,陈营,陈营镇 28.6929 117.06732 P PPLA3 CN 03 0 53 Asia/Shanghai 2012-01-18
-1815068 Chenyang Chenyang Ch'en-ch'i,Ch'en-ch'i-hsien,Ch'en-hsi,Chenki,Chenki-hsien,Chenxi,Chenyang,Ch’en-ch’i,Ch’en-ch’i-hsien,Ch’en-hsi,chen yang,辰阳 28.01582 110.17298 P PPLA3 CN 11 0 206 Asia/Chongqing 2012-01-18
-1815073 Chenxiang Chenxiang Ch'en-chia-hsiang,Chenxiang,Chenxiang Zhen,Ch’en-chia-hsiang,chen xiang,chen xiang zhen,陈巷,陈巷镇 31.47982 113.76744 P PPLA4 CN 12 0 74 Asia/Chongqing 2012-01-18
-1815105 Chenjin Chenjin Chenjin,Chenjin Xiang,chen jin,chen jin xiang,陈靳,陈靳乡 35.56667 106.15 P PPLA4 CN 21 0 2241 Asia/Chongqing 2012-01-18
-1815136 Chenjiahe Chenjiahe Chenjiahe,Chenjiahe Zhen,chen jia he,chen jia he zhen,陈家河,陈家河镇 29.48607 109.97672 P PPLA4 CN 11 0 332 Asia/Chongqing 2012-01-18
-1815138 Chenjiagang Chenjiagang Ch'en-chia-chiang,Ch'en-chia-kang,Chenjiagang,Chenjiagang Zhen,Chenkiakiang,Ch’en-chia-chiang,Ch’en-chia-kang,chen jia gang,chen jia gang zhen,陈家港,陈家港镇 34.37861 119.80306 P PPLA4 CN 04 0 1 Asia/Shanghai 2012-01-18
-1815141 Chendian Chendian Ch'en-chia-tien,Chendian,Chendian Xiang,Chenjiadian,Ch’en-chia-tien,chen dian,chen dian xiang,陈店,陈店乡 31.26834 113.81796 P PPLA4 CN 12 0 94 Asia/Chongqing 2012-01-18
-1815142 Chendian Chendian Ch'en-chia-tien,Chendian,Chendian Zhen,Chenjiadian,Ch’en-chia-tien,chen dian,chen dian zhen,陈店,陈店镇 30.26719 111.64149 P PPLA4 CN 12 0 111 Asia/Chongqing 2012-01-18
-1815149 Chenji Chenji Ch'en-chi,Chenji,Chenji Zhen,Ch’en-chi,chen ji,chen ji zhen,陈集,陈集镇 34.18333 119.38333 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1815173 Chengzhong Chengzhong Chengzhong,Ning-ming-hsien,Ningming,cheng zhong,城中 22.16824 107.0073 P PPLA3 CN 16 0 335 Asia/Chongqing 2012-01-18
-1815183 Chengyang Chengyang Chengyang,Chengyang Xiang,cheng yang,cheng yang xiang,城阳,城阳乡 35.81667 106.78333 P PPLA4 CN 21 0 1401 Asia/Chongqing 2012-01-18
-1815184 Chengyang Chengyang Chengyang,Chu,Chu-hsien,Chuchow,Chü,Chü-hsien,Chüchow,Juxian 35.57944 118.83278 P PPL CN 25 66588 112 Asia/Shanghai 2012-01-18
-1815188 Chengxian Chengguanzhen Chengxian Chengguanzhen Ch'eng,Ch'eng-hsien,Chengguan Zhen,Chengxian,Chengxian Chengguanzhen,Chensyan',Chensyan’,Ch’eng,Ch’eng-hsien,cheng guan zhen,cheng xian,cheng xian cheng guan zhen,城关镇,成县,成县城关镇 33.74111 105.72056 P PPLA3 CN 15 0 969 Asia/Chongqing 2012-01-18
-1815197 Chengui Chengui Chengui,Chengui Zhen,chen gui,chen gui zhen,陈贵,陈贵镇 30.05 114.8 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-18
-1815202 Chengtougu Chengtougu Ch'eng-t'ou-ku,Chengtougu,Ch’eng-t’ou-ku 39.14 117.77889 P PPL CN CN 28 1558 2 Asia/Shanghai 2012-01-18
-1815208 Chengtang Chengtang Chengtang,Chengtang Zhen,cheng tang,cheng tang zhen,澄塘,澄塘镇 28.42312 114.91437 P PPLA4 CN 03 0 93 Asia/Shanghai 2012-01-18
-1815209 Chengtan Chengtan Chengtan,Chengtan Zhen,cheng tan,cheng tan zhen,澄潭,澄潭镇 29.44877 120.79012 P PPLA4 CN 02 0 50 Asia/Shanghai 2012-01-18
-1815211 Langchi Langchi Chengshou,Inshan',Inshan’,Langchi,Ying-shan-hsien,Yingshan,lang chi,朗池 31.07952 106.56514 P PPLA3 CN 32 0 335 Asia/Chongqing 2012-01-18
-1815213 Chengshang Chengshang Chengshang,Chengshang Xiang,cheng shang,cheng shang xiang,城上,城上乡 27.67928 115.64648 P PPLA4 CN 03 0 93 Asia/Shanghai 2012-01-18
-1815216 Chengfeng Chengfeng Chengfeng,Chengfeng Xiang,Chengshan,cheng feng,cheng feng xiang,城丰,城丰乡 28.93859 115.70876 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-18
-1815232 Chenglong Chenglong Chenglong,Chenlong Zhen,cheng long,cheng long zhen,程龙,程龙镇 24.83352 114.67715 P PPLA4 CN 03 0 233 Asia/Chongqing 2012-01-18
-1815240 Chengkou Chengkou Chengkou,Chengkou Zhen,cheng kou,cheng kou zhen,城口,城口镇 25.3236 113.73492 P PPLA4 CN 30 0 157 Asia/Chongqing 2012-01-18
-1815246 Chengjia Chengjia Ch'en-chia-shih,Ch'eng-chia-shih,Chengjia,Chengjia Shi,Chengjiashi,Ch’en-chia-shih,Ch’eng-chia-shih,Guangping,Kuang-p'ing,Kuang-p’ing,cheng jia,cheng jia shi,程家,程家市 31.91148 118.08262 P PPLA4 CN 01 0 24 Asia/Shanghai 2012-01-18
-1815251 Chengjiang Chengjiang Chengjiang,Chiang-yin,Chiang-yin-ch'eng,Chiang-yin-ch’eng,Chiang-yin-hsien,Jiangyin,Kiangyin,cheng jiang,澄江 31.92825 120.31257 P PPLA3 CN 04 107918 255 Asia/Shanghai 2012-01-18
-1815253 Chengjiang Chengjiang Ch'eng-chiang,Ch'eng-chiang-ch'iao,Ch'eng-chiang-hsu,Ch'eng-wang,Chengjiang,Chengjiang Zhen,Ch’eng-chiang,Ch’eng-chiang-ch’iao,Ch’eng-chiang-hsü,Ch’eng-wang,cheng jiang,cheng jiang zhen,澄江,澄江镇 25.0612 115.72018 P PPLA4 CN 03 0 303 Asia/Shanghai 2012-01-18
-1815255 Chengjiang Chengjiang Ch'eng-chiang,Ch'eng-chiang-hsu,Chengjiang,Chengjiang Zhen,Ch’eng-chiang,Ch’eng-chiang-hsü,cheng jiang,cheng jiang zhen,澄江,澄江镇 24.92798 114.3242 P PPLA4 CN 30 0 283 Asia/Chongqing 2012-01-18
-1815280 Chenggang Chenggang Ch'eng-kang,Chenggang,Chenggang Xiang,Ch’eng-kang,cheng gang,cheng gang xiang,城冈,城冈乡 26.50902 115.48756 P PPLA4 CN 03 0 315 Asia/Shanghai 2012-01-18
-1815286 Chengdu Chengdu Ccheng-tu,Cengdu,Ch'eng-tu,Ch'eng-tu-hsien,Ch'eng-tu-shih,Chehndu,Chengdu,Chengdu Shi,Ch’eng-tu,Ch’eng-tu-hsien,Ch’eng-tu-shih,Hua-yang,Thanh Do,Thành Đô,cheng dou,cheng dou shi,cheongdu,Čcheng-tu,Čengdu,Чэнду,چېڭدۇ شەھىرى,成都,成都市,청두 30.66667 104.06667 P PPLA CN 32 3950437 499 Asia/Chongqing 2012-01-18
-1815302 Chenghua Chenghua Ch'eng-hai-hsien,Chengcheng,Chenghai,Chenghua,Ching hai,Ch’eng-hai-hsien,Tenghai,Tenghai-hsien,Tsai-ch'eng-chen,Tsai-ch’eng-chen,cheng hai,cheng hua,澄华,澄海 23.46132 116.77007 P PPLA3 CN 30 152453 13 Asia/Shanghai 2012-01-18
-1815316 Chenfang Chenfang Ch'en-k'eng,Chenfang,Chenfang Xiang,Ch’en-k’eng,Tung-fang,chen fang,chen fang xiang,陈坊,陈坊乡 28.05225 117.54029 P PPLA4 CN 03 0 114 Asia/Shanghai 2012-01-18
-1815317 Chen’er Chen'er Ch'en-erh-p'u,Chen'er,Chen'er Xiang,Chen'erpu,Chen’er,Chen’er Xiang,Chen’erpu,Ch’en-erh-p’u,chen er,chen er pu,chen er xiang,陈二,陈二乡,陈二铺 29.34372 111.61863 P PPLA4 CN 11 0 68 Asia/Shanghai 2012-01-18
-1815322 Chendai Chendai Ch'en-tai,Chendai,Chendai Zhen,Ch’en-tai,chen dai,陈岱 23.79465 117.40133 P PPLA4 CN 07 0 12 Asia/Shanghai 2012-01-18
-1815331 Chencheng Chencheng Chencheng,Chencheng Zhen,chen cheng,陈城 23.59486 117.38283 P PPLA4 CN 07 0 13 Asia/Shanghai 2012-01-18
-1815332 Chencai Chencai Ch'en-ts'ai,Ch'en-ts'ai-shih,Chencai,Chencai Zhen,Ch’en-ts’ai,Ch’en-ts’ai-shih,chen cai,chen cai zhen,陈蔡,陈蔡镇 29.58445 120.37738 P PPLA4 CN 02 0 56 Asia/Shanghai 2012-01-18
-1815354 Checun Checun Ch'e-ts'un,Checun,Checun Zhen,Ch’e-ts’un,che cun,che cun zhen,车村,车村镇 33.79631 112.11666 P PPLA4 CN 09 0 654 Asia/Chongqing 2012-01-18
-1815365 Chayuan Chayuan Ch'a-yuan-kang,Chayuan,Chayuan Xiang,Ch’a-yüan-kang,cha yuan,cha yuan xiang,茶园,茶园乡 26.47746 115.16059 P PPLA4 CN 03 0 321 Asia/Shanghai 2012-01-18
-1815376 Chatian Chatian Ch'a-t'ien,Ch'a-t'ien-shih,Chatian,Chatian Zhen,Ch’a-t’ien,Ch’a-t’ien-shih,cha tian,cha tian zhen,查田,查田镇 27.87861 118.9875 P PPLA4 CN 02 0 309 Asia/Shanghai 2012-01-18
-1815377 Chatian Chatian 27.80222 109.37361 P PPL CN 11 1100 549 Asia/Chongqing 2002-04-15
-1815387 Chashan Chashan Chashan,Chashan Zhen,cha shan,茶山 23.06956 113.869 P PPLA4 CN 30 0 13 Asia/Chongqing 2012-01-18
-1815395 Chaozhou Chaozhou Ch'ao-an-hsien,Ch'ao-chou,Ch'ao-chou-chen,Ch'ao-chou-shih,Chao'an,Chaochow,Chaochowfu,Chaozhou,Chao’an,Chau chu fu,Chauchow,Ch’ao-an-hsien,Ch’ao-chou,Ch’ao-chou-chen,Ch’ao-chou-shih,Trieu Chau,Triều Châu,chao zhou,chao zhou shi,จังหวัดแต้จิ๋ว,潮州,潮州市 23.66513 116.63786 P PPLA2 CN 30 424787 20 Asia/Shanghai 2012-01-18
-1815406 Chaoyang Chaoyang Chaoyang,Chaoyang Zhen,chao yang,chao yang zhen,朝阳,朝阳镇 34.68184 119.29797 P PPLA4 CN 04 0 14 Asia/Shanghai 2012-01-18
-1815413 Chaotian Chaotian Ch'ao-t'ien,Ch'ao-t'ien-i,Ch'ao-t'ien-kuan,Chaotian,Chaotianyi,Chzhaotyan',Chzhaotyan’,Ch’ao-t’ien,Ch’ao-t’ien-i,Ch’ao-t’ien-kuan,chao tian,朝天 32.64462 105.88501 P PPLA3 CN 32 0 513 Asia/Chongqing 2012-01-18
-1815427 Chaohu Chaohu Ch'ao,Ch'ao-hsien,Chaohu,Chaoxian,Ch’ao,Ch’ao-hsien,Ts'ao-chen,Ts’ao-chen,chao hu shi,巢湖市 31.6 117.86667 P PPL CN 01 138463 11 Asia/Shanghai 2012-01-18
-1815433 Chaobei Chaobei Ch'ao-p'o,Ch'ao-pei,Chaobei,Chaobei Zhen,Ch’ao-pei,Ch’ao-p’o,chao bei,chao bei zhen,晁陂,晁陂镇 33.04056 112.1037 P PPLA4 CN 09 0 187 Asia/Chongqing 2012-01-18
-1815456 Changzhou Changzhou Ch'ang-chou,Ch'ang-chou-shih,Chanchzhou,Chang-chow-fu,Changchow,Changzhou,Ch’ang-chou,Ch’ang-chou-shih,Wu-chin,Wu-chin-hsien,Wujin,Wutsin,chang zhou,chang zhou shi,Чанчжоу,چاڭجو شەھىر,常州,常州市 31.78333 119.96667 P PPL CN 04 949018 9 Asia/Shanghai 2012-01-18
-1815463 Changzhi Changzhi Ch'ang-chih,Chanchzhi,Changzhi,Ch’ang-chih,Shih-t'ou-ko-t'a,Shih-t’ou-ko-t’a,Shitougeta,Чанчжи 35.20889 111.73861 P PPL CN 24 699514 381 Asia/Chongqing 2012-01-18
-1815466 Changzhen Changzhen Ch'ang-chen,Ch'ang-chen-ts'un,Changzhen,Changzhen Xiang,Ch’ang-chen,Ch’ang-chen-ts’un,zhang zhen,zhang zhen xiang,长畛,长畛乡 39.25369 111.82441 P PPLA4 CN 24 0 1312 Asia/Chongqing 2012-01-18
-1815499 Changxing Changxing Ch'ang-hsing,Ch'ang-hsing-chen,Changxing,Changxing Zhen,Ch’ang-hsing,Ch’ang-hsing-chen,chang xing,chang xing zhen,常兴,常兴镇 34.27076 107.83574 P PPLA4 CN 26 0 491 Asia/Chongqing 2012-01-18
-1815504 Xiaoxi Xiaoxi Ch'ang-hsiao,Changxiao Zhen,Ch’ang-hsiao,Xiaoxi,xiao xi,zhang xiao zhen,校溪,长校镇 25.95061 116.71285 P PPLA4 CN 07 0 412 Asia/Shanghai 2012-01-18
-1815510 Changtun Changtun 39.44333 117.07056 P PPL CN 28 2415 6 Asia/Shanghai 2000-11-21
-1815512 Wojingtan Wojingtan Changtu,Changtuzhen,Wojingtan,wo jing tan,zhang tu,zhang tu zhen,倭井谭,长涂,长涂镇 30.25405 122.30334 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-18
-1815519 Changtang Changtang Changtang,Changtang Zhen,zhang tang,zhang tang zhen,长塘,长塘镇 27.19188 114.96811 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-18
-1815526 Changtan Changtan Changtan,Changtan Zhen,zhang tan,zhang tan zhen,长滩,长滩镇 31.00214 112.73289 P PPLA4 CN 12 0 44 Asia/Chongqing 2012-01-18
-1815534 Wu’an Wu'an Ch'ang-t'ai-hsien,Changtai,Ch’ang-t’ai-hsien,Wu'an,Wu'anzhen,Wu’an,Wu’anzhen,wu an,武安 24.60387 117.74539 P PPLA3 CN 07 0 7 Asia/Shanghai 2012-01-18
-1815541 Changshou Changshou Ch'ang-shou-tien,Changshou,Changshou Zhen,Changshoudian,Changshowtien,Chanshoudyan,Ch’ang-shou-tien,zhang shou,zhang shou zhen,长寿,长寿镇 31.417 112.61336 P PPLA4 CN 12 0 61 Asia/Chongqing 2012-01-18
-1815548 Changsheng Changsheng Ch'ang-sheng-fang,Ch'ang-sheng-hsu,Changsheng,Changsheng Zhen,Ch’ang-sheng-fang,Ch’ang-sheng-hsü,zhang sheng,zhang sheng zhen,长胜,长胜镇 26.28518 116.0127 P PPLA4 CN 03 0 181 Asia/Shanghai 2012-01-18
-1815549 Changsha Changsha Ch'ang-sha,Ch'ang-sha-chen,Changsha,Changsha Zhen,Changshazhen,Ch’ang-sha,Ch’ang-sha-chen,zhang sha,zhang sha zhen,长沙,长沙镇 32.41048 121.28669 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1815555 Changshanyan Changshanyan Changshanyan,Changshanyan Xiang,zhang shan yan,zhang shan yan xiang,长山晏,长山晏乡 28.2409 116.2227 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-18
-1815576 Changsha Changsha Ch'ang-sha-ch'ang,Changsha,Chansha,Ch’ang-sha-ch’ang,Чанша 28.68778 105.98972 P PPL CN CN 18 1653 241 Asia/Chongqing 2012-01-18
-1815577 Changsha Changsha Cangsa,Ch'ang-sha-hsien,Ch'ang-sha-shih,Changsha,Chansha,Ch’ang-sha-hsien,Ch’ang-sha-shih,Truong Sa,Trường Sa,changsha,zhang sha,zhang sha shi,Ĉangŝa,Čangša,Чанша,چانگشا,چاڭشا شەھىرى,長沙,长沙,长沙市 28.2 112.96667 P PPLA CN 11 2073938 45 Asia/Chongqing 2012-01-18
-1815581 Changsa Changsa Changsa,Changsa Zhen,chang sa,chang sa zhen,昌洒,昌洒镇 19.7628 110.8983 P PPLA4 CN 31 0 23 Asia/Chongqing 2012-01-18
-1815585 Changqing Changqing Ch'ang-ch'ing,Ch'ang-ch'ing-hsien,Chancin,Changqing,Changtsing,Ch’ang-ch’ing,Ch’ang-ch’ing-hsien,Чанцин 36.5575 116.72722 P PPL CN 25 82598 39 Asia/Shanghai 2012-01-18
-1815588 Changqiao Changqiao Ch'ang-ch'iao,Changqiao,Changqiao Xiang,Ch’ang-ch’iao,zhang qiao,zhang qiao xiang,长桥,长桥乡 26.82961 116.40902 P PPLA4 CN 03 0 191 Asia/Shanghai 2012-01-18
-1815589 Changqiao Changqiao Ch'ang-ch'iao,Changqiao,Ch’ang-ch’iao,P'ing-nan,P’ing-nan 26.82139 118.84361 P PPL CN CN 07 3150 468 Asia/Shanghai 2012-01-18
-1815594 Changpu Changpu Ch'ang-p'u-chen,Ch'ang-p'u-tzu,Changpu,Changputze,Changpuzhen,Chanpu,Ch’ang-p’u-chen,Ch’ang-p’u-tzu,Suinin,Suining,zhang pu,长铺 26.57584 110.10785 P PPLA3 CN 11 0 462 Asia/Chongqing 2012-01-18
-1815597 Changpo Changpo Ch'ang-po-shih,Changpo,Changpo Zhen,Ch’ang-po-shih,zhang po,zhang po zhen,长坡,长坡镇 19.34292 110.60773 P PPLA4 CN 31 0 31 Asia/Chongqing 2012-01-18
-1815603 Changping Changping Ch'ang-p'ing-hsu,Changping,Changping Zhen,Ch’ang-p’ing-hsü,Shang-p'ing,Shang-p'ing-hsu,Shang-p’ing,Shang-p’ing-hsü,Sheungp'ing,Sheungp’ing,chang ping,chang ping zhen,changping,常平,常平镇 22.97692 113.99024 P PPLA4 CN 30 0 12 Asia/Chongqing 2012-01-18
-1815611 Changning Changning Changning,zhang ning,长宁 31.21739 121.42105 P PPLA3 CN 23 0 12 Asia/Shanghai 2012-01-18
-1815614 Changning Changning Ch'ang-ning-chen,Ch'ang-ning-cheng,Changning,Changning Zhen,Ch’ang-ning-chen,Ch’ang-ning-cheng,Yu-tz'u,Yu-tz'u-hsien,Yü-tz’u,Yü-tz’u-hsien,zhang ning,zhang ning zhen,长凝,长凝镇 37.6535 112.84741 P PPLA4 CN 24 0 820 Asia/Shanghai 2012-01-18
-1815616 Changning Changning Ch'ang-i-chen,Ch'ang-ning-chen,Changning,Changning Zhen,Ch’ang-i-chen,Ch’ang-ning-chen,Tung-fu-feng,chang ning,chang ning zhen,常宁,常宁镇 34.83056 108.24972 P PPLA4 CN 26 0 1119 Asia/Chongqing 2012-01-18
-1815617 Changning Changning An-ning,An-ning-chen,An-ning-chiao,An-ning-p'u,An-ning-p’u,Ch'ang-ning-hsien,Changning,Ch’ang-ning-hsien,zhang ning,长宁 28.57772 104.92087 P PPLA3 CN 32 0 264 Asia/Chongqing 2012-01-18
-1815618 Yiyang Yiyang Ch'ang-ning-hsien,Changning,Ch’ang-ning-hsien,Tschang-ning,Yiyang,yi yang,宜阳 26.38893 112.37925 P PPLA3 CN 11 0 90 Asia/Chongqing 2012-01-18
-1815620 Changning Changning Ch'ang-ning-hsin-hsu,Changning,Changning Zhen,Ch’ang-ning-hsin-hsü,zhang ning,长宁 23.21543 114.03938 P PPLA4 CN 30 0 17 Asia/Chongqing 2012-01-18
-1815630 Changluo Changluo Ch'ang-lo,Changluo,Changluo Xiang,Ch’ang-lo,zhang luo,zhang luo xiang,长洛,长洛乡 25.80386 115.18225 P PPLA4 CN 03 0 241 Asia/Shanghai 2012-01-18
-1815646 Changling Changling Ch'ang-ling-kang,Changling,Changling Zhen,Changlinggang,Ch’ang-ling-kang,zhang ling,zhang ling zhen,长岭,长岭镇 31.5181 113.58168 P PPLA4 CN 12 0 54 Asia/Chongqing 2012-01-18
-1815652 Changlin Changlin Ch'ang-lin-chen,Changlin,Changlin Zhen,Chanlin'chzhen',Chanlin’chzhen’,Ch’ang-lin-chen,zhang lin,zhang lin zhen,长林,长林镇 33.1434 106.90531 P PPLA4 CN 26 0 523 Asia/Chongqing 2012-01-18
-1815656 Changli Changli Ch'ang-li-ch'eng-kuan,Ch'ang-li-hsien,Changli,Chanli,Ch’ang-li-ch’eng-kuan,Ch’ang-li-hsien,Чанли 39.70417 119.15056 P PPL CN 10 64476 20 Asia/Harbin 2012-01-18
-1815660 Changle Changle Ch'ang-le-chen,Ch'ang-lo,Ch'ang-lo-chen,Changle,Changle Zhen,Changlezhen,Ch’ang-le-chen,Ch’ang-lo,Ch’ang-lo-chen,chang le,chang le zhen,常乐,常乐镇 31.93424 121.24754 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1815667 Changleng Changleng Ch'ang-ling-chen,Ch'ang-t'ou-ling,Changleng,Ch’ang-ling-chen,Ch’ang-t’ou-ling,Hsin-chien,Xinjian 28.7 115.81667 P PPL CN 03 56429 38 Asia/Shanghai 2012-01-18
-1815674 Changle Changle Changle,Changle Zhen,zhang le,zhang le zhen,长乐,长乐镇 29.4565 120.61049 P PPLA4 CN 02 0 58 Asia/Shanghai 2012-01-18
-1815680 Changkou Changkou Ch'ang-k'ou-chen,Changkou,Ch’ang-k’ou-chen,chang kou,场口 29.91278 119.87667 P PPLA4 CN 02 0 17 Asia/Shanghai 2012-01-18
-1815684 Changjie Changjie Ch'ang-chieh,Ch'ang-chieh-chen,Changjie,Changjie Zhen,Changjiezhen,Ch’ang-chieh,Ch’ang-chieh-chen,zhang jie,zhang jie zhen,长街,长街镇 29.25 121.705 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1815698 Changjiang Changjiang Changjiang,Changjiang Zhen,zhang jiang,zhang jiang zhen,长江,长江镇 32.09778 120.56278 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1815701 Changjiang Changjiang Ch'ang-chiang,Ch'ang-chiang-hsu,Changjiang,Changjiang Zhen,Ch’ang-chiang,Ch’ang-chiang-hsü,zhang jiang,zhang jiang zhen,长江,长江镇 25.33183 113.91989 P PPLA4 CN 30 0 199 Asia/Chongqing 2012-01-18
-1815711 Changhua Changhua Ch'ang-hua-hsien,Ch'ang-hua-hsien-chih,Changhua,Changhwa,Changhwahsien,Ch’ang-hua-hsien,Ch’ang-hua-hsien-chih,Wu-lung-chen,chang hua,昌化 30.16833 119.2175 P PPLA4 CN 02 0 125 Asia/Shanghai 2012-01-18
-1815712 Changhua Changhua Changhua,Changhua Zhen,chang hua,chang hua zhen,昌化,昌化镇 19.33087 108.67636 P PPLA4 CN 31 0 8 Asia/Chongqing 2012-01-18
-1815720 Changhe Changhe Ch'ang-ho-shih,Changhe,Changhe Zhen,Changheshi,Ch’ang-ho-shih,Erh-t'ang-t'ou,Erh-t’ang-t’ou,zhang he,zhang he zhen,长河,长河镇 30.22009 121.18331 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-18
-1815722 Changhe Changhe Ch'ang-ho,Ch'ang-ho-chen,Changhe,Changhe Jiedao,Changhe Zhen,Ch’ang-ho,Ch’ang-ho-chen,zhang he,zhang he jie dao,zhang he zhen,长河,长河街道,长河镇 30.17254 120.18667 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-18
-1815731 Changgouhe Changgouhe Ch'ang-kou-ho,Changgouhe,Ch’ang-kou-ho,zhang gou he,长沟河 33.25695 106.63077 P PPLA4 CN 26 0 918 Asia/Chongqing 2012-01-18
-1815743 Changgang Changgang Ch'ang-kang-tien,Changgang,Changgang Zhen,Ch’ang-kang-tien,zhang gang,zhang gang zhen,长岗,长岗镇 31.55109 112.97433 P PPLA4 CN 12 0 205 Asia/Chongqing 2012-01-18
-1815749 Changfeng Changfeng Ch'ang-pan,Changfeng,Ch’ang-pan,chang feng,常丰 34.73473 107.96897 P PPLA4 CN 26 0 1171 Asia/Chongqing 2012-01-18
-1815768 Changcun Changcun Ch'ang-ts'un,Changcun,Ch’ang-ts’un,chang cun,常村 33.53298 113.12212 P PPLA4 CN 09 0 140 Asia/Chongqing 2012-01-18
-1815771 Changchun Changchun Changchun,Changchun Zhen,zhang chun,zhang chun zhen,长春,长春镇 26.72857 120.04014 P PPLA4 CN 07 0 19 Asia/Shanghai 2012-01-18
-1815777 Changchi Changchi Ch'ang-ch'ih,Ch'ang-ch'ih-ch'ang,Changchi,Changchizhen,Ch’ang-ch’ih,Ch’ang-ch’ih-ch’ang,zhang chi,zhang chi zhen,长赤,长赤镇 32.16377 106.65814 P PPL CN 32 1800 732 Asia/Chongqing 2012-01-18
-1815785 Changbu Changbu Changbu,Changbu Zhen,zhang bu,zhang bu zhen,长埠,长埠镇 28.79516 115.62413 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-18
-1815786 Changbu Changbu Ch'ang-pu,Changbu,Changbu Zhen,Ch’ang-pu,zhang bu,zhang bu zhen,长布,长布镇 23.79793 115.43894 P PPLA4 CN 30 0 245 Asia/Shanghai 2012-01-18
-1815799 Chang’an Chang'an Ch'ang-an-chen,Chang'an,Chang'an Zhen,Chang'anzhen,Chang’an,Chang’an Zhen,Chang’anzhen,Chungnan,Ch’ang-an-chen,zhang an,zhang an zhen,长安,长安镇 30.45561 120.44376 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-18
-1815806 Rong’an Rong'an Ch'ang-an-chen,Chang'an,Chang’an,Chongon,Ch’ang-an-chen,Jung-an,Jung-shui,Rong'an,Rong’an,zhang an,长安 25.23333 109.38333 P PPLA3 CN 16 0 122 Asia/Chongqing 2011-09-02
-1815816 Chalu Chalu Ch'a-lu-chieh,Chalu,Chalu Zhen,Ch’a-lu-chieh,cha lu,cha lu zhen,岔路,岔路镇 29.20333 121.31528 P PPLA4 CN 02 0 43 Asia/Shanghai 2012-01-18
-1815820 Chaling Chengguanzhen Chaling Chengguanzhen Ch'a-ling-hsien,Ch'a-ling-hsien-ch'eng,Ch'o-ling,Cha-ling-chow,Chaling Chengguanzhen,Ch’a-ling-hsien,Ch’a-ling-hsien-ch’eng,Ch’o-ling,Tscha-ling,cha ling cheng guan zhen,茶陵城关镇 26.79097 113.53975 P PPLA3 CN 11 0 121 Asia/Shanghai 2012-02-28
-1815827 Chakou Chakou Ch'a-k'ou-chen,Chakou,Chakou Zhen,Ch’a-k’ou-chen,cha kou,cha kou zhen,岔口,岔口镇 29.88845 118.70478 P PPLA4 CN 01 0 140 Asia/Shanghai 2012-01-18
-1815835 Chaiwan Chaiwan Ch'ai-wan-chen,Chaiwan,Chaiwan Zhen,Ch’ai-wan-chen,chai wan,chai wan zhen,柴湾,柴湾镇 32.46667 120.55 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1815839 Chaiqiao Chaiqiao Ch'ai-ch'iao,Ch'ai-ch'iao-chen,Ch'ai-ch'iao-shih,Chaiqiao,Chaiqiao Zhen,Chaiqiaozhen,Ch’ai-ch’iao,Ch’ai-ch’iao-chen,Ch’ai-ch’iao-shih,chai qiao,chai qiao zhen,柴桥,柴桥镇 29.86917 121.91444 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-18
-1815845 Chaihu Chaihu Chaihu,Chaihu Zhen,chai hu,chai hu zhen,柴湖,柴湖镇 30.99176 112.59033 P PPLA4 CN 12 0 42 Asia/Chongqing 2012-01-18
-1815848 Chaicun Chaicun Ch'ai-ts'un,Chaicun,Chaicun Jiedao,Ch’ai-ts’un,Jiancaoping Qu,chai cun,chai cun jie dao,jian cao ping qu,尖草坪区,柴村,柴村街道 37.93278 112.47639 P PPLA3 CN 24 0 834 Asia/Chongqing 2012-01-18
-1815858 Chahe Chahe Ch'a-ho,Ch'a-ho-chen,Chahe,Chahe Zhen,Ch’a-ho,Ch’a-ho-chen,cha he,cha he zhen,岔河,岔河镇 32.35167 120.92056 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1815861 Chahe Chahe Ch'a-ho,Chahe,Chahe Zhen,Ch’a-ho,cha he,cha he zhen,叉河,叉河镇 19.23248 108.93873 P PPLA4 CN 31 0 47 Asia/Chongqing 2012-01-18
-1815872 Chadian Chadian Ch'a-t'ien-tzu,Ch'a-tien,Chadian,Chadian Zhen,Chadianzi,Chadyan'tszo,Chadyan’tszö,Ch’a-tien,Ch’a-t’ien-tzu,cha dian,cha dian zhen,茶店,茶店镇 33.18833 106.46066 P PPLA4 CN 26 0 822 Asia/Chongqing 2012-01-18
-1815875 Chadian Chadian Ch'a-t'en,Ch'a-tien,Cha-ting,Chadian,Ch’a-tien,Ch’a-t’en 39.22472 117.74889 P PPL CN CN 28 3355 1 Asia/Shanghai 2012-01-18
-1815879 Chadian Chadian Ch'a-tien-ch'ang,Chadian,Ch’a-tien-ch’ang 27.58194 109.13278 P PPL CN CN 18 1089 698 Asia/Chongqing 2012-01-18
-1815881 Chadi Chadi Ch'a-ti,Chadi,Chadi Xiang,Ch’a-ti,Dianqian,cha de,cha de xiang,茶地,茶地乡 25.02466 116.58014 P PPLA4 CN 07 0 420 Asia/Shanghai 2012-01-18
-1815888 Chabaihu Chabaihu 39.46556 117.14833 P PPL CN 28 1403 6 Asia/Shanghai 2000-11-21
-1815899 Cewu Cewu Cewu,Cewu Xiang,ce wu,ce wu xiang,策武,策武乡 25.72843 116.34792 P PPLA4 CN 07 0 291 Asia/Shanghai 2012-01-18
-1815913 Cenhe Cenhe Cenhe,Cenhe Zhen,Ts'en-ho,Ts’en-ho,cen he,cen he zhen,岑河,岑河镇 30.27109 112.37049 P PPLA4 CN 12 0 33 Asia/Chongqing 2012-01-18
-1815916 Cengang Cengang Cengang,Cengang Zhen,Cengangzhen,Ling-chiang,Ts'en-kang,Ts'en-kang-chen,Ts’en-kang,Ts’en-kang-chen,cen gang,cen gang zhen,岑港,岑港镇 30.07752 121.99572 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-18
-1815941 Caoyuan Caoyuan Caoyuan,Caoyuan Zhen,cao yuan,cao yuan zhen,曹远,曹远镇 26.03268 117.33304 P PPLA4 CN 07 0 216 Asia/Shanghai 2012-01-18
-1815956 Caoxi Caoxi Caoxi,Caoxi Zhen,Ts'ao-hsi,Ts’ao-hsi,cao xi,曹溪 28.70242 117.34417 P PPLA4 CN 03 0 174 Asia/Shanghai 2012-01-18
-1815963 Caotan Caotan Caotan,Caotan Jieban,Ts'ao-t'an,Ts'ao-t'an-chen,Ts’ao-t’an,Ts’ao-t’an-chen,cao tan,cao tan jie ban,草滩,草滩街办 34.396 108.97071 P PPLA4 CN 26 0 367 Asia/Chongqing 2012-01-18
-1815965 Caota Caota Caota,Caota Zhen,Ts'ao-t'a,Ts'ao-t'a-shih,Ts’ao-t’a,Ts’ao-t’a-shih,cao ta,cao ta zhen,草塔,草塔镇 29.68333 120.13333 P PPLA4 CN 02 0 40 Asia/Shanghai 2012-01-18
-1815978 Caopie Caopie Caopie,Ts'ao-ch'ang-p'ieh,Ts'ao-p'ieh,Ts’ao-ch’ang-p’ieh,Ts’ao-p’ieh 32.86667 120.66667 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1815982 Caoyan Caoyan Caoyan,Caoyan Zhen,Ts'ao-nien,Ts'ao-tien,Ts'ao-tien-chen,Ts'ao-yen,Ts'ao-yen-chen,Ts’ao-nien,Ts’ao-tien,Ts’ao-tien-chen,Ts’ao-yen,Ts’ao-yen-chen,cao yan,cao yan zhen,草堰,草堰镇 32.94777 120.29468 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-18
-1815984 Caomiao Caomiao Caomiao,Caomiao Xiang,Ts'ao-miao,Ts’ao-miao,cao miao,cao miao xiang,草庙,草庙乡 36.02952 106.69967 P PPLA4 CN 21 0 1680 Asia/Chongqing 2012-01-18
-1815987 Caomiao Caomiao Caomiao,Caomiao Zhen,Ts'ao-ch'a-t'ou,Ts’ao-ch’a-t’ou,cao miao,cao miao zhen,草庙,草庙镇 33.04938 120.66848 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1816017 Caojia Caojia Caojia,Caojia Zhen,Ts'ao-an-ts'un,Ts'ao-chia,Ts'ao-chia-ts'un,Ts'ao-ts'un,Ts’ao-an-ts’un,Ts’ao-chia,Ts’ao-chia-ts’un,Ts’ao-ts’un,cao jia,cao jia zhen,曹家,曹家镇 34.24436 107.60684 P PPLA4 CN 26 0 550 Asia/Chongqing 2012-01-18
-1816018 Caojia Caojia Caojia,Caojia Zhen,Caojiazhen,Hezuo,Hezuo Zhen,Ts'ao-chia,Ts'ao-chia-chen,Ts’ao-chia,Ts’ao-chia-chen,cao jia,cao jia zhen,he zuo,he zuo zhen,合作,合作镇,曹家,曹家镇 31.92389 121.63472 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1816026 Caohe Caohe Caohe,Caohe Zhen,Caojiahe,Ch'i-ch'un,Ch’i-ch’un,Qichun,Ts'ao-chia-ho,Ts'ao-ho,Ts'ao-ho-chen,Ts'ao-ho-cheng,Ts'ao-ho-chien,Ts’ao-chia-ho,Ts’ao-ho,Ts’ao-ho-chen,Ts’ao-ho-cheng,Ts’ao-ho-chien,cao he,cao he zhen,漕河,漕河镇 30.2297 115.43346 P PPLA3 CN 12 67370 27 Asia/Shanghai 2012-01-18
-1816028 Weining Weining Caohai,Vehjnin,Wei-ning-hsien,Wei-ning-hsien-i-tsu-hui-tsu-miao-tsu- tzu-chih-ch'u,Wei-ning-hsien-i-tsu-hui-tsu-miao-tsu- tzu-chih-ch’ü,Wei-ning-i-tsu-hui-ysu-miao-tsu-tzu-chih-hsien,Weining,Вэйнин 26.85 104.23333 P PPL CN 18 56744 2169 Asia/Chongqing 2012-01-18
-1816036 Caofang Caofang Caofang,Ts'ao-fang,Ts’ao-fang,cao fang,曹坊 26.06329 116.61708 P PPLA4 CN 07 0 505 Asia/Shanghai 2012-01-18
-1816056 Caocun Caocun Caocun,Caocun Zhen,Ts'ao-ts'un,Ts’ao-ts’un,cao cun,曹村 34.90013 109.20089 P PPLA4 CN 26 0 562 Asia/Chongqing 2012-01-18
-1816066 Caochang Caochang Caochang,Caochang Xiang,Ts'ao-chang-hsu,Ts’ao-chang-hsü,cao chang,cao chang xiang,操场,操场乡 28.07101 114.67265 P PPLA4 CN 03 0 113 Asia/Shanghai 2012-01-18
-1816069 Caobi Caobi Caobi,Caobi Zhen,Ts'ao-pi,Ts'ao-pi-chen,Tsaobichzhen',Tsaobichzhen’,Ts’ao-pi,Ts’ao-pi-chen,cao bi,cao bi zhen,草碧,草碧镇 34.75843 107.02924 P PPLA4 CN 26 0 797 Asia/Chongqing 2012-01-18
-1816080 Cangzhou Cangzhou Canchzhou,Cangzhou,Changhsien,T'sang-chou-shih,Ts'ang-chen,Ts'ang-chou,Ts'ang-hsien,Tsan'syan',Tsang,Tsangchow,Tsan’syan’,Ts’ang-chen,Ts’ang-chou,Ts’ang-hsien,T’sang-chou-shih,cang zhou shi,Цанчжоу,沧州市 38.31667 116.86667 P PPL CN 10 527681 10 Asia/Shanghai 2012-01-18
-1816093 Cangqian Cangqian Cangqian,Ts'ang-ch'ien,Ts'ang-ch'ien-chen,Ts’ang-ch’ien,Ts’ang-ch’ien-chen,cang qian,仓前 30.29093 119.99093 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1816103 Canggang Canggang Canggang,Canggang Zhen,Ts'ang-kang,Ts’ang-kang,cang gang,cang gang zhen,沧港,沧港镇 28.90995 111.88715 P PPLA4 CN 11 0 33 Asia/Shanghai 2012-01-18
-1816110 Cangbu Cangbu Cangbu,Cangbu Jiedao,Ts'ang-pu,Ts’ang-pu,cang bu,cang bu jie dao,仓埠,仓埠街道 30.83414 114.59293 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-18
-1816128 Shangcai Zhongxing Shangcai Zhongxing Caixi,Caixi Zhen,Shangcai Zhongxing,Ts'ai-hsi,Ts’ai-hsi,cai xi,cai xi zhen,shang cai zhong xing,上才中兴,才溪,才溪镇 25.26398 116.41621 P PPLA4 CN 07 0 396 Asia/Shanghai 2012-01-18
-1816135 Caishi Caishi Caishi,Caishi Jiedao,Ts'ai-shih,Ts'ai-shih-chen,Ts’ai-shih,Ts’ai-shih-chen,cai shi,cai shi jie dao,采石,采石街道 31.64842 118.46189 P PPLA4 CN 01 0 7 Asia/Shanghai 2012-01-18
-1816150 Caijiapu Caijiapu 39.17306 117.81056 P PPL CN 28 1660 0 Asia/Shanghai 2000-11-21
-1816151 Caijiapo Caijiapo Caijiapo,Caijiapo Zhen,Ts'ai-chia-p'o,Ts'ai-p'o,Ts'ai-p'o-chen,Ts’ai-chia-p’o,Ts’ai-p’o,Ts’ai-p’o-chen,cai jia po,cai jia po zhen,蔡家坡,蔡家坡镇 34.32742 107.59638 P PPLA4 CN 26 0 518 Asia/Chongqing 2012-01-18
-1816153 Caijiang Caijiang Caijiang,Caijiang Xiang,Ts'ai-chiang,Ts’ai-chiang,cai jiang,cai jiang xiang,蔡江,蔡江乡 26.61378 115.81342 P PPLA4 CN 03 0 297 Asia/Shanghai 2012-01-18
-1816154 Caijiamiao Caijiamiao Caijiamiao,Caijiamiao Xiang,cai jia miao,cai jia miao xiang,蔡家庙,蔡家庙乡 36.05403 107.7185 P PPLA4 CN 15 0 1142 Asia/Chongqing 2012-01-18
-1816160 Caihe Caihe Caihe,Caihe Zhen,Caijiahe,Ts'ai-chia-ho,Ts’ai-chia-ho,cai he,cai he zhen,蔡河,蔡河镇 30.56442 115.40679 P PPLA4 CN 12 0 59 Asia/Shanghai 2012-01-18
-1816162 Caijiagang Caijiagang Caijiachang,Caijiagang,Ts'ai-chia-ch'ang,Ts'ai-chia-kang,Ts’ai-chia-ch’ang,Ts’ai-chia-kang 28.90889 106.33611 P PPL CN CN 33 2000 344 Asia/Chongqing 2012-01-18
-1816169 Caihe Caihe Caihe,Caihe Zhen,Ts'ai-chia-ho,Ts'ai-ho,Ts’ai-chia-ho,Ts’ai-ho,cai he,cai he zhen,蔡河,蔡河镇 31.72546 113.813 P PPLA4 CN 12 0 113 Asia/Shanghai 2012-01-18
-1816176 Caidian Caidian Caidian,Caidian Jiedao,Caidian Qu,Han-yang-hsien,Hanyang,Ts'ai-tien,Ts'ai-tien-chen,Ts’ai-tien,Ts’ai-tien-chen,cai dian,cai dian jie dao,cai dian qu,蔡甸,蔡甸区,蔡甸街道 30.58333 114.03333 P PPLA3 CN 12 71891 24 Asia/Shanghai 2012-01-18
-1816178 Caicun Caicun Caicun,Caicun Zhen,Caicunba,Ma-yuan-k'ou,Ma-yüan-k’ou,Ts'ai-ts'un,Ts'ai-ts'un-pa,Ts’ai-ts’un,Ts’ai-ts’un-pa,cai cun,cai cun zhen,蔡村,蔡村镇 30.7172 118.5504 P PPLA4 CN 01 0 65 Asia/Shanghai 2012-01-18
-1816179 Caicun Caicun Caicun,Caicun Zhen,Ts'ai-ts'un,Ts’ai-ts’un,cai cun,cai cun zhen,蔡村,蔡村镇 39.74391 113.64894 P PPLA4 CN 24 0 1091 Asia/Shanghai 2012-01-18
-1816220 Buji Buji Buji,Buji Jiedao,Pu-chi,Pu-chi-ts'un,Pu-chi-ts’un,Pukak,bu ji,布吉 22.6024 114.1133 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-18
-1816221 Buhe Buhe Buhe,Buhe Zhen,Bukheh,Pu-ho,bu he,bu he zhen,Бухэ,埠河,埠河镇 30.28757 112.22979 P PPLA4 CN 12 106347 39 Asia/Chongqing 2012-01-18
-1816234 Bozhou Bozhou Bochzhou,Boxian,Bozhou,Po,Po-hsien,Pochow,bo zhou,bo zhou shi,Бочжоу,亳州,亳州市 33.87722 115.77028 P PPL CN 01 174140 40 Asia/Shanghai 2012-01-18
-1816235 Bozhou Bozhou Bochzhou,Bozhou,Po-chou,Бочжоу 27.37889 109.27778 P PPL CN CN 11 1150 313 Asia/Chongqing 2012-01-18
-1816246 Boyang Boyang Boyang,Po-yang 26.21167 109.52056 P PPL CN CN 11 1920 388 Asia/Chongqing 2012-01-18
-1816253 Bowang Bowang Bowang,Bowang Zhen,Po-wang,Po-wang-i,bo wang,博望 33.17392 112.74528 P PPLA4 CN 09 0 161 Asia/Chongqing 2012-01-18
-1816254 Bowang Bowang Bowang,Bowang Zhen,Po-wang,Po-wang-chen,bo wang,bo wang zhen,博望,博望镇 31.56278 118.83908 P PPLA4 CN 01 0 10 Asia/Shanghai 2012-01-18
-1816256 Botou Botou Bota,Botou,Botuchzhen',Botuchzhen’,Bozhen,Chiao-ho,Nan-p'i,Nan-p’i,Po-chen,Po-t'ou,Po-t'ou-chen,Po-t’ou,Po-t’ou-chen,Potowchen,Бота 38.06667 116.56667 P PPL CN 10 63045 17 Asia/Shanghai 2012-01-18
-1816260 Boshi Boshi Boshi,Po-shih,Po-shih-chen,bo shi,伯士 34.77018 110.05078 P PPLA4 CN 26 0 350 Asia/Chongqing 2012-01-18
-1816265 Boshan Boshan Boshan,Po-shan,Tzu-po,Tzu-po-shih 36.48333 117.83333 P PPL CN 25 153596 368 Asia/Shanghai 2012-01-18
-1816269 Baicheng Baicheng Baicheng,Baicheng Jiedao,Baise,Bose,Bose Zhen,Boze,Pai-se,Pai-se-chen,Pai-se-hsien,Po-se,Poseh,Poseh-hsien,bai cheng,bai cheng jie dao,bai se,bai se zhen,Бозе,百城,百城街道,百色,百色镇 23.89972 106.61333 P PPLA2 CN 16 90603 136 Asia/Chongqing 2012-01-18
-1816275 Bomei Bomei Bomei,Bomei Zhen,Po-mei,Po-mei-hsu,Po-mei-hsü,bo mei,博美 22.94796 115.78267 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-18
-1816280 Bolian Bolian Bolian,Bolian Zhen,bo lian,bo lian zhen,波莲,波莲镇 19.86865 109.64273 P PPLA4 CN 31 0 35 Asia/Chongqing 2012-01-18
-1816303 Bobai Bobai Bobai,Po-pai,Po-pai-chen,Po-pai-hsien,Pokpak,Pokpak-hsien,bo bai,博白 22.27583 109.97222 P PPLA3 CN 16 0 72 Asia/Chongqing 2012-01-18
-1816304 Bo’ao Bo'ao Bo'ao,Bo'ao Zhen,Bo’ao,Bo’ao Zhen,Po-ao,bo ao,bo ao zhen,博鳌,博鳌镇 19.15993 110.58128 P PPLA4 CN 31 0 6 Asia/Chongqing 2012-01-18
-1816312 Biyong Biyong Biyong,Biyun,Pi-yung 27.18722 109.51 P PPL CN CN 11 1430 284 Asia/Chongqing 2012-01-18
-1816315 Bishui Bishui Bishui,Biyang,Miyang-hsien,Pi-yang,Pi-yang-hsien,mi shui,泌水 32.71786 113.31167 P PPLA3 CN 09 0 142 Asia/Chongqing 2012-01-18
-1816316 Biyang Biyang Biyang,Biyang Zhen,I,I-hsien,Xiangyang,Yi Xian,bi yang,bi yang zhen,yi xian,碧阳,碧阳镇,黟县 29.92885 117.94638 P PPLA3 CN 01 0 203 Asia/Shanghai 2012-01-18
-1816333 Biqiao Biqiao Biqiao,Pi-ch'iao,Pi-chia-ch'iao,Pi-chia-ch’iao,Pi-ch’iao,bi qiao,毕桥 31.01521 119.02152 P PPLA4 CN 01 0 12 Asia/Shanghai 2012-01-18
-1816336 Binzhou Binzhou Beizhen,Binzhou,Hui-min,Pei-chen,Pin-hsien,bin zhou,bin zhou shi,滨州,滨州市 37.36667 118.01667 P PPL CN 25 115893 14 Asia/Shanghai 2012-01-18
-1816338 Luxu Luxu Binyang,Binzhou,Lu-hsu,Lu-hsu-chen,Lu-hsü,Lu-hsü-chen,Luxu,Pin-yang,Pin-yang-hsien,lu wei,芦圩 23.22378 108.80216 P PPLA3 CN 16 70013 117 Asia/Chongqing 2012-01-18
-1816346 Binjiang Binjiang Binjiang,Binjiang Zhen,Pin-chiang,bin jiang,bin jiang zhen,彬江,彬江镇 27.78396 114.55212 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-18
-1816358 Bingfang Bingfang Bingfang,Bingfang Zhen,Ping-fang,bing fang,bing fang zhen,兵房,兵房镇 32.27267 121.29493 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1816370 Gaoyao Gaoyao Biji,Biji Zhen,Bijiguan,Gaoyao,Pei-chi Kuan,Pi-chi Kuan,bi ji,bi ji zhen,gao yao,碧鸡,碧鸡镇,高峣 24.98583 102.6225 P PPLA4 CN 29 0 1903 Asia/Chongqing 2012-01-18
-1816373 Bijie Bijie Bijie,Pi-chieh,Pi-chieh-hsien 27.3125 105.29417 P PPL CN 18 77645 1579 Asia/Chongqing 2012-01-18
-1816401 Biaokou Biaokou Biaokou,Piao-k'ou,Piao-k’ou 39.32083 117.54472 P PPL CN CN 28 8120 4 Asia/Shanghai 2012-01-18
-1816403 Biaojiao Biaojiao Biaojiao,Biaojiao Zhen,Hu-chiao-chen,Piao-chiao,Piao-chiao-chen,biao jiao,biao jiao zhen,彪角,彪角镇 34.43497 107.49699 P PPLA4 CN 26 0 709 Asia/Chongqing 2012-01-18
-1816406 Bianzhuang Bianzhuang Bianzhuang,Cangshan,Hsia-chuang,Pien-chuang,Ts'ang-shan,Ts’ang-shan 34.84861 118.04472 P PPL CN 25 65381 45 Asia/Shanghai 2012-01-18
-1816440 Bengbu Bengbu Bangbu,Behnbu,Bengbu,Pang-fou,Pang-fou-shih,Pang-pu,Peng-pu,bang bu,bang bu shi,Бэнбу,بېڭبۇ شەھىر,蚌埠,蚌埠市 32.94083 117.36083 P PPL CN 01 576648 31 Asia/Shanghai 2012-01-18
-1816442 Benchu Benchu Benchu,Benchu Zhen,P'en-ch'u,P’en-ch’u 26.77111 109.29056 P PPL CN CN 18 1431 284 Asia/Chongqing 2012-01-18
-1816445 Bencha Bencha Bencha,Bencha Zhen,Ping-ch'a,Ping-ch'a-chen,Ping-ch’a,Ping-ch’a-chen 32.53889 120.89667 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1816450 Beizi Beizi Beizi,Beizijie,Pei-tzu-chieh,bei zi,背孜 33.96348 112.60356 P PPLA4 CN 09 0 302 Asia/Chongqing 2012-01-18
-1816457 Beizhouzhuang Beizhouzhuang Beizhouzhuang,Beizhouzhuang Zhen,Pei-chou-chuang,bei zhou zhuang,bei zhou zhuang zhen,北周庄,北周庄镇 39.59804 112.82284 P PPLA4 CN 24 0 1050 Asia/Shanghai 2012-01-18
-1816468 Beizhang Beizhang Beizhang,Beizhang Zhen,Pei-chang,Pei-chang-chuang,bei zhang,bei zhang zhen,北张,北张镇 35.70245 111.1031 P PPLA4 CN 24 0 481 Asia/Chongqing 2012-01-18
-1816469 Beizhang Beizhang Beizhang,Beizhang Zhen,Pei-chang,bei zhang,bei zhang zhen,北漳,北漳镇 29.59139 121.04 P PPLA4 CN 02 0 93 Asia/Shanghai 2012-01-18
-1816481 Beiyulin Beiyulin Beiyulin,Pei-yu-lin,Pei-yü-lin,bei yu lin,北榆林 39.74217 113.56306 P PPLA4 CN 24 0 1177 Asia/Shanghai 2012-01-18
-1816506 Beixin Beixin Beixin,Beixin Zhen,Beixinzhen,Pei-hsin-chen,bei xin,bei xin zhen,北新,北新镇 31.82509 121.50881 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1816512 Beixingqiao Beixingqiao Beixingqiao,Beixingqiao Zhen,Pai-hsin-ch'iao,Pai-hsin-ch’iao,Pei-hsing-ch'iao,Pei-hsing-ch’iao,Ts'ao-chai,Ts’ao-chai,bei xing qiao,bei xing qiao zhen,北兴桥,北兴桥镇 32.17776 121.24181 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1816526 Beiwudu Beiwudu Beiwudu,Beiwudu Zhen,Pei-wu-tu,bei wu du,北舞渡 33.62121 113.6918 P PPLA4 CN 09 0 74 Asia/Shanghai 2012-01-18
-1816543 Beituan Beituan Beituan,Beituan Zhen,bei tuan,bei tuan zhen,北团,北团镇 25.80004 116.7166 P PPLA4 CN 07 0 331 Asia/Shanghai 2012-01-18
-1816544 Beitou Beitou Beitou,Beitou Zhen,bei tou,bei tou zhen,陂头,陂头镇 25 114.58333 P PPLA4 CN 03 0 286 Asia/Chongqing 2012-01-18
-1816545 Beitou Beitou Beitou,Beitou Zhen,bei tou,bei tou zhen,陂头,陂头镇 24.41192 114.28241 P PPLA4 CN 30 0 173 Asia/Chongqing 2012-01-18
-1816557 Beitan Beitan 39.75806 117.44556 P PPL CN 28 1786 3 Asia/Harbin 2000-11-21
-1816575 Beishidian Beishidian Beishidian,Beishidian Zhen,Pei-shih-tien,bei shi dian,bei shi dian zhen,北石店,北石店镇 35.54778 112.89361 P PPLA4 CN 24 0 765 Asia/Chongqing 2012-01-18
-1816625 Beilun Beilun Beilun,Beilun Qu,Beilungang,Beilunqu,Xinqi,Xinqi Zhen,bei lun,bei lun qu,xin qi,xin qi zhen,北仑,北仑区,新碶,新碶镇 29.91917 121.83778 P PPLA3 CN 02 0 4 Asia/Shanghai 2012-01-18
-1816635 Beilizigu Beilizigu Beilizigu,Pei-li-tzu-ku 39.49139 117.465 P PPL CN CN 28 1287 2 Asia/Shanghai 2012-01-18
-1816648 Beiling Beiling Beiling,Beiling Zhen,Pei-ling,Pei-ling-hsu,Pei-ling-hsü,Puiling,bei ling,bei ling zhen,贝岭,贝岭镇 24.58683 115.33885 P PPLA4 CN 30 0 168 Asia/Shanghai 2012-01-18
-1816670 Beijing Beijing BJS,Bac Kinh,Baek-ging,Baekging,Behehzhin,Beijing,Beijing Shi,Beising,Beixin,Beixín,Bejdzing,Bejdżing,Bejing,Beyjing,Báe̤k-gĭng,Béising,Bắc Kinh,Gorad Pekin,Pechin,Pechino,Pechinu,Pechinum,Pecinum,Pei-ching,Pei-ching-shih,Pei-p'ing,Pei-p'ing-shih,Peken,Pekin,Pekin',Pekina,Pekinas,Peking,Pekini,Pekino,Pekín,Pekîn,Peping,Pequim,Pequin,Pequín,Pet-kin,Pet-kîn,Peycing,Pèquin,Pékin,Péqùin,Péycing,be'ijim,be'ijina,be'ijinga,bei jing,bei jing shi,beidjin,beijing si,bijiga,bijing,bijinga,bkyn,buggyeong,byjng,bykyn,byyg'yng,byyzsyng,pakking,peyjin,pkn,Πεκίνο,Бейжің,Бээжин,Бәәҗң балһсн,Горад Пекін,Пекин,Пекинг,Пекін,Пекінґ,Պեկին,בייג'ינג,בייזשינג,بكين,بيكين,بیجنگ,بېيجىڭ,بېيجىڭ شەھىرى,پکن,ބީޖިންގ,बीजिंग,बेइजिङ,বেইজিং,ਬੀਜਿੰਗ,બેઇજિંગ,பெய்ஜிங்,బీజింగ్,ಬೀಜಿಂಗ್,ബെയ്ജിങ്ങ്,බෙයිජිං,ปักกิ่ง,པེ་ཅིང་གྲོང་ཁྱེར།,ပေကျင်းမြို့,პეკინი,ቤዪጂንግ,北京,北京市,베이징 시,북경 39.9075 116.39723 P PPLC CN 22 7480601 49 Asia/Harbin 2011-03-10
-1816693 Beihuaidian Beihuaidian Beihuaidian,Pei-huai-tien,Pei-huai-yu-tien,Pei-huai-yü-tien 39.25528 117.55833 P PPL CN CN 28 8520 3 Asia/Shanghai 2012-01-18
-1816705 Beihai Beihai Behjkhaj,Beihai,Pakhoi,Pei-hai,Pei-hai-shih,Бэйхай 21.48333 109.1 P PPL CN 16 289568 3 Asia/Chongqing 2012-01-18
-1816737 Beidu Beidu Beidu,Beidu Zhen,Pei-tu,Pei-tu-chen,Pei-tu-ts'un,Pei-tu-ts’un,bei du,bei du zhen,北杜,北杜镇 34.4625 108.73444 P PPLA4 CN 26 0 496 Asia/Chongqing 2012-01-18
-1816738 Beidu Beidu Beidu,Beidu Zhen,Pei-tu,Pei-tu-chieh,bei du,北渡 33.70735 113.28712 P PPLA4 CN 09 0 95 Asia/Chongqing 2012-01-18
-1816741 Beidou Beidou Beidou,Beidou Zhen,bei dou,bei dou zhen,北陡,北陡镇 21.87485 112.39572 P PPLA4 CN 30 0 5 Asia/Chongqing 2012-01-18
-1816742 Beidong Beidong Beidong,Beidong Xiang,Pei-tung,Pei-tung-ts'un,Pei-tung-ts’un,bei dong,bei dong xiang,北董,北董乡 35.616 111.54265 P PPLA4 CN 24 0 511 Asia/Chongqing 2012-01-18
-1816751 Beidao Beidao Beidao,Beidao jiedao,Beidaobu,Maji Qu,Pei-tao-pu,T'ien-shui,Tianshui,T’ien-shui,bei dao,bei dao jie dao,mai ji qu,北道,北道街道,麦积区 34.56861 105.89333 P PPLA3 CN 15 74767 1087 Asia/Chongqing 2012-01-18
-1816753 Beidaihehaibin Beidaihehaibin Beidaihehaibin,Bejdajkheh,Pehtaiho,Pehtaiho Beach,Pei-tai-ho Hai-pin,Бейдайхэ 39.82222 119.51806 P PPL CN CN 10 66000 29 Asia/Harbin 2012-01-18
-1816770 Beicheng Beicheng Beicheng,Beicheng Zhen,Pei-ch'eng,Pei-ch'eng-chieh,Pei-ch’eng,Pei-ch’eng-chieh,bei cheng,bei cheng zhen,北城,北城镇 24.42722 102.54833 P PPLA4 CN 29 0 1660 Asia/Chongqing 2012-01-18
-1816779 Beicaoshan Beicaoshan Beicaoshan,Pei-ts'ao-shan,Pei-ts’ao-shan,bei cao shan,北曹山 39.46639 113.1975 P PPLA4 CN 24 0 1033 Asia/Shanghai 2012-01-18
-1816781 Beicang Beicang Beicang,Pei-ts'ang,Pei-ts’ang 39.21861 117.12083 P PPL CN CN 28 7955 7 Asia/Shanghai 2012-01-18
-1816783 Beicaicun Beicaicun 39.48722 117.02556 P PPL CN 28 1237 7 Asia/Shanghai 2000-11-21
-1816790 Beibei Beibei Behj,Beibei,Paipei,Pehpei,Pei-p'ei-ch'ang,Pei-p'ei-kuan-li-chu,Pei-p'ei-shih,Pei-p’ei-ch’ang,Pei-p’ei-kuan-li-chü,Pei-p’ei-shih,Бэй 29.82556 106.43389 P PPL CN 33 112019 230 Asia/Chongqing 2012-01-18
-1816804 Bazi Bazi Bazai,Bazi,Bazi Zhen,Pa Tzu Ping,Pa-tsai,Pa-tzu-hsu,Pa-tzu-hsü,ba zi,ba zi zhen,坝仔,坝仔镇 24.5217 114.11957 P PPLA4 CN 30 0 182 Asia/Chongqing 2012-01-18
-1816807 Bazhou Bazhou Bachzhou,Bachzhun,Bazhong,Bazhou,Pa-chou,Pa-chung,Pa-chung-hsien,Pachow 31.85372 106.7586 P PPLA3 CN 32 0 369 Asia/Chongqing 2012-01-18
-1816821 Bayan Hot Bayan Hot A-la-shan-ch'i,A-la-shan-ch’i,A-la-shan-tso-ch'i,A-la-shan-tso-ch’i,Alashanzuo Qi,Alxa Zuoqi,Bayan Hot,Bayanhaote Zhen,Bayenhot,Bayinhot,Pa-yen-hao-t'e,Pa-yen-hao-t'e-chen,Pa-yen-hao-t'e-shih,Pa-yen-hao-t’e,Pa-yen-hao-t’e-chen,Pa-yen-hao-t’e-shih,Pa-yin-hao-t'e,Pa-yin-hao-t’e,Ting-yuan-ying,Ting-yüan-ying,Tszokhushechzhitszyuy,Tszökhushechzhitszyuy,Tzu-hu,Tzu-hu-she-chih-chu,Tzu-hu-she-chih-chü,a la shan zuo qi,ba yan hao te,ba yan hao te zhen,巴彦浩特,巴彦浩特镇,阿拉善左旗 38.83861 105.66861 P PPLA3 CN 20 0 1529 Asia/Chongqing 2012-01-18
-1816845 Batou Batou Batou,Batou Zhen,Batouzhen,Desheng,Desheng Zhen,Pa-t'ou-chen,Pa-t’ou-chen,T'ou-pa,T’ou-pa,ba tou,ba tou zhen,de sheng,de sheng zhen,坝头,坝头镇,德胜,德胜镇 31.95801 121.16437 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-18
-1816855 Batan Batan Batan,Batan Zhen,Pa-t'an,Pa-t’an,ba tan,ba tan zhen,八滩,八滩镇 34.1425 120.06667 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1816858 Basuo Basuo Basuo,Basuo Zhen,Dongfang Shi,Pa-so,Pa-so-chen,Pasuo,Tung-fang,ba suo,ba suo zhen,dong fang shi,东方市,八所,八所镇 19.0939 108.64727 P PPLA4 CN 31 0 11 Asia/Chongqing 2012-02-02
-1816865 Bashan Bashan Baqiu,Bashan,Bashan Zhen,Ch'ung-jen,Ch'ung-jen-hsien,Ch'ung-jen-hsien-ch'eng,Chongren Xian,Ch’ung-jen,Ch’ung-jen-hsien,Ch’ung-jen-hsien-ch’eng,Hung-ch'i-chen,Hung-ch’i-chen,Ts'un-jen,Tsungjen,Ts’un-jen,ba shan,ba shan zhen,chong ren xian,崇仁县,巴山,巴山镇 27.76823 116.05017 P PPLA3 CN 03 0 63 Asia/Shanghai 2012-01-18
-1816868 Barkam Barkam Ma-erh-k'ang,Maerkang,Ssu-t'u 31.90059 102.22092 P PPLA3 CN CN 32 0 2621 Asia/Chongqing 2006-10-20
-1816872 Baqiu Baqiu Baqiu,Baqiu Zhen,Hsia-chiang,Hsia-chiang-hsien,Siakiang,Siakiang-hsien,Xiajiang,ba qiu,ba qiu zhen,巴邱,巴邱镇 27.5526 115.15164 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-18
-1816874 Baqiao Baqiao Baqiao,Baqiao Zhen,Pa-ch'iao,Pa-ch'iao-chen,Pa-ch'iao-pao,Pa-ch’iao,Pa-ch’iao-chen,Pa-ch’iao-pao,ba qiao,灞桥 34.3183 109.08186 P PPLA4 CN 26 0 405 Asia/Chongqing 2012-01-18
-1816887 Baoyou Baoyou Baoyou,Baoyou Zhen,Le-tung,Ledong,Ledong Lizu Zizhixian,Lo-an,Lo-an-ch'eng,Lo-an-ch’eng,Lo-tung,Lo-tung-hsien,Lok Ang,Pao-yu,Pao-yu-shih,bao you,bao you zhen,le dong li zu zi zhi xian,乐东黎族自治县,抱由,抱由镇 18.74932 109.17172 P PPLA3 CN 31 0 161 Asia/Chongqing 2012-01-18
-1816890 Baoying Baoying Baoying,Pao-ying,Pao-ying-ch'eng,Pao-ying-ch’eng,Pao-ying-hsien 33.22917 119.30917 P PPL CN 04 80292 4 Asia/Shanghai 2012-01-18
-1816904 Baocheng Baocheng Baocheng,Baoting,Baoting Lizu Miaozu Zizhixian,Pao-ch'eng,Pao-ch'eng-chen,Pao-ch’eng,Pao-ch’eng-chen,Pao-t'ing,Pao-t'ing-hsien,Pao-t'ing-shih,Pao-t'ing-ying,Pao-t’ing,Pao-t’ing-hsien,Pao-t’ing-shih,Pao-t’ing-ying,Po Deng,bao cheng,bao ting li zu miao zu zi zhi xian,保亭黎族苗族自治县,保城 18.64028 109.69944 P PPLA3 CN 31 0 54 Asia/Chongqing 2012-01-18
-1816917 Baoshan Baoshan Baoshan,Pao-shan,Pao-shan-ch'eng,Pao-shan-ch’eng,Pao-shan-hsien,bao shan,宝山 31.41639 121.48 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1816924 Langzhong Langzhong Baoning,Lang-chung,Lang-chung-hsien,Langzhong,Pao-ning-fu,Paoning,lang zhong,阆中 31.55037 105.99381 P PPLA3 CN 32 60542 362 Asia/Chongqing 2012-01-18
-1816933 Baokang Chengguanzhen Baokang Chengguanzhen Baokang,Baokang Chengguanzhen,Pao-k'ang,Pao-k'ang-hsien,Pao-k’ang,Pao-k’ang-hsien,bao kang cheng guan zhen,保康城关镇 31.87806 111.25639 P PPLA3 CN 12 0 306 Asia/Chongqing 2012-01-18
-1816950 Baohe Baohe Baohe,Baohezhai,bao he,保和 33.4578 113.52341 P PPLA4 CN 09 0 93 Asia/Chongqing 2012-01-18
-1816971 Baoding Baoding Baodin,Baoding,Ch'ing-yuan-hsien,Ching-yuang,Ch’ing-yüan-hsien,Pao-ting,Pao-ting-shih,Prefettura di Baoding,Tsingyuan,Tsingyuan-hsien,Tsingyüan-hsien,bao ding,bao ding shi,Баодин,保定,保定市 38.85111 115.49028 P PPL CN 10 995652 17 Asia/Shanghai 2012-01-18
-1816979 Baocun Baocun Baocun,Baohe Xiang,bao cun,bao he xiang,包合乡,包村 30.55283 118.12564 P PPLA4 CN 01 0 72 Asia/Shanghai 2012-01-18
-1816981 Baochang Baochang Baochang,Baochang Zhen,Pao-ch'ang,Pao-ch'ang-chen,Pao-ch’ang,Pao-ch’ang-chen,bao chang,bao chang zhen,包场,包场镇 32.05806 121.41661 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-18
-1816985 Bao’an Bao'an Bao'an,Bao'an Zhen,Bao’an,Bao’an Zhen,Pao-an,bao an,bao an zhen,保安,保安镇 35.618 102.06924 P PPLA4 CN 06 0 2379 Asia/Chongqing 2012-01-18
-1816986 Bao’an Bao'an Bao'an,Bao'an Zhen,Bao’an,Bao’an Zhen,Pao-an,Pao-an-chen,bao an,保安 34.15501 109.95423 P PPLA4 CN 26 0 1061 Asia/Chongqing 2012-01-18
-1816987 Bao’an Bao'an Bao'an,Bao'an Zhen,Bao’an,Bao’an Zhen,Pao-an,Pao-an-chen,Pao-an-i,bao an,保安 33.38304 113.23454 P PPLA4 CN 09 0 150 Asia/Chongqing 2012-01-18
-1816988 Bao’an Bao'an Bao'an,Bao'an Zhen,Bao’an,Bao’an Zhen,Pao-an,bao an,bao an zhen,保安,保安镇 30.17291 114.73596 P PPLA4 CN 12 0 31 Asia/Shanghai 2012-01-18
-1816994 Banzhudang Banzhudang Banzhudang,Banzhudang Zhen,Pan-chu-tang,ban zhu dang,ban zhu dang zhen,班竹垱,班竹垱镇 30.05278 112.0075 P PPLA4 CN 12 0 37 Asia/Chongqing 2012-01-18
-1816998 Banyue Banyue Banyue,Banyue Zhen,Pan-yueh,Pan-yüeh,ban yue,ban yue zhen,半月,半月镇 30.61666 111.82822 P PPLA4 CN 12 0 88 Asia/Chongqing 2012-01-18
-1817009 Banshu Banshu Banshu,Banshu Xiang,Pan-shu,ban shu,ban shu xiang,版书,版书乡 30.22949 118.50385 P PPLA4 CN 01 0 267 Asia/Shanghai 2012-01-18
-1817011 Banshi Banshi Banshi,Banshi Zhen,Pan-shih,ban shi,ban shi zhen,版石,版石镇 25.30666 115.35543 P PPLA4 CN 03 0 236 Asia/Shanghai 2012-01-18
-1817028 Banqiao Banqiao Banqiao,Banqiao Zhen,Pan-ch'iao,Pan-ch’iao,ban qiao,板桥 32.99761 113.62124 P PPLA4 CN 09 0 116 Asia/Shanghai 2012-01-18
-1817033 Banqiaodian Banqiaodian Banqiao,Banqiaodian,Banqiaodian Zhen,Pan-ch'iao,Pan-ch’iao,ban qiao dian,ban qiao dian zhen,板桥店,板桥店镇 31.74967 112.51205 P PPLA4 CN 12 0 99 Asia/Chongqing 2012-01-18
-1817048 Majie Majie Banqiao Xiang,Majie,Pan-ch'iao-chieh,Pan-ch’iao-chieh,ban qiao xiang,ma jie,板桥乡,马街 24.6863 103.25861 P PPLA4 CN 29 0 1661 Asia/Chongqing 2012-01-18
-1817049 Banqiao Banqiao Banqiao,Banqiao Zhen,Pan-ch'iao-shih,Pan-ch’iao-shih,ban qiao,ban qiao zhen,板桥,板桥镇 18.80051 108.68424 P PPLA4 CN 31 0 6 Asia/Chongqing 2012-01-18
-1817051 Banpu Banpu Banpu,Banpu Zhen,Kuan-yun,Kuan-yun-hsien,Kuan-yün,Kuan-yün-hsien,Kwanyun,Pan-p'u,Pan-p'u-chen,Pan-p’u,Pan-p’u-chen,ban pu,ban pu zhen,板浦,板浦镇 34.47556 119.24472 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1817062 Banmian Banmian Banmian,Banmian Xiang,Pan-mien,ban mian,ban mian xiang,坂面,坂面乡 26.03442 118.12009 P PPLA4 CN 07 0 165 Asia/Shanghai 2012-01-18
-1817075 Banjing Banjing Banjing,Banjing Zhen,Pan-chin,Pan-ching,Pan-ching-chen,ban jing,ban jing zhen,搬经,搬经镇 32.30556 120.40333 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-18
-1817090 Bangjun Bangjun Bangjun,Pang-chun,Pang-chun-chen,Pang-chün,Pang-chün-chen 39.99111 117.26278 P PPL CN CN 28 7052 31 Asia/Harbin 2012-01-18
-1817097 Bangdong Bangdong Bangdong,Pang-tung-chen 26.97556 109.18583 P PPL CN CN 18 1460 398 Asia/Chongqing 2012-01-18
-1817129 Bamencheng Bamencheng Bamencheng,Pa-men-ch'eng,Pa-men-cheng-chen,Pa-men-ch’eng 39.57778 117.60528 P PPL CN CN 28 3167 6 Asia/Shanghai 2012-01-18
-1817135 Bama Bama Bama,Chiu-wan-kang,Pa-ma,Pa-ma-hsiang,Pa-ma-yao-tsu-tzu-chih-hsien,Wan-kang,Wan-kang-hsien,ba ma,巴马 24.17054 107.24892 P PPLA3 CN 16 0 266 Asia/Chongqing 2012-01-18
-1817165 Baju Baju Baju,Baju Zhen,Pa-chu,Pa-chü,ba ju,ba ju zhen,八巨,八巨镇 34.11667 119.98333 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1817167 Bajing Bajing Bajing,Bajing Zhen,Pa-ching,ba jing,ba jing zhen,八景,八景镇 28.17719 115.48326 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-18
-1817170 Bajie Bajie Bajie,Bajie Zhen,Pa-chieh,ba jie,ba jie zhen,八街,八街镇 24.66917 102.36083 P PPLA4 CN 29 0 1910 Asia/Chongqing 2012-01-18
-1817183 Bajiao Bajiao Bajiao,Bajiao Zhen,Pa-chiao,Pa-chiao-pao,ba jiao,ba jiao zhen,八角,八角镇 39.2147 111.89057 P PPLA4 CN 24 0 1373 Asia/Chongqing 2012-01-18
-1817198 Baizhi Baizhi Baizhi,Baizhi Xiang,Baizhitai,Pai-chih-t'ai,Pai-chih-t’ai,bai zhi,bai zhi tai,bai zhi xiang,柏枝,柏枝乡,柏枝台 29.37615 111.76003 P PPLA4 CN 11 0 57 Asia/Shanghai 2012-01-18
-1817205 Baizhang Baizhang Baizhang,Baizhang Zhen,Pai-chang,Shui-ch'iao-t'ou,Shui-ch’iao-t’ou,bai zhang,bai zhang zhen,百丈,百丈镇 30.52806 119.72472 P PPLA4 CN 02 0 136 Asia/Shanghai 2012-01-18
-1817224 Baiyun Baiyun Baiyun,Baiyun Xiang,Baiyunqiao,bai yun,bai yun qiao,bai yun xiang,白云,白云乡,白云桥 29.63434 111.17814 P PPLA4 CN 11 0 147 Asia/Shanghai 2012-01-18
-1817229 Baiyun Baiyun Baiyun,Pai-yun,Pai-yün 26.03528 118.90639 P PPL CN CN 07 2160 507 Asia/Shanghai 2012-01-18
-1817240 Baiyin Baiyin Aho Chia Chuan,Baiyin,Hao-chia-ch'uan,Hao-chia-ch’uan,Ho-chia-ch'uan,Ho-chia-ch’uan,Pai-yin,Pai-yin-ch'ang,Pai-yin-ch’ang,Pai-yin-shih 36.55833 104.20806 P PPL CN 15 188533 1714 Asia/Chongqing 2012-01-18
-1817242 Baiyi Baiyi Baiyi,Baiyi Zhen,Baiyi'an,Baiyi’an,bai yi,bai yi an,bai yi zhen,白衣,白衣庵,白衣镇 29.4561 111.87348 P PPLA4 CN 11 0 53 Asia/Shanghai 2012-01-18
-1817247 Baiyashi Baiyashi Baiyashi,Dong'an,Dong’an,Pai-ya,Pai-ya-shih,Tung-an,Tung-an-hsien,bai ya shi,白牙市 26.38883 111.26213 P PPLA3 CN 11 0 167 Asia/Chongqing 2012-01-18
-1817274 Baiyang Baiyang Baiyang,Baiyang Zhen,Pai-yang,bai yang,bai yang zhen,白洋,白洋镇 30.42277 111.50874 P PPLA4 CN 12 0 49 Asia/Chongqing 2012-01-18
-1817293 Baixi Baixi Baixi,Baixi Xiang,Pai-hsi,bai xi,bai xi xiang,柏溪,柏溪乡 29.90041 117.79669 P PPLA4 CN 01 0 148 Asia/Shanghai 2012-01-18
-1817294 Baixi Baixi Baixi,Baixi Zhen,I-pin,I-pin-hsien,Pai-ch'i-chen,Pai-ch’i-chen,Pai-hsi-chen,Pai-shu-ch'ang,Pai-shu-ch'i,Pai-shu-ch’ang,Pai-shu-ch’i,Yibin,Yibin Xian,bai xi,bai xi zhen,yi bin xian,宜宾县,柏溪,柏溪镇 28.6997 104.54917 P PPLA3 CN 32 0 296 Asia/Chongqing 2012-01-18
-1817314 Baitu Baitu Baitu,Baitu Zhen,Pai-t'u,Pai-t'u-hsu,Pai-t’u,Pai-t’u-hsü,bai tu,bai tu zhen,白土,白土镇 28.20788 115.98369 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-18
-1817316 Baitu Baitu Baitu,Baitu Zhen,Pai-t'u,Pai-t'u-hsu,Pai-t’u,Pai-t’u-hsü,bai tu,bai tu zhen,白土,白土镇 24.68307 113.52023 P PPLA4 CN 30 0 24 Asia/Shanghai 2012-02-28
-1817331 Baitang Baitang Baitang,Baitang Xiang,Pai-t'ang,Pai-t'ang-tzu,Pai-t'ang-wa,Pai-t’ang,Pai-t’ang-tzu,Pai-t’ang-wa,bai tang,bai tang xiang,白堂,白堂乡 39.44615 112.32626 P PPLA4 CN 24 0 1320 Asia/Chongqing 2012-01-18
-1817333 Baitang Baitang Baitang,Baitang Zhen,Pai-t'ang,Pai-t'ang-hsu,Pai-t’ang,Pai-t’ang-hsü,bai tang,柏塘 23.39656 114.36129 P PPLA4 CN 30 0 36 Asia/Chongqing 2012-01-18
-1817353 Baishun Baishun Baishun,Baishun Zhen,Pai-shun-hsu,Pai-shun-hsü,bai shun,bai shun zhen,百顺,百顺镇 25.19154 114.02044 P PPLA4 CN 30 0 582 Asia/Shanghai 2012-02-28
-1817360 Baishuijiang Baishuijiang Baishuijiang,Baishuijiang Zhen,Bayshuytszyan,Pai-shui-chiang,bai shui jiang,bai shui jiang zhen,白水江,白水江镇 33.57643 106.09393 P PPLA4 CN 26 0 1114 Asia/Chongqing 2012-01-18
-1817368 Shazhou Shazhou Baishui,Pai-shui,Shazhou,Shazhou Zhen,sha zhou,sha zhou zhen,沙州,沙州镇 32.66963 105.48328 P PPLA4 CN 32 0 612 Asia/Chongqing 2012-01-18
-1817369 Baishui Baishui Baishui,Baishui Zhen,Pai-shui,bai shui,bai shui zhen,白水,白水镇 32.25815 106.01631 P PPLA4 CN 32 0 543 Asia/Chongqing 2012-01-18
-1817374 Baishui Baishui Baishui,Baishui Xiang,Pai-shui,bai shui,bai shui xiang,白水,白水乡 28.1897 114.14138 P PPLA4 CN 03 0 217 Asia/Chongqing 2012-01-18
-1817376 Baishui Baishui Baishui,Baishui Zhen,Pai-shui,Pai-shui-chieh,bai shui,bai shui zhen,白水,白水镇 27.07825 115.36529 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-18
-1817389 Baishigou Baishigou Baishigou,Pai-shih-kou,bai shi gou,白石沟 33.37517 106.19377 P PPLA4 CN 26 0 747 Asia/Chongqing 2012-01-18
-1817398 Baishi Baishi Baishi,Pai-yen-t'ang,Pai-yen-t’ang 26.97361 109.44333 P PPL CN CN 18 1965 284 Asia/Chongqing 2012-01-18
-1817406 Baishe Baishe Baishe,Baishe Zhen,Pai-she,Pai-she-shih,Paishechen,bai she,bai she zhen,白舍,白舍镇 27.04042 116.43682 P PPLA4 CN 03 0 117 Asia/Shanghai 2012-01-18
-1817416 Baisha Baisha Baisha,Baisha Zhen,Pai-sha-p'u,Pai-sha-p’u,bai sha,bai sha zhen,白沙,白沙镇 29.9597 115.06426 P PPLA4 CN 12 0 55 Asia/Shanghai 2012-02-02
-1817422 Baishan Baishan Baishan,Lung-sha,Lung-shan,Lung-shan-hsien,Mashan,bai shan,白山 23.731 108.15789 P PPLA3 CN 16 0 430 Asia/Chongqing 2012-01-18
-1817437 Baisha Baisha Baisha,Baisha Zhen,Pai-sha-p'u,Pai-sha-p’u,bai sha,bai sha zhen,白沙,白沙镇 31.13572 113.89435 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-18
-1817443 Baisha Baisha Baisha,Baisha Xiang,Pai-sha,bai sha,bai sha xiang,白沙,白沙乡 28.47256 114.08373 P PPLA4 CN 11 0 168 Asia/Chongqing 2012-01-18
-1817445 Baisha Baisha Baisha,Baisha Zhen,Pai-sha,bai sha,bai sha zhen,白沙,白沙镇 26.95538 115.43459 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-18
-1817446 Baisha Baisha Baisha,Pai-sha 26.52222 110.93111 P PPL CN CN 11 2880 296 Asia/Chongqing 2012-01-18
-1817450 Baisha Baisha Baisha,Baisha Zhen,Pai-sha,bai sha,bai sha zhen,白砂,白砂镇 25.1293 116.59925 P PPLA4 CN 07 0 462 Asia/Shanghai 2012-01-18
-1817453 Baisha Baisha Baisha,Baisha Zhen,Pai-ha-hsu,Pai-ha-hsü,Pai-sha,bai sha,bai sha zhen,白沙,白沙镇 24.09301 113.75912 P PPLA4 CN 30 0 94 Asia/Chongqing 2012-01-18
-1817455 Baisha Baisha Baisha,Baisha Zhen,Pai-sha,Pai-sha-chiu-hsu,Pai-sha-chiu-hsü,Pai-sha-hsu,Pai-sha-hsü,Paksha,bai sha,bai sha zhen,白沙,白沙镇 22.25272 112.58877 P PPLA4 CN 30 0 9 Asia/Chongqing 2012-01-18
-1817464 Baiquesi Baiquesi Baiquesi,Botsioso,Botsiosö,Pai-ch'iao-ssu,Pai-ch’iao-ssu,Po-ch'ueh-ssu,Po-ch’üeh-ssu,bai que si,白雀寺 33.22206 106.07855 P PPLA4 CN 26 0 677 Asia/Chongqing 2012-01-18
-1817468 Tianshĕwang Tianshewang Baiquan,Baiquan Zhen,Baiquanzhen,Pai-ch'uan,Pai-ch'uan-chuang,Pai-ch’üan,Pai-ch’üan-chuang,Tianshewang,Tianshĕwang,bai quan zhen,tian she wang,田舍王,白泉镇 30.07111 122.15083 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-18
-1817474 Baipu Baipu Baipu,Baipu Zhen,Pai-p'u,Pai-p'u-chen,Pai-p’u,Pai-p’u-chen,bai pu,bai pu zhen,白蒲,白蒲镇 32.2475 120.77556 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1817475 Baipu Baipu Baipu,Baipu Zhen,Pai-pu,Po-yung,Po-yung-hsu,Po-yung-hsü,bai bu,bai bu zhen,柏埔,柏埔镇 23.70625 114.84217 P PPLA4 CN 30 0 61 Asia/Chongqing 2012-01-18
-1817509 Baimi Baimi Baimi,Baimi Zhen,Pai-mi,Pai-mi-chen,Ta-pai-mi,Ta-pai-mi-chen,bai mi,bai mi zhen,白米,白米镇 32.50661 120.25184 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-18
-1817518 Baima Baima Baima,Baimashi,Pai-ma-shih,bai ma,白马 29.2421 118.71588 P PPLA4 CN 02 0 377 Asia/Shanghai 2012-01-18
-1817543 Baimajing Baimajing Baimajing,Baimajing Zhen,Pai-ma-ching,Pai-ma-ching-shih,Pak Ma Chow,Pak Ma Kong,Po-mao-chiang,bai ma jing,bai ma jing zhen,白马井,白马井镇 19.71195 109.21801 P PPLA4 CN 31 0 9 Asia/Chongqing 2012-01-18
-1817549 Baima Baima Baima,Baima Xiang,bai ma,bai ma xiang,白马,白马乡 36.59517 107.72568 P PPLA4 CN 15 0 1317 Asia/Chongqing 2012-01-18
-1817552 Baimasi Baimasi Baima,Baimasi,Baimasi Zhen,Pai-ma-shih,bai ma si,bai ma si zhen,白马寺,白马寺镇 30.10208 112.52343 P PPLA4 CN 12 0 29 Asia/Chongqing 2012-01-18
-1817563 Bailu Bailu Bailu,Bailu Zhen,Bailugou,Pai-lu-kou,bai lu,bai lu zhen,百禄,百禄镇 34.05361 119.52222 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1817567 Bailu Bailu Bailu,Bailu Xiang,Pai-lu,Pai-lu-hsu,Pai-lu-hsü,bai lu,bai lu xiang,白鹭,白鹭乡 26.24333 115.1475 P PPLA4 CN 03 0 171 Asia/Shanghai 2012-01-18
-1817572 Bailongmiao Bailongmiao Bailongmiao,Pai-lung-miao,Wujia,Wujia Zhen,bai long miao,wu jia,wu jia zhen,五甲,五甲镇,白龙庙 32.14782 121.20054 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1817584 Bailizhou Bailizhou Bailizhou,Bailizhou Zhen,bai li zhou,bai li zhou zhen,百里洲,百里洲镇 30.40522 111.80041 P PPLA4 CN 12 0 45 Asia/Chongqing 2012-01-18
-1817598 Bailianhe Bailianhe Bailianhe,Bailianhe Xiang,bai lian he,bai lian he xiang,白莲河,白莲河乡 30.59856 115.43579 P PPLA4 CN 12 0 59 Asia/Shanghai 2012-01-18
-1817602 Bailian Bailian Bailian,Bailian Zhen,Pai-lien,bai lian,bai lian zhen,白莲,白莲镇 26.51621 117.3778 P PPLA4 CN 07 0 228 Asia/Shanghai 2012-01-18
-1817619 Baiju Baiju Baiju,Baiju Zhen,Pai-chu,Pai-chu-ch'ang,Pai-chu-chen,Pai-chü,Pai-chü-chen,Pai-chü-ch’ang,Paiku,bai ju,bai ju zhen,白驹,白驹镇 33.06695 120.30809 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1817630 Baijiazhuang Baijiazhuang Baijiazhuang,Baijiazhuang Xiang,Pai-chia-chuang,bai jia zhuang,bai jia zhuang xiang,柏家庄,柏家庄乡 39.36414 113.66637 P PPLA4 CN 24 0 1318 Asia/Shanghai 2012-01-18
-1817648 Baijian Baijian 39.99417 117.20861 P PPL CN 28 1510 31 Asia/Harbin 2000-11-21
-1817677 Baihua Baihua Baihua,bai hua,白花 22.94137 114.64276 P PPLA4 CN 30 0 25 Asia/Chongqing 2012-01-18
-1817698 Baihedian Baihedian Baihe,Baihe Zhen,Baihedian,Pai-ho,bai he dian,bai he zhen,白鹤殿,白鹤镇 29.23486 120.93514 P PPLA4 CN 02 0 118 Asia/Shanghai 2012-01-18
-1817701 Baihe Baihe 22.15 107.23333 P PPL CN 16 63629 186 Asia/Chongqing 2006-01-17
-1817720 Shangyu Shangyu Baiguan,Pai-kuan,Pai-kuan-chen,Pekwan,Pokwan,Shangyu 30.01556 120.87111 P PPL CN CN 02 770000 13 Asia/Shanghai 2010-08-09
-1817729 Baifusi Baifusi Baifusi,Baifusi Zhen,Pai-fu-ssu,bai fu si,bai fu si zhen,百福司,百福司镇 29.20405 109.21945 P PPLA4 CN 12 0 362 Asia/Chongqing 2012-01-18
-1817736 Bai’e Bai'e Bai'e,Bai'e Xiang,Bai’e,Bai’e Xiang,Pai-o,Pai-o-hsu,Pai-o-hsü,bai e,bai e xiang,白鹅,白鹅乡 25.81863 115.60973 P PPLA4 CN 03 0 157 Asia/Shanghai 2012-01-18
-1817749 Baidian Baidian Baidian,Baidian Zhen,Pai-tien,bai dian,bai dian zhen,柏垫,柏垫镇 30.77667 119.24417 P PPLA4 CN 01 0 78 Asia/Shanghai 2012-01-18
-1817751 Baidi Baidi Baidi,Baidi Zhen,Pai-ti,bai de,bai de zhen,白地,白地镇 30.2075 118.37389 P PPLA4 CN 01 0 268 Asia/Shanghai 2012-01-18
-1817766 Baicha Baicha Baicha,Baicha Zhen,Pai-ch'a,Pai-cha-chieh,Pai-chia-chieh,Pai-ch’a,bai cha,bai cha zhen,白槎,白槎镇 29.18409 115.59863 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-18
-1817776 Baibu Baibu Baibu,Baibu Zhen,Baibuting,Pai-pu-t'ing,Pai-pu-t’ing,bai bu,bai bu zhen,百步,百步镇 30.542 120.77751 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1817784 Baibei Baibei Baibei,Baibei Xiang,Pai-p'o,Pai-pei,Pai-p’o,bai bei,bai bei xiang,白陂,白陂乡 27.80398 115.9074 P PPLA4 CN 03 0 91 Asia/Shanghai 2012-01-18
-1817794 Bahuang Bahuang Bahuang,Bahuangchang,Pa-huang-ch'ang,Pa-huang-ch’ang,Pa-wang 27.71806 109.01889 P PPL CN CN 18 1021 308 Asia/Chongqing 2012-01-18
-1817807 Yuquan Yuquan Baguanhe,Yuquan,Yuquan Jiedao,ba guan he,yu quan,yu quan jie dao,巴关河,玉泉,玉泉街道 26.6052 101.60013 P PPLA4 CN 32 0 1113 Asia/Chongqing 2012-01-18
-1817811 Xiaba Xiaba Bagou Xiang,Xiaba,ba gou xiang,xia ba,下巴,巴沟乡 35.2733 100.39765 P PPLA4 CN 06 0 2958 Asia/Chongqing 2012-01-18
-1817827 Badu Badu Badu,Badu Zhen,Ch'ien-yang,Ch’ien-yang,Pa-tu,Pa-tu-chen,ba dou,ba dou zhen,八都,八都镇 27.97639 118.93528 P PPLA4 CN 02 0 283 Asia/Shanghai 2012-01-18
-1817828 Badu Badu Badu,Badu Zhen,Pa-tu,Pa-tu-hsu,Pa-tu-hsü,ba dou,ba dou zhen,八都,八都镇 27.45271 115.25974 P PPLA4 CN 03 0 69 Asia/Shanghai 2012-01-18
-1817829 Badu Badu Badu,Pa-tu 26.81028 119.56417 P PPL CN CN 07 4370 10 Asia/Shanghai 2012-01-18
-1817842 Badaogu Badaogu 39.47333 117.32972 P PPL CN 28 2226 1 Asia/Shanghai 2000-11-21
-1817846 Bada Bada Bada,Hsi-lin,Pa-ta,Pa-ta-chen,Pa-ta-chou,Pa-ta-hsiang,Xilin,ba da,八达 24.59298 105.09324 P PPLA3 CN 16 0 1297 Asia/Chongqing 2012-01-18
-1817858 Babu Babu Babu,Hexian,Ho,Ho-hsien,Pa-pu,Pa-pu-chen,Patpo,Бабу 24.41667 111.51667 P PPL CN 16 65603 109 Asia/Chongqing 2012-01-18
-1817881 Aoyang Aoyang Aoyang,Aoyang Jiedao,Aoyang Zhen,Shang-kao,Shang-kao-hsien,Shang-kao-hsien-ch'eng,Shang-kao-hsien-ch’eng,Shanggao Xian,ao yang,ao yang jie dao,ao yang zhen,shang gao xian,上高县,敖阳,敖阳街道,敖阳镇 28.23896 114.92081 P PPLA3 CN 03 0 54 Asia/Shanghai 2012-01-18
-1817882 Aoyang Aoyang Aoyang,Shou-ning-hsien,Shouning,Showning,Showninghsien,ao yang,鳌阳 27.45889 119.50139 P PPLA3 CN 07 0 767 Asia/Shanghai 2012-01-18
-1817884 Aoxi Aoxi Aoxi,Aoxi Zhen,Le'an Xian,Le’an Xian,Lo-an,Lo-an-hsien,Lo-an-hsien-ch'eng,Lo-an-hsien-ch’eng,ao xi,ao xi zhen,le an xian,乐安县,鳌溪,鳌溪镇 27.42589 115.83643 P PPLA3 CN 03 0 173 Asia/Shanghai 2012-01-18
-1817887 Aotou Aotou Ao-t'ou-hsu,Ao-t’ou-hsü,Aotou,Aotou Zhen,ao tou,鳌头 23.62089 113.41873 P PPLA4 CN 30 0 35 Asia/Chongqing 2012-01-18
-1817889 Aotou Aotou Ao-t'ou-chiang,Ao-t’ou-chiang,Aotou,Aotou Jiedao,Otow,Outaokong,Outau,ao tou,澳头 22.72177 114.53083 P PPLA4 CN 30 0 15 Asia/Chongqing 2012-01-18
-1817890 Aoshi Aoshi Ao-shih,Ao-shih-ts'un,Ao-shih-ts’un,Aoshi,Aoshi Xiang,ao shi,ao shi xiang,鳌石,鳌石乡 39.96675 113.96587 P PPLA4 CN 24 0 891 Asia/Shanghai 2012-01-18
-1817891 Aoshi Aoshi Ao-shih,Ao-yu-tsui,Ao-yü-tsui,Aoshi,Aoshi Zhen 26.40167 109.07111 P PPL CN CN 18 1911 453 Asia/Chongqing 2012-01-18
-1817928 Fucheng Fucheng An-tse,Anze,Anze Fuchengzhen,Anze Xian,Fu-ch'eng,Fu-ch'eng-chen,Fu-ch'eng-tien,Fu-ch’eng,Fu-ch’eng-chen,Fu-ch’eng-tien,Fucheng,Fucheng Zhen,an ze fu cheng zhen,an ze xian,fu cheng,fu cheng zhen,安泽县,安泽府城镇,府城,府城镇 36.14684 112.23351 P PPLA3 CN 24 0 938 Asia/Chongqing 2012-01-18
-1817934 Anyuan Anyuan An-yuan-hsun,An-yüan-hsün,Anyuan,an yuan,安远 26.5769 116.67586 P PPLA4 CN 07 0 410 Asia/Shanghai 2012-01-18
-1817938 Anyi Anyi An-i,An-i Old City,An-i-ch'eng,An-i-chen,An-i-chiu-ch'eng,An-i-chiu-chih,An-i-chiu-ch’eng,An-i-ch’eng,An-i-hsien,Anyi,Anyi Jiedao,Lu-ts'un,Lu-ts’un,an yi,an yi jie dao,安邑,安邑街道 35.05611 111.03361 P PPLA4 CN 24 0 359 Asia/Chongqing 2012-01-18
-1817946 Anyang Anyang Anyang,Du'an,Du’an,Tu-an,Tu-an-hsien,Tu-an-yao-tsu-tzu-chih-hsien,an yang,安阳 23.9472 108.0861 P PPLA3 CN 16 0 360 Asia/Chongqing 2012-01-18
-1817952 Anxiang Anxiang An-hsiang,An-hsiang-hsien,Ansiang,Ansiang-hsien,Anxiang,Anxiang Chengguanzhen,an xiang,an xiang cheng guan zhen,安乡,安乡城关镇 29.4 112.15 P PPLA3 CN 11 57769 33 Asia/Chongqing 2012-01-18
-1817955 Anxi Anxi An-hsi,An-hsi-hsu,An-hsi-hsü,Anxi,Anxi Zhen,an xi,an xi zhen,安西,安西镇 25.20229 115.07538 P PPLA4 CN 03 0 177 Asia/Shanghai 2012-01-18
-1817958 Anwen Anwen An-wen-chen,Anwen,Anwen Zhen,P'an-an,P’an-an,an wen,an wen zhen,安文,安文镇 29.05951 120.43768 P PPLA4 CN 02 0 242 Asia/Shanghai 2012-01-18
-1817962 Anting Anting An-t'ing-chen,An-t’ing-chen,Anting,an ting,安亭 31.2989 121.1576 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-18
-1817968 Anshun Anshun An'shun',An-shun-hsien,An-shun-hsien-ch'eng,An-shun-hsien-ch’eng,An-shun-shih,Anshun,Anshunfu,P'u-ting,P’u-ting,Аньшунь 26.25 105.93333 P PPL CN 18 351936 1374 Asia/Chongqing 2012-01-18
-1817975 Ansha Ansha Ansha,Ansha Zhen,an sha,an sha zhen,安砂,安砂镇 26.03143 117.12411 P PPLA4 CN 07 0 214 Asia/Shanghai 2012-01-18
-1817977 Anrong Anrong An-jung,An-ying-ts'un,An-ying-ts’un,Anrong,Anrong Xiang,an rong,an rong xiang,安荣,安荣乡 39.47 112.81472 P PPLA4 CN 24 0 1021 Asia/Shanghai 2012-01-18
-1817986 Anren Anren Anren,an ren,安仁 26.96931 117.43166 P PPLA4 CN 07 0 354 Asia/Shanghai 2012-01-18
-1817987 Anren Chengguanzhen Anren Chengguanzhen An-jen,An-jen-hsien,Anren,Anren Chengguanzhen,an ren cheng guan zhen,安仁城关镇 26.6863 113.28037 P PPLA3 CN 11 0 91 Asia/Chongqing 2012-01-18
-1817990 Anqiu Anqiu An-ch'iu,An-ch'iu-hsien,An-ch’iu,An-ch’iu-hsien,An-kiu,Ankiuhsien,Anqiu 36.43417 119.1925 P PPL CN 25 105665 58 Asia/Shanghai 2012-01-18
-1817993 Anqing Anqing An'cin,An-ch'ing,An-ch'ing-ch'eng,An-ch'ing-shih,An-ch’ing,An-ch’ing-ch’eng,An-ch’ing-shih,Anking,Anqing,Huai-ning,Huai-ning-hsien,Hwaining,Hwaining-hsien,Nganking,an qing,an qing shi,anching,Аньцин,ئەنچىڭ شەھىرى,安庆,安庆市,安慶,안칭 30.50917 117.05056 P PPL CN 01 358661 18 Asia/Shanghai 2012-01-18
-1818004 Mabai Mabai Anping,Ma-kuan,Ma-kuan-hsien,Ma-pai-kuan,Mabai,Maguan,Makwan,Makwan-hsien,Mapai,ma bai,马白 23.01279 104.45081 P PPLA3 CN 29 63569 1501 Asia/Chongqing 2012-01-18
-1818012 Anmenkou Anmenkou An-men-chen,An-men-k'ou-chen,An-men-k’ou-chen,Anmenkou,Anmenkou Zhen,K'ang,K'ang-hsien,K’ang,K’ang-hsien,an men kou,an men kou zhen,岸门口,岸门口镇 33.27783 105.6269 P PPLA4 CN 15 0 1258 Asia/Chongqing 2012-01-18
-1818016 Anlu Anlu An-lu-hsien,Anlu,Te-an,Tean-fu,Teian,Teianfu,an lu,安陆 31.2575 113.67833 P PPLA3 CN 12 71198 49 Asia/Chongqing 2012-01-18
-1818023 Anliang Anliang Anliang,Anliang Zhen,an liang,安良 34.04488 113.26256 P PPLA4 CN 09 0 132 Asia/Chongqing 2012-01-18
-1818029 Anle Anle An-le-ts'un,An-le-ts’un,Anle,Anle Zhen,an le,安乐 34.59676 109.01777 P PPLA4 CN 26 0 402 Asia/Chongqing 2012-01-18
-1818030 Anle Anle An-le-chai,An-lo-chai,Anle,Anle Zhen,an le,an le zhen,安乐,安乐镇 34.22143 107.66149 P PPLA4 CN 26 0 622 Asia/Chongqing 2012-01-18
-1818032 Xinggongxia Xinggongxia Anle,Xinggongxia,an le,xing gong xia,安乐,行宫下 26.11232 116.73385 P PPLA4 CN 07 0 357 Asia/Shanghai 2012-01-18
-1818039 Anju Anju An-chu,An-chu-chen,An-chü,An-chü-chen,Anchushui,Anju,Anju Zhen,Ankuchen,an ju,an ju zhen,安居,安居镇 31.74502 113.2004 P PPLA4 CN 12 0 77 Asia/Chongqing 2012-01-18
-1818041 Anju Anju An-chu,An-chü,Anju,Anjuba,an ju,安居 30.34956 105.45594 P PPLA3 CN 32 0 290 Asia/Chongqing 2012-01-18
-1818051 Anjiang Anjiang An-chiang,An-chiang-chen,Anjiang,Ankiang,Ch'ien-yang,Ch'ien-yang-hsien,Ch’ien-yang,Ch’ien-yang-hsien,Qianyang 27.31944 110.10306 P PPL CN 11 55421 196 Asia/Chongqing 2012-01-18
-1818062 Anhua Anhua Anhua,Anhua Zhen,an hua,an hua zhen,安化,安化镇 33.50528 105.04782 P PPLA4 CN 15 0 1442 Asia/Chongqing 2012-01-18
-1818063 Anhua Anhua An-hua-chen,An-hua-shih,Anhua,Anhua Zhen,an hua,an hua zhen,安华,安华镇 29.55844 120.11413 P PPLA4 CN 02 0 24 Asia/Shanghai 2012-01-18
-1818081 Angao Angao An-kao,Angao,Angao Zhen,an gao,an gao zhen,安皋,安皋镇 33.11602 112.38367 P PPLA4 CN 09 0 168 Asia/Chongqing 2012-01-18
-1818085 Anfusi Anfusi An-fu,An-fu-shih,An-fu-ssu,Anfusi,Anfusi Zhen,Antushih,an fu si,an fu si zhen,安福寺,安福寺镇 30.52505 111.58549 P PPLA4 CN 12 0 79 Asia/Chongqing 2012-01-18
-1818086 Naxi Naxi Anfu,Na-ch'i,Na-ch'i-hsien,Na-ch’i,Na-ch’i-hsien,Na-hsi,Naxi,na xi,纳溪 28.77422 105.36488 P PPLA3 CN 32 0 253 Asia/Chongqing 2012-01-18
-1818087 Anfu Anfu An-fu-hsu,An-fu-hsü,Anfu,Anfu Xiang,an fu,an fu xiang,安福,安福乡 26.62741 115.96935 P PPLA4 CN 03 0 232 Asia/Shanghai 2012-01-18
-1818092 Anfeng Anfeng An-feng-chen,Anfeng,Anfeng Zhen,Pei-an,Pei-an-feng,Pei-an-feng-chen,an feng,an feng zhen,安丰,安丰镇 33.0894 120.09648 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-18
-1818093 Anfeng Anfeng An-feng-chen,Anfeng,Anfeng Zhen,an feng,an feng zhen,安丰,安丰镇 32.73281 120.39844 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-18
-1818097 Andun Andun An-tun,Andun,an dun,安墩 23.19161 114.99757 P PPLA4 CN 30 0 69 Asia/Chongqing 2012-01-18
-1818098 Andongwei Andongwei An-tung-chieh,An-tung-wei,Andongwei,Andongwei Jiedao,Lanshan Qu,an dong wei,an dong wei jie dao,lan shan qu,安东卫,安东卫街道,岚山区 35.10722 119.30889 P PPLA3 CN 25 0 4 Asia/Shanghai 2012-01-18
-1818099 Andong Andong An-tung,An-tung-shih,Andong,Andong Zhen,Andongzhen,an dong,an dong zhen,庵东,庵东镇 30.26823 121.21582 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-18
-1818113 Anchang Anchang An-ch'ang-shih,An-ch’ang-shih,Anchang,Anchang Zhen,an chang,an chang zhen,安昌,安昌镇 30.14072 120.48511 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-18
-1818116 Anbu Anbu An-pu,Anbu,Anbu Zhen,an bu,庵埠 23.44895 116.68092 P PPLA3 CN 30 162964 15 Asia/Shanghai 2012-01-18
-1818130 Altan Xiret Altan Xiret A-t'eng-hsi-lien,A-t’eng-hsi-lien,Altan Xiret,Atengxilian,Atengxilian Zhen,Ejin Horo Qi,I-chin-huo-lo-ch'i,I-chin-huo-lo-ch’i,Yijinhuoluo Qi,a teng xi lian,a teng xi lian zhen,yi jin huo luo qi,伊金霍洛旗,阿腾席连,阿腾席连镇 39.57722 109.75278 P PPLA4 CN 20 0 1314 Asia/Chongqing 2012-01-18
-1818164 Aicheng Aicheng Aicheng,Aicheng Zhen,Chien-ch'ang,Chien-ch’ang,Kienchang,Kienchanghsien,Yung-hsiu,Yung-hsiu-hsien,Yunghu,Yungsiu,ai cheng,ai cheng zhen,艾城,艾城镇 29.08816 115.76168 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-18
-1818177 Aba Aba A-pa,Aba,Chung-a-pa,Mai-sang,Ngawa,a ba,阿坝 32.90219 101.70666 P PPLA3 CN 32 0 3277 Asia/Chongqing 2012-01-18
-1881319 Qiantong Qiantong Ch'ien-t'ung,Ch’ien-t’ung,Qiantong,Qiantong Zhen,Qiantongzhen,qian tong,qian tong zhen,前童,前童镇 29.22461 121.35255 P PPLA4 CN 02 0 28 Asia/Shanghai 2012-01-19
-1881436 Tianyuan Tianyuan T'ien-yuan-shih,Tianyuan,Tianyuan Zhen,T’ien-yüan-shih,tian yuan,tian yuan zhen,天元,天元镇 30.1997 121.18155 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-19
-1881450 Langxia Jiedao Langxia Jiedao Lang-hsia-chen,Langxia,Langxia Jiedao,Langxia Zhen,lang xia,lang xia jie dao,lang xia zhen,朗霞,朗霞街道,朗霞镇 30.16778 121.075 P PPLA3 CN 02 0 7 Asia/Shanghai 2012-01-19
-1881544 Lóumenkou Loumenkou Loumenkou,Lóumenkou,Ma'ao,Ma'ao Zhen,Ma'aozhen,Ma-ao (2),Ma’ao,Ma’ao Zhen,Ma’aozhen,lou men kou,ma ao,ma ao zhen,楼门口,马岙,马岙镇 30.11377 122.0867 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-19
-1881568 Xiaosha Xiaosha Hsiao-sha-chuang,Xiaosha,Xiaosha Zhen,xiao sha,xiao sha zhen,小沙,小沙镇 30.10779 122.05779 P PPLA4 CN 02 0 39 Asia/Shanghai 2012-01-19
-1881661 Yanguan Yanguan Guodian,Guodian Zhen,Kuo-tien-chen,Yanguan,Yanguan Zhen,guo dian,guo dian zhen,yan guan,yan guan zhen,盐官,盐官镇,郭店,郭店镇 30.45607 120.54673 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-19
-1881670 Qingyunqiao Qingyunqiao Ch'ing-shih-ch'iao,Ch’ing-shih-ch’iao,Qingyun,Qingyun Zhen,Qingyunqiao,Xieqiao Zhen,qing yun qiao,qing yun zhen,xie qiao zhen,庆云桥,庆云镇,斜桥镇 30.49812 120.61035 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1881686 Maqiao Maqiao Ma-ch'iao-chen,Ma-ch’iao-chen,Maqiao,Maqiao Jiedao,Maqiao Zhen,ma qiao,ma qiao jie dao,ma qiao zhen,马桥,马桥街道,马桥镇 30.46449 120.69792 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-19
-1881715 Nankai Nankai Lieh-pao,Nankai,Nankai Xiang,nan kai,nan kai xiang,南开,南开乡 19.08 109.4086 P PPLA4 CN 31 0 269 Asia/Chongqing 2012-01-19
-1881727 Baisha Baisha Baisha,Baishazhen,Ta-ts'un,Ta-ts’un,bai sha,bai sha zhen,白沙,白沙镇 19.19142 109.44787 P PPLA4 CN 31 0 222 Asia/Chongqing 2012-01-19
-1881852 Xinwan Xinwan Hsin-wan-ti,Xinwan,Xinwan Zhen,xin wan,xin wan zhen,新湾,新湾镇 30.27889 120.53857 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-19
-1881858 Dangshan Dangshan Dangshan,Dangshan Zhen,Tang-shan-shih,dang shan,dang shan zhen,党山,党山镇 30.16443 120.519 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-19
-1884688 Xiepu Xiepu Chueh-tu-ssu,Xiepu,Xiepuzhen,xie pu,xie pu zhen,澥浦,澥浦镇 30.02364 121.58913 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-19
-1885287 Tiaolou Tiaolou Tiaolou,Tiaolou Zhen,diao lou,diao lou zhen,调楼,调楼镇 19.93877 109.53503 P PPLA4 CN 31 0 6 Asia/Chongqing 2012-01-19
-1885397 Changliu Changliu Changliu,Changliu Zhen,Na-liu-shih,zhang liu,zhang liu zhen,长流,长流镇 20.01327 110.20087 P PPLA4 CN 31 0 31 Asia/Chongqing 2012-01-19
-1885400 Zhonghe Zhonghe Chiu-tan-hsien,Zhonghe,Zhonghe Zhen,zhong he,zhong he zhen,中和,中和镇 19.74276 109.34492 P PPLA4 CN 31 0 10 Asia/Chongqing 2012-01-19
-1885443 Tayang Tayang Tayang,Tayang Zhen,ta yang,ta yang zhen,塔洋,塔洋镇 19.29135 110.5047 P PPLA4 CN 31 0 15 Asia/Chongqing 2012-01-19
-1885660 Dingdian Dingdian Dingdian,ding dian,丁店 32.22353 121.29807 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-19
-1885696 Zhengyu Zhengyu Zhengyu,Zhengyu Zhen,zheng yu,zheng yu zhen,正余,正余镇 32.06482 121.36194 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-19
-1885697 Huolong Huolong Huo-lung-chen,Huolong,Huolong Zhen,Huolongzhen,huo long,huo long zhen,货隆,货隆镇 32.05632 121.27076 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-19
-1885698 Antou Antou An-t'ou-chen,An-t’ou-chen,Antou,Antou Zhen,Antouzhen,Wanghao,Wanghao Zhen,an tou,an tou zhen,wang hao,wang hao zhen,岸头,岸头镇,王浩,王浩镇 32.06139 121.31686 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-19
-1885709 Yangshiqiao Yangshiqiao Xingdong,Xingdong Zhen,Yangshiqiao,xing dong,xing dong zhen,yang shi qiao,兴东,兴东镇,杨世桥 32.08265 120.96828 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-19
-1885823 Jiangyou Jiangyou 31.76667 104.71667 P PPL CN 32 127225 527 Asia/Chongqing 2006-01-17
-1885912 Xinjie Xinjie Xinjie,Xinjie Zhen,xin jie,xin jie zhen,新街,新街镇 32.67953 120.77342 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-19
-1886026 Sanxutou Sanxutou Sanxutou,Xianfeng,Xianfeng Zhen,san wei tou,xian feng,xian feng zhen,三圩头,先锋,先锋镇 32.009 120.97517 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1886046 Pingdong Pingdong Pingdong,Pingdong Zhen,ping dong,ping dong zhen,平东,平东镇 32.13639 120.79167 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1886064 Yeyatan Yeyatan Xinlin,Yeyatan,xin lin,ye ya tan,新林,野鸭滩 32.5608 120.4944 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1886076 Hekou Hekou Hekou,Hekou Zhen,he kou,he kou zhen,河口,河口镇 32.49038 120.8215 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-19
-1886278 Wanying Wanying Wanying,Wanying Zhen,wan ying,wan ying zhen,万盈,万盈镇 33.04867 120.57089 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-19
-1886760 Suzhou Suzhou Su-chou,Su-cou,Su-čou,Suchzhou,Suzhou,To Chau,Tô Châu,Wu-hsien,su zhou,su zhou shi,swjw,Сучжоу,سوجو,سۇجۇ شەھىرى,苏州,苏州市,蘇州 31.31139 120.61806 P PPL CN 04 1343091 13 Asia/Shanghai 2012-01-19
-1886762 Zhoushan Shi Zhoushan Shi Chzhoushan',Dinghai,Ting-hai,Zhoushan,Zhoushan Shi,zhou shan,zhou shan shi,Чжоушань,舟山,舟山市 30.01075 122.20465 P PPLA3 CN 02 84380 3 Asia/Shanghai 2012-01-19
-1886840 Goushan Goushan Goushan,Goushan Jiedao,Goushanzhen,Kou-shan,gou shan,gou shan jie dao,gou shan zhen,勾山,勾山街道,勾山镇 29.9805 122.24214 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-19
-1887068 Fuming Fuming Fuming,Fuming Jiedao,fu ming,fu ming jie dao,福明,福明街道 29.87316 121.60186 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-19
-1887070 Shiqi Shiqi Shih-ch'i,Shih-ch’i,Shiqi,Shiqi Zhen,shi qi,shi qi zhen,石碶,石碶镇 29.8225 121.50444 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-19
-1887071 Zhonggongmiao Zhonggongmiao Zhonggongmiao,Zhonggongmiao Zhen,zhong gong miao,zhong gong miao zhen,钟公庙,钟公庙镇 29.82611 121.5375 P PPLA4 CN 02 0 3 Asia/Shanghai 2012-01-19
-1887078 Xiaying Xiaying Hsia-ying-chen,Xiaying,Xiaying Zhen,xia ying,xia ying zhen,下应,下应镇 29.80472 121.59139 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1887083 Yunlong Yunlong Yun-lung-ch'i-chen,Yunlong,Yunlong Zhen,Yunlongzhen,Yün-lung-ch’i-chen,yun long,yun long zhen,云龙,云龙镇 29.7744 121.59184 P PPLA4 CN 02 0 3 Asia/Shanghai 2012-01-19
-1887101 Dongwu Dongwu Dongwu,Dongwu Zhen,Tung-wu-chen,dong wu,dong wu zhen,东吴,东吴镇 29.80889 121.7225 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1887171 Qidong Yanchang Qidong Yanchang Qidong Yanchang,Qidongyanchang,qi dong yan chang,启东盐场 31.91128 121.83894 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-19
-1887177 Jinhai Jinhai Jinhai,jin hai,近海 31.9175 121.77885 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-19
-1887188 Huiping Huiping Huiping,Huiping Zhen,hui ping,hui ping zhen,惠萍,惠萍镇 31.76408 121.77791 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-19
-1887194 Donghai Donghai Donghai,Donghai Zhen,Donghaizhen,dong hai,dong hai zhen,东海,东海镇 31.76841 121.87051 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-19
-1887204 Hehe Hehe Hehe,Hehe Zhen,Ho-ho Chen,he he,he he zhen,和合,和合镇 31.73836 121.80341 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-19
-1887218 Dajiahe Dajiahe Dajiahe,Dajiahe Zhen,Ta-chu-ho,Ta-chü-ho,da jia he,da jia he zhen,大佳何,大佳何镇 29.42889 121.55056 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-19
-1887674 Sizhoutou Sizhoutou Sizhoutou,Sizhoutou Zhen,Sizhoutouzhen,Ssu-chou-t'ou,Ssu-chou-t’ou,si zhou tou,si zhou tou zhen,泗洲头,泗洲头镇 29.37278 121.7675 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-19
-1887681 Xinqiao Xinqiao Hsin-ch'iao-chen,Hsin-ch’iao-chen,Xinqiao,Xinqiao Zhen,xin qiao,xin qiao zhen,新桥,新桥镇 29.31778 121.86167 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-19
-1887715 Tuci Tuci T'u-tz'u-chen,Tuci,Tuci Zhen,T’u-tz’u-chen,tu ci,tu ci zhen,涂茨,涂茨镇 29.55722 121.93361 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1887722 Xianxiang Xianxiang Hsien-yang,Xianxiang,Xianxiang Zhen,Xianyangzhen,xian xiang,xian xiang zhen,贤庠,贤庠镇 29.58778 121.84278 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-19
-1887762 Baifeng Baifeng Baifeng,Baifeng Zhen,Pai-feng-ts'un,Pai-feng-ts’un,bai feng,bai feng zhen,白峰,白峰镇 29.87778 121.99194 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-19
-1887772 Xiapu Xiapu Hsia-p'u-chen,Hsia-p’u-chen,Xiapu,Xiapu Zhen,xia pu,xia pu zhen,霞浦,霞浦镇 29.88902 121.8803 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1887803 Li’ao Li'ao Li'ao,Li-ao,Li’ao,Meishan,li ao,mei shan,梅山,里岙 29.79833 121.98889 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-19
-1887870 Tianfen Tianfen Tianfen,Tianfen Zhen,tian fen,tian fen zhen,天汾,天汾镇 32.06308 121.54158 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-19
-1887894 Caobu Caobu Caobu,Caobu Zhen,Ts'ao-chia-fou,Ts’ao-chia-fou,cao bu,cao bu zhen,曹埠,曹埠镇 32.24639 121.08563 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-19
-1887909 Zhangjiayuan Zhangjiayuan Chang-chia-yuan,Chang-chia-yüan,Huangang,Huangang Zhen,Zhangjiayuan,huan gang,huan gang zhen,zhang jia yuan,张家园,环港,环港镇 32.45398 121.09201 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1887918 Shajiazhuang Shajiazhuang Lingmin,Sha-chia-chuang,Shajiazhuang,ling min,sha jia zhuang,凌民,沙家庄 32.38477 121.04095 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1888069 Wujie Wujie Wu-chieh-ch'iao,Wu-chieh-ch’iao,Wujie,Wujie Zhen,wu jie,wu jie zhen,五接,五接镇 32.09306 120.68889 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-19
-1892640 Lincheng Jiedao Lincheng Jiedao Lincheng Jiedao,Linchengzhen,lin cheng jie dao,lin cheng zhen,临城街道,临城镇 29.99646 122.20041 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-19
-1892721 Jiguan Jiguan Chi-kuan-chiao-ts'un,Chi-kuan-chiao-ts’un,Dengbu,Dengbuxiang,Jiguan,deng bu,deng bu xiang,ji guan,登步,登步乡,鸡冠 29.8798 122.2963 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-19
-1892727 Gongqian Gongqian Gongqian,Kuan-chien-ts'un,Kuan-chien-ts’un,Taohua,Taohua Zhen,Taohuazhen,gong qian,tao hua,tao hua zhen,公前,桃花,桃花镇 29.83279 122.2765 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-19
-1893193 Shahe Shahe Sha-ho,Shahe,Shahe Zhen,sha he,sha he zhen,沙河,沙河镇 23.99417 112.87917 P PPLA4 CN 30 0 43 Asia/Chongqing 2012-01-19
-1893246 Wangniudun Wangniudun Wang-niu-tun,Wangniudun,Wanniudun Zhen,wang niu dun,望牛墩 23.05329 113.64742 P PPLA4 CN 30 0 5 Asia/Chongqing 2012-01-19
-1893595 Dacheng Dacheng Dacheng,Dacheng Zhen,Ta-ch'eng,Ta-ch’eng,da cheng,da cheng zhen,大成,大成镇 19.50927 109.39275 P PPLA4 CN 31 0 133 Asia/Chongqing 2012-01-19
-1893972 Laocheng Laocheng Chiu-ch'eng-mai,Chiu-ch’eng-mai,Laocheng,Laocheng Zhen,lao cheng,lao cheng zhen,老城,老城镇 19.96422 110.11933 P PPLA4 CN 31 0 15 Asia/Chongqing 2012-01-19
-1893980 Shishan Shishan Shih-shan-shih,Shishan,Shishan Zhen,shi shan,shi shan zhen,石山,石山镇 19.93546 110.20432 P PPLA4 CN 31 0 104 Asia/Chongqing 2012-01-19
-1894012 Longtang Longtang Longtang,Longtang Zhen,Lung-t'ang,Lung-t’ang,long tang,long tang zhen,龙塘,龙塘镇 19.8843 110.41101 P PPLA4 CN 31 0 27 Asia/Chongqing 2012-01-19
-1894017 Xinpo Xinpo Hsin-p'o,Hsin-p’o,Xinpo,Xinpo Zhen,xin po,xin po zhen,新坡,新坡镇 19.77165 110.36546 P PPLA4 CN 31 0 25 Asia/Chongqing 2012-01-19
-1894019 Jiazi Jiazi Chia-tzu-shih,Jiazi,Jiazi Zhen,jia zi,jia zi zhen,甲子,甲子镇 19.60931 110.49426 P PPLA4 CN 31 0 53 Asia/Chongqing 2012-01-19
-1894026 Leiming Leiming Lei-ming-shih,Leiming,Leiming Zhen,lei ming,lei ming zhen,雷鸣,雷鸣镇 19.55718 110.31991 P PPLA4 CN 31 0 68 Asia/Chongqing 2012-01-19
-1894067 Gongpo Gongpo Gongpo,Gongpo Zhen,K'ung-p'o-shih,K’ung-p’o-shih,gong po,gong po zhen,公坡,公坡镇 19.79216 110.80368 P PPLA4 CN 31 0 23 Asia/Chongqing 2012-01-19
-1894072 Baoluo Baoluo Baoluo,Baoluo Zhen,P'o-lo,P’o-lo,bao luo,bao luo zhen,抱罗,抱罗镇 19.84123 110.74453 P PPLA4 CN 31 0 39 Asia/Chongqing 2012-01-19
-1894076 Sigeng Sigeng Sigeng,Sigeng Zhen,Ssu-keng,si geng,si geng zhen,四更,四更镇 19.2281 108.67356 P PPLA4 CN 31 0 10 Asia/Chongqing 2012-01-19
-1894128 Wupo Wupo Wupo,Wupo Zhen,wu po,wu po zhen,乌坡,乌坡镇 19.18429 110.06722 P PPLA4 CN 31 0 100 Asia/Chongqing 2012-01-19
-1894132 Lingkou Lingkou Ling-k'ou-shih,Ling-k’ou-shih,Lingkou,Lingkou Zhen,ling kou,ling kou zhen,岭口,岭口镇 19.34397 110.30392 P PPLA4 CN 31 0 122 Asia/Chongqing 2012-01-19
-1894135 Yangjiang Yangjiang Yang-chiang,Yangjiang,Yangjiang Zhen,yang jiang,yang jiang zhen,阳江,阳江镇 19.10089 110.34312 P PPLA4 CN 31 0 43 Asia/Chongqing 2012-01-19
-1894196 Benhao Benhao Benhao,Benhao Zhen,Penhao,ben hao,ben hao zhen,本号,本号镇 18.61218 109.95775 P PPLA4 CN 31 0 41 Asia/Chongqing 2012-01-19
-1894221 Leluo Leluo Leluo,Leluo Zhen,Lo-lo-shih,le luo,le luo zhen,乐罗,乐罗镇 18.44808 108.88245 P PPLA4 CN 31 0 8 Asia/Chongqing 2012-01-19
-1894694 Putuoshan Putuoshan Putuoshan,Putuoshan Zhen,pu tuo shan,pu tuo shan zhen,普陀山,普陀山镇 29.98657 122.38047 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-19
-1894758 Dadong’ao Dadong'ao Dadong'ao,Dadong’ao,Zhujiajian,Zhujiajian Zhen,da dong ao,zhu jia jian,zhu jia jian zhen,大洞岙,朱家尖,朱家尖镇 29.92228 122.38881 P PPLA4 CN 02 0 2 Asia/Shanghai 2012-01-19
-1895090 Jiujianfang Jiujianfang Jiujianfang,Mu-chia-yen,jiu jian fang,九间房 34.1858 109.51513 P PPLA4 CN 26 0 715 Asia/Chongqing 2012-01-19
-1895261 Zhangguanying Zhangguanying Chang-kuan-ying,Zhangguanying,Zhangguanying Zhen,zhang guan ying,zhang guan ying zhen,张官营,张官营镇 33.65408 113.17455 P PPLA4 CN 09 0 102 Asia/Chongqing 2012-01-19
-1895284 Zhangpan Zhangpan Chang-p'an-chen,Chang-p’an-chen,Zhangpan,Zhangpan Zhen,zhang pan,zhang pan zhen,张潘,张潘镇 33.99256 113.99039 P PPLA4 CN 09 0 69 Asia/Shanghai 2012-01-19
-1895288 Duqu Duqu Duqu,Duqu Zhen,Tu-chieh,du qu,du qu zhen,杜曲,杜曲镇 33.81307 113.86329 P PPLA4 CN 09 0 72 Asia/Shanghai 2012-01-19
-1895356 Liuquan Liuquan Liu-ch'uan-p'u,Liu-ch’üan-p’u,Liuquan,Liuquanpu,liu quan,liu quan pu,柳泉,柳泉铺 33.04758 112.3351 P PPLA4 CN 09 0 181 Asia/Chongqing 2012-01-19
-1895856 Shaochang Shaochang Shaochang,Shaochang Zhen,shao chang,shao chang zhen,邵厂,邵厂镇 30.9083 121.75345 P PPLA4 CN 23 0 5 Asia/Shanghai 2012-01-19
-1896758 Quantang Quantang Quantang,Quantangzhen,quan tang,quan tang zhen,全塘,全塘镇 30.68208 121.22389 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-19
-1897460 Maoshan Maoshan Mao-shan-ts'un,Mao-shan-ts’un,Maoshan,Maoshan Zhen,mao shan,mao shan zhen,茅山,茅山镇 29.74572 121.49586 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-19
-1897924 Dushan Dushan Dushan,Gaojian,du shan,gao jian,独山,高枧 29.04556 121.26611 P PPLA4 CN 02 0 53 Asia/Shanghai 2012-01-19
-1898062 Tangzi Tangzi T'ang-tzu-chen,Tangzi,Tangzizhen,T’ang-tzu-chen,tang zi,tang zi zhen,唐子,唐子镇 32.93639 120.08194 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-19
-1898130 Yangjian Yangjian Yang-chien,Yang-chien-ling,Yangjian,yang jian,羊尖 31.62575 120.55632 P PPLA4 CN 04 0 11 Asia/Shanghai 2012-01-19
-1898207 Xinzhuang Xinzhuang Hsin-chuang-chen,Xinzhuang,xin zhuang,辛庄 31.53522 120.69205 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1898302 Weitang Weitang Wei-ching-t'ang-chen,Wei-ching-t’ang-chen,Weitang,wei tang,渭塘 31.46195 120.64491 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-19
-1898310 Taiping Taiping T'ai-p'ing-ch'iao-chen,Taiping,T’ai-p’ing-ch’iao-chen,tai ping,太平 31.43472 120.69833 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-19
-1898346 Fengqiao Fengqiao Feng-ch'iao-chen,Feng-ch’iao-chen,Fengqiao,Fengqiao Jiedao,feng qiao,枫桥 31.31362 120.55001 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-19
-1898359 Mudu Mudu Mu-tu,Mu-tu-chen,Mudu,mu du,Муду,木渎 31.25196 120.51179 P PPLA4 CN 04 61902 8 Asia/Shanghai 2012-01-19
-1898446 Xinqiao Xinqiao Nan-hsin-ch'iao,Nan-hsin-ch’iao,Xinqiao,xin qiao,新桥 31.80251 120.50478 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-19
-1898493 Tongli Tongli T'ung-li,T'ung-li-chen,Tongli,Tongli Zhen,T’ung-li,T’ung-li-chen,tong li,同里 31.1594 120.71264 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-19
-1898494 Songling Songling Songling,Songlingzhen,Sunlin,Wu-chiang,Wukiang,song ling,Сунлин,松陵 31.1933 120.71758 P PPLA3 CN 04 77566 5 Asia/Shanghai 2012-01-19
-1898548 Hengjing Hengjing Heng-ching-chen,Hengjing,heng jing,横泾 31.1696 120.53241 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-19
-1898565 Shadili Shadili Changbai,Shadili,sha de li,zhang bai,沙地里,长白 30.17523 122.03909 P PPLA4 CN 02 0 0 Asia/Shanghai 2012-01-19
-1898581 Yuandun Yuandun Xiushan,Yuandun,xiu shan,yuan dun,圆墩,秀山 30.18944 122.16889 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-19
-1898597 Beichan Beichan Beichan,bei chan,北蝉 30.06722 122.21944 P PPLA4 CN 02 0 43 Asia/Shanghai 2012-01-19
-1898634 Yancang Yancang Yancang,Yancang Jiedao,yan cang,yan cang jie dao,盐仓,盐仓街道 30.0329 122.05694 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-19
-1898675 Daixi Daixi Daixi,Daixi Zhen,dai xi,dai xi zhen,岱西,岱西镇 30.29345 122.12264 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-19
-1898693 Caojia Caojia Caojia,Daidong Zhen,Daidongzhen,Ts'ao-chia,Ts’ao-chia,cao jia,dai dong zhen,岱东镇,曹家 30.29526 122.19794 P PPLA4 CN 02 0 3 Asia/Shanghai 2012-01-19
-1898799 Dazhan Dazhan Dazhan,Zhanmao,Zhanmao Zhen,da zhan,zhan mao,zhan mao zhen,大展,展茅,展茅镇 30.02698 122.2829 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-19
-1898861 Liutangting Liutangting Chongshou,Chongshou Zhen,Liutangting,chong shou,chong shou zhen,liu tang ting,六塘亭,崇寿,崇寿镇 30.27588 121.26489 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-19
-1898905 Qiaotou Qiaotou Qiaotou,qiao tou,桥头 30.16096 121.35688 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1898918 Haiyanmiao Haiyanmiao Fuhai,Hai-yen-miao,Haiyanmiao,fu hai zhen,hai yan,hai yan miao,海晏,海晏庙,附海镇 30.22748 121.3993 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-19
-1898930 Shengshan Shengshan Sheng-shan-chen,Shengshan,Shengshan Zhen,sheng shan,sheng shan zhen,胜山,胜山镇 30.2329 121.32254 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-02-02
-1898934 Kandun Kandun K'an-tun-chen,Kandong,Kandun,Kandun Jiedao,Kandun Zhen,K’an-tun-chen,kan dun,kan dun jie dao,kan dun zhen,坎墩,坎墩街道,坎墩镇 30.22538 121.25951 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-19
-1898962 Zhangqi Zhangqi Zhangqi,Zhangqizhen,zhang qi,zhang qi zhen,掌起,掌起镇 30.11581 121.45089 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1899052 Sanqishi Sanqishi San-ch'i-shih,San-ch’i-shih,Sanqishi,Sanqishi Zhen,Sanqishizhen,san qi shi,san qi shi zhen,三七市,三七市镇 30.0336 121.33856 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-19
-1899293 Laojunpo Laojunpo Laojun,Laojunpo,lao jun po,老君坡 35.74716 105.42118 P PPLA4 CN 15 0 1880 Asia/Chongqing 2012-01-19
-1899294 Qingjiangyi Qingjiangyi Qingjiang,Qingjiangyi,qing jiang yi,青江驿 35.67739 105.43918 P PPLA4 CN 15 0 1862 Asia/Chongqing 2012-01-19
-1899296 Shixiang Shixiang Ching-shui-kung,Qingshui,Qingshui Xiang,Shixiang,qing shui xiang,shi xiang,清水乡,石巷 35.83309 102.54026 P PPLA4 CN 06 0 1888 Asia/Chongqing 2012-01-19
-1899297 Baizhuangji Baizhuangji Baizhuang,Baizhuang Xiang,Baizhuangji,bai zhuang,bai zhuang ji,bai zhuang xiang,白庄,白庄乡,白庄集 35.72062 102.57393 P PPLA4 CN 06 0 2294 Asia/Chongqing 2012-01-19
-1899300 Houjiachuan Houjiachuan Houchuan,Houjiachuan,hou jia chuan,侯家川 35.49283 105.2201 P PPLA4 CN 15 0 1903 Asia/Chongqing 2012-01-19
-1899301 Xindian Xindian Xindian,Xindian Xiang,xin dian,xin dian xiang,新店,新店乡 35.35222 105.51807 P PPLA4 CN 15 0 1592 Asia/Chongqing 2012-01-19
-1899313 Shaozhai Shaozhai Shaozhai,Shaozhai Zhen,shao zhai,shao zhai zhen,邵寨,邵寨镇 34.99145 107.80385 P PPLA4 CN 15 0 1309 Asia/Chongqing 2012-01-19
-1899315 Taijing Taijing Taijing,Taijing Zhen,tai jing,tai jing zhen,太京,太京镇 34.56333 105.54889 P PPLA4 CN 15 0 1299 Asia/Chongqing 2012-01-19
-1899319 Weixin Weixin Weixin,wei xin,维新 34.66703 103.86852 P PPLA4 CN 15 0 2318 Asia/Chongqing 2012-01-19
-1899320 Sancha Sancha Sancha,san cha,三岔 34.5875 103.76139 P PPLA4 CN 15 0 2734 Asia/Chongqing 2012-01-19
-1899328 Taibai Taibai Taibai,tai bai,太白 34.05791 106.16232 P PPLA4 CN 15 0 1009 Asia/Chongqing 2012-01-19
-1899332 Zhaocun Zhaocun Zhaocun,Zhaocun Zhen,zhao cun,zhao cun zhen,赵村,赵村镇 34.28028 108.34667 P PPLA4 CN 26 0 427 Asia/Chongqing 2012-01-19
-1899334 Xipo Xipo Xipo,xi po,西坡 33.84772 106.43039 P PPLA4 CN 15 0 1027 Asia/Chongqing 2012-01-19
-1899335 Dahedian Dahedian Dahedian,da he dian,大河店 33.65333 106.04972 P PPLA4 CN 15 0 771 Asia/Chongqing 2012-01-19
-1899338 Huama Huama Huama,hua ma,化马 33.73671 104.53975 P PPLA4 CN 15 0 1474 Asia/Chongqing 2012-01-19
-1899341 Shimen Shimen Shimen,shi men,石门 33.48597 104.73824 P PPLA4 CN 15 0 1149 Asia/Chongqing 2012-01-19
-1899343 Yangtian Yangtian Yangtian,yang tian,秧田 33.18396 105.66453 P PPLA4 CN 15 0 1268 Asia/Chongqing 2012-01-19
-1899344 Baiyang Baiyang Baiyang,bai yang,白杨 33.17288 105.78184 P PPLA4 CN 15 0 1056 Asia/Chongqing 2012-01-19
-1899347 Zhuandou Zhuandou Chuan-tou-p'u,Chuan-tou-p’u,Zhuandou,Zhuandou Xiang,Zhuandoupu,zhuan dou,zhuan dou xiang,转斗,转斗乡 32.70918 106.0736 P PPLA4 CN 32 400 664 Asia/Chongqing 2012-01-19
-1899351 Tielou Tielou Tielou,Tielou Zangzuxiang,tie lou,tie lou cang zu xiang,铁楼,铁楼藏族乡 32.90665 104.46445 P PPLA4 CN 15 0 1571 Asia/Chongqing 2012-01-19
-1899364 Liangshui Liangshui Liangshui,Liangshui Zhen,liang shui,liang shui zhen,凉水,凉水镇 32.38333 105.21833 P PPLA4 CN 32 0 623 Asia/Chongqing 2012-01-19
-1899368 Chixi Chixi Ch'ih-ch'i-ch'ang,Chixi,Chixi Xiang,Chixichang,Ch’ih-ch’i-ch’ang,chi xi,chi xi xiang,赤溪,赤溪乡 32.15444 106.76431 P PPLA4 CN 32 1000 494 Asia/Chongqing 2012-01-19
-1901233 Xiliguantun Xiliguantun Li-kuan-t'un,Li-kuan-t’un,Xiliguantun 37.07833 115.94139 P PPL CN CN 25 1552 28 Asia/Shanghai 2012-01-19
-1901872 Lufeng Lufeng Lu-feng-ts'un,Lu-feng-ts’un,Lufeng,Zhushan,lu feng,禄丰 24.5725 103.11528 P PPLA4 CN 29 0 1302 Asia/Chongqing 2012-01-19
-1901903 Xiaojiezi Xiaojiezi Luju,Luju Zhen,Xiaojiezi,lu ju,lu ju zhen,xiao jie zi,小街子,路居,路居镇 24.34476 102.8638 P PPLA4 CN 29 0 1758 Asia/Chongqing 2012-01-19
-1901904 Sijie Sijie Sijie,Sijie Zhen,si jie,si jie zhen,四街,四街镇 24.16667 102.70528 P PPLA4 CN 29 0 1806 Asia/Chongqing 2012-01-19
-1902418 Huai’an Huai'an Huai'an,Huai'an Xiang,Huai’an,Huai’an Xiang,huai an,huai an xiang,怀安,怀安乡 36.58354 107.81843 P PPLA4 CN 15 0 1261 Asia/Chongqing 2012-01-19
-1904743 Zhangcun Zhangcun Zhangcun,zhang cun,章村 30.4647 119.375 P PPLA4 CN 02 0 160 Asia/Shanghai 2012-01-19
-1904748 Panbanqiao Panbanqiao P'an-pan-ch'iao,Panbanqiao,P’an-pan-ch’iao,pan ban qiao,潘板桥 30.38472 119.87139 P PPLA4 CN 02 0 20 Asia/Shanghai 2012-01-19
-1904749 Shuangxi Shuangxi Shuang-ch'i-chen,Shuang-ch’i-chen,Shuangxi,shuang xi,双溪 30.40551 119.82565 P PPLA4 CN 02 0 21 Asia/Shanghai 2012-01-19
-1904762 Leping Leping Leping,Leping Xiang,Lo-p'ing-ts'un,Lo-p’ing-ts’un,le ping,乐平 30.01033 119.39694 P PPLA4 CN 02 0 48 Asia/Shanghai 2012-01-19
-1905277 Zangwan Zangwan Tsang-wan-shih,Zangwan,Zangwan Xiang,zang wan,zang wan xiang,臧湾,臧湾乡 29.46954 117.39409 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-19
-1905307 Xikengkou Xikengkou Hsi-k'eng-k'ou,Hsi-k’eng-k’ou,Qixi,Qixi Zhen,Xikeng Zhen,Xikengkou,qi xi,qi xi zhen,xi keng kou,西坑口,齐溪,齐溪镇 29.4327 118.31528 P PPLA4 CN 02 0 392 Asia/Shanghai 2012-01-19
-1905324 Zhukou Zhukou Chu-k'ou-chen,Chu-k’ou-chen,Zhukou,Zhukou Zhen,zhu kou,zhu kou zhen,竹口,竹口镇 27.69722 118.91444 P PPLA4 CN 02 0 281 Asia/Shanghai 2012-01-19
-1905806 Runsonglaozhai Runsonglaozhai Jun-song,Runsong,Runsonglaozhai 26.86889 109.09528 P PPL CN CN 18 1114 438 Asia/Chongqing 2012-01-19
-1906090 Dundong Dundong Dundong,Tun-tung 26.01083 109.145 P PPL CN CN 18 1722 524 Asia/Chongqing 2012-01-19
-1906137 Gaowu Gaowu Gaowu,Kao-wu 25.56 108.90778 P PPL CN CN 18 1246 805 Asia/Chongqing 2012-01-19
-1906153 Pingjiang Pingjiang P'ing-chiang,Pingjiang,Pingjiangkou,P’ing-chiang 25.80694 108.66306 P PPL CN CN 18 1076 243 Asia/Chongqing 2012-01-19
-1907590 Baiyatai Baiyatai Baiyatai,Baiyatai Xiang,bai ya tai,bai ya tai xiang,白崖台,白崖台乡 39.32806 113.97361 P PPLA4 CN 24 0 1192 Asia/Shanghai 2012-01-19
-1907834 Da’an Da'an Da'an,Da'an Zhen,Da’an,Da’an Zhen,da an,da an zhen,大安,大安镇 18.69565 109.20983 P PPLA4 CN 31 0 203 Asia/Chongqing 2012-01-19
-1907837 Wanchong Wanchong Wanchong,Wanchong Zhen,wan chong,wan chong zhen,万冲,万冲镇 18.84864 109.31708 P PPLA4 CN 31 0 180 Asia/Chongqing 2012-01-19
-1907842 Nansheng Nansheng Nansheng,Nansheng Zhen,nan sheng,nan sheng zhen,南圣,南圣镇 18.73945 109.5881 P PPLA4 CN 31 0 337 Asia/Chongqing 2012-01-19
-1907847 Shiling Shiling Shiling,Shiling Zhen,shen ling,shen ling zhen,什玲,什玲镇 18.66432 109.77881 P PPLA4 CN 31 0 58 Asia/Chongqing 2012-01-19
-1907972 Haodi Haodi Haodi,hao de,好地 35.00096 105.75887 P PPLA4 CN 15 0 1836 Asia/Chongqing 2012-01-19
-1907974 Jiangkou Jiangkou Jiangkou,jiang kou,江口 34.05846 105.09996 P PPLA4 CN 15 0 1371 Asia/Chongqing 2012-01-19
-1907978 Leiwang Leiwang Leiwang,lei wang,雷王 34.05084 105.14418 P PPLA4 CN 15 0 1563 Asia/Chongqing 2012-01-19
-1907979 Liuping Liuping Liuping,liu ping,刘坪 34.89139 105.71917 P PPLA4 CN 15 0 1650 Asia/Chongqing 2012-01-19
-1907996 Suhe Suhe Suhe,su he,苏合 34.0625 105.2221 P PPLA4 CN 15 0 1810 Asia/Chongqing 2012-01-19
-1908001 Wangyin Wangyin Wangyin,wang yin,王尹 34.83389 105.76167 P PPLA4 CN 15 0 1556 Asia/Chongqing 2012-01-19
-1908010 Xinglong Xinglong Xinglong,xing long,兴隆 34.03821 105.34422 P PPLA4 CN 15 0 1640 Asia/Chongqing 2012-01-19
-1908115 Fujia Fujia Fujia,Fujia Xiang,Fujiahe,fu jia,fu jia xiang,傅家,傅家乡 32.11718 106.68997 P PPLA4 CN 32 0 736 Asia/Chongqing 2012-01-19
-1908504 Dahekan Dahekan Dahekan,Dahekan Zhen,Dahekanzhen,da he kan,da he kan zhen,大河坎,大河坎镇 33.04111 107.03639 P PPLA4 CN 26 0 504 Asia/Chongqing 2012-01-19
-1908845 Yangying Yangying Yangying,Yanying Zhen,yang ying,yang ying zhen,杨营,杨营镇 33.0023 112.16702 P PPLA4 CN 09 0 173 Asia/Chongqing 2012-01-19
-1908846 Dafengying Dafengying Dafengying,da feng ying,大冯营 33.00672 112.8417 P PPLA4 CN 09 0 124 Asia/Chongqing 2012-01-19
-1908853 Qutun Qutun Qutun,Qutun Zhen,qu tun,qu tun zhen,曲屯,曲屯镇 33.04041 112.0254 P PPLA4 CN 09 0 189 Asia/Chongqing 2012-01-19
-1908860 Wanggang Wanggang Wanggang,wang gang,王岗 33.10091 112.08664 P PPLA4 CN 09 0 226 Asia/Chongqing 2012-01-19
-1908861 Luyi Luyi Luyi,Luyi Zhen,Luyijie,lu yi,lu yi zhen,卢医,卢医镇 33.10062 112.04719 P PPLA4 CN 09 0 205 Asia/Chongqing 2012-01-19
-1908867 Xiezhuang Xiezhuang Xiezhuang,xie zhuang,谢庄 33.14954 112.43562 P PPLA4 CN 09 0 185 Asia/Chongqing 2012-01-19
-1908871 Xuanqiao Xuanqiao Xuanqiao,quan qiao,券桥 33.15265 112.96195 P PPLA4 CN 09 0 133 Asia/Chongqing 2012-01-19
-1908893 Guangyang Guangyang Guangyang,Guangyangzhen,guang yang,guang yang zhen,广阳,广阳镇 33.28439 112.7015 P PPLA4 CN 09 0 182 Asia/Chongqing 2012-01-19
-1908895 Yuandianhui Yuandianhui Yuandianhui,Yuandianhuizuxiang,yuan dian hui,袁店回 33.27234 112.84408 P PPLA4 CN 09 0 167 Asia/Chongqing 2012-01-19
-1908952 Jizhong Jizhong Jizhong,ji zhong,鸡冢 33.63624 112.67843 P PPLA4 CN 09 0 275 Asia/Chongqing 2012-01-19
-1908957 Xiongbei Xiongbei Xiongbei,xiong bei,熊背 33.66248 112.8118 P PPLA4 CN 09 0 173 Asia/Chongqing 2012-01-19
-1908960 Sikeshu Sikeshu Sikeshu,si ke shu,四棵树 33.66604 112.58509 P PPLA4 CN 09 0 227 Asia/Chongqing 2012-01-19
-1908976 Zhangdian Zhangdian Zhangdian,zhang dian,张店 33.7725 112.88314 P PPLA4 CN 09 0 154 Asia/Chongqing 2012-01-19
-1908997 Zhangbaqiao Zhangbaqiao Zhangbaqiao,Zhangbaqiaozhen,zhang ba qiao,zhang ba qiao zhen,张八桥,张八桥镇 33.86276 112.95978 P PPLA4 CN 09 0 194 Asia/Chongqing 2012-01-19
-1909000 Guanyinsi Guanyinsi Guanyinsi,guan yin si,观音寺 33.86743 112.72816 P PPLA4 CN 09 0 224 Asia/Chongqing 2012-01-19
-1909421 Liuge Liuge Liuge,Liuge Xiang,liu ge,liu ge xiang,刘阁,刘阁乡 32.98417 113.97222 P PPLA4 CN 09 0 94 Asia/Shanghai 2012-01-19
-1909475 Gaodian Gaodian Gaodian,gao dian,高店 32.63934 113.23537 P PPLA4 CN 09 0 169 Asia/Chongqing 2012-01-19
-1909476 Shuangmiaojie Shuangmiaojie Shuangmiaojie,shuang miao jie,双庙街 32.80384 113.25886 P PPLA4 CN 09 0 158 Asia/Chongqing 2012-01-19
-1909481 Yangjiaji Yangjiaji Yangjiaji,yang jia ji,杨家集 32.82948 113.33845 P PPLA4 CN 09 0 163 Asia/Chongqing 2012-01-19
-1909488 Fuzhuang Fuzhuang Fuzhuang,fu zhuang,付庄 32.95868 113.47892 P PPLA4 CN 09 0 124 Asia/Chongqing 2012-01-19
-1909504 Laohe Laohe Laohe,lao he,老河 32.91948 113.71449 P PPLA4 CN 09 0 133 Asia/Shanghai 2012-01-19
-1909609 Sizhou Sizhou Sizhou,Sizhou Zhen,si zhou,si zhou zhen,泗洲,泗洲镇 29.04633 117.70994 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-19
-1909610 Xiangtun Xiangtun Xiangtun,Xiangtun Zhen,xiang tun,xiang tun zhen,香屯,香屯镇 29.00806 117.54028 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-19
-1909627 Xiaofayi Xiaofayi Xiaofayi,xiao fa yi,小法仪 34.16984 107.82118 P PPLA4 CN 26 0 608 Asia/Chongqing 2012-01-19
-1909635 Wuzhangyuan Wuzhangyuan Wuzhangyuan,Wuzhangyuan Zhen,wu zhang yuan,wu zhang yuan zhen,五丈原,五丈原镇 34.28406 107.61281 P PPLA4 CN 26 0 520 Asia/Chongqing 2012-01-19
-1909636 Majia Majia Majia,Majia Zhen,ma jia,ma jia zhen,马家,马家镇 34.31053 107.70742 P PPLA4 CN 26 0 499 Asia/Chongqing 2012-01-19
-1909644 Zhaogong Zhaogong Shaogong,Zhaogong,Zhaogong Zhen,zhao gong,zhao gong zhen,召公,召公镇 34.43817 107.98907 P PPLA4 CN 26 0 616 Asia/Chongqing 2012-01-19
-1909649 Jingdang Jingdang Jingdang,jing dang,京当 34.49045 107.8232 P PPLA4 CN 26 0 728 Asia/Chongqing 2012-01-19
-1909653 Meiganqiao Meiganqiao Meiganqiao,Meiganqiao Zhen,mei gan qiao,mei gan qiao zhen,糜杆桥,糜杆桥镇 34.54222 107.4511 P PPLA4 CN 26 0 827 Asia/Chongqing 2012-01-19
-1909659 Hanfeng Hanfeng Hanfeng,han feng,汉封 34.61931 107.29743 P PPLA4 CN 26 0 978 Asia/Chongqing 2012-01-19
-1909663 Cuijiatou Cuijiatou Cuijiatou,Cuijiatou Zhen,cui jia tou,cui jia tou zhen,崔家头,崔家头镇 34.63645 107.23177 P PPLA4 CN 26 0 945 Asia/Chongqing 2012-01-19
-1909669 Zhangjiayuan Zhangjiayuan Zhangjiayuan,Zhangjiayuan Zhen,zhang jia yuan,zhang jia yuan zhen,张家塬,张家塬镇 34.69958 107.10216 P PPLA4 CN 26 0 873 Asia/Chongqing 2012-01-19
-1909683 Pingyao Pingyao Pingyao,ping yao,平遥 34.82779 107.97472 P PPLA4 CN 26 0 1296 Asia/Chongqing 2012-01-19
-1909789 Li’an Li'an Li'an,Li'an Zhen,Li-an,Li’an,Li’an Zhen,li an,li an zhen,黎安,黎安镇 18.43324 110.06692 P PPLA4 CN 31 0 17 Asia/Chongqing 2012-01-19
-1909791 Guangpo Guangpo Chiang-p'o,Chiang-p’o,Gangpo,Guangpo,Guangpo Zhen,guang po,guang po zhen,光坡,光坡镇 18.55089 110.0515 P PPLA4 CN 31 0 18 Asia/Chongqing 2012-01-19
-1909797 Liji Liji Li-ch'I,Li-ch’I,Liji,Liji Zhen,li ji,li ji zhen,礼纪,礼纪镇 18.75184 110.31506 P PPLA4 CN 31 0 26 Asia/Chongqing 2012-01-19
-1909802 Hou’an Hou'an Hou'an,Hou'an Zhen,Hou-an-shih,Hou’an,Hou’an Zhen,hou an,hou an zhen,后安,后安镇 18.86714 110.44654 P PPLA4 CN 31 0 7 Asia/Chongqing 2012-01-19
-1909836 Hongshan Hongshan Hongshan,Hongshan Zhen,hong shan,hong shan zhen,洪山,洪山镇 26.09083 119.25417 P PPLA4 CN 07 0 12 Asia/Shanghai 2012-01-19
-1909844 Huanxi Huanxi Huanxi,Huanxi Zhen,huan xi,huan xi zhen,宦溪,宦溪镇 26.17664 119.3538 P PPLA4 CN 07 0 432 Asia/Shanghai 2012-01-19
-1910047 Xiabeisi Xiabeisi Xiabeisi,xia bei si,下碑寺 33.02763 113.56669 P PPLA4 CN 09 0 144 Asia/Chongqing 2012-01-19
-1910053 Huangshankou Huangshankou Huangshan,Huangshankou,huang shan kou,黄山口 33.04093 113.31701 P PPLA4 CN 09 0 207 Asia/Chongqing 2012-01-19
-1910073 Yangfeng Yangfeng Yangfeng,Yangfeng Xiang,yang feng,yang feng xiang,阳丰,阳丰乡 33.1344 113.85316 P PPLA4 CN 09 0 78 Asia/Shanghai 2012-01-19
-1910085 Shenzhai Shenzhai Shenzhai,Shenzhai Xiang,chen zhai,chen zhai xiang,沈寨,沈寨乡 33.23539 113.86737 P PPLA4 CN 09 0 92 Asia/Shanghai 2012-01-19
-1910086 Huaishu Huaishu Huaishu,Huaishu Xiang,huai shu,huai shu xiang,槐树,槐树乡 33.2511 113.72524 P PPLA4 CN 09 0 105 Asia/Shanghai 2012-01-19
-1910089 Jiudian Jiudian Jiudian,Jiudian Xiang,jiu dian,jiu dian xiang,酒店,酒店乡 33.25958 113.66103 P PPLA4 CN 09 0 121 Asia/Shanghai 2012-01-19
-1910091 Yangzhuang Yangzhuang Yangzhuang,Zhuzhuang,yang zhuang,杨庄 33.26852 113.48105 P PPLA4 CN 09 0 116 Asia/Chongqing 2012-01-19
-1910099 Lumiao Lumiao Lumiao,Lumiao Xiang,lu miao,lu miao xiang,芦庙,芦庙乡 33.3203 113.71539 P PPLA4 CN 09 0 83 Asia/Shanghai 2012-01-19
-1910101 Yangzhuang Yangzhuang Yangzhuang,Yangzhuang Xiang,yang zhuang,yang zhuang xiang,杨庄,杨庄乡 33.33713 113.83743 P PPLA4 CN 09 0 72 Asia/Shanghai 2012-01-19
-1910102 Zhuantan Zhuantan Zhuantan,Zhuantan Xiang,zhuan tan,zhuan tan xiang,专探,专探乡 33.33659 113.90334 P PPLA4 CN 09 0 70 Asia/Shanghai 2012-01-19
-1910104 Miaojie Miaojie Miaojie,miao jie,庙街 33.35745 113.46378 P PPLA4 CN 09 0 111 Asia/Chongqing 2012-01-19
-1910107 Tandian Tandian Tandian,Tandian Xiang,tan dian,tan dian xiang,谭店,谭店乡 33.3759 113.92565 P PPLA4 CN 09 0 68 Asia/Shanghai 2012-01-19
-1910110 Shiling Shiling Shiling,Shiling Zhen,shi ling,shi ling zhen,师灵,师灵镇 33.39677 113.81918 P PPLA4 CN 09 0 82 Asia/Shanghai 2012-01-19
-1910116 Wenfeng Wenfeng Wenfeng,wen feng,文峰 33.44659 113.57548 P PPLA4 CN 09 0 97 Asia/Shanghai 2012-01-19
-1910117 Xin’an Xin'an Qin'an,Qin’an,Xin'an,Xin'an Zhen,Xin’an,Xin’an Zhen,xin an,辛安 33.44588 113.67859 P PPLA4 CN 09 0 89 Asia/Shanghai 2012-01-19
-1910123 Songji Songji Songji,Songji Xiang,song ji,song ji xiang,宋集,宋集乡 33.46358 113.97321 P PPLA4 CN 09 0 65 Asia/Shanghai 2012-01-19
-1910132 Longquan Longquan Longquan,long quan,龙泉 33.48826 113.42504 P PPLA4 CN 09 0 90 Asia/Chongqing 2012-01-19
-1910136 Jiangdian Jiangdian Jiangdian,jiang dian,姜店 33.52833 113.66154 P PPLA4 CN 09 0 76 Asia/Shanghai 2012-01-19
-1910138 Macun Macun Macun,ma cun,马村 33.5668 113.64554 P PPLA4 CN 09 0 77 Asia/Shanghai 2012-01-19
-1910139 Mazhuang Mazhuang Mazhuang,Mazhuang Huizuxiang,ma zhuang,ma zhuang hui zu xiang,马庄,马庄回族乡 33.59066 113.34356 P PPLA4 CN 09 0 89 Asia/Chongqing 2012-01-19
-1910147 Shuizhai Shuizhai Shuizhai,shui zhai,水寨 33.62184 113.54317 P PPLA4 CN 09 0 78 Asia/Shanghai 2012-01-19
-1910150 Taiwei Taiwei Taiwei,Taiwei Zhen,tai wei,太尉 33.62973 113.75769 P PPLA4 CN 09 0 71 Asia/Shanghai 2012-01-19
-1910151 Rendian Rendian Rendian,Rendian Zhen,ren dian,ren dian zhen,任店,任店镇 33.62672 113.22712 P PPLA4 CN 09 0 102 Asia/Chongqing 2012-01-19
-1910153 Houji Houji Houji,hou ji,侯集 33.67003 113.70482 P PPLA4 CN 09 0 76 Asia/Shanghai 2012-01-19
-1910154 Gunziying Gunziying Gunziying,Gunziying Xiang,gun zi ying,gun zi ying xiang,磙子营,磙子营乡 33.67001 113.10323 P PPLA4 CN 09 0 114 Asia/Chongqing 2012-01-19
-1910155 Dengli Dengli Dengli,deng li,邓李 33.67178 113.50241 P PPLA4 CN 09 0 82 Asia/Shanghai 2012-01-19
-1910157 Zhanghua Zhanghua Zhanghua,zhang hua,章化 33.66851 113.6227 P PPLA4 CN 09 0 78 Asia/Shanghai 2012-01-19
-1910160 Zunhuadian Zunhuadian Zunhuadian,Zunhuadian Zhen,zun hua dian,遵化店 33.70596 113.40075 P PPLA4 CN 09 0 84 Asia/Chongqing 2012-01-19
-1910162 Caozhen Caozhen Caozhen,cao zhen,曹镇 33.70443 113.214 P PPLA4 CN 09 0 98 Asia/Chongqing 2012-01-19
-1910165 Hongzhuangyang Hongzhuangyang Hongzhuangyang,hong zhuang yang,洪庄杨 33.73062 113.51672 P PPLA4 CN 09 0 80 Asia/Shanghai 2012-01-19
-1910169 Donggaohuang Donggaohuang Donggaohuang,dong gao huang,东高皇 33.75758 113.36383 P PPLA4 CN 09 0 93 Asia/Chongqing 2012-01-19
-1910170 Jiaodian Jiaodian Jiaodian,Jiaodian Zhen,jiao dian,焦店 33.76722 113.22294 P PPLA4 CN 09 0 97 Asia/Chongqing 2012-01-19
-1910171 Huangdimiao Huangdimiao Huangdimiao,Huangdimiao Xiang,huang di miao,huang di miao xiang,皇帝庙,皇帝庙乡 33.76757 113.98567 P PPLA4 CN 09 0 60 Asia/Shanghai 2012-01-19
-1910172 Taichen Taichen Taichen,Taichen Zhen,tai chen,tai chen zhen,台陈,台陈镇 33.76926 113.9219 P PPLA4 CN 09 0 66 Asia/Shanghai 2012-01-19
-1910177 Lizhuang Lizhuang Lizhuang,Lizhuang Xiang,li zhuang,li zhuang xiang,李庄,李庄乡 33.84121 113.26577 P PPLA4 CN 09 0 131 Asia/Chongqing 2012-01-19
-1910178 Yangzhuang Yangzhuang Yangzhuang,Yangzhuang Zhen,yang zhuang,yang zhuang zhen,杨庄,杨庄镇 33.83576 113.03503 P PPLA4 CN 09 0 136 Asia/Chongqing 2012-01-19
-1910179 Fanhu Fanhu Fanhu,fan hu,范湖 33.84529 113.68135 P PPLA4 CN 09 0 77 Asia/Shanghai 2012-01-19
-1910180 Juling Juling Juling,Juling Zhen,ju ling,ju ling zhen,巨陵,巨陵镇 33.8622 113.96004 P PPLA4 CN 09 0 64 Asia/Shanghai 2012-01-19
-1910181 Zhouzhuang Zhouzhuang Zhouzhuang,Zhouzhuang Zhen,zhou zhuang,zhou zhuang zhen,周庄,周庄镇 33.86055 113.11598 P PPLA4 CN 09 0 121 Asia/Chongqing 2012-01-19
-1910183 Guxiang Guxiang Guxiang,Guxiang Xiang,gu xiang,gu xiang xiang,固厢,固厢乡 33.87321 113.91981 P PPLA4 CN 09 0 65 Asia/Shanghai 2012-01-19
-1910184 Shilipu Shilipu Shilipu,shi li pu,十里铺 33.88173 113.43054 P PPLA4 CN 09 0 88 Asia/Chongqing 2012-01-19
-1910186 Yaozhuang Yaozhuang Yaozhuang,Yaozhuang Huizuxiang,yao zhuang,yao zhuang hui zu xiang,姚庄,姚庄回族乡 33.87575 113.27094 P PPLA4 CN 09 0 105 Asia/Chongqing 2012-01-19
-1910188 Kuzhuang Kuzhuang Kuzhuang,Xiku,ku zhuang,库庄 33.9028 113.55894 P PPLA4 CN 09 0 87 Asia/Shanghai 2012-01-19
-1910191 Xiaoqi Xiaoqi Xiaoqi,Xiaoqi Xiang,xiao qi,xiao qi xiang,肖旗,肖旗乡 33.91636 113.06056 P PPLA4 CN 09 0 140 Asia/Chongqing 2012-01-19
-1910193 Jiangliji Jiangliji Jiangliji,Jiangliji Zhen,jiang li ji,jiang li ji zhen,蒋李集,蒋李集镇 33.94019 113.83484 P PPLA4 CN 09 0 69 Asia/Shanghai 2012-01-19
-1910195 Yingyang Yingyang Yingyang,ying yang,颍阳 33.95124 113.61178 P PPLA4 CN 09 0 90 Asia/Shanghai 2012-01-19
-1910198 Guangkuotiandi Guangkuotiandi Guangkuotiandi,guang kuo tian de,广阔天地 33.96654 113.16555 P PPLA4 CN 09 0 122 Asia/Chongqing 2012-01-19
-1910209 Caotang Caotang Caotang,Caotang Zhen,Caotangzhen,cao tang,cao tang zhen,草堂,草堂镇 34.04389 108.71083 P PPLA4 CN 26 0 429 Asia/Chongqing 2012-01-19
-1910215 Luanzhen Luanzhen Luanzhen,Luanzhen Jieban,luan zhen,luan zhen jie ban,滦镇,滦镇街办 34.05843 108.81165 P PPLA4 CN 26 0 426 Asia/Chongqing 2012-01-19
-1910216 Jiangcun Jiangcun Jiangcun,Jiangcun Zhen,jiang cun,jiang cun zhen,蒋村,蒋村镇 34.08294 108.47352 P PPLA4 CN 26 0 446 Asia/Chongqing 2012-01-19
-1910219 Huangliang Huangliang Huangliang,huang liang,黄良 34.09346 108.89453 P PPLA4 CN 26 0 455 Asia/Chongqing 2012-01-19
-1910225 Xiliu Xiliu Xiliu,Xiliu Zhen,xi liu,xi liu zhen,细柳,细柳镇 34.15028 108.79111 P PPLA4 CN 26 0 409 Asia/Chongqing 2012-01-19
-1910232 Tangfang Tangfang Tangfang,tang fang,汤坊 34.23722 108.3625 P PPLA4 CN 26 0 420 Asia/Chongqing 2012-01-19
-1910233 Yuhuazhai Yuhuazhai Yuhuazhai,Yuhuazhai Jieban,yu hua zhai,yu hua zhai jie ban,鱼化寨,鱼化寨街办 34.22694 108.85556 P PPLA4 CN 26 0 403 Asia/Chongqing 2012-01-19
-1910235 Dazhuang Dazhuang Dazhuang,Dazhuang Zhen,da zhuang,da zhuang zhen,大庄,大庄镇 34.25336 108.16239 P PPLA4 CN 26 0 443 Asia/Chongqing 2012-01-19
-1910238 Chenyangzhai Chenyangzhai Chenyangzhai,Chenyangzhai Jieban,chen yang zhai,chen yang zhai jie ban,陈杨寨,陈杨寨街办 34.32015 108.70622 P PPLA4 CN 26 0 387 Asia/Chongqing 2012-01-19
-1910239 Liucunbao Liucunbao Liucunbao,Liucunbao Jieban,liu cun bao,liu cun bao jie ban,六村堡,六村堡街办 34.33361 108.84764 P PPLA4 CN 26 0 379 Asia/Chongqing 2012-01-19
-1910240 Nanshi Nanshi Nanshi,Nanshi Zhen,nan shi,nan shi zhen,南市,南市镇 34.3604 108.46238 P PPLA4 CN 26 0 508 Asia/Chongqing 2012-01-19
-1910241 Nanwei Nanwei Nanwei,Nanwei Zhen,nan wei,nan wei zhen,南位,南位镇 34.3575 108.54222 P PPLA4 CN 26 0 497 Asia/Chongqing 2012-01-19
-1910243 Jiangcun Jiangcun Jiangcun,Jiangcun Zhen,jiang cun,jiang cun zhen,姜村,姜村镇 34.39278 108.2525 P PPLA4 CN 26 0 589 Asia/Chongqing 2012-01-19
-1910248 Xizhangbao Xizhangbao Xizhangbao,Xizhangbao Zhen,Xizhangbaocun,xi zhang bao,xi zhang bao zhen,西张堡,西张堡镇 34.50528 108.56556 P PPLA4 CN 26 0 514 Asia/Chongqing 2012-01-19
-1910249 Lingyuan Lingyuan Lingyuan,Lingyuan Zhen,ling yuan,ling yuan zhen,灵源,灵源镇 34.50222 108.34926 P PPLA4 CN 26 0 584 Asia/Chongqing 2012-01-19
-1910253 Sanqu Sanqu Sanqu,Sanqu Zhen,Sanqukou,Sanquzhen,san qu,san qu zhen,三渠,三渠镇 34.57444 108.8925 P PPLA4 CN 26 0 424 Asia/Chongqing 2012-01-19
-1910256 Qiaodi Qiaodi Qiaodi,Qiaodi Zhen,qiao di,qiao di zhen,桥底,桥底镇 34.60639 108.71611 P PPLA4 CN 26 0 465 Asia/Chongqing 2012-01-19
-1910263 Xinglong Xinglong Xinglong,Xinglong Zhen,xing long,xing long zhen,兴隆,兴隆镇 34.64806 108.69278 P PPLA4 CN 26 0 575 Asia/Chongqing 2012-01-19
-1910274 Mafang Mafang Mafang,Mafang Zhen,ma fang,ma fang zhen,马坊,马坊镇 34.78576 108.16252 P PPLA4 CN 26 0 1078 Asia/Chongqing 2012-01-19
-1910277 Guxian Guxian Guxian,gu xian,固贤 34.83861 108.75694 P PPLA4 CN 26 0 902 Asia/Chongqing 2012-01-19
-1910278 Potou Potou Potou,Potou Zhen,Potoucun,Potouzhen,po tou,po tou zhen,坡头,坡头镇 34.85278 108.89472 P PPLA4 CN 26 0 717 Asia/Chongqing 2012-01-19
-1910279 Majia Majia Majia,Majia Zhen,ma jia,ma jia zhen,马家,马家镇 34.85833 108.45833 P PPLA4 CN 26 0 1071 Asia/Chongqing 2012-01-19
-1910284 Sigou Sigou Sigou,Sigou Zhen,si gou,si gou zhen,寺沟,寺沟镇 34.93833 108.93167 P PPLA4 CN 26 0 733 Asia/Chongqing 2012-01-19
-1910285 Hujiamiao Hujiamiao Hujiamiao,Hujiazhuang,hu jia miao,胡家庙 34.95794 108.419 P PPLA4 CN 26 0 1245 Asia/Chongqing 2012-01-19
-1910288 Dongjiahe Dongjiahe Dongjiahe,Dongjiahe Zhen,dong jia he,dong jia he zhen,董家河,董家河镇 34.9625 108.99694 P PPLA4 CN 26 0 698 Asia/Chongqing 2012-01-19
-1910293 Sunyuan Sunyuan Sunjiayuan,Sunyuan,Sunyuan Zhen,sun yuan,孙塬 34.94444 109.02506 P PPLA4 CN 26 0 825 Asia/Chongqing 2012-01-19
-1910297 Duli Duli Duli,Duli Zhen,du li,独李 34.63405 109.08045 P PPLA4 CN 26 0 400 Asia/Chongqing 2012-01-19
-1910301 Baimiao Baimiao Baimiao,bai miao,白庙 34.93796 109.14364 P PPLA4 CN 26 0 1140 Asia/Chongqing 2012-01-19
-1910306 Xinshi Xinshi Xinshi,xin shi,新市 34.53834 109.18005 P PPLA4 CN 26 0 369 Asia/Chongqing 2012-01-19
-1910307 Weizhai Weizhai Weizhai,wei zhai,魏寨 34.10773 109.17166 P PPLA4 CN 26 0 517 Asia/Chongqing 2012-01-19
-1910308 Qianwei Qianwei Qianwei,Qianwei Zhen,qian wei,前卫 34.12636 109.22354 P PPLA4 CN 26 0 686 Asia/Chongqing 2012-01-19
-1910310 Tangyu Tangyu Tangyu,Tangyu Zhen,tang yu,汤峪 34.01832 109.21435 P PPLA4 CN 26 0 696 Asia/Chongqing 2012-01-19
-1910312 Qinling Jieban Qinling Jieban Qinling,Qinling Jieban,qin ling jie ban,秦陵街办 34.38678 109.24928 P PPLA4 CN 26 0 465 Asia/Chongqing 2012-01-19
-1910314 Ancun Ancun Ancun,an cun,安村 34.12134 109.26861 P PPLA4 CN 26 0 699 Asia/Chongqing 2012-01-19
-1910317 Sanli Sanli Dasanlitou,Sanli,Sanli Zhen,san li,三里 34.16913 109.30757 P PPLA4 CN 26 0 506 Asia/Chongqing 2012-01-19
-1910318 Daiwang Daiwang Daiwang,Daiwang Jieban,dai wang,代王 34.39686 109.29427 P PPLA4 CN 26 0 483 Asia/Chongqing 2012-01-19
-1910319 Hezhai Hezhai Hejunzhai,Hezhai,Hezhai Zhen,he zhai,何寨 34.51723 109.31779 P PPLA4 CN 26 0 359 Asia/Chongqing 2012-01-19
-1910322 Zhangqiao Zhangqiao Zhangqiao,Zhangqiao Zhen,zhang qiao,张桥 34.756 109.38156 P PPLA4 CN 26 0 392 Asia/Chongqing 2012-01-19
-1910323 Sufang Sufang Sufang,Sufang Zhen,su fang,苏坊 34.89586 109.3712 P PPLA4 CN 26 0 473 Asia/Chongqing 2012-01-19
-1910325 Youhuai Youhuai Youfangjie,Youhuai,Youhuai Zhen,you huai,油槐 34.55849 109.38553 P PPLA4 CN 26 0 354 Asia/Chongqing 2012-01-19
-1910327 Potou Potou Potou,Potou Zhen,po tou,坡头 34.97103 109.44594 P PPLA4 CN 26 0 490 Asia/Chongqing 2012-01-19
-1910333 Sanhe Sanhe Sanhe,san he,三合 34.97085 109.51496 P PPLA4 CN 26 0 474 Asia/Chongqing 2012-01-19
-1910342 Longchi Longchi Longchi,long chi,龙池 34.80653 109.67691 P PPLA4 CN 26 0 373 Asia/Chongqing 2012-01-19
-1910343 Chunlin Chunlin Chunlin,chun lin,椿林 34.95998 109.67738 P PPLA4 CN 26 0 508 Asia/Chongqing 2012-01-19
-1910344 Zhangjia Zhangjia Zhangjia,zhang jia,张家 34.61697 109.73583 P PPLA4 CN 26 0 349 Asia/Chongqing 2012-01-19
-1910347 Dongchen Dongchen Dongchen,dong chen,东陈 35.00086 109.80682 P PPLA4 CN 26 0 517 Asia/Chongqing 2012-01-19
-1910348 Xijing Xijing Xijing,xi jing,西荆 34.04856 109.81816 P PPLA4 CN 26 0 909 Asia/Chongqing 2012-01-19
-1910351 Fengcun Fengcun Fengcun,Fengcun Zhen,feng cun,冯村 34.85257 109.8271 P PPLA4 CN 26 0 375 Asia/Chongqing 2012-01-19
-1910358 Liuzhi Liuzhi Liuzhi,Liuzhi Zhen,liu zhi,柳枝 34.53936 109.85681 P PPLA4 CN 26 0 338 Asia/Chongqing 2012-01-19
-1910474 Aijia Aijia Aijia,Aijia Zhen,ai jia,ai jia zhen,艾家,艾家镇 30.62359 111.34614 P PPLA4 CN 12 0 67 Asia/Chongqing 2012-01-19
-1910477 Babao Babao Babao,Babao Zhen,ba bao,ba bao zhen,八宝,八宝镇 30.18229 111.87023 P PPLA4 CN 12 0 41 Asia/Chongqing 2012-01-19
-1910488 Dianjun Dianjun Dianjun,Dianjun Jiedao,Dianjun Xiang,dian jun,dian jun dao jie,dian jun xiang,点军,点军乡,点军道街 30.70154 111.25991 P PPLA3 CN 12 0 75 Asia/Chongqing 2012-01-19
-1910495 Gujiadian Gujiadian Gujiadian,Gujiadian Zhen,gu jia dian,gu jia dian zhen,顾家店,顾家店镇 30.33052 111.57685 P PPLA4 CN 12 0 94 Asia/Chongqing 2012-01-19
-1910517 Sijiachang Sijiachang Sijiachang,Sijiachang Zhen,si jia chang,si jia chang zhen,斯家场,斯家场镇 30.08597 111.62126 P PPLA4 CN 12 0 105 Asia/Chongqing 2012-01-19
-1910524 Wuyanquan Wuyanquan Wuyanquan,Wuyanquan Xiang,wu yan quan,wu yan quan xiang,五眼泉,五眼泉乡 30.35492 111.32208 P PPLA4 CN 12 0 136 Asia/Chongqing 2012-01-19
-1910527 Xiejiaping Xiejiaping Xiejiaping,Xiejiaping Tujiazuxiang,xie jia ping,xie jia ping tu jia zu xiang,卸甲坪,卸甲坪土家族乡 30.04044 111.36648 P PPLA4 CN 12 0 240 Asia/Chongqing 2012-01-19
-1910538 Yunchi Yunchi Yunchi,Yunchi Jiedao,yun chi,yun chi jie dao,云池,云池街道 30.52235 111.44046 P PPLA4 CN 12 0 65 Asia/Chongqing 2012-01-19
-1910930 Shenbai Shenbai Shenbai,Shenbai Xiang,shen bai,shen bai xiang,神柏,神柏乡 35.36668 111.14808 P PPLA4 CN 24 0 555 Asia/Chongqing 2012-01-19
-1910950 Donggaocun Donggaocun Donggaocun,Gaocun Xiang,dong gao cun,gao cun xiang,东高村,高村乡 35.60213 111.29214 P PPLA4 CN 24 0 425 Asia/Chongqing 2012-01-19
-1910961 Houcun Houcun Houcun,Houcun Xiang,hou cun,hou cun xiang,侯村,侯村乡 35.41661 111.35106 P PPLA4 CN 24 0 505 Asia/Chongqing 2012-01-19
-1910975 Fengcheng Fengcheng Fengcheng,Fengcheng Xiang,feng cheng,feng cheng xiang,凤城,凤城乡 35.63323 111.43605 P PPLA4 CN 24 0 439 Asia/Chongqing 2012-01-19
-1910992 Dadeng Dadeng Dadeng,Dadeng Xiang,da deng,da deng xiang,大邓,大邓乡 35.92148 111.53388 P PPLA4 CN 24 0 527 Asia/Chongqing 2012-01-19
-1912220 Yushan Yushan Mazhu,Yushan,Yushan Zhen,yu shan,yu shan zhen,嵛山,嵛山镇 26.95748 120.32277 P PPLA4 CN 07 0 19 Asia/Shanghai 2012-01-19
-1912819 Yongfeng Yongfeng Yongfeng,Yongfeng Xiang,yong feng,yong feng xiang,永丰,永丰乡 26.30613 115.209 P PPLA4 CN 03 0 166 Asia/Shanghai 2012-01-19
-1912824 Qingtang Qingtang Qingtang,Qingtang Zhen,qing tang,qing tang zhen,青塘,青塘镇 26.44082 115.86297 P PPLA4 CN 03 0 215 Asia/Shanghai 2012-01-19
-1912826 Fangtai Fangtai Fangtai,Fangtai Xiang,fang tai,fang tai xiang,方太,方太乡 26.51083 115.385 P PPLA4 CN 03 0 212 Asia/Shanghai 2012-01-19
-1912837 Futan Futan Futan,Futan Zhen,fu tan,fu tan zhen,富滩,富滩镇 26.99125 115.15034 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-19
-1913167 Shatian Shatian Shatian,Shatian Zhen,sha tian,沙田 22.92047 113.61085 P PPLA4 CN 30 0 2 Asia/Chongqing 2012-01-19
-1913172 Xinwan Xinwan Xinwan,Xinwan Zhen,xin wan,新湾 22.78662 113.668 P PPLA4 CN 30 0 5 Asia/Chongqing 2012-01-19
-1913188 Dongkeng Dongkeng Dongkeng,Dongkeng Zhen,dong keng,东坑 22.99262 113.94326 P PPLA4 CN 30 0 7 Asia/Chongqing 2012-01-19
-1913195 Huangjiang Huangjiang Huangjiang,Huangjiang Zhen,huang jiang,黄江 22.91687 113.99535 P PPLA4 CN 30 0 12 Asia/Chongqing 2012-01-19
-1913339 Xiachuan Xiachuan Xiachuan,Xiachuan Zhen,xia chuan,xia chuan zhen,下川,下川镇 21.65086 112.58129 P PPLA4 CN 30 0 1 Asia/Chongqing 2012-01-19
-1913369 Shangchuan Shangchuan Shangchuan,Shangchuan Zhen,shang chuan,shang chuan zhen,上川,上川镇 21.7262 112.7713 P PPLA4 CN 30 0 4 Asia/Chongqing 2012-01-19
-1913375 Zhize Zhize Zhize,zhi ze,织箦 21.74608 111.60702 P PPLA3 CN 30 0 10 Asia/Chongqing 2012-01-19
-1913430 Dongcheng Dongcheng Dongcheng,dong cheng,东城 21.87833 112.0125 P PPLA3 CN 30 0 20 Asia/Chongqing 2012-01-19
-1913575 Sanba Sanba Sanba,Sanba Zhen,san ba,san ba zhen,三八,三八镇 22.30176 112.68146 P PPLA4 CN 30 0 13 Asia/Chongqing 2012-01-19
-1913808 Dongying Dongying Dongying,Dongying Zhen,dong ying,dong ying zhen,东营,东营镇 20.05278 110.41347 P PPLA4 CN 31 0 1 Asia/Chongqing 2012-01-19
-1913819 Mei’an Mei'an Mei'an,Mei'an Zhen,Mei’an,Mei’an Zhen,mei an,mei an zhen,美安,美安镇 19.87826 110.18582 P PPLA4 CN 31 0 90 Asia/Chongqing 2012-01-19
-1913835 Yongfa Yongfa Yongfa,Yongfa Zhen,yong fa,yong fa zhen,永发,永发镇 19.74834 110.19484 P PPLA4 CN 31 0 27 Asia/Chongqing 2012-01-19
-1913862 Xinzhu Xinzhu Xinzhu,Xinzhu Zhen,xin zhu,xin zhu zhen,新竹,新竹镇 19.62158 110.2065 P PPLA4 CN 31 0 39 Asia/Chongqing 2012-01-19
-1913863 Xinwu Xinwu Xinwu,Xinwu Zhen,xin wu,xin wu zhen,新吴,新吴镇 19.64936 110.18743 P PPLA4 CN 31 0 70 Asia/Chongqing 2012-01-19
-1913875 Zuntan Zuntan Zuntan,Zuntan Zhen,zun tan,zun tan zhen,遵谭,遵谭镇 19.81443 110.29911 P PPLA4 CN 31 0 56 Asia/Chongqing 2012-01-19
-1913877 Longqiao Longqiao Longqiao,Longqiao Zhen,long qiao,long qiao zhen,龙桥,龙桥镇 19.91391 110.35576 P PPLA4 CN 31 0 34 Asia/Chongqing 2012-01-19
-1913896 Hongqi Hongqi Hongqi,Hongqi Zhen,hong qi,hong qi zhen,红旗,红旗镇 19.82036 110.50638 P PPLA4 CN 31 0 55 Asia/Chongqing 2012-01-19
-1913935 Dapo Dapo Dapo,Dapo Zhen,da po,da po zhen,大坡,大坡镇 19.61609 110.57158 P PPLA4 CN 31 0 71 Asia/Chongqing 2012-01-19
-1913943 Donglu Donglu Donglu,Donglu Zhen,dong lu,dong lu zhen,东路,东路镇 19.73869 110.67797 P PPLA4 CN 31 0 42 Asia/Chongqing 2012-01-19
-1913969 Fengpo Fengpo Fengpo,Fengpo Zhen,feng po,feng po zhen,冯坡,冯坡镇 19.96796 110.77657 P PPLA4 CN 31 0 13 Asia/Chongqing 2012-01-19
-1913971 Yanfeng Yanfeng Yanfeng,Yanfeng Zhen,yan feng,yan feng zhen,演丰,演丰镇 19.95115 110.55451 P PPLA4 CN 31 0 4 Asia/Chongqing 2012-01-19
-1914024 Longlou Longlou Longlou,Longlou Zhen,long lou,long lou zhen,龙楼,龙楼镇 19.65632 110.96459 P PPLA4 CN 31 0 26 Asia/Chongqing 2012-01-19
-1914035 Dongge Dongge Dongge,Dongge Zhen,dong ge,dong ge zhen,东阁,东阁镇 19.66004 110.84516 P PPLA4 CN 31 0 21 Asia/Chongqing 2012-01-19
-1914146 Dayuanhuizu Dayuanhuizu Dayuanhuizu,Dayuanhuizu Xiang,Dayuanli,da yuan hui zu,da yuan hui zu xiang,大院回族,大院回族乡 32.42306 105.23445 P PPLA4 CN 32 0 806 Asia/Chongqing 2012-01-19
-1914152 Fengxiang Fengxiang Fengxiang,Fengxiangyuan,feng xiang,枫相 32.90194 105.3113 P PPLA4 CN 15 0 1107 Asia/Chongqing 2012-01-19
-1914158 Xiasi Xiasi Xiasi,Xiasi Zhen,xia si,xia si zhen,下寺,下寺镇 32.28998 105.51326 P PPLA3 CN 32 0 578 Asia/Chongqing 2012-01-19
-1914171 Yangba Yangba Yangba,Yangba Zhen,yang ba,yang ba zhen,阳坝,阳坝镇 33.01027 105.76643 P PPLA4 CN 15 0 943 Asia/Chongqing 2012-01-19
-1914340 Zhenghu Zhenghu Zhenghu,Zhenghu Xiang,zheng hu,zheng hu xiang,郑湖,郑湖乡 26.36144 118.02175 P PPLA4 CN 07 0 347 Asia/Shanghai 2012-01-19
-1914358 Luxia Luxia Luxia,Luxia Zhen,lu xia,lu xia zhen,炉下,炉下镇 26.49004 118.29611 P PPLA4 CN 07 0 94 Asia/Shanghai 2012-01-19
-1914367 Chimen Chimen Chimen,Chimen Xiang,chi men,chi men xiang,赤门,赤门乡 26.54549 118.44776 P PPLA4 CN 07 0 308 Asia/Shanghai 2012-01-19
-1914370 Songji Songji Songji,Songji Xiang,song ji,song ji xiang,松吉,松吉乡 26.57662 118.74035 P PPLA4 CN 07 0 338 Asia/Shanghai 2012-01-19
-1914421 Yedun Yedun Gaoyang Xiang,Yedun,gao yang xiang,ye dun,叶墩,高阳乡 26.90985 118.14162 P PPLA4 CN 07 0 173 Asia/Shanghai 2012-01-19
-1914462 Heyun Heyun Heyun,Heyun Zhen,he yun,he yun zhen,禾云,禾云镇 23.92893 112.9171 P PPLA4 CN 30 0 82 Asia/Chongqing 2012-01-19
-1914468 Longjing Longjing Longjing,Longjing Zhen,long jing,long jing zhen,龙颈,龙颈镇 23.88029 112.86685 P PPLA4 CN 30 0 40 Asia/Chongqing 2012-01-19
-1914622 Hongmao Hongmao Hongmao,Hongmao Zhen,hong mao,hong mao zhen,红毛,红毛镇 19.02559 109.66549 P PPLA4 CN 31 0 317 Asia/Chongqing 2012-01-19
-1914636 Zhongping Zhongping Zhongping,Zhongping Zhen,zhong ping,zhong ping zhen,中平,中平镇 19.06305 110.05333 P PPLA4 CN 31 0 185 Asia/Chongqing 2012-01-19
-1914639 Huishan Huishan Huishan,Huishan Zhen,hui shan,hui shan zhen,会山,会山镇 19.0694 110.26103 P PPLA4 CN 31 0 33 Asia/Chongqing 2012-01-19
-1914669 Longjiang Longjiang Longjiang,Longjiang Zhen,long jiang,long jiang zhen,龙江,龙江镇 19.14771 110.32005 P PPLA4 CN 31 0 21 Asia/Chongqing 2012-01-19
-1914700 Xishui Xishui Xishui,Xishui Xiang,xi shui,xi shui xiang,细水,细水乡 19.21129 109.55968 P PPLA4 CN 31 0 240 Asia/Chongqing 2012-01-19
-1914713 Wanquan Wanquan Wanquan,Wanquan Zhen,wan quan,wan quan zhen,万泉,万泉镇 19.24415 110.40396 P PPLA4 CN 31 0 14 Asia/Chongqing 2012-01-19
-1914730 Limushan Limushan Limushan,Limushan Zhen,li mu shan,li mu shan zhen,黎母山,黎母山镇 19.26752 109.78298 P PPLA4 CN 31 0 164 Asia/Chongqing 2012-01-19
-1914743 Poxin Poxin Poxin,Poxin Zhen,po xin,po xin zhen,坡心,坡心镇 19.30202 110.08374 P PPLA4 CN 31 0 105 Asia/Chongqing 2012-01-19
-1914825 Lanyang Lanyang Lanyang,Lanyang Zhen,lan yang,lan yang zhen,兰洋,兰洋镇 19.46141 109.6604 P PPLA4 CN 31 0 199 Asia/Chongqing 2012-01-19
-1914927 Sandu Sandu Sandu,Sandu Zhen,san dou,san dou zhen,三都,三都镇 19.7894 109.215 P PPLA4 CN 31 0 28 Asia/Chongqing 2012-01-19
-1914932 Mutang Mutang Mutang,Mutang Zhen,mu tang,mu tang zhen,木棠,木棠镇 19.80755 109.34539 P PPLA4 CN 31 0 36 Asia/Chongqing 2012-01-19
-1914952 Dongcheng Dongcheng Dongcheng,Dongcheng Zhen,dong cheng,dong cheng zhen,东成,东成镇 19.70868 109.4561 P PPLA4 CN 31 0 32 Asia/Chongqing 2012-01-19
-1914965 Heqing Heqing Heqing,Heqing Zhen,he qing,he qing zhen,和庆,和庆镇 19.52831 109.63279 P PPLA4 CN 31 0 138 Asia/Chongqing 2012-01-19
-1915043 Bohou Bohou Bohou,Bohou Zhen,bo hou,bo hou zhen,博厚,博厚镇 19.88125 109.74059 P PPLA4 CN 31 0 35 Asia/Chongqing 2012-01-19
-1915047 Huangtong Huangtong Huangtong,Huangtong Zhen,huang tong,huang tong zhen,皇桐,皇桐镇 19.83503 109.84391 P PPLA4 CN 31 0 82 Asia/Chongqing 2012-01-19
-1915056 Longbo Longbo Longbo,Longbo Zhen,long bo,long bo zhen,龙波,龙波镇 19.76101 109.85187 P PPLA4 CN 31 0 63 Asia/Chongqing 2012-01-19
-1915089 Dongyin Dongyin Dongyin,Dongyin Zhen,dong ying,dong ying zhen,东英,东英镇 19.96054 109.64273 P PPLA4 CN 31 0 54 Asia/Chongqing 2012-01-19
-1915223 Zhongshan Zhongshan Zhongshan,zhong shan,zhong shan shi,中山,中山市 21.32256 110.58291 P PPL CN 30 2493400 16 Asia/Chongqing 2012-01-19
-1915377 Zhangshui Zhangshui Zhangshui,Zhangshui Zhen,zhang shui,zhang shui zhen,章水,章水镇 29.82036 121.29935 P PPLA4 CN 02 0 21 Asia/Shanghai 2012-01-19
-1915379 Xiaren Xiaren Jinting,Jinting Zhen,Xiaren,jin ting zhen,xia ren,下任,金庭镇 29.5704 121.02676 P PPLA4 CN 02 0 70 Asia/Shanghai 2012-01-19
-1915383 Hemudu Hemudu Hemudu,Hemudu Zhen,he mu du,he mu du zhen,河姆渡,河姆渡镇 29.9871 121.31138 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-19
-1915391 Ruanzhuang Ruanzhuang Lingnan,Ruanzhuang,ling nan,ruan zhuang,岭南,阮庄 29.78011 121.02813 P PPLA4 CN 02 0 175 Asia/Shanghai 2012-01-19
-1915399 Dashiju Dashiju Dashiju,Dashiju Zhen,da shi ju,da shi ju zhen,大市聚,大市聚镇 29.44472 121.03417 P PPLA4 CN 02 0 217 Asia/Shanghai 2012-01-19
-1915413 Chenxikou Chenxikou Chenxi,Chenxikou,chen xi,chen xi kou,陈溪,陈溪口 29.81805 121.0522 P PPLA4 CN 02 0 116 Asia/Shanghai 2012-01-19
-1915446 Huangwu Huangwu Huangwu,Sanhe,Sanhe Zhen,huang wu,san he zhen,三合镇,黄务 29.08454 121.1661 P PPLA4 CN 02 0 90 Asia/Shanghai 2012-01-19
-1915479 Feikeng Feikeng Feifeng,Feikeng,Shuangfeng,fei feng,fei keng,榧坑,榧峰 29.28702 121.23556 P PPLA4 CN 02 0 554 Asia/Shanghai 2012-01-19
-1915491 Shiliang Shiliang Shiliang,Shiliang Zhen,shi liang,shi liang zhen,石梁,石梁镇 29.24097 121.04322 P PPLA4 CN 02 0 758 Asia/Shanghai 2012-01-19
-1915501 Hengjie Hengjie Hengjie,Hengjie Zhen,heng jie,heng jie zhen,横街,横街镇 29.85917 121.39694 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-19
-1915507 Gulin Gulin Gulin,Gulin Zhen,gu lin,gu lin zhen,古林,古林镇 29.8325 121.43028 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-19
-1915508 Jishigang Jishigang Jishigang,Jishigang Zhen,ji shi gang,ji shi gang zhen,集士港,集士港镇 29.87028 121.43111 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-19
-1915735 Fulong Fulong Fulong,Fulong Xiang,fu long,fu long xiang,阜龙,阜龙乡 19.32386 109.45534 P PPLA4 CN 31 0 262 Asia/Chongqing 2012-01-19
-1915761 Jinbo Jinbo Jinbo,Jinbo Xiang,jin bo,jin bo xiang,金波,金波乡 19.24092 109.16997 P PPLA4 CN 31 0 139 Asia/Chongqing 2012-01-19
-1915772 Qifang Qifang Qifang,Qifang Zhen,qi fang,qi fang zhen,七坊,七坊镇 19.29992 109.23574 P PPLA4 CN 31 0 159 Asia/Chongqing 2012-01-19
-1915786 Bangxi Bangxi Bangxi,Bangxi Zhen,bang xi,bang xi zhen,邦溪,邦溪镇 19.37064 109.09786 P PPLA4 CN 31 0 93 Asia/Chongqing 2012-01-19
-1915788 Rongbang Rongbang Rongbang,Rongbang Xiang,rong bang,rong bang xiang,荣邦,荣邦乡 19.44637 109.13392 P PPLA4 CN 31 0 88 Asia/Chongqing 2012-01-19
-1915799 Shiyuetian Shiyuetian Shiyuetian,Shiyuetian Zhen,shi yue tian,shi yue tian zhen,十月田,十月田镇 19.32867 108.94895 P PPLA4 CN 31 0 90 Asia/Chongqing 2012-01-19
-1915821 Wulie Wulie Wulie,Wulie Zhen,wu lie,wu lie zhen,乌烈,乌烈镇 19.28614 108.78394 P PPLA4 CN 31 0 45 Asia/Chongqing 2012-01-19
-1915840 Sanjia Sanjia Sanjia,Sanjia Zhen,san jia,san jia zhen,三家,三家镇 19.24299 108.7559 P PPLA4 CN 31 0 17 Asia/Chongqing 2012-01-19
-1915877 Qicha Qicha Qicha,Qicha Xiang,qi cha,qi cha xiang,七差,七差乡 19.11623 109.04628 P PPLA4 CN 31 0 105 Asia/Chongqing 2012-01-19
-1916009 Changhao Changhao Changhao,Changhao Xiang,chang hao,chang hao xiang,畅好,畅好乡 18.73779 109.47783 P PPLA4 CN 31 0 320 Asia/Chongqing 2012-01-19
-1916012 Chongshan Chongshan Chongshan,Chongshan Zhen,chong shan,chong shan zhen,冲山,冲山镇 18.78275 109.4993 P PPLA4 CN 31 0 301 Asia/Chongqing 2012-01-19
-1916015 Maodao Maodao Maodao,Maodao Xiang,mao dao,mao dao xiang,毛道,毛道乡 18.79395 109.40551 P PPLA4 CN 31 0 222 Asia/Chongqing 2012-01-19
-1916039 Fanyang Fanyang Fanyang,Fanyang Zhen,fan yang,fan yang zhen,番阳,番阳镇 18.87675 109.39311 P PPLA4 CN 31 0 194 Asia/Chongqing 2012-01-19
-1916137 Nan’ao Nan'ao Nan'ao,Nan'ao Jiedao,Nan’ao,Nan’ao Jiedao,nan ao,南澳 22.53619 114.48718 P PPLA4 CN 30 0 8 Asia/Chongqing 2012-01-19
-1916188 Tieyong Tieyong Tieyong,Tieyong Zhen,tie yong,铁涌 22.72459 114.83414 P PPLA4 CN 30 0 21 Asia/Chongqing 2012-01-19
-1916198 Huangbu Huangbu Huangbu,huang bu,黄埠 22.754 114.95664 P PPLA4 CN 30 0 9 Asia/Chongqing 2012-01-19
-1916204 Pingdi Pingdi Pingdi,Pingdi Jiedao,ping de,坪地 22.7717 114.30178 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-19
-1916222 Dongyong Dongyong Dongyong,dong yong,东涌 22.79567 115.41588 P PPLA4 CN 30 0 12 Asia/Shanghai 2012-01-19
-1916226 Qiuchang Qiuchang Qiuchang,Qiuchang Jiedao,qiu zhang,秋长 22.82153 114.42586 P PPLA4 CN 30 0 43 Asia/Chongqing 2012-01-19
-1916231 Ebu Ebu Ebu,e bu,鹅埠 22.82765 114.99699 P PPLA4 CN 30 0 10 Asia/Chongqing 2012-01-19
-1916234 Dahu Dahu Dahu,Dahu Zhen,da hu,大湖 22.83504 115.56171 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1916237 Hongcao Hongcao Hongcao,hong cao,红草 22.83601 115.35522 P PPLA4 CN 30 0 72 Asia/Shanghai 2012-01-19
-1916245 Shatian Shatian Shatian,Shatian Zhen,sha tian,沙田 22.86266 114.54526 P PPLA4 CN 30 0 54 Asia/Chongqing 2012-01-19
-1916249 Jinxiang Jinxiang Jinxiang,Jinxiang Zhen,jin xiang,金厢 22.86282 115.70196 P PPLA4 CN 30 0 4 Asia/Shanghai 2012-01-19
-1916257 Jiadong Jiadong Jiadong,Jiadong Zhen,jia dong,甲东 22.87677 116.10228 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-19
-1916262 Jiaxi Jiaxi Jiaxi,Jiaxi Zhen,jia xi,甲西 22.88623 116.01375 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-19
-1916268 Shangying Shangying Shangying,Shangying Zhen,shang ying,上英 22.88652 115.55962 P PPLA4 CN 30 0 5 Asia/Shanghai 2012-01-19
-1916270 Taohe Taohe Taohe,tao he,陶河 22.89965 115.39329 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1916276 Lian’an Lian'an Lian'an,Lian’an,lian an,联安 22.91649 115.29351 P PPLA4 CN 30 0 2 Asia/Shanghai 2012-01-19
-1916282 Qishi Qishi Qishi,Qishi Zhen,qi shi,歧石 22.91756 116.12383 P PPLA4 CN 30 0 14 Asia/Shanghai 2012-01-19
-1916285 Qiaochong Qiaochong Qiaochong,Qiaochong Zhen,qiao chong,桥冲 22.92162 115.78264 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-19
-1916288 Yonghu Yonghu Yonghu,Yonghu Zhen,yong hu,永湖 22.94685 114.49485 P PPLA4 CN 30 0 18 Asia/Chongqing 2012-01-19
-1916289 Ketang Ketang Ketang,ke tang,可塘 22.94365 115.452 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1916294 Aojiang Aojiang Aojiang,Aojiang Zhen,Biejiang,ao jiang,鳌江 22.94214 116.03592 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1916296 Chengdong Chengdong Chengdong,Chengdong Jiedao,cheng dong,城东 22.9496 115.65055 P PPLA4 CN 30 0 29 Asia/Shanghai 2012-01-19
-1916300 Qianzhan Qianzhan Qianzhan,Qianzhan Zhen,qian zhan,前詹 22.94359 116.42356 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-19
-1916301 Hexi Hexi Hexi,Hexi Jiedao,he xi,河西 22.95815 115.60967 P PPLA4 CN 30 0 5 Asia/Shanghai 2012-01-19
-1916310 Donggang Donggang Donggang,Donggang Zhen,dong gang,东港 22.96806 115.9538 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-19
-1916314 Hongmei Hongmei Hongmei,Hongmei Zhen,hong mei,洪梅 22.99378 113.60372 P PPLA4 CN 30 0 3 Asia/Chongqing 2012-01-19
-1916315 Sandong Sandong Sandong,Sandong Zhen,san dong,三栋 22.98777 114.44162 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-19
-1916320 Xixi Xixi Xixi,Xixi Zhen,xi xi,溪西 22.98874 116.15855 P PPLA4 CN 30 0 14 Asia/Shanghai 2012-01-19
-1916396 Longmen Longmen Longmen,long men,龙门 29.90252 119.9475 P PPLA4 CN 02 0 57 Asia/Shanghai 2012-01-19
-1916398 Huanshan Huanshan Huanshan,huan shan,环山 29.93068 119.92478 P PPLA4 CN 02 0 23 Asia/Shanghai 2012-01-19
-1916418 Gaoxiang Gaoxiang Gaoxiang,gao xiang,高翔 29.92837 119.5907 P PPLA4 CN 02 0 64 Asia/Shanghai 2012-01-19
-1916624 Dashe Dashe Dashe,Yanjia,da she,yan jia,严家,大社 29.9079 118.9074 P PPLA4 CN 02 0 628 Asia/Shanghai 2012-01-19
-1916627 Wangfu Wangfu Wangfu,Zhengzhong,wang fu,zheng zhong,王阜,郑中 29.84182 118.91181 P PPLA4 CN 02 0 485 Asia/Shanghai 2012-01-19
-1916643 Weiping Weiping Weiping,Weiping Zhen,wei ping,wei ping zhen,威坪,威坪镇 29.72828 118.78403 P PPLA4 CN 02 0 157 Asia/Shanghai 2012-01-19
-1916647 Tangban Tangban Jinfeng,Tangban,jin feng,tang fan,塘畈,金峰 29.68389 118.91444 P PPLA4 CN 02 0 128 Asia/Shanghai 2012-01-19
-1916663 Yaojia Yaojia Jieshou,Yaojia,jie shou,yao jia,姚家,界首 29.5526 118.78362 P PPLA4 CN 02 0 116 Asia/Shanghai 2012-01-19
-1916670 Langchuan Langchuan Langchuan,lang chuan,浪川 29.48992 118.5971 P PPLA4 CN 02 0 121 Asia/Shanghai 2012-01-19
-1916673 Liyang Liyang Lishang,Liyang,li shang,li yang,里商,里阳 29.48284 118.9927 P PPLA4 CN 02 0 206 Asia/Shanghai 2012-01-19
-1916677 Shuangqiao Shuangqiao Shuangqiao,shuang qiao,双桥 29.13447 118.88361 P PPLA4 CN 02 0 151 Asia/Shanghai 2012-01-19
-1916689 Datou Datou Datou,Qili,da tou,qi li,七里,大头 29.15306 118.75778 P PPLA4 CN 02 0 695 Asia/Shanghai 2012-01-19
-1916698 Xiacaoqiao Xiacaoqiao Taizhen,Xiacaoqiao,tai zhen,xia cao qiao,下槽桥,太真 29.18392 118.83879 P PPLA4 CN 02 0 297 Asia/Shanghai 2012-01-19
-1916701 Shisanli Shisanli Fushi,Shisanli,fu shi,shi san li,十三里,浮石 29.00505 118.90752 P PPLA4 CN 02 0 88 Asia/Shanghai 2012-01-19
-1916705 Huipinggeng Huipinggeng Huipinggeng,Laochagen,hui ping geng,lao cha geng,灰坪埂,老茶埂 29.24974 118.85428 P PPLA4 CN 02 0 618 Asia/Shanghai 2012-01-19
-1916712 Anyang Anyang Anyang,an yang,安阳 29.4175 118.82917 P PPLA4 CN 02 0 192 Asia/Shanghai 2012-01-19
-1916715 Fengshuling Fengshuling Fengshuling,Fengshuling Zhen,feng shu ling,feng shu ling zhen,枫树岭,枫树岭镇 29.36916 118.70566 P PPLA4 CN 02 0 197 Asia/Shanghai 2012-01-19
-1916722 Daqiaotou Daqiaotou Daqiaotou,Huanggu,da qiao tou,huang gu,大桥头,黄谷 29.28832 118.5589 P PPLA4 CN 02 0 287 Asia/Shanghai 2012-01-19
-1916732 Shangyuan Shangyuan Jinyuan,Shangyuan,jin yuan,shang yuan,上源,金源 29.04301 118.65825 P PPLA4 CN 02 0 147 Asia/Shanghai 2012-01-19
-1916734 Xinchang Xinchang Xinchang,xin chang,新昌 29.07421 118.58979 P PPLA4 CN 02 0 138 Asia/Shanghai 2012-01-19
-1916737 Donglu Donglu Donglu,dong lu,东鲁 29.02355 118.53482 P PPLA4 CN 02 0 144 Asia/Shanghai 2012-01-19
-1916743 Lujiawu Lujiawu Lujiawu,Tongcun,Tongcun Zhen,lu jia wu,tong cun,tong cun zhen,桐村,桐村镇,鲁家坞 29.00753 118.2492 P PPLA4 CN 02 0 157 Asia/Shanghai 2012-01-19
-1916753 Youxikou Youxikou Youxikou,Zhangwan,you xi kou,zhang wan,张湾,油溪口 29.12418 118.1974 P PPLA4 CN 02 0 205 Asia/Shanghai 2012-01-19
-1916758 Zhangcun Zhangcun Zhangcun,Zhongcun,zhang cun,zhong cun,中村,张村 29.21903 118.33537 P PPLA4 CN 02 0 184 Asia/Shanghai 2012-01-19
-1916778 Xiashan Xiashan Xiashan,xia shan,霞山 29.3339 118.40617 P PPLA4 CN 02 0 193 Asia/Shanghai 2012-01-19
-1916785 Zhongzhou Zhongzhou Zhongzhou,Zhongzhou Zhen,zhong zhou,zhong zhou zhen,中洲,中洲镇 29.44089 118.47828 P PPLA4 CN 02 0 162 Asia/Shanghai 2012-01-19
-1916798 Dongwu Dongwu Changpu,Dongwu,chang pu,dong wu,东坞,菖蒲 29.23789 118.54563 P PPLA4 CN 02 0 363 Asia/Shanghai 2012-01-19
-1916824 Xukou Xukou Xukou,xu kou,胥口 29.98727 119.66528 P PPLA4 CN 02 0 36 Asia/Shanghai 2012-01-19
-1916848 Daling Daling Daling,Daling Zhen,da ling,大岭 23.00371 114.70152 P PPLA4 CN 30 0 24 Asia/Chongqing 2012-01-19
-1916860 Shipai Shipai Shipai,Shipai Zhen,shi pai,石排 23.08744 113.94506 P PPLA4 CN 30 0 8 Asia/Chongqing 2012-01-19
-1916861 Gaobu Gaobu Gaobu,Gaobu Zhen,gao bu,高埗 23.08435 113.71785 P PPLA4 CN 30 0 2 Asia/Chongqing 2012-01-19
-1916862 Shijie Shijie Shijie,Shijie Zhen,shi jie,石碣 23.09305 113.79582 P PPLA4 CN 30 0 5 Asia/Chongqing 2012-01-19
-1916872 Lianghua Lianghua Lianghua,liang hua,梁化 23.11273 114.67193 P PPLA4 CN 30 0 35 Asia/Chongqing 2012-01-19
-1916875 Shiwan Shiwan Shiwan,Shiwan Zhen,shi wan,石湾 23.12445 113.86279 P PPLA4 CN 30 0 10 Asia/Chongqing 2012-01-19
-1916883 Xiaojinkou Xiaojinkou Xiaojinkou,Xiaojinkou Zhen,xiao jin kou,小金口 23.18894 114.40422 P PPLA4 CN 30 0 17 Asia/Chongqing 2012-01-19
-1916888 Yonghe Yonghe Yonghe,Yonghe Zhen,yong he,永和 23.18159 113.58472 P PPLA4 CN 30 0 9 Asia/Chongqing 2012-01-19
-1916895 Ningxi Ningxi Ningxi,Ningxi Zhen,ning xi,宁西 23.21722 113.65489 P PPLA4 CN 30 0 19 Asia/Chongqing 2012-01-19
-1916898 Aipi Aipi Aipi,Aipi Zhen,ai bei,矮陂 23.2282 114.63844 P PPLA4 CN 30 0 23 Asia/Chongqing 2012-01-19
-1916948 Feng’an Feng'an Feng'an,Feng'an Zhen,Feng’an,Feng’an Zhen,feng an,feng an zhen,凤安,凤安镇 23.40933 114.83978 P PPLA4 CN 30 0 52 Asia/Chongqing 2012-01-19
-1916993 Qingxi Qingxi Qingxi,Qingxi Zhen,qing xi,qing xi zhen,青溪,青溪镇 23.53754 114.95402 P PPLA4 CN 30 0 91 Asia/Chongqing 2012-01-19
-1916998 Gongzhuang Gongzhuang Gongzhuang,Gongzhuang Zhen,gong zhuang,公庄 23.5528 114.38837 P PPLA4 CN 30 0 36 Asia/Chongqing 2012-01-19
-1917000 Luxi Luxi Luxi,Luxi Zhen,lu xi,路溪 23.56268 114.2744 P PPLA4 CN 30 0 66 Asia/Chongqing 2012-01-19
-1917017 Longjiang Longjiang Longjiang,Longjiang Zhen,long jiang,龙江 23.60943 114.28935 P PPLA4 CN 30 0 57 Asia/Chongqing 2012-01-19
-1917050 Wangping Wangping Wangping,Wangping Zhen,wang ping,王坪 23.73477 114.24831 P PPLA4 CN 30 0 68 Asia/Chongqing 2012-01-19
-1917059 Jiushe Jiushe Jiushe,Jiushe Zhen,jiu she,jiu she zhen,久社,久社镇 23.77894 114.95897 P PPLA4 CN 30 0 114 Asia/Shanghai 2012-01-19
-1917061 Xingang Xingang Xingang,Xingang Zhen,xin gang,xin gang zhen,新港,新港镇 23.7843 114.63301 P PPLA4 CN 30 0 135 Asia/Chongqing 2012-01-19
-1917073 Gaotian Gaotian Gaotian,Gaotian Zhen,gao tian,gao tian zhen,高田,高田镇 23.81701 113.18051 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-19
-1917081 Yihe Yihe Yihe,Yihe Zhen,yi he,yi he zhen,义合,义合镇 23.84505 114.86317 P PPLA4 CN 30 0 47 Asia/Chongqing 2012-01-19
-1917092 Shuitou Shuitou Shuitou,Shuitou Zhen,shui tou,水头 23.88094 113.64145 P PPLA4 CN 30 0 90 Asia/Chongqing 2012-01-19
-1917107 Xichang Xichang Xichang,Xichang Zhen,xi chang,xi chang zhen,锡场,锡场镇 23.9295 114.45267 P PPLA4 CN 30 0 121 Asia/Chongqing 2012-01-19
-1917113 Shuangjiang Shuangjiang Shuangjiang,Shuangjiang Zhen,shuang jiang,shuang jiang zhen,双江,双江镇 23.95043 114.71191 P PPLA4 CN 30 0 124 Asia/Chongqing 2012-01-19
-1917124 Xiaozhen Xiaozhen Xiaozhen,Xiaozhen Zhen,xiao zheng,xiao zheng zhen,小正,小正镇 23.98542 114.02598 P PPLA4 CN 30 0 501 Asia/Chongqing 2012-01-19
-1917133 Dadong Dadong Dadong,Dadong Zhen,da dong,da dong zhen,大洞,大洞镇 24.02553 113.06883 P PPLA4 CN 30 0 142 Asia/Chongqing 2012-01-19
-1917135 Gaogang Gaogang Gaogang,Gaogang Zhen,gao gang,高岗 24.02676 113.57948 P PPLA4 CN 30 0 132 Asia/Chongqing 2012-01-19
-1917139 Banjiang Banjiang Banjiang,Banjiang Zhen,ban jiang,ban jiang zhen,半江,半江镇 24.03937 114.55524 P PPLA4 CN 30 0 121 Asia/Chongqing 2012-01-19
-1917143 Luohu Luohu Luohu,Luohu Zhen,luo hu,luo hu zhen,骆湖,骆湖镇 24.04837 114.87403 P PPLA4 CN 30 0 157 Asia/Chongqing 2012-01-19
-1917150 Shuibian Shuibian Shuibian,Shuibian Zhen,shui bian,shui bian zhen,水边,水边镇 24.09556 113.16859 P PPLA4 CN 30 0 28 Asia/Chongqing 2012-01-19
-1917153 Shaba Shaba Shaba,Shaba Zhen,sha ba,sha ba zhen,沙坝,沙坝镇 24.09081 113.08137 P PPLA4 CN 30 0 47 Asia/Chongqing 2012-01-19
-1917160 Zhangxi Zhangxi Zhangxi,Zhangxi Shezuxiang,zhang xi,zhang xi she zu xiang,漳溪,漳溪畲族乡 24.10274 114.92255 P PPLA4 CN 30 0 182 Asia/Shanghai 2012-01-19
-1917161 Shangguan Shangguan Shangguan,Shangguan Zhen,shang guan,shang guan zhen,上莞,上莞镇 24.10192 114.98797 P PPLA4 CN 30 0 188 Asia/Shanghai 2012-01-19
-1917162 Shuntian Shuntian Shuntian,Shuntian Zhen,shun tian,shun tian zhen,顺天,顺天镇 24.10667 114.76409 P PPLA4 CN 30 0 126 Asia/Chongqing 2012-01-19
-1917170 Huanggang Huanggang Huanggang,Huanggang Zhen,huang gang,huang gang zhen,黄岗,黄岗镇 24.13333 113.49887 P PPLA4 CN 30 0 60 Asia/Chongqing 2012-01-19
-1917177 Huangqi Huangqi Huangqi,Huangqi Zhen,huang qi,huang qi zhen,黄磜,黄磜镇 24.16836 114.22156 P PPLA4 CN 30 0 454 Asia/Chongqing 2012-01-19
-1917181 Huangsha Huangsha Huangsha,Huangsha Zhen,huang sha,huang sha zhen,黄沙,黄沙镇 24.17092 114.84362 P PPLA4 CN 30 0 137 Asia/Chongqing 2012-01-19
-1917184 Qixia Qixia Qixia,Qixia Zhen,qi xia,qi xia zhen,磜下,磜下镇 24.18917 114.03444 P PPLA4 CN 30 0 172 Asia/Chongqing 2012-01-19
-1917185 Tianyuan Tianyuan Tianyuan,Tianyuan Zhen,tian yuan,tian yuan zhen,田源,田源镇 24.18813 114.41881 P PPLA4 CN 30 0 158 Asia/Chongqing 2012-01-19
-1917200 Youxi Youxi Youxi,Youxi Zhen,you xi,you xi zhen,油溪,油溪镇 24.21596 114.67998 P PPLA4 CN 30 0 154 Asia/Chongqing 2012-01-19
-1917201 Lishi Lishi Lishi,Lishi Zhen,li shi,li shi zhen,礼士,礼士镇 24.22748 114.996 P PPLA4 CN 30 0 163 Asia/Shanghai 2012-01-19
-1917204 Zhoupi Zhoupi Zhoupi,Zhoupi Zhen,zhou bei,zhou bei zhen,周陂,周陂镇 24.24939 114.02507 P PPLA4 CN 30 0 129 Asia/Chongqing 2012-01-19
-1917207 Qiaotou Qiaotou Qiaotou,Qiaotou Zhen,qiao tou,qiao tou zhen,桥头,桥头镇 24.24969 113.76831 P PPLA4 CN 30 0 92 Asia/Chongqing 2012-01-19
-1917213 Xiuduan Xiuduan Xiuduan,Xiuduan Zhen,xiu duan,xiu duan zhen,绣缎,绣缎镇 24.26475 114.85059 P PPLA4 CN 30 0 167 Asia/Chongqing 2012-01-19
-1917215 Xishan Xishan Xishan,Xishan Zhen,xi shan,xi shan zhen,溪山,溪山镇 24.26963 114.42084 P PPLA4 CN 30 0 181 Asia/Chongqing 2012-01-19
-1917218 Gongbai Gongbai Gongbai,Gongbai Zhen,gong bai,gong bai zhen,公白,公白镇 24.27665 114.94791 P PPLA4 CN 30 0 159 Asia/Shanghai 2012-01-19
-1917221 Yinghong Yinghong Yinghong,Yinghong Zhen,Yinghong Zonghe Jingjiqu,ying hong,ying hong zhen,英红,英红镇 24.29472 113.42222 P PPLA4 CN 30 0 51 Asia/Chongqing 2012-01-19
-1917237 Hengshitang Hengshitang Hengshitang,Hengshitang Zhen,heng shi tang,heng shi tang zhen,横石塘,横石塘镇 24.34389 113.385 P PPLA4 CN 30 0 48 Asia/Chongqing 2012-01-19
-1917240 Yunling Yunling Yunling,Yunling Zhen,yun ling,yun ling zhen,云岭,云岭镇 24.34694 113.43887 P PPLA4 CN 30 0 46 Asia/Chongqing 2012-01-19
-1917243 Hengshishui Hengshishui Hengshishui,Hengshishui Zhen,heng shi shui,heng shi shui zhen,横石水,横石水镇 24.36501 113.80136 P PPLA4 CN 30 0 107 Asia/Chongqing 2012-01-19
-1917248 Neiguan Neiguan Neiguan,Neiguan Zhen,nei guan,nei guan zhen,内莞,内莞镇 24.3702 114.55303 P PPLA4 CN 30 0 248 Asia/Chongqing 2012-01-19
-1917270 Boluo Boluo Boluo,Boluo Zhen,bo luo,bo luo zhen,波罗,波罗镇 24.44219 113.01918 P PPLA4 CN 30 0 90 Asia/Chongqing 2012-01-19
-1917275 Reshui Reshui Reshui,Reshui Zhen,re shui,re shui zhen,热水,热水镇 24.45767 114.82682 P PPLA4 CN 30 0 241 Asia/Chongqing 2012-01-19
-1917290 Daba Daba Daba,Daba Zhen,da ba,da ba zhen,大坝,大坝镇 24.50719 114.92689 P PPLA4 CN 30 0 170 Asia/Shanghai 2012-01-19
-1917302 Zhangshi Zhangshi Zhangshi,Zhangshi Zhen,zhang shi,zhang shi zhen,樟市,樟市镇 24.5488 113.52419 P PPLA4 CN 30 0 59 Asia/Shanghai 2012-02-28
-1917306 Liyuan Liyuan Liyuan,Liyuan Zhen,lian yuan,lian yuan zhen,浰源,浰源镇 24.56594 114.76525 P PPLA4 CN 30 0 357 Asia/Chongqing 2012-01-19
-1917342 Longgui Longgui Longgui,Longgui Zhen,long gui,long gui zhen,龙归,龙归镇 24.73226 113.45193 P PPLA4 CN 30 0 53 Asia/Shanghai 2012-02-28
-1917350 Duheng Duheng Duheng,Duheng Xiang,dou heng,dou heng xiang,都亨,都亨乡 24.76872 114.27528 P PPLA4 CN 30 0 271 Asia/Chongqing 2012-01-19
-1917362 Yiliu Yiliu Yiliu,Yiliu Zhen,yi liu,yi liu zhen,一六,一六镇 24.83066 113.38382 P PPLA4 CN 30 0 114 Asia/Shanghai 2012-01-19
-1917363 Shendushui Shendushui Shendushui,Shendushui Yaozuxiang,shen du shui,shen du shui yao zu xiang,深渡水,深渡水瑶族乡 24.8375 114.06944 P PPLA4 CN 30 0 148 Asia/Chongqing 2012-01-19
-1917368 Luoba Luoba Luoba,Luoba Zhen,luo ba,luo ba zhen,罗坝,罗坝镇 24.8625 114.20825 P PPLA4 CN 30 0 160 Asia/Chongqing 2012-01-19
-1917370 Dongping Dongping Dongping,Dongping Zhen,dong ping,dong ping zhen,东坪,东坪镇 24.74 113.18 P PPLA4 CN 30 0 213 Asia/Shanghai 2012-01-19
-1917374 Zhongyang Zhongyang Zhongyang,Zhongyang Zhen,zhong yang,zhong yang zhen,重阳,重阳镇 24.88171 113.45572 P PPLA4 CN 30 0 60 Asia/Shanghai 2012-02-28
-1917385 Dungang Dungang Dungang,Dungang Zhen,dun gang,dun gang zhen,顿岗,顿岗镇 24.9215 114.13774 P PPLA4 CN 30 0 122 Asia/Chongqing 2012-01-19
-1917386 Daqiao Daqiao Daqiao,Daqiao Zhen,da qiao,da qiao zhen,大桥,大桥镇 24.92149 113.76369 P PPLA4 CN 30 0 72 Asia/Shanghai 2012-02-28
-1917390 Chengnan Chengnan Chengnan,Chengnan Zhen,cheng nan,cheng nan zhen,城南,城南镇 24.94083 114.06917 P PPLA4 CN 30 0 105 Asia/Chongqing 2012-01-19
-1917394 Youxi Youxi Youxi,Youxi Zhen,you xi,you xi zhen,游溪,游溪镇 24.95694 113.36028 P PPLA4 CN 30 0 663 Asia/Chongqing 2012-01-19
-1917424 Gushi Gushi Gushi,Gushi Zhen,gu shi,gu shi zhen,古市,古市镇 25.05588 114.22278 P PPLA4 CN 30 0 110 Asia/Shanghai 2012-02-28
-1917425 Zhutian Zhutian Zhutian,Zhutian Zhen,zhu tian,zhu tian zhen,主田,主田镇 25.06076 114.31037 P PPLA4 CN 30 0 131 Asia/Shanghai 2012-02-28
-1917426 Huangkeng Huangkeng Huangkeng,Huangkeng Zhen,huang keng,huang keng zhen,黄坑,黄坑镇 25.0597 113.82612 P PPLA4 CN 30 0 87 Asia/Shanghai 2012-02-28
-1917428 Changlai Changlai Changlai,Changlai Zhen,zhang lai,zhang lai zhen,长来,长来镇 25.08396 113.38608 P PPLA4 CN 30 0 91 Asia/Chongqing 2012-01-19
-1917430 Jiangtou Jiangtou Jiangtou,Jiangtou Zhen,jiang tou,jiang tou zhen,江头,江头镇 25.08712 114.43746 P PPLA4 CN 30 0 144 Asia/Shanghai 2012-02-28
-1917433 Shaping Shaping Shaping,Shaping Zhen,sha ping,sha ping zhen,沙坪,沙坪镇 25.08932 113.03805 P PPLA4 CN 30 0 429 Asia/Chongqing 2012-01-19
-1917442 Yunyan Yunyan Yunyan,Yunyan Zhen,yun yan,yun yan zhen,云岩,云岩镇 25.12992 113.09398 P PPLA4 CN 30 0 630 Asia/Chongqing 2012-01-19
-1917443 Quan’an Quan'an Quan'an,Quan'an Zhen,Quan’an,Quan’an Zhen,quan an,quan an zhen,全安,全安镇 25.1343 114.26108 P PPLA4 CN 30 0 124 Asia/Shanghai 2012-02-28
-1917444 Cangshi Cangshi Cangshi,Cangshi Zhen,cang shi,cang shi zhen,苍石,苍石镇 25.13103 114.20394 P PPLA4 CN 30 0 139 Asia/Shanghai 2012-02-28
-1917449 Pingtian Pingtian Pingtian,Pingtian Zhen,ping tian,ping tian zhen,坪田,坪田镇 25.22 114.63 P PPLA4 CN 30 0 167 Asia/Shanghai 2012-02-28
-1917450 Wenshao Wenshao Wenshao,Wenshao Zhen,wen shao,wen shao zhen,闻韶,闻韶镇 25.14074 113.88666 P PPLA4 CN 30 0 344 Asia/Chongqing 2012-01-19
-1917453 Langtian Langtian Langtian,Langtian Zhen,lang tian,lang tian zhen,廊田,廊田镇 25.16019 113.46173 P PPLA4 CN 30 0 121 Asia/Chongqing 2012-01-19
-1917455 Nanmu Nanmu Nanmu,Nanmu Zhen,nan mu,nan mu zhen,南亩,南亩镇 25.16416 114.55072 P PPLA4 CN 30 0 164 Asia/Shanghai 2012-02-28
-1917457 Xiushui Xiushui Xiushui,Xiushui Zhen,xiu shui,xiu shui zhen,秀水,秀水镇 25.17226 112.99801 P PPLA4 CN 30 0 210 Asia/Chongqing 2012-01-19
-1917461 Beixiang Beixiang Beixiang,Beixiang Zhen,bei xiang,bei xiang zhen,北乡,北乡镇 25.18547 113.34719 P PPLA4 CN 30 0 140 Asia/Chongqing 2012-01-19
-1917469 Zhuji Zhuji Zhuji,Zhuji Zhen,zhu ji,zhu ji zhen,珠玑,珠玑镇 25.19836 114.35534 P PPLA4 CN 30 0 143 Asia/Shanghai 2012-02-28
-1917478 Lanhe Lanhe Lanhe,Lanhe Zhen,lan he,lan he zhen,澜河,澜河镇 25.23846 114.14157 P PPLA4 CN 30 0 320 Asia/Shanghai 2012-02-28
-1917481 Jiezhi Jiezhi Jiezhi,Jiezhi Zhen,jie zhi,jie zhi zhen,界址,界址镇 25.24824 114.72348 P PPLA4 CN 30 0 196 Asia/Shanghai 2012-02-28
-1917485 Hongshan Hongshan Hongshan,Hongshan Zhen,hong shan,hong shan zhen,红山,红山镇 25.25876 113.59599 P PPLA4 CN 30 0 496 Asia/Chongqing 2012-01-19
-1917487 Wushan Wushan Wushan,Wushan Zhen,wu shan,wu shan zhen,五山,五山镇 25.26094 113.48568 P PPLA4 CN 30 0 329 Asia/Chongqing 2012-01-19
-1917490 Dengfang Dengfang Dengfang,Dengfang Zhen,deng fang,deng fang zhen,邓坊,邓坊镇 25.26505 114.45 P PPLA4 CN 30 0 182 Asia/Shanghai 2012-02-28
-1917492 Datang Datang Datang,Datang Zhen,da tang,da tang zhen,大塘,大塘镇 25.28102 114.52474 P PPLA4 CN 30 0 162 Asia/Shanghai 2012-02-28
-1917495 Kongjiang Kongjiang Kongjiang,Kongjiang Zhen,kong jiang,kong jiang zhen,孔江,孔江镇 25.28181 114.617 P PPLA4 CN 30 0 154 Asia/Shanghai 2012-02-28
-1917498 Maozifeng Maozifeng Maozifeng,Maozifeng Zhen,Maozifengfa Linchang,mao zi feng,mao zi feng zhen,帽子峰,帽子峰镇 25.23193 114.21851 P PPLA4 CN 30 0 200 Asia/Shanghai 2012-02-28
-1917513 Youshan Youshan Youshan,Youshan Zhen,you shan,you shan zhen,油山,油山镇 25.35967 114.54047 P PPLA4 CN 30 0 469 Asia/Shanghai 2012-02-28
-1917515 Liangjiang Liangjiang Liangjiang,Liangjiang Zhen,liang jiang,liang jiang zhen,两江,两江镇 25.36093 113.28458 P PPLA4 CN 30 0 344 Asia/Chongqing 2012-01-19
-1917521 Qingyun Qingyun Qingyun,Qingyun Zhen,qing yun,qing yun zhen,庆云,庆云镇 25.39664 113.17655 P PPLA4 CN 30 0 386 Asia/Chongqing 2012-01-19
-1917526 Huangpu Huangpu Huangpu,Huangpu Zhen,huang pu,huang pu zhen,黄圃,黄圃镇 25.44333 113.17472 P PPLA4 CN 30 0 222 Asia/Chongqing 2012-01-19
-1917527 Baishi Baishi Baishi,Baishi Zhen,bai shi,bai shi zhen,白石,白石镇 25.45963 113.25269 P PPLA4 CN 30 0 550 Asia/Chongqing 2012-01-19
-1917530 Shangen Shangen Shangen,Shangen Zhen,shan gen,shan gen zhen,山根,山根镇 18.96948 110.48229 P PPLA4 CN 31 0 19 Asia/Chongqing 2012-01-19
-1917569 Sancai Sancai Sancai,Sancai Zhen,san cai,san cai zhen,三才,三才镇 18.47581 110.00076 P PPLA4 CN 31 0 13 Asia/Chongqing 2012-01-19
-1917571 Timeng Timeng Timeng,Timeng Xiang,ti meng,ti meng xiang,提蒙,提蒙乡 18.56906 110.01246 P PPLA4 CN 31 0 27 Asia/Chongqing 2012-01-19
-1917589 Changfeng Changfeng Changfeng,Changfeng Zhen,zhang feng,zhang feng zhen,长丰,长丰镇 18.80197 110.32067 P PPLA4 CN 31 0 40 Asia/Chongqing 2012-01-19
-1917594 Damao Damao Damao,Damao Zhen,da mao,da mao zhen,大茂,大茂镇 18.8492 110.39244 P PPLA4 CN 31 0 25 Asia/Chongqing 2012-01-19
-1917615 Heping Heping Heping,Heping Zhen,he ping,he ping zhen,和平,和平镇 18.9009 110.01983 P PPLA4 CN 31 0 118 Asia/Chongqing 2012-01-19
-1917629 Beida Beida Beida,Beida Zhen,bei da,bei da zhen,北大,北大镇 18.92416 110.33079 P PPLA4 CN 31 0 30 Asia/Chongqing 2012-01-19
-1917639 Changzheng Changzheng Changzheng,Changzheng Zhen,zhang zheng,zhang zheng zhen,长征,长征镇 18.96161 109.87462 P PPLA4 CN 31 0 341 Asia/Chongqing 2012-01-19
-1917666 Shang’an Shang'an Shang'an,Shang'an Xiang,Shang’an,Shang’an Xiang,shang an,shang an xiang,上安,上安乡 18.87758 109.833 P PPLA4 CN 31 0 244 Asia/Chongqing 2012-01-19
-1917674 Diaoluoshan Diaoluoshan Diaoluoshan,Diaoluoshan Xiang,diao luo shan,diao luo shan xiang,吊罗山,吊罗山乡 18.79545 109.87392 P PPLA4 CN 31 0 253 Asia/Chongqing 2012-01-19
-1917716 Qunying Qunying Qunying,Qunying Xiang,qun ying,qun ying xiang,群英,群英乡 18.58473 109.87084 P PPLA4 CN 31 0 34 Asia/Chongqing 2012-01-19
-1917718 Liugong Liugong Liugong,Liugong Xiang,liu gong,liu gong xiang,六弓,六弓乡 18.53992 109.77785 P PPLA4 CN 31 0 152 Asia/Chongqing 2012-01-19
-1917725 Wenluo Wenluo Wenluo,Wenluo Zhen,wen luo,wen luo zhen,文罗,文罗镇 18.51789 109.95289 P PPLA4 CN 31 0 53 Asia/Chongqing 2012-01-19
-1917726 Longguang Longguang Longguang,Longguang Zhen,long guang,long guang zhen,隆广,隆广镇 18.50526 109.89913 P PPLA4 CN 31 0 62 Asia/Chongqing 2012-01-19
-1917750 Jiamao Jiamao Jiamao,Jiamao Zhen,jia mao,jia mao zhen,加茂,加茂镇 18.55622 109.69762 P PPLA4 CN 31 0 44 Asia/Chongqing 2012-01-19
-1917771 Nanlin Nanlin Nanlin,Nanlin Xiang,nan lin,nan lin xiang,南林,南林乡 18.40762 109.61267 P PPLA4 CN 31 0 89 Asia/Chongqing 2012-01-19
-1917846 Jiusuo Jiusuo Jiusuo,Jiusuo Zhen,jiu suo,jiu suo zhen,九所,九所镇 18.44425 108.91015 P PPLA4 CN 31 0 8 Asia/Chongqing 2012-01-19
-1917861 Lincuo Lincuo Lincuo,Meiling Zhen,lin cuo,林厝 23.66062 117.25946 P PPLA4 CN 07 0 12 Asia/Shanghai 2012-01-19
-1917864 Dongyingcun Dongyingcun Dongying,Dongyingcun,Qianlou Zhen,dong ying cun,东英村 23.68852 117.3856 P PPLA4 CN 07 0 7 Asia/Shanghai 2012-01-19
-1917867 Xingxi Xingxi Qiaodong Zhen,Xingxi,qiao dong zhen,xing xi,兴溪,桥东镇 23.70498 117.19071 P PPLA4 CN 07 0 9 Asia/Shanghai 2012-01-19
-1917868 Zhangtang Zhangtang Zhangtang,Zhangtang Zhen,zhang tang,樟塘 23.72141 117.44668 P PPLA4 CN 07 0 13 Asia/Shanghai 2012-01-19
-1917869 Xinzhai Xinzhai Shenqiao Zhen,Xinzhai,xin zhai,新寨 23.72048 117.14866 P PPLA4 CN 07 0 18 Asia/Shanghai 2012-01-19
-1917870 Kangmei Kangmei Kangmei,Kangmei Zhen,kang mei,康美 23.73559 117.47266 P PPLA4 CN 07 0 12 Asia/Shanghai 2012-01-19
-1917871 Lushikeng Lushikeng Jinxing,Lushikeng,jin xing,lu shi keng,金星,鹿食坑 23.76058 117.25534 P PPLA4 CN 07 0 20 Asia/Shanghai 2012-01-19
-1917875 Jingbaoshan Jingbaoshan Jianshe,Jingbaoshan,jian she,jin bao shan,建设,进宝山 23.80853 117.09643 P PPLA4 CN 07 0 40 Asia/Shanghai 2012-01-19
-1917876 Lieyu Lieyu Lieyu,Lieyu Zhen,lie yu,列屿 23.82394 117.46238 P PPLA4 CN 07 0 13 Asia/Shanghai 2012-01-19
-1917880 Dongpu Dongpu Dongpu,Hongxing,dong bu,hong xing,东埔,红星 23.88588 117.11645 P PPLA4 CN 07 0 81 Asia/Shanghai 2012-01-19
-1917887 Dongkeng Dongkeng Dongkeng,Dongxia Zhen,dong keng,dong sha,东厦,东坑 23.95008 117.38254 P PPLA4 CN 07 0 18 Asia/Shanghai 2012-01-19
-1917888 Zhaizipu Zhaizipu Heping,Zhaizipu,he ping,zhai zi bu,和平,寨仔埔 23.95675 117.26266 P PPLA4 CN 07 0 31 Asia/Shanghai 2012-01-19
-1917891 Xiage Xiage Xiage,Xiage Zhen,Yangdong,xia ge,霞葛 23.99355 117.01134 P PPLA4 CN 07 0 98 Asia/Shanghai 2012-01-19
-1918273 Fenglin Fenglin Fenglin,Fenglin Zhen,feng lin,feng lin zhen,风林,风林镇 28.52285 118.49918 P PPLA4 CN 02 0 159 Asia/Shanghai 2012-01-19
-1918280 Maofan Maofan Maofan,mao ban,茅坂 28.54334 118.48588 P PPLA4 CN 02 0 149 Asia/Shanghai 2012-01-19
-1918314 Xintangbian Xintangbian Xintangbian,Xintangbian Zhen,xin tang bian,xin tang bian zhen,新塘边,新塘边镇 28.62161 118.45152 P PPLA4 CN 02 0 137 Asia/Shanghai 2012-01-19
-1918327 Wucun Wucun Wucun,wu cun,吴村 28.65978 118.45364 P PPLA4 CN 02 0 168 Asia/Shanghai 2012-01-19
-1918420 Baishijie Baishijie Baishi Zhen,Baishijie,bai shi jie,bai shi zhen,白石街,白石镇 28.82273 118.40378 P PPLA4 CN 02 0 155 Asia/Shanghai 2012-01-19
-1918511 Dong’an Dong'an Dong'an,Dong’an,dong an,东案 28.98299 118.65732 P PPLA4 CN 02 0 93 Asia/Shanghai 2012-01-19
-1918611 Huangtian Huangtian Huangtian,Huangtian Zhen,Xibian,huang tian,huang tian zhen,xi bian,西边,黄田,黄田镇 27.76556 118.93306 P PPLA4 CN 02 0 323 Asia/Shanghai 2012-01-19
-1918623 Shangyang Shangyang Shangyang,shang yang,上垟 27.85277 119.86023 P PPLA4 CN 02 0 940 Asia/Shanghai 2012-01-19
-1918655 Pingdu Pingdu Badu,Pingdu,Pingdu Zhen,ping dou,ping dou zhen,屏都,屏都镇 27.61289 118.96666 P PPLA4 CN 02 0 320 Asia/Shanghai 2012-01-19
-1918709 Sanlian Sanlian Sanlian,Sanlian Zhen,san lian,san lian zhen,三联,三联镇 29.04183 120.34546 P PPLA4 CN 02 0 156 Asia/Shanghai 2012-01-19
-1918710 Fangqian Fangqian Fangqian,Fangqian Zhen,fang qian,fang qian zhen,方前,方前镇 29.0516 120.67949 P PPLA4 CN 02 0 187 Asia/Shanghai 2012-01-19
-1918713 Fangjun Fangjun Fangjun,Fangjun Zhen,fang jun,fang jun zhen,防军,防军镇 29.07139 120.245 P PPLA4 CN 02 0 108 Asia/Shanghai 2012-01-19
-1918719 Mazhai Mazhai Mazhai,Mazhai Zhen,ma zhai,ma zhai zhen,马宅,马宅镇 29.09262 120.36625 P PPLA4 CN 02 0 220 Asia/Shanghai 2012-01-19
-1918735 Pingqiao Pingqiao Pingqiao,Pingqiao Zhen,ping qiao,ping qiao zhen,平桥,平桥镇 29.15252 120.88088 P PPLA4 CN 02 0 76 Asia/Shanghai 2012-01-19
-1918742 Huangtianfan Huangtianfan Huangtianfan,Huangtianfan Zhen,huang tian fan,huang tian fan zhen,黄田畈,黄田畈镇 29.16749 120.13606 P PPLA4 CN 02 0 83 Asia/Shanghai 2012-01-19
-1918749 Huaxi Huaxi Huaxi,Huaxi Zhen,hua xi,hua xi zhen,画溪,画溪镇 29.19487 120.15912 P PPLA4 CN 02 0 98 Asia/Shanghai 2012-01-19
-1918758 Guozhai Guozhai Guozhai,Guozhai Zhen,guo zhai,guo zhai zhen,郭宅,郭宅镇 29.22099 120.39549 P PPLA4 CN 02 0 141 Asia/Shanghai 2012-01-19
-1918764 Xichou Xichou Dongyangjiang,Dongyangjiang Zhen,Xichou,dong yang jiang zhen,qian chou,东阳江镇,茜畴 29.24407 120.4377 P PPLA4 CN 02 0 121 Asia/Shanghai 2012-01-19
-1918774 Beijiang Beijiang Beijiang,Beijiang Zhen,bei jiang,bei jiang zhen,北江,北江镇 29.2739 120.37531 P PPLA4 CN 02 0 98 Asia/Shanghai 2012-01-19
-1918784 Diji Diji Diji,Sandan,di ji,san dan,三单,底吉 29.29889 120.63139 P PPLA4 CN 02 0 447 Asia/Shanghai 2012-01-19
-1918792 Zuocun Zuocun Zuocun,Zuocun Zhen,zuo cun,zuo cun zhen,佐村,佐村镇 29.32587 120.49762 P PPLA4 CN 02 0 275 Asia/Shanghai 2012-01-19
-1918793 Xinshichang Xinshichang Shuangcai,Xinshichang,shuang cai,xin shi chang,双彩,新市场 29.32367 120.83936 P PPLA4 CN 02 0 416 Asia/Shanghai 2012-01-19
-1918795 Huailu Huailu Huailu,Huailu Zhen,huai lu,huai lu zhen,怀鲁,怀鲁镇 29.3433 120.38174 P PPLA4 CN 02 0 118 Asia/Shanghai 2012-01-19
-1918797 Dianqian Dianqian Dianqian,Jingping,dian qian,jing ping,殿前,镜屏 29.33897 120.78105 P PPLA4 CN 02 0 138 Asia/Shanghai 2012-01-19
-1918807 Xiachengli Xiachengli Hulu,Hulu Zhen,Xiachengli,hu lu,sha cheng li,厦程里,虎鹿 29.37282 120.45356 P PPLA4 CN 02 0 122 Asia/Shanghai 2012-01-19
-1918820 Lingbeizhou Lingbeizhou Lingbei,Lingbei Zhen,Lingbeizhou,ling bei zhen,ling bei zhou,岭北周,岭北镇 29.3968 120.30383 P PPLA4 CN 02 0 179 Asia/Shanghai 2012-01-19
-1918876 Gaochengtou Gaochengtou Gaochengtou,Tongshan,Tongshan Zhen,gao cheng tou,tong shan zhen,同山镇,高城头 29.58253 120.06112 P PPLA4 CN 02 0 70 Asia/Shanghai 2012-01-19
-1918883 Lipu Lipu Lipu,Lipu Zhen,hai pu,hai pu zhen,浬浦,浬浦镇 29.61408 120.34645 P PPLA4 CN 02 0 36 Asia/Shanghai 2012-01-19
-1918884 Wangjiajing Wangjiajing Wangjiajing,Wangjiajing Zhen,wang jia jing,wang jia jing zhen,王家井,王家井镇 29.62783 120.2147 P PPLA4 CN 02 0 18 Asia/Shanghai 2012-01-19
-1918891 Pukou Pukou Pukou,Pukou Jiedao,pu kou,pu kou jie dao,浦口,浦口街道 29.63196 120.85588 P PPLA4 CN 02 0 21 Asia/Shanghai 2012-01-19
-1918911 Datang’an Datang'an Datang,Datang Zhen,Datang'an,Datang’an,da tang an,da tang zhen,大唐庵,大唐镇 29.69222 120.16389 P PPLA4 CN 02 0 26 Asia/Shanghai 2012-01-19
-1918938 Zhaojia Zhaojia Zhaojia,Zhaojia Zhen,zhao jia,zhao jia zhen,赵家,赵家镇 29.75639 120.45639 P PPLA4 CN 02 0 39 Asia/Shanghai 2012-01-19
-1918966 Jiangzao Jiangzao Jiangzao,Jiangzao Zhen,jiang zao,jiang zao zhen,江藻,江藻镇 29.84142 120.31579 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-19
-1918967 Shanxiahu Shanxiahu Shanxiahu,Shanxiahu Zhen,shan xia hu,shan xia hu zhen,山下湖,山下湖镇 29.85668 120.35296 P PPLA4 CN 02 0 32 Asia/Shanghai 2012-01-19
-1918973 Ruanshi Ruanshi Ruanshi,Ruanshi Zhen,ruan shi,ruan shi zhen,阮市,阮市镇 29.87673 120.37803 P PPLA4 CN 02 0 138 Asia/Shanghai 2012-01-19
-1918986 Louta Louta Louta,Louta Zhen,lou ta,lou ta zhen,楼塔,楼塔镇 29.90683 120.12439 P PPLA4 CN 02 0 52 Asia/Shanghai 2012-01-19
-1918996 Lijiashan Lijiashan Lanting,Lanting Zhen,Lijiashan,Lougong,lan ting zhen,li jia shan,lou gong,兰亭镇,娄宫,李家山 29.95047 120.52387 P PPLA4 CN 02 0 47 Asia/Shanghai 2012-01-19
-1919000 Diankou Diankou Diankou,Diankou Zhen,dian kou,dian kou zhen,店口,店口镇 29.94017 120.35087 P PPLA4 CN 02 0 25 Asia/Shanghai 2012-01-19
-1919006 Changtang Changtang Changtang,Changtang Zhen,zhang tang,zhang tang zhen,长塘,长塘镇 29.95504 120.79188 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-19
-1919007 Fusheng Fusheng Fusheng,Fusheng Zhen,fu sheng,fu sheng zhen,富盛,富盛镇 29.96325 120.72009 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-19
-1919014 Lianghu Lianghu Lianghu,Lianghu Zhen,梁湖,梁湖镇 29.99152 120.89845 P PPLA4 CN 02 155000 22 Asia/Shanghai 2011-02-04
-1919017 Jinsanjiao Jinsanjiao Fuquan,Fuquan Zhen,Jinsanjiao,fu quan zhen,jin san jiao,福全镇,金三角 29.98938 120.52716 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-19
-1919031 Xinqiao Xinqiao Xinqiao,Xinqiao Xiang,xin qiao,xin qiao xiang,新桥,新桥乡 30.25083 118.93194 P PPLA4 CN 02 0 559 Asia/Shanghai 2012-01-19
-1919048 Longgang Longgang Longgang,long gang,龙岗 30.16234 119.12296 P PPLA4 CN 02 0 151 Asia/Shanghai 2012-01-19
-1919088 Yongchang Yongchang Yongchang,yong chang,永昌 30.03806 119.73167 P PPLA4 CN 02 0 108 Asia/Shanghai 2012-01-19
-1919101 Shoujiang Shoujiang Shoujiang,Shouxiang,shou jiang,受降 30.12667 119.95944 P PPLA4 CN 02 0 35 Asia/Shanghai 2012-01-19
-1919116 Banqiao Banqiao Banqiao,ban qiao,板桥 30.16667 119.78111 P PPLA4 CN 02 0 56 Asia/Shanghai 2012-01-19
-1919191 Luniao Luniao Luniao,lu niao,鸬鸟 30.45413 119.75454 P PPLA4 CN 02 0 75 Asia/Shanghai 2012-01-19
-1919224 Ximu Ximu Ximu,Ximu Xiang,xi mu,xi mu xiang,西亩,西亩乡 30.74168 119.58455 P PPLA4 CN 02 0 28 Asia/Shanghai 2012-01-19
-1919264 Huaikan Huaikan Huaikan,huai kan,槐坎 31.06944 119.68167 P PPLA4 CN 02 0 60 Asia/Shanghai 2012-01-19
-1919304 Xiache Xiache Xiache,Xiache Zhen,xia che,xia che zhen,下车,下车镇 24.66192 115.11245 P PPLA4 CN 30 0 223 Asia/Shanghai 2012-01-19
-1919328 Changtang Changtang Changtang,Changtang Zhen,zhang tang,zhang tang zhen,长塘,长塘镇 24.56493 115.15594 P PPLA4 CN 30 0 198 Asia/Shanghai 2012-01-19
-1919347 Yousheng Yousheng Yousheng,Yousheng Zhen,you sheng,you sheng zhen,优胜,优胜镇 24.50819 115.08678 P PPLA4 CN 30 0 208 Asia/Shanghai 2012-01-19
-1919348 Yanzhen Yanzhen Yanzhen,Yanzhen Zhen,yan zhen,yan zhen zhen,岩镇,岩镇镇 24.49072 115.44494 P PPLA4 CN 30 0 233 Asia/Shanghai 2012-01-19
-1919358 Beidun Beidun Beidun,Beidun Zhen,bei dun,bei dun zhen,贝墩,贝墩镇 24.4601 115.2016 P PPLA4 CN 30 0 174 Asia/Shanghai 2012-01-19
-1919368 Luogang Luogang Luogang,Luogang Zhen,luo gang,罗岗 24.42484 115.63413 P PPLA4 CN 30 0 182 Asia/Shanghai 2012-01-19
-1919385 Huilong Huilong Huilong,Huilong Zhen,hui long,hui long zhen,回龙,回龙镇 24.37012 115.52558 P PPLA4 CN 30 0 211 Asia/Shanghai 2012-01-19
-1919401 Huangshi Huangshi Huangshi,Huangshi Zhen,huang shi,huang shi zhen,黄石,黄石镇 24.32821 115.25757 P PPLA4 CN 30 0 92 Asia/Shanghai 2012-01-19
-1919407 Linzhai Linzhai Linzhai,Linzhai Zhen,lin zhai,lin zhai zhen,林寨,林寨镇 24.28233 115.063 P PPLA4 CN 30 0 95 Asia/Shanghai 2012-01-19
-1919420 Heshui Heshui Heshui,Heshui Zhen,he shui,合水 24.25444 115.69993 P PPLA4 CN 30 0 148 Asia/Shanghai 2012-01-19
-1919435 Yetang Yetang Yetang,Yetang Zhen,ye tang,叶塘 24.19553 115.66139 P PPLA4 CN 30 0 134 Asia/Shanghai 2012-01-19
-1919437 Jingnan Jingnan Jingnan,Jingnan Zhen,jing nan,径南 24.1919 115.92101 P PPLA4 CN 30 0 265 Asia/Shanghai 2012-01-19
-1919441 Fengren Fengren Fengren,Fengren Zhen,feng ren,feng ren zhen,丰稔,丰稔镇 24.17504 115.32597 P PPLA4 CN 30 0 111 Asia/Shanghai 2012-01-19
-1919445 Yidu Yidu Yidu,Yidu Zhen,yi dou,yi dou zhen,义都,义都镇 24.16145 115.13275 P PPLA4 CN 30 0 172 Asia/Shanghai 2012-01-19
-1919448 Xinbei Xinbei Xinbei,Xinbei Zhen,xin bei,新陂 24.1579 115.68829 P PPLA4 CN 30 0 126 Asia/Shanghai 2012-01-19
-1919450 Ningxin Ningxin Ningxin,Ningxin Jiedao,ning xin,宁新 24.13497 115.74447 P PPLA4 CN 30 0 111 Asia/Shanghai 2012-01-19
-1919455 Shangrao Shangrao Shangrao,Shangrao Zhen,shang rao,上饶 24.1484 116.90487 P PPLA4 CN 30 0 127 Asia/Shanghai 2012-01-19
-1919460 Fucheng Fucheng Fucheng,Fucheng Zhen,fu cheng,fu cheng zhen,附城,附城镇 24.1068 115.23756 P PPLA4 CN 30 0 89 Asia/Shanghai 2012-01-19
-1919467 Raoyang Raoyang Raoyang,Raoyang Zhen,rao yang,饶洋 24.10107 116.87554 P PPLA4 CN 30 0 104 Asia/Shanghai 2012-01-19
-1919472 Nibei Nibei Nibei,Nibei Zhen,ni bei,坭陂 24.0852 115.81386 P PPLA4 CN 30 0 113 Asia/Shanghai 2012-01-19
-1919478 Dengyun Dengyun Dengyun,Dengyun Zhen,deng yun,deng yun zhen,登云,登云镇 24.06735 115.39188 P PPLA4 CN 30 0 233 Asia/Shanghai 2012-01-19
-1919481 Tongqu Tongqu Tongqu,Tongqu Zhen,tong qu,tong qu zhen,通衢,通衢镇 24.04707 115.37678 P PPLA4 CN 30 0 242 Asia/Shanghai 2012-01-19
-1919488 Jianrao Jianrao Jianrao,Jianrao Zhen,jian rao,建饶 24.01821 116.90877 P PPLA4 CN 30 0 342 Asia/Shanghai 2012-01-19
-1919498 Huangbu Huangbu Huangbu,Huangbu Zhen,huang bu,huang bu zhen,黄布,黄布镇 23.98151 115.29901 P PPLA4 CN 30 0 285 Asia/Shanghai 2012-01-19
-1919511 Xintang Xintang Xintang,Xintang Zhen,xin tang,新塘 23.94323 116.78496 P PPLA4 CN 30 0 99 Asia/Shanghai 2012-01-19
-1919515 Zishi Zishi Zishi,Zishi Zhen,zi shi,zi shi zhen,紫市,紫市镇 23.93501 115.35378 P PPLA4 CN 30 0 279 Asia/Shanghai 2012-01-19
-1919522 Dongshan Dongshan Dongshan,Dongshan Zhen,dong shan,东山 23.90776 116.93164 P PPLA4 CN 30 0 38 Asia/Shanghai 2012-01-19
-1919525 Tangxi Tangxi Tangxi,Tangxi Zhen,tang xi,汤溪 23.89829 116.86402 P PPLA4 CN 30 0 68 Asia/Shanghai 2012-01-19
-1919539 Datian Datian Datian,Datian Zhen,da tian,da tian zhen,大田,大田镇 23.85843 115.44636 P PPLA4 CN 30 0 226 Asia/Shanghai 2012-01-19
-1919547 Fubin Fubin Fubin,Fubin Zhen,fu bin,浮滨 23.84697 116.86273 P PPLA4 CN 30 0 33 Asia/Shanghai 2012-01-19
-1919558 Chifeng Chifeng Chifeng,Chifeng Zhen,chi feng,赤凤 23.81792 116.53434 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-19
-1919564 Xinxu Xinxu Xinxu,Xinxu Zhen,xin wei,新圩 23.80555 116.9407 P PPLA4 CN 30 0 26 Asia/Shanghai 2012-01-19
-1919565 Kanghe Kanghe Kanghe,Kanghe Zhen,kang he,kang he zhen,康禾,康禾镇 23.78058 115.07455 P PPLA4 CN 30 0 126 Asia/Shanghai 2012-01-19
-1919583 Guihu Guihu Guihu,Guihu Zhen,gui hu,归湖 23.76201 116.57815 P PPLA4 CN 30 0 22 Asia/Shanghai 2012-01-19
-1919584 Wenci Wenci Wenci,Wenci Zhen,wen ci,文祠 23.76081 116.6745 P PPLA4 CN 30 0 48 Asia/Shanghai 2012-01-19
-1919592 Zhangxi Zhangxi Zhangxi,Zhangxi Zhen,zhang xi,樟溪 23.7436 116.88884 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-19
-1919598 Gaotang Gaotang Gaotang,Gaotang Zhen,gao tang,高堂 23.71299 116.93757 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-19
-1919602 Lianrao Lianrao Lianrao,Lianrao Zhen,lian rao,联饶 23.72725 116.98228 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-19
-1919615 Dengtang Dengtang Dengtang,Dengtang Zhen,deng tang,登塘 23.68326 116.52736 P PPLA4 CN 30 0 22 Asia/Shanghai 2012-01-19
-1919629 Linxi Linxi Linxi,Linxi Zhen,lin xi,磷溪 23.64618 116.70245 P PPLA4 CN 30 0 14 Asia/Shanghai 2012-01-19
-1919631 Jingzi Jingzi Jingzi,Jingzi Zhen,jing zi,jing zi zhen,敬梓,敬梓镇 23.62944 115.40742 P PPLA4 CN 30 0 183 Asia/Shanghai 2012-01-19
-1919633 Fengtang Fengtang Fengtang,Fengtang Zhen,feng tang,凤塘 23.62501 116.56649 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-19
-1919637 Guantang Guantang Guantang,Guantang Zhen,guan tang,官塘 23.6196 116.72656 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-19
-1919639 Dacheng Dacheng Dacheng,Dacheng Zhen,da cheng,大埕 23.60933 117.13643 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-19
-1919641 Tiepu Tiepu Tiepu,Tiepu Zhen,tie pu,铁铺 23.61238 116.75532 P PPLA4 CN 30 0 12 Asia/Shanghai 2012-01-19
-1919642 Suocheng Suocheng Suocheng,Suocheng Zhen,suo cheng,所城 23.61259 117.10932 P PPLA4 CN 30 0 21 Asia/Shanghai 2012-01-19
-1919643 Yanhong Yanhong Yanhong,Yanhong Zhen,yan hong,盐鸿 23.6088 116.86754 P PPLA4 CN 30 0 4 Asia/Shanghai 2012-01-19
-1919656 Longdu Longdu Longdu,Longdu Zhen,long dou,隆都 23.57667 116.72592 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-19
-1919671 Dongfeng Dongfeng Dongfeng,Dongfeng Zhen,dong feng,东风 23.54452 116.6718 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-19
-1919674 Haishan Haishan Haishan,Haishan Zhen,hai shan,海山 23.53414 116.94559 P PPLA4 CN 30 0 11 Asia/Shanghai 2012-01-19
-1919676 Jinshi Jinshi Jinshi,Jinshi Zhen,jin shi,金石 23.53036 116.61653 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-19
-1919679 Shaxi Shaxi Shaxi,Shaxi Zhen,sha xi,沙溪 23.52489 116.57978 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-19
-1919688 Caitang Caitang Caitang,Caitang Zhen,cai tang,彩塘 23.50755 116.64997 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-19
-1919691 Lianxia Lianxia Lianxia,Lianxia Zhen,lian xia,莲下 23.49771 116.77806 P PPLA4 CN 30 0 12 Asia/Shanghai 2012-01-19
-1919692 Nanxi Nanxi Nanxi,nan xi,南溪 23.5044 116.24234 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-19
-1919695 Tatou Tatou Tatou,ta tou,塔头 23.49031 116.06337 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-19
-1919701 Huizhai Huizhai Huizhai,hui zhai,灰寨 23.47894 115.99818 P PPLA4 CN 30 0 26 Asia/Shanghai 2012-01-19
-1919707 Shen’ao Shen'ao San'ao,San’ao,Shen'ao,Shen'ao Zhen,Shen’ao,Shen’ao Zhen,shen ao,深澳 23.46033 117.09074 P PPLA4 CN 30 0 -9999 Asia/Shanghai 2012-01-19
-1919708 Jiushu Jiushu Jiushu,Jiushu Zhen,jiu shu,jiu shu zhen,九树,九树镇 23.45616 115.18168 P PPLA4 CN 30 0 170 Asia/Shanghai 2012-01-19
-1919709 Jinzao Jinzao Jinyu,Jinyu Zhen,Jinzao,jin yu,jin zao,金灶,金玉 23.4541 116.3904 P PPLA4 CN 30 0 5 Asia/Shanghai 2012-01-19
-1919715 Waisha Waisha Waisha,Waisha Zhen,wai sha,外砂 23.44165 116.75477 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1919716 Jinhe Jinhe Jinhe,jin he,金和 23.43099 116.04575 P PPLA4 CN 30 0 16 Asia/Shanghai 2012-01-19
-1919726 Tuotang Tuotang Liantang,Tuotang,Tuotang Jiedao,tuo tang,鮀塘 23.41915 116.58749 P PPLA4 CN 30 0 4 Asia/Shanghai 2012-01-19
-1919728 Yun’ao Yun'ao Yun'ao,Yun'ao Zhen,Yun’ao,Yun’ao Zhen,yun ao,云澳 23.40611 117.10111 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-19
-1919731 Tuopu Tuopu Tuopu,Tuopu Jiedao,tuo pu,鮀浦 23.41327 116.64555 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-19
-1919732 Xinxi Xinxi Xinxi,Xinxi Zhen,xin xi,新溪 23.40128 116.76692 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-19
-1919742 Xilu Xilu Xilu,Xilu Zhen,xi lu,西胪 23.38114 116.50454 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1919743 Luoxi Luoxi Luoxi,luo xi,螺溪 23.38253 115.62091 P PPLA4 CN 30 0 83 Asia/Shanghai 2012-01-19
-1919746 Qilin Qilin Qilin,Qilin Zhen,qi lin,麒麟 23.42278 116.285 P PPLA4 CN 30 0 226 Asia/Shanghai 2012-01-19
-1919748 Gurao Gurao Gurao,Gurao Zhen,gu rao,谷饶 23.35212 116.40975 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1919751 Suqu Suqu Suqu,Suqu Zhen,su qu,su qu zhen,苏区,苏区镇 23.35829 115.34398 P PPLA4 CN 30 0 245 Asia/Shanghai 2012-01-19
-1919753 Nanwan Nanwan Nanwan,nan wan,南万 23.35755 115.51463 P PPLA4 CN 30 0 392 Asia/Shanghai 2012-01-19
-1919756 Meitang Meitang Meitang,mei tang,梅塘 23.35191 116.07237 P PPLA4 CN 30 0 21 Asia/Shanghai 2012-01-19
-1919759 Nanjing Nanjing Nanjing,Nankin,nan jing,Нанкин,南径 23.34884 116.29143 P PPLA4 CN 30 0 18 Asia/Shanghai 2012-01-19
-1919762 Hexi Hexi Hexi,Hexi Zhen,he xi,河溪 23.31607 116.54783 P PPLA4 CN 30 0 8 Asia/Shanghai 2012-01-19
-1919775 Tongyu Tongyu Tongmeng,Tongyu,Tongyu Zhen,tong yu,铜盂 23.28458 116.42549 P PPLA4 CN 30 0 12 Asia/Shanghai 2012-01-19
-1919780 Chendian Chendian Chendian,Chendian Zhen,chen dian,陈店 23.28549 116.31918 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-19
-1919782 Majiao Majiao Majiao,Majiao Jiedao,ma jiao,马滘 23.27082 116.70889 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-19
-1919784 Mashan Mashan Mashan,ma shan,马山 23.26842 115.23833 P PPLA4 CN 30 0 111 Asia/Shanghai 2012-01-19
-1919785 Dananshan Dananshan Dananshan,da nan shan,大南山 23.26741 116.16852 P PPLA4 CN 30 0 26 Asia/Shanghai 2012-01-19
-1919788 Shanghu Shanghu Shanghu,shang hu,上护 23.25213 115.58678 P PPLA4 CN 30 0 84 Asia/Shanghai 2012-01-19
-1919790 Jinpu Jinpu Jinpu,Jinpu Jiedao,Jinpujieban,jin pu,金浦 23.24989 116.54793 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-19
-1919795 Xiancheng Xiancheng Xiancheng,Xiancheng Zhen,xian cheng,仙城 23.23721 116.31462 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-19
-1919798 Chuanpu Chuanpu Chuanpu,chuan bu,船埔 23.22501 115.8871 P PPLA4 CN 30 0 66 Asia/Shanghai 2012-01-19
-1919801 Lugang Lugang Lugang,Lugang Zhen,lu gang,胪岗 23.22478 116.45783 P PPLA4 CN 30 0 4 Asia/Shanghai 2012-01-19
-1919802 Baokou Baokou Baokou,bao kou,宝口 23.21823 115.19307 P PPLA4 CN 30 0 99 Asia/Shanghai 2012-01-19
-1919803 Liangying Liangying Liangying,Liangying Zhen,liang ying,两英 23.21576 116.35912 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-19
-1919813 Jingdu Jingdu Jingdu,Jingdu Zhen,jing dou,井都 23.1858 116.54655 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-19
-1919816 Xintian Xintian Xintian,xin tian,新田 23.18821 115.54885 P PPLA4 CN 30 0 38 Asia/Shanghai 2012-01-19
-1919835 Hongchang Hongchang Hongchang,Hongchang Zhen,hong chang,红场 23.11547 116.3107 P PPLA4 CN 30 0 252 Asia/Shanghai 2012-01-19
-1919836 Pingdong Pingdong Pingdong,ping dong,平东 23.10102 115.47486 P PPLA4 CN 30 0 30 Asia/Shanghai 2012-01-19
-1919846 Leiling Leiling Leiling,Leiling Zhen,lei ling,雷岭 23.08019 116.3672 P PPLA4 CN 30 0 19 Asia/Shanghai 2012-01-19
-1919852 Xinan Xinan Xinan,Xinan Zhen,xi nan,西南 23.06451 115.54677 P PPLA4 CN 30 0 31 Asia/Shanghai 2012-01-19
-1919855 Baipenzhu Baipenzhu Baipenzhu,bai pen zhu,白盆珠 23.05506 115.01081 P PPLA4 CN 30 0 57 Asia/Chongqing 2012-01-19
-1919859 Bawan Bawan Bawan,Bawan Zhen,ba wan,八万 23.04015 115.74749 P PPLA4 CN 30 0 29 Asia/Shanghai 2012-01-19
-1919860 Beiyang Beiyang Beiyang,Beiyang Zhen,bei yang,陂洋 23.03192 115.8379 P PPLA4 CN 30 0 31 Asia/Shanghai 2012-01-19
-1919861 Huahu Huahu Huahu,Huahu Zhen,hua hu,华湖 23.02922 116.33083 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-19
-1919866 Zhoutian Zhoutian Zhoutian,Zhoutian Zhen,zhou tian,周田 23.01047 116.44347 P PPLA4 CN 30 0 18 Asia/Shanghai 2012-01-19
-1919869 Donglong Donglong Donglong,Donglong Zhen,dong long,东陇 23.0079 116.27368 P PPLA4 CN 30 0 3 Asia/Shanghai 2012-01-19
-1920394 Mingjing Mingjing Mingjing,Mingjing Zhen,ming jing,ming jing zhen,明迳,明迳镇 24.20114 112.90666 P PPLA4 CN 30 0 111 Asia/Chongqing 2012-01-19
-1920396 Xiashuai Xiashuai Xiashuai,Xiashuai Zhuangzu Yaozuxiang,xia shuai,xia shuai zhuang zu yao zu xiang,下帅,下帅壮族瑶族乡 24.21418 112.08541 P PPLA4 CN 30 0 304 Asia/Chongqing 2012-01-19
-1920412 Yanbei Yanbei Yanbei,Yanbei Zhen,yan bei,yan bei zhen,岩背,岩背镇 24.27392 112.82247 P PPLA4 CN 30 0 263 Asia/Chongqing 2012-01-19
-1920434 Qingkeng Qingkeng Qingkeng,Qingkeng Zhen,qing keng,qing keng zhen,青坑,青坑镇 24.42 112.90612 P PPLA4 CN 30 0 89 Asia/Chongqing 2012-01-19
-1920444 Damaishan Damaishan Damaishan,Damaishan Zhen,da mai shan,da mai shan zhen,大麦山,大麦山镇 24.5036 112.27894 P PPLA4 CN 30 0 147 Asia/Chongqing 2012-01-19
-1920446 Jiangying Jiangying Jiangying,Jiangying Zhen,jiang ying,jiang ying zhen,江英,江英镇 24.50694 112.83806 P PPLA4 CN 30 0 452 Asia/Chongqing 2012-01-19
-1920457 Woshui Woshui Woshui,Woshui Zhen,wo shui,wo shui zhen,涡水,涡水镇 24.56838 112.2256 P PPLA4 CN 30 0 285 Asia/Chongqing 2012-01-19
-1920461 Xiangping Xiangping Xiangping,Xiangping Zhen,xiang ping,xiang ping zhen,香坪,香坪镇 24.58943 112.11481 P PPLA4 CN 30 0 326 Asia/Chongqing 2012-01-19
-1920464 Xiaojiang Xiaojiang Xiaojiang,Xiaojiang Zhen,xiao jiang,xiao jiang zhen,小江,小江镇 24.61613 112.59267 P PPLA4 CN 30 0 83 Asia/Chongqing 2012-01-19
-1920470 Dafu Dafu Dafu,Dafu Zhen,da fu,da fu zhen,大富,大富镇 24.64752 112.05552 P PPLA4 CN 30 0 309 Asia/Chongqing 2012-01-19
-1920473 Sanpai Sanpai Sanpai,Sanpai Zhen,san pai,san pai zhen,三排,三排镇 24.66384 112.29282 P PPLA4 CN 30 0 275 Asia/Chongqing 2012-01-19
-1920474 Jiubei Jiubei Jiubei,Jiubei Zhen,jiu bei,jiu bei zhen,九陂,九陂镇 24.67042 112.36486 P PPLA4 CN 30 0 137 Asia/Chongqing 2012-01-19
-1920481 Huangben Huangben Huangben,Huangben Zhen,huang ben,huang ben zhen,黄坌,黄坌镇 24.69168 112.68387 P PPLA4 CN 30 0 90 Asia/Chongqing 2012-01-19
-1920490 Hedong Hedong Hedong,Hedong Zhen,he dong,he dong zhen,禾洞,禾洞镇 24.76117 112.0812 P PPLA4 CN 30 0 498 Asia/Chongqing 2012-01-19
-1920501 Longping Longping Longping,Longping Zhen,long ping,long ping zhen,龙坪,龙坪镇 24.82439 112.48387 P PPLA4 CN 30 0 249 Asia/Chongqing 2012-01-19
-1920512 Bao’an Bao'an Bao'an,Bao'an Zhen,Bao’an,Bao’an Zhen,bao an,bao an zhen,保安,保安镇 24.91372 112.38848 P PPLA4 CN 30 0 116 Asia/Chongqing 2012-01-19
-1920524 Yao’an Yao'an Yao'an,Yao'an Yaozuxiang,Yao’an,Yao’an Yaozuxiang,yao an,yao an yao zu xiang,瑶安,瑶安瑶族乡 25.01824 112.40552 P PPLA4 CN 30 0 190 Asia/Chongqing 2012-01-19
-1920529 Shantang Shantang Shantang,Shantang Zhen,shan tang,shan tang zhen,山塘,山塘镇 25.07492 112.59884 P PPLA4 CN 30 0 416 Asia/Chongqing 2012-01-19
-1920535 Sanshui Sanshui Sanshui,Sanshui Yaozuxiang,san shui,san shui yao zu xiang,三水,三水瑶族乡 25.11846 112.21991 P PPLA4 CN 30 0 330 Asia/Chongqing 2012-01-19
-1920538 Sanxi Sanxi Sanxi,Sanxi Zhen,san xi,san xi zhen,三溪,三溪镇 25.28551 112.86911 P PPLA4 CN 30 0 216 Asia/Chongqing 2012-01-19
-1920772 Zhoucheng Zhoucheng 35.91222 116.31167 P PPL CN 25 72070 41 Asia/Shanghai 2006-01-17
-1921037 Xunzhong Xunzhong Xunzhong,xun zhong,浔中 25.47805 118.24366 P PPLA3 CN 07 0 568 Asia/Shanghai 2012-01-19
-1921142 Donglin Donglin Donglin,Gulei Zhen,dong lin,gu lei zhen,东林,古雷镇 23.83752 117.61537 P PPLA4 CN 07 0 11 Asia/Shanghai 2012-01-19
-1921199 Keren Keren 24.57861 118.66361 P PPL CN 07 4810 5 Asia/Shanghai 2001-07-13
-1921200 Wubao Wubao Wubao,Wubu,wu bao,五堡 24.59278 118.5525 P PPL CN CN 07 3800 5 Asia/Shanghai 2012-01-19
-1921204 Tatou Tatou Tatou,ta tou,塔头 24.61315 118.5237 P PPL CN 07 4650 7 Asia/Shanghai 2012-01-19
-1921211 Yinglin Yinglin 24.63222 118.58056 P PPL CN 07 4150 27 Asia/Shanghai 2004-01-05
-1921219 Maping Maping 24.68722 118.55278 P PPL CN 07 3590 46 Asia/Shanghai 2004-01-05
-1921237 Neikeng Neikeng Neikeng,nei keng,内坑 24.77139 118.46056 P PPL CN 07 1600 56 Asia/Shanghai 2012-01-19
-1921267 Baiqi Baiqi Baiqi,Baiqihuizuxiang,bai qi,百崎 24.88244 118.70869 P PPL CN 07 2760 8 Asia/Shanghai 2012-01-19
-1921281 Shanxia Shanxia Shanxia,shan xia,山霞 24.93802 118.8817 P PPL CN 07 3093 13 Asia/Shanghai 2012-01-19
-1921288 Xiangyun Xiangyun 24.97111 118.16028 P PPL CN 07 1800 497 Asia/Shanghai 2004-03-24
-1921290 Jingfeng Jingfeng Jingfeng,jing feng,净峰 24.97441 118.96486 P PPL CN 07 2500 11 Asia/Shanghai 2012-01-19
-1921372 Dalianwan Dalianwan 39.02861 121.695 P PPL CN 19 55841 24 Asia/Harbin 2006-01-17
-1921606 Anjie Anjie Anjie,Anjie Xiang,an jie,an jie xiang,庵杰,庵杰乡 25.95788 116.4619 P PPLA4 CN 07 0 511 Asia/Shanghai 2012-01-19
-1921609 Tiechang Tiechang Tiechang,Tiechang Xiang,tie zhang,tie zhang xiang,铁长,铁长乡 25.93176 116.39547 P PPLA4 CN 07 0 487 Asia/Shanghai 2012-01-19
-1921610 Dengjia Dengjia Dengjia,deng jia,邓家 25.91654 116.83873 P PPLA4 CN 07 0 382 Asia/Shanghai 2012-01-19
-1921612 Sibao Sibao Sibao,Sibao Xiang,si bao,si bao xiang,四堡,四堡乡 25.89519 116.70631 P PPLA4 CN 07 0 476 Asia/Shanghai 2012-01-19
-1921621 Datong Datong Datong,Datong Zhen,da tong,da tong zhen,大同,大同镇 25.84231 116.35886 P PPLA4 CN 07 0 315 Asia/Shanghai 2012-01-19
-1921622 Lijia Lijia Lijia,li jia,李家 25.82776 116.78646 P PPLA4 CN 07 0 320 Asia/Shanghai 2012-01-19
-1921627 Gechuan Gechuan Gechuan,Gechuan Xiang,ge chuan,ge chuan xiang,隔川,隔川乡 25.75689 116.74045 P PPLA4 CN 07 0 384 Asia/Shanghai 2012-01-19
-1921630 Jiele Jiele Jiele,Jiele Xiang,jie le,jie le xiang,揭乐,揭乐乡 25.72848 116.78299 P PPLA4 CN 07 0 358 Asia/Shanghai 2012-01-19
-1921645 Xuanhe Xuanhe Xuanhe,Xuanhe Xiang,xuan he,xuan he xiang,宣和,宣和乡 25.61047 116.64093 P PPLA4 CN 07 0 370 Asia/Shanghai 2012-01-19
-1921646 Sanzhou Sanzhou Sanzhou,Sanzhou Xiang,san zhou,san zhou xiang,三州,三州乡 25.59261 116.37868 P PPLA4 CN 07 0 270 Asia/Shanghai 2012-01-19
-1921659 Hongshan Hongshan Hongshan,Hongshan Xiang,hong shan,hong shan xiang,红山,红山乡 25.49506 116.10267 P PPLA4 CN 07 0 465 Asia/Shanghai 2012-01-19
-1921665 Xiangdian Xiangdian Xiangdian,Xiangdian Xiang,xiang dian,xiang dian xiang,湘店,湘店乡 25.44362 116.20985 P PPLA4 CN 07 0 368 Asia/Shanghai 2012-01-19
-1921672 Yanggu Yanggu Yanggu,Yanggu Xiang,yang gu,yang gu xiang,羊牯,羊牯乡 25.38606 116.31629 P PPLA4 CN 07 0 261 Asia/Shanghai 2012-01-19
-1921691 Buyun Buyun Buyun,Buyun Xiang,bu yun,bu yun xiang,步云,步云乡 25.27031 116.85473 P PPLA4 CN 07 0 834 Asia/Shanghai 2012-01-19
-1921696 Shanhu Shanhu Shanhu,Shanhu Xiang,shan hu,shan hu xiang,珊瑚,珊瑚乡 25.23111 116.32722 P PPLA4 CN 07 0 305 Asia/Shanghai 2012-01-19
-1921714 Wudong Wudong Wudong,Wudong Xiang,wu dong,wu dong xiang,武东,武东乡 25.1093 116.246 P PPLA4 CN 07 0 260 Asia/Shanghai 2012-01-19
-1921720 Qifang Qifang Chengxiang,Chengxiang Xiang,Qifang,cheng xiang,cheng xiang xiang,qi fang,七坊,城厢,城厢乡 25.10001 116.09945 P PPLA4 CN 07 0 277 Asia/Shanghai 2012-01-19
-1921721 Xikou Xikou Xikou,Xikou Xiang,xi kou,xi kou xiang,溪口,溪口乡 25.06415 116.67504 P PPLA4 CN 07 0 313 Asia/Shanghai 2012-01-19
-1921722 Lincheng Lincheng Lincheng,Lincheng Zhen,lin cheng,lin cheng zhen,临城,临城镇 25.05938 116.40808 P PPLA4 CN 07 0 195 Asia/Shanghai 2012-01-19
-1921728 Nanyang Nanyang Hongfang,Hongfang Zhen,Nanyang,hong fang,hong fang zhen,nan yang,南阳,红坊,红坊镇 25.02654 116.95252 P PPLA4 CN 07 0 390 Asia/Shanghai 2012-01-19
-1921990 Xialiantang Xialiantang Liantang,Liantang Zhen,Xialiantang,lian tang zhen,xia lian tang,下连塘,莲塘镇 27.92389 118.51611 P PPLA4 CN 07 0 238 Asia/Shanghai 2012-01-19
-1922253 Haidao Haidao Haidao,Haidao Xiang,hai dao,hai dao xiang,海岛,海岛乡 26.50443 120.04817 P PPLA4 CN 07 0 16 Asia/Shanghai 2012-01-19
-1922257 Xibin Xibin Xibi Zhen,Xibin,xi bin,xi bin zhen,西滨,西滨镇 26.36832 118.37469 P PPLA4 CN 07 0 99 Asia/Shanghai 2012-01-19
-1922260 Xicheng Xicheng Xicheng,Xicheng Zhen,xi cheng,xi cheng zhen,西城,西城镇 26.16302 118.14193 P PPLA4 CN 07 0 177 Asia/Shanghai 2012-01-19
-1922279 Tianyuan Tianyuan Tianyuan,tian yuan,田源 26.0543 116.84505 P PPLA4 CN 07 0 284 Asia/Shanghai 2012-01-19
-1922280 Qitao Qitao Qitao,Qitao Zhen,qi tao,qi tao zhen,奇韬,奇韬镇 26.0524 117.86881 P PPLA4 CN 07 0 456 Asia/Shanghai 2012-01-19
-1922300 Yupeng Yupeng Yupeng,yu peng,余朋 26.10111 117.04111 P PPLA4 CN 07 0 395 Asia/Shanghai 2012-01-19
-1922324 Baziqiao Baziqiao Baziqiao,Baziqiao Xiang,ba zi qiao,ba zi qiao xiang,八字桥,八字桥乡 26.1878 117.85018 P PPLA4 CN 07 0 662 Asia/Shanghai 2012-01-19
-1922329 Chengnan Chengnan Chengnan,cheng nan,城南 26.2156 116.71409 P PPLA4 CN 07 0 322 Asia/Shanghai 2012-01-19
-1922337 Xiaochi Xiaochi Wenjiao,Xiaochi,wen jiao,xiao chi,小池,温郊 26.23371 117.01808 P PPLA4 CN 07 0 421 Asia/Shanghai 2012-01-19
-1922338 Xinshi Xinshi Shibi Zhen,Xinshi,shi bi zhen,xin shi,新市,石壁镇 26.24859 116.5142 P PPLA4 CN 07 0 359 Asia/Shanghai 2012-01-19
-1922346 Nanxia Nanxia Nanxia,Nanxia Xiang,nan xia,nan xia xiang,南霞,南霞乡 26.28084 117.87452 P PPLA4 CN 07 0 406 Asia/Shanghai 2012-01-19
-1922347 Xubi Xubi Xubi,xu bi,俆碧 26.27975 117.63252 P PPLA4 CN 07 0 137 Asia/Shanghai 2012-01-19
-1922356 Chenda Chenda Chenda,Chenda Zhen,chen da,chen da zhen,陈大,陈大镇 26.31421 117.6447 P PPLA4 CN 07 0 152 Asia/Shanghai 2012-01-19
-1922364 Hanxian Hanxian Hanxian,Hanxian Zhen,han xian,han xian zhen,瀚仙,瀚仙镇 26.35974 117.2901 P PPLA4 CN 07 0 302 Asia/Shanghai 2012-01-19
-1922372 Langkou Langkou Langkou,Langkou Zhen,lang kou,lang kou zhen,琅口,琅口镇 26.3874 117.83967 P PPLA4 CN 07 0 105 Asia/Shanghai 2012-01-19
-1922387 Helong Helong Helong,he long,河龙 26.4462 116.65367 P PPLA4 CN 07 0 589 Asia/Shanghai 2012-01-19
-1922425 Xiafang Xiafang Xiafang,Xiafang Xiang,xia fang,xia fang xiang,夏坊,夏坊乡 26.57247 116.93405 P PPLA4 CN 07 0 409 Asia/Shanghai 2012-01-19
-1922428 Lishu Lishu Lishu,Lishu Xiang,li shu,li shu xiang,梨树,梨树乡 26.59332 117.71623 P PPLA4 CN 07 0 223 Asia/Shanghai 2012-01-19
-1922443 Long’an Long'an Long'an,Long'an Xiang,Long’an,Long’an Xiang,long an,long an xiang,龙安,龙安乡 26.63372 117.03489 P PPLA4 CN 07 0 399 Asia/Shanghai 2012-01-19
-1922458 Dushang Dushang Dushang,Yijia,dou shang,yi jia,伊家,都上 26.68917 116.75459 P PPLA4 CN 07 0 373 Asia/Shanghai 2012-01-19
-1922462 Dabu Dabu Dabu,Dabu Xiang,da bu,da bu xiang,大布,大布乡 26.71407 117.00935 P PPLA4 CN 07 0 293 Asia/Shanghai 2012-01-19
-1922471 Huangbu Huangbu Huangbu,huang bu,黄埠 26.7421 116.65326 P PPLA4 CN 07 0 421 Asia/Shanghai 2012-01-19
-1922473 Kaishan Kaishan Kaishan,Kaishan Xiang,kai shan,kai shan xiang,开善,开善乡 26.75328 117.18014 P PPLA4 CN 07 0 395 Asia/Shanghai 2012-01-19
-1922483 Shuinan Shuinan Shuinan,Shuinan Zhen,shui nan,shui nan zhen,水南,水南镇 26.72464 117.7954 P PPLA4 CN 07 0 442 Asia/Shanghai 2012-01-19
-1922492 Hedong Hedong Hedong,Jinxi,he dong,jin xi,河东,金溪 26.83537 116.8479 P PPLA4 CN 07 0 300 Asia/Shanghai 2012-01-19
-1922523 Hongdun Hongdun Hongdun,Hongdun Zhen,hong dun,hong dun zhen,洪墩,洪墩镇 26.97827 117.66631 P PPLA4 CN 07 0 156 Asia/Shanghai 2012-01-19
-1923060 Wudang Wudang Wudang,Wudang Zhen,wu dang,wu dang zhen,武当,武当镇 24.63993 114.75216 P PPLA4 CN 03 0 382 Asia/Chongqing 2012-01-19
-1923099 Lintang Lintang Lintang,Lintang Xiang,lin tang,lin tang xiang,临塘,临塘乡 24.79094 114.79687 P PPLA4 CN 03 0 252 Asia/Chongqing 2012-01-19
-1923144 Taojiang Taojiang Taojiang,Taojiang Xiang,tao jiang,tao jiang xiang,桃江,桃江乡 24.91684 114.77973 P PPLA4 CN 03 0 204 Asia/Chongqing 2012-01-19
-1923210 Luoshan Luoshan Luoshan,Luoshan Xiang,Luoshanxu,luo shan,luo shan wei,luo shan xiang,罗珊,罗珊乡,罗珊圩 25.14475 115.81645 P PPLA4 CN 03 0 261 Asia/Shanghai 2012-01-19
-1923231 Changling Changling Changling,Changling Xiang,zhang ling,zhang ling xiang,长岭,长岭乡 25.24635 115.80093 P PPLA4 CN 03 0 341 Asia/Shanghai 2012-01-19
-1923249 Dongtou Dongtou Dongtou,Dongtou Xiang,Tangtou,dong tou,dong tou xiang,洞头,洞头乡 25.30733 115.91029 P PPLA4 CN 03 0 572 Asia/Shanghai 2012-01-19
-1923250 Caifang Caifang Caifang,Caifang Xiang,cai fang,cai fang xiang,蔡坊,蔡坊乡 25.30039 115.44563 P PPLA4 CN 03 0 244 Asia/Shanghai 2012-01-19
-1923311 Shuangyuan Shuangyuan Shuangyuan,Shuangyuan Xiang,Shuangyuanxu,shuang yan,shuang yan xiang,双芫,双芫乡 25.49304 115.30032 P PPLA4 CN 03 0 303 Asia/Shanghai 2012-01-19
-1923383 Baying Baying Baying,Baying Xiang,Bayingxu,ba ying,ba ying xiang,拔英,拔英乡 25.64721 115.96943 P PPLA4 CN 03 0 280 Asia/Shanghai 2012-01-19
-1923403 Zhuangbu Zhuangbu Zhuangbu,Zhuangbu Xiang,zhuang bu,zhuang bu xiang,庄埠,庄埠乡 25.69845 115.59398 P PPLA4 CN 03 0 162 Asia/Shanghai 2012-01-19
-1923404 Qilushan Qilushan Qilushan,Qilushan Zhen,qi lu shan,qi lu shan zhen,祁禄山,祁禄山镇 25.6958 115.29845 P PPLA4 CN 03 0 208 Asia/Shanghai 2012-01-19
-1923418 Fenghuangdong Fenghuangdong Fenghuangdong,Fenghuangdong Xiang,Fenghuangdongxu,feng huang dong,feng huang dong wei,feng huang dong xiang,凤凰崠,凤凰崠乡,凤凰崠圩 25.7275 115.74139 P PPLA4 CN 03 0 269 Asia/Shanghai 2012-01-19
-1923445 Hefeng Hefeng Hefeng,Hefeng Zhen,Hefengxu,he feng,he feng wei,he feng zhen,禾丰,禾丰圩,禾丰镇 25.80085 115.48863 P PPLA4 CN 03 0 185 Asia/Shanghai 2012-01-19
-1923470 Xinbei Xinbei Xinbei,Xinbei Xiang,Xinbeixu,xin bei,xin bei wei,xin bei xiang,新陂,新陂乡,新陂圩 25.87383 115.34757 P PPLA4 CN 03 0 121 Asia/Shanghai 2012-01-19
-1923473 Xiaomi Xiaomi Xiaomi,Xiaomi Xiang,Xiaomixu,xiao mi,xiao mi xiang,小密,小密乡 25.87659 115.7064 P PPLA4 CN 03 0 198 Asia/Shanghai 2012-01-19
-1923474 Luojiang Luojiang Luojiang,Luojiang Xiang,Luojiangxu,luo jiang,luo jiang wei,luo jiang xiang,罗江,罗江乡,罗江圩 25.88001 115.25255 P PPLA4 CN 03 0 127 Asia/Shanghai 2012-01-19
-1923526 Shaxin Shaxin Shaxin,Shaxin Xiang,Shaxinxu,sha xin,sha xin wei,sha xin xiang,沙心,沙心乡,沙心圩 25.99334 115.7663 P PPLA4 CN 03 0 228 Asia/Shanghai 2012-01-19
-1923630 Zhukeng Zhukeng Zhukeng,Zhukeng Xiang,zhu keng,zhu keng xiang,珠坑,珠坑乡 26.2156 116.36119 P PPLA4 CN 03 0 250 Asia/Shanghai 2012-01-19
-1923636 Jiecun Jiecun Jiecun,Jiecun Xiang,Jiecunxu,jie cun,jie cun xiang,杰村,杰村乡 26.21889 115.43639 P PPLA4 CN 03 0 190 Asia/Shanghai 2012-01-19
-1923671 Butou Butou Butou,Butou Xiang,bu tou,bu tou xiang,埠头,埠头乡 26.29083 115.3375 P PPLA4 CN 03 0 140 Asia/Shanghai 2012-01-19
-1923699 Longping Longping Longping,Longping Xiang,long ping,long ping xiang,隆坪,隆坪乡 26.35555 115.23522 P PPLA4 CN 03 0 216 Asia/Shanghai 2012-01-19
-1923733 Dinglong Dinglong Dinglong,Dinglong Xiang,Dinglongxu,ding long,ding long xiang,鼎龙,鼎龙乡 26.41545 115.45451 P PPLA4 CN 03 0 230 Asia/Shanghai 2012-01-19
-1923786 Shuicha Shuicha Shuicha,Shuicha Xiang,shui cha,shui cha xiang,水槎,水槎乡 26.52306 115.06637 P PPLA4 CN 03 0 242 Asia/Shanghai 2012-01-19
-1923838 Tangfang Tangfang Tangfang,Tangfang Xiang,tang fang,tang fang xiang,塘坊,塘坊乡 26.62166 116.48289 P PPLA4 CN 03 0 242 Asia/Shanghai 2012-01-19
-1923922 Guanxi Guanxi Guanxi,Guanxi Zhen,guan xi,guan xi zhen,灌溪,灌溪镇 26.75287 115.12184 P PPLA4 CN 03 0 80 Asia/Shanghai 2012-01-19
-1924002 Sanfang Sanfang Sanfang,Sanfang Xiang,san fang,san fang xiang,三坊,三坊乡 26.86924 115.41456 P PPLA4 CN 03 0 140 Asia/Shanghai 2012-01-19
-1924023 Wanhe Wanhe Wanhe,Wanhe Zhen,wan he,wan he zhen,万合,万合镇 26.89612 115.02731 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-19
-1924048 Qianshan Qianshan Qianshan,Qianshan Xiang,qian shan,qian shan xiang,千善,千善乡 26.93118 116.46983 P PPLA4 CN 03 0 203 Asia/Shanghai 2012-01-19
-1924056 Wenbei Wenbei Wenbei,Wenbei Xiang,wen bei,wen bei xiang,文陂,文陂乡 26.94287 115.11434 P PPLA4 CN 03 0 56 Asia/Shanghai 2012-01-19
-1924131 Zhangping Zhangping Zhangping,Zhangping Shezuxiang,zhang ping,zhang ping she zu xiang,樟坪,樟坪畲族乡 27.99683 117.42082 P PPLA4 CN 03 0 420 Asia/Shanghai 2012-02-02
-1924132 Taiyuan Taiyuan Taiyuan,Taiyuan Shezuxiang,tai yuan,tai yuan she zu xiang,太源,太源畲族乡 28.00917 117.50778 P PPLA4 CN 03 0 211 Asia/Shanghai 2012-02-02
-1924156 Pengwan Pengwan Pengwan,Pengwan Xiang,peng wan,peng wan xiang,彭湾,彭湾乡 28.09564 117.12354 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-19
-1924162 Gangdong Gangdong Gangdong,Gangdong Xiang,gang dong,港东 28.11639 117.6625 P PPLA4 CN 03 0 126 Asia/Shanghai 2012-01-19
-1924170 Yingjiang Yingjiang Yingjiang,Yingjiang Xiang,ying jiang,ying jiang xiang,英将,英将乡 28.13861 117.91333 P PPLA4 CN 03 0 246 Asia/Shanghai 2012-01-19
-1924191 Tieshan Tieshan Tieshan,Tieshan Xiang,tie shan,tie shan xiang,铁山,铁山乡 28.21528 118.09504 P PPLA4 CN 03 0 234 Asia/Shanghai 2012-01-19
-1924194 Hongqiao Hongqiao Hongqiao,Hongqiao Xiang,hong qiao,hong qiao xiang,虹桥,虹桥乡 28.24889 117.68444 P PPLA4 CN 03 0 190 Asia/Shanghai 2012-01-19
-1924204 Xin’anbu Xin'anbu Xin'anbu,Xin'anbu Xiang,Xin’anbu,Xin’anbu Xiang,xin an bu,xin an bu xiang,新安埠,新安埠乡 28.26701 117.5943 P PPLA4 CN 03 0 99 Asia/Shanghai 2012-01-19
-1924207 Ehu Ehu Ehu,Ehu Zhen,e hu,e hu zhen,鹅湖,鹅湖镇 28.2905 117.79431 P PPLA4 CN 03 0 65 Asia/Shanghai 2012-01-19
-1924219 Hengshan Hengshan Hengshan,Hengshan Zhen,heng shan,heng shan zhen,横山,横山镇 28.31724 118.19706 P PPLA4 CN 03 0 163 Asia/Shanghai 2012-01-19
-1924230 Shatian Shatian Shatian,Shatian Zhen,sha tian,sha tian zhen,沙田,沙田镇 28.33801 118.2807 P PPLA4 CN 03 0 132 Asia/Shanghai 2012-01-19
-1924241 Hongtang Hongtang Hongtang,Hongtang Zhen,hong tang,hong tang zhen,鸿塘,鸿塘镇 28.35815 117.01661 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-19
-1924248 Dongtuan Dongtuan Dongtuan,Dongtuan Xiang,dong tuan,dong tuan xiang,董团,董团乡 28.39142 117.84863 P PPLA4 CN 03 0 84 Asia/Shanghai 2012-01-19
-1924252 Maocun Maocun Maocun,Maocun Zhen,mao cun,mao cun zhen,毛村,毛村镇 28.3942 118.36436 P PPLA4 CN 03 0 152 Asia/Shanghai 2012-01-19
-1924255 Dashi Dashi Dashi,Dashi Xiang,da shi,da shi xiang,大石,大石乡 28.40247 118.21232 P PPLA4 CN 03 0 135 Asia/Shanghai 2012-01-19
-1924261 Huating Huating Huating,Huating Xiang,hua ting,hua ting xiang,花亭,花亭乡 28.43389 117.44222 P PPLA4 CN 03 0 56 Asia/Shanghai 2012-01-19
-1924271 Gangbian Gangbian Gangbian,Gangbian Xiang,gang bian,gang bian xiang,港边,港边乡 28.46639 117.68917 P PPLA4 CN 03 0 104 Asia/Shanghai 2012-01-19
-1924273 Paishan Paishan Paishan,Paishan Zhen,pai shan,pai shan zhen,排山,排山镇 28.45956 118.27939 P PPLA4 CN 03 0 179 Asia/Shanghai 2012-01-19
-1924275 Puqian Puqian Puqian,Puqian Zhen,pu qian,pu qian zhen,铺前,铺前镇 28.47333 117.61361 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-19
-1924280 Shehou Shehou Shehou,Shehou Xiang,she hou,she hou xiang,社后,社后乡 28.48011 118.36733 P PPLA4 CN 03 0 282 Asia/Shanghai 2012-01-19
-1924288 Wucun Wucun Wucun,Wucun Zhen,wu cun,wu cun zhen,吴村,吴村镇 28.49891 118.27715 P PPLA4 CN 03 0 190 Asia/Shanghai 2012-01-19
-1924305 Huqiao Huqiao Huqiao,Huqiao Zhen,hu jiao,hu jiao zhen,壶峤,壶峤镇 28.54833 118.15778 P PPLA4 CN 03 0 107 Asia/Shanghai 2012-01-19
-1924314 Xianyan Xianyan Xianyan,Xianyan Zhen,xian yan,xian yan zhen,仙岩,仙岩镇 28.57333 118.39417 P PPLA4 CN 03 0 154 Asia/Shanghai 2012-01-19
-1924318 Hufeng Hufeng Hufeng,Hufeng Zhen,hu feng,hu feng zhen,湖丰,湖丰镇 28.59028 118.19083 P PPLA4 CN 03 0 107 Asia/Shanghai 2012-01-19
-1924343 Liudu Liudu Liudu,Liudu Xiang,liu dou,liu dou xiang,六都,六都乡 28.64612 118.30518 P PPLA4 CN 03 0 111 Asia/Shanghai 2012-01-19
-1924348 Linhu Linhu Linhu,Linhu Zhen,lin hu,lin hu zhen,临湖,临湖镇 28.65958 117.93768 P PPLA4 CN 03 0 116 Asia/Shanghai 2012-01-19
-1924354 Shangfang Shangfang Shangfang,Shangfang Xiang,shang fang,shang fang xiang,上坊,上坊乡 28.67833 117.04583 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-19
-1924365 Yanrui Yanrui Yanrui,Yanrui Zhen,yan rui,yan rui zhen,岩瑞,岩瑞镇 28.71399 118.33715 P PPLA4 CN 03 0 108 Asia/Shanghai 2012-01-19
-1924377 Siguqiao Siguqiao Siguqiao,Siguqiao Xiang,si gu qiao,si gu qiao xiang,四股桥,四股桥乡 28.74677 118.26191 P PPLA4 CN 03 0 112 Asia/Shanghai 2012-01-19
-1924384 Baiyun Baiyun Baiyun,Baiyun Zhen,bai yun,bai yun zhen,白云,白云镇 28.75779 118.32593 P PPLA4 CN 03 0 120 Asia/Shanghai 2012-01-19
-1924385 Zhangcun Zhangcun Zhangcun,Zhangcun Xiang,zhang cun,zhang cun xiang,张村,张村乡 28.76023 117.56065 P PPLA4 CN 03 0 69 Asia/Shanghai 2012-01-19
-1924418 Lilin Lilin Lilin,Lilin Zhen,li lin,li lin zhen,礼林,礼林镇 28.86338 117.16505 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-19
-1924452 Wukou Wukou Wukou,Wukou Zhen,wu kou,wu kou zhen,浯口,浯口镇 28.98062 117.23916 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-19
-1924460 Gaojia Gaojia Gaojia,Gaojia Zhen,gao jia,gao jia zhen,高家,高家镇 29.00111 117.3825 P PPLA4 CN 03 0 65 Asia/Shanghai 2012-01-19
-1924461 Tanbuqiao Tanbuqiao Tanbuqiao,Tanbuqiao Zhen,tan bu qiao,tan bu qiao zhen,潭埠桥,潭埠桥镇 29.00701 117.62965 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-19
-1924513 Liyang Liyang Liyang,Liyang Xiang,li yang,li yang xiang,丽阳,丽阳乡 29.22064 117.03697 P PPLA4 CN 03 0 28 Asia/Shanghai 2012-01-19
-1924521 Zhentou Zhentou Zhentou,Zhentou Zhen,Zhentoudian,zhen tou,zhen tou zhen,镇头,镇头镇 29.26677 117.46827 P PPLA4 CN 03 0 100 Asia/Shanghai 2012-01-19
-1924522 Longshan Longshan Longshan,Longshan Xiang,long shan,long shan xiang,龙山,龙山乡 29.27061 117.68489 P PPLA4 CN 03 0 109 Asia/Shanghai 2012-01-19
-1924537 Jialu Jialu Jialu,Jialu Xiang,jia lu,jia lu xiang,甲路,甲路乡 29.3532 117.62056 P PPLA4 CN 03 0 129 Asia/Shanghai 2012-01-19
-1924657 Bailu Bailu Bailu,Bailu Xiang,bai lu,bai lu xiang,白路,白路乡 27.91014 116.19944 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-19
-1924660 Baimaqiao Baimaqiao Baimaqiao,Baimaqiao Xiang,bai ma qiao,bai ma qiao xiang,白马桥,白马桥乡 28.6401 116.73804 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-19
-1924665 Baixu Baixu Baixu,Baixu Xiang,bai wei,bai wei xiang,白圩,白圩乡 28.26156 116.25249 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-19
-1924668 Bajiang Bajiang Bajiang,Bajiang Xiang,ba jiang,ba jiang xiang,八江,八江乡 27.20363 115.35152 P PPLA4 CN 03 0 54 Asia/Shanghai 2012-01-19
-1924677 Beigang Beigang Beigang,Beigang Xiang,Beigangxu,bei gang,bei gang xiang,北岗,北岗乡 27.92873 115.09341 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-19
-1924692 Changjun Changjun Changjun,Changjun Xiang,Changjunlong,zhang jun,zhang jun xiang,长均,长均乡 28.86618 115.71419 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-19
-1924700 Chenfangji Chenfangji Chenfangji,Chenfangji Xiang,chen fang ji,chen fang ji xiang,陈坊积,陈坊积乡 28.05939 116.55376 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-19
-1924710 Chonggang Chonggang Chonggang,Chonggang Zhen,chong gang,chong gang zhen,崇岗,崇岗镇 27.91126 116.37424 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-19
-1924728 Daqiao Daqiao Daqiao,Daqiao Xiang,da qiao,da qiao xiang,大桥,大桥乡 28.05452 115.5806 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-19
-1924730 Datang Datang Datang,Dataong Xiang,da tang,da tang xiang,大塘,大塘乡 28.7796 116.51844 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-19
-1924735 Dayangzhou Dayangzhou Dayangzhou,Dayangzhou Zhen,da yang zhou,da yang zhou zhen,大洋洲,大洋洲镇 27.90059 115.44898 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-19
-1924739 Dengdun Dengdun Dengdun,Dengdun Xiang,deng dun,deng dun xiang,邓墩,邓墩乡 28.3996 116.57632 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-19
-1924740 Dengfang Dengfang Dengfang,Dengfang Xiang,deng fang,deng fang xiang,邓坊,邓坊乡 27.81112 116.5249 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-19
-1924751 Dinghu Dinghu Dinghu,Dinghu Zhen,ding hu,ding hu zhen,鼎湖,鼎湖镇 28.83756 115.54494 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-19
-1924769 Dongxin Dongxin Dongxin,Dongxin Xiang,dong xin,dong xin xiang,东新,东新乡 28.58932 115.82777 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-19
-1924770 Dongyuan Dongyuan Dongyuan,Dongyuan Xiang,dong yuan,dong yuan xiang,东源,东源乡 28.77049 116.4486 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-19
-1924778 Ducheng Ducheng Ducheng,Ducheng Zhen,Duchengxu,du cheng,du cheng zhen,独城,独城镇 28.23346 115.49153 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-19
-1924803 Fubei Fubei Fubei,Fubei Zhen,fu bei,fu bei zhen,抚北,抚北镇 28.00653 116.2928 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-19
-1924809 Gangshang Gangshang Gangshang,Gangshang Zhen,Gangshangjie,gang shang,gang shang zhen,岗上,岗上镇 28.41721 115.86328 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-19
-1924813 Gaoping Gaoping Gaoping,Gaoping Zhen,gao ping,gao ping zhen,高坪,高坪镇 27.92714 116.15487 P PPLA4 CN 03 0 50 Asia/Shanghai 2012-01-19
-1924835 Gugang Gugang Gugang,Gugang Xiang,gu gang,gu gang xiang,谷岗,谷岗乡 27.38413 116.00116 P PPLA4 CN 03 0 196 Asia/Shanghai 2012-01-19
-1924839 Hangbu Hangbu Hangbu,Hangbu Zhen,hang bu,hang bu zhen,航埠,航埠镇 27.8153 116.24578 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-19
-1924845 Hebu Hebu Hebu,Hebu Xiang,he bu,he bu xiang,河埠,河埠乡 27.78825 116.39827 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-19
-1924848 Heling Heling Heling,Heling Xiang,he ling,he ling xiang,荷岭,荷岭乡 28.35314 115.41082 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-19
-1924858 Heshan Heshan Heshan,Heshan Xiang,he shan,he shan xiang,禾山,禾山乡 28.59817 116.55225 P PPLA4 CN 03 0 28 Asia/Shanghai 2012-01-19
-1924868 Hongjiazui Hongjiazui Hongjiazui,Hongjiazui Xiang,hong jia zui,hong jia zui xiang,洪家嘴,洪家嘴乡 28.6991 116.65764 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-19
-1924880 Houtian Houtian Houtian,Houtian Xiang,Houtianjie,hou tian,hou tian xiang,厚田,厚田乡 28.46522 115.7906 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-19
-1924884 Hualingang Hualingang Hualingang,Hualingang Xiang,hua lin gang,hua lin gang xiang,华林岗,华林岗乡 28.70633 116.69307 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-19
-1924887 Huangcheng Huangcheng Huangcheng,Huangcheng Zhen,huang cheng,huang cheng zhen,隍城,隍城镇 28.36016 115.56156 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-19
-1924892 Huangma Huangma Huangma,Huangma Xiang,Huangmajie,huang ma,huang ma xiang,黄马,黄马乡 28.35209 116.01197 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-19
-1924895 Huangxi Huangxi Huangxi,Huangxi Zhen,huang xi,huang xi zhen,潢溪,潢溪镇 28.33408 116.8767 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-19
-1924901 Huangzhuang Huangzhuang Huangzhuang,Huangzhuang Xiang,huang zhuang,huang zhuang xiang,黄庄,黄庄乡 28.47728 116.95165 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-19
-1924905 Hutang Hutang Hutang,Hutang Xiang,hu tang,hu tang xiang,湖塘,湖塘乡 28.32362 115.61211 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-19
-1924910 Huxu Huxu Huxu,Huxu Xiang,hu wei,hu wei xiang,虎圩,虎圩乡 28.17702 116.57448 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-19
-1924922 Jiaokeng Jiaokeng Jiaokeng,Jiaokeng Xiang,jiao keng,jiao keng xiang,蕉坑,蕉坑乡 27.75572 115.81605 P PPLA4 CN 03 0 104 Asia/Shanghai 2012-01-19
-1924933 Jingkou Jingkou Jingkou,Jingkou Xiang,Jingkoujie,jing kou,jing kou xiang,泾口,泾口乡 28.65148 116.16057 P PPLA4 CN 03 0 17 Asia/Shanghai 2012-01-19
-1924937 Jinqiao Jinqiao Jinqiao,Jinqiao Xiang,jin qiao,jin qiao xiang,金桥,金桥乡 28.96994 115.90851 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-19
-1924939 Jinshanzui Jinshanzui Jinshanzui,Jinshanzui Xiang,jin shan zui,jin shan zui xiang,金山嘴,金山嘴乡 28.73351 116.56032 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-19
-1924965 Lehua Lehua Lehua,Lehua Zhen,Lehuajie,le hua,le hua zhen,乐化,乐化镇 28.82105 115.86489 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-19
-1924968 Liancheng Liancheng Liancheng,Liancheng Xiang,lian cheng,lian cheng xiang,连城,连城乡 27.89256 116.30715 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-19
-1924993 Liugongmiao Liugongmiao Liugongmiao,Liugongmiao Zhen,liu gong miao,liu gong miao zhen,刘公庙,刘公庙镇 28.11053 115.30574 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-19
-1924995 Liuhu Liuhu Liuhu,Liuhu Xiang,Liuhujie,liu hu,liu hu xiang,流湖,流湖乡 28.46975 115.72189 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-19
-1925002 Longhushan Longhushan Longhushan,Longhushan Zhen,long hu shan,long hu shan zhen,龙虎山,龙虎山镇 28.12346 116.97592 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-19
-1925003 Longtan Longtan Longtan,Longtan Zhen,Longtanqiaojie,long tan,long tan zhen,龙潭,龙潭镇 28.39259 115.23727 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-19
-1925004 Longxi Longxi Longxi,Longxi Zhen,long xi,long xi zhen,龙溪,龙溪镇 27.71399 116.28787 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-19
-1925008 Lufang Lufang Lufang,Lufang Xiang,lu fang,lu fang xiang,陆坊,陆坊乡 28.01048 116.82055 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-19
-1925026 Luoshi Luoshi Luoshi,Luoshi Zhen,luo shi,luo shi zhen,洛市,洛市镇 27.99225 115.82965 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-19
-1925027 Luoting Luoting Luoting,Luoting Zhen,luo ting,luo ting zhen,罗亭,罗亭镇 28.89012 115.78707 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-19
-1925029 Luozhen Luozhen Luozhen,Luozhen Zhen,luo zhen,luo zhen zhen,罗针,罗针镇 28.12048 116.26273 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-19
-1925031 Lusigang Lusigang Lusigang,Lusigang Xiang,lu si gang,lu si gang xiang,鹭鸶港,鹭鸶港乡 28.75433 116.64983 P PPLA4 CN 03 0 17 Asia/Shanghai 2012-01-19
-1925033 Ma’an Ma'an Ma'an,Ma'an Zhen,Ma'anping,Ma’an,Ma’an Zhen,Ma’anping,ma an,ma an zhen,马安,马安镇 27.74126 115.90438 P PPLA4 CN 03 0 90 Asia/Shanghai 2012-01-19
-1925037 Mahong Mahong Mahong,Mahong Xiang,ma hong,ma hong xiang,马洪,马洪乡 27.91907 115.01753 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-19
-1925044 Maopai Maopai Maopai,Maopai Xiang,mao pai,mao pai xiang,茅排,茅排乡 27.62461 116.50517 P PPLA4 CN 03 0 160 Asia/Shanghai 2012-01-19
-1925046 Maqiu Maqiu Maqiu,Maqiu Zhen,Maqiujie,ma qiu,ma qiu zhen,麻丘,麻丘镇 28.67109 116.07842 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-19
-1925051 Meiling Meiling Meiling,Meiling Zhen,mei ling,mei ling zhen,梅岭,梅岭镇 28.79224 115.74502 P PPLA4 CN 03 0 189 Asia/Shanghai 2012-01-19
-1925076 Nantai Nantai Nantai,Nantai Xiang,nan tai,nan tai xiang,南台,南台乡 28.49152 116.40419 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-19
-1925091 Pengzhou Pengzhou Pengzhou,Pengzhou Xiang,peng zhou,peng zhou xiang,鹏洲,鹏洲乡 27.49205 115.72425 P PPLA4 CN 03 0 114 Asia/Shanghai 2012-01-19
-1925100 Qiaole Qiaole Qiaole,Qiaole Xiang,qiao le,qiao le xiang,乔乐,乔乐乡 28.64414 115.56375 P PPLA4 CN 03 0 64 Asia/Shanghai 2012-01-19
-1925107 Qidu Qidu Qidu,Qidu XIang,qi dou,qi dou xiang,七都,七都乡 27.2756 115.55632 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-19
-1925110 Qiligang Qiligang Qiligang,Qiligang Xiang,qi li gang,qi li gang xiang,七里岗,七里岗乡 28.0097 116.42416 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-19
-1925117 Qingyun Qingyun Qingyun,Qingyun Zhen,qing yun,qing yun zhen,青云,青云镇 28.66208 116.92472 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-19
-1925122 Quanling Quanling Quanling,Quanling Xiang,quan ling,quan ling xiang,泉岭,泉岭乡 28.37799 116.07202 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-19
-1925127 Raobu Raobu Raobu,Raobu Zhen,rao bu,rao bu zhen,饶埠,饶埠镇 28.87859 116.94728 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-19
-1925128 Raofeng Raofeng Raofeng,Raofeng Zhen,Raofengzonghekenzhichang,rao feng,rao feng zhen,饶丰,饶丰镇 28.95639 116.81944 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-19
-1925131 Rongtang Rongtang Rongtang,Rongtang Zhen,rong tang,rong tang zhen,荣塘,荣塘镇 28.10862 115.71516 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-19
-1925134 Sangtian Sangtian Sangtian,Sangtian Zhen,sang tian,sang tian zhen,桑田,桑田镇 27.12578 116.56666 P PPLA4 CN 03 0 123 Asia/Shanghai 2012-01-19
-1925139 Sanshan Sanshan Sanshan,Sanshan Xiang,Sanshanmiao,san shan,san shan xiang,三山,三山乡 27.84198 115.98771 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-19
-1925155 Shanghu Shanghu Shanghu,Shanghu Xiang,Shanghuxu,shang hu,shang hu xiang,上湖,上湖乡 28.34659 115.32742 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-19
-1925204 Shuangcun Shuangcun Shuangcun,Shuangcun Zhen,shuang cun,shuang cun zhen,双村,双村镇 27.39386 115.21814 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-19
-1925221 Songhu Songhu Songhu,Songhu Xiang,song hu,song hu xiang,嵩湖,嵩湖乡 27.90805 116.47421 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-19
-1925229 Sundu Sundu Sundu,Sundu Zhen,Sunjiadu,sun du,sun du zhen,孙渡,孙渡镇 28.1395 115.76495 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-19
-1925231 Tacheng Tacheng Tacheng,Tacheng Xiang,Tachengjie,ta cheng,ta cheng xiang,塔城,塔城乡 28.50673 116.09373 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-19
-1925240 Tangang Tangang Tangang,Tangang Xiang,tan gang,tan gang xiang,潭港,潭港乡 27.41714 115.75304 P PPLA4 CN 03 0 123 Asia/Shanghai 2012-01-19
-1925252 Taobei Taobei Taobei,Taobei Xiang,Taobeicun,tao bei,tao bei xiang,桃陂,桃陂乡 27.63188 116.2704 P PPLA4 CN 03 0 84 Asia/Shanghai 2012-01-19
-1925253 Taohua Taohua Taohua,Taohua Zhen,tao hua,tao hua zhen,桃花,桃花镇 28.65338 115.87306 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-19
-1925254 Taoxi Taoxi Taoxi,Taoxi Xiang,Taoxijie,tao xi,tao xi xiang,桃溪,桃溪乡 27.7823 115.58172 P PPLA4 CN 03 0 89 Asia/Shanghai 2012-01-19
-1925256 Taoyuan Taoyuan Taoyuan,Taoyuan Xiang,tao yuan,tao yuan xiang,桃源,桃源乡 27.63758 116.04055 P PPLA4 CN 03 0 119 Asia/Shanghai 2012-01-19
-1925260 Tiannan Tiannan Tiannan,Tiannan Xiang,tian nan,tian nan xiang,田南,田南乡 28.12354 115.10985 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-19
-1925261 Tiannan Tiannan Tiannan,Tiannan Zhen,Tiannanxu,tian nan,tian nan zhen,田南,田南镇 28.10676 115.10727 P PPLA4 CN 03 0 68 Asia/Shanghai 2012-01-19
-1925269 Tonglin Tonglin Tonglin,Tonglin Xiang,tong lin,tong lin xiang,桐林,桐林乡 27.51229 115.4188 P PPLA4 CN 03 0 85 Asia/Shanghai 2012-01-19
-1925274 Wanchong Wanchong Wanchong,Wanchong Zhen,Wanchongjie,wan chong,wan chong zhen,万崇,万崇镇 27.2127 115.70175 P PPLA4 CN 03 0 112 Asia/Shanghai 2012-01-19
-1925277 Wangcheng Wangcheng Wangcheng,Wangcheng Zhen,Wangchenggangjie,wang cheng,wang cheng zhen,望城,望城镇 28.67335 115.78138 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-19
-1925279 Wangjia Wangjia Wangjia,Wangjia Xiang,wang jia,wang jia xiang,汪家,汪家乡 28.70907 116.9386 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-19
-1925299 Wuyang Wuyang Wuyang,Wuyang Zhen,Wuyangjie,wu yang,wu yang zhen,武阳,武阳镇 28.51878 116.01045 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-19
-1925311 Xiangshan Xiangshan Xiangshan,Xiangshan Zhen,xiang shan,xiang shan zhen,象山,象山镇 28.95348 115.98097 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-19
-1925312 Xiangshan Xiangshan Xiangshan,Xiangshan Zhen,xiang shan,xiang shan zhen,相山,相山镇 27.55708 116.03011 P PPLA4 CN 03 0 99 Asia/Shanghai 2012-01-19
-1925320 Xiaohuang Xiaohuang Xiaohuang,Xiaohuang Zhen,xiao huang,xiao huang zhen,小璜,小璜镇 28.31222 116.70972 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-19
-1925325 Xiaotang Xiaotang Xiaotang,Xiaotang Xiang,Xiaotangxu,xiao tang,xiao tang xiang,筱塘,筱塘乡 28.20852 115.91202 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-19
-1925363 Xixia Xixia Xixia,Xixia Zhen,xi xia,xi xia zhen,溪霞,溪霞镇 28.85855 115.84326 P PPLA4 CN 03 0 28 Asia/Shanghai 2012-01-19
-1925367 Xufang Xufang Xufang,Xufang Xiang,xu fang,xu fang xiang,许坊,许坊乡 27.65317 116.21872 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-19
-1925368 Xushangqiao Xushangqiao Xushangqiao,Xushangqiao Zhen,wei shang qiao,wei shang qiao zhen,圩上桥,圩上桥镇 28.22879 116.54639 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-19
-1925370 Yanbei Yanbei Yanbei,Yanbei Zhen,yan bei,yan bei zhen,沿陂,沿陂镇 27.36974 115.53234 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-19
-1925380 Yangqiaodian Yangqiaodian Yangqiaodian,Yangqiaodian Zhen,yang qiao dian,yang qiao dian zhen,杨桥殿,杨桥殿镇 28.37162 116.54184 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-19
-1925381 Yangshan Yangshan Yangshan,Yangshan Xiang,yang shan,yang shan xiang,仰山,仰山乡 28.76147 115.0287 P PPLA4 CN 03 0 470 Asia/Shanghai 2012-01-19
-1925382 Yangsi Yangsi Yangsi,Yangsi Xiang,yang si,yang si cun,杨泗,杨泗村 28.99378 115.75551 P PPLA4 CN 03 0 15 Asia/Shanghai 2012-01-19
-1925393 Tianjingyuan Tianjingyuan Tianjingyuan,Tianjingyuan Xiang,tian jing yuan,tian jing yuan xiang,天井源,天井源乡 27.53171 116.6473 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-19
-1925398 Yaotian Yaotian Yaotian,Yaotian Zhen,Yaotianxu,yao tian,yao tian zhen,瑶田,瑶田镇 27.12964 115.62079 P PPLA4 CN 03 0 114 Asia/Shanghai 2012-01-19
-1925399 Yaoxu Yaoxu Yaoxu,Yaoxu Xiang,Yaoxujie,yao wei,yao wei xiang,瑶圩,瑶圩乡 28.1096 116.79311 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-19
-1925413 Yonghe Yonghe Yonghe,Yonghe Zhen,yong he,yong he zhen,永和,永和镇 27.03111 115.01469 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-19
-1925418 Yuandu Yuandu Yuandu,Yuandu Zhen,yuan du,yuan du zhen,袁渡,袁渡镇 28.26364 116.04724 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-19
-1925446 Zhangxiang Zhangxiang Zhangjiaxiang,Zhangxiang,Zhangxiang Zhen,zhang xiang,zhang xiang zhen,张巷,张巷镇 28.14961 115.91308 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-19
-1925449 Zhangshan Zhangshan Zhangshan,Zhangshan Zhen,zhang shan,zhang shan zhen,樟山,樟山镇 27.18495 115.04408 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-19
-1925456 Zhanxu Zhanxu Zhanxu,Zhanxu Zhen,zhan wei,zhan wei zhen,詹圩,詹圩镇 28.22011 116.42362 P PPLA4 CN 03 0 39 Asia/Shanghai 2012-01-19
-1925457 Zhaobu Zhaobu Zhaobu,Zhaobu Xiang,zhao bu,zhao bu xiang,赵埠,赵埠乡 28.56996 116.26248 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-19
-1925460 Zhenkou Zhenkou Zhenkou,Zhenkou Xiang,Zhenkoucun,zhen kou,zhen kou xiang,圳口,圳口乡 27.39878 116.34286 P PPLA4 CN 03 0 163 Asia/Shanghai 2012-01-19
-1925493 Zuofang Zuofang Zuofang,Zuofang Xiang,zuo fang,zuo fang xiang,左坊,左坊乡 27.82328 116.75091 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-19
-1927332 Xingsha Xingsha Xingsha,xing sha,星沙 28.23972 113.08778 P PPLA3 CN 11 0 69 Asia/Chongqing 2012-01-19
-1927408 Daweishan Daweishan Daweishan,Daweishan Zhen,da wei shan,da wei shan zhen,大围山,大围山镇 28.46186 114.00785 P PPLA4 CN 11 0 155 Asia/Chongqing 2012-01-19
-1927466 Guantouzui Guantouzui Guantouzui,Guantouzui Zhen,guan tou ju,guan tou ju zhen,罐头咀,罐头咀镇 29.05268 112.00184 P PPLA4 CN 11 0 34 Asia/Shanghai 2012-01-19
-1927478 Heishanzui Heishanzui Heishanzui,Heishanzui Xiang,hei shan zui,hei shan zui xiang,黑山嘴,黑山嘴乡 29.11189 112.00873 P PPLA4 CN 11 0 31 Asia/Shanghai 2012-01-19
-1927514 Huangzhuzhou Huangzhuzhou Huangzhuzhou,Huangzhuzhou Xiang,huang zhu zhou,huang zhu zhou xiang,黄珠洲,黄珠洲乡 29.11739 112.08466 P PPLA4 CN 11 0 32 Asia/Shanghai 2012-01-19
-1927584 Longmen Longmen Longmen,Longmen Zhen,long men,long men zhen,龙门,龙门镇 28.80909 114.05276 P PPLA4 CN 11 0 135 Asia/Chongqing 2012-01-19
-1927639 Yueyang Yueyang 29.33333 113.09194 P PPL CN 11 5000000 39 Asia/Chongqing 2010-07-11
-1927717 Shimeitang Shimeitang Shimeitang,Shimeitang Zhen,shi mei tang,shi mei tang zhen,十美堂,十美堂镇 29.19363 112.07017 P PPLA4 CN 11 0 34 Asia/Shanghai 2012-01-19
-1927890 Zhonghekou Zhonghekou Zhonghekou,Zhonghekou Zhen,zhong he kou,zhong he kou zhen,中河口,中河口镇 29.32181 111.98759 P PPLA4 CN 11 0 33 Asia/Shanghai 2012-01-19
-1927896 Zhouwenmiao Zhouwenmiao Zhouwenmiao,Zhouwenmiao Xiang,zhou wen miao,zhou wen miao xiang,周文庙,周文庙乡 28.9121 112.0517 P PPLA4 CN 11 0 33 Asia/Shanghai 2012-01-19
-1927920 Mao’erzhai Mao'erzhai Mao'erzhai,Mao’erzhai,Sanyuanxiang,mao r zhai,san yuan xiang,三元乡,猫儿寨 29.56132 109.49965 P PPLA4 CN 11 0 491 Asia/Chongqing 2012-01-19
-1927922 Yanwukou Yanwukou Yanwukou,Yanwukou Xiang,yan wu kou,yan wu kou xiang,岩屋口,岩屋口乡 29.50138 109.91646 P PPLA4 CN 11 0 352 Asia/Chongqing 2012-01-19
-1927925 Shigaoshan Shigaoshan Shigao,Shigao Zhen,Shigaoshan,shi gao shan,shi gao zhen,石羔山,石羔镇 29.51358 109.46532 P PPLA4 CN 11 0 532 Asia/Chongqing 2012-01-19
-1927926 Xincheng Xincheng Xincheng,Xincheng Xiang,xin cheng,xin cheng xiang,新城,新城乡 29.46207 109.45826 P PPLA4 CN 11 0 460 Asia/Chongqing 2012-01-19
-1927927 Xinchang’ao Xinchang'ao Xinchang'ao,Xinchang’ao,xin chang ao,新场坳 29.44541 109.64748 P PPLA4 CN 11 0 992 Asia/Chongqing 2012-01-19
-1927930 Bixidong Bixidong Bixi,Bixidong,Bixidong Xiang,bi xi dong,bi xi dong xiang,比溪洞,比溪洞乡 29.38414 109.68811 P PPLA4 CN 11 0 509 Asia/Chongqing 2012-01-19
-1927931 Xiluo Xiluo Xiluo,Xiluo Xiang,xi luo,xi luo xiang,洗洛,洗洛乡 29.40866 109.46647 P PPLA4 CN 11 0 529 Asia/Chongqing 2012-01-19
-1927932 Cengjiawan Cengjiawan Baiyang Xiang,Cengjiawan,bai yang xiang,ceng jia wan,曾家湾,白羊乡 29.42049 109.37507 P PPLA4 CN 11 0 486 Asia/Chongqing 2012-01-19
-1927933 Longzui Longzui Longju,Longzui,Wantang Xiang,long zui,wan tang xiang,湾塘乡,龙嘴 29.33425 109.36722 P PPLA4 CN 11 0 478 Asia/Chongqing 2012-01-19
-1927935 Xinzhaipo Xinzhaipo Liaoye,Xinzhaipo,liao ye,xin zhai po,新寨坡,辽叶 29.28478 109.42245 P PPLA4 CN 11 0 757 Asia/Chongqing 2012-01-19
-1927938 Shangdongjie Shangdongjie Shandongjie Xiang,Shangdongjie,shang dong jie,shang dong jie xiang,上洞街,上洞街乡 29.32972 109.98738 P PPLA4 CN 11 0 385 Asia/Chongqing 2012-01-19
-1927940 Xinchang Xinchang Xinchang,Yanjing Xiang,xin chang,yan jing xiang,新场,盐井乡 29.2581 109.73045 P PPLA4 CN 11 0 502 Asia/Chongqing 2012-01-19
-1927942 Chenzhouzhai Chenzhouzhai Chenzhouzhai,Wafang Xiang,chen zhou zhai,wa fang xiang,瓦房乡,辰州寨 29.27342 109.4632 P PPLA4 CN 11 0 746 Asia/Chongqing 2012-01-19
-1927945 Luotache Luotache Luota Xiang,Luotache,luo ta che,luo ta xiang,洛塔乡,洛塔车 29.20868 109.52266 P PPLA4 CN 11 0 814 Asia/Chongqing 2012-01-19
-1927947 Laoxingchang Laoxingchang Laoxing,Laoxing Xiang,Laoxingchang,lao xing chang,lao xing xiang,老兴乡,老兴场 29.15584 109.34311 P PPLA4 CN 11 0 502 Asia/Chongqing 2012-01-19
-1927948 Guitangba Guitangba Guitang,Guitang Zhen,Guitangba,gui tang,gui tang ba,gui tang zhen,桂塘,桂塘坝,桂塘镇 29.10922 109.25927 P PPLA4 CN 11 0 425 Asia/Chongqing 2012-01-19
-1927949 Fengxizhai Fengxizhai Fengxi Xiang,Fengxizhai,feng xi xiang,feng xi zhai,凤溪乡,凤溪寨 29.0069 109.44554 P PPLA4 CN 11 0 373 Asia/Chongqing 2012-01-19
-1927950 Mengxihu Mengxihu Mengxi Xiang,Mengxihu,meng xi hu,meng xi xiang,猛溪乡,猛溪湖 29.12196 109.47758 P PPLA4 CN 11 0 337 Asia/Chongqing 2012-01-19
-1927951 Xishaping Xishaping Ganxi Xiang,Xishaping,gan xi xiang,xi sha ping,干溪乡,细砂坪 29.14257 109.5283 P PPLA4 CN 11 0 622 Asia/Chongqing 2012-01-19
-1927954 Liandonggang Liandonggang Liandong,Liandong Xiang,Liandonggang,lian dong gang,lian dong xiang,连洞乡,连洞岗 29.00751 109.88227 P PPLA4 CN 11 0 348 Asia/Chongqing 2012-01-19
-1927956 Wujiazhai Wujiazhai Shouche Zhen,Wujiazhai,shou che zhen,wu jia zhai,吴家寨,首车镇 29.10165 109.71049 P PPLA4 CN 11 0 327 Asia/Chongqing 2012-01-19
-1927960 Guancangping Guancangping Cangping,Cangping Xiang,Guancangping,cang ping,cang ping xiang,guan cang ping,仓坪,仓坪乡,官仓坪 29.18216 109.91864 P PPLA4 CN 11 0 452 Asia/Chongqing 2012-01-19
-1927962 Yanbanpu Yanbanpu Wanfu Xiang,Yanbanpu,wan fu xiang,yan ban pu,万福乡,岩板铺 29.09146 109.83273 P PPLA4 CN 11 0 604 Asia/Chongqing 2012-01-19
-1927964 Cheping Cheping Cheping,Cheping Xiang,che ping,che ping xiang,车坪,车坪乡 29.15444 110.0025 P PPLA4 CN 11 0 438 Asia/Chongqing 2012-01-19
-1927972 Yanchi Yanchi Yanchi,Yanchi Xiang,Yanchiping,yan chi,yan chi ping,yan chi xiang,雁池,雁池乡,雁池坪 29.79922 110.92988 P PPLA4 CN 11 0 207 Asia/Chongqing 2012-01-19
-1927982 Baishi Baishi Baishi,Baishi Xiang,bai shi,bai shi xiang,白石,白石乡 29.70358 110.5852 P PPLA4 CN 11 0 1062 Asia/Chongqing 2012-01-19
-1927984 Zhenjiatai Zhenjiatai Changtanping Xiang,Zhenjiatai,zhang tan ping xiang,zhen jia tai,甄家台,长潭坪乡 29.69288 110.47533 P PPLA4 CN 11 0 216 Asia/Chongqing 2012-01-19
-1927987 Linxihe Linxihe Linxihe,Linxihe Baizuxiang,lin xi he,lin xi he bai zu xiang,淋溪河,淋溪河白族乡 29.63242 110.37134 P PPLA4 CN 11 0 391 Asia/Chongqing 2012-01-19
-1927990 Bamaoxi Bamaoxi Bamaoxi,Bamaoxi Xiang,ba mao xi,ba mao xi xiang,芭茅溪,芭茅溪乡 29.67384 110.02487 P PPLA4 CN 11 0 388 Asia/Chongqing 2012-01-19
-1927992 Sifangxi Sifangxi Sifangxi,Sifangxi Xiang,xi fang xi,xi fang xi xiang,西方溪,西方溪乡 29.65954 110.16876 P PPLA4 CN 11 0 384 Asia/Chongqing 2012-01-19
-1927996 Zhangjiaqiao Zhangjiaqiao Qiaoziwan Xiang,Zhangjiaqiao,qiao zi wan xiang,zhang jia qiao,张家桥,桥自湾乡 29.50685 110.14202 P PPLA4 CN 11 0 467 Asia/Chongqing 2012-01-19
-1928000 Xianchiyu Xianchiyu Mihu,Mihu Xiang,Xianchiyu,mi hu,mi hu xiang,xian chi yu,咸池峪,汨湖,汨湖乡 29.46392 110.4714 P PPLA4 CN 11 0 580 Asia/Chongqing 2012-01-19
-1928005 Qiaotou Qiaotou Qiaotou,Qiaotou Xiang,qiao tou,qiao tou xiang,桥头,桥头乡 29.34699 110.28325 P PPLA4 CN 11 0 385 Asia/Chongqing 2012-01-19
-1928011 Shanmuqiao Shanmuqiao Shanmuqiao,Shanmuqiao Zhen,shan mu qiao,shan mu qiao zhen,杉木桥,杉木桥镇 29.53811 110.93215 P PPLA4 CN 11 0 172 Asia/Chongqing 2012-01-19
-1928012 Gaofeng Gaofeng Gaofeng,Gaofeng Tujiazu Xiang,Tanjiaqiao,gao feng,gao feng tu jia zu xiang,qin jia qiao,覃家桥,高峰,高峰土家族乡 29.43684 110.91708 P PPLA4 CN 11 0 724 Asia/Chongqing 2012-01-19
-1928020 Xujiafang Xujiafang Xujiafang,Xujiafang Tujiazuxiang,xu jia fang,xu jia fang tu jia zu xiang,许家坊,许家坊土家族乡 29.24369 110.65468 P PPLA4 CN 11 0 179 Asia/Chongqing 2012-02-02
-1928037 Qing’anping Qing'anping Qing'anping,Qing'anping Xiang,Qing’anping,Qing’anping Xiang,qing an ping,qing an ping xiang,青安坪,青安坪乡 29.28083 110.15504 P PPLA4 CN 11 0 384 Asia/Chongqing 2012-01-19
-1928040 Daming Daming Daming,Daming Xiang,da ming,da ming xiang,大明,大明乡 29.10783 110.05115 P PPLA4 CN 11 0 524 Asia/Chongqing 2012-01-19
-1928043 Chexi Chexi Chexi,Runya,Runya Xiang,che xi,run ya,run ya xiang,润雅,润雅乡,澈溪 29.11526 110.16718 P PPLA4 CN 11 0 281 Asia/Chongqing 2012-01-19
-1928049 Shuangxiqiao Shuangxiqiao Shuangxiqiao,Shuangxiqiao Xiang,shuang xi qiao,shuang xi qiao xiang,双溪桥,双溪桥乡 29.02563 110.63937 P PPLA4 CN 11 0 843 Asia/Chongqing 2012-01-19
-1928053 Sigangtou Sigangtou Jinyan,Jinyan Tujiazuxiang,Sigangtou,jin yan,jin yan tu jia zu xiang,si gang tou,寺岗头,金岩,金岩土家族乡 29.17672 110.675 P PPLA4 CN 11 0 216 Asia/Chongqing 2012-02-02
-1928056 Wangjiaping Wangjiaping Wangjiaping,Wangjiaping Zhen,wang jia ping,wang jia ping zhen,王家坪,王家坪镇 29.04439 110.81516 P PPLA4 CN 11 0 385 Asia/Chongqing 2012-01-19
-1928065 Nanshanping Nanshanping Nanshanping,Nanshanping Xiang,nan shan ping,nan shan ping xiang,南山坪,南山坪乡 29.31746 110.89411 P PPLA4 CN 11 0 354 Asia/Chongqing 2012-01-19
-1928075 Huolianpo Huolianpo Huolianpo,Huolianpo Zhen,huo lian po,huo lian po zhen,火连坡,火连坡镇 29.88371 111.45323 P PPLA4 CN 11 0 106 Asia/Shanghai 2012-01-19
-1928081 Fuxingchang Fuxingchang Fuxing,Fuxingchang,Fuxingchang Zhen,fu xing chang,fu xing chang zhen,复兴厂,复兴厂镇 29.83438 111.8456 P PPLA4 CN 11 0 75 Asia/Shanghai 2012-01-19
-1928082 Shuanglong Shuanglong Shuanglong,Shuanglong Xiang,Shunlinqiao,shuang long,shuang long xiang,shun lin qiao,双龙,双龙乡,顺林桥 29.81938 111.89868 P PPLA4 CN 11 0 51 Asia/Shanghai 2012-01-19
-1928084 Leigongta Leigongta Leigongta,Leigongta Zhen,lei gong ta,lei gong ta zhen,雷公塔,雷公塔镇 29.79269 111.76927 P PPLA4 CN 11 0 65 Asia/Shanghai 2012-01-19
-1928086 Cennan Cennan Cengjiahe,Cennan,Cennan Xiang,cen nan,cen nan xiang,ceng jia he,曾家河,涔南,涔南乡 29.74993 111.76877 P PPLA4 CN 11 0 43 Asia/Shanghai 2012-01-19
-1928087 Zhongwu Zhongwu Zhongwu,Zhongwu Xiang,Zhongwuqiao,zhong wu,zhong wu qiao,zhong wu xiang,中武,中武乡,中武桥 29.77472 111.6725 P PPLA4 CN 11 0 63 Asia/Chongqing 2012-01-19
-1928088 Jinluo Jinluo Jinluo,Jinluo Zhen,jin luo,jin luo zhen,金罗,金罗镇 29.8097 111.59812 P PPLA4 CN 11 0 74 Asia/Shanghai 2012-01-19
-1928095 Sansheng Sansheng Sansheng,Sansheng Xiang,Sanshengmiao,san sheng,san sheng miao,san sheng xiang,三圣,三圣乡,三圣庙 29.80709 111.24757 P PPLA4 CN 11 0 197 Asia/Shanghai 2012-01-19
-1928100 Yangjiafang Yangjiafang Yangjiafang,Yangjiafang Xiang,yang jia fang,yang jia fang xiang,杨家坊,杨家坊乡 29.7557 111.35753 P PPLA4 CN 11 0 157 Asia/Shanghai 2012-01-19
-1928105 Jiuli Jiuli Jiuli,Jiuli Xiang,Lishankou,jiu li,jiu li xiang,li shan kou,九里,九里乡,栗山口 29.69468 111.5857 P PPLA4 CN 11 0 52 Asia/Shanghai 2012-01-19
-1928106 Daping Daping Daping,Daping Xiang,Zhoujiapo,da ping,da ping xiang,zhou jia po,周家坡,大坪,大坪乡 29.66111 111.64361 P PPLA4 CN 11 0 43 Asia/Chongqing 2012-01-19
-1928109 Yongfeng Yongfeng Meijiagang,Meijiaxiang,Yongfeng,Yongfeng Xiang,mei jia xiang,yong feng,yong feng xiang,梅家巷,永丰,永丰乡 29.68413 111.93825 P PPLA4 CN 11 0 37 Asia/Shanghai 2012-01-19
-1928110 Xiaodukou Xiaodukou Xiaodukou,Xiaodukou Zhen,xiao du kou,xiao du kou zhen,小渡口,小渡口镇 29.62833 111.91222 P PPLA4 CN 11 0 36 Asia/Chongqing 2012-01-19
-1928111 Jiuyuan Jiuyuan Ganjiawan,Jiuyuan,Jiuyuan Xiang,gan jia wan,jiu yuan,jiu yuan xiang,九垸,九垸乡,甘家湾 29.56613 111.92046 P PPLA4 CN 11 0 32 Asia/Shanghai 2012-01-19
-1928112 Lijiapu Lijiapu Lijiapu,Lijiapu Xiang,li jia pu,li jia pu xiang,李家铺,李家铺乡 29.49701 111.9193 P PPLA4 CN 11 0 58 Asia/Shanghai 2012-01-19
-1928114 Baohedi Baohedi Baohedi,Baohedi Zhen,bao he di,bao he di zhen,保河堤,保河堤镇 29.40496 111.9906 P PPLA4 CN 11 0 35 Asia/Shanghai 2012-01-19
-1928116 Lingquan Lingquan Lingquan,Lingquan Xiang,Wuquanpu,ling quan,ling quan xiang,wu quan pu,五泉铺,灵泉,灵泉乡 29.52806 111.82361 P PPLA4 CN 11 0 55 Asia/Chongqing 2012-01-19
-1928118 Li’nan Li'nan Li'nan,Li'nan Xiang,Liujiahe,Li’nan,Li’nan Xiang,li nan,li nan xiang,liu jia he,刘家河,澧南,澧南乡 29.61749 111.75611 P PPLA4 CN 11 0 37 Asia/Shanghai 2012-01-19
-1928119 Zhanggongmiao Zhanggongmiao Zhanggongmiao,Zhanggongmiao Zhen,zhang gong miao,zhang gong miao zhen,张公庙,张公庙镇 29.60611 111.65528 P PPLA4 CN 11 0 43 Asia/Chongqing 2012-01-19
-1928120 Yangban Yangban Yangban,Yangban Xiang,Yangbanqiao,yang ban,yang ban qiao,yang ban xiang,杨板,杨板乡,杨板桥 29.52996 111.69075 P PPLA4 CN 11 0 47 Asia/Shanghai 2012-01-19
-1928122 Fenghuo Fenghuo Fenghuo,Fenghuo Xiang,Guanyin'an,Guanyin’an,feng huo,feng huo xiang,guan yin an,烽火,烽火乡,观音庵 29.45876 111.74773 P PPLA4 CN 11 0 43 Asia/Shanghai 2012-01-19
-1928125 Sixingang Sixingang Sixingang,Sixingang Zhen,si xin gang,si xin gang zhen,四新岗,四新岗镇 29.35964 111.63591 P PPLA4 CN 11 0 88 Asia/Shanghai 2012-01-19
-1928131 Leigongmiao Leigongmiao Leigongmiao,Leigongmiao Zhen,lei gong miao,lei gong miao zhen,雷公庙,雷公庙镇 29.25647 111.61783 P PPLA4 CN 11 0 62 Asia/Shanghai 2012-01-19
-1928132 Changlinggang Changlinggang Changlinggang,Changlinggang Xiang,zhang ling gang,zhang ling gang xiang,长岭岗,长岭岗乡 29.2332 111.69294 P PPLA4 CN 11 0 81 Asia/Shanghai 2012-01-19
-1928134 Taifu Taifu Taifu,Taifu Zhen,Yansi'an,Yansi’an,tai fu,tai fu zhen,yan si an,太浮,太浮镇,衍嗣庵 29.28912 111.58562 P PPLA4 CN 11 0 78 Asia/Shanghai 2012-01-19
-1928137 Wenjia Wenjia Wenjia,Wenjia Xiang,Wenjiadian,wen jia,wen jia dian,wen jia xiang,文家,文家乡,文家店 29.38054 111.54469 P PPLA4 CN 11 0 67 Asia/Shanghai 2012-01-19
-1928141 Shanban Shanban Shanban,Shanban Xiang,Shanbanqiao,shan ban,shan ban qiao,shan ban xiang,杉板,杉板乡,杉板桥 29.55707 111.52632 P PPLA4 CN 11 0 93 Asia/Shanghai 2012-01-19
-1928145 Xinguan Xinguan Xinguan,Xinguan Zhen,xin guan,xin guan zhen,新关,新关镇 29.61969 111.30733 P PPLA4 CN 11 0 83 Asia/Shanghai 2012-01-19
-1928163 Reshi Reshi Reshi,Reshi Zhen,Reshuikeng,re shi,re shi zhen,re shui keng,热市,热市镇,热水坑 29.32136 111.32248 P PPLA4 CN 11 0 94 Asia/Shanghai 2012-01-19
-1928167 Mazongling Mazongling Mazongling,Mazongling Xiang,ma zong ling,ma zong ling xiang,马鬃岭,马鬃岭乡 29.24065 111.45562 P PPLA4 CN 11 0 63 Asia/Shanghai 2012-01-19
-1928170 Haoping Haoping Haoping,Haoping Xiang,hao ping,hao ping xiang,郝坪,郝坪乡 29.27505 111.27132 P PPLA4 CN 11 0 103 Asia/Shanghai 2012-01-19
-1928171 Erfangping Erfangping Erfangping,Erfangping Xiang,er fang ping,er fang ping xiang,二方坪,二方坪乡 29.28833 111.19389 P PPLA4 CN 11 0 133 Asia/Chongqing 2012-01-19
-1928172 Lingxi Lingxi Lingxi,Lingxi Zhen,ling xi,ling xi zhen,零溪,零溪镇 29.37082 111.1741 P PPLA4 CN 11 0 117 Asia/Shanghai 2012-01-19
-1928182 Wuxihe Wuxihe Longtanqiao,Wuxihe,Wuxihe Xiang,long tan qiao,wu xi he,wu xi he xiang,浯溪河,浯溪河乡,龙潭桥 29.02283 111.4144 P PPLA4 CN 11 0 46 Asia/Shanghai 2012-01-19
-1928183 Fengshu Fengshu Fengshu,Fengshu Wewuerzu Huizuxiang,Zhuangjiaqiao,feng shu,feng shu wei wu er zu hui zu xiang,zhuang jia qiao,庄家桥,枫树,枫树维吾尔族回族乡 29.01583 111.48902 P PPLA4 CN 11 0 41 Asia/Shanghai 2012-01-19
-1928184 Mutangyuan Mutangyuan Mutangyuan,Mutangyuan Xiang,Sanchagang,mu tang yuan,mu tang yuan xiang,san cha gang,三汊港,木塘垸,木塘垸乡 29.01573 111.54951 P PPLA4 CN 11 0 36 Asia/Shanghai 2012-01-19
-1928187 Huangjiapu Huangjiapu Huangjiapu,Huangjiapu Xiang,huang jia pu,huang jia pu xiang,黄甲铺,黄甲铺乡 29.11326 111.28757 P PPLA4 CN 11 0 55 Asia/Shanghai 2012-01-19
-1928193 Guanxi Guanxi Guanxi,Guanxi Zhen,Guanxisi,guan xi,guan xi si,guan xi zhen,灌溪,灌溪寺,灌溪镇 29.11215 111.61647 P PPLA4 CN 11 0 44 Asia/Shanghai 2012-01-19
-1928195 Caijiagang Caijiagang Caijiagang,Caijiagang Zhen,Yancun'an,Yancun’an,cai jia gang,cai jia gang zhen,yan cun an,延存庵,蔡家岗,蔡家岗镇 29.18883 111.61821 P PPLA4 CN 11 0 55 Asia/Shanghai 2012-01-19
-1928202 Baiheshan Baiheshan Baiheshan,Baiheshan Xiang,Wanjin,Wanjinzhang,bai he shan,bai he shan xiang,wan jin zhang,万金障,白鹤山,白鹤山乡 29.11278 111.80889 P PPLA4 CN 11 0 29 Asia/Chongqing 2012-01-19
-1928211 Fangshiping Fangshiping Fangshiping,Fangshiping Zhen,fang shi ping,fang shi ping zhen,方石坪,方石坪镇 29.80104 111.43765 P PPLA4 CN 11 0 96 Asia/Shanghai 2012-01-19
-1928212 Fuzhiping Fuzhiping Fuzhi Xiang,Fuzhiping,fu zhi ping,fu zhi xiang,抚志乡,抚志坪 28.89556 109.92333 P PPLA4 CN 11 0 426 Asia/Chongqing 2012-01-19
-1928316 Canmang Canmang Canmang,Canmang Xiang,Canmangping,can mang,can mang ping,can mang xiang,蚕忙,蚕忙乡,蚕忙坪 28.91925 110.89199 P PPLA4 CN 11 0 199 Asia/Chongqing 2012-01-19
-1928317 Nanmu Nanmu Nanmu,Nanmu Xiang,nan mu,nan mu xiang,南木,南木乡 28.8809 110.90962 P PPLA4 CN 11 0 267 Asia/Chongqing 2012-01-19
-1928352 Siduping Siduping Siduping,Siduping Xiang,si dou ping,si dou ping xiang,四都坪,四都坪乡 28.9305 110.4301 P PPLA4 CN 11 0 405 Asia/Chongqing 2012-01-19
-1928358 Shiziqiao Shiziqiao Shiziqiao,Yangfeng Xiang,shi zi qiao,yang feng,yang feng xiang,yangfeng,狮子桥,羊峰,羊峰乡 28.97958 110.06856 P PPLA4 CN 11 0 518 Asia/Chongqing 2012-01-19
-1928359 Huilongan Huilongan Huilong,Huilong Xiang,Huilongan,hui long,hui long an,hui long xiang,回龙,回龙乡,回龙庵 28.8893 110.18219 P PPLA4 CN 11 0 359 Asia/Chongqing 2012-01-19
-1928393 Baisha Baisha Baisha,bai sha,白沙 28.20556 110.2 P PPLA3 CN 11 0 105 Asia/Chongqing 2012-01-19
-1928450 Guanyinsi Guanyinsi Guanyinsi,Guanyinsi Zhen,guan yin si,guan yin si zhen,观音寺,观音寺镇 28.91617 111.08545 P PPLA4 CN 11 0 82 Asia/Chongqing 2012-01-19
-1928454 Qinglin Qinglin Maocaojie,Qinglin,Qinglin Huizu Weiwu'erzuxiang,Qinglin Huizu Weiwu’erzuxiang,mao cao jie,qing lin,qing lin hui zu wei wu er zu xiang,茅草街,青林,青林回族维吾尔族乡 28.95426 111.4689 P PPLA4 CN 11 0 47 Asia/Shanghai 2012-01-19
-1928456 Shenshuigang Shenshuigang Shenshuigang,Shenshuigang Xiang,Tongmugang,shen shui gang,shen shui gang xiang,tong mu gang,桐木港,深水港,深水港乡 28.9159 111.39791 P PPLA4 CN 11 0 47 Asia/Shanghai 2012-01-19
-1928458 Xujiaqiao Xujiaqiao Majiaxiang,Xujiaqiao,Xujiaqiao Huizu Weiwu'erzuxiang,Xujiaqiao Huizu Weiwu’erzuxiang,ma jia xiang,xu jia qiao,xu jia qiao hui zu wei wu er zu xiang,许家桥,许家桥回族维吾尔族乡,麻家巷 28.91365 111.58476 P PPLA4 CN 11 0 63 Asia/Shanghai 2012-01-19
-1928510 Xinxing Xinxing Xinxing,Xinxing Xiang,Zhoujiawan,xin xing,xin xing xiang,zhou jia wan,周家湾,新兴,新兴乡 28.95722 111.82332 P PPLA4 CN 11 0 34 Asia/Shanghai 2012-01-19
-1928516 Weidihu Weidihu Cangerzong,Weidihu,Weidihu Xiang,cang r zong,wei di hu,wei di hu xiang,仓儿总,围堤湖,围堤湖乡 28.97635 111.96215 P PPLA4 CN 11 0 32 Asia/Shanghai 2012-01-19
-1928621 Maidiping Maidiping Maidiping,Maidiping Baizuxiang,mai de ping,mai de ping bai zu xiang,麦地坪,麦地坪白族乡 29.49155 110.35859 P PPLA4 CN 11 0 466 Asia/Chongqing 2012-01-19
-1928622 Wuyahe Wuyahe Wuya Xiang,Wuyahe,wu ya he,wu ya xiang,乌鸦乡,乌鸦河 29.57652 109.71242 P PPLA4 CN 11 0 910 Asia/Chongqing 2012-01-19
-1928623 Zanguoping Zanguoping Zanguo Xiang,Zanguoping,zan guo ping,zan guo xiang,咱果乡,咱果坪 29.02623 109.34877 P PPLA4 CN 11 0 359 Asia/Chongqing 2012-01-19
-1928708 Dashuitian Dashuitian Dashuitian,Dashuitian Xiang,da shui tian,da shui tian xiang,大水田,大水田乡 27.41306 110.81528 P PPLA4 CN 11 0 518 Asia/Chongqing 2012-02-28
-1928780 Huxingshan Huxingshan Huxingshan,Huxingshan Yaozuxiang,hu xing shan,hu xing shan yao zu xiang,虎形山,虎形山瑶族乡 27.54889 110.69667 P PPLA4 CN 11 0 1361 Asia/Chongqing 2012-02-28
-1928889 Nanyuemiao Nanyuemiao Nanyuemiao,Nanyuemiao Xiang,nan yue miao,nan yue miao xiang,南岳庙,南岳庙乡 27.12733 110.85193 P PPLA4 CN 11 0 281 Asia/Shanghai 2012-02-28
-1928932 Sangesi Sangesi Sangesi,Sangesi Xiang,san ge si,san ge si xiang,三阁司,三阁司乡 27.06694 110.95444 P PPLA4 CN 11 0 254 Asia/Chongqing 2012-02-28
-1929434 Bojia Bojia 26.46722 111.96806 P PPL CN 11 25000 89 Asia/Chongqing 2011-03-16
-1929499 Qidi Qidi Chongtou,Qidi,Qidi Xiang,chong tou,qi de,qi de xiang,七地,七地乡,冲头 26.95592 113.66137 P PPLA4 CN 11 0 174 Asia/Shanghai 2012-02-28
-1929576 Lingfang Lingfang Dizhou'ao,Dizhou’ao,Lingfang,Lingfang Xiang,di zhou ao,ling fang,ling fang xiang,堤州坳,舲舫,舲舫乡 26.72573 113.61415 P PPLA4 CN 11 0 131 Asia/Shanghai 2012-02-28
-1929746 Huanxi Huanxi Huanxi,Huanxi Zhen,Huanxixu,huan xi,huan xi wei,huan xi zhen,浣溪,浣溪圩,浣溪镇 26.56378 113.60096 P PPLA4 CN 11 0 137 Asia/Shanghai 2012-02-28
-1929757 Huju Huju Huju,Huju Shan,Huju Zhen,hu ju,hu ju shan,hu ju zhen,虎踞,虎踞山,虎踞镇 26.91639 113.39 P PPLA4 CN 11 0 96 Asia/Chongqing 2012-02-28
-1929780 Jiangkou Jiangkou Jiangkou,Jiangkou Xiang,jiang kou,jiang kou xiang,江口,江口乡 26.65722 113.79717 P PPLA4 CN 11 0 216 Asia/Shanghai 2012-02-28
-1929865 Yatian Yatian Lijiawuchang,Yatian,Yatian Zhen,li jia wu chang,ya tian,ya tian zhen,鸭田,鸭田镇,黎家屋场 27.59194 111.01444 P PPLA4 CN 11 0 470 Asia/Chongqing 2012-02-28
-1929987 Beishan Beishan Beishan,Beishan Xiang,Niejiating,bei shan,bei shan xiang,nie jia ting,北山,北山乡,聂家亭 27.08225 111.08811 P PPLA4 CN 11 0 285 Asia/Shanghai 2012-02-28
-1930001 Zhitang Zhitang Pengjiaci,Zhitang,Zhitang Xiang,peng jia ci,zhi tang,zhi tang xiang,彭家祠,秩堂,秩堂乡 26.9433 113.85997 P PPLA4 CN 11 0 192 Asia/Shanghai 2012-02-28
-1930141 Shimen Shimen Choushuhuan,Shimen,Shimenxiang,chou shu yuan,shi men,shi men xiang,椆树垸,石门,石门乡 27.22694 111.03 P PPLA4 CN 11 0 344 Asia/Chongqing 2012-02-28
-1930342 Xiaotian Xiaotian Chepili,Xiaotian,Xiaotian Xiang,che pi li,xiao tian,xiao tian xiang,小田,小田乡,车皮里 26.85587 113.8374 P PPLA4 CN 11 0 478 Asia/Shanghai 2012-02-28
-1930396 Batuan Batuan Batuan,Batuan Xiang,Yangjiawu,ba tuan,ba tuan xiang,yang jia wu,八团,八团乡,杨家屋 27.03778 113.72167 P PPLA4 CN 11 0 312 Asia/Chongqing 2012-02-28
-1930423 Yaoshui Yaoshui Yaoshi,Yaoshui,Yaoshui Xiang,yao shi,yao shui,yao shui xiang,尧市,尧水,尧水乡 26.82554 113.68497 P PPLA4 CN 11 0 142 Asia/Shanghai 2012-02-28
-1930467 Yushanpu Yushanpu Yushanpu,Yushanpu Zhen,yu shan pu,yu shan pu zhen,雨山铺,雨山铺镇 27.15056 111.11306 P PPLA4 CN 11 0 279 Asia/Chongqing 2012-02-28
-1936379 Sidu Sidu Sidu,Sidu Zhen,si dou,si dou zhen,四都,四都镇 24.21639 115.265 P PPLA4 CN 30 0 164 Asia/Shanghai 2012-01-20
-1936413 Wushi Wushi Wushi,Wushi Zhen,wu shi,wu shi zhen,乌石,乌石镇 23.63305 115.19271 P PPLA4 CN 30 0 153 Asia/Shanghai 2012-01-20
-1936425 Shuikou Shuikou Shuikou,Shuikou Zhen,shui kou,水口 23.15412 114.52139 P PPLA4 CN 30 0 22 Asia/Chongqing 2012-01-20
-1936427 Songkeng Songkeng Songkeng,song keng,松坑 23.18251 114.91375 P PPLA4 CN 30 0 203 Asia/Chongqing 2012-01-20
-1936431 Mabei Mabei Mabei,Mabei Zhen,ma bei,麻陂 23.4915 114.52826 P PPLA4 CN 30 0 30 Asia/Chongqing 2012-01-20
-1936433 Zengguang Zengguang Zengguang,zeng guang,增光 23.01802 114.87215 P PPLA4 CN 30 0 32 Asia/Chongqing 2012-01-20
-1936444 Daba Daba Daba,Ta-pa-hsu,Ta-pa-hsü,da ba,大坝 23.36984 116.17721 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-20
-1940868 Tiandian Tiandian T'ien-tien,Tiandian,Tiandian Zhen,T’ien-tien,tian dian,tian dian zhen,田店,田店镇 31.02945 113.44841 P PPLA4 CN 12 0 42 Asia/Chongqing 2012-01-20
-1940872 Hujindian Hujindian Hu-chin-tien,Hujindian,Hujindian Zhen,hu jin dian,hu jin dian zhen,胡金店,胡金店镇 31.07222 113.65812 P PPLA4 CN 12 0 34 Asia/Chongqing 2012-01-20
-1940883 Muzi Muzi Mu-tzu-shu,Muzi,Muzi Xiang,mu zi,mu zi xiang,木梓,木梓乡 31.22944 113.54694 P PPLA4 CN 12 0 64 Asia/Chongqing 2012-01-20
-1940889 Jidian Jidian Chi-chia-tien,Jidian,Jidian Xiang,ji dian,ji dian xiang,季店,季店乡 31.28732 113.90303 P PPLA4 CN 12 0 52 Asia/Shanghai 2012-01-20
-1940895 Wangyizhendian Wangyizhendian Wang-i-chen-tien,Wangyizhendian,Wangyizhendian Zhen,wang yi zhen dian,wang yi zhen dian zhen,王义贞店,王义贞店镇 31.33055 113.37964 P PPLA4 CN 12 0 96 Asia/Chongqing 2012-01-20
-1940915 Jieguan Jieguan Chieh-kuan-t'ing,Chieh-kuan-t’ing,Jieguan,Jieguan Xiang,jie guan,jie guan xiang,接官,接官乡 31.43477 113.7543 P PPLA4 CN 12 0 75 Asia/Chongqing 2012-01-20
-1940924 Lidian Lidian Li-tien,Lidian,Lidian Xiang,li dian,li dian xiang,李店,李店乡 31.5168 113.95006 P PPLA4 CN 12 0 75 Asia/Shanghai 2012-01-20
-1940926 Baolin Baolin Baolin,Baolin Xiang,Pao-lin-ssu,bao lin,bao lin xiang,宝林,宝林乡 31.67382 113.87032 P PPLA4 CN 12 0 103 Asia/Shanghai 2012-01-20
-1940928 Shili Shili Shih-li-ho-shih,Shili,Shili Jiedao,shi li,shi li jie dao,十里,十里街道 31.61416 113.88013 P PPLA4 CN 12 0 71 Asia/Shanghai 2012-01-20
-1940930 Guanmiao Guanmiao Guanmiao,Guanmiao Zhen,Kuan-ti-miao,guan miao,guan miao zhen,关庙,关庙镇 31.70507 113.70487 P PPLA4 CN 12 0 88 Asia/Chongqing 2012-01-20
-1940937 Yudian Yudian Yu-chia-tien,Yudian,Yudian Zhen,Yü-chia-tien,yu dian,yu dian zhen,余店,余店镇 31.78364 113.6347 P PPLA4 CN 12 0 102 Asia/Chongqing 2012-01-20
-1940981 Zhichanghe Zhichanghe Chih-ch'ang-ho,Chih-ch’ang-ho,Zhichanghe,Zhichanghe Zhen,zhi chang he,zhi chang he zhen,纸厂河,纸厂河镇 30.02806 111.84472 P PPLA4 CN 12 0 39 Asia/Chongqing 2012-01-20
-1940989 Zishi Zishi Tzu-tu-ssu,Zishi,Zishi Zhen,zi shi,zi shi zhen,资市,资市镇 30.18248 112.40878 P PPLA4 CN 12 0 32 Asia/Chongqing 2012-01-20
-1940997 Libu Libu Li-chia-pu,Libu,Libu Zhen,li bu,li bu zhen,李埠,李埠镇 30.32223 112.06667 P PPLA4 CN 12 0 33 Asia/Chongqing 2012-01-20
-1941002 Moshi Moshi Mo-shih,Moshi,Moshi Zhen,mo shi,mo shi zhen,磨市,磨市镇 30.41487 111.23866 P PPLA4 CN 12 0 196 Asia/Chongqing 2012-01-20
-1941077 Luotaping Luotaping Luotaping,Luotaping Xiang,luo ta ping,luo ta ping xiang,罗塔坪,罗塔坪乡 29.18713 110.12515 P PPLA4 CN 11 0 356 Asia/Chongqing 2012-01-20
-1941078 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Zhen,gao qiao,gao qiao zhen,高桥,高桥镇 29.17454 110.98734 P PPLA4 CN 11 0 244 Asia/Chongqing 2012-01-20
-1941079 Luoshui Luoshui Luoshui,Luoshui Xiang,luo shui,luo shui xiang,罗水,罗水乡 29.26829 110.25366 P PPLA4 CN 11 0 332 Asia/Chongqing 2012-01-20
-1941080 Maoba Maoba Maoba,Maoba Xiang,mao ba,mao ba xiang,毛坝,毛坝乡 29.27201 109.88738 P PPLA4 CN 11 0 503 Asia/Chongqing 2012-01-20
-1941081 Liangchahe Liangchahe Liangcha Xiang,Liangchahe,liang cha he,liang cha xiang,两岔乡,两岔河 29.17574 109.7184 P PPLA4 CN 11 0 407 Asia/Chongqing 2012-01-20
-1941082 Guanba Guanba Guanba,Guanba Xiang,guan ba,guan ba xiang,官坝,官坝乡 29.29542 109.96572 P PPLA4 CN 11 0 387 Asia/Chongqing 2012-01-20
-1941083 Taozixi Taozixi Taozixi,Taozixi Xiang,tao zi xi,tao zi xi xiang,桃子溪,桃子溪乡 29.30833 110.05444 P PPLA4 CN 11 0 429 Asia/Chongqing 2012-01-20
-1941086 Lianghekou Lianghekou Lianghekou,Lianghekou Xiang,liang he kou,liang he kou xiang,两河口,两河口乡 29.45222 110.02583 P PPLA4 CN 11 0 331 Asia/Chongqing 2012-01-20
-1941088 Xinglongjie Xinglongjie Xinglongjie,Xinglongjie Xiang,xing long jie,xing long jie xiang,兴隆街,兴隆街乡 29.45498 109.53017 P PPLA4 CN 11 0 537 Asia/Chongqing 2012-01-20
-1941091 Sanhekou Sanhekou Sanhekou,Sanhekou Xiang,san he kou,san he kou xiang,三合口,三合口乡 29.62674 110.82416 P PPLA4 CN 11 0 706 Asia/Chongqing 2012-01-20
-1941094 Zhujiatai Zhujiatai Tielu,Tielu Xiang,Zhujiatai,tie lu,tie lu xiang,zhu jia tai,朱家台,铁炉,铁炉乡 29.74002 110.50272 P PPLA4 CN 12 0 249 Asia/Chongqing 2012-01-20
-1941099 Yongmao Yongmao Yongmao,Yongmao Zhen,yong mao,yong mao zhen,永茂,永茂镇 29.01488 110.27533 P PPLA4 CN 11 0 321 Asia/Chongqing 2012-01-20
-1941100 Macha Macha Macha,Macha Xiang,ma cha,ma cha xiang,麻岔,麻岔乡 29.04264 110.04669 P PPLA4 CN 11 0 501 Asia/Chongqing 2012-01-20
-1941101 Tasha Tasha Tasha,Tasha Xiang,ta sha,ta sha xiang,他砂,他砂乡 29.05806 109.56697 P PPLA4 CN 11 0 574 Asia/Chongqing 2012-01-20
-1941102 Xinzhaiping Xinzhaiping Xinzhai Xiang,Xinzhaiping,xin zhai ping,xin zhai xiang,新寨乡,新寨坪 29.1343 109.8918 P PPLA4 CN 11 0 430 Asia/Chongqing 2012-01-20
-1941103 Sanjiaguan Sanjiaguan Sanjiaguan,Sanjiaguan Xiang,san jia guan,san jia guan xiang,三家馆,三家馆乡 29.16305 110.2897 P PPLA4 CN 11 0 503 Asia/Chongqing 2012-01-20
-1941105 Jianxin Jianxin Jianxin,Yanghuping,Yanghuping Zhen,jian xin,yang hu ping,yang hu ping zhen,建新,阳湖坪,阳湖坪镇 29.14513 110.5509 P PPLA4 CN 11 0 205 Asia/Chongqing 2012-01-20
-1941108 Matizhai Matizhai Matizhai,Nongche Xiang,ma ti zhai,nong che xiang,农车乡,马蹄寨 29.17291 109.62869 P PPLA4 CN 11 0 593 Asia/Chongqing 2012-01-20
-1941109 Shanmu Shanmu Shanmu,Shanmu Xiang,shan mu,shan mu xiang,杉木,杉木乡 29.26674 109.84606 P PPLA4 CN 11 0 469 Asia/Chongqing 2012-01-20
-1941110 Zhonghuping Zhonghuping Zhonghu,Zhonghu Xiang,Zhonghuping,zhong hu,zhong hu ping,zhong hu xiang,中湖,中湖乡,中湖坪 29.36406 110.38257 P PPLA4 CN 11 0 505 Asia/Chongqing 2012-01-20
-1941111 Ruchihe Ruchihe Ruchihe,Tani Xiang,ru chi he,ta ni xiang,塔泥乡,汝池河 29.29638 109.71399 P PPLA4 CN 11 0 555 Asia/Chongqing 2012-01-20
-1941112 Bishagou Bishagou Bishagou,Xihu Xiang,bi sha gou,xi hu xiang,比沙沟,西湖乡 29.34264 109.59139 P PPLA4 CN 11 0 448 Asia/Chongqing 2012-01-20
-1941113 Shuishaping Shuishaping Shuishaping,Shuishaping Xiang,shui sha ping,shui sha ping xiang,水沙坪,水沙坪乡 29.37779 109.55505 P PPLA4 CN 11 0 658 Asia/Chongqing 2012-01-20
-1941115 Tongche Tongche Tongche,Tongche Xiang,tong che,tong che xiang,桶车,桶车乡 29.50605 109.56718 P PPLA4 CN 11 0 636 Asia/Chongqing 2012-01-20
-1941116 Tianzishan Tianzishan Tianzishan,Tianzishan Zhen,tian zi shan,tian zi shan zhen,天子山,天子山镇 29.40972 110.43643 P PPLA4 CN 11 0 684 Asia/Chongqing 2012-01-20
-1941117 Zhaojiagang Zhaojiagang Zhaojiagang,Zhaojiagang Tujiazu Xiang,zhao jia gang,zhao jia gang tu jia zu xiang,赵家岗,赵家岗土家族乡 29.49622 110.67698 P PPLA4 CN 11 0 167 Asia/Chongqing 2012-01-20
-1941119 Furongqiao Furongqiao Furongqiao,Furongqiao Baizuxiang,fu rong qiao,fu rong qiao bai zu xiang,芙容桥,芙容桥白族乡 29.51435 110.30001 P PPLA4 CN 11 0 416 Asia/Chongqing 2012-01-20
-1941121 Jianjiapo Jianjiapo Jianjiapo,Jianjiapo Xiang,jian jia po,jian jia po xiang,蹇家坡,蹇家坡乡 29.55271 109.95569 P PPLA4 CN 11 0 726 Asia/Chongqing 2012-01-20
-1941133 Nanzhen Nanzhen Nanbei,Nanbei Zhen,Nanzhen,nan bei,nan bei zhen,nan zhen,南北,南北镇,南镇 29.87188 110.54848 P PPLA4 CN 12 0 995 Asia/Chongqing 2012-01-20
-1941534 Dengying Dengying Dengying,Dengyingcun 36.13889 120.57417 P PPL CN CN 25 4140 11 Asia/Shanghai 2012-01-20
-1941535 Kutao Kutao Kutao,Kutaocun 36.145 120.48778 P PPL CN CN 25 2770 43 Asia/Shanghai 2012-01-20
-1941563 Beizhai Beizhai Beizhai,Beizhaike 36.21972 120.52889 P PPL CN CN 25 1850 89 Asia/Shanghai 2012-01-20
-1941584 Qingshan Qingshan Cinshan',Qingshan,Qingshancun,Циншань 36.15472 120.68333 P PPL CN CN 25 2233 46 Asia/Shanghai 2012-01-20
-1941693 Xinzhuang Xinzhuang Hou-hsin-chuang,Xinzhuang 39.02028 117.32389 P PPL CN CN 28 5191 2 Asia/Shanghai 2012-01-20
-1941694 Weiwangzhuang Weiwangzhuang Weiwangzhuang,Yin-chuang-tzu 39.025 117.44083 P PPL CN CN 28 2214 2 Asia/Shanghai 2012-01-20
-1941718 Goutou Goutou Goutou,Kou-t'ou,Kou-t’ou 39.805 117.19917 P PPL CN CN 28 4702 10 Asia/Harbin 2012-01-20
-1941768 Meipu Meipu 26.21194 118.89667 P PPL CN 07 1930 66 Asia/Shanghai 2001-01-05
-1941783 Rong’an Rong'an Jung-an,Rong'an,Rong’an 26.12472 119.12139 P PPL CN 07 5510 15 Asia/Shanghai 2012-01-20
-1941784 Shangjie Shangjie Shang-chieh,Shangjie 26.08639 119.18472 P PPL CN CN 07 7280 7 Asia/Shanghai 2012-01-20
-1941816 Kuai’an Kuai'an 26.03417 119.41639 P PPL CN 07 3000 45 Asia/Shanghai 2001-01-05
-1941817 Chengmen Chengmen 26.00583 119.34917 P PPL CN CN 07 4280 15 Asia/Shanghai 2001-01-05
-1941818 Hongtang Hongtang Hongtang,Hung-t'ang,Hung-t’ang 26.07056 119.23083 P PPL CN CN 07 1060 15 Asia/Shanghai 2012-01-20
-1941819 Huai’an Huai'an 26.10139 119.2225 P PPL CN 07 1350 16 Asia/Shanghai 2001-01-05
-1941830 Donghu Donghu Donghu,Tung-hu 26.23306 119.51361 P PPL CN CN 07 3360 43 Asia/Shanghai 2012-01-20
-1941833 Houyu Houyu Hou-hsu,Hou-hsü,Houyu 26.06139 119.53583 P PPL CN CN 07 5180 14 Asia/Shanghai 2012-01-20
-1941847 Jitou Jitou 26.46917 119.61583 P PPL CN 07 1700 25 Asia/Shanghai 2001-01-05
-1941848 Beishan Beishan Beishan,Pei-shan 26.43472 119.63611 P PPL CN CN 07 3720 11 Asia/Shanghai 2012-01-20
-1941861 Huangtian Huangtian Huangtian,Huangtian Zhen,huang tian,huang tian zhen,黄田,黄田镇 26.43851 118.62398 P PPLA4 CN 07 2820 124 Asia/Shanghai 2012-01-20
-1941924 Dingtou Dingtou Dingtou,T'eng-t'ou,T’eng-t’ou 26.84583 119.66056 P PPL CN CN 07 2430 35 Asia/Shanghai 2012-01-20
-1942261 Daxi Daxi Daxi,Daxi Zhen,da xi,da xi zhen,大溪,大溪镇 29.09404 109.14797 P PPLA4 CN 33 0 391 Asia/Chongqing 2012-01-20
-1950020 Ouyang Ouyang Hsin-hua-so,Ouyang 26.42528 109.22944 P PPL CN CN 18 1164 399 Asia/Chongqing 2012-01-20
-1950548 Dengyuantai Dengyuantai 26.68806 110.54222 P PPL CN 11 2190 356 Asia/Chongqing 2004-05-21
-1980603 Shenqiao Shenqiao Shenqiao,shen qiao,深桥 23.73002 117.1405 P PPLA4 CN 07 0 20 Asia/Shanghai 2012-01-20
-1983170 Yanggu’ao Yanggu'ao Yanggu'ao,Yanggu’ao,Yangu'ao Xiang,Yangu’ao Xiang,yang gu ao,yang gu ao xiang,羊古坳,羊古坳乡 27.48667 110.94389 P PPLA4 CN 11 0 383 Asia/Chongqing 2012-02-29
-1983190 Hetian Hetian Hetian,Hetian Xiang,Qinglongqiao,he tian,he tian xiang,qing long qiao,荷田,荷田乡,青龙桥 27.34694 110.97167 P PPLA4 CN 11 0 403 Asia/Chongqing 2012-02-29
-1983204 Matangshan Matangshan Matangshan,Matangshan Xiang,Xingwuchang,ma tang shan,ma tang shan xiang,xing wu chang,兴屋场,麻塘山,麻塘山乡 27.38806 110.69278 P PPLA4 CN 11 0 1217 Asia/Chongqing 2012-02-29
-1983231 Xiyangjiang Xiyangjiang Xinchao,Xiyangjiang,Xiyangjiang Zhen,xi yang jiang,xi yang jiang zhen,xin chao,新潮,西洋江,西洋江镇 27.19028 110.82889 P PPLA4 CN 11 0 308 Asia/Chongqing 2012-02-29
-1983329 Qijiang Qijiang Qijiang,Qijiang Xiang,Shibei,qi jiang,qi jiang xiang,shi bei,七江,七江乡,石背 27.44944 110.97306 P PPLA4 CN 11 0 360 Asia/Chongqing 2012-02-29
-1987164 Shanjie Shanjie Hujia,Shanjia,Shanjie,Shanjie Huizuxiang,hu jia,shan jie,shan jie hui zu xiang,山界,山界回族乡,胡家 27.0775 111.01944 P PPLA4 CN 11 0 267 Asia/Chongqing 2012-02-29
-1996859 Jiangdong Jiangdong Jiangdong,Jiangdong Zhen,jiang dong,江东 23.58746 116.65145 P PPLA4 CN 30 0 15 Asia/Shanghai 2012-01-20
-1998143 Xinan Xinan Xinan,Xinan Zhen,xi nan,溪南 23.55053 116.81067 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-20
-1998290 Wutun Wutun Wutun,Wutun Zhen,wu tun,武屯 34.63768 109.29512 P PPLA4 CN 26 0 373 Asia/Chongqing 2012-01-20
-1998291 Beitun Beitun Beitun,bei tun,北屯 34.6177 109.23121 P PPLA4 CN 26 0 378 Asia/Chongqing 2012-01-20
-1998292 Xinxing Xinxing Xinxing,xin xing,新兴 34.66688 109.27436 P PPLA4 CN 26 0 384 Asia/Chongqing 2012-01-20
-1998293 Zhenxing Zhenxing Zhenxing,zhen xing,振兴 34.66853 109.19284 P PPLA4 CN 26 0 388 Asia/Chongqing 2012-01-20
-1998300 Renliu Renliu Renliu,ren liu,任留 34.49017 109.22737 P PPLA4 CN 26 0 361 Asia/Chongqing 2012-01-20
-1998305 Zhangbu Zhangbu Zhangbu,zhang bo,张卜 34.48358 109.11732 P PPLA4 CN 26 0 391 Asia/Chongqing 2012-01-20
-1998308 Xiaojin Xiaojin Xiaojin,xiao jin,小金 34.33951 109.41349 P PPLA4 CN 26 0 980 Asia/Chongqing 2012-01-20
-1998309 Muzhai Muzhai Muzhai,mu zhai,穆寨 34.36606 109.36771 P PPLA4 CN 26 0 792 Asia/Chongqing 2012-01-20
-1998310 Tuqiao Tuqiao Tuqiao,tu qiao,土桥 34.35166 109.31878 P PPLA4 CN 26 0 909 Asia/Chongqing 2012-01-20
-1998312 Xiquan Xiquan Xiquan,Xiquan Zhen,xi quan,西泉 34.40754 109.13858 P PPLA4 CN 26 0 371 Asia/Chongqing 2012-01-20
-1998313 Xinhe Xinhe Xinhe,xin he,新合 34.41904 109.09974 P PPLA4 CN 26 0 369 Asia/Chongqing 2012-01-20
-1998318 Yuchu Yuchu Yuchu,yu chu,榆楚 34.50272 109.05788 P PPLA4 CN 26 0 394 Asia/Chongqing 2012-01-20
-1998321 Dongda Dongda Dongda,Dongda Jieban,dong da,dong da jie ban,东大,东大街办 34.04407 108.76818 P PPLA4 CN 26 0 425 Asia/Chongqing 2012-01-20
-1998326 Xinglong Xinglong Xinglong,xing long,兴隆 34.12468 108.8168 P PPLA4 CN 26 0 419 Asia/Chongqing 2012-01-20
-1998335 Qujiang Qujiang Qujiang,Qujiang Jieban,qu jiang,qu jiang jie ban,曲江,曲江街办 34.19316 108.98825 P PPLA4 CN 26 0 488 Asia/Chongqing 2012-01-20
-1998336 Dengjiapo Dengjiapo Dengjiapo,Dengjiapo Jieban,deng jia po,等驾坡 34.22723 109.02513 P PPLA4 CN 26 0 455 Asia/Chongqing 2012-01-20
-1998337 Daminggong Daminggong Daminggong,Daminggong Jieban,da ming gong,da ming gong jie ban,大明宫,大明宫街办 34.30455 108.96329 P PPLA4 CN 26 0 398 Asia/Chongqing 2012-01-20
-1998338 Hancheng Hancheng Hancheng,Hancheng Jieban,han cheng,han cheng jie ban,汉成,汉成街办 34.335 108.90778 P PPLA4 CN 26 0 377 Asia/Chongqing 2012-01-20
-1998339 Tanjia Tanjia Tanjia,Tanjia Jieban,tan jia,tan jia jie ban,谭家,谭家街办 34.33222 108.96778 P PPLA4 CN 26 0 391 Asia/Chongqing 2012-01-20
-1998356 Baoli Baoli Baoli,pao li,炮里 34.17095 109.13651 P PPLA4 CN 26 0 682 Asia/Chongqing 2012-01-20
-1998357 Huaxu Huaxu Huaxu,Huaxu Zhen,hua xu,华胥 34.22495 109.18229 P PPLA4 CN 26 0 452 Asia/Chongqing 2012-01-20
-1998358 Shijiazhai Shijiazhai Shijiazhai,shi jia zhai,史家寨 34.07805 109.14932 P PPLA4 CN 26 0 553 Asia/Chongqing 2012-01-20
-1998359 Yangzhuang Yangzhuang Yangzhuang,yang zhuang,杨庄 34.04125 109.14033 P PPLA4 CN 26 0 627 Asia/Chongqing 2012-01-20
-1998361 Wangmang Wangmang Wangmang,wang mang,王莽 34.05786 109.05552 P PPLA4 CN 26 0 535 Asia/Chongqing 2012-01-20
-1998363 Wutai Wutai Wutai,wu tai,五台 34.03401 108.97121 P PPLA4 CN 26 0 582 Asia/Chongqing 2012-01-20
-1998374 Gaoqiao Gaoqiao Gaoqiao,gao qiao,高桥 34.24333 108.70556 P PPLA4 CN 26 0 388 Asia/Chongqing 2012-01-20
-1998376 Weifeng Weifeng Weifeng,Weifeng Zhen,wei feng,wei feng zhen,渭丰,渭丰镇 34.19508 108.61343 P PPLA4 CN 26 0 399 Asia/Chongqing 2012-01-20
-1998377 Cangyou Cangyou Cangyou,Cangyou Zhen,cang you,cang you zhen,苍游,苍游镇 34.16324 108.65444 P PPLA4 CN 26 0 400 Asia/Chongqing 2012-01-20
-1998381 Tianqiao Tianqiao Tianqiao,tian qiao,天桥 34.05194 108.5625 P PPLA4 CN 26 0 457 Asia/Chongqing 2012-01-20
-1998383 Jiufeng Jiufeng Jiufeng,jiu feng,九峰 34.10149 108.42703 P PPLA4 CN 26 0 438 Asia/Chongqing 2012-01-20
-1998386 Wuzhu Wuzhu Wuzhu,wu zhu,五竹 34.11302 108.658 P PPLA4 CN 26 0 409 Asia/Chongqing 2012-01-20
-1998388 Shijing Shijing Shijing,Sijing Zhen,shi jing,shi jing zhen,石井,石井镇 34.02833 108.58861 P PPLA4 CN 26 0 510 Asia/Chongqing 2012-01-20
-1998393 Houjia Houjia Houjia,Houjiacun,hou jia,侯家 34.16514 108.18082 P PPLA4 CN 26 0 427 Asia/Chongqing 2012-01-20
-1998417 Xinyang Xinyang Xinyang,xin yang,新阳 34.48294 108.14052 P PPLA4 CN 26 0 608 Asia/Chongqing 2012-01-20
-1998418 Moxi Moxi Moxi,mo xi,漠西 34.515 108.18889 P PPLA4 CN 26 0 645 Asia/Chongqing 2012-01-20
-1998434 Fengyang Fengyang Fengyang,Fengyang Zhen,feng yang,feng yang zhen,峰阳,峰阳镇 34.68314 108.27722 P PPLA4 CN 26 0 955 Asia/Chongqing 2012-01-20
-1998473 Zhuganzhen Zhuganzhen Zhugan Zhen,Zhuganzhen,zhu gan,zhu gan zhen,注泔,注泔镇 34.62417 108.30861 P PPLA4 CN 26 0 859 Asia/Chongqing 2012-01-20
-1998509 Liangshan Liangshan Liangshan,Liangshan Zhen,liang shan,liang shan zhen,梁山,梁山镇 34.62085 108.19271 P PPLA4 CN 26 0 866 Asia/Chongqing 2012-01-20
-1998538 Dayang Dayang Dayang,da yang,大杨 34.47361 108.31722 P PPLA4 CN 26 0 584 Asia/Chongqing 2012-01-20
-1998565 Shiniu Shiniu Shiniu,shi niu,石牛 34.50758 108.07272 P PPLA4 CN 26 0 787 Asia/Chongqing 2012-01-20
-1998706 Yanxia Yanxia Yanxia,Yanxiazhen,yan xia,yan xia zhen,烟霞,烟霞镇 34.57556 108.54306 P PPLA4 CN 26 0 493 Asia/Chongqing 2012-01-20
-1998727 Jianling Jianling Jianling,Jianlingzhen,jian ling,jian ling zhen,建陵,建陵镇 34.63972 108.415 P PPLA4 CN 26 0 898 Asia/Chongqing 2012-01-20
-1998750 Zhaoling Zhaoling Zhaoling,zhao ling,昭陵 34.56306 108.4475 P PPLA4 CN 26 0 573 Asia/Chongqing 2012-01-20
-1998768 Xinshi Xinshi 34.43972 108.42222 P PPLA4 CN 26 0 538 Asia/Chongqing 2009-08-04
-1999104 Sangzhen Sangzhen Sangzhen,sang zhen,桑镇 34.25611 108.34611 P PPLA4 CN 26 0 424 Asia/Chongqing 2012-01-20
-1999164 Fengyi Fengyi Fengyi,feng yi,丰仪 34.24917 108.41139 P PPLA4 CN 26 0 416 Asia/Chongqing 2012-01-20
-1999297 Tianfu Tianfu Tianfu,tian fu,田阜 34.26444 108.59417 P PPLA4 CN 26 0 399 Asia/Chongqing 2012-01-20
-1999301 Fuzhai Fuzhai Fuzhai,fu zhai,阜寨 34.25389 108.52222 P PPLA4 CN 26 0 408 Asia/Chongqing 2012-01-20
-1999581 Baiwang Baiwang Baiwang,Baiwang Zhen,Baiwangzhen,bai wang,bai wang zhen,白王,白王镇 34.67333 108.64611 P PPLA4 CN 26 0 575 Asia/Chongqing 2012-01-20
-1999687 Zhongzhang Zhongzhang Zhongzhang,Zhongzhangzhen,zhong zhang,zhong zhang zhen,中张,中张镇 34.55445 108.76684 P PPLA4 CN 26 0 418 Asia/Chongqing 2012-01-20
-1999689 Taiping Taiping Taiping,Taiping Zhen,Taipingzhen,tai ping,tai ping zhen,太平,太平镇 34.50583 108.73611 P PPLA4 CN 26 0 473 Asia/Chongqing 2012-01-20
-1999718 Yanwang Yanwang Yanwang,yan wang,燕王 34.57167 108.80194 P PPLA4 CN 26 0 433 Asia/Chongqing 2012-01-20
-1999733 Longquan Longquan Longquan,long quan,龙泉 34.68472 108.86806 P PPLA4 CN 26 0 453 Asia/Chongqing 2012-01-20
-1999829 Chongwen Chongwen Chongwen,chong wen,崇文 34.4943 108.93317 P PPLA4 CN 26 0 382 Asia/Chongqing 2012-01-20
-1999938 Cuo’e Cuo'e Cuo'e,Cuo’e,cuo e,蹉峨 34.73917 108.87889 P PPLA4 CN 26 0 541 Asia/Chongqing 2012-01-20
-2000018 Xumu Xumu Xumu,xu mu,徐木 34.69414 109.1156 P PPLA4 CN 26 0 512 Asia/Chongqing 2012-01-20
-2000026 Beixi Beixi Beixi,Beixi Zhen,bei xi,陂西 34.62012 109.10894 P PPLA4 CN 26 0 389 Asia/Chongqing 2012-01-20
-2000546 Duma Duma Duma,du ma,渡马 34.76528 108.135 P PPLA4 CN 26 0 1094 Asia/Chongqing 2012-01-20
-2000568 Yujiagong Yujiagong Yujiagong,yu jia gong,御驾宫 34.72932 108.18775 P PPLA4 CN 26 0 987 Asia/Chongqing 2012-01-20
-2000597 Shangyi Shangyi Shangyi,shang yi,上邑 34.83477 108.26466 P PPLA4 CN 26 0 1092 Asia/Chongqing 2012-01-20
-2000700 Bojia Bojia Bojia,bo jia,卜家 34.92667 108.5125 P PPLA4 CN 26 0 1192 Asia/Chongqing 2012-01-20
-2000711 Tiewang Tiewang Tiewang,tie wang,铁王 34.91667 108.5725 P PPLA4 CN 26 0 1144 Asia/Chongqing 2012-01-20
-2000712 Qinhe Qinhe Qinhe,qin he,秦河 34.92028 108.59278 P PPLA4 CN 26 0 1126 Asia/Chongqing 2012-01-20
-2000820 Meijiaping Meijiaping Meijiaping,mei jia ping,梅家坪 34.86605 108.99294 P PPLA4 CN 26 0 595 Asia/Chongqing 2012-01-20
-2000863 Huazhu Huazhu Huazhu,hua zhu,华朱 34.78601 109.19565 P PPLA4 CN 26 0 474 Asia/Chongqing 2012-01-20
-2000872 Xiaohui Xiaohui Xiaohui,xiao hui,小惠 34.90926 109.27064 P PPLA4 CN 26 0 522 Asia/Chongqing 2012-01-20
-2000889 Gongli Gongli Gongli,Gongli Zhen,gong li,宫里 34.83114 109.14414 P PPLA4 CN 26 0 527 Asia/Chongqing 2012-01-20
-2000890 Qicun Qicun Qicun,qi cun,齐村 34.82271 109.10944 P PPLA4 CN 26 0 534 Asia/Chongqing 2012-01-20
-2000954 Laomiao Laomiao Laomiao,Laomiao Zhen,lao miao,老庙 34.99922 109.4128 P PPLA4 CN 26 0 570 Asia/Chongqing 2012-01-20
-2001001 Mizi Mizi Mizi,mi zi,觅子 34.81242 109.01541 P PPLA4 CN 26 0 560 Asia/Chongqing 2012-01-20
-2001045 Maquan Maquan Maquan,Maquanzhen,ma quan,ma quan zhen,马泉,马泉镇 34.32361 108.60361 P PPLA4 CN 26 0 422 Asia/Chongqing 2012-01-20
-2001056 Weibin Weibin Weibin,Weibinzhen,wei bin,wei bin zhen,渭滨,渭滨镇 34.31583 108.64583 P PPLA4 CN 26 0 386 Asia/Chongqing 2012-01-20
-2001062 Diaotai Diaotai Diaotai,Diaotaizhen,diao tai,diao tai zhen,汈台,汈台镇 34.28556 108.68639 P PPLA4 CN 26 0 392 Asia/Chongqing 2012-01-20
-2001071 Wujiabao Wujiabao Wujiabao,Wujiabao Jieban,wu jia bao,wu jia bao jie ban,吴家堡,吴家堡街办 34.34754 108.69926 P PPLA4 CN 26 0 399 Asia/Chongqing 2012-01-20
-2001077 Fengdong Fengdong Fengdong,Fengdong Zhen,Fengdongzhen,feng dong,feng dong zhen,沣东,沣东镇 34.32472 108.75833 P PPLA4 CN 26 0 382 Asia/Chongqing 2012-01-20
-2001088 Weicheng Weicheng Weicheng,Weicheng Zhen,wei cheng,wei cheng zhen,渭城,渭城镇 34.38417 108.77806 P PPLA4 CN 26 0 408 Asia/Chongqing 2012-01-20
-2001123 Zhengyang Zhengyang Zhengyang,Zhengyangzhen,zheng yang,zheng yang zhen,正阳,正阳镇 34.42361 108.92139 P PPLA4 CN 26 0 375 Asia/Chongqing 2012-01-20
-2001378 Weiyanggong Weiyanggong Weiyanggong,Weiyanggong Jieban,wei yang gong,wei yang gong jie ban,未央宫,未央宫街办 34.28936 108.91058 P PPLA4 CN 26 0 403 Asia/Chongqing 2012-01-20
-2001380 Yanta Yanta Yanta,Yanta Qu,yan ta,yan ta qu,雁塔,雁塔区 34.20636 108.9524 P PPLA3 CN 26 0 431 Asia/Chongqing 2012-01-20
-2001434 Zhangbagou Zhangbagou Zhangbagou,Zhangbagou Jieban,zhang ba gou,zhang ba gou jie ban,丈八沟,丈八沟街办 34.21291 108.88028 P PPLA4 CN 26 0 410 Asia/Chongqing 2012-01-20
-2001532 Youfeng Youfeng Youfeng,Youfeng Zhen,you feng,you feng zhen,游凤,游凤镇 34.39091 108.04378 P PPLA4 CN 26 0 510 Asia/Chongqing 2012-01-20
-2001540 Sufang Sufang Sufang,Sufangzhen,su fang,su fang zhen,苏坊,苏坊镇 34.39614 108.08462 P PPLA4 CN 26 0 556 Asia/Chongqing 2012-01-20
-2001585 Daijia Daijia Daijia,dai jia,戴家 34.33514 108.15043 P PPLA4 CN 26 0 527 Asia/Chongqing 2012-01-20
-2001694 Changning Changning Changning,Changningzhen,zhang ning,zhang ning zhen,长宁,长宁镇 34.30152 108.29125 P PPLA4 CN 26 0 447 Asia/Chongqing 2012-01-20
-2001711 Hedao Hedao Hedao,he dao,河道 34.33592 108.28297 P PPLA4 CN 26 0 548 Asia/Chongqing 2012-01-20
-2001738 Xingzhe Xingzhe Xingzhe,Xingzhe Jieban,xing zhe,行者 34.40523 109.19693 P PPLA4 CN 26 0 381 Asia/Chongqing 2012-01-20
-2001854 Hexi Hexi Hexi,he xi,河西 34.41119 109.5251 P PPLA4 CN 26 0 439 Asia/Chongqing 2012-01-20
-2001855 Yancun Yancun Yancun,Yancun Zhen,yan cun,阎村 34.41897 109.49496 P PPLA4 CN 26 0 617 Asia/Chongqing 2012-01-20
-2033054 Yunxing Yunxing Tso-yun,Tso-yun-hsien,Tso-yün,Tso-yün-hsien,Tszoyun',Tszöyun’,Yunxing,Yunxing Zhen,Zuoyun Xian,yun xing,yun xing zhen,zuo yun xian,云兴,云兴镇,左云县 39.9991 112.69787 P PPLA3 CN 24 0 1327 Asia/Shanghai 2012-01-18
-2033067 Zhuozishan Zhuozishan Cho-tzu,Cho-tzu-shan,Chotzushanchen,Zhuozi,Zhuozi Xian,Zhuozishan,Zhuozishan Zhen,zhuo zi shan,zhuo zi shan zhen,zhuo zi xian,卓资县,卓资山,卓资山镇 40.89917 112.56028 P PPLA3 CN 20 0 1447 Asia/Harbin 2012-01-18
-2033089 Zhoushizhuang Zhoushizhuang Chou-shih-chuang,Zhoushizhuang,Zhoushizhuang Zhen,zhou shi zhuang,zhou shi zhuang zhen,周士庄,周士庄镇 40.11389 113.46611 P PPLA4 CN 24 0 1132 Asia/Shanghai 2012-01-18
-2033091 Zhoujia Zhoujia Zhoujia,Zhoujia Zhen,zhou jia,zhou jia zhen,周家,周家镇 40.54407 122.74458 P PPLA4 CN 19 0 116 Asia/Harbin 2012-01-18
-2033110 Zhong’an Zhong'an Chung-an-p'u,Chung-an-p’u,Zhong'an,Zhong'an Zhen,Zhong'anpu,Zhong’an,Zhong’an Zhen,Zhong’anpu,zhong an,zhong an zhen,中安,中安镇 41.60524 121.97904 P PPLA4 CN 19 0 0 22 Asia/Harbin 2012-01-18
-2033112 Dalazi Dalazi Dalazi,Zhixin Zhen,da la zi,zhi xin zhen,大砬子,智新镇 42.63935 129.56159 P PPLA4 CN 05 0 422 Asia/Harbin 2012-01-18
-2033128 Zhenlai Zhenlai Ch'a-kan-nao,Ch'a-kan-shao,Chen-lai,Chen-lai-chen,Chen-tung,Chen-tung-hsien,Chzhendun,Ch’a-kan-nao,Ch’a-kan-shao,Zhenlai,zhen lai,镇赉 45.84955 123.2973 P PPLA3 CN 05 67760 135 Asia/Harbin 2012-01-18
-2033135 Zhengjiatun Zhengjiatun Cheng-chia-t'un,Cheng-chia-t'un-chen,Cheng-chia-t’un,Cheng-chia-t’un-chen,Chengkiatun,Liao-yuan,Liao-yuan-hsien,Liao-yüan,Liao-yüan-hsien,Shuangliao,Zhengjiatun 43.50639 123.50639 P PPL CN 05 93666 117 Asia/Harbin 2012-01-18
-2033137 Zheng’an Zheng'an Cheng-an,Cheng-an-p'u,Cheng-an-p'u-ts'un,Cheng-an-pao,Cheng-an-pao-ts'un,Cheng-an-pao-ts’un,Cheng-an-p’u,Cheng-an-p’u-ts’un,Zheng'an,Zheng'an Zhen,Zheng'anpu,Zheng’an,Zheng’an Zhen,Zheng’anpu,zheng an,zheng an zhen,正安,正安镇 41.70423 121.93044 P PPLA4 CN 19 0 0 45 Asia/Harbin 2012-01-18
-2033145 Zhazi Zhazi Zhazi,Zhazi Zhen,zha zi,zha zi zhen,砟子,砟子镇 42.00323 126.55772 P PPLA4 CN 05 0 514 Asia/Harbin 2012-01-18
-2033147 Zhaozhou Zhaozhou Chao Chow,Chao-chi,Chao-chou,Chao-chou-chen,Chao-chou-hsien,Chzhaochzhou,Lao-ch'eng-chi,Lao-chieh-chi,Lao-ch’eng-chi,Zhaozhou,Чжаочжоу 45.68333 125.31667 P PPL CN 08 62373 152 Asia/Harbin 2012-01-18
-2033149 Zhaoyuan Zhaoyuan Chao-chou,Chao-yuan,Chao-yuan-chen,Chao-yuan-hsien,Chao-yüan,Chao-yüan-chen,Chao-yüan-hsien,Chaochow,Chzhaochzhou,Chzhaoyuan',Chzhaoyuan'gay,Chzhaoyuan’,Chzhaoyuan’gay,Gokhoutsi,Kuo-erh-lo-ssu-hou-ch'i,Kuo-erh-lo-ssu-hou-ch’i,Kuo-hou-ch'i,Kuo-hou-ch’i,Zhaoyuan 45.5 125.13333 P PPL CN 08 59370 127 Asia/Harbin 2012-01-18
-2033157 Zhaotun Zhaotun Zhaojitun,Zhaotun,zhao tun,zhao tun zhen,赵屯,赵屯镇 41.4062 121.87542 P PPLA4 CN 19 0 0 9 Asia/Harbin 2012-01-18
-2033168 Zhaodong Zhaodong Chao-tung,Chao-tung-chen,Chzhaodun,Man'gou,Man-kou,Man’gou,T'ien-tsao-kang,T’ien-tsao-kang,Zhaodong 46.08333 125.98333 P PPL CN 08 154406 136 Asia/Harbin 2012-01-18
-2033196 Zhangjiakou Zhangjiakou Chang-chia-k'ou,Chang-chia-k'ou-shih,Chang-chia-k’ou,Chang-chia-k’ou-shih,Chang-kia-k'ou,Chang-kia-k’ou,Changchiakow,Changkiakow,Chzhanczjakou,Chzhantseyakou,Kalgan,Wan-ch'uan,Wan-ch'uan-hsien,Wan-ch’üan,Wan-ch’üan-hsien,Zhangjiakou,zhang jia kou,zhang jia kou shi,Чжанцзякоу,张家口市,張家口,張家口市 40.81 114.87944 P PPL CN 10 692602 758 Asia/Harbin 2012-01-18
-2033199 Zhangjiachang Zhangjiachang Chang-chia-ch'ang,Chang-chia-ch’ang,Zhangjiachang,Zhangjiachang Xiang,zhang jia chang,zhang jia chang xiang,张家场,张家场乡 40.0836 112.83171 P PPLA4 CN 24 0 1245 Asia/Shanghai 2012-01-18
-2033209 Zhangdang Zhangdang Chang-tang,Zhangdang,Zhangdang Zhen,zhang dang,zhang dang zhen,章党,章党镇 41.9075 124.0744 P PPLA4 CN 19 0 98 Asia/Harbin 2012-01-18
-2033225 Zalantun Zalantun Butha Qi,CHZHALAN'TUN',Cha-lan-tun,Chzhalantun,Cjalanjtunj,Pu-t'e-ha-ch'i,Pu-t’e-ha-ch’i,Tsa-lan-t'un,Tsa-lan-t’un,Ya-lu,Ya-lu-hsien,Zalantun,Zhalantun Shi,bu te ha qi,zha lan tun,zha lan tun shi,ЧЖАЛАНЬТУНЬ,布特哈旗,扎兰屯,扎兰屯市 48 122.71667 P PPL CN 20 132224 311 Asia/Harbin 2012-01-18
-2033241 Yushuchuan Yushuchuan Yushuchuan,Yushuchuan Xiang,yu shu chuan,yu shu chuan xiang,榆树川,榆树川乡 42.32945 127.2035 P PPLA4 CN 05 0 476 Asia/Harbin 2012-01-18
-2033242 Yushu Yushu Jujshu,Ku-yu-shu,Ku-yü-shu,Yu-shu-chen,Yu-shu-hsien,Yushu,Yü-shu-chen,Yü-shu-hsien,Юйшу 44.8 126.53333 P PPL CN 05 124736 220 Asia/Harbin 2012-01-18
-2033244 Yushu Yushu Yushu,Yushu Xiang,yu shu,yu shu xiang,榆树,榆树乡 41.6436 124.81644 P PPLA4 CN 19 0 306 Asia/Harbin 2012-01-18
-2033245 Yuquan Yuquan Erh Tieng Tien Tze,Erh-ts'eng-tien-tzu,Erh-ts'eng-ting-tzu,Erh-ts’eng-tien-tzu,Erh-ts’eng-ting-tzu,Yu-ch'uan,Yuquan,Yuquan Zhen,Yü-ch’üan,yu quan,yu quan zhen,玉泉,玉泉镇 45.41001 127.15902 P PPLA4 CN 08 0 194 Asia/Harbin 2012-01-18
-2033263 Yulin Yulin Yulin,Yulin Zhen,yu lin,yu lin zhen,榆林,榆林镇 40.99251 125.93756 P PPLA4 CN 05 0 170 Asia/Harbin 2012-01-18
-2033301 Youhao Youhao Youhao,Yu-hao 47.86667 128.83333 P PPL CN 08 78402 234 Asia/Harbin 2012-01-18
-2033315 Yongling Yongling Yongling,Yongling Zhen,Yung-ling,Yung-ling-chieh,Yung-ling-kai,Yunlin,yong ling,yong ling zhen,永陵,永陵镇 41.70804 124.82105 P PPLA4 CN 19 0 271 Asia/Harbin 2012-01-18
-2033346 Yitong Yitong I-t'ung,I-t'ung-chen,I-t'ung-hsien,I-t’ung,I-t’ung-chen,I-t’ung-hsien,Yitong,yi tong,伊通 43.32628 125.29726 P PPLA3 CN 05 0 249 Asia/Harbin 2012-01-18
-2033362 Yingshouyingzi Yingshouyingzi Ying-shou-ying,Ying-shou-ying-ts'un,Ying-shou-ying-ts’un,Ying-shou-ying-tzi,Ying-shou-ying-tzu,Yingshouyingzi,Yingshouyingzi Zhen,ying shou ying zi,ying shou ying zi zhen,鹰手营子,鹰手营子镇 40.55147 117.66155 P PPLA3 CN 10 0 473 Asia/Harbin 2012-01-18
-2033366 Yingluo Yingluo Yingluo,Yingluo Zhen,ying luo,ying luo zhen,英落,英落镇 40.64272 122.69841 P PPLA4 CN 19 0 111 Asia/Harbin 2012-01-18
-2033370 Yingkou Yingkou Eiko,Inkou,Newchwang,Niu-chuang,Ying-k'ou-hsien,Ying-k'ou-shih,Ying-k’ou-hsien,Ying-k’ou-shih,Yingkou,Yingkou Shi,Yingkow,ying kou,ying kou shi,Инкоу,营口,营口市 40.66482 122.22833 P PPLA2 CN 19 591159 4 Asia/Harbin 2012-01-18
-2033377 Ying’ebu Ying'ebu Ying'ebu,Ying'ebu Zhen,Ying-o-pu,Ying’ebu,Ying’ebu Zhen,ying e bu,ying e bu zhen,英额布,英额布镇 41.73028 125.55639 P PPLA4 CN 05 0 445 Asia/Harbin 2012-01-18
-2033403 Yilan Yilan I-lan,I-lan-chen,I-lan-hsien,San-hsing,Sang-hsing,Sansing,Sen-hsing,Yilan 46.31667 129.56667 P PPL CN 08 71180 98 Asia/Harbin 2012-01-18
-2033413 Yichun Yichun I-ch'un,I-ch'un-shih,I-ch’un,I-ch’un-shih,Ichun',Yichun,Ичунь 47.7 128.9 P PPL CN 08 155762 403 Asia/Harbin 2012-01-18
-2033423 Yebaishou Yebaishou Chien-p'ing,Chien-p’ing,Jianping,Teh-pai-shou,Tszyan'pin,Tszyan’pin,Yebaishou,Yeh-pai-shou,Yeh-pai-shou-chen,Yeh-pai-shu,Yeh-po-shou 41.3975 119.64083 P PPL CN 19 65536 412 Asia/Harbin 2012-01-18
-2033449 Yantongshan Yantongshan Yantongshan,Yen-t'ung-shan,Yen-t’ung-shan 43.29194 126.00944 P PPL CN 05 57515 250 Asia/Harbin 2012-01-18
-2033467 Yanji Yanji Chu-tzu-chieh,Chu-tzu-kai,Chü-tzu-chieh,Chü-tzu-kai,Jan'czi,Yang-chi-t'eng,Yen-chi,Yen-chi-shih,Яньцзи 42.9075 129.50778 P PPL CN 05 326957 178 Asia/Harbin 2010-01-29
-2033483 Yangshufang Yangshufang Xiaoshipeng Xiang,Yangshufang,xiao shi peng xiang,yang shu fang,小石棚乡,杨树房 40.24254 122.4328 P PPLA4 CN 19 0 206 Asia/Harbin 2012-01-18
-2033489 Yangmulinzi Yangmulinzi Yang-mu-lin,Yangmulinzi,Yangpao,Yangpao Manzu Xiang,yang mu lin zi,yang pao man zu xiang,杨木林子,杨泡满族乡 42.90222 130.49639 P PPLA4 CN 05 0 63 Asia/Harbin 2012-01-18
-2033501 Maoqitun Maoqitun Maoqitun,Yang Chia Chuang Tzu,Yang-chang-tzu,Yang-chia-chang-tzu,Yang-kia-chang-tze,Yangjiazhangzi,Yangjiazhangzi Jiedao,Yantszyachzhantszy,mao qi tun,yang jia zhang zi,杨家杖子,毛祁屯 40.80564 120.54475 P PPLA4 CN 19 0 138 Asia/Harbin 2012-01-18
-2033510 Longquan Longquan Longquan,Longquan Zhen,Yang-chiao,Yang-kao,Yang-kao-hsien,Yanggao,Yanggao Xian,long quan,long quan zhen,yang gao xian,阳高县,龙泉,龙泉镇 40.3638 113.66616 P PPLA3 CN 24 0 1385 Asia/Harbin 2012-01-18
-2033536 Yakeshi Yakeshi Hsi-kuei-t'u,Hsi-kuei-t’u,JAKEHSHI,Shih-k'o-ya,Shih-k’o-ya,Xingong Jiedao,Xuguit Qi,Ya-k'o-shih,Ya-k’o-shih,Yakeshi,Yakeshi Shi,xi gui tu qi,xin gong jie dao,ya ke shi,ya ke shi shi,ЯКЭШИ,喜桂图旗,新工街道,牙克石,牙克石市 49.28333 120.73333 P PPL CN 20 116284 661 Asia/Harbin 2012-01-18
-2033540 Yahe Yahe Yahe,Yahe Zhen,ya he,ya he zhen,雅河,雅河镇 40.22785 123.27695 P PPLA4 CN 19 0 83 Asia/Harbin 2012-01-18
-2033541 Yagou Yagou Yagou,Yagou Zhen,ya gou,ya gou zhen,亚沟,亚沟镇 45.48061 127.07891 P PPLA4 CN 08 0 163 Asia/Harbin 2012-01-18
-2033548 Xutun Xutun Xutun,Xutun Zhen,xu tun,xu tun zhen,徐屯,徐屯镇 40.3438 122.38858 P PPLA4 CN 19 0 26 Asia/Harbin 2012-01-18
-2033557 Xutun Xutun Hsu-chia-t'un,Hsu-chia-t'un-chan,Hsü-chia-t’un,Hsü-chia-t’un-chan,Xujiatun,Xutun,Xutun Zhen,xu tun,xu tun zhen,许屯,许屯镇 40.03774 122.07719 P PPLA4 CN 19 0 40 Asia/Harbin 2012-01-18
-2033570 Xubu Xubu Hsu-chia-p'u,Hsu-chia-pao,Hsu-pao,Hsü-chia-pao,Hsü-chia-p’u,Hsü-pao,Xubu,Xubu Zhen,xu bao,xu bao zhen,许堡,许堡镇 40.02792 113.74473 P PPLA4 CN 24 0 1041 Asia/Shanghai 2012-01-18
-2033574 Xuanhua Xuanhua Ch'ang-chia-k'ou-shih,Ch’ang-chia-k’ou-shih,Hsuan-hua,Hsuan-hua-ch'eng,Hsuan-hua-hsien,Hsuan-hua-shih,Hsüan-hua,Hsüan-hua-ch’eng,Hsüan-hua-hsien,Hsüan-hua-shih,Suanhwa,Xuanhua 40.61028 115.04472 P PPL CN 10 373422 610 Asia/Harbin 2012-01-18
-2033595 Xiwanzi Xiwanzi Ch'ung-li,Ch'ung-li-hsien,Chongli,Ch’ung-li,Ch’ung-li-hsien,Hsi-wan,Hsi-wan-tzu,Hsiwantze,Siwantze,Siwantzu,T'ai-p'ing-chan,T'ai-p'ing-chuang,T’ai-p’ing-chan,T’ai-p’ing-chuang,Xiwanzi,Xiwanzi Zhen,xi wan zi,西湾子 40.97139 115.2725 P PPLA3 CN 10 0 1245 Asia/Harbin 2012-01-18
-2033602 Xiuyan Xiuyan Hsiu-yen,Hsiu-yen-chen,Hsiu-yen-hsien,Hsiujen,Siuyen,Xiuyan,Yu-yen,xiu yan,岫岩 40.29278 123.27444 P PPL CN 19 71614 82 Asia/Harbin 2012-01-18
-2033614 Xisi Xisi Xisi,Xisi Zhen,xi si,xi si zhen,西四,西四镇 40.96628 122.44909 P PPLA4 CN 19 0 4 Asia/Harbin 2012-01-18
-2033618 Xishanzui Xishanzui Hsi-shan-tsui,Urad Qianqi,Wu-la-t'e-ch'ien-ch'i,Wu-la-t’e-ch’ien-ch’i,Wulateqian Qi.,Xishanzui,Xishanzui Zhen,wu la te qian qi,xi shan zui,xi shan zui zhen,乌拉特前旗,西山嘴,西山嘴镇 40.7075 108.64389 P PPLA4 CN 20 0 1020 Asia/Chongqing 2012-01-18
-2033627 Xipingpo Xipingpo Xiping,Xipingpo,Xipingpo Manzuxiang,xi ping po,xi ping po man zu xiang,西平坡,西平坡满族乡 40.44821 120.17149 P PPLA4 CN 19 0 58 Asia/Harbin 2012-01-18
-2033628 Xiping Xiping Datong Xian,Hsi-p'ing,Hsi-p’ing,Ta-t'ung,Ta-t'ung-hsien,Ta-t’ung,Ta-t’ung-hsien,Xiping,Xiping Zhen,da tong xian,xi ping,xi ping zhen,大同县,西坪,西坪镇 40.03952 113.60455 P PPLA3 CN 24 0 1040 Asia/Shanghai 2012-01-18
-2033630 Xiongyue Xiongyue Hiungyocheng,Hsiun-yuen-ch'eng,Hsiun-yuen-ch’eng,Hsiung-yueh,Hsiung-yueh-ch'eng,Hsiung-yüeh-ch’eng,Hsiungyaocheng,Xiongyue,Xiongyue Zhen,Xiongyuecheng,xiong yue,xiong yue zhen,熊岳,熊岳镇 40.17737 122.12284 P PPLA4 CN 19 0 17 Asia/Harbin 2012-01-18
-2033661 Xintaimen Xintaimen Hsin-t'ai-men,Hsin-t’ai-men,Xintaimen,xin tai men,新台门 40.83464 120.41781 P PPLA4 CN 19 0 169 Asia/Harbin 2012-01-18
-2033665 Xinrong Xinrong Hsin-jung,Hsin-jung-ch'u,Hsin-jung-ch’ü,Nuan-yao-ts'un,Nuan-yao-ts’un,Xinrong,Xinrong Qu,Xinrong Zhen,xin rong,xin rong qu,xin rong zhen,新荣,新荣区,新荣镇 40.26667 113.15 P PPLA3 CN 24 0 1209 Asia/Shanghai 2012-01-18
-2033667 Xinqing Xinqing Hsin-ch'ing,Hsin-ch’ing,Xinqing 48.23333 129.5 P PPL CN 08 55415 312 Asia/Harbin 2012-01-18
-2033675 Xinmin Xinmin Hsin-min,Hsin-min-chen,Hsin-min-hsien,Hsin-ming-t'ing,Hsin-ming-t’ing,Sin'min',Sinmin,Xinmin,Синьминь 41.99083 122.82528 P PPL CN 19 74139 34 Asia/Harbin 2012-01-18
-2033707 Xinhui Xinhui Ao-han-ch'i,Ao-han-ch’i,Aohan Qi,Hsin-hui,Ts'ai-yuan-tzu,Ts’ai-yüan-tzu,Xinhui,Xinhui Zhen,ao han qi,xin hui,xin hui zhen,敖汉旗,新惠,新惠镇 42.28389 119.89833 P PPLA3 CN 20 0 574 Asia/Harbin 2012-01-18
-2033724 Xingcan Xingcan Xingcan,Xingcan Zhen,Xingshen,xing can,xing can zhen,兴参,兴参镇 42.47795 127.22045 P PPLA4 CN 05 0 586 Asia/Harbin 2012-01-18
-2033739 Xinglongshan Xinglongshan Hsing-lung-shan,Xinglongshan 43.95611 125.46611 P PPL CN 05 58432 228 Asia/Harbin 2012-01-18
-2033747 Xinglong Xinglong Xinglong,Xinglong Xiang,xing long,xing long xiang,兴隆,兴隆乡 45.3 126.9 P PPLA4 CN 08 0 194 Asia/Harbin 2012-01-18
-2033757 Dahuanggou Dahuanggou Dahuanggou,Ta-huang-kou,Xinghua,Xinglin Zhen,da huang gou,xing lin zhen,兴林镇,大荒沟 42.05084 126.12655 P PPLA4 CN 05 0 554 Asia/Harbin 2012-01-18
-2033759 Xinghe Chengguanzhen Xinghe Chengguanzhen Erh-tao-ho,Hingho,Hingho-hsien,Hsing-ho,Hsing-ho-hsien,Xinghe,Xinghe Chengguanzhen,Xinghe Xian,xing he,xing he cheng guan zhen,xing he xian,兴和,兴和县,兴和城关镇 40.87556 113.88389 P PPLA3 CN 20 0 1244 Asia/Harbin 2012-01-18
-2033766 Xingcheng Xingcheng Hingcheng,Hsing-ch'eng,Hsing-ch'eng-chen,Hsing-ch'eng-hsien,Hsing-ch’eng,Hsing-ch’eng-chen,Hsing-ch’eng-hsien,Ning-yuan,Ning-yuan-chou,Ning-yüan,Ning-yüan-chou,Shinchon,Sinchehn,Xingcheng,Синчэн 40.61667 120.71667 P PPL CN 19 98968 10 Asia/Harbin 2012-01-18
-2033781 Xindian Xindian Hsin-tien,Xindian,Xindian Zhen,xin dian,xin dian zhen,新甸,新甸镇 45.91796 127.82598 P PPLA4 CN 08 0 110 Asia/Harbin 2012-01-18
-2033782 Xindian Xindian Dashan,Xindian,Xindian Manzu Zhen,Xindian Zhen,da shan,xin dian,xin dian man zu zhen,xin dian zhen,大山,新甸,新甸满族镇,新甸镇 40.09298 123.12369 P PPLA4 CN 19 0 110 Asia/Harbin 2012-01-18
-2033791 Xin Bulag Xin Bulag Hobot Xar,Hsiang-huang-ch'i,Hsiang-huang-ch’i,Hsin-pao-la-ka,Hsin-pao-li-ko,Shang-tu-hsiang-huang-ch'i,Shang-tu-hsiang-huang-ch’i,Shang-tu-hsiang-huang-lien-ho-ch'i,Shang-tu-hsiang-huang-lien-ho-ch’i,Xianghuang Qi,Xin Bulag,Xinbo Lage,Xinbo Lage Zhen,xiang huang qi,xin bao la ge,xin bao la ge zhen,新宝拉格,新宝拉格镇,镶黄旗 42.2375 113.83639 P PPLA3 CN 20 0 1329 Asia/Harbin 2012-01-18
-2033808 Ximu Ximu Hsi-mu-ch'eng,Hsi-mu-ch’eng,Hsi-shui-ch'eng,Hsi-shui-ch’eng,Hsin-mu-ch'eng,Hsin-mu-ch’eng,Shimucheng,Ximu,Ximu Zhen,Ximucheng,xi mu,xi mu zhen,析木,析木镇 40.6997 122.90743 P PPLA4 CN 19 0 77 Asia/Harbin 2012-01-18
-2033819 Xiliu Xiliu Xiliu,Xiliu Zhen,xi liu,xi liu zhen,西柳,西柳镇 40.84858 122.62417 P PPLA4 CN 19 0 19 Asia/Harbin 2012-01-18
-2033824 Xilin Hot Xilin Hot A-pa-ha-na-erh-ch'i,A-pa-ha-na-erh-ch’i,A-pa-ha-na-erh-tso-i-ch'i,A-pa-ha-na-erh-tso-i-ch’i,A-pa-ha-na-erh-yu-i-ch'i,A-pa-ha-na-erh-yu-i-ch’i,A-pa-k'a-pei-tzu-fu,A-pa-k’a-pei-tzu-fu,Abaga Pei-tzu-fu,Abagnar Qi,Hsi-lin-hao-t'e,Hsi-lin-hao-t’e,Hsi-lin-kuo-ch'in,Hsi-lin-kuo-ch’in,Pei-tzu-fu,Pei-tzu-miao,Peitzemiao,Silinghot,Xilin Hot,Xilinhaote Shi,Xilinhot,a ba ha na er qi,xi lin hao te,xi lin hao te shi,锡林浩特,锡林浩特市,阿巴哈纳尔旗 43.96667 116.03333 P PPL CN 20 120965 982 Asia/Harbin 2012-01-18
-2033826 Xilinhe Xilinhe Xilinhe,Xilinhe Xiang,xi lin he,xi lin he xiang,细鳞河,细鳞河乡 42.83647 129.15805 P PPLA4 CN 05 0 286 Asia/Harbin 2012-01-18
-2033853 Xihanling Xihanling Hsi-han-chua-ling,Hsi-han-chuä-ling,Hsi-han-ling,Xihanling,Xihanling Zhen,xi han ling,xi han ling zhen,西韩岭,西韩岭镇 40.01469 113.23997 P PPLA4 CN 24 0 1038 Asia/Shanghai 2012-01-18
-2033854 Xihai Xihai Xihai,Xihai Jiedao,xi hai,xi hai jie dao,西海,西海街道 40.43396 122.31321 P PPLA4 CN 19 0 4 Asia/Harbin 2012-01-18
-2033866 Xifeng Xifeng Hsi-feng,Hsi-feng-chen,Hsi-feng-hsien,Sifeng,T'ao-lu,T’ao-lu,Xifeng 42.73722 124.72222 P PPL CN 19 61087 197 Asia/Harbin 2012-01-18
-2033894 Xiayingzi Xiayingzi Xiayingzi,Xiayingzi Jiedao,xia ying zi,xia ying zi jie dao,下营子,下营子街道 41.72318 124.55214 P PPLA4 CN 19 0 339 Asia/Harbin 2012-01-18
-2033909 Xiaozhuangzi Xiaozhuangzi Xiaozhuangzi,Xiaozhuangzi Zhen,xiao zhuang zi,小庄子 40.27078 120.42997 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-18
-2033915 Xiaoyangqi Xiaoyangqi Hsiao-yang-ch'i,Hsiao-yang-ch’i,Xiaoyangqi,Xiaoyangqi Zhen,xiao yang qi,xiao yang qi zhen,小杨气,小杨气镇 50.8 124.28333 P PPLA4 CN 08 0 416 Asia/Harbin 2012-01-18
-2033916 Yanghe Yanghe Hsiao-yang-ho-tzu,Xiaoyanghe,Yang-ho,Yanghe,Yanghe Zhen,yang he,yang he zhen,洋河,洋河镇 40.05833 123.40889 P PPLA4 CN 19 0 84 Asia/Harbin 2012-01-18
-2033934 Xiaoshi Xiaoshi Benxi,Benxi Xian,Hsiao-shih,Hsiao-shih-chen,Pen-ch'i,Pen-ch'i-hsien,Pen-ch’i,Pen-ch’i-hsien,Pen-hsi,Pen-hsi-hsien,Xiaoshi,Xiaoshi Zhen,ben xi,ben xi xian,xiao shi,xiao shi zhen,小市,小市镇,本溪,本溪县 41.29711 124.12092 P PPLA3 CN 19 68994 206 Asia/Harbin 2012-01-18
-2033952 Xiaoling Xiaoling Hsiao-ling,Xiaoling,Xiaoling Zhen,xiao ling,xiao ling zhen,小岭,小岭镇 45.33637 127.30539 P PPLA4 CN 08 0 252 Asia/Harbin 2012-01-18
-2033988 Xiaochengzi Xiaochengzi Hsiao-ch'eng-tzu,Hsiao-ch’eng-tzu,Xiaochengzi,Xiaochengzi Zhen,xiao cheng zi,xiao cheng zi zhen,小城子,小城子镇 42.88999 123.20452 P PPLA4 CN 19 0 127 Asia/Harbin 2012-01-18
-2033998 Xianrenqiao Xianrenqiao Daying,Ta-ying,Xianrenqiao,Xianrenqiao Zhen,xian ren qiao,xian ren qiao zhen,仙人桥,仙人桥镇 42.172 127.2316 P PPLA4 CN 05 0 494 Asia/Harbin 2012-01-18
-2034062 Xamba Xamba Hang-chin-hou-ch'i,Hang-chin-hou-ch’i,Hanggin Houqi,Hangginhou Qi,Hsia-pa,Shan'ba,Shan-pa,Shan-pa-chen,Shan-pa-shih,Shanba,Shanba Zhen,Shan’ba,Shenpa,T'ai-an-chen,T’ai-an-chen,Xamba,hang jin hou qi,shan ba,shan ba zhen,杭锦后旗,陕坝,陕坝镇 40.88472 107.14 P PPLA3 CN 20 0 1038 Asia/Chongqing 2012-01-18
-2034111 Wujimi Wujimi Wu-chi-mi,Wujimi,Wujimi Xiang,wu ji mi,wu ji mi xiang,乌吉密,乌吉密乡 45.21853 127.8358 P PPLA4 CN 08 0 205 Asia/Harbin 2012-01-18
-2034135 Wudan Wudan Ch'uan-ning,Ch’üan-ning,Ongniud Qi,Vennyutetsi,Weng-niu-t'e-ch'i,Weng-niu-t’e-ch’i,Wengniute Qi,Wu-tan,Wu-tan-ch'eng,Wu-tan-ch’eng,Wudan,Wudan Zhen,weng niu te qi,wu dan,wu dan zhen,乌丹,乌丹镇,翁牛特旗 42.93444 119.02389 P PPLA3 CN 20 0 633 Asia/Harbin 2012-01-18
-2034141 Wuchang Wuchang Huan-hsi-ling,Uchan,Wu-ch'ang-chen,Wu-ch'ang-hsien,Wu-ch'ang-t'ing,Wu-ch’ang-chen,Wu-ch’ang-hsien,Wu-ch’ang-t’ing,Wuchang,Wuchang Shi,Wuchang Zhen,Wutschangting,wu chang,wu chang shi,wu chang zhen,Учан,五常,五常市,五常镇 44.91428 127.15001 P PPLA3 CN 08 94786 193 Asia/Harbin 2012-01-18
-2034151 Wolongquan Wolongquan Wolongquan,Wolongquan Zhen,wo long quan,wo long quan zhen,卧龙泉,卧龙泉镇 40.25816 122.7351 P PPLA4 CN 19 0 293 Asia/Harbin 2012-01-18
-2034161 Dalian Dalian Dalian,Wenxiang,Wenxiang Zhen,da lian,wen xiang zhen,温香镇,达连 41.06959 122.59851 P PPLA4 CN 19 0 7 Asia/Harbin 2012-01-18
-2034170 Weiziyu Weiziyu Wei-tzu-yu,Wei-tzu-yü,Weiziyu,Weiziyu Zhen,wei zi yu,wei zi yu zhen,苇子峪,苇子峪镇 41.43622 124.50492 P PPLA4 CN 19 0 303 Asia/Harbin 2012-01-18
-2034209 Wanliang Wanliang Wan-liang-ho,Wanliang,Wanliang Zhen,wan liang,wan liang zhen,万良,万良镇 42.43222 127.28917 P PPLA4 CN 05 0 523 Asia/Harbin 2012-01-18
-2034212 Wanghai Wanghai Dawanghaizhai,Wanghai,Wanghai Jiedao,Wangzhai,da wang hai zhai,wang hai,wang hai jie dao,大望海寨,望海,望海街道 40.3413 122.16886 P PPLA4 CN 19 0 2 Asia/Harbin 2012-01-18
-2034218 Wangshi Wangshi Wangshi,Wangshi Zhen,wang shi,wang shi zhen,王石,王石镇 40.85986 122.81625 P PPLA4 CN 19 0 42 Asia/Harbin 2012-01-18
-2034221 Wangqing Wangqing Ta-tu-ch'uan,Ta-tu-ch’uan,Ta-wang-kou,Vancine,Wang-ch'ing,Wang-ch'ing-chen,Wang-ch'ing-hsien,Wang-ch’ing,Wang-ch’ing-chen,Wang-ch’ing-hsien,Wangqing,Wangqing Xian,Wangqing Zhen,wang qing,wang qing xian,wang qing zhen,Ванцине,汪清,王清县,王清镇 43.32179 129.76342 P PPLA3 CN 05 88732 235 Asia/Harbin 2012-01-18
-2034226 Hepingjie Hepingjie Hepingjie,Wan-kou,Wangou,Wangou Zhen,he ping jie,wan gou,wan gou zhen,和平街,湾沟,湾沟镇 42.05972 126.91583 P PPLA4 CN 05 65298 730 Asia/Harbin 2012-01-18
-2034228 Wangkui Wangkui Shuang-lung,Ta-wu-ching-tzu,Wang-k'uei,Wang-k'uei-chen,Wang-k'uei-hsien,Wang-k’uei,Wang-k’uei-chen,Wang-k’uei-hsien,Wangkui 46.83333 126.5 P PPL CN 08 69915 190 Asia/Harbin 2012-01-18
-2034255 Wangbao Wangbao Wangbao,Wangbao Zhen,wang bao zhen,王宝镇 40.15442 120.13156 P PPLA4 CN 19 0 16 Asia/Harbin 2012-01-18
-2034257 Wanfu Wanfu Wan-fu-chuang,Wan-fu-chuang-ts'un,Wan-fu-chuang-ts’un,Wan-fu-chung-ts'un,Wan-fu-chung-ts’un,Wanfu,Wanfu Zhen,Wanfuchwang,Wang-tu-chuang,wan fu,wan fu zhen,万福,万福镇 40.13896 122.54677 P PPLA4 CN 19 0 121 Asia/Harbin 2012-01-18
-2034268 Dadianzi Dadianzi Dadianzi,Ta-tien-tzu,Wan-p'ao-ho-tzu,Wan-pao,Wan-p’ao-ho-tzu,Wanbao Zhen,Wang-p'ao-ho-tzu,Wang-p’ao-ho-tzu,Wanpaotun,da dian zi,wan bao zhen,万宝镇,大甸子 42.87306 128.32444 P PPLA4 CN 05 0 545 Asia/Harbin 2012-01-18
-2034292 Uliastai Uliastai Dong Ujimqin Qi,Dongwuzhumuqin Qi,Dun'uchzhumutsintsi,Dun’uchzhumutsintsi,La-ma-k'u-lieh-miao,La-ma-k'u-lien-miao,La-ma-k'u-lun-miao,La-ma-k’u-lieh-miao,La-ma-k’u-lien-miao,La-ma-k’u-lun-miao,Lamakhure Sume,Lamakoulun,Lamakoulunmiao,Lamakulienmiay,Ramakuresumu,Ramakuresūmu,Sumoyn Khuren Sume,Sumyyn Khuren'-Sume,Sumyyn Khuren’-Sume,Tung-wu-chu-mu-ch'in-ch'i,Tung-wu-chu-mu-ch’in-ch’i,Uliastai,Wu-li-ya-ssu-t'ai,Wu-li-ya-ssu-t’ai,Wuliyasitai,Wuliyasitai Zhen,dong wu zhu mu qin qi,la ma ku lun miao,wu li ya si tai,wu li ya si tai zhen,东乌珠穆沁旗,乌里雅斯太,乌里雅斯太镇,喇嘛库伦庙 45.55 116.83333 P PPLA3 CN 20 0 868 Asia/Harbin 2012-01-18
-2034310 Ulan Hua Ulan Hua Dorbod Qi,Durben Khukhut Banner,Siziwang Qi,Ssu-tzu-wang-ch'i,Ssu-tzu-wang-ch’i,Ulan Hua,Ulan'khua,Ulan’khua,Wu-lan-hua,Wu-lan-hua-chen,Wulanhua,Wulanhua Zhen,si zi wang qi,wu lan hua,wu lan hua zhen,乌兰花,乌兰花镇,四子王旗 41.51306 111.69639 P PPLA3 CN 20 0 1492 Asia/Harbin 2012-01-18
-2034312 Ulanhot Ulanhot Horqin Youyi Qianqi,Huai-yuan-chen,Huai-yuän-chen,K'o-erh-ch'in-yu-ch'ien-ch'i,K'o-erh-ch'in-yu-i-ch'ien-ch'i,K’o-erh-ch’in-yu-ch’ien-ch’i,K’o-erh-ch’in-yu-i-ch’ien-ch’i,Ulan Hot,Ulan Hoto,Ulan-Khoto,Ulanhot,Ulanhot Shi,Van''yemyao,Van’’yemyao,Wang-yeh-miao,Wangyemiao,Wu-lan-hao-t'e,Wu-lan-hao-t'e-shih,Wu-lan-hao-t’e,Wu-lan-hao-t’e-shih,Wulanhaote Shi,wang ye miao,wu lan hao te,wu lan hao te shi,乌兰浩特,乌兰浩特市,王爷庙 46.08333 122.08333 P PPL CN 20 165846 303 Asia/Harbin 2012-01-18
-2034321 Tushan Tushan T'u-shan-tzu-shih,Tu-shan-tzu,Tushan,Tushan Zhen,Tushanzi,T’u-shan-tzu-shih,tu shan,tu shan zhen,tu shan zi,土山,土山子,土山镇 42.62822 129.03406 P PPLA4 CN 05 0 392 Asia/Harbin 2012-01-18
-2034323 Tuquan Tuquan K'o-erh-ch'in-yu-i-chung-ch'i,K’o-erh-ch’in-yu-i-chung-ch’i,Li-ch'uan,Li-ch’üan,T'u-ch'uan,T'u-ch'uan-chen,T'u-ch'uan-hsien,Tuquan,Tuquan Xian,Tuquan Zhen,Tutsyuan',Tutsyuan’,T’u-ch’üan,T’u-ch’üan-chen,T’u-ch’üan-hsien,tu quan,tu quan xian,tu quan zhen,突泉,突泉县,突泉镇 45.36667 121.68333 P PPLA3 CN 20 0 307 Asia/Harbin 2012-01-18
-2034340 Tumen Tumen T'u-men-chan,T'u-men-shih,Tjumenskij,Tumen,T’u-men-chan,T’u-men-shih,Тюменский 42.96611 129.8425 P PPL CN 05 78719 98 Asia/Harbin 2012-01-18
-2034387 Beixinjie Beixinjie Beixinjie,Shanhochen,T'ou-tao-kou,T'u-ta-kou,Toudao,Toudao Zhen,Toudaogou,Towtaokow,T’ou-tao-kou,T’u-ta-kou,bei xin jie,tou dao gou,tou dao zhen,北新街,头道沟,头道镇 42.7484 129.19898 P PPLA4 CN 05 0 294 Asia/Harbin 2012-01-18
-2034389 Toudao Toudao T'ou-tao,T'ou-tao-wai-tzu,Toudao,Toudao Zhen,T’ou-tao,T’ou-tao-wai-tzu,tou dao,tou dao zhen,头道,头道镇 41.51244 125.87212 P PPLA4 CN 05 0 361 Asia/Harbin 2012-01-18
-2034393 Tongyuanpu Tongyuanpu T'ung-yuan-p'u,T'ung-yuan-pao,T'ung-yun-p'u,Tongyuanpu,Tongyuanpu Zhen,Tung-yuan-pau,T’ung-yun-p’u,T’ung-yüan-pao,T’ung-yüan-p’u,tong yuan bao,tong yuan bao zhen,通远堡,通远堡镇 40.79222 123.91583 P PPLA4 CN 19 0 186 Asia/Harbin 2012-01-18
-2034400 Tongliao Tongliao Bayan Tala,Horqin Qu,Ke'erqin Qu,Ke’erqin Qu,Pa-lin-ai-hsin,Pai-an-ta-la,Pai-yin-t'ai-lai,Pai-yin-t’ai-lai,Payintala,T'ung-liao,T'ung-liao-hsien,T'ung-liao-shih,Tongliao,Tongliao Shi,Tungliaochen,T’ung-liao,T’ung-liao-hsien,T’ung-liao-shih,ba yan ta la,ke er qin qu,tong liao,tong liao shi,巴彦塔拉,科尔沁区,通辽,通辽市,通遼 43.6125 122.26528 P PPLA2 CN 20 261110 182 Asia/Harbin 2012-01-18
-2034430 Togrog Ul Togrog Ul Ch'a-ha-erh-yu-ch'ien-ch'i,Ch'a-ha-erh-yu-i-ch'ien-ch'i,Ch'a-yu-ch'ien-ch'i,Chaha'eryouyiqian Qi,Chaha’eryouyiqian Qi,Ch’a-ha-erh-yu-ch’ien-ch’i,Ch’a-ha-erh-yu-i-ch’ien-ch’i,Ch’a-yu-ch’ien-ch’i,Kuan-ts'un,Kuan-ts’un,Qahar Youyi Qianqi,T'u-kuei-wu-la,Togrog Ul,Tuguiwula,Tuguiwula Zhen,T’u-kuei-wu-la,cha ha er you yi qian qi,tu gui wu la,tu gui wu la zhen,土贵乌拉,土贵乌拉镇,察哈尔右翼前旗 40.77722 113.20361 P PPLA3 CN 20 0 1308 Asia/Harbin 2012-01-18
-2034439 Tieling Tieling T'e-ling,T'ieh-ling,T'ieh-ling-hsien,Telin,Tieling,T’e-ling,T’ieh-ling,T’ieh-ling-hsien,Телин 42.29306 123.84139 P PPL CN 19 333907 64 Asia/Harbin 2012-01-18
-2034440 Tieli Tieli T'ieh-li,T'ieh-li-chen,T'ieh-li-hsien,T'ieh-shan-pao,Teli,Tieli,T’ieh-li,T’ieh-li-chen,T’ieh-li-hsien,T’ieh-shan-pao 46.95 128.05 P PPL CN 08 109636 209 Asia/Harbin 2012-01-18
-2034447 Tianzhuangtai Tianzhuangtai T'ien-chuang-t'ai,Tianzhuangtai,Tianzhuangtai Zhen,Tienchwangtai,T’ien-chuang-t’ai,tian zhuang tai,tian zhuang tai zhen,田庄台,田庄台镇 40.83914 122.13802 P PPLA4 CN 19 0 4 Asia/Harbin 2012-01-18
-2034451 Yuquan Yuquan T'ien-chen,T'ien-chen-hsien,T'ien-chen-hsien-ch'eng,Tianzhen,Tianzhen Xian,T’ien-chen,T’ien-chen-hsien,T’ien-chen-hsien-ch’eng,Yuquan,Yuquan Zhen,tian zhen xian,yu quan,yu quan zhen,天镇县,玉泉,玉泉镇 40.44259 113.97442 P PPLA3 CN 24 0 1063 Asia/Harbin 2012-01-18
-2034452 Tianyi Tianyi Ninchen,Ningcheng,Ningcheng Xian,T'ien-i,T'ien-i-hao,Tianyi,Tianyi Zhen,T’ien-i,T’ien-i-hao,ning cheng xian,tian yi,tian yi zhen,天义,天义镇,宁城县 41.56667 119.33333 P PPLA3 CN 20 0 582 Asia/Harbin 2012-01-18
-2034457 Tianshifu Tianshifu Dapu,T'ien-shih-fu,T'ien-shih-fu-kou,T'ien-shih-fu-kou-k'ou,T'ien-shih-fu-kow,T'ien-shih-fu-ku-k'ou,T'ien-tzu-fu,T'ien-tzu-fu-kou-k'ou,Tianshifu,Tianshifu Zhen,Tien-shi-fu,T’ien-shih-fu,T’ien-shih-fu-kou,T’ien-shih-fu-kou-k’ou,T’ien-shih-fu-kow,T’ien-shih-fu-ku-k’ou,T’ien-tzu-fu,T’ien-tzu-fu-kou-k’ou,da bao,tian shi fu,tian shi fu zhen,大堡,田师付,田师付镇 41.25563 124.35313 P PPLA4 CN 19 0 285 Asia/Harbin 2012-01-18
-2034460 Tianshan Tianshan A-lu-k'o-erh-ch'in-ch'i,A-lu-k’o-erh-ch’in-ch’i,Ar Horqin Qi,Ch'a-pu-kan-miao,Ch’a-pu-kan-miao,T'ien-shan,Tianshan,Tianshan Zhen,T’ien-shan,a lu ke er qin qi,tian shan,tian shan zhen,天山,天山镇,阿鲁科尔沁旗 43.88736 120.09336 P PPLA3 CN 20 0 365 Asia/Shanghai 2012-01-18
-2034461 Tianqiaoling Tianqiaoling T'ien-ch'iao-ling,Tianqiaoling,Tianqiaoling Zhen,T’ien-ch’iao-ling,tian qiao ling,tian qiao ling zhen,天桥岭,天桥岭镇 43.59007 129.62974 P PPLA4 CN 05 0 276 Asia/Harbin 2012-01-18
-2034479 Fu’an Fu'an Fu'an,Fu’an,T'eng-ao-chen,T'eng-ao-p'u-ts'un,T'eng-ao-pao,Teng'ao,Teng'ao Zhen,Teng'aopu,Teng-ao-tao,Teng’ao,Teng’ao Zhen,Teng’aopu,T’eng-ao-chen,T’eng-ao-pao,T’eng-ao-p’u-ts’un,fu an,teng ao zhen,福安,腾鳌镇 41.075 122.83056 P PPLA4 CN 19 0 15 Asia/Harbin 2012-01-18
-2034486 Tashantun Tashantun Tashantun,Tashantun Zhen,ta shan tun,ta shan tun zhen,塔山屯,塔山屯镇 40.25494 120.39549 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-18
-2034487 Yingta Yingta Tashan,Tashan Xiang,Yingta,ta shan,ying ta,塔山,英塔 40.8457 120.93602 P PPLA4 CN 19 0 11 Asia/Harbin 2012-01-18
-2034497 Taonan Taonan T'ao-nan-chen,T'ao-nan-fu,T'ao-nan-hsien,Tao'an,Taonan,Taonan',Tao’an,T’ao-nan-chen,T’ao-nan-fu,T’ao-nan-hsien,Таонань 45.33333 122.78333 P PPL CN 05 112819 150 Asia/Harbin 2012-01-18
-2034518 Tangtu Tangtu T'ang-t'u-huo-lo,Tangtu,Tangtu Manzu Xiang,T’ang-t’u-huo-lo,tang tu,tang tu man zu xiang,汤图,汤图满族乡 41.82723 124.33695 P PPLA4 CN 19 0 175 Asia/Harbin 2012-01-18
-2034535 Tangchi Tangchi T'ang-ch'ih,T'ang-ch'ih-ts'un,Tangchi,Tangchi Zhen,T’ang-ch’ih,T’ang-ch’ih-ts’un,tang chi,tang chi zhen,汤池,汤池镇 40.53034 122.62317 P PPLA4 CN 19 0 72 Asia/Harbin 2012-01-18
-2034555 Taishang Taishang Taishang,Taishang Zhen,tai shang,tai shang zhen,台上,台上镇 41.29868 125.84216 P PPLA4 CN 05 0 358 Asia/Harbin 2012-01-18
-2034562 Taipingzhuang Taipingzhuang Taipingzhuang,Taipingzhuang Xiang,tai ping zhuang,tai ping zhuang xiang,太平庄,太平庄乡 40.16914 122.80815 P PPLA4 CN 19 0 276 Asia/Harbin 2012-01-18
-2034599 Tailai Tailai T'ai-lai-chen,T'ai-lai-hsien,Tailai,Tailaichi,T’ai-lai-chen,T’ai-lai-hsien 46.38333 123.4 P PPL CN 08 66623 144 Asia/Harbin 2012-01-18
-2034600 Taikang Taikang Dorbod,Duerbotetsi,Durvet,Hsiao-hao-tzu,Syaokhaotszy,T'ai-k'ang-chen,T'ai-k'ang-hsien,Taikang,Taykan,Tu-erh-po-t'e,Tu-erh-po-t'e-ch'i,Tu-erh-po-t'e-meng-ku-tsu-tzu-chih-hsien,Tu-erh-po-t’e,Tu-erh-po-t’e-ch’i,Tu-erh-po-t’e-meng-ku-tsu-tzu-chih-hsien,T’ai-k’ang-chen,T’ai-k’ang-hsien 46.83333 124.41667 P PPL CN 08 55316 144 Asia/Harbin 2012-01-18
-2034602 Taijitun Taijitun Taijitun,tai ji tun,台集屯 41.05737 120.87204 P PPLA4 CN 19 0 55 Asia/Harbin 2012-01-18
-2034615 Tahe Tahe Ku-ch'i-ku,Ku-ch’i-ku,T'a-ho,Tahe,T’a-ho 52.33333 124.73333 P PPL CN 08 60874 432 Asia/Harbin 2012-01-18
-2034623 Suzigou Suzigou Su-tzu-kou,Suzigou,Suzigou Zhen,su zi gou,su zi gou zhen,苏子沟,苏子沟镇 40.40058 123.40854 P PPLA4 CN 19 0 124 Asia/Harbin 2012-01-18
-2034633 Sunjiapuzi Sunjiapuzi Sun-chia-p'u-tzu,Sun-chia-pao-tzu,Sun-chia-p’u-tzu,Sunjiapuzi,sun jia bao zi,孙家堡子 42.01706 126.58512 P PPLA3 CN 05 0 587 Asia/Harbin 2012-01-18
-2034638 Sujiatun Sujiatun Hsu-chia-t'un,Hsu-chia-t’un,Ssu-chia-t'un,Ssu-chia-t’un,Su-chia-t'un,Su-chia-t’un,Suczjatun',Sujiatun,Sukiatun,Суцзятунь 41.65917 123.33917 P PPL CN 19 148113 40 Asia/Harbin 2012-01-18
-2034647 Suizhong Suizhong Chung-hou-so,Sui-chung,Sui-chung-chen,Sui-chung-hsien,Suichun,Suizhong,Suizhong Xian,sui zhong,sui zhong xian,绥中,绥中县 40.32916 120.33653 P PPLA3 CN 19 0 16 Asia/Harbin 2012-01-18
-2034651 Suileng Suileng K'o-yin-ho,K’o-yin-ho,Sui-leng Hsien,Sui-leng-chen,Suileng 47.25 127.08333 P PPL CN 08 57124 183 Asia/Harbin 2012-01-18
-2034655 Suihua Suihua Pei-lin-tzu,Pei-t'uan-lin-tzu,Pei-t’uan-lin-tzu,Sui-hua-chen,Sui-hua-hsien,Sui-hwa,Suihua 46.64056 126.99694 P PPL CN 08 252245 181 Asia/Harbin 2012-01-18
-2034657 Suifenhe Suifenhe Pogranichinaya,Pogranichnaya,Sui-fen,Sui-fen-ho,Sui-fen-ho-shih,Suifenhe 44.4 131.16667 P PPL CN 08 15183 525 Asia/Harbin 2012-01-18
-2034675 Songshu Songshu Songshu,Songshu Zhen,Songshujie,Songshuzhen,Sung-shu-chen,song shu,song shu jie,song shu zhen,松树,松树街,松树镇 42.04361 127.10722 P PPLA4 CN 05 0 619 Asia/Harbin 2012-01-18
-2034691 Songjianghe Songjianghe Songjianghe,Songjianghe Zhen,Sung-chiang-ho,song jiang he,song jiang he zhen,松江河,松江河镇 42.1859 127.47895 P PPLA4 CN 05 67672 737 Asia/Harbin 2012-01-18
-2034694 Songjiang Songjiang An-t'u-hsien,An-t’u-hsien,Antu,Chiu-an-t'u,Chiu-an-t’u,Niang-niang-k'u,Niang-niang-k’u,Songjiang,Songjiang Zhen,Sung-chiang,Sung-chiang-chen,song jiang,song jiang zhen,松江,松江镇 42.5775 128.33417 P PPLA4 CN 05 0 561 Asia/Harbin 2012-01-18
-2034695 Songjiang Songjiang Songjiang,Songjiang Xiang,song jiang,song jiang xiang,松江,松江乡 42.22583 127.35611 P PPLA4 CN 05 0 718 Asia/Harbin 2012-01-18
-2034714 Siping Siping Siping,Ssu-p'ing,Ssu-p'ing-chieh,Ssu-p'ing-kai,Ssu-p'ing-shih,Ssu-p’ing,Ssu-p’ing-chieh,Ssu-p’ing-kai,Ssu-p’ing-shih,Szekingkai,Szeping,Szepingkai 43.16333 124.36861 P PPL CN 05 555609 170 Asia/Harbin 2012-01-18
-2034715 Sipeng Sipeng Sipeng,Sipeng Xiang,si peng,si peng xiang,四棚,四棚乡 41.86222 125.57222 P PPLA4 CN 05 0 519 Asia/Harbin 2012-01-18
-2034717 Simenzi Simenzi Simenzi,Simenzi Zhen,Ssu-men,si men zi,si men zi zhen,四门子,四门子镇 40.73333 123.81667 P PPLA4 CN 19 0 244 Asia/Harbin 2012-01-18
-2034725 Beisijiazi Beisijiazi Beisijiazi,Beisijiazi Xiang,Sijiazi,Ssu-chia-tzu,bei si jia zi,bei si jia zi xiang,北四家子,北四家子乡 42.84856 123.48586 P PPLA4 CN 19 0 88 Asia/Harbin 2012-01-18
-2034744 Si’erbao Si'erbao Si'erbao,Si'erbao Zhen,Si'erpu,Si’erbao,Si’erbao Zhen,Si’erpu,Ssu-erh-p'u,Ssu-erh-pao,Ssu-erh-p’u,si r bao,si r bao zhen,寺儿堡,寺儿堡镇 40.79661 120.73819 P PPLA4 CN 19 0 44 Asia/Harbin 2012-01-18
-2034747 Sidaogou Sidaogou Sidaogou,Sidaogou Zhen,Ssu-tao-kou,si dao gou,si dao gou zhen,四道沟,四道沟镇 41.74468 127.05164 P PPLA4 CN 05 0 389 Asia/Harbin 2012-01-18
-2034754 Shunyi Shunyi Shun'i,Shun-i,Shun-i-ch'u,Shun-i-ch’ü,Shun-i-hsien,Shunyi,Шуньи 40.125 116.64528 P PPL CN 22 117623 47 Asia/Harbin 2012-01-18
-2034758 Shulinzhao Shulinzhao Dalad Qi,Dalat,Dalate Qi,O-erh-to-ssu-tso-i-hou-ch'i,O-erh-to-ssu-tso-i-hou-ch'i-wang-fu,O-erh-to-ssu-tso-i-hou-ch’i,O-erh-to-ssu-tso-i-hou-ch’i-wang-fu,Shu-lin-chao,Shulin Jo,Shulin Jo Zhen,Shulinzhao,Shulinzhao Zhen,Ta-la-t'e-ch'i,Ta-la-t’e-ch’i,da la te qi,shu lin zhao,shu lin zhao zhen,树林召,树林召镇,达拉特旗 40.39278 110.02694 P PPLA3 CN 20 0 1011 Asia/Chongqing 2012-01-18
-2034761 Shulan Shulan Shu-lan-chen,Shu-lan-chieh,Shulan,Shulan',Ssu-chia-fang,Шулань 44.41667 126.95 P PPL CN 05 77420 233 Asia/Harbin 2012-01-18
-2034763 Shuiyuan Shuiyuan Shuiyuan,Shuiyuan Zhen,shui yuan,shui yuan zhen,水源,水源镇 40.80587 122.14809 P PPLA4 CN 19 0 3 Asia/Harbin 2012-01-18
-2034786 Shuangyashan Shuangyashan Chien-shan,Shuang-ya-shan-shih,Shuangyashan 46.63611 131.15389 P PPL CN CN 08 600000 200 Asia/Harbin 2012-01-18
-2034791 Shuangyang Shuangyang Shuang-yang-chen,Shuang-yang-ho,Shuang-yang-hsien,Shuangyang,Shwangyang,Suan-yang-ho 43.52417 125.67361 P PPL CN 05 62137 210 Asia/Harbin 2012-01-18
-2034797 Shuangtai Shuangtai Shuang-t'ai-tzu,Shuang-t’ai-tzu,Shuangtai,Shuangtai Zhen,Shuangtaizi,shuang tai,shuang tai zhen,双台,双台镇 40.21774 122.27405 P PPLA4 CN 19 0 59 Asia/Harbin 2012-01-18
-2034834 Shuangcheng Shuangcheng Schwang-tschong-ting,Schwang-tschöng-ting,Schwangcheng,Shuang-ch'eng-chen,Shuang-ch'eng-hsien,Shuang-ch'eng-pao,Shuang-ch’eng-chen,Shuang-ch’eng-hsien,Shuang-ch’eng-pao,Shuangcheng,Shwangcheng 45.35 126.28333 P PPL CN 08 130710 163 Asia/Harbin 2012-01-18
-2034843 Shizijie Shizijie Shizijie,Shizijie Zhen,shen zi jie,shen zi jie zhen,什字街,什字街镇 40.0619 122.48895 P PPLA4 CN 19 0 107 Asia/Harbin 2012-01-18
-2034852 Shixian Shixian Ka-ya-ho,Shih-hsien,Shixian,Shixian Zhen,shi xian,shi xian zhen,石岘,石岘镇 43.08333 129.76667 P PPLA4 CN 05 0 115 Asia/Harbin 2012-01-18
-2034881 Shiren Shiren Shih-jen,Shih-jen-kou,Shih-ju,Shiren,Shiren Zhen,shi ren,shi ren zhen,石人,石人镇 41.96298 126.56594 P PPLA4 CN 05 0 546 Asia/Harbin 2012-01-18
-2034883 Shiqi Shiqi Shih-ch'i-chieh,Shih-ch’i-chieh,Shiqi,Shiqijie,Xinhe Xiang,shi qi,xin he xiang,十骑,新合乡 42.95611 128.52722 P PPLA4 CN 05 0 600 Asia/Harbin 2012-01-18
-2034887 Shimiaozi Shimiaozi Shih-miao-tzu,Shimiaozi,Shimiaozi Zhen,shi miao zi,shi miao zi zhen,石庙子,石庙子镇 40.65692 123.51418 P PPLA4 CN 19 0 177 Asia/Harbin 2012-01-18
-2034893 Shimen Shimen Chatiaogou,Shimen,Shimen Zhen,shi men,shi men zhen,石门,石门镇 43.03333 129.01667 P PPLA4 CN 05 0 309 Asia/Harbin 2012-01-18
-2034912 Shihuiyao Shihuiyao Shih-hui-yao,Shihuiyao,Shihuiyao Zhen,shi hui yao,shi hui yao zhen,石灰窑,石灰窑镇 40.31263 123.10563 P PPLA4 CN 19 0 145 Asia/Harbin 2012-01-18
-2034914 Gongyi Gongyi Gongyi,Shih-hu,Shihu,Shihu Zhen,gong yi,shi hu zhen,公益,石湖镇 41.50912 126.28026 P PPLA4 CN 05 0 570 Asia/Harbin 2012-01-18
-2034918 Shiguai Shiguai Shiguai,Shiguai Jiedao,Shiguai Qu,Shiguaigou,Shih-kuai,Shih-kuai-chen,Shih-kuai-kou,Shih-kuai-kou-kung-ch'u,Shih-kuai-kou-kung-ch’ü,Shih-kuai-tzu,Shih-kuai-tzw,Shihkuaitsun,Xiguit Kuangqu,shi guai,shi guai jie dao,shi guai kuang qu,shi guai qu,石拐,石拐区,石拐矿区,石拐街道 40.70583 110.28556 P PPLA3 CN 20 70357 1337 Asia/Chongqing 2012-01-18
-2034923 Shi’erdaogou Shi'erdaogou Shi'erdaogou,Shi'erdaogou Xiang,Shih-erh-tao-kou,Shi’erdaogou,Shi’erdaogou Xiang,shi er dao gou,shi er dao gou xiang,十二道沟,十二道沟乡 41.46444 127.54444 P PPLA4 CN 05 0 505 Asia/Harbin 2012-01-18
-2034937 Shenyang Shenyang Feng-t'ien,Feng-t’ien,Moukden,Mukden,Senjangas,Shehn'jan,Shen-yang-hsien,Shen-yang-shih,Shengking,Shenyang,Shenyang Shi,Tham Duong,Thẩm Dương,chen yang,chen yang shi,seon-yang,shen yang,shnyangh,Šenjangas,Шэньян,شنيانغ,沈阳,沈阳市,沉阳市,瀋陽,선양 41.79222 123.43278 P PPLA CN 19 3512192 53 Asia/Harbin 2012-01-18
-2034954 Shengli Shengli Gaolimao,Kao-li-mao-tzu,Kao-li-miao,Kaolingyao,Pin-kung,Shengli,Shengli Zhen,Wanchun,sheng li,sheng li zhen,胜利,胜利镇 45.8 128.05 P PPLA4 CN 08 0 170 Asia/Harbin 2012-01-18
-2034995 Shanhetun Shanhetun Shan-ho-t'un,Shan-ho-t’un,Shanhetun 44.7 127.2 P PPL CN 08 57550 192 Asia/Harbin 2012-01-18
-2035002 Shangzhi Shangzhi Chu-he,Chu-ho,Chu-ho-hsien,Shang-chih,Shang-chih-chen,Shangzhi,Shangzhi Shi,Uchzukhe,Wu-chi-mi-ho,Wu-chu-ho,Wukimichan,Wukimiho,shang zhi,shang zhi shi,尚志,尚志市 45.21667 127.96667 P PPLA3 CN 08 82419 189 Asia/Harbin 2012-01-18
-2035014 Shangmatun Shangmatun Shangmatun,Shangmatun Xiang,shang ma tun,shang ma tun xiang,上麻屯,上麻屯乡 40.94306 123.36284 P PPLA4 CN 19 0 150 Asia/Harbin 2012-01-18
-2035019 Shangjiahe Shangjiahe Shang-chia-ho,Shangjiahe,Shangjiahe Zhen,shang jia he,shang jia he zhen,上夹河,上夹河镇 41.85005 124.48429 P PPLA4 CN 19 0 192 Asia/Harbin 2012-01-18
-2035032 Shangdu Shangdu Ch'i-t'ai,Ch’i-t’ai,Qitai,Qitai Zhen,Shandu,Shang Tou,Shang-tu,Shang-tu-ch'eng-kuan,Shang-tu-ch’eng-kuan,Shang-tu-hsien,Shang-tu-hsien-ch'eng,Shang-tu-hsien-ch’eng,Shangdu,Shangdu Xian,qi tai,qi tai zhen,shang dou,shang dou xian,七台,七台镇,商都,商都县 41.54944 113.53389 P PPLA3 CN 20 0 1371 Asia/Harbin 2012-01-18
-2035043 Shalizhai Shalizhai Sha-li-chai,Shalizhai,Shalizhai Zhen,sha li zhai,sha li zhai zhen,沙里寨,沙里寨镇 40.18132 123.68817 P PPLA4 CN 19 0 17 Asia/Harbin 2012-01-18
-2035061 Shahe Shahe Shahe,Shahe Zhen,sha he,sha he zhen,沙河,沙河镇 40.27391 120.24627 P PPLA4 CN 19 0 30 Asia/Harbin 2012-01-18
-2035062 Shaheying Shaheying Shaheying,Shaheying Xiang,sha he ying,sha he ying xiang,沙河营,沙河营乡 40.82526 120.76331 P PPLA4 CN 19 0 46 Asia/Harbin 2012-01-18
-2035070 Shaguotun Shaguotun Sha-kuo-t'un,Sha-kuo-t’un,Shaguotun,Shaguotun Jiedao,Wei-tung,sha guo tun,沙锅屯 41.1313 120.69131 P PPLA4 CN 19 0 126 Asia/Harbin 2012-01-18
-2035071 Shagang Shagang Sha-kang,Shagang,Shagang Zhen,sha gang,sha gang zhen,沙岗,沙岗镇 40.34942 122.25702 P PPLA4 CN 19 0 12 Asia/Harbin 2012-01-18
-2035090 Santun Santun San-t'un-pao,San-tung-p'u,San-tung-pao,San-tung-p’u,San-t’un-pao,Santun,Santun Xiang,san tun,san tun xiang,三屯,三屯乡 40.1 112.71667 P PPLA4 CN 24 0 1343 Asia/Shanghai 2012-01-18
-2035092 Sandaowan Sandaowan San-tao-wai,Sandao,Sandaowan,Sandaowan Zhen,Santouwai,san dao wan,san dao wan zhen,三道湾,三道湾镇 43.16556 129.17444 P PPLA4 CN 05 0 409 Asia/Harbin 2012-01-18
-2035119 Sankeyushu Sankeyushu San-k'o-yu-shu,San-k’o-yü-shu,Sankeyushu,Sankeyushu Zhen,san ke yu shu,san ke yu shu zhen,三棵榆树,三棵榆树镇 41.74194 125.38944 P PPLA4 CN 05 0 440 Asia/Harbin 2012-01-18
-2035130 Sanjiazi Sanjiazi San-chia-tzu,Sanjiazi,Sanjiazi Zhen,san jia zi,san jia zi zhen,三家子,三家子镇 40.66806 123.33139 P PPLA4 CN 19 0 178 Asia/Harbin 2012-01-18
-2035142 Sanhe Sanhe San-ho,San-ho-ts'un,San-ho-ts’un,Sanhe,Sanhe Zhen,san he,san he zhen,三合,三合镇 42.47532 129.73585 P PPLA4 CN 05 0 233 Asia/Harbin 2012-01-18
-2035164 Jinjiadian Jinjiadian Jinjiadian,San-tao-hu,Sandaohu,Sandaohu Zhen,jin jia dian,san dao hu zhen,三道湖镇,金家店 42.34361 126.88917 P PPLA4 CN 05 0 600 Asia/Harbin 2012-01-18
-2035180 Sandao Sandao San-tao,Sandao,Sandao Xiang,san dao,san dao xiang,三道,三道乡 42.52778 128.44944 P PPLA4 CN 05 0 606 Asia/Harbin 2012-01-18
-2035182 Sanchazi Sanchazi Hsia-tien-tzu,San-ch'a-tze,San-ch'a-tzu,San-ch’a-tze,San-ch’a-tzu,Sanchazi 42.08167 126.60028 P PPL CN 05 66576 558 Asia/Harbin 2012-01-18
-2035189 Sanchahe Sanchahe San-ch'a-ho,San-ch'a-ho-chieh,San-ch’a-ho,San-ch’a-ho-chieh,San-ho-ch'a,San-ho-ch’a,Sanchahe,Shih-t'ou-ch'eng,Shih-t'ou-ch'eng-tzu,Shih-t’ou-ch’eng,Shih-t’ou-ch’eng-tzu,san cha he,三岔河 44.96306 126.01532 P PPLA3 CN 05 0 197 Asia/Harbin 2012-01-18
-2035196 Salaqi Salaqi Sa-hsien,Sa-la-ch'i,Sa-la-ch'i-hsien,Sa-la-ch’i,Sa-la-ch’i-hsien,Salaqi,Salatsi,Salqin,Saratsi,Saratsi-ting,T'u-mo-t'e-yu-ch'i,Tumd Youqi,Tumoteyou Qi,T’u-mo-t’e-yu-ch’i,sa la qi,tu mo te you qi,土默特右旗,萨拉齐 40.54139 110.51083 P PPLA3 CN 20 64704 1000 Asia/Chongqing 2012-01-18
-2035202 Saihan Tal Saihan Tal Sai-han-t'a-la,Sai-han-t’a-la,Saihan Tal,Saihantala,Saihantala Zhen,Sonid Youqi,Su-ni-t'e-yu-ch'i,Su-ni-t’e-yu-ch’i,Suniteyou Qi,sai han ta la,sai han ta la zhen,su ni te you qi,苏尼特右旗,赛汉塔拉,赛汉塔拉镇 42.73583 112.65139 P PPLA3 CN 20 0 1107 Asia/Harbin 2012-01-18
-2035212 Rongxing Rongxing Rongxing,Rongxing Chaoxianzu Xiang,Rongxing Zhen,rong xing,rong xing chao xian zu xiang,rong xing zhen,荣兴,荣兴朝鲜族乡,荣兴镇 40.77838 122.08451 P PPLA4 CN 19 0 2 Asia/Harbin 2012-01-18
-2035225 Ranghulu Ranghulu Jang-hu-lu,Ranghulu,Ya-hu-lu-p'ao,Ya-hu-lu-p’ao 46.65 124.86667 P PPL CN 08 226298 147 Asia/Harbin 2012-01-18
-2035231 Qujiadian Qujiadian Ch'u-chia-tien,Ch’ü-chia-tien,Qujiadian,Qujiadian Xiang,qu jia dian,qu jia dian xiang,曲家店,曲家店乡 43.22226 123.92924 P PPLA4 CN 19 0 113 Asia/Harbin 2012-01-18
-2035234 Quanyang Quanyang Ch'uan-yang,Ch'uan-yang-ho-tzu,Ch’üan-yang,Ch’üan-yang-ho-tzu,Quanyang,Quanyang Zhen,quan yang,quan yang zhen,泉阳,泉阳镇 42.35167 127.54528 P PPLA4 CN 05 0 734 Asia/Harbin 2012-01-18
-2035237 Quantou Quantou Ch'uan-t'ou,Ch’üan-t’ou,Quantou,Quantou Zhen,quan tou,泉头 42.86537 124.17032 P PPLA4 CN 19 0 176 Asia/Harbin 2012-01-18
-2035261 Qitaihe Qitaihe Ch'i-ho-ho,Ch'i-t'ai-ho,Ch’i-ho-ho,Ch’i-t’ai-ho,Qitaihe 45.8 130.85 P PPL CN 08 345033 214 Asia/Harbin 2012-01-18
-2035265 Qiqihar Qiqihar Ch'i-ch'i-ha-erh,Ch'i-ch'i-ha-erh-shih,Ch’i-ch’i-ha-erh,Ch’i-ch’i-ha-erh-shih,Cicikar,Lung-chiang,Lung-chiang-hsien,Lungkiang,Qiqihar,Tsitsihar,Zizikar,chichiha-eol,chichiharu,qi qi ha er shi,Цицикар,チチハル,齐齐哈尔市,치치하얼 47.34083 123.96722 P PPL CN 08 882364 151 Asia/Harbin 2012-01-18
-2035287 Qingshiling Qingshiling Qingshiling,Qingshiling Zhen,qing shi ling,qing shi ling zhen,青石岭,青石岭镇 40.47531 122.41399 P PPLA4 CN 19 0 18 Asia/Harbin 2012-01-18
-2035289 Qingshi Qingshi Qingshi,Qingshi Zhen,qing shi,qing shi zhen,青石,青石镇 41.35938 126.51296 P PPLA4 CN 05 0 255 Asia/Harbin 2012-01-18
-2035297 Qingshan Qingshan Ch'ing-shan,Ch'ing-shan-p'u,Ch'ing-shan-pao,Ch’ing-shan,Ch’ing-shan-pao,Ch’ing-shan-p’u,Qingshan,Qingshan Xiang,qing shan,qing shan xiang,青山,青山乡 45.08915 126.89946 P PPLA4 CN 05 0 173 Asia/Harbin 2012-01-18
-2035311 Qinghecheng Qinghecheng Ch'ing-ho-ch'eng,Ch’ing-ho-ch’eng,Qinghecheng,Qinghecheng Zhen,Tsinghocheng,Tsinkhechen,qing he cheng,qing he cheng zhen,清河城,清河城镇 41.4546 124.22521 P PPLA4 CN 19 0 271 Asia/Harbin 2012-01-18
-2035319 Qinghe Qinghe Ch'ing-ho,Ch’ing-ho,Qinghe,Qinghe Zhen,qing he,qing he zhen,清河,清河镇 41.43874 125.92865 P PPLA4 CN 05 0 414 Asia/Harbin 2012-01-18
-2035322 Qinggis Han Qinggis Han Ch'ang-ch'i-ssu-hau,Ch'eng-chi-ssu-han,Chengjisihan Zhen,Chiang-ch'i-ssu-hsu,Chiang-ch’i-ssu-hsu,Chingghis-Khan,Ch’ang-ch’i-ssu-hau,Ch’eng-chi-ssu-han,Hsin-chan,Qinggis Han,cheng ji si han,cheng ji si han zhen,成吉思汗,成吉思汗镇 47.75 122.83333 P PPLA4 CN 20 0 260 Asia/Harbin 2012-01-18
-2035325 Qinggang Qinggang Ch'ing-kang,Ch'ing-kang-chen,Ch'ing-kang-hsien,Ch’ing-kang,Ch’ing-kang-chen,Ch’ing-kang-hsien,Qinggang,Tsingkang,Tso-shu-kang 46.68333 126.08333 P PPL CN 08 64182 205 Asia/Harbin 2012-01-18
-2035328 Qingduizi Qingduizi Ch'ing-tui-tzu,Ch’ing-tui-tzu,Qingduizi,Qingduzi Zhen,qing dui zi,qing dui zi zhen,青堆子,青堆子镇 41.44561 121.90848 P PPLA4 CN 19 0 0 8 Asia/Harbin 2012-01-18
-2035332 Qingchengzi Qingchengzi Ch'ing-ch'eng,Ch'ing-ch'eng-tzu,Ch’ing-ch’eng,Ch’ing-ch’eng-tzu,Qingchengzi,Qingchengzi Zhen,qing cheng zi,qing cheng zi zhen,青城子,青城子镇 40.73028 123.605 P PPLA4 CN 19 0 261 Asia/Harbin 2012-01-18
-2035344 Qikou Qikou Ch'i-k'ou,Ch’i-k’ou,Lan-ch'i-k'ou-ts'un,Lan-ch'i-p'u,Lan-ch’i-k’ou-ts’un,Lan-ch’i-p’u,Qikou,Qikou Zhen,qi kou,qi kou zhen,旗口,旗口镇 40.85492 122.42336 P PPLA4 CN 19 0 6 Asia/Harbin 2012-01-18
-2035368 Qidaogou Qidaogou Ch'i-tao-kou,Ch’i-tao-kou,Qidaogou,Qidaogou Zhen,qi dao gou,qi dao gou zhen,七道沟,七道沟镇 41.54713 126.30306 P PPLA4 CN 05 0 610 Asia/Harbin 2012-01-18
-2035379 Guta Guta Ch'ien-t'un-we,Ch'ien-t'un-wei,Ch'ien-wei,Ch’ien-t’un-we,Ch’ien-t’un-wei,Ch’ien-wei,Guta,Qianwei,Qianwei Zhen,gu ta,qian wei,qian wei zhen,前卫,前卫镇,古塔 40.19084 120.09834 P PPLA4 CN 19 0 34 Asia/Harbin 2012-01-18
-2035381 Qiansuo Qiansuo Chung-ch'ien-so,Chung-ch’ien-so,Qiansuo,Qiansuo Zhen,qian suo,qian suo zhen,前所,前所镇 40.09486 119.94776 P PPLA4 CN 19 0 11 Asia/Harbin 2012-01-18
-2035399 Qianguo Qianguo Ch'ia-la-tien,Ch'ien-kuo-ch'i,Ch'ien-kuo-chen,Ch'ien-kuo-erh-lo-ssu,Ch'ien-kuo-erh-lo-ssu-meng-ku-tsu-tzu-chih-hsien,Ch’ia-la-tien,Ch’ien-kuo-chen,Ch’ien-kuo-ch’i,Ch’ien-kuo-erh-lo-ssu,Ch’ien-kuo-erh-lo-ssu-meng-ku-tsu-tzu-chih-hsien,Front Korlis Mongolian Autonomous County,Kuo-ch'ien-chi,Kuo-ch’ien-chi,Kuo-erh-lo-ssu-ch'ien-ch'i,Kuo-erh-lo-ssu-ch’ien-ch’i,Qian Gorlos,Qianguo,qian guo,前郭 45.11712 124.85676 P PPLA3 CN 05 113611 133 Asia/Harbin 2012-01-18
-2035410 Qian’an Qian'an Ch'ang-fa-t'un,Ch'ien-an,Ch'ien-an-chen,Ch’ang-fa-t’un,Ch’ien-an,Ch’ien-an-chen,Qian'an,Qian’an,Tsyan'an,Tsyan’an,gan an,乾安 44.99324 124.05811 P PPLA3 CN 05 0 143 Asia/Harbin 2012-01-18
-2035416 Qasq Qasq Ch'a-su-ch'i,Ch’a-su-ch’i,Qasq,T'u-mo-t'e-tso-ch'i,Tu-mo-t'e-ch'i,Tu-mo-t’e-ch’i,Tumd Zuoqi,Tumoteyou Qi,T’u-mo-t’e-tso-ch’i,cha su qi,tu mo te you qi,土默特右旗,察素齐 40.71222 111.12889 P PPLA3 CN 20 0 1026 Asia/Chongqing 2012-01-18
-2035434 Ming’antu Ming'antu Ch'a-han-nao,Ch'a-han-nao-erh,Chagannao'er,Chagannao’er,Cheng-hsiang-pai-ch'i,Cheng-hsiang-pai-ch’i,Ch’a-han-nao,Ch’a-han-nao-erh,Ho-shih-miao,Ming'antu,Ming'antu Zhen,Ming’antu,Ming’antu Zhen,Qagan Nur,Zhengxiangbai Qi,cha gan nao er,he shuo miao,ming an tu,ming an tu zhen,zheng xiang bai qi,和硕庙,明安图,明安图镇,查干淖尔,正镶白旗 42.30278 114.99333 P PPLA3 CN 20 0 1341 Asia/Harbin 2012-01-18
-2035453 Pingzhuang Pingzhuang P'ing-chuang,Pingzhuang,Pingzhuang Zhen,P’ing-chuang,Yuanbaoshan Qu,ping zhuang,ping zhuang zhen,yuan bao shan qu,元宝山区,平庄,平庄镇 42.03722 119.28889 P PPLA3 CN 20 67273 514 Asia/Harbin 2012-01-18
-2035463 Pingshan Pingshan Erh-tao-ho,Erh-tao-ho-tzu,Pingshan,Pingshan Zhen,ping shan,ping shan zhen,平山,平山镇 45.32291 127.39758 P PPLA4 CN 08 0 227 Asia/Harbin 2012-01-18
-2035476 Pingdingshan Pingdingshan P'ing-ting-shan,Pindinshan',Pindinshan’,Pingdingshan,Pingdingshan Zhen,P’ing-ting-shan,ping ding shan,ping ding shan zhen,平顶山,平顶山镇 41.41296 124.76227 P PPLA4 CN 19 0 396 Asia/Harbin 2012-01-18
-2035493 Ping’an Ping'an Ping'an,Ping'an Xiang,Ping’an,Ping’an Xiang,ping an,ping an xiang,平安,平安乡 40.88238 122.15858 P PPLA4 CN 19 0 4 Asia/Harbin 2012-01-18
-2035511 Panshi Panshi Mo-p'a-shan,Mo-p'an-shan,Mo-p’a-shan,Mo-p’an-shan,P'an-shih,P'an-shih-chen,P'an-shih-hsien,Pan'shi,Panshi,Panshihtun,P’an-shih,P’an-shih-chen,P’an-shih-hsien,Паньши 42.94222 126.05611 P PPL CN 05 80200 323 Asia/Harbin 2012-01-18
-2035513 Panshan Panshan P'an-shan-chen,P'an-shan-hsien,Panshan,P’an-shan-chen,P’an-shan-hsien,Shuang-t'ai-tzu,Shuang-t’ai-tzu 41.18806 122.04944 P PPL CN 19 625040 9 Asia/Harbin 2012-01-18
-2035559 Nuanchitang Nuanchitang Nuan-ch'ih-t'ang,Nuan-ch’ih-t’ang,Nuanchitang,Nuanchitang Zhen,nuan chi tang,nuan chi tang zhen,暖池塘,暖池塘镇 41.02803 120.66386 P PPLA4 CN 19 0 94 Asia/Harbin 2012-01-18
-2035565 Nong’an Nong'an Ku-huang-lung-fu,Lungwan,Nong'an,Nong’an,Nung-an,Nung-an-chen,Nung-an-hsien,nong an,农安 44.38198 125.16847 P PPLA3 CN 05 0 171 Asia/Harbin 2012-01-18
-2035566 Lubei Lubei Lubei,Niu-chuang,Niu-chuang-ch'eng,Niu-chuang-ch’eng,Niuzhuang,Niuzhuang Zhen,lu bei,niu zhuang zhen,牛庄镇,路北 40.94801 122.52748 P PPLA4 CN 19 0 11 Asia/Harbin 2012-01-18
-2035572 Niuxinbu Niuxinbu Niu-hsin-p'u,Niu-hsin-pao,Niu-hsin-p’u,Niuxinbu,Niuxinbu Xiang,niu xin bao,niu xin bao xiang,牛心堡,牛心堡乡 40.0522 112.52288 P PPLA4 CN 24 0 1433 Asia/Shanghai 2012-01-18
-2035583 Nirji Nirji Busi,Hsi-pu-t'e-ha,Hsi-pu-t’e-ha,I-pu-ch'i,I-pu-ch’i,Irutsi,Mo-li-ta-wa-ch'i,Mo-li-ta-wa-ch’i,Mo-li-ta-wa-ta-wo-erh-tsu-tzu-chih-ch'i,Mo-li-ta-wa-ta-wo-erh-tsu-tzu-chih-ch’i,Molidawa Dawo'erzu Zizhiqi,Molidawa Dawo’erzu Zizhiqi,Morin Dawa,Morin Dawa Daurzu Zizhiqi,Ni'erji,Ni'erji Zhen,Ni-erh-chi,Nirji,Ni’erji,Ni’erji Zhen,Pu-hsi,Pu-hsi-hsien,Pushi,Ta-kan-erh-tsu-tzu-chih-ch'i,Ta-kan-erh-tsu-tzu-chih-ch’i,mo li da wa da wo er zu zi zhi qi,ni er ji,ni er ji zhen,尼尔基,尼尔基镇,莫力达瓦达斡尔族自治旗 48.48333 124.48333 P PPLA3 CN 20 0 195 Asia/Harbin 2012-01-18
-2035593 Nianzishan Nianzishan Ch'ien-nien-tzu-shan,Ch’ien-nien-tzu-shan,Nianzishan,Nien-tzu-shan,Nien-tzu-shan-chan 47.51667 122.88333 P PPL CN 08 62131 234 Asia/Harbin 2012-01-18
-2035595 Nianpan Nianpan Nianpan,Nianpan Xiang,nian pan,nian pan xiang,碾盘,碾盘乡 41.82134 124.03763 P PPLA4 CN 19 0 102 Asia/Harbin 2012-01-18
-2035601 Nenjiang Nenjiang Mergen,Mo-erh-ken,Nen-ch'eng,Nen-ch'eng-hsien,Nen-chiang,Nen-chiang-chen,Nen-ch’eng,Nen-ch’eng-hsien,Nenjiang,Nenkiang,Nun Cheng,Nun-ch'iang,Nun-ch'ien,Nun-ch’iang,Nun-ch’ien,Nunkiang,Nunkianghsien,Nünkianghsien 49.18333 125.21667 P PPL CN 08 87236 225 Asia/Harbin 2012-01-18
-2035610 Nehe Nehe Bordo,Bordotschan,NEHKHEH,Na-ho,Ne-ho,Nehe,Nekhe,No-ho,No-ho-chen,No-ho-hsien,Nê-ho,Po-erh-to,Porto,НЭХЭ 48.48333 124.83333 P PPL CN 08 108253 197 Asia/Harbin 2012-01-18
-2035613 Na’erhong Na'erhong Na'erhong,Na'erhong Zhen,Na-erh-hung,Narhong,Na’erhong,Na’erhong Zhen,na er hong,na er hong zhen,那尔轰,那尔轰镇 42.69139 126.99153 P PPLA4 CN 05 0 419 Asia/Harbin 2012-01-18
-2035617 Naozhi Naozhi Naozhi,Naozhi Zhen,nao zhi,nao zhi zhen,闹枝,闹枝镇 41.92618 127.02434 P PPLA4 CN 05 0 508 Asia/Harbin 2012-01-18
-2035622 Nanzamu Nanzamu Nan-cha-mu-huo-lo,Nan-tsa-mu,Nan-tsa-mu-huo-lo,Nanzamu,Nanzamu Zhen,nan za mu,nan za mu zhen,南杂木,南杂木镇 41.96927 124.41101 P PPLA4 CN 19 0 141 Asia/Harbin 2012-01-18
-2035635 Nantai Nantai Nantai,Nantai Zhen,nan tai,nan tai zhen,南台,南台镇 40.9241 122.80437 P PPLA4 CN 19 56478 34 Asia/Harbin 2012-01-18
-2035643 Nanping Nanping Dehua Zhen,Nanping,Nanping Zhen,de hua zhen,nan ping,nan ping zhen,南坪,南坪镇,德化镇 42.26292 129.20444 P PPLA4 CN 05 0 440 Asia/Harbin 2012-01-18
-2035644 Nanpiao Nanpiao Nanpiao,Pien-lien-tzu,nan piao,南票 41.09822 120.74792 P PPLA3 CN 19 157044 98 Asia/Harbin 2012-01-18
-2035649 Nankouqian Nankouqian Nan-k'ou-ch'ien,Nan-k’ou-ch’ien,Nankouqian,Nankouqian Zhen,nan kou qian,nan kou qian zhen,南口前,南口前镇 41.98659 124.60082 P PPLA4 CN 19 0 185 Asia/Harbin 2012-01-18
-2035666 Nandianzi Nandianzi Goukou,Nan-tien,Nan-tien-tzu,Nandian,Nandianzi,Nandianzi Zhen,gou kou,nan dian zi,nan dian zi zhen,南甸子,南甸子镇,沟口 41.28177 124.37024 P PPLA4 CN 19 0 262 Asia/Harbin 2012-01-18
-2035669 Nancha Nancha Nan-ch'a-t'un,Nan-ch’a-t’un,Nancha 47.13333 129.26667 P PPL CN 08 121367 169 Asia/Harbin 2012-01-18
-2035677 Naji Naji A-jung-ch'i,A-jung-ch’i,Aron,Arong Qi,Arun Qi,Na-chi,Na-chi-t'un,Na-chi-t’un,Naji,Najitun,a rong qi,na ji,那吉,阿荣旗 48.1 123.48333 P PPLA3 CN 20 0 212 Asia/Harbin 2012-01-18
-2035687 Muyuzi Muyuzi Mu-yu-tzu,Mu-yü-tzu,Muyuzi,Muyuzi Zhen,mu yu zi,mu yu zi zhen,木盂子,木盂子镇 41.38175 124.95503 P PPLA4 CN 19 0 423 Asia/Harbin 2012-01-18
-2035697 Muqi Muqi Muqi,Muqi Zhen,mu qi,mu qi zhen,木奇,木奇镇 41.77181 124.62021 P PPLA4 CN 19 0 224 Asia/Harbin 2012-01-18
-2035698 Muniu Muniu Muniu,Muniu Xiang,mu niu,mu niu xiang,牧牛,牧牛乡 40.65822 123.22553 P PPLA4 CN 19 0 276 Asia/Harbin 2012-01-18
-2035705 Mulan Mulan Mu-lan-chen,Mu-lan-hsien,Mulan,Mulan Xian,Mulan Zhen,Wu-chan,mu lan,mu lan xian,mu lan zhen,木兰,木兰县,木兰镇 45.94715 128.03706 P PPLA3 CN 08 0 115 Asia/Harbin 2012-01-18
-2035707 Mujiayingzi Mujiayingzi 42.11667 118.78333 P PPL CN 20 60627 687 Asia/Harbin 2006-01-17
-2035715 Mudanjiang Mudanjiang Mu-tan-chiang,Mu-tan-chiang-shih,Mudan'czjan,Mudanjiang,Mutankiang,mu dan jiang,mu dan jiang shi,Муданьцзян,牡丹江,牡丹江市 44.58333 129.6 P PPL CN 08 665915 242 Asia/Harbin 2012-01-18
-2035746 Mishan Mishan Dunan,Hsin-mi-shan,Mi-shan-chen,Mishan,Mishan',Tung-an,Мишань 45.55 131.88333 P PPL CN 08 87257 134 Asia/Harbin 2012-01-18
-2035749 Minyi Minyi Minyi,Minyi Xiang,min yi,min yi xiang,民意,民意乡 44.92554 127.29698 P PPLA4 CN 08 0 206 Asia/Harbin 2012-01-18
-2035754 Mingyue Mingyue An-t'u,An-t'u-hsien,An-t’u,An-t’u-hsien,Antuzhan,Ming-yueh-chen,Ming-yueh-kou,Ming-yueh-kou-chen,Ming-yüeh-chen,Ming-yüeh-kou,Ming-yüeh-kou-chen,Mingyue,Mingyuegou,Weng-sheng-la-tzu,ming yue,明月 43.10694 128.92167 P PPLA3 CN 05 58872 378 Asia/Harbin 2012-01-18
-2035758 Mingshui Mingshui Hsing-lung-chen,Ming-shui-chen,Ming-shui-hsien,Mingshui 47.16667 125.91667 P PPL CN 08 59369 236 Asia/Harbin 2012-01-18
-2035759 Mingshui Mingshui Mingshui,Mingshui Manzuxiang,ming shui,ming shui man zu xiang,明水,明水满族乡 40.36166 119.88781 P PPLA4 CN 19 0 143 Asia/Harbin 2012-01-18
-2035764 Mijiang Mijiang Mi-chiang,Mi-chiang-t'un,Mi-chiang-t’un,Mijiang,Mijiang Xiang,mi jiang,mi jiang xiang,密江,密江乡 42.99611 130.14083 P PPLA4 CN 05 0 72 Asia/Harbin 2012-01-18
-2035801 Meihekou Meihekou Hai-lung,Hai-lung-hsien,Hailong,Mei-ho-k'ou,Mei-ho-k'ou-chen,Mei-ho-kow,Mei-ho-k’ou,Mei-ho-k’ou-chen,Meihekou 42.52722 125.67528 P PPL CN 05 99419 329 Asia/Harbin 2012-01-18
-2035805 Mazhonghe Mazhonghe Mazhonghe,Mazhonghe Zhen,ma zhong he,ma zhong he zhen,马仲河,马仲河镇 42.71452 124.02332 P PPLA4 CN 19 0 112 Asia/Harbin 2012-01-18
-2035812 Mayihe Mayihe Ma-i-ho,Mayihe,Mayihe Xiang,ma yi he,ma yi he xiang,蚂蚁河,蚂蚁河乡 41.81583 127.11417 P PPLA4 CN 05 0 479 Asia/Harbin 2012-01-18
-2035831 Mao’ershan Mao'ershan Mao'ershan,Mao'ershan Zhen,Mao-erh-shan,Mao-shan,Maoerhshanchan,Mao’ershan,Mao’ershan Zhen,mao r shan,mao r shan zhen,帽儿山,帽儿山镇 45.27555 127.50285 P PPLA4 CN 08 0 252 Asia/Harbin 2012-01-18
-2035836 Manzhouli Manzhouli Lu-pin-hsien,Lupin,MAN'CHZHURIJA,Man-chou-li,Man-chou-li-shih,Man-chow-li,Manchuli,Manchuria,Manchuriya,Manchzhuriya,Mandschurei,Manzhouli,man zhou li,man zhou li shi,man'chzhurija,manjeouli,manzhuur,МАНЬЧЖУРИЯ,Манжуур,Маньчжурия,満州里,満州里市,满洲里市,만저우리 49.6 117.43333 P PPL CN 20 54808 651 Asia/Harbin 2012-01-18
-2035840 Manjiang Manjiang Man-chiang,Man-chiang-ts'un,Man-chiang-ts’un,Manjiang,Manjiang Zhen,man jiang,man jiang zhen,漫江,漫江镇 41.94756 127.59084 P PPLA4 CN 05 0 814 Asia/Harbin 2012-01-18
-2035850 Mandalt Mandalt Man-tu-la-t'u,Man-tu-la-t’u,Mandalt,Mandulatu,Mandulatu Zhen,Pei-le-miao,Pei-lo-miao,Sonid Zuoqi,Su-ni-t'e-tso-ch'i,Su-ni-t’e-tso-ch’i,Sunitezuo Qi,man dou la tu,man dou la tu zhen,su ni te zuo qi,满都拉图,满都拉图镇,苏尼特左旗 43.84028 113.71556 P PPLA3 CN 20 0 1104 Asia/Harbin 2012-01-18
-2035866 Majunying Majunying Ma-chun-ying,Ma-chün-ying,Majunying,Majunying Xiang,ma jun ying,ma jun ying xiang,马军营,马军营乡 40.09083 113.22472 P PPLA4 CN 24 0 1079 Asia/Shanghai 2012-01-18
-2035867 Majuanzi Majuanzi Ma-ch'uan-zi,Ma-ch’üan-zi,Majuanzi,Majuanzi Xiang,ma quan zi,ma quan zi xiang,马圈子,马圈子乡 41.52546 124.36977 P PPLA4 CN 19 0 324 Asia/Harbin 2012-01-18
-2035880 Mafeng Mafeng Mafeng,Mafeng Zhen,ma feng,ma feng zhen,马风,马风镇 40.80895 122.9095 P PPLA4 CN 19 0 67 Asia/Harbin 2012-01-18
-2035884 Tongshanjie Tongshanjie Madang,Madang Zhen,Tongshanjie,ma dang,ma dang zhen,tong shan jie,铜山街,马当,马当镇 41.84004 125.85003 P PPLA4 CN 05 0 598 Asia/Harbin 2012-01-18
-2035896 Lüyang Luyang Lu-yang-i,Luyang,Luyang Zhen,Luyangyi,Lü-yang-i,Lüyang,Lüyang Zhen,Lüyangyi,Yen-yang-tse,lu yang,lu yang zhen,闾阳,闾阳镇 41.38192 121.66632 P PPLA4 CN 19 0 0 16 Asia/Harbin 2012-01-18
-2035897 Lüwang Luwang Luwang,Luwang Zhen,Lüwang,Lüwang Zhen,lu wang,lu wang zhen,吕王,吕王镇 40.39971 122.87292 P PPLA4 CN 19 0 281 Asia/Harbin 2012-01-18
-2035899 Lushuihe Lushuihe Hsi-nan-ch'a,Hsi-nan-ch’a,Lu-shui-ho,Lushuihe,Lushuihe Zhen,lu shui he,lu shui he zhen,露水河,露水河镇 42.519 127.78258 P PPLA4 CN 05 0 744 Asia/Harbin 2012-01-18
-2035900 Luozigou Luozigou Ku-ch'eng,Ku-ch’eng,Lo-tzu-kou,Luozigou,Luozigou Zhen,Sui-fen,Sui-fen-ta-tien-tzu,luo zi gou,luo zi gou zhen,罗子沟,罗子沟镇 43.72932 130.34042 P PPLA4 CN 05 0 380 Asia/Harbin 2012-01-18
-2035911 Luoluopu Luoluopu Luoluopu,Luoluopu Zhen,luo luo bao,luo luo bao zhen,罗罗堡,罗罗堡镇 41.55291 121.7142 P PPLA4 CN 19 0 0 63 Asia/Harbin 2012-01-18
-2035930 Lubei Lubei Cha-lu-t'e-ch'i,Cha-lu-t’e-ch’i,Jarod,Jarud Qi,Lu-pei,Lu-pei-chieh,Lu-pei-hsien,Lubai,Lubei,Lubei Zhen,Lubey,Lupeh,Zhalute Qi,lu bei,lu bei zhen,zha lu te qi,扎鲁特旗,鲁北,鲁北镇 44.61667 120.96667 P PPLA3 CN 20 0 355 Asia/Harbin 2012-01-18
-2035966 Longjing Longjing Liu-tao-kou,Longjing,Lung-ching,Lung-ching-chen,Lung-ching-chieh,Lung-ching-shih,Lung-ching-ts'un,Lung-ching-ts’un,Luntszintsun,Ryuseison,Ryūseison,Yanji,Yen-chi-hsien,Yonjontsuon,long jing,龙井 42.77139 129.42333 P PPLA3 CN 05 117185 245 Asia/Harbin 2012-01-18
-2035970 Longjiang Longjiang Chu-chia-k'an,Chu-chia-k’an,Chukiakan,Lonczjan,Longjiang,Lung-chiang,Lung-chiang-chen,T'u-erh-ch'ih-ha,T’u-erh-ch’ih-ha,Лонцзян 47.33028 123.18361 P PPL CN 08 106384 182 Asia/Harbin 2012-01-18
-2035980 Longfeng Longfeng Longfeng,Lung-feng,Lung-feng-shan 46.55 125.11667 P PPL CN 08 152074 143 Asia/Harbin 2012-01-18
-2035999 Liushutun Liushutun Liushutun,Liushutun Muguzu Manzuxiang,liu shu tun,liu shu tun meng gu zu man zu xiang,柳树屯,柳树屯蒙古族满族乡 42.62679 122.96776 P PPLA4 CN 19 0 91 Asia/Harbin 2012-01-18
-2036019 Liujiahe Liujiahe Liu-chia-ho,Liujiahe,Liujiahe Zhen,liu jia he,liu jia he zhen,刘家河,刘家河镇 40.66961 123.97929 P PPLA4 CN 19 0 133 Asia/Harbin 2012-01-18
-2036030 Liuhe Liuhe Liuhe,Liuhe Zhen,liu he,liu he zhen,柳河,柳河镇 46.01162 127.71875 P PPLA4 CN 08 0 112 Asia/Harbin 2012-01-18
-2036033 Liuhe Liuhe Liu-ho,Liu-ho-chen,Liu-ho-hsien,Liu-hu-ch'eng,Liu-hu-ch’eng,Liu-shu-ho-tzu,Liuhe,Ljukheh,Luiho,liu he,Люхэ,柳河 42.24007 125.71717 P PPLA3 CN 05 66975 399 Asia/Harbin 2012-01-18
-2036045 Liudaogou Liudaogou Liu-tao-kou,Liudaogou,Liudaogou Zhen,liu dao gou,liu dao gou zhen,六道沟,六道沟镇 41.60479 127.18795 P PPLA4 CN 05 0 505 Asia/Harbin 2012-01-18
-2036046 Liudaogou Liudaogou Guosong Zhen,Liu-tao-kou,Liu-tao-kou-t'un,Liu-tao-kou-t’un,Liudaogou,Ta-lo-ch'uan He,Ta-lo-ch’üan He,guo song zhen,liu dao gou,六道沟,果松镇 41.6081 126.25227 P PPLA4 CN 05 0 497 Asia/Harbin 2012-01-18
-2036055 Lishu Lishu Chiu-li-shu,Feng-hua,Fenghwa,Li-shu-chen,Li-shu-hsien,Lishat',Lishu,Mai-mai-chieh,li shu,Лишать,梨树 43.30472 124.32778 P PPLA3 CN 05 61584 168 Asia/Harbin 2012-01-18
-2036062 Linxi Linxi Lin-hsi,Lin-hsi-hsien,Linsi,Linxi,Linxi Zhen,xi lin,xi lin zhen,西林,西林镇 43.51667 118.03333 P PPLA3 CN 20 0 858 Asia/Harbin 2012-01-18
-2036066 Linkou Linkou Lin-k'ou-chen,Lin-k'ou-hsien,Lin-k’ou-chen,Lin-k’ou-hsien,Linkou,Linkow 45.3 130.28333 P PPL CN 08 77754 253 Asia/Harbin 2012-01-18
-2036069 Linjiang Linjiang Lin'czjane,Lin-chiang,Lin-chiang-hsien,Linjiang,Mao-erh-shan,Mao-tzu-shan,Maoerhshanchan,lin jiang,Линьцзяне,临江 41.80694 126.90778 P PPLA3 CN 05 69149 339 Asia/Harbin 2012-01-18
-2036075 Lingyuan Lingyuan Chien-ch'ang,Kienchang,Ling-yuan-chen,Ling-yuan-hsien,Ling-yüan-chen,Ling-yüan-hsien,T'a-kou 41.24 119.40111 P PPL CN 19 91418 394 Asia/Harbin 2006-01-17
-2036081 Lingdong Lingdong Ling-tung,Lingdong 46.56694 131.14528 P PPL CN 08 83636 171 Asia/Harbin 2012-01-18
-2036082 Lindong Lindong Bairin Zuoqi,Balin'tszotsi,Balin’tszotsi,Chiu-hsiao-pa-lin-pei-tzu-fu,Chiu-pei-tzu-fu,Hsiao-pa-lin-pei-tzu-fu,Hsiaopalinpeitze,Huuchin,Lin-tung,Lin-tung-hsien,Lindong,Lindong Zhen,Pa-lin-tso-ch'i,Pa-lin-tso-ch’i,Pa-lin-tso-i-ch'i,Pa-lin-tso-i-ch’i,ba lin zuo qi,lin dong,lin dong zhen,巴林左旗,林东,林东镇 43.98333 119.18333 P PPLA3 CN 20 0 1019 Asia/Harbin 2012-01-18
-2036102 Lidong Lidong Lidong,Lidong Zhen,li dong,li dong zhen,利东,利东镇 46.07889 127.89112 P PPLA4 CN 08 0 131 Asia/Harbin 2012-01-18
-2036103 Lidayao Lidayao Li-ta-yao,Lidayao,Lidayao Xiang,li da yao,li da yao xiang,李达窑,李达窑乡 40.23715 112.45367 P PPLA4 CN 24 0 1479 Asia/Shanghai 2012-01-18
-2036106 Liaozhong Liaozhong A-shih-niu-lu,A-ssu-niu,A-ssu-niu-lu,Chiu-liao-chung,Liao-chung,Liao-chung-chen,Liao-chung-hsien,Liaozhong,Lyaochzhun 41.50611 122.72417 P PPL CN 19 54691 16 Asia/Harbin 2012-01-18
-2036109 Liaoyuan Liaoyuan Dongliao,Hsi-an,Liao-yuan-shih,Liao-yüan-shih,Liaoyuan,Pei-feng,Pei-feng-hsien,Shian,Sian,T'a-k'a-ta,Ta-ko-tan,Tung-liao,T’a-k’a-ta 42.90361 125.13583 P PPL CN 05 465249 263 Asia/Harbin 2012-01-18
-2036113 Liaoyang Liaoyang Liao-yang-hsien,Liao-yang-shih,Liaoyang,Ljaojan,Ляоян 41.27194 123.17306 P PPL CN 19 687890 33 Asia/Harbin 2012-01-18
-2036114 Liaotun Liaotun Liaotun,Liaotun Zhen,liao tun,liao tun zhen,廖屯,廖屯镇 41.48514 121.76789 P PPLA4 CN 19 0 0 32 Asia/Harbin 2012-01-18
-2036122 Liaodian Liaodian Liaodian,Liaodian Manzuxiang,Liaodianzi,liao dian,liao dian man zu xiang,料甸,料甸满族乡 45.63261 127.05394 P PPLA4 CN 08 0 147 Asia/Harbin 2012-01-18
-2036142 Yongfeng Yongfeng Liangzhong,Liangzhongqiao Zhen,Yongfeng,liang zhong qiao zhen,yong feng,亮中桥镇,永丰 42.74053 123.84958 P PPLA4 CN 19 0 100 Asia/Harbin 2012-01-18
-2036143 Liangtun Liangtun Liangtun,Liangtun Zhen,liang tun,liang tun zhen,梁屯,梁屯镇 40.21139 122.51898 P PPLA4 CN 19 0 137 Asia/Harbin 2012-01-18
-2036149 Liangshui Chaoxianzu Liangshui Chaoxianzu Liang-shui-ch'uan,Liang-shui-ch’üan,Liangshui,Liangshui Chaoxianzu,Liangshui Chaoxianzu Xiang,liang shui,liang shui chao xian zu,liang shui chao xian zu xiang,凉水,凉水朝鲜族,凉水朝鲜族乡 40.92852 125.85308 P PPLA4 CN 05 0 154 Asia/Harbin 2012-01-18
-2036156 Dongjiang Dongjiang Dongjiang,Liang-chiang-k'ou,Liang-chiang-k’ou,Liangjiang Zhen,Liangjiangkou,Lyantszyankou,dong jiang,liang jiang zhen,东江,两江镇 42.64889 128.10028 P PPLA4 CN 05 0 497 Asia/Harbin 2012-01-18
-2036167 Daihai Daihai Daihai,Daihai Zhen,Hsin-t'ang,Hsin-t'ang-chen,Hsin-t’ang,Hsin-t’ang-chen,Liangcheng,Liangcheng Xian,dai hai,dai hai zhen,liang cheng,liang cheng xian,凉城,凉城县,岱海,岱海镇 40.52111 112.49306 P PPLA3 CN 20 0 1258 Asia/Harbin 2012-01-18
-2036168 Liangbing Liangbing Liang-ping-t'ai,Liang-ping-t’ai,Liangbing,Liangbing Zhen,Liangbingtai,liang bing,liang bing zhen,亮兵,亮兵镇 43.18333 128.78333 P PPLA4 CN 05 0 409 Asia/Harbin 2012-01-18
-2036196 Quangou Quangou Laosiping,Laosiping Zhen,Quangou,lao si ping,lao si ping zhen,quan gou,泉沟,老四平,老四平镇 43.18198 124.26121 P PPLA4 CN 19 0 174 Asia/Harbin 2012-01-18
-2036206 Laojinchang Laojinchang Laojinchang,Laojinchang Zhen,lao jin chang,lao jin chang zhen,老金厂,老金厂镇 42.9075 127.35361 P PPLA4 CN 05 0 335 Asia/Harbin 2012-01-18
-2036207 Laojieji Laojieji Laojieji,Laojieji Xiang,lao jie ji,lao jie ji xiang,老街基,老街基乡 44.97012 127.9653 P PPLA4 CN 08 0 226 Asia/Harbin 2012-01-18
-2036209 Laoheishan Laoheishan Lao-hei-shan-pen-ts'un,Lao-hei-shan-pen-ts’un,Laoheishan,Laoheishan Zhen,lao hei shan,lao hei shan zhen,老黑山,老黑山镇 43.71176 130.88012 P PPLA4 CN 08 0 352 Asia/Harbin 2012-01-18
-2036220 Laocheng Laocheng Ch'ang-t'u-ch'eng,Ch'ang-t'u-chen,Ch'ang-t'u-hsien,Chang-tu-fa,Changtu Laocheng,Ch’ang-t’u-chen,Ch’ang-t’u-ch’eng,Ch’ang-t’u-hsien,Laocheng,Laocheng Zhen,Tschangtu,lao cheng,lao cheng zhen,老城,老城镇 42.78348 123.994 P PPLA4 CN 19 0 132 Asia/Harbin 2012-01-18
-2036223 Biancheng Biancheng Biancheng,Biancheng Zhen,Lao-pien,Laobian,Laobian Qu,bian cheng,bian cheng zhen,lao bian,lao bian qu,老边,老边区,边城,边城镇 40.67852 122.36233 P PPLA3 CN 19 0 4 Asia/Harbin 2012-01-18
-2036226 Lanxi Lanxi Lan-hsi,Lan-hsi-chen,Lan-hsi-hsien,Lansi,Lanxi,Shuang-miao-tzu 46.26222 126.28556 P PPL CN 08 72528 163 Asia/Harbin 2012-01-18
-2036237 Langxiang Langxiang Lang-hsiang,Langxiang 46.95 128.88333 P PPL CN 08 57318 376 Asia/Harbin 2012-01-18
-2036241 Langtou Langtou Lang-t'ou-chen,Lang-t’ou-chen,Langtou 40.02611 124.32861 P PPL CN 19 59046 13 Asia/Harbin 2012-01-18
-2036281 Kuangdonggou Kuangdonggou K'uang-tung-kou,Kuangdonggou,Kuangdonggou Zhen,K’uang-tung-kou,kuang dong gou,kuang dong gou zhen,矿洞沟,矿洞沟镇 40.17361 122.70417 P PPLA4 CN 19 0 217 Asia/Harbin 2012-01-18
-2036283 Kuandian Kuandian K'uan-tien,K'uan-tien-chen,K'uan-tien-hsien,Kuandian,Kwan-tien,K’uan-tien,K’uan-tien-chen,K’uan-tien-hsien 40.72861 124.78472 P PPL CN 19 70867 281 Asia/Harbin 2012-01-18
-2036286 Kuanbang Kuanbang Kuanbang,Kuanbang Zhen,kuan bang,kuan bang zhen,宽帮,宽帮镇 40.50728 120.12139 P PPLA4 CN 19 0 75 Asia/Harbin 2012-01-18
-2036287 Kuaidamao Kuaidamao K'uai-ta-mao,K'uai-ta-mao-tzu,K'uai-tang-mao-tzu,Kuaidamao,K’uai-ta-mao,K’uai-ta-mao-tzu,K’uai-tang-mao-tzu,T'ung-hua-hsien,Tonghua,T’ung-hua-hsien,kuai da mao,快大茂 41.65532 125.74225 P PPLA3 CN 05 0 517 Asia/Harbin 2012-01-18
-2036289 Kouquan Kouquan K'ou-ch'uan,K'ou-ch'uan-chen,Kouquan,Kouquan Zhen,K’ou-ch’üan,K’ou-ch’üan-chen,Nanjiao Qu,kou quan,kou quan zhen,nan jiao qu,南郊区,口泉,口泉镇 40.0025 113.12639 P PPLA3 CN 24 0 1096 Asia/Shanghai 2012-01-18
-2036290 Kouqian Kouqian K'ou-ch'ien,Kouqian,K’ou-ch’ien,Yongji,Yung-chi,kou qian,口前 43.63914 126.45784 P PPLA3 CN 05 0 240 Asia/Harbin 2012-01-18
-2036325 Kangping Kangping K'ang-p'ing-chen,K'ang-p'ing-hsien,Kangping,Kangping Xian,K’ang-p’ing-chen,K’ang-p’ing-hsien,kang ping,kang ping xian,康平,康平县 42.73917 123.34944 P PPLA3 CN 19 0 101 Asia/Harbin 2012-01-18
-2036337 Kaiyuan Kaiyuan Jih-pen-tsu-chieh-ti,K'ai-yuan-chen,Kaiyuan,Kajjuan',K’ai-yüan-chen,Sun-chia-t'ai,Sun-chia-t’ai,Кайюань 42.53306 124.04028 P PPL CN 19 112462 91 Asia/Harbin 2012-01-18
-2036338 Kaitong Kaitong Ch'i-ching-tsa,Ch'i-ching-tzu,Ch’i-ching-tsa,Ch’i-ching-tzu,K'ai-t'ung,K'ai-t'ung-chen,K'ai-t'ung-hsien,Kaibung,Kaitong,Kaitun,K’ai-t’ung,K’ai-t’ung-chen,K’ai-t’ung-hsien,T'ung-yu,Tongyu,T’ung-yü,kai tong,开通 44.81351 123.15 P PPLA3 CN 05 62537 145 Asia/Harbin 2012-01-18
-2036339 Kaishantun Kaishantun Kaishantun,Kaishantun Zhen,kai shan tun,kai shan tun zhen,开山屯,开山屯镇 42.70177 129.75738 P PPLA4 CN 05 0 178 Asia/Harbin 2012-01-18
-2036341 Kailu Kailu K'ai-lu-hsien,Kailu,Kailu Xian,Kailun,Kailun Zhen,K’ai-lu-hsien,kai lu,kai lu xian,kai lu zhen,开鲁,开鲁县,开鲁镇 43.58333 121.2 P PPLA3 CN 20 0 251 Asia/Harbin 2012-01-18
-2036346 Juyuan Juyuan Juyuan,Juyuan Zhen,ju yuan,ju yuan zhen,巨源,巨源镇 45.94182 126.97146 P PPLA4 CN 08 0 134 Asia/Harbin 2012-01-18
-2036368 Jule Jule Chu-le-p'u,Chu-lo-p'u,Chu-lo-pao,Chu-lo-p’u,Chü-le-p’u,Chü-lo-pao,Jule,Jule Xiang,Julebu 40.165 113.57472 P PPLA4 CN 24 0 1273 Asia/Shanghai 2012-01-18
-2036389 Jixi Jixi Chi-hsi,Chi-hsi-shih,Chi-ning,Chi-ning-chieh,Czisi,Jixi,Kisi,ji xi shi,Цзиси,鶏西市,鸡西市 45.3 130.96667 P PPL CN 08 403759 192 Asia/Harbin 2012-01-18
-2036396 Jiuzhai Jiuzhai Jiuzhai,Jiuzhai Zhen,jiu zhai,jiu zhai zhen,九寨,九寨镇 40.09115 122.10409 P PPLA4 CN 19 0 47 Asia/Harbin 2012-01-18
-2036401 Jiutai Jiutai Chiu-t'ai,Chiu-t'ai-chen,Chiu-t'ai-hsien,Chiu-t’ai,Chiu-t’ai-chen,Chiu-t’ai-hsien,Hsia-chiu-t'ai,Hsia-chiu-t’ai,Jiutai,Shachutai,Shāchūtai,Siakiutai,T'eu-t'ai,Teutay,Teymau,Teymaū,T’eu-t’ai 44.1525 125.83278 P PPL CN 05 175115 180 Asia/Harbin 2012-01-18
-2036403 Jiupu Jiupu 41.06667 122.95 P PPL CN 19 123843 31 Asia/Harbin 2006-01-17
-2036415 Jiubing Jiubing Chiu-ping-t'ai,Chiu-ping-t’ai,Jiubing,Jiubing Xiang,Jiubingtai,jiu bing,jiu bing xiang,救兵,救兵乡 41.64225 124.10993 P PPLA4 CN 19 0 218 Asia/Harbin 2012-01-18
-2036418 Jishu Jishu Chi-shu,Jishu 44.31667 126.8 P PPL CN 05 103988 250 Asia/Harbin 2012-01-18
-2036427 Jinzhou Jinzhou Chien-hsien,Chin,Chin-chou,Chin-chou-shih,Chin-hsien,Chinchow,Czin'chzhou,Jinzhou,Kinchou,Kintschou,Цзиньчжоу 41.10778 121.14167 P PPL CN 19 604269 26 Asia/Harbin 2012-01-18
-2036434 Lianshan Lianshan Chin-hsi,Chin-hsi-chen,Chinshi,Chinsi,Jinxi,Leinshan,Lianshan,Lianshan Qu,Lien-shan,lian shan,lian shan qu,连山,连山区 40.76432 120.85327 P PPLA3 CN 19 313247 17 Asia/Harbin 2012-01-18
-2036443 Jinshan Jinshan Chin-shan,Chin-shan-chen,Harqin Qi,Jinshan,Jinshan Zhen,K'a-la-ch'in-ch'i,K'o-la-ch'in-ch'i,Kalaqin Qi,K’a-la-ch’in-ch’i,K’o-la-ch’in-ch’i,jin shan,jin shan zhen,ka la qin qi,喀喇沁旗,锦山,锦山镇 41.91667 118.66667 P PPLA3 CN 20 0 894 Asia/Harbin 2012-01-18
-2036451 Jinjia Jinjia Chin-chia-chen,Jinjia,Jinjia Zhen,Jinjiazhen,jin jia,金家 42.80073 123.70466 P PPLA4 CN 19 0 102 Asia/Harbin 2012-01-18
-2036458 Jining Jining Chi-ning,Chi-ning-hsien,Chi-ning-shih,Czinin,Jining,Jining Qu,P'ing-ti-ch'uan,P'ing-ti-ch'uan-chen,P’ing-ti-ch’üan,P’ing-ti-ch’üan-chen,Tsining,Tszinin,ji ning,ji ning qu,ping de quan zhen,Цзинин,平地泉镇,集宁,集宁区 41.0275 113.10583 P PPL CN 20 258757 1409 Asia/Harbin 2012-01-18
-2036463 Jingyu Jingyu Ching-yu,Ching-yu-chen,Ching-yü,Ching-yü-chen,Jingyu,Meng-chiang,Meng-chiang-hsien,Mengkiang,Ta-tien-tzu,jing yu,靖宇 42.37267 126.80115 P PPLA3 CN 05 0 549 Asia/Harbin 2012-01-18
-2036472 Jingpeng Jingpeng Ching-feng,Ching-p'en,Ching-p'eng,Ching-p'eng-hsien,Ching-p'eng-ying,Ching-p’en,Ching-p’eng,Ching-p’eng-hsien,Ching-p’eng-ying,Hexigten Qi,Jingfeng,Jingpeng,Jingpeng Zhen,K'o-shih-k'o-t'eng-ch'i,Keshiketeng Qi,Kingpeng,K’o-shih-k’o-t’eng-ch’i,Pai-t'a-ssu,Pai-t’a-ssu,jing peng,jing peng zhen,ke shen ke teng qi,克什克腾旗,经棚,经棚镇 43.25 117.51667 P PPLA3 CN 20 0 1100 Asia/Harbin 2012-01-18
-2036481 Jingjian Jingjian Jingjian,Jingjian Xiang,jing jian,jing jian xiang,经建,经建乡 45.81689 127.62208 P PPLA4 CN 08 0 189 Asia/Harbin 2012-01-18
-2036502 Jilin Jilin Chi-lin,Chi-lin-shih,Chi-ling,Czilin',Dzilinas,Girin,Jilin,Jilin City,Kilin,Kirin,Kota Jilin,Yung-chi,Yung-chi-hsien,Yung-chi-shih,Yungki,ji lin shi,jilin,Цзилинь,جىلىن شەھىرى,吉林市,지린 43.85083 126.56028 P PPL CN 05 1881977 196 Asia/Harbin 2012-01-18
-2036507 Jiguanshan Jiguanshan Ch'i-chuan-shan,Chi-kuan-shan,Ch’i-chuan-shan,Jiguanshan,Jiguanshan Zhen,ji guan shan,ji guan shan zhen,鸡冠山,鸡冠山镇 40.52017 123.91451 P PPLA4 CN 19 0 214 Asia/Harbin 2012-01-18
-2036508 Jiguan Jiguan Chi-kuan,Chi-kuan-lei-tzu,Jiguan,Jiguan Xiang,ji guan,ji guan xiang,鸡冠,鸡冠乡 43.47406 129.86084 P PPLA4 CN 05 0 333 Asia/Harbin 2012-01-18
-2036510 Jiewen Jiewen Jiewen,Jiewen Zhen,Jiewenzhai,jie wen,jie wen zhen,接文,接文镇 40.70947 123.00782 P PPLA4 CN 19 0 119 Asia/Harbin 2012-01-18
-2036519 Jidong Jidong Chi-tung,Chi-tung-chen,Jidong 45.21667 131.08333 P PPL CN 08 58520 225 Asia/Harbin 2012-01-18
-2036526 Erdaocha Erdaocha Chia-p'i-kou,Chia-p’i-kou,Erdaocha,Jiapigou,Jiapigou Zhen,er dao cha,jia pi gou,jia pi gou zhen,二道岔,夹皮沟,夹皮沟镇 42.86738 127.48794 P PPLA4 CN 05 0 592 Asia/Harbin 2012-01-18
-2036536 Jiaohe Jiaohe Chiacho,Chiao-ho,Chiao-ho-chen,Chiao-ho-hsien,Czjaokheh,Jiaohe,Kiaoho,O-mu-hsien,Omu,Ta-chiao-ho,Tachiaho,Takiaoho,Цзяохэ 43.72861 127.34472 P PPL CN 05 123018 274 Asia/Harbin 2012-01-18
-2036538 Jianyi Jianyi Jianyi,Jianyi Zhen,Jieguanting,jian yi,jian yi zhen,jie guan ting,建一,建一镇,接官厅 40.48241 122.86421 P PPLA4 CN 19 0 221 Asia/Harbin 2012-01-18
-2036574 Jianchang Jianchang Chien-ch'ang,Chien-ch’ang,Jianchang,Jianchang Zhen,Tszyan'chan,Tszyan’chan,jian chang,jian chang zhen,碱厂,碱厂镇 41.25083 124.47113 P PPLA4 CN 19 0 290 Asia/Harbin 2012-01-18
-2036579 Ji’an Ji'an Chi-an,Chi-an-chen,Chi-an-hsien,Ji'an,Ji'an Shi,Ji’an,Ji’an Shi,T'ung-kou,T'ung-kou-ch'eng,Tsian,T’ung-kou,T’ung-kou-ch’eng,ji an,ji an shi,集安,集安市 41.12348 126.17631 P PPLA3 CN 05 0 182 Asia/Harbin 2012-01-18
-2036581 Jiamusi Jiamusi Ch'a-mu-ssu,Chia-mu-ssu,Chia-mu-ssu-shih,Chieh-mu-ssu,Ch’a-mu-ssu,Czjamusy,Hua-ch'uan-hsien,Hua-chuan,Hua-ch’uan-hsien,Hwachwan,Jiamusi,Kiamusas,Kiamusze,jamusseu,jamusu shi,jia mu si shi,Цзямусы,ジャムス市,佳木斯市,자무쓰 46.83333 130.35 P PPL CN 08 549549 79 Asia/Harbin 2012-01-18
-2036583 Jiajiaying Jiajiaying Jiajiaying,Jiajiaying Xiang,gu jia ying,gu jia ying xiang,贾家营,贾家营乡 41.78926 127.1895 P PPLA4 CN 05 0 507 Asia/Harbin 2012-01-18
-2036595 Jalai Nur Jalai Nur CHZHALAJNOR,Cha-lai-no-erh,Chaiainor,Chalainor,Chzhalaynor,Dalainur,Dalaynur,Jalai Nur,Zhalai Nuo'er,Zhalai Nuo’er,zha lai nuo er,ЧЖАЛАЙНОР,扎赉诺尔 49.45 117.7 P PPLA4 CN 20 107828 566 Asia/Harbin 2012-01-18
-2036597 Jagdaqi Jagdaqi Chia-ko-ta-ch'i,Chia-ko-ta-ch’i,Jagdaqi,K'u-erh-ch'i,K'u-lu-ch'i,Kurchi,K’u-erh-ch’i,K’u-lu-ch’i 50.41667 124.11667 P PPL CN 20 135760 381 Asia/Harbin 2011-10-09
-2036602 Inder Inder Cha-lai-t'e-ch'i,Cha-lai-t’e-ch’i,Inder,Jalaid Qi,Yin-te-erh,Yinde'er,Yinde'er Zhen,Yinde’er,Yinde’er Zhen,Zhalaite Qi,yin de er,yin de er zhen,zha lai te qi,扎赉特旗,音德尔,音德尔镇 46.7 122.93333 P PPLA3 CN 20 0 182 Asia/Harbin 2012-01-18
-2036611 Huzhuang Huzhuang Hu-chuang-t'un,Hu-chuang-t’un,Huzhuang,Huzhuang Zhen,hu zhuang,hu zhuang zhen,虎庄,虎庄镇 40.71639 122.54028 P PPLA4 CN 19 0 22 Asia/Harbin 2012-01-18
-2036619 Hushitai Hushitai Hu-shih-t'ai,Hu-shih-t’ai,Hushitai 41.93222 123.51139 P PPL CN 19 61979 63 Asia/Harbin 2012-01-18
-2036628 Kulun Kulun Hsiao-k'u-lun,Hsiao-k’u-lun,Hure Qi,K'u-lun,K'u-lun-ch'i,K'u-lun-chen,K'u-lun-chieh,Kulun,Kulun Qi,Kulun Zhen,Kulunkai,K’u-lun,K’u-lun-chen,K’u-lun-chieh,K’u-lun-ch’i,Sui-tung,Sui-tung Old City,Sui-tung-ku-chih,ku lun,ku lun qi,ku lun zhen,库伦,库伦旗,库伦镇 42.73056 121.77556 P PPLA3 CN 20 0 266 Asia/Harbin 2012-01-18
-2036653 Hunchun Hunchun Hui-ch'un,Hui-ch’un,Hun-ch'un-chen,Hun-ch'un-hsien,Hun-ch'ung,Hun-ch’un-chen,Hun-ch’un-hsien,Hun-ch’ung,Hunchun,Hunchun Shi,Hungtschung,Khun'chun',hui chun,hui chun shi,Хуньчунь,珲春,珲春市 42.8675 130.35806 P PPLA3 CN 05 77028 42 Asia/Harbin 2012-01-18
-2036662 Huludao Huludao Hu-lu-tao,Hu-lu-tao-hsien,Huludao,Koroto,hu lu dao,葫芦岛 40.75242 120.83552 P PPLA3 CN 19 0 17 Asia/Harbin 2012-01-18
-2036670 Hulan Ergi Hulan Ergi Fu-erh-la-chi,Fu-la-erh-chi,Fularki,Hulan Ergi,Lung-chiang 47.20417 123.63333 P PPL CN 08 265344 152 Asia/Harbin 2012-01-18
-2036671 Hulan Hulan Chu-lan-tschong,Chu-lan-tschöng,Hu-lan-chen,Hu-lan-hsien,Hu-lang-ch'eng,Hu-lang-ch’eng,Hulan,Khulan,Хулан 45.98333 126.6 P PPL CN 08 109104 128 Asia/Harbin 2012-01-18
-2036685 Huinan Huinan Chiu-hui-nan,Hui-nan-chen,Hui-nan-hsien,Huinan,Huinanzhen,Hwei-nan,Hweinan-ting 42.6225 126.26139 P PPL CN 05 66315 315 Asia/Harbin 2012-01-18
-2036696 Huayuankou Huayuankou Huayuan,Huayuankou,Huayuankou Zhen,hua yuan kou,hua yuan kou zhen,花园口,花园口镇 42.28668 127.06333 P PPLA4 CN 05 0 421 Asia/Harbin 2012-01-18
-2036702 Huashu Huashu Huashu,Huashu Zhen,hua shu,hua shu zhen,桦树,桦树镇 41.99082 127.21747 P PPLA4 CN 05 0 762 Asia/Harbin 2012-01-18
-2036704 Huashan Huashan Huashan,Huashan Zhen,hua shan,hua shan zhen,花山,花山镇 41.88444 126.86611 P PPLA4 CN 05 0 426 Asia/Harbin 2012-01-18
-2036713 Huanren Huanren Chiu-huai-jen,Huai-jen,Huan-jen,Huan-jen-chen,Huan-jen-hsien,Huanren,Hwanjen,Yuan Jen 41.26472 125.36667 P PPL CN 19 66147 269 Asia/Harbin 2012-01-18
-2036720 Huangtuling Huangtuling Huang-t'u-ling-tzu,Huang-t’u-ling-tzu,Huangtuling,Huangtuling Zhen,huang tu ling,huang tu ling zhen,黄土岭,黄土岭镇 40.41322 122.79144 P PPLA4 CN 19 0 164 Asia/Harbin 2012-01-18
-2036734 Huangnihe Huangnihe Huang-ni-ho,Huang-ni-ho-tzu,Huangnihe 43.55833 128.02389 P PPL CN 05 54959 490 Asia/Harbin 2012-01-18
-2036747 Huangdi Huangdi Huangdi,Huangdi Zhen,huang de,huang de zhen,荒地,荒地镇 40.23476 120.26621 P PPLA4 CN 19 0 11 Asia/Harbin 2012-01-18
-2036750 Huangbai Huangbai Huang-pai,Huangbai,Qingshi Zhen,huang bai,qing shi zhen,青石镇,黄柏 41.26929 126.35123 P PPLA4 CN 05 0 203 Asia/Harbin 2012-01-18
-2036753 Huanan Huanan Ch'ien-chen-chieh,Ch'ien-chen-hsiang,Ch’ien-chen-chieh,Ch’ien-chen-hsiang,Hu-nan-ying,Hu-nan-ying-chen,Hua-ch'uan,Hua-ch'uan-chen,Hua-ch’uan,Hua-ch’uan-chen,Hua-nan-chen,Huanan 46.21667 130.51667 P PPL CN 08 66087 174 Asia/Harbin 2012-01-18
-2036774 Huadian Huadian Hua-tien,Hua-tien-tzu,Huadian,Huadian Zhen,Huadianzi,hua dian,hua dian zhen,花甸,花甸镇 41.29943 125.77724 P PPLA4 CN 05 0 335 Asia/Harbin 2012-01-18
-2036776 Huadian Huadian Hua-tien,Hua-tien-chen,Hua-tien-hsien,Huadian,Huen-tien,Hwatien,K'uang-kai,Koangai,Kuan-chieh,K’uang-kai 42.96333 126.74778 P PPL CN 05 139047 268 Asia/Harbin 2012-01-18
-2036779 Changshun Changshun Changshun,Changshun Zhen,Chapser,Chapsyr,Chia-p'u-ssu,Chia-p’u-ssu,Chiapser,Hsin-ming,Hsin-ming-hsien,Hua-te,Hua-te-chen,Huade,Huade Xian,Te-hua,Te-hua-hsien,hua de,hua de xian,zhang shun,zhang shun zhen,化德,化德县,长顺,长顺镇 41.89139 113.99222 P PPLA3 CN 20 0 1485 Asia/Harbin 2012-01-18
-2036823 Hongtoushan Hongtoushan Hongtoushan,Hongtoushan Zhen,hong tou shan,hong tou shan zhen,红透山,红透山镇 41.99523 124.50518 P PPLA4 CN 19 0 160 Asia/Harbin 2012-01-18
-2036835 Hongshi Hongshi Hongshi,Hongshilazi,Hongshilazi Zhen,Hung-shih,Shihongshilazi,hong shi,hong shi la zi,hong shi la zi zhen,红石,红石砬子,红石砬子镇 42.95635 127.10108 P PPLA4 CN 05 0 281 Asia/Harbin 2012-01-18
-2036847 Hongqiyingzi Hongqiyingzi Hongqiyingzi,Hongqiyingzi Xiang,Hung-ch'i,Hung-ch’i,hong qi ying zi,hong qi ying zi xiang,红旗营子,红旗营子乡 40.33444 123.43722 P PPLA4 CN 19 0 118 Asia/Harbin 2012-01-18
-2036861 Hongqi Hongqi Hongqi,Hongqi Zhen,Hung-ch'i,Hung-ch’i,hong qi,hong qi zhen,红旗,红旗镇 40.14132 123.87567 P PPLA4 CN 19 0 73 Asia/Harbin 2012-01-18
-2036876 Honggang Honggang 46.46667 124.86667 P PPL CN 08 147977 151 Asia/Harbin 2006-01-17
-2036892 Hohhot Hohhot Hohhot,Hohhot Shi,Hou-ho,Hu-ho-hao-t'e,Hu-ho-hao-t'e-shih,Hu-ho-hao-t’e,Hu-ho-hao-t’e-shih,Huhe Hoter,Huhehaote,Huhehot,Khukh-Khoto,Kuei-hua,Kuei-sui,Kuei-sui-hsien,Kuei-sui-shih,Kuku-khoto,Kwei-hwa-cheng,Kwei-hwa-ting,Kweihwa,Kweihwa-Suiyuan,Kweisui,Kweisui-hsien,Suiyuan,Suiyüan,fufuhoto shi,hu he hao te,hu he hao te shi,huheohaoteo,Хух-Хото,フフホト市,呼和浩特,呼和浩特市,후허하오터 40.81056 111.65222 P PPLA CN 20 774477 1051 Asia/Chongqing 2012-01-18
-2036897 Hobor Hobor Ch'a-ha-erh-yu-chung-ch'i,Ch'a-ha-erh-yu-i-chung-ch'i,Ch'a-yu-chung-ch'i,Chaha'eryouyizhong Qi,Chaha’eryouyizhong Qi,Chakhar''yuchzhuntsi,Chakhar’’yuchzhuntsi,Chiu-t'ao-lin,Chiu-t’ao-lin,Ch’a-ha-erh-yu-chung-ch’i,Ch’a-ha-erh-yu-i-chung-ch’i,Ch’a-yu-chung-ch’i,Hobor,K'o-pu-erh,Kebu'er,Kebu'er Zhen,Kebu’er,Kebu’er Zhen,K’o-pu-erh,Qahar Youyi Zhongqi,T'ao-lin,Tao-lin-hsien,T’ao-lin,cha ha er you yi zhong qi,ke bu er,ke bu er zhen,察哈尔右翼中旗,科布尔,科布尔镇 41.2625 112.6275 P PPLA3 CN 20 0 1764 Asia/Harbin 2012-01-18
-2036920 Hengshan Hengshan 45.2 130.91667 P PPL CN 08 164844 326 Asia/Harbin 2006-01-17
-2036933 Helong Helong Helong,Helong Shi,Helong Zhen,Ho-lung,Ho-lung-chen,Khehlune,Longcheng Zhen,San-tao-kou,he long,he long shi,he long zhen,long cheng zhen,Хэлуне,和龙,和龙市,和龙镇,龙城镇 42.53974 128.99722 P PPLA4 CN 05 85756 447 Asia/Harbin 2012-01-18
-2036959 Heishan Heishan Chen-an,He Shan,Hei-shan-chen,Hei-shan-hsien,Heishan 41.68917 122.11278 P PPL CN 19 68603 26 Asia/Harbin 2012-01-18
-2036966 Heilonggong Heilonggong Heilonggong,Heilonggong Zhen,hei long gong,hei long gong zhen,黑龙宫,黑龙宫镇 45.43114 127.89726 P PPLA4 CN 08 0 235 Asia/Harbin 2012-01-18
-2036973 Heihe Heihe Ai-hun,Ai-hun-hsien,Aigun,Aihui,Hei-ho,Hei-ho-chen,Hei-ho-t'un,Hei-ho-t’un,Heihe,Khehjkheh,Sa-ha-liang,Sachaljan,Sakhalyan,Ta-hei-ho,hei he shi,heiheo,Хэйхэ,黑河市,黒河市,헤이허 50.24413 127.49016 P PPL CN 08 109427 139 Asia/Harbin 2012-01-24
-2036986 Hegang Hegang Hao-kang,Hao-kang-shih,Hegang,Hingshanchen,Hinshanchen,Ho-kang,Hsian-yuan-t'un,Hsian-yüan-t’un,Hsiangyuantun,Hsing-shan,Hsing-shan-chen,Hsing-shan-chieh,Hsinganchen,Khegan,Khehgan,Sinshan Chzhen,Хэган 47.4 130.36667 P PPL CN 08 743307 208 Asia/Harbin 2012-01-18
-2037013 Harbin Harbin Cap Nhi Tan,Charbin,Cáp Nhĩ Tân,Ha'erbin,Ha-erh-pin,Ha-erh-pin-shih,Harbin,Harbin Shi,Harbinas,Ha’erbin,Kharbin,Lungsod ng Harbin,Pin-chiang,Pin-chiang-hsien,Pinkiang,ha er bin,ha er bin shi,ha-eolbin,harubin,hrbyn,Ĥarbin,Харбин,Харбін,חרבין,خاربىن شەھىرى,ハルビン,哈尔滨,哈尔滨市,하얼빈 45.75 126.65 P PPLA CN 08 3229883 140 Asia/Harbin 2012-01-18
-2037020 Haoguantun Haoguantun Haoguantun,Haoguantun Zhen,hao guan tun,hao guan tun zhen,郝官屯,郝官屯镇 42.67444 123.48691 P PPLA4 CN 19 0 89 Asia/Harbin 2012-01-18
-2037032 Hanghuadian Hanghuadian Hanghuadian,Hanghuadian Zhen,Huang-hua-tien,huang hua dian,huang hua dian zhen,黄花甸,黄花甸镇 40.55652 123.46939 P PPLA4 CN 19 0 119 Asia/Harbin 2012-01-18
-2037042 Hamatang Hamatang Hamatang,Hamatang Xiang,ha ma tang,ha ma tang xiang,蛤蟆塘,蛤蟆塘乡 43.42305 129.49919 P PPLA4 CN 05 0 273 Asia/Harbin 2012-01-18
-2037045 Haliut Haliut Chung-kung-ch'i,Chung-kung-ch’i,Ha-i-ryu-to,Hai-liu-t'u,Hai-liu-t’u,Hailutu,Hailutu Zhen,Haliut,Urad Zhonghou Lianheqi,Urad Zhongqi,Wu-la-t'e-chung-ch'i,Wu-la-t'e-chung-hou-ch'i,Wu-la-t'e-chung-hou-lien-ho-ch'i,Wu-la-te-chung-ch'i-pei-tzu-fu,Wu-la-te-chung-ch’i-pei-tzu-fu,Wu-la-t’e-chung-ch’i,Wu-la-t’e-chung-hou-ch’i,Wu-la-t’e-chung-hou-lien-ho-ch’i,Wulatezhong Qi,hai liu tu,hai liu tu zhen,wu la te zhong hou lian he qi,wu la te zhong qi,乌拉特中后联合旗,乌拉特中旗,海流图,海流图镇 41.55611 108.51972 P PPLA3 CN 20 0 1265 Asia/Chongqing 2012-01-18
-2037069 Hailun Hailun Hai-lun-chen,Hai-lun-hsien,Hailun,T'ung-ken,T'ung-ken-ho,Tung-kei,T’ung-ken,T’ung-ken-ho 47.45 126.93333 P PPL CN 08 109881 223 Asia/Harbin 2012-01-18
-2037075 Hailin Hailin Hai-lin-chen,Hai-lin-ts'un,Hai-lin-ts’un,Hailin,Khajlin,Хайлин 44.58333 129.41667 P PPL CN 08 85578 311 Asia/Harbin 2012-01-18
-2037078 Hailar Hailar Hai-la-erh,Hai-la-erh-shih,Hailar,Hailar Shi,Hairaru,Hairāru,Hu-lun,KHAJLAR,Khailar,Khajlar,hai la er qu,hairaru qu,ХАЙЛАР,Хайлар,ハイラル区,海拉尔区 49.2 119.7 P PPL CN 20 211066 624 Asia/Harbin 2012-01-18
-2037086 Haicheng Haicheng Hai-ch'eng-chen,Hai-ch'eng-hsien,Hai-ch’eng-chen,Hai-ch’eng-hsien,Haicheng,Haicheng Shi,Haitschong,Haitschöng,Lo-lang,hai cheng,hai cheng shi,海城,海城市 40.85158 122.74754 P PPLA3 CN 19 191651 33 Asia/Harbin 2012-01-18
-2037096 Zhongxin Zhongxin Ha-ta-men,Hadamen Xiang,Zhongxin,ha da men xiang,zhong xin,中心,哈达门乡 42.93 130.48639 P PPLA4 CN 05 0 70 Asia/Harbin 2012-01-18
-2037098 Hadabei Hadabei Hadabei,Hadabei Zhen,ha da bei,ha da bei zhen,哈达碑,哈达碑镇 40.34211 123.15424 P PPLA4 CN 19 0 268 Asia/Harbin 2012-01-18
-2037099 Hada Hada Hada,Hada Zhen,Xiahada,ha da,ha da zhen,xia ha da,下哈达,哈达,哈达镇 41.97186 124.14156 P PPLA4 CN 19 0 120 Asia/Harbin 2012-01-18
-2037103 Guzhuyingzi Guzhuyingzi Guzhuying,Guzhuyingzi,Guzhuyingzi Xiang,gu zhu ying zi,gu zhu ying zi xiang,孤竹营子,孤竹营子乡 40.93805 120.26719 P PPLA4 CN 19 0 286 Asia/Harbin 2012-01-18
-2037117 Gushan Gushan Gushan,Gushan Zhen,Gushanzimanzu,Ku-shan,gu shan,gu shan zhen,孤山,孤山镇 40.58565 122.96524 P PPLA4 CN 19 0 146 Asia/Harbin 2012-01-18
-2037174 Guayuan Guayuan Guayuan,Guayuan Zhen,Kua-yuan,Kua-yüan,gua yuan,gua yuan zhen,瓜园,瓜园镇 40.02081 113.65243 P PPLA4 CN 24 0 1052 Asia/Shanghai 2012-01-18
-2037178 Guantun Guantun Guantun,Guantun Zhen,guan tun,guan tun zhen,官屯,官屯镇 40.68636 122.55964 P PPLA4 CN 19 0 37 Asia/Harbin 2012-01-18
-2037193 Guanjiabu Guanjiabu Guanjiabu,Guanjiabu Xiang,Kuan-chia-pu,Mieh-lu-p'u,Mieh-lu-pao,Mieh-lu-p’u,guan jia bao,guan jia bao xiang,管家堡,管家堡乡 40.17984 112.88662 P PPLA4 CN 24 0 1291 Asia/Shanghai 2012-01-18
-2037203 Guanghua Guanghua Guanghua,Guanghua Zhen,Kuang-hua,guang hua,guang hua zhen,光华,光华镇 41.94597 125.98578 P PPLA4 CN 05 0 456 Asia/Harbin 2012-01-18
-2037218 Goubangzi Goubangzi Goubangzi,Goubangzi Zhen,Kou-pang-tzu,Kowpangtze,gou bang zi,gou bang zi zhen,沟帮子,沟帮子镇 41.36797 121.77327 P PPLA4 CN 19 0 0 8 Asia/Harbin 2012-01-18
-2037222 Gongzhuling Gongzhuling Gunchzhulina,Huai-te,Huai-to-hsien,Huaide,Kung-chu-ling,Kung-chu-ling-chen,Гунчжулина 43.50075 124.81979 P PPL CN 05 140909 211 Asia/Harbin 2010-05-17
-2037239 Gonghe Gonghe Gonghe,Gonghe Xiang,gong he,gong he xiang,共和,共和乡 44.11108 130.20484 P PPLA4 CN 08 0 478 Asia/Harbin 2012-01-18
-2037240 Gongchangling Gongchangling Gongchangling,Kung-ch'ang-ling,Kung-ch’ang-ling 41.11667 123.45 P PPL CN 19 70761 214 Asia/Harbin 2012-01-18
-2037252 Genhe Genhe Ergun Zuoqi,Genhe,Genhe Shi,Hexi,Hexi Jiedao,Ken-ho,O-erh-ku-na-ch'i,O-erh-ku-na-ch’i,O-erh-ku-na-tso-ch'i,O-erh-ku-na-tso-ch’i,O-tso-ch'i,O-tso-ch’i,e er gu na zuo qi,gen he,gen he shi,he xi,he xi jie dao,根河,根河市,河西,河西街道,额尔古纳左旗 50.78333 121.51667 P PPLA3 CN 20 73631 713 Asia/Harbin 2012-01-18
-2037253 Gengzhuang Gengzhuang Gengzhuang,Gengzhuang Zhen,Keng Chuan Tzu,Keng-chuang,Keng-chuang-tzu,geng zhuang,geng zhuang zhen,耿庄,耿庄镇 40.98523 122.70178 P PPLA4 CN 19 0 12 Asia/Harbin 2012-01-18
-2037265 Gaotun Gaotun Gaotun,Gaotun Zhen,gao tun,gao tun zhen,高屯,高屯镇 40.43405 122.60288 P PPLA4 CN 19 0 66 Asia/Harbin 2012-01-18
-2037269 Gaotai Gaotai Gaotai,Gaotai Zhen,Gaotaipu,gao tai,gao tai zhen,高台,高台镇 40.37907 120.23317 P PPLA4 CN 19 0 55 Asia/Harbin 2012-01-18
-2037272 Gaoshanzi Gaoshanzi Gaoshanzi,Gaoshanzi Zhen,Kao-shan-tzu,gao shan zi,gao shan zi zhen,高山子,高山子镇 41.54788 122.04948 P PPLA4 CN 19 0 0 9 Asia/Harbin 2012-01-18
-2037275 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Zhen,Gaoqiaozhen,Kao-ch'iao,Kao-ch'iao-chen,Kao-ch’iao,Kao-ch’iao-chen,Kaokiao,gao qiao,gao qiao zhen,高桥,高桥镇 40.89877 120.99686 P PPLA4 CN 19 0 13 Asia/Harbin 2012-01-18
-2037284 Gaoling Gaoling Gaoling,Gaoling Zhen,gao ling,gao ling zhen,高岭,高岭镇 40.14568 120.00814 P PPLA4 CN 19 0 38 Asia/Harbin 2012-01-18
-2037290 Gaokan Gaokan Gaokan,Gaokan Zhen,gao kan,gao kan zhen,高坎,高坎镇 40.77322 122.37415 P PPLA4 CN 19 0 6 Asia/Harbin 2012-01-18
-2037306 Ganwang Ganwang Ganwang,Ganwang Zhen,Ta-kan-wang-chai,gan wang,gan wang zhen,感王,感王镇 40.81306 122.55165 P PPLA4 CN 19 0 11 Asia/Harbin 2012-01-18
-2037307 Ganquan Ganquan Ganquan,Ganquan Zhen,gan quan,gan quan zhen,甘泉,甘泉镇 40.96426 122.85418 P PPLA4 CN 19 0 53 Asia/Harbin 2012-01-18
-2037311 Gannan Gannan Erh-chan,Gannan,Kan-ching-tzu,Kan-nan,Kan-nan-chen,Kan-nan-hsien 47.91472 123.50306 P PPL CN 08 59239 188 Asia/Harbin 2012-01-18
-2037320 Gangtun Gangtun Gangtun,Gangtun Zhen,Kang-t'un,Kang-t’un,gang tun,gang tun zhen,钢屯,钢屯镇 40.91979 120.61698 P PPLA4 CN 19 0 106 Asia/Harbin 2012-01-18
-2037322 Gangou Gangou Gangou,Gangou Xiang,Kan-kou,gan gou,gan gou xiang,干沟,干沟乡 41.86333 125.71444 P PPLA4 CN 05 0 521 Asia/Harbin 2012-01-18
-2037325 Gaizhou Gaizhou Chin-p'ing,Chin-p’ing,Gaipin,Gaixian,Gaizhou,Gaizhou Shi,K'ai-p'ing,Kai-chou,Kai-hsien,Kai-p'ing-chen,Kai-p'ing-hsien,Kai-p’ing-chen,Kai-p’ing-hsien,Kaichow,K’ai-p’ing,gai zhou,gai zhou shi,盖州,盖州市 40.39417 122.36861 P PPLA3 CN 19 0 11 Asia/Harbin 2012-01-18
-2037330 Fuyuan Fuyuan Fu-yuan-chen,Fu-yuan-hsien,Fu-yüan-chen,Fu-yüan-hsien,Fujuan',Fuyuan,Fuyuanzhen,Sui-yuan,Sui-yüan,Фуюань 48.36306 134.28917 P PPL CN 08 30000 66 Asia/Harbin 2012-01-18
-2037331 Fuyuan Fuyuan Chao-hu-wo-pao,Fujuan',Fuyuan,Hsin-lung-chen,Hsing-lung,Hsing-lung-chen,Xinglongzhen,Фуюань 46.43333 127.08333 P PPL CN 08 72038 175 Asia/Harbin 2012-01-18
-2037334 Fuyu Fuyu Fu-yu-chen,Fu-yü-chen,Fuyu,Fuyuy,Ning-nien,Ning-nien Chan,Yantszyatun',Yantszyatun’ 47.78333 124.45 P PPL CN 08 75147 163 Asia/Harbin 2012-01-18
-2037335 Fuyu Fuyu Betuna,Bodune,Fu-yu-chen,Fu-yu-hsien,Fu-yü-chen,Fu-yü-hsien,Fuyu,Hsin-ch'eng,Hsin-ch'eng-hsien,Hsin-ch’eng,Hsin-ch’eng-hsien,Petuna,Po-tu-na,Po-tu-no,Sincheng 45.18333 124.81667 P PPL CN 05 138704 141 Asia/Harbin 2012-01-18
-2037342 Jincang Jincang Fu-hsing,Fuxing,Fuxing Zhen,Jincang,fu xing,fu xing zhen,jin cang,复兴,复兴镇,金仓 43.36308 130.47972 P PPLA4 CN 05 0 628 Asia/Harbin 2012-01-18
-2037345 Fuxin Fuxin A-chin,Fou-hsin,Fou-hsin-chen,Fou-hsin-hsien,Fou-hsin-hsien-t'u-mo-t'e-ch'i,Fou-hsin-hsien-t’u-mo-t’e-ch’i,Fou-hsin-meng-ku-tsu-tzu-chih-hsien,Fu-hsin,Fu-sin,Fushin,Fusin',Fuxin,Hsin-fou-hsien-t'u-mo-t'e-ch'i,Hsin-fou-hsien-t’u-mo-t’e-ch’i,Фусинь 42.05889 121.745 P PPL CN 19 57356 165 Asia/Harbin 2012-01-18
-2037346 Fuxin Fuxin Fou-hsin,Fou-hsin-shih,Fu-hsin,Fusin',Fuxin,fu xin shi,Фусинь,阜新市 42.01556 121.65889 P PPL CN 19 689050 142 Asia/Harbin 2012-01-18
-2037351 Fusong Fusong Fu-shun,Fu-sung,Fu-sung-chen,Fu-sung-hsien,Fusong,Fusong Xian,Fusong Zhen,Mang-niu-shao,Mangnesia,fu song,fu song xian,fu song zhen,抚松,抚松县,抚松镇 42.32505 127.27265 P PPLA3 CN 05 0 435 Asia/Harbin 2012-01-18
-2037355 Fushun Fushun Chiu-fu-shun,Fu-shan,Fu-shun-hsien,Fu-shun-shih,Fushun,Fushun',Fushuncheng,Фушунь 41.85583 123.92333 P PPL CN 19 1400646 83 Asia/Harbin 2012-01-18
-2037370 Fuli Fuli Chi-hsien,Fu-li-chen,Fuli,Fulitun,Jixian,Фули 46.72167 131.13944 P PPL CN 08 59160 104 Asia/Harbin 2012-01-18
-2037375 Fujin Fujin Fu-chin,Fu-chin-chen,Fu-chin-hsien,Fu-k'o-chin,Fu-k’o-chin,Fuczin',Fujin,Fukin,Фуцзинь 47.26 132.03222 P PPL CN 08 89442 62 Asia/Harbin 2012-01-18
-2037377 Fujia Fujia Fu-chia-t'un,Fu-chia-t’un,Fujia,Fujia Zhen,Fujiatun,fu jia,fu jia zhen,傅家,傅家镇 43.28374 123.81126 P PPLA4 CN 19 0 145 Asia/Harbin 2012-01-18
-2037378 Jianchanggou Jianchanggou Chien-ch'ang-kou,Chien-ch’ang-kou,Fujiang Xiang,Jianchanggou,fu jiang xiang,jian chang gou,富江乡,碱厂沟 41.77377 125.3312 P PPLA4 CN 05 0 434 Asia/Harbin 2012-01-18
-2037383 Fudong Fudong Fu-tung,Fudong,Fudong Zhen,fu dong,fu dong zhen,福洞,福洞镇 42.57416 129.14781 P PPLA4 CN 05 0 529 Asia/Harbin 2012-01-18
-2037391 Beichengqu Beichengqu Beichengqu,Beichengqu Jiedao,Feng-chen,Feng-chen-hsien,Fengzhen,Fengzhen Shi,bei cheng qu,bei cheng qu jie dao,feng zhen,feng zhen shi,li zhen shi,丰镇,丰镇市,北城区,北城区街道,豊鎮市 40.43944 113.15361 P PPLA3 CN 20 72444 1196 Asia/Harbin 2012-01-18
-2037393 Fengxiang Fengxiang Feng-hsiang,Feng-hsiang-chen,Feng-huang-chen,Fengsiang,Fengxiang,Lo-pei,Luobei,Фенгсианг 47.58333 130.83333 P PPL CN CN 08 42109 81 Asia/Harbin 2012-01-18
-2037411 Fengcheng Fengcheng Feng-ch'eng-chen,Feng-ch'eng-hsien,Feng-ch’eng-chen,Feng-ch’eng-hsien,Feng-huang-ch'eng,Feng-huang-ch’eng,Fengcheng,Fenghwangcheng 40.45361 124.07167 P PPL CN 19 120514 65 Asia/Harbin 2012-01-18
-2037424 Fangtai Fangtai Fangtai,Fangtai Zhen,fang tai,fang tai zhen,方台,方台镇 46.08918 126.93331 P PPLA4 CN 08 0 145 Asia/Harbin 2012-01-18
-2037460 Erniusuokou Erniusuokou Erh-niu-so-k'ou,Erh-niu-so-k’ou,Erniusuokou,Erniusuokou Zhen,er niu suo kou,r niu suo kou zhen,二牛所口,儿牛所口镇 42.76618 123.15486 P PPLA4 CN 19 0 109 Asia/Harbin 2012-01-18
-2037461 Ermi Ermi Ermi,Ermi Zhen,er mi,er mi zhen,二密,二密镇 41.78806 125.82972 P PPLA4 CN 05 0 433 Asia/Harbin 2012-01-18
-2037475 Erhe Erhe Erhe,Erhe Xiang,er he,er he xiang,二河,二河乡 45.08096 127.31083 P PPLA4 CN 08 0 174 Asia/Harbin 2012-01-18
-2037485 Wulan Wulan Ereen,Erenhot,Erh-lien,Erh-lien-hao-t'e,Erh-lien-hao-t'e-shih,Erh-lien-hao-t’e,Erh-lien-hao-t’e-shih,Erlianhaote Shi,Erlin,Erlyan',Erlyan’,I-lin-ta-pu-su,I-lin-tu-pa-su,Iren,Iren Dabasu,P'ang-pei,P’ang-pei,Wulan,Wulan Jiedao,Yeh-lieh-ta-pa-sha,Yu-lin-ta-pa-su,er lian hao te,er lian hao te shi,wu lan,wu lan jie dao,乌兰,乌兰街道,二连浩特,二连浩特市 43.6475 111.97667 P PPLA3 CN 20 16427 965 Asia/Harbin 2012-01-18
-2037494 Erdaojiang Erdaojiang Erdaojiang,Erh-tao-chiang,Erh-tao-kou 41.77639 126.03194 P PPL CN 05 60831 407 Asia/Harbin 2012-01-18
-2037508 Erdao Erdao Erdao,Erdao Zhen,Erdaogou,er dao,er dao gou,er dao zhen,二道,二道沟,二道镇 40.59582 122.26719 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-18
-2037509 Erdaodianzi Erdaodianzi Erdaodianzi,Erdaodianzi Zhen,Erh-tao-tien-tzu,er dao dian zi,er dao dian zi zhen,二道甸子,二道甸子镇 43.14232 127.14257 P PPLA4 CN 05 0 278 Asia/Harbin 2012-01-18
-2037511 Erdaobaihe Erdaobaihe Erdaobaihe,Erdaobaihe Zhen,Erh-tao-pai-ho,er dao bai he,er dao bai he zhen,二道白河,二道白河镇 42.42456 128.11048 P PPLA4 CN 05 0 708 Asia/Harbin 2012-01-18
-2037530 Duolun Duolun Dolon Nor,Dolonnur,Dolonor,Doloon Nuur,Dolunnor,Duolun,Duolun Xian,Duolunnao'er Zhen,Duolunnao’er Zhen,Lam-yao,Lama Miao,Lamo Miao,To-lun,To-lun-hsien,Tolunnoerh,duo lun nao er,duo lun nao er zhen,duo lun xian,la ma miao,喇嘛庙,多伦县,多伦淖尔,多伦淖尔镇 42.18712 116.48909 P PPLA3 CN 20 0 1240 Asia/Shanghai 2012-01-18
-2037534 Dunhua Dunhua Ao-tung-ch'eng,Ao-tung-ch’eng,Dun'khua,Dunhua,Tun-hua,Tun-hua-chen,Tun-hua-hsien,Tung Hua,Tunhwa,Дуньхуа 43.3725 128.2425 P PPL CN 05 148844 501 Asia/Harbin 2012-01-18
-2037595 Dongshengyong Dongshengyong Dongshengyong,Dongshengyong Zhen,Tung-sheng-yung,dong sheng yong,dong sheng yong zhen,东盛涌,东盛涌镇 42.8089 129.50011 P PPLA4 CN 05 0 229 Asia/Harbin 2012-01-18
-2037603 Dongshangen Dongshangen Dongshangen,Qiuzigou Xiang,dong shan gen,qiu zi gou xiang,东山根,秋子沟乡 40.37553 119.77183 P PPLA4 CN 19 0 185 Asia/Harbin 2012-01-18
-2037611 Dongning Dongning Dongning,Dongning Xian,Dongning Zhen,Hsiao-ch'eng-tzu,Hsiao-ch’eng-tzu,Tung-ning,Tung-ning-chen,Tung-ning-hsien,dong ning,dong ning xian,dong ning zhen,东宁,东宁县,东宁镇 44.06219 131.12075 P PPLA3 CN 08 61440 114 Asia/Harbin 2012-01-18
-2037620 Dongling Dongling Dongling,Donlin,Tung-ling,Донлин 41.81444 123.57583 P PPL CN 19 171454 53 Asia/Harbin 2012-01-18
-2037647 Dongguang Dongguang Dongguang,Dongguang Zhen,dong guang,dong guang zhen,东光,东光镇 43.29123 129.8074 P PPLA4 CN 05 0 256 Asia/Harbin 2012-01-18
-2037649 Donggang Donggang Donggang,Donggang Zhen,Tung-kang,dong gang,dong gang zhen,东岗,东岗镇 42.16156 127.48589 P PPLA4 CN 05 0 753 Asia/Harbin 2012-01-18
-2037658 Dongfeng Dongfeng Dongfeng,Ta-tu-ch'uan,Ta-tu-ch’uan,Tung-feng,Tung-feng-chen,Tung-feng-hsien,Tung-p'ing-hsien,Tung-p’ing-hsien,dong feng,东丰 42.64031 125.51176 P PPLA3 CN 05 67820 350 Asia/Harbin 2012-01-18
-2037662 Pucheng Pucheng Dongcheng,Dongcheng Zhen,Pucheng,dong cheng zhen,pu cheng,东城镇,普城 42.7437 129.32479 P PPLA4 CN 05 0 279 Asia/Harbin 2012-01-18
-2037669 Dongbeicha Dongbeicha Dongbeicha,Dongbeicha Xiang,dong bei cha,dong bei cha xiang,东北岔,东北岔乡 41.7375 127.28778 P PPLA4 CN 05 0 869 Asia/Harbin 2012-01-18
-2037685 Didao Didao Didao,Ti-tao 45.36667 130.8 P PPL CN 08 109561 260 Asia/Harbin 2012-01-18
-2037712 Dehui Dehui Chang-chia-wan,Dehui,Te-hui,Te-hui-chen,Tszhantszyavan',Tszhantszyavan’,Yao-men 44.53333 125.7 P PPL CN 05 108818 180 Asia/Harbin 2012-01-18
-2037736 Dayingzi Dayingzi Dayingzi,Dayingzi Zhen,Ta-ying-tzu,da ying zi,da ying zi zhen,大营子,大营子镇 40.31417 123.6075 P PPLA4 CN 19 0 57 Asia/Harbin 2012-01-18
-2037748 Daxing Daxing Daxing,Daxing Xiang,Daxingpu,da xing,da xing xiang,大兴,大兴乡 40.96558 120.94198 P PPLA4 CN 19 0 37 Asia/Harbin 2012-01-18
-2037749 Daxinggou Daxinggou Daxinggou,Daxinggou Zhen,Ta-hsing-kou,da xing gou,da xing gou zhen,大兴沟,大兴沟镇 43.40734 129.6612 P PPLA4 CN 05 0 238 Asia/Harbin 2012-01-18
-2037776 Dawa Dawa Dawa,Dawa Zhen,Ta-wa,da wa,da wa zhen,大洼,大洼镇 40.99373 122.06804 P PPLA3 CN 19 0 5 Asia/Harbin 2012-01-18
-2037799 Datong Datong Dagu,Daido,Datong,Datongas,Datun,Ta-jen,Ta-jen-hsien,Ta-ku,Ta-t'ung,Ta-t'ung-hsien,Ta-t'ung-shih,Ta-t’ung,Ta-t’ung-hsien,Ta-t’ung-shih,da tong shi,Датун,大同市 40.09361 113.29139 P PPL CN 24 1052678 1054 Asia/Shanghai 2012-01-18
-2037809 Dasuhe Dasuhe Dasuhe,Dasuhe Xiang,Ta-su-ho,da su he,da su he xiang,大苏河,大苏河乡 41.91817 124.95624 P PPLA4 CN 19 0 437 Asia/Harbin 2012-01-18
-2037811 Dasiping Dasiping Dasiping,Dasiping Zhen,da si ping,da si ping zhen,大四平,大四平镇 41.31686 124.71343 P PPLA4 CN 19 0 475 Asia/Harbin 2012-01-18
-2037820 Dashitou Dashitou Dashitou,Ta-shih-t'ou,Ta-shih-t'ou-ho-tzu,Ta-shih-t’ou,Ta-shih-t’ou-ho-tzu,Tashitou 43.30667 128.51139 P PPL CN 05 65683 524 Asia/Harbin 2012-01-18
-2037823 Dashiqiao Dashiqiao Dashiqiao,Dashiqiao Shi,Ta-shih-ch'iao,Ta-shih-ch'iao-chen,Ta-shih-ch’iao,Ta-shih-ch’iao-chen,Tashihkiao,Yingkou,da shi qiao,da shi qiao shi,大石桥,大石桥市 40.63732 122.50251 P PPLA3 CN 19 80223 16 Asia/Harbin 2012-01-18
-2037827 Dashi Dashi Dashi,Dashi Zhen,Dashibaozi,da shi,da shi zhen,大市,大市镇 41.77363 121.77015 P PPLA4 CN 19 0 0 136 Asia/Harbin 2012-01-18
-2037835 Dashahe Dashahe Dashahe,Ta-sha-ho,Ta-sha-ho-k'ou-tzu,Ta-sha-ho-k’ou-tzu,Yongqing Xiang,da sha he,yong qing xiang,大沙河,永庆乡 42.72266 128.25443 P PPLA4 CN 05 0 512 Asia/Harbin 2012-01-18
-2037842 Daquanyuan Daquanyuan Daquanyuan,Daquanyuan Manzu Chaoxianzu Xiang,Ta-ch'uan-yuan,Ta-ch’üan-yüan,da quan yuan,da quan yuan man zu chao xian zu xiang,大泉源,大泉源满族朝鲜族乡 41.55406 125.60401 P PPLA4 CN 05 0 414 Asia/Harbin 2012-01-18
-2037844 Daqin Tal Daqin Tal Daqin Tal,Daqin Tala Zhen,Nai-man-ch'i,Nai-man-ch’i,Nai-man-wang-fu,Naiman Qi,Ta-ch'in-t'a-la,Ta-ch’in-t’a-la,Tah-sing-tala,Tai-ch'in-t'a-la,Tai-ch’in-t’a-la,da qin ta la,da qin ta la zhen,nai man qi,大沁他拉,大沁他拉镇,奈曼旗 42.88333 120.66667 P PPLA3 CN 20 0 366 Asia/Harbin 2012-01-18
-2037860 Daqing Daqing An-ta,An-ta-shih,Anda,Dacin,Daqing,Sa-erh-t'u,Sa-erh-t’u,Sartu,Sha-erh-t'u,Sha-erh-t’u,Дацин 46.58333 125 P PPL CN 08 203488 146 Asia/Harbin 2012-01-18
-2037863 Dapuchaihe Dapuchaihe Dapuchaihe,Dapuchaihe Zhen,Ta-p'u-ch'ai-ho,Ta-pu-ts'ai-ho,Ta-pu-ts’ai-ho,Ta-p’u-ch’ai-ho,da pu chai he,da pu chai he zhen,大蒲柴河,大蒲柴河镇 42.87973 128.03049 P PPLA4 CN 05 0 563 Asia/Harbin 2012-01-18
-2037874 Daohe Daohe Daohe,Daohe Zhen,Tao-ho,dao he,dao he zhen,道河,道河镇 44.03321 130.82857 P PPLA4 CN 08 0 183 Asia/Harbin 2012-01-18
-2037886 Dandong Dandong An-tung-hsien,An-tung-shih,Antung,Dan'dun,Dandong,Dandong - dan dong,Dandong - 丹东,Sha-ho-ch'en,Sha-ho-ch’en,Sha-ho-tzu,Tan-tung,Tan-tung-shih,dan dong shi,dandung,Даньдун,丹东市,丹東市,단둥 40.12917 124.39472 P PPL CN 19 631973 10 Asia/Harbin 2012-01-18
-2037903 Dalu Dalu Dalu,Dalu Zhen,da lu,da lu zhen,大路,大路镇 40.99547 125.77121 P PPLA4 CN 05 0 188 Asia/Harbin 2012-01-18
-2037906 Dalizi Dalizi Dairisshiko,Dalizi,Dalizi Zhen,Ta-li,Ta-li-tsu,Ta-li-tzu,Ta-li-tzu-ko,Ta-li-tzu-kou,da su zi,da su zi zhen,大粟子,大粟子镇 41.73028 126.83333 P PPLA4 CN 05 0 343 Asia/Harbin 2012-01-18
-2037913 Linghai Linghai Chin,Chin-hsien,Dalinghe,Jinxian,Linghai,Linghai Shi,Ta-ling-ho,Ta-ling-ho-chen,Ta-ling-ho-tien,Ta-ling-ho-tien-tzu 41.16528 121.36667 P PPL CN 19 56176 27 Asia/Harbin 2012-01-18
-2037927 Dalain Hob Dalain Hob Buhelanda,Dalai Hob,Dalai Hob Zhen,Dalaihubu Zhen,Dalain Hob,Dalankebu,Eji'na Qi,Ejin Qi,Eji’na Qi,O-chi-na-ch'i,O-chi-na-ch’i,Pu-ho-lan-ta,Pu-k'o-lan-ta,Pu-k’o-lan-ta,Ta-lan-k'o-pu,Ta-lan-k'u-pu,Ta-lan-k’o-pu,Ta-lan-k’u-pu,da lai hu bu,da lai hu bu zhen,e ji na qi,达来呼布,达来呼布镇,额济纳旗 41.96528 101.06389 P PPLA3 CN 20 0 938 Asia/Urumqi 2012-01-18
-2037930 Dalai Dalai Da'an,Dalai,Dalaysyan',Dalaysyan’,Da’an,Mo-lo-hung-kang-tzu,Ta-an,Ta-lai,Ta-lai-chen,Ta-lai-hsien,Talaicheng 45.5 124.3 P PPL CN 05 93297 137 Asia/Harbin 2012-01-18
-2037937 Dajinggou Dajinggou Dajinggou,Dajinggou Xiang,da jing gou,da jing gou xiang,大镜沟,大镜沟乡 41.86243 126.52375 P PPLA4 CN 05 0 567 Asia/Harbin 2012-01-18
-2037998 Daduling Daduling Daduling,Daduling Xiang,Ta-tu-ling,da dou ling,da dou ling xiang,大都岭,大都岭乡 41.6175 125.69083 P PPLA4 CN 05 0 450 Asia/Harbin 2012-01-18
-2037999 Daduchuan Daduchuan Daduchuan,Daduchuan Zhen,Ta-tu-ch'uan,Ta-tu-ch’uan,da du chuan,da du chuan zhen,大肚川,大肚川镇 43.94532 131.06772 P PPLA4 CN 08 0 163 Asia/Harbin 2012-01-18
-2038025 Daban Daban Bairin Youqi,Balin'yutsi,Balinyou Qi,Balin’yutsi,Daban,Daban Zhen,Daban'shan,Daban’shan,Pa-lin-yu-ch'i,Pa-lin-yu-ch’i,Pa-lin-yu-i-ch'i,Pa-lin-yu-i-ch’i,Ta-pa-lin-wang-fu,Ta-pa-shang,Ta-pan,Ta-pan-shang,ba lin you qi,da ban,da ban zhen,大板,大板镇,巴林右旗 43.53333 118.66667 P PPLA3 CN 20 0 632 Asia/Harbin 2012-01-18
-2038036 Da’an Da'an Da'an,Da'an Zhen,Da’an,Da’an Zhen,Ta-an,da an,da an zhen,大安,大安镇 41.83556 126.12722 P PPLA4 CN 05 0 449 Asia/Harbin 2012-01-18
-2038052 Chunyang Chunyang Ch'un-yang-ts'un,Chunyang,Chunyang Zhen,Ch’un-yang-ts’un,chun yang,chun yang zhen,春阳,春阳镇 43.71176 129.43261 P PPLA4 CN 05 0 358 Asia/Harbin 2012-01-18
-2038054 Xitumenzi Xitumenzi Chunhua,Chunhua Zhen,Tung-hsing-chen,Xitumenzi,chun hua zhen,xi tu men zi,春化镇,西土门子 43.19514 131.07257 P PPLA4 CN 05 0 208 Asia/Harbin 2012-01-18
-2038059 Choushui Choushui Ch'ou-shui-ho,Choushui,Choushui Xiang,Ch’ou-shui-ho,chou shui,chou shui xiang,抽水,抽水乡 42.39463 127.07627 P PPLA4 CN 05 0 503 Asia/Harbin 2012-01-18
-2038060 Chongshan Chongshan Ch'ung-shan,Chongshan,Chongshan Zhen,Ch’ung-shan,chong shan,chong shan zhen,崇善,崇善镇 42.09339 128.99946 P PPLA4 CN 05 0 552 Asia/Harbin 2012-01-18
-2038067 Chifeng Chifeng Ch'ih-feng,Ch'ih-feng-chou,Ch'ih-feng-hsien,Ch'ih-feng-shih,Chifehn,Chifeng,Chifeng Shi,Ch’ih-feng,Ch’ih-feng-chou,Ch’ih-feng-hsien,Ch’ih-feng-shih,Ha-ta,Hongshan Qu,Tschifong,Tschiföng,Ulaan Hada,Ulanhad,Wu-lan-ha-ta,chi feng,chi feng shi,hong shan qu,Чифэн,红山区,赤峰,赤峰市 42.26833 118.96361 P PPLA2 CN 20 346654 570 Asia/Harbin 2012-01-18
-2038080 Chengzihe Chengzihe Ch'eng-tzu-ho,Chengzihe,Ch’eng-tzu-ho 45.33333 131.06667 P PPL CN 08 98188 210 Asia/Harbin 2012-01-18
-2038087 Chengde Chengde Ch'eng-te,Ch'eng-te-hsien,Ch'eng-te-shih,Chehndeh,Chengde,Chengteh,Ch’eng-te,Ch’eng-te-hsien,Ch’eng-te-shih,Je-ho,Jehoi,Jehol,Jo-ho,Tschongto,cheng de shi,Чэндэ,承徳市,承德市 40.9725 117.93611 P PPL CN 10 449325 332 Asia/Harbin 2012-01-18
-2038106 Chaoyangchuan Chaoyangchuan Chaoyangchuan,Chaoyangchuan Zhen,chao yang chuan,chao yang chuan zhen,朝阳川,朝阳川镇 42.87971 129.36146 P PPLA4 CN 05 0 201 Asia/Harbin 2012-01-18
-2038117 Qiujia Qiujia Chaoyang,Chaoyang Zhen,Qiujia,chao yang,chao yang zhen,qiu jia,朝阳,朝阳镇,邱家 43.11736 124.07262 P PPLA4 CN 19 0 154 Asia/Harbin 2012-01-18
-2038118 Chaoyang Chaoyang Ch'ao-yang-chen,Ch'ao-yang-shen,Chaojan,Chaoyang,Ch’ao-yang-chen,Ch’ao-yang-shen,Huinan,chao yang,Чаоян,朝阳 42.66223 126.0263 P PPLA3 CN 05 75347 297 Asia/Harbin 2012-01-18
-2038120 Chaoyang Chaoyang Ch'ao-yang-chen,Ch'ao-yang-hsien,Ch'ao-yang-shih,Chaiyang,Chaojan,Chaoyang,Ch’ao-yang-chen,Ch’ao-yang-hsien,Ch’ao-yang-shih,San-tso-t'a,San-tso-t’a,Чаоян 41.57028 120.45861 P PPL CN 19 410005 162 Asia/Harbin 2012-01-18
-2038133 Changxingdian Changxingdian Ch'ang-hsing,Ch'ang-hsing-tien,Changxingdian,Changxingdian Zhen,Ch’ang-hsing,Ch’ang-hsing-tien,chang xing dian,chang xing dian zhen,常兴店,常兴店镇 41.44951 121.72508 P PPLA4 CN 19 0 0 28 Asia/Harbin 2012-01-18
-2038134 Changxing Changxing Changxing,Changxing Xiang,zhang xing,zhang xing xiang,长兴,长兴乡 43.18133 128.93786 P PPLA4 CN 05 0 395 Asia/Harbin 2012-01-18
-2038139 Changtu Changtu Ch'ang-t'u-chen,Ch'ang-tu-chan,Changtu,Changtu Xian,Chantu,Ch’ang-tu-chan,Ch’ang-t’u-chen,chang tu,chang tu xian,Чанту,昌图,昌图县 42.77884 124.09545 P PPLA3 CN 19 71284 135 Asia/Harbin 2012-01-18
-2038154 Changping Changping Ch'ang-p'ing-ch'u,Ch'ang-p'ing-chen,Ch'ang-p'ing-hsien,Changping,Chanpin,Ch’ang-p’ing-chen,Ch’ang-p’ing-ch’ü,Ch’ang-p’ing-hsien,Чанпин 40.21861 116.21972 P PPL CN 22 93174 71 Asia/Harbin 2012-01-18
-2038158 Changling Changling Ch'ang-ling-chen,Ch'ang-ling-hsien,Ch'ang-ling-tzu,Changling,Ch’ang-ling-chen,Ch’ang-ling-hsien,Ch’ang-ling-tzu,zhang ling,长岭 44.26532 124.00045 P PPLA3 CN 05 55841 190 Asia/Harbin 2012-01-18
-2038180 Changchun Changchun Ch'ang-ch'un-hsien,Ch'ang-ch'un-shih,Chanchun',Changchun,Changchun Shi,Ch’ang-ch’un-hsien,Ch’ang-ch’un-shih,Hsin-chin,Hsin-ching,Hsinking,K'ua-ch'eng-tzu,Kwan-cheng-tze,K’ua-ch’eng-tzu,zhang chun,Чанчунь,长春 43.88 125.32278 P PPLA CN 05 2537421 206 Asia/Harbin 2012-01-18
-2038185 Changbai Changbai Ch'ang-pai-ch'ao-hsien-tsu-tzu-chih-hsien,Ch'ang-pai-chen,Ch'ang-pai-hsien,Chang-pai,Changbai,Changpai-fu,Changpaishan,Ch’ang-pai-chen,Ch’ang-pai-ch’ao-hsien-tsu-tzu-chih-hsien,Ch’ang-pai-hsien,zhang bai,长白 41.41673 128.19053 P PPLA3 CN 05 0 722 Asia/Harbin 2012-01-18
-2038198 Chaihe Chaihe Ch'ai-ho,Chaihe,Ch’ai-ho 44.76667 129.7 P PPL CN 08 67963 329 Asia/Harbin 2012-01-18
-2038204 Chagou Chagou Ch'a-kou,Chagou,Chagou Zhen,Ch’a-kou,Pa-ch'a-kou,Pa-ch’a-kou,cha gou,cha gou zhen,岔沟,岔沟镇 40.6168 122.86091 P PPLA4 CN 19 0 112 Asia/Harbin 2012-01-18
-2038215 Caohekou Caohekou Caohekou,Caohekou Zhen,Ts'ao-ho-k'ou,Ts’ao-ho-k’ou,cao he kou,cao he kou zhen,草河口,草河口镇 40.87896 123.90382 P PPLA4 CN 19 0 241 Asia/Harbin 2012-01-18
-2038227 Caiyuan Caiyuan Caiyuan,Caiyuan Zhen,Ts'ai-yuan,Ts’ai-yüan,cai yuan,cai yuan zhen,财源,财源镇 41.33751 125.71297 P PPLA4 CN 05 0 319 Asia/Harbin 2012-01-18
-2038258 Budayuan Budayuan Budayuan,Budayuan Zhen,Pu-ta-yuan,Pu-ta-yuan-erh,Pu-ta-yüan,Pu-ta-yüan-erh,bu da yuan,bu da yuan zhen,步达远,步达远镇 40.93396 125.3333 P PPLA4 CN 19 0 174 Asia/Harbin 2012-01-18
-2038267 Boluopu Boluopu Boluopu,Boluopu Zhen,Po-lo-p'u,Po-lo-pao,Po-lo-p’u,bo luo pu,bo luo pu zhen,博洛铺,博洛铺镇 40.529 122.45934 P PPLA4 CN 19 0 16 Asia/Harbin 2012-01-18
-2038274 Boli Boli Boli,P'o-li,P'o-li-chen,P'o-li-hsien,Боли 45.76667 130.51667 P PPL CN 08 95260 231 Asia/Harbin 2010-01-29
-2038283 Binzhou Binzhou Binsyan,Binxian,Binzhou,Binzhou Zhen,Pin,Pin-chou,Pin-chou-chen,Pin-chow,Pin-hsien,Pintschou,Wei-tzu-kou,bin zhou,bin zhou zhen,宾州,宾州镇 45.75281 127.47986 P PPLA3 CN 08 62017 167 Asia/Harbin 2012-01-18
-2038285 Binxi Binxi Binxi,Binxi Zhen,Pin-hsi,bin xi,bin xi zhen,宾西,宾西镇 45.7487 127.15628 P PPLA4 CN 08 0 147 Asia/Harbin 2012-01-18
-2038288 Bin’an Bin'an Bin'an,Bin'an Zhen,Bin’an,Bin’an Zhen,Pin-an,bin an,bin an zhen,宾安,宾安镇 45.84156 127.76082 P PPLA4 CN 08 0 127 Asia/Harbin 2012-01-18
-2038300 Benxi Benxi Behn'si,Benxi,Pen Shi,Pen-ch'i,Pen-ch'i-hsien,Pen-ch'i-hu,Pen-ch'i-shih,Pen-ch’i,Pen-ch’i-hsien,Pen-ch’i-hu,Pen-ch’i-shih,Pen-hsi,Pen-hsi-shih,Penki,Penkihu,ben xi shi,Бэньси,本渓,本溪市 41.28861 123.765 P PPL CN 19 987717 212 Asia/Harbin 2012-01-18
-2038311 Beiyinhe Beiyinhe Beiyinhe,Beiyinhe Zhen,Pei-yin-ho,Pei-ying-ho,bei yin he,bei yin he zhen,北荫河,背荫河镇 45.16667 127 P PPLA4 CN 08 0 168 Asia/Harbin 2012-01-18
-2038342 Beipiao Beipiao Beipiao,Pehpiao,Pei-p'iao,Pei-p'iao-chen,Pei-p'iao-hsien,Pei-p’iao,Pei-p’iao-chen,Pei-p’iao-hsien 41.79194 120.77917 P PPL CN 19 154999 266 Asia/Harbin 2012-01-18
-2038350 Beijiazao Beijiazao Beijiazao,Hsin-chia-tsao,Pei-chia-tsao 40.05333 113.46917 P PPLA4 CN 24 0 1047 Asia/Shanghai 2012-01-18
-2038356 Beigang Beigang Beigang,Beigang Zhen,T'ou-tao-la-tzu-ho,T'ou-tao-lei-tzu-ho,T’ou-tao-la-tzu-ho,T’ou-tao-lei-tzu-ho,bei gang,bei gang zhen,北岗,北岗镇 42.41972 127.53444 P PPLA4 CN 05 0 743 Asia/Harbin 2012-01-18
-2038377 Bayantuohai Bayantuohai Bayan Tohoi,Bayantuohai,Bayantuohai Zhen,Ewenkizu Zizhiqi,Han-t'un,Han-t’un,NAN'TUN',Na-yin-t'un,Na-yin-t’un,Nai-t'un,Nai-t'ung,Nai-t’un,Nai-t’ung,Naintun,Nan-t'un,Nan-t’un,Nayntun,Naytun,O-wen-k'o-tsu-tzu-chih-ch'i,O-wen-k’o-tsu-tzu-chih-ch’i,So-lun-ch'i,So-lun-ch’i,Solon,ba yan tuo hai,ba yan tuo hai zhen,e wen ke zu zi zhi qi,НАНЬТУНЬ,巴彦托海,巴彦托海镇,鄂温克族自治旗 49.13333 119.73333 P PPLA3 CN 20 0 616 Asia/Harbin 2012-01-18
-2038395 Bayan Huxu Bayan Huxu Bayan Huxu,Bayanhushu,Bayanhushu Zhen,Horqin Youyi Zhongqi,K'o-erh-ch'in-yu-i-chung-ch'i,Ke'erqinyouyiqian Qi,Ke’erqinyouyiqian Qi,K’o-erh-ch’in-yu-i-chung-ch’i,Pai-yun-hu-shih,Pai-yün-hu-shih,ba yan hu shu,ba yan hu shu zhen,bai yin hu shuo,ke er qin you yi zhong qi,巴彦呼舒,巴彦呼舒镇,白音胡硕,科尔沁右翼中旗 45.15 121.4 P PPLA3 CN 20 0 291 Asia/Harbin 2012-01-18
-2038397 Bayan Hure Bayan Hure Barga,Bayan Hure,Bayankuren,Bayankuren Zhen,Ch'en-pa-erh-hu-ch'i,Chen Barag Qi,Chenba'erhu Qi,Chenba’erhu Qi,Ch’en-pa-erh-hu-ch’i,Pa-yen-k'u-jen,Pa-yen-k’u-jen,ba yan ku ren,ba yan ku ren zhen,chen ba er hu qi,巴彦库仁,巴彦库仁镇,陈巴尔虎旗 49.5 119.51667 P PPLA3 CN 20 0 608 Asia/Harbin 2012-01-18
-2038411 Bayan Gol Bayan Gol Bayan Gol,Bayangaole,Bayangaole Zhen,Dengkou,Dengkou Xian,Pa-yen-kao-le,Pa-yen-kao-le-chen,Pa-yen-kao-lo,Pa-yen-kao-lo-chen,Pa-yen-kao-lo-shih,San'shengun,San-sheng-kung,San-tao-ho,Santokho,San’shengun,Teng-k'ou,Teng-k'ou-hsien,Teng-k’ou,Teng-k’ou-hsien,ba yan gao lei,ba yan gao lei zhen,deng kou xian,巴彦高勒,巴彦高勒镇,磴口县 40.3 106.98333 P PPLA3 CN 20 0 1053 Asia/Chongqing 2012-01-18
-2038413 Bayangang Bayangang Bayangang,Bayangang Zhen,ba yan gang,ba yan gang zhen,巴彦港,巴彦港镇 46.04309 127.54144 P PPLA4 CN 08 0 113 Asia/Harbin 2012-01-18
-2038421 Bayan Bayan Bajan,Bayan,Bayan Xian,Bayan Zhen,Pa Jen,Pa-yen-chen,Pa-yen-hsien,Pa-yen-su,Pa-yen-su-su,Payen,ba yan,ba yan xian,ba yan zhen,Баян,巴彦,巴彦县,巴彦镇 46.08333 127.4 P PPLA3 CN 08 55186 136 Asia/Harbin 2012-01-18
-2038432 Baotou Baotou Baotou,Baotou Shi,Pao-t'ou,Pao-t'ou-hsien,Pao-t'ou-shih,Pao-tow,Pao-t’ou,Pao-t’ou-hsien,Pao-t’ou-shih,Баотоу 40.65222 109.82222 P PPL CN CN 20 1301768 1066 Asia/Chongqing 2012-01-18
-2038438 Baoshan Baoshan Baoshan,Baoshan',Pao-shan,Баошань 46.55861 131.42444 P PPL CN 08 123791 167 Asia/Harbin 2012-01-18
-2038440 Baoshan Baoshan Baoshan,Baoshan Zhen,bao shan,bao shan zhen,宝山,宝山镇 40.36384 123.8615 P PPLA4 CN 19 0 84 Asia/Harbin 2012-01-18
-2038446 Baoqing Baoqing BAOCIN,Baoqing,Baotsin,Pao-ch'ing,Pao-ch'ing-chen,Pao-ch'ing-hsien,Pao-ch’ing,Pao-ch’ing-chen,Pao-ch’ing-hsien,Paotsing,БАОЦИН 46.33167 132.21111 P PPL CN 08 62991 84 Asia/Harbin 2012-01-18
-2038452 Baokang Baokang Baokang,Baokang Zhen,Horqin Zuoyi Zhongqi,K'o-erh-ch'in-tso-chung-ch'i,K'o-erh-ch'in-tso-i-chung-ch'i,K'o-tso-chung-ch'i,Ke'erqinzuoyizhong Qi,Ke’erqinzuoyizhong Qi,K’o-erh-ch’in-tso-chung-ch’i,K’o-erh-ch’in-tso-i-chung-ch’i,K’o-tso-chung-ch’i,Pao-k'ang,Pao-k’ang,bao kang,bao kang zhen,ke er qin zuo yi zhong qi,ke zuo zhong qi,保康,保康镇,科尔沁左翼中旗,科左中旗 44.11972 123.30472 P PPLA3 CN 20 0 146 Asia/Harbin 2012-01-18
-2038461 Baochang Baochang Baochang,Baochang Zhen,Koting,Pao-ch'ang,Pao-ch'ang-chen,Pao-ch'ang-hsien,Pao-ch’ang,Pao-ch’ang-chen,Pao-ch’ang-hsien,T'ai-p'u-ssu-ch'i,Taibusi Qi,Taipusi Qi,T’ai-p’u-ssu-ch’i,bao chang,bao chang zhen,tai pu si qi,太仆寺旗,宝昌,宝昌镇 41.88444 115.27889 P PPLA3 CN 20 0 1456 Asia/Harbin 2012-01-18
-2038468 Banshi Banshi Banshi,Banshi Zhen,Pan-shih,Pan-shih-kou-t'un,Pan-shih-kou-t’un,Pan-shin,ban shi,ban shi zhen,板石,板石镇 42.77833 130.33833 P PPLA4 CN 05 0 51 Asia/Harbin 2012-01-18
-2038482 Bamiantong Bamiantong Bamiantong,Mu-leng,Mu-leng-hsien,Muling,Pa-mien-t'ung,Pa-mien-t'ung-chen,Pa-mien-t’ung,Pa-mien-t’ung-chen 44.93333 130.53333 P PPL CN 08 66170 264 Asia/Harbin 2012-01-18
-2038484 Bamiancheng Bamiancheng Bamiancheng,Bamiancheng Zhen,Pa-mien-ch'eng,Pa-mien-ch’eng,ba mian cheng,ba mian cheng zhen,八面城,八面城镇 43.19727 124.04924 P PPLA4 CN 19 0 138 Asia/Harbin 2012-01-18
-2038490 Balidianzi Balidianzi Balidianzi,Balidianzi Zhen,Pa-li-tien-tzu,ba li dian zi,ba li dian zi zhen,八里甸子,八里甸子镇 41.23968 124.89026 P PPLA4 CN 19 0 475 Asia/Harbin 2012-01-18
-2038493 Bali Bali Bali,Bali Zhen,Pa-li-ho,ba li,ba li zhen,八里,八里镇 40.78857 122.75451 P PPLA4 CN 19 0 43 Asia/Harbin 2012-01-18
-2038502 Bajiazi Bajiazi Bajiazi,Bajiazi Zhen,Pa-chia-tzu,Shangnan,ba jia zi,ba jia zi zhen,八家子,八家子镇 42.66595 129.11389 P PPLA4 CN 05 0 336 Asia/Harbin 2012-01-18
-2038527 Baishuitan Baishuitan Baishuitan,Yanjiang Xiang,bai shui tan,yan jiang xiang,沿江乡,白水滩 42.75946 127.8006 P PPLA4 CN 05 0 493 Asia/Harbin 2012-01-18
-2038529 Baishishan Baishishan Baishishan,Pai-shih-shan 43.58333 127.56667 P PPL CN 05 56992 348 Asia/Harbin 2012-01-18
-2038533 Baishan Baishan Baishan,Baishan Zhen,Baishanzhen,Pai-shan,bai shan,bai shan zhen,白山,白山镇 42.73376 127.23437 P PPLA4 CN 05 0 435 Asia/Harbin 2012-01-18
-2038541 Baiquan Baiquan Baiquan,Pai-ch'uan,Pai-ch'uan-chen,Pai-ch'uan-hsien,Pai-ch’üan,Pai-ch’üan-chen,Pai-ch’üan-hsien,Ta-p'ao-tzu,Ta-p’ao-tzu 47.58333 126.08333 P PPL CN 08 70472 225 Asia/Harbin 2012-01-18
-2038542 Baiquan Baiquan Baiquan,Pai-ch'uan,Pai-ch’üan,bai quan,白泉 42.88538 124.95827 P PPLA3 CN 05 0 336 Asia/Harbin 2012-01-18
-2038552 Bailingmiao Bailingmiao Bail Miao,Bailingmiao,Bata Khalga,Batu Halga Sume,Baylinmyao,Darhan Muminggan Lianheqi,Darhan Qi,Pai-lin,Pai-lin-miao,Pai-ling-miao,Pei-lo-miao,Polingmiao,So-ha-lun-k'u-lieh Miao,So-ha-lun-k’u-lieh Miao,Ta-erh-han-mao-ming-an-ch'i,Ta-erh-han-mao-ming-an-ch’i,Ta-erh-han-mao-ming-an-lien-ho-ch'i,Ta-erh-han-mao-ming-an-lien-ho-ch’i,Ta-mao-lien-ho-ch'i,Ta-mao-lien-ho-ch’i,bai ling miao,da er han mao ming an lian he qi,da er han qi,百灵庙,达尔罕旗,达尔罕茂明安联合旗 41.69194 110.43556 P PPLA3 CN 20 0 1385 Asia/Harbin 2012-01-18
-2038569 Baicheng Baicheng Baicheng,Bajchen,Pai-ch'eng,Pai-ch'eng-shih,Pai-ch'eng-tzu,Pai-ch’eng,Pai-ch’eng-shih,Pai-ch’eng-tzu,Paichengtze,T'ao-an,T'ao-an-hsien,T'ao-yen,T’ao-an,T’ao-an-hsien,T’ao-yen,Байчен 45.61667 122.81667 P PPL CN 05 316970 149 Asia/Harbin 2012-01-18
-2038572 Baicaogou Baicaogou Baicaogou,Baicaogou Zhen,Hsiao-pai-ts'ao-kou,Hsiao-pai-ts’ao-kou,Pai-ts'ao-kou,Pai-ts’ao-kou,Potsaokou,Wang-ch'ing-hsien,Wang-ch’ing-hsien,bai cao gou,bai cao gou zhen,百草沟,百草沟镇 43.26543 129.60272 P PPLA4 CN 05 0 178 Asia/Harbin 2012-01-18
-2038577 Xiqu Xiqu Bahechuan,Pa-ho-ch'uan,Pa-ho-ch’uan,Xiqu,xi qu,西区 26.60566 101.59828 P PPLA3 CN 32 0 1094 Asia/Harbin 2012-01-18
-2038584 Baishan Baishan Badaojiang,Baishan,Bajshan',Hun-chiang,Hun-chiang-shih,Hunjiang,Pa-tao-chiang,Pa-tao-kou,Байшань 41.94306 126.42861 P PPL CN 05 183880 471 Asia/Harbin 2012-01-18
-2038595 Badaogou Badaogou Badaogou,Badaogou Zhen,ba dao gou,ba dao gou zhen,八道沟,八道沟镇 41.51726 127.26466 P PPLA4 CN 05 0 445 Asia/Harbin 2012-01-18
-2038621 Aojiapu Aojiapu Ao-chia-p'u,Ao-chia-pao-tzu,Ao-chia-p’u,Aojiapu,Aojiapu Xiang,ao jia bao,ao jia bao xiang,敖家堡,敖家堡乡 41.91106 124.77733 P PPLA4 CN 19 0 435 Asia/Harbin 2012-01-18
-2038632 Anshan Anshan An'shan',An-shan-shih,Anshan,Аньшань 41.12361 122.99 P PPL CN 19 1199275 55 Asia/Harbin 2012-01-18
-2038643 Anjia Anjia An-chia,Anjia,Anjia Zhen,an jia,an jia zhen,安家,安家镇 45.05109 127.06752 P PPLA4 CN 08 0 176 Asia/Harbin 2012-01-18
-2038650 Anda Anda An-ta,An-ta-chan,An-ta-chen,An-ta-hsien,An-ta-shih,Anda,Анда 46.4 125.31667 P PPL CN 08 181271 147 Asia/Harbin 2012-01-18
-2038656 Amgalang Amgalang A-mu-chan-lang,A-mu-k'o-lang,A-mu-ku-lang,A-mu-ku-liang,A-mu-k’o-lang,AMGALAN,Amgalang,Amgolan,Amugulang,Amugulang Zhen,Amuguro,East New Barga,Hsin-pa-erh-hu-tso-ch'i,Hsin-pa-erh-hu-tso-ch’i,Hsin-pa-erh-hu-tso-i-ch'i,Hsin-pa-erh-hu-tso-i-ch’i,Tung-hsin-pa-ch'i,Tung-hsin-pa-ch’i,Xin Barag Zuoqi,Xinba'erhuzuo Qi,Xinba’erhuzuo Qi,a mu gu lang,a mu gu lang zhen,xin ba er hu zuo qi,АМГАЛАН,新巴尔虎左旗,阿木古郎,阿木古郎镇 48.25 118.2 P PPLA3 CN 20 0 585 Asia/Harbin 2012-01-18
-2038661 Altan Emel Altan Emel A-erh-t'ai-mien,A-erh-t'ai-mien-chen,A-erh-t'an-ao-la,A-erh-t'an-o-mo-lo,A-erh-t'an-o-mo-na,A-erh-t’ai-mien,A-erh-t’ai-mien-chen,A-erh-t’an-ao-la,A-erh-t’an-o-mo-lo,A-erh-t’an-o-mo-na,A-la-t'an-o-mo-lo,A-la-t’an-o-mo-lo,Ala Tan'emole,Ala Tan'emole Zhen,Ala Tan’emole,Ala Tan’emole Zhen,Altan Emeel,Altan Emel,Altan-Ehmehl,Altan-emel,Alton Emel',Alton Emel’,Altyn Emel',Altyn Emel’,Altyn Emye,Altyn Emyel',Altyn Emyel’,Aritinemeri Ti-ch'u,Aritïnemeri Ti-ch’ü,Hsi-hsin-pa-ch'i,Hsi-hsin-pa-ch’i,Hsin-pa-erh-hu-yu-ch'i,Hsin-pa-erh-hu-yu-ch’i,Hsin-pa-erh-hu-yu-i-ch'i,Hsin-pa-erh-hu-yu-i-ch’i,Hsinpaerhhu,Xin Barag Youqi,Xinba'erhuyou Qi,Xinba’erhuyou Qi,a la tan e mo lei,a la tan e mo lei zhen,xin ba er hu you qi,Алтан-Эмэл,新巴尔虎右旗,阿拉坦额莫勒,阿拉坦额莫勒镇 48.66667 116.83333 P PPLA3 CN 20 0 551 Asia/Harbin 2012-01-18
-2038665 Alihe Alihe A-li,A-li-ho,ALIKHEH,Alihe,Alihe Zhen,Ari,Elunchun Zizhiqi,O-lun-ch'un-tsu-tzu-chih-ch'i,O-lun-ch'un-tzu-chih-ch'i,O-lun-ch’un-tsu-tzu-chih-ch’i,O-lun-ch’un-tzu-chih-ch’i,Oroqen Zizhiqi,a li he,a li he zhen,e lun chun zi zhi qi,АЛИХЭ,鄂伦春自治旗,阿里河,阿里河镇 50.56667 123.71667 P PPLA3 CN 20 61582 419 Asia/Harbin 2012-01-18
-2038679 Acheng Acheng A-ch'eng-chen,A-ch'eng-hsien,A-ch’eng-chen,A-ch’eng-hsien,A-shih-ho,A-shih-ko,Acheng,Acheng Shi,Akheng,Asche-ho,Ashiho,a cheng,a cheng shi,Ахенг,阿城,阿城市 45.54545 126.97703 P PPLA3 CN 08 144665 139 Asia/Harbin 2012-01-18
-2045478 Shisidaogou Shisidaogou Shih-ssu-tao-kou,Shisidaogou,Shisidaogou Zhen,shi si dao gou,shi si dao gou zhen,十四道沟,十四道沟镇 41.45167 127.92167 P PPLA4 CN 05 0 616 Asia/Harbin 2012-01-19
-2045485 Jinhua Jinhua Banqiegou,Barjiegou,Jinhua,Jinhua Xiang,Pan-chieh-kou,jin hua,jin hua xiang,金华,金华乡 41.42778 128.0275 P PPLA4 CN 05 0 673 Asia/Harbin 2012-01-19
-2045898 Shisandaogou Shisandaogou Shih-san-tao-kou,Shisandaogou,Shisandaogou Xiang,shi san dao gou,shi san dao gou xiang,十三道沟,十三道沟乡 41.42917 127.77861 P PPLA4 CN 05 0 560 Asia/Harbin 2012-01-19
-2046561 Xiaoshahe Xiaoshahe Heng-tao-tzu,Xiaoshahe,Xiaoshahe Xiang,xiao sha he,xiao sha he xiang,小沙河,小沙河乡 42.63944 128.29361 P PPLA4 CN 05 0 576 Asia/Harbin 2012-01-19
-2047368 Donglai Donglai Donglai,Donglai Xiang,dong lai,dong lai xiang,东来,东来乡 41.65234 126.14449 P PPLA4 CN 05 0 509 Asia/Harbin 2012-01-19
-2050964 Bayinbaolige Bayinbaolige Bayinbaolige,Bayinbaolige Zhen,Dong Xur Miao,Dongsheng Miao,Tung-shih-erh-miao,Urad Houqi,Wulatehou Qi,ba yin bao li ge,ba yin bao li ge zhen,dong sheng miao,wu la te hou qi,东升庙,乌拉特后旗,巴音宝力格,巴音宝力格镇 41.09139 107.06639 P PPLA3 CN 20 0 1035 Asia/Chongqing 2012-01-19
-2050968 Ulashan Ulashan Erh-ta-lai-tien,T'ieh-tzu-tien,T’ieh-tzu-tien,Ul Shan,Ulashan,Urad Qianqi,Wulashan,Wulashan Zhen,Wulateqian Qi,wu la shan,wu la shan zhen,wu la te qian qi,乌拉山,乌拉山镇,乌拉特前旗 40.665 108.74472 P PPLA3 CN 20 0 1021 Asia/Chongqing 2012-01-19
-2051050 Tongfosi Tongfosi Tongfosi,Tongfosi Zhen,tong fu si,tong fu si zhen,铜佛寺,铜佛寺镇 42.88737 129.24257 P PPLA4 CN 05 0 219 Asia/Harbin 2012-01-19
-2051052 Erdao Erdao Erdao,Erdaogou,Xicheng Zhen,er dao,xi cheng zhen,二道,西城镇 42.69756 129.09316 P PPLA4 CN 05 0 346 Asia/Harbin 2012-01-19
-2051067 Ying’an Ying'an Ying'an,Ying'an Zhen,Ying-an-t'un,Ying-an-t’un,Ying’an,Ying’an Zhen,ying an,ying an zhen,英安,英安镇 42.89 130.28583 P PPLA4 CN 05 0 42 Asia/Harbin 2012-01-19
-2051070 Sanjiazi Sanjiazi San-chia-tzu,Sanjiazi,Sanjiazi Manzu Xiang,san jia zi,san jia zi man zu xiang,三家子,三家子满族乡 42.84 130.30556 P PPLA4 CN 05 0 34 Asia/Harbin 2012-01-19
-2051074 Erdaopaozi Erdaopaozi Erdaopaozi,Jingxin Zhen,er dao pao zi,jing xin zhen,二道泡子,敬信镇 42.6375 130.47167 P PPLA4 CN 05 0 29 Asia/Harbin 2012-01-19
-2051077 Dashiren Dashiren Dashiren,Dashiren Xiang,Dashiren Zhen,da shi ren,da shi ren zhen,大石人,大石人镇 41.9335 126.54694 P PPLA4 CN 05 0 551 Asia/Harbin 2012-01-19
-2051080 Weishahe Weishahe Wei-sha-ho,Weishahe,Weishahe Xiang,Weishahe Zhen,wei sha he,wei sha he zhen,苇沙河,苇沙河镇 41.73694 126.74833 P PPLA4 CN 05 0 357 Asia/Harbin 2012-01-19
-2051187 Xiangrong Xiangrong Longtan Zhen,Xiangrong,long tan zhen,xiang rong,相荣,龙潭镇 40.14056 123.11694 P PPLA4 CN 19 0 115 Asia/Harbin 2012-01-19
-2052242 Jiulong Jiulong I-lan-kou,Jiulong,Yilan Zhen,jiu long,yi lan zhen,九龙,依兰镇 43.10684 129.51716 P PPLA4 CN 05 0 229 Asia/Harbin 2012-01-19
-2052321 Baoshan Baoshan Baoshan,Baoshan Zhen,bao shan,bao shan zhen,宝山,宝山镇 41.61869 127.29111 P PPLA4 CN 05 0 847 Asia/Harbin 2012-01-19
-2052323 Xinfangzi Xinfangzi Xinfangzi,Xinfangzi Zhen,xin fang zi,xin fang zi zhen,新房子,新房子镇 41.55516 127.36038 P PPLA4 CN 05 0 492 Asia/Harbin 2012-01-19
-2052327 Baoquanshan Baoquanshan Baoquanshan,Baoquanshan Zhen,bao quan shan,bao quan shan zhen,宝泉山,宝泉山镇 41.51417 127.45639 P PPLA4 CN 05 0 896 Asia/Harbin 2012-01-19
-2052430 Sandaogou Sandaogou Sandaogou,Sandaogou Zhen,san dao gou,san dao gou zhen,三道沟,三道沟镇 41.64719 126.51147 P PPLA4 CN 05 0 363 Asia/Harbin 2012-01-19
-2052454 Maxian Maxian Maxian,Maxian Xiang,ma xian,ma xian xiang,麻线,麻线乡 41.09955 126.15277 P PPLA4 CN 05 0 225 Asia/Harbin 2012-01-19
-2052474 Haoxinying Haoxinying Haoxinying,Haoxinying Zhen,hao qin ying,hao qin ying zhen,毫沁营,毫沁营镇 40.88222 111.715 P PPLA4 CN 20 0 1103 Asia/Harbin 2012-01-19
-2053095 Jiujianfang Jiujianfang Huananxiang,Jiujianfang,hua nan xiang,jiu jian fang,九间房,桦南乡 42.9645 126.85512 P PPLA4 CN 05 0 274 Asia/Harbin 2012-01-19
-2053099 Xinxigang Xinxigang Xigang Xiang,Xinxigang,xi gang xiang,xin xi gang,新西岗,西岗乡 42.06472 127.35583 P PPLA4 CN 05 0 792 Asia/Harbin 2012-01-19
-2053105 Xinglong Xinglong Xinglong,Xinglong Xiang,xing long,xing long xiang,兴隆乡,兴龙 42.26167 127.38611 P PPLA4 CN 05 0 752 Asia/Harbin 2012-01-19
-2053106 Songjiao Songjiao Songjiao,Songjiao Xiang,song jiao,song jiao xiang,松郊,松郊乡 42.30382 127.27832 P PPLA4 CN 05 0 459 Asia/Harbin 2012-01-19
-2053115 Yushu Yushu Yushu,Yushu Zhen,yu shu,yu shu zhen,榆树,榆树镇 42.53856 127.16633 P PPLA4 CN 05 0 479 Asia/Harbin 2012-01-19
-2053166 Zhaoquanhe Zhaoquanhe Zhaoquanhe,Zhaoquanhe Xiang,zhao quan he,zhao quan he xiang,赵圈河,赵圈河乡 40.95922 121.99405 P PPLA4 CN 19 0 3 Asia/Harbin 2012-01-19
-2053170 Mashizhai Mashizhai Ertai,Ertai Xiang,Mashizhai,er tai,er tai xiang,ma shi zhai,二台,二台乡,马石寨 40.08859 122.08161 P PPLA4 CN 19 0 46 Asia/Harbin 2012-01-19
-2053172 Wangjia Wangjia Wangjia,Wangjia Xiang,wang jia,wang jia xiang,王家,王家乡 40.95088 122.06215 P PPLA4 CN 19 0 4 Asia/Harbin 2012-01-19
-2053173 Erjiegou Erjiegou Erjiegou,Erjiegou Zhen,Yushu,er jie gou,er jie gou zhen,yu shu,二界沟,二界沟镇,榆树 40.8505 122.07968 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-19
-2053177 Jiulongdi Jiulongdi Jiulongdi,Jiulongdi Manzu Zhen,Jiulongdi Zhen,jiu long de,jiu long de man zu zhen,jiu long de zhen,九垄地,九垄地满族镇,九垄地镇 40.15318 122.10626 P PPLA4 CN 19 0 16 Asia/Harbin 2012-01-19
-2053179 Xilanqi Xilanqi Hongqi Manzu Zhen,Hongqi Zhen,Xilanqi,hong qi man zu zhen,hong qi zhen,xi lan qi,红旗满族镇,红旗镇,西兰旗 40.22326 122.14515 P PPLA4 CN 19 0 15 Asia/Harbin 2012-01-19
-2053180 Heping Heping Chentun,Chentun Zhen,Heping,chen tun,chen tun zhen,he ping,和平,陈屯,陈屯镇 40.13755 122.19669 P PPLA4 CN 19 0 43 Asia/Harbin 2012-01-19
-2053181 Lutun Lutun Lutun,Lutun Zhen,lu tun,lu tun zhen,芦屯,芦屯镇 40.26399 122.18936 P PPLA4 CN 19 0 23 Asia/Harbin 2012-01-19
-2053185 Xi’an Xi'an Xi'an,Xi'an Zhen,Xi’an,Xi’an Zhen,xi an,xi an zhen,西安,西安镇 40.92266 122.23481 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-19
-2053186 Gouyan Gouyan Gouyan,Gouyan Zhen,gou yan,gou yan zhen,沟沿,沟沿镇 40.81901 122.24483 P PPLA4 CN 19 0 2 Asia/Harbin 2012-01-19
-2053188 Dongfeng Dongfeng Dongfeng,Dongfeng Zhen,dong feng,dong feng zhen,东风,东风镇 40.9749 122.26632 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-19
-2053191 Tuanshan Tuanshan Tuanshan,Tuanshan Jiedao,tuan shan,tuan shan jie dao,团山,团山街道 40.40497 122.28043 P PPLA4 CN 19 0 3 Asia/Harbin 2012-01-19
-2053192 Lunan Lunan Lunan,Lunan Zhen,lu nan,lu nan zhen,路南,路南镇 40.6882 122.30082 P PPLA4 CN 19 0 4 Asia/Harbin 2012-01-19
-2053197 Jianli Jianli Jianli,Shifu,Shifu Zhen,jian li,shi fu,shi fu zhen,建立,石佛,石佛镇 40.87659 122.3289 P PPLA4 CN 19 0 5 Asia/Harbin 2012-01-19
-2053203 Taiyangsheng Taiyangsheng Taiyangsheng,Taiyangsheng Jiedao,tai yang sheng,tai yang sheng jie dao,太阳升,太阳升街道 40.37046 122.3601 P PPLA4 CN 19 0 12 Asia/Harbin 2012-01-19
-2053216 Jinqiao Jinqiao Jinqiao,Jinqiao Jiedao,jin qiao,jin qiao jie dao,金桥,金桥街道 40.63278 122.48204 P PPLA4 CN 19 0 13 Asia/Harbin 2012-01-19
-2053218 Tuandian Tuandian Tuandian,Tuandian Zhen,tuan dian,tuan dian zhen,团甸,团甸镇 40.43274 122.46716 P PPLA4 CN 19 0 33 Asia/Harbin 2012-01-19
-2053219 Yong’an Yong'an Yong'an,Yong'an Zhen,Yongan,Yong’an,Yong’an Zhen,yong an,yong an zhen,永安,永安镇 40.57114 122.49198 P PPLA4 CN 19 0 17 Asia/Harbin 2012-01-19
-2053220 Nuanquan Nuanquan Nuanquan,Nuanquan Zhen,nuan quan,nuan quan zhen,暖泉,暖泉镇 40.38175 122.50315 P PPLA4 CN 19 0 44 Asia/Harbin 2012-01-19
-2053223 Zhongxiao Zhongxiao Zhongxiao,Zhongxiao Zhen,zhong xiao,zhong xiao zhen,中小,中小镇 40.88985 122.55776 P PPLA4 CN 19 0 12 Asia/Harbin 2012-01-19
-2053233 Dongsi Dongsi Dongsi,Dongsi Jiedao,dong si,dong si jie dao,东四,东四街道 40.89681 122.63022 P PPLA4 CN 19 0 15 Asia/Harbin 2012-01-19
-2053242 Bangshipu Bangshipu Bangshipu,Bangshipu Zhen,bang shi bao,bang shi bao zhen,榜式堡,榜式堡镇 40.41514 122.66117 P PPLA4 CN 19 0 78 Asia/Harbin 2012-01-19
-2053244 Maoqi Maoqi Maoqi,Maoqi Zhen,mao qi,mao qi zhen,毛祁,毛祁镇 40.79294 122.69351 P PPLA4 CN 19 0 34 Asia/Harbin 2012-01-19
-2053248 Buyunshan Buyunshan Buyunshan,Buyunshan Xiang,bu yun shan,bu yun shan xiang,步云山,步云山乡 40.02258 122.70499 P PPLA4 CN 19 0 193 Asia/Harbin 2012-01-19
-2053251 Weiziyu Weiziyu Weiziyu,Weiziyu Zhen,Xiweiziyu,wei zi yu,wei zi yu zhen,xi wei zi yu,苇子峪,苇子峪镇,西苇子峪 40.48188 122.72695 P PPLA4 CN 19 0 131 Asia/Harbin 2012-01-19
-2053253 Xiangtang Xiangtang Xiangtang,Xiangtang Jiedao,xiang tang,xiang tang jie dao,响堂,响堂街道 40.83271 122.76851 P PPLA4 CN 19 0 34 Asia/Harbin 2012-01-19
-2053260 Pailou Pailou Pailou,Pailou Zhen,pai lou,pai lou zhen,牌楼,牌楼镇 40.73294 122.81654 P PPLA4 CN 19 0 61 Asia/Harbin 2012-01-19
-2053290 Taling Taling Taling,Talingmanzu,Talingmazu Zhen,ta ling,ta ling man zu,ta ling man zu zhen,塔岭,塔岭满族,塔岭满族镇 40.05175 123.10946 P PPLA4 CN 19 0 90 Asia/Harbin 2012-01-19
-2053332 Pianling Pianling Pianling,Pianling Zhen,pian ling,pian ling zhen,偏岭,偏岭镇 40.47798 123.15867 P PPLA4 CN 19 0 202 Asia/Harbin 2012-01-19
-2053350 Dafangshen Dafangshen Dafangshen,Dafangshen Xiang,da fang shen,da fang shen xiang,大房身,大房身乡 40.49526 123.32986 P PPLA4 CN 19 0 171 Asia/Harbin 2012-01-19
-2053362 Linggou Linggou Linggou,Linggou Xiang,ling gou,ling gou xiang,岭沟,岭沟乡 40.17288 123.42957 P PPLA4 CN 19 0 45 Asia/Harbin 2012-01-19
-2053377 Tanggou Tanggou Tanggou,Tanggou Zhen,tang gou,tang gou zhen,汤沟,汤沟镇 40.6003 123.61026 P PPLA4 CN 19 0 165 Asia/Harbin 2012-01-19
-2053404 Baiqi Baiqi Baiqi,Baiqi Zhen,bai qi,bai qi zhen,白旗,白旗镇 40.30974 123.84148 P PPLA4 CN 19 0 67 Asia/Harbin 2012-01-19
-2053424 Wangjiazhuang Wangjiazhuang Wangjiazhuang,Wanjia Zhen,wan jia zhen,wang jia zhuang,万家镇,王家庄 40.05507 119.85503 P PPLA4 CN 19 0 19 Asia/Harbin 2012-01-19
-2053426 Xidianzi Xidianzi Xidianzi,Xidianzi Zhen,xi dian zi,xi dian zi zhen,西甸子,西甸子镇 40.08807 119.93607 P PPLA4 CN 19 0 11 Asia/Harbin 2012-01-19
-2053427 Lijiabao Lijiabao Lijiabao,Lijiabao Xiang,li jia bao,li jia bao xiang,李家堡,李家堡乡 40.10875 119.80576 P PPLA4 CN 19 0 38 Asia/Harbin 2012-01-19
-2053433 Dadianzi Dadianzi Dadianzi,Yong'anbao Xiang,Yong’anbao Xiang,da dian zi,yong an bao xiang,大甸子,永安堡乡 40.23161 119.80723 P PPLA4 CN 19 0 157 Asia/Harbin 2012-01-19
-2053437 Fanjia Fanjia Fanjia,Fanjia Manzuxiang,fan jia,fan jia man zu xiang,范家,范家满族乡 40.29705 120.03111 P PPLA4 CN 19 0 76 Asia/Harbin 2012-01-19
-2053438 Jiabeiyan Jiabeiyan Jiabeiyan,Jiabeiyang Xiang,jia bei yan,jia bei yan xiang,加碑岩,加碑岩乡 40.32953 119.73174 P PPLA4 CN 19 0 239 Asia/Harbin 2012-01-19
-2053444 Guangyudian Guangyudian Gejia Manzuxiang,Guangyudian,ge jia man zu xiang,guang yu dian,广裕店,葛家满族乡 40.4709 119.97839 P PPLA4 CN 19 0 105 Asia/Harbin 2012-01-19
-2053656 Wanghu Wanghu Jinxing Zhen,Wanghu,jin xing zhen,wang hu,网户,金星镇 41.03497 120.943 P PPLA4 CN 19 0 41 Asia/Harbin 2012-01-19
-2053835 Futun Futun Futun,Futun Xiang,fu tun,fu tun xiang,富屯,富屯乡 41.63 121.7825 P PPLA4 CN 19 0 0 83 Asia/Harbin 2012-01-19
-2054020 Zhenjiang Zhenjiang Zhenjiang,Zhenjiang Zhen,Zhenjiangcun,zhen jiang,zhen jiang zhen,振江,振江镇 40.75712 125.42786 P PPLA4 CN 19 0 139 Asia/Harbin 2012-01-19
-2054113 Dongyingfang Dongyingfang Dongyingfang,Dongyingfang Xiang,dong ying fang,dong ying fang xiang,东营坊,东营坊乡 41.21982 124.52269 P PPLA4 CN 19 0 324 Asia/Harbin 2012-01-19
-2054153 Caohezhang Caohezhang Caohezhang,Caohezhang Zhen,cao he zhang,cao he zhang zhen,草河掌,草河掌镇 41.06787 124.04078 P PPLA4 CN 19 0 343 Asia/Harbin 2012-01-19
-2054174 Hou’an Hou'an Hou'an,Hou'an Zhen,Hou’an,Hou’an Zhen,hou an,hou an zhen,后安,后安镇 41.70417 124.21392 P PPLA4 CN 19 0 203 Asia/Harbin 2012-01-19
-2054179 Lanshan Lanshan Jinjia,Lanshan,Lanshan Xiang,jin jia,lan shan,lan shan xiang,兰山,兰山乡,金家 41.7994 124.09491 P PPLA4 CN 19 0 149 Asia/Harbin 2012-01-19
-2054181 Dongzhou Dongzhou Dongzhou,Dongzhou Jiedao,dong zhou,dong zhou jie dao,东州,东州街道 41.86432 124.03846 P PPLA4 CN 19 0 97 Asia/Harbin 2012-01-19
-2054195 Qiandian Qiandian Kaoshan,Qiandian,Qiandian Chaoxianzu,Qiandian Zhen,kao shan,qian dian,qian dian chao xian zu,qian dian zhen,前甸,前甸朝鲜族,前甸镇,靠山 41.89462 124.00238 P PPLA4 CN 19 0 93 Asia/Harbin 2012-01-19
-2055172 Wangtai Wangtai Ta-wang-t'ai,Ta-wang-t’ai,Wangtai,Wangtai Zhen,wang tai,wang tai zhen,望台,望台镇 40.98469 122.60345 P PPLA4 CN 19 0 7 Asia/Harbin 2012-01-20
-2055173 Datun Datun Datun,Datun Zhen,da tun,da tun zhen,Датун,大屯,大屯镇 40.99378 122.91318 P PPLA4 CN 19 0 49 Asia/Harbin 2012-01-20
-2055178 Liushu Liushu Liu-shu-t'un,Liu-shu-t’un,Liushu,Liushu Zhen,liu shu,liu shu zhen,柳树,柳树镇 40.61295 122.41433 P PPLA4 CN 19 0 7 Asia/Harbin 2012-01-20
-6421804 Taipingxu Taipingxu Taipingxu,Taipingxu Xiang,tai ping wei,tai ping wei xiang,太平圩,太平圩乡 25.47444 112.32806 P PPLA4 CN 11 0 263 Asia/Chongqing 2012-01-20
-6421809 Tushi Tushi Tushi,Tushi Xiang,tu shi,tu shi xiang,土市,土市乡 25.53306 112.29417 P PPLA4 CN 11 0 220 Asia/Chongqing 2012-01-20
-6421878 Jiangdong Jiangdong Jiangdong,Jiangdong Yaozuxiang,jiang dong,jiang dong yao zu xiang,浆洞,浆洞瑶族乡 25.25806 112.26139 P PPLA4 CN 11 0 639 Asia/Chongqing 2012-01-20
-6421895 Suocheng Suocheng Suocheng,Suocheng Zhen,suo cheng,suo cheng zhen,所城,所城镇 25.2675 112.14389 P PPLA4 CN 11 0 421 Asia/Chongqing 2012-01-20
-6421898 Maojun Maojun Maojun,Maojun Zhen,mao jun,mao jun zhen,毛俊,毛俊镇 25.36333 112.29028 P PPLA4 CN 11 0 256 Asia/Chongqing 2012-01-20
-6421906 Nanshi Nanshi Nanshi,Nanshi Zhen,nan shi,nan shi zhen,楠市,楠市镇 25.50778 112.15833 P PPLA4 CN 11 0 307 Asia/Chongqing 2012-01-20
-6421910 Zhuguansi Zhuguansi Zhuguansi,Zhuguansi Zhen,zhu guan si,zhu guan si zhen,竹管寺,竹管寺镇 25.43694 112.17778 P PPLA4 CN 11 0 274 Asia/Chongqing 2012-01-20
-6421914 Citangxu Citangxu Citangxu,Citangxu Xiang,ci tang wei,ci tang wei xiang,祠堂圩,祠堂圩乡 25.51917 112.1025 P PPLA4 CN 11 0 279 Asia/Chongqing 2012-01-20
-6421923 Huiyuan Huiyuan Huiyuan,Huiyuan Yaozuxiang,hui yuan,hui yuan yao zu xiang,汇源,汇源瑶族乡 25.37833 112.09389 P PPLA4 CN 11 0 521 Asia/Chongqing 2012-01-20
-6421926 Litou Litou Litou,Litou Yaozuxiang,li tou,li tou yao zu xiang,犁头,犁头瑶族乡 25.435 112.10194 P PPLA4 CN 11 0 846 Asia/Chongqing 2012-01-20
-6421994 Shunling Shunling Shunling,Shunling Zhen,shun ling,shun ling zhen,舜陵,舜陵镇 25.59306 111.93278 P PPLA4 CN 11 0 192 Asia/Chongqing 2012-01-20
-6422000 Tiantang Tiantang Tiantang,Tiantang Zhen,tian tang,tian tang zhen,天堂,天堂镇 25.55167 111.88639 P PPLA4 CN 11 0 225 Asia/Chongqing 2012-01-20
-6422002 Zhonghe Zhonghe Zhonghe,Zhonghe Zhen,zhong he,zhong he zhen,中和,中和镇 25.705 111.85528 P PPLA4 CN 11 0 227 Asia/Chongqing 2012-01-20
-6422003 Mianhuaping Mianhuaping Mianhuaping,Mianhuaping Yaozuxiang,mian hua ping,mian hua ping yao zu xiang,棉花坪,棉花坪瑶族乡 25.72611 111.94556 P PPLA4 CN 11 0 342 Asia/Chongqing 2012-01-20
-6422011 Jingzhu Jingzhu Jingzhu,Jingzhu Yaozuxiang,jing zhu,jing zhu yao zu xiang,荆竹,荆竹瑶族乡 25.12194 111.98194 P PPLA4 CN 11 0 997 Asia/Chongqing 2012-01-20
-6422015 Daqiao Daqiao Daqiao,Daqiao Yaozuxiang,da qiao,da qiao yao zu xiang,大桥,大桥瑶族乡 25.11389 112.10917 P PPLA4 CN 11 0 594 Asia/Chongqing 2012-01-20
-6422018 Ziliang Ziliang Ziliang,Ziliang Yaozuxiang,zi liang,zi liang yao zu xiang,紫良,紫良瑶族乡 25.22861 112.08972 P PPLA4 CN 11 0 933 Asia/Chongqing 2012-01-20
-6422035 Jiuyi Jiuyi Jiuyi,Jiuyi Yaozuxiang,jiu yi,jiu yi yao zu xiang,九疑,九疑瑶族乡 25.36472 111.98917 P PPLA4 CN 11 0 452 Asia/Chongqing 2012-01-20
-6422077 Shuishi Shuishi Shuishi,Shuishi Zhen,shui shi,shui shi zhen,水市,水市镇 25.45639 111.89444 P PPLA4 CN 11 0 224 Asia/Chongqing 2012-01-20
-6422078 Renhe Renhe Renhe,Renhe Zhen,ren he,ren he zhen,仁和,仁和镇 25.68139 111.9525 P PPLA4 CN 11 0 212 Asia/Chongqing 2012-01-20
-6422079 Heting Heting Heting,Heting Zhen,he ting,he ting zhen,禾亭,禾亭镇 25.66306 112.01667 P PPLA4 CN 11 0 273 Asia/Chongqing 2012-01-20
-6422080 Taiping Taiping Taiping,Taiping Zhen,tai ping,tai ping zhen,太平,太平镇 25.66111 112.12306 P PPLA4 CN 11 0 399 Asia/Chongqing 2012-01-20
-6422081 Bao’an Bao'an Bao'an,Bao'an Xiang,Bao’an,Bao’an Xiang,bao an,bao an xiang,保安,保安乡 25.72778 112.08167 P PPLA4 CN 11 0 363 Asia/Chongqing 2012-01-20
-6422082 Jinpenxu Jinpenxu Jinpenxu,Jinpenxu Xiang,jin pen wei,jin pen wei xiang,金盆圩,金盆圩乡 25.71278 112.17306 P PPLA4 CN 11 0 314 Asia/Chongqing 2012-01-20
-6422083 Shizi Shizi Shizi,Shizi Xiang,shi zi,shi zi xiang,十字,十字乡 25.76278 112.11944 P PPLA4 CN 11 0 365 Asia/Chongqing 2012-01-20
-6422084 Jiantou Jiantou Jiantou,Jiantou Zhen,jian tou,jian tou zhen,枧头,枧头镇 25.80333 112.13444 P PPLA4 CN 11 0 370 Asia/Chongqing 2012-01-20
-6422085 Sanjing Sanjing Sanjing,Sanjing Xiang,san jing,san jing xiang,三井,三井乡 25.78944 112.21056 P PPLA4 CN 11 0 267 Asia/Chongqing 2012-01-20
-6422086 Shiyang Shiyang Shiyang,Shiyang Zhen,shi yang,shi yang zhen,石羊,石羊镇 25.75222 112.23444 P PPLA4 CN 11 0 227 Asia/Chongqing 2012-01-20
-6422088 Longquan Longquan Longquan,Longquan Zhen,long quan,long quan zhen,龙泉,龙泉镇 25.89972 112.21111 P PPLA4 CN 11 0 206 Asia/Chongqing 2012-01-20
-6422089 Lianhua Lianhua Lianhua,Lianhua Xiang,lian hua,lian hua xiang,莲花,莲花乡 25.94361 112.2775 P PPLA4 CN 11 0 255 Asia/Chongqing 2012-01-20
-6422090 Jicun Jicun Jicun,Jicun Zhen,ji cun,ji cun zhen,骥村,骥村镇 25.95694 112.15389 P PPLA4 CN 11 0 274 Asia/Chongqing 2012-01-20
-6422091 Maoli Maoli Maoli,Maoli Xiang,mao li,mao li xiang,毛里,毛里乡 25.85472 112.14444 P PPLA4 CN 11 0 338 Asia/Chongqing 2012-01-20
-6422092 Lixi Lixi Lixi,Lixi Zhen,li xi,li xi zhen,鲤溪,鲤溪镇 25.89778 112.065 P PPLA4 CN 11 0 303 Asia/Chongqing 2012-01-20
-6422100 Xinlong Xinlong Xinlong,Xinlong Zhen,xin long,xin long zhen,新隆,新隆镇 25.78667 112.35083 P PPLA4 CN 11 0 178 Asia/Chongqing 2012-01-20
-6422104 Gaoshan Gaoshan Gaoshan,Gaoshan Xiang,gao shan,gao shan xiang,高山,高山乡 25.78639 112.31444 P PPLA4 CN 11 0 180 Asia/Chongqing 2012-01-20
-6422105 Zhishiping Zhishiping Zhishiping,Zhishiping Xiang,zhi shi ping,zhi shi ping xiang,知市坪,知市坪乡 25.86056 112.32167 P PPLA4 CN 11 0 224 Asia/Chongqing 2012-01-20
-6422108 Dapingtang Dapingtang Dapingtang,Dapingtang Xiang,da ping tang,da ping tang xiang,大坪塘,大坪塘乡 25.86194 112.29583 P PPLA4 CN 11 0 218 Asia/Chongqing 2012-01-20
-6422110 Maojia Maojia Maojia,Maojia Xiang,mao jia,mao jia xiang,茂家,茂家乡 25.83528 112.20028 P PPLA4 CN 11 0 215 Asia/Chongqing 2012-01-20
-6422115 Xinxu Xinxu Xinxu,Xinxu Zhen,xin wei,xin wei zhen,新圩,新圩镇 25.80278 112.26972 P PPLA4 CN 11 0 178 Asia/Chongqing 2012-01-20
-6422119 Taoling Taoling Taoling,Taoling Xiang,tao ling,tao ling xiang,陶玲,陶玲乡 25.74111 112.32083 P PPLA4 CN 11 0 316 Asia/Chongqing 2012-01-20
-6422126 Wanjing Wanjing Wanjing,Wanjing Zhen,wan jing,wan jing zhen,湾井,湾井镇 25.42222 111.99972 P PPLA4 CN 11 0 281 Asia/Chongqing 2012-01-20
-6422127 Lengshui Lengshui Lengshui,Lengshui Zhen,leng shui,leng shui zhen,冷水,冷水镇 25.55306 112.03139 P PPLA4 CN 11 0 217 Asia/Chongqing 2012-01-20
-6422128 Qingshuiqiao Qingshuiqiao Qingshuiqiao,Qingshuiqiao Zhen,qing shui qiao,qing shui qiao zhen,清水桥,清水桥镇 25.87222 111.94028 P PPLA4 CN 11 0 261 Asia/Chongqing 2012-01-20
-6422129 Baijiaping Baijiaping Baijiaping,Baijiaping Zhen,bai jia ping,bai jia ping zhen,柏家坪,柏家坪镇 25.83611 111.97972 P PPLA4 CN 11 0 259 Asia/Chongqing 2012-01-20
-6422130 Tongmuluo Tongmuluo Tongmuluo,Tongmuluo Yaozuxiang,tong mu luo,tong mu luo yao zu xiang,桐木漯,桐木漯瑶族乡 25.93361 111.95028 P PPLA4 CN 11 0 405 Asia/Chongqing 2012-01-20
-6422131 Huangtang Huangtang Huangtang,Huangtang Yaozuxiang,huang tang,huang tang yao zu xiang,荒塘,荒塘瑶族乡 26.03944 112.035 P PPLA4 CN 11 0 609 Asia/Chongqing 2012-01-20
-6422132 Lengshuijing Lengshuijing Lengshuijing,Lengshuijing Xiang,leng shui jing,leng shui jing xiang,冷水井,冷水井乡 25.94167 112.10944 P PPLA4 CN 11 0 542 Asia/Chongqing 2012-01-20
-6422142 Jinling Jinling Jinling,Jinling Zhen,jin ling,jin ling zhen,金陵,金陵镇 26.00083 112.28694 P PPLA4 CN 11 0 275 Asia/Chongqing 2012-01-20
-6422144 Menlouxia Menlouxia Menlouxia,Menlouxia Yaozuxiang,men lou xia,men lou xia yao zu xiang,门楼下,门楼下瑶族乡 26.01444 112.20722 P PPLA4 CN 11 0 646 Asia/Chongqing 2012-01-20
-6422308 Xinxu Xinxu Xinxu,Xinxu Zhen,xin wei,xin wei zhen,新圩,新圩镇 25.42194 112.3725 P PPLA4 CN 11 0 308 Asia/Chongqing 2012-01-20
-6422309 Yongjiang Yongjiang Yongjiang,Yongjiang Xiang,yong jiang,yong jiang xiang,永江,永江乡 25.89361 111.58833 P PPLA4 CN 11 0 375 Asia/Chongqing 2012-01-20
-6422310 Hejiadong Hejiadong Hejia,Hejiadong,Hejiadong Xiang,he jia dong,he jia dong xiang,何家洞,何家洞乡 25.88639 111.50083 P PPLA4 CN 11 0 648 Asia/Chongqing 2012-01-20
-6422311 Tangdi Tangdi Tangdi,Tangdi Xiang,tang di,tang di xiang,塘底,塘底乡 25.94472 111.73056 P PPLA4 CN 11 0 374 Asia/Chongqing 2012-01-20
-6422312 Shangrenli Shangrenli Shangrenli,Shangrenli Xiang,shang ren li,shang ren li xiang,尚仁里,尚仁里乡 25.89306 111.64306 P PPLA4 CN 11 0 408 Asia/Chongqing 2012-01-20
-6422318 Shangwujiang Shangwujiang Shangwujiang,Shangwujiang Yaozuxiang,shang wu jiang,shang wu jiang yao zu xiang,上梧江,上梧江瑶族乡 25.84278 111.74583 P PPLA4 CN 11 0 324 Asia/Chongqing 2012-01-20
-6422322 Majiang Majiang Majiang,Majiang Xiang,ma jiang,ma jiang xiang,麻江,麻江乡 25.97028 111.84 P PPLA4 CN 11 0 531 Asia/Chongqing 2012-01-20
-6422327 Jiangcun Jiangcun Jiangcun,Jiangcun Zhen,jiang cun,jiang cun zhen,江村,江村镇 25.72861 111.69417 P PPLA4 CN 11 0 206 Asia/Chongqing 2012-01-20
-6422332 Xianzijiao Xianzijiao Xianzijiao,Xianzijiao Zhen,xian zi jiao,xian zi jiao zhen,仙子脚,仙子脚镇 25.63556 111.36417 P PPLA4 CN 11 0 283 Asia/Chongqing 2012-01-20
-6422333 Qiaotou Qiaotou Qiaotou,Qiaotou Xiang,qiao tou,qiao tou xiang,桥头,桥头乡 25.74333 111.41806 P PPLA4 CN 11 0 302 Asia/Chongqing 2012-01-20
-6422362 Lijiaping Lijiaping Lijiaping,Lijiaping Xiang,li jia ping,li jia ping xiang,理家坪,理家坪乡 25.65361 111.63361 P PPLA4 CN 11 0 218 Asia/Chongqing 2012-01-20
-6422363 Lefutang Lefutang Lefutang,Lefutang Xiang,le fu tang,le fu tang xiang,乐福堂,乐福堂乡 25.64833 111.50333 P PPLA4 CN 11 0 380 Asia/Chongqing 2012-01-20
-6422366 Meihua Meihua Meihua,Meihua Zhen,mei hua,mei hua zhen,梅花,梅花镇 25.60778 111.60556 P PPLA4 CN 11 0 170 Asia/Chongqing 2012-01-20
-6422371 Shouyan Shouyan Shouyan,Shouyan Zhen,shou yan,shou yan zhen,寿雁,寿雁镇 25.57139 111.50222 P PPLA4 CN 11 0 209 Asia/Chongqing 2012-01-20
-6422372 Qingtang Qingtang Qingtang,Qingtang Zhen,qing tang,qing tang zhen,清塘,清塘镇 25.50222 111.43389 P PPLA4 CN 11 0 262 Asia/Chongqing 2012-01-20
-6422373 Xinche Xinche Xinche,Xinche Xiang,xin che,xin che xiang,新车,新车乡 25.41444 111.49278 P PPLA4 CN 11 0 192 Asia/Chongqing 2012-01-20
-6422389 Daojiang Daojiang Daojiang,Daojiang Zhen,dao jiang,dao jiang zhen,道江,道江镇 25.53306 111.58056 P PPLA4 CN 11 0 185 Asia/Chongqing 2012-01-20
-6422402 Dongmen Dongmen Dongmen,Dongmen Xiang,dong men,dong men xiang,东门,东门乡 25.52389 111.60889 P PPLA4 CN 11 0 167 Asia/Chongqing 2012-01-20
-6422403 Wanjiazhuang Wanjiazhuang Wanjiazhuang,Wanjiazhuang Xiang,wan jia zhuang,wan jia zhuang xiang,万家庄,万家庄乡 25.49861 111.57194 P PPLA4 CN 11 0 182 Asia/Chongqing 2012-01-20
-6422502 Xianglinpu Xianglinpu Xianglinpu,Xianglinpu Zhen,xiang lin pu,xiang lin pu zhen,祥霖铺,祥霖铺镇 25.36139 111.53722 P PPLA4 CN 11 0 208 Asia/Chongqing 2012-01-20
-6422514 Shenzhangtang Shenzhangtang Shenzhangtang,Shenzhangtang Yaozuxiang,shen zhang tang,shen zhang tang yao zu xiang,审章塘,审章塘瑶族乡 25.35528 111.59972 P PPLA4 CN 11 0 198 Asia/Chongqing 2012-01-20
-6422517 Jingtang Jingtang Jingtang,Jingtang Yaozuxiang,jing tang,jing tang yao zu xiang,井塘,井塘瑶族乡 25.31278 111.66611 P PPLA4 CN 11 0 628 Asia/Chongqing 2012-01-20
-6422520 Gongba Gongba Gongba,Gongba Zhen,gong ba,gong ba zhen,蚣坝,蚣坝镇 25.39417 111.66917 P PPLA4 CN 11 0 244 Asia/Chongqing 2012-01-20
-6422521 Hengling Hengling Hengling,Hengling Yaozuxiang,heng ling,heng ling yao zu xiang,横岭,横岭瑶族乡 25.33722 111.73111 P PPLA4 CN 11 0 303 Asia/Chongqing 2012-01-20
-6422525 Shangguan Shangguan Shangguan,Shangguan Xiang,shang guan,shang guan xiang,上关,上关乡 25.48778 111.645 P PPLA4 CN 11 0 216 Asia/Chongqing 2012-01-20
-6422808 Baimadu Baimadu Baimadu,Baimadu Zhen,bai ma du,bai ma du zhen,白马渡,白马渡镇 25.54917 111.68806 P PPLA4 CN 11 0 176 Asia/Chongqing 2012-01-20
-6422832 Baimangpu Baimangpu Baimangpu,Baimangpu Xiang,bai mang pu,bai mang pu xiang,白芒铺,白芒铺乡 25.53417 111.70194 P PPLA4 CN 11 0 198 Asia/Chongqing 2012-01-20
-6422836 Ganziyuan Ganziyuan Ganziyuan,Ganziyuan Xiang,gan zi yuan,gan zi yuan xiang,柑子园,柑子园乡 25.54028 111.81278 P PPLA4 CN 11 0 214 Asia/Chongqing 2012-01-20
-6422849 Simaqiao Simaqiao Simaqiao,Simaqiao Zhen,si ma qiao,si ma qiao zhen,四马桥,四马桥镇 25.41611 111.76111 P PPLA4 CN 11 0 260 Asia/Chongqing 2012-01-20
-6422854 Futang Futang Futang,Futang Xiang,fu tang,fu tang xiang,富塘,富塘乡 25.55889 111.59944 P PPLA4 CN 11 0 187 Asia/Chongqing 2012-01-20
-6422866 Hongtangying Hongtangying Hongtangying,Hongtangying Yaozuxiang,hong tang ying,hong tang ying yao zu xiang,洪塘营,洪塘营瑶族乡 25.28333 111.80083 P PPLA4 CN 11 0 678 Asia/Chongqing 2012-01-20
-6422874 Cushijiang Cushijiang Cushijiang,Cushijiang Zhen,cu shi jiang,cu shi jiang zhen,粗石江,粗石江镇 25.08139 110.97028 P PPLA4 CN 11 0 190 Asia/Chongqing 2012-01-20
-6422875 Yuankou Yuankou Yuankou,Yuankou Yaozuxiang,yuan kou,yuan kou yao zu xiang,源口,源口瑶族乡 25.00083 111.05528 P PPLA4 CN 11 0 640 Asia/Chongqing 2012-01-20
-6422882 Taochuan Taochuan Taochuan,Taochuan Zhen,tao chuan,tao chuan zhen,桃川,桃川镇 25.1225 111.07694 P PPLA4 CN 11 0 232 Asia/Chongqing 2012-01-20
-6422902 Lanxi Lanxi Lanxi,Lanxi Yaozuxiang,lan xi,lan xi yao zu xiang,兰溪,兰溪瑶族乡 25.09833 111.15639 P PPLA4 CN 11 0 254 Asia/Chongqing 2012-01-20
-6422903 Xiacengpu Xiacengpu Xiacengpu,Xiacengpu Zhen,xia ceng pu,xia ceng pu zhen,夏层铺,夏层铺镇 25.18917 111.18 P PPLA4 CN 11 0 290 Asia/Chongqing 2012-01-20
-6422929 Qianjiadong Qianjiadong Qianjiadong,Qianjiadong Yaozuxiang,qian jia dong,qian jia dong yao zu xiang,千家峒,千家峒瑶族乡 25.37194 111.32389 P PPLA4 CN 11 0 315 Asia/Chongqing 2012-01-20
-6422945 Shangjiangxu Shangjiangxu Shangjiangxu,Shangjiangxu Zhen,shang jiang wei,shang jiang wei zhen,上江圩,上江圩镇 25.35583 111.42694 P PPLA4 CN 11 0 233 Asia/Chongqing 2012-01-20
-6422953 Yunshan Yunshan Yunshan,Yunshan Zhen,yun shan,yun shan zhen,允山,允山镇 25.27167 111.26944 P PPLA4 CN 11 0 248 Asia/Chongqing 2012-01-20
-6422958 Xiaopu Xiaopu Xiaopu,Xiaopu Zhen,xiao pu,xiao pu zhen,潇浦,潇浦镇 25.28083 111.34444 P PPLA4 CN 11 0 238 Asia/Chongqing 2012-01-20
-6422963 Huangjialing Huangjialing Huangjialing,Huangjialing Xiang,huang jia ling,huang jia ling xiang,黄甲岭,黄甲岭乡 25.20222 111.405 P PPLA4 CN 11 0 346 Asia/Chongqing 2012-01-20
-6422971 Huilongxu Huilongxu Huilongxu,Huilongxu Zhen,hui long wei,hui long wei zhen,回龙圩,回龙圩镇 25.16833 111.35472 P PPLA4 CN 11 0 411 Asia/Chongqing 2012-01-20
-6423001 Songbo Songbo Songbo,Songbo Yaozuxiang,song bai,song bai yao zu xiang,松柏,松柏瑶族乡 25.10861 111.45528 P PPLA4 CN 11 0 432 Asia/Chongqing 2012-01-20
-6423003 Qiaotou Qiaotou Qiaotou,Qiaotou Zhen,qiao tou,qiao tou zhen,桥头,桥头镇 25.29278 111.53694 P PPLA4 CN 11 0 258 Asia/Chongqing 2012-01-20
-6423008 Jiepai Jiepai Jiepai,Jiepai Xiang,jie pai,jie pai xiang,界牌,界牌乡 25.29333 111.62222 P PPLA4 CN 11 0 191 Asia/Chongqing 2012-01-20
-6423024 Dongtian Dongtian Dongtian,Dongtian Zhen,dong tian,dong tian zhen,东田,东田镇 25.14944 111.64944 P PPLA4 CN 11 0 239 Asia/Chongqing 2012-01-20
-6423036 Wujiang Wujiang Wujiang,Wujiang Xiang,wu jiang,wu jiang xiang,务江,务江乡 25.13556 111.6825 P PPLA4 CN 11 0 319 Asia/Chongqing 2012-01-20
-6423041 Dalupu Dalupu Dalupu,Dalupu Zhen,da lu pu,da lu pu zhen,大路铺,大路铺镇 25.06417 111.5325 P PPLA4 CN 11 0 263 Asia/Chongqing 2012-01-20
-6423046 Qiaoshi Qiaoshi Qiaoshi,Qiaoshi Xiang,qiao shi,qiao shi xiang,桥市,桥市乡 25.06583 111.58861 P PPLA4 CN 11 0 257 Asia/Chongqing 2012-01-20
-6423047 Huajiang Huajiang Huajiang,Huajiang Xiang,hua jiang xiang,花江乡 25.04778 111.68028 P PPLA4 CN 11 0 539 Asia/Chongqing 2012-01-20
-6423050 Xiangjiang Xiangjiang Xiangjiang,Xiangjiang Xiang,xiang jiang,xiang jiang xiang,湘江,湘江乡 25.06917 111.81917 P PPLA4 CN 11 0 774 Asia/Chongqing 2012-01-20
-6567631 Jiuli Jiuli Jiuli,Jiuli Jiedao,Jiuli Qu,jiu li,jiu li jie dao,jiu li qu,九里,九里区,九里街道 34.29341 117.1371 P PPLA4 CN 04 6567631 0 38 Asia/Shanghai 2012-01-20
-6642273 Xiling Xiling Xiling,Xiling Jiedao,xi ling,xi ling jie dao,西陵,西陵街道 30.71606 111.2839 P PPLA3 CN 12 6642273 0 63 Asia/Chongqing 2012-02-02
-6642286 E’zhou E'zhou E'zhou,E'zhou Shi,E’zhou,E’zhou Shi,e zhou,e zhou shi,鄂州,鄂州市 30.39607 114.88655 P PPLA2 CN 12 6642286 0 29 Asia/Shanghai 2012-02-02
-6643306 Liushun Liushun Cuiyun Xiang,Liushun,Liushun Xiang,cui yun xiang,liu shun,liu shun xiang,六顺,六顺乡,翠云乡 22.62796 100.72402 P PPLA4 CN 29 6643306 0 1307 Asia/Chongqing 2012-02-02
-6643953 Yangla Yangla Yangla,Yangla Xiang,yang la,yang la xiang,羊拉,羊拉乡 28.94183 99.1278 P PPLA4 CN 29 0 2267 Asia/Chongqing 2012-01-20
-6643959 Foshan Foshan Foshan,Foshan Xiang,fu shan,fu shan xiang,佛山,佛山乡 28.73401 98.80612 P PPLA4 CN 29 0 4844 Asia/Chongqing 2012-01-20
-6643960 Dongwang Dongwang Dongwang,Dongwang Xiang,dong wang,dong wang xiang,东旺,东旺乡 28.56146 99.74362 P PPLA4 CN 29 0 3240 Asia/Chongqing 2012-01-20
-6643961 Yanmen Yanmen Yanmen,Yanmen Xiang,yan men,yan men xiang,燕门,燕门乡 28.07225 99.02316 P PPLA4 CN 29 0 4339 Asia/Chongqing 2012-01-20
-6643962 Yunling Yunling Yunling,Yunling Xiang,yun ling,yun ling xiang,云岭,云岭乡 28.29284 98.97157 P PPLA4 CN 29 0 5050 Asia/Chongqing 2012-01-20
-6643963 Benzilan Benzilan Benzilan,Benzilan Zhen,ben zi lan,ben zi lan zhen,奔子栏,奔子栏镇 28.23591 99.36827 P PPLA4 CN 29 0 3485 Asia/Chongqing 2012-01-20
-6643964 Xiaruo Xiaruo Xiaruo,Xiaruo Lisuzu Xiang,xia ruo,xia ruo li su zu xiang,霞若,霞若傈僳族乡 27.80897 99.3576 P PPLA4 CN 29 0 3047 Asia/Chongqing 2012-01-20
-6643965 Nixi Nixi Nixi,Nixi Xiang,ni xi,ni xi xiang,尼西,尼西乡 28.02422 99.5764 P PPLA4 CN 29 0 3820 Asia/Chongqing 2012-01-20
-6643966 Xiaozhongdian Xiaozhongdian Xiaozhongdian,Xiaozhongdian Xiang,xiao zhong dian,xiao zhong dian xiang,小中甸,小中甸乡 27.5617 99.87526 P PPLA4 CN 29 0 3571 Asia/Chongqing 2012-01-20
-6643967 Gezan Gezan Gezan,Gezan Xiang,ge zan,ge zan xiang,格咱,格咱乡 28.20389 99.80944 P PPLA4 CN 29 0 4261 Asia/Chongqing 2012-01-20
-6643968 Badi Badi Badi,Badi Xiang,ba di,ba di xiang,巴迪,巴迪乡 27.88013 99.09076 P PPLA4 CN 29 0 3930 Asia/Chongqing 2012-01-20
-6643969 Yezhi Yezhi Yezhi,Yezhi Zhen,ye zhi,ye zhi zhen,叶枝,叶枝镇 27.70223 99.12633 P PPLA4 CN 29 0 4110 Asia/Chongqing 2012-01-20
-6643970 Tuoding Tuoding Tuoding,Tuoding Lisuzu Xiang,tuo ding,tuo ding li su zu xiang,拖顶,拖顶傈僳族乡 27.75916 99.47145 P PPLA4 CN 29 0 2651 Asia/Chongqing 2012-01-20
-6643971 Wujing Wujing Wujing,Wujing Xiang,wu jing,wu jing xiang,五境,五境乡 27.70223 99.53727 P PPLA4 CN 29 0 3779 Asia/Chongqing 2012-01-20
-6643972 Kangpu Kangpu Kangpu,Kangpu Xiang,kang pu,kang pu xiang,康普,康普乡 27.5955 99.10143 P PPLA4 CN 29 0 2800 Asia/Chongqing 2012-01-20
-6644097 Jinniu Jinniu Jinniu,jin niu,金牛 25.80062 100.57435 P PPLA3 CN 29 0 1444 Asia/Chongqing 2012-01-20
-6644098 Nanzhao Nanzhao Nanzhao,nan zhao,南诏 25.22222 100.30344 P PPLA3 CN 29 0 1713 Asia/Chongqing 2012-01-20
-6644099 Yunhe Yunhe Yunhe,yun he,云鹤 26.55308 100.19382 P PPLA3 CN 29 0 2197 Asia/Chongqing 2012-01-20
-6644100 Jiantang Jiantang Jiantang,jian tang,建塘 27.82244 99.76929 P PPLA3 CN 29 0 3338 Asia/Chongqing 2012-01-20
-6644137 Nayun Nayun Nayun,na yun,那允 22.33196 99.56132 P PPLA3 CN 29 0 1020 Asia/Chongqing 2012-01-20
-6644139 Dingcheng Dingcheng Dingcheng,Dingcheng Qu,Wuling,Wuling Zhen,ding cheng,ding cheng qu,wu ling,wu ling zhen,武陵,武陵镇,鼎成,鼎成区 29.01937 111.67976 P PPLA3 CN 11 0 39 Asia/Shanghai 2012-01-20
-6645575 Liangshi Liangshi Liangshi,liang shi,两市 27.20636 111.73714 P PPLA3 CN 11 0 274 Asia/Chongqing 2012-01-20
-6645583 Yunji Yunji Yunji,yun ji,云集 26.6932 112.66748 P PPLA3 CN 11 0 79 Asia/Chongqing 2012-01-20
-6645597 Chengzhong Chengzhong Chengzhong,cheng zhong,城中 23.34104 112.68578 P PPLA3 CN 30 0 18 Asia/Chongqing 2012-01-20
-6645600 Nan’an Nan'an Nan'an,Nan’an,nan an,南岸 23.02166 112.4487 P PPLA3 CN 30 0 48 Asia/Chongqing 2012-01-20
-6646302 Leicheng Leicheng Leicheng,lei cheng,雷城 20.93769 110.07021 P PPLA3 CN 30 0 24 Asia/Chongqing 2012-01-20
-6646306 Dongzhen Dongzhen Dongzhen,dong zhen,东镇 22.37971 110.93885 P PPLA3 CN 30 0 90 Asia/Chongqing 2012-01-20
-6646308 Chuncheng Chuncheng Chuncheng,chun cheng,春城 22.17308 111.78859 P PPLA3 CN 30 0 24 Asia/Chongqing 2012-01-20
-6646315 Luozhou Luozhou Luozhou,luo zhou,罗州 21.63284 110.27373 P PPLA3 CN 30 0 42 Asia/Chongqing 2012-01-20
-6646404 Hexi Hexi Hexi,he xi,河西 21.68651 110.63417 P PPLA3 CN 30 0 22 Asia/Chongqing 2012-01-20
-6647609 Taihe Taihe Taihe,tai he,太和 23.73209 113.01127 P PPLA3 CN 30 0 18 Asia/Chongqing 2012-01-20
-6648023 Xiangjiaba Xiangjiaba Xiangjiaba,xiang jia ba,向家坝 28.62084 104.29927 P PPLA3 CN 29 0 285 Asia/Chongqing 2012-01-20
-6648024 Zhongcheng Zhongcheng Zhongcheng,zhong cheng,中城 28.56786 103.91007 P PPLA3 CN 29 0 694 Asia/Chongqing 2012-01-20
-6670612 Shiqiao Shiqiao Shiqiao,shi qiao,仕桥 27.98195 120.55917 P PPLA3 CN 02 0 10 Asia/Shanghai 2012-01-20
-6676601 Fuxing Fuxing Fuxing,Fuxing Jiedao,fu xing,福兴 24.12711 115.72021 P PPLA3 CN 30 0 113 Asia/Shanghai 2012-01-20
-6680101 Ningzhong Ningzhong Ningzhong,Ningzhong Zhen,ning zhong,宁中 24.1585 115.74376 P PPLA4 CN 30 0 122 Asia/Shanghai 2012-01-20
-6682541 Sanhe Sanhe Sanhe,Sanhe Jiedao,san he,三河 23.28717 116.65574 P PPLA4 CN 30 0 6 Asia/Shanghai 2012-01-20
-6682544 Banghai Banghai Banghai,Banghai Jiedao,bang hai,浜海 23.25103 116.68393 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-20
-6682545 Yuxin Yuxin Yuxin,Yuxin Jiedao,yu xin,玉新 23.28198 116.66642 P PPLA4 CN 30 0 4 Asia/Shanghai 2012-01-20
-6682560 Outing Outing Outing,Outing Jiedao,ou ting,欧汀 23.41619 116.71327 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-20
-6682582 Guangyi Guangyi Guangyi,Guangyi Jiedao,guang yi,广益 23.47436 116.76713 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-20
-6683363 Guangtai Guangtai Guangtai,guang tai,广太 23.46527 116.27856 P PPLA4 CN 30 0 11 Asia/Shanghai 2012-01-20
-6685809 Dongba Dongba Dongba,Dongba Zhen,dong ba,dong ba zhen,东坝,东坝镇 31.30209 119.07148 P PPLA4 CN 04 0 17 Asia/Shanghai 2012-01-20
-6685813 Hefeng Hefeng Hefeng,Hefeng Zhen,he feng,和凤 31.40117 119.01939 P PPLA4 CN 04 0 15 Asia/Shanghai 2012-01-20
-6685814 Jingqiao Zhen Jingqiao Zhen Jingqiao Zhen,jing qiao,jing qiao zhen,晶桥,晶桥镇 31.53805 119.07966 P PPLA4 CN 04 0 10 Asia/Shanghai 2012-01-20
-6685818 Dongping Dongping Dongping,Dongping Zhen,dong ping,dong ping zhen,东屏,东屏镇 31.70863 119.13379 P PPLA4 CN 04 0 28 Asia/Shanghai 2012-01-20
-6685824 Wujiang Wujiang Wujiang,Wujiang Zhen,wu jiang,wu jiang zhen,乌江,乌江镇 31.87718 118.48925 P PPLA4 CN 04 0 16 Asia/Shanghai 2012-01-20
-6685841 Yushan Yushan Yushan,yu shan,虞山 31.67748 120.80134 P PPLA3 CN 04 0 5 Asia/Shanghai 2012-01-20
-6685842 Yangshe Yangshe Yangshe,yang she,杨舍 31.88994 120.60522 P PPLA3 CN 04 0 5 Asia/Shanghai 2012-01-20
-6685846 Jincheng Jincheng Jincheng,jin cheng,金城 31.74949 119.60571 P PPLA3 CN 04 0 8 Asia/Shanghai 2012-01-20
-6685849 Yongyang Yongyang Yongyang,yong yang zhen,永阳镇 31.66164 119.03573 P PPLA3 CN 04 0 17 Asia/Shanghai 2012-01-20
-6698821 Qidou Qidou Qidou,Qidou Zhen,qi dou,qi dou zhen,七都,七都镇 30.95273 120.38813 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-20
-6823776 Liujie Liujie Liujie,Liujie Zhen,liu jie,liu jie zhen,六街,六街镇 24.82106 102.22861 P PPLA4 CN 29 0 1681 Asia/Chongqing 2012-01-20
-6823779 Xiaojie Xiaojie Xiaojie,Xiaojie Xiang,xiao jie,xiao jie xiang,小街,小街乡 24.86456 102.13505 P PPLA4 CN 29 0 1882 Asia/Chongqing 2012-01-20
-6823925 Liujie Liujie Liujie,Liujie Xiang,liu jie,liu jie xiang,六街,六街乡 24.53657 102.68628 P PPLA4 CN 29 0 1958 Asia/Chongqing 2012-01-20
-6823991 Longwu Longwu Longwu,Longwu Zhen,Longwupu,long wu,long wu pu,long wu zhen,龙武,龙武铺,龙武镇 24.00174 102.40046 P PPLA4 CN 29 0 2086 Asia/Chongqing 2012-01-20
-6824061 Xiyang Xiyang Xiyang,Xiyang Yizuxiang,xi yang,xi yang yi zu xiang,夕阳,夕阳彝族乡 24.46399 102.29073 P PPLA4 CN 29 0 1828 Asia/Chongqing 2012-01-20
-6824063 Xiaojie Xiaojie Xiaojie,Xiaojie Zhen,xiao jie,xiao jie zhen,小街,小街镇 24.1581 102.4612 P PPLA4 CN 29 0 1535 Asia/Chongqing 2012-01-20
-6824111 Panjiang Panjiang Panjiang,Panjiang Xiang,pan jiang,pan jiang xiang,盘江,盘江乡 24.01952 103.12498 P PPLA4 CN 29 0 1185 Asia/Chongqing 2012-01-20
-6824136 Shuanghejie Shuanghejie Shuanghe,Shuanghe Yizuxiang,Shuanghejie,shuang he,shuang he jie,shuang he yi zu xiang,双河,双河彝族乡,双河街 24.56646 102.43643 P PPLA4 CN 29 0 2005 Asia/Chongqing 2012-01-20
-6824148 Xinjiezi Xinjiezi Pubei Yizuxiang,Xinjiezi,pu bei yi zu xiang,xin jie zi,新街子,浦贝彝族乡 24.61688 102.18204 P PPLA4 CN 29 0 1627 Asia/Chongqing 2012-01-20
-6824158 Zhaopu Zhaopu Pubei,Zhaopu,pu bei,zhao pu,浦贝,赵普 24.61688 102.18204 P PPLA4 CN 29 0 1627 Asia/Chongqing 2012-01-20
-6824185 Lishan Lishan Lishan,Lishan Yizuxiang,li shan,li shan yi zu xiang,里山,里山彝族乡 24.07225 102.74952 P PPLA4 CN 29 0 1869 Asia/Chongqing 2012-01-20
-6824190 Jiujie Jiujie Erjie,Jiujie,Jiujie Zhen,er jie,jiu jie,jiu jie zhen,九街,九街镇,二街 24.11367 102.68678 P PPLA4 CN 29 0 1808 Asia/Chongqing 2012-01-20
-6824213 Caopujie Caopujie Caopu,Caopu Zhen,Caopujie,cao pu,cao pu jie,cao pu zhen,草铺,草铺街,草铺镇 24.93508 102.38044 P PPLA4 CN 29 0 1907 Asia/Chongqing 2012-01-20
-6824225 Shijie Shijie Shijie,Shijie Yizuxiang,shi jie,shi jie yi zu xiang,十街,十街彝族乡 24.502 102.15861 P PPLA4 CN 29 0 1375 Asia/Chongqing 2012-01-20
-6824252 Shangfangxinjie Shangfangxinjie Baofeng,Baofeng Zhen,Shangfangxinjie,bao feng,bao feng zhen,shang fang xin jie,上方新街,宝峰,宝峰镇 24.5544 102.55162 P PPLA4 CN 29 0 1954 Asia/Chongqing 2012-01-20
-6824285 Dalongtan Dalongtan Dalongtan,Dalongtan Xiang,da long tan,da long tan xiang,大龙潭,大龙潭乡 24.43583 102.10832 P PPLA4 CN 29 0 1690 Asia/Chongqing 2012-01-20
-6824318 Baigecun Baigecun Baigecun,Xingmeng Mengguzuxiang,bai ge cun,xing meng meng gu zu xiang,兴蒙蒙古族乡,白阁村 24.1575 102.66382 P PPLA4 CN 29 0 1896 Asia/Chongqing 2012-01-20
-6824328 Najiaying Najiaying Nagu,Nagu Zhen,Najiaying,na gu,na gu zhen,na jia ying,纳古,纳古镇,纳家营 24.18252 102.73886 P PPLA4 CN 29 0 1797 Asia/Chongqing 2012-01-20
-6824333 Wenquanxiaocun Wenquanxiaocun Wenquan,Wenquan Zhen,Wenquanxiaocun,wen quan,wen quan xiao cun,wen quan zhen,温泉,温泉小村,温泉镇 24.96335 102.44558 P PPLA4 CN 29 0 1836 Asia/Chongqing 2012-01-20
-6824389 Huichang Huichang Gucheng,Gucheng Zhen,Huichang,gu cheng,gu cheng zhen,hui chang,古城,古城镇,恢厂 24.74056 102.59484 P PPLA4 CN 29 0 1889 Asia/Chongqing 2012-01-20
-6824405 Xinjie Xinjie Xinjie,Xinjie Xiang,xin jie,xin jie xiang,新街,新街乡 24.74449 102.72106 P PPLA4 CN 29 0 1891 Asia/Chongqing 2012-01-20
-6824435 Taiping Taiping Taiping,Taiping Zhen,tai ping,tai ping zhen,太平,太平镇 24.9525 102.58834 P PPLA4 CN 29 0 1898 Asia/Chongqing 2012-01-20
-6824445 Xianjie Xianjie Xianjie,Xianjie Zhen,xian jie,xian jie zhen,县街,县街镇 24.85775 102.4221 P PPLA4 CN 29 0 1869 Asia/Chongqing 2012-01-20
-6824454 Laojiangjunjie Laojiangjunjie Laojiangjunjie,Shangsuan,Shangsuan Xiang,lao jiang jun jie,shang suan,shang suan xiang,上蒜,上蒜乡,老将军街 24.67964 102.71159 P PPLA4 CN 29 0 1914 Asia/Chongqing 2012-01-20
-6824473 Huayue Huayue Huayue,Huayue Xiang,hua le,hua le xiang,化乐,化乐乡 24.621 102.75216 P PPLA4 CN 29 0 1935 Asia/Chongqing 2012-01-20
-6824494 Mingyihe Mingyihe Mingyihe,Mingyihe Xiang,ming yi he,ming yi he xiang,鸣矣河,鸣矣河乡 24.78756 102.4279 P PPLA4 CN 29 0 1883 Asia/Chongqing 2012-01-20
-6824541 Chahe Chahe Chahe,Chahe Xiang,cha he,cha he xiang,岔河,岔河乡 24.2833 102.25099 P PPLA4 CN 29 0 1545 Asia/Chongqing 2012-01-20
-6824599 Xiongguan Xiongguan Xiongguan,Xiongguan Xiang,xiong guan,xiong guan xiang,雄关,雄关乡 24.22545 102.80119 P PPLA4 CN 29 0 1847 Asia/Chongqing 2012-01-20
-6824635 Xiaojie Xiaojie Xiaojie,Yousuo,Yousuo Zhen,xiao jie,you suo,右所,小街 24.64393 102.93143 P PPLA4 CN 29 0 1731 Asia/Chongqing 2012-01-20
-6824641 Nanyang Nanyang Nanyang,Nanyang Zhen,nan yang,nan yang zhen,南羊,南羊镇 24.8479 103.13447 P PPLA4 CN 29 0 1535 Asia/Chongqing 2012-01-20
-6824644 Caodianjie Caodianjie Caodian,Caodian Zhen,Caodianjie,cao dian,cao dian jie,cao dian zhen,草甸,草甸街,草甸镇 24.87181 103.05114 P PPLA4 CN 29 0 1881 Asia/Chongqing 2012-01-20
-6824660 Jiulong Jiulong Jiucun,Jiucun Zhen,Jiulong,jiu cun,jiu cun zhen,jiu long,九村,九村镇,九龙 24.69355 102.97981 P PPLA4 CN 29 0 1999 Asia/Chongqing 2012-01-20
-6824683 Longjie Longjie Longjie,Longjie Zhen,long jie,long jie zhen,龙街,龙街镇 24.65008 102.89206 P PPLA4 CN 29 0 1731 Asia/Chongqing 2012-01-20
-6824706 Dayingjie Dayingjie Dayingjie,Jiuxi,Jiuxi Zhen,da ying jie,jiu xi,jiu xi zhen,九溪,九溪镇,大营街 24.30681 102.63905 P PPLA4 CN 29 0 1731 Asia/Chongqing 2012-01-20
-6824732 Qianwei Qianwei Qianwei,Qianwei Zhen,qian wei,qian wei zhen,前卫,前卫镇 24.34126 102.72885 P PPLA4 CN 29 0 1732 Asia/Chongqing 2012-01-20
-6824755 Anhuadaying Anhuadaying Anhua,Anhua Yizuxiang,Anhuadaying,an hua,an hua da ying,an hua yi zu xiang,安化,安化大营,安化彝族乡 24.41876 102.67267 P PPLA4 CN 29 0 1882 Asia/Chongqing 2012-01-20
-6824841 Sijia Sijia Sijia,Wushan,Wushan Xiang,si jia,wu shan,wu shan xiang,五山,五山乡,四家 24.16505 103.19594 P PPLA4 CN 29 0 1902 Asia/Chongqing 2012-01-20
-6824889 Tonghong Tonghong Tonghong,Tonghong Yizu Miaozuxiang,tong hong,tong hong yi zu miao zu xiang,通红,通红彝族苗族乡 24.33826 103.07003 P PPLA4 CN 29 0 1553 Asia/Chongqing 2012-01-20
-6824908 Haikou Haikou Haikou,hai kou,海口 24.5192 102.94259 P PPLA4 CN 29 0 1760 Asia/Chongqing 2012-01-20
-6824917 Nuozu Nuozu Haikou Zhen,Nuozu,hai kou zhen,nuo zu,海口镇,糯租 24.5192 102.94259 P PPLA4 CN 29 0 1760 Asia/Chongqing 2012-01-20
-6824957 Haikoudajie Haikoudajie Haikou Zhen,Haikoudajie,hai kou da jie,hai kou zhen,海口大街,海口镇 24.52665 102.94742 P PPLA4 CN 29 0 1799 Asia/Chongqing 2012-01-20
-6824970 Liujia Liujia Liujia,Liujia Yingxiang,liu jia,liu jia ying xiang,六甲,六甲营乡 24.96399 102.71609 P PPLA4 CN 29 0 1887 Asia/Chongqing 2012-01-20
-6824981 Ala Ala Ala,Ala Yizuxiang,a la,a la yi zu xiang,阿拉,阿拉彝族乡 24.99848 102.78835 P PPLA4 CN 29 0 1920 Asia/Chongqing 2012-01-20
-6824982 Xiaobanqiao Xiaobanqiao Xiaobanqiao,Xiaobanqiao Zhen,xiao ban qiao,xiao ban qiao zhen,小板桥,小板桥镇 24.97944 102.7738 P PPLA4 CN 29 0 1901 Asia/Chongqing 2012-01-20
-6824984 Guandu Guandu Guandu,Guandu Zhen,guan du,guan du zhen,官渡,官渡镇 24.96361 102.76068 P PPLA4 CN 29 0 1889 Asia/Chongqing 2012-01-20
-6824989 Xiaowangjiaying Xiaowangjiaying Dounan Zhen,Xiaowangjiaying,dou nan zhen,xiao wang jia ying,小王家营,斗南镇 24.91265 102.79156 P PPLA4 CN 29 0 1904 Asia/Chongqing 2012-01-20
-6825080 Xilong Xilong Xi'er Zhen,Xilong,Xi’er Zhen,xi er zhen,xi long,西二镇,西龙 24.42086 103.17726 P PPLA4 CN 29 0 1813 Asia/Chongqing 2012-01-20
-6825084 Huakoulongtan Huakoulongtan Huakoulongtan,Xisan Zhen,hua kou long tan,xi san zhen,花口龙潭,西三镇 24.50132 103.41338 P PPLA4 CN 29 0 1688 Asia/Chongqing 2012-01-20
-6825107 Taipingguan Taipingguan Dayu Zhen,Taipingguan,da yu zhen,tai ping guan,大鱼镇,太平关 24.83003 102.79124 P PPLA4 CN 29 0 1892 Asia/Chongqing 2012-01-20
-6825132 Wujiaying Wujiaying Wujiaying,Wujiaying Xiang,wu jia ying,wu jia ying xiang,吴家营,吴家营乡 24.87502 102.84522 P PPLA4 CN 29 0 1940 Asia/Chongqing 2012-01-20
-6825169 Qidian Qidian Qidian,Qidian Xiang,qi dian,qi dian xiang,七甸,七甸乡 24.96034 102.94675 P PPLA4 CN 29 0 2067 Asia/Chongqing 2012-01-20
-6825184 Dake Dake Dake,Dake Xiang,da ke,da ke xiang,大可,大可乡 24.61575 103.23911 P PPLA4 CN 29 0 1690 Asia/Chongqing 2012-01-20
-6825232 Weize Weize Weize,Weize Xiang,wei ze,wei ze xiang,维则,维则乡 24.70772 103.40501 P PPLA4 CN 29 0 1900 Asia/Chongqing 2012-01-20
-6825277 Shilin Shilin Shilin,Shilin Zhen,shi lin,shi lin zhen,石林,石林镇 24.81878 103.33237 P PPLA4 CN 29 0 1786 Asia/Chongqing 2012-01-20
-6825287 Beidacun Xiaozhai Beidacun Xiaozhai Beidacun Xiang,Beidacun Xiaozhai,bei da cun xiang,bei da cun xiao zhai,北大村乡,北大村小寨 24.85789 103.35988 P PPLA4 CN 29 0 1833 Asia/Chongqing 2012-01-20
-6825341 Beigucheng Beigucheng Beigucheng,Beigucheng Zhen,bei gu cheng,bei gu cheng zhen,北古城,北古城镇 24.9847 103.18159 P PPLA4 CN 29 0 1534 Asia/Chongqing 2012-01-20
-6825373 Yanhe Yanhe Yanhe,Yanhe Zhen,yan he,yan he zhen,研和,研和镇 24.25876 102.49592 P PPLA4 CN 29 0 1643 Asia/Chongqing 2012-01-20
-6825387 Gaocang Gaocang Gaocang,Gaocang Zhen,gao cang,gao cang zhen,高仓,高仓镇 24.322 102.52188 P PPLA4 CN 29 0 1640 Asia/Chongqing 2012-01-20
-6825406 Chunhe Chunhe Chunhe,Chunhe Zhen,chun he,chun he zhen,春和,春和镇 24.40334 102.53055 P PPLA4 CN 29 0 1638 Asia/Chongqing 2012-01-20
-6825407 Liqi Liqi Liqi,Liqi Zhen,li qi,li qi zhen,李棋,李棋镇 24.3883 102.55197 P PPLA4 CN 29 0 1633 Asia/Chongqing 2012-01-20
-6825419 Dayingjie Dayingjie Dayingjie,Dayingjie Zhen,da ying jie,da ying jie zhen,大营街,大营街镇 24.33857 102.4951 P PPLA4 CN 29 0 1623 Asia/Chongqing 2012-01-20
-6825439 Xiaoshiqiao Xiaoshiqiao Xiaoshiqiao,Xiaoshiqiao Yizuxiang,xiao shi qiao,xiao shi qiao yi zu xiang,小石桥,小石桥彝族乡 24.4468 102.61753 P PPLA4 CN 29 0 2077 Asia/Chongqing 2012-01-20
-6825481 Luohe Luohe Luohe,Luohe Yizuxiang,luo he,luo he yi zu xiang,洛河,洛河彝族乡 24.33034 102.38917 P PPLA4 CN 29 0 1621 Asia/Chongqing 2012-01-20
-6861636 Banqiao Banqiao Banqiao,Banqiao Xiang,ban qiao,ban qiao xiang,板桥,板桥乡 32.6227 105.34494 P PPLA4 CN 32 0 718 Asia/Chongqing 2012-01-20
-6861732 Qifo Qifo Qifo,Qifo Xiang,qi fu,qi fu xiang,七佛,七佛乡 32.30398 105.28481 P PPLA4 CN 32 0 672 Asia/Chongqing 2012-01-20
-6861736 Magong Magong Magong,Magong Xiang,ma gong,ma gong xiang,马公,马公乡 32.32771 105.03234 P PPLA4 CN 32 0 1352 Asia/Chongqing 2012-01-20
-6861743 Suhe Suhe Suhe,Suhe Xiang,su he,su he xiang,苏河,苏河乡 32.35455 105.1692 P PPLA4 CN 32 0 697 Asia/Chongqing 2012-01-20
-6862128 Huohua Huohua Huohua,huo hua,火花 30.759 106.05936 P PPLA3 CN 32 0 277 Asia/Chongqing 2012-01-20
-6870944 Youxian Youxian Youxian,you xian,游仙 31.46694 104.7605 P PPLA3 CN 32 0 460 Asia/Chongqing 2012-01-20
-6904954 Lengshui Lengshui Lengshui,Lengshui Zhen,leng shui,leng shui zhen,冷水,冷水镇 27.90909 117.18475 P PPLA4 CN 03 0 173 Asia/Shanghai 2012-01-20
-6912413 Qinglin Qinglin Qinglin,Qinglin Xiang,qing lin,qing lin xiang,青林,青林乡 32.77591 106.03458 P PPLA4 CN 32 0 853 Asia/Chongqing 2012-01-20
-6912419 Majiaba Majiaba Majiaba,Majiaba Xiang,ma jia ba,ma jia ba xiang,马家坝,马家坝乡 32.80119 105.99758 P PPLA4 CN 32 0 750 Asia/Chongqing 2012-01-20
-6912455 Pingxi Pingxi Pingxi,Pingxi Xiang,ping xi,ping xi xiang,平溪,平溪乡 32.65149 106.08417 P PPLA4 CN 32 0 1310 Asia/Chongqing 2012-01-20
-6912457 Zhongzi Zhongzi Zhongzi,Zhongzi Zhen,zhong zi,zhong zi zhen,中子,中子镇 32.69119 106.0319 P PPLA4 CN 32 0 663 Asia/Chongqing 2012-01-20
-6912520 Linxi Linxi Linxi,Linxi Xiang,lin xi,lin xi xiang,临溪,临溪乡 32.55906 106.01167 P PPLA4 CN 32 0 1152 Asia/Chongqing 2012-01-20
-6912522 Maliu Maliu Maliu,Maliu Xiang,ma liu,ma liu xiang,麻柳,麻柳乡 32.52593 106.04673 P PPLA4 CN 32 0 1152 Asia/Chongqing 2012-01-20
-6912525 Lijia Lijia Lijia,Lijia Xiang,li jia,li jia xiang,李家,李家乡 32.56038 106.20569 P PPLA4 CN 32 0 1538 Asia/Chongqing 2012-01-20
-6912528 Wangjia Wangjia Wangjia,Wangjia Xiang,wang jia,wang jia xiang,汪家,汪家乡 32.52508 106.15694 P PPLA4 CN 32 0 1256 Asia/Chongqing 2012-01-20
-6918528 Huangmao Huangmao Huangmao,Huangmao Xiang,huang mao,huang mao xiang,黄猫,黄猫乡 32.09187 106.39714 P PPLA4 CN 32 0 958 Asia/Chongqing 2012-01-20
-6918529 Gaopo Gaopo Gaopo,Gaopo Zhen,gao po,gao po zhen,高坡,高坡镇 32.09154 106.33805 P PPLA4 CN 32 0 1029 Asia/Chongqing 2012-01-20
-6919874 Zhongshangang Zhongshangang Zhongshangang,Zhongshangang Jiedao,zhong shan gang,zhong shan gang jie dao,中山港,中山港街道 22.56665 113.45592 P PPLA4 CN 30 0 4 Asia/Chongqing 2012-01-20
-6920719 Xinan Xinan Xinan,xi nan,西南 23.15446 112.89344 P PPLA3 CN 30 0 17 Asia/Chongqing 2012-01-20
-6922213 Shunde Shunde Shunde,shun de,顺德 22.80087 113.29208 P PPLA3 CN 30 0 0 Asia/Chongqing 2012-01-20
-6924979 Xinfa Xinfa Xinfa,xin fa,新发 28.83071 104.32077 P PPLA3 CN 32 0 290 Asia/Chongqing 2012-01-20
-6929460 Panzhihua Panzhihua Panzhihua,pan zhi hua,攀枝花 26.58509 101.71276 P PPLA3 CN 32 0 1101 Asia/Chongqing 2012-01-20
-6929522 Qianjin Qianjin Qianjin,Qianjin Zhen,qian jin,qian jin zhen,前进,前进镇 26.5425 101.69745 P PPLA4 CN 32 0 1116 Asia/Chongqing 2012-01-20
-6942880 Haikuotiankong Haikuotiankong 22.52881 113.9399 P PPL CN 30 2100 253 Asia/Chongqing 2009-07-03
-6957976 Shezhu Shezhu Shezhu,Shezhu Zhen,she zhu,she zhu zhen,社渚,社渚镇 31.31537 119.31051 P PPLA4 CN 04 0 23 Asia/Shanghai 2012-01-20
-6957977 Zhoucheng Zhoucheng Zhoucheng,Zhoucheng Zhen,zhou cheng,zhou cheng zhen,周城,周城镇 31.34397 119.36873 P PPLA4 CN 04 0 11 Asia/Shanghai 2012-01-20
-6957978 Nandu Nandu Nandu,Nandu Zhen,nan du,nan du zhen,南渡,南渡镇 31.42773 119.37282 P PPLA4 CN 04 0 41 Asia/Shanghai 2012-01-20
-6957979 Shangpei Shangpei Shangpei,Shangpei Zhen,shang pei,shang pei zhen,上沛,上沛镇 31.45633 119.26148 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-20
-6957980 Shangxing Shangxing Shangxing,Shangxing Zhen,shang xing,shang xing zhen,上兴,上兴镇 31.50843 119.28599 P PPLA4 CN 04 0 12 Asia/Shanghai 2012-01-20
-6957981 Zhuze Zhuze Zhuze,Zhuze Zhen,zhu ze,zhu ze zhen,竹箦,竹箦镇 31.55746 119.36056 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-20
-6957982 Xuebu Xuebu Xuebu,Xuebu Zhen,xue bu,xue bu zhen,薛埠,薛埠镇 31.70761 119.39427 P PPLA4 CN 04 0 10 Asia/Shanghai 2012-01-20
-6957983 Dingbu Dingbu Dingbu,Dingbu Zhen,ding bu,ding bu zhen,定埠,定埠镇 31.30311 119.17976 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-20
-6957984 Yangjiang Yangjiang Yangjiang,Yangjiang Zhen,yang jiang,yang jiang zhen,阳江,阳江镇 31.33237 118.80491 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-20
-6957985 Gubo Gubo Gubo,Gubo Zhen,gu bai,gu bai zhen,古柏,古柏镇 31.39256 118.91997 P PPLA4 CN 04 0 18 Asia/Shanghai 2012-01-20
-6957986 Changqiao Changqiao Changqiao,Changqiao Zhen,chang qiao,chang qiao zhen,晿桥,晿桥镇 31.53805 119.07966 P PPLA4 CN 04 0 10 Asia/Shanghai 2012-01-20
-6957987 Shuiyang Shuiyang Shuiyang,Shuiyang Zhen,shui yang,shui yang zhen,水阳,水阳镇 31.66164 119.03573 P PPLA4 CN 04 0 17 Asia/Shanghai 2012-01-20
-6957988 Danyang Danyang Danyang,Danyang Zhen,dan yang,dan yang zhen,丹阳,丹阳镇 31.64837 118.71499 P PPLA4 CN 04 0 22 Asia/Shanghai 2012-01-20
-6957989 Tongjing Tongjing Tongjing,Tongjing Zhen,tong jing,tong jing zhen,铜井,铜井镇 31.7975 118.53726 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-20
-6957990 Shiqiao Shiqiao Shiqiao,Shiqiao Zhen,shi qiao,shi qiao zhen,石桥,石桥镇 31.92825 118.4157 P PPLA4 CN 04 0 14 Asia/Shanghai 2012-01-20
-6957991 Qiaolin Qiaolin Qiaolin,Qiaolin Zhen,qiao lin,qiao lin zhen,桥林,桥林镇 31.9497 118.52091 P PPLA4 CN 04 0 8 Asia/Shanghai 2012-01-20
-6957992 Tuqiao Tuqiao Tuqiao,Tuqiao Zhen,tu qiao,tu qiao zhen,土桥,土桥镇 31.93336 119.0674 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-01-20
-6957993 Tangshan Tangshan Tangshan,Tangshan Zhen,tang shan,tang shan zhen,汤山,汤山镇 32.05389 119.06638 P PPLA4 CN 04 0 46 Asia/Shanghai 2012-01-20
-6957994 Xingdian Xingdian Xingdian,Xingdian Zhen,xing dian,xing dian zhen,星甸,星甸镇 32.03959 118.43511 P PPLA4 CN 04 0 32 Asia/Shanghai 2012-01-20
-6957995 Tangquan Tangquan Tangquan,Tangquan Zhen,tang quan,tang quan zhen,汤泉,汤泉镇 32.09883 118.51785 P PPLA4 CN 04 0 32 Asia/Shanghai 2012-01-20
-6957996 Zhujiang Zhujiang Zhujiang,Zhujiang Zhen,zhu jiang,zhu jiang zhen,珠江,珠江镇 32.06308 118.62102 P PPLA4 CN 04 0 12 Asia/Shanghai 2012-01-20
-6957997 Shuining Shuining Shuining,Shuining Zhen,shui ning,shui ning zhen,水宁,水宁镇 32.1448 118.55973 P PPLA4 CN 04 0 9 Asia/Shanghai 2012-01-20
-6957998 Pancheng Pancheng Pancheng,Pancheng Zhen,pan cheng,pan cheng zhen,盘城,盘城镇 32.20609 118.7201 P PPLA4 CN 04 0 20 Asia/Shanghai 2012-01-20
-6957999 Baguazhou Baguazhou Baguazhou,Baguazhou Zhen,ba gua zhou,ba gua zhou zhen,八卦洲,八卦洲镇 32.17238 118.82225 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-20
-6958000 Yudai Yudai Yudai,Yudai Zhen,yu dai,yu dai zhen,玉带,玉带镇 32.22141 118.91111 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-20
-6958001 Jing’an Jing'an Jing'an,Jing'an Zhen,Jing’an,Jing’an Zhen,jing an,jing an zhen,靖安,靖安镇 32.22856 119.14299 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-20
-6958004 Xilinji Xilinji Xilinji,xi lin ji,西林吉 52.99063 123.23522 P PPLA3 CN 08 0 691 Asia/Shanghai 2012-01-20
-6958005 Gufu Gufu Gufu,gu fu,古夫 31.36208 110.72918 P PPLA3 CN 12 0 918 Asia/Shanghai 2012-01-20
-6958008 Hongmiao Hongmiao Hongmiao,hong miao,红庙 32.22403 118.91728 P PPLA3 CN 04 0 4 Asia/Shanghai 2012-01-20
-6959270 Shawan Shawan Shawan,sha wan,沙湾 29.41116 103.54327 P PPLA3 CN 32 0 407 Asia/Chongqing 2012-01-20
-6962255 Shirong Shirong Shirong,shi rong,市荣 29.35092 102.65248 P PPLA3 CN 32 0 861 Asia/Chongqing 2012-01-20
-6962594 Nanwai Nanwai Nanwai,nan wai,南外 31.20474 107.50363 P PPLA3 CN 32 0 313 Asia/Chongqing 2012-01-20
-6962690 Xiwai Xiwai Xiwai,xi wai,西外 31.21682 107.47525 P PPLA3 CN 32 0 314 Asia/Chongqing 2012-01-20
-6962793 Huangyang Huangyang Huangyang,Huangyang Zhen,huang yang,huang yang zhen,黄洋,黄洋镇 32.2388 106.36868 P PPLA4 CN 32 0 523 Asia/Chongqing 2012-01-20
-6962799 Maying Maying Maying,Maying Xiang,ma ying,ma ying xiang,麻英,麻英乡 32.32135 106.12104 P PPLA4 CN 32 0 777 Asia/Chongqing 2012-01-20
-6962805 Yanhe Yanhe Yanhe,Yanhe Xiang,yan he,yan he xiang,盐河,盐河乡 32.54704 106.33871 P PPLA4 CN 32 0 703 Asia/Chongqing 2012-01-20
-6962815 Sanjiang Sanjiang Sanjiang,Sanjiang Zhen,san jiang,san jiang zhen,三江,三江镇 32.23764 106.5411 P PPLA4 CN 32 0 468 Asia/Chongqing 2012-01-20
-6962830 Wuquan Wuquan Wuquan,Wuquan Zhen,wu quan,wu quan zhen,五权,五权镇 32.33222 106.64283 P PPLA4 CN 32 0 629 Asia/Chongqing 2012-01-20
-6962832 Jinxi Jinxi Jinxi,Jinxi Zhen,jin xi,jin xi zhen,金溪,金溪镇 32.28723 106.65798 P PPLA4 CN 32 0 480 Asia/Chongqing 2012-01-20
-6962846 Zhanghua Zhanghua Zhanghua,Zhanghua Zhen,zhang hua,zhang hua zhen,张华,张华镇 32.14784 106.18506 P PPLA4 CN 32 0 465 Asia/Chongqing 2012-01-20
-6962856 Longfeng Longfeng Longfeng,Longfeng Xiang,long feng,long feng xiang,龙凤,龙风乡 32.17109 106.40474 P PPLA4 CN 32 0 629 Asia/Chongqing 2012-01-20
-6962862 Mumen Mumen Mumen,Mumen Zhen,mu men,mu men zhen,木门,木门镇 32.1099 106.52609 P PPLA4 CN 32 0 420 Asia/Chongqing 2012-01-20
-6962863 Hualong Hualong Hualong,Hualong Xiang,hua long,hua long xiang,化龙,化龙乡 32.12525 106.4625 P PPLA4 CN 32 0 746 Asia/Chongqing 2012-01-20
-6967189 Zherong Xian Zherong Xian Shuangcheng Zhen,Zherong Xian,shuang cheng zhen,zhe rong xian,双城镇,柘荣县 27.24 119.89444 P PPLA3 CN 07 6967189 0 666 Asia/Shanghai 2012-02-29
-6969751 Pingdu Pingdu Pingdu 27.61171 118.97142 P PPLA4 CN 02 0 323 Asia/Shanghai 2012-01-20
-6969807 Zhoukou Zhoukou Zhoukou 27.69684 118.91938 P PPLA4 CN 02 0 314 Asia/Shanghai 2012-01-20
-6969808 Xibian Xibian Xibian 27.76459 118.93766 P PPLA4 CN 02 0 386 Asia/Shanghai 2012-01-20
-6969836 Sanxi Sanxi Sanxi 27.6959 119.06262 P PPLA4 CN 02 0 1027 Asia/Shanghai 2012-01-20
-6969840 Jushui Jushui Jushui 27.49729 119.1761 P PPLA4 CN 02 0 848 Asia/Shanghai 2012-01-20
-6969842 Wudabao Wudabao Wudabao 27.608 119.17126 P PPLA4 CN 02 0 674 Asia/Shanghai 2012-01-20
-6971551 Chengzhao Chengzhao Chengzhao,cheng zhao,澄照 27.92677 119.61404 P PPLA4 CN 02 0 395 Asia/Shanghai 2012-01-20
-6971552 Hexi Hexi Hexi 27.98047 119.63528 P PPLA3 CN 02 0 207 Asia/Shanghai 2012-01-20
-6971554 Zhengkeng Zhengkeng Zhengkeng 27.99223 119.7976 P PPLA4 CN 02 0 818 Asia/Shanghai 2012-01-20
-6971678 Xiayang Xiayang Xiayang,xia yang,下垟 27.87768 119.80468 P PPLA4 CN 02 0 899 Asia/Shanghai 2012-01-20
-6972233 Zhishan Zhishan Zhishan 27.71633 119.91921 P PPLA4 CN 02 0 111 Asia/Shanghai 2012-01-20
-6972291 Menlou’ao Menlou'ao Menlou'ao,Menlou’ao 27.43363 119.87482 P PPLA4 CN 02 0 576 Asia/Shanghai 2012-01-20
-6973112 Zhoujia Zhoujia Zhoujia,zhou jia,周家 29.07212 118.90509 P PPLA4 CN 02 0 83 Asia/Shanghai 2012-01-20
-6973114 Baitashan Baitashan Baitashan,Wantian,bai ta shan,wan tian,万田,白塔山 29.01769 118.85976 P PPLA4 CN 02 0 83 Asia/Shanghai 2012-01-20
-6973401 Dongshandi Dongshandi Dongshandi,Furong,dong shan di,fu rong,东山底,芙蓉 29.12471 118.64857 P PPLA4 CN 02 0 241 Asia/Shanghai 2012-01-20
-6973720 Jiuhua Jiuhua Jiuhua,jiu hua,九华 29.0513 118.8436 P PPLA4 CN 02 0 111 Asia/Shanghai 2012-01-20
-6975018 Zitong Zitong Zitong,Zitong Zhen,zi tong,zi tong zhen,梓潼,梓潼镇 30.7502 103.69657 P PPLA4 CN 32 0 576 Asia/Chongqing 2012-01-20
-6975019 Guangsheng Guangsheng Guangsheng,Guangsheng Zhen,guan sheng,guan sheng zhen,观胜,观胜镇 30.73713 103.66913 P PPLA4 CN 32 0 576 Asia/Chongqing 2012-01-20
-6979981 Qianying Qianying Qianying,Qianying Zhen,qian ying,qian ying zhen,前营,前营镇 40.15848 123.1807 P PPLA4 CN 19 0 300 Asia/Shanghai 2012-01-20
-6982827 Hangbu Hangbu Hangbu,Hangbu Zhen,hang bu,hang bu zhen,航埠,航埠镇 28.93657 118.77862 P PPLA4 CN 02 0 76 Asia/Shanghai 2012-01-20
-6982850 Anren Anren Anren,Anren Zhen,an ren,an ren zhen,安仁,安仁镇 28.06147 119.3365 P PPLA4 CN 02 0 202 Asia/Shanghai 2012-01-20
-6982881 Shitang Shitang Shitang,Shitang Zhen,shi tang,shi tang zhen,石塘,石塘镇 28.22326 119.66558 P PPLA4 CN 02 0 112 Asia/Shanghai 2012-01-20
-6982893 Huajie Huajie Huajie,Huajie Zhen,hua jie,hua jie zhen,花街,花街镇 28.92334 119.9676 P PPLA4 CN 02 0 101 Asia/Shanghai 2012-01-20
-6982907 Bihu Bihu Bihu,Bihu Zhen,bi hu,bi hu zhen,碧湖,碧湖镇 28.34045 119.78739 P PPLA4 CN 02 0 63 Asia/Shanghai 2012-01-20
-6982913 Liancheng Liancheng Liancheng,Liancheng Zhen,lian cheng,lian cheng zhen,联城,联城镇 28.47433 119.85332 P PPLA4 CN 02 0 57 Asia/Shanghai 2012-01-20
-6982915 Shuige Shuige Shuige,Shuige Jiedao,shui ge,shui ge jie dao,水阁,水阁街道 28.4175 119.85998 P PPLA4 CN 02 0 103 Asia/Shanghai 2012-01-20
-6982920 Shuangxi Shuangxi Shuangxi,Shuangxi Zhen,shuang xi,shuang xi zhen,双溪,双溪镇 28.59467 119.87552 P PPLA4 CN 02 0 185 Asia/Shanghai 2012-01-20
-6982925 Lakou Lakou Lakou,Lakou Zhen,la kou,la kou zhen,腊口,腊口镇 28.33858 119.95545 P PPLA4 CN 02 0 35 Asia/Shanghai 2012-01-20
-6986104 Zhongshan Zhongshan Zhongshan,zhong shan,中山 22.52058 113.38232 P PPLA2 CN 01 0 11 Asia/Shanghai 2012-01-20
-6988066 Yiliu Yiliu Yiliu 24.94521 102.78827 P PPLA4 CN 29 0 1906 Asia/Chongqing 2012-01-20
-6998444 Suyang Suyang Pengcai Xiang,Suyang,peng cai xiang,su yang,苏羊,蓬菜乡 24.91705 103.13968 P PPLA4 CN 29 0 1543 Asia/Chongqing 2012-01-20
-6999282 Luoyang Luoyang Luoyang,Luoyang Zhen,luo yang,luo yang zhen,洛羊,洛羊镇 24.92974 102.80522 P PPLA4 CN 29 0 1907 Asia/Chongqing 2012-01-20
-7001420 Meisha Meisha Meisha,Meisha Jiedao,mei sha,梅沙 22.59753 114.29997 P PPLA4 CN 30 0 9 Asia/Shanghai 2012-01-20
-7001421 Shatoujiao Shatoujiao Shatoujiao,sha tou jiao,沙头角 22.55463 114.22589 P PPLA4 CN 30 0 19 Asia/Shanghai 2012-01-20
-7001716 Xiegang Xiegang Xiegang,Xiegang Zhen,xie gang,谢岗 22.9611 114.14058 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-20
-7001762 Qiaotou Qiaotou Qiaotou,Qiaotou Zhen,qiao tou,桥头 23.02339 114.09211 P PPLA4 CN 30 0 31 Asia/Shanghai 2012-01-20
-7001854 Wanjiangqu Wanjiangqu Wanjiang Jiedao,Wanjiangqu,wan jiang,万江 23.05815 113.72278 P PPLA4 CN 30 0 4 Asia/Shanghai 2012-01-20
-7001855 Nancheng Nancheng Nancheng,Nancheng Jiedao,nan cheng,南城 23.04481 113.74226 P PPLA4 CN 30 0 5 Asia/Shanghai 2012-01-20
-7003500 Piaojia Piaojia Wanghu Manzuxiang,pu jia,wang hu man zu xiang,朴家,网户满族乡 40.19125 120.19018 P PPLA4 CN 19 0 19 Asia/Shanghai 2009-11-28
-7003510 Chengjiao Chengjiao Chengjiao,Chengjiao Xiang,cheng jiao,cheng jiao xiang,城郊,城郊乡 40.33468 120.34029 P PPLA4 CN 19 0 17 Asia/Shanghai 2012-01-20
-7003512 Gaodianzi Gaodianzi Gaodianzi,Gaodianzi Manzuxiang,gao dian zi,gao dian zi man zu xiang,高甸子,高甸子满族乡 40.38345 120.13918 P PPLA4 CN 19 0 51 Asia/Shanghai 2012-01-20
-7005418 Maojiadian Maojiadian Maojiadian,Maojiadian Zhen,mao jia dian,mao jia dian zhen,毛家店,毛家店镇 43.04208 124.293 P PPLA4 CN 19 0 157 Asia/Shanghai 2012-01-20
-7005560 Dasijiazi Dasijiazi Dasijiazi,Dasijiazi Xiang,da si jia zi,da si jia zi xiang,大四家子,大四家子乡 42.7559 123.63698 P PPLA4 CN 19 0 83 Asia/Shanghai 2012-01-20
-7005571 Shibajiazi Shibajiazi Shibajiazi,Shibajiazi Xiang,shi ba jia zi,shi ba jia zi xiang,十八家子,十八家子乡 42.66854 123.75587 P PPLA4 CN 19 0 90 Asia/Shanghai 2012-01-20
-7005572 Guyushu Guyushu Guyushu,Tongjiangkou Xiang,gu yu shu,tong jiang kou xiang,孤榆树,通江口乡 42.62705 123.70372 P PPLA4 CN 19 0 76 Asia/Shanghai 2012-01-20
-7005592 Daxing Daxing Daxing,Daxing Xiang,da xing,da xing xiang,大兴,大兴乡 42.78783 123.84452 P PPLA4 CN 19 0 112 Asia/Shanghai 2012-01-20
-7005616 Ertaizi Ertaizi Ertaizi,Taiping Xiang,er tai zi,tai ping xiang,二台子,太平乡 42.87324 124.05192 P PPLA4 CN 19 0 139 Asia/Shanghai 2012-01-20
-7005638 Xia’ertai Xia'ertai Xia'ertai,Xia'ertai Xiang,Xia’ertai,Xia’ertai Xiang,xia er tai,xia er tai xiang,下二台,下二台乡 42.9495 124.29153 P PPLA4 CN 19 0 171 Asia/Shanghai 2012-01-20
-7005968 Luzhou Luzhou Luzhou,Luzhou Zhen,lu zhou,芦洲 23.36934 114.52213 P PPLA4 CN 30 0 33 Asia/Shanghai 2012-01-20
-7006025 Pianbai Pianbai Pianbai,Pianbai Xiang,pian bai,pian bai xiang,偏柏,偏柏乡 29.03109 109.09221 P PPLA4 CN 33 0 329 Asia/Chongqing 2012-01-20
-7006043 Wufu Wufu Wufu,Wufu Xiang,wu fu,wu fu xiang,五福,五福乡 29.12171 109.11747 P PPLA4 CN 33 0 346 Asia/Chongqing 2012-01-20
-7006113 Dahe Dahe Dahe,Dahe Zhen,da he,da he zhen,大河,大河镇 29.43203 109.17869 P PPLA4 CN 12 0 536 Asia/Shanghai 2012-01-20
-7006154 Shangzhai Shangzhai Lushui,Lushui Xiang,Lüshui,Lüshui Xiang,Shangzhai,lu shui xiang,shang zhai,上寨,绿水乡 29.37981 109.30098 P PPLA4 CN 12 0 505 Asia/Shanghai 2012-01-20
-7006401 Piduhe Piduhe Huoyanxiang,Piduhe,huo yan xiang,pi du he,火岩乡,皮渡河 29.23682 109.31644 P PPLA4 CN 11 0 633 Asia/Shanghai 2011-06-07
-7006885 Shadiping Shadiping Badagongshan Xiang,Shadiping,ba da gong shan xiang,sha de ping,八大公山乡,砂地坪 29.66493 109.82152 P PPLA4 CN 11 0 1034 Asia/Shanghai 2012-01-20
-7007009 Zhongying Zhongying Zhongying,Zhongying Xiang,zhong ying,zhong ying xiang,中营,中营乡 29.98303 109.97126 P PPLA4 CN 12 0 912 Asia/Shanghai 2012-01-20
-7007021 Geleche Geleche Geleche,Geleche Xiang,ge lei che,ge lei che xiang,革勒车,革勒车乡 29.55022 109.24562 P PPLA4 CN 12 0 547 Asia/Shanghai 2012-01-20
-7007043 Keda Keda Keda,Keda Xiang,ke da,ke da xiang,可大,可大乡 29.02894 109.24059 P PPLA4 CN 33 0 522 Asia/Chongqing 2012-01-20
-7007049 Jiajiaba Jiajiaba Jiaba,Jiaba Xiang,Jiajiaba,gu ba,gu ba xiang,gu jia ba,贾坝,贾坝乡,贾家坝 29.14437 109.38422 P PPLA4 CN 11 0 847 Asia/Shanghai 2012-01-20
-7007125 Shaoha Shaoha Shaoha,Shaoha Xiang,shao ha,shao ha xiang,勺哈,勺哈乡 29.01964 109.764 P PPLA4 CN 11 0 422 Asia/Shanghai 2012-01-20
-7007504 Dongcheng Dongcheng Dongcheng,Dongcheng Jiedao,dong cheng,东城 23.71213 113.03738 P PPLA4 CN 30 0 15 Asia/Shanghai 2012-01-20
-7007505 Henghe Henghe Henghe,Henghe Jiedao,heng he,横荷 23.63308 113.05972 P PPLA4 CN 30 0 21 Asia/Shanghai 2012-01-20
-7007712 Chengjiao Chengjiao Chengjiao,Chengjiao Jiedao,cheng jiao,城郊 23.55597 113.57693 P PPLA4 CN 30 0 38 Asia/Shanghai 2012-01-20
-7007713 Jiangpu Jiangpu Jiangpu,Jiangpu Jiedao,jiang bu,江埔 23.54162 113.5953 P PPLA4 CN 30 0 36 Asia/Shanghai 2012-01-20
-7008489 Longshan Longshan Longshan,Longshan Zhen,long shan,龙山 23.75004 113.38417 P PPLA4 CN 30 0 25 Asia/Shanghai 2012-01-20
-7009261 Tongqiao Tongqiao Tongqiao,Tongqiao Zhen,tong qiao,潼桥 23.01939 114.33754 P PPLA4 CN 30 0 18 Asia/Shanghai 2012-01-20
-7009266 Henan’an Henan'an Henan'an,Henan'an Jiedao,Henan’an,Henan’an Jiedao,he nan an,河南岸 23.07993 114.41787 P PPLA4 CN 30 0 18 Asia/Shanghai 2012-01-20
-7009267 Huihuan Huihuan Huihuan,Huihuan Jiedao,hui huan,惠环 23.03584 114.36016 P PPLA4 CN 30 0 22 Asia/Shanghai 2012-01-20
-7009876 Shazhuang Shazhuang Shazhuang,Shazhuang Jiedao,sha zhuang,沙庄 23.1333 113.83506 P PPLA4 CN 30 0 1 Asia/Shanghai 2012-01-20
-7010280 Dipa Dipa Dipa,Dipa Zhen,de pai,地派 23.84225 114.07415 P PPLA4 CN 30 0 168 Asia/Shanghai 2012-01-20
-7010372 Houzhai Houzhai Houzhai,hou zhai,后宅 23.42436 117.01659 P PPLA3 CN 30 0 34 Asia/Shanghai 2012-01-20
-7011352 Piaojia Piaojia Piaojia,Wanghu Manzuxiang,pu jia,wang hu man zu xiang,朴家,网户满族乡 40.19125 120.19018 P PPLA4 CN 19 0 19 Asia/Shanghai 2012-01-20
-7011353 城郊 cheng jiao Chengjiao Xiang,cheng jiao xiang,城郊乡 40.33468 120.34029 P PPLA4 CN 19 0 17 Asia/Shanghai 2009-11-28
-7011354 Gaodianzi Gaodianzi Gaodianzi Manzuxiang,gao dian zi,gao dian zi man zu xiang,高甸子,高甸子满族乡 40.38345 120.13918 P PPLA4 CN 19 0 51 Asia/Shanghai 2009-11-28
-7012542 Laowobao Laowobao Laowobao,Shandongtun Xiang,lao wo bao,shan dong tun xiang,山东屯乡,老窝堡 42.93106 123.53337 P PPLA4 CN 19 0 89 Asia/Shanghai 2012-01-20
-7012543 Liangjiazi Liangjiazi Liangjiazi,Liangjiazi Xiang,liang jia zi,liang jia zi xiang,两家子,两家子乡 42.77835 123.48538 P PPLA4 CN 19 0 86 Asia/Shanghai 2012-01-20
-7012544 Xiguantun Muguzu Manzuxiang Xiguantun Muguzu Manzuxiang Xiguantun,Xiguantun Muguzu Manzuxiang,xi guan tun,xi guan tun meng gu zu man zu xiang,西关屯,西关屯蒙古族满族乡 42.57495 123.16525 P PPLA4 CN 19 0 81 Asia/Shanghai 2012-01-20
-7012545 Xizhahaqi Xizhahaqi Shajintai Muguzu Manzuxiang,Xizhahaqi,sha jin tai meng gu zu man zu xiang,xi zha ha qi,沙金台蒙古族满族乡,西扎哈气 42.67603 122.88619 P PPLA4 CN 19 0 133 Asia/Shanghai 2012-01-20
-7012546 Zhangqiang Zhangqiang Zhangqiang,Zhangqiang Zhen,zhang qiang,zhang qiang zhen,张强,张强镇 42.68348 122.99145 P PPLA4 CN 19 0 120 Asia/Shanghai 2012-01-20
-7012547 Dongsheng Dongsheng Dongsheng,Dongsheng Manzu Muguzu Xiang,dong sheng,dong sheng man zu meng gu zu xiang,东升,东升满族蒙古族乡 42.65232 123.13077 P PPLA4 CN 19 0 104 Asia/Shanghai 2012-01-20
-7012548 Haizhouwobao Haizhouwobao Haizhouwobao,Haizhouwobao Xiang,hai zhou wo bao,hai zhou wo bao xiang,海州窝堡,海州窝堡乡 42.93823 123.37082 P PPLA4 CN 19 0 105 Asia/Shanghai 2012-01-20
-7012549 Dongguantun Dongguantun Dongguantun,Dongguantun Zhen,dong guan tun,dong guan tun zhen,东关屯,东关屯镇 42.69249 123.34909 P PPLA4 CN 19 0 90 Asia/Shanghai 2012-01-20
-7012952 Hedong Hedong Hedong,Hedong Zhen,he dong,河东 22.97956 115.64866 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-20
-7012953 Neihu Neihu Neihu,Neihu Zhen,nei hu,内湖 22.97683 115.82798 P PPLA4 CN 30 0 19 Asia/Shanghai 2012-01-20
-7017617 Chengnan Chengnan Chengnan,Chengnan Jiedao,cheng nan,城南 23.27217 116.60502 P PPLA3 CN 30 0 20 Asia/Shanghai 2012-01-20
-7018259 Longxiang Longxiang Longxiang,Longxiang Jiedao,long xiang,龙祥 23.41077 116.72087 P PPLA4 CN 30 0 7 Asia/Shanghai 2012-01-20
-7018971 Dongzhou Dongzhou Dongzhou,Dongzhou Jiedao,dong zhou,东洲 22.71304 115.52706 P PPLA4 CN 30 0 11 Asia/Shanghai 2012-01-20
-7019933 Nianpan Nianpan Nianpan,Nianpan Xiang,nian pan,nian pan xiang,碾盘,碾盘乡 32.36603 106.84632 P PPLA4 CN 32 0 501 Asia/Chongqing 2012-01-20
-7019967 Heitan Heitan Heitan,Heitan Xiang,hei tan,hei tan xiang,黑潭乡,黒潭 32.03362 106.65267 P PPLA4 CN 32 0 720 Asia/Chongqing 2012-01-20
-7019980 Heping Heping Heping,Heping Xiang,he ping,he ping xiang,和平,和平乡 32.0462 106.55702 P PPLA4 CN 32 0 410 Asia/Chongqing 2012-01-20
-7019989 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Xiang,gao qiao,gao qiao xiang,高桥,高桥乡 32.09283 106.83697 P PPLA4 CN 32 0 480 Asia/Chongqing 2012-01-20
-7019991 Pinggang Pinggang Pinggang,Pinggang Xiang,ping gang,ping gang xiang,平岗,平岗乡 32.0944 106.88842 P PPLA4 CN 32 0 681 Asia/Chongqing 2012-01-20
-7020019 Dongyu Dongyu Dongyu,Dongyu Zhen,dong yu,dong yu zhen,东榆,东榆镇 32.3116 106.81985 P PPLA4 CN 32 0 463 Asia/Chongqing 2012-01-20
-7020021 Zhaipo Zhaipo Zhaipo,Zhaipo Xiang,zhai po,zhai po xiang,寨坡,寨坡乡 32.59643 106.83233 P PPLA4 CN 32 0 1241 Asia/Chongqing 2012-01-20
-7020034 Guanba Guanba Guanba,Guanba Xiang,guan ba,guan ba xiang,关坝,关坝乡 32.59684 106.9589 P PPLA4 CN 32 0 858 Asia/Chongqing 2012-01-20
-7020048 Qiaoting Qiaoting Qiaoting,Qiaoting Xiang,qiao ting,qiao ting xiang,桥亭,桥亭乡 32.46492 106.89823 P PPLA4 CN 32 0 770 Asia/Chongqing 2012-01-20
-7020053 Tuanjie Tuanjie Tuanjie,Tuanjie Xiang,tuan jie,tuan jie xiang,团结,团结乡 32.28841 106.74046 P PPLA4 CN 32 0 504 Asia/Chongqing 2012-01-20
-7020060 Leba Leba Leba,Leba Zhen,le ba,le ba zhen,乐坝,乐坝镇 32.2655 106.67809 P PPLA4 CN 32 0 475 Asia/Chongqing 2012-01-20
-7020072 Guanlu Guanlu Guanlu,Guanlu Xiang,guan lu,guan lu xiang,关路,关路乡 32.33646 106.97452 P PPLA4 CN 32 0 598 Asia/Chongqing 2012-01-20
-7020074 Xingma Xingma Xingma,Xingma Xiang,xing ma,xing ma xiang,兴马,兴马乡 32.24785 106.97133 P PPLA4 CN 32 0 609 Asia/Chongqing 2012-01-20
-7020091 Taoyuan Taoyuan Taoyuan,Taoyuan Zhen,tao yuan,tao yuan zhen,桃园,桃园镇 32.66896 106.79998 P PPLA4 CN 32 0 1031 Asia/Chongqing 2012-01-20
-7021128 Qiaodong Qiaodong Qiaodong,Qiaodong Jiedao,qiao dong,桥东 23.66395 116.6556 P PPLA4 CN 30 0 40 Asia/Shanghai 2012-01-20
-7027026 Yongchang Yongchang Beichuan Xian,Yongchang,yong chang,永昌 31.66574 104.43726 P PPLA3 CN 32 0 942 Asia/Chongqing 2012-01-20
-7029917 Yanzhou Yanzhou Yanzhou,yan zhou,盐洲 22.72572 114.93866 P PPLA4 CN 30 0 5 Asia/Shanghai 2012-01-20
-7032140 Xiaomo Xiaomo Xiaomo,xiao mo,小漠 22.7769 115.0338 P PPLA4 CN 30 0 13 Asia/Shanghai 2012-01-20
-7033028 Chigang Chigang Chigang,Chigang Zhen,chi gang,赤岗 23.4355 116.16883 P PPLA4 CN 30 0 17 Asia/Shanghai 2012-01-20
-7033029 Hongyang Hongyang Hongyang,Hongyang Zhen,hong yang,洪阳 23.43499 116.20907 P PPLA4 CN 30 0 10 Asia/Shanghai 2012-01-20
-7033214 Gaotuo Gaotuo Gaotuo,Gaotuo Zhen,gao tuo,gao tuo zhen,高坨,高坨镇 41.13402 122.65972 P PPLA4 CN 19 0 7 Asia/Shanghai 2012-01-20
-7033215 Haizhou Haizhou Haizhou,Haizhou Jiedao,hai zhou,hai zhou jie dao,海州,海州街道 40.84863 122.74151 P PPLA4 CN 19 0 33 Asia/Shanghai 2012-01-20
-7040439 Tangnan Tangnan Tangnan,Tangnan Zhen,tang nan,tang nan zhen,塘南,塘南镇 31.41326 118.65888 P PPLA4 CN 01 0 9 Asia/Shanghai 2012-01-20
-7041606 Huashan Huashan Huashan 31.70375 118.50146 P PPLA3 CN 01 0 16 Asia/Shanghai 2012-01-20
-7041968 Baitugang Baitugang Baitugang,Baitugang Zhen,bai tu gang,bai tu gang zhen,白土岗,白土岗镇 33.44701 112.36653 P PPLA4 CN 09 0 199 Asia/Shanghai 2012-01-20
-7042001 Danyang Danyang Danyang,Danyang Zhen,dan yang,dan yang zhen,丹阳,丹阳镇 31.62638 118.71556 P PPLA4 CN 01 0 16 Asia/Shanghai 2012-01-20
-7042150 Yuxikou Yuxikou Yuxikou,Yuxikou Jiedao,yu xi kou,yu xi kou jie dao,裕溪口,裕溪口街道 31.43358 118.30303 P PPLA4 CN 01 0 10 Asia/Shanghai 2012-01-20
-7043153 Jiujiang Jiujiang Jiujiang,jiu jiang,鸠江 31.36994 118.37724 P PPLA3 CN 01 0 14 Asia/Shanghai 2012-01-20
-7044425 Zhangzhen Zhangzhen Zhangzhen,Zhangzhen Jiedao,zhang zhen,zhang zhen jie dao,张镇,张镇街道 31.30646 118.53082 P PPLA4 CN 01 0 9 Asia/Shanghai 2012-01-20
-7047778 Xiexiang Xiexiang Xiexiang,Zhaozheng Zhen,xie ji,zhao zheng zhen,昭郑镇,谢集 31.82469 118.04537 P PPLA4 CN 01 0 20 Asia/Shanghai 2012-01-20
-7047779 Shanhou Shanhou Shanhou,Shanhou Zhen,shan hou,shan hou zhen,善厚,善厚镇 31.87493 118.15594 P PPLA4 CN 01 0 19 Asia/Shanghai 2012-01-20
-7047845 Limiao Limiao Limiao,li miao,李庙 34.05254 109.89866 P PPLA4 CN 26 0 880 Asia/Chongqing 2012-01-20
-7048101 Xiwang Xiwang Xiwang,xi wang,席王 34.28768 109.05677 P PPLA4 CN 26 0 408 Asia/Chongqing 2012-01-20
-7048173 Dongyang Dongyang Dongyang,dong yang,东阳 34.38428 109.62766 P PPLA4 CN 26 0 587 Asia/Chongqing 2012-01-20
-7048205 Daming Daming Daming,Daming Zhen,da ming,大明 34.42944 109.6723 P PPLA4 CN 26 0 604 Asia/Chongqing 2012-01-20
-7048208 Jinhui Jinhui Jinhui,jin hui,金惠 34.43078 109.70008 P PPLA4 CN 26 0 702 Asia/Chongqing 2012-01-20
-7048263 Xinglin Xinglin Xinglin,Xinglin Zhen,xing lin,杏林 34.49371 109.7607 P PPLA4 CN 26 0 400 Asia/Chongqing 2012-01-20
-7048301 Longbei Longbei Longbei,long bei,龙背 34.54378 109.57169 P PPLA4 CN 26 0 344 Asia/Chongqing 2012-01-20
-7048311 Xinzhuang Xinzhuang Xinzhuang,xin zhuang,辛庄 34.55909 109.67104 P PPLA4 CN 26 0 343 Asia/Chongqing 2012-01-20
-7048330 Bijia Bijia Bijia,bi jia,毕家 34.58244 109.83845 P PPLA4 CN 26 0 339 Asia/Chongqing 2012-01-20
-7048397 Nanshi Nanshi Nanshi,nan shi,南师 34.65097 109.62778 P PPLA4 CN 26 0 347 Asia/Chongqing 2012-01-20
-7048451 Dongshangguan Dongshangguan Dongshangguan,dong shang guan,东上官 34.72984 109.21643 P PPLA4 CN 26 0 435 Asia/Chongqing 2012-01-20
-7048630 Dongyang Dongyang Dongyang,dong yang,东杨 34.92752 109.62993 P PPLA4 CN 26 0 462 Asia/Chongqing 2012-01-20
-7049343 Sanshan Sanshan Sanshan,Sanshan Jiedao,san shan,san shan jie dao,三山,三山街道 31.21244 118.22986 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-20
-7050080 Jinjiazhuang Jinjiazhuang Jinjiazhuang,Jinjiazhuang Qu,jin jia zhuang,jin jia zhuang qu,金家庄,金家庄区 31.72026 118.48811 P PPLA3 CN 01 0 17 Asia/Shanghai 2012-01-20
-7050502 Jinping Jinping Jinping,Jinping Xiang,jin ping,jin ping xiang,金坪,金坪乡 29.2471 110.95834 P PPLA4 CN 11 0 466 Asia/Shanghai 2012-01-20
-7050525 Yanghe Yanghe Yanghe,Yanghe Tujiazuxiang,yang he,yang he tu jia zu xiang,阳和,阳和土家族乡 29.26502 110.7041 P PPLA4 CN 11 0 188 Asia/Shanghai 2012-01-20
-7050615 Xilian Xilian Xilian,Xilian Xiang,xi lian,xi lian xiang,西莲,西莲乡 29.67918 110.7286 P PPLA4 CN 11 0 716 Asia/Shanghai 2012-01-20
-7050674 Yujiazui Yujiazui Suoxiyu,Suoxiyu Tujiazuxiang,Yujiazui,suo xi yu,suo xi yu tu jia zu xiang,yu jia zi,喻家觜,索溪峪,索溪峪土家族乡 29.35336 110.56269 P PPLA4 CN 11 0 504 Asia/Shanghai 2012-01-20
-7050692 Liulang Liulang Liulang,Xiehe,Xiehe Xiang,liu lang,xie he,xie he xiang,协合,协合乡,柳榔 29.29306 110.50946 P PPLA4 CN 11 0 960 Asia/Shanghai 2012-01-20
-7050713 Jianxin Jianxin Jianxin,Yanghuping,Yanghuping Zhen,jian xin,yang hu ping,yang hu ping zhen,建新,阳湖坪,阳湖坪镇 29.14315 110.55023 P PPLA4 CN 11 0 191 Asia/Shanghai 2011-08-09
-7051026 Huancheng Huancheng Huancheng,huan cheng,环城 33.01453 112.53947 P PPLA4 CN 09 0 126 Asia/Shanghai 2012-01-20
-7051040 Pushan Pushan Pushan,Pushan Zhen,pu shan,pu shan zhen,蒲山,蒲山镇 33.1197 112.59479 P PPLA4 CN 09 0 145 Asia/Shanghai 2012-01-20
-7052970 Zheshan Zheshan Zheshan,Zheshan Zhen,zhe shan,zhe shan zhen,遮山,遮山镇 33.04464 112.35167 P PPLA4 CN 09 0 182 Asia/Shanghai 2012-01-20
-7055895 Taishanmiao Taishanmiao Taishanmiao,tai shan miao,太山庙 33.39637 112.64313 P PPLA4 CN 09 0 185 Asia/Shanghai 2012-01-20
-7056341 Longxing Longxing Longxing,long xing,龙兴 33.19737 112.40647 P PPLA4 CN 09 0 219 Asia/Shanghai 2012-01-20
-7057435 Yaoshan Yaoshan Yaoshan,Yaoshan Zhen,yao shan,yao shan zhen,尧山,尧山镇 33.75263 112.38373 P PPLA4 CN 09 0 353 Asia/Shanghai 2012-01-20
-7059190 Kuzhuping Kuzhuping Kuzhuping,Kuzhuping Xiang,ku zhu ping,ku zhu ping xiang,苦竹坪,苦竹坪乡 29.64708 110.08413 P PPLA4 CN 11 0 480 Asia/Shanghai 2012-01-20
-7059368 Suoziqiu Suoziqiu Mahekou,Mahekou Baizuxiang,Suoziqiu,ma he kou,ma he kou bai zu xiang,suo zi qiu,梭子丘,马合口,马合口白族乡 29.54324 110.3662 P PPLA4 CN 11 0 439 Asia/Shanghai 2011-08-09
-7059369 Zoumaping Zoumaping Zoumaping,Zoumaping Baizuxiang,zou ma ping,zou ma ping bai zu xiang,走马坪,走马坪白族乡 29.47189 110.4415 P PPLA4 CN 11 0 468 Asia/Shanghai 2012-01-20
-7059370 Huochiyu Huochiyu Guhuxiang,Huochiyu,huo chi yu,yu hu xiang,或池峪,汩湖乡 29.46284 110.47185 P PPLA4 CN 11 0 497 Asia/Shanghai 2011-08-09
-7059417 Guluoshan Guluoshan Guluoshan,Guluoshan Xiang,gu luo shan,gu luo shan xiang,谷罗山,谷罗山乡 29.58802 110.19196 P PPLA4 CN 11 0 436 Asia/Shanghai 2012-01-20
-7059421 Xiaobutou Xiaobutou Daguquan,Daguquan Xiang,Xiaobutou,da gu quan,da gu quan xiang,xiao bu tou,小埠头,打鼓泉,打鼓泉乡 29.46072 110.09751 P PPLA4 CN 11 0 354 Asia/Shanghai 2012-01-20
-7059424 Kongkeshu Kongkeshu Kongkeshu,Kongkeshu Xiang,kong ke shu,kong ke shu xiang,空壳数,空壳树乡 29.43995 110.34432 P PPLA4 CN 11 0 383 Asia/Shanghai 2012-01-20
-7059452 Zouma Zouma Zouma,Zouma Zhen,zou ma,zou ma zhen,走马,走马镇 29.82993 110.42836 P PPLA4 CN 12 0 958 Asia/Shanghai 2011-08-09
-7059463 Baiguo Baiguo Baiguo,Baiguo Zhen,bai guo,bai guo zhen,白果,白果镇 29.8841 110.45615 P PPLA4 CN 12 0 1101 Asia/Shanghai 2012-01-20
-7059538 Fengxianggang Fengxianggang Fengxianggang,Fengxianggang Xiang,feng xiang gang,feng xiang gang xiang,枫香岗,枫香岗乡 29.11007 110.39388 P PPLA4 CN 11 0 186 Asia/Shanghai 2012-01-20
-7059590 Xiangjiazhai Xiangjiazhai Sanjiatian,Sanjiatian Xiang,Xiangjiazhai,san jia tian,san jia tian xiang,xiang jia zhai,三家田,三家田乡,向家寨 29.20685 110.00508 P PPLA4 CN 11 0 421 Asia/Shanghai 2012-01-20
-7059688 Shadi Shadi Shadi,Shadi Xiang,sha di,sha di xiang,沙堤,沙堤乡 29.18998 110.46292 P PPLA4 CN 11 0 285 Asia/Shanghai 2012-01-20
-7059698 Yinjiaxi Yinjiaxi Yinjiaxi,Yinjiaxi Zhen,yin jia xi,yin jia xi zhen,尹家溪,尹家溪镇 29.13717 110.40925 P PPLA4 CN 11 0 172 Asia/Shanghai 2012-01-20
-7059716 Qingping Qingping Qingping,Qingping Zhen,qing ping,qing ping zhen,青坪,青坪镇 29.02824 110.22808 P PPLA4 CN 11 0 463 Asia/Shanghai 2012-01-20
-7060470 Xiheshan Xiheshan Xiheshan,Xiheshan Jiedao,xi he shan,xi he shan jie dao,西褐山,西褐山街道 31.44302 118.34893 P PPLA4 CN 01 0 17 Asia/Shanghai 2012-01-20
-7060472 Jinghu Jinghu Jinghu,Jinghu Qu,jing hu,jing hu qu,镜湖,镜湖区 31.34758 118.36829 P PPLA3 CN 01 0 14 Asia/Shanghai 2012-01-20
-7060474 Yijiang Yijiang Yijiang,Yijiang Qu,yi jiang,yi jiang qu,弋江,弋江区 31.31546 118.36053 P PPLA3 CN 01 0 10 Asia/Shanghai 2012-01-20
-7060987 Louziqiu Louziqiu lou zi qiu,楼子丘 29.54324 110.3662 P PPLA4 CN 11 0 439 Asia/Shanghai 2009-11-28
-7060990 Wuli Wuli Wuli Xiang,wu li,wu li xiang,五里,五里乡 29.89646 110.34498 P PPLA4 CN 12 0 1157 Asia/Shanghai 2009-11-28
-7061167 Cangtou Cangtou Cangtou,cang tou,仓头 33.87598 112.79156 P PPLA4 CN 09 0 212 Asia/Shanghai 2012-01-20
-7061713 Zhanbei Zhanbei Zhanbei,zhan bei,湛北 33.77793 113.44407 P PPLA4 CN 09 0 94 Asia/Shanghai 2012-01-20
-7061735 Ziyun Ziyun Ziyun,Ziyun Zhen,zi yun,zi yun zhen,紫云,紫云镇 33.81974 113.42946 P PPLA4 CN 09 0 101 Asia/Shanghai 2012-01-20
-7061781 Fenchen Fenchen Fenchen,fen chen,汾陈 33.97071 113.53076 P PPLA4 CN 09 0 103 Asia/Shanghai 2012-01-20
-7061864 Lianhua Lianhua Lianhua,Lianhua Zhen,lian hua,lian hua zhen,莲花,莲花镇 33.59768 113.81966 P PPLA4 CN 09 0 70 Asia/Shanghai 2012-01-20
-7062006 Tianzhuang Tianzhuang Tianzhuang,tian zhuang,田庄 33.56747 113.35372 P PPLA4 CN 09 0 92 Asia/Shanghai 2012-01-20
-7063415 Sipo Sipo Sipo,si po,寺坡 33.28097 113.51718 P PPLA4 CN 09 0 114 Asia/Shanghai 2012-01-20
-7063426 Yuanling Yuanling Yuanling,yuan ling,院岭 33.28234 113.4596 P PPLA4 CN 09 0 155 Asia/Shanghai 2012-01-20
-7063439 Zhulan Zhulan Zhulan,zhu lan,朱兰 33.31912 113.52946 P PPLA4 CN 09 0 103 Asia/Shanghai 2012-01-20
-7063446 Kuangshan Kuangshan Kuangshan,kuang shan,矿山 33.37874 113.49573 P PPLA4 CN 09 0 96 Asia/Shanghai 2012-01-20
-7063452 Zaolin Zaolin Zaolin,zao lin,枣林 33.36575 113.5844 P PPLA4 CN 09 0 87 Asia/Shanghai 2012-01-20
-7063875 Zhuyu Zhuyu Zhuyu,zhu yu,竹峪 34.13561 108.03902 P PPLA4 CN 26 0 548 Asia/Chongqing 2012-01-20
-7063902 Diantou Diantou Diantou,Diantou Zhen,dian tou,dian tou zhen,店头,店头镇 34.54026 108.01 P PPLA4 CN 26 0 782 Asia/Chongqing 2012-01-20
-7063937 Xujia Xujia Xujia,Xujia Jieban,xu jia,xu jia jie ban,徐家,徐家街办 34.34 108.9625 P PPLA4 CN 26 0 393 Asia/Chongqing 2012-01-20
-7063941 Xinjiamiao Xinjiamiao Xinjiamiao,Xinjiamiao Jieban,xin jia miao,xin jia miao jie ban,辛家庙,辛家庙街办 34.3055 108.98832 P PPLA4 CN 26 0 405 Asia/Chongqing 2012-01-20
-7063942 Xicheng Xicheng Xicheng,Xicheng Jieban,xi cheng,xi cheng jie ban,西城,西城街办 34.30805 108.44168 P PPLA4 CN 26 0 426 Asia/Chongqing 2012-01-20
-7063956 Gudu Gudu Gudu,Gudu Jieban,gu du,gu du jie ban,古渡,古渡街办 34.3456 108.69313 P PPLA4 CN 26 0 396 Asia/Chongqing 2012-01-20
-7063957 Weiyang Weiyang Weiyang,Weiyang Jieban,wei yang,wei yang jie ban,渭阳,渭阳街办 34.35487 108.73949 P PPLA4 CN 26 0 385 Asia/Chongqing 2012-01-20
-7063958 Weicheng Weicheng Weicheng,Weicheng Qu,wei cheng,wei cheng qu,渭城,渭城区 34.3314 108.71691 P PPLA3 CN 26 0 383 Asia/Chongqing 2012-01-20
-7063959 Qindu Qindu Qindu,Qindu Qu,qin dou,qin dou qu,秦都,秦都区 34.34186 108.70824 P PPLA3 CN 26 0 389 Asia/Chongqing 2012-01-20
-7063961 Weiyang Weiyang Weiyang,Weiyang Qu,wei yang,wei yang qu,未央,未央区 34.2906 108.93554 P PPLA3 CN 26 0 409 Asia/Chongqing 2012-01-20
-7063962 Xincheng Xincheng Xincheng,Xincheng Qu,xin cheng,xin cheng qu,新城,新城区 34.26321 108.94954 P PPLA3 CN 26 0 412 Asia/Chongqing 2012-01-20
-7063963 Beilin Beilin Beilin,Beilin Qu,bei lin,bei lin qu,碑林,碑林区 34.22846 108.91566 P PPLA3 CN 26 0 414 Asia/Chongqing 2012-01-20
-7063964 Wangsi Wangsi Wangsi,Wangsi Jieban,wang si,wang si jie ban,王寺,王寺街办 34.25065 108.79381 P PPLA4 CN 26 0 391 Asia/Chongqing 2012-01-20
-7064006 Tongchuan Tongchuan Tongchuan,Tongchuan Shi,tong chuan,tong chuan shi,铜川,铜川市 34.8988 108.95056 P PPLA2 CN 26 0 711 Asia/Chongqing 2012-01-20
-7064007 Zhangjiabao Zhangjiabao Zhangjiabao,Zhangjiabao Jieban,zhang jia bao,zhang jia bao jie ban,张家堡,张家堡街办 34.32913 108.93703 P PPLA4 CN 26 0 388 Asia/Chongqing 2012-01-20
-7064008 Dianzicheng Dianzicheng Dianzicheng,Dianzicheng Jieban,dian zi cheng,dian zi cheng jie ban,电子城,电子城街办 34.19172 108.90413 P PPLA4 CN 26 0 417 Asia/Chongqing 2012-01-20
-7064009 Changyanbao Changyanbao Changyanbao,Changyanbao Jieban,zhang yan bao,zhang yan bao jie ban,长延堡,长延堡街办 34.19352 108.94989 P PPLA4 CN 26 0 437 Asia/Chongqing 2012-01-20
-7064011 Lianhu Lianhu Lianhu,Lianhu Qu,lian hu,lian hu qu,连湖,连湖区 34.25848 108.9242 P PPLA3 CN 26 0 413 Asia/Chongqing 2012-01-20
-7064487 Longmenfan Longmenfan Longmenfan,Longmenfan Xiang,long men fan,long men fan xiang,龙门畈,龙门畈乡 28.50046 117.65113 P PPLA4 CN 03 0 109 Asia/Shanghai 2012-01-20
-7064497 Qingban Qingban Qingban,Qingban Xiang,qing ban,qing ban xiang,青板,青板乡 28.50954 117.57202 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-20
-7064530 Qinghu Qinghu Qinghu,Qinghu Xiang,qing hu,qing hu xiang,清湖,清湖乡 28.34532 117.35163 P PPLA4 CN 03 0 41 Asia/Shanghai 2012-01-20
-7064531 Nanyan Nanyan Nanyan,Nanyan Zhen,nan yan,nan yan zhen,南岩,南岩镇 28.39939 117.44778 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-20
-7064541 Guifeng Guifeng Guifeng,Guifeng Zhen,gui feng,gui feng zhen,圭峰,圭峰镇 28.3257 117.37409 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-20
-7064559 Zhukeng Zhukeng Zhukeng,Zhukeng Zhen,zhu keng,zhu keng zhen,朱坑,朱坑镇 28.39263 117.51275 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-20
-7064569 Lianhe Lianhe Lianhe,Lianhe Xiang,lian he,lian he xiang,莲荷,莲荷乡 28.38915 117.63107 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-20
-7064576 Sipu Sipu Sipu,Sipu Xiang,si pu,si pu xiang,司铺,司铺乡 28.43663 117.70868 P PPLA4 CN 03 0 145 Asia/Shanghai 2011-05-09
-7064593 Bangluo Bangluo Bangluo,Bangluo Xiang,bang luo,bang luo xiang,傍罗,傍罗乡 28.30575 117.79378 P PPLA4 CN 03 0 70 Asia/Shanghai 2012-01-20
-7064594 Qingxi Qingxi Qingxi,Qingxi Zhen,qing xi,qing xi zhen,青溪,青溪镇 28.30447 117.86391 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-20
-7064608 Yongping Yongping Yongping,Yongping Zhen,yong ping,yong ping zhen,永平,永平镇 28.21554 117.7777 P PPLA4 CN 03 0 88 Asia/Shanghai 2011-05-09
-7064650 Dieshan Dieshan Dieshan,Dieshan Zhen,die shan,die shan zhen,叠山,叠山镇 28.21421 117.50866 P PPLA4 CN 03 0 62 Asia/Shanghai 2012-01-20
-7064674 Liukou Liukou Liukou,Liukou Zhen,liu kou,liu kou zhen,流口,流口镇 28.2815 117.25702 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-20
-7064678 Jianzhu Jianzhu Jianzhu,Jianzhu Xiang,jian zhu,jian zhu xiang,箭竹,箭竹乡 28.26413 117.32579 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-20
-7064737 Yanglin Yanglin Yanglin,Yanglin Xiang,yang lin,yang lin xiang,杨林,杨林乡 28.14117 117.69188 P PPLA4 CN 03 0 105 Asia/Shanghai 2012-01-20
-7064744 Hufang Hufang Hufang,Hufang Zhen,hu fang,hu fang zhen,湖坊,湖坊镇 28.16125 117.55357 P PPLA4 CN 03 0 83 Asia/Shanghai 2011-05-09
-7064757 Chenfang Chenfang Chenfang,Chenfang Xiang,chen fang,chen fang xiang,陈坊,陈坊乡 28.05277 117.54392 P PPLA4 CN 03 0 148 Asia/Shanghai 2011-05-09
-7064787 Zixi Zixi Zixi,Zixi Xiang,zi xi,zi xi xiang,紫溪,紫溪乡 28.06949 117.784 P PPLA4 CN 03 0 211 Asia/Shanghai 2011-05-09
-7064796 Sanxianling Sanxianling Sanxianling,Sanxianling Xiang,san xian ling,san xian ling xiang,三县岭,三县岭乡 28.67049 117.32692 P PPLA4 CN 03 0 106 Asia/Shanghai 2012-01-20
-7064797 Zhongfan Zhongfan Zhongfan,Zhongfan Xiang,zhong fan,zhong fan xiang,中畈,中畈乡 28.54038 117.3782 P PPLA4 CN 03 0 65 Asia/Shanghai 2011-05-09
-7064799 Xinhuang Xinhuang Xinhuang,Xinhuang Xiang,xin huang,xin huang xiang,新篁,新篁乡 28.71354 117.60138 P PPLA4 CN 03 0 103 Asia/Shanghai 2012-01-20
-7064801 Wanli Wanli Wanli,Wanli Xiang,wan li,wan li xiang,湾里,湾里乡 28.45364 117.37314 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-20
-7064802 Gexi Gexi Gexi,Gexi Xiang,ge xi,ge xi xiang,葛溪,葛溪乡 28.46424 117.45877 P PPLA4 CN 03 0 61 Asia/Shanghai 2012-01-20
-7064803 Xintan Xintan Xintan,Xintan Xiang,xin tan,xin tan xiang,新滩,新滩乡 28.33318 117.67941 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-20
-7064804 Xuguang Xuguang Xuguang,Xuguang Xiang,xu guang,xu guang xiang,旭光,旭光乡 28.26829 117.42458 P PPLA4 CN 03 0 137 Asia/Shanghai 2012-01-20
-7064805 Jiaxuan Jiaxuan Jiaxuan,Jiaxuan Xiang,jia xuan,jia xuan xiang,稼轩,稼轩乡 28.18836 117.82472 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-20
-7064836 Huatanshan Huatanshan Huatanshan,Huatanshan Zhen,hua tan shan,hua tan shan zhen,华坛山,华坛山镇 28.7109 117.81508 P PPLA4 CN 03 0 158 Asia/Shanghai 2012-01-20
-7064864 Shiren Shiren Shiren,Shiren Xiang,shi ren,shi ren xiang,石人,石人乡 28.65595 117.89781 P PPLA4 CN 03 0 137 Asia/Shanghai 2012-01-20
-7064915 Wangcun Wangcun Wangcun,Wangcun Xiang,wang cun,wang cun xiang,汪村,汪村乡 28.59696 117.96497 P PPLA4 CN 03 0 108 Asia/Shanghai 2012-01-20
-7064916 Qingshui Qingshui Qingshui,Qingshui Xiang,qing shui,qing shui xiang,清水,清水乡 28.54646 117.88539 P PPLA4 CN 03 0 122 Asia/Shanghai 2012-01-20
-7064920 Huanggu Huanggu Huanggu,Huanggu Zhen,huang gu,huang gu zhen,煌固,煌固镇 28.58083 117.98095 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-20
-7064958 Chaoyang Chaoyang Chaoyang,Chaoyang Xiang,chao yang,chao yang xiang,朝阳,朝阳乡 28.44392 118.06959 P PPLA4 CN 03 0 99 Asia/Shanghai 2012-01-20
-7064959 Lingxi Lingxi Lingxi,Lingxi Zhen,ling xi,ling xi zhen,灵溪,灵溪镇 28.49899 118.02575 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-20
-7064965 Shishi Shishi Shishi,Shishi Xiang,shi shi,shi shi xiang,石狮,石狮乡 28.5018 117.97348 P PPLA4 CN 03 0 113 Asia/Shanghai 2012-01-20
-7065042 Chating Chating Chating,Chating Zhen,cha ting,cha ting zhen,茶亭,茶亭镇 28.35668 117.88798 P PPLA4 CN 03 0 86 Asia/Shanghai 2012-01-20
-7065063 Huangshaling Huangshaling Huangshaling,Huangshaling Xiang,huang sha ling,huang sha ling xiang,黄沙岭,黄沙岭乡 28.24358 117.95281 P PPLA4 CN 03 0 147 Asia/Shanghai 2012-01-20
-7065111 Sishiba Sishiba Sishiba,Sishiba Zhen,si shi ba,si shi ba zhen,四十八,四十八镇 28.22991 118.02762 P PPLA4 CN 03 0 172 Asia/Shanghai 2012-01-20
-7065290 Sanqing Sanqing Sanqing,Sanqing Xiang,san qing,san qing xiang,三清,三清乡 28.9258 118.09315 P PPLA4 CN 03 0 378 Asia/Shanghai 2012-01-20
-7065291 Zihu Zihu Zihu,Zihu Zhen,zi hu,zi hu zhen,紫湖,紫湖镇 28.90562 118.15458 P PPLA4 CN 03 0 218 Asia/Shanghai 2012-01-20
-7065390 Nanshan Nanshan Nanshan,Nanshan Xiang,nan shan,nan shan xiang,南山,南山乡 28.80344 118.08541 P PPLA4 CN 03 0 262 Asia/Shanghai 2012-01-20
-7065462 Danan Danan Danan,Danan Zhen,da nan,da nan zhen,大南,大南镇 28.54852 118.24404 P PPLA4 CN 03 0 113 Asia/Shanghai 2012-01-20
-7065530 Huacun Huacun Huacun,Huacun Xiang,hua cun,hua cun xiang,华村,华村乡 28.58775 118.29451 P PPLA4 CN 03 0 119 Asia/Shanghai 2012-01-20
-7065541 Gaozhou Gaozhou Gaozhou,Gaozhou Xiang,gao zhou,gao zhou xiang,高洲,高洲乡 28.1285 118.07402 P PPLA4 CN 03 0 295 Asia/Shanghai 2012-01-20
-7065542 Wufushan Wufushan Wufushan,Wufushan Zhen,wu fu shan,wu fu shan zhen,五府山,五府山镇 28.1433 118.04743 P PPLA4 CN 03 0 264 Asia/Shanghai 2012-01-20
-7065574 Baitian Baitian Baitian,Baitian Xiang,bai tian,bai tian xiang,白田,白田乡 28.5096 117.25632 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-20
-7065614 Zhiguang Zhiguang Zhiguang,Zhiguang Zhen,zhi guang,志光 28.361 117.07723 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-20
-7065643 Binjiang Binjiang Binjiang,Binjiang Xiang,bin jiang,bin jiang xiang,滨江,滨江乡 28.29526 117.18444 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-20
-7065656 Luohe Luohe Luohe,Luohe Zhen,luo he,luo he zhen,罗河,罗河镇 28.21017 117.17737 P PPLA4 CN 03 0 41 Asia/Shanghai 2012-01-20
-7065668 Jintun Jintun Jintun,Jintun Zhen,jin tun,jin tun zhen,金屯,金屯镇 28.12571 117.22778 P PPLA4 CN 03 0 95 Asia/Shanghai 2012-01-20
-7065721 Tangwan Tangwan Tangwan,Tangwan Zhen,tang wan,tang wan zhen,塘湾,塘湾镇 28.07686 117.22563 P PPLA4 CN 03 0 75 Asia/Shanghai 2011-05-09
-7065744 Yujia Yujia Yujia,Yujia Xiang,yu jia,yu jia xiang,余家,余家乡 28.17538 117.02412 P PPLA4 CN 03 0 43 Asia/Shanghai 2011-05-09
-7065785 Huaqiao Huaqiao Huaqiao,Huaqiao Zhen,hua qiao,hua qiao zhen,画桥,画桥镇 28.51614 117.04288 P PPLA4 CN 03 0 67 Asia/Shanghai 2011-05-09
-7065798 Dayuan Dayuan Dayuan,Dayuan Zhen,da yuan,da yuan zhen,大源,大源镇 28.73825 117.17741 P PPLA4 CN 03 0 66 Asia/Shanghai 2012-01-20
-7065989 Longtoushan Longtoushan Longtoushan,Longtoushan Xiang,long tou shan,long tou shan xiang,龙头山,龙头山乡 28.94793 117.83964 P PPLA4 CN 03 0 114 Asia/Shanghai 2012-01-20
-7066113 Zhenqiao Zhenqiao Zhenqiao,Zhenqiao Zhen,zhen qiao,zhen qiao zhen,镇桥,镇桥镇 28.89809 117.03548 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-20
-7066209 Wuyishan Wuyishan Wuyishan,Wuyishan Zhen,wu yi shan,wu yi shan zhen,武夷山,武夷山镇 28.00473 117.81138 P PPLA4 CN 03 0 252 Asia/Shanghai 2012-01-20
-7066210 Huanggangshan Huanggangshan Huanggangshan,Huanggangshan Zhen,huang gang shan,huang gang shan zhen,黄岗山,黄岗山镇 28.01063 117.74145 P PPLA4 CN 03 0 373 Asia/Shanghai 2012-01-20
-7066216 Tongfan Tongfan Tongfan,Tongfan Zhen,tong fan,tong fan zhen,桐畈,桐畈镇 28.30817 118.31042 P PPLA4 CN 03 0 147 Asia/Shanghai 2012-01-20
-7066221 Xiatang Xiatang Xiatang,Xiatang Xiang,xia tang,xia tang xiang,下塘,下塘乡 28.61531 118.09915 P PPLA4 CN 03 0 86 Asia/Shanghai 2012-01-20
-7066223 Bimu Bimu Bimu,Bimu Zhen,bi mu,bi mu zhen,妼姆,妼姆镇 28.67662 118.09896 P PPLA4 CN 03 0 103 Asia/Shanghai 2012-01-20
-7066231 Songfeng Songfeng Songfeng,Songfeng Xiang,song feng,song feng xiang,嵩峰,嵩峰乡 28.35991 118.39384 P PPLA4 CN 03 0 164 Asia/Shanghai 2012-01-20
-7066232 Quanbo Quanbo Quanbo,Quanbo Zhen,quan bo zhen,quan po,泉波镇,泉破 28.38077 118.33421 P PPLA4 CN 03 0 133 Asia/Shanghai 2012-01-20
-7066245 Xiaxi Xiaxi Xiaxi,Xiaxi Zhen,xia xi,xia xi zhen,下溪,下溪镇 28.45979 118.18669 P PPLA4 CN 03 0 103 Asia/Shanghai 2012-01-20
-7066247 Guancun Guancun Guancun,Guancun Xiang,guan cun,guan cun xiang,管村,管村乡 28.47586 118.42449 P PPLA4 CN 03 0 215 Asia/Shanghai 2012-01-20
-7066458 Lingyang Lingyang Lingyang,Lingyang Zhen,ling yang,ling yang zhen,岺阳,岺阳镇 28.42341 117.60854 P PPLA4 CN 03 0 88 Asia/Shanghai 2012-01-20
-7066459 Hekou Hekou Hekou,Hekou Zhen,he kou,he kou zhen,河口,河口镇 28.31958 117.71437 P PPLA4 CN 03 0 50 Asia/Shanghai 2011-05-09
-7066460 Yiyang Yiyang Yiyang,Yiyang Zhen,yi yang,yi yang zhen,弋阳,弋阳镇 28.40521 117.43216 P PPLA4 CN 03 0 65 Asia/Shanghai 2012-01-20
-7066461 Chenying Chenying Chenying,Chenying Zhen,chen ying,chen ying zhen,陈营,陈营镇 28.69441 117.06712 P PPLA4 CN 03 0 55 Asia/Shanghai 2011-05-09
-7066462 Zhushan Zhushan Zhushan,Zhushan Xiang,zhu shan,zhu shan xiang,珠山,珠山乡 28.70573 117.0659 P PPLA4 CN 03 0 50 Asia/Shanghai 2012-01-20
-7067051 Zhiyang Zhiyang Zhiyang,Zhiyang Zhen,zhi yang zhen,滍阳镇 33.78684 113.13502 P PPLA4 CN 09 0 112 Asia/Shanghai 2012-01-20
-7067066 Nanguzhuang Nanguzhuang Nanguzhuang,Nanguzhuang Jiedao,nan gu zhuang,nan gu zhuang jie dao,南顾庄,南顾庄街道 33.90019 112.87657 P PPLA4 CN 09 0 234 Asia/Shanghai 2012-01-20
-7067102 Geyang Geyang Geyang,Geyang Zhen,ge yang,ge yang zhen,各羊,各羊镇 24.93125 102.80326 P PPLA4 CN 29 0 1909 Asia/Chongqing 2012-01-20
-7067109 Jiujie Jiujie Jiujie,Jiujie Zhen,jiu jie,jiu jie zhen,九街,九街镇 24.10908 102.68428 P PPLA4 CN 29 0 1806 Asia/Chongqing 2012-01-20
-7067319 Xuzhen Xuzhen Xuzhen,Xuzhen Zhen,xu zhen,xu zhen zhen,许镇,许镇镇 31.06394 118.40681 P PPLA4 CN 01 0 11 Asia/Shanghai 2012-01-20
-7067329 Hongyang Hongyang Hongyang,Hongyang Zhen,hong yang,hong yang zhen,红杨,红杨镇 31.0706 118.53884 P PPLA4 CN 01 0 3 Asia/Shanghai 2012-01-20
-7067440 Liqiao Liqiao Liqiao,Liqiao Zhen,li qiao,li qiao zhen,狸桥,狸桥镇 31.22112 118.92023 P PPLA4 CN 01 0 12 Asia/Shanghai 2012-01-20
-7067456 Liulang Liulang Liulang,Liulang Zhen,liu lang,liu lang zhen,六郎,六郎镇 31.24093 118.53729 P PPLA4 CN 01 0 4 Asia/Shanghai 2012-01-20
-7067527 Baiqiao Baiqiao Baiqiao,Baiqiao Zhen,bai qiao,bai qiao zhen,白桥,白桥镇 31.5367 118.30793 P PPLA4 CN 01 0 8 Asia/Shanghai 2012-01-20
-7067534 Laoqiao Laoqiao Laoqiao,Laoqiaozhen,lao qiao,lao qiao zhen,姥桥,姥桥镇 31.60906 118.3037 P PPLA4 CN 01 0 14 Asia/Shanghai 2012-01-20
-7069018 Zhishan Zhishan Zhishan,Zhishan Jiedao,zhi shan,zhi shan jie dao,芝山,芝山街道 27.04373 118.32523 P PPLA4 CN 07 0 118 Asia/Shanghai 2012-01-20
-7069199 Wuhu Wuhu Wuhu,Wuhu Xian,wu hu,wu hu xian,芜湖,芜湖县 31.1463 118.56465 P PPLA3 CN 01 0 25 Asia/Shanghai 2012-01-20
-7069322 Dongzhou Dongzhou Dongzhou,dong zhou,董周 33.78441 112.80705 P PPLA4 CN 09 0 166 Asia/Shanghai 2012-01-20
-7069422 Huayuan Huayuan Huayuan,hua yuan,花园 32.72239 113.31964 P PPLA4 CN 09 0 148 Asia/Shanghai 2012-01-20
-7069457 Tongshan Tongshan Tongshan,tong shan,铜山 32.7726 113.55694 P PPLA4 CN 09 0 192 Asia/Shanghai 2012-01-20
-7069527 Taishanmiao Taishanmiao Taishanmiao,tai shan miao,泰山庙 32.86924 113.20834 P PPLA4 CN 09 0 144 Asia/Shanghai 2012-01-20
-7069734 Cuizhuang Cuizhuang Cuizhuang,cui zhuang,崔庄 33.53058 112.39345 P PPLA4 CN 09 0 225 Asia/Shanghai 2012-01-20
-7069735 Chengjiao Chengjiao Chengjiao,cheng jiao,城郊 33.48756 112.44042 P PPLA4 CN 09 0 195 Asia/Shanghai 2012-01-20
-7069745 Huanghou Huanghou Huanghou,huang hou,皇后 33.48004 112.75698 P PPLA4 CN 09 0 235 Asia/Shanghai 2012-01-20
-7069747 Yangji Yangji Yangji,yang ji,杨集 33.32721 112.99257 P PPLA4 CN 09 0 183 Asia/Shanghai 2012-01-20
-7069748 Qinghe Qinghe Qinghe,qing he,清河 33.25068 112.90531 P PPLA4 CN 09 0 162 Asia/Shanghai 2012-01-20
-7070437 Wuxiang Wuxiang Wuxiang,Wuxiang Zhen,wu xiang,wu xiang zhen,五乡,五乡镇 29.84603 121.68735 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-20
-7070567 Liu’ao Liu'ao Liu'ao,Liu'ao Zhen,Liu’ao,Liu’ao Zhen,liu ao,liu ao zhen,六敖,六敖镇 29.0852 121.59013 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-20
-7070575 Minggang Minggang Minggang,Minggang Zhen,ming gang,ming gang zhen,明港,明港镇 29.19132 121.63775 P PPLA4 CN 02 0 131 Asia/Shanghai 2012-01-20
-7070622 Duantang Duantang Duantang,Duantang Jiedao,duan tang,duan tang jie dao,段塘,段塘街道 29.85063 121.52454 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-20
-7070623 Dongqianhu Dongqianhu Dongqianhu,Dongqianhu Zhen,dong qian hu,dong qian hu zhen,东钱湖,东钱湖镇 29.79147 121.63216 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-20
-7070639 Tangtou Tangtou Tangtou,Tangxi,Tangxi Zhen,tang tou,tang xi,tang xi zhen,塘头,塘溪,塘溪镇 29.66989 121.71344 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-20
-7070644 Yongjiang Yongjiang Yongjiang,Yongjiang Zhen,yong jiang,yong jiang zhen,甬江,甬江镇 29.90387 121.57865 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-20
-7070648 Dongjiao Dongjiao Dongjiao,Dongjiao Jiedao,dong jiao,dong jiao jie dao,东郊,东郊街道 29.8752 121.58662 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-20
-7070921 Daying Daying Daying,Daying Zhen,da ying,da ying zhen,大营,大营镇 33.9339 112.89382 P PPLA4 CN 09 0 1665 219 Asia/Shanghai 2012-01-20
-7070927 Qianying Qianying Qianying,qian ying,前营 33.97965 112.90926 P PPLA4 CN 09 0 1665 203 Asia/Shanghai 2012-01-20
-7071012 Jingang Jingang Jingang,jin gang,靳岗 33.01484 112.49594 P PPLA4 CN 09 0 150 Asia/Shanghai 2012-01-20
-7071013 Chengjiao Chengjiao Chengjiao,cheng jiao,城郊 33.04178 112.25472 P PPLA4 CN 09 0 191 Asia/Shanghai 2012-01-20
-7071227 Choujiang Choujiang Choujiang,Choujiang Zhen,chou jiang,chou jiang zhen,稠江,稠江镇 29.28339 120.02756 P PPLA4 CN 02 0 80 Asia/Shanghai 2012-01-20
-7071293 Dachen Dachen Dachen,Dachen Zhen,da chen,da chen zhen,大陈,大陈镇 29.4521 120.12527 P PPLA4 CN 02 0 68 Asia/Shanghai 2012-01-20
-7071355 Longshan Longshan Longshan,Longshan Zhen,long shan,long shan zhen,龙山,龙山镇 29.0232 120.18204 P PPLA4 CN 02 0 129 Asia/Shanghai 2012-01-20
-7071409 Chenzhai Chenzhai Chenzhai,Chenzhai Zhen,chen zhai,chen zhai zhen,陈宅,陈宅镇 29.49763 120.33658 P PPLA4 CN 02 0 64 Asia/Shanghai 2012-01-20
-7071551 Nanshi Nanshi Nanshi,Nanshi Jiedao,nan shi,nan shi jie dao,南市,南市街道 29.14875 120.22974 P PPLA4 CN 02 0 121 Asia/Shanghai 2012-01-20
-7071576 Wuning Wuning Wuning,Wuning Jiedao,wu ning,wu ning jie dao,吴宁,吴宁街道 29.25887 120.23108 P PPLA4 CN 02 0 104 Asia/Shanghai 2012-01-20
-7071582 Jiangbei Jiangbei Jiangbei,Jiangbei Jiedao,jiang bei,jiang bei jie dao,江北,江北街道 29.30028 120.23222 P PPLA4 CN 02 0 86 Asia/Shanghai 2012-01-20
-7071603 Chengdong Chengdong Chengdong,Chengdong Jiedao,cheng dong,cheng dong jie dao,城东,城东街道 29.28646 120.32281 P PPLA4 CN 02 0 84 Asia/Shanghai 2012-01-20
-7071654 Haoba Haoba Haoba,Haoba Zhen,hao ba,hao ba zhen,蒿坝,蒿坝镇 29.9553 120.84775 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-20
-7071719 Zhutiantou Zhutiantou Jidong,Jidong Zhen,Zhutiantou,ji dong zhen,zhu tian tou,稽东镇,竹田头 29.77646 120.57833 P PPLA4 CN 02 0 129 Asia/Shanghai 2012-01-20
-7071797 Fushan Fushan Fushan,Fushan Jiedao,fu shan,fu shan jie dao,府山,府山街道 29.9982 120.55912 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-20
-7071799 Jianhu Jianhu Jianhu,Jianhu Zhen,jian hu,jian hu zhen,鉴湖,鉴湖镇 29.97986 120.57124 P PPLA4 CN 02 0 18 Asia/Shanghai 2012-01-20
-7071800 Chengnan Chengnan Chengnan,Chengnan Jiedao,cheng nan,cheng nan jie dao,城南,城南街道 29.97237 120.56744 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-20
-7071804 Jishan Jishan Jishan,Jishan Jiedao,ji shan,ji shan jie dao,稽山,稽山街道 29.97026 120.60508 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-20
-7071824 Yongheshi Yongheshi Yonghe,Yonghe Zhen,Yongheshi,yong he shi,yong he zhen,永和市,永和镇 29.9727 121.04541 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-20
-7072188 Dongqiao Dongqiao Dongqiao,Dongqiao Zhen,dong qiao,dong qiao zhen,洞桥,洞桥镇 29.78074 121.40296 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-20
-7072236 Jinping Jinping Jinping,Jinping Jiedao,jin ping,jin ping jie dao,锦屏,锦屏街道 29.66295 121.40226 P PPLA4 CN 02 0 19 Asia/Shanghai 2012-01-20
-7072290 Chengguan Chengguan Chengguan Zhen,cheng guan,cheng guan zhen,城关,城关镇 29.28746 121.4315 P PPLA4 CN 02 0 37 Asia/Shanghai 2009-11-28
-7072317 Zhu’ao Zhu'ao Zhu'ao,Zhu'ao Zhen,Zhu’ao,Zhu’ao Zhen,zhu ao,zhu ao zhen,朱岙,朱岙镇 29.06972 121.2859 P PPLA4 CN 02 0 105 Asia/Shanghai 2012-01-20
-7072392 Meizhu Meizhu Meizhu,Meizhu Zhen,mei zhu,mei zhu zhen,梅渚,梅渚镇 29.47715 120.79779 P PPLA4 CN 02 0 46 Asia/Shanghai 2012-01-20
-7072678 Dacun Dacun Dacun,Hongtao,Hongtao Zhen,da cun,hong tao zhen,大村,洪涛镇 29.05574 121.19791 P PPLA4 CN 02 0 90 Asia/Shanghai 2012-01-20
-7072825 Pan’an Pan'an Pan'an,Pan’an,pan an,磐安 29.05368 120.43758 P PPLA3 CN 02 0 254 Asia/Shanghai 2012-01-20
-7073137 Muzhijie Muzhijie Muzhijie,mu zhi jie,木植街 33.96221 112.16524 P PPLA4 CN 09 0 582 Asia/Shanghai 2012-01-20
-7073339 Arzak Arzak Arzak,Arzak Xiang,Azhake Xiang,a zha ke,a zha ke xiang,阿扎克,阿扎克乡 39.67616 76.12017 P PPLA4 CN 13 0 1304 Asia/Kashgar 2012-01-20
-7073440 Tangzhuang Tangzhuang Tangzhuang,tang zhuang,唐庄 33.10342 112.94822 P PPLA4 CN 09 0 125 Asia/Shanghai 2012-01-20
-7073550 Chengjiao Chengjiao Chengjiao,cheng jiao,城郊 33.04935 112.92586 P PPLA4 CN 09 0 124 Asia/Shanghai 2012-01-20
-7076549 Liujia Liujia Liujia,Liujia Xiang,liu jia,liu jia xiang,柳家,柳家乡 41.50008 122.11328 P PPLA4 CN 19 0 10 Asia/Shanghai 2012-01-20
-7076550 Wujia Wujia Wujia,Wujia Xiang,wu jia,wu jia xiang,吴家,吴家乡 41.45874 121.99873 P PPLA4 CN 19 0 8 Asia/Shanghai 2012-01-20
-7076551 Baojia Baojia Baojia,Baojia Zhen,bao jia,鲍家 41.49981 121.71133 P PPLA4 CN 19 0 50 Asia/Shanghai 2012-01-20
-7076552 Beizhen Beizhen Beizhen,Beizhen Shi,bei zhen,bei zhen shi,北镇,北镇市 41.59584 121.79664 P PPLA4 CN 19 0 64 Asia/Shanghai 2012-01-20
-7076747 Shanxi Shanxi Shanshenmiao Xiang,Shanxi,shan shen miao xiang,shan xi,山神庙乡,山西 40.93789 120.54292 P PPLA4 CN 19 0 125 Asia/Shanghai 2012-01-20
-7076762 Baimashi Baimashi Baimashi,Baimashi Xiang,bai ma shi,bai ma shi xiang,白马石,白马石乡 40.91567 120.35017 P PPLA4 CN 19 0 297 Asia/Shanghai 2012-01-20
-7076796 Heiiyugou Heiiyugou Heiiyugou,Yangjiao Xiang,hei yu gou,yang jiao xiang,杨郊乡,黑鱼沟 40.8043 120.55368 P PPLA4 CN 19 0 114 Asia/Shanghai 2012-01-21
-7076873 Jinjiao Jinjiao Jinjiao,Jinjiao Jiedao,jin jiao,jin jiao jie dao,锦郊,锦郊街道 40.74478 120.84652 P PPLA4 CN 19 0 20 Asia/Shanghai 2012-01-21
-7076878 Yuhuang Yuhuang Yuhuang,Yuhuang Jiedao,yu huang,yu huang jie dao,玉皇,玉皇街道 40.7317 120.88517 P PPLA4 CN 19 0 7 Asia/Shanghai 2012-01-21
-7076881 Longgang Longgang Longgang,Longgang Qu,long gang,long gang qu,龙港,龙港区 40.72146 120.92558 P PPLA3 CN 19 0 18 Asia/Shanghai 2012-01-21
-7076882 Cishan Cishan Cishan,Lianwan Jiedao,ci shan,lian wan jie dao,茨山,连湾街道 40.74445 120.90085 P PPLA4 CN 19 0 5 Asia/Shanghai 2012-01-21
-7076883 Dabaimashi Dabaimashi Beigang Jiedao,Dabaimashi,bei gang jie dao,da bai ma shi,北港街道,大白马石 40.76522 120.9043 P PPLA4 CN 19 0 6 Asia/Shanghai 2012-01-21
-7090205 Donglinxi Donglinxi Donglinxi,Donglinxi Zhen,dong lin xi,dong lin xi zhen,东临溪,东临溪镇 29.67594 118.29169 P PPLA4 CN 01 0 137 Asia/Shanghai 2012-01-21
-7090485 Fengjia Fengjia Fengjia,Fengjia Zhen,feng jia,feng jia zhen,封家,封家镇 29.01582 118.41465 P PPLA4 CN 02 0 117 Asia/Shanghai 2012-01-21
-7090494 Xikou Xikou Linshan,Xikou,lin shan,xi kou,林山,溪口 29.14624 118.49715 P PPLA4 CN 02 0 307 Asia/Shanghai 2012-01-21
-7090513 Xiayinkeng Xiayinkeng Xiayinkeng,Yinkeng,xia yin keng,yin keng,下音坑,音坑 29.19971 118.3965 P PPLA4 CN 02 0 153 Asia/Shanghai 2012-01-21
-7090540 Maotan Maotan Maotan,Suzhuang,Suzhuang Zhen,mao tan,su zhuang,su zhuang zhen,毛坦,苏庄,苏庄镇 29.17814 118.12235 P PPLA4 CN 02 0 192 Asia/Shanghai 2012-01-21
-7090594 Jiukeng Jiukeng Jiukeng,jiu keng,鸠坑 29.68016 118.74343 P PPLA4 CN 02 0 172 Asia/Shanghai 2012-01-21
-7090618 Shandi Shandi Diben,Shandi,di ben,shan di,山底,底本 29.24072 118.4377 P PPLA4 CN 02 0 248 Asia/Shanghai 2012-01-21
-7158935 东海岛 dong hai dao 21.02448 110.39613 P PPLA3 CN CN 30 200000 20 10 Asia/Urumqi 2010-02-02
-7283386 Changshu City Changshu City 31.64615 120.74221 P PPL CN 04 1047700 9 Asia/Shanghai 2010-03-23
-7290013 Shixing Shixing 24.94824 114.06572 P PPL CN 30 72996 106 Asia/Shanghai 2010-05-07
-7303248 Jiashan Jiashan 30.84918 120.92583 P PPLX CN 02 137112 7 Asia/Shanghai 2010-06-27
-7304020 Fenghuang Fenghuang Fenkhuan',Фенхуань 27.93557 109.59961 P PPL CN 11 370000 449 Asia/Shanghai 2010-07-26
-7304196 Dehang Dehang Dekhang,Деханг 28.3071 109.79668 P PPL CN 11 2567 245 Asia/Shanghai 2010-07-29
-7318938 Xiamazhuang Xiamazhuang Xiamazhuang,Yangkou Zhen,xia ma zhuang,yang kou zhen,下马庄,洋口镇 32.53164 120.94793 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-21
-7319365 Xujia Changzhuang Xujia Changzhuang Linghe,Linghe Zhen,Xujia Changzhuang,ling he,ling he zhen,xu jia zhang zhuang,凌河,凌河镇,徐家长庄 32.43201 121.07885 P PPLA4 CN 04 0 7 Asia/Shanghai 2012-02-02
-7322516 Dayu Dayu Dayu,Dayu Zhen,da yu,da yu zhen,大豫,大豫镇 32.30863 121.29474 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-21
-7322811 Sanmenzha Sanmenzha Dongzaogang,Dongzaogang Zhen,Sanmenzha,dong zao gang,dong zao gang zhen,san men zha,三门闸,东灶港,东灶港镇 32.08935 121.4841 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-21
-7322934 Shachang Shachang Shachang,sha chang,纱场 32.14167 121.09982 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-21
-7323670 Guanyinshan Guanyinshan Guanyinshan,Guanyinshan Zhen,guan yin shan,guan yin shan zhen,观音山,观音山镇 32.01235 120.92546 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-21
-7324738 Dongyuan Dongyuan Dongyuan,dong yuan,东元 31.97962 121.72804 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-21
-7326271 Luoda Luoda Luoda,luo da,洛大 33.98619 103.98081 P PPLA4 CN 15 0 1704 Asia/Chongqing 2012-01-21
-7326302 Nanhe Nanhe Nanhe,nan he,南河 34.09511 104.24716 P PPLA4 CN 15 0 1976 Asia/Chongqing 2012-01-21
-7326306 Hejiabao Hejiabao Hejiabao,he jia bao,何家堡 34.03659 104.31586 P PPLA4 CN 15 0 1928 Asia/Chongqing 2012-01-21
-7326307 Jiahe Jiahe Jiahe,gu he,贾河 34.09187 104.37974 P PPLA4 CN 15 0 2197 Asia/Chongqing 2012-01-21
-7326308 Jiangtai Jiangtai Jiangtai,jiang tai,将台 34.08932 104.407 P PPLA4 CN 15 0 2014 Asia/Chongqing 2012-01-21
-7326315 Guan’e Guan'e Guan'e,Guan'e Zangzuxiang,Guan’e,Guan’e Zangzuxiang,guan e,guan e cang zu xiang,官鹅,官鹅藏族乡 34.01117 104.39465 P PPLA4 CN 15 0 1816 Asia/Chongqing 2012-01-21
-7326316 Chela Chela Chela,che la,车拉 34.06897 104.46189 P PPLA4 CN 15 0 2150 Asia/Chongqing 2012-01-21
-7326317 Xinchengzi Xinchengzi Xinchengzi,Xinchengzi Zangzuxiang,xin cheng zi,xin cheng zi cang zu xiang,新城子,新城子藏族乡 34.01663 104.44226 P PPLA4 CN 15 0 1883 Asia/Chongqing 2012-01-21
-7326325 Xinghua Xinghua Xinghua,xing hua,兴化 34.08026 104.58402 P PPLA4 CN 15 0 2138 Asia/Chongqing 2012-01-21
-7326331 Ganjiangtou Ganjiangtou Ganjiangtou,gan jiang tou,甘江头 33.92723 104.52223 P PPLA4 CN 15 0 1674 Asia/Chongqing 2012-01-21
-7326335 Linjiang Linjiang Linjiang,lin jiang,临江 33.96105 104.50951 P PPLA4 CN 15 0 1776 Asia/Chongqing 2012-01-21
-7326338 Nanyang Nanyang Nanyang,Nanyang Zhen,nan yang,nan yang zhen,南阳,南阳镇 33.95705 104.64327 P PPLA4 CN 15 0 1803 Asia/Chongqing 2012-01-21
-7326342 Zhuyuan Zhuyuan Zhuyuan,zhu yuan,竹院 33.88546 104.70325 P PPLA4 CN 15 0 1651 Asia/Chongqing 2012-01-21
-7326345 Hanyuan Hanyuan Hanyuan,han yuan,韩院 33.95489 104.68871 P PPLA4 CN 15 0 1723 Asia/Chongqing 2012-01-21
-7326394 Haoli Haoli Haoli,hao li,蒿里 33.98362 104.81012 P PPLA4 CN 15 0 1944 Asia/Chongqing 2012-01-21
-7326405 Baiguan Baiguan Baiguan,bai guan,白关 33.96617 104.91444 P PPLA4 CN 15 0 2000 Asia/Chongqing 2012-01-21
-7326411 Zhongba Zhongba Zhongba,zhong ba,中坝 34.03511 105.03286 P PPLA4 CN 15 0 1622 Asia/Chongqing 2012-01-21
-7328867 Yangzizhou Yangzizhou Yangzizhou,yang zi zhou,扬子洲 28.72219 115.90594 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7328868 Taiping Taiping Taiping,tai ping,太平 28.80476 115.71368 P PPLA4 CN 03 0 235 Asia/Shanghai 2012-01-21
-7328877 Huyunxiang Huyunxiang Huyunxiang,hu yun xiang,湖云乡 28.79341 116.81044 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7328887 Wuleixiang Wuleixiang Wuleixiang,wu lei xiang,五雷乡 28.58191 116.84116 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-21
-7328891 Suqiaoxiang Suqiaoxiang Suqiaoxiang,su qiao xiang,苏桥乡 28.58595 116.92907 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-21
-7328895 Honghuxiang Honghuxiang Honghuxiang,hong hu xiang,洪湖乡 28.21969 116.91836 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-21
-7328910 Tangnanzhen Tangnanzhen Tangnanzhen,tang nan zhen,塘南镇 28.65828 116.13642 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-21
-7328913 Zhoushangxiang Zhoushangxiang Zhoushangxiang,zhou shang xiang,洲上乡 28.00489 115.40916 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-21
-7328917 Yanghuxiang Yanghuxiang Yanghuxiang,yang hu xiang,洋湖乡 28.0229 115.49325 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-21
-7328918 Dengjiaxiang Dengjiaxiang Dengjiaxiang,deng jia xiang,邓家乡 28.25204 116.56125 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-21
-7328919 Dongyangzhen Dongyangzhen Dongyangzhen,dong yang zhen,东阳镇 28.87058 115.63684 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-21
-7328929 Lutianxiang Lutianxiang Lutianxiang,lu tian xiang,芦田乡 28.94759 116.92547 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-21
-7328930 Nanxinxiang Nanxinxiang Nanxinxiang,nan xin xiang,南新乡 28.80069 116.0634 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-21
-7328932 Liduzhen Liduzhen Liduzhen,li du zhen,李渡镇 28.2236 116.15642 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-21
-7328933 Jiangxiangzhen Jiangxiangzhen Jiangxiangzhen,jiang xiang zhen,蒋巷镇 28.76064 116.01677 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7328935 Chuntaoxiang Chuntaoxiang Chuntaoxiang,chun tao xiang,春涛乡 28.34902 116.83146 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-21
-7328936 Xinminxiang Xinminxiang Xinminxiang,xin min xiang,新民乡 28.93325 115.55829 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-21
-7328941 Pingdingxiang Pingdingxiang Pingdingxiang,ping ding xiang,平定乡 28.29254 116.88085 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-21
-7328942 Xinjiezhen Xinjiezhen Xinjiezhen,xin jie zhen,新街镇 28.23265 115.40841 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-21
-7328943 Lafangzhen Lafangzhen Lafangzhen,lan fang zhen,蓝坊镇 28.39577 115.46711 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-21
-7328949 Maquanzhen Maquanzhen Maquanzhen,ma quan zhen,马荃镇 28.15831 116.86401 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-21
-7328953 Zhaoxian Zhaoxian Wanli Qu,Zhaoxian,Zhaoxian Zhen,wan li qu,zhao xian,zhao xian zhen,招贤,招贤镇,湾里区 28.70618 115.73617 P PPLA3 CN 03 0 42 Asia/Shanghai 2012-02-02
-7328956 Tongshanxiang Tongshanxiang Tongshanxiang,tong shan xiang,桐山乡 28.83985 116.79572 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-21
-7328962 Tongtianxiang Tongtianxiang Tongtianxiang,tong tian xiang,同田乡 28.33144 115.80976 P PPLA4 CN 03 0 41 Asia/Shanghai 2012-01-21
-7328964 Lefengzhen Lefengzhen Lefengzhen,le feng zhen,乐丰镇 28.86343 116.77889 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-21
-7329879 Leiba Leiba Leiba,lei ba,雷坝 33.79086 105.03795 P PPLA4 CN 15 0 1345 Asia/Chongqing 2012-01-21
-7329882 Wangba Wangba Wangba,wang ba,王坝 33.74288 105.01032 P PPLA4 CN 15 0 1469 Asia/Chongqing 2012-01-21
-7329883 Tanping Tanping Tanping,tan ping,滩坪 33.81122 104.97543 P PPLA4 CN 15 0 1671 Asia/Chongqing 2012-01-21
-7329905 Baihe Baihe Baihe,bai he,白河 33.86974 104.85221 P PPLA4 CN 15 0 1587 Asia/Chongqing 2012-01-21
-7330016 Sanyu Sanyu Sanyu,san yu,三峪 33.69928 105.02014 P PPLA4 CN 15 0 1615 Asia/Chongqing 2012-01-21
-7330023 Caoping Caoping Caoping,cao ping,草坪 33.67965 104.80823 P PPLA4 CN 15 0 2399 Asia/Chongqing 2012-01-21
-7330032 Quanshui Quanshui Quanshui,quan shui,铨水 33.85013 104.78714 P PPLA4 CN 15 0 1501 Asia/Chongqing 2012-01-21
-7330038 Shizi Shizi Shizi,shi zi,狮子 33.74401 104.68028 P PPLA4 CN 15 0 2124 Asia/Chongqing 2012-01-21
-7330568 Taiyu Taiyu Taiyu,tai yu,泰峪 33.78874 104.53162 P PPLA4 CN 15 0 1429 Asia/Chongqing 2012-01-21
-7330593 Quwa Quwa Quwa,qu wa,曲瓦 33.91885 103.99341 P PPLA4 CN 15 0 1892 Asia/Chongqing 2012-01-21
-7330598 Bazang Bazang Bazang,ba cang,巴藏 33.9014 104.03703 P PPLA4 CN 15 0 1684 Asia/Chongqing 2012-01-21
-7330599 Lijie Lijie Lijie,li jie,立节 33.90213 104.07156 P PPLA4 CN 15 0 1930 Asia/Chongqing 2012-01-21
-7330601 Dayu Dayu Dayu,da yu,大峪 33.83125 104.03957 P PPLA4 CN 15 0 2112 Asia/Chongqing 2012-01-21
-7330638 Hanban Hanban Hanban,han ban,憨班 33.8727 104.18424 P PPLA4 CN 15 0 1485 Asia/Chongqing 2012-01-21
-7330647 Pingding Pingding Pingding,ping ding,坪定 33.82545 104.31073 P PPLA4 CN 15 0 2153 Asia/Chongqing 2012-01-21
-7330659 Jiangpan Jiangpan Jiangpan,jiang pan,江盘 33.77872 104.3646 P PPLA4 CN 15 0 1549 Asia/Chongqing 2012-01-21
-7330661 Gongzishi Gongzishi Gongzishi,gong zi shi,弓子石 33.75836 104.43438 P PPLA4 CN 15 0 2097 Asia/Chongqing 2012-01-21
-7330662 Zhongpai Zhongpai Zhongpai,zhong pai,中牌 33.73546 104.50018 P PPLA4 CN 15 0 1904 Asia/Chongqing 2012-01-21
-7330663 Dachuan Dachuan Dachuan,da chuan,大川 33.7162 104.4362 P PPLA4 CN 15 0 1273 Asia/Chongqing 2012-01-21
-7330664 Nanyu Nanyu Nanyu,nan yu,南峪 33.71838 104.4133 P PPLA4 CN 15 0 1512 Asia/Chongqing 2012-01-21
-7330670 Sanjiaoping Sanjiaoping Sanjiaoping,san jiao ping,三角坪 33.64895 104.43184 P PPLA4 CN 15 0 1851 Asia/Chongqing 2012-01-21
-7330671 Chigan Chigan Chigan,chi gan,池干 33.63659 104.4482 P PPLA4 CN 15 0 1785 Asia/Chongqing 2012-01-21
-7330675 Wuping Wuping Wuping,wu ping,武坪 33.6286 104.33624 P PPLA4 CN 15 0 2188 Asia/Chongqing 2012-01-21
-7330698 Chagang Chagang Chagang,cha gang,插岗 33.58208 104.34424 P PPLA4 CN 15 0 1969 Asia/Chongqing 2012-01-21
-7330705 Baleng Baleng Baleng,ba leng,八楞 33.60717 104.5129 P PPLA4 CN 15 0 1610 Asia/Chongqing 2012-01-21
-7330767 Boyu Boyu Boyu,bo yu,博峪 33.43224 104.39157 P PPLA4 CN 15 0 2060 Asia/Chongqing 2012-01-21
-7330776 Danian Danian Danian,da nian,大年 33.42897 104.63038 P PPLA4 CN 15 0 1529 Asia/Chongqing 2012-01-21
-7330781 Tieba Tieba Tieba,tie ba,铁坝 33.36245 104.6173 P PPLA4 CN 15 0 1768 Asia/Chongqing 2012-01-21
-7330821 Maying Maying Maying,ma ying,马营 33.1361 104.41681 P PPLA4 CN 15 0 1288 Asia/Chongqing 2012-01-21
-7330969 Tunzhai Tunzhai Tunzhai,tun zhai,屯寨 33.16303 104.78139 P PPLA4 CN 15 0 1226 Asia/Chongqing 2012-01-21
-7330984 Sheshu Sheshu Sheshu,she shu,舍书 33.20049 104.93624 P PPLA4 CN 15 0 1866 Asia/Chongqing 2012-01-21
-7330988 Liping Liping Liping,li ping,梨坪 33.18559 104.8839 P PPLA4 CN 15 0 1443 Asia/Chongqing 2012-01-21
-7331378 Jianshan Jianshan Jianshan,jian shan,尖山 33.02803 104.85526 P PPLA4 CN 15 0 995 Asia/Chongqing 2012-01-21
-7331411 Baoziba Baoziba Baoziba,bao zi ba,堡子坝 33.08038 104.64117 P PPLA4 CN 15 0 1856 Asia/Chongqing 2012-01-21
-7331483 Shijiba Shijiba Shijiba,shi ji ba,石鸡坝 33.06694 104.45282 P PPLA4 CN 15 0 1428 Asia/Chongqing 2012-01-21
-7335145 Koutouba Koutouba Koutouba,kou tou ba,口头坝 32.93998 104.94224 P PPLA4 CN 15 0 860 Asia/Chongqing 2012-01-21
-7337617 Pingya Pingya Pingya,Pingya Zangzuxiang,ping ya,ping ya cang zu xiang,坪垭,坪垭藏族乡 33.50883 104.66915 P PPLA4 CN 15 0 1659 Asia/Chongqing 2012-01-21
-7338243 Puchi Puchi Puchi,pu chi,蒲池 33.53466 104.81418 P PPLA4 CN 15 0 1456 Asia/Chongqing 2012-01-21
-7338248 Hanlin Hanlin Hanlin,han lin,汉林 33.47541 104.90215 P PPLA4 CN 15 0 1388 Asia/Chongqing 2012-01-21
-7338250 Maying Maying Maying,ma ying,马营 33.59645 104.84617 P PPLA4 CN 15 0 2418 Asia/Chongqing 2012-01-21
-7338253 Jinchang Jinchang Jinchang,jin chang,金厂 33.61681 104.89633 P PPLA4 CN 15 0 2178 Asia/Chongqing 2012-01-21
-7340452 Longfeng Longfeng Longfeng,long feng,龙凤 33.39584 105.04572 P PPLA4 CN 15 0 1687 Asia/Chongqing 2012-01-21
-7340454 Jiegan Jiegan Jiegan,jie gan,秸柑 33.28934 105.09552 P PPLA4 CN 15 0 968 Asia/Chongqing 2012-01-21
-7340457 Hanwang Hanwang Hanwang,Hanwang Zhen,han wang,han wang zhen,汉王,汉王镇 33.34313 105.01046 P PPLA4 CN 15 0 983 Asia/Chongqing 2012-01-21
-7340460 Majie Majie Majie,ma jie,马街 33.45945 104.95775 P PPLA4 CN 15 0 1313 Asia/Chongqing 2012-01-21
-7341918 Moba Moba Moba,Moba Zangzuxiang,mo ba,mo ba cang zu xiang,磨坝,磨坝藏族乡 33.22876 105.01793 P PPLA4 CN 15 0 1826 Asia/Chongqing 2012-01-21
-7342963 Sangba Sangba Sangba,sang ba,桑坝 34.03907 103.79044 P PPLA4 CN 15 0 2150 Asia/Chongqing 2012-01-21
-7342980 Dianga Dianga Dianga,Diangacun,Diebu,Diebu Xian,dian ga,dian ga cun,die bu,die bu xian,电尕,电尕村,迭部,迭部县 34.06363 103.21358 P PPLA3 CN 15 0 2499 Asia/Chongqing 2012-01-21
-7343011 Yiwa Yiwa Yiwa,yi wa,益哇 34.13744 103.16894 P PPLA4 CN 15 0 2539 Asia/Chongqing 2012-01-21
-7343039 Qinxu Qinxu Qinxu,qin xu,秦许 34.36768 103.99441 P PPLA4 CN 15 0 2459 Asia/Chongqing 2012-01-21
-7343056 Minshan Minshan Minshan,Minshanxiang,min shan,min shan xiang,岷山,岷山乡 34.43725 103.97591 P PPLA4 CN 15 0 2396 Asia/Chongqing 2012-01-21
-7343063 Qingshui Qingshui Qingshui,Qingshuicun,qing shui,qing shui cun,青水,青水村 34.45958 103.90275 P PPLA4 CN 15 0 2371 Asia/Chongqing 2012-01-21
-7343069 Niba Niba Niba,Niba Xiang,Nibaxiang,ni ba,ni ba xiang,尼巴,尼巴乡 34.45774 103.08458 P PPLA4 CN 15 0 2939 Asia/Chongqing 2012-01-21
-7343088 Xizhai Xizhai Xizhai,xi zhai,西寨 34.49366 103.80175 P PPLA4 CN 15 0 2401 Asia/Chongqing 2012-01-21
-7343122 Zongzhai Zongzhai Zongzhai,Zongzhaixiang,zong zhai,zong zhai xiang,总寨,总寨乡 34.55271 103.68873 P PPLA4 CN 15 0 2465 Asia/Chongqing 2012-01-21
-7343131 Mu’er Mu'er Mu'er,Mu'er Xiang,Mu'erxiang,Mu’er,Mu’er Xiang,Mu’erxiang,mu er,mu er xiang,木耳,木耳乡 34.56612 103.58545 P PPLA4 CN 15 0 2512 Asia/Chongqing 2012-01-21
-7343148 Dazu Dazu Dazu,Dazuxiang,da zu,da zu xiang,大族,大族乡 34.58298 103.42171 P PPLA4 CN 15 0 2604 Asia/Chongqing 2012-01-21
-7343166 Kache Kache Kache,Kache Xiang,Kachexiang,ka che,ka che xiang,卡车,卡车乡 34.60161 103.35012 P PPLA4 CN 15 0 2716 Asia/Chongqing 2012-01-21
-7343192 Dianzi Dianzi Dianzi,Dianzi Xiang,Dianzixiang,dian zi,dian zi xiang,店子,店子乡 34.63132 103.66482 P PPLA4 CN 15 0 2694 Asia/Chongqing 2012-01-21
-7343218 Biandu Biandu Biandu,Biandu Xiang,Bianduxiang,bian dou,bian dou xiang,扁都,扁都乡 34.65768 103.64006 P PPLA4 CN 15 0 2660 Asia/Chongqing 2012-01-21
-7343236 Baozi Baozi Baozi,bao zi,堡子 34.67105 103.87996 P PPLA4 CN 15 0 2209 Asia/Chongqing 2012-01-21
-7343262 Chenqi Chenqi Chenqi,Chenqi Xiang,Chenqixiang,chen qi,chen qi xiang,陈旗,陈旗乡 34.68636 103.84271 P PPLA4 CN 15 0 2265 Asia/Chongqing 2012-01-21
-7343277 Guzhan Guzhan Guzhan,Guzhan Huizuxiang,Guzhan Xiang,Guzhanxiang,gu zhan,gu zhan hui zu xiang,gu zhan xiang,古战,古战乡,古战回族乡 34.69461 103.2966 P PPLA4 CN 15 0 2798 Asia/Chongqing 2012-01-21
-7343287 Lexiu Lexiu Lexiu,lei xiu,勒秀 34.70859 103.00386 P PPLA4 CN 15 0 2787 Asia/Chongqing 2012-01-21
-7343298 Changchuan Changchuan Changchuan,Changchuan Huizuxiang,zhang chuan,zhang chuan hui zu xiang,长川,长川回族乡 34.71543 103.4297 P PPLA4 CN 15 0 2946 Asia/Chongqing 2012-01-21
-7343315 Zhuolu Zhuolu Zhuolu,Zhuoluo Huizuxiang,zhuo luo,zhuo luo hui zu xiang,卓洛,卓洛回族乡 34.73212 103.33974 P PPLA4 CN 15 0 2879 Asia/Chongqing 2012-01-21
-7343316 Shencang Shencang Shencang,Shencang Xiang,Shencangxiang,shen cang,shen cang xiang,申藏,申藏乡 34.73465 103.38035 P PPLA4 CN 15 0 2959 Asia/Chongqing 2012-01-21
-7343319 Shimen Shimen Shimen,shi men,石门 34.73602 103.70148 P PPLA4 CN 15 0 2460 Asia/Chongqing 2012-01-21
-7343323 Jiamaogong Jiamaogong Jiamaogong,jia mao gong,加茂贡 34.74129 103.09876 P PPLA4 CN 15 0 3026 Asia/Chongqing 2012-01-21
-7343340 Bailin Bailin Bailin,bai lin,柏林 34.76298 103.93963 P PPLA4 CN 15 0 2839 Asia/Chongqing 2012-01-21
-7343419 Zangbawa Zangbawa Cangbawa,Zangbawa,cang ba wa,藏巴哇 34.87725 103.8617 P PPLA4 CN 15 0 2216 Asia/Chongqing 2012-01-21
-7343453 Shaowa Shaowa Shaowa,Shaowa Tuzuxiang,Shaowatuzuxiang,shao wa,shao wa tu zu xiang,勺哇,勺哇土族乡 34.97828 103.56207 P PPLA4 CN 15 0 2743 Asia/Chongqing 2012-01-21
-7343467 Zuogaimanma Zuogaimanma Zuogaimanma,Zuogaimanmaxiang,zuo gai man ma,zuo gai man ma xiang,佐盖曼玛,佐盖曼玛乡 34.99744 103.04864 P PPLA4 CN 15 0 3127 Asia/Chongqing 2012-01-21
-7347456 Caohe Caohe Caohe,cao he,草河 32.93308 105.08194 P PPLA4 CN 15 0 1260 Asia/Chongqing 2012-01-21
-7347528 Wuku Wuku Wuku,wu ku,五库 33.02879 105.01375 P PPLA4 CN 15 0 1344 Asia/Chongqing 2012-01-21
-7347727 Dongjiang Dongjiang Dongjiang,Dongjiang Zhen,dong jiang,dong jiang zhen,东江,东江镇 33.37923 104.95066 P PPLA4 CN 15 0 1016 Asia/Chongqing 2012-01-21
-7347746 Jinping Jinping Jinping,jin ping,锦屏 33.40609 104.78197 P PPLA4 CN 15 0 1097 Asia/Chongqing 2012-01-21
-7348465 Lianhua Lianhua Lianhua,lian hua,莲花 35.0616 105.79108 P PPLA4 CN 15 0 1415 Asia/Chongqing 2012-01-21
-7348484 Liangshan Liangshan Liangshan,liang shan,梁山 35.07318 105.974 P PPLA4 CN 15 0 1824 Asia/Chongqing 2012-01-21
-7348614 Jichuan Jichuan Jichuan,ji chuan,鸡川 35.15076 105.4652 P PPLA4 CN 15 0 1658 Asia/Chongqing 2012-01-21
-7349229 Zhongchuan Zhongchuan Zhongchuan,Zhongchuanxiang,zhong chuan,中川 35.49792 105.07803 P PPLA4 CN 15 0 1884 Asia/Chongqing 2012-01-21
-7349519 Yuan’an Yuan'an Yuan'an,Yuan’an,yuan an,原安 35.70166 105.63396 P PPLA4 CN 15 0 1912 Asia/Chongqing 2012-01-21
-7349654 Hanjiaji Hanjiaji Hanjiaji,han jia ji,韩家集 35.87688 105.12972 P PPLA4 CN 15 0 1821 Asia/Chongqing 2012-01-21
-7351285 Hongtu Hongtu Ebao Zhen,Hongtu,Hongtu Cheng,e bao zhen,hong tu,hong tu cheng,峨堡镇,红土,红土城 37.9682 100.9332 P PPLA4 CN 06 0 3442 Asia/Chongqing 2012-01-21
-7351996 Tuohua Tuohua Tuohua,Tuole Mengguzu Xiang,tuo hua,tuo lei meng gu zu xiang,托勒蒙古族乡,托华 37.08139 100.68358 P PPLA4 CN 04 0 3429 Asia/Chongqing 2012-01-21
-7352509 Shibao Shibao Shibao,shi bao,石堡 34.09167 105.29772 P PPLA4 CN 15 0 1621 Asia/Chongqing 2012-01-21
-7352543 Xiji Xiji Xiji,Xiji Xiang,xi ji,xi ji xiang,喜集,喜集乡 33.78198 105.27627 P PPLA4 CN 15 0 1402 Asia/Chongqing 2012-01-21
-7352544 Shoushan Shoushan Mei Xian,Shoushan,mei xian,shou shan,眉县,首善 34.27771 107.74619 P PPLA3 CN 26 0 522 Asia/Chongqing 2012-01-21
-7353644 Sancang Sancang Sancang,san cang,三仓 33.01378 105.11507 P PPLA4 CN 15 0 1537 Asia/Chongqing 2012-01-21
-7353795 Fengxiang Chengguanzhen Fengxiang Chengguanzhen Fengxiang,Fengxiang Chengguanzhen,Fengxiang Xian,feng xiang,feng xiang cheng guan zhen,feng xiang xian,凤翔,凤翔县,凤翔城关镇 34.52301 107.39127 P PPLA3 CN 26 0 794 Asia/Chongqing 2012-01-21
-7367725 Tangyu Tangyu Tangyu,Tangyu Zhen,tang yu,tang yu zhen,汤峪,汤峪镇 34.1492 107.8732 P PPLA4 CN 26 0 650 Asia/Chongqing 2012-01-21
-7367759 Shangsong Shangsong Shangsong,shang song,上宋 34.26534 107.87595 P PPLA4 CN 26 0 485 Asia/Chongqing 2012-01-21
-7367770 Diaowei Diaowei Diaowei,Diaowei Zhen,diao wei,diao wei zhen,钓渭,钓渭镇 34.29057 107.51583 P PPLA4 CN 26 0 551 Asia/Chongqing 2012-01-21
-7367773 Wuquan Wuquan Wuquan,Wuquan Zhen,wu quan,wu quan zhen,五泉,五泉镇 34.30045 107.99326 P PPLA4 CN 26 0 535 Asia/Chongqing 2012-01-21
-7367778 Duanjia Duanjia Duanjia,Duanjia Zhen,duan jia,duan jia zhen,段家,段家镇 34.30994 107.90621 P PPLA4 CN 26 0 562 Asia/Chongqing 2012-01-21
-7367783 Bayu Bayu Bayu,Bayu Zhen,ba yu,ba yu zhen,八鱼,八鱼镇 34.33669 107.27675 P PPLA4 CN 26 0 565 Asia/Chongqing 2012-01-21
-7367787 Shigu Shigu Shigu,Shigu Zhen,shi gu,shi gu zhen,石鼓,石鼓镇 34.35153 107.14318 P PPLA4 CN 26 0 591 Asia/Chongqing 2012-01-21
-7367788 Gaojia Gaojia Gaojia,Gaojia Zhen,gao jia,gao jia zhen,高家,高家镇 34.36048 107.06774 P PPLA4 CN 26 0 636 Asia/Chongqing 2012-01-21
-7367789 Taibai Taibai Taibai,tai bai,太白 34.36057 107.96333 P PPLA4 CN 26 0 568 Asia/Chongqing 2012-01-21
-7367791 Chencang Chencang Chencang,Chencang Zhen,chen cang,chen cang zhen,陈仓,陈仓镇 34.36863 107.20751 P PPLA4 CN 26 0 577 Asia/Chongqing 2012-01-21
-7367793 Xiashixiang Xiashixiang Xiashixiang,xia shi xiang,硖石乡 34.38002 107.06843 P PPLA4 CN 26 0 717 Asia/Chongqing 2012-01-21
-7367795 Guowang Guowang Guowang,Guowang Zhen,guo wang,guo wang zhen,虢王,虢王镇 34.38418 107.5261 P PPLA4 CN 26 0 703 Asia/Chongqing 2012-01-21
-7367796 Muyi Muyi Muyi,Muyi Zhen,mu yi,mu yi zhen,慕仪,慕仪镇 34.38842 107.43856 P PPLA4 CN 26 0 718 Asia/Chongqing 2012-01-21
-7367798 Qianhe Qianhe Qianhe,Qianhe Zhen,qian he,qian he zhen,千河,千河镇 34.39355 107.30243 P PPLA4 CN 26 0 574 Asia/Chongqing 2012-01-21
-7367799 Zhouyuan Zhouyuan Zhouyuan,Zhouyuan Zhen,zhou yuan,zhou yuan zhen,周原,周原镇 34.3955 107.37647 P PPLA4 CN 26 0 688 Asia/Chongqing 2012-01-21
-7367800 Lingyuan Lingyuan Lingyuan,ling yuan,陵原 34.4012 107.11895 P PPLA4 CN 26 0 841 Asia/Chongqing 2012-01-21
-7367801 Daying Daying Daying,da ying,大营 34.40876 107.66806 P PPLA4 CN 26 0 668 Asia/Chongqing 2012-01-21
-7367803 Panlong Panlong Panlong,Panlong Zhen,pan long,pan long zhen,蟠龙,蟠龙镇 34.41811 107.19827 P PPLA4 CN 26 0 857 Asia/Chongqing 2012-01-21
-7367807 Gujun Gujun Gujun,gu jun,故郡 34.43942 107.68928 P PPLA4 CN 26 0 673 Asia/Chongqing 2012-01-21
-7367808 Jinhe Jinhe Jinhe,jin he,金河 34.44129 107.13091 P PPLA4 CN 26 0 679 Asia/Chongqing 2012-01-21
-7367812 Nanzhihui Nanzhihui Nanzhihui,Nanzhihui Zhen,nan zhi hui,nan zhi hui zhen,南指挥,南指挥镇 34.4708 107.35589 P PPLA4 CN 26 0 778 Asia/Chongqing 2012-01-21
-7367813 Pucun Pucun Pucun,Pucun Zhen,pu cun,pu cun zhen,蒲村,蒲村镇 34.47329 107.75225 P PPLA4 CN 26 0 768 Asia/Chongqing 2012-01-21
-7367819 Nanyang Nanyang Nanyang,Nanyang Zhen,nan yang,nan yang zhen,南阳,南阳镇 34.48758 107.93031 P PPLA4 CN 26 0 691 Asia/Chongqing 2012-01-21
-7367826 Tangcun Tangcun Tangcun,tang cun,唐村 34.52486 107.30815 P PPLA4 CN 26 0 813 Asia/Chongqing 2012-01-21
-7367836 Dongjiahe Dongjiahe Dongjiahe,dong jia he,董家河 34.586 107.35915 P PPLA4 CN 26 0 904 Asia/Chongqing 2012-01-21
-7367849 Nanzhai Nanzhai Nanzhai,Nanzhai Zhen,nan zhai,nan zhai zhen,南寨,南寨镇 34.65714 107.17366 P PPLA4 CN 26 0 903 Asia/Chongqing 2012-01-21
-7367852 Shajia’ao Shajia'ao Shajia'ao,Shajia’ao,sha jia ao,沙家坳 34.67274 107.23029 P PPLA4 CN 26 0 973 Asia/Chongqing 2012-01-21
-7367872 Sangshuyuan Sangshuyuan Sangshuyuan,sang shu yuan,桑树塬 34.73407 107.81936 P PPLA4 CN 26 0 1293 Asia/Chongqing 2012-01-21
-7367957 Chejiazhuang Chejiazhuang Chejiazhuang,che jia zhuang,车家庄 34.98924 107.90026 P PPLA4 CN 26 0 1285 Asia/Chongqing 2012-01-21
-7368003 Puwo Puwo Puwo,pu wo,蒲窝 34.97379 107.52179 P PPLA4 CN 15 0 1357 Asia/Chongqing 2012-01-21
-7368914 Yongchuan Yongchuan Yongchuan,Yongchuan Zhen,yong chuan,yong chuan zhen,雍川,雍川镇 34.36556 107.63706 P PPLA4 CN 26 0 677 Asia/Chongqing 2012-01-21
-7369564 Shennong Shennong Shennong,Shennong Zhen,shen nong,shen nong zhen,神农,神农镇 34.33911 107.11691 P PPLA4 CN 26 0 641 Asia/Chongqing 2012-01-21
-7369679 Panxi Panxi Panxi,Panxi Zhen,pan xi,pan xi zhen,潘溪,潘溪镇 34.32308 107.40343 P PPLA4 CN 26 0 542 Asia/Chongqing 2012-01-21
-7369741 Guodian Guodian Guodian,Guodian Zhen,guo dian,guo dian zhen,郭店,郭店镇 34.45636 107.42543 P PPLA4 CN 26 0 754 Asia/Chongqing 2012-01-21
-7370270 Zhongshan Donglu Zhongshan Donglu Zhongshan Donglu,Zhongshan Donglu Jiedao,zhong shan dong lu,zhong shan dong lu jie dao,中山东路,中山东路街道 34.37964 107.14638 P PPLA3 CN 26 0 656 Asia/Chongqing 2012-01-21
-7370274 Jinling Jinling Jinling,Jinling Jiedao,jin ling,jin ling jie dao,金陵,金陵街道 34.36925 107.14998 P PPLA3 CN 26 0 590 Asia/Chongqing 2012-01-21
-7371320 Chaka Chaka Chaka,cha ka,茶卡 36.79219 99.07372 P PPLA4 CN 06 0 3101 Asia/Urumqi 2012-01-21
-7371349 Qiecha Qiecha Qiecha,Shinaihai Xiang,qie cha,shi nai hai xiang,切查,石乃亥乡 36.99512 99.59859 P PPLA4 CN 06 0 3208 Asia/Chongqing 2012-01-21
-7371354 Dongke Dongke Dongke,Qieji Xiang,dong ke,qie ji xiang,东科,切吉乡 36.3349 99.66676 P PPLA4 CN 06 0 3049 Asia/Chongqing 2012-01-21
-7372213 Cangdu Cangdu Cangdu,cang du,苍杜 33.09136 105.97477 P PPLA4 CN 26 0 1047 Asia/Chongqing 2012-01-21
-7372230 Taiyangling Taiyangling Taiyangling,tai yang ling,太阳岭 33.03648 106.00312 P PPLA4 CN 26 0 993 Asia/Chongqing 2012-01-21
-7372400 Weihe Weihe Weihe,wei he,渭河 32.99522 105.32465 P PPLA4 CN 15 0 1271 Asia/Chongqing 2012-01-21
-7372407 Yuhe Yuhe Yuhe,yu he,裕河 32.99907 105.48614 P PPLA4 CN 15 0 906 Asia/Chongqing 2012-01-21
-7372420 Tuohe Tuohe Tuohe,tuo he,托河 33.01411 105.85935 P PPLA4 CN 15 0 722 Asia/Chongqing 2012-01-21
-7372425 Pandi Pandi Pandi,pan di,盘底 33.01604 105.18391 P PPLA4 CN 15 0 1231 Asia/Chongqing 2012-01-21
-7372472 Xizhi Xizhi Xizhi,xi zhi,西支 33.07673 105.3564 P PPLA4 CN 15 0 1553 Asia/Chongqing 2012-01-21
-7372475 Luotang Luotang Luotang,Luotang Zhen,luo tang,luo tang zhen,洛塘,洛塘镇 33.06775 105.26485 P PPLA4 CN 15 0 1182 Asia/Chongqing 2012-01-21
-7372534 Lianghe Lianghe Lianghe,Lianghe Zhen,liang he,liang he zhen,两河,两河镇 33.12168 105.91947 P PPLA4 CN 15 0 922 Asia/Chongqing 2012-01-21
-7372556 Yuezhao Yuezhao Yuezhao,yue zhao,月照 33.1406 105.16108 P PPLA4 CN 15 0 1733 Asia/Chongqing 2012-01-21
-7372558 Sanheba Sanheba Sanheba,san he ba,三河坝 33.14188 105.68298 P PPLA4 CN 15 0 871 Asia/Chongqing 2012-01-21
-7372585 Pipa Pipa Pipa,pi pa,琵琶 33.16635 105.31344 P PPLA4 CN 15 0 1429 Asia/Chongqing 2012-01-21
-7372657 Dianzi Dianzi Dianzi,dian zi,店子 33.22041 105.50127 P PPLA4 CN 15 0 1384 Asia/Chongqing 2012-01-21
-7372702 Jia’an Jia'an Jia'an,Jia’an,gu an,贾安 33.26176 105.72241 P PPLA4 CN 15 0 1019 Asia/Chongqing 2012-01-21
-7372727 Yuhuang Yuhuang Yuhuang,yu huang,玉皇 33.29228 105.22467 P PPLA4 CN 15 0 1338 Asia/Chongqing 2012-01-21
-7372743 Nianba Nianba Nianba,nian ba,碾坝 33.30637 105.46936 P PPLA4 CN 15 0 1346 Asia/Chongqing 2012-01-21
-7372766 Huangping Huangping Huangping,huang ping,黄坪 33.32155 105.3322 P PPLA4 CN 15 0 1680 Asia/Chongqing 2012-01-21
-7372793 Guohe Guohe Guohe,guo he,郭河 33.35113 105.14872 P PPLA4 CN 15 0 1588 Asia/Chongqing 2012-01-21
-7372801 Sanguan Sanguan Sanguan,san guan,三官 33.35583 105.60339 P PPLA4 CN 15 0 1231 Asia/Chongqing 2012-01-21
-7372848 Xiongchi Xiongchi Xiongchi,xiong chi,熊池 33.40575 105.33033 P PPLA4 CN 15 0 1367 Asia/Chongqing 2012-01-21
-7372875 Changba Changba Changba,Changba Zhen,zhang ba,zhang ba zhen,长坝,长坝镇 33.42843 105.43458 P PPLA4 CN 15 0 1280 Asia/Chongqing 2012-01-21
-7372877 Dananyu Dananyu Dananyu,da nan yu,大南峪 33.43112 105.75843 P PPLA4 CN 15 0 957 Asia/Chongqing 2012-01-21
-7372888 Fuya Fuya Fuya,fu ya,佛崖 33.4378 105.27333 P PPLA4 CN 15 0 1340 Asia/Chongqing 2012-01-21
-7372894 Ganquan Ganquan Ganquan,gan quan,甘泉 33.44178 105.15978 P PPLA4 CN 15 0 1657 Asia/Chongqing 2012-01-21
-7372906 Gongji Gongji Gongji,gong ji,巩集 33.45038 105.52597 P PPLA4 CN 15 0 1132 Asia/Chongqing 2012-01-21
-7372929 Dabao Dabao Dabao,Dabao Zhen,da bao,da bao zhen,大堡,大堡镇 33.4706 105.57654 P PPLA4 CN 15 0 1038 Asia/Chongqing 2012-01-21
-7372945 Sitai Sitai Sitai,si tai,寺台 33.48641 105.61 P PPLA4 CN 15 0 998 Asia/Chongqing 2012-01-21
-7372977 Yulong Yulong Yulong,yu long,鱼龙 33.51003 105.1812 P PPLA4 CN 15 0 1988 Asia/Chongqing 2012-01-21
-7372986 Douping Douping Douping,dou ping,豆坪 33.5165 105.46462 P PPLA4 CN 15 0 1237 Asia/Chongqing 2012-01-21
-7373013 Chanhe Chanhe Chanhe,chan he,镡河 33.53667 105.65666 P PPLA4 CN 15 0 875 Asia/Chongqing 2012-01-21
-7373023 Miba Miba Miba,mi ba,迷坝 33.54272 105.7819 P PPLA4 CN 15 0 1017 Asia/Chongqing 2012-01-21
-7373034 Lishan Lishan Lishan,li shan,李山 33.54973 105.56831 P PPLA4 CN 15 0 1012 Asia/Chongqing 2012-01-21
-7373075 Chanba Chanba Chanba,chan ba,镡坝 33.5828 105.75846 P PPLA4 CN 15 0 846 Asia/Chongqing 2012-01-21
-7373083 Huangchen Huangchen Huangchen,huang chen,黄陈 33.58312 105.60159 P PPLA4 CN 15 0 1306 Asia/Chongqing 2012-01-21
-7373101 Longxing Longxing Longxing,long xing,隆兴 33.59864 105.1929 P PPLA4 CN 15 0 1642 Asia/Chongqing 2012-01-21
-7373106 Songping Songping Songping,song ping,宋坪 33.60251 105.91054 P PPLA4 CN 15 0 853 Asia/Chongqing 2012-01-21
-7373126 Taishi Taishi Taishi,tai shi,太石 33.61656 105.45163 P PPLA4 CN 15 0 1013 Asia/Chongqing 2012-01-21
-7373136 Longba Longba Longba,long ba,龙坝 33.62476 105.29447 P PPLA4 CN 15 0 1423 Asia/Chongqing 2012-01-21
-7373178 Suochi Suochi Suochi,suo chi,索池 33.64586 105.51363 P PPLA4 CN 15 0 1305 Asia/Chongqing 2012-01-21
-7373183 Daping Daping Daping,da ping,大坪 33.6503 105.7204 P PPLA4 CN 15 0 1529 Asia/Chongqing 2012-01-21
-7373196 Huaya Huaya Huaya,hua ya,化垭 33.65744 105.65289 P PPLA4 CN 15 0 1473 Asia/Chongqing 2012-01-21
-7373197 Nankang Nankang Nankang,nan kang,南康 33.6583 105.88508 P PPLA4 CN 15 0 944 Asia/Chongqing 2012-01-21
-7373227 Suyuan Suyuan Suyuan,su yuan,苏园 33.67348 105.45274 P PPLA4 CN 15 0 1280 Asia/Chongqing 2012-01-21
-7373270 Taishihe Taishihe Taishihe,tai shi he,太石河 33.70578 105.18122 P PPLA4 CN 15 0 1150 Asia/Chongqing 2012-01-21
-7373299 Paosha Paosha Paosha,Paosha Zhen,pao sha,pao sha zhen,抛沙,抛沙镇 33.72353 105.67572 P PPLA4 CN 15 0 986 Asia/Chongqing 2012-01-21
-7373302 Zhifang Zhifang Zhifang,Zhifang Zhen,zhi fang,zhi fang zhen,纸坊,纸坊镇 33.72598 105.48358 P PPLA4 CN 15 0 1254 Asia/Chongqing 2012-01-21
-7373312 Shaba Shaba Shaba,sha ba,沙坝 33.73115 105.56412 P PPLA4 CN 15 0 1378 Asia/Chongqing 2012-01-21
-7373329 Xigaoshan Xigaoshan Xigaoshan,xi gao shan,西高山 33.73475 105.38817 P PPLA4 CN 15 0 1484 Asia/Chongqing 2012-01-21
-7373342 Zhiqi Zhiqi Zhiqi,zhi qi,支旗 33.74864 105.74368 P PPLA4 CN 15 0 969 Asia/Chongqing 2012-01-21
-7373359 Diancun Diancun Diancun,dian cun,店村 33.77105 105.81809 P PPLA4 CN 15 0 1119 Asia/Chongqing 2012-01-21
-7373363 Chenyuan Chenyuan Chenyuan,chen yuan,陈院 33.76426 105.67601 P PPLA4 CN 15 0 1035 Asia/Chongqing 2012-01-21
-7373371 Haolin Haolin Haolin,hao lin,蒿林 33.76791 105.21345 P PPLA4 CN 15 0 1114 Asia/Chongqing 2012-01-21
-7373404 Suchuan Suchuan Suchuan,su chuan,粟川 33.78884 105.94901 P PPLA4 CN 15 0 986 Asia/Chongqing 2012-01-21
-7373419 Liuxiang Liuxiang Liuxiang,liu xiang,六巷 33.79937 105.44447 P PPLA4 CN 15 0 1329 Asia/Chongqing 2012-01-21
-7373429 Yinxingshu Yinxingshu Yinxingshu,yin xing shu,银杏树 33.80497 106.03793 P PPLA4 CN 15 0 958 Asia/Chongqing 2012-01-21
-7373438 Shuiquan Shuiquan Shuiquan,shui quan,水泉 33.81101 105.72267 P PPLA4 CN 15 0 1006 Asia/Chongqing 2012-01-21
-7373480 Luoyu Luoyu Luoyu,luo yu,洛峪 33.84103 105.23117 P PPLA4 CN 15 0 1635 Asia/Chongqing 2012-01-21
-7373487 Wangmo Wangmo Wangmo,wang mo,王磨 33.85074 105.67641 P PPLA4 CN 15 0 1063 Asia/Chongqing 2012-01-21
-7373517 Hekou Hekou Hekou,he kou,河口 33.87548 105.15292 P PPLA4 CN 15 0 1802 Asia/Chongqing 2012-01-21
-7373532 Youlongchuan Youlongchuan Youlongchuan,you long chuan,游龙川 33.88872 105.88205 P PPLA4 CN 15 0 1117 Asia/Chongqing 2012-01-21
-7373600 Shili Shili Shili,shi li,十里 33.95182 105.29247 P PPLA4 CN 15 0 1648 Asia/Chongqing 2012-01-21
-7373609 Yushu Yushu Yushu,yu shu,榆树 33.95978 106.00571 P PPLA4 CN 15 0 1235 Asia/Chongqing 2012-01-21
-7373617 Huangzhu Huangzhu Huangzhu,Huangzhu Zhen,huang zhu,huang zhu zhen,黄渚,黄渚镇 33.96755 105.68266 P PPLA4 CN 15 0 1179 Asia/Chongqing 2012-01-21
-7373636 Zhaowu Zhaowu Zhaowu,zhao wu,赵五 33.9853 105.30962 P PPLA4 CN 15 0 1622 Asia/Chongqing 2012-01-21
-7373653 Shaijing Shaijing Shaijing,shai jing,晒经 33.98332 105.48885 P PPLA4 CN 15 0 1588 Asia/Chongqing 2012-01-21
-7373656 Jiangxi Jiangxi Jiangxi,jiang xi,姜席 33.99934 105.19994 P PPLA4 CN 15 0 1716 Asia/Chongqing 2012-01-21
-7373672 Luhe Luhe Luhe,lu he,卢河 34.00918 105.34021 P PPLA4 CN 15 0 1625 Asia/Chongqing 2012-01-21
-7373727 Mayuan Mayuan Mayuan,ma yuan,马元 34.05397 105.52278 P PPLA4 CN 15 0 1529 Asia/Chongqing 2012-01-21
-7373918 Shijiayuan Shijiayuan Shijiayuan,shi jia yuan,史家院 33.2897 106.00532 P PPLA4 CN 26 0 913 Asia/Chongqing 2012-01-21
-7374589 Taiping Taiping Taiping,tai ping,太平 32.95409 105.69676 P PPLA4 CN 26 0 1053 Asia/Chongqing 2012-01-21
-7384060 Sangdang Sangdang Sangdang,Sangdang Xiang,sang dang,桑当 35.52103 100.01249 P PPLA4 CN 06 0 2848 Asia/Chongqing 2012-01-21
-7384069 Nimai Nimai Longcang Xiang,Nimai,long cang xiang,ni mai,尼买,龙藏乡 35.27997 100.07086 P PPLA4 CN 06 0 3382 Asia/Chongqing 2012-01-21
-7384078 Zhongcun Zhongcun Tangnaihai Xiang,Zhongcun,tang nai hai xiang,zhong cun,中村,唐乃亥乡 35.51407 100.13115 P PPLA4 CN 06 0 2736 Asia/Chongqing 2012-01-21
-7384096 Qushi’anxiang Qushi'anxiang Qushi'anxiang,Qushi’anxiang,qu shen an xiang,曲什安乡 35.32596 100.2326 P PPLA4 CN 06 0 2753 Asia/Chongqing 2012-01-21
-7384107 Jiangqun Jiangqun Jiangqun,Xiuma Xiang,jiang qun,xiu ma xiang,江群,秀麻乡 35.05538 100.33283 P PPLA4 CN 06 0 3240 Asia/Chongqing 2012-01-21
-7384124 Tanggan Tanggan Tanggan,Tanggan Xiang,tang gan,唐干 35.20418 100.41037 P PPLA4 CN 06 0 3331 Asia/Chongqing 2012-01-21
-7384129 Qubucangka Qubucangka Qubucangka,Taxiu Xiang,qu bu cang ka,ta xiu xiang,塔秀乡,曲布藏卡 35.60009 100.44287 P PPLA4 CN 06 0 3320 Asia/Chongqing 2012-01-21
-7384142 Gerengongma Gerengongma Gerengongma,ge ren gong ma,格仁贡玛 35.62606 100.50995 P PPLA4 CN 06 0 3110 Asia/Chongqing 2012-01-21
-7384184 Mangqu Mangqu Mangqu,mang qu,芒曲 35.5857 100.75237 P PPLA3 CN 06 0 3082 Asia/Chongqing 2012-01-21
-7384198 Wangjiaxiang Wangjiaxiang Wangjiaxiang,wang jia xiang,王加乡 35.39007 100.95107 P PPLA4 CN 06 0 3415 Asia/Chongqing 2012-01-21
-7387161 Heka Heka Heka,he ka,河卡 35.89332 100.00013 P PPLA4 CN 04 0 3238 Asia/Chongqing 2012-01-21
-7387615 Liangshan Liangshan Liangshan,Liangshan Zhen,liang shan,liang shan zhen,梁山,梁山镇 33.08626 106.94262 P PPLA4 CN 26 0 537 Asia/Chongqing 2012-01-21
-7398691 Shangma Shangma Shangma,Shangma Xiang,shang ma,shang ma xiang,上马,上马乡 41.78135 124.15005 P PPLA4 CN 19 0 199 Asia/Shanghai 2012-01-21
-7402116 Bahechuan Bahechuan Bahechuan,Bahechuan Zhen,Luoquanjia,ba he chuan,ba he chuan zhen,luo quan jia,八河川,八河川镇,罗圈夹 41.02713 124.81046 P PPLA4 CN 19 0 393 Asia/Shanghai 2012-01-21
-7404455 Xinglong Xinglong Xinglong,Xinglong Zhen,xing long,xing long zhen,兴隆,兴隆镇 40.30594 123.28549 P PPLA4 CN 19 0 84 Asia/Shanghai 2012-01-21
-7404519 Yangjiapu Yangjiapu Yangjiapu,Yangjiapu Zhen,yang jia bao,yang jia bao zhen,杨家堡,杨家堡镇 40.19279 123.33097 P PPLA4 CN 19 0 115 Asia/Shanghai 2012-02-02
-7405307 Zhoujiashan Zhoujiashan Zhoujiashan,Zhoujiashan Zhen,zhou jia shan,zhou jia shan zhen,周家山,周家山镇 33.17145 106.72779 P PPLA4 CN 26 0 554 Asia/Chongqing 2012-01-21
-7405532 Lijiaping Lijiaping Gangou Xiang,Lijiaping,gan gou xiang,li jia ping,李家坪,甘沟乡 35.98136 102.76608 P PPLA4 CN 06 0 2297 Asia/Chongqing 2012-01-21
-7405558 Jiuzhongjin Jiuzhongjin Jiuzhongjin,jiu zhong jin,九中金 33.5247 106.21586 P PPLA4 CN 26 0 1244 Asia/Chongqing 2012-01-21
-7405635 Xiangcunxiang Xiangcunxiang Xiangcunxiang,xiang cun xiang,翔村乡 35.00699 109.58611 P PPLA4 CN 26 0 505 Asia/Chongqing 2012-01-21
-7406942 Biashizang Biashizang Biashizang,bai zha cang,白扎藏 35.60058 102.94029 P PPLA4 CN 15 0 2148 Asia/Chongqing 2012-01-21
-7407361 Shiyuan Shiyuan Shiyuan,shi yuan,石塬 35.75275 102.80726 P PPLA4 CN 06 0 2352 Asia/Chongqing 2012-01-21
-7407364 Dongguan Dongguan Dongguan,Dongguang Huizuxiang,dong guan,dong guan hui zu xiang,东关,东关回族乡 33.77992 106.1064 P PPLA4 CN 26 0 965 Asia/Chongqing 2012-01-21
-7407683 Yuguan Yuguan Yuguan,yu guan,虞关 33.63539 106.16716 P PPLA4 CN 15 0 947 Asia/Chongqing 2012-01-21
-7407690 Guangjin Guangjin Guangjin,guang jin,广金 33.65658 106.49148 P PPLA4 CN 15 0 1963 Asia/Chongqing 2012-01-21
-7407704 Yunping Yunping Yunping,yun ping,云屏 33.69847 106.41404 P PPLA4 CN 15 0 1224 Asia/Chongqing 2012-01-21
-7407706 Jialing Jialing Jialing,Jialing Zhen,jia ling,jia ling zhen,嘉陵,嘉陵镇 33.69927 106.19629 P PPLA4 CN 15 0 807 Asia/Chongqing 2012-01-21
-7407743 Shuiyang Shuiyang Shuiyang,shui yang,水阳 33.74844 106.10278 P PPLA4 CN 15 0 923 Asia/Chongqing 2012-01-21
-7407750 Taishan Taishan Taishan,tai shan,太山 33.77297 106.45761 P PPLA4 CN 15 0 1399 Asia/Chongqing 2012-01-21
-7407766 Xianlong Xianlong Xianlong,xian long,显龙 33.8142 106.24476 P PPLA4 CN 15 0 1160 Asia/Chongqing 2012-01-21
-7407776 Yuchi Yuchi Yuchi,yu chi,鱼池 33.83427 106.27166 P PPLA4 CN 15 0 1112 Asia/Chongqing 2012-01-21
-7407787 Xinghua Xinghua Xinghua,xing hua,兴化 33.86151 106.36176 P PPLA4 CN 15 0 1296 Asia/Chongqing 2012-01-21
-7407799 Liulin Liulin Liulin,Liulin Zhen,liu lin,liu lin zhen,柳林,柳林镇 33.87437 106.1696 P PPLA4 CN 15 0 854 Asia/Chongqing 2012-01-21
-7407813 Jindong Jindong Jindong,jin dong,金洞 33.90604 106.3087 P PPLA4 CN 15 0 963 Asia/Chongqing 2012-01-21
-7407834 Zuojia Zuojia Zuojia,zuo jia,左家 33.96762 106.40525 P PPLA4 CN 15 0 1023 Asia/Chongqing 2012-01-21
-7407867 Taiyang Taiyang Taiyang,tai yang,太阳 34.07882 106.29489 P PPLA4 CN 15 0 1523 Asia/Chongqing 2012-01-21
-7407925 Gaojialing Gaojialing Gaojialing,gao jia ling,高家岭 32.93458 107.03304 P PPLA4 CN 26 0 595 Asia/Chongqing 2012-01-21
-7407926 Qingshu Qingshu Qingshu,Qingshu Zhen,qing shu,qing shu zhen,青树,青树镇 32.93629 106.90324 P PPLA4 CN 26 0 625 Asia/Chongqing 2012-01-21
-7407964 Qishuba Qishuba Qishuba,qi shu ba,漆树坝 32.95795 106.59285 P PPLA4 CN 26 0 946 Asia/Chongqing 2012-01-21
-7408027 Xieshui Xieshui Xieshui,Xieshui Zhen,xie shui,xie shui zhen,协税,协税镇 33.0043 106.90932 P PPLA4 CN 26 0 539 Asia/Chongqing 2012-01-21
-7408043 Nanping Nanping Nanping,nan ping,南屏 33.01499 106.39023 P PPLA4 CN 26 0 737 Asia/Chongqing 2012-01-21
-7408054 Gaotai Gaotai Gaotai,Gaotaizhen,gao tai,gao tai zhen,高台,高台镇 33.01891 106.85484 P PPLA4 CN 26 0 541 Asia/Chongqing 2012-01-21
-7408068 Renshui Renshui Renshui,ren shui,忍水 33.03604 106.81214 P PPLA4 CN 26 0 579 Asia/Chongqing 2012-01-21
-7408070 Hujiaying Hujiaying Hujiaying,hu jia ying,胡家营 33.02391 107.02407 P PPLA4 CN 26 0 505 Asia/Chongqing 2012-01-21
-7408081 Yangchun Yangchun Yangchun,Yangchun Zhen,yang chun,yang chun zhen,阳春,阳春镇 33.03324 106.90148 P PPLA4 CN 26 0 527 Asia/Chongqing 2012-01-21
-7408089 Guotan Guotan Guotan,guo tan,郭滩 33.03929 106.93447 P PPLA4 CN 26 0 521 Asia/Chongqing 2012-01-21
-7408177 Qili Qili Qili,Qili Zhen,qi li,qi li zhen,七里,七里镇 33.07926 107.05623 P PPLA4 CN 26 0 511 Asia/Chongqing 2012-01-21
-7408185 Zhenchuan Zhenchuan Zhenchuan,zhen chuan,镇川 33.08732 106.7253 P PPLA4 CN 26 0 575 Asia/Chongqing 2012-01-21
-7408228 Donghuanggou Donghuanggou Donghuanggou,dong huang gou,东皇沟 33.10416 106.22799 P PPLA4 CN 26 0 1079 Asia/Chongqing 2012-01-21
-7408248 Gongjiahe Gongjiahe Gongjiahe,gong jia he,巩家河 33.11338 106.18491 P PPLA4 CN 26 0 825 Asia/Chongqing 2012-01-21
-7408260 Zengjiahe Zengjiahe Zengjiahe,ceng jia he,曾家河 33.12096 106.1265 P PPLA4 CN 26 0 807 Asia/Chongqing 2012-01-21
-7408266 Laojun Laojun Laojun,Laojun Zhen,lao jun,lao jun zhen,老君,老君镇 33.12199 107.0436 P PPLA4 CN 26 0 547 Asia/Chongqing 2012-01-21
-7408268 Longjiang Longjiang Longjiang,Longjiang Zhen,long jiang,long jiang zhen,龙江,龙江镇 33.12296 106.9593 P PPLA4 CN 26 0 522 Asia/Chongqing 2012-01-21
-7408284 Tuguanpu Tuguanpu Tuguanpu,tu guan pu,土关铺 33.13037 106.55005 P PPLA4 CN 26 0 567 Asia/Chongqing 2012-01-21
-7408299 Dingjunshan Dingjunshan Dingjunshan,Dingjunshan Zhen,ding jun shan,ding jun shan zhen,定军山,定军山镇 33.13931 106.65909 P PPLA4 CN 26 0 565 Asia/Chongqing 2012-01-21
-7408316 Jinquan Jinquan Jinquan,Jinquan Zhen,jin quan,jin quan zhen,金泉,金泉镇 33.14607 106.84444 P PPLA4 CN 26 0 531 Asia/Chongqing 2012-01-21
-7408329 Wuhou Wuhou Wuhou,Wuhou Zhen,wu hou,wu hou zhen,武候,武候镇 33.15029 106.61463 P PPLA4 CN 26 0 568 Asia/Chongqing 2012-01-21
-7408353 Xinjiezi Xinjiezi Xinjiezi,Xinjiezi Zhen,xin jie zi,xin jie zi zhen,新街子,新街子镇 33.16092 106.82506 P PPLA4 CN 26 0 535 Asia/Chongqing 2012-01-21
-7408370 Tonggousi Tonggousi Tonggousi,Tonggousi Zhen,tong gou si,tong gou si zhen,同沟寺,同沟寺镇 33.17098 106.74869 P PPLA4 CN 26 0 556 Asia/Chongqing 2012-01-21
-7408472 Heiheba Heiheba Heiheba,hei he ba,黑河坝 33.21365 106.44392 P PPLA4 CN 26 0 806 Asia/Chongqing 2012-01-21
-7408492 Xiaobianhe Xiaobianhe Xiaobianhe,xiao bian he,小砭河 33.23255 106.48987 P PPLA4 CN 26 0 694 Asia/Chongqing 2012-01-21
-7408515 Erdaohe Erdaohe Erdaohe,er dao he,二道河 33.25141 106.83026 P PPLA4 CN 26 0 1110 Asia/Chongqing 2012-01-21
-7408812 Wuguanyi Wuguanyi Wuguanyi,Wuguanyi Zhen,wu guan yi,wu guan yi zhen,武关驿,武关驿镇 33.55173 106.9781 P PPLA4 CN 26 0 820 Asia/Chongqing 2012-01-21
-7408909 Liuhou Liuhou Liuhou,Liuhou Zhen,liu hou,liu hou zhen,留侯,留侯镇 33.69211 106.84989 P PPLA4 CN 26 0 1230 Asia/Chongqing 2012-01-21
-7410698 Huangbao Huangbao Huangbao,huang bao,黄堡 35.00377 109.02494 P PPLA4 CN 26 0 722 Asia/Chongqing 2012-01-21
-7413208 Rixiuma Rixiuma Huangnaihai,Huangnaihai Xiang,Rixiuma,huang nai hai,huang nai hai xiang,ri xiu ma,日秀玛,黄乃亥,黄乃亥乡 35.6157 102.00546 P PPLA4 CN 06 0 2990 Asia/Chongqing 2012-01-21
-7413215 Nianduhu Nianduhu Nianduhu,nian dou hu,年都乎 35.53328 102.02126 P PPLA4 CN 06 0 2506 Asia/Chongqing 2012-01-21
-7413219 Xianggan Xianggan Dangshunxiang,Xianggan,dang shun xiang,xiang gan,当顺乡,香干 35.84708 102.02961 P PPLA4 CN 06 0 2893 Asia/Chongqing 2012-01-21
-7413225 Jianbaang Jianbaang Anglaxiang,Jianbaang,ang la xiang,jian ba ang,尖巴昂,昂拉乡 35.88844 102.04032 P PPLA4 CN 06 0 2105 Asia/Chongqing 2012-01-21
-7413232 Jiawu Jiawu Jiawu,jia wu,加吾 35.49181 102.04776 P PPLA4 CN 06 0 2929 Asia/Chongqing 2012-01-21
-7413305 Shuangpengxi Shuangpengxi Shuangpengxi,Shuangpengxixiang,shuang peng xi,shuang peng xi xiang,双朋西,双朋西乡 35.56068 102.19891 P PPLA4 CN 06 0 2751 Asia/Chongqing 2012-01-21
-7413322 Galengkou Galengkou Galengkou,Gangcha Zangzuxiang,ga leng kou,gang cha cang zu,尕楞口,岗察藏族 35.699 102.22673 P PPLA4 CN 06 0 3301 Asia/Chongqing 2012-01-21
-7413332 Duowa Duowa Duowa,duo wa,多哇 35.19636 102.24917 P PPLA4 CN 06 0 3369 Asia/Chongqing 2012-01-21
-7413340 Yaga Yaga Galeng Cangzuxiang,Galeng Zangzuxiang,Yaga,ga leng cang zu xiang,ya ga,尕楞藏族乡,牙尕 35.76556 102.27654 P PPLA4 CN 06 0 2573 Asia/Chongqing 2012-01-21
-7413342 Tawa Tawa Guashize,Guashizexiang,Tawa,gua shen ze,gua shen ze xiang,ta wa,塔哇,瓜什则,瓜什则乡 35.49447 102.28121 P PPLA4 CN 06 0 3284 Asia/Chongqing 2012-01-21
-7413345 Xiazhuang Xiazhuang Chahandusi,Chahandusixiang,Xiazhuang,cha han dou si,cha han dou si xiang,xia zhuang,下庄,查汗都斯,查汗都斯乡 35.8515 102.29562 P PPLA4 CN 06 0 1967 Asia/Chongqing 2012-01-21
-7413402 Sanlanbahai Sanlanbahai Jiezi,Jiezixiang,Sanlanbahai,jie zi,jie zi xiang,san lan ba hai,三兰巴海,街子,街子乡 35.85544 102.43323 P PPLA4 CN 06 0 1945 Asia/Chongqing 2012-01-21
-7413462 Baijiaji Baijiaji Baijiaji,Tajiazangzu,Tajiazangzuxiang,bai jia ji,ta jia cang zu,ta jia cang zu xiang,塔加藏族,塔加藏族乡,白加集 35.97029 102.63772 P PPLA4 CN 06 0 2757 Asia/Chongqing 2012-01-21
-7413464 Mengdadazhuang Mengdadazhuang Mengda,Mengdadazhuang,Mengdaxiang,meng da,meng da da zhuang,meng da xiang,孟达,孟达乡,孟达大庄 35.83339 102.6395 P PPLA4 CN 06 0 1865 Asia/Chongqing 2012-01-21
-7413509 Wangjia Wangjia Qianhexiang,Wangjia,qian he xiang,wang jia,前河乡,王家 36.00836 102.81179 P PPLA4 CN 06 0 2220 Asia/Chongqing 2012-01-21
-7413516 Xinjia Xinjia Xinjia,Zhongchuanxiang,xin jia,zhong chuan xiang,中川乡,辛家 35.877 102.83955 P PPLA4 CN 06 0 1809 Asia/Chongqing 2012-01-21
-7413597 Kajiadao Kajiadao Kajiadao,ka jia dao,卡加道 35.11718 102.99351 P PPLA4 CN 15 0 3315 Asia/Chongqing 2012-01-21
-7413614 Tangga’an Tangga'an Tangga'an,Tangga’an,tang ga ang,唐尕昂 35.14316 102.85027 P PPLA4 CN 15 0 2634 Asia/Chongqing 2012-01-21
-7413654 Jiujia Jiujia Jiujia,jiu jia,九甲 35.19011 102.53461 P PPLA4 CN 15 0 3038 Asia/Chongqing 2012-01-21
-7413703 Madang Madang Madang,ma dang,麻当 35.32442 102.7854 P PPLA4 CN 15 0 2390 Asia/Chongqing 2012-01-21
-7413715 Qu’ao Qu'ao Qu'ao,Qu’ao,qu ao,曲奥 35.36649 102.87845 P PPLA4 CN 15 0 2369 Asia/Chongqing 2012-01-21
-7413744 Maji Maji Maji,ma ji,马集 35.44734 102.98943 P PPLA4 CN 15 0 2134 Asia/Chongqing 2012-01-21
-7413747 Monigou Monigou Monigou,mo ni gou,漠泥沟 35.46728 102.94971 P PPLA4 CN 15 0 2263 Asia/Chongqing 2012-01-21
-7413758 Manisi Manisi Manisi,ma ni si,麻尼寺 35.51035 102.92698 P PPLA4 CN 15 0 2294 Asia/Chongqing 2012-01-21
-7413762 Zhangzigou Zhangzigou Zhangzigou,zhang zi gou,掌子沟 35.52407 102.96966 P PPLA4 CN 15 0 2262 Asia/Chongqing 2012-01-21
-7413775 Yingtan Yingtan Yingtan,ying tan,营滩 35.57347 102.97118 P PPLA4 CN 15 0 2201 Asia/Chongqing 2012-01-21
-7413777 Xiaoguan Xiaoguan Xiaoguan,xiao guan,小关 35.58439 102.89171 P PPLA4 CN 15 0 2315 Asia/Chongqing 2012-01-21
-7413782 Zhongzuiling Zhongzuiling Zhongzuiling,zhong ju ling,中咀岭 35.63058 102.92672 P PPLA4 CN 15 0 2172 Asia/Chongqing 2012-01-21
-7413791 Juiji Juiji Juiji,ju ji,居集 35.64999 102.93122 P PPLA4 CN 15 0 2150 Asia/Chongqing 2012-01-21
-7413792 Guogan Guogan Guogan,guo gan,郭干 35.65207 102.9921 P PPLA4 CN 15 0 2273 Asia/Chongqing 2012-01-21
-7413795 Xuhujia Xuhujia Xuhujia,xu hu jia,徐扈家 35.66442 102.95173 P PPLA4 CN 15 0 2286 Asia/Chongqing 2012-01-21
-7413800 Zhaizigou Zhaizigou Zhaizigou,zhai zi gou,寨子沟 35.67881 102.88919 P PPLA4 CN 15 0 2334 Asia/Chongqing 2012-01-21
-7413807 Hulinjia Hulinjia Hulinjia,hu lin jia,胡林家 35.72542 102.93778 P PPLA4 CN 15 0 2255 Asia/Chongqing 2012-01-21
-7413817 Liugou Liugou Liugou,liu gou,柳沟 35.74399 102.85343 P PPLA4 CN 15 0 2346 Asia/Chongqing 2012-01-21
-7413823 Guanjiachuan Guanjiachuan Guanjiachuan,guan jia chuan,关家川 35.76486 102.93291 P PPLA4 CN 15 0 2095 Asia/Chongqing 2012-01-21
-7413827 Liuji Liuji Liuji,liu ji,刘集 35.77054 102.7897 P PPLA4 CN 15 0 2112 Asia/Chongqing 2012-01-21
-7413851 Sibaozi Sibaozi Sibaozi,si bao zi,四堡子 35.83929 102.77046 P PPLA4 CN 15 0 1808 Asia/Chongqing 2012-01-21
-7413861 Xiaoling Xiaoling Xiaoling,Xiaolingxiang,xiao ling,xiao ling xiang,小岭,小岭乡 35.89484 102.99562 P PPLA4 CN 15 0 2386 Asia/Chongqing 2012-01-21
-7428592 Qianyang Chengguanzhen Qianyang Chengguanzhen Qianyang,Qianyang Chengguanzhen,Qianyang Xian,qian yang,qian yang cheng guan zhen,qian yang xian,千阳,千阳县,千阳城关镇 34.64208 107.13019 P PPLA3 CN 26 0 733 Asia/Chongqing 2012-01-21
-7432952 Yangyong Yangyong Yangyong,yang yong,羊永 34.6459 103.47198 P PPLA4 CN 15 0 2680 Asia/Chongqing 2012-01-21
-7437850 Huayuan Huayuan Huayuan,hua yuan,花园 33.96607 103.76766 P PPLA4 CN 15 0 1950 Asia/Chongqing 2012-01-21
-7440915 Kuzhu Kuzhu Kuzhu,Kuzhu Zhen,ku zhu,ku zhu zhen,苦竹,苦竹镇 26.90287 116.21228 P PPLA4 CN 03 0 213 Asia/Shanghai 2012-01-21
-7446186 Wangcang Wangcang Wangcang,wang cang,旺藏 33.95072 103.59995 P PPLA4 CN 15 0 2142 Asia/Chongqing 2012-01-21
-7446191 Ni’ao Ni'ao Ni'ao,Ni’ao,ni ao,尼傲 33.96083 103.55052 P PPLA4 CN 15 0 2054 Asia/Chongqing 2012-01-21
-7446195 Kaba Kaba Kaba,ka ba,卡坝 33.98035 103.49484 P PPLA4 CN 15 0 2198 Asia/Chongqing 2012-01-21
-7446231 Sigou Sigou Sigou,si gou,寺沟 34.36562 104.07948 P PPLA4 CN 15 0 2393 Asia/Chongqing 2012-01-21
-7446247 Shili Shili Shili,shi li,十里 34.42301 103.95313 P PPLA4 CN 15 0 2337 Asia/Chongqing 2012-01-21
-7446262 Chabu Chabu Chabu,cha bu,茶埠 34.48706 104.09516 P PPLA4 CN 15 0 2307 Asia/Chongqing 2012-01-21
-7446266 Daogao Daogao Daogao,Daogaoxiang,dao gao,dao gao xiang,刀告,刀告乡 34.50267 103.12422 P PPLA4 CN 15 0 2867 Asia/Chongqing 2012-01-21
-7446277 Nalang Nalang Nalang,Nalangxiang,na lang,na lang xiang,纳浪,纳浪乡 34.5154 103.70052 P PPLA4 CN 15 0 2489 Asia/Chongqing 2012-01-21
-7446294 Xijiang Xijiang Xijiang,xi jiang,西江 34.5659 104.0034 P PPLA4 CN 15 0 2311 Asia/Chongqing 2012-01-21
-7446307 Chubu Chubu Chubu,Chubuxiang,chu bu,chu bu xiang,初步,初步乡 34.61808 103.29185 P PPLA4 CN 15 0 2649 Asia/Chongqing 2012-01-21
-7446319 Xiaozhai Xiaozhai Xiaozhai,xiao zhai,小寨 34.63914 104.01308 P PPLA4 CN 15 0 2399 Asia/Chongqing 2012-01-21
-7446325 Yangyong Yangyong Yangyong,Yangyongxiang,yang yong,yang yong xiang,羊永,羊永乡 34.64853 103.47808 P PPLA4 CN 15 0 2682 Asia/Chongqing 2012-01-21
-7446328 Liushun Liushun Liushun,liu shun,流顺 34.6492 103.54139 P PPLA4 CN 15 0 2718 Asia/Chongqing 2012-01-21
-7446337 Longyuan Longyuan Longyuan,Longyuanxiang,long yuan,long yuan xiang,龙元,龙元乡 34.65446 103.77616 P PPLA4 CN 15 0 2540 Asia/Chongqing 2012-01-21
-7446417 Nawu Nawu Nawu,na wu,那吾 34.95403 102.91337 P PPLA4 CN 15 0 2940 Asia/Chongqing 2012-01-21
-7446428 Lianlu Lianlu Lianlu,lian lu,莲麓 35.01436 103.7456 P PPLA4 CN 15 0 2059 Asia/Chongqing 2012-01-21
-7446447 Bajiao Bajiao Bajiao,ba jiao,八角 35.02825 103.69693 P PPLA4 CN 15 0 2306 Asia/Chongqing 2012-01-21
-7446453 Kangduo Kangduo Kangduo,kang duo,康多 35.03431 103.52451 P PPLA4 CN 15 0 3039 Asia/Chongqing 2012-01-21
-7446480 Zuogaiduoma Zuogaiduoma Zuogaiduoma,Zuogaiduomaxiang,zuo gai duo ma,zuo gai duo ma xiang,佐盖多玛,佐盖多玛乡 35.05587 103.12599 P PPLA4 CN 15 0 3422 Asia/Chongqing 2012-01-21
-7446489 Tianjiahe Tianjiahe Tianjiahe,tian jia he,田家河 35.06191 103.94137 P PPLA4 CN 15 0 2337 Asia/Chongqing 2012-01-21
-7446494 Yangzhuang Yangzhuang Yangzhuang,yang zhuang,杨庄 35.06718 104.0392 P PPLA4 CN 15 0 2363 Asia/Chongqing 2012-01-21
-7446846 Zhiping Shezu Zhiping Shezu Zhiping Shezu,Zhiping Shezu Xiang,zhi ping she zu,zhi ping she zu xiang,治平畲族,治平畲族乡 26.03902 116.51691 P PPLA4 CN 07 0 532 Asia/Shanghai 2012-01-21
-7446847 Xianan Xianan Chengjiao,Xianan,cheng jiao,xia nan,下南,城郊 26.26663 116.65897 P PPLA4 CN 07 0 320 Asia/Shanghai 2012-01-21
-7454440 Yangxi Yangxi Yangxi,Yangxi Xiang,yang xi,yang xi xiang,杨溪,杨溪乡 26.62191 116.39254 P PPLA4 CN 03 0 229 Asia/Shanghai 2012-01-21
-7454443 Toupi Toupi Toupi,Toupi Zhen,tou bei,tou bei zhen,头陂,头陂镇 26.75605 116.19268 P PPLA4 CN 03 0 162 Asia/Shanghai 2012-01-21
-7466647 Gaolong Gaolong Gaolong,Gaolong Xiang,gao long,gao long xiang,高龙,高龙乡 26.05625 115.72195 P PPLA4 CN 03 0 406 Asia/Shanghai 2012-01-21
-7466650 Fenkeng Fenkeng Fenkeng,Fenkeng Xiang,fen keng,fen keng xiang,汾坑,汾坑乡 26.12859 115.66555 P PPLA4 CN 03 0 149 Asia/Shanghai 2012-01-21
-7466651 Meiyao Meiyao Meiyao,Meiyao Zhen,mei yao,mei yao zhen,梅窑,梅窑镇 26.3986 115.75763 P PPLA4 CN 03 0 274 Asia/Shanghai 2012-01-21
-7466652 Dagu Dagu Dagu,Dagu Xiang,da gu,da gu xiang,大沽,大沽乡 26.73449 115.78616 P PPLA4 CN 03 0 371 Asia/Shanghai 2012-01-21
-7466654 Chexi Chexi Chexi,Chexi Xiang,che xi,che xi xiang,车溪,车溪乡 26.04784 115.58136 P PPLA4 CN 03 0 137 Asia/Shanghai 2012-01-21
-7466658 Ma’an Ma'an Ma'an,Ma'an Xiang,Ma’an,Ma’an Xiang,ma an,ma an xiang,马安,马安乡 26.20883 115.54768 P PPLA4 CN 03 0 241 Asia/Shanghai 2012-01-21
-7466659 Ge’ao Ge'ao Ge'ao,Ge'ao Xiang,Ge’ao,Ge’ao Xiang,ge ao,ge ao xiang,葛坳,葛坳乡 26.26235 115.72348 P PPLA4 CN 03 0 167 Asia/Shanghai 2012-01-21
-7466660 Gangmian Gangmian Gangmian,Gangmian Xiang,gang mian,gang mian xiang,冈面,冈面乡 26.08782 115.86389 P PPLA4 CN 03 0 208 Asia/Shanghai 2012-01-21
-7466661 Dingbei Dingbei Dingbei,Dingbei Xiang,ding bei,ding bei xiang,丁陂,丁陂乡 26.25924 115.8535 P PPLA4 CN 03 0 180 Asia/Shanghai 2012-01-21
-7469572 Shenkou Shenkou Shenkou,shen kou,莘口 26.16424 117.53637 P PPLA4 CN 07 0 146 Asia/Shanghai 2012-01-21
-7469573 Qiujiang Qiujiang Qiujiang,Qiujiang Xiang,qiu jiang,qiu jiang xiang,虬江,虬江乡 26.39267 117.77488 P PPLA4 CN 07 0 118 Asia/Shanghai 2012-01-21
-7472706 Yuanqian Yuanqian Yuanqian,Yuanqian Zhen,yuan qian,yuan qian zhen,苑前,苑前镇 26.80104 115.16699 P PPLA4 CN 03 0 90 Asia/Shanghai 2012-01-21
-7472710 Shunfeng Shunfeng Shunfeng,Shunfeng Xiang,shun feng,shun feng xiang,顺峰,顺峰乡 26.18904 115.02927 P PPLA4 CN 03 0 164 Asia/Shanghai 2012-01-21
-7472713 Zhonglong Zhonglong Zhonglong,Zhonglong Xiang,zhong long,zhong long xiang,中龙,中龙乡 26.70718 115.16898 P PPLA4 CN 03 0 105 Asia/Shanghai 2012-01-21
-7472715 Baoshan Baoshan Baoshan,Baoshan Xiang,bao shan,bao shan xiang,宝山,宝山乡 26.34848 115.00678 P PPLA4 CN 03 0 200 Asia/Shanghai 2012-01-21
-7472716 Sanxixiang Sanxixiang Sanxixiang,san xi xiang,三溪乡 26.10054 115.29972 P PPLA4 CN 03 0 153 Asia/Shanghai 2012-01-21
-7472717 Shangyi Shangyi Shangyi,Shangyi Xiang,shang yi,shang yi xiang,上圯,上圯乡 26.59813 115.1229 P PPLA4 CN 03 0 130 Asia/Shanghai 2012-01-21
-7491133 Zhangcaizhuang Zhangcaizhuang Zhangcaizhuang,Zhangcaizhuang Xiang,zhang cai zhuang,zhang cai zhuang xiang,张蔡庄,张蔡庄乡 39.28796 112.3271 P PPLA4 CN 24 0 1162 Asia/Shanghai 2012-01-21
-7506701 Xingjiang Xingjiang Xingjiang,Xingjiang Xiang,xing jiang xiang,兴江乡 26.49095 115.77177 P PPLA4 CN 03 0 269 Asia/Shanghai 2012-01-21
-7506702 Chengdong Chengdong Chengdong,Chengdong Xiang,cheng dong xiang,城东乡 26.24563 117.61903 P PPLA4 CN 07 0 139 Asia/Shanghai 2012-01-21
-7508952 Fenghuangcheng Fenghuangcheng Fenghuangcheng,Fenghuangcheng Zhen,feng huang cheng,feng huang cheng zhen,凤凰城,凤凰城镇 39.75724 112.17585 P PPLA4 CN 24 0 1535 Asia/Shanghai 2012-01-21
-7508988 Hougaoshizhuang Hougaoshizhuang Gaoshizhuang Xiang,Hougaoshizhuang,gao shi zhuang xiang,hou gao shi zhuang,后高石庄,高石庄乡 39.8272 112.08028 P PPLA4 CN 24 0 1647 Asia/Shanghai 2012-01-21
-7508989 Jigaodeng Jigaodeng Jigaodeng,ji gao deng,计高登 39.48677 112.42717 P PPLA4 CN 24 0 1300 Asia/Shanghai 2012-01-21
-7508990 Xijiazhai Xijiazhai Xijiazhai,xi jia zhai,西家寨 39.46295 112.44767 P PPLA4 CN 24 0 1201 Asia/Shanghai 2012-01-21
-7509269 Gucheng Gucheng Gucheng,Gucheng Zhen,gu cheng,gu cheng zhen,古城,古城镇 39.4404 112.93414 P PPLA4 CN 24 0 1011 Asia/Shanghai 2012-01-21
-7511953 Dongpu Dongpu Dongpu,Dongpu Zhen,dong bu,dong bu zhen,东埔,东埔镇 23.7519 114.69294 P PPLA4 CN 30 0 47 Asia/Shanghai 2012-01-21
-7512456 Lakou Lakou Lakou,Lakou Zhen,lan kou,lan kou zhen,蓝口,蓝口镇 23.95038 115.08022 P PPLA4 CN 30 0 58 Asia/Shanghai 2012-01-21
-7512457 Yuannan Yuannan Yuannan,Yuannan Zhen,yuan nan,yuan nan zhen,源南,源南镇 23.71509 114.68525 P PPLA4 CN 30 0 42 Asia/Shanghai 2012-01-21
-7512458 Fucheng Fucheng Fucheng,Fucheng Zhen,fu cheng,fu cheng zhen,附城,附城镇 23.63934 115.16617 P PPLA4 CN 30 0 139 Asia/Shanghai 2012-01-21
-7512459 Dongpu Dongpu Dongpu,Dongpu Jiedao,dong bu,dong bu jie dao,东埔,东埔街道 23.74626 114.68498 P PPLA4 CN 30 0 48 Asia/Shanghai 2012-01-21
-7512460 Shangcheng Shangcheng Shangcheng,Shangcheng Jiedao,shang cheng,shang cheng jie dao,上城,上城街道 23.74034 114.69816 P PPLA4 CN 30 0 42 Asia/Shanghai 2012-01-21
-7513828 Changqiao Changqiao Changqiao,Changqiao Zhen,zhang qiao,zhang qiao zhen,长桥,长桥镇 33.93689 113.34826 P PPLA4 CN 09 0 95 Asia/Shanghai 2012-01-21
-7514212 Longcheng Longcheng Longcheng,Longcheng Zhen,long cheng,long cheng zhen,龙城,龙城镇 33.60719 113.91533 P PPLA4 CN 09 0 66 Asia/Shanghai 2012-01-21
-7514349 Jiangguanchi Jiangguanchi Jiangguanchi,Jiangguanchi Zhen,jiang guan chi,jiang guan chi zhen,将官池,将官池镇 34.00063 113.86914 P PPLA4 CN 09 0 68 Asia/Shanghai 2012-01-21
-7514579 Lujiawan Lujiawan Lujiawan,Lujiawan Xiang,lu jia wan,lu jia wan xiang,芦家湾,芦家湾乡 36.37441 106.58348 P PPLA4 CN 15 0 1823 Asia/Chongqing 2012-01-21
-7514592 Chedao Chedao Chedao,Chedao Xiang,che dao,che dao xiang,车道,车道乡 36.40077 106.73512 P PPLA4 CN 15 0 1660 Asia/Chongqing 2012-01-21
-7514620 Yuanmao Yuanmao Yuanmao,Yuanmao Zhen,yuan mao,yuan mao zhen,原峁,原峁镇 36.44635 106.73843 P PPLA4 CN 15 0 1679 Asia/Chongqing 2012-01-21
-7514837 Luoshanchuan Luoshanchuan Luoshanchuan,Luoshanchuan Xiang,luo shan chuan,luo shan chuan xiang,罗山川,罗山川乡 36.79621 106.94727 P PPLA4 CN 15 0 1695 Asia/Chongqing 2012-01-21
-7516064 Pengbao Pengbao Pengbao,Pengbao Xiang,peng bao,peng bao xiang,彭堡,彭堡乡 36.09187 106.14631 P PPLA4 CN 21 0 1660 Asia/Chongqing 2012-01-21
-7516065 Dongjiao Dongjiao Dongjiao,Dongjiao Xiang,dong jiao,dong jiao xiang,东郊,东郊乡 36.00458 106.28876 P PPLA4 CN 21 0 1719 Asia/Chongqing 2012-01-21
-7516066 Gaotai Gaotai Gaotai,Gaotai Xiang,gao tai,gao tai xiang,高台,高台乡 36.44875 106.37757 P PPLA4 CN 21 0 1621 Asia/Chongqing 2012-01-21
-7516114 Shicha Shicha Shicha,Shicha Xiang,shi cha,shi cha xiang,石岔,石岔乡 36.00794 106.54978 P PPLA4 CN 21 0 1725 Asia/Chongqing 2012-01-21
-7516115 Gongbailiang Gongbailiang Gongbailiang,Gongbailiang Xiang,gong bai liang,gong bai liang xiang,拱拜梁,拱拜梁乡 36.37546 106.30821 P PPLA4 CN 21 0 2006 Asia/Chongqing 2012-01-21
-7516116 Jiaocha Jiaocha Jiaocha,Jiaocha Xiang,jiao cha,jiao cha xiang,交岔,交岔乡 36.14666 106.5101 P PPLA4 CN 21 0 1758 Asia/Chongqing 2012-01-21
-7516117 Chengjiao Chengjiao Chengjiao,Chengjiao Xiang,cheng jiao,cheng jiao xiang,城郊,城郊乡 36.00807 106.29616 P PPLA4 CN 21 0 1714 Asia/Chongqing 2012-01-21
-7516118 Gonghe Gonghe Gonghe,Gonghe Xiang,gong he,gong he xiang,共和,共和乡 36.06956 106.3665 P PPLA4 CN 21 0 1717 Asia/Chongqing 2012-01-21
-7516119 Maqu Maqu Maqu,Maqu Xiang,ma qu,ma qu xiang,马渠,马渠乡 36.39605 106.46818 P PPLA4 CN 21 0 1710 Asia/Chongqing 2012-01-21
-7516120 Magaozhuang Magaozhuang Magaozhuang,Magaozhuang Xiang,ma gao zhuang,ma gao zhuang xiang,马高庄,马高庄乡 36.87395 106.44157 P PPLA4 CN 21 0 1554 Asia/Chongqing 2012-01-21
-7516121 Heiquan Heiquan Heiquan,Heiquan Zhen,hei quan,hei quan zhen,黑泉,黑泉镇 36.10552 106.18651 P PPLA4 CN 21 0 1649 Asia/Chongqing 2012-01-21
-7516122 Xinshan Xinshan Xinshan,Xinshancun Xiang,xin shan,xin shan xiang,新山,新山乡 36.35487 106.37859 P PPLA4 CN 21 0 1955 Asia/Chongqing 2012-01-21
-7516123 Yanglu Yanglu Yanglu,Yanglu Xiang,羊路,羊路乡 36.63655 106.14164 P PPLA4 CN 21 0 1433 Asia/Chongqing 2010-08-14
-7516193 Baitouli Baitouli Baitouli,Baitouli Xiang,bai tou li,bai tou li xiang,白头里,白头里乡 39.90338 112.49145 P PPLA4 CN 24 0 1378 Asia/Shanghai 2012-01-21
-7516251 Yangqianhe Yangqianhe Yangqianhe,Yangqianhe Xiang,yang qian he,yang qian he xiang,杨千河,杨千河乡 40.10129 112.30501 P PPLA4 CN 24 0 1347 Asia/Shanghai 2012-01-21
-7516270 Youwei Youwei Youwei,Youwei Zhen,you wei,you wei zhen,右卫,右卫镇 40.16265 112.34618 P PPLA4 CN 24 0 1288 Asia/Shanghai 2012-01-21
-7516417 Shuiyao Shuiyao Shuiyao,Shuiyao Xiang,shui yao,shui yao xiang,水窑,水窑乡 39.90633 112.88051 P PPLA4 CN 24 0 1503 Asia/Shanghai 2012-01-21
-7516431 Dianwan Dianwan Dianwan,Dianwan Zhen,dian wan,dian wan zhen,店湾,店湾镇 39.98665 112.86549 P PPLA4 CN 24 0 1423 Asia/Shanghai 2012-01-21
-7516451 Que’ershan Que'ershan Que'ershan,Que'ershan Zhen,Que’ershan,Que’ershan Zhen,que r shan,que r shan zhen,鹊儿山,鹊儿山镇 40.11914 112.94328 P PPLA4 CN 24 0 1227 Asia/Shanghai 2012-01-21
-7516804 Hadapu Zhen Hadapu Zhen Hadapu Zhen,ha da pu zhen,哈达铺镇 34.23132 104.22301 P PPLA4 CN 15 0 2234 Asia/Chongqing 2012-01-21
-7516812 Lichuan Zhen Lichuan Zhen Lichuan Zhen,li chuan zhen,理川镇 34.24845 104.31948 P PPLA4 CN 15 0 2233 Asia/Chongqing 2012-01-21
-7516890 Lujing Zhen Lujing Zhen Lujing Zhen,lu jing zhen,闾井镇 34.31978 104.55724 P PPLA4 CN 15 0 2580 Asia/Chongqing 2012-01-21
-7517059 Chengjiao Zhen Chengjiao Zhen Chengjiao Zhen,cheng jiao zhen,城郊镇 34.43516 104.03986 P PPLA4 CN 15 0 2320 Asia/Chongqing 2012-01-21
-7517266 Tange Zhen Tange Zhen Tange Zhen,tan ge zhen,滩歌镇 34.62764 104.84062 P PPLA4 CN 15 0 1767 Asia/Chongqing 2012-01-21
-7517296 Xinsi Zhen Xinsi Zhen Xinsi Zhen,xin si zhen,新寺镇 34.64956 104.62988 P PPLA4 CN 15 0 1708 Asia/Chongqing 2012-01-21
-7517497 Yuanyang Zhen Yuanyang Zhen Yuanyang Zhen,yuan yang zhen,鸳鸯镇 34.78768 104.77531 P PPLA4 CN 15 0 1555 Asia/Chongqing 2012-01-21
-7517710 Santai Zhen Santai Zhen Santai Zhen,san tai zhen,三台镇 34.94931 104.72584 P PPLA4 CN 15 0 1662 Asia/Chongqing 2012-01-21
-7517713 Wenfeng Zhen Wenfeng Zhen Wenfeng Zhen,wen feng zhen,文峰镇 34.95179 104.69806 P PPLA4 CN 15 0 1673 Asia/Chongqing 2012-01-21
-7517772 Caizi Zhen Caizi Zhen Caizi Zhen,cai zi zhen,菜子镇 34.98848 104.47162 P PPLA4 CN 15 0 1942 Asia/Chongqing 2012-01-21
-7517793 Gongchang Zhen Gongchang Zhen Gongchang Zhen,gong chang zhen,巩昌镇 34.99881 104.64 P PPLA4 CN 15 0 1737 Asia/Chongqing 2012-01-21
-7517826 Tongchuan Tongchuan Tongchuan,Tongchuan Xiang,tong chuan,tong chuan xiang,桐川,桐川乡 36.01576 107.51797 P PPLA4 CN 15 0 1524 Asia/Chongqing 2012-01-21
-7517879 Binglincha Binglincha Binglincha,Binglincha Xiang,bing lin cha,bing lin cha xiang,冰淋岔,冰淋岔乡 36.04043 107.37264 P PPLA4 CN 15 0 1390 Asia/Chongqing 2012-01-21
-7517930 Nanzhuang Nanzhuang Nanzhuang,Nanzhuang Xiang,nan zhuang,nan zhuang xiang,南庄,南庄乡 36.06851 107.98171 P PPLA4 CN 15 0 1421 Asia/Chongqing 2012-01-21
-7517945 Xuanma Xuanma Xuanma,Xuanma Xiang,xuan ma,xuan ma xiang,玄马,玄马乡 36.07695 107.89125 P PPLA4 CN 15 0 1095 Asia/Chongqing 2012-01-21
-7517981 Wuchengzi Wuchengzi Wuchengzi,Wuchengzi Xiang,wu cheng zi,wu cheng zi xiang,吴城子,吴城子乡 36.09924 107.26471 P PPLA4 CN 15 0 1339 Asia/Chongqing 2012-01-21
-7518035 Caikouji Caikouji Caikouji,Caikouji Xiang,cai kou ji,cai kou ji xiang,蔡口集,蔡口集乡 36.13512 107.37041 P PPLA4 CN 15 0 1573 Asia/Chongqing 2012-01-21
-7518038 Dijiahe Dijiahe Dijiahe,Dijiahe Xiang,di jia he,di jia he xiang,翟家河,翟家河乡 36.13686 107.63228 P PPLA4 CN 15 0 1181 Asia/Chongqing 2012-01-21
-7518184 Wangzuizi Wangzuizi Wangzuizi,Wangzuizi Xiang,wang ju zi,wang ju zi xiang,王咀子,王咀子乡 36.22304 107.7772 P PPLA4 CN 15 0 1170 Asia/Chongqing 2012-01-21
-7518281 Shangliyuan Shangliyuan Shangliyuan,Shangliyuan Xiang,shang li yuan,shang li yuan xiang,上里塬,上里塬乡 36.28768 107.71725 P PPLA4 CN 15 0 1504 Asia/Chongqing 2012-01-21
-7518299 Hedao Hedao Hedao,Hedao Xiang,he dao,he dao xiang,合道,合道乡 36.29718 107.18778 P PPLA4 CN 15 0 1314 Asia/Chongqing 2012-01-21
-7518353 Heping Heping Heping,Heping Xiang,he ping,he ping xiang,何坪,何坪乡 36.33426 107.11551 P PPLA4 CN 15 0 1504 Asia/Chongqing 2012-01-21
-7518374 Xujiahe Xujiahe Xujiahe,Xujiahe Xiang,xu jia he,xu jia he xiang,许家河,许家河乡 36.34347 107.5932 P PPLA4 CN 15 0 1234 Asia/Chongqing 2012-01-21
-7518387 Luping Luping Luping,Luping Xiang,lu ping,lu ping xiang,路坪,路坪乡 36.35435 107.05687 P PPLA4 CN 15 0 1606 Asia/Chongqing 2012-01-21
-7518405 Wentai Wentai Wentai,Wentai Xiang,wen tai,wen tai xiang,温台,温台乡 36.36476 107.90748 P PPLA4 CN 15 0 1191 Asia/Chongqing 2012-01-21
-7518429 Liliangzi Liliangzi Liliangzi,Liliangzi Xiang,li liang zi,li liang zi xiang,李良子,李良子乡 36.38108 107.81818 P PPLA4 CN 15 0 1190 Asia/Chongqing 2012-01-21
-7518595 Xichuan Xichuan Xichuan,Xichuan Xiang,xi chuan,xi chuan xiang,西川,西川乡 36.49562 107.15008 P PPLA4 CN 15 0 1298 Asia/Chongqing 2012-01-21
-7518639 Miaoxiang Miaoxiang Miaoxiang,Miaoxiang Xiang,miao xiang,miao xiang xiang,庙巷,庙巷乡 36.5285 107.98688 P PPLA4 CN 15 0 1384 Asia/Chongqing 2012-01-21
-7518677 Bazhu Bazhu Bazhu,Bazhu Xiang,ba zhu,ba zhu xiang,八珠,八珠乡 36.55431 107.57498 P PPLA4 CN 15 0 1556 Asia/Chongqing 2012-01-21
-7518949 Qiaochuan Qiaochuan Qiaochuan,Qiaochuan Xiang,qiao chuan,qiao chuan xiang,乔川,乔川乡 36.76373 107.66969 P PPLA4 CN 15 0 1375 Asia/Chongqing 2012-01-21
-7519037 Siheyuan Siheyuan Siheyuan,Siheyuan Xiang,si he yuan,si he yuan xiang,四合塬,四合塬乡 36.85197 107.39554 P PPLA4 CN 15 0 1695 Asia/Chongqing 2012-01-21
-7520383 Xingyuan Xingyuan Xingyuan,Xingyuan Xiang,xing yuan,xing yuan xiang,杏园,杏园乡 39.16927 113.26884 P PPLA4 CN 24 0 938 Asia/Shanghai 2012-01-21
-7520825 Qianfoling Qianfoling Qianfoling,Qianfoling Zhen,qian fu ling,qian fu ling zhen,千佛岭,千佛岭镇 39.53479 113.82532 P PPLA4 CN 24 0 1394 Asia/Shanghai 2012-01-21
-7521060 Nanyulin Nanyulin Nanyulin,Nanyulin Xiang,nan yu lin,nan yu lin xiang,南榆林,南榆林乡 39.74119 113.56589 P PPLA4 CN 24 0 1169 Asia/Shanghai 2012-01-21
-7523527 Zonghan Zonghan Zonghan,Zonghan Jiedao,zong han,zong han jie dao,宗汉,宗汉街道 30.19222 121.2252 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7523551 Sanbei Sanbei Sanbei,Sanbei Zhen,san bei,san bei zhen,三北,三北镇 30.09488 121.49822 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7524461 Beiwa Beiwa Beiwa,Wangwa Zhen,bei wa,wang wa zhen,北洼,王洼镇 36.13884 106.60932 P PPLA4 CN 21 0 1767 Asia/Chongqing 2012-01-21
-7524638 Dongjiao Dongjiao Dongjiao,dong jiao,东郊 32.5009 119.93129 P PPLA4 CN 03 0 6 Asia/Shanghai 2012-01-21
-7524680 Shuangqiao Shuangqiao Shuangqiao,Shuangqiao Zhen,shuang qiao,shuang qiao zhen,双桥,双桥镇 30.0588 122.01144 P PPLA4 CN 02 0 1 Asia/Shanghai 2012-01-21
-7524999 Pingan Pingan Ping'an Zhen,Pingan,Ping’an Zhen,ping an,ping an zhen,平安,平安镇 30.89973 121.72595 P PPLA4 CN 23 0 6 Asia/Shanghai 2011-05-09
-7525001 Qianxu Zhen Qianxu Zhen Qianxu Zhen,qian wei zhen,钱圩镇 30.77672 121.24194 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-21
-7525002 Shaochang Zhen Shaochang Zhen Shaochang Zhen,shao chang zhen,邵厂镇 30.9084 121.75294 P PPLA4 CN 23 0 5 Asia/Shanghai 2011-05-09
-7525003 Shuyuan Zhen Shuyuan Zhen Shuyuan Zhen,shu yuan zhen,书院镇 30.93159 121.86019 P PPLA4 CN 23 0 5 Asia/Shanghai 2011-05-09
-7525062 Daotouzui Daotouzui Daotouzui,Fodu,dao tou zui,fu du,佛渡,道头嘴 29.74276 122.02166 P PPLA4 CN 02 0 95 Asia/Shanghai 2012-01-21
-7525337 Heshi Heshi Heshi,Heshi Zhen,he shi,he shi zhen,河失,河失镇 32.20666 120.13626 P PPLA4 CN 03 0 12 Asia/Shanghai 2012-01-21
-7525339 Xiqiao Xiqiao Xiqiao,Xiqiao Zhen,xi qiao,xi qiao zhen,溪桥,溪桥镇 32.22576 120.18218 P PPLA4 CN 03 0 6 Asia/Shanghai 2012-01-21
-7525692 Yaosai Yaosai Yaosai,Yaosai Zhen,yao sai,yao sai zhen,要塞,要塞镇 31.90543 120.2821 P PPLA4 CN 03 0 8 Asia/Shanghai 2012-01-21
-7526455 Lishi Lishi Lishi,Lishi Zhen,li shi,li shi zhen,李市,李市镇 32.13539 120.30598 P PPLA4 CN 03 0 8 Asia/Shanghai 2012-01-21
-7526456 Qixu Qixu Dongtouxu,Qixu,Qixu Zhen,dong tou wei,qi wei,qi wei zhen,七圩,七圩镇,东头圩 32.02739 120.01467 P PPLA4 CN 03 0 7 Asia/Shanghai 2012-01-21
-7526555 Lianyi Lianyi Lianyi,Lianyi Zhen,lian yi,lian yi zhen,廉贻,廉贻镇 32.89947 120.23912 P PPLA4 CN 03 0 3 Asia/Shanghai 2012-01-21
-7526556 Wulie Wulie Wulie,Wulie Zhen,wu lie,wu lie zhen,五烈,五烈镇 32.85906 120.24206 P PPLA4 CN 03 0 1 Asia/Shanghai 2012-01-21
-7526675 Guangshan Guangshan Guangshan,Guangshan Zhen,guang shan,guang shan zhen,广山,广山镇 32.8047 120.20974 P PPLA4 CN 03 0 3 Asia/Shanghai 2012-01-21
-7527252 Chaoqiao Chaoqiao Chaoqiao,Chaoqiao Zhen,chao qiao,chao qiao zhen,潮桥,潮桥镇 32.55031 120.67371 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-21
-7527663 Xinqiao Xinqiao Xinqiao,Xinqiao Zhen,xin qiao,xin qiao zhen,新桥,新桥镇 32.9457 120.79336 P PPLA4 CN 04 0 2 Asia/Shanghai 2012-01-21
-7527844 Datong Datong Datong,Datong Zhen,da tong,da tong zhen,大同,大同镇 32.34928 120.52031 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-21
-7527899 Dong’an Dong'an Dong'an,Dong'an Zhen,Dong’an,Dong’an Zhen,dong an,dong an zhen,东安,东安镇 32.44617 120.50479 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-21
-7530465 Yangjialusanqiu Yangjialusanqiu Xiaocao'e Zhen,Xiaocao’e Zhen,Yangjialusanqiu,xiao cao e zhen,yang jia lu san qiu,小曹娥镇,杨家路三丘 30.21964 121.06795 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-21
-7536143 Saga Saga Kyakyaru,Saga,Сага 29.32367 85.22601 P PPL CN 14 3765 4475 Asia/Urumqi 2010-10-07
-7536596 Chang’an Chang'an Chang'an,Chang'an Zhen,Chang’an,Chang’an Zhen,zhang an,zhang an zhen,长安,长安镇 43.02719 129.66855 P PPLA4 CN 05 0 140 Asia/Harbin 2012-01-21
-7539258 Huangni Huangni Huangni,Xintunzi Zhen,huang ni,xin tun zi zhen,新屯子镇,黄泥 42.55639 127.2965 P PPLA4 CN 05 0 506 Asia/Harbin 2012-01-21
-7544732 Xianpudong Xianpudong Baijin Xiang,Xianpudong,bai jin xiang,xian pu dong,咸朴洞,白金乡 42.45034 129.40287 P PPLA4 CN 05 0 316 Asia/Harbin 2012-01-21
-7544733 Chongmin Chongmin Chongmin,Dexin Xiang,chong min,de xin xiang,崇民,德新乡 42.72839 129.59935 P PPLA4 CN 05 0 308 Asia/Harbin 2012-01-21
-7553752 Minzhu Minzhu Minzhu,Taiwang,Taiwang Xiang,Taiwang Zhen,min zhu,tai wang,tai wang xiang,tai wang zhen,太王,太王乡,太王镇,民主 41.13215 126.20181 P PPLA4 CN 05 0 179 Asia/Harbin 2012-01-21
-7569004 Hulutao Hulutao Hulutao,Hulutao Xiang,hu lu tao,hu lu tao xiang,葫芦套,葫芦套乡 41.79331 125.93976 P PPLA4 CN 05 0 443 Asia/Harbin 2012-01-21
-7569005 Jindou Jindou Jindou,Jindou Chaoxianzu Manzu Xiang,jin dou,jin dou chao xian zu man zu xiang,金斗,金斗朝鲜族满族乡 41.70477 125.69094 P PPLA4 CN 05 0 396 Asia/Harbin 2012-01-21
-7569006 Jiangdianzi Jiangdianzi Jiangdian Zhen,Jiangdianzi,jiang dian zhen,jiang dian zi,江甸子,江甸镇 41.46895 125.71319 P PPLA4 CN 05 0 332 Asia/Harbin 2012-01-21
-7569007 Dachuan Dachuan Dachuan,Dachuan Xiang,da chuan,da chuan xiang,大川,大川乡 41.54777 125.53902 P PPLA4 CN 05 0 399 Asia/Harbin 2012-01-21
-7578270 Chisong Chisong Chisong,Chisong Xiang,chi song,chi song xiang,赤松,赤松乡 42.57996 127.00562 P PPLA4 CN 05 0 527 Asia/Harbin 2012-01-21
-7578271 Dujia Dujia Dujia,Xinancha,Xinancha Zhen,du jia,xi nan cha,xi nan cha zhen,杜家,西南岔,西南岔镇 42.65086 126.89333 P PPLA4 CN 05 0 491 Asia/Harbin 2012-01-21
-7578272 Yanping Yanping Yanping,Yanping Xiang,yan ping,yan ping xiang,燕平,燕平乡 42.26868 126.91122 P PPLA4 CN 05 0 600 Asia/Harbin 2012-01-21
-7578502 Sanchahe Sanchahe Sanchahe,san cha he,三岔河 43.5313 131.18966 P PPLA4 CN 08 0 490 Asia/Harbin 2012-01-21
-7578503 Sanchakou Chaoxianzu Sanchakou Chaoxianzu Sanchakou Chaoxianzu,Sanchakou Chaoxianzu Zhen,san cha kou chao xian zu,san cha kou chao xian zu zhen,三岔口朝鲜族,三岔口朝鲜族镇 44.01695 131.23639 P PPLA4 CN 08 0 98 Asia/Harbin 2012-01-21
-7580140 Gongji Gongji Gongji,Gongjixiang,gong ji,gong ji xiang,公吉,公吉乡 42.99505 126.88679 P PPLA4 CN 05 0 308 Asia/Harbin 2012-01-21
-7602670 Zhu Cheng City Zhu Cheng City 35.99502 119.40259 P PPLA3 CN 25 1000000 67 Asia/Shanghai 2010-11-25
-7622992 Mangdang Mangdang Mangdang,Mangdang Zhen,mang dang,mang dang zhen,茫荡,茫荡镇 26.68778 118.15623 P PPLA4 CN 07 0 90 Asia/Shanghai 2012-01-21
-7628535 Nanzheng Chengguanzhen Nanzheng Chengguanzhen Chengguan Zhen,Nanzheng,Nanzheng Chengguanzhen,Nanzheng Xian,cheng guan zhen,nan zheng,nan zheng cheng guan zhen,nan zheng xian,南郑,南郑县,南郑城关镇,城关镇 33.00452 106.93466 P PPLA3 CN 26 0 534 Asia/Chongqing 2012-01-21
-7628559 Minyue Minyue Minyue,Minyue Chaoxianzuxiang,min le,min le chao xian zu xiang,民乐,民乐朝鲜族乡 45.0518 127.0489 P PPLA4 CN 08 0 166 Asia/Harbin 2012-01-21
-7628562 Ashihe Ashihe Ashihe,Ashihe Jiedao,a shen he,a shen he jie dao,阿什河,阿什河街道 45.5358 126.9737 P PPLA4 CN 08 0 153 Asia/Harbin 2012-01-21
-7628595 Yonghe Yonghe Yonghe,Yonghe Xiang,yong he,yong he xiang,永和,永和乡 45.82781 127.10647 P PPLA4 CN 08 0 135 Asia/Harbin 2012-01-21
-7628605 Guang’en Guang'en Guang'en,Guang'en Xiang,Guang’en,Guang’en Xiang,guang en,guang en xiang,光恩,光恩乡 45.64777 127.81626 P PPLA4 CN 08 0 229 Asia/Harbin 2012-01-21
-7628682 Yanhe Yanhe Yanhe,Yanhe Chaoxianzuxiang,yan he,yan he chao xian zu xiang,延和,延和朝鲜族乡 45.11586 126.91975 P PPLA4 CN 05 0 161 Asia/Harbin 2012-01-21
-7630035 Songhuajiang Songhuajiang Songhuajiang,Songhuajiang Xiang,song hua jiang,song hua jiang xiang,松花江,松花江乡 46.03716 127.32551 P PPLA4 CN 08 0 134 Asia/Harbin 2012-01-21
-7630128 Xiaoshanzi Xiaoshanzi Xiaoshanzi,Xiaoshanzi Zhen,xiao shan zi,xiao shan zi zhen,小山子,小山子镇 44.90712 127.6024 P PPLA4 CN 08 0 201 Asia/Harbin 2012-01-21
-7630129 Hedong Hedong Hedong,Hedong Zhen,he dong,he dong zhen,河东,河东镇 45.25668 128.03096 P PPLA4 CN 08 0 186 Asia/Harbin 2012-01-21
-7630130 Jiaojie Jiaojie Jiaojie,Jiaojie Zhen,jiao jie,jiao jie zhen,交界,交界镇 45.34724 127.08875 P PPLA4 CN 08 0 179 Asia/Harbin 2012-01-21
-7630131 Songfengshan Songfengshan Songfengshan,Songfengshan Zhen,song feng shan,song feng shan zhen,松峰山,松峰山镇 45.40209 127.43068 P PPLA4 CN 08 0 250 Asia/Harbin 2012-01-21
-7630132 Shuangfeng Shuangfeng Shuangfeng,Shuangfeng Zhen,shuang feng,shuang feng zhen,双丰,双丰镇 45.44138 126.96665 P PPLA4 CN 08 0 162 Asia/Harbin 2012-01-21
-7630133 Pingfang Pingfang Pingfang,Pingfang Zhen,ping fang,ping fang zhen,平坊,平坊镇 45.55415 127.46409 P PPLA4 CN 08 0 343 Asia/Harbin 2012-01-21
-7630134 Ningyuan Ningyuan Ningyuan,Ningyuan Zhen,ning yuan,ning yuan zhen,宁远,宁远镇 45.73087 127.9162 P PPLA4 CN 08 0 172 Asia/Harbin 2012-01-21
-7630135 Feiketu Feiketu Feiketu,Feiketu Zhen,fei ke tu,fei ke tu zhen,蜚克图,蜚克图镇 45.74694 127.14519 P PPLA4 CN 08 0 155 Asia/Harbin 2012-01-21
-7630136 Juren Juren Juren,Juren Zhen,ju ren,ju ren zhen,居仁,居仁镇 45.76075 127.27976 P PPLA4 CN 08 0 163 Asia/Harbin 2012-01-21
-7630137 Yongyuan Yongyuan Yongyuan,Yongyuan Zhen,yong yuan,yong yuan zhen,永源,永源镇 45.77387 127.00817 P PPLA4 CN 08 0 159 Asia/Harbin 2012-01-21
-7630138 Tangfang Tangfang Tangfang,Tangfang Zhen,tang fang,tang fang zhen,糖坊,糖坊镇 45.90943 127.05729 P PPLA4 CN 08 0 131 Asia/Harbin 2012-01-21
-7630139 Zhiguang Zhiguang Zhiguang,Zhiguang Xiang,zhi guang,zhi guang xiang,志广,志广乡 44.97133 127.46117 P PPLA4 CN 08 0 196 Asia/Harbin 2012-01-21
-7630140 Weiguo Weiguo Weiguo,Weiguo Xiang,wei guo,wei guo xiang,卫国,卫国乡 45.02376 127.34832 P PPLA4 CN 08 0 182 Asia/Harbin 2012-01-21
-7630141 Changbao Changbao Changbao,Changbao Xiang,chang bao,chang bao xiang,常堡,常堡乡 45.03519 127.20932 P PPLA4 CN 08 0 178 Asia/Harbin 2012-01-21
-7630142 Yingchengzi Yingchengzi Yingchengzi,Yingchengzi Manzuxiang,ying cheng zi,ying cheng zi man zu xiang,营城子,营城子满族乡 45.16778 126.95588 P PPLA4 CN 08 0 178 Asia/Harbin 2012-01-21
-7630143 Bajiazi Bajiazi Bajiazi,Bajiazi Xiang,ba jia zi,ba jia zi xiang,八家子,八家子乡 45.22928 127.04151 P PPLA4 CN 08 0 203 Asia/Harbin 2012-01-21
-7630144 Changshou Changshou Changshou,Changshou Xiang,zhang shou,zhang shou xiang,长寿,长寿乡 45.2696 127.93293 P PPLA4 CN 08 0 192 Asia/Harbin 2012-01-21
-7630145 Daling Daling Daling,Daling Xiang,da ling,da ling xiang,大岭,大岭乡 45.5063 127.11266 P PPLA4 CN 08 0 183 Asia/Harbin 2012-01-21
-7630146 Sheli Sheli Sheli,Sheli Xiang,she li,she li xiang,舍利,舍利乡 45.56418 126.92783 P PPLA4 CN 08 0 180 Asia/Harbin 2012-01-21
-7630147 Hongxing Hongxing Hongxing,Hongxing Xiang,hong xing,hong xing xiang,红星,红星乡 45.56576 127.11126 P PPLA4 CN 08 0 172 Asia/Harbin 2012-01-21
-7630148 Xiangyang Xiangyang Xiangyang,Xiangyang Xiang,xiang yang,xiang yang xiang,向阳,向阳乡 45.75297 126.92304 P PPLA4 CN 08 0 147 Asia/Harbin 2012-01-21
-7630149 Sanbao Sanbao Sanbao,Sanbao Xiang,san bao,san bao xiang,三宝,三宝乡 45.75595 127.66841 P PPLA4 CN 08 0 167 Asia/Harbin 2012-01-21
-7630150 Chang’an Chang'an Chang'an,Chang'an Xiang,Chang’an,Chang’an Xiang,chang an,chang an xiang,常安,常安乡 45.76352 127.838 P PPLA4 CN 08 0 155 Asia/Harbin 2012-01-21
-7630151 Yonghe Yonghe Yonghe,Yonghe Xiang,yong he,yong he xiang,永和,永和乡 45.83989 127.08737 P PPLA4 CN 08 0 137 Asia/Harbin 2012-01-21
-7630152 Niaohe Niaohe Niaohe,Niaohe Xiang,niao he,niao he xiang,鸟河,鸟河乡 45.90223 127.4577 P PPLA4 CN 08 0 168 Asia/Harbin 2012-01-21
-7630153 Minhe Minhe Minhe,Minhe Xiang,min he,min he xiang,民和,民和乡 45.90587 127.56196 P PPLA4 CN 08 0 159 Asia/Harbin 2012-01-21
-7630154 Manjing Manjing Manjing,Manjing Xiang,man jing,man jing xiang,满井,满井乡 45.90932 127.27202 P PPLA4 CN 08 0 123 Asia/Harbin 2012-01-21
-7630155 Jianguo Jianguo Jianguo,Jianguo Xiang,jian guo,jian guo xiang,建国,建国乡 45.99286 128.06705 P PPLA4 CN 08 0 126 Asia/Harbin 2012-01-21
-7630156 Jixing Jixing Jixing,Jixing Xiang,ji xing,ji xing xiang,吉兴,吉兴乡 46.00604 127.91158 P PPLA4 CN 08 0 131 Asia/Harbin 2012-01-21
-7630157 Fujiang Fujiang Fujiang,Fujiang Xiang,fu jiang,fu jiang xiang,富江,富江乡 46.03267 127.45638 P PPLA4 CN 08 0 121 Asia/Harbin 2012-01-21
-7630159 Yanglin Yanglin Yanglin,Yanglin Xiang,yang lin,yang lin xiang,杨林,杨林乡 46.0776 127.13155 P PPLA4 CN 08 0 141 Asia/Harbin 2012-01-21
-7632853 Haitangwan Haitangwan Haitangwan,Haitangwan Zhen,hai tang wan,hai tang wan zhen,海棠湾,海棠湾镇 18.40337 109.75004 P PPLA4 CN 31 0 9 Asia/Chongqing 2012-01-21
-7632854 Donghe Donghe Donghe,Donghe Zhen,dong he,dong he zhen,东河,东河镇 19.0508 108.93768 P PPLA4 CN 31 0 112 Asia/Chongqing 2012-01-21
-7635189 Yelin Yelin Yelin,Yelin Zhen,ye lin,ye lin zhen,椰林,椰林镇 18.52216 110.04106 P PPLA4 CN 31 0 6 Asia/Chongqing 2012-01-21
-7635190 Maogan Maogan Maogan,Maogan Xiang,mao gan,mao gan xiang,毛感,毛感乡 18.61471 109.50392 P PPLA4 CN 31 0 538 Asia/Chongqing 2012-01-21
-7635419 Taipinghu Taipinghu Taipinghu,Taipinghu Zhen,tai ping hu,tai ping hu zhen,太平湖,太平湖镇 30.36727 118.03974 P PPLA4 CN 01 0 130 Asia/Shanghai 2012-01-21
-7636830 Haoshan Haoshan Haoshan,Haoshan Xiang,hao shan,hao shan xiang,浩山,浩山乡 29.88454 116.7906 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-21
-7636833 Chengshan Chengshan Chengshan,Chengshan Zhen,cheng shan,cheng shan zhen,城山,城山镇 29.6015 116.25708 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-21
-7636834 Wushan Wushan Wushan,Wushan Zhen,wu shan,wu shan zhen,武山,武山镇 29.58348 116.33092 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-21
-7636836 Shishan Shishan Shishan,Shishan Xiang,shi shan,shi shan xiang,狮山,狮山乡 29.36097 116.48293 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-21
-7636837 Yaquehu Yaquehu Yaquehu,Yaquehu Xiang,ya que hu,ya que hu xiang,鸦鹊湖,鸦鹊湖乡 29.3239 116.6294 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-21
-7636840 Dingshan Dingshan Dingshan,Dingshan Zhen,ding shan,ding shan zhen,定山,定山镇 29.82356 116.40992 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-21
-7636841 Liaohua Liaohua Liaohua,Liaohua Zhen,liao hua,liao hua zhen,蓼花,蓼花镇 29.39308 115.9961 P PPLA4 CN 03 0 33 Asia/Shanghai 2011-01-05
-7636842 Changyi Changyi Changyi,Changyi Xiang,chang yi,chang yi xiang,昌邑,昌邑乡 29.02443 116.0606 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-21
-7636843 Yujiahe Yujiahe Yujiahe,Yujiahe Xiang,yu jia he,yu jia he xiang,虞家河,虞家河乡 29.68516 116.04624 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-21
-7636846 Mingshan Mingshan Mingshan,Mingshan Xiang,ming shan,ming shan xiang,鸣山,鸣山乡 29.42103 116.46359 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-21
-7636847 Baishazhou Baishazhou Baishazhou,Baishazhou Xiang,bai sha zhou,bai sha zhou xiang,白沙洲,白沙洲乡 29.16026 116.61448 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-21
-7636848 Huanghua Huanghua Huanghua,Huanghua Xiang,Huanghua Zhen,huang hua,huang hua xiang,huang hua zhen,黄花,黄花乡,黄花镇 29.86256 116.5947 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-21
-7636849 Maying Maying Maying,Maying Zhen,ma ying,ma ying zhen,马影,马影镇 29.72463 116.29204 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7636850 Tuanlin Tuanlin Tuanlin,Tuanlin Xiang,tuan lin,tuan lin xiang,团林,团林乡 29.07204 116.70274 P PPLA4 CN 03 0 18 Asia/Shanghai 2012-01-21
-7636852 Tianhong Tianhong Tianhong,Tianhong Zhen,tian hong,tian hong zhen,天红,天红镇 29.68456 116.43811 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-21
-7636855 Xiangxi Xiangxi Xiangxi,Xiangxi Xiang,xiang xi,xiang xi xiang,芗溪,芗溪乡 29.24073 116.54824 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7636858 Yangfeng Yangfeng Yangfeng,Yangfeng Xiang,yang feng,yang feng xiang,阳峰,阳峰乡 29.29108 116.37765 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7636859 Dagang Dagang Dagang,Dagang Zhen,da gang,da gang zhen,大港,大港镇 29.54661 116.48235 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-21
-7636860 Cailing Cailing Cailing,Cailing Zhen,cai ling,cai ling zhen,蔡岭,蔡岭镇 29.49985 116.38109 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-21
-7636862 Fulong Fulong Fulong,Fulong Xiang,fu long,fu long xiang,付垄,付垄乡,付垅乡,傅垄乡 29.66007 116.33752 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-21
-7636867 Beishan Beishan Beishan,Beishan Xiang,bei shan,bei shan xiang,北山,北山乡 29.29258 116.19527 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-21
-7636868 Bailu Bailu Bailu,Bailu Zhen,bai lu,bai lu zhen,白鹿,白鹿镇 29.48619 116.03939 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-21
-7636869 Yinbaohu Yinbaohu Yinbaohu,Yinbaohu Xiang,yin bao hu,yin bao hu xiang,银宝湖,银宝湖乡 29.29094 116.5795 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-21
-7636871 Shuanggang Shuanggang Shuanggang,Shuanggang Zhen,shuang gang,shuang gang zhen,双港,双港镇 29.07511 116.6156 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-21
-7636878 Dongsheng Dongsheng Dongsheng,Dongsheng Zhen,dong sheng,dong sheng zhen,东升,东升镇 29.83041 116.69552 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-21
-7636879 Hehe Hehe Hehe,Hehe Xiang,he he,he he xiang,和合,和合乡 29.23068 116.2949 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7636880 Xiyuan Xiyuan Xiyuan,Xiyuan Xiang,xi yuan,xi yuan xiang,西源,西源乡 29.21608 116.42301 P PPLA4 CN 03 0 37 Asia/Shanghai 2012-01-21
-7636881 Huangcun Huangcun Huangcun,Huangcun Xiang,huang cun,huang cun xiang,凰村,凰村乡 29.77081 116.31996 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-21
-7636882 Furongdun Furongdun Furongdun,Furongdun Zhen,fu rong dun,fu rong dun zhen,芙蓉墩,芙蓉墩镇 29.85943 116.49322 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-21
-7636883 Dasha Dasha Dasha,Dasha Zhen,da sha,da sha zhen,大沙,大沙镇 29.26465 116.32749 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-21
-7636884 Dashu Dashu Dashu,Dashu Xiang,da shu,da shu xiang,大树,大树乡 29.27808 116.26192 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-21
-7636886 Duobao Duobao Duobao,Duobao Xiang,duo bao,duo bao xiang,多宝,多宝乡 29.40366 116.1234 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-21
-7636888 Chunqiao Chunqiao Chunqiao,Chunqiao Xiang,chun qiao,chun qiao xiang,春桥,春桥乡 29.53742 116.27925 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-21
-7636889 Zhangqing Zhangqing Zhangqing,Zhangqing Xiang,zhang qing,zhang qing xiang,张青,张青乡 29.7151 116.33223 P PPLA4 CN 03 0 32 Asia/Shanghai 2012-01-21
-7636891 Zuoli Zuoli Zuoli,Zuoli Zhen,zuo li,zuo li zhen,左里,左里镇 29.424 116.19667 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-21
-7636892 Dalong Dalong Dalong,Dalong Xiang,da long,da long xiang,大垄,大垄乡,大垅乡 29.74413 116.38433 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-21
-7636895 Zhegang Zhegang Zhegang,Zhegang Xiang,zhe gang,zhe gang xiang,柘港,柘港乡 29.3455 116.73081 P PPLA4 CN 03 0 29 Asia/Shanghai 2012-01-21
-7636896 Zhuhu Zhuhu Zhuhu,Zhuhu Xiang,zhu hu,zhu hu xiang,珠湖,珠湖乡 29.18647 116.67044 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-21
-7636899 Sushan Sushan Sushan,Sushan Xiang,su shan,su shan xiang,苏山,苏山乡 29.50108 116.20625 P PPLA4 CN 03 0 24 Asia/Shanghai 2012-01-21
-7636900 Zhongguan Zhongguan Zhongguan,Zhongguan Zhen,zhong guan,zhong guan zhen,中馆,中馆镇 29.38379 116.53264 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-21
-7637537 Sixi Sixi Sixi,Sixi Xiang,si xi,si xi xiang,泗溪,泗溪乡 30.01866 118.05646 P PPLA4 CN 01 0 372 Asia/Shanghai 2012-01-21
-7637571 Yingzhou Yingzhou Yingzhou,Yingzhou Xiang,ying zhou xiang,瀛洲乡 30.06173 118.64434 P PPLA4 CN 01 0 180 Asia/Shanghai 2012-01-21
-7637609 Xiancun Xiancun Xiancun,Xiancun Xiang,xian cun,xian cun xiang,贤村,贤村乡 30.13665 118.01458 P PPLA4 CN 01 0 294 Asia/Shanghai 2012-01-21
-7637669 Jiapeng Jiapeng Jiapeng,Jiapeng Xiang,jia peng,jia peng xiang,家朋,家朋乡 30.24027 118.80909 P PPLA4 CN 01 0 280 Asia/Shanghai 2012-01-21
-7637859 Taohuatan Taohuatan Taohuatan,Taohuatan Zhen,tao hua tan,tao hua tan zhen,桃花潭,桃花潭镇 30.48869 118.1455 P PPLA4 CN 01 0 62 Asia/Shanghai 2012-01-21
-7638021 Yangong Yangong Yangong,Yangong Zhen,yan gong,yan gong zhen,晏公,晏公镇 30.65062 118.45019 P PPLA4 CN 01 0 61 Asia/Shanghai 2012-01-21
-7638138 Changqiao Changqiao Changqiao,Changqiao Xiang,chang qiao,chang qiao xiang,昌桥,昌桥乡 30.76 118.40544 P PPLA4 CN 01 0 50 Asia/Shanghai 2012-01-21
-7638154 Sanli Sanli Sanli,Sanli Zhen,san li,san li zhen,三里,三里镇 30.77545 118.25476 P PPLA4 CN 01 0 35 Asia/Shanghai 2012-01-21
-7638278 Daihui Daihui Dahui Zhen,Daihui,dai hui,dai hui zhen,戴汇,戴汇镇 30.89089 118.18307 P PPLA4 CN 01 0 104 Asia/Shanghai 2012-01-21
-7638315 Tianhu Tianhu Tianhu,Tianhu Zhen,tian hu,tian hu zhen,天湖,天湖镇 30.91674 118.59686 P PPLA4 CN 01 0 42 Asia/Shanghai 2012-01-21
-7638764 Hanlin Hanlin Hanlin,Hanlin Zhen,han lin,han lin zhen,翰林,翰林镇 19.33388 110.25826 P PPLA4 CN 31 0 138 Asia/Chongqing 2012-01-21
-7638765 Fuwen Fuwen Fuwen,Fuwen Zhen,fu wen,fu wen zhen,富文,富文镇 19.55137 110.2554 P PPLA4 CN 31 0 65 Asia/Chongqing 2012-01-21
-7640667 Xiaxin Xiaxin Xiaxin,Xiaxin Zhen,xia xin,xia xin zhen,下新,下新镇 29.98971 116.00674 P PPLA4 CN 12 0 23 Asia/Shanghai 2012-01-21
-7640668 Liuzuo Liuzuo Liuzuo,Liuzuo Xiang,liu zuo,liu zuo xiang,刘佐,刘佐乡 29.82296 116.0973 P PPLA4 CN 12 0 17 Asia/Shanghai 2012-01-21
-7640676 Tielu Tielu Tielu,Tielu Xiang,tie lu,tie lu xiang,铁炉,铁炉乡 29.60826 116.70879 P PPLA4 CN 01 0 51 Asia/Shanghai 2012-01-21
-7640683 Longquan Longquan Longquan,Longquanzhen,long quan,long quan zhen,龙泉,龙泉镇 29.64007 116.81353 P PPLA4 CN 01 0 35 Asia/Shanghai 2012-01-21
-7641247 Huangbai Huangbai Huangbai,Huangbai Xiang,huang bai,huang bai xiang,黄柏,黄柏乡 25.9553 116.00596 P PPLA4 CN 03 0 234 Asia/Shanghai 2012-01-21
-7641248 Zeqin Zeqin Zeqin,Zeqin Xiang,ze qin,ze qin xiang,泽覃,泽覃乡 25.84356 116.01545 P PPLA4 CN 03 0 203 Asia/Shanghai 2012-01-21
-7643644 Chengmen Chengmen Chengmen,Chengmen Xiang,cheng men,cheng men xiang,城门,城门乡 29.64353 115.81237 P PPLA4 CN 03 0 15 Asia/Shanghai 2012-01-21
-7643645 Lianhua Lianhua Lianhua,Lianhua Zhen,lian hua,lian hua zhen,莲花,莲花镇 29.64095 115.9793 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-21
-7643646 Shizi Shizi Shizi,Shizi Zhen,shi zi,shi zi zhen,狮子,狮子镇 29.60284 115.83624 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-21
-7643650 Jinhu Jinhu Jinhu,Jinhu Xiang,jin hu,jin hu xiang,金湖,金湖乡 29.28984 115.81463 P PPLA4 CN 03 0 21 Asia/Shanghai 2012-01-21
-7643651 Jiangshang Jiangshang Jiangshang,Jiangshang Xiang,jiang shang,jiang shang xiang,江上,江上乡 29.16418 115.59484 P PPLA4 CN 03 0 26 Asia/Shanghai 2012-01-21
-7643652 Xiafan Xiafan Xiafan,Xiafan Zhen,xia fan,xia fan zhen,夏畈,夏畈镇 29.76747 115.54216 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-21
-7643653 Lixin Lixin Lixin,Lixin Xiang,li xin,li xin xiang,立新,立新乡 29.02224 115.74111 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-21
-7643654 Zequan Zequan Zequan,Zequan Xiang,ze quan,ze quan xiang,泽泉,泽泉乡 29.32433 115.84702 P PPLA4 CN 03 0 41 Asia/Shanghai 2012-01-21
-7643655 Baiyang Baiyang Baiyang,Baiyang Zhen,bai yang,bai yang zhen,白杨,白杨镇 29.73333 115.64942 P PPLA4 CN 03 0 31 Asia/Shanghai 2012-01-21
-7643656 Nanyang Nanyang Nanyang,Nanyang Xiang,nan yang,nan yang xiang,南阳,南阳乡 29.73485 115.51564 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-21
-7643657 Liaonan Liaonan Liaonan,Liaonan Xiang,liao nan,liao nan xiang,蓼南,蓼南乡 29.30126 115.96879 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-21
-7643658 Yong’an Yong'an Yong'an,Yong'an Xiang,Yong’an,Yong’an Xiang,yong an,yong an xiang,永安,永安乡 29.76534 115.78973 P PPLA4 CN 03 0 19 Asia/Shanghai 2012-01-21
-7643659 Linquan Linquan Linquan,Linquan Xiang,lin quan,lin quan xiang,林泉,林泉乡 29.4608 115.72709 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-21
-7643661 Chengzi Chengzi Chengzi,Chengzi Zhen,cheng zi,cheng zi zhen,城子,城子镇 29.83762 115.68839 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-21
-7643662 Wujiao Wujiao Wujiao,Wujiao Xiang,wu jiao,wu jiao xiang,武蛟,武蛟乡 29.76881 115.62245 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-21
-7643666 Meitang Meitang Meitang,Meitang Zhen,mei tang,mei tang zhen,梅棠,梅棠镇 29.24452 115.62808 P PPLA4 CN 03 0 43 Asia/Shanghai 2012-01-21
-7643668 Gaotang Gaotang Gaotang,Gaotang Xiang,gao tang,gao tang xiang,高塘,高塘乡 29.41465 115.77491 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-21
-7643670 Wushan Wushan Wushan,Wushan Xiang,wu shan,wu shan xiang,吴山,吴山乡 29.45176 115.65628 P PPLA4 CN 03 0 73 Asia/Shanghai 2012-01-21
-7643671 Xinhe Xinhe Xinhe,Xinhe Zhen,xin he,xin he zhen,新合,新合镇 29.61964 115.76906 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-21
-7643672 Sujiadang Sujiadang Sujiadang,Sujiadang Xiang,su jia dang,su jia dang xiang,苏家垱,苏家垱乡 29.27615 115.87198 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-21
-7643673 Fenglin Fenglin Fenglin,Fenglin Zhen,feng lin,feng lin zhen,丰林,丰林镇 29.39293 115.71771 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-21
-7643674 Jiuhe Jiuhe Jiuhe,Jiuhe Xiang,jiu he,jiu he xiang,九合,九合乡 29.05579 115.81827 P PPLA4 CN 03 0 20 Asia/Shanghai 2012-01-21
-7643676 Tiehe Tiehe Tiehe,Tiehe Xiang,tie he,tie he xiang,铁河,铁河乡 29.02703 115.97103 P PPLA4 CN 03 0 25 Asia/Shanghai 2012-01-21
-7643681 Sanjiao Sanjiao Sanjiao,Sanjiao Xiang,san jiao,san jiao xiang,三角,三角乡 29.04982 115.84392 P PPLA4 CN 03 0 22 Asia/Shanghai 2012-01-21
-7643682 Gaofeng Gaofeng Gaofeng,Gaofeng Zhen,gao feng,gao feng zhen,高丰,高丰镇 29.64273 115.55557 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-21
-7643683 Yanfang Yanfang Yanfang,Yanfang Zhen,yan fang,yan fang zhen,燕坊,燕坊镇 29.22369 115.70076 P PPLA4 CN 03 0 42 Asia/Shanghai 2012-01-21
-7643684 Hedong Hedong Hedong,Hedong Xiang,he dong,he dong xiang,河东,河东乡 29.33826 115.76627 P PPLA4 CN 03 0 23 Asia/Shanghai 2012-01-21
-7643685 Yongquan Yongquan Yongquan,Yongquan Xiang,yong quan,yong quan xiang,涌泉,涌泉乡 29.6172 115.6691 P PPLA4 CN 03 0 68 Asia/Shanghai 2012-01-21
-7643686 Hualin Hualin Hualin,Hualin Zhen,hua lin,hua lin zhen,华林,华林镇 29.3687 115.95112 P PPLA4 CN 03 0 27 Asia/Shanghai 2012-01-21
-7643687 Minshan Minshan Minshan,Minshan Xiang,min shan,min shan xiang,岷山,岷山乡 29.50583 115.74883 P PPLA4 CN 03 0 65 Asia/Shanghai 2012-01-21
-7643688 Baota Baota Baota,Baota Xiang,bao ta,bao ta xiang,宝塔,宝塔乡 29.32428 115.75258 P PPLA4 CN 03 0 30 Asia/Shanghai 2012-01-21
-7643690 Saiyang Saiyang Saiyang,Saiyang Zhen,sai yang,sai yang zhen,赛阳,赛阳镇 29.57885 115.92454 P PPLA4 CN 03 0 101 Asia/Shanghai 2012-01-21
-7643695 Aimin Aimin Aimin,Aimin Xiang,ai min,ai min xiang,爱民,爱民乡 29.44091 115.54164 P PPLA4 CN 03 0 79 Asia/Shanghai 2012-01-21
-7644170 Xianggui Xianggui Xianggui,Xianggui Zhen,xiang gui,xiang gui zhen,象贵,象贵镇 24.07889 113.76083 P PPLA4 CN 30 0 99 Asia/Shanghai 2012-01-21
-7644224 Yinghua Yinghua Yinghua,Yinghua Zhen,ying hua,ying hua zhen,英华,英华镇 24.22556 113.66333 P PPLA4 CN 30 0 75 Asia/Shanghai 2012-01-21
-7644499 Caishan Caishan Caishan,Caishan Zhen,cai shan,cai shan zhen,蔡山,蔡山镇 29.88366 115.78684 P PPLA4 CN 12 0 23 Asia/Shanghai 2012-01-21
-7644500 Xinkai Xinkai Xinkai,Xinkai Zhen,xin kai,xin kai zhen,新开,新开镇 29.81246 115.81046 P PPLA4 CN 12 0 18 Asia/Shanghai 2012-01-21
-7644501 Dajin Dajin Dajin,Dajin Zhen,da jin,da jin zhen,大金,大金镇 29.99785 115.6121 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-21
-7650833 Huanglin Huanglin Huanglin,Huanglin Xiang,huang lin,huang lin xiang,黄麟,黄麟乡 25.91798 115.62093 P PPLA4 CN 03 0 157 Asia/Shanghai 2012-01-21
-7650835 Yunshishan Yunshishan Yunshishan,Yunshishan Xiang,yun shi shan,yun shi shan xiang,云石山,云石山乡 25.86411 115.86332 P PPLA4 CN 03 0 187 Asia/Shanghai 2012-01-21
-7650838 Zhongshi Zhongshi Zhongshi,Zhongshi Xiang,zhong shi,zhong shi xiang,重石,重石乡 25.38746 115.41678 P PPLA4 CN 03 0 216 Asia/Shanghai 2012-01-21
-7650839 Lianjiang Lianjiang Lianjiang,Lianjiang Xiang,lian jiang,lian jiang xiang,濂江,濂江乡 25.13141 115.39286 P PPLA4 CN 03 0 288 Asia/Shanghai 2012-01-21
-7650840 Xinlong Xinlong Xinlong,Xinlong Xiang,xin long,xin long xiang,新龙,新龙乡 25.14515 115.32677 P PPLA4 CN 03 0 267 Asia/Shanghai 2012-01-21
-7650841 Gaoyunshan Gaoyunshan Gaoyunshan,Gaoyunshan Xiang,gao yun shan,gao yun shan xiang,高云山,高云山乡 25.16902 115.52191 P PPLA4 CN 03 0 623 Asia/Shanghai 2012-01-21
-7650842 Hushan Hushan Hushan,Hushan Xiang,hu shan,hu shan xiang,虎山,虎山乡 25.06714 115.10936 P PPLA4 CN 03 0 267 Asia/Shanghai 2012-01-21
-7650844 Jingshi Jingshi Jingshi,Jingshi Xiang,jing shi,jing shi xiang,靖石,靖石乡 25.66863 115.49672 P PPLA4 CN 03 0 231 Asia/Shanghai 2012-01-21
-7650845 Shuiyuan Shuiyuan Shuiyuan,Shuiyuan Xiang,shui yuan,shui yuan xiang,水源,水源乡 25.12614 115.63763 P PPLA4 CN 03 0 372 Asia/Shanghai 2012-01-21
-7650846 Changsha Changsha Changsha,Changsha Xiang,zhang sha,zhang sha xiang,长沙,长沙乡 25.47496 115.52274 P PPLA4 CN 03 0 192 Asia/Shanghai 2012-01-21
-7650850 Fucha Fucha Fucha,Fucha Xiang,fu cha,fu cha xiang,浮槎,浮槎乡 25.54112 115.43213 P PPLA4 CN 03 0 248 Asia/Shanghai 2012-01-21
-7650851 Zhuangkou Zhuangkou Zhuangkou,Zhuangkou Zhen,zhuang kou,zhuang kou zhen,庄口,庄口镇 25.73887 115.65566 P PPLA4 CN 03 0 171 Asia/Shanghai 2012-01-21
-7650852 Wenwuba Wenwuba Wenwuba,Wenwuba Zhen,wen wu ba,wen wu ba zhen,文武坝,文武坝镇 25.60317 115.79629 P PPLA4 CN 03 0 173 Asia/Shanghai 2012-01-21
-7651294 Xingangshan Xingangshan Xingangshan,Xingangshan Zhen,xin gang shan,xin gang shan zhen,新岗山,新岗山镇 29.10486 117.94298 P PPLA4 CN 03 0 90 Asia/Shanghai 2012-01-21
-7652261 Zheyuan Zheyuan Zheyuan,Zheyuan Xiang,zhe yuan,zhe yuan xiang,浙源,浙源乡 29.47235 117.86574 P PPLA4 CN 03 0 161 Asia/Shanghai 2012-01-21
-7652262 Hetang Hetang Hetang,Hetang Xiang,he tang,he tang xiang,荷塘,荷塘乡 29.17753 117.13844 P PPLA4 CN 03 0 124 Asia/Shanghai 2012-01-21
-7652264 Dongxi Dongxi Dongxi,Dongxi Xiang,dong xi,dong xi xiang,东溪,东溪乡 29.13566 117.01266 P PPLA4 CN 03 0 33 Asia/Shanghai 2012-01-21
-7652266 Hongyan Hongyan Hongyan,Hongyan Zhen,hong yan,hong yan zhen,洪岩,洪岩镇 29.03997 117.46299 P PPLA4 CN 03 0 59 Asia/Shanghai 2012-01-21
-7652269 Tuochuan Tuochuan Tuochuan,Tuochuan Xiang,tuo chuan,tuo chuan xiang,沱川,沱川乡 29.51932 117.81592 P PPLA4 CN 03 0 257 Asia/Shanghai 2012-01-21
-7652271 Wanggang Wanggang Wanggang,Wanggang Xiang,wang gang,wang gang xiang,王港,王港乡 29.38875 117.31427 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-21
-7652273 Shuangtian Shuangtian Shuangtian,Shuangtian Zhen,shuang tian,shuang tian zhen,双田,双田镇 29.05654 117.15577 P PPLA4 CN 03 0 36 Asia/Shanghai 2012-01-21
-7652275 Fengzhou Fengzhou Fengzhou,Fengzhou Xiang,feng zhou,feng zhou xiang,凤洲,凤洲乡 29.07643 117.5545 P PPLA4 CN 03 0 73 Asia/Shanghai 2012-01-21
-7652277 Jingcheng Jingcheng Jingcheng,Jingcheng Zhen,jing cheng,jing cheng zhen,竟成,竟成镇 29.28437 117.21816 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-21
-7652278 Zhangshan Zhangshan Zhangshan,Zhangshan Xiang,zhang shan,zhang shan xiang,鄣山,鄣山乡 29.45332 117.72831 P PPLA4 CN 03 0 132 Asia/Shanghai 2012-01-21
-7652285 Hecheng Hecheng Hecheng,Hecheng Xiang,he cheng,he cheng xiang,鹤城,鹤城乡 29.65738 117.71865 P PPLA4 CN 01 0 347 Asia/Shanghai 2012-01-21
-7652324 Qiaoshan Qiaoshan Qiaoshan,Qiaoshan Xiang,qiao shan,qiao shan xiang,乔山,乔山乡 29.76399 117.71927 P PPLA4 CN 01 0 187 Asia/Shanghai 2012-01-21
-7652374 Henglian Henglian Henglian,Henglian Xiang,heng lian,heng lian xiang,横联,横联乡 29.84896 117.8722 P PPLA4 CN 01 0 177 Asia/Shanghai 2012-01-21
-7652386 Dengta Dengta Dengta,Dengta Xiang,deng ta,deng ta xiang,灯塔,灯塔乡 29.8691 117.66556 P PPLA4 CN 01 0 161 Asia/Shanghai 2012-01-21
-7652402 Xinxi Wudui Xinxi Wudui Xinxi Wudui,xin xi wu dui,新溪五队 29.90482 117.81923 P PPLA4 CN 01 0 170 Asia/Shanghai 2012-01-21
-7653967 Yandian Yandian Yandian,Yandian Zhen,yan dian,yan dian zhen,烟店,烟店镇 31.33517 113.56652 P PPLA4 CN 12 0 78 Asia/Shanghai 2012-01-21
-7653968 Huaxi Huaxi Huaxi,Huaxi Xiang,hua xi,hua xi xiang,花西,花西乡 31.19923 113.8595 P PPLA4 CN 12 0 71 Asia/Shanghai 2012-01-21
-7653969 Fengjiang Fengjiang Fengjiang,Fengjiang Xiang,feng jiang,feng jiang xiang,封江,封江乡 31.97372 113.33764 P PPLA4 CN 12 0 98 Asia/Shanghai 2012-01-21
-7653970 Taiping Taiping Taiping,Taiping Xiang,tai ping,tai ping xiang,太平,太平乡 31.4552 113.92089 P PPLA4 CN 12 0 57 Asia/Shanghai 2012-01-21
-7653971 Qingminghe Qingminghe Qingminghe,Qingminghe Xiang,qing ming he,qing ming he xiang,清明河,清明河乡 31.03537 113.68917 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-21
-7653972 Nancheng Nancheng Nancheng,Nancheng Jiedaobanshichu,nan cheng,nan cheng jie dao ban shi chu,南城,南城街道办事处 31.20799 113.69692 P PPLA4 CN 12 0 54 Asia/Shanghai 2012-01-21
-7653973 Wupu Wupu Wupu,Wupu Zhen,wu pu,wu pu zhen,吴铺,吴铺镇 31.03956 113.80076 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-21
-7653974 Xinzha Xinzha Xinzha,Xinzha Xiang,xin zha,xin zha xiang,辛榨,辛榨乡 31.11666 113.62935 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-21
-7653975 Nanjiao Nanjiao Nanjiao,Nanjiao Jiedaobanshichu,nan jiao,nan jiao jie dao ban shi chu,南郊,南郊街道办事处 31.71326 113.3496 P PPLA4 CN 12 0 69 Asia/Shanghai 2012-01-21
-7653976 Beifan Beifan Beifan,Beifan Zhen,bei fan,bei fan zhen,孛畈,孛畈镇 31.38378 113.52285 P PPLA4 CN 12 0 73 Asia/Shanghai 2012-01-21
-7653977 Dougang Dougang Dougang,Dougang Zhen,dou gang,dou gang zhen,陡岗,陡岗镇 31.04025 113.85094 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-21
-7653979 Xinjie Xinjie Xinjie,Xinjie Zhen,xin jie,xin jie zhen,新街,新街镇 31.81854 113.21176 P PPLA4 CN 12 0 86 Asia/Shanghai 2012-01-21
-7653980 Fuhe Fuhe Fuhe,Fuhe Zhen,fu he,fu he zhen,府河,府河镇 31.50958 113.56645 P PPLA4 CN 12 0 69 Asia/Shanghai 2012-01-21
-7653981 Dayanpo Dayanpo Dayanpo,Dayanpo Xiang,da yan po,da yan po xiang,大堰坡,大堰坡乡 31.6089 113.4375 P PPLA4 CN 12 0 74 Asia/Shanghai 2012-01-21
-7653982 Xihe Xihe Xihe,Xihe Zhen,xi he,xi he zhen,西河,西河镇 31.00843 114.0096 P PPLA4 CN 12 0 52 Asia/Shanghai 2012-01-21
-7653983 Lulin Lulin Lulin,Lulin Zhen,lu lin,lu lin zhen,绿林,绿林镇 31.31354 113.07676 P PPLA4 CN 12 0 148 Asia/Shanghai 2012-01-21
-7653984 Doushan Doushan Doushan,Doushan Xiang,dou shan,dou shan xiang,陡山,陡山乡 31.20247 114.00305 P PPLA4 CN 12 0 55 Asia/Shanghai 2012-01-21
-7653985 Daodian Daodian Daodian,Daodian Xiang,dao dian,dao dian xiang,倒店,倒店乡 31.1849 113.72625 P PPLA4 CN 12 0 52 Asia/Shanghai 2012-01-21
-7656068 Baimiao Baimiao Baimiao,Baimiao Jiedao,bai miao,bai miao jie dao,白庙,白庙街道 31.03484 112.22115 P PPLA4 CN 12 0 96 Asia/Shanghai 2012-01-21
-7656069 Wenji Wenji Wenji,Wenji Zhen,wen ji,wen ji zhen,文集,文集镇 31.15875 112.52867 P PPLA4 CN 12 0 45 Asia/Shanghai 2012-01-21
-7656071 Zhengji Zhengji Zhengji,Zhengji Zhen,zheng ji,zheng ji zhen,郑集,郑集镇 31.64812 112.301 P PPLA4 CN 12 0 58 Asia/Shanghai 2012-01-21
-7658285 Xingqiao Xingqiao Xingqiao,Xingqiao Zhen,xing qiao,xing qiao zhen,兴桥,兴桥镇 27.14017 114.87426 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-21
-7658290 Lucun Lucun Lucun,Lucun Xiang,lu cun,lu cun xiang,芦村,芦村乡 27.92751 114.45541 P PPLA4 CN 03 0 108 Asia/Shanghai 2012-01-21
-7658291 Chigu Chigu Chigu,Chigu Xiang,chi gu,chi gu xiang,赤谷,赤谷乡 27.54976 114.65266 P PPLA4 CN 03 0 131 Asia/Shanghai 2012-01-21
-7658293 Shangxian Shangxian Shangxian,Shangxian Xiang,shang xian,shang xian xiang,尚贤,尚贤乡 27.36064 114.961 P PPLA4 CN 03 0 70 Asia/Shanghai 2012-01-21
-7658294 Hushang Hushang Hushang,Hushang Xiang,hu shang,hu shang xiang,湖上,湖上乡 27.26507 114.04848 P PPLA4 CN 03 0 237 Asia/Shanghai 2012-01-21
-7658295 Chuntai Chuntai Chuntai,Chuntai Xiang,chun tai,chun tai xiang,春台,春台乡 27.80227 114.38341 P PPLA4 CN 03 0 91 Asia/Shanghai 2012-01-21
-7658298 Dagangshan Dagangshan Dagangshan,Dagangshan Xiang,da gang shan,da gang shan xiang,大岗山,大岗山乡 27.6556 114.58814 P PPLA4 CN 03 0 237 Asia/Shanghai 2012-01-21
-7658299 Tailing Tailing Tailing,Tailing Xiang,tai ling,tai ling xiang,台岭,台岭乡 27.06865 114.11124 P PPLA4 CN 03 0 145 Asia/Shanghai 2012-01-21
-7658300 Yuannan Yuannan Yuannan,Yuannan Xiang,yuan nan,yuan nan xiang,源南,源南乡 27.67093 114.0315 P PPLA4 CN 03 0 137 Asia/Shanghai 2012-01-21
-7658302 Denglong Denglong Denglong,Denglong Xiang,deng long,deng long xiang,登龙,登龙乡 27.01221 114.75096 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-21
-7658305 Ouli Ouli Ouli,Ouli Zhen,ou li,ou li zhen,欧里,欧里镇 27.9266 114.83352 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-21
-7658306 Jinjiang Jinjiang Jinjiang,Jinjiang Xiang,jin jiang,jin jiang xiang,金江,金江乡 27.58557 114.9855 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-21
-7658307 Yuanzhou Yuanzhou Yuanzhou,Yuanzhou Qu,yuan zhou,yuan zhou qu,袁州,袁州区 27.79846 114.37608 P PPLA3 CN 03 0 102 Asia/Shanghai 2012-01-21
-7658308 Huze Huze Huze,Huze Zhen,hu ze,hu ze zhen,湖泽,湖泽镇 27.86564 114.75074 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-21
-7658309 Tiantai Tiantai Tiantai,Tiantai Zhen,tian tai,tian tai zhen,天台,天台镇 27.82976 114.01948 P PPLA4 CN 03 0 145 Asia/Shanghai 2012-01-21
-7658310 Hebu Hebu Hebu,Hebu Xiang,he bu,he bu xiang,禾埠,禾埠乡 27.10138 114.96696 P PPLA4 CN 03 0 59 Asia/Shanghai 2012-01-21
-7658311 Shanshi Shanshi Shanshi,Shanshi Xiang,shan shi,shan shi xiang,闪石,闪石乡 27.2904 114.05717 P PPLA4 CN 03 0 248 Asia/Shanghai 2012-01-21
-7658314 Gaoqiaolou Gaoqiaolou Gaoqiaolou,Gaoqiaolou Zhen,gao qiao lou,gao qiao lou zhen,高桥楼,高桥楼镇 27.01969 114.36506 P PPLA4 CN 03 0 107 Asia/Shanghai 2012-01-21
-7658317 Matian Matian Matian,Matian Xiang,ma tian,ma tian xiang,麻田,麻田乡 27.49868 114.10171 P PPLA4 CN 03 0 338 Asia/Shanghai 2012-01-21
-7658318 Longmen Longmen Longmen,Longmen Zhen,long men,long men zhen,龙门,龙门镇 27.09027 114.14306 P PPLA4 CN 03 0 146 Asia/Shanghai 2012-01-21
-7658324 Huayun Huayun Huayun,Huayun Xiang,hua yun,hua yun xiang,华云,华云乡 27.57606 114.13502 P PPLA4 CN 03 0 265 Asia/Shanghai 2012-01-21
-7658326 Yinhe Yinhe Yinhe,Yinhe Zhen,yin he,yin he zhen,银河,银河镇 27.69988 114.11777 P PPLA4 CN 03 0 115 Asia/Shanghai 2012-01-21
-7658327 Xiangxing Xiangxing Xiangxing,Xiangxing Xiang,xiang xing,xiang xing xiang,象形,象形乡 27.12994 114.22587 P PPLA4 CN 03 0 143 Asia/Shanghai 2012-01-21
-7658328 Zhangjiafang Zhangjiafang Zhangjiafang,Zhangjiafang Xiang,zhang jia fang,zhang jia fang xiang,张佳坊,张佳坊乡 27.51516 114.00931 P PPLA4 CN 03 0 275 Asia/Shanghai 2012-01-21
-7658330 Lianzhou Lianzhou Lianzhou,Lianzhou Xiang,lian zhou,lian zhou xiang,莲洲,莲洲乡 27.04573 114.25754 P PPLA4 CN 03 0 117 Asia/Shanghai 2012-01-21
-7658331 Dachong Dachong Dachong,Dachong Xiang,da chong,da chong xiang,大冲,大冲乡 27.33458 114.84652 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-21
-7658333 Henglong Henglong Henglong,Henglong Zhen,heng long,heng long zhen,横龙,横龙镇 27.39127 114.55106 P PPLA4 CN 03 0 89 Asia/Shanghai 2012-01-21
-7658334 Guashe Guashe Guashe,Guashe Xiang,gua she,gua she xiang,瓜畲,瓜畲乡 27.41274 114.72018 P PPLA4 CN 03 0 91 Asia/Shanghai 2012-01-21
-7658339 Longtian Longtian Longtian,Longtian Xiang,long tian,long tian xiang,龙田,龙田乡 27.02001 114.03067 P PPLA4 CN 03 0 140 Asia/Shanghai 2012-01-21
-7658344 Nanmu Nanmu Nanmu,Nanmu Xiang,nan mu,nan mu xiang,楠木,楠木乡 27.9878 114.16628 P PPLA4 CN 03 0 182 Asia/Shanghai 2012-01-21
-7658345 Yuankeng Yuankeng Yuankeng,Yuankeng Xiang,yuan keng,yuan keng xiang,苑坑,苑坑乡 27.64887 114.72746 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-21
-7658348 Jiulongshan Jiulongshan Jiulongshan,Jiulongshan Xiang,jiu long shan,jiu long shan xiang,九龙山,九龙山乡 27.64521 114.83941 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-21
-7658349 Liaotang Liaotang Liaotang,Liaotang Xiang,liao tang,liao tang xiang,寮塘,寮塘乡 27.27522 114.59319 P PPLA4 CN 03 0 83 Asia/Shanghai 2012-01-21
-7658350 Antang Antang Antang,Antang Xiang,an tang,an tang xiang,安塘,安塘乡 27.00126 114.68095 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-21
-7658358 Taishan Taishan Taishan,Taishan Xiang,tai shan,tai shan xiang,泰山,泰山乡 27.4436 114.26961 P PPLA4 CN 03 0 225 Asia/Shanghai 2012-01-21
-7658360 Gaoshi Gaoshi Gaoshi,Gaoshi Xiang,gao shi,gao shi xiang,高市,高市乡 27.03328 114.20354 P PPLA4 CN 03 0 120 Asia/Shanghai 2012-01-21
-7658361 Tiantaishan Tiantaishan Tiantaishan,Tiantaishan Xiang,tian tai shan,tian tai shan xiang,天台山,天台山乡 27.88534 114.00084 P PPLA4 CN 03 0 199 Asia/Shanghai 2012-01-21
-7658368 Wanlongshan Wanlongshan Wanlongshan,Wanlongshan Xiang,wan long shan,wan long shan xiang,万龙山,万龙山乡 27.60142 114.16794 P PPLA4 CN 03 0 237 Asia/Shanghai 2012-01-21
-7658375 Wojiang Wojiang Wojiang,Wojiang Xiang,wo jiang,wo jiang xiang,渥江,渥江乡 27.84057 114.43694 P PPLA4 CN 03 0 86 Asia/Shanghai 2012-01-21
-7658379 Zhushan Zhushan Zhushan,Zhushan Zhen,zhu shan,zhu shan zhen,珠珊,珠珊镇 27.77748 114.94263 P PPLA4 CN 03 0 49 Asia/Shanghai 2012-01-21
-7658380 Hutian Hutian Hutian,Hutian Xiang,hu tian,hu tian xiang,湖田,湖田乡 27.82276 114.34712 P PPLA4 CN 03 0 99 Asia/Shanghai 2012-01-21
-7658381 Xinquan Xinquan Xinquan,Xinquan Xiang,xin quan,xin quan xiang,新泉,新泉乡 27.52173 114.06927 P PPLA4 CN 03 0 269 Asia/Shanghai 2012-01-21
-7658382 Yangmen Yangmen Yangmen,Yangmen Xiang,yang men,yang men xiang,洋门,洋门乡 27.13547 114.3971 P PPLA4 CN 03 0 96 Asia/Shanghai 2012-01-21
-7658383 Pengfang Pengfang Pengfang,Pengfang Xiang,peng fang,peng fang xiang,彭坊,彭坊乡 27.23386 114.31681 P PPLA4 CN 03 0 143 Asia/Shanghai 2012-01-21
-7658384 Ganluo Ganluo Ganluo,Ganluo Xiang,gan luo,gan luo xiang,甘洛,甘洛乡 27.20847 114.58615 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-21
-7659437 Xiaoying Xiaoying Xiaoying,Xiaoying Zhen,xiao ying,xiao ying zhen,小营,小营镇 42.91206 129.52066 P PPLA4 CN 05 0 184 Asia/Harbin 2012-01-21
-7661834 Yingcheng Yingcheng Yingcheng,Yingcheng Zhen,ying cheng,ying cheng zhen,郢城,郢城镇 30.3686 112.19944 P PPLA4 CN 12 0 37 Asia/Shanghai 2012-01-21
-7661835 Gaoshibei Gaoshibei Gaoshibei,Gaoshibei Zhen,gao shi bei,gao shi bei zhen,高石碑,高石碑镇 30.55164 112.66907 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-21
-7661836 Yangshi Yangshi Yangshi,Yangshi Jiedao,yang shi,yang shi jie dao,杨市,杨市街道 30.36978 112.89998 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-21
-7661837 Yanmenkou Yanmenkou Yanmenkou,Yanmenkou Zhen,yan men kou,yan men kou zhen,雁门口,雁门口镇 30.83473 112.97469 P PPLA4 CN 12 0 80 Asia/Shanghai 2012-01-21
-7661838 Huangxiekou Huangxiekou Huangxiekou,Huangxiekou Zhen,huang xie kou,huang xie kou zhen,黄歇口,黄歇口镇 30.033 112.85256 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7661841 Jiyukou Jiyukou Jiyukou,Jiyukou Zhen,ji yu kou,ji yu kou zhen,积玉口,积玉口镇 30.45534 112.59025 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-21
-7661844 Luochang Luochang Luochang,Luochang Zhen,luo chang,luo chang zhen,锣场,锣场镇 30.3597 112.33471 P PPLA4 CN 12 0 31 Asia/Shanghai 2012-01-21
-7661846 Zhouji Zhouji Zhouji,Zhouji Jiedao,zhou ji,zhou ji jie dao,周矶,周矶街道 30.4121 112.78072 P PPLA4 CN 12 0 33 Asia/Shanghai 2012-01-21
-7661848 Dongcheng Dongcheng Dongcheng,Dongcheng Jiedao,dong cheng,dong cheng jie dao,东城,东城街道 30.35104 112.18824 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-21
-7661850 Wangchang Wangchang Wangchang,Wangchang Zhen,wang chang,wang chang zhen,王场,王场镇 30.5084 112.76755 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-21
-7661851 Zhoulaoju Zhoulaoju Zhoulaoju,Zhoulaoju Zhen,zhou lao ju,zhou lao ju zhen,周老咀,周老咀镇 30.03385 112.98043 P PPLA4 CN 12 0 29 Asia/Shanghai 2012-01-21
-7661852 Jiangchang Jiangchang Jiangchang,Jiangchang Zhen,jiang chang,jiang chang zhen,蒋场,蒋场镇 30.60928 112.93366 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7661853 Gaoyang Gaoyang Gaoyang,Gaoyang Zhen,gao yang,gao yang zhen,高阳,高阳镇 30.76614 112.51245 P PPLA4 CN 12 0 67 Asia/Shanghai 2012-01-21
-7661854 Jishan Jishan Jishan,Jishan Zhen,ji shan,ji shan zhen,纪山,纪山镇 30.53932 112.17699 P PPLA4 CN 12 0 59 Asia/Shanghai 2012-01-21
-7661855 Guanghua Guanghua Guanghua,Guanghua Jiedao,guang hua,guang hua jie dao,广华,广华街道 30.44378 112.68446 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7661856 Jinan Jinan Jinan,Jinan Zhen,ji nan,ji nan zhen,纪南,纪南镇 30.44738 112.20031 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-21
-7661857 Lishi Lishi Lishi,Lishi Zhen,li shi,li shi zhen,李市,李市镇 30.58946 112.56774 P PPLA4 CN 12 0 33 Asia/Shanghai 2012-01-21
-7661858 Xicheng Xicheng Xicheng,Xicheng Jiedao,xi cheng,xi cheng jie dao,西城,西城街道 30.35904 112.18026 P PPLA4 CN 12 0 31 Asia/Shanghai 2012-01-21
-7661859 Zhanghe Zhanghe Zhanghe,Zhanghe Zhen,zhang he,zhang he zhen,漳河,漳河镇 30.95698 112.07076 P PPLA4 CN 12 0 124 Asia/Shanghai 2012-01-21
-7661860 Tuoshi Tuoshi Tuoshi,Tuoshi Zhen,tuo shi,tuo shi zhen,拖市,拖市镇 30.72788 112.82697 P PPLA4 CN 12 0 35 Asia/Shanghai 2012-01-21
-7661861 Chengnan Chengnan Chengnan,Chengnan Jiedao,cheng nan,cheng nan jie dao,城南,城南街道 30.34835 112.17649 P PPLA4 CN 12 0 35 Asia/Shanghai 2012-01-21
-7661862 Zhugentan Zhugentan Zhugentan,Zhugentan Zhen,zhu gen tan,zhu gen tan zhen,竹根滩,竹根滩镇 30.49776 112.90237 P PPLA4 CN 12 0 31 Asia/Shanghai 2012-01-21
-7675136 Bengkouling Bengkouling Bengkouling,Lucun,beng kou ling,lu cun,卢村,崩口岭 30.81984 119.42285 P PPLA4 CN 01 0 83 Asia/Shanghai 2012-01-21
-7675321 Liudong Liudong Liudong,Liudong Zhen,Liudongzhen,liu dong,liu dong zhen,流洞,流洞镇 31.03247 119.51665 P PPLA4 CN 01 0 51 Asia/Shanghai 2012-01-21
-7675364 Feili Feili Feili,Feili Xiang,fei li,fei li xiang,飞鲤,飞鲤乡 31.07133 119.09078 P PPLA4 CN 01 0 13 Asia/Shanghai 2012-01-21
-7678180 Yalukou Yalukou Fancun,Yalukou,fan cun,ya lu kou,哑路口,畈村 30.66155 119.01476 P PPLA4 CN 01 0 79 Asia/Shanghai 2012-01-21
-7678460 Yutiao Yutiao Yutiao,yu tiao,鱼跳 30.28971 119.02204 P PPLA4 CN 02 0 461 Asia/Shanghai 2012-01-21
-7679662 Zhoupu Zhoupu Zhoupu,Zhoupu Xiang,zhou pu,zhou pu xiang,周浦,周浦乡 30.09254 120.06633 P PPLA4 CN 02 0 15 Asia/Shanghai 2011-03-07
-7679663 Dongqiao Dongqiao Dongqiao,Dongqiao Zhen,dong qiao,dong qiao zhen,洞桥,洞桥镇 30.07605 119.58308 P PPLA4 CN 02 0 59 Asia/Shanghai 2012-01-21
-7679667 Gaohong Gaohong Gaohong,gao hong,高虹 30.32035 119.72146 P PPLA4 CN 02 0 70 Asia/Shanghai 2012-01-21
-7679668 Xitianmu Xitianmu Xitianmu,Xitianmu Xiang,xi tian mu,xi tian mu xiang,西天目,西天目乡 30.26577 119.47223 P PPLA4 CN 02 0 186 Asia/Shanghai 2012-01-21
-7679669 Zhongtai Zhongtai Zhongtai,Zhongtai Xiang,zhong tai,zhong tai xiang,中泰,中泰乡 30.24094 119.92695 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7679675 Chunjian Chunjian Chunjian,Chunjian Xiang,chun jian,chun jian xiang,春建,春建乡 30.07639 119.82653 P PPLA4 CN 02 0 49 Asia/Shanghai 2012-01-21
-7679676 Kuntong Kuntong Kuntong,Kuntong Xiang,kun tong,kun tong xiang,昆铜,昆铜乡 30.76136 119.78847 P PPLA4 CN 02 0 18 Asia/Shanghai 2012-01-21
-7679677 Jiangcun Jiangcun Jiangcun,Jiangcun Xiang,jiang cun,jiang cun xiang,蒋村,蒋村乡 30.28567 120.06471 P PPLA4 CN 02 0 9 Asia/Shanghai 2011-03-07
-7679678 Chengguan Chengguan Chengguan,Chengguan Zhen,cheng guan,cheng guan zhen,城关,城关镇 30.54816 120.0798 P PPLA4 CN 02 0 26 Asia/Shanghai 2012-01-21
-7679680 Baique Baique Baique,bai que,白雀 30.92071 120.09795 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-21
-7679681 Sanhe Sanhe Sanhe,Sanhe Xiang,san he,san he xiang,三合,三合乡 30.47958 120.03279 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-21
-7679682 Yushan Yushan Yushan,Yushan Xiang,yu shan,yu shan xiang,渔山,渔山乡 30.06586 120.08767 P PPLA4 CN 02 0 10 Asia/Shanghai 2011-03-07
-7679683 Qianhong Qianhong Qianhong,Qianhong Xiang,qian hong,qian hong xiang,千洪,千洪乡 30.26065 119.39616 P PPLA4 CN 02 0 150 Asia/Shanghai 2012-01-21
-7679685 Lishan Lishan Lishan,Lishan Zhen,li shan,li shan zhen,里山,里山镇 30.05033 120.06206 P PPLA4 CN 02 0 13 Asia/Shanghai 2011-03-07
-7679687 Maxiao Maxiao Maxiao,ma xiao,马啸 30.14846 118.9633 P PPLA4 CN 02 0 312 Asia/Shanghai 2012-01-21
-7679689 Yaoshan Yaoshan Yaoshan,Yaoshan Xiang,yao shan,yao shan xiang,瑶山,瑶山乡 29.96444 119.06578 P PPLA4 CN 02 0 185 Asia/Shanghai 2012-01-21
-7679694 Daochang Daochang Daochang,dao chang,道场 30.84849 120.09262 P PPLA4 CN 02 0 2 Asia/Shanghai 2011-03-07
-7679698 Yihe Yihe Yihe,yi he,怡合 29.96061 119.35297 P PPLA4 CN 02 0 65 Asia/Shanghai 2012-01-21
-7679699 Erjieling Erjieling Erjieling,Erjieling Xiang,er jie ling,er jie ling xiang,二界岭,二界岭乡 30.94829 119.61361 P PPLA4 CN 02 0 28 Asia/Shanghai 2012-01-21
-7679700 Shanggan Shanggan Shanggan,Shanggan Jiedao,Shanggan Xiang,shang gan,shang gan jie dao,shang gan xiang,上甘,上甘乡,上甘街道 30.17306 119.71135 P PPLA4 CN 02 0 79 Asia/Shanghai 2012-01-21
-7679862 Qingliangfeng Qingliangfeng Qingliangfeng,qing liang feng,清凉峰 30.13934 119.02831 P PPLA4 CN 02 0 341 Asia/Shanghai 2012-01-21
-7679875 Qianchuan Qianchuan Qianchuan,qian chuan,潜川 30.09114 119.39027 P PPLA4 CN 02 0 64 Asia/Shanghai 2012-01-21
-7685342 Jinzhu Jinzhu Jinzhu,Jinzhu Xiang,jin zhu,jin zhu xiang,金竹,金竹乡 27.02207 115.89149 P PPLA4 CN 03 0 564 Asia/Shanghai 2012-01-21
-7685343 Tielu Tielu Tielu,Tielu Zhen,tie lu,tie lu zhen,铁路,铁路镇 27.87229 115.78811 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-21
-7685345 Zhongzhou Zhongzhou Zhongzhou,Zhongzhou Xiang,zhong zhou,zhong zhou xiang,中洲,中洲乡 27.92923 115.15631 P PPLA4 CN 03 0 38 Asia/Shanghai 2012-01-21
-7685347 Shenzhengqiao Shenzhengqiao Shenzhengqiao,Shenzhengqiao Xiang,shen zheng qiao,shen zheng qiao xiang,神政桥,神政桥乡 27.71022 115.46303 P PPLA4 CN 03 0 48 Asia/Shanghai 2012-01-21
-7685348 Nan’an Nan'an Nan'an,Nan'an Xiang,Nan’an,Nan’an Xiang,nan an,nan an xiang,南安,南安乡 27.81315 115.22859 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-21
-7685349 Shuitian Shuitian Shuitian,Shuitian Xiang,shui tian,shui tian xiang,水田,水田乡 27.42207 115.14764 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-21
-7685353 Yijiang Yijiang Yijiang,Yijiang Xiang,yi jiang,yi jiang xiang,沂江,沂江乡 27.70178 115.35391 P PPLA4 CN 03 0 35 Asia/Shanghai 2012-01-21
-7685356 Dongbian Dongbian Dongbian,Dongbian Xiang,dong bian,dong bian xiang,东边,东边乡 27.77722 115.12625 P PPLA4 CN 03 0 76 Asia/Shanghai 2012-01-21
-7685358 Pangu Pangu Pangu,Pangu Zhen,pan gu,pan gu zhen,盘谷,盘谷镇 27.43212 115.0069 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-21
-7685359 Xinxi Xinxi Xinxi,Xinxi Xiang,xin xi,xin xi xiang,新溪,新溪乡 27.8687 115.32666 P PPLA4 CN 03 0 34 Asia/Shanghai 2012-01-21
-7685360 Yicheng Yicheng Yicheng,Yicheng Zhen,yi cheng,yi cheng zhen,义成,义成镇 27.98543 115.17439 P PPLA4 CN 03 0 60 Asia/Shanghai 2012-01-21
-7685361 Tianyu Tianyu Tianyu,Tianyu Zhen,tian yu,tian yu zhen,天玉,天玉镇 27.1408 115.05337 P PPLA4 CN 03 0 57 Asia/Shanghai 2012-01-21
-7685369 Zhangfang Zhangfang Zhangfang,Zhangfang Xiang,zhang fang,zhang fang xiang,张坊,张坊乡 27.62058 115.97799 P PPLA4 CN 03 0 86 Asia/Shanghai 2012-01-21
-7685371 Licun Licun Licun,Licun Zhen,li cun,li cun zhen,丽村,丽村镇 27.99504 115.69898 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-21
-7685372 Changfu Changfu Changfu,Changfu Zhen,chang fu,chang fu zhen,昌傅,昌傅镇 27.92003 115.30646 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-21
-7685373 Fumin Fumin Fumin,Fumin Xiang,fu min,fu min xiang,福民,福民乡 27.57297 115.21123 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-21
-7685374 Xiwang Xiwang Xiwang,Xiwang Xiang,xi wang,xi wang xiang,希望,希望乡 27.89379 115.70332 P PPLA4 CN 03 0 106 Asia/Shanghai 2012-01-21
-7685376 Taotang Taotang Taotang,Taotang Xiang,tao tang,tao tang xiang,陶唐,陶唐乡 27.06787 115.69164 P PPLA4 CN 03 0 133 Asia/Shanghai 2012-01-21
-7685749 Xintong Xintong Xintong,xin tong,新桐 29.90664 119.81474 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-21
-7686235 Chunjing Chunjing Chunjiang Jiedao,Chunjing,chun jiang,chun jiang jie dao,春江,春江街道 30.03328 119.96405 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-21
-7686236 Dongzhou Dongzhou Dongzhou,Dongzhou Jiedao,dong zhou,dong zhou jie dao,东洲,东洲街道 30.0783 119.98478 P PPLA4 CN 02 0 23 Asia/Shanghai 2012-01-21
-7686241 Lushan Lushan Lushan,Lushan Jiedao,lu shan,lu shan jie dao,鹿山,鹿山街道 30.00899 119.90381 P PPLA4 CN 02 0 27 Asia/Shanghai 2012-01-21
-7690138 Daqiao Daqiao Daqiao,Daqiao Zhen,da qiao,da qiao zhen,大桥,大桥镇 28.95994 114.10872 P PPLA4 CN 03 0 167 Asia/Shanghai 2012-01-21
-7690139 Luzhou Luzhou Luzhou,Luzhou Xiang,lu zhou,lu zhou xiang,芦洲,芦洲乡 28.20697 114.83789 P PPLA4 CN 03 0 53 Asia/Shanghai 2012-01-21
-7690141 Shangfeng Shangfeng Shangfeng,Shangfeng Zhen,shang feng,shang feng zhen,上奉,上奉镇 28.73863 114.67706 P PPLA4 CN 03 0 291 Asia/Shanghai 2012-01-21
-7690142 Luocheng Luocheng Luocheng,Luocheng Zhen,luo cheng,luo cheng zhen,罗城,罗城镇 28.28703 114.55366 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-21
-7690143 Shishi Shishi Shishi,Shishi Zhen,shi shi,shi shi zhen,石市,石市镇 28.25914 114.77134 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-21
-7690144 Shangganshan Shangganshan Shangganshan,Shangganshan Xiang,shang gan shan,shang gan shan xiang,上甘山,上甘山乡 28.20707 114.96968 P PPLA4 CN 03 0 56 Asia/Shanghai 2012-01-21
-7690145 Yuduan Yuduan Yuduan,Yuduan Xiang,yu duan,yu duan xiang,余塅,余塅乡 28.85404 114.06911 P PPLA4 CN 03 0 166 Asia/Shanghai 2012-01-21
-7690146 Zhendu Zhendu Zhendu,Zhendu Xiang,zhen du,zhen du xiang,镇渡,镇渡乡 28.20348 114.59964 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-21
-7690147 Shangshan Shangshan Shangshan,Shangshan Xiang,shang shan,shang shan xiang,上衫,上衫乡 28.95051 114.15913 P PPLA4 CN 03 0 215 Asia/Shanghai 2012-01-21
-7690148 Aoqiao Aoqiao Aoqiao,Aoqiao Xiang,ao qiao,ao qiao xiang,敖桥,敖桥乡 28.39968 114.80415 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-21
-7690150 Cheshang Cheshang Cheshang,Cheshang Xiang,che shang,che shang xiang,车上,车上乡 28.42636 114.55446 P PPLA4 CN 03 0 126 Asia/Shanghai 2012-01-21
-7690153 Zaoxi Zaoxi Zaoxi,Zaoxi Xiang,zao xi,zao xi xiang,澡溪,澡溪乡 28.75158 114.96143 P PPLA4 CN 03 0 460 Asia/Shanghai 2012-01-21
-7690154 Shixi Shixi Shixi,Shixi Xiang,shi xi,shi xi xiang,石溪,石溪乡 28.74002 114.90958 P PPLA4 CN 03 0 486 Asia/Shanghai 2012-01-21
-7690155 Renhe Renhe Renhe,Renhe Xiang,ren he,ren he xiang,人和,人和乡 28.02511 114.93818 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-21
-7690156 Fuyuan Fuyuan Fuyuan,Fuyuan Xiang,fu yuan,fu yuan xiang,复原,复原乡 28.73847 114.32619 P PPLA4 CN 03 0 229 Asia/Shanghai 2012-01-21
-7690158 Shuiyuan Shuiyuan Shuiyuan,Shuiyuan Xiang,shui yuan,shui yuan xiang,水源,水源乡 28.99853 114.03466 P PPLA4 CN 03 0 288 Asia/Shanghai 2012-01-21
-7690160 Zhaixia Zhaixia Zhaixia,Zhaixia Xiang,zhai xia,zhai xia xiang,寨下,寨下乡 28.01071 114.49649 P PPLA4 CN 03 0 180 Asia/Shanghai 2012-01-21
-7690162 Efeng Efeng Efeng,Efeng Xiang,e feng,e feng xiang,鹅峰,鹅峰乡 28.11175 114.4524 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-21
-7690164 Gaoqiao Gaoqiao Gaoqiao,Gaoqiao Xiang,gao qiao,gao qiao xiang,高桥,高桥乡 28.60756 114.20728 P PPLA4 CN 03 0 297 Asia/Shanghai 2012-01-21
-7690165 Shuangqiao Shuangqiao Shuangqiao,Shuangqiao Zhen,shuang qiao,shuang qiao zhen,双桥,双桥镇 28.18348 114.31217 P PPLA4 CN 03 0 111 Asia/Shanghai 2012-01-21
-7690166 Baimu Baimu Baimu,Baimu Xiang,bai mu,bai mu xiang,柏木,柏木乡 28.00128 114.43209 P PPLA4 CN 03 0 146 Asia/Shanghai 2012-01-21
-7690167 Lingdong Lingdong Lingdong,Lingdong Xiang,ling dong,ling dong xiang,岭东,岭东乡 28.06488 114.24209 P PPLA4 CN 03 0 178 Asia/Shanghai 2012-01-21
-7690169 Chengfang Chengfang Chengfang,Chengfang Xiang,cheng fang,cheng fang xiang,程坊,程坊乡 28.97704 114.34849 P PPLA4 CN 03 0 260 Asia/Shanghai 2012-01-21
-7690170 Wenquan Wenquan Wenquan,Wenquan Zhen,wen quan,wen quan zhen,温泉,温泉镇 28.53746 114.34881 P PPLA4 CN 03 0 237 Asia/Shanghai 2012-01-21
-7690172 Dongcun Dongcun Dongcun,Dongcun Xiang,dong cun,dong cun xiang,洞村,洞村乡 28.01448 114.81485 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-21
-7690173 Zhongyuan Zhongyuan Zhongyuan,Zhongyuan Xiang,zhong yuan,zhong yuan xiang,中源,中源乡 28.86248 114.98438 P PPLA4 CN 03 0 589 Asia/Shanghai 2012-01-21
-7690174 Jinjiang Jinjiang Jinjiang,Jinjiang Zhen,jin jiang,jin jiang zhen,锦江,锦江镇 28.23272 114.90078 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-21
-7690178 Jiaohu Jiaohu Jiaohu,Jiaohu Xiang,jiao hu,jiao hu xiang,茭湖,茭湖乡 28.25803 114.38329 P PPLA4 CN 03 0 178 Asia/Shanghai 2012-01-21
-7690181 Aoshan Aoshan Aoshan,Aoshan Xiang,ao shan,ao shan xiang,敖山,敖山乡 28.26174 114.97864 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-21
-7690182 Qiaoxi Qiaoxi Qiaoxi,Qiaoxi Xiang,qiao xi,qiao xi xiang,桥西,桥西乡 28.38814 114.76956 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-21
-7690184 Chixing Chixing Chixing,Chixing Xiang,chi xing,chi xing xiang,赤兴,赤兴乡 28.21013 114.23831 P PPLA4 CN 03 0 146 Asia/Shanghai 2012-01-21
-7690185 Shihuajian Shihuajian Shihuajian,Shihuajian Xiang,shi hua jian,shi hua jian xiang,石花尖,石花尖乡 28.47646 114.54168 P PPLA4 CN 03 0 223 Asia/Shanghai 2012-01-21
-7690186 Taxia Taxia Taxia,Taxia Xiang,ta xia,ta xia xiang,塔下,塔下乡 28.22042 114.95083 P PPLA4 CN 03 0 52 Asia/Shanghai 2012-01-21
-7690187 Daixi Daixi Daixi,Daixi Xiang,dai xi,dai xi xiang,带溪,带溪乡 28.67428 114.62633 P PPLA4 CN 03 0 230 Asia/Shanghai 2012-01-21
-7690188 Fengdingshan Fengdingshan Fengdingshan,Fengdingshan Xiang,feng ding shan,feng ding shan xiang,丰顶山,丰顶山乡 28.01097 114.28378 P PPLA4 CN 03 0 368 Asia/Shanghai 2012-01-21
-7690191 Mabu Mabu Mabu,Mabu Xiang,ma bu,ma bu xiang,马步,马步乡 28.10037 114.4376 P PPLA4 CN 03 0 90 Asia/Shanghai 2012-01-21
-7690192 Yeshi Yeshi Yeshi,Yeshi Xiang,ye shi,ye shi xiang,野市,野市乡 28.30923 114.93369 P PPLA4 CN 03 0 58 Asia/Shanghai 2012-01-21
-7690193 Nangang Nangang Nangang,Nangang Zhen,nan gang,nan gang zhen,南港,南港镇 28.09001 114.84235 P PPLA4 CN 03 0 81 Asia/Shanghai 2012-01-21
-7690195 Liutou Liutou Liutou,Liutou Xiang,liu tou,liu tou xiang,溜头,溜头乡 28.68098 114.87285 P PPLA4 CN 03 0 335 Asia/Shanghai 2012-01-21
-7690196 Bailiang Bailiang Bailiang,Bailiang Xiang,bai liang,bai liang xiang,白良,白良乡 28.20095 114.41179 P PPLA4 CN 03 0 102 Asia/Shanghai 2012-01-21
-7690197 Tianbao Tianbao Tianbao,Tianbao Xiang,tian bao,tian bao xiang,天宝,天宝乡 28.53008 114.76113 P PPLA4 CN 03 0 100 Asia/Shanghai 2012-01-21
-7692215 Nanqiao Nanqiao Nanqiao,Nanqiao Xiang,nan qiao,nan qiao xiang,南桥,南桥乡 28.73768 114.07153 P PPLA4 CN 11 0 237 Asia/Shanghai 2012-01-21
-7696231 Gaobazhou Gaobazhou Gaobazhou,Gaobazhou Zhen,gao ba zhou,gao ba zhou zhen,高坝洲,高坝洲镇 30.43784 111.41823 P PPLA4 CN 12 0 51 Asia/Shanghai 2012-01-21
-7696232 Qixingtai Qixingtai Qixingtai,Qixingtai Zhen,qi xing tai,qi xing tai zhen,七星台,七星台镇 30.41355 111.88739 P PPLA4 CN 12 0 46 Asia/Shanghai 2012-01-21
-7696233 Xiannü Xiannu Xiannu,Xiannu Zhen,Xiannü,Xiannü Zhen,xian nu,xian nu zhen,仙女,仙女镇 30.52693 111.73992 P PPLA4 CN 12 0 70 Asia/Shanghai 2012-01-21
-7696234 Nanhai Nanhai Nanhai,Nanhai Zhen,nan hai,nan hai zhen,南海,南海镇 30.12819 111.77837 P PPLA4 CN 12 0 63 Asia/Shanghai 2012-01-21
-7696235 Miaoqian Miaoqian Miaoqian,Miaoqian Zhen,miao qian,miao qian zhen,庙前,庙前镇 30.89182 111.87118 P PPLA4 CN 12 0 83 Asia/Shanghai 2012-01-21
-7696236 Lianpeng Lianpeng Lianpeng,Lianpeng Xiang,lian peng,lian peng xiang,联棚,联棚乡 30.65519 111.26882 P PPLA4 CN 12 0 71 Asia/Shanghai 2012-02-02
-7696237 Hualinsi Hualinsi Hualinsi,Hualinsi Zhen,hua lin si,hua lin si zhen,花林寺,花林寺镇 31.00383 111.60991 P PPLA4 CN 12 0 126 Asia/Shanghai 2012-01-21
-7696238 Huya Huya Huya,Huya Jiedao,hu ya,hu ya jie dao,虎牙,虎牙街道 30.57088 111.39543 P PPLA4 CN 12 0 76 Asia/Shanghai 2012-01-21
-7696239 Baling Baling Baling,Baling Jiedao,ba ling,ba ling jie dao,坝陵,坝陵街道 30.84298 111.79253 P PPLA4 CN 12 0 67 Asia/Shanghai 2012-01-21
-7696240 Yuquan Yuquan Yuquan,Yuquan Jiedao,yu quan,yu quan jie dao,玉泉,玉泉街道 30.82969 111.77423 P PPLA4 CN 12 0 69 Asia/Shanghai 2012-01-21
-7734818 Hengjingqiao Hengjingqiao Hengjingqiao,Honghe,Honghe Zhen,heng jing qiao,hong he,hong he zhen,横泾桥,洪合,洪合镇 30.68278 120.65865 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735121 Heshan Heshan Heshan,Heshan Zhen,he shan,he shan zhen,河山,河山镇 30.6353 120.35613 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-21
-7735123 Xin’an Xin'an Gouli Zhen,Xin'an,Xin'an Zhen,Xin’an,Xin’an Zhen,gou li zhen,xin an,xin an zhen,勾里镇,新安,新安镇 30.53373 120.21904 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735128 Chongxian Chongxian Chongxian,Chongxian Zhen,chong xian,chong xian zhen,崇贤,崇贤镇 30.3883 120.17117 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-21
-7735129 Gudang Gudang Gudang,Gudang Jiedao,Gudang Zhen,gu dang,gu dang jie dao,gu dang zhen,古荡,古荡街道,古荡镇 30.2784 120.11842 P PPLA4 CN 02 0 17 Asia/Shanghai 2012-01-21
-7735133 Huangjiabu Huangjiabu Huangjiabu,Huangjiabu Zhen,huang jia bu,huang jia bu zhen,黄家埠,黄家埠镇 30.14359 120.95566 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-21
-7735144 Huashe Huashe Huashe,Huashe Jiedao,Huashe Zhen,hua she,hua she jie dao,hua she zhen,华舍,华舍街道,华舍镇 30.11276 120.48228 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735145 Xialu Xialu Xialu,Xialu Zhen,xia lu,xia lu zhen,夏履,夏履镇 30.0659 120.35579 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-21
-7735146 Jinhua Jinhua Jinhua,Jinhua Zhen,jin hua,jin hua zhen,进化,进化镇 30.01347 120.28866 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-21
-7735160 Balidian Balidian Balidian,Balidian Zhen,ba li dian,ba li dian zhen,八里店,八里店镇 30.84283 120.15288 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-21
-7735162 Hezhuang Hezhuang Hezhuang,Hezhuang Zhen,he zhuang,he zhuang zhen,河庄,河庄镇 30.30015 120.46107 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735163 Jiabei Jiabei Jiabei,Jiabei Jiedao,Jiabei Xiang,jia bei,jia bei jie dao,jia bei xiang,嘉北,嘉北乡,嘉北街道 30.77959 120.71177 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735165 Xingqiao Xingqiao Xingqiao,Xingqiao Jiedao,Xingqiao Zhen,xing qiao,xing qiao jie dao,xing qiao zhen,星桥,星桥街道,星桥镇 30.39943 120.25171 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735170 Nanyang Nanyang Nanyang,Nanyang Zhen,nan yang,nan yang zhen,南阳,南阳镇 30.26268 120.44257 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735171 Yinong Yinong Yinong,Yinong Zhen,yi nong,yi nong zhen,益农,益农镇 30.19682 120.58576 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735173 Daoxu Daoxu Daoxu,Daoxu Zhen,dao xu,dao xu zhen,道墟,道墟镇 30.04609 120.76762 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-21
-7735174 Tongfu Tongfu Tongfu,Tongfu Xiang,tong fu,tong fu xiang,同福,同福乡 30.57637 120.46483 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-21
-7735175 Xiaohe Xiaohe Xiaohe,Xiaohe Jiedao,xiao he,xiao he jie dao,小河,小河街道 30.30997 120.13505 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735182 Jiubao Jiubao Jiubao,Jiubao Zhen,jiu bao,jiu bao zhen,九堡,九堡镇 30.31923 120.26562 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-21
-7735183 Puyan Puyan Puyan,Puyan Jiedao,Puyan Zhen,pu yan,pu yan jie dao,pu yan zhen,浦沿,浦沿街道,浦沿镇 30.1573 120.14666 P PPLA4 CN 02 0 14 Asia/Shanghai 2012-01-21
-7735184 Ningwei Ningwei Ningwei,Ningwei Zhen,ning wei,ning wei zhen,宁围,宁围镇 30.21519 120.27652 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735185 Hutang Hutang Hutang,Hutang Jiedao,Hutang Zhen,hu tang,hu tang jie dao,hu tang zhen,湖塘,湖塘街道,湖塘镇 30.07489 120.42103 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735187 Longquan Longquan Longquan,Longquan Jiedao,long quan,long quan jie dao,龙泉,龙泉街道 30.8692 120.10386 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-21
-7735188 Huimin Huimin Huimin,Huimin Zhen,hui min,hui min zhen,惠民,惠民镇 30.83909 120.96989 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-21
-7735191 Caoqiao Caoqiao Caoqiao,Caoqiao Jiedao,Caoqiao Xiang,cao qiao,cao qiao jie dao,cao qiao xiang,曹桥,曹桥乡,曹桥街道 30.67234 120.9687 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735198 Xiangfu Xiangfu Xiangfu,Xiangfu Zhen,xiang fu,xiang fu zhen,祥符,祥符镇 30.32976 120.09922 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735201 Suoqian Suoqian Suoqian,Suoqian Zhen,suo qian,suo qian zhen,所前,所前镇 30.11356 120.27692 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735206 Qianjin Qianjin Qianjin,Qianjin Zhen,qian jin,qian jin zhen,千金,千金镇 30.6777 120.23784 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735208 Renhe Renhe Renhe,Renhe Zhen,Zhangshan Zhen,ren he,ren he zhen,zhang shan zhen,仁和,仁和镇,獐山镇 30.44609 120.07535 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735212 Gaibei Gaibei Gaibei,Gaibei Xiang,Gaibei Zhen,gai bei,gai bei xiang,gai bei zhen,盖北,盖北乡,盖北镇 30.14032 120.8878 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735214 Banshan Banshan Banshan,Banshan Zhen,ban shan,ban shan zhen,半山,半山镇 30.35163 120.17808 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-21
-7735218 Yaozhuang Yaozhuang Yaozhuang,Yaozhuang Zhen,yao zhuang,yao zhuang zhen,姚庄,姚庄镇 30.91399 120.95651 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-21
-7735220 Kangqiao Kangqiao Kangqiao,Kangqiao Zhen,kang qiao,kang qiao zhen,康桥,康桥镇 30.36489 120.1441 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735222 Sujiazhuang Sujiazhuang Longxi Xiang,Sujiazhuang,Yangjiabu Zhen,long xi xiang,su jia zhuang,yang jia bu zhen,杨家埠镇,苏家庄,龙溪乡 30.87323 120.07042 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-21
-7735233 Daicun Daicun Daicun,Daicun Zhen,dai cun,dai cun zhen,戴村,戴村镇 30.01759 120.19594 P PPLA4 CN 02 0 13 Asia/Shanghai 2012-01-21
-7735235 Xindong Xindong Shiqiao Zhen,Xindong,Xindong Jiedao,shi qiao zhen,xin dong,xin dong jie dao,新东,新东街道,石桥镇 30.30646 120.17272 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-21
-7735236 Dingzha Dingzha Dingzha,Dingzha Zhen,ding shan,ding shan zhen,丁栅,丁栅镇 30.99451 120.94448 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-21
-7735241 Xinjie Xinjie Xinjie,Xinjie Zhen,xin jie,xin jie zhen,新街,新街镇 30.19183 120.33307 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-21
-7735247 Shangtang Shangtang Shangtang,Shangtang Jiedao,Shangtang Zhen,shang tang,shang tang jie dao,shang tang zhen,上塘,上塘街道,上塘镇 30.31566 120.15033 P PPLA4 CN 02 0 16 Asia/Shanghai 2012-01-21
-7735248 Yangxunqiao Yangxunqiao Yangxunqiao,Yangxunqiao Zhen,yang xun qiao,yang xun qiao zhen,杨汛桥,杨汛桥镇 30.14328 120.35594 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735250 Chengnan Chengnan Chengnan,Chengnan Jiedao,Nanhu Xiang,cheng nan,cheng nan jie dao,nan hu xiang,南湖乡,城南,城南街道 30.73711 120.72937 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-21
-7735255 Xiasha Xiasha Xiasha,Xiasha Jiedao,Xiasha Zhen,xia sha,xia sha jie dao,xia sha zhen,下沙,下沙街道,下沙镇 30.31023 120.31718 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-21
-7735258 Sijiqing Sijiqing Sijiqing,Sijiqing Jiedao,Sijiqing Zhen,si ji qing,si ji qing jie dao,si ji qing zhen,四季青,四季青街道,四季青镇 30.24944 120.18493 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-21
-7735260 Lingzhi Lingzhi Lingzhi,Lingzhi Xiang,Lingzhi Zhen,ling zhi,ling zhi xiang,ling zhi zhen,灵芝,灵芝乡,灵芝镇 30.0285 120.57419 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735261 Tianshengjie Tianshengjie Huanzhu Xiang,Tianshengjie,huan zhu xiang,tian sheng jie,环渚乡,田盛街 30.87783 120.1123 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735265 Pengbu Pengbu Pengbu,Pengbu Zhen,peng bu,peng bu zhen,彭埠,彭埠镇 30.29111 120.22021 P PPLA4 CN 02 0 15 Asia/Shanghai 2012-01-21
-7735271 Dangwan Dangwan Dangwan,Dangwan Zhen,dang wan,dang wan zhen,党湾,党湾镇 30.22951 120.54371 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-21
-7735272 Shuangpu Shuangpu Shuangpu,Shuangpu Zhen,Yuanpu Zhen,shuang pu,shuang pu zhen,yuan pu zhen,双浦,双浦镇,袁浦镇 30.11503 120.11764 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735273 Dingqiao Dingqiao Dingqiao,Dingqiao Zhen,ding qiao,ding qiao zhen,丁桥,丁桥镇 30.35175 120.2228 P PPLA4 CN 02 0 12 Asia/Shanghai 2012-01-21
-7735275 Qinshan Qinshan Qinshan,Qinshan Zhen,qin shan,qin shan zhen,秦山,秦山镇 30.43457 120.92306 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735276 Yaqian Yaqian Yaqian,Yaqian Zhen,ya qian,ya qian zhen,衙前,衙前镇 30.1621 120.40366 P PPLA4 CN 02 0 10 Asia/Shanghai 2012-01-21
-7735281 Yipeng Yipeng Yipeng,Yipeng Zhen,yi peng,yi peng zhen,义蓬,义蓬镇 30.26158 120.48884 P PPLA4 CN 02 0 11 Asia/Shanghai 2012-01-21
-7735286 Dayun Dayun Dayun,Dayun Zhen,da yun,da yun zhen,大云,大云镇 30.78278 120.94608 P PPLA4 CN 02 0 9 Asia/Shanghai 2012-01-21
-7735289 Qixing Qixing Qixing,Qixing Xiang,qi xing,qi xing xiang,七星,七星乡 30.81355 120.81206 P PPLA4 CN 02 0 6 Asia/Shanghai 2012-01-21
-7735294 Daqiao Daqiao Daqiao,Daqiao Zhen,da qiao,da qiao zhen,大桥,大桥镇 30.74751 120.85684 P PPLA4 CN 02 0 7 Asia/Shanghai 2012-01-21
-7735319 Jiefang Jiefang Jiefang,Jiefang Jiedao,jie fang,jie fang jie dao,解放,解放街道 30.77817 120.76328 P PPLA4 CN 02 0 4 Asia/Shanghai 2012-01-21
-7735331 Youchegang Youchegang Youchegang,Youchegang Zhen,you che gang,you che gang zhen,油车港,油车港镇 30.82888 120.74809 P PPLA4 CN 02 0 5 Asia/Shanghai 2012-01-21
-7735400 Yunhe Yunhe Yunhe,Yunhe Zhen,yun he,yun he zhen,运河,运河镇 30.47496 120.29602 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-21
-7735416 Xintang Xintang Xintang,Xintang Jiedao,xin tang,xin tang jie dao,新塘,新塘街道 30.1507 120.30434 P PPLA4 CN 02 0 8 Asia/Shanghai 2012-01-21
-7738451 Huwan Huwan Huwan,Huwan Zhen,hu wan,hu wan zhen,浒湾,浒湾镇 27.92086 116.54827 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-21
-7738998 Qiaodong Qiaodong Qiaodong,Qiaodong Jiedao,Yangzhou Zhen,qiao dong,qiao dong jie dao,yang zhou zhen,桥东,桥东街道,洋洲镇 27.99976 116.36198 P PPLA4 CN 03 0 40 Asia/Shanghai 2012-01-21
-7739012 Qingyun Qingyun Qingyun,Qingyun Jiedao,qing yun,qing yun jie dao,清云,清云街道 27.98538 116.35646 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-21
-7739021 Liujiaqiao Liujiaqiao Liujiaqiao,Liujiaqiao Xiang,liu jia qiao,liu jia qiao xiang,六家桥,六家桥乡 27.80869 116.17429 P PPLA4 CN 03 0 51 Asia/Shanghai 2012-01-21
-7739042 Zhongling Zhongling Zhongling,Zhongling Jiedao,Zhongling Xiang,zhong ling,zhong ling jie dao,zhong ling xiang,钟岭,钟岭乡,钟岭街道 27.95627 116.38282 P PPLA4 CN 03 0 59 Asia/Shanghai 2012-01-21
-7739050 Tanxi Tanxi Tanxi,Tanxi Xiang,tan xi,tan xi xiang,潭溪,潭溪乡 27.28913 116.93749 P PPLA4 CN 03 0 111 Asia/Shanghai 2012-01-21
-7739053 Wanfang Wanfang Wanfang,Wanfang Xiang,Wanfang Zhen,wan fang,wan fang xiang,wan fang zhen,万坊,万坊乡,万坊镇 27.61593 116.61601 P PPLA4 CN 03 0 70 Asia/Shanghai 2012-01-21
-7739060 Jinggonglu Jinggonglu Jinggonglu,Jinggonglu Jiedao,jing gong lu,jing gong lu jie dao,荆公路,荆公路街道 27.99606 116.35509 P PPLA4 CN 03 0 55 Asia/Shanghai 2012-01-21
-7739087 Heshang Heshang Heshang,Heshang Zhen,he shang,he shang zhen,河上,河上镇 27.86635 116.01676 P PPLA4 CN 03 0 77 Asia/Shanghai 2012-01-21
-7739100 Shazhou Shazhou Shazhou,Shazhou Zhen,sha zhou,sha zhou zhen,沙洲,沙洲镇 27.729 116.82578 P PPLA4 CN 03 0 95 Asia/Shanghai 2012-01-21
-7739106 Laixi Laixi Laixi,Laixi Xiang,lai xi,lai xi xiang,莱溪,莱溪乡 27.21024 116.57723 P PPLA4 CN 03 0 97 Asia/Shanghai 2012-01-21
-7739107 Heyuan Heyuan Heyuan,Heyuan Xiang,Heyuan Zhen,he yuan,he yuan xiang,he yuan zhen,何源,何源乡,何源镇 27.99522 116.95249 P PPLA4 CN 03 0 95 Asia/Shanghai 2012-01-21
-7739108 Xidajie Xidajie Fuzhou Shi,Xidajie,Xidajie Jiedao,fu zhou shi,xi da jie,xi da jie jie dao,抚州市,西大街,西大街街道 27.99662 116.3529 P PPLA4 CN 03 0 45 Asia/Shanghai 2012-01-21
-7741544 Gangkou Gangkou Gangkou,Gangkou Xiang,gang kou,gang kou xiang,港口,港口乡 29.43996 114.20194 P PPLA4 CN 12 0 97 Asia/Shanghai 2012-01-21
-7741545 Qingshan Qingshan Qingshan,Qingshan Zhen,qing shan,qing shan zhen,青山,青山镇 29.43888 114.01928 P PPLA4 CN 12 0 79 Asia/Shanghai 2012-01-21
-7741546 Honggangshan Honggangshan Honggangshan,Honggangshan Zhen,hong gang shan,hong gang shan zhen,洪港山,洪港山镇 29.51878 114.86861 P PPLA4 CN 12 0 65 Asia/Shanghai 2012-01-21
-7741547 Fushan Fushan Fushan,Fushan Jiedao,fu shan,fu shan jie dao,浮山,浮山街道 29.8663 114.31131 P PPLA4 CN 12 0 79 Asia/Shanghai 2012-01-21
-7741548 Guihua Guihua Guihua,Guihua Zhen,gui hua,gui hua zhen,桂花,桂花镇 29.71785 114.34465 P PPLA4 CN 12 0 80 Asia/Shanghai 2012-01-21
-7741549 Damu Damu Damu,Damu Xiang,da mu,da mu xiang,大幕,大幕乡 29.80877 114.53912 P PPLA4 CN 12 0 99 Asia/Shanghai 2012-01-21
-7741550 Xiangyanghu Xiangyanghu Xiangyanghu,Xiangyanghu Zhen,xiang yang hu,xiang yang hu zhen,向阳湖,向阳湖镇 29.90554 114.16391 P PPLA4 CN 12 0 41 Asia/Shanghai 2012-01-21
-7741551 Dalu Dalu Dalu,Dalu Xiang,da lu,da lu xiang,大路,大路乡 29.59938 114.43179 P PPLA4 CN 12 0 91 Asia/Shanghai 2012-01-21
-7741552 Jiugongshan Jiugongshan Jiugongshan,Jiugongshan Zhen,jiu gong shan,jiu gong shan zhen,九宫山,九宫山镇 29.5188 114.6814 P PPLA4 CN 12 0 72 Asia/Shanghai 2012-01-21
-7741553 Tongzhong Tongzhong Tongzhong,Tongzhong Xiang,tong zhong,tong zhong xiang,铜钟,铜钟乡 29.47589 114.10607 P PPLA4 CN 12 0 94 Asia/Shanghai 2012-01-21
-7741555 Baini Baini Baini,Baini Zhen,bai ni,bai ni zhen,白霓,白霓镇 29.53495 114.12945 P PPLA4 CN 12 0 63 Asia/Shanghai 2012-01-21
-7741556 Chuangwang Chuangwang Chuangwang,Chuangwang Zhen,chuang wang,chuang wang zhen,闯王,闯王镇 29.49538 114.61938 P PPLA4 CN 12 0 124 Asia/Shanghai 2012-01-21
-7741557 Wangying Wangying Wangying,Wangying Zhen,wang ying,wang ying zhen,王英,王英镇 29.8041 114.82855 P PPLA4 CN 12 0 101 Asia/Shanghai 2012-01-21
-7741558 Gaojian Gaojian Gaojian,Gaojian Xiang,gao jian,gao jian xiang,高枧,高枧乡 29.27867 114.06778 P PPLA4 CN 12 0 200 Asia/Shanghai 2012-01-21
-7741770 Dongfang Sizu Dongfang Sizu Dongfang Sizu,dong fang si zu,东方四组 32.12682 121.38024 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-21
-7745040 Xinwan Xinwan Xinwan,Xinwan Xiang,xin wan,xin wan xiang,新湾,新湾乡 29.19331 114.45353 P PPLA4 CN 03 0 170 Asia/Shanghai 2012-01-21
-7745041 Shanghang Shanghang Shanghang,Shanghang Xiang,shang hang,shang hang xiang,上杭,上杭乡 29.10686 114.43764 P PPLA4 CN 03 0 150 Asia/Shanghai 2012-01-21
-7745043 Shangtang Shangtang Shangtang,Shangtang Xiang,shang tang,shang tang xiang,上汤,上汤乡 29.31303 114.6415 P PPLA4 CN 03 0 170 Asia/Shanghai 2012-01-21
-7745044 Zhuping Zhuping Zhuping,Zhuping Xiang,zhu ping,zhu ping xiang,竹坪,竹坪乡 29.01162 114.47482 P PPLA4 CN 03 0 120 Asia/Shanghai 2012-01-21
-7745046 Quanfeng Quanfeng Quanfeng,Quanfeng Zhen,quan feng,quan feng zhen,全丰,全丰镇 29.12879 114.07014 P PPLA4 CN 03 0 244 Asia/Shanghai 2012-01-21
-7745047 Huanglong Huanglong Huanglong,Huanglong Xiang,huang long,huang long xiang,黄龙,黄龙乡 29.02805 114.03184 P PPLA4 CN 03 0 292 Asia/Shanghai 2012-01-21
-7745048 Miaoling Miaoling Miaoling,Miaoling Xiang,miao ling,miao ling xiang,庙岭,庙岭乡 29.10445 114.70426 P PPLA4 CN 03 0 158 Asia/Shanghai 2012-01-21
-7745049 Shi’ao Shi'ao Shi'ao,Shi'ao Xiang,Shi’ao,Shi’ao Xiang,shi ao,shi ao xiang,石坳,石坳乡 29.00279 114.18672 P PPLA4 CN 03 0 154 Asia/Shanghai 2012-01-21
-7745050 Bailing Bailing Bailing,Bailing Zhen,bai ling,bai ling zhen,白岭,白岭镇 29.07995 114.0214 P PPLA4 CN 03 0 295 Asia/Shanghai 2012-01-21
-7745051 Dachun Dachun Dachun,Dachun Xiang,da chun,da chun xiang,大椿,大椿乡 29.11867 114.25043 P PPLA4 CN 03 0 169 Asia/Shanghai 2012-01-21
-7745053 Bujia Bujia Bujia,Bujia Xiang,bu jia,bu jia xiang,布甲,布甲乡 29.28597 114.40988 P PPLA4 CN 03 0 264 Asia/Shanghai 2012-01-21
-7745054 Lukou Lukou Lukou,Lukou Xiang,lu kou,lu kou xiang,路口,路口乡 29.08076 114.08846 P PPLA4 CN 03 0 196 Asia/Shanghai 2012-01-21
-7745055 Donglin Donglin Donglin,Donglin Xiang,dong lin,dong lin xiang,东林,东林乡 29.23381 114.53844 P PPLA4 CN 03 0 205 Asia/Shanghai 2012-01-21
-7745071 Futu Futu Futu,Futu Zhen,fu tu,fu tu zhen,浮屠,浮屠镇 29.90478 115.0822 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7745072 Dafasi Dafasi Dafasi,Dafasi Zhen,da fa si,da fa si zhen,大法寺,大法寺镇 29.94968 115.47663 P PPLA4 CN 12 0 35 Asia/Shanghai 2012-01-21
-7745074 Tianzhen Tianzhen Tianzhen,Tianzhencun,tian zhen,田镇 29.8672 115.47174 P PPLA4 CN 12 0 19 Asia/Shanghai 2012-01-21
-7745075 Fuchi Fuchi Fuchi,Fuchi Zhen,fu chi,fu chi zhen,富池,富池镇 29.85505 115.43795 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-21
-7745076 Huangjin Huangjin Huangjin,Huangjin Xiang,huang jin,huang jin xiang,黄金,黄金乡 29.77673 115.48184 P PPLA4 CN 03 0 44 Asia/Shanghai 2012-01-21
-7745854 Zhaomin Zhaomin Zhaomin,Zhaomin Zhen,zhao min,zhao min zhen,兆民,兆民镇 32.01107 121.58589 P PPLA4 CN 04 0 4 Asia/Shanghai 2012-01-21
-7746302 Quankou Quankou Quankou,Quankou Zhen,quan kou,quan kou zhen,泉口,泉口镇 29.49856 115.02752 P PPLA4 CN 03 0 137 Asia/Shanghai 2012-01-21
-7746304 Songxi Songxi Songxi,Songxi Zhen,song xi,zhen xi zhen,宋溪,镇溪镇 29.30684 115.10712 P PPLA4 CN 03 0 78 Asia/Shanghai 2012-01-21
-7746307 Yanyang Yanyang Yanyang,Yanyang XIang,yan yang,yan yang xiang,严阳,严阳乡 29.12076 115.1245 P PPLA4 CN 03 0 380 Asia/Shanghai 2012-01-21
-7746310 Guanlian Guanlian Guanlian,Guanlian Xiang,guan lian,guan lian xiang,官连,官连乡 29.37516 115.31308 P PPLA4 CN 03 0 103 Asia/Shanghai 2012-01-21
-7746311 Luxi Luxi Luxi,Luxi Zhen,lu xi,lu xi zhen,鲁溪,鲁溪镇 29.4348 115.23318 P PPLA4 CN 03 0 82 Asia/Shanghai 2012-01-21
-7746312 Baofeng Baofeng Baofeng,Baofeng Zhen,bao feng,bao feng zhen,宝峰,宝峰镇 29.00687 115.40235 P PPLA4 CN 03 0 124 Asia/Shanghai 2012-01-21
-7746690 Hongyi Hongyi Hongyi,Hongyi Xiang,hong yi,hong yi xiang,洪一,洪一乡 29.62358 115.19879 P PPLA4 CN 03 0 72 Asia/Shanghai 2012-01-21
-7746699 Nanyi Nanyi Nanyi,Nanyi Zhen,nan yi,nan yi zhen,南义,南义镇 29.44816 115.32604 P PPLA4 CN 03 0 74 Asia/Shanghai 2012-01-21
-7746703 Cheqiao Cheqiao Cheqiao,Cheqiao Zhen,che qiao,che qiao zhen,车桥,车桥镇 29.36082 115.46095 P PPLA4 CN 03 0 90 Asia/Shanghai 2012-01-21
-7746706 Tangshan Tangshan Tangshan,Tangshan Xiang,tang shan,tang shan xiang,塘山,塘山乡 29.49609 115.49666 P PPLA4 CN 03 0 284 Asia/Shanghai 2012-01-21
-7746708 Huayuan Huayuan Huayuan,Huayuan Xiang,hua yuan,hua yuan xiang,花园,花园乡 29.59638 115.32052 P PPLA4 CN 03 0 138 Asia/Shanghai 2012-01-21
-7746712 Zhaochen Zhaochen Zhaochen,Zhaochen Zhen,zhao chen,zhao chen zhen,肇陈,肇陈镇 29.58212 115.18561 P PPLA4 CN 03 0 86 Asia/Shanghai 2012-01-21
-7746725 Leyuan Leyuan Leyuan,Leyuan Xiang,le yuan,le yuan xiang,乐园,乐园乡 29.51442 115.21869 P PPLA4 CN 03 0 110 Asia/Shanghai 2012-01-21
-7746800 Fengshan Fengshan Fengshan,Fengshan Zhen,feng shan,feng shan zhen,凤山,凤山镇 30.78848 115.39214 P PPLA4 CN 12 0 91 Asia/Shanghai 2012-01-21
-7746889 Henglishan Henglishan Henglishan,Henglishan Xiang,heng li shan,heng li shan xiang,横立山,横立山乡 29.70042 115.43454 P PPLA4 CN 03 0 260 Asia/Shanghai 2012-01-21
-7751198 Sanzhaolun Sanzhaolun Sanzhaolun,Sanzhaolun Xiang,san zhao lun,san zhao lun xiang,三爪仑,三爪仑乡 29.06239 115.22124 P PPLA4 CN 03 0 415 Asia/Shanghai 2012-01-21
-7751200 Cengjia Cengjia Cengjia,ceng jia,曾家 29.0198 115.22255 P PPLA4 CN 03 0 362 Asia/Shanghai 2012-01-21
-7751201 Ruanyitu Ruanyitu Ruanyitu,ruan yi tu,阮宜堍 29.92658 115.189 P PPLA4 CN 12 0 115 Asia/Shanghai 2012-01-21
-7752468 Xingguo Xingguo Xingguo,Xingguo Zhen,xing guo,xing guo zhen,兴国,兴国镇 29.83375 115.20866 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7752470 Neihu Neihu Neihu,Neihu Zhen,nei hu,nei hu zhen,内胡,内胡镇 29.71872 115.40552 P PPLA4 CN 12 0 122 Asia/Shanghai 2012-01-21
-7753406 Leshan Leshan Leshan,Leshan Xiang,le shan,le shan xiang,乐山,乐山乡 29.59282 115.47377 P PPLA4 CN 03 0 420 Asia/Shanghai 2012-01-21
-7757099 Xinzhuang Xinzhuang Xinzhuang,Xinzhuang Zhen,xin zhuang,xin zhuang zhen,新庄,新庄镇 28.45861 115.07969 P PPLA4 CN 03 0 67 Asia/Shanghai 2012-01-21
-7757107 Shuikou Shuikou Shuikou,Shuikou Xiang,shui kou,shui kou xiang,水口,水口乡 28.886 115.29026 P PPLA4 CN 03 0 87 Asia/Shanghai 2012-01-21
-7757108 Chi’an Chi'an Chi'an,Chi'an Zhen,Chi’an,Chi’an Zhen,chi an,chi an zhen,赤岸,赤岸镇 28.69218 115.36912 P PPLA4 CN 03 0 46 Asia/Shanghai 2012-01-21
-7757109 Leigongjian Leigongjian Leigongjian,Leigongjian Xiang,lei gong jian,lei gong jian xiang,雷公尖,雷公尖乡 28.88622 115.33968 P PPLA4 CN 03 0 92 Asia/Shanghai 2012-01-21
-7757658 Macaomiao Macaomiao Macaomiao,Macaomiao Zhen,ma cao miao,ma cao miao zhen,马曹庙,马曹庙镇 30.65739 115.01764 P PPLA4 CN 12 0 55 Asia/Shanghai 2012-01-21
-7757659 Fuzihe Fuzihe Fuzihe,Fuzihe Zhen,fu zi he,fu zi he zhen,夫子河,夫子河镇 30.95819 115.02455 P PPLA4 CN 12 0 60 Asia/Shanghai 2012-01-21
-7757660 Tuanbei Tuanbei Tuanbei,Tuanbei Zhen,tuan bei,tuan bei zhen,团陂,团陂镇 30.72869 115.22768 P PPLA4 CN 12 0 67 Asia/Shanghai 2012-01-21
-7757661 Hekou Hekou Hekou,Hekou Zhen,he kou,he kou zhen,河口,河口镇 30.14978 115.22074 P PPLA4 CN 12 0 33 Asia/Shanghai 2012-01-21
-7757662 Sanhua Sanhua Sanhua,Sanhua Zhen,san hua,san hua zhen,散花,散花镇 30.24238 115.10859 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-21
-7757663 Bahe Bahe Bahe,Bahe Zhen,ba he,ba he zhen,巴河,巴河镇 30.42883 115.02291 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7757664 Chencelou Chencelou Chencelou,Chencelou Zhen,chen ce lou,chen ce lou zhen,陈策楼,陈策楼镇 30.59846 115.04615 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-21
-7757665 Dupi Dupi Dupi,Dupi Xiang,du pi,du pi xiang,杜皮,杜皮乡 30.79565 115.05074 P PPLA4 CN 12 0 169 Asia/Shanghai 2012-01-21
-7757666 Bailian Bailian Bailian,Bailian Zhen,bai lian,bai lian zhen,白莲,白莲镇 30.5951 115.44194 P PPLA4 CN 12 0 87 Asia/Shanghai 2012-01-21
-7757667 Dawang Dawang Dawang,Dawang Zhen,da wang,da wang zhen,大王,大王镇 30.03871 115.11812 P PPLA4 CN 12 0 43 Asia/Shanghai 2012-01-21
-7757668 Dalukou Dalukou Dalukou,Huahu,Huahu Jiedao,Huahu Zhen,da lu kou,hua hu,hua hu jie dao,hua hu zhen,大路口,花湖,花湖街道,花湖镇 30.2742 114.99904 P PPLA4 CN 12 0 23 Asia/Shanghai 2012-01-21
-7757669 Yantianhe Yantianhe Yantianhe,Yantianhe Zhen,yan tian he,yan tian he zhen,盐田河,盐田河镇 30.96973 115.1713 P PPLA4 CN 12 0 157 Asia/Shanghai 2012-01-21
-7757670 Dajipu Dajipu Dajipu,Dajipu Zhen,da ji pu,da ji pu zhen,大箕铺,大箕铺镇 30.04412 115.01367 P PPLA4 CN 12 0 46 Asia/Shanghai 2012-01-21
-7757671 Tuanchengshan Tuanchengshan Tuanchengshan,Tuanchengshan Jiedao,tuan cheng shan,tuan cheng shan jie dao,团城山,团城山街道 30.20192 115.02868 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7757672 Hengche Hengche Hengche,Hengche Zhen,heng che,heng che zhen,横车,横车镇 30.30792 115.36557 P PPLA4 CN 12 0 31 Asia/Shanghai 2012-01-21
-7757673 Guanyao Guanyao Guanyao,Guanyao Zhen,guan yao,guan yao zhen,管窑,管窑镇 30.15035 115.27796 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7757674 Yangye Yangye Yangye,Yangye Zhen,yang ye,yang ye zhen,杨叶,杨叶镇 30.31506 115.06641 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-21
-7758822 Dengyue Dengyue Dengyue,Dengyue Jiedao,cheng yue,cheng yue jie dao,澄月,澄月街道 30.18635 115.04983 P PPLA4 CN 12 0 26 Asia/Shanghai 2012-01-21
-7763411 Haixiu Haixiu Haixiu,Haixiu Zhen,hai xiu,hai xiu zhen,海秀,海秀镇 20.01096 110.27607 P PPLA4 CN 31 0 27 Asia/Chongqing 2012-01-21
-7767158 Shangshuai Shangshuai Shangshuai,Shangshuai Zhen,shang shuai,shang shuai zhen,上帅,上帅镇 24.25167 112.03667 P PPLA4 CN 30 0 358 Asia/Shanghai 2012-01-21
-7767455 Daping Daping Daping,Daping Zhen,da ping,da ping zhen,大平,大平镇 24.64944 112.16861 P PPLA4 CN 30 0 469 Asia/Shanghai 2012-01-21
-7771187 Shizikeng Shizikeng Shizikeng,Shizikeng Zhen,shi zi keng,shi zi keng zhen,石子坑,石子坑镇 24.08639 115.40333 P PPLA4 CN 30 0 256 Asia/Shanghai 2012-01-21
-7772811 Guzhai Guzhai Guzhai,Guzhai Zhen,gu zhai,gu zhai zhen,古寨,古寨镇 24.39083 115.14833 P PPLA4 CN 30 0 121 Asia/Shanghai 2012-01-21
-7795726 Shitang Shitang Shitang,Shitang Zhen,shi tang,shi tang zhen,石塘,石塘镇 25.08278 113.57444 P PPLA4 CN 30 0 118 Asia/Shanghai 2012-01-21
-7843636 Baihe Baihe Baihe,bai he,白鹤 31.25616 121.13653 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-21
-7843638 Changzheng Changzheng Changzheng,Changzheng Zhen,zhang zheng,zhang zheng zhen,长征,长征镇 31.23912 121.36779 P PPLA4 CN 23 0 3 Asia/Shanghai 2012-01-21
-7843640 Jiuting Jiuting Jiuting,Jiuting Zhen,jiu ting,jiu ting zhen,九亭,九亭镇 31.13055 121.31628 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-21
-7843642 Dongjing Dongjing Dongjing,dong jing,洞泾 31.0867 121.263 P PPLA4 CN 23 0 4 Asia/Shanghai 2012-01-21
-7843644 Pujiang Pujiang Pujiang,Pujiang Zhen,pu jiang,pu jiang zhen,浦江,浦江镇 31.09357 121.49581 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-21
-7843648 Kangqiao Kangqiao Kangqiao,Kangqiao Zhen,kang qiao,kang qiao zhen,康桥,康桥镇 31.12931 121.56856 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-21
-7843983 Yongxing Yongxing Qilong,Yongxing,Yongxing Zhen,qi long,yong xing,yong xing zhen,启隆,永兴,永兴镇 31.77607 121.4544 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-21
-7844140 Xingang Xingang Xingang,Xingang Zhen,xin gang,xin gang zhen,新港,新港镇 31.72048 120.92712 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-21
-7844460 Yangxiang Yangxiang Dianshanhu,Dianshanhu Zhen,Yangxiang,Yangxiang Zhen,dian shan hu,dian shan hu zhen,yang xiang,yang xiang zhen,杨湘,杨湘镇,淀山湖,淀山湖镇 31.18415 121.02473 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-21
-7844545 Yueyang Yueyang Yueyang,Yueyang Jiedao,yue yang,yue yang jie dao,岳阳,岳阳街道 31.00983 121.215 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-21
-7844546 Yongfeng Yongfeng Yongfeng,Yongfeng Jiedao,yong feng,yong feng jie dao,永丰,永丰街道 31.00627 121.20164 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-21
-7844606 Yingpu Yingpu Yingpu,Yingpu Jiedao,ying pu,ying pu jie dao,盈浦,盈浦街道 31.15528 121.10575 P PPLA4 CN 23 0 10 Asia/Shanghai 2012-01-21
-7845495 Xiayang Xiayang Xiayang,Xiayang Jiedao,xia yang,xia yang jie dao,夏阳,夏阳街道 31.14967 121.11588 P PPLA4 CN 23 0 6 Asia/Shanghai 2012-01-21
-7845524 Xinchenglu Xinchenglu Xinchenglu,Xinchenglu Jiedao,xin cheng lu,xin cheng lu jie dao,新成路,新成路街道 31.38864 121.26305 P PPLA4 CN 23 0 8 Asia/Shanghai 2012-01-21
-7846217 Jiangchuanlu Jiangchuanlu Jiangchuanlu,Jiangchuanlu Jiedao,jiang chuan lu,jiang chuan lu jie dao,江川路,江川路街道 31.01392 121.40742 P PPLA4 CN 23 0 3 Asia/Shanghai 2012-01-21
-7847031 Zhenxin Zhenxin Zhenxin,Zhenxin Jiedao,zhen xin,zhen xin jie dao,真新,真新街道 31.2461 121.35409 P PPLA4 CN 23 0 4 Asia/Shanghai 2012-01-21
-7850670 Peimei Peimei Peimei,Peimei Zhen,pei mei,pei mei zhen,裴梅,裴梅镇 28.63954 117.10369 P PPLA4 CN 03 0 64 Asia/Shanghai 2012-01-21
-7855680 Shiligang Shiligang Shiligang,Shiligang Xiang,shi li gang,shi li gang xiang,十里岗,十里岗乡 28.87175 117.49381 P PPLA4 CN 03 0 47 Asia/Shanghai 2012-01-21
-7856231 Zhongshan Zhongshan Zhongshan,Zhongshan Jiedao,Zhongshan Jiedao Banshichu,zhong shan,zhong shan jie dao,zhong shan jie dao ban shi chu,中山,中山街道,中山街道办事处 31.03601 121.24414 P PPLA4 CN 23 0 5 Asia/Shanghai 2012-01-21
-7857085 Changqiao Changqiao Changqiao,Changqiao Jiedao,Changqiao Jiedao Banshichu,zhang qiao,zhang qiao jie dao,zhang qiao jie dao ban shi chu,长桥,长桥街道,长桥街道办事处 31.14194 121.434 P PPLA4 CN 23 0 7 Asia/Shanghai 2012-01-21
-7885407 Huangling Huangling Huangling,Huangling Jiedao,huang ling,huang ling jie dao,荒岭,荒岭街道 40.84744 122.72544 P PPLA4 CN 19 0 28 Asia/Shanghai 2012-01-21
-7885419 Qianliu Qianliu Qianliu,Qianliu Jiedao,qian liu,qian liu jie dao,前柳,前柳街道 40.84171 122.6344 P PPLA4 CN 19 0 18 Asia/Shanghai 2012-01-21
-7885594 Xinxing Xinxing Xinxing,Xinxing Jiedao,xin xing,xin xing jie dao,新兴,新兴街道 40.71841 122.25624 P PPLA4 CN 19 0 4 Asia/Shanghai 2012-01-21
-7886363 Gulou Gulou Gulou,Gulou Jiedao,gu lou,gu lou jie dao,鼓楼,鼓楼街道 40.39893 122.36235 P PPLA4 CN 19 0 16 Asia/Shanghai 2012-01-21
-7886396 Jianfeng Jianfeng Jianfeng,Jianfeng Jiedao,jian feng,jian feng jie dao,建丰,建丰街道 40.66939 122.2388 P PPLA4 CN 19 0 5 Asia/Shanghai 2012-01-21
-7886397 Shengli Shengli Shengli,Shengli Jiedao,sheng li,sheng li jie dao,胜利,胜利街道 40.67406 122.21832 P PPLA4 CN 19 0 4 Asia/Shanghai 2012-01-21
-7886497 Qinghua Qinghua Qinghua,Qinghua Jiedao,qing hua,qing hua jie dao,清华,清华街道 40.66431 122.21178 P PPLA4 CN 19 0 6 Asia/Shanghai 2012-01-21
-7886514 Ancun Ancun Ancun,Ancun Jiedao,an cun,an cun jie dao,安村,安村街道 40.87099 122.70817 P PPLA4 CN 19 0 23 Asia/Shanghai 2012-01-21
-7886687 Haixing Haixing Haixing,Haixing Jiedao,hai xing,hai xing jie dao,海星,海星街道 40.27608 122.13034 P PPLA4 CN 19 0 10 Asia/Shanghai 2012-01-21
-7886703 Dongcheng Dongcheng Dongcheng,Dongcheng Jiedao,dong cheng,dong cheng jie dao,东城,东城街道 40.40535 122.37197 P PPLA4 CN 19 0 11 Asia/Shanghai 2012-01-21
-7886709 Yuejin Yuejin Yuejin,Yuejin Jiedao,yue jin,yue jin jie dao,跃进,跃进街道 40.67339 122.25688 P PPLA4 CN 19 0 6 Asia/Shanghai 2012-01-21
-7886723 Chengdong Chengdong Chengdong,Chengdong Jiedao,cheng dong,cheng dong jie dao,城东,城东街道 40.65846 122.40325 P PPLA4 CN 19 0 4 Asia/Shanghai 2012-01-21
-7886729 Xinghai Xinghai Xinghai,Xinghai Jiedao,xing hai,xing hai jie dao,兴海,兴海街道 40.86159 122.72809 P PPLA4 CN 19 0 27 Asia/Shanghai 2012-01-21
-7886741 Xinjian Xinjian Xinjian,Xinjian Jiedao,xin jian,xin jian jie dao,新建,新建街道 40.85029 122.35912 P PPLA4 CN 19 0 4 Asia/Shanghai 2012-01-21
-7886742 Honghai Honghai Honghai,Honghai Jiedao,hong hai,hong hai jie dao,红海,红海街道 40.24098 122.11162 P PPLA4 CN 19 0 7 Asia/Shanghai 2012-01-21
-7886760 Guoyuan Guoyuan Guoyuan,Guoyuan Xiang,Xiongyueguoyuan Xiang,guo yuan,guo yuan xiang,xiong yue guo yuan xiang,果园,果园乡,熊岳果园乡 40.18049 122.13942 P PPLA4 CN 19 0 19 Asia/Shanghai 2012-01-21
-7887748 Shiqiao Shiqiao Shiqiao,Shiqiao Jiedao,shi qiao,shi qiao jie dao,石桥,石桥街道 40.63607 122.49754 P PPLA4 CN 19 0 14 Asia/Shanghai 2012-01-21
-7887749 Gangdu Gangdu Gangdu,Gangdu Jiedao,gang dou,gang dou jie dao,钢都,钢都街道 40.63918 122.51255 P PPLA4 CN 19 0 22 Asia/Shanghai 2012-01-21
-7894308 Biruxong Biruxong Biru Xian,Biruxiong,Biruxong,bi ru xian,bi ru xiong,比如县,比如雄 31.401 93.601 P PPLA3 CN 14 0 4582 Asia/Urumqi 2012-01-21
-7895338 E’zhou E'zhou E'zhou,E'zhou Shi,E’zhou,E’zhou Shi,e zhou,鄂州 30.39607 114.88655 P PPLA2 CN 12 0 29 Asia/Shanghai 2011-08-10
-7895339 Ducheng Ducheng Ducheng,Ducheng Zhen,du cheng,du cheng zhen,堵城,堵城镇 30.54489 114.89616 P PPLA4 CN 12 0 24 Asia/Shanghai 2012-01-21
-7895609 Niaojin Niaojin Niaojin,Niaojin Jiedao,niao jin,niao jin jie dao,鸟金,鸟金街道 30.34822 114.05114 P PPLA4 CN 12 0 26 Asia/Shanghai 2012-01-21
-7895614 Sheshan Sheshan Sheshan,Sheshan Jiedao,zha shan,zha shan jie dao,奓山,奓山街道 30.44759 114.00601 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-21
-7895993 Zoumaling Zoumaling Zoumaling,Zoumaling Jiedao,zou ma ling,zou ma ling jie dao,走马岭,走马岭街道 30.65305 114.01591 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7895996 Dongshan Dongshan Dongshan,Dongshan Jiedao,dong shan,dong shan jie dao,东山,东山街道 30.77635 114.01434 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-21
-7895998 Mintian Mintian Jinghe,Jinghe Jiedao,Mintian,jing he,jing he jie dao,min tian,民田,经河,经河街道 30.68309 114.15912 P PPLA4 CN 12 0 26 Asia/Shanghai 2012-01-21
-7895999 Sandian Sandian Sandian,san dian,三店 30.6517 114.15214 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7896018 Agar Agar Agar,Aka,Gongjue Xian,a ka,gong jue xian,贡觉县,阿卡 30.801 98.201 P PPLA3 CN 14 0 4791 Asia/Urumqi 2012-01-21
-7896362 Changqing Changqing Changqing,Changqing Jiedao,zhang qing,zhang qing jie dao,长青,长青街道 30.61447 114.11716 P PPLA4 CN 12 0 22 Asia/Shanghai 2012-01-21
-7898414 Tianhe Tianhe Tianhe,tian he,天河 30.8039 114.21428 P PPLA4 CN 12 0 43 Asia/Shanghai 2012-01-21
-7903964 Tianxing Tianxing Tianxing,Tianxing Xiang,tian xing,tian xing xiang,天兴,天兴乡 30.669 114.41456 P PPLA4 CN 12 0 16 Asia/Shanghai 2012-01-21
-7903965 Wutongkou Wutongkou Wuhu,Wuhu Nongchang,Wutongkou,wu hu,wu tong kou,五湖,五通口 30.6926 114.40349 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7904017 Qianquan Qianquan Huangbei,Huangbei Qu,Qianquan,Qianquan Jiedao,huang bei,huang bei qu,qian chuan,qian chuan jie dao,前川,前川街道,黄陂,黄陂区 30.87126 114.37258 P PPLA3 CN 12 0 30 Asia/Shanghai 2012-01-21
-7904019 Jiaomingsi Jiaomingsi Jiaomingsi,Sanli,Sanli Zhen,jiao ming si,san li,san li zhen,三里,三里镇,教命寺 30.7833 114.41144 P PPLA4 CN 12 0 17 Asia/Shanghai 2012-01-21
-7904111 Zhangduhu Zhangduhu Zhangduhu,Zhangduhu Jiedao,Zhangduhu Nongchang,zhang du hu,zhang du hu jie dao,zhang du hu nong chang,涨渡湖,涨渡湖农场,涨渡湖街道 30.67325 114.79017 P PPLA4 CN 12 0 21 Asia/Shanghai 2012-01-21
-7904808 Xiaoluojiazui Xiaoluojiazui Xiaoluojiazui,xiao luo jia ju,小罗家咀 30.53675 114.15934 P PPLA4 CN 12 0 22 Asia/Shanghai 2012-01-21
-7904809 Jiangti Jiangti Jiangti,Jiangti Jiedao,jiang ti,jiang ti jie dao,江提,江提街道 30.52333 114.23793 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-21
-7904810 Zhangjiawan Zhangjiawan Jiangjiawan Jiedao,Zhangjiawan,zhang jia wan,zhang jia wan jie dao,张家湾,张家湾街道 30.47864 114.2716 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7904813 Changfeng Changfeng Changfeng,Changfeng Jiedao,zhang feng,zhang feng jie dao,长丰,长丰街道 30.60704 114.20749 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-21
-7905030 Houhu Houhu Houhu,Houhu Jiedao,hou hu,hou hu jie dao,后湖,后湖街道 30.65968 114.32553 P PPLA4 CN 12 0 21 Asia/Shanghai 2012-01-21
-7905220 Yongfeng Yongfeng Yongfeng,Yongfeng Jiedao,yong feng,yong feng jie dao,永丰,永丰街道 30.56549 114.22026 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-21
-7905229 Shilipu Shilipu Qianduankou Jiedao,Qinduankou,Shilipu,qin duan kou,qin duan kou jie dao,shi li pu,十里铺,琴断口,琴断口街道 30.56172 114.21356 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-21
-7905231 Guanshan Guanshan Guanshan,Guanshan Jiedao,guan shan,guan shan jie dao,关山,关山街道 30.50658 114.40339 P PPLA4 CN 12 0 32 Asia/Shanghai 2012-01-21
-7905235 Wangdian Wangdian Jiufeng,Jiufeng Xiang,Wangdian,jiu feng,jiu feng xiang,wang dian,九峰,九峰乡,王店 30.50856 114.47717 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-21
-7905236 Huashan Huashan Huashan,Huashan Zhen,hua shan,hua shan zhen,花山,花山镇 30.54278 114.51411 P PPLA4 CN 12 0 36 Asia/Shanghai 2012-01-21
-7905237 Zuoling Zuoling Zuoling,Zuoling Zhen,zuo ling,zuo ling zhen,左岭,左岭镇 30.53284 114.60034 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-21
-7905243 Baiyushan Baiyushan Baiyushan,Baiyushan Jiedao,bai yu shan,bai yu shan jie dao,百玉山,百玉山街道 30.60474 114.48753 P PPLA4 CN 12 0 38 Asia/Shanghai 2012-01-21
-7905244 Wudong Wudong Wudong,Wudong Jiedao,wu dong,wu dong jie dao,武东,武东街道 30.58234 114.45456 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-21
-7905246 Hongqi Hongqi Hongqi,Hongqi Jiedao,hong qi,hong qi jie dao,红旗,红旗街道 30.60599 114.43185 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-21
-7905248 Heping Heping Heping,Heping Jiedao,he ping,he ping jie dao,和平,和平街道 30.62907 114.38842 P PPLA4 CN 12 0 27 Asia/Shanghai 2012-01-21
-7905249 Dujiajing Dujiajing Dujiajing,Jianshe,Jianshe Xiang,du jia jing,jian she,jian she xiang,建设,建设乡,杜家井 30.66212 114.45623 P PPLA4 CN 12 0 28 Asia/Shanghai 2012-01-21
-7905250 Shizishan Shizishan Shizishan,Shizishan Jiedao,shi zi shan,shi zi shan jie dao,狮子山,狮子山街道 30.48573 114.3292 P PPLA4 CN 12 0 25 Asia/Shanghai 2012-01-21
-7905257 Minji Minji Minji,Minji Xiang,min ji,min ji xiang,闵集,闵集乡 30.84145 114.13025 P PPLA4 CN 12 0 39 Asia/Shanghai 2012-01-21
-7905258 Zhuzhan Zhuzhan Zhuzhan,Zhuzhan Zhen,zhu zhan,zhu zhan zhen,祝站,祝站镇 30.92676 114.1552 P PPLA4 CN 12 0 30 Asia/Shanghai 2012-01-21
-7905285 Sancha Sancha Sancha,Sancha Zhen,san cha,san cha zhen,三汊,三汊镇 30.94494 114.05929 P PPLA4 CN 12 0 29 Asia/Shanghai 2012-01-21
-7905352 Dongfenglu Dongfenglu Dongfenglu,Dongfenglu Jiedao,dong feng lu,dong feng lu jie dao,东风路,东风路街道 30.09271 114.96382 P PPLA4 CN 12 0 37 Asia/Shanghai 2012-01-21
-7905353 Majiao Majiao Jinhu,Jinhu Jiedao,Majiao,jin hu,jin hu jie dao,ma jiao,金湖,金湖街道,马叫 30.06359 114.92948 P PPLA4 CN 12 0 54 Asia/Shanghai 2012-01-21
-7905354 Mingshan Mingshan Mingshan,Mingshan Xiang,ming shan,ming shan xiang,茗山,茗山乡 30.06044 114.75938 P PPLA4 CN 12 0 37 Asia/Shanghai 2012-01-21
-7905355 Laoxialu Laoxialu Laoxialu,Laoxialu Jiedao,lao xia lu,lao xia lu jie dao,老下陆,老下陆街道 30.18698 114.97425 P PPLA4 CN 12 0 47 Asia/Shanghai 2012-01-21
-7905356 Xinmiao Xinmiao Xinmiao,Xinmiao Zhen,xin miao,xin miao zhen,新庙,新庙镇 30.38786 114.92606 P PPLA4 CN 12 0 34 Asia/Shanghai 2012-01-21
-7905757 Liufang Liufang Liufang,Liufang Jiedao,liu fang,liu fang jie dao,流芳,流芳街道 30.44523 114.4486 P PPLA4 CN 12 0 51 Asia/Shanghai 2012-01-21
-7911338 Jishi Jishi Jishi,Jishi Zhen,Xunhua Salazu Zizhixian,ji shi,ji shi zhen,sa la zu zi zhi xian,xun hua sa la zu zi zhi xian,循化撒拉族自治县,撒拉族自治县,积石,积石镇 35.84613 102.48171 P PPLA3 CN 06 0 1883 Asia/Chongqing 2012-01-21
-7915956 Guanyinge Guanyinge Guanyinge,Guanyinge Jiedao,guan yin ge,guan yin ge jie dao,观音阁,观音阁街道 41.31333 124.11461 P PPLA4 CN 19 0 200 Asia/Shanghai 2012-01-21
-7916068 Zhangdian Zhangdian Zhangdian,Zhangdian Jiedao,zhang dian,zhang dian jie dao,张甸,张甸街道 41.8172 124.04135 P PPLA4 CN 19 0 107 Asia/Shanghai 2012-01-21
-7920232 Heigou Heigou Heigou,Heigou Zhen,hei gou,hei gou zhen,黑沟,黑沟镇 40.08177 123.60696 P PPLA4 CN 19 0 22 Asia/Shanghai 2012-01-21
-7920233 Bahui Bahui Bahui,Bahui Zhen,ba hui,ba hui zhen,八会,八会镇 40.93187 123.20036 P PPLA4 CN 19 0 163 Asia/Shanghai 2012-01-21
-7920235 Chaoyang Chaoyang Chaoyang,Chaoyang Xiang,chao yang,chao yang xiang,朝阳,朝阳乡 40.45742 123.55063 P PPLA4 CN 19 0 95 Asia/Shanghai 2012-01-21
-7924995 Gaoguan Gaoguan Gaoguan,Gaoguan Zhen,gao guan,gao guan zhen,高莞,高莞镇 24.25994 114.71345 P PPLA4 CN 30 0 154 Asia/Shanghai 2012-01-21
-7924996 Sanjiao Sanjiao Sanjiao,Sanjiao Zhen,san jiao,san jiao zhen,三角,三角镇 24.21012 114.79827 P PPLA4 CN 30 0 134 Asia/Shanghai 2012-01-21
-7925472 Jinlong Jinlong Jinlong,Jinlong Zhen,jin long,jin long zhen,金龙,金龙镇 24.75053 114.53304 P PPLA4 CN 03 0 279 Asia/Shanghai 2012-01-21
-7925474 Guanxi Guanxi Guanxi,Guanxi Zhen,guan xi,guan xi zhen,关西,关西镇 24.84087 114.94226 P PPLA4 CN 03 0 252 Asia/Shanghai 2012-01-21
-7927587 Diyag Diyag Diya,Diya Xiang,Diyag,di ya,di ya xiang,底雅,底雅乡 31.7 78.8 P PPLA4 CN 14 0 4919 Asia/Kashgar 2012-01-21
-7928738 Camgyai Camgyai Camgyai,Cangmujie,Cangmujie Xiang,Rongxia Qu,cang mu jie,cang mu jie xiang,rong xia qu,仓木结,仓木结乡,绒辖区 28 86.3 P PPLA4 CN 14 0 4374 Asia/Urumqi 2012-01-21
-8016493 Ximi Ximi Ximi,Ximixiang,xi mi,xi mi xiang,西米,西米乡 28.91235 110.00686 P PPLA4 CN 11 0 576 Asia/Shanghai 2012-01-21
-8016735 Chaoyang Chaoyang Chaoyang,Chaoyang Xiang,Yanping,chao yang,chao yang xiang,yan ping,岩坪,朝阳,朝阳乡 29.33515 111.03074 P PPLA4 CN 11 0 187 Asia/Shanghai 2012-01-21
-8016799 Yanliupu Yanliupu Yangliupu Xiang,Yanliupu,yang liu pu,yang liu pu xiang,杨柳铺,杨柳铺乡 29.56919 111.12814 P PPLA4 CN 11 0 128 Asia/Shanghai 2012-01-21
-8016934 Taiping Taiping Taiping,Taiping Zhen,Taipingjie,tai ping,tai ping jie,tai ping zhen,太平,太平街,太平镇 29.97555 111.07938 P PPLA4 CN 11 0 238 Asia/Shanghai 2012-01-21
-8034330 Wangying Wangying Wangying,Wangying Zhen,wang ying,wang ying zhen,王营,王营镇 33.03167 119.51858 P PPLA4 CN 04 0 3 Asia/Shanghai 2012-01-21
-8034375 Huying Huying Huying,Huying Zhen,hu ying,hu ying zhen,胡营,胡营镇 33.07237 119.445 P PPLA4 CN 04 0 6 Asia/Shanghai 2012-01-21
-8035493 Qinggou Qinggou Qinggou,Qinggou Zhen,qing gou,qing gou zhen,青沟,青沟镇 33.70402 119.39885 P PPLA4 CN 04 0 5 Asia/Shanghai 2012-01-21
-8049689 Renwu Renwu Nanmulin Xian,Renwu,Ri'ngoin,Ri’ngoin,nan mu lin xian,ren wu,仁伍,南木林县 29.605 89.005 P PPLA3 CN 14 0 4690 Asia/Urumqi 2012-01-22
-8051687 Xuejiawan Xuejiawan Jungar Qi,Xuejiawan,Xuejiawan Zhen,Zhunge'er Qi,Zhunge’er Qi,xue jia wan,xue jia wan zhen,zhun ge er qi,准格尔旗,薛家湾,薛家湾镇 39.86678 111.2208 P PPLA3 CN 20 0 1138 Asia/Chongqing 2012-01-21
-8052067 Galutu Galutu Galutu,Galutu Zhen,Uxin Qi,Wushen Qi,ga lu tu,ga lu tu zhen,嘎鲁图,嘎鲁图镇 38.60086 108.84742 P PPLA3 CN 20 0 1303 Asia/Chongqing 2012-01-21
-8052068 Aletengxire Aletengxire Aletengxire,Aletengxire Zhen,a lei teng xi re,a lei teng xi re zhen,阿勒腾席热,阿勒腾席热镇 39.57993 109.75821 P PPLA3 CN 20 0 1304 Asia/Chongqing 2012-01-21
-8052580 Dabagou Dabagou Dabagou,Dabagou Zhen,Horqin Youyi Qianqi,Ke'erqinyouyiqian Qi,Ke’erqinyouyiqian Qi,da ba gou,da ba gou zhen,ke er qin you yi qian qi,大坝沟,大坝沟镇,科尔沁右翼前旗 46.06946 121.91632 P PPLA3 CN 20 0 309 Asia/Shanghai 2012-01-21
-8053612 Liuxiang Liuxiang Liuxiang,Liuxiang Jiedao,Yingze Qu,liu xiang,liu xiang jie dao,ying ze qu,柳巷,柳巷 街道,迎泽区 37.87143 112.56054 P PPLA3 CN 24 0 799 Asia/Shanghai 2012-01-21
-8053613 Julun Julun Julun,Julun Jiedao,Xinghualing Qu,ju lun,ju lun jie dao,xing hua ling qu,巨轮,巨轮街道,杏花岭区 37.9074 112.55774 P PPLA3 CN 24 0 815 Asia/Shanghai 2012-01-21
-8053615 Qianfeng Qianfeng Qianfeng,Qianfeng Jiedao,Wanbailin Qu,qian feng,qian feng jie dao,wan bai lin qu,万柏林区,千峰,千峰街道 37.84942 112.52082 P PPLA3 CN 24 0 789 Asia/Shanghai 2012-01-21
-8053958 Dongqu Dongqu Dongqu,Dongqu Jiedao,Gujiao Shi,dong qu,dong qu jie dao,gu jiao shi,东曲,东曲街道,古交市 37.9202 112.20018 P PPLA3 CN 24 0 971 Asia/Shanghai 2012-01-21
-8054114 Bala Ga’er Gaole Bala Ga'er Gaole Bala Ga'er Gaole,Bala Ga'er Gaole Zhen,Bala Ga’er Gaole,Bala Ga’er Gaole Zhen,Xi Ujimqin Qi,Xiwuzhumuqin Qi,ba la ga er gao lei,ba la ga er gao lei zhen,xi wu zhu mu qin qi,巴拉嘎尔高勒,巴拉嘎尔高勒镇,西乌珠穆沁旗 44.59149 117.6237 P PPLA3 CN 20 0 996 Asia/Shanghai 2012-01-22
-8054115 Bieligutai Bieligutai Abag Qi,Abaga Qi,Bieligutai,Bieligutai Zhen,a ba ga qi,bie li gu tai,bie li gu tai zhen,别力古台,别力古台镇,阿巴嘎旗 44.0303 114.98036 P PPLA3 CN 20 0 1154 Asia/Shanghai 2012-01-22
-8054116 Tianjiao Tianjiao Dongsheng Qu,Tianjiao,Tianjiao Jiedao,dong sheng qu,tian jiao,tian jiao jie dao,东胜区,天骄,天骄街道 39.82553 109.99953 P PPLA3 CN 20 0 1440 Asia/Chongqing 2012-01-22
-8054117 Heping Heping Heping,Heping Jiedao,Ulanhot Shi,Wulanhaote Shi,he ping,he ping jie dao,wu lan hao te shi,乌兰浩特市,和平,和平街道 46.08626 122.07708 P PPLA3 CN 20 0 304 Asia/Shanghai 2012-01-22
-8054118 Mositai Mositai Huolin Gol,Huolinguole Shi,Mositai,Mositai Jiedao,huo lin guo lei shi,mo si tai,mo si tai jie dao,莫斯台,莫斯台街道,霍林郭勒市 45.53632 119.66972 P PPLA3 CN 20 0 815 Asia/Shanghai 2012-01-22
-8054418 Shangdu Shangdu Shangdu,Shangdu Zhen,Zhenglan Qi,shang dou,shang dou zhen,zheng lan qi,上都,上都镇,正蓝旗 42.25004 116.00798 P PPLA3 CN 20 0 1303 Asia/Shanghai 2012-01-22
-8054538 Wenquan Wenquan A'ershan Shi,Arxan,A’ershan Shi,Wenquan,Wenquan Jiedao,a er shan shi,wen quan,wen quan jie dao,温泉,温泉街道,阿尔山市 47.1756 119.9481 P PPLA3 CN 20 0 1148 Asia/Shanghai 2012-01-22
-8054542 Tongyangdao Tongyangdao Baiyun'ebo Kuangqu,Baiyun’ebo Kuangqu,Bayan Obo,Tongyangdao,Tongyangdao Jiedao,bai yun e bo,bai yun e bo kuang qu,tong yang dao,tong yang dao jie dao,白云鄂博,白云鄂博矿区,通阳道,通阳道街道 41.77031 109.96987 P PPLA3 CN 20 0 1603 Asia/Chongqing 2012-01-22
-8054575 Bayinsai Bayinsai Bayinsai,Bayinsai Jiedao,Wuda Qu,ba yin sai,ba yin sai jie dao,wu da qu,乌达区,巴音赛,巴音赛街道 39.50022 106.7202 P PPLA3 CN 20 0 1120 Asia/Chongqing 2012-01-22
-8054801 Xingong Xingong Xingong,Xingong Jiedao,Yakeshi Shi,xin gong,xin gong jie dao,ya ke shi shi,新工,新工街道,牙克石市 49.29031 120.70609 P PPLA3 CN 20 0 658 Asia/Shanghai 2012-01-22
-8054802 Xiritala Xiritala Xilin Hot,Xilinhaote Shi,Xiritala,Xiritala Jiedao,xi lin hao te,xi lin hao te shi,xi ri ta la,xi ri ta la jie dao,希日塔拉,希日塔拉街道,锡林浩特,锡林浩特市 43.93889 116.07021 P PPLA3 CN 20 0 988 Asia/Shanghai 2012-01-22
-8054803 Xinghua Xinghua Xinghua,Xinghua Jiedao,Zhalantun Shi,xing hua,xing hua jie dao,zha lan tun shi,兴华,兴华街道,扎兰屯市 48.01449 122.69839 P PPLA3 CN 20 0 319 Asia/Shanghai 2012-01-22
-8056119 Sibgyi Sibgyi Shenbuqi,Shenbuqi Xiang,Sibgyi,shen bu qi,shen bu qi xiang,什布奇,什布奇乡 31.801 78.701 P PPLA4 CN 14 0 4701 Asia/Kashgar 2012-01-22
-8059137 Xarlung Xarlung Gongbujiangda Xian,Xarlung,Xialong,gong bu jiang da xian,xia long,峡龙,工布江达县 29.9 93.3 P PPLA3 CN 14 0 3754 Asia/Urumqi 2012-01-22
-8059273 Xoixar Xoixar Cuona Xian,Xoixar,Xuexia,cuo na xian,xue xia,错那县,雪下 27.903 91.903 P PPLA3 CN 14 0 4452 Asia/Urumqi 2012-01-22
-8067345 Naidong Naidong Chetang,Chethang,Naidong,Nedong,Nêdong,Tse-tang,Tsethang,Zedang,Zetang,Zêtang,nai dong,ze dang,乃东,泽当 29.26667 91.76667 P PPLA2 CN 14 0 3546 Asia/Urumqi 2012-01-22
-8073281 Hexi Hexi Delinghashi Hexi Jiedao,Haixi Menggu Zangzu Zizhizhou,Hexi,Hexi Jiedao,de ling ha shi he xi jie dao,hai xi meng gu zu cang zu zi zhi zhou,he xi,he xi jie dao,德令哈市河西街道,河西,河西街道,海西蒙古族藏族自治州 37.36886 97.35622 P PPLA3 CN 06 0 2994 Asia/Urumqi 2012-01-22
-8073614 Keluke Keluke Keluke,Keluke Zhen,ke lu ke,ke lu ke zhen,柯鲁柯,柯鲁柯镇 37.32129 97.13457 P PPLA4 CN 06 0 2881 Asia/Urumqi 2012-01-22
-8079363 Zuobude Zuobude Zhobde,Zhobdê,Zuobude,Zuobude Xiang,zuo bu de,zuo bu de xiang,左布德,左布德乡 28.003 86.303 P PPLA4 CN 14 0 4335 Asia/Urumqi 2012-01-22
-8134385 Wanjia Wanjia Wanjia,Wanjia Xiang,wan jia,wan jia xiang,万家,万家乡 29.96841 111.69525 P PPLA4 CN 12 0 71 Asia/Shanghai 2012-01-22
-8134386 Zhangzhuangpu Zhangzhuangpu Zhangzhuangpu,Zhangzhuangpu Zhen,zhang zhuang pu,zhang zhuang pu zhen,章庄铺,章庄铺镇 29.89395 111.92972 P PPLA4 CN 12 0 49 Asia/Shanghai 2012-01-22
-8134387 Weishui Weishui Weishui,Weishui Zhen,wei shui,wei shui zhen,洈水,洈水镇 29.98709 111.61146 P PPLA4 CN 12 0 66 Asia/Shanghai 2012-01-22
-8134623 Chehuyuan Chehuyuan Chehuyuan,Chehuyuan Xiang,Jiaoyansi,che hu yuan,che hu yuan xiang,jiao yan si,交岩寺,车湖垸,车湖垸乡 28.95707 111.51007 P PPLA4 CN 11 0 43 Asia/Shanghai 2012-01-22
-8134679 Ludishan Ludishan Ludishan,Ludishan Xiang,Xiongjiaping,lu di shan,lu di shan xiang,xiong jia ping,熊家坪,芦荻山,芦荻山乡 29.00488 111.73549 P PPLA4 CN 11 0 37 Asia/Shanghai 2012-01-22
-8134686 Danzhou Danzhou Danzhou,Danzhou Xiang,Jiajiesi,dan zhou,dan zhou xiang,jia jie si,丹洲,丹洲乡,夹街寺 29.0096 111.63494 P PPLA4 CN 11 0 38 Asia/Shanghai 2012-01-22
-8134698 Dongjiao Dongjiao Dongjiao,Dongjiao Xiang,Ganlusi,dong jiao,dong jiao xiang,gan lu si,东郊,东郊乡,甘露寺 29.02105 111.71007 P PPLA4 CN 11 0 34 Asia/Shanghai 2012-01-22
-8134714 Dongjiang Dongjiang Dongjiang,Dongjiang Xiang,Qingnian Beilu,dong jiang,dong jiang xiang,qing nian bei lu,东江,东江乡,青年北路 29.03406 111.74664 P PPLA4 CN 11 0 29 Asia/Shanghai 2012-01-22
-8134721 Hucheng Hucheng Huajiekou,Hucheng,Hucheng Xiang,hu cheng,hu cheng xiang,hua jie kou,护城,护城乡,骅街口 29.04162 111.68606 P PPLA4 CN 11 0 36 Asia/Shanghai 2012-01-22
-8134743 Nanpinggang Nanpinggang Nanpinggang,Nanpinggang Xiang,nan ping gang,nan ping gang xiang,南坪岗,南坪岗乡 29.06531 111.68521 P PPLA4 CN 11 0 37 Asia/Shanghai 2012-01-22
-8135141 Anyu Anyu Anyu,Anyu Xiang,an yu,an yu xiang,安裕,安裕乡 29.37585 112.09168 P PPLA4 CN 11 0 31 Asia/Shanghai 2012-01-22
-8135165 Anfeng Anfeng Anfeng,Anfeng Xiang,an feng,an feng xiang,安丰,安丰乡 29.41773 112.06653 P PPLA4 CN 11 0 32 Asia/Shanghai 2012-01-22
-8135259 Anning Anning Anning,Anning Xiang,an ning,an ning xiang,安凝,安凝乡 29.50129 112.07319 P PPLA4 CN 11 0 35 Asia/Shanghai 2012-01-22
-8135271 Jiashan Jiashan Jiashan,Jiashan Zhen,Yangping,jia shan,jia shan zhen,yang ping,夹山,夹山镇,杨坪 29.50937 111.43851 P PPLA4 CN 11 0 87 Asia/Shanghai 2012-01-22
-8135343 Erdu Erdu Erdu,Erdu Xiang,Zhongdu,er dou,er dou xiang,zhong du,中渡,二都,二都乡 29.59085 111.40418 P PPLA4 CN 11 0 50 Asia/Shanghai 2012-01-22
-8135414 Lidong Lidong Dengjiatan,Lidong,Lidong Xiang,deng jia tan,li dong,li dong xiang,澧东,澧东乡,邓家滩 29.64286 111.8221 P PPLA4 CN 11 0 36 Asia/Shanghai 2012-01-22
-8135480 Guanting Guanting Guanting,Guanting Xiang,Pengshipu,guan ting,guan ting xiang,peng shi pu,官亭,官亭乡,彭市铺 29.71074 111.54468 P PPLA4 CN 11 0 85 Asia/Shanghai 2012-01-22
-8135629 Yiwan Yiwan Caijiapo,Yiwan,Yiwan Xiang,cai jia po,yi wan,yi wan xiang,宜万,宜万乡,蔡家坡 29.86736 111.6814 P PPLA4 CN 11 0 83 Asia/Shanghai 2012-01-22
-8135630 Taiqing Taiqing Taiqing,Taiqing Xiang,Tanyu,tai qing,tai qing xiang,tan yu,太青,太青乡,探峪 29.87535 111.31336 P PPLA4 CN 11 0 186 Asia/Shanghai 2012-01-22
-8137955 Wangcheng Wangcheng Tonghuan,Wangcheng,Wangcheng Xiang,tong huan,wang cheng,wang cheng xiang,同欢,望城,望城乡 29.41526 111.65007 P PPLA4 CN 11 0 78 Asia/Shanghai 2012-01-22
-8139247 Hucheng Hucheng Hucheng,Hucheng Xiang,hu cheng,hu cheng xiang,护城,护城乡 29.04497 111.65876 P PPLA4 CN 11 0 35 Asia/Shanghai 2012-01-22
-8139613 Zhufeng Zhufeng Zhufeng,Zhufeng Zhen,zhu feng,zhu feng zhen,祝丰,祝丰镇 29.21087 111.97292 P PPLA4 CN 11 0 36 Asia/Shanghai 2012-01-22
-8142703 Yuefeng Yuefeng Yuefeng,Yuefeng Zhen,yue feng,yue feng zhen,岳峰,岳峰镇 26.09379 119.32048 P PPLA3 CN 07 0 9 Asia/Shanghai 2012-01-22
-8143439 Guxi Guxi Guxi,Guxi Jiedao,gu xi,gu xi jie dao,鼓西,鼓西街道 26.08971 119.28438 P PPLA4 CN 07 0 14 Asia/Shanghai 2012-01-22
-8143440 Nanjie Nanjie Nanjie,Nanjie Jiedao,nan jie,nan jie jie dao,南街,南街街道 26.087 119.29 P PPLA4 CN 07 0 22 Asia/Shanghai 2012-01-22
-8143441 Antai Antai Antai,Antai Jiedao,an tai,an tai jie dao,安泰,安泰街道 26.0823 119.29347 P PPLA4 CN 07 0 21 Asia/Shanghai 2012-01-22
-8143442 Gudong Gudong Gudong,Gudong Jiedao,gu dong,gu dong jie dao,鼓东,鼓东街道 26.09318 119.29628 P PPLA4 CN 07 0 16 Asia/Shanghai 2012-01-22
-8143443 Wenquan Wenquan Wenquan,Wenquan Jiedao,wen quan,wen quan jie dao,温泉,温泉街道 26.09992 119.30343 P PPLA4 CN 07 0 22 Asia/Shanghai 2012-01-22
-8143444 Wufeng Wufeng Wufeng,Wufeng Jiedao,wu feng,wu feng jie dao,五凤,五凤街道 26.10518 119.2784 P PPLA4 CN 07 0 15 Asia/Shanghai 2012-01-22
-8143445 Huada Huada Huada,Huada Jiedao,hua da,hua da jie dao,华大,华大街道 26.10074 119.28724 P PPLA4 CN 07 0 15 Asia/Shanghai 2012-01-22
-8143712 Dongjie Dongjie Dongjie,Dongjie Jiedao,dong jie,dong jie jie dao,东街,东街街道 26.08822 119.29449 P PPLA3 CN 07 0 11 Asia/Shanghai 2012-01-22
-8143714 Chayuan Chayuan Chayuan,Chayuan Jiedao,cha yuan,cha yuan jie dao,茶园,茶园街道 26.11417 119.31507 P PPLA4 CN 07 0 16 Asia/Shanghai 2012-01-22
-8201761 Sicong Sicong Laohutian,Sicong,Sicong Xiang,lao hu tian,si cong,si cong xiang,思聪,思聪乡,老虎田 26.81371 113.54381 P PPLA4 CN 11 0 98 Asia/Shanghai 2012-02-29
-8201774 Mijiang Mijiang Mijiang,Mijiang Xiang,Nanshuizhou,mi jiang,mi jiang xiang,nan shui zhou,南水洲,洣江,洣江乡 26.79219 113.55552 P PPLA4 CN 11 0 95 Asia/Shanghai 2012-02-29
-8201775 Xiadong Xiadong Xiadong,Xiadong Xiang,Xiaoche,xia dong,xia dong xiang,xiao che,下东,下东乡,小车 26.77419 113.53122 P PPLA4 CN 11 0 127 Asia/Shanghai 2012-02-29
-3665542 Zipaquirá Zipaquira Zipaquira,Zipaquirá 5.02208 -74.00481 P PPL CO 33 91235 2607 America/Bogota 2012-01-19
-3665544 Zipacón Zipacon Zipacon,Zipacón 4.75881 -74.38017 P PPL CO 33 1480 2542 America/Bogota 2012-01-19
-3665547 Zetaquira Zetaquira Zetaquira 5.28215 -73.16896 P PPL CO 36 1047 1662 America/Bogota 2012-01-19
-3665559 Zarzal Zarzal Zarzal 4.39462 -76.0715 P PPL CO 29 28761 921 America/Bogota 2012-01-19
-3665566 Zaragoza Zaragoza Zaragoza 7.48971 -74.86919 P PPL CO 02 18795 66 America/Bogota 2012-01-19
-3665587 Zapatoca Zapatoca Zapatoca 6.81532 -73.26768 P PPL CO 26 6052 1696 America/Bogota 2012-01-19
-3665616 Zambrano Zambrano Zambrano 9.74724 -74.8153 P PPL CO 38 9565 16 America/Bogota 2012-01-19
-3665657 Yumbo Yumbo Yumbo 3.58234 -76.49146 P PPL CO 29 71436 991 America/Bogota 2012-01-19
-3665678 Yotoco Yotoco Yataco,Yotoco 3.86048 -76.38364 P PPL CO 29 8362 956 America/Bogota 2012-01-19
-3665688 Yopal Yopal El Yopal,Jopal',Marroquin,Marroquín,Yopal,Йопаль 5.33775 -72.39586 P PPLA CO 32 61029 338 America/Bogota 2012-01-19
-3665691 Yondó Yondo Casabe,Yondo,Yondó 7.00621 -73.90972 P PPL CO 02 7516 72 America/Bogota 2012-01-19
-3665693 Yolombó Yolombo Yolombo,Yolombó 6.59841 -75.0114 P PPL CO 02 6033 1459 America/Bogota 2012-02-02
-3665741 Yarumal Yarumal 6.96321 -75.41738 P PPL CO 02 22368 2276 America/Bogota 2011-10-11
-3665792 Yalí Yali Yali,Yalí 6.67456 -74.8343 P PPL CO 02 3908 1240 America/Bogota 2012-01-19
-3665803 Yaguará Yaguara Yaguara,Yaguará 2.66355 -75.51753 P PPL CO 16 5724 578 America/Bogota 2012-01-19
-3665811 Yacuanquer Yacuanquer Yacauquer,Yacuanquer,Yaquanquer 1.11577 -77.40169 P PPL CO 20 2643 2708 America/Bogota 2012-01-19
-3665813 Yacopí Yacopi Yacopi,Yacopí 5.45948 -74.33823 P PPL CO 33 3202 1281 America/Bogota 2012-01-19
-3665851 Viterbo Viterbo Viterbo 5.06242 -75.87159 P PPL CO 37 15216 976 America/Bogota 2012-01-19
-3665860 Vista Hermosa Vista Hermosa 3.12428 -73.75156 P PPL CO 19 4282 297 America/Bogota 2006-01-17
-3665881 Viotá Viota Viota,Viotá 4.43713 -74.52157 P PPL CO 33 5840 568 America/Bogota 2012-01-19
-3665895 Villeta Villeta Villeta 5.00886 -74.47226 P PPL CO 33 20689 810 America/Bogota 2012-01-19
-3665898 Villavieja Villavieja Villa Vieja,Villavieja 3.22052 -75.21864 P PPL CO 16 2730 384 America/Bogota 2012-01-19
-3665900 Villavicencio Villavicencio Cantarrana,Caserio Villavicencio,Viljavisensijas,Viljavisensio,Villavicencio,Вилявисенсио 4.142 -73.62664 P PPLA CO 19 321717 441 America/Bogota 2012-01-19
-3665910 Villarrica Villarrica Villarrica 3.93502 -74.60036 P PPL CO 28 3081 1133 America/Bogota 2012-01-19
-3665913 Villa del Rosario Villa del Rosario Rosario,Vil'ja-del'-Rosario,Villa Rosario,Villa del Rosario,Вилья-дель-Росарио 7.83389 -72.47417 P PPL CO 21 64951 436 America/Bogota 2012-01-19
-3665924 Villapinzón Villapinzon Villapinzon,Villapinzón 5.21617 -73.5949 P PPL CO 33 5874 2728 America/Bogota 2012-01-19
-3665934 Villanueva Villanueva Villanueva 10.60528 -72.98 P PPL CO 17 18699 239 America/Bogota 2012-01-19
-3665935 Villanueva Villanueva San Juan de Tumuhuaco,San Juán de Tumuhuaco,Vil'januehva,Villanueva,Вильянуэва 10.44361 -75.27306 P PPL CO 35 12791 102 America/Bogota 2012-01-19
-3665949 Villanueva Villanueva Villanueva 6.67169 -73.1742 P PPL CO 26 3707 1454 America/Bogota 2012-01-19
-3665951 Villanueva Villanueva 5.28333 -71.96667 P PPL CO 32 20032 185 America/Bogota 2006-01-17
-3665973 Villamaría Villamaria Villamaria,Villamaría 5.04492 -75.5146 P PPL CO 37 35302 1887 America/Bogota 2012-01-19
-3665986 Villahermosa Villahermosa Villahermosa 5.03067 -75.11607 P PPL CO 28 4155 2046 America/Bogota 2012-01-19
-3665992 Villagarzón Villagarzon 1.0375 -76.62667 P PPL CO 22 7015 446 America/Bogota 2006-01-17
-3666003 Villa de Leiva Villa de Leiva Leiva,Villa de Leiva,Villa de Leyva 5.645 -73.56667 P PPL CO 36 5103 2072 America/Bogota 2012-01-19
-3666025 Vijes Vijes Vijes 3.69934 -76.4423 P PPL CO 29 4070 973 America/Bogota 2012-01-19
-3666042 Vigía del Fuerte Vigia del Fuerte Guayabal,Vigia del Fuerte,Vigía del Fuerte 6.57891 -76.88628 P PPL CO 02 4638 24 America/Bogota 2012-01-19
-3666075 Victoria Victoria Victoria 5.31648 -74.91101 P PPL CO 37 4723 712 America/Bogota 2012-01-19
-3666087 Vianí Viani Viani,Vianí 4.87384 -74.56244 P PPL CO 33 1586 1491 America/Bogota 2012-01-19
-3666092 Vetas Vetas Vetas 7.30911 -72.87122 P PPL CO 26 1210 3257 America/Bogota 2012-01-19
-3666102 Versalles Versalles 4.57544 -76.19814 P PPL CO 29 3542 1840 America/Bogota 2011-10-11
-3666111 Vergara Vergara Vergara 5.11841 -74.34549 P PPL CO 33 2267 1553 America/Bogota 2012-01-19
-3666163 Ventaquemada Ventaquemada Ventaquemada 5.36753 -73.52075 P PPL CO 36 1680 2611 America/Bogota 2012-02-02
-3666193 Venecia Venecia 5.96278 -75.73806 P PPL CO 02 5462 1308 America/Bogota 2006-01-17
-3666203 Venecia Venecia Ospina Perez,Ospina Pérez,Venecia 4.08808 -74.47746 P PPL CO 33 1307 1641 America/Bogota 2012-01-19
-3666226 Venadillo Venadillo Venadillo 4.7193 -74.92918 P PPL CO 28 11310 334 America/Bogota 2012-01-19
-3666232 Vélez Velez 6.01335 -73.67352 P PPL CO 26 10905 2160 America/Bogota 2011-10-11
-3666287 Valparaíso Valparaiso Valparaiso,Valparaíso 5.615 -75.62422 P PPL CO 02 3626 1351 America/Bogota 2012-01-19
-3666291 Valparaíso Valparaiso 1.19512 -75.70705 P PPL CO 08 3767 229 America/Bogota 2011-04-19
-3666304 Valledupar Valledupar Valedupar,Valjeduparas,Valledupar,twrbw,Валедупар,توربو 10.46314 -73.25322 P PPLA CO 10 308237 165 America/Bogota 2012-01-19
-3666309 Valle de San Juan Valle de San Juan El Valle,Valle,Valle de San Juan 4.19869 -75.11733 P PPL CO 28 1486 588 America/Bogota 2012-02-02
-3666311 Valle de San José Valle de San Jose El Valle,Valle,Valle de San Jose,Valle de San José 6.4475 -73.14361 P PPL CO 26 2522 1243 America/Bogota 2012-01-19
-3666326 Valencia Valencia 8.25801 -76.14928 P PPL CO 12 10652 62 America/Bogota 2011-10-11
-3666333 Valdivia Valdivia Valdivia 7.28889 -75.39778 P PPL CO 02 3398 228 America/Bogota 2012-01-19
-3666363 Utica Utica Utica 5.18727 -74.48105 P PPL CO 33 2945 503 America/Bogota 2012-01-19
-3666370 Usiacurí Usiacuri Usiacuri,Usiacurí 10.75 -74.98333 P PPL CO 04 9146 147 America/Bogota 2012-01-19
-3666381 Urumita Urumita Orumito,Uramita,Urumita 10.55894 -73.01232 P PPL CO 17 8509 248 America/Bogota 2012-01-19
-3666395 Urrao Urrao Urrao 6.3152 -76.1342 P PPL CO 02 18846 1819 America/Bogota 2012-01-19
-3666409 Uribia Uribia 11.7139 -72.26604 P PPL CO 17 7519 23 America/Bogota 2011-10-11
-3666436 Uramita Uramita Uramita 6.89944 -76.17417 P PPL CO 02 2292 648 America/Bogota 2012-01-19
-3666475 Ungia Ungia Arquia,Ungia,Unguia,Unguía 8.04335 -77.09453 P PPL CO 11 4179 15 America/Bogota 2012-01-19
-3666481 Une Une Une 4.40306 -74.02528 P PPL CO 33 3208 2371 America/Bogota 2012-01-19
-3666493 Umbita Umbita 5.22041 -73.45695 P PPL CO 33 1295 2467 America/Bogota 2011-10-11
-3666502 Ulloa Ulloa Ulloa 4.70444 -75.74028 P PPL CO 29 2621 1353 America/Bogota 2012-01-19
-3666519 Ubaté Ubate Ubate,Ubaté 5.30933 -73.81574 P PPL CO 33 20485 2800 2561 America/Bogota 2012-01-19
-3666522 Ubaque Ubaque Ubaque 4.48668 -73.93748 P PPL CO 33 1009 1906 America/Bogota 2012-01-19
-3666526 Ubalá Ubala Ubala,Ubalá 4.74778 -72.53694 P PPL CO 33 1886 188 America/Bogota 2012-01-19
-3666550 Tuta Tuta Tuta 5.68966 -73.22779 P PPL CO 36 1639 2572 America/Bogota 2012-01-19
-3666562 Turmequé Turmeque Turmeque,Turmequo,Turmequé,Turmequó 5.3236 -73.49067 P PPL CO 36 2901 2385 America/Bogota 2012-01-19
-3666570 Turbo Turbo Turbo 8.09368 -76.72691 P PPL CO 02 50508 5 America/Bogota 2012-01-19
-3666575 Turbaná Turbana Turbana,Turbaná 10.2717 -75.44222 P PPL CO 35 10235 86 America/Bogota 2012-01-19
-3666577 Turbaco Turbaco Turbaco 10.32944 -75.41137 P PPL CO 35 56171 174 America/Bogota 2012-02-02
-3666582 Túquerres Tuquerres Tuquerres,Túquerres 1.09234 -77.62085 P PPL CO 20 20184 3053 America/Bogota 2012-01-19
-3666608 Tunja Tunja Tunja 5.53528 -73.36778 P PPLA CO 36 117479 2804 America/Bogota 2012-01-19
-3666640 Tumaco Tumaco Tucano,Tumaco,Tumako,Тумако 1.79861 -78.81556 P PPL CO 20 86713 6 America/Bogota 2012-01-19
-3666645 Tuluá Tulua Tulua,Tuluá,Тулуа 4.08466 -76.19536 P PPL CO 29 165501 974 America/Bogota 2012-01-19
-3666673 Tubará Tubara Tubara,Tubará 10.87444 -74.97889 P PPL CO 04 8180 235 America/Bogota 2012-01-19
-3666680 Trujillo Trujillo Trujillo 4.21217 -76.31945 P PPL CO 29 5874 1314 America/Bogota 2012-01-19
-3666719 Trinidad Trinidad La Parroquia,Municipio Trinidad,Trinidad 5.43056 -71.63111 P PPL CO 32 4752 163 America/Bogota 2012-01-19
-3666834 Totoró Totoro Totora,Totoro,Totoró 2.51204 -76.40124 P PPL CO 09 1888 2568 America/Bogota 2012-01-19
-3666881 Toro Toro Toro 4.61167 -76.08139 P PPL CO 29 13764 992 America/Bogota 2012-01-19
-3666887 Toribío Toribio Toribio,Toribío 2.95481 -76.26839 P PPL CO 09 3911 1700 America/Bogota 2012-01-19
-3666903 Topaipí Topaipi Topaipi,Topaipí 5.33457 -74.30292 P PPL CO 33 1099 1267 America/Bogota 2012-01-19
-3666905 Tópaga Topaga Topaga,Tópaga 5.75979 -72.82583 P PPL CO 36 1014 3068 America/Bogota 2012-01-19
-3666936 Toluviejo Toluviejo Toluviejo 9.45082 -75.43864 P PPL CO 27 8260 68 America/Bogota 2012-01-19
-3666939 Tolú Tolu Tol,Tolu,Tolú,Тол 9.52392 -75.58139 P PPL CO 27 27390 10 America/Bogota 2012-01-19
-3666959 Toledo Toledo Toledo 7.30984 -72.48295 P PPL CO 21 5911 1638 America/Bogota 2012-01-19
-3666997 Tocancipá Tocancipa Tocancipa,Tocancipá 4.96531 -73.91301 P PPL CO 33 6027 2567 America/Bogota 2012-01-19
-3667003 Tocaima Tocaima 4.4582 -74.63434 P PPL CO 33 10235 401 America/Bogota 2011-10-11
-3667007 Toca Toca Toca 5.56392 -73.18398 P PPL CO 36 3946 2761 America/Bogota 2012-01-19
-3667023 Titiribí Titiribi Titiribi,Titiribí 6.06276 -75.7937 P PPL CO 02 3787 1540 America/Bogota 2012-01-19
-3667044 Tipacoque Tipacoque Tipacoque 6.42031 -72.69184 P PPL CO 36 1036 1878 America/Bogota 2012-01-19
-3667070 Timbiquí Timbiqui Santa Barbara,Santa Bárbara,Timbiqui,Timbiquí 2.7717 -77.66536 P PPL CO 09 6267 4 America/Bogota 2012-01-19
-3667082 Timaná Timana Timana,Timaná 1.97136 -75.93123 P PPL CO 16 8203 1030 America/Bogota 2012-01-19
-3667158 Tierralta Tierralta Los Bongos,T'erral'ta,Tierra Alta,Tierralta,Тьерральта 8.17361 -76.05917 P PPL CO 12 26242 51 America/Bogota 2012-01-19
-3667202 Tibú Tibu Tibu,Tibú 8.63896 -72.73583 P PPL CO 21 13565 68 America/Bogota 2012-01-19
-3667211 Tibasosa Tibasosa Tibasosa 5.75 -73 P PPL CO 36 3535 2504 America/Bogota 2012-01-19
-3667218 Tibaná Tibana Tibana,Tibaná 5.31728 -73.39655 P PPL CO 36 1802 2088 America/Bogota 2012-01-19
-3667244 Tesalia Tesalia Carnicerias,Carnicerías,Tesalia 2.48587 -75.72921 P PPL CO 16 3981 830 America/Bogota 2012-01-19
-3667247 Teruel Teruel Retiro,Teruel 2.74193 -75.56738 P PPL CO 16 3921 875 America/Bogota 2012-01-19
-3667288 Tenza Tenza Tensa,Tenza 5.07664 -73.42077 P PPL CO 33 1312 1562 America/Bogota 2012-01-19
-3667290 Tenjo Tenjo Tenjo 4.8727 -74.14435 P PPL CO 33 3858 2580 America/Bogota 2012-02-02
-3667323 Tello Tello Tello 3.06694 -75.13778 P PPL CO 16 4868 581 America/Bogota 2012-01-19
-3667355 Tauramena Tauramena Tauramena 5.01831 -72.74919 P PPL CO 32 4805 462 America/Bogota 2012-01-19
-3667373 Tasco Tasco Tasco 5.91044 -72.78001 P PPL CO 36 1811 2535 America/Bogota 2012-01-19
-3667380 Tarso Tarso Tarso 5.86467 -75.82192 P PPL CO 02 2700 1331 America/Bogota 2012-01-19
-3667386 Tarqui Tarqui Tanqui,Tarqui 2.11248 -75.82419 P PPL CO 16 4144 827 America/Bogota 2012-01-19
-3667447 Tangua Tangua Tangua 1.09473 -77.39482 P PPL CO 20 3348 2402 America/Bogota 2012-01-19
-3667471 Taminango Taminango Taminango 1.57491 -77.28666 P PPL CO 20 2919 1470 America/Bogota 2012-01-19
-3667473 Támesis Tamesis Tamesis,Támesis 5.66462 -75.71339 P PPL CO 02 6406 1610 America/Bogota 2012-01-19
-3667478 Tame Tame Tam,Tame,Там 6.461 -71.73004 P PPL CO 03 29099 322 America/Bogota 2012-01-19
-3667516 Tamara Tamara Tamara 5.82972 -72.16333 P PPL CO 32 2007 1120 America/Bogota 2012-01-19
-3667528 Tamalameque Tamalameque 8.85221 -73.81229 P PPL CO 10 4972 31 America/Bogota 2006-01-17
-3667547 Talaigua Viejo Talaigua Viejo 9.31206 -74.58544 P PPL CO 35 6217 20 America/Bogota 2011-10-11
-3667579 Tadó Tado Tado,Tadó 5.26598 -76.56487 P PPL CO 11 10095 75 America/Bogota 2012-01-19
-3667629 Tabio Tabio Tabio 4.91726 -74.09364 P PPL CO 33 4180 2586 America/Bogota 2012-01-19
-3667649 Sutatausa Sutatausa Sutatausa 5.24779 -73.85238 P PPL CO 33 1332 2601 America/Bogota 2012-01-19
-3667651 Sutamarchán Sutamarchan Sutamarchan,Sutamarchán 5.61538 -73.61701 P PPL CO 36 1432 2085 America/Bogota 2012-01-19
-3667660 Susacón Susacon Susacon,Susacón 6.22978 -72.6901 P PPL CO 36 1207 2485 America/Bogota 2012-01-19
-3667665 Susa Susa Susa 5.4519 -73.81436 P PPL CO 33 1608 2561 America/Bogota 2012-01-19
-3667697 Supía Supia Supia,Supía 5.45303 -75.65072 P PPL CO 37 12784 1167 America/Bogota 2012-01-19
-3667701 Supatá Supata Supata,Supatá 5.06097 -74.2372 P PPL CO 33 1907 1778 America/Bogota 2012-01-19
-3667717 Suesca Suesca Suesca 5.10289 -73.79845 P PPL CO 33 4877 2580 America/Bogota 2012-01-19
-3667728 Sucre Sucre Boca de Granada,Sucre,Sukre,Сукре 8.81136 -74.72084 P PPL CO 27 23210 18 America/Bogota 2012-01-19
-3667731 Sucre Sucre Sucre,Sukre,Сукре 5.91833 -73.79109 P PPL CO 26 1095 2146 America/Bogota 2012-01-19
-3667732 Sucre Sucre 2.03805 -76.92446 P PPL CO 09 2552 1138 America/Bogota 2006-01-17
-3667760 Subachoque Subachoque Subachoque 4.92614 -74.17299 P PPL CO 33 4088 2651 America/Bogota 2012-01-19
-3667764 Suaza Suaza Suaza 1.97611 -75.79454 P PPL CO 16 2481 944 America/Bogota 2012-01-19
-3667772 Suárez Suarez Santa Rosa,Suarez,Suárez 4.04906 -74.83198 P PPL CO 28 1243 292 America/Bogota 2012-01-19
-3667773 Suárez Suarez Suarez,Suárez 2.95395 -76.69644 P PPL CO 09 9985 1075 America/Bogota 2012-01-19
-3667780 Suan Suan Suan 10.33347 -74.88016 P PPL CO 04 10381 10 America/Bogota 2012-01-19
-3667783 Suaita Suaita 6.1014 -73.44041 P PPL CO 26 2691 1641 America/Bogota 2011-10-11
-3667791 Sotomayor Sotomayor Los Andes,Sotomayor 1.51469 -77.50444 P PPL CO 20 4839 1123 America/Bogota 2012-01-19
-3667796 Sotaquirá Sotaquira Sotaquira,Sotaquirá 5.76483 -73.24758 P PPL CO 36 1352 2677 America/Bogota 2012-01-19
-3667807 Sopó Sopo Sopo,Sopó 4.9075 -73.9384 P PPL CO 33 8396 2584 America/Bogota 2012-01-19
-3667811 Soplaviento Soplaviento Soplaviento 10.39306 -75.14083 P PPL CO 35 8067 8 America/Bogota 2012-01-19
-3667820 Sonsón Sonson Sonson,Sonsón 5.71062 -75.31068 P PPL CO 02 17232 2493 America/Bogota 2012-01-19
-3667834 Somondoco Somondoco Somondoco 4.98778 -73.43611 P PPL CO 36 1029 1624 America/Bogota 2012-01-19
-3667849 Soledad Soledad Soledad 10.91843 -74.76459 P PPL CO 04 342556 15 America/Bogota 2012-01-19
-3667868 Solano Solano Puerto Solano,Solano 0.69937 -75.25353 P PPL CO 08 2973 204 America/Bogota 2012-01-19
-3667873 Sogamoso Sogamoso Sogamoso,Согамосо 5.71434 -72.93391 P PPL CO 36 126551 2490 America/Bogota 2012-01-19
-3667880 Socotá Socota Socota,Socotá 6.04028 -72.63509 P PPL CO 36 2193 2413 America/Bogota 2012-01-19
-3667887 Socorro Socorro 6.46838 -73.26022 P PPL CO 26 17752 1234 America/Bogota 2011-10-11
-3667892 Socha Viejo Socha Viejo Socha,Socha Viejo 5.9817 -72.71503 P PPL CO 36 3353 2529 America/Bogota 2012-01-19
-3667901 Soatá Soata Soata,Soatá 6.33369 -72.68283 P PPL CO 36 10945 1979 America/Bogota 2012-01-19
-3667905 Soacha Soacha Soacha,Soachu,Соачу 4.57937 -74.21682 P PPL CO 33 313945 2565 America/Bogota 2012-01-19
-3667918 Sitionuevo Sitionuevo 10.77737 -74.72049 P PPL CO 04 11817 6 America/Bogota 2011-10-11
-3667983 Sincelejo Sincelejo Cincelejo,Sincelejo,Sinselekho,Синселехо 9.30472 -75.39778 P PPLA CO 27 261187 211 America/Bogota 2012-01-19
-3667991 Sincé Since Since,Sincé 9.24391 -75.14675 P PPL CO 27 30768 141 America/Bogota 2012-01-19
-3668012 Simití Simiti Simiti,Simití 7.9579 -73.9436 P PPL CO 35 6670 48 America/Bogota 2012-01-19
-3668017 Simijaca Simijaca Simijaca 5.50291 -73.85227 P PPL CO 33 4767 2563 America/Bogota 2012-01-19
-3668023 Simacota Simacota Simacota 6.4429 -73.33688 P PPL CO 26 2156 1057 America/Bogota 2012-01-19
-3668025 Silvia Silvia Silvia 2.61103 -76.37853 P PPL CO 09 7474 2493 America/Bogota 2012-01-19
-3668028 Silvania Silvania Silvania 4.40367 -74.3867 P PPL CO 33 8237 1459 America/Bogota 2012-01-19
-3668033 Silos Silos Silos 7.20524 -72.75639 P PPL CO 21 1300 2730 America/Bogota 2012-01-19
-3668078 Sibundoy Sibundoy Sibundoy 1.20478 -76.92366 P PPL CO 22 9458 2110 America/Bogota 2012-01-19
-3668087 Sibaté Sibate Sibate,Sibaté 4.48425 -74.24499 P PPL CO 33 23208 2767 America/Bogota 2012-01-19
-3668096 Siachoque Siachoque Siachoque 5.51238 -73.24436 P PPL CO 36 1375 2760 America/Bogota 2012-01-19
-3668132 Sevilla Sevilla 4.26425 -75.93085 P PPL CO 29 41612 1617 America/Bogota 2011-10-11
-3668138 Sesquilé Sesquile Sesquile,Sesquilé 5.04463 -73.79724 P PPL CO 33 1876 2679 America/Bogota 2012-02-28
-3668175 Segovia Segovia 7.07993 -74.6989 P PPL CO 02 39938 680 America/Bogota 2011-10-11
-3668228 Sasaima Sasaima Sasaima 4.96611 -74.43512 P PPL CO 33 2948 1150 America/Bogota 2010-12-09
-3668245 Sardinata Sardinata Sardinata 8.08289 -72.80071 P PPL CO 21 7872 309 America/Bogota 2012-01-19
-3668268 Sapuyes Sapuyes 1.03728 -77.62094 P PPL CO 20 2628 2995 America/Bogota 2011-10-11
-3668286 San Zenón San Zenon San Cenon,San Sebastian,San Zenon,San Zenón 9.24217 -74.50037 P PPL CO 35 6520 15 America/Bogota 2012-01-19
-3668292 San Vicente de Chucurí San Vicente de Chucuri San Vicente,San Vicente de Chucuri,San Vicente de Chucurí 6.881 -73.40977 P PPL CO 26 11265 645 America/Bogota 2012-01-19
-3668302 San Vicente San Vicente San Vicente 6.23278 -75.33611 P PPL CO 02 5020 2099 America/Bogota 2012-01-19
-3668323 Santuario Santuario Santuario 6.13833 -75.26417 P PPL CO 02 17722 2119 America/Bogota 2012-01-19
-3668324 Santuario Santuario Santuario 5.07237 -75.96341 P PPL CO 24 6815 1580 America/Bogota 2012-01-19
-3668332 Santo Tomás Santo Tomas 10.75773 -74.75451 P PPL CO 04 25847 10 America/Bogota 2011-10-11
-3668373 Santo Domingo Santo Domingo Santo Domingo 6.47222 -75.16472 P PPL CO 02 2873 1964 America/Bogota 2012-01-19
-3668396 Santiago Santiago 7.86432 -72.7162 P PPL CO 21 1032 435 America/Bogota 2011-10-11
-3668400 Santiago Santiago El Valle,Santiago 1.14844 -77.0045 P PPL CO 22 2715 2115 America/Bogota 2012-01-19
-3668434 Santa Sofía Santa Sofia 5.70908 -73.60404 P PPL CO 36 1058 2364 America/Bogota 2011-10-11
-3668447 Santa Rosa de Viterbo Santa Rosa de Viterbo Santa Rosa,Santa Rosa de Viterbo 5.87401 -72.98217 P PPL CO 36 6923 2752 America/Bogota 2012-01-19
-3668451 Santa Rosa de Osos Santa Rosa de Osos Santa Rosa,Santa Rosa de Osos 6.64738 -75.4603 P PPL CO 02 10191 2586 America/Bogota 2012-01-19
-3668454 Santa Rosa de Cabal Santa Rosa de Cabal Santa Rosa,Santa Rosa Cabal,Santa Rosa de Cabal,Santa-Rosa-de-Kabal',Санта-Роса-де-Кабаль 4.86806 -75.62139 P PPL CO 24 57928 1691 America/Bogota 2012-01-19
-3668472 Santa Rosa Santa Rosa El Uvero,Santa Rosa 10.44472 -75.36972 P PPL CO 35 10604 38 America/Bogota 2012-01-19
-3668572 Santander de Quilichao Santander de Quilichao Quilichao,Santander,Santander de Quilichao 3.00945 -76.48494 P PPL CO 09 40798 1062 America/Bogota 2012-01-19
-3668594 Santana Santana 6.0575 -73.48112 P PPL CO 36 2091 1593 America/Bogota 2011-10-11
-3668605 Santa Marta Santa Marta Santa Marta,santa marta,snth mrth,Санта Марта,סנטה מרתה,سانتا مارتا 11.24079 -74.19904 P PPLA CO 38 431781 12 America/Bogota 2012-01-19
-3668631 Santa María Santa Maria 4.86048 -73.26234 P PPL CO 36 2238 839 America/Bogota 2006-01-17
-3668635 Santa María Santa Maria 2.95 -75.65 P PPL CO 16 2761 1745 America/Bogota 2006-01-17
-3668655 Santa Lucía Santa Lucia Corregimiento Santa Lucia,Santa Lucia,Santa Lucía 10.3242 -74.96017 P PPL CO 04 15760 9 America/Bogota 2012-01-19
-3668861 Santa Catalina Santa Catalina Santa Catalina 10.60361 -75.28824 P PPL CO 35 6084 39 America/Bogota 2012-01-19
-3668895 Santa Bárbara Santa Barbara Santa Barbara,Santa Bárbara 5.87458 -75.56706 P PPL CO 02 12743 1792 America/Bogota 2012-01-19
-3668937 Santa Ana Santa Ana 9.32125 -74.56848 P PPL CO 38 13950 29 America/Bogota 2011-10-11
-3669011 San Roque San Roque San Roque 6.48511 -75.0196 P PPL CO 02 5576 1426 America/Bogota 2012-01-19
-3669056 San Rafael San Rafael San Rafael 6.29436 -75.02589 P PPL CO 02 7245 994 America/Bogota 2012-01-19
-3669084 San Pelayo San Pelayo San Pelayo 8.95833 -75.83627 P PPL CO 12 5637 11 America/Bogota 2012-01-19
-3669087 San Pedro de Urabá San Pedro de Uraba San Pedro de Uraba,San Pedro de Urabá 8.27515 -76.37641 P PPL CO 02 11095 141 America/Bogota 2012-01-19
-3669128 San Pedro San Pedro 9.3956 -75.06476 P PPL CO 27 11489 144 America/Bogota 2011-10-11
-3669138 San Pedro San Pedro San Pedro 6.46221 -75.55656 P PPL CO 02 8801 2482 America/Bogota 2012-01-19
-3669156 San Pedro San Pedro San Pedro 3.99456 -76.2278 P PPL CO 29 5473 991 America/Bogota 2012-01-19
-3669173 San Pablo de Borbur San Pablo de Borbur Barbur,Borbur,San Pablo de Borbur 5.66034 -74.06212 P PPL CO 36 1519 560 America/Bogota 2012-01-19
-3669188 San Pablo San Pablo Corregimiento San Pablo,San Pablo 10.05154 -75.26775 P PPL CO 35 13983 14 America/Bogota 2012-01-19
-3669214 San Pablo San Pablo 1.6725 -77.01389 P PPL CO 20 6522 1733 America/Bogota 2006-01-17
-3669218 San Onofre San Onofre San Onofre 9.73586 -75.52626 P PPL CO 27 32957 37 America/Bogota 2012-01-19
-3669293 San Miguel San Miguel La Dorada,Nuevo San Miguel,Nuevo San Miguél,San Miguel,San Miguel Nuevo 0.34314 -76.91124 P PPL CO 22 7185 306 America/Bogota 2012-01-19
-3669310 San Mateo San Mateo 6.40111 -72.55563 P PPL CO 36 1634 2223 America/Bogota 2011-10-11
-3669332 San Martín San Martin 3.69637 -73.69958 P PPL CO 19 16273 425 America/Bogota 2006-01-17
-3669346 San Marcos San Marcos San Marcos 8.65972 -75.12809 P PPL CO 27 36549 25 America/Bogota 2012-01-19
-3669352 San Luis de Palenque San Luis de Palenque Municipio de San Luis de Palenque,San Luis de Palenque 5.42139 -71.73167 P PPL CO 32 2032 173 America/Bogota 2012-01-19
-3669355 San Luis de Gaceno San Luis de Gaceno Gaceno,Gazeno,San Luis Gaceno,San Luis de Gaceno 4.82052 -73.16851 P PPL CO 36 2579 395 America/Bogota 2012-01-19
-3669358 San Luis de Cubarral San Luis de Cubarral Cubarral,San Luis de Cubarral 3.79352 -73.84063 P PPL CO 19 2280 585 America/Bogota 2012-01-19
-3669399 San Luis San Luis 4.13258 -75.09499 P PPL CO 28 4184 478 America/Bogota 2006-01-17
-3669440 San Lorenzo San Lorenzo San Lorenzo 1.50628 -77.21898 P PPL CO 20 2394 1995 America/Bogota 2012-01-19
-3669454 San Juan Nepomuceno San Juan Nepomuceno San Juan,San Juan Nepomuceno 9.95156 -75.08198 P PPL CO 35 29619 172 America/Bogota 2012-01-19
-3669461 San Juan de Urabá San Juan de Uraba Coco,San Juan,San Juan de Uraba,San Juan de Urabá 8.75924 -76.52969 P PPL CO 02 10825 22 America/Bogota 2012-01-19
-3669469 San Juan del Cesar San Juan del Cesar San Juan de Cesar,San Juan de César,San Juan del Cesar 10.77108 -73.00314 P PPL CO 17 26848 214 America/Bogota 2012-01-19
-3669480 San Juan de Betulia San Juan de Betulia Betulia,San Juan de Betulia 9.27345 -75.24103 P PPL CO 27 9092 152 America/Bogota 2012-01-19
-3669482 San Juan de Arama San Juan de Arama Municipio Juan de Arama,San Juan,San Juan de Arama 3.34639 -73.88944 P PPL CO 19 2636 431 America/Bogota 2012-01-19
-3669545 San José de Miranda San Jose de Miranda Miranda,San Jose de Miranda,San José de Miranda 6.6587 -72.73344 P PPL CO 26 1096 1983 America/Bogota 2012-01-19
-3669549 San José del Palmar San Jose del Palmar San Jose del Palmar,San José del Palmar 4.97417 -76.22833 P PPL CO 11 2392 1288 America/Bogota 2012-01-19
-3669557 San José de La Montaña San Jose de La Montana San Jose,San Jose de La Montana,San José,San José de La Montaña 6.85028 -75.68333 P PPL CO 02 2819 2579 America/Bogota 2012-01-19
-3669623 San José San Jose San Jose,San José 5.08583 -75.78833 P PPL CO 37 1724 1775 America/Bogota 2012-01-19
-3669654 San José San Jose Roberto Payan,Roberto Payán,San Jose,San José 1.69659 -78.24482 P PPL CO 20 1772 39 America/Bogota 2012-01-19
-3669718 San Jerónimo San Jeronimo San Jeronimo,San Jerónimo 6.44344 -75.72815 P PPL CO 02 3356 728 America/Bogota 2012-01-19
-3669736 San Jacinto San Jacinto San Jacinto 9.82767 -75.1217 P PPL CO 35 20265 235 America/Bogota 2012-01-19
-3669808 San Gil San Gil San Gil 6.55573 -73.13309 P PPL CO 26 33592 1127 America/Bogota 2012-01-19
-3669857 San Francisco San Francisco 6.11667 -75.98333 P PPL CO 02 2779 1582 America/Bogota 2006-01-17
-3669860 San Francisco San Francisco San Fracisco,San Francisco 4.97372 -74.29006 P PPL CO 33 2785 1508 America/Bogota 2012-01-19
-3669881 San Francisco San Francisco San Francisco 1.17867 -76.8785 P PPL CO 22 4350 2195 America/Bogota 2012-01-19
-3669895 San Fernando San Fernando 9.27972 -74.53389 P PPL CO 35 1615 17 America/Bogota 2006-01-17
-3669929 San Estanislao San Estanislao Arenal,San Estanislao 10.39833 -75.15111 P PPL CO 35 12596 16 America/Bogota 2012-01-19
-3669938 Sandoná Sandona Sandona,Sandoná 1.29151 -77.47409 P PPL CO 20 10401 1740 America/Bogota 2012-01-19
-3669947 San Diego San Diego Corregimiento San Diego,San Diego 10.33427 -73.18004 P PPL CO 10 8014 166 America/Bogota 2012-01-19
-3669956 San Cristóbal San Cristobal Caserio San Cristobal,San Cristobal,San Cristóbal 9.87809 -75.25248 P PPL CO 35 4737 89 America/Bogota 2012-01-19
-3669977 San Cayetano San Cayetano San Cayetano 7.87707 -72.6243 P PPL CO 21 1430 240 America/Bogota 2012-01-19
-3669987 San Carlos de Guaroa San Carlos de Guaroa San Carlos de Guarda,San Carlos de Guaroa 3.71161 -73.24344 P PPL CO 19 1604 224 America/Bogota 2012-01-19
-3669997 San Carlos San Carlos San Carlos 8.79577 -75.69947 P PPL CO 12 24615 15 America/Bogota 2012-01-19
-3669998 San Carlos San Carlos 7.79177 -74.77316 P PPL CO 02 22678 59 America/Bogota 2011-10-11
-3670000 San Carlos San Carlos San Carlos 6.18789 -74.99315 P PPL CO 02 7742 989 America/Bogota 2012-01-19
-3670011 San Calixto San Calixto San Calixto 8.4021 -73.20737 P PPL CO 21 2080 1640 America/Bogota 2012-01-19
-3670018 San Bernardo del Viento San Bernardo del Viento San Bernardo,San Bernardo del Viento 9.3533 -75.95244 P PPL CO 12 8967 8 America/Bogota 2012-01-19
-3670034 San Bernardo San Bernardo 1.52119 -77.03091 P PPL CO 09 2988 2429 America/Bogota 2006-01-17
-3670038 San Benito Abad San Benito Abad San Benito Abab,San Benito Abad,Tocasman,Tocasmán 8.92901 -75.02709 P PPL CO 27 18181 23 America/Bogota 2012-01-19
-3670107 San Antonio San Antonio Caserio San Antonio,San Antonio,Tenerife 9.93303 -74.69346 P PPL CO 38 8476 110 America/Bogota 2012-01-19
-3670162 San Antonio San Antonio 3.91423 -75.48008 P PPL CO 28 5185 1431 America/Bogota 2011-10-11
-3670199 San Antero San Antero San Antero 9.3741 -75.75891 P PPL CO 12 11610 45 America/Bogota 2012-01-19
-3670218 San Andrés San Andres San Andres,San Andrés 12.58472 -81.70056 P PPLA CO 25 58257 3 America/Bogota 2012-01-19
-3670224 San Andrés San Andres San Andres,San Andrés 6.81148 -72.84929 P PPL CO 26 3032 1626 America/Bogota 2012-01-19
-3670242 San Alberto San Alberto 7.76107 -73.3922 P PPL CO 10 10627 118 America/Bogota 2011-10-11
-3670260 San Agustín San Agustin San Agustin,San Agustín 1.87863 -76.27557 P PPL CO 16 9481 1649 America/Bogota 2012-01-19
-3670280 Sampués Sampues Sampues,Sampués 9.18361 -75.38167 P PPL CO 27 21204 154 America/Bogota 2012-01-19
-3670293 Samaniego Samaniego Samaniego 1.3385 -77.5957 P PPL CO 20 13515 1459 America/Bogota 2012-01-19
-3670303 Samacá Samaca Samaca,Samacá 5.49274 -73.48537 P PPL CO 36 3689 2601 America/Bogota 2012-01-19
-3670350 Salgar Salgar Salgar 5.96502 -75.96541 P PPL CO 02 6428 1209 America/Bogota 2012-01-19
-3670352 Salento Salento Salento 4.6375 -75.57028 P PPL CO 23 4135 1995 America/Bogota 2012-01-19
-3670357 Saldaña Saldana 3.92922 -75.01517 P PPL CO 28 9237 311 America/Bogota 2006-01-17
-3670368 Salamina Salamina 10.49027 -74.79463 P PPL CO 38 6166 7 America/Bogota 2011-10-11
-3670370 Salamina Salamina Salamina 5.40733 -75.48749 P PPL CO 37 18076 1792 America/Bogota 2012-01-19
-3670383 Saladoblanco Saladoblanco Saladoblanco 1.99244 -76.04335 P PPL CO 16 1662 1489 America/Bogota 2012-01-19
-3670419 Sahagún Sahagun Sahagun,Sahagún 8.94616 -75.44275 P PPL CO 12 59188 84 America/Bogota 2012-01-19
-3670431 Sáchica Sachica Sachica,Sáchica 5.58453 -73.54184 P PPL CO 36 1774 2153 America/Bogota 2012-01-19
-3670447 Saboyá Saboya Saboya,Saboyá 5.69636 -73.76932 P PPL CO 36 1375 2640 America/Bogota 2012-01-19
-3670475 Sabaneta Sabaneta Sabaneta,Sabanetas,Сабанета 6.15 -75.6 P PPL CO 02 34172 1730 America/Bogota 2012-01-19
-3670502 Sabanalarga Sabanalarga Sabanalarga,Sabanalargo 10.62962 -74.92063 P PPL CO 04 68535 102 America/Bogota 2012-01-19
-3670506 Sabanalarga Sabanalarga Sabanalarga 6.84893 -75.81711 P PPL CO 02 2517 853 America/Bogota 2012-01-19
-3670513 Sabanagrande Sabanagrande 10.79115 -74.76059 P PPL CO 04 24880 9 America/Bogota 2010-03-12
-3670520 Sabana de Torres Sabana de Torres Sabana de Torres 7.3915 -73.49574 P PPL CO 26 11291 137 America/Bogota 2012-01-19
-3670587 Rovira Rovira Rovira 4.23922 -75.23996 P PPL CO 28 6949 867 America/Bogota 2012-01-19
-3670595 Rosas Rosas Dolores,Rosas 2.26093 -76.73986 P PPL CO 09 1830 1717 America/Bogota 2012-01-19
-3670629 Roncesvalles Roncesvalles Roncesvalles 4.0108 -75.60493 P PPL CO 28 3918 2597 America/Bogota 2012-01-19
-3670644 Roldanillo Roldanillo Roldanillo 4.41256 -76.15457 P PPL CO 29 27561 945 America/Bogota 2012-01-19
-3670692 Rivera Rivera Rivera,San Mateo 2.77717 -75.25642 P PPL CO 16 8044 731 America/Bogota 2012-01-19
-3670700 Risaralda Risaralda Risaral'da,Risaralda,Rizaralda,Рисаральда 5.16647 -75.76595 P PPL CO 37 5421 1728 America/Bogota 2012-01-19
-3670709 Río Viejo Rio Viejo Corregimiento Rio Viejo,Rio Viejo,Río Viejo 8.5874 -73.83901 P PPL CO 35 6963 37 America/Bogota 2012-01-19
-3670718 Riosucio Riosucio Riosucio 7.44027 -77.1167 P PPL CO 11 7163 4 America/Bogota 2012-01-19
-3670719 Riosucio Riosucio Riosucio,Ruiosucio 5.42164 -75.70318 P PPL CO 37 18950 1775 America/Bogota 2012-01-19
-3670730 Rionegro Rionegro Rionegro 6.15515 -75.37371 P PPL CO 02 62291 2090 America/Bogota 2012-01-19
-3670745 Ríohacha Riohacha Riochacha,Riohacha,Ríohacha 11.54444 -72.90722 P PPLA CO 17 92431 7 America/Bogota 2012-01-19
-3670754 Riofrío Riofrio Huasano,Huasanó,Palomino,Riofrio,Riofrío 4.1571 -76.28852 P PPL CO 29 9236 942 America/Bogota 2012-01-19
-3670756 Río de Oro Rio de Oro Rio de Oro,Río de Oro 8.2919 -73.38485 P PPL CO 10 6122 1164 America/Bogota 2012-01-19
-3670764 Rioblanco Rioblanco 3.53083 -75.68056 P PPL CO 28 6210 1677 America/Bogota 2006-01-17
-3670812 Ricaurte Ricaurte Ricaurte,Ricaute 4.28075 -74.76469 P PPL CO 33 2682 283 America/Bogota 2012-01-19
-3670816 Ricaurte Ricaurte 1.1727 -77.9372 P PPL CO 20 2617 2018 America/Bogota 2006-01-17
-3670849 Retiro Retiro El Retiro,Retiro 6.05861 -75.50306 P PPL CO 02 7941 2166 America/Bogota 2012-01-19
-3670855 Restrepo Restrepo Restrepo 4.25833 -73.56142 P PPL CO 19 7511 474 America/Bogota 2012-01-19
-3670856 Restrepo Restrepo Conto,Restrepo 3.82203 -76.52242 P PPL CO 29 9545 1406 America/Bogota 2012-01-19
-3670874 Repelón Repelon Repelon,Repelón 10.49194 -75.12917 P PPL CO 04 18685 17 America/Bogota 2012-01-19
-3670884 Remolino Remolino Jaguey,Remolino 10.70198 -74.71602 P PPL CO 38 8308 8 America/Bogota 2012-01-19
-3670899 Remedios Remedios Remedios 7.03083 -74.53333 P PPL CO 02 6415 547 America/Bogota 2012-01-19
-3670910 Regidor Regidor Corregimiento Regidor,Regidor 8.66565 -73.82151 P PPL CO 35 3386 36 America/Bogota 2012-01-19
-3670966 Ráquira Raquira Raquira,Ráquira 5.53793 -73.63201 P PPL CO 36 2120 2165 America/Bogota 2012-01-19
-3671002 Ramiriquí Ramiriqui Ramiriqui,Ramiriquí 5.4002 -73.33544 P PPL CO 36 5039 2308 America/Bogota 2012-01-19
-3671018 Ragonvalia Ragonvalia Ragonvalia,Rangovalia 7.57749 -72.47574 P PPL CO 21 3543 1546 America/Bogota 2012-01-19
-3671020 Apulo Apulo Apulo,Rafael Reyes 4.51952 -74.59293 P PPL CO 33 4084 415 America/Bogota 2012-01-19
-3671072 Quipile Quipile Quipile 4.74806 -74.56306 P PPL CO 33 1896 2135 America/Bogota 2012-01-19
-3671091 Quinchía Quinchia Nazaret,Quinchia,Quinchía 5.33957 -75.73018 P PPL CO 24 10895 1817 America/Bogota 2012-01-19
-3671098 Quimbaya Quimbaya Quimbaya 4.62306 -75.76278 P PPL CO 23 31391 1313 America/Bogota 2012-01-19
-3671116 Quibdó Quibdo Kibdo,Quibdo,Quibdó,Кибдо 5.69472 -76.66111 P PPLA CO 11 75104 33 America/Bogota 2012-01-19
-3671119 Quetame Quetame Quetame,Quetarre 4.33234 -73.86142 P PPL CO 33 1374 1585 America/Bogota 2012-01-19
-3671203 Purísima Purisima Purisima,Purísima 9.23657 -75.7219 P PPL CO 12 7043 6 America/Bogota 2012-01-19
-3671208 Purificación Purificacion Purificacion,Purificación 3.8587 -74.93129 P PPL CO 28 10846 305 America/Bogota 2012-01-19
-3671228 Pupiales Pupiales Pupiales 0.87136 -77.64027 P PPL CO 20 6760 2974 America/Bogota 2012-01-19
-3671287 Puerto Wilches Puerto Wilches Puerto Wilches 7.34828 -73.89601 P PPL CO 26 13705 67 America/Bogota 2012-01-19
-3671308 Puerto Triunfo Puerto Triunfo Puerto Triunfo 5.87262 -74.64029 P PPL CO 02 4055 154 America/Bogota 2012-01-19
-3671315 Puerto Tejada Puerto Tejada 3.23114 -76.41668 P PPL CO 09 53674 969 America/Bogota 2011-10-11
-3671325 Puerto Santander Puerto Santander Puerto Santander,Santander 8.36361 -72.4063 P PPL CO 21 16275 50 America/Bogota 2012-01-19
-3671330 Puerto Salgar Puerto Salgar Puerto Salgar,Salgar 5.46304 -74.65436 P PPL CO 33 9863 177 America/Bogota 2012-01-19
-3671337 Puerto Rondón Puerto Rondon Corregimiento Puerto Rendon,Corregimiento Puerto Rendón,El Padre,Puerto Rendon,Puerto Rondon,Puerto Rondón,Rondon,Rondón 6.28048 -71.1 P PPL CO 03 3724 137 America/Bogota 2012-01-19
-3671346 Puerto Rico Puerto Rico 2.93833 -73.20833 P PPL CO 19 5029 212 America/Bogota 2010-12-05
-3671348 Puerto Rico Puerto Rico 1.91417 -75.145 P PPLA2 CO 08 12306 252 America/Bogota 2010-08-12
-3671371 Puerto Parra Puerto Parra Puerto Parra 6.65149 -74.05734 P PPL CO 26 1448 96 America/Bogota 2012-01-19
-3671387 Puerto Nariño Puerto Narino Puerto Narino,Puerto Nariño -3.77028 -70.38306 P PPL CO 01 2113 82 America/Bogota 2012-01-19
-3671418 Puerto López Puerto Lopez Puerto Lopez,Puerto López 4.08451 -72.95597 P PPL CO 19 16678 186 America/Bogota 2012-01-19
-3671424 Puerto Lleras Puerto Lleras Puerto Chinatas,Puerto Lleras,Puerto Saiz,Puerto Saíz 3.02225 -73.4044 P PPL CO 19 5076 251 America/Bogota 2012-01-19
-3671437 Puerto Leguízamo Puerto Leguizamo Caucaya,Caucayá,Leguizamo,Puerto Leguizamo,Puerto Leguízamo -0.19337 -74.78189 P PPL CO 22 9098 189 America/Bogota 2012-01-19
-3671450 Inírida Inirida Inirida,Inírida,Obando,Puerto Inirida,Puerto Inírida 3.86528 -67.92389 P PPLA CO 15 7298 98 America/Bogota 2012-01-19
-3671470 Puerto Escondido Puerto Escondido Puerto Escondido,Puerto Escondito 9.0181 -76.26413 P PPL CO 12 3020 9 America/Bogota 2012-01-19
-3671497 Puerto Colombia Puerto Colombia Puerto Colombia 10.98778 -74.95472 P PPL CO 04 26227 12 America/Bogota 2012-01-19
-3671519 Puerto Carreño Puerto Carreno Puerto Carreno,Puerto Carreño 6.18903 -67.48588 P PPLA CO 31 10216 51 America/Bogota 2012-01-19
-3671531 Puerto Boyacá Puerto Boyaca Puerto Boyaca,Puerto Boyacá 5.97584 -74.58846 P PPL CO 36 27310 144 America/Bogota 2012-01-19
-3671540 Puerto Berrío Puerto Berrio Puerto Berrio,Puerto Berrío 6.49156 -74.40326 P PPL CO 02 33983 110 America/Bogota 2012-01-19
-3671549 Puerto Asís Puerto Asis Puehrto-Asis,Puerto Asis,Puerto Asís,Пуэрто-Асис 0.51328 -76.50075 P PPL CO 22 29782 256 America/Bogota 2012-01-19
-3671576 Puerres Puerres 1.19374 -77.26661 P PPL CO 20 3812 2577 America/Bogota 2011-10-11
-3671591 Puente Nacional Puente Nacional Puente Nacional 5.8774 -73.6781 P PPL CO 26 5774 1621 America/Bogota 2012-01-19
-3671615 Puebloviejo Puebloviejo 10.99376 -74.28438 P PPL CO 38 13523 4 America/Bogota 2011-10-11
-3671630 Pueblorrico Pueblorrico Pueblorico,Pueblorrico 5.79176 -75.84101 P PPL CO 02 5327 1805 America/Bogota 2012-01-19
-3671633 Pueblo Rico Pueblo Rico Pueblo Rico,Pueblorrico 5.23833 -76.03639 P PPL CO 24 4165 1345 America/Bogota 2012-01-19
-3671655 Pueblo Nuevo Pueblo Nuevo Caserio Pueblonuevo,Pueblo Nuevo 8.2411 -74.95815 P PPL CO 12 9075 32 America/Bogota 2012-01-19
-3671714 Providencia Providencia 1.56976 -77.464 P PPL CO 20 3326 1115 America/Bogota 2006-01-17
-3671765 Prado Prado 3.75024 -74.92932 P PPL CO 28 3556 317 America/Bogota 2006-01-17
-3671772 Pradera Pradera 3.42111 -76.24472 P PPL CO 29 44630 1054 America/Bogota 2006-01-17
-3671848 Potosí Potosi 0.80739 -77.57216 P PPL CO 20 3979 2742 America/Bogota 2011-10-11
-3671901 Pore Pore Municipio Pore,Pore 5.72722 -71.99472 P PPL CO 32 4133 285 America/Bogota 2012-01-19
-3671916 Popayán Popayan 2.43823 -76.61316 P PPLA CO 09 258653 1760 1725 America/Bogota 2010-04-10
-3671936 Ponedera Ponedera Ponedera,Ponederas,Ponedero 10.64104 -74.75026 P PPL CO 04 11221 13 America/Bogota 2012-01-19
-3671950 Polonuevo Polonuevo Polonuevo,Pueblonuevo 10.77697 -74.85344 P PPL CO 04 11727 86 America/Bogota 2012-01-19
-3671961 Policarpa Policarpa Policarpa 1.63231 -77.46199 P PPL CO 20 2377 896 America/Bogota 2012-01-19
-3672068 Planeta Rica Planeta Rica Planeta Rica,Planeta-Riki,Планета-Рики 8.41472 -75.58833 P PPL CO 12 37297 89 America/Bogota 2012-01-19
-3672077 Planadas Planadas Planadas 3.19698 -75.64506 P PPL CO 28 9709 1212 America/Bogota 2012-01-19
-3672086 Pizarro Pizarro Bajo Baudo,Bajo Baudó,Baudo,Baudó,Pizarro,Puerto Pizarro 4.95334 -77.36598 P PPL CO 11 6168 5 America/Bogota 2012-01-19
-3672087 Francisco Pizarro Francisco Pizarro Francisco Pizarro,Pizarro,Salahonda 2.10194 -78.72167 P PPL CO 20 6105 -9999 America/Bogota 2012-01-19
-3672093 Pivijay Pivijay Pivijay 10.46168 -74.61621 P PPL CO 38 33492 12 America/Bogota 2012-01-19
-3672110 Pitalito Pitalito Pitalito 1.84966 -76.04785 P PPL CO 16 53685 1274 America/Bogota 2012-01-19
-3672123 Pital Pital 2.2665 -75.80442 P PPL CO 16 3957 922 America/Bogota 2011-10-11
-3672176 Piojó Piojo Piojo,Piojó 10.74846 -75.10776 P PPL CO 04 3388 307 America/Bogota 2012-01-19
-3672197 Pinillos Pinillos Pinillos 8.91925 -74.46771 P PPL CO 35 6218 19 America/Bogota 2012-01-19
-3672249 Pijiño Pijino Corregimiento Pijino,Corregimiento Pijiño,Piginio,Pijinio,Pijino,Pijiño 9.32908 -74.45302 P PPL CO 38 5390 21 America/Bogota 2012-01-19
-3672255 Pijao Pijao Pijao 4.33419 -75.70348 P PPL CO 23 5668 1656 America/Bogota 2012-01-19
-3672290 Piedras Piedras Pedregal,Piedras 4.53833 -74.88175 P PPL CO 28 1172 403 America/Bogota 2012-01-19
-3672295 Piedrancha Piedrancha Mallama,Piedra Ancha,Piedrancha 1.1374 -77.8489 P PPL CO 20 1788 2197 America/Bogota 2012-01-19
-3672327 Pié de Pató Pie de Pato Alto Baudo,Alto Baudó,Pie de Pato,Pié de Pató,Puerto Yacup 5.51604 -76.97449 P PPL CO 11 3242 21 America/Bogota 2012-01-19
-3672328 Piedecuesta Piedecuesta 6.98789 -73.04953 P PPL CO 26 86387 1014 America/Bogota 2011-10-11
-3672428 Pesca Pesca 5.55 -73.05 P PPL CO 36 5113 2728 America/Bogota 2006-01-17
-3672486 Pereira Pereira Cartago Viejo,Pereira,Perejra,Перейра 4.81333 -75.69611 P PPLA CO 24 440118 1414 America/Bogota 2012-01-19
-3672512 Peque Peque Peque 7.02122 -75.90926 P PPL CO 02 1793 1204 America/Bogota 2012-01-19
-3672521 Pensilvania Pensilvania 5.38346 -75.16122 P PPL CO 37 8173 2070 America/Bogota 2011-10-11
-3672599 Pelaya Pelaya Caserio Pelaya,Caserío Pelaya,Pelaya 8.68819 -73.66452 P PPL CO 10 11306 73 America/Bogota 2012-01-19
-3672633 Pedraza Pedraza Pedraza 10.18739 -74.91504 P PPL CO 38 3677 10 America/Bogota 2012-01-19
-3672665 Payán Payan Capital Payan,Capital Payán,Magui,Magüí,Mangui,Mangüi,Payan,Payán 1.935 -78.205 P PPL CO 20 2892 45 America/Bogota 2012-01-19
-3672698 Pauna Pauna Pauna 5.65861 -73.9825 P PPL CO 36 2663 1080 America/Bogota 2012-01-19
-3672761 Patía Patia 2.06895 -77.05273 P PPL CO 09 20807 910 619 America/Bogota 2010-03-12
-3672778 Pasto Pasto Pastas,Pasto,San Juan de Pasto,Пасто 1.21361 -77.28111 P PPLA CO 20 382236 2545 America/Bogota 2012-01-19
-3672813 Pasca Pasca Pasca 4.30722 -74.30056 P PPL CO 33 3169 2183 America/Bogota 2012-01-19
-3672997 Pandi Pandi Pandi 4.19111 -74.4875 P PPL CO 33 1336 922 America/Bogota 2012-01-19
-3673045 Pamplona Pamplona Pamplona,Памплона 7.37565 -72.64795 P PPL CO 21 53587 2294 America/Bogota 2012-01-19
-3673126 Palocabildo Palocabildo 5.11705 -75.01732 P PPL CO 28 3534 1451 America/Bogota 2011-10-11
-3673143 Palmito Palmito Palmito,Palmitos 9.33333 -75.55 P PPL CO 27 3992 37 America/Bogota 2012-01-19
-3673164 Palmira Palmira Palmira 3.53944 -76.30361 P PPL CO 29 247986 1005 America/Bogota 2012-01-19
-3673220 Palmar de Varela Palmar de Varela Palma de Varela,Palmar,Palmar de Varela,Palmer 10.74055 -74.75443 P PPL CO 04 28084 12 America/Bogota 2012-01-19
-3673269 Palestina Palestina 5.0194 -75.62242 P PPL CO 37 7865 1591 America/Bogota 2011-10-11
-3673275 Palestina Palestina Palestina 1.72362 -76.13403 P PPL CO 16 2027 1546 America/Bogota 2012-01-19
-3673286 Palermo Palermo Palermo,Santa Rosalia de Guagua,Santa Rosalía de Guagua 2.89167 -75.4375 P PPL CO 16 9896 546 America/Bogota 2012-01-19
-3673352 Pajarito Pajarito 5.2929 -72.70277 P PPL CO 32 1258 793 America/Bogota 2011-10-11
-3673368 Paispamba Paispamba Paispamba,Sotara,Sotará 2.25462 -76.61086 P PPL CO 09 1390 2531 America/Bogota 2012-01-19
-3673369 Paipa Paipa Paipa 5.78013 -73.11708 P PPL CO 36 13554 2508 America/Bogota 2012-01-19
-3673379 Pailitas Pailitas Pailitas 8.95652 -73.62548 P PPL CO 10 10480 74 America/Bogota 2012-01-19
-3673386 Paicol Paicol Paicol 2.44962 -75.775 P PPL CO 16 1681 871 America/Bogota 2012-01-19
-3673397 Páez Paez Paez,Páez 5.10112 -73.05122 P PPL CO 36 1220 1316 America/Bogota 2012-01-19
-3673398 Belalcazar Belalcazar Belalcazar,Belalcazer,Belalcázar,Belalcázer,Paez,Páez 2.65472 -75.99278 P PPL CO CO 09 31800 2156 America/Bogota 2012-01-19
-3673407 Padilla Padilla Padilla 3.22038 -76.31385 P PPL CO 09 4472 992 America/Bogota 2012-01-19
-3673413 Pácora Pacora Pacora,Pácora 5.52708 -75.4593 P PPL CO 37 8218 1809 America/Bogota 2012-01-19
-3673424 Pacho Pacho Pacho 5.13278 -74.15977 P PPL CO 33 16698 1783 America/Bogota 2012-01-19
-3673455 Ovejas Ovejas 9.53248 -75.22382 P PPL CO 27 13284 250 America/Bogota 2006-01-17
-3673475 Otanche Otanche 5.65672 -74.18249 P PPL CO 36 3589 1075 America/Bogota 2011-10-11
-3673482 Ospina Ospina 1.0595 -77.56554 P PPL CO 20 2747 2862 America/Bogota 2011-10-11
-3673511 Ortega Ortega Ortega 3.9361 -75.22169 P PPL CO 28 6871 393 America/Bogota 2012-01-19
-3673536 Orocué Orocue Orocue,Orocué 4.79118 -71.33542 P PPL CO 32 2835 134 America/Bogota 2012-01-19
-3673578 Oporapa Oporapa Oporapa 2.05015 -75.97675 P PPL CO 16 2310 1541 America/Bogota 2012-01-19
-3673590 Onzaga Onzaga Onzaga 6.34434 -72.81726 P PPL CO 26 1393 1955 America/Bogota 2012-01-19
-3673609 Olaya Herrera Olaya Herrera Hatillo,Olaya Herrera 1.25609 -77.49665 P PPL CO 20 9820 1505 America/Bogota 2012-01-19
-3673637 Oiba Oiba Oiba 6.26388 -73.29876 P PPL CO 26 3959 1421 America/Bogota 2012-01-19
-3673662 Ocaña Ocana Ocana,Ocaña,Okan'ja,Оканья 8.23773 -73.35604 P PPL CO 21 83511 1197 America/Bogota 2012-01-19
-3673676 Obando Obando 4.57583 -75.97389 P PPL CO 29 7298 932 America/Bogota 2006-01-17
-3673690 Nuquí Nuqui Nugui,Nugul,Nuqui,Nuquí 5.7125 -77.27083 P PPL CO 11 2741 9 America/Bogota 2012-01-19
-3673695 Nunchía Nunchia Nunchia,Nunchía 5.64056 -72.19861 P PPL CO 32 1282 395 America/Bogota 2012-01-19
-3673756 Nueva Granada Nueva Granada Corregimiento Nueva Granada,Nueva Granada 9.80168 -74.39304 P PPL CO 38 2714 113 America/Bogota 2012-01-19
-3673783 Nóvita Novita Novita,Nóvita,San Jeronimo,San Jerónimo 4.95511 -76.60526 P PPL CO 11 1898 51 America/Bogota 2012-01-19
-3673811 Norcasia Norcasia Norcacia,Norcasia 5.57782 -74.88521 P PPL CO 37 5976 729 America/Bogota 2012-01-19
-3673826 Nocaima Nocaima Nocaima 5.06983 -74.378 P PPL CO 33 2475 1112 America/Bogota 2012-01-19
-3673829 Nobsa Nobsa Nobsa 5.76978 -72.94099 P PPL CO 36 3360 2497 America/Bogota 2012-01-19
-3673849 Nilo Nilo Nilo 4.30604 -74.62083 P PPL CO 33 1117 333 America/Bogota 2012-01-19
-3673887 Nemocón Nemocon Nemocon,Nemocón 5.05 -73.88333 P PPL CO 33 5466 2854 America/Bogota 2012-01-19
-3673899 Neiva Neiva Neiva,Nejva,Нейва 2.9273 -75.28188 P PPLA CO 16 352855 461 America/Bogota 2012-01-19
-3673902 Neira Neira Neira 5.1665 -75.52001 P PPL CO 37 11755 1953 America/Bogota 2012-01-19
-3673974 Necoclí Necocli Necocli,Necoclí,Nicocli,Nicoclí 8.42342 -76.78597 P PPL CO 02 10835 7 America/Bogota 2012-01-19
-3673976 Nechí Nechi Nechi,Nechí 8.09419 -74.77573 P PPL CO 02 6693 31 America/Bogota 2012-01-19
-3674010 Natagaima Natagaima Matagaima,Natagaima 3.62057 -75.09415 P PPL CO 28 11217 326 America/Bogota 2012-01-19
-3674012 Nátaga Nataga Nataga,Nataja,Nátaga,Nátaja 2.54359 -75.80852 P PPL CO 16 2232 1472 America/Bogota 2012-01-19
-3674027 Nariño Narino Narino,Nariño 5.60893 -75.17656 P PPL CO 02 3186 1656 America/Bogota 2012-01-19
-3674029 Nariño Narino 4.39781 -74.82731 P PPL CO 33 1213 264 America/Bogota 2011-10-11
-3674031 Nariño Narino 1.29546 -77.3605 P PPL CO 20 2933 2334 America/Bogota 2006-01-17
-3674121 Muzo Muzo Muzo 5.53528 -74.10778 P PPL CO 36 7977 770 America/Bogota 2012-01-19
-3674130 Mutatá Mutata Mutata,Mutatá 7.24407 -76.43564 P PPL CO 02 4811 132 America/Bogota 2012-01-19
-3674161 Murindó Murindo 6.98481 -76.75439 P PPL CO 02 2372 19 America/Bogota 2011-10-11
-3674166 Murillo Murillo 4.87393 -75.17151 P PPL CO 28 1860 2986 America/Bogota 2011-10-11
-3674272 Mountain Mountain La Montana,La Montaña,Montana,Montaña,Mountain 13.36667 -81.36667 P PPL CO 25 2404 64 America/Bogota 2012-01-19
-3674292 Mosquera Mosquera 4.70592 -74.23021 P PPL CO 33 27005 2544 America/Bogota 2011-10-11
-3674293 Mosquera Mosquera 2.50861 -78.4511 P PPL CO 20 3471 7 America/Bogota 2011-10-11
-3674337 Morroa Morroa Morroa 9.33348 -75.30542 P PPL CO 27 4949 167 America/Bogota 2012-01-19
-3674393 Morelia Morelia Moralia,Morelia 1.48747 -75.72581 P PPL CO 08 2257 263 America/Bogota 2012-02-02
-3674412 Morales Morales Corregimiento Morales,Morales 8.2752 -73.86884 P PPL CO 35 20375 42 America/Bogota 2012-01-19
-3674453 Montería Monteria Monteria,Monterija,Montería,San Jeronimo de Buenavista,San Jerónimo de Buenavista,Монтерия 8.74798 -75.88143 P PPLA CO 12 272420 19 America/Bogota 2012-01-19
-3674463 Montenegro Montenegro 4.56639 -75.75111 P PPL CO 23 36499 1297 America/Bogota 2006-01-17
-3674470 Montelíbano Montelibano Montelibano,Montelíbano 7.98288 -75.42293 P PPL CO 12 85000 43 America/Bogota 2012-01-19
-3674499 Montecristo Montecristo Corregimiento Montecristo,Montecristo 8.2971 -74.4733 P PPL CO 35 5608 84 America/Bogota 2012-01-19
-3674519 Montebello Montebello 5.94806 -75.5275 P PPL CO 02 2007 2395 America/Bogota 2006-01-17
-3674569 Moñitos Monitos Monito,Monitos,Moñito,Moñitos 8.25 -76.05 P PPL CO 12 5385 44 America/Bogota 2012-01-19
-3674572 Moniquirá Moniquira Moniquira,Moniquirá 5.87638 -73.57284 P PPL CO 36 9785 1671 America/Bogota 2012-01-19
-3674576 Monguí Mongui Mongui,Mongul,Monguí 5.72151 -72.84908 P PPL CO 36 2299 2929 America/Bogota 2012-01-19
-3674580 Mongua Mongua Mongua 5.75084 -72.80339 P PPL CO 36 2322 3021 America/Bogota 2012-01-19
-3674597 Mompós Mompos Mompos,Mompós 9.24194 -74.42667 P PPL CO 35 30861 19 America/Bogota 2012-01-19
-3674603 Momil Momil Corregimiento Momil,Momil 9.23768 -75.67489 P PPL CO 12 6441 10 America/Bogota 2012-01-19
-3674618 Molagavita Molagavita Molagavita 6.67315 -72.80875 P PPL CO 26 1205 2173 America/Bogota 2012-01-19
-3674640 Mogotes Mogotes Mogotes 6.47559 -72.97046 P PPL CO 26 3438 1681 America/Bogota 2012-01-19
-3674654 Mocoa Mocoa Mocoa 1.14933 -76.64661 P PPLA CO 22 22035 585 America/Bogota 2012-01-19
-3674676 Mitú Mitu Mitu,Mitú 1.19833 -70.17333 P PPLA CO 30 5917 193 America/Bogota 2012-01-19
-3674678 Mistrató Mistrato Mistrato,Mistrató 5.2973 -75.88322 P PPL CO 24 6263 1487 America/Bogota 2012-01-19
-3674702 Miranda Miranda 3.24991 -76.22814 P PPL CO 09 13223 1090 America/Bogota 2011-10-11
-3674735 Miraflores Miraflores Miraflores 5.19608 -73.14504 P PPL CO 36 2766 1518 America/Bogota 2012-01-19
-3674740 Miraflores Miraflores Miraflores 1.33667 -71.95111 P PPL CO 14 4864 209 America/Bogota 2012-01-19
-3674784 Milán Milan 1.29205 -75.51167 P PPL CO 08 2618 219 America/Bogota 2006-01-17
-3674851 Mercaderes Mercaderes Mercaderes 1.80094 -77.16596 P PPL CO 09 4684 1153 America/Bogota 2012-01-19
-3674885 Melgar Melgar Mel'gar,Melgar,Мельгар 4.20475 -74.64075 P PPL CO 28 25980 325 America/Bogota 2012-01-19
-3674931 Medina Medina Medina 4.51005 -73.34982 P PPL CO 33 3098 536 America/Bogota 2012-01-19
-3674962 Medellín Medellin Medelin,Medeljinas,Medellin,Medellín,mederin,Меделин,メデリン 6.25184 -75.56359 P PPLA CO 02 1999979 1405 1500 America/Bogota 2012-01-19
-3675118 Matanza Matanza 7.32233 -73.01516 P PPL CO 26 1669 1588 America/Bogota 2011-10-11
-3675191 Marulanda Marulanda Marulanda 5.28393 -75.26016 P PPL CO 37 1256 2858 America/Bogota 2012-01-19
-3675212 Marsella Marsella Marsella,Segovia 4.93722 -75.73778 P PPL CO 24 11158 1543 America/Bogota 2012-01-19
-3675234 Marquetalia Marquetalia Marquetalia,Nunez,Núñez 5.29659 -75.05496 P PPL CO 37 6224 1554 America/Bogota 2012-01-19
-3675242 Marmato Marmato Marmato 5.47843 -75.59267 P PPL CO 37 1456 1117 America/Bogota 2012-01-19
-3675252 Mariquita Mariquita Mariquita 5.19889 -74.89295 P PPL CO 28 23104 485 America/Bogota 2012-01-19
-3675255 Maripí Maripi Maripi,Maripí 5.55194 -74.00861 P PPL CO 36 1143 1199 America/Bogota 2012-01-19
-3675263 Marinilla Marinilla Marinilla 6.17358 -75.33621 P PPL CO 02 24171 2085 America/Bogota 2012-01-19
-3675287 María la Baja Maria la Baja Maria la Baja,María la Baja 9.9832 -75.30155 P PPL CO 35 23401 15 America/Bogota 2012-01-19
-3675305 Margarita Margarita 9.15596 -74.26618 P PPL CO 35 1939 24 America/Bogota 2011-10-11
-3675409 Manzanares Manzanares 5.32472 -75.15694 P PPL CO 37 16278 2415 America/Bogota 2006-01-17
-3675432 Manta Manta Manta 5.00864 -73.54115 P PPL CO 33 1410 1920 America/Bogota 2012-01-19
-3675443 Manizales Manizales Manisales,Manisalesas,Manizales,Манисалес 5.06889 -75.51738 P PPLA CO 37 357814 2119 America/Bogota 2012-01-19
-3675452 Maní Mani Mani,Maní 4.81722 -72.28861 P PPL CO 32 7031 178 America/Bogota 2012-01-19
-3675504 Manaure Manaure Manare,Manaure 11.77505 -72.44447 P PPL CO 17 9703 3 America/Bogota 2012-01-19
-3675512 Manatí Manati Manati,Manatí 10.44589 -74.95869 P PPL CO 04 14140 12 America/Bogota 2012-01-19
-3675595 Malambo Malambo Malambo 10.85953 -74.77386 P PPL CO 04 101534 17 America/Bogota 2012-01-19
-3675605 Málaga Malaga 6.69903 -72.73233 P PPL CO 26 18739 2210 America/Bogota 2011-10-11
-3675637 Majagual Majagual Majagual,Majagul 8.53886 -74.62038 P PPL CO 27 11139 18 America/Bogota 2012-01-19
-3675657 Maicao Maicao Maicao 11.38321 -72.24321 P PPL CO 17 130348 49 America/Bogota 2012-01-19
-3675668 Mahates Mahates Mahales,Mahates 10.23293 -75.18985 P PPL CO 35 9224 10 America/Bogota 2012-01-19
-3675692 Magangué Magangue Magangue,Magangué,Manague,Mangue 9.24202 -74.75467 P PPL CO 35 100313 20 America/Bogota 2012-01-19
-3675707 Madrid Madrid Madrid,Serrezuela,Мадрид 4.73244 -74.26419 P PPL CO 33 50437 2547 America/Bogota 2012-01-19
-3675757 Machetá Macheta Macheta,Machetá 5.08154 -73.60761 P PPL CO 33 1742 2117 America/Bogota 2012-01-19
-3675768 Maceo Maceo Maceo 6.55196 -74.78742 P PPL CO 02 3109 951 America/Bogota 2012-01-19
-3675826 Luruaco Luruaco Luruaco 10.60921 -75.14309 P PPL CO 04 13236 33 America/Bogota 2012-01-19
-3675857 Lourdes Lourdes Concepcion,Concepción,Lourdes 7.94411 -72.83253 P PPL CO 21 1500 1426 America/Bogota 2012-01-19
-3675975 Los Patios Los Patios Los Patios 7.83793 -72.5037 P PPL CO 21 58661 395 America/Bogota 2012-01-19
-3675987 Los Palmitos Los Palmitos Corregimiento Los Palmitos,Los Palmitos,Palmitos 9.37899 -75.26769 P PPL CO 27 14385 181 America/Bogota 2012-01-19
-3676205 Los Córdobas Los Cordobas Cordoba,Córdoba,Los Cordobas,Los Córdobas,Ricaurte 8.89403 -76.35455 P PPL CO 12 2007 10 America/Bogota 2012-01-19
-3676397 Lorica Lorica 9.23648 -75.8135 P PPL CO 12 40605 10 America/Bogota 2011-10-11
-3676417 López Lopez 2.43333 -76.8 P PPL CO 09 3699 1791 America/Bogota 2006-01-17
-3676477 Lloró Lloro Lloro,Lloró 5.49605 -76.54945 P PPL CO 11 2651 90 America/Bogota 2012-01-19
-3676540 Linares Linares Linares 1.35783 -77.52725 P PPL CO 20 3512 1668 America/Bogota 2012-01-19
-3676591 Liborina Liborina Liborina 6.6779 -75.81218 P PPL CO 02 2373 699 America/Bogota 2012-01-19
-3676604 Líbano Libano Libano,Líbano 4.9218 -75.06232 P PPL CO 28 28211 1575 America/Bogota 2012-01-19
-3676623 Leticia Leticia Leticia,Leticija,Letisija,Letícia,Léticia,Летиция -4.21528 -69.94056 P PPLA CO 01 29666 82 America/Bogota 2012-01-19
-3676626 Lérida Lerida Lerida,Lérida 4.86242 -74.90977 P PPL CO 28 20069 345 America/Bogota 2012-01-19
-3676644 Lenguazaque Lenguazaque Lenguazaque 5.30711 -73.71152 P PPL CO 33 2555 2577 America/Bogota 2012-01-19
-3676661 Leiva Leiva Leiva 1.93389 -77.30253 P PPL CO 20 3668 1464 America/Bogota 2012-01-19
-3676674 Lebrija Lebrija Lebrija 7.11317 -73.2178 P PPL CO 26 8949 1016 America/Bogota 2012-02-02
-3676720 La Virginia La Virginia La Virginia 4.89972 -75.8825 P PPL CO 24 33835 901 America/Bogota 2012-01-19
-3676791 La Victoria La Victoria La Victoria,Victoria 4.52271 -76.03738 P PPL CO 29 11064 916 America/Bogota 2012-01-19
-3676864 La Vega La Vega La Vega,Vega 4.99779 -74.33979 P PPL CO 33 5706 1174 America/Bogota 2012-01-19
-3676868 La Vega La Vega La Vega 2.00628 -76.78028 P PPL CO 09 3469 2237 America/Bogota 2012-01-19
-3676884 La Uvita La Uvita La Uvita,Ubita 6.31684 -72.56032 P PPL CO 36 1708 2371 America/Bogota 2012-01-19
-3676912 La Unión La Union La Union,La Unión 8.86056 -75.28056 P PPL CO 27 4427 68 America/Bogota 2012-01-19
-3676923 La Unión La Union La Union,La Unión 5.97431 -75.36195 P PPL CO 02 8361 2475 America/Bogota 2012-01-19
-3676928 La Unión La Union La Unicion,La Union,La Unión,Lemos 4.53282 -76.10318 P PPL CO 29 23459 967 America/Bogota 2012-01-19
-3676934 La Unión La Union 1.6045 -77.13152 P PPL CO 20 15061 1721 America/Bogota 2011-10-11
-3677010 La Tebaida La Tebaida La Tebaida,Tebaida 4.45265 -75.78746 P PPL CO 23 27098 1191 America/Bogota 2012-01-19
-3677457 La Sierra La Sierra 2.17835 -76.76265 P PPL CO 09 2129 1776 America/Bogota 2006-01-17
-3678000 La Primavera La Primavera La Primavera 5.49056 -70.40917 P PPL CO 31 3920 118 America/Bogota 2012-01-19
-3678083 La Playa La Playa La Playa 8.21639 -73.24139 P PPL CO 21 1215 1472 America/Bogota 2012-01-19
-3678097 La Plata La Plata La Plata 2.39341 -75.89232 P PPL CO 16 19275 1020 America/Bogota 2012-01-19
-3678118 La Pintada La Pintada La Pintada 5.74867 -75.60626 P PPL CO 02 5342 602 America/Bogota 2012-01-19
-3678167 La Peña La Pena 5.19847 -74.39368 P PPL CO 33 1667 1254 America/Bogota 2011-10-11
-3678186 La Paz La Paz 10.38439 -73.17332 P PPL CO 10 13249 152 America/Bogota 2006-01-27
-3678190 La Paz La Paz 6.17848 -73.58948 P PPL CO 26 1135 1905 America/Bogota 2011-10-11
-3678328 Landázuri Landazuri Landazuri,Landázuri 6.21826 -73.81121 P PPL CO 26 3483 945 America/Bogota 2012-01-19
-3678363 La Montañita La Montanita La Montanita,La Montañita,Montanita,Montañita 1.4766 -75.4398 P PPL CO 08 3305 240 America/Bogota 2012-01-19
-3678405 La Mesa La Mesa 5.26667 -73.91667 P PPL CO 33 26699 2884 America/Bogota 2010-03-12
-3678415 La Merced La Merced 5.40194 -75.88472 P PPL CO 24 3851 1751 America/Bogota 2006-01-17
-3678575 La Llanada La Llanada La Llanada,Llanada 1.48997 -77.58347 P PPL CO 20 2747 2836 America/Bogota 2012-01-19
-3678674 La Jagua de Ibirico La Jagua de Ibirico Jagua,La Jagua,La Jagua de Ibirico 9.56228 -73.33405 P PPL CO 10 18555 140 America/Bogota 2012-01-19
-3678907 La Gloria La Gloria 8.61868 -73.80265 P PPL CO 10 6810 36 America/Bogota 2011-10-11
-3679007 La Florida La Florida Florida,La Florida 1.29851 -77.40614 P PPL CO 20 2882 2185 America/Bogota 2012-01-19
-3679065 La Estrella La Estrella Estrella,La Estrella,La-Ehstrel'ja,Ла-Эстрелья 6.15769 -75.64317 P PPL CO 02 49386 1765 America/Bogota 2012-01-19
-3679130 La Esperanza La Esperanza 8.21043 -72.46399 P PPL CO 21 2718 81 America/Bogota 2011-10-11
-3679277 La Dorada La Dorada Dorada,La Dorada,La-Dorada,Ла-Дорада 5.44783 -74.66311 P PPL CO 37 81950 176 America/Bogota 2012-01-19
-3679379 La Cruz La Cruz La Cruz 1.60301 -76.96901 P PPL CO 09 8751 2354 America/Bogota 2012-01-19
-3679542 La Celia La Celia La Celia 5.04333 -76.01667 P PPL CO 24 4940 1643 America/Bogota 2012-01-19
-3679554 La Ceja La Ceja La Ceja 6.03082 -75.4315 P PPL CO 02 36584 2146 America/Bogota 2012-01-19
-3679622 La Capilla La Capilla 5.70493 -73.47527 P PPL CO 36 1375 2576 America/Bogota 2011-10-11
-3679660 La Calera La Calera La Calera 4.72069 -73.96926 P PPL CO 33 10175 2690 America/Bogota 2012-01-19
-3679776 La Belleza La Belleza La Belleza 5.86371 -73.96167 P PPL CO 26 1649 2240 America/Bogota 2012-01-19
-3679780 Labateca Labateca 7.29847 -72.49443 P PPL CO 21 1639 1553 America/Bogota 2011-10-11
-3680090 Juradó Jurado 7.10534 -77.76413 P PPL CO 11 2351 6 America/Bogota 2011-10-11
-3680113 Junín Junin Chipasaque,Junin,Junín 4.79027 -73.66011 P PPL CO 33 1499 2376 America/Bogota 2012-01-19
-3680176 Juan de Acosta Juan de Acosta Juan de Acosta 10.82813 -75.03341 P PPL CO 04 8655 51 America/Bogota 2012-01-19
-3680317 Jericó Jerico Jerico,Jericó 5.79211 -75.78601 P PPL CO 02 7750 1987 America/Bogota 2012-01-19
-3680335 Jenesano Jenesano Jenesano,Jenezano,Piranguata 5.38541 -73.36364 P PPL CO 36 1200 2072 America/Bogota 2012-01-19
-3680366 Jardín Jardin Jardin,Jardín 5.59902 -75.81976 P PPL CO 02 7747 1768 America/Bogota 2012-01-19
-3680387 Jamundí Jamundi El Rosario,Jamundi,Jamundí,Khamundi,Хамунди 3.26074 -76.53499 P PPL CO 29 44833 972 America/Bogota 2012-01-19
-3680393 Jambaló Jambalo 2.79225 -76.32258 P PPL CO 09 1972 2132 America/Bogota 2011-10-11
-3680434 Ituango Ituango Ituango 7.17117 -75.76404 P PPL CO 02 10769 1623 America/Bogota 2012-01-19
-3680450 Itagüí Itagui Itagui,Itagüí 6.17194 -75.61139 P PPL CO 02 281853 1574 America/Bogota 2012-01-19
-3680453 Istmina Istmina Istmia,Istmina,Istmino,Itsmina 5.16054 -76.68397 P PPL CO 11 13788 55 America/Bogota 2012-01-19
-3680491 Iscuandé Iscuande Iscande,Iscandé,Iscuande,Iscuandé,Santa Barbara,Santá Barbara 2.45007 -77.97936 P PPL CO 20 4875 5 America/Bogota 2012-01-19
-3680531 Íquira Iquira Iquira,Íquira 2.64867 -75.63457 P PPL CO 16 3942 1106 America/Bogota 2012-01-19
-3680539 Ipiales Ipiales Ipiales 0.83018 -77.64959 P PPL CO 20 77729 2912 America/Bogota 2012-01-19
-3680554 Inzá Inza Inza,Inzá 2.5513 -76.06546 P PPL CO 09 2972 1806 America/Bogota 2012-01-19
-3680601 Imués Imues Imues,Imués 1.06072 -77.50044 P PPL CO 20 1736 2543 America/Bogota 2012-01-19
-3680616 Iles Iles Iles 0.97491 -77.52741 P PPL CO 20 1879 2913 America/Bogota 2012-01-19
-3680641 Icononzo Icononzo Icononzo 4.17698 -74.53254 P PPL CO 28 3540 1308 America/Bogota 2012-01-19
-3680656 Ibagué Ibague Ibague,Ibagué 4.43889 -75.23222 P PPLA CO 28 421685 1229 America/Bogota 2012-01-19
-3680840 Honda Honda Honda 5.20856 -74.73584 P PPL CO 28 28158 200 America/Bogota 2012-01-19
-3680854 Hobo Hobo El Hobo,Hobo 2.58333 -75.45 P PPL CO 16 4444 603 America/Bogota 2012-01-19
-3680857 Hispania Hispania Hispania 5.79925 -75.90718 P PPL CO 02 2468 978 America/Bogota 2012-01-19
-3680880 Herveo Herveo Herbeo,Herveo 5.08333 -75.16667 P PPL CO 28 3490 2114 America/Bogota 2012-01-19
-3680886 Herrán Herran Herran,Herrán 7.50611 -72.48332 P PPL CO 21 1648 1960 America/Bogota 2012-01-19
-3680902 Heliconia Heliconia Heliconia 6.20689 -75.73367 P PPL CO 02 2403 1407 America/Bogota 2012-01-19
-3681008 Municipio Hato Corozal Municipio Hato Corozal Corozal,Hato de Corozal,Hato del Corozal,Municipio Hato Corozal 6.15676 -71.76372 P PPL CO 32 2640 256 America/Bogota 2012-01-19
-3681029 Hatillo de Loba Hatillo de Loba Corregimiento Hatillo de Loba,El Hatillo de Loba,Hatillo,Hatillo de Loba 8.95635 -74.0782 P PPL CO 35 3639 28 America/Bogota 2012-01-19
-3681168 Hacarí Hacari Hacari,Hacarí,La Palma 8.32333 -73.14889 P PPL CO 21 1502 1247 America/Bogota 2012-01-19
-3681222 Güicán Guican Guican,Güicán 6.46184 -72.41129 P PPL CO 36 2101 2890 America/Bogota 2012-01-19
-3681234 Güepsa Guepsa Guepsa,Güepsa 6.02505 -73.57313 P PPL CO 26 2471 1526 America/Bogota 2012-01-19
-3681255 Guayatá Guayata Guayata,Guayatá 4.96417 -73.4875 P PPL CO 36 2857 1654 America/Bogota 2012-01-19
-3681303 Guayabetal Guayabetal Guayabetal 4.21472 -73.81719 P PPL CO 33 2017 1087 America/Bogota 2012-01-19
-3681306 Guayabal de Síquima Guayabal de Siquima Guayabal,Guayabal Siquima,Guayabal de Siquima,Guayabal de Síquima,Siquima,Síquima 4.87739 -74.46744 P PPL CO 33 1051 1604 America/Bogota 2012-01-19
-3681353 Guática Guatica Guatica,Guática 5.31569 -75.79826 P PPL CO 24 4368 1916 America/Bogota 2012-01-19
-3681356 Guateque Guateque Guateque 5.00619 -73.47274 P PPL CO 36 7069 1801 America/Bogota 2012-01-19
-3681360 Guatavita Guatavita Guatavita 4.93658 -73.83314 P PPL CO 33 1920 2700 America/Bogota 2012-01-19
-3681364 Guataquí Guataqui Guataqui,Guataquí 4.51573 -74.78935 P PPL CO 33 1139 255 America/Bogota 2012-01-19
-3681368 Guatapé Guatape Guatape,Guatapé 6.23274 -75.15864 P PPL CO 02 5389 1891 America/Bogota 2012-01-19
-3681404 Guasca Guasca Guasca 4.86601 -73.87748 P PPL CO 33 3540 2681 America/Bogota 2012-01-19
-3681429 Guarne Guarne Guarne 6.28046 -75.44354 P PPL CO 02 14270 2141 America/Bogota 2012-01-19
-3681505 Guapi Guapi Guapi 2.57082 -77.88542 P PPL CO 09 13853 3 America/Bogota 2012-01-19
-3681563 Guamo Guamo Guamo 4.03078 -74.9701 P PPL CO 28 14881 323 America/Bogota 2012-02-02
-3681596 Guamal Guamal Guamal 9.14334 -74.22384 P PPL CO 38 9016 28 America/Bogota 2012-01-19
-3681605 Guamal Guamal 3.88043 -73.76566 P PPL CO 19 5026 522 America/Bogota 2006-01-17
-3681619 Gualmatán Gualmatan Gualmatan,Gualmatán 0.91888 -77.56651 P PPL CO 20 2510 2917 America/Bogota 2012-01-19
-3681644 Guaitarilla Guaitarilla Guaitarilla,Guaitarrilla 1.13855 -77.55301 P PPL CO 20 6280 2635 America/Bogota 2012-01-19
-3681702 Guaduas Guaduas Guaduas 5.06692 -74.59499 P PPL CO 33 14392 993 America/Bogota 2012-01-19
-3681731 Guadalupe Guadalupe Guadalupe,Planta 6.81449 -75.24063 P PPL CO 02 1734 1851 America/Bogota 2012-01-19
-3681732 Guadalupe Guadalupe Guadalupe 6.2464 -73.41833 P PPL CO 26 2181 1444 America/Bogota 2012-01-19
-3681733 Guadalupe Guadalupe Guadalupe 2.0248 -75.75589 P PPL CO 16 4760 889 America/Bogota 2012-01-19
-3681756 Guachucal Guachucal Guachegal,Guachucal 0.96093 -77.7316 P PPL CO 20 4014 3091 America/Bogota 2012-01-19
-3681767 Guachetá Guacheta Guacheta,Guachetá 5.38425 -73.68617 P PPL CO 33 4245 2684 America/Bogota 2012-01-19
-3681797 Guacarí Guacari Concordia,Guacari,Guacarí 3.76383 -76.33292 P PPL CO 29 19637 976 America/Bogota 2012-01-19
-3681832 Guaca Guaca Guaca 6.87621 -72.85594 P PPL CO 26 1637 2305 America/Bogota 2012-01-19
-3681952 Granada Granada Granada,Grenada,Гренада 6.14353 -75.18532 P PPL CO 02 5661 2081 America/Bogota 2012-01-19
-3681953 Granada Granada 5.06667 -74.56667 P PPL CO 33 1100 1584 America/Bogota 2006-01-17
-3681957 Granada Granada Boca de Monte,Granada,Grenada,Гренада 3.53861 -73.70056 P PPL CO 19 32365 332 America/Bogota 2012-01-19
-3681966 Gramalote Gramalote Gramalote 7.88752 -72.79749 P PPL CO 21 3577 1038 America/Bogota 2012-02-02
-3681990 González Gonzalez Gonzales,Gonzalez,Gonzáles,González 8.38944 -73.37989 P PPL CO 10 5634 1309 America/Bogota 2012-01-19
-3681997 Gómez Plata Gomez Plata Gomez Plata,Gómez Plata 6.68178 -75.21906 P PPL CO 02 4097 1815 America/Bogota 2012-01-19
-3682018 Girón Giron Giron,Girón,Khiron,Хирон 7.0682 -73.16981 P PPL CO 26 108466 706 America/Bogota 2012-01-19
-3682028 Girardot Girardot Girardot,Zhirardo,Жирардо 4.29866 -74.80468 P PPL CO 33 130289 295 America/Bogota 2012-01-19
-3682030 Giraldo Giraldo Giraldo 6.68306 -75.98917 P PPL CO 02 1464 2550 America/Bogota 2012-01-19
-3682039 Ginebra Ginebra Ginebra 3.72461 -76.26675 P PPL CO 29 6088 1036 America/Bogota 2012-01-19
-3682047 Gigante Gigante Gigante 2.38677 -75.54531 P PPL CO 16 9829 821 America/Bogota 2012-01-19
-3682068 Génova Genova 4.31667 -75.76667 P PPL CO 23 7140 1228 America/Bogota 2006-01-17
-3682070 Génova Genova Capital Genova,Capital Génova,Colon,Colón,Genova,Génova 1.64322 -77.02433 P PPL CO 09 1348 1901 America/Bogota 2012-01-19
-3682108 Garzón Garzon Garzon,Garzón 2.19593 -75.62777 P PPL CO 16 29451 834 America/Bogota 2012-01-19
-3682160 Garagoa Garagoa Garagoa 5.08236 -73.36334 P PPL CO 36 11102 1685 America/Bogota 2012-01-19
-3682172 Gámeza Gameza Gameza,Gámeza 5.80263 -72.80586 P PPL CO 36 1690 2742 America/Bogota 2012-01-19
-3682182 Gamarra Gamarra 8.32279 -73.74268 P PPL CO 10 7327 42 America/Bogota 2011-09-11
-3682232 Galeras Galeras Corregimiento Nueva Granada,Galeras,Nueva Granada 9.16095 -75.04811 P PPL CO 27 9459 92 America/Bogota 2012-01-19
-3682238 Galapa Galapa Galapa 10.89686 -74.886 P PPL CO 04 19732 92 America/Bogota 2012-01-19
-3682243 Galán Galan Galan,Galán 6.63781 -73.28878 P PPL CO 26 1122 938 America/Bogota 2012-01-19
-3682262 Gachancipá Gachancipa Gachacipa,Gachancipa,Gachancipá 4.99111 -73.87154 P PPL CO 33 3119 2565 America/Bogota 2012-01-19
-3682266 Gachalá Gachala Gachala,Gachalá 4.69244 -73.52042 P PPL CO 33 1661 1729 America/Bogota 2012-01-19
-3682274 Fusagasuga Fusagasuga Fusagasuga 4.33646 -74.36378 P PPL CO 33 88820 1717 America/Bogota 2012-01-19
-3682281 Funza Funza Funza 4.71638 -74.21195 P PPL CO 33 54421 2548 America/Bogota 2012-01-19
-3682283 Funes Funes Funes 1.00266 -77.45067 P PPL CO 20 2508 2278 America/Bogota 2012-01-19
-3682292 Fundación Fundacion Fundacion,Fundación 10.52066 -74.18504 P PPL CO 38 59175 49 America/Bogota 2012-01-19
-3682299 Fuente de Oro Fuente de Oro Fuente de Oro,Municipio Fuente de Oro,San Antonio,San Antonio Ariari 3.45944 -73.61278 P PPL CO 19 3609 293 America/Bogota 2012-01-19
-3682313 Frontino Frontino Frontino 6.78005 -76.1288 P PPL CO 02 8603 1350 America/Bogota 2012-01-19
-3682330 Fresno Fresno Fresno 5.15264 -75.03624 P PPL CO 28 17668 1467 America/Bogota 2012-01-19
-3682358 Fosca Fosca Fosca 4.33916 -73.93852 P PPL CO 33 1451 2112 America/Bogota 2012-01-19
-3682361 Municipio de Fortul Municipio de Fortul Fortoul,Municipio de Fortul 6.79277 -71.7717 P PPL CO 03 4607 238 America/Bogota 2012-01-19
-3682374 Fonseca Fonseca 10.88606 -72.8487 P PPL CO 17 23509 182 America/Bogota 2011-10-11
-3682380 Fómeque Fomeque Fomeque,Fómeque 4.48797 -73.89749 P PPL CO 33 5389 1820 America/Bogota 2012-01-19
-3682385 Floridablanca Floridablanca Florida,Floridablanca 7.06222 -73.08644 P PPL CO 26 252267 928 America/Bogota 2012-02-02
-3682393 Florida Florida Florida,La Florida,Perodias,Perodías,Флорида 3.3223 -76.2348 P PPL CO 29 47173 1043 America/Bogota 2012-01-19
-3682395 Florián Florian Florian,Florián 5.80487 -73.97029 P PPL CO 26 1227 1623 America/Bogota 2012-01-19
-3682400 Floresta Floresta 5.85903 -72.91882 P PPL CO 36 1127 2503 America/Bogota 2011-10-11
-3682425 Florencia Florencia Florencia,Florencio 1.68318 -77.0733 P PPL CO 09 1467 1611 America/Bogota 2012-01-19
-3682426 Florencia Florencia Florencia 1.61438 -75.60623 P PPLA CO 08 130337 270 America/Bogota 2012-01-19
-3682458 Flandes Flandes Flandes 4.29413 -74.81901 P PPL CO 28 20919 288 America/Bogota 2012-01-19
-3682465 Firavitoba Firavitoba Firavitoba,Firavitova 5.66885 -72.99289 P PPL CO 36 2136 2492 America/Bogota 2012-01-19
-3682473 Filandia Filandia Filandia,Finlandia 4.67472 -75.65833 P PPL CO 23 6851 1919 America/Bogota 2012-01-19
-3682481 Filadelfia Filadelfia Filadelfia 5.29606 -75.5612 P PPL CO 37 5064 1584 America/Bogota 2012-01-19
-3682510 Falan Falan Falan,Santa Ana,Santana,Santana de Lajas 5.11564 -74.94894 P PPL CO 28 5234 875 America/Bogota 2012-01-19
-3682516 Facatativá Facatativa Facatativa,Facatativá 4.81367 -74.35453 P PPL CO 33 94611 2589 America/Bogota 2012-01-19
-3682573 Espinal Espinal Ehspinal',El Espinal,Espinal,Эспиналь 4.14924 -74.88429 P PPL CO 28 56213 323 America/Bogota 2012-01-19
-3682631 Envigado Envigado Envigado 6.17064 -75.58531 P PPL CO 02 163007 1569 America/Bogota 2012-01-19
-3682633 Entrerríos Entrerrios Entrerrios,Entrerríos 6.5654 -75.5169 P PPL CO 02 3462 2312 America/Bogota 2012-01-19
-3682682 El Zulia El Zulia El Zulia,Villa Zulia,Zulia 7.93248 -72.60125 P PPL CO 21 13521 207 America/Bogota 2012-01-19
-3682963 El Tambo El Tambo El Tambo,Tambo 2.45199 -76.81029 P PPL CO 09 6355 1719 America/Bogota 2012-01-19
-3682965 El Tambo El Tambo El Tambo,Tambo 1.41814 -77.39678 P PPL CO 20 7279 2304 America/Bogota 2012-01-19
-3682981 El Tablón El Tablon El Tablon,El Tablón,Tablon 1.43188 -77.09664 P PPL CO 20 2373 1515 America/Bogota 2012-01-19
-3683149 El Rosario El Rosario El Rosario,Rosario 1.74173 -77.3352 P PPL CO 20 2607 1611 America/Bogota 2012-01-19
-3683155 El Rosal El Rosal 4.85314 -74.25996 P PPL CO 33 5552 2612 America/Bogota 2011-10-11
-3683180 El Roble El Roble El Roble 9.10194 -75.19508 P PPL CO 27 3324 91 America/Bogota 2012-01-19
-3683233 El Retén El Reten Corregimiento El Reten,El Reten,El Retén,Reten 10.61135 -74.26824 P PPL CO 38 15901 24 America/Bogota 2012-01-19
-3683463 El Piñón El Pinon El Pinon,El Piñón,Pinon,Pinón 10.40283 -74.82415 P PPL CO 38 7481 9 America/Bogota 2012-01-19
-3683497 El Peñón El Penon 8.98916 -73.94857 P PPL CO 38 4204 41 America/Bogota 2006-01-17
-3683508 El Peñol El Penol El Penol,El Peñol,Penol,Peñol 1.45987 -77.44544 P PPL CO 20 2294 1665 America/Bogota 2012-01-19
-3683528 El Paujil El Paujil El Paujil,Pajuil 1.57006 -75.32863 P PPL CO 08 7618 343 America/Bogota 2012-01-19
-3683538 El Paso El Paso Corregimiento El Paso,El Paso 9.66057 -73.74723 P PPL CO 10 6367 41 America/Bogota 2012-01-19
-3683778 El Molino El Molino El Molino,Molino 10.65225 -72.92405 P PPL CO 17 5265 253 America/Bogota 2012-01-19
-3684029 Elías Elias Elias,Elías 2.0117 -75.93968 P PPL CO 16 1117 1292 America/Bogota 2012-01-19
-3684115 El Guamo El Guamo El Guamo,Guamo 10.03155 -74.97612 P PPL CO 35 4732 73 America/Bogota 2012-01-19
-3684189 El Espino El Espino El Espino,Espino 6.48277 -72.49718 P PPL CO 36 1313 2127 America/Bogota 2012-01-19
-3684266 El Dovio El Dovio El Dovio 4.5079 -76.23619 P PPL CO 29 7942 1435 America/Bogota 2012-01-19
-3684276 El Doncello El Doncello El Doncello 1.67817 -75.28466 P PPL CO 08 13082 357 America/Bogota 2012-01-19
-3684452 El Copey El Copey Copei,Corregimiento El Copey,El Copey 10.15031 -73.9614 P PPL CO 10 18136 141 America/Bogota 2012-01-19
-3684510 El Cocuy El Cocuy Cocuy,El Cocuy 6.40784 -72.44464 P PPL CO 36 2706 2708 America/Bogota 2012-01-19
-3684579 El Charco El Charco Charco,El Charco 2.47691 -78.11049 P PPL CO 20 28673 6 America/Bogota 2012-01-19
-3684615 El Cerrito El Cerrito Cerrito,El Cerrito 3.68549 -76.31372 P PPL CO 29 38390 990 America/Bogota 2012-01-19
-3684662 El Castillo El Castillo 3.56363 -73.79488 P PPL CO 19 2581 350 America/Bogota 2011-10-11
-3684666 El Carmen de Bolívar El Carmen de Bolivar Carmen,El Carmen,El Carmen de Bolivar,El Carmen de Bolívar,Karmen-de-Bolivar,Кармен-де-Боливар 9.7174 -75.12023 P PPL CO 35 47957 153 America/Bogota 2012-01-19
-3684683 El Carmen El Carmen Carmen,El Carmen 8.51064 -73.44776 P PPL CO 21 5286 712 America/Bogota 2012-01-19
-3684689 El Carmen El Carmen Carmen,El Carmen 6.69736 -73.51116 P PPL CO 26 1602 775 America/Bogota 2012-01-19
-3684692 El Carmen El Carmen Carmen,El Carmen 5.88778 -75.16417 P PPL CO 11 2258 1254 America/Bogota 2012-01-19
-3684785 El Cairo El Cairo El Cairo 4.75909 -76.22226 P PPL CO 29 3268 1908 America/Bogota 2012-01-19
-3684860 El Bordo El Bordo El Bordo,Patia,Patía 2.11696 -76.98214 P PPL CO 09 12072 990 America/Bogota 2012-01-19
-3684917 El Banco El Banco Banco,Ehl'-Banka,El Banco,Эль-Банка 9.00114 -73.97581 P PPL CO 38 54522 34 America/Bogota 2012-01-19
-3684945 El Bagre El Bagre El Bagre 7.59272 -74.80858 P PPL CO 02 40798 57 America/Bogota 2012-01-19
-3685027 El Águila El Aguila 4.91345 -76.04004 P PPL CO 29 2725 1708 America/Bogota 2011-10-11
-3685058 Ebéjico Ebejico Ebejico,Ebéjico 6.32598 -75.76835 P PPL CO 02 2583 1159 America/Bogota 2012-01-19
-3685069 Durania Durania Durania 7.71307 -72.65759 P PPL CO 21 3470 961 America/Bogota 2012-01-19
-3685084 Duitama Duitama Duitama 5.8245 -73.03408 P PPL CO 36 92040 2522 America/Bogota 2012-01-19
-3685095 Dos Quebradas Dos Quebradas Dos Quebradas 4.83916 -75.66726 P PPL CO 24 179583 1454 America/Bogota 2012-01-19
-3685126 Don Matías Don Matias Don Matias,Don Matías 6.48568 -75.39496 P PPL CO 02 10011 2157 America/Bogota 2012-01-19
-3685200 Distracción Distraccion Distraccion,Distracción 10.89693 -72.8861 P PPL CO 17 4742 207 America/Bogota 2012-01-19
-3685223 Dibulla Dibulla Corregimiento Dibulla,Dibulla 11.27251 -73.30911 P PPL CO 17 4402 4 America/Bogota 2012-01-19
-3685292 Dagua Dagua Dagua,Papagalleros 3.65685 -76.68859 P PPL CO 29 12320 882 America/Bogota 2012-01-19
-3685295 Dabeiba Dabeiba Dabeiba,Dabelba 7.00172 -76.26722 P PPL CO 02 11548 418 America/Bogota 2012-01-19
-3685335 Curumaní Curumani Corregimiento Curumani,Corregimiento Curumaní,Curumani,Curumaní,Kurumani,Курумани 9.19992 -73.54274 P PPL CO 10 22084 59 America/Bogota 2012-01-19
-3685345 Curití Curiti Curiti,Curití,Curuti 6.60519 -73.06809 P PPL CO 26 3417 1490 America/Bogota 2012-01-19
-3685418 Cunday Cunday Cunday,Parroquia Vieja 4.06004 -74.69212 P PPL CO 28 2082 457 America/Bogota 2012-01-19
-3685428 Cumbitara Cumbitara Cumbitara,San Pedro 1.65174 -77.58225 P PPL CO 20 1091 1738 America/Bogota 2012-01-19
-3685432 Cumbal Cumbal 0.90875 -77.79145 P PPL CO 20 7529 3127 America/Bogota 2011-10-11
-3685442 Cumaral Cumaral 4.2708 -73.48669 P PPL CO 19 11263 412 America/Bogota 2006-01-17
-3685529 Cucutilla Cucutilla Cucutilla 7.53941 -72.77238 P PPL CO 21 1950 1281 America/Bogota 2012-01-19
-3685533 Cúcuta Cucuta Cucuta,Cúcuta,Kukuta,San Jose de Cucuta,San Jose de Guacimal,San José de Cùcuta,San José de Guacimal,kukuta,Кукута,ククタ 7.89391 -72.50782 P PPLA CO 21 721398 305 America/Bogota 2012-02-28
-3685540 Cucunubá Cucunuba Cucunuba,Cucunubá 5.24958 -73.7661 P PPL CO 33 1699 2564 America/Bogota 2012-01-19
-3685569 Cucaita Cucaita Cucaita 5.54373 -73.45433 P PPL CO 36 1417 2636 America/Bogota 2012-01-19
-3685571 Cubará Cubara Cubara,Cubará 7.00078 -72.10852 P PPL CO 36 1466 359 America/Bogota 2012-01-19
-3685649 Cruces de Anorí Cruces de Anori Anori,Cruces de Anori,Cruces de Anorí 7.18333 -75.06667 P PPL CO 02 4762 853 America/Bogota 2012-01-19
-3685702 Cravo Norte Cravo Norte Corregimiento Cravo Norte,Cravo,Cravo Norte,Gravo 6.30174 -70.20415 P PPL CO 03 4787 103 America/Bogota 2012-01-19
-3685708 Coyaima Coyaima 3.79936 -75.19467 P PPL CO 28 3893 359 America/Bogota 2006-01-17
-3685724 Cotorra Cotorra Corregimiento Cotorra,Cotorra 9.03886 -75.78969 P PPL CO 12 4880 9 America/Bogota 2012-01-19
-3685733 Cota Cota Cota 4.80938 -74.098 P PPL CO 33 7615 2557 America/Bogota 2012-01-19
-3685794 Corrales Corrales Corrales 5.82968 -72.84332 P PPL CO 36 1561 2390 America/Bogota 2012-01-19
-3685823 Corozal Corozal Corozal 9.31505 -75.29283 P PPL CO 27 39800 158 America/Bogota 2012-01-19
-3685840 Coromoro Coromoro Coromoro 6.29461 -73.04022 P PPL CO 26 1010 1530 America/Bogota 2012-01-19
-3685871 Corinto Corinto Corinto 3.17407 -76.25993 P PPL CO 09 16579 1065 America/Bogota 2012-01-19
-3685893 Córdoba Cordoba Cordoba,Cordova,Córdoba,Teton,Tetón 9.58612 -74.82705 P PPL CO 35 6597 18 America/Bogota 2012-01-19
-3685900 Córdoba Cordoba Cordoba,Cordova,Córdoba,Córdova 4.39318 -75.68935 P PPL CO 23 4063 1478 America/Bogota 2012-01-19
-3685903 Córdoba Cordoba Cordoba,Córdoba,Males 0.85905 -77.5195 P PPL CO 20 3784 2850 America/Bogota 2012-01-19
-3685949 Copacabana Copacabana Copacabana,Kopakabana,Копакабана 6.34633 -75.50888 P PPL CO 02 49169 1411 America/Bogota 2012-01-19
-3685961 Contratación Contratacion Contratacion,Contratación 6.29005 -73.47354 P PPL CO 26 3505 1645 America/Bogota 2012-01-19
-3685974 Contadero Contadero 0.907 -77.54729 P PPL CO 20 1603 2572 America/Bogota 2011-10-11
-3685984 Consacá Consaca Consaca,Consacá 1.21544 -77.46955 P PPL CO 20 2239 1788 America/Bogota 2012-01-19
-3686002 Condoto Condoto Condoto 5.09351 -76.64973 P PPL CO 11 9897 62 America/Bogota 2012-01-19
-3686011 Concordia Concordia Concordia,Hacienda Concordia 9.83545 -74.45548 P PPL CO 38 6624 138 America/Bogota 2012-01-19
-3686013 Concordia Concordia Concordia 6.04639 -75.90706 P PPL CO 02 9324 2000 America/Bogota 2012-01-19
-3686027 Concepción Concepcion Concepcion,Concepción 6.7662 -72.694 P PPL CO 26 2520 1990 America/Bogota 2012-01-19
-3686028 Concepción Concepcion Concepcion,Concepción 6.39408 -75.2583 P PPL CO 02 1513 1832 America/Bogota 2012-01-19
-3686051 Combita Combita 5.63333 -73.31667 P PPL CO 36 1034 2745 America/Bogota 2006-01-17
-3686065 Colosó Coloso Coloso,Colosó,Ricaurte 9.4915 -75.36145 P PPL CO 27 3749 139 America/Bogota 2012-01-19
-3686107 Colón Colon Colon,Colón 1.19117 -76.9685 P PPL CO 22 3269 2081 America/Bogota 2012-01-19
-3686120 Colombia Colombia 3.37606 -74.8015 P PPL CO 16 2388 781 America/Bogota 2011-10-11
-3686134 Cogua Cogua Cogua 5.06052 -73.97925 P PPL CO 33 4755 2631 America/Bogota 2012-01-19
-3686158 Cocorná Cocorna 6.0573 -75.18524 P PPL CO 02 5257 1304 America/Bogota 2011-10-11
-3686196 Clemencia Clemencia Clemencia 10.56646 -75.32499 P PPL CO 35 8775 67 America/Bogota 2012-01-19
-3686227 Cisneros Cisneros 6.53833 -75.08861 P PPL CO 02 8204 1042 America/Bogota 2006-01-17
-3686233 Circasia Circasia Circacia,Circasia 4.61889 -75.63583 P PPL CO 23 20113 1772 America/Bogota 2012-01-19
-3686255 Cimitarra Cimitarra Cimitarra 6.31419 -73.94968 P PPL CO 26 11267 156 America/Bogota 2012-01-19
-3686262 Ciénega Cienega Cienaga,Cienega,Ciénaga,Ciénega 5.40867 -73.29572 P PPL CO 36 1172 2463 America/Bogota 2012-01-19
-3686272 Ciénaga de Oro Cienaga de Oro Cienaga de Oro,Ciénaga de Oro 8.87443 -75.62028 P PPL CO 12 17623 16 America/Bogota 2012-01-19
-3686279 Ciénaga Cienaga Cienaga,Ciénaga,San Juan de Cienaga,San Juan de Ciénaga,Sienaga,Сиенага 11.00703 -74.24765 P PPL CO 38 88311 5 America/Bogota 2012-01-19
-3686288 Cicuco Cicuco Caserio Sicuco,Caserío Sicuco,Cicuco 9.26306 -74.65694 P PPL CO 35 7662 13 America/Bogota 2012-01-19
-3686422 Chocontá Choconta Choconta,Chocontá 5.14468 -73.68578 P PPL CO 33 7592 2656 America/Bogota 2012-01-19
-3686441 Choachí Choachi Choachi,Choachí 4.52897 -73.92273 P PPL CO 33 4281 1921 America/Bogota 2012-01-19
-3686445 Chivolo Chivolo Chibolo,Chivolo,Chivoto,Corregimiento Chivolo 10.02502 -74.62279 P PPL CO 38 11457 135 America/Bogota 2012-01-19
-3686460 Chitagá Chitaga Chitaga,Chitagá 7.13781 -72.66456 P PPL CO 21 3871 2352 America/Bogota 2012-01-19
-3686464 Chita Chita Chita 6.18715 -72.4726 P PPL CO 36 2914 2956 America/Bogota 2012-01-19
-3686471 Chiscas Chiscas Chiscas 6.55236 -72.49976 P PPL CO 36 1356 2367 America/Bogota 2012-01-19
-3686479 Chiriguaná Chiriguana Chiriguana,Chiriguaná 9.36238 -73.60314 P PPL CO 10 15181 33 America/Bogota 2012-01-19
-3686513 Chiquinquirá Chiquinquira Chiquinquira,Chiquinquirá 5.61637 -73.81748 P PPL CO 36 45294 2562 America/Bogota 2012-01-19
-3686532 Chipaque Chipaque Chipaque 4.4425 -74.04417 P PPL CO 33 2707 2438 America/Bogota 2012-01-19
-3686540 Chinú Chinu Chinu,Chinú 9.10569 -75.39812 P PPL CO 12 19596 121 America/Bogota 2012-02-02
-3686561 Chinchiná Chinchina Chinchina,Chinchiny,Chinchiná,Чинчины 4.9825 -75.60361 P PPL CO 37 68512 1382 America/Bogota 2012-01-19
-3686569 Chinavita Chinavita Chinavita 5.16723 -73.36823 P PPL CO 36 1113 1770 America/Bogota 2012-01-19
-3686574 Chinácota Chinacota Chinacota,Chinácota 7.60731 -72.60108 P PPL CO 21 9667 1232 America/Bogota 2012-01-19
-3686585 Chimichagua Chimichagua Chimichagua,Chimicragua 9.25778 -73.81228 P PPL CO 10 16746 35 America/Bogota 2012-01-19
-3686605 Chimá Chima Chima,Chimá 9.14893 -75.62841 P PPL CO 12 2785 8 America/Bogota 2012-01-19
-3686636 Chigorodó Chigorodo Chigorodo,Chigorodó 7.66638 -76.68106 P PPL CO 02 48443 35 America/Bogota 2012-01-19
-3686675 Chía Chia Chia,Chía 4.85876 -74.05866 P PPL CO 33 64569 2557 America/Bogota 2012-01-19
-3686793 Chaparral Chaparral 3.72315 -75.48316 P PPL CO 28 19982 856 America/Bogota 2006-01-17
-3686835 Chalán Chalan Chaflan,Chalan,Chalán 9.54765 -75.31128 P PPL CO 27 2897 289 America/Bogota 2012-01-19
-3686851 Chaguaní Chaguani Chaguani,Chaguaní 4.94829 -74.59392 P PPL CO 33 1108 1030 America/Bogota 2012-01-19
-3686867 Chachagüí Chachagui 1.35943 -77.28367 P PPL CO 20 4899 1982 America/Bogota 2008-05-21
-3686883 Cértegui Certegui Certegui,Certigui,Cértegui 5.37073 -76.6044 P PPL CO 11 2854 53 America/Bogota 2012-01-19
-3686894 Cerro de San Antonio Cerro de San Antonio Cerro San Antonio,Cerro de San Antonio,El Cerro 10.32585 -74.86933 P PPL CO 38 7057 11 America/Bogota 2012-01-19
-3686907 Cerrito Cerrito Cerrito,Villa del Rosario 6.84315 -72.69404 P PPL CO 26 2435 2512 America/Bogota 2012-01-19
-3686918 Cerinza Cerinza 5.95568 -72.94783 P PPL CO 36 1499 2719 America/Bogota 2011-10-11
-3686922 Cereté Cerete Cerete,Cereté 8.88479 -75.79052 P PPL CO 12 55513 14 America/Bogota 2012-01-19
-3687025 Caucasia Caucasia Canafistola,Caucasia,Cañafístola,Kavkaz,Кавказ 7.98654 -75.19349 P PPL CO 02 58034 50 America/Bogota 2012-01-19
-3687084 Castilla La Nueva Castilla La Nueva Castilla,Castilla La Nueva,Shell 3.82845 -73.67987 P PPL CO 19 1543 420 America/Bogota 2012-01-19
-3687213 Casabianca Casabianca Casabianca,Casablanca 5.07959 -75.12059 P PPL CO 28 1593 2036 America/Bogota 2012-01-19
-3687230 Cartago Cartago Cartago 4.74639 -75.91167 P PPL CO 29 134827 915 America/Bogota 2012-01-19
-3687231 Cartago Cartago Cartago,Kartago,San Pedro de Cartago,Картаго 1.56305 -77.1176 P PPL CO 09 1524 1953 America/Bogota 2012-01-19
-3687238 Cartagena Cartagena Cartagena,Cartagena das Indias,Cartagena das Índias,Cartagena de Indias,Cartaxena de Indias - Cartagena de Indias,Carthagene,Carthagène,Kartachena,Kartageno,Kartakhena,ka ta he na,karutahena,Картахена,カルタヘナ,卡塔赫纳 10.39972 -75.51444 P PPL CO 35 952024 34 America/Bogota 2011-06-30
-3687310 Carolina Carolina Carolina 6.72439 -75.28168 P PPL CO 02 3160 1797 America/Bogota 2012-01-19
-3687318 Carmen de Viboral Carmen de Viboral Carmen Viboral,Carmen de Viboral 6.08236 -75.33509 P PPL CO 02 21152 2153 America/Bogota 2012-01-19
-3687321 Carmen de Carupa Carmen de Carupa Carmen de Carupa,Carupa 5.34862 -73.90168 P PPL CO 33 1928 2965 America/Bogota 2012-01-19
-3687324 Carmen de Apicalá Carmen de Apicala Apicala,Carmen,Carmen Apicala,Carmen Apicalá,Carmen de Apicala,Carmen de Apicalá 4.14725 -74.72014 P PPL CO 28 5640 315 America/Bogota 2012-01-19
-3687335 Carlosama Carlosama Carlosama,Cuaspud 0.86292 -77.72734 P PPL CO 20 2010 3027 America/Bogota 2012-01-19
-3687426 Caramanta Caramanta Caramanta 5.54782 -75.64368 P PPL CO 02 3044 2094 America/Bogota 2012-01-19
-3687451 Caracolí Caracoli 6.41194 -74.76056 P PPLA2 CO 02 3120 643 America/Bogota 2011-09-10
-3687476 Cáqueza Caqueza Caqueza,Cáqueza 4.40569 -73.94683 P PPL CO 33 7958 1696 America/Bogota 2012-01-19
-3687490 Capitanejo Capitanejo Capitanejo 6.52881 -72.69595 P PPL CO 26 3791 1102 America/Bogota 2012-01-19
-3687505 Caparrapí Caparrapi Caparappi,Caparappí,Caparrapi,Caparrapí 5.34644 -74.49147 P PPL CO 33 4477 1265 America/Bogota 2012-01-19
-3687541 Cantagallo Cantagallo Cantagallo,Caserio Cantagallo,Caserío Cantagallo 7.37599 -73.91963 P PPL CO 35 4672 65 America/Bogota 2012-01-19
-3687634 Candelaria Candelaria Candelaria 10.45912 -74.8797 P PPL CO 04 11427 13 America/Bogota 2012-01-19
-3687644 Candelaria Candelaria Candelaria 3.40671 -76.34819 P PPL CO 29 23989 977 America/Bogota 2012-01-19
-3687677 Cañasgordas Canasgordas Canasgordas,Cañasgordas 6.74989 -76.02539 P PPL CO 02 6026 1291 America/Bogota 2012-01-19
-3687758 Campo de la Cruz Campo de la Cruz Campo de la Cruz,Kampo-de-la-Krus,Puerto Real de la Cruz,Кампо-де-ла-Крус 10.37808 -74.88356 P PPL CO 04 22803 9 America/Bogota 2012-01-19
-3687806 Campoalegre Campoalegre Campoalegre,Kampoalegre,Sevilla,Кампоалегре 2.68489 -75.32311 P PPL CO 16 22568 537 America/Bogota 2012-01-19
-3687835 Campamento Campamento Campamento 6.9792 -75.29724 P PPL CO 02 1870 1707 America/Bogota 2012-01-19
-3687880 Caloto Caloto Caloto 3.03586 -76.40788 P PPL CO 09 6478 1095 America/Bogota 2012-01-19
-3687925 Cali Cali Cali,Cáli,Kali,Kalis,Santiago de Cali,ka li,kari,Кали,カリ,卡利 3.43722 -76.5225 P PPLA CO 29 2392877 967 America/Bogota 2012-01-19
-3687933 Caldono Caldono Caldono 2.7974 -76.48316 P PPL CO 09 3517 1704 America/Bogota 2012-01-19
-3687952 Caldas Caldas Caldas,Kal'das,Кальдас 6.09106 -75.63569 P PPL CO 02 65565 1756 America/Bogota 2012-01-19
-3687964 Calarcá Calarca Calarca,Calarcá 4.52949 -75.64091 P PPL CO 23 62170 1537 America/Bogota 2012-01-19
-3687972 Calamar Calamar 10.2511 -74.91462 P PPL CO 38 9180 11 America/Bogota 2006-01-17
-3687975 Calamar Calamar 1.9596 -72.65315 P PPL CO 14 3745 220 America/Bogota 2012-02-28
-3688006 Cajicá Cajica Cajica,Cajicá 4.91857 -74.02799 P PPL CO 33 24999 2559 America/Bogota 2012-01-19
-3688009 Cajibío Cajibio Cajibio,Cajibío 2.62271 -76.57039 P PPL CO 09 3365 1826 America/Bogota 2012-01-19
-3688021 Cajamarca Cajamarca Cajamarca,San Miguel,San Miguel de Perdomo 4.44172 -75.42678 P PPL CO 28 9309 1813 America/Bogota 2012-01-19
-3688030 Caimito Caimito 8.81229 -75.41066 P PPL CO 27 2925 102 America/Bogota 2011-10-11
-3688071 Caicedonia Caicedonia Caicedonia 4.3324 -75.82665 P PPL CO 29 32417 1165 America/Bogota 2012-01-19
-3688072 Caicedo Caicedo Caicedo 6.40511 -75.98255 P PPL CO 02 1617 1794 America/Bogota 2012-01-19
-3688087 Cácota Cacota Cacota,Cácota 7.26787 -72.64197 P PPL CO 21 1415 2407 America/Bogota 2012-01-19
-3688106 Cáchira Cachira 7.74104 -73.0483 P PPL CO 21 2097 2007 America/Bogota 2011-10-11
-3688112 Cachipay Cachipay 5.26667 -74.56667 P PPL CO 33 4260 389 America/Bogota 2006-01-17
-3688128 Cáceres Caceres Caceres,Cáceres 7.58078 -75.34842 P PPL CO 02 4987 95 America/Bogota 2012-01-19
-3688151 Cabuyaro Cabuyaro Cabuyaro,Pueblo Cabuyaro 4.2817 -72.79399 P PPL CO 19 1140 165 America/Bogota 2012-01-19
-3688170 Cabrera Cabrera 3.98598 -74.48283 P PPL CO 33 1397 1879 America/Bogota 2011-10-11
-3688254 Bugalagrande Bugalagrande Bugalagrande 4.21207 -76.15564 P PPL CO 29 12418 948 America/Bogota 2012-01-19
-3688256 Buga Buga Buga,Буга 3.90089 -76.29783 P PPL CO 29 118004 979 America/Bogota 2012-01-19
-3688266 Buesaco Buesaco Buesaco,Bueysaco 1.39017 -77.15982 P PPL CO 20 4177 1770 America/Bogota 2012-01-19
-3688357 Buenos Aires Buenos Aires 3.01503 -76.64275 P PPL CO 09 2144 1210 America/Bogota 2006-01-17
-3688396 Buenavista Buenavista Buenavista,Corregimiento Buenavista,San Zenon,San Zenón 9.21433 -74.31363 P PPL CO 38 4339 24 America/Bogota 2012-01-19
-3688397 Buenavista Buenavista 9.04963 -76.0028 P PPL CO 12 5062 89 America/Bogota 2011-10-11
-3688433 Buenavista Buenavista Buenavista,El Tolra,El Tolrá 4.3539 -75.71782 P PPL CO 23 2084 1860 America/Bogota 2012-01-19
-3688451 Buenaventura Buenaventura Buenaventura,Буенавентура 3.8801 -77.03116 P PPL CO 29 240387 19 America/Bogota 2012-01-19
-3688452 Buenaventura Buenaventura 3.58333 -77 P PPL CO 29 24842 7 169 America/Bogota 2009-03-24
-3688465 Bucaramanga Bucaramanga Bucaramanga,Bukaramanga,bukaramanga,Букараманга,ブカラマンガ 7.12539 -73.1198 P PPLA CO 26 571820 993 America/Bogota 2012-01-19
-3688499 Briceño Briceno Briceno,Briceño 7.11096 -75.55152 P PPL CO 02 2214 1240 America/Bogota 2012-01-19
-3688656 Bolívar Bolivar Bolivar,Bolívar 5.98943 -73.77021 P PPL CO 26 2230 2135 America/Bogota 2012-01-19
-3688659 Bolívar Bolivar 4.3387 -76.18342 P PPL CO 29 4165 931 America/Bogota 2011-10-11
-3688673 Bojacá Bojaca Bojaca,Bojacá 4.73176 -74.34129 P PPL CO 33 4399 2583 America/Bogota 2012-01-19
-3688689 Bogotá Bogota Bogota,Bogoto,Bogotà,Bogotá,Boqota,Bógóta,Gorad Bagata,Mponkota,Santa-Fe-de-Bogota,Santafe de Bogota,Santafe de Bogotá,Santafé de Bogotá,Wukuta,beageatta,bo ge da,bogota,bokota,bwghwta,bwgwta,bwgwth,bwjwta,pokotta,Μπογκοτά,Богота,Боґота,Горад Багата,Санта-Фе-де-Богота,Բոգոտա,באגאטא,בוגוטה,بوجوتا,بوغوتا,بوگوتا,بگوٹا,बोगोटा,बोगोता,বোগোতা,பொகோட்டா,ಬೊಗೋಟ,ബൊഗോട്ട,โบโกตา,པོ་གོ་ཏ,ბოგოტა,ቦጎታ,ទីក្រុងបូកូតា,ボゴタ,波哥大,보고타 4.60971 -74.08175 P PPLC CO 34 7102602 2582 America/Bogota 2010-05-30
-3688705 Bochalema Bochalema Bochaleina,Bochalema 7.61096 -72.64774 P PPL CO 21 2511 1069 America/Bogota 2012-01-19
-3688775 Boavita Boavita Boavita 6.33031 -72.58505 P PPL CO 36 3749 2167 America/Bogota 2012-01-19
-3688839 Betulia Betulia Betulia 6.90069 -73.28347 P PPL CO 26 1716 1823 America/Bogota 2012-01-19
-3688840 Betulia Betulia Betulia 6.11284 -75.98378 P PPL CO 02 5216 1631 America/Bogota 2012-01-19
-3688855 Betania Betania 5.746 -75.97765 P PPL CO 02 3800 1565 America/Bogota 2006-01-17
-3688875 Arboleda Arboleda Arboleda,Berruacos,Berruecos 1.49766 -77.13587 P PPL CO 20 1736 2134 America/Bogota 2011-12-12
-3688923 Belmira Belmira Belmira 6.60508 -75.66619 P PPL CO 02 1388 2503 America/Bogota 2012-01-19
-3688928 Bello Bello Bella,Bello,Белла 6.33732 -75.55795 P PPL CO 02 392939 1456 America/Bogota 2012-01-19
-3688989 Belén de Umbría Belen de Umbria Belen,Belen de Umbria,Belén,Belén de Umbría,Mocatan,Mocatán 5.20088 -75.86865 P PPL CO 24 15698 1505 America/Bogota 2012-01-19
-3688991 Belén de los Andaquíes Belen de los Andaquies Belen,Belen de los Andaquies,Belen del Andaqui,Belén,Belén de los Andaquíes,Belén del Andaqui 1.41828 -75.87754 P PPL CO 08 3937 330 America/Bogota 2012-01-19
-3689003 Belén Belen Belen,Belen de Cerinza,Belén,Belén de Cerinza 5.98892 -72.91254 P PPL CO 36 5411 2643 America/Bogota 2012-01-19
-3689006 Belén Belen Belen,Belén 1.59787 -77.01399 P PPL CO 20 3131 2455 America/Bogota 2012-01-19
-3689012 Belalcázar Belalcazar Belalcazar,Belalcázar 4.99528 -75.81278 P PPL CO 37 6367 1591 America/Bogota 2012-01-19
-3689026 Becerril Becerril Becerril 9.70413 -73.2793 P PPL CO 10 9002 112 America/Bogota 2012-01-19
-3689147 Barranquilla Barranquilla Barankila,Barankilija,Barankilja,Barrancas de San Nicolas,Barrancas de San Nicolás,Barrankil'ja,Barranquilla,Gorad Barankil'ja,ba lan ji ya,balangkiya,barankiya,barankwyla,brnqyyh,Баранкиля,Баранкиља,Барранкилья,Барранкілья,Горад Баранкілья,ברנקייה,بارانكويلا,バランキヤ,巴兰基亚,바랑키야 10.96389 -74.79639 P PPLA CO 04 1380425 42 America/Bogota 2012-01-19
-3689157 Barranco de Loba Barranco de Loba Barranco,Barranco de Loba 8.94597 -74.10647 P PPL CO 35 5933 37 America/Bogota 2012-01-19
-3689162 Barrancas Barrancas 10.95756 -72.78769 P PPL CO 17 17350 150 America/Bogota 2011-10-11
-3689167 Barranca de Upía Barranca de Upia Barranca,Barranca de Upia,Barranca de Upta,Barranca de Upía,Cumaral 4.56963 -72.96676 P PPL CO 19 1177 236 America/Bogota 2012-01-19
-3689169 Barrancabermeja Barrancabermeja Barrancabermeja,Barrankabermekha,Барранкабермеха 7.06528 -73.85472 P PPL CO 26 191403 83 America/Bogota 2012-01-19
-3689187 Barichara Barichara Barichara 6.63572 -73.22282 P PPL CO 26 4149 1283 America/Bogota 2012-01-19
-3689205 Barbosa Barbosa Barbosa,Barboza,Барбоза 6.43809 -75.33136 P PPL CO 02 16707 1297 America/Bogota 2012-01-19
-3689206 Barbosa Barbosa Barbosa,Barboza,Барбоза 5.93168 -73.61506 P PPL CO 26 20372 1580 America/Bogota 2012-01-19
-3689228 Barbacoas Barbacoas Barbacoas 1.67154 -78.13978 P PPL CO 20 7633 37 America/Bogota 2012-01-19
-3689232 Baraya Baraya Baraya,Santa Maria de Nunchia,Santa María de Nunchía 3.15333 -75.05306 P PPL CO 16 4402 612 America/Bogota 2012-01-19
-3689235 Baranoa Baranoa Baranoa 10.79408 -74.9164 P PPL CO 04 44078 120 America/Bogota 2012-02-02
-3689291 Balboa Balboa 4.95167 -75.95722 P PPL CO 24 2302 1526 America/Bogota 2006-01-17
-3689292 Balboa Balboa Balboa 2.03956 -77.21684 P PPL CO 09 6272 1605 America/Bogota 2012-01-19
-3689325 Mutis Mutis Bahia Solano,Bahía Solano,Ciudad Mutis,Ciudad de Mutis,Mutis,Puerto Mutis 6.22622 -77.40439 P PPL CO 11 3079 6 America/Bogota 2012-01-19
-3689336 Bagadó Bagado Bagado,Bagadó 5.41164 -76.4152 P PPL CO 11 4561 109 America/Bogota 2012-01-19
-3689381 Ayapel Ayapel Ayapel 8.31372 -75.13982 P PPL CO 12 22602 25 America/Bogota 2012-01-19
-3689450 Ataco Ataco Ataco 3.59147 -75.38178 P PPL CO 28 4105 453 America/Bogota 2012-01-19
-3689458 Astrea Astrea Astrea,Corregimiento Astrea 9.49828 -73.97591 P PPL CO 10 8995 87 America/Bogota 2012-01-19
-3689507 Arroyohondo Arroyohondo Arroyo Hondo,Arroyohondo,Corregimiento Arroyo Hondo 10.2522 -75.0198 P PPL CO 35 3622 30 America/Bogota 2012-01-19
-3689551 Guayabal Guayabal Armero,Guayabal 5.03103 -74.88682 P PPL CO 28 5339 280 America/Bogota 2012-01-19
-3689559 Armenia Armenia Armenia,Armenia Mantequilla,Armenija,Армения 6.15639 -75.78722 P PPL CO 02 2035 1822 America/Bogota 2012-01-19
-3689560 Armenia Armenia Armenia 4.53389 -75.68111 P PPLA CO 23 315328 1480 America/Bogota 2012-01-19
-3689570 Arjona Arjona 10.25444 -75.34389 P PPL CO 35 50405 62 America/Bogota 2006-01-17
-3689589 Ariguaní Ariguani 10.25 -74 P PPL CO 10 26246 136 America/Bogota 2006-01-17
-3689611 Argelia Argelia Argelia 5.73127 -75.14257 P PPL CO 02 3474 1758 America/Bogota 2012-01-19
-3689613 Argelia Argelia 4.72342 -76.11909 P PPL CO 29 3418 1623 America/Bogota 2011-10-11
-3689615 Argelia Argelia Argelia 2.25563 -77.24876 P PPL CO 09 4262 1256 America/Bogota 2012-01-19
-3689653 Arenal Arenal Arenal,Corregimiento Arenal 8.45928 -73.94331 P PPL CO 35 5346 44 America/Bogota 2012-01-19
-3689689 Arcabuco Arcabuco Arcabuco 5.75463 -73.43669 P PPL CO 36 1564 2566 America/Bogota 2012-01-19
-3689693 Arboletes Arboletes Arboletas,Arboletes 8.85051 -76.42694 P PPL CO 02 8380 10 America/Bogota 2012-01-19
-3689697 Arboledas Arboledas 7.64233 -72.79944 P PPL CO 21 2702 940 America/Bogota 2011-10-11
-3689709 Arbeláez Arbelaez Arbelaez,Arbeláez 4.27254 -74.41513 P PPL CO 33 5252 1379 America/Bogota 2012-01-19
-3689714 Arauquita Arauquita 7.02917 -71.42806 P PPL CO 03 9950 156 America/Bogota 2008-12-05
-3689718 Arauca Arauca Arauca,Arauka,Араука 7.08471 -70.75908 P PPLA CO 03 69264 132 America/Bogota 2010-08-21
-3689723 Aratoca Aratoca Aratoca 6.69353 -73.02083 P PPL CO 26 2101 1791 America/Bogota 2012-01-19
-3689740 Aranzazu Aranzazu 5.27123 -75.49044 P PPL CO 37 9327 1900 America/Bogota 2011-10-11
-3689759 Aracataca Aracataca Aracataca 10.59181 -74.18983 P PPL CO 38 27704 37 America/Bogota 2012-01-19
-3689771 Aquitania Aquitania Aquitania,Guaquira,Guáquira,Puebloviejo 5.51972 -72.8875 P PPL CO 36 5718 3027 America/Bogota 2012-01-19
-3689793 Apía Apia Apia,Apía 5.10645 -75.94318 P PPL CO 24 6940 1610 America/Bogota 2012-01-19
-3689798 Apartadó Apartado 7.88299 -76.62587 P PPLA2 CO 02 86438 31 America/Bogota 2011-09-10
-3689802 Anzoátegui Anzoategui Anzoategui,Anzoátegui,Briceno,Briceño 4.62996 -75.09539 P PPL CO 28 2229 1954 America/Bogota 2012-01-19
-3689816 Antioquia Antioquia Antioquia,Santa Fe de Antioquia 6.55687 -75.82806 P PPL CO 02 11829 571 America/Bogota 2012-01-19
-3689831 Ansermanuevo Ansermanuevo Ansermanueva,Ansermanuevo,Santa Ana de los Caballeros 4.79722 -75.995 P PPL CO 29 12332 971 America/Bogota 2012-01-19
-3689833 Anserma Anserma Anserma 5.33278 -75.79111 P PPL CO 24 25242 2088 America/Bogota 2012-01-19
-3689841 Anolaima Anolaima 4.83362 -74.4995 P PPL CO 33 5585 1577 America/Bogota 2010-08-13
-3689870 Angostura Angostura Angostura,Angosturas 6.88508 -75.33467 P PPL CO 02 3639 1680 America/Bogota 2012-01-19
-3689877 Angelópolis Angelopolis Angelopolis,Angelópolis 6.11072 -75.70923 P PPL CO 02 1917 1898 America/Bogota 2012-01-19
-3689899 Los Andes Los Andes Andes,Los Andes 5.6561 -75.87877 P PPL CO 02 16419 1282 America/Bogota 2012-01-19
-3689905 Andalucía Andalucia Andalucia,Andalucía 4.17061 -76.16641 P PPL CO 29 17432 958 America/Bogota 2012-01-19
-3689915 Ancuya Ancuya Ancuya 1.2703 -77.51575 P PPL CO 20 5852 1354 America/Bogota 2012-01-19
-3689941 Anapoima Anapoima Anapoima 4.52028 -74.53944 P PPL CO 33 4953 566 America/Bogota 2012-01-19
-3689979 Ambalema Ambalema Ambalema,Амбалема 4.78405 -74.76268 P PPL CO 28 4892 231 America/Bogota 2012-01-19
-3690010 Amalfi Amalfi Amalfi 6.91016 -75.07764 P PPL CO 02 9733 1544 America/Bogota 2012-01-19
-3690019 Amagá Amaga Amaga,Amagá 6.04001 -75.70315 P PPL CO 02 12170 1370 America/Bogota 2012-01-19
-3690030 Alvarado Alvarado Alvarado 4.56612 -74.96229 P PPL CO 28 2049 423 America/Bogota 2012-01-19
-3690102 Altamira Altamira Altamira,Boqueron,Boquerón 2.06278 -75.78722 P PPL CO 16 2123 1039 America/Bogota 2012-01-19
-3690136 Almaguer Almaguer Almaguer 1.917 -76.85233 P PPL CO 09 3120 2239 America/Bogota 2012-01-19
-3690160 Algeciras Algeciras Algeciras,San Juanito 2.52295 -75.31492 P PPL CO 16 10792 1005 America/Bogota 2012-01-19
-3690172 Algarrobo Algarrobo Algarrobo,Hacienda Algarrobo 10.18694 -74.57528 P PPL CO 38 10042 51 America/Bogota 2012-01-19
-3690226 Aldana Aldana Aldana,Dana 0.88283 -77.70103 P PPL CO 20 1956 3016 America/Bogota 2012-01-19
-3690237 Alcalá Alcala Acala,Acalá,Alcala,Alcalá,La Balsa,San Sebastian de la Balsa 4.67472 -75.7825 P PPL CO 29 9135 1235 America/Bogota 2012-01-19
-3690250 Albania Albania Albania,Albanio 11.16099 -72.59238 P PPL CO 17 6364 94 America/Bogota 2012-01-19
-3690262 Albania Albania 1.32866 -75.87824 P PPL CO 08 4160 277 America/Bogota 2011-12-30
-3690264 Albán Alban 4.87661 -74.43768 P PPL CO 33 1684 2242 America/Bogota 2011-10-11
-3690287 Aipe Aipe Aipe 3.22222 -75.23667 P PPL CO 16 7964 393 America/Bogota 2012-01-19
-3690316 Aguazul Aguazul Agua Azul,Aguazul 5.17282 -72.54706 P PPL CO 32 15669 276 America/Bogota 2012-01-19
-3690429 Agua de Dios Agua de Dios Agua de Dios 4.37648 -74.66995 P PPL CO 33 10875 384 America/Bogota 2012-01-19
-3690431 Aguadas Aguadas Aguadas 5.61161 -75.45624 P PPL CO 37 19727 2146 America/Bogota 2012-01-19
-3690465 Aguachica Aguachica Aguachica,Aguachika,Aquachia,Aquachía,Агуачика 8.30844 -73.6166 P PPL CO 10 73360 164 America/Bogota 2012-01-19
-3690520 Agrado Agrado Agrado,Belen Pitalito,Belén Pitalito 2.25725 -75.77142 P PPL CO 16 4530 844 America/Bogota 2012-01-19
-3690549 Achí Achi Achi,Achí 8.56818 -74.55405 P PPL CO 35 8434 19 America/Bogota 2012-01-19
-3690552 Acevedo Acevedo Acevedo,Concepcion,Concepción 1.83606 -75.85498 P PPL CO 16 4451 1109 America/Bogota 2012-01-19
-3690572 Acandí Acandi Acandi,Acandí,Acanti 8.50633 -77.27784 P PPL CO 11 4840 8 America/Bogota 2012-01-19
-3690577 Acacías Acacias Acacias,Acacías 3.98695 -73.75797 P PPL CO 19 40627 530 America/Bogota 2012-01-19
-3690582 Abriaquí Abriaqui Abriaqui,Abriaquí 6.63148 -76.06444 P PPL CO 02 1281 1915 America/Bogota 2012-01-19
-3690584 Ábrego Abrego Abrego,La Cruz,Ábrego 8.08065 -73.22054 P PPL CO 21 10822 1395 America/Bogota 2012-01-19
-3690592 Abejorral Abejorral Abejorral 5.78928 -75.42725 P PPL CO 02 7360 2167 America/Bogota 2012-01-19
-3732273 Los Santos Los Santos 7.17 -73.09306 P PPL CO 26 1310 1062 America/Bogota 2006-01-17
-3732964 Lejanías Lejanias Lejanias,Lejanías 3.5251 -74.02156 P PPL CO 19 5157 684 America/Bogota 2012-01-19
-3733434 El Dorado El Dorado 2.77411 -72.86834 P PPL CO 19 1011 201 America/Bogota 2011-09-12
-3733861 Curillo Curillo Curillo,El Curillo 1.03327 -75.91906 P PPL CO 08 9539 230 America/Bogota 2012-01-19
-3735680 Santacruz Santacruz Santacruz,Sontarruz 1.5209 -77.26206 P PPL CO 20 2469 1763 America/Bogota 2012-01-19
-3738301 El Tarra El Tarra 8.57562 -73.09489 P PPL CO 21 3336 197 America/Bogota 2011-10-12
-3763578 Mesetas Mesetas Mesetas 3.38464 -74.04424 P PPL CO 19 4163 550 America/Bogota 2012-01-19
-3766939 Bellavista Bellavista Bellavista,Bojaya,Bojayá,La Loma 6.5213 -76.97234 P PPL CO 11 1396 19 America/Bogota 2012-01-19
-3769623 Chivor Chivor Chivor 4.88556 -73.36889 P PPL CO 36 1622 1885 America/Bogota 2012-01-19
-3769932 Monterrey Monterrey 4.87206 -72.89879 P PPL CO 32 7759 435 America/Bogota 2011-10-13
-3769960 Paratebueno Paratebueno 4.37575 -73.21547 P PPL CO 33 2027 262 America/Bogota 2006-01-17
-3769976 Puerto Gaitán Puerto Gaitan Puerto Gaitan,Puerto Gaitán 4.31328 -72.08157 P PPL CO 19 5928 160 America/Bogota 2012-01-19
-3769988 Sabanalarga Sabanalarga Sabanalarga 4.8543 -73.04003 P PPL CO 32 1419 471 America/Bogota 2012-01-19
-3770066 San Luis San Luis 6.04167 -74.99278 P PPL CO 02 6448 1070 America/Bogota 2006-01-17
-3770718 Morales Morales Morales 2.75701 -76.61723 P PPL CO 09 29617 1677 America/Bogota 2012-01-19
-3770955 Villa Rica Villa Rica Villa Rica 2.50949 -76.84418 P PPL CO 09 9070 1637 America/Bogota 2012-01-19
-3775262 Quípama Quipama Quipama,Quípama 5.5194 -74.17765 P PPL CO 36 3571 1265 America/Bogota 2012-01-19
-3778835 La Cumbre La Cumbre La Cumbre 3.7225 -76.02083 P PPL CO 29 2432 3342 America/Bogota 2012-01-19
-3779399 Canalete Canalete 8.67611 -76.20417 P PPL CO 12 2620 103 America/Bogota 2006-01-17
-3780602 Fredonia Fredonia 5.92583 -75.67056 P PPL CO 02 8950 1797 America/Bogota 2006-01-17
-3781883 Gachetá Gacheta Gacheta,Gachetá 4.81854 -73.63659 P PPL CO 33 4088 1744 America/Bogota 2012-01-19
-3783663 San Carlos San Carlos 8.74372 -75.71331 P PPLL CO 12 3447 27 America/Bogota 2011-10-13
-3787727 San Andrés San Andres San Andres,San Andrés 6.90333 -75.6825 P PPL CO 02 3154 1651 America/Bogota 2012-01-19
-3792374 Buriticá Buritica 6.71873 -75.90734 P PPL CO 02 2388 1662 America/Bogota 2011-10-13
-3792375 Carepa Carepa Carepa 7.75849 -76.65254 P PPL CO 02 20627 38 America/Bogota 2012-01-19
-3792376 Ciudad Bolívar Ciudad Bolivar Ciudad Bolivar,Ciudad Bolívar 5.85389 -76.02528 P PPLA2 CO 02 16225 1346 America/Bogota 2011-09-10
-3792377 Vegachí Vegachi Vegachi,Vegachí 6.76141 -74.79473 P PPL CO 02 9618 993 America/Bogota 2012-01-19
-3792378 Altos del Rosario Altos del Rosario Altos del Rosario 8.79444 -74.16583 P PPL CO 35 5220 25 America/Bogota 2012-01-19
-3792379 Santa Rosa del Sur Santa Rosa del Sur Santa Rosa del Sur 7.96444 -74.05444 P PPL CO 35 8904 628 America/Bogota 2012-01-19
-3792380 Tiquisio Tiquisio Tiquisio 8.55972 -74.26694 P PPL CO 35 4255 17 America/Bogota 2012-01-19
-3792382 Cartagena del Chairá Cartagena del Chaira Cartagena del Chaira,Cartagena del Chairá 1.33488 -74.84289 P PPL CO 08 7586 221 America/Bogota 2012-01-19
-3792383 Agustín Codazzi Agustin Codazzi Agustin Codazzi,Agustín Codazzi 10.03409 -73.23611 P PPL CO 10 51478 135 America/Bogota 2012-01-19
-3792384 Manaure Balcón del Cesar Manaure Balcon del Cesar 10.39278 -73.0325 P PPL CO 10 7953 726 America/Bogota 2006-01-17
-3792385 San Martín San Martin 8.00151 -73.51126 P PPL CO 10 7029 112 America/Bogota 2011-10-13
-3792386 El Cantón de San Pablo El Canton de San Pablo El Canton de San Pablo,El Cantón de San Pablo 5.33889 -76.73139 P PPL CO 11 3271 53 America/Bogota 2012-01-19
-3792387 El Retorno El Retorno 2.33022 -72.62765 P PPL CO 14 3362 205 America/Bogota 2006-01-17
-3792389 Isnos Isnos Isnos 1.93556 -76.24056 P PPL CO 16 5185 1806 America/Bogota 2010-08-10
-3792392 Plato Plato 9.79029 -74.78244 P PPL CO 38 48606 25 America/Bogota 2006-01-17
-3792394 Mapiripán Mapiripan Mapiripan,Mapiripán 2.88916 -72.12559 P PPL CO 19 1993 164 America/Bogota 2012-01-19
-3792395 Puerto Concordia Puerto Concordia Concordia,La Concordia,Puerto Concordia,Puerto La Concordia 2.62206 -72.75724 P PPL CO 19 4313 188 America/Bogota 2012-01-19
-3792396 La Tola La Tola La Tola 2.41083 -78.24278 P PPL CO 20 3769 14 America/Bogota 2012-01-19
-3792398 Puerto Guzmán Puerto Guzman Puerto Guzman,Puerto Guzmán 0.97028 -76.58583 P PPL CO 22 4094 367 America/Bogota 2012-01-19
-3792399 El Playón El Playon 7.47131 -73.2031 P PPL CO 26 5334 439 America/Bogota 2011-10-13
-3792404 San Antonio del Tequendama San Antonio del Tequendama San Antonio del Tequendama 4.61889 -74.35389 P PPL CO 33 1577 1379 America/Bogota 2012-01-19
-3792406 Tibacuy Tibacuy Tibacuy 4.35111 -72.45639 P PPL CO 33 1028 161 America/Bogota 2012-01-19
-3792408 Santa Genoveva de Docorodó Santa Genoveva de Docorodo Litoral del San Juan,Santa Genoveva de Docorodo,Santa Genoveva de Docorodó 4.25875 -77.36516 P PPL CO 11 1448 6 America/Bogota 2012-01-19
-3792743 La Argentina La Argentina La Argentina 2.19611 -75.98 P PPL CO 16 3082 1559 America/Bogota 2012-01-19
-3827693 La Macarena La Macarena La Macarena 2.18367 -73.78485 P PPL CO 19 3466 229 America/Bogota 2012-01-20
-3827723 Valle del Guamuez Valle del Guamuez La Hormiga,Valle del Guamuez 0.4525 -76.91917 P PPL CO 22 9969 336 America/Bogota 2012-01-20
-3828545 San José del Guaviare San Jose del Guaviare San Jose del Guaviare,San José del Guaviare 2.57286 -72.64591 P PPLA CO 14 22136 184 America/Bogota 2012-01-20
-3829343 Orito Orito Orito 0.67656 -76.87712 P PPL CO 22 13708 341 America/Bogota 2012-01-20
-6196086 Cubará Cubara 6.99889 -72.10917 P PPL CO 36 1466 357 America/Bogota 2008-12-05
-3620994 Zarcero Zarcero Zarcero 10.18561 -84.39076 P PPL CR 01 3559 1752 America/Costa_Rica 2012-01-18
-3621153 Upala Upala Upala 10.89792 -85.01454 P PPL CR 01 4185 52 America/Costa_Rica 2012-01-18
-3621184 Turrialba Turrialba Turialba,Turrial'ba,Turrialba,Турриальба 9.90467 -83.68352 P PPL CR 02 28955 648 America/Costa_Rica 2012-01-18
-3621200 Tucurrique Tucurrique 9.85336 -83.72273 P PPL CR 02 2697 779 America/Costa_Rica 2011-04-19
-3621224 Tres Ríos Tres Rios La Union,La Unión,Tres Rios,Tres Ríos 9.90644 -83.9876 P PPL CR 02 10430 1332 America/Costa_Rica 2012-01-18
-3621265 Tobosí Tobosi 9.83837 -83.98391 P PPL CR 02 4060 1409 America/Costa_Rica 2011-04-19
-3621278 Tilarán Tilaran Tilaran,Tilarán 10.47029 -84.96709 P PPL CR 03 7301 565 America/Costa_Rica 2012-01-18
-3621335 Tejar Tejar 9.74622 -84.23368 P PPL CR 08 22433 989 America/Costa_Rica 2011-04-19
-3621430 Sixaola Sixaola Sixaola,Sixola 9.52766 -82.62185 P PPL CR 06 1823 7 America/Costa_Rica 2012-01-18
-3621440 Siquirres Siquirres Siquirres 10.09748 -83.50659 P PPL CR 06 18231 69 America/Costa_Rica 2012-01-18
-3621490 Sardinal Sardinal 10.51674 -85.64748 P PPL CR 03 3267 50 America/Costa_Rica 2006-01-17
-3621501 San Vito San Vito Ciudad San Vito,San Vito,San Vito de Java 8.82079 -82.97092 P PPL CR 07 3981 994 America/Costa_Rica 2012-01-18
-3621505 San Vicente San Vicente 9.96016 -84.04762 P PPL CR 08 34447 1236 America/Costa_Rica 2011-04-19
-3621515 Santo Domingo Santo Domingo 10.06388 -84.15499 P PPL CR 04 5745 1327 America/Costa_Rica 2011-04-19
-3621520 Santiago Santiago 10.02275 -84.4442 P PPL CR 01 2107 1083 America/Costa_Rica 2011-04-19
-3621524 Santiago Santiago Puriscal,Santiago,Santiago de Puriscal 9.84636 -84.31428 P PPL CR 08 8292 1109 America/Costa_Rica 2012-01-18
-3621607 Santa Cruz Santa Cruz 10.26053 -85.5851 P PPL CR 03 12281 58 America/Costa_Rica 2011-04-19
-3621630 Santa Ana Santa Ana Santa Ana 9.9326 -84.18254 P PPL CR 08 8029 909 America/Costa_Rica 2012-01-18
-3621644 San Ramón San Ramon San Ramon,San Ramón 10.08802 -84.47022 P PPL CR 01 10765 1061 America/Costa_Rica 2012-01-18
-3621655 San Rafael Arriba San Rafael Arriba San Rafael,San Rafael Arriba 9.87556 -84.07661 P PPL CR 08 15051 1205 America/Costa_Rica 2012-01-18
-3621659 San Rafael Abajo San Rafael Abajo 9.831 -84.29008 P PPL CR 08 27419 826 America/Costa_Rica 2011-04-19
-3621679 San Rafael San Rafael 10.06403 -84.47281 P PPL CR 01 3624 1074 America/Costa_Rica 2011-04-19
-3621683 San Rafael San Rafael 10.0132 -84.10016 P PPL CR 04 8887 1263 America/Costa_Rica 2011-04-19
-3621687 San Rafael San Rafael 9.97454 -84.20974 P PPL CR 01 17649 862 America/Costa_Rica 2011-04-19
-3621689 San Rafael San Rafael 9.92787 -84.13722 P PPL CR 08 25410 1060 America/Costa_Rica 2011-04-19
-3621717 San Pedro San Pedro Pedro,San Pedro,San Pedro de Montes de Oca 9.92829 -84.05074 P PPLA3 CR 08 27477 1199 America/Costa_Rica 2011-09-21
-3621729 San Pablo San Pablo 9.99559 -84.09656 P PPL CR 04 21662 1203 America/Costa_Rica 2011-04-19
-3621753 San Miguel San Miguel 9.87121 -84.06084 P PPL CR 08 28827 1216 America/Costa_Rica 2011-04-19
-3621762 San Marcos San Marcos Marcos,San Marcos,San Marcos de Dota,San Marcos de Tarrazu,San Marcos de Tarrazú 9.6601 -84.02026 P PPL CR 08 4255 1435 America/Costa_Rica 2012-01-18
-3621804 San Juan de Dios San Juan de Dios Juan de Dios,San Juan de Dios 9.8773 -84.0847 P PPL CR 08 15469 1207 America/Costa_Rica 2012-01-18
-3621817 San Juan San Juan 10.10248 -84.31694 P PPL CR 01 7729 1090 America/Costa_Rica 2011-04-19
-3621819 San Juan San Juan 9.95974 -84.08165 P PPL CR 08 26047 1151 America/Costa_Rica 2011-04-19
-3621831 San Josecito San Josecito 10.01667 -84.1 P PPL CR 04 12195 1272 America/Costa_Rica 2006-01-17
-3621841 San José San Jose 10.95173 -85.1361 P PPL CR 01 31430 50 America/Costa_Rica 2006-01-17
-3621849 San José San Jose San Chose,San Chosė,San Jose,San José,San-Joseo,San-Khose,sanhose,sheng he xi,sn hwsh,Σαν Χοσέ,Сан-Хосе,סאן חוסה,סן חוסה,ซันโฮเซ,ሳን ሆዜ,サンホセ,聖荷西,산호세 9.93333 -84.08333 P PPLC CR 08 335007 1161 America/Costa_Rica 2012-01-18
-3621889 San Isidro San Isidro Barrio Urena,Barrio Ureña,San Isidro,San Isidro Urena,San Isidro de El General,San Isidro del General,Urena,Ureña 9.3721 -83.70399 P PPL CR 08 34877 696 America/Costa_Rica 2012-01-18
-3621890 San Ignacio San Ignacio San Ignacia de Acosta,San Ignacio,San Ignacio de Acosta 9.79853 -84.16173 P PPL CR 08 3072 1097 America/Costa_Rica 2012-01-18
-3621911 San Francisco San Francisco 9.99299 -84.12934 P PPL CR 04 55923 1128 America/Costa_Rica 2011-04-19
-3621922 San Felipe San Felipe 9.90488 -84.10551 P PPL CR 08 24985 1127 America/Costa_Rica 2011-04-19
-3621926 San Diego San Diego 9.89898 -84.00287 P PPL CR 02 16991 1275 America/Costa_Rica 2011-04-19
-3621967 San Antonio San Antonio San Antonio,San Antonio de Belen 9.98333 -84.18333 P PPL CR 04 10938 937 America/Costa_Rica 2012-02-28
-3621990 Sámara Samara Samara,Sámara 9.8824 -85.52665 P PPL CR 03 1071 12 America/Costa_Rica 2012-01-18
-3621997 Salitrillos Salitrillos 9.85259 -84.09062 P PPL CR 08 5738 1319 America/Costa_Rica 2011-04-19
-3622005 Salitral Salitral El Salitral,Salitral 9.91163 -84.17835 P PPL CR 08 2833 1038 America/Costa_Rica 2012-01-18
-3622022 Sabanilla Sabanilla Sabanilla,Sabanilla de Pampas 10.07404 -84.21551 P PPL CR 01 1015 1278 America/Costa_Rica 2012-01-18
-3622023 Sabanilla Sabanilla 9.94522 -84.03926 P PPL CR 08 13251 1240 America/Costa_Rica 2011-04-19
-3622036 Roxana Roxana Roxana,Roxano 10.27528 -83.75133 P PPL CR 06 2351 110 America/Costa_Rica 2012-01-18
-3622074 Río Segundo Rio Segundo 10.24138 -84.27933 P PPL CR 01 9853 1275 America/Costa_Rica 2011-04-19
-3622190 Quesada Quesada Ciudad Quesada,Kesada,Quesada,Villa Quesada,Кесада 10.32381 -84.42714 P PPL CR 01 27310 651 America/Costa_Rica 2012-01-18
-3622193 Quepos Quepos Quepos 9.42357 -84.16522 P PPL CR 07 7810 56 America/Costa_Rica 2012-01-18
-3622217 Purral Purral 9.95808 -84.0305 P PPL CR 08 30034 1270 America/Costa_Rica 2011-04-19
-3622228 Puntarenas Puntarenas Puntarenas,Пунтаренас 9.97625 -84.83836 P PPLA CR 07 35650 9 America/Costa_Rica 2011-01-17
-3622247 Puerto Limón Puerto Limon Ciudad de Limon,Ciudad de Limón,Limon,Limón,Provincia de Limon,Provinsi Limon,Provinsi Limón,Província de Limón,Puehrto-Limon,Puerto Limon,Puerto Limón,Пуэрто-Лимон 10 -83.03333 P PPLA CR 06 63081 25 America/Costa_Rica 2011-09-24
-3622323 Pocosol Pocosol 10.36667 -84.61667 P PPL CR 01 2947 370 America/Costa_Rica 2006-01-17
-3622325 Pocora Pocora Pacora Oeste,Pocora,Pocora Oeste,Pocora West 10.17185 -83.60439 P PPL CR 06 5248 99 America/Costa_Rica 2012-01-18
-3622382 Pital Pital 10.45056 -84.27406 P PPL CR 01 2046 161 America/Costa_Rica 2011-04-19
-3622466 Pejibaye Pejibaye Pejibaye,Pejivalle 9.81135 -83.70336 P PPL CR 02 1630 652 America/Costa_Rica 2012-01-18
-3622507 Patarrá Patarra 9.88071 -84.03501 P PPL CR 08 23983 1180 America/Costa_Rica 2011-04-19
-3622537 Parrita Parrita 9.52012 -84.32249 P PPL CR 07 3734 12 America/Costa_Rica 2011-04-19
-3622547 Paraíso Paraiso Paraiso,Paraíso 9.83832 -83.86556 P PPL CR 02 39702 1332 America/Costa_Rica 2012-02-02
-3622561 Paquera Paquera 9.82005 -84.93513 P PPL CR 07 1510 19 America/Costa_Rica 2011-04-19
-3622602 Palmichal Palmichal 9.83778 -84.20478 P PPL CR 08 1545 1098 America/Costa_Rica 2011-04-19
-3622648 Pacayas Pacayas 9.80709 -84.04764 P PPL CR 02 1556 1675 America/Costa_Rica 2011-04-19
-3622660 Orotina Orotina Orotina 9.91197 -84.52337 P PPL CR 01 6135 237 America/Costa_Rica 2012-01-18
-3622663 Orosí Orosi 9.79617 -83.85383 P PPL CR 02 4350 1058 America/Costa_Rica 2011-04-19
-3622716 Nicoya Nicoya Nicoya 10.14828 -85.45201 P PPL CR 03 15313 130 America/Costa_Rica 2012-01-18
-3622751 Naranjo Naranjo 10.09866 -84.37824 P PPL CR 01 11853 1044 America/Costa_Rica 2011-04-19
-3622765 Nandayure Nandayure Mandayure,Nandayure 10.03333 -85.2 P PPL CR 03 1649 11 America/Costa_Rica 2012-01-18
-3622854 Miramar Miramar 10.0925 -84.72978 P PPL CR 07 6540 339 America/Costa_Rica 2011-04-19
-3622881 Mercedes Mercedes Mercedes,Mercedes Norte 10.00696 -84.13396 P PPL CR 04 26007 1107 America/Costa_Rica 2012-01-18
-3622884 Mercedes Mercedes 9.2627 -83.58202 P PPL CR 08 5467 597 America/Costa_Rica 2011-04-19
-3622895 Matina Matina Matina,Matino 10.07609 -83.28953 P PPL CR 06 2315 10 America/Costa_Rica 2012-01-18
-3623008 Los Chiles Los Chiles Los Chiles 11.03333 -84.71667 P PPL CR 01 3342 42 America/Costa_Rica 2012-01-18
-3623032 Llorente Llorente 9.99844 -84.15448 P PPL CR 04 6626 1041 America/Costa_Rica 2011-04-19
-3623076 Liberia Liberia Liberia,Liberija,Либерия 10.63504 -85.43772 P PPLA CR 03 45380 148 America/Costa_Rica 2011-01-17
-3623112 La Suiza La Suiza La Suiza,Suiza 9.85238 -83.61331 P PPL CR 02 2434 617 America/Costa_Rica 2012-01-18
-3623258 La Cruz La Cruz 11.07377 -85.63272 P PPL CR 03 4319 241 America/Costa_Rica 2006-01-17
-3623287 La Asunción La Asuncion Asuncion,La Asuncion,La Asunción 9.97961 -84.17281 P PPL CR 04 4383 956 America/Costa_Rica 2012-01-18
-3623307 Juntas Juntas Juntas,Las Juntas 10.2809 -84.95951 P PPL CR 03 4737 154 America/Costa_Rica 2012-01-18
-3623369 Jacó Jaco Jaco,Jacó 9.61497 -84.62975 P PPL CR 07 4085 10 America/Costa_Rica 2012-01-18
-3623394 Ipís Ipis 9.96746 -84.01326 P PPL CR 08 26669 1352 America/Costa_Rica 2011-04-19
-3623454 Hojancha Hojancha Hoja Ancha,Hojancha 10.0579 -85.41803 P PPL CR 03 1823 355 America/Costa_Rica 2012-01-18
-3623486 Heredia Heredia Ciudad de Heredia,Ehredia,Heredia,Heridia,Эредиа 10 -84.11667 P PPLA CR 04 21947 1163 America/Costa_Rica 2011-01-17
-3623580 Guápiles Guapiles 10.21588 -83.78661 P PPL CR 06 19092 257 America/Costa_Rica 2011-04-19
-3623593 Guadalupe Guadalupe Guadelupe,Gvadalupe,San Francisco Guadaloupe,Гвадалупе 9.94611 -84.05279 P PPL CR 08 26005 1210 America/Costa_Rica 2010-01-29
-3623601 Guácimo Guacimo Guacimo,Guácimo 10.21044 -83.68067 P PPL CR 06 7022 107 America/Costa_Rica 2012-01-18
-3623643 Granadilla Granadilla 9.93491 -84.01688 P PPL CR 08 12683 1326 America/Costa_Rica 2011-04-19
-3623656 Golfito Golfito Golfita,Golfito,Puerto Golfito 8.63901 -83.16603 P PPL CR 07 6777 14 America/Costa_Rica 2012-01-18
-3623715 Fortuna Fortuna 10.67384 -85.19984 P PPL CR 03 1774 437 America/Costa_Rica 2006-01-17
-3623716 Fortuna Fortuna El Burio,El Burío,Fortuna,La Fortuna 10.47089 -84.64535 P PPL CR 01 3010 256 America/Costa_Rica 2012-01-18
-3623755 Esquipulas Esquipulas 10.05676 -84.42337 P PPL CR 01 1512 1011 America/Costa_Rica 2011-04-19
-3623781 Esparza Esparza Esparta,Esparza 9.99447 -84.66466 P PPL CR 07 15575 214 America/Costa_Rica 2012-01-18
-3623787 Escazú Escazu Escasu,Escazu,Escazú 9.91887 -84.1399 P PPL CR 08 12071 1111 America/Costa_Rica 2012-01-18
-3623935 Desamparados Desamparados 9.94727 -84.50626 P PPL CR 01 14448 281 America/Costa_Rica 2011-04-19
-3623961 Daniel Flores Daniel Flores 9.33554 -83.6694 P PPL CR 08 10028 639 America/Costa_Rica 2011-04-19
-3623977 Curridabat Curridabat 9.91178 -84.03407 P PPL CR 08 34586 1212 America/Costa_Rica 2011-04-19
-3624057 Cot Cot 9.89449 -83.87302 P PPL CR 02 6784 1811 America/Costa_Rica 2011-04-19
-3624066 Corredor Corredor 8.64002 -82.946 P PPL CR 07 7084 36 America/Costa_Rica 2011-04-19
-3624142 Concepción Concepcion 9.93333 -84 P PPL CR 02 14000 1388 America/Costa_Rica 2006-01-17
-3624171 Colón Colon Centro Colon,Centro Colón,Villa Colon,Villa Colón 9.91491 -84.2417 P PPL CR 04 9687 801 America/Costa_Rica 2008-07-27
-3624174 Colima Colima Colima,La Estacion,La Estación 9.95091 -84.08503 P PPL CR 08 15875 1146 America/Costa_Rica 2012-01-18
-3624198 Ciudad Cortés Ciudad Cortes Ciudad Cortes,Ciudad Cortés,El Pozo,Pozo,Puerto Cortes,Puerto Cortés 8.95988 -83.52381 P PPL CR 07 3850 10 America/Costa_Rica 2012-01-18
-3624288 Chacarita Chacarita 9.98289 -84.77232 P PPL CR 07 26354 7 America/Costa_Rica 2011-04-19
-3624370 Cartago Cartago Cartago,Kartagas,Kartago,Картаго 9.86667 -83.91667 P PPLA CR 02 26594 1449 America/Costa_Rica 2011-01-17
-3624379 Carrillos Carrillos 10.02918 -84.27404 P PPL CR 01 4258 834 America/Costa_Rica 2011-04-19
-3624436 Canoas Canoas 8.53305 -82.83844 P PPL CR 07 4573 128 America/Costa_Rica 2011-04-19
-3624468 Cañas Canas Canas,Cañas,Ciudad Canas,Ciudad Cañas,Kanash,Las Canas,Las Cañas,Канаш 10.4294 -85.09311 P PPL CR 03 20306 88 America/Costa_Rica 2012-01-18
-3624509 Calle Blancos Calle Blancos Blancos,Calle Blancos 9.95 -84.06667 P PPL CR 08 20710 1188 America/Costa_Rica 2012-01-18
-3624593 Buenos Aires Buenos Aires 9.17189 -83.33417 P PPL CR 07 11680 361 America/Costa_Rica 2011-04-19
-3624702 Bijagua Bijagua 10.7328 -85.05676 P PPL CR 01 1090 434 America/Costa_Rica 2006-01-17
-3624718 Belén Belen 10.40788 -85.58836 P PPL CR 03 2715 40 America/Costa_Rica 2006-01-17
-3624730 Batán Batan Bataan,Batan,Bataán,Batán 10.08444 -83.341 P PPL CR 06 4584 18 America/Costa_Rica 2012-01-18
-3624822 Bagaces Bagaces Bagaces 10.52709 -85.25482 P PPL CR 03 4108 85 America/Costa_Rica 2012-02-02
-3624842 Atenas Atenas Atenas 9.97806 -84.38032 P PPL CR 01 7014 704 America/Costa_Rica 2012-01-18
-3624848 Aserrí Aserri Aseri,Aserri,Aserrí 9.85876 -84.0923 P PPL CR 08 25874 1331 America/Costa_Rica 2012-01-18
-3624908 Ángeles Angeles 9.9959 -84.05126 P PPL CR 04 1355 1272 America/Costa_Rica 2011-04-19
-3624951 Alajuelita Alajuelita 9.90163 -84.10042 P PPL CR 08 13845 1135 America/Costa_Rica 2011-04-19
-3624955 Alajuela Alajuela Alajuela,Alakhuehla,Алахуэла 10.01667 -84.21667 P PPLA CR 01 47494 949 America/Costa_Rica 2011-01-17
-6612154 San Vicente de Moravia San Vicente de Moravia 9.96164 -84.0488 P PPL CR 08 34447 1240 1235 America/Costa_Rica 2007-07-31
-3533556 Zaza del Medio Zaza del Medio Zaza,Zaza del Medio 21.99611 -79.36694 P PPL CU 14 8667 57 America/Havana 2012-01-18
-3533753 Yara Yara Poblado Yara,Yara 20.27528 -76.95333 P PPL CU 09 28944 33 America/Havana 2012-01-18
-3533826 Yaguajay Yaguajay 22.32722 -79.23778 P PPL CU 14 42218 33 America/Havana 2006-01-17
-3534094 Viñales Vinales Vin'jales,Vinales,Viñales,Виньялес 22.61639 -83.70778 P PPL CU 01 27129 152 America/Havana 2012-01-18
-3534363 Vertientes Vertientes Vertientes 21.25944 -78.14639 P PPL CU 05 29704 71 America/Havana 2012-01-18
-3534432 Venezuela Venezuela Stewart,Venezuela 21.73528 -78.79639 P PPL CU 07 16601 23 America/Havana 2012-01-18
-3534632 Varadero Varadero La Varadero,Varadero,Veradero,Варадеро 23.15361 -81.25139 P PPL CU CU 03 20000 13 America/Havana 2012-01-18
-3534761 Unión de Reyes Union de Reyes Union Reyes,Union de Reyes,Unión de Reyes 22.79528 -81.5375 P PPL CU 03 33646 57 America/Havana 2012-01-18
-3534915 Trinidad Trinidad Trinidad,Тринидад 21.80194 -79.98417 P PPL CU 14 60206 67 America/Havana 2012-01-18
-3536259 Sibanicú Sibanicu Poblado Sibanicu,Sibanicu,Sibanicú 21.235 -77.52639 P PPL CU 05 16856 92 America/Havana 2012-01-18
-3536640 Santo Domingo Santo Domingo Santo Domingo 22.58667 -80.24361 P PPL CU 16 45476 51 America/Havana 2012-01-18
-3536724 Santiago de las Vegas Santiago de las Vegas Sant'jago-de-las-Vegas,Santiago de las Vegas,Сантьяго-де-лас-Вегас 22.97 -82.38694 P PPL CU 02 35241 95 America/Havana 2012-01-18
-3536729 Santiago de Cuba Santiago de Cuba Sant'jago-de-Kuba,Santiago,Santiago de Cuba,Santiago de Kubo,Santiago di Cuba,Santjago de Kuba,Сантьяго-де-Куба,Сантяго де Куба,סנטיאגו דה קובה,サンティアーゴ・デ・クーバ 20.02472 -75.82194 P PPLA CU 15 555865 69 America/Havana 2012-01-14
-3537840 Santa Cruz del Sur Santa Cruz del Sur Santa Cruz del Sur 20.71472 -77.99556 P PPL CU 05 34601 7 America/Havana 2012-01-18
-3537845 Santa Cruz del Norte Santa Cruz del Norte Santa Cruz del Norte 23.15389 -81.92361 P PPL CU MA 18402 12 America/Havana 2012-01-18
-3537906 Santa Clara Santa Clara Santa Clara,Santa Klara,Σάντα Κλάρα,Санта Клара,サンタ・クララ 22.4 -79.96667 P PPL CU 16 250512 122 America/Havana 2012-01-18
-3538758 San Nicolás San Nicolas San Nicolas,San Nicolas de Bari,San Nicolás,San Nicolás de Bari 22.78444 -81.91333 P PPL CU MA 14914 31 America/Havana 2012-01-18
-3539092 San Luis San Luis San Luis 22.27861 -83.76111 P PPL CU 01 6690 28 America/Havana 2012-01-18
-3539093 San Luis San Luis San Luis 20.1875 -75.85083 P PPL CU 15 67293 200 America/Havana 2012-01-18
-3539560 San José de las Lajas San Jose de las Lajas 22.96139 -82.15111 P PPLA CU MA 54847 138 America/Havana 2011-02-18
-3540618 San Diego de los Baños San Diego de los Banos Banos San Diego,Baños San Diego,San Diego de los Banos,San Diego de los Baños 22.64667 -83.36972 P PPL CU 01 1643 71 America/Havana 2012-01-18
-3540667 Sancti Spíritus Sancti Spiritus Sancti Spiritus,Sancti Spíritus,Sankti-Spiritus,Санкти-Спиритус 21.92972 -79.4425 P PPLA CU 14 127069 66 America/Havana 2012-01-14
-3540680 San Cristóbal San Cristobal San Cristobal,San Cristóbal 22.71417 -83.04806 P PPL CU AR 59579 58 America/Havana 2012-01-18
-3540885 San Antonio de los Baños San Antonio de los Banos San Antonio de los Banos,San Antonio de los Baños 22.89111 -82.49917 P PPL CU AR 42724 62 America/Havana 2012-01-18
-3541440 Sagua la Grande Sagua la Grande Sagua,Sagua la Grande 22.80667 -80.07556 P PPL CU 16 62073 13 America/Havana 2012-01-18
-3541446 Sagua de Tánamo Sagua de Tanamo Sagua de Tanamo,Sagua de Temamo,Sagua de Tánamo 20.58194 -75.24139 P PPL CU 12 18282 27 America/Havana 2012-01-18
-3541999 Rodas Rodas Robas,Rodas 22.34083 -80.55722 P PPL CU 08 19212 23 America/Havana 2012-01-18
-3542137 Río Guayabal de Yateras Rio Guayabal de Yateras 20.36667 -75.01667 P PPLL CU 10 25753 438 America/Havana 2006-01-17
-3542167 Río Cauto Rio Cauto Rio Cauto,Río Cauto 20.56028 -76.91611 P PPL CU 09 23737 13 America/Havana 2012-01-18
-3542455 Remedios Remedios Remedios,San Juan de los Remedios,Ремедиос 22.49472 -79.54583 P PPL CU 16 34108 22 America/Havana 2012-01-18
-3542744 Ranchuelo Ranchuelo Ranchuelo 22.37722 -80.14889 P PPL CU 16 43695 105 America/Havana 2012-02-02
-3542753 Rancho Veloz Rancho Veloz 22.88056 -80.39167 P PPL CU 16 4549 61 America/Havana 2006-01-17
-3542965 Quivicán Quivican Kivikan,Quivican,Quivicán,Кивикан 22.82306 -82.355 P PPL CU MA 12919 50 America/Havana 2012-01-18
-3543077 Quemado de Güines Quemado de Guines Quemado de Guines,Quemado de Güines 22.78528 -80.25361 P PPL CU 16 12736 82 America/Havana 2012-01-18
-3543299 Puerto Padre Puerto Padre Puehrto-Padre,Puerto Padre,Пуэрто-Падре 21.195 -76.60278 P PPL CU 13 76838 23 America/Havana 2012-01-18
-3543498 Primero de Enero Primero de Enero Primero de Enero,Violeta 21.94694 -78.42833 P PPL CU 07 17934 19 America/Havana 2012-01-18
-3543961 Placetas Placetas Placetas 22.31194 -79.65333 P PPL CU 16 55408 198 America/Havana 2012-01-18
-3544091 Pinar del Río Pinar del Rio Pinar del Rio,Pinar del Rioko probintzia,Pinar del Río,Pinar-del'-Rio,Пинар дел Рио,Пинар-дель-Рио 22.4175 -83.69806 P PPLA CU 01 186990 55 America/Havana 2012-01-14
-3544393 Perico Perico Perico 22.76917 -81.01889 P PPL CU 03 24073 36 America/Havana 2012-01-18
-3544607 Pedro Betancourt Pedro Betancourt Corral Falso,Pedro Betancourt 22.72722 -81.29 P PPL CU 03 26761 24 America/Havana 2012-01-18
-3545040 Palmira Palmira Palmira 22.24167 -80.39028 P PPL CU 08 23078 67 America/Havana 2012-01-18
-3545064 Palma Soriano Palma Soriano Palma Soriano 20.21722 -75.99889 P PPL CU 15 102826 145 America/Havana 2012-02-02
-3545841 Nuevitas Nuevitas Nuevitas 21.54528 -77.26444 P PPL CU 05 54022 30 America/Havana 2012-01-18
-3545867 Nueva Gerona Nueva Gerona Nuehva-Kherona,Nueva Gerona,Нуэва-Херона 21.88333 -82.8 P PPL CU 04 20264 6 America/Havana 2012-01-18
-3545981 Niquero Niquero Niguero,Niquero 20.04306 -77.58278 P PPL CU 09 18771 7 America/Havana 2012-01-18
-3546434 Morón Moron Moron,Morón,Морон 22.10944 -78.6275 P PPL CU 07 66060 12 America/Havana 2012-01-18
-3546791 Moa Moa Minas de Hierro Moa,Moa,Puerto Cayo Moa,Моа 20.65694 -74.94028 P PPL CU 12 92852 12 America/Havana 2012-01-18
-3546894 Minas Minas Minas,Poblado Minas,Минас 21.48333 -77.61667 P PPL CU 05 20863 68 America/Havana 2012-01-18
-3547181 Melena del Sur Melena del Sur 22.78813 -82.15138 P PPLA2 CU 11 0 34 America/Havana 2010-07-17
-3547260 Media Luna Media Luna Media Luna 20.14194 -77.435 P PPL CU 09 16713 13 America/Havana 2012-01-18
-3547398 Matanzas Matanzas Matanzas,Матанзас 23.04111 -81.5775 P PPLA CU 03 146733 6 America/Havana 2012-01-14
-3547519 Martí Marti Hato Nuevo,Marti,Martí 22.9475 -80.92028 P PPL CU 03 13439 17 America/Havana 2012-01-18
-3547600 Mariel Mariel Mariel 22.9875 -82.75361 P PPL CU AR 28987 10 America/Havana 2012-01-18
-3547867 Manzanillo Manzanillo Mansanil'o,Manzanillo,Мансанильо 20.34333 -77.11667 P PPL CU 09 128188 16 America/Havana 2012-01-18
-3547930 Mantua Mantua Mantua 22.28889 -84.28444 P PPL CU 01 10797 30 America/Havana 2012-01-18
-3547976 Manicaragua Manicaragua Manicaragua,Poblado Manicaragua 22.14944 -79.97361 P PPL CU 16 41532 160 America/Havana 2012-01-18
-3548000 Manguito Manguito 22.58806 -80.91444 P PPL CU 03 3155 48 America/Havana 2006-01-17
-3548099 Manatí Manati Manati,Manatí 21.3125 -76.93778 P PPL CU 13 13278 7 America/Havana 2012-01-18
-3548529 Madruga Madruga Madruga 22.91139 -81.85611 P PPL CU MA 33798 163 America/Havana 2012-01-18
-3548993 Los Palacios Los Palacios Los Palacios 22.58722 -83.24861 P PPL CU 01 25703 46 America/Havana 2012-01-18
-3549463 Los Arabos Los Arabos 22.72806 -80.72139 P PPL CU 03 12504 79 America/Havana 2006-01-17
-3550598 Las Tunas Las Tunas Las Tunas,Las-Tunas,Tunas,Victoria,Victoria de las Tunas,Лас-Тунас 20.96167 -76.95111 P PPLA CU 13 203684 91 America/Havana 2012-01-14
-3551608 La Salud La Salud La Saljud,La Salud,Salud,Ла Салюд 22.87139 -82.42389 P PPL CU MA 28796 62 America/Havana 2012-01-18
-3553478 Havana Havana A Habana - La Habana,Abana,Gavana,Habana,Havana,Havanna,Havano,Hawana,Khavana,L'Avana,L'Havana,La Habana,La Havane,abana,ha wa na,habana,hafana,havana,hawana,Αβάνα,Гавана,Хавана,הוואנה,هافانا,هاوانا,ཧ་ཝན,ჰავანა,ሀቫና,ሀኖይ,ハバナ,哈瓦那,아바나 23.13302 -82.38304 P PPLC CU 02 2163824 41 America/Havana 2010-05-30
-3555907 Jovellanos Jovellanos Bemba,Jovallanos,Jovellanos 22.80444 -81.19444 P PPL CU 03 47164 44 America/Havana 2012-01-18
-3556077 Jobabo Jobabo Jaboba,Jobabo 20.96917 -76.29944 P PPLL CU 12 17804 93 America/Havana 2012-01-18
-3556168 Jiguaní Jiguani Jiguani,Jiguaní 20.36667 -76.42722 P PPL CU 09 41106 122 America/Havana 2012-01-18
-3556334 Jatibonico Jatibonico Jatibonico 21.94194 -79.17 P PPL CU 14 19644 78 America/Havana 2012-01-18
-3556351 Jaruco Jaruco Jaruco 23.04306 -82.01083 P PPL CU MA 20207 129 America/Havana 2012-01-18
-3556406 Jamaica Jamaica 22.97917 -82.17028 P PPL CU MA 15000 135 America/Havana 2011-03-06
-3556437 Jagüey Grande Jaguey Grande Jaguey Grande,Jagüey Grande 22.52694 -81.12861 P PPL CU 03 54363 16 America/Havana 2012-02-02
-3556969 Holguín Holguin Holguin,Holguín,Holquin,Ol'gin,hwlgyn,orugin,Ольгин,הולגין,オルギン 20.88722 -76.26306 P PPLA CU 12 319102 146 America/Havana 2012-01-14
-3557332 Guisa Guisa Guisa,Poblado Guisa 20.255 -76.53861 P PPL CU 09 18408 203 America/Havana 2012-01-18
-3557347 Güira de Melena Guira de Melena Gueira de Melena,Guira de Melena,Güira de Melena 22.79056 -82.50528 P PPL CU AR 69879 16 America/Havana 2012-01-18
-3557378 Güines Gueines Guines,Гуинес 22.83611 -82.02806 P PPLA2 CU 11 68935 65 America/Havana 2010-07-17
-3557678 Guara Guara 22.81 -82.20306 P PPLA3 CU 11 3547180 0 47 America/Havana 2010-07-17
-3557689 Guantánamo Guantanamo Guantanama,Guantanamo,Guantánamo,Guatanamo,guantanamo,Гуантанама,Гуантанамо,גואנטנמו,グアンタナモ 20.14444 -75.20917 P PPLA CU 10 272801 56 America/Havana 2012-01-14
-3557758 Guane Guane Guane 22.2025 -84.0875 P PPL CU 01 16548 22 America/Havana 2012-01-18
-3557801 Guanajay Guanajay Guanajay 22.92639 -82.6875 P PPL CU AR 25258 109 America/Havana 2012-01-18
-3557923 Guáimaro Guaimaro Guaimaro,Guasimaro,Guaymaro,Guáimaro 21.05 -77.35 P PPL CU 05 39358 81 America/Havana 2012-01-18
-3558032 Mañalich Manalich 22.81112 -82.14748 P PPLA3 CU 11 3547180 0 45 America/Havana 2010-07-17
-3558315 Gibara Gibara 21.10972 -76.13167 P PPL CU 12 27603 23 America/Havana 2006-01-17
-3558744 Fomento Fomento Fomento 22.10389 -79.72167 P PPL CU 14 19991 127 America/Havana 2012-02-02
-3558771 Florida Florida Florida,La Florida,Флорида 21.52472 -78.22583 P PPL CU 05 63007 68 America/Havana 2012-01-18
-3559235 Esperanza Esperanza Esperanza,La Esperanza 22.45 -80.1 P PPL CU 16 10462 98 America/Havana 2012-01-18
-3559318 Esmeralda Esmeralda Ehsmeral'da,Esmeralda,La Esmeralda,Эсмеральда 21.8525 -78.11694 P PPL CU 05 20274 37 America/Havana 2012-01-18
-3559416 Encrucijada Encrucijada Encrucijada 22.61694 -79.87111 P PPL CU 16 26155 51 America/Havana 2012-02-02
-3561408 El Cobre El Cobre Cobre,El Cobre,Santiago del Prado 20.04889 -75.94694 P PPL CU 15 4768 106 America/Havana 2012-01-18
-3561667 El Caney El Caney 21.3 -78.48333 P PPLL CU 05 4597 3 America/Havana 2006-01-17
-3562827 Cumanayagua Cumanayagua 22.14944 -80.20222 P PPL CU 08 38687 64 America/Havana 2006-01-17
-3562895 Cueto Cueto Cueto 20.64389 -75.93556 P PPL CU 12 26527 62 America/Havana 2012-02-02
-3563145 Cruces Cruces Cruces,Crues,Kruses,Las Cruces,Крусес 22.34111 -80.26667 P PPL CU 08 24906 97 America/Havana 2012-01-18
-3563317 Corralillo Corralillo Coralillo,Corralillo 22.98194 -80.58556 P PPL CU 16 51881 33 America/Havana 2012-01-18
-3563504 Contramaestre Contramaestre Contramaestre 20.29778 -76.24139 P PPL CU 15 70438 84 America/Havana 2012-01-18
-3563559 Consolación del Sur Consolacion del Sur Consolacion,Consolacion del Sur,Consolación,Consolación del Sur 22.50472 -83.51361 P PPL CU 01 69857 70 America/Havana 2012-01-18
-3563609 Condado Condado Condado,General Machado,Kondado,Кондадо 21.87667 -79.84028 P PPL CU 14 38248 36 America/Havana 2012-01-18
-3563843 Colón Colon Colon,Colón 22.71917 -80.90583 P PPL CU 03 63882 58 America/Havana 2012-01-18
-3563856 Colombia Colombia 20.98806 -77.42972 P PPL CU 13 20096 68 America/Havana 2006-01-17
-3564114 Cifuentes Cifuentes 22.645 -80.04611 P PPL CU 16 40142 72 America/Havana 2006-01-17
-3564124 Cienfuegos Cienfuegos Cienfuegos,S'enfuehgos,shienfuegosu,Сьенфуэгос,シエンフエーゴス 22.14611 -80.43556 P PPLA CU 08 186644 23 America/Havana 2012-01-14
-3564178 Ciego de Ávila Ciego de Avila Ciego de Avila,Ciego de Ávila 21.84 -78.76194 P PPLA CU 07 142027 49 America/Havana 2012-01-14
-3564394 Chambas Chambas Chambas 22.19278 -78.91361 P PPL CU 07 24114 43 America/Havana 2012-01-18
-3565432 Cárdenas Cardenas Cardenas,Cárdenas,Kardenas,Карденас 23.0375 -81.20472 P PPL CU 03 98515 9 America/Havana 2012-01-18
-3565768 Candelaria Candelaria Candelaria 22.74056 -82.96111 P PPL CU AR 12675 58 America/Havana 2012-01-18
-3565951 Campechuela Campechuela Campechuela 20.23417 -77.27889 P PPL CU 09 25069 16 America/Havana 2012-01-18
-3566054 Camajuaní Camajuani 22.48333 -79.75 P PPLL CU 16 35515 81 America/Havana 2006-01-17
-3566067 Camagüey Camaguey Camagueey,Camaguey,Camagüey,Kamaguehj,Kamaguej,Puerto Principe,kamaguei,Камагуей,Камагуэй,קמאגואיי,カマグエイ 21.38083 -77.91694 P PPLA CU 05 347562 102 America/Havana 2012-01-14
-3566134 Calimete Calimete Calimete,Poblado Calimete 22.53333 -80.90611 P PPL CU 03 23255 30 America/Havana 2012-01-18
-3566235 Calabazar de Sagua Calabazar de Sagua Calabazar,Calabazar de Sagua 22.64472 -79.89611 P PPL CU 16 10455 61 America/Havana 2012-01-18
-3566356 Caibarién Caibarien Caibairien,Caibarien,Caibarién 22.52056 -79.46694 P PPL CU 16 39140 3 America/Havana 2012-01-18
-3566573 Cabañas Cabanas 22.97583 -82.92194 P PPL CU AR 5894 25 America/Havana 2011-10-09
-3566603 Cabaiguán Cabaiguan Cabaiguan,Cabaiguán,Poblado Cabaiguan 22.07889 -79.49917 P PPL CU 14 44515 135 America/Havana 2012-01-18
-3567082 Bolondrón Bolondron 22.76333 -81.44694 P PPL CU 03 6778 53 America/Havana 2006-01-17
-3567546 Bejucal Bejucal Bejucal,Bejucall 22.92861 -82.38861 P PPL CU MA 18123 110 America/Havana 2012-01-18
-3567597 Bayamo Bayamo Bajamo,Bayamo,Баямо 20.37917 -76.64333 P PPL CU 09 192632 58 America/Havana 2012-01-18
-3567612 Bauta Bauta Bauta,Hoyo Colorado 22.98278 -82.54639 P PPL CU AR 45768 69 America/Havana 2012-01-18
-3567655 Batabanó Batabano 22.71639 -82.28806 P PPL CU MA 13832 11 America/Havana 2011-03-06
-3567823 Baraguá Baragua Baragua,Baraguá 21.69667 -78.63278 P PPL CU 07 15268 11 America/Havana 2012-02-28
-3567834 Baracoa Baracoa Baracoa,Barakoa,Баракоа 20.34667 -74.49583 P PPL CU 10 48362 12 America/Havana 2012-01-18
-3567869 Banes Banes Banes 20.9625 -75.71861 P PPL CU 12 53104 46 America/Havana 2012-02-02
-3567995 Bahía Honda Bahia Honda Bahia Honda,Bahía Honda 22.90361 -83.15917 P PPL CU AR 19834 20 America/Havana 2012-01-18
-3568312 Artemisa Artemisa Artemisa,Артемиса 22.81306 -82.76194 P PPLA CU AR 68073 46 America/Havana 2011-02-18
-3569136 Alquízar Alquizar Alquizar,Alquízar 22.80583 -82.58417 P PPL CU AR 15275 21 America/Havana 2012-01-18
-3569370 Alamar Alamar Alamar,Nueva Villa Real,Аламар 23.15833 -82.27694 P PPLX CU CU 02 100000 37 America/Havana 2012-01-18
-3569379 Alacranes Alacranes Alacranes,Alcranes,Alfonso XII 22.7675 -81.5675 P PPL CU 03 5843 30 America/Havana 2012-01-18
-3569546 Aguada de Pasajeros Aguada de Pasajeros Aguada,Aguada de Pasajeros 22.385 -80.85083 P PPL CU 08 23606 28 America/Havana 2012-01-18
-3569741 Abreus Abreus Abreu,Abreus 22.2775 -80.5675 P PPL CU 08 16711 21 America/Havana 2012-01-18
-3746938 Báguanos Baguanos 20.75167 -76.02694 P PPL CU 12 15176 84 America/Havana 2006-01-17
-3374117 Vila Nova Sintra Vila Nova Sintra Vila Nova Cinteus,Vila Nova Sintra,Vila de Nova Cintra,Vila de Nova Sintra 14.86667 -24.71667 P PPLA CV 02 0 460 Atlantic/Cape_Verde 2012-01-18
-3374120 Vila do Maio Vila do Maio Maio,Nossa Senhora da Luz,Port Ingles,Porto Inglez,Vila do Maio 15.13333 -23.21667 P PPLA CV 04 3009 2 Atlantic/Cape_Verde 2012-01-18
-3374121 Vila da Ribeira Brava Vila da Ribeira Brava Ribeira Brava,Vila da Ribeira Brava 16.61667 -24.3 P PPLA CV 22 5324 142 Atlantic/Cape_Verde 2012-02-28
-3374165 Tarrafal de São Nicolau Tarrafal de Sao Nicolau Tarrafal 16.56667 -24.36667 P PPLA CV 27 0 98 Atlantic/Cape_Verde 2012-02-12
-3374166 Tarrafal Tarrafal Tarrafal,Vila do Tarrafal 15.28333 -23.76667 P PPLA CV 20 6463 251 Atlantic/Cape_Verde 2012-01-18
-3374210 São Filipe Sao Filipe Vila Sao Filipe,Vila São Filipe,Vila de Sao Filippe,Vila de São Filippe 14.8961 -24.49556 P PPL CV 18 8189 103 Atlantic/Cape_Verde 2010-05-30
-3374211 São Domingos Sao Domingos San-Domingos,Сан-Домингос 15.02438 -23.5625 P PPLA CV 17 1850 327 Atlantic/Cape_Verde 2010-06-08
-3374218 Santa Maria Santa Maria Santa Maria 16.6 -22.9 P PPLA CV 08 17231 3 Atlantic/Cape_Verde 2012-01-18
-3374221 Santa Cruz Santa Cruz Santa Cruz 15.13333 -23.56667 P PPL CV 16 9488 45 Atlantic/Cape_Verde 2012-01-18
-3374235 Sal Rei Sal Rei Sal Rei,Sal-Rel 16.18333 -22.91667 P PPLA CV 01 2122 7 Atlantic/Cape_Verde 2012-01-18
-3374275 Ribeira Grande Ribeira Grande Ribeira Grande 17.18561 -25.07243 P PPLA CV 07 0 230 Atlantic/Cape_Verde 2012-02-28
-3374333 Praia Praia Cidade da Praia,Municipio da Praia,Município da Praia,Pragia,Praia,Praja,pei ya,peulaia,puraia,Πράγια,Прая,Праја,פראיה,ፕራያ,プライア,培亞,프라이아 14.92148 -23.50868 P PPLC CV 14 113364 0 15 Atlantic/Cape_Verde 2011-04-08
-3374336 Porto Novo Porto Novo Carvoeiros,Vila do Porto Novo,Vila do Pôrto Novo,alto de peixim 17.01969 -25.06471 P PPLA CV 21 5580 9 Atlantic/Cape_Verde 2012-02-12
-3374338 Porto dos Mosteiros Porto dos Mosteiros 15.03333 -24.33333 P PPLA CV 13 477 193 Atlantic/Cape_Verde 2006-01-17
-3374346 Ponta do Sol Ponta do Sol Sol Point 17.19942 -25.09192 P PPL CV 07 4064 35 Atlantic/Cape_Verde 2010-05-31
-3374351 Pombas Pombas Pombas,Vila das Pombas 17.15026 -25.02007 P PPLA CV 05 1818 191 Atlantic/Cape_Verde 2012-01-18
-3374360 Picos Picos Picos 15.0836 -23.63236 P PPLA CV 26 0 628 Atlantic/Cape_Verde 2012-02-12
-3374462 Mindelo Mindelo Mihdelo,Mindello,Mindelo,Mindelu,Минделу 16.89014 -24.98042 P PPL CV 11 70611 44 Atlantic/Cape_Verde 2010-05-02
-3374707 Cova Figueira Cova Figueira Cova Figueira 14.89054 -24.29343 P PPLA CV 24 0 589 Atlantic/Cape_Verde 2012-02-12
-3374725 Cidade Velha Cidade Velha Cidade Velha,Sidade Vel'ja,Velha,Сидаде Велья 14.91667 -23.61667 P PPLA CV 23 2148 22 Atlantic/Cape_Verde 2012-01-18
-3374794 Calheta Calheta 15.18333 -23.6 P PPLA CV 19 0 127 Atlantic/Cape_Verde 1993-12-21
-3374888 Assomada Assomada Assomada,Assumada 15.1 -23.68333 P PPLA CV 15 7927 391 Atlantic/Cape_Verde 2012-01-18
-8030386 Safende Safende 15.36895 -25.83984 P PPLL CV 4000 10 -9999 2012-03-27
-3513090 Willemstad Willemstad Vilemstad,Willemstad,billemseutadeu,u~iremusutaddo,wei lian si ta de,Вилемстад,וילמסטאד,ウィレムスタッド,威廉斯塔德,빌렘스타드 12.1084 -68.93354 P PPLC CW 125000 1 America/Curacao 2010-12-18
-3513221 Sint Michiel Liber Sint Michiel Liber 12.15 -68.98333 P PPL CW 00 5138 21 America/Curacao 2006-01-17
-3513445 Newport Newport Newport,Nieuwpoort 12.05 -68.81667 P PPL CW 00 1937 20 America/Curacao 2012-01-18
-3513761 Dorp Soto Dorp Soto Dorp Soto,Soto 12.26667 -69.1 P PPL CW 00 1987 41 America/Curacao 2012-01-18
-3513936 Barber Barber 12.28333 -69.06667 P PPL CW 00 2424 17 America/Curacao 2006-01-17
-2078127 Flying Fish Cove Flying Fish Cove Flying Fish Cove,The Settlement -10.42172 105.67912 P PPLC CX CX 00 500 135 Indian/Christmas 2011-09-24
-18918 Protaras Protaras Protaras,Протарас 35.0125 34.05833 P PPL CY 01 20230 9 Asia/Nicosia 2008-10-22
-145952 Ypsonas Ypsonas Ipsona,Ipsonas,Ypsonas,İpsona 34.68844 32.95743 P PPL CY 05 7348 94 Asia/Nicosia 2012-01-17
-145964 Yeri Yeri Geri,Yeri,Гери 35.1 33.41667 P PPL CY 04 7639 173 Asia/Nicosia 2012-01-17
-145971 Xylotymbou Xylotymbou Ksilodimbo,Ksilodimbu,Ksilotimbu,Xylotymbo,Xylotymbou,Xylotymvou 35.0172 33.74245 P PPL CY 03 3593 76 Europe/London 2012-03-28
-145981 Xeri Xeri Bilen,Seri,Tseri,Xeri 35.075 33.32083 P PPL CY 04 5498 263 Asia/Nicosia 2012-01-17
-145987 Voroklini Voroklini Vorglini,Voroglini,Voroklini 34.98333 33.65833 P PPL CY 03 3446 31 Asia/Nicosia 2012-01-17
-146015 Troulli Troulli Troulli,Troulloi,Trulli 35.03333 33.61667 P PPL CY 03 1078 113 Asia/Nicosia 2012-01-17
-146027 Trikomo Trikomo Iskele,Trikomo,İskele 35.2875 33.89167 P PPL CY 01 4490 33 Asia/Nicosia 2012-01-17
-146040 Tersephanou Tersephanou Tersefan,Tersefanou,Tersephanou,Tersofanu 34.85417 33.54583 P PPL CY 03 1018 58 Asia/Nicosia 2012-01-17
-146045 Tala Tala Dala,Dalâ,Tala 34.8375 32.43333 P PPL CY 06 1655 289 Asia/Nicosia 2012-01-17
-146069 Sotira Sotira Sotira 34.72917 32.8625 P PPL CY 05 4444 399 Asia/Nicosia 2012-01-17
-146105 Rizokarpaso Rizokarpaso Dipkarpas,Dipkarpaz,Dipkurpaz,Rizokarpaso,Rizokarpason,Rizokarpasso 35.6 34.375 P PPL CY 01 5215 145 Asia/Nicosia 2012-01-17
-146107 Pyrgos Pyrgos Pyrga,Pyrgos 34.74167 33.18333 P PPL CY 03 1407 83 Asia/Nicosia 2012-01-17
-146110 Pyla Pyla Pila,Pile,Pyla 35.02917 33.69167 P PPL CY 03 1434 102 Asia/Nicosia 2012-01-17
-146112 Psomolophou Psomolophou Psimolofou,Psomolafa,Psomolof,Psomolopho,Psomolophou,Somolof 35.0625 33.2625 P PPL CY 00 1415 316 Asia/Nicosia 2012-01-17
-146114 Psevdhas Psevdhas Pseftas,Psevda,Psevdas,Psevdhas 34.95 33.4625 P PPL CY 03 1070 160 Asia/Nicosia 2012-01-17
-146137 Polis Polis Poli,Polis,Polis Chrysochous 35.03667 32.42639 P PPL CY 06 1975 28 Asia/Nicosia 2012-01-17
-146150 Pissouri Pissouri Pissouri,Pissuri 34.67083 32.70833 P PPL CY 05 1078 117 Asia/Nicosia 2012-01-17
-146154 Phrenaros Phrenaros Frenaro,Frenaros,Frennaros,Phrenaros 35.04167 33.925 P PPL CY 01 3450 75 Asia/Nicosia 2012-01-17
-146175 Peyia Peyia Pegeia,Peya,Peyia 34.88333 32.38333 P PPL CY 06 2462 203 Asia/Nicosia 2012-01-17
-146183 Perivolia Perivolia Bahcalar,Bahceler,Bahçalar,Bahçeler,Bervolya,Perivolia,Perivolya 34.82917 33.58333 P PPL CY 03 1876 9 Asia/Nicosia 2012-01-17
-146187 Peristerona Peristerona Peristerona 35.13333 33.07917 P PPL CY 04 2190 218 Asia/Nicosia 2012-01-17
-146189 Pergamos Pergamos Beyarmudu,Pergama,Pergamos,Пергамос 35.04167 33.70833 P PPL CY 03 15000 85 Asia/Nicosia 2012-03-27
-146192 Pera Pera 35.03333 33.25 P PPL CY 04 1060 363 Asia/Nicosia 2006-01-17
-146198 Pelendria Pelendria Belendri,Pelendri,Pelendria 34.9 32.96667 P PPL CY 05 1237 962 Asia/Nicosia 2012-01-17
-146204 Parekklisha Parekklisha Parekklisha,Parekklisia,Pareklisa,Pareklisha,Pareklişa 34.74583 33.15833 P PPL CY 03 1382 125 Asia/Nicosia 2012-01-17
-146209 Paralimni Paralimni Paralim,Paralimni 35.0375 33.98333 P PPL CY 01 11836 81 Asia/Nicosia 2012-01-17
-146214 Paphos Paphos Baf,Gazibaf,Nea Pafos,Nea Paphos,Néa Páfos,Pafo,Pafos,Paphos,Páfos,Πάφος,Παφος,Пафос 34.76667 32.41667 P PPLA CY 06 35961 28 Asia/Nicosia 2010-09-13
-146216 Pano Polemidhia Pano Polemidhia Pano Polemidhia,Pano Polemidia,Pano Polemidya,Polemidia,Yukari Binatli,Yukari Polemitya,Yukarı Binatlı,Yukarı Polemitya 34.7 33 P PPL CY 05 3781 73 Asia/Nicosia 2012-01-17
-146225 Pano Dheftera Pano Dheftera Deftera Pano,Defterá Pano,Pano Deftera,Pano Dheftera,Yukari Deftera,Yukarı Deftera 35.07917 33.2625 P PPL CY 04 1983 291 Asia/Nicosia 2012-01-17
-146245 Pakhna Pakhna Pachna,Pahna,Pakhna 34.77917 32.79583 P PPL CY 05 1008 705 Asia/Nicosia 2012-01-17
-146268 Nicosia Nicosia An Leafcois,An Leafcóis,Lefkosa,Lefkosia,Lefkoşa,Leukosia,Nicosia,Nicosia - Leukosia,Nicosia - Λευκωσία,Nicosie,Nicòsia,Nicósia,Nikasia,Nikosia,Nikosie,Nikosija,Nikozia,Nikozija,Nikozio,Nikozja,Nikósie,Nikózia,ni ke xi ya,nikoshia,nikosia,nyqwsya,nyqwsyh,Λευκωσία,Никозия,Никозија,Никосия,Нікасія,Նիկոսիա,ניקוסיה,نيقوسيا,ሌፍኮዚያ,ニコシア,尼科西亚,니코시아 35.16667 33.36667 P PPLC CY 04 200452 149 Asia/Nicosia 2012-01-17
-146278 Moutayiaka Moutayiaka Moutayaka,Moutayiaka,Mouttagiaka,Mutayaka,Muthiyaka,Mutlayaka,Mutluyaka,Muttayaka 34.72083 33.1 P PPL CY 05 2818 73 Asia/Nicosia 2012-01-17
-146283 Mosphiloti Mosphiloti Mosfiloti,Mosphiloti 34.95 33.42917 P PPL CY 03 1158 242 Asia/Nicosia 2012-01-17
-146286 Morphou Morphou Guzelkoy,Guzelyurt,Güzelköy,Güzelyurt,Morfou,Morphou,Omorfo 35.19806 32.99139 P PPL CY 04 14833 48 Asia/Nicosia 2012-01-17
-146303 Mesoyi Mesoyi Mesogi,Mesoyi 34.81667 32.45833 P PPL CY 06 1249 328 Asia/Nicosia 2012-01-17
-146311 Meneou Meneou Meneou,Meneu,Menevi 34.85 33.57083 P PPL CY 03 1248 29 Asia/Nicosia 2012-01-17
-146347 Mammari Mammari 35.16667 33.2 P PPL CY 00 1122 223 Asia/Nicosia 2006-01-17
-146358 Lythrodhondas Lythrodhondas Litrodonda,Litrodontas,Litronda,Lythrodhonda,Lythrodhondas,Lythrodonda,Lythrodontas 34.95 33.29583 P PPL CY 04 2736 420 Asia/Nicosia 2012-01-17
-146362 Lymbia Lymbia Limbia,Limbya,Limya,Lymbia,Lympia,Olympia 35 33.4625 P PPL CY 04 2262 259 Asia/Nicosia 2012-01-17
-146371 Livadhia Livadhia Leivadia,Livadhia,Livadia,Livadya,Livatia,Livatya,Sazlikoy,Sazlıköy 34.95417 33.62917 P PPL CY 03 5329 16 Asia/Nicosia 2012-01-17
-146375 Liopetri Liopetri Leopetra,Liopetri,Liyopetri 35.00833 33.89167 P PPL CY 01 4005 45 Asia/Nicosia 2012-01-17
-146384 Limassol Limassol Lemesos,Lemessus,Leymosun,Limasol,Limassol,lymswl,rimasoru,Λεμεσός,Лимасол,Лімасол,לימסול,リマソール 34.675 33.03333 P PPLA CY 05 154000 14 Asia/Nicosia 2012-02-05
-146386 Leonarisso Leonarisso Leonariso,Leonarisso,Ziamet,Ziyamet 35.47083 34.14167 P PPL CY 01 1593 136 Asia/Nicosia 2012-01-17
-146391 Lefkoniko Lefkoniko Aksaray,Gecitkale,Geçitkale,Lefkoniko,Lefkonikon,Lefkonuk 35.25833 33.73333 P PPL CY 01 3187 63 Asia/Nicosia 2012-01-17
-146392 Lefka Lefka Lefka,Lefke,Lefke-Karadag,Lefke-Karadağ 35.11056 32.85056 P PPL CY 04 7835 125 Asia/Nicosia 2012-01-17
-146400 Larnaca Larnaca Chittim,Citium,Kition,Kitium,Kittim,Kozan,LCA,Lapithou,Larnaca,Larnaka,Salina,Salines,larnaka,lrnqh,rarunaka,Λάρνακα,Ларнака,לרנקה,لارناکا,ラルナカ 34.91667 33.62917 P PPLA CY 03 72000 13 Asia/Nicosia 2011-06-16
-146403 Lapithos Lapithos Gilderen,Gildirin,Lapithos,Lapitos,Lapta,Lâpta 35.3375 33.17917 P PPL CY 02 5215 94 Asia/Nicosia 2012-01-17
-146412 Kyrenia Kyrenia Girne,Keryneia,Kerynia,Kirenija,Kyrenia,Kérynia,Κερύνεια,Кирения 35.34167 33.31667 P PPLA CY 02 26701 5 Asia/Nicosia 2010-01-29
-146414 Kyperounda Kyperounda Ciperunda,Kiperunda,Kyperounda,Kyperounta 34.9375 32.975 P PPL CY 05 1560 1157 Asia/Nicosia 2012-01-17
-146438 Kornos Kornos Khorno,Korno,Kornos 34.92083 33.39167 P PPL CY 00 1943 346 Asia/Nicosia 2012-01-17
-146445 Kophinou Kophinou Bakracli,Bakraçli,Gecitkale,Geçitkale,Kato Kophinou,Kofinou,Kofinu,Kofunye,Kophino,Kophinou,Köfünye,Pano Kophina,Pano Kophinou,Páno Kophína 34.825 33.3875 P PPL CY 03 1372 152 Asia/Nicosia 2012-01-17
-146451 Kolossi Kolossi Burciu,Burclu,Burçiu,Burçlu,Kolos,Kolossi,Yunus 34.66865 32.93375 P PPL CY 03 3846 41 Asia/Nicosia 2012-03-28
-146455 Kokkini Trimithia Kokkini Trimithia Koccinno-Trimitya,Koccinotrimitya,Kocinodrimitya,Kokkinotrimithia,Kokkinotrimitya,Koçinodrimitya,Koççinno-Trimitya,Koççinotrimitya 35.15417 33.2 P PPL CY 04 3223 216 Asia/Nicosia 2006-01-17
-146461 Klirou Klirou Klirou,Kliru 35.02083 33.17917 P PPL CY 04 1623 444 Asia/Nicosia 2012-01-17
-146469 Kiti Kiti Cite,Kiti,Kition,Çite 34.85 33.575 P PPL CY 03 3278 27 Asia/Nicosia 2012-01-17
-146472 Kissonerga Kissonerga Cisonerga,Kisonerga,Kissonerga,Kissoneros 34.825 32.4 P PPL CY 06 1467 67 Asia/Nicosia 2012-01-17
-146490 Khlorakas Khlorakas Chloraka,Chlorakas,Hiloraka,Hloraka,Khlorakas,Klorakas 34.80417 32.40833 P PPL CY 06 3619 86 Asia/Nicosia 2012-01-17
-146515 Kato Pyrgos Kato Pyrgos Asagi Pirgo,Aşağı Pirgo,Kato Pirgo,Kato Pyrgos 35.18028 32.6825 P PPL CY 04 1170 23 Asia/Nicosia 2012-01-17
-146529 Kato Dheftera Kato Dheftera Asagi Deftera,Aşağı Deftera,Deftera,Dheftera,Kato Deftera,Kato Dheftera 35.0875 33.27917 P PPL CY 04 1706 267 Asia/Nicosia 2012-01-17
-146582 Kakopetria Kakopetria Kakopetria,Kakopetriya 34.99167 32.90417 P PPL CY 04 1255 641 Asia/Nicosia 2012-01-17
-146617 Famagusta Famagusta Ammochostos,Ammochostus,Ammokhostos,Famagosta,Famagouste,Famagusta,Gazi Magosa,Gazimagusa,Gazimağusa,Magosa,Αμμόχωστος,Фамагуста 35.125 33.95 P PPLA CY 01 42526 1 Asia/Nicosia 2010-01-29
-146628 Erimi Erimi Erimi 34.67917 32.91667 P PPL CY 05 1493 82 Asia/Nicosia 2012-01-17
-146639 Emba Emba Emba,Empa 34.80833 32.425 P PPL CY 06 4519 144 Asia/Nicosia 2012-01-17
-146654 Dhromolaxia Dhromolaxia Dromolaksia,Dromolaxia,Mor Menekshe,Mormenekse,Mormenekşe 34.87551 33.58684 P PPL CY 03 5240 31 Asia/Nicosia 2008-11-10
-146661 Dherinia Dherinia Derinia,Derinkoy,Derinköy,Derinya,Deryneia,Dherinia 35.06667 33.95833 P PPL CY 01 5161 68 Asia/Nicosia 2012-01-17
-146666 Dhali Dhali Dali,Dhali,Idalion 35.025 33.42083 P PPL CY 04 6085 222 Asia/Nicosia 2012-01-17
-146692 Ayios Tykhonas Ayios Tykhonas Agios Tychon,Ayandihona,Ayios Tihonos,Ayithona 34.725 33.14167 P PPL CY 03 2204 64 Asia/Nicosia 2006-01-17
-146748 Ayia Napa Ayia Napa Agia Napa,Agija Napa,Ajja-Napa,Aya Napa,Ayia Napa,Aynapa,Агия Напа,Айя-Напа,איה נאפה 34.98213 34.00183 P PPL CY 01 2798 4 Asia/Nicosia 2010-10-07
-146761 Avgorou Avgorou Avgora,Avgoro,Avgorou,Avgoru 35.03688 33.84029 P PPL CY 01 4177 42 Asia/Nicosia 2012-01-17
-146767 Athna Athna Achna,Ahna,Akhna,Athna,Duzce,Düzce 35.05833 33.78333 P PPLQ CY 01 2043 53 Asia/Nicosia 2012-01-17
-146768 Athienou Athienou Athiaenou,Athienou,Athiænou,Atienu,Atiyenu,Kiracikoy,Kiracıköy 35.06667 33.54167 P PPL CY 03 4444 138 Asia/Nicosia 2012-01-17
-146770 Astromeritis Astromeritis Astromerit,Astromeriti,Astromeritia,Astromeritis 35.14167 33.0375 P PPL CY 04 2463 159 Asia/Nicosia 2012-01-17
-146791 Ergates Ergates Argadez,Argataes,Argates,Argatoes,Argatœs,Argátaes,Ergates 35.05417 33.24583 P PPL CY 04 1656 331 Asia/Nicosia 2012-01-17
-146796 Aradhippou Aradhippou Aradhippou,Aradip,Aradippou,Aradippu 34.95 33.59167 P PPL CY 03 13349 56 Asia/Nicosia 2012-01-17
-146797 Aradhiou Aradhiou Aradhiou,Aradiou,Aradyu,Aratyu,Aredhiou,Arediu,Aredyu 35.04583 33.19583 P PPL CY 04 1129 367 Asia/Nicosia 2012-01-17
-146834 Alambra Alambra Alambra,Alampra 34.99167 33.4 P PPL CY 04 1192 245 Asia/Nicosia 2012-01-17
-146842 Akhyritou Akhyritou Acheritou,Agratur,Aharida,Aharitu,Ahiritu,Akhyritou,Aseritu,Ağratur,Aşeritu,Guvercinlik,Güvercinlik,Kouverjinlik 35.1 33.8625 P PPL CY 01 1721 23 Asia/Nicosia 2012-01-17
-146850 Akaki Akaki Akaca,Akacha,Akaki,Akácha 35.13333 33.12917 P PPL CY 04 2769 209 Asia/Nicosia 2012-01-17
-414384 Meniko Meniko Meniko,Menikon 35.10833 33.14167 P PPL CY 04 1023 242 Asia/Nicosia 2012-01-19
-3061284 Dvůr Králové nad Labem Dvur Kralove nad Labem Dvur Kralove,Dvŭr Králové,Koniginhof an der Elbe,Königinhof an der Elbe 50.43172 15.81402 P PPL CZ 82 16150 300 Europe/Prague 2008-10-17
-3061293 Zvole Zvole Swoll 49.93466 14.41769 P PPL CZ 88 1114 369 Europe/Prague 2006-11-25
-3061321 Žulová Zulova Friedeberg,Frydberk,Frydeberk,Frýdberk,Frýdeberk,Zaludova,Žaludová 50.30933 17.09871 P PPL CZ 84 1332 358 Europe/Prague 2006-11-25
-3061327 Zubří Zubri 49.46603 18.09249 P PPL CZ 90 5409 358 Europe/Prague 2006-11-25
-3061332 Zruč nad Sázavou Zruc nad Sazavou Zruc,Zruč 49.7401 15.10606 P PPL CZ 88 4925 337 Europe/Prague 2006-11-25
-3061344 Znojmo Znojmo Znaim,Znain,Znaym,Znoimium,Znojmo,Зноймо 48.8555 16.0488 P PPL CZ 78 35280 294 Europe/Prague 2010-01-29
-3061350 Žlutice Zlutice Luditz 50.09192 13.16297 P PPL CZ 81 2817 520 Europe/Prague 2006-11-25
-3061351 Žlutava Zlutava 49.19976 17.49037 P PPL CZ 90 1001 281 Europe/Prague 2006-11-25
-3061360 Zlonice Zlonice Zlonitz 50.2875 14.09214 P PPL CZ 88 2232 224 Europe/Prague 2006-11-25
-3061368 Zliv Zliv Zliw 49.06608 14.36613 P PPL CZ 79 3656 391 Europe/Prague 2006-11-25
-3061369 Zlín Zlin Zlin,Zlín,Ζλιν,Злин,Зьлін 49.22665 17.66633 P PPLX CZ 90 79177 225 Europe/Prague 2007-02-17
-3061370 Zlín Zlin Gottvoldov,Gottwald,Gottwaldov,Zlin,Zlín,Злин 49.21667 17.66667 P PPLA CZ 90 78759 323 Europe/Prague 2012-01-19
-3061378 Zlechov Zlechov 49.07396 17.37938 P PPL CZ 90 1567 204 Europe/Prague 2006-11-25
-3061379 Žleby Zleby Zleb,Žleb 49.88958 15.48853 P PPL CZ 88 1267 257 Europe/Prague 2006-11-25
-3061393 Zlaté Hory Zlate Hory Cukmantl,Zuckmantel 50.2638 17.39602 P PPL CZ 84 4446 409 Europe/Prague 2006-11-25
-3061416 Žiželice Zizelice Zizelic,Žiželic 50.13192 15.3932 P PPL CZ 88 1322 215 Europe/Prague 2006-11-25
-3061431 Žitenice Zitenice Schudenitz,Schüdenitz 50.55528 14.15665 P PPL CZ 89 1407 227 Europe/Prague 2006-11-25
-3061437 Žirovnice Zirovnice Serowitz 49.25318 15.18824 P PPL CZ 80 3085 564 Europe/Prague 2006-11-25
-3061462 Žihle Zihle Scheles 50.04491 13.37502 P PPL CZ 87 1419 442 Europe/Prague 2006-11-25
-3061472 Židlochovice Zidlochovice Gross Seelowitz,Groß Seelowitz,Ziolochovice 49.03952 16.61881 P PPL CZ 78 3075 194 Europe/Prague 2009-03-28
-3061534 Žeravice Zeravice Zerawitz 49.02288 17.23726 P PPL CZ 78 1043 268 Europe/Prague 2006-11-25
-3061556 Želiv Zeliv Seelau 49.52984 15.22181 P PPL CZ 80 1152 407 Europe/Prague 2006-11-25
-3061562 Železný Brod Zelezny Brod Eisenbrod 50.64274 15.25408 P PPL CZ 83 6442 282 Europe/Prague 2008-11-28
-3061563 Železnice Zeleznice Eisenstadtl 50.47274 15.38459 P PPL CZ 83 1094 322 Europe/Prague 2006-11-25
-3061567 Železná Ruda Zelezna Ruda Eisenstein,Eisenstein Markt,Markt Eisenstein,Mestys Zelezna Ruda,Městys Železná Ruda,Zolezna Ruda,Žolezná Ruda 49.13743 13.2352 P PPL CZ 87 2096 777 Europe/Prague 2008-11-28
-3061577 Želetava Zeletava Scheletau 49.14187 15.673 P PPL CZ 80 1573 575 Europe/Prague 2006-11-25
-3061578 Želešice Zelesice Schollschitz,Schöllschitz 49.11689 16.58137 P PPL CZ 78 1284 206 Europe/Prague 2006-11-25
-3061588 Zeleneč Zelenec 50.13362 14.6607 P PPL CZ 88 1615 257 Europe/Prague 2006-11-25
-3061625 Žebrák Zebrak 49.87574 13.89735 P PPL CZ 88 1909 343 Europe/Prague 2006-11-25
-3061637 Zdounky Zdounky Zdounek 49.22771 17.31899 P PPL CZ 90 2055 232 Europe/Prague 2006-11-25
-3061657 Zdíkov Zdikov Gross Zdikau,Gross Ždikau 49.08456 13.69738 P PPL CZ CZ 79 1616 731 Europe/Prague 2006-11-25
-3061658 Zdice Zdice Zditz 49.91207 13.97747 P PPL CZ 88 3816 263 Europe/Prague 2006-11-25
-3061659 Zdiby Zdiby 50.16799 14.45118 P PPL CZ 88 1314 292 Europe/Prague 2006-11-25
-3061692 Žďár nad Sázavou Druhy Zd'ar nad Sazavou Druhy Saar Schloss,Zd'ar nad Sazavou Druhy,Žďár nad Sázavou Druhy 49.58726 15.93216 P PPLX CZ 80 23996 578 Europe/Prague 2012-01-19
-3061695 Žďár nad Sázavou Zd'ar nad Sazavou Mesto Zd'ar,Mesto Zd'ar a Zamek Zd'ar,Město Žďar,Město Žďár,Město Žďár a Zámek Žďár,Saar,Zd'ar,Žďár 49.56263 15.93924 P PPL CZ CZ 80 24030 580 Europe/Prague 2006-11-25
-3061709 Žďár Zd'ar 50.54366 15.08034 P PPL CZ 88 1181 239 Europe/Prague 2006-11-25
-3061729 Ždánice Zdanice Steinitz 49.06729 17.02751 P PPL CZ 78 2721 223 Europe/Prague 2006-11-25
-3061734 Zbýšov Zbysov Zbeschau 49.15524 16.34951 P PPL CZ CZ 78 3890 351 Europe/Prague 2006-11-25
-3061748 Zbůch Zbuch Zwug 49.6784 13.22564 P PPL CZ CZ 87 1890 358 Europe/Prague 2006-11-25
-3061750 Zbraslavice Zbraslavice Zbraslawitz 49.81179 15.18319 P PPL CZ 88 1378 504 Europe/Prague 2006-11-25
-3061754 Zbraslav Zbraslav Zbraslau 49.22155 16.29415 P PPL CZ 78 1211 464 Europe/Prague 2006-11-25
-3061768 Zborovice Zborovice Zborowitz 49.24889 17.28464 P PPL CZ 90 1619 252 Europe/Prague 2006-11-25
-3061780 Zbiroh Zbiroh Zbirow 49.86024 13.77262 P PPL CZ 87 2625 430 Europe/Prague 2006-11-25
-3061816 Zátor Zator Seifersdorf 50.03413 17.59296 P PPL CZ 00 1169 410 Europe/Prague 2006-11-25
-3061822 Žatec Zatec Saaz,Zatec,Zhatec,jatetsu,Žatec,Жатец,ジャテツ 50.32717 13.54577 P PPL CZ 89 19607 243 Europe/Prague 2008-11-28
-3061830 Zastávka Zastavka Bozi Pozehnani,Boži Požehnání,Segen Gottes,Zastavka u Brna,Zastávka u Brna 49.188 16.3631 P PPL CZ 78 2405 319 Europe/Prague 2006-11-25
-3061833 Zašová Zasova Zaschau 49.4741 18.04436 P PPL CZ 90 2790 335 Europe/Prague 2006-11-25
-3061834 Zásmuky Zasmuky Zasmuk,Zásmuk 49.9547 15.03058 P PPL CZ 88 1763 346 Europe/Prague 2006-11-25
-3061867 Žandov Zandov Sandau 50.71394 14.39623 P PPL CZ 00 1907 258 Europe/Prague 2006-11-25
-3061888 Žamberk Zamberk Senftenberg 50.08601 16.46738 P PPL CZ 86 6082 425 Europe/Prague 2006-11-25
-3061949 Zákupy Zakupy Reichstadt,Zakupy,Zákupy 50.68475 14.64522 P PPL CZ 00 2792 272 Europe/Prague 2007-05-15
-3061970 Zaječov Zajecov Zajecow,Zaječow,Zajicov,Zajícov 49.77435 13.84072 P PPL CZ 88 1341 456 Europe/Prague 2006-11-25
-3061979 Zaječí Zajeci Saitz 48.87295 16.76646 P PPL CZ 78 1435 241 Europe/Prague 2006-11-25
-3062011 Záhorovice Zahorovice Zahorowitz 49.02266 17.77922 P PPL CZ 90 1058 249 Europe/Prague 2006-11-25
-3062081 Zadní Mostek Zadni Mostek 50.4967 15.69804 P PPL CZ 82 1350 460 Europe/Prague 2011-03-07
-3062099 Žacléř Zacler Schatzlar 50.66329 15.91063 P PPL CZ 82 3613 615 Europe/Prague 2006-11-25
-3062105 Zabrušany Zabrusany Sobrusan 50.60495 13.78748 P PPL CZ 89 1108 211 Europe/Prague 2006-11-25
-3062111 Zábřeh Zabreh Azbreh,Hohenstadt,Zebreh 49.8826 16.87223 P PPL CZ 84 14360 304 Europe/Prague 2006-11-25
-3062156 Žabčice Zabcice Zabcic,Žabčic 49.0116 16.60257 P PPL CZ 78 1492 181 Europe/Prague 2006-11-25
-3062184 Vyšší Brod Vyssi Brod Hohenfurth 48.61598 14.31183 P PPL CZ 79 2628 578 Europe/Prague 2008-11-28
-3062213 Vysoké nad Jizerou Vysoke nad Jizerou Hochstadt 50.68559 15.40152 P PPL CZ 00 1363 699 Europe/Prague 2006-11-25
-3062214 Vysoké Mýto Vysoke Myto Hohenmauth,Vyskoe Myto 49.9532 16.16169 P PPL CZ 86 12293 291 Europe/Prague 2006-11-25
-3062257 Vysočany Vysocany Vysocan,Vysocany,Vysočan,Vysočany,Wysocan,Wysočan 50.11667 14.51667 P PPLX CZ 52 11646 256 Europe/Prague 2010-08-10
-3062283 Vyškov Vyskov Vyshkov,Vyskov,Vyškov,Wischau,Вышков 49.27747 16.99897 P PPL CZ 78 22265 254 Europe/Prague 2010-01-29
-3062339 Vsetín Vsetin Vsetin,Wsetin,Wszetyn,Всетин 49.33871 17.99619 P PPL CZ 90 28575 346 Europe/Prague 2010-01-29
-3062342 Všetaty Vsetaty Wschetat 50.28187 14.59297 P PPL CZ 88 2019 181 Europe/Prague 2006-11-25
-3062347 Všestary Vsestary 50.2566 15.75983 P PPL CZ 88 1537 270 Europe/Prague 2006-11-25
-3062351 Všeruby Vseruby Wscherau 49.84167 13.22943 P PPL CZ 87 1017 427 Europe/Prague 2006-11-25
-3062356 Všenory Vsenory 49.92883 14.30392 P PPL CZ 88 1438 237 Europe/Prague 2006-11-25
-3062360 Všemina Vsemina Wschemina 49.281 17.87682 P PPL CZ 90 1061 385 Europe/Prague 2006-11-25
-3062405 Vroutek Vroutek Rudig,Rüdig 50.17999 13.37986 P PPL CZ 89 1898 332 Europe/Prague 2006-11-25
-3062416 Vřesina Vresina 49.94581 18.19005 P PPL CZ 00 1334 244 Europe/Prague 2006-11-25
-3062417 Vřesina Vresina Wrzessin 49.82418 18.12569 P PPL CZ CZ 00 2410 259 Europe/Prague 2006-11-25
-3062419 Vrdy Vrdy Wrdy 49.92153 15.47243 P PPL CZ 88 3062 226 Europe/Prague 2006-11-25
-3062439 Vrchlabí Vrchlabi Hohenelbe 50.62697 15.60937 P PPL CZ 82 12898 487 Europe/Prague 2008-11-28
-3062444 Vrbovec Vrbovec Urbau 48.79978 16.10061 P PPL CZ 78 1103 214 Europe/Prague 2006-11-25
-3062446 Vrbno pod Pradědem Vrbno pod Pradedem Vrbno,Wurbenthal,Würbenthal 50.12095 17.38316 P PPL CZ 00 6072 528 Europe/Prague 2006-11-25
-3062470 Vrbice Vrbice 48.91508 16.89779 P PPL CZ 78 1121 294 Europe/Prague 2006-11-25
-3062477 Vrbátky Vrbatky 49.50805 17.19994 P PPL CZ 84 1562 211 Europe/Prague 2006-11-25
-3062497 Vratimov Vratimov Rattimau 49.76995 18.31015 P PPL CZ 00 6378 246 Europe/Prague 2006-11-25
-3062511 Vranovice Vranovice 48.966 16.6066 P PPL CZ 78 1934 176 Europe/Prague 2006-11-25
-3062533 Vrané nad Vltavou Vrane nad Vltavou Vrane,Vrané,Wran 49.93585 14.37706 P PPL CZ 88 1922 232 Europe/Prague 2006-11-25
-3062545 Vracov Vracov 48.97523 17.211 P PPL CZ 78 4491 195 Europe/Prague 2006-11-25
-3062559 Votice Votice Wotitz 49.64013 14.63809 P PPL CZ 88 4461 498 Europe/Prague 2006-11-25
-3062571 Volyně Volyne Wolin 49.16578 13.88624 P PPL CZ CZ 79 3190 463 Europe/Prague 2006-11-25
-3062593 Volary Volary Wallern 48.90881 13.88657 P PPL CZ 79 4059 762 Europe/Prague 2008-11-28
-3062628 Vojkovice Vojkovice 49.05138 16.6082 P PPL CZ 78 1032 184 Europe/Prague 2006-11-25
-3062642 Vodňany Vodnany Wodnan,Wodňan 49.14789 14.17513 P PPL CZ 79 6687 405 Europe/Prague 2006-11-25
-3062658 Vnorovy Vnorovy 48.93096 17.3505 P PPL CZ 78 3062 186 Europe/Prague 2006-11-25
-3062685 Vlkoš Vlkos 48.9896 17.16356 P PPL CZ 78 1052 193 Europe/Prague 2006-11-25
-3062708 Vlčnov Vlcnov Wolfsdorf 49.57866 17.95458 P PPL CZ 00 3039 342 Europe/Prague 2010-07-03
-3062710 Vlčnov Vlcnov Wltschnau 49.0099 17.58183 P PPL CZ CZ 90 3037 223 Europe/Prague 2006-11-25
-3062759 Vlašim Vlasim Wlaschim 49.70632 14.89881 P PPL CZ 88 12225 370 Europe/Prague 2006-11-25
-3062773 Vladislav Vladislav Wladislau 49.21017 15.9883 P PPL CZ 80 1225 388 Europe/Prague 2006-11-25
-3062775 Vlachovo Březí Vlachovo Brezi Wallischbirken,Wällischbirken 49.08135 13.95842 P PPL CZ 79 1672 552 Europe/Prague 2006-11-25
-3062777 Vlachovice Vlachovice Vlahovice,Wlachowitz 49.12377 17.94001 P PPL CZ 90 1532 345 Europe/Prague 2006-11-25
-3062783 Vizovice Vizovice Wisowitz 49.22287 17.85455 P PPL CZ 90 4518 290 Europe/Prague 2006-11-25
-3062811 Vítkov Vitkov Wigstadtl 49.77445 17.74941 P PPL CZ 00 6202 470 Europe/Prague 2006-11-25
-3062835 Višňové Visnove Visnova,Višňová 48.98241 16.15025 P PPL CZ 78 1138 338 Europe/Prague 2006-11-25
-3062836 Višňova Visnova Weigsdorf 50.96663 15.02495 P PPL CZ 83 1319 234 Europe/Prague 2006-11-25
-3062857 Vintířov Vintirov Wintersgrun,Wintersgrün 50.23382 12.71748 P PPL CZ 81 1132 455 Europe/Prague 2006-11-25
-3062866 Viničné Šumice Vinicne Sumice 49.21358 16.82541 P PPL CZ 78 1065 293 Europe/Prague 2006-11-25
-3062883 Vinařice Vinarice Winaritz,Wínařitz 50.17585 14.09106 P PPL CZ CZ 88 1739 353 Europe/Prague 2006-11-25
-3062888 Vimperk Vimperk Winterberg 49.05857 13.78286 P PPL CZ 79 0315 8043 694 659 Europe/Prague 2007-09-30
-3062897 Vilémov Vilemov Woelmsdorf,Wolmsdorf,Wölmsdorf 50.99054 14.33531 P PPL CZ 89 1008 335 Europe/Prague 2006-11-25
-3062899 Vilémov Vilemov Wilimow 49.81566 15.53584 P PPL CZ CZ 80 1029 356 Europe/Prague 2006-11-25
-3062902 Vilémov Vilemov 49.53578 15.38347 P PPL CZ 80 1014 598 Europe/Prague 2011-03-07
-3062909 Vikýřovice Vikyrovice Weikersdorf 49.97792 17.01234 P PPL CZ 84 2064 336 Europe/Prague 2006-11-25
-3062924 Vidnava Vidnava Weidenau 50.37234 17.18626 P PPL CZ 84 1425 233 Europe/Prague 2006-11-25
-3062934 Vidče Vidce Witsche 49.44151 18.09473 P PPL CZ 90 1614 380 Europe/Prague 2006-11-25
-3062965 Veverská Bítýška Veverska Bityska Bittischka 49.27591 16.43686 P PPL CZ 78 2842 235 Europe/Prague 2006-11-25
-3062986 Větřní Vetrni Wettern 48.77425 14.28616 P PPL CZ 79 3870 601 Europe/Prague 2006-11-25
-3063001 Vestec Vestec Westetz 49.9805 14.50487 P PPL CZ 88 1143 331 Europe/Prague 2006-11-25
-3063032 Veselí nad Moravou Veseli nad Moravou 48.95363 17.37648 P PPL CZ 78 12081 170 Europe/Prague 2006-11-25
-3063033 Veselí nad Lužnicí Veseli nad Luznici Mezimosti,Mezimosti nad Nezarkou,Mezimostí,Mezimostí nad Nežárkou,Weseli 49.1843 14.69734 P PPL CZ 79 6534 430 Europe/Prague 2006-11-25
-3063082 Veřovice Verovice Wernsdorf 49.53916 18.11425 P PPL CZ 00 1936 415 Europe/Prague 2006-11-25
-3063083 Věrovany Verovany Wierowan 49.46109 17.28795 P PPL CZ 84 1306 203 Europe/Prague 2006-11-25
-3063091 Verneřice Vernerice Wernstadt 50.66114 14.30114 P PPL CZ 89 1083 497 Europe/Prague 2006-11-25
-3063103 Vendryně Vendryne Wedrynie,Wędrynie 49.66662 18.71307 P PPL CZ 00 3918 357 Europe/Prague 2006-11-25
-3063109 Velvary Velvary Welwarn 50.28152 14.23616 P PPL CZ 88 2934 191 Europe/Prague 2006-11-25
-3063111 Veltrusy Veltrusy Weltrus 50.27046 14.32857 P PPL CZ 88 1632 176 Europe/Prague 2006-11-25
-3063112 Veltruby Veltruby Weltrub 50.07059 15.18454 P PPL CZ 88 1301 192 Europe/Prague 2006-11-25
-3063124 Velký Újezd Velky Ujezd Gross Aujezd 49.57858 17.48347 P PPL CZ 84 1068 372 Europe/Prague 2006-11-25
-3063127 Velký Týnec Velky Tynec Gross Teinitz 49.54994 17.33359 P PPL CZ 84 2150 235 Europe/Prague 2008-05-16
-3063131 Velký Šenov Velky Senov Gross Schonau in Bohmen,Gross Schönau in Böhmen,Gross-Schonau,Gross-Schönau,Senov,Šenov 50.99078 14.37428 P PPL CZ 89 1978 359 Europe/Prague 2006-11-25
-3063141 Velký Osek Velky Osek Gross Wosek 50.09867 15.18629 P PPL CZ 88 2150 191 Europe/Prague 2006-11-25
-3063171 Velký Beranov Velky Beranov Beranov,Gross Beranau 49.40504 15.667 P PPL CZ 80 1269 530 Europe/Prague 2006-11-25
-3063182 Velké Svatoňovice Velke Svatonovice Gross Schwadowitz 50.53164 16.02853 P PPL CZ 00 1125 372 Europe/Prague 2006-11-25
-3063189 Velké Přílepy Velke Prilepy 50.1605 14.31447 P PPL CZ 88 1105 280 Europe/Prague 2006-11-25
-3063190 Velké Poříčí Velke Porici Gross Poric,Gross Pořič 50.46177 16.18931 P PPL CZ 00 2275 360 Europe/Prague 2006-11-25
-3063191 Velké Popovice Velke Popovice Grosspopowitz 49.92252 14.63934 P PPL CZ 88 1926 419 Europe/Prague 2006-11-25
-3063192 Velké Pavlovice Velke Pavlovice 48.90469 16.81605 P PPL CZ 78 3078 182 Europe/Prague 2006-11-25
-3063193 Velké Opatovice Velke Opatovice Gross Opatowitz 49.61237 16.67947 P PPL CZ 78 4169 379 Europe/Prague 2006-11-25
-3063195 Velké Němčice Velke Nemcice Nemcice,Němčice 48.99168 16.67208 P PPL CZ 78 1654 183 Europe/Prague 2006-11-25
-3063196 Velké Meziříčí Velke Mezirici Gross-Meseritsch,Grossmeseritsch,Großmeseritsch,Velke Mezerici,Velké Mezeříčí 49.35522 16.01224 P PPL CZ 80 0615 11753 426 Europe/Prague 2011-04-17
-3063197 Velké Losiny Velke Losiny Gross-Ullersdorf,Grossullersdorf 50.03197 17.04058 P PPL CZ 84 2862 396 Europe/Prague 2008-11-28
-3063202 Velké Karlovice Velke Karlovice Gross Karlowitz 49.36064 18.28355 P PPL CZ 90 2651 510 Europe/Prague 2006-11-25
-3063205 Velké Hoštice Velke Hostice Gross Hoschutz,Gross Hoschütz 49.93609 17.9738 P PPL CZ 00 1675 250 Europe/Prague 2006-11-25
-3063208 Velké Heraltice Velke Heraltice Gross Herrlitz 49.97493 17.72879 P PPL CZ 00 1613 348 Europe/Prague 2006-11-25
-3063209 Velké Hamry Velke Hamry Ober Hammer,Unter Hammer 50.71373 15.31539 P PPL CZ 83 2754 411 Europe/Prague 2006-11-25
-3063215 Velké Březno Velke Brezno Gross Priesen 50.6627 14.14174 P PPL CZ 89 1957 148 Europe/Prague 2006-11-25
-3063217 Velké Bílovice Velke Bilovice 48.84929 16.89227 P PPL CZ 78 3727 178 Europe/Prague 2006-11-25
-3063238 Velká Polom Velka Polom Gross Pohlom 49.86359 18.09331 P PPL CZ 00 1597 334 Europe/Prague 2006-11-25
-3063240 Velká nad Veličkou Velka nad Velickou Velka,Velká 48.88257 17.5206 P PPL CZ 78 3149 286 Europe/Prague 2006-11-25
-3063261 Velká Hleďsebe Velka Hled'sebe Gross-Sichdichfur,Gross-Sichdichfür,Siehdichfur,Siehdichfür 49.96151 12.66763 P PPL CZ CZ 81 2164 558 Europe/Prague 2006-11-25
-3063263 Velká Dobrá Velka Dobra 50.10964 14.0698 P PPL CZ 88 1264 405 Europe/Prague 2006-11-25
-3063271 Velká Bystřice Velka Bystrice Gross Wisternitz 49.5948 17.36544 P PPL CZ 84 2913 253 Europe/Prague 2008-07-08
-3063276 Velká Bíteš Velka Bites Gross Bittesch 49.28838 16.22742 P PPLA4 CZ 80 0615 4843 477 Europe/Prague 2011-04-17
-3063286 Velim Velim Welim 50.05965 15.10711 P PPL CZ 88 2021 207 Europe/Prague 2006-11-25
-3063307 Velešín Velesin 48.82949 14.46252 P PPL CZ 79 4023 554 Europe/Prague 2006-11-25
-3063318 Velemín Velemin Wellemin 50.53898 13.97675 P PPL CZ 89 1427 291 Europe/Prague 2006-11-25
-3063321 Velehrad Velehrad Welehrad 49.10543 17.39426 P PPL CZ 90 1323 212 Europe/Prague 2006-11-25
-3063333 Vejprty Vejprty Weipert 50.49232 13.03212 P PPL CZ 89 3273 724 Europe/Prague 2006-11-25
-3063334 Vejprnice Vejprnice Weipernitz 49.72988 13.27628 P PPL CZ 87 2626 331 Europe/Prague 2006-11-25
-3063349 Včelná Vcelna 48.92373 14.45383 P PPL CZ 79 1504 442 Europe/Prague 2006-11-25
-3063375 Varnsdorf Varnsdorf Warnsdorf 50.91154 14.61824 P PPL CZ 89 15895 339 Europe/Prague 2008-11-28
-3063385 Vápenná Vapenna Setzdorf,Zighartice 50.28338 17.09762 P PPL CZ 84 1271 409 Europe/Prague 2006-11-25
-3063400 Vamberk Vamberk Wamberg 50.11756 16.29067 P PPL CZ 00 4768 319 Europe/Prague 2006-11-25
-3063409 Valtice Valtice Feldsberg,Valtice,valtice,vu~aruchitsu~e,ヴァルチツェ 48.74069 16.75499 P PPL CZ 78 3656 193 Europe/Prague 2007-02-18
-3063436 Valdice Valdice 50.5835 15.41248 P PPL CZ 83 1459 433 Europe/Prague 2011-03-07
-3063437 Valdice Valdice Karthaus-Walditz,Kartouzy-Valdice,Valdice-Kartouzy 50.45501 15.38488 P PPL CZ CZ 00 1474 311 Europe/Prague 2006-11-25
-3063447 Valašské Meziříčí Valasske Mezirici Mezirzhichi,Walachison Mesiritsch,Wallachisch Meseritsch,Мезиржичи 49.47181 17.97113 P PPL CZ 90 27481 311 Europe/Prague 2011-02-22
-3063448 Valašské Klobouky Valasske Klobouky Klobouk 49.14064 18.0076 P PPL CZ 90 5201 401 Europe/Prague 2006-11-25
-3063450 Valašská Polanka Valasska Polanka Polanka 49.26215 17.99667 P PPL CZ 90 1328 388 Europe/Prague 2006-11-25
-3063451 Valašská Bystřice Valasska Bystrice Gross Bistrzitz 49.41507 18.10977 P PPL CZ 90 2240 463 Europe/Prague 2006-11-25
-3063466 Vacov Vacov 49.13686 13.72911 P PPL CZ 79 1372 731 Europe/Prague 2006-11-25
-3063471 Václavovice Vaclavovice 49.75531 18.3722 P PPL CZ 00 1544 262 Europe/Prague 2006-11-25
-3063491 Vacenovice Vacenovice 48.9451 17.17404 P PPL CZ 78 2157 202 Europe/Prague 2006-11-25
-3063502 Úvaly Uvaly Auwal 50.07394 14.7308 P PPL CZ 88 4797 249 Europe/Prague 2006-11-25
-3063546 Ústí nad Orlicí Usti nad Orlici Ustin Orl,Wildenschwert,Ústin Orl 49.97387 16.39361 P PPL CZ 86 0534 15151 340 346 Europe/Prague 2007-10-01
-3063548 Ústí nad Labem Usti nad Labem Aussig,Aussig an der Elbe,Auszig,Usti,Usti nad Labem,Ustina Labe,usti,usti nad labom,Ústina Labe,Ústí,Ústí nad Labem,Усти,Усти над Лабом 50.6607 14.03227 P PPLA CZ 89 94105 150 Europe/Prague 2008-11-28
-3063556 Úštěk Ustek Auscha 50.58474 14.34332 P PPL CZ 89 2664 247 Europe/Prague 2006-11-25
-3063561 Úsov Usov Mahrisch Aussee,Mährisch Aussee 49.79831 17.01055 P PPL CZ 84 1186 285 Europe/Prague 2006-11-25
-3063578 Určice Urcice Urcitz,Určitz 49.43045 17.07291 P PPL CZ 84 1305 255 Europe/Prague 2006-11-25
-3063590 Úpice Upice Eipel 50.51237 16.01607 P PPL CZ 00 5959 357 Europe/Prague 2006-11-25
-3063596 Uničov Unicov Mahrisch Neustadt,Mährisch Neustadt 49.77092 17.12144 P PPL CZ 84 12385 242 Europe/Prague 2006-11-25
-3063599 Unhošť Unhost' Unhoscht 50.08535 14.13007 P PPL CZ CZ 88 3480 389 Europe/Prague 2006-11-25
-3063611 Únanov Unanov 48.90082 16.06351 P PPL CZ 78 1093 290 Europe/Prague 2006-11-25
-3063683 Újezd Ujezd Augezd 49.76397 17.1804 P PPL CZ 84 1341 240 Europe/Prague 2006-11-25
-3063695 Újezd Ujezd Aujezd 49.16809 17.9061 P PPL CZ 90 1202 437 Europe/Prague 2006-11-25
-3063727 Uhlířské Janovice Uhlirske Janovice Kohljanowitz 49.88019 15.06481 P PPL CZ 88 3058 424 Europe/Prague 2006-11-25
-3063735 Uherský Ostroh Uhersky Ostroh 48.98556 17.38984 P PPL CZ 90 4526 178 Europe/Prague 2006-11-25
-3063736 Uherský Brod Uhersky Brod Ungarisch Brod,Ungarisch-Brod,Vehersky Brod 49.02513 17.64715 P PPL CZ 90 17508 244 Europe/Prague 2008-11-28
-3063739 Uherské Hradiště Uherske Hradiste Gradishte,Magyarhradis,Uherske Hradiste,Uherské Hradiště,Ungarisch Hradisch,Ungarisch-Hradisch,Градиште,ウヘルスケー・フラジシチェ 49.06975 17.45969 P PPL CZ 90 26421 182 Europe/Prague 2010-01-29
-3063762 Údlice Udlice Eidlitz 50.4406 13.45738 P PPL CZ 89 1039 290 Europe/Prague 2006-11-25
-3063794 Týn nad Vltavou Tyn nad Vltavou Moldauthein,Tyn na Vltava,Týn na Vltava 49.2234 14.42057 P PPL CZ 79 8296 368 Europe/Prague 2006-11-25
-3063797 Týniště nad Orlicí Tyniste nad Orlici Tinischt,Tyniste,Tyniště 50.15136 16.0777 P PPL CZ 00 6342 254 Europe/Prague 2006-11-25
-3063804 Týnec nad Sázavou Tynec nad Sazavou Tejnitz 49.83348 14.58983 P PPL CZ 88 5165 267 Europe/Prague 2006-11-25
-3063805 Týnec nad Labem Tynec nad Labem Elbeteinitz,Tynec,Týnec 50.04202 15.35836 P PPL CZ 88 1868 240 Europe/Prague 2006-11-25
-3063814 Týnec Tynec 48.77943 17.01322 P PPL CZ 78 1021 167 Europe/Prague 2006-11-25
-3063828 Tvrdonice Tvrdonice 48.76048 16.99446 P PPL CZ 78 2042 181 Europe/Prague 2006-11-25
-3063835 Tvarožná Tvarozna Bosenitz 49.19177 16.77146 P PPL CZ 78 1159 255 Europe/Prague 2006-11-25
-3063853 Turnov Turnov Turnau 50.58356 15.15186 P PPL CZ 83 14507 255 Europe/Prague 2008-07-08
-3063862 Tupesy Tupesy Tupes 49.08427 17.36983 P PPL CZ 90 1117 214 Europe/Prague 2006-11-25
-3063894 Tuchoměřice Tuchomerice 50.13543 14.28218 P PPL CZ 88 1032 311 Europe/Prague 2006-11-25
-3063896 Tuchlovice Tuchlovice Tuchlowitz 50.13803 13.99115 P PPL CZ 88 2141 390 Europe/Prague 2006-11-25
-3063907 Trutnov Trutnov Trautenau,Trutnov,Трутнов 50.56101 15.9127 P PPL CZ 82 31398 431 Europe/Prague 2008-11-28
-3063927 Tršice Trsice Trschitz,Trsnice,Tršnice 49.54237 17.42483 P PPL CZ 84 1559 267 Europe/Prague 2008-07-04
-3063938 Troubsko Troubsko Strutz 49.16951 16.51078 P PPL CZ 78 1822 267 Europe/Prague 2006-11-25
-3063939 Troubky Troubky Troubek,Troubkach,Troubky nad Becvou,Troubky nad Bečvou 49.43215 17.34914 P PPL CZ 84 1993 199 Europe/Prague 2006-11-25
-3063941 Troubelice Troubelice Treublitz 49.81731 17.081 P PPL CZ 84 1802 255 Europe/Prague 2006-11-25
-3063955 Trojanovice Trojanovice Trojanowitz 49.52039 18.238 P PPL CZ 00 2114 505 Europe/Prague 2006-11-25
-3063984 Trnava Trnava Tranawa 49.29603 17.84191 P PPL CZ 90 1118 345 Europe/Prague 2006-11-25
-3063987 Trmice Trmice Turmitz,Türmitz 50.64286 13.99449 P PPL CZ 89 2862 150 Europe/Prague 2006-11-25
-3064000 Třinec Trinec Trshinec,Trzyniec,Тршинец 49.67763 18.67078 P PPL CZ 85 38415 312 Europe/Prague 2010-03-21
-3064014 Trhový Štěpánov Trhovy Stepanov Trhowy Stepanow,Trhowy Stěpanow 49.71147 15.01356 P PPL CZ 88 1260 416 Europe/Prague 2006-11-25
-3064015 Trhové Sviny Trhove Sviny 48.84231 14.63924 P PPL CZ 79 4705 465 Europe/Prague 2006-11-25
-3064029 Třešť Trest' Triesch 49.29092 15.48211 P PPL CZ CZ 80 5979 550 Europe/Prague 2006-11-25
-3064043 Třemošnice Tremosnice 49.86912 15.58002 P PPL CZ 86 3273 305 Europe/Prague 2006-11-25
-3064047 Třemošná Tremosna Tremoschna,Třemoschna 49.81584 13.39499 P PPL CZ 87 4654 348 Europe/Prague 2006-11-25
-3064073 Třebotov Trebotov 49.97244 14.29127 P PPL CZ 88 1062 355 Europe/Prague 2006-11-25
-3064079 Třeboň Trebon Wittingau 49.00364 14.77065 P PPL CZ 79 8862 438 Europe/Prague 2008-11-28
-3064104 Třebíč Trebic Trebic,Trebitsch,Trshebich,Třebíč,toshebichi,Тршебич,トシェビーチ 49.21492 15.88166 P PPL CZ 80 38785 405 Europe/Prague 2006-11-25
-3064114 Třebenice Trebenice Trebnitz 50.47632 13.99005 P PPL CZ 89 1723 228 Europe/Prague 2006-11-25
-3064122 Třebechovice pod Orebem Trebechovice pod Orebem Hohenbruck,Trebechovice,Třebechovice 50.20097 15.99223 P PPL CZ 82 5611 243 Europe/Prague 2006-11-25
-3064140 Traplice Traplice Traplitz 49.13088 17.43622 P PPL CZ 90 1139 211 Europe/Prague 2006-11-25
-3064143 Tovačov Tovacov Tobitschau 49.43083 17.28795 P PPL CZ 84 2605 203 Europe/Prague 2006-11-25
-3064145 Toužim Touzim Theusing 50.06049 12.98506 P PPL CZ 81 3732 615 Europe/Prague 2006-11-25
-3064157 Topolná Topolna 49.12187 17.54434 P PPL CZ 90 1545 195 Europe/Prague 2006-11-25
-3064183 Tlumačov Tlumacov Tlumatschau 49.25351 17.49559 P PPL CZ 90 2468 188 Europe/Prague 2006-11-25
-3064185 Tlučná Tlucna 49.72425 13.23534 P PPL CZ 87 2482 334 Europe/Prague 2006-11-25
-3064211 Tišnov Tisnov Tischnowitz 49.34872 16.42438 P PPL CZ 78 8227 272 Europe/Prague 2008-11-28
-3064213 Tišice Tisice 50.2698 14.55411 P PPL CZ 88 1460 165 Europe/Prague 2006-11-25
-3064226 Tichá Ticha Tichau 49.56999 18.22148 P PPL CZ 00 1585 359 Europe/Prague 2006-11-25
-3064257 Těšetice Tesetice 49.59317 17.12607 P PPL CZ 84 1212 227 Europe/Prague 2006-11-25
-3064260 Těšany Tesany Tieschan 49.03956 16.77003 P PPL CZ 78 1155 214 Europe/Prague 2006-11-25
-3064268 Terezín Terezin Terezin,Terezín,Theresienstadt,telejin,terejin,テレジーン,테레진 50.511 14.15055 P PPL CZ 89 2992 152 Europe/Prague 2008-11-28
-3064285 Teplice nad Metují Teplice nad Metuji Teplice Na Metuje,Wekelsdorf 50.59332 16.17026 P PPL CZ 00 1805 467 Europe/Prague 2006-11-25
-3064288 Teplice Teplice Teplice,Teplice-Sanov,Teplice-Šanov,Teplitz,Teplitz-Schoenau,Teplitz-Schönau,Теплице 50.6404 13.82451 P PPL CZ 89 51223 229 Europe/Prague 2008-11-28
-3064307 Telnice Telnice 49.10187 16.71774 P PPL CZ 78 1296 196 Europe/Prague 2006-11-25
-3064316 Telč Telc Teltsch 49.18418 15.45275 P PPL CZ 80 5883 522 Europe/Prague 2008-11-28
-3064321 Tečovice Tecovice 49.22107 17.58733 P PPL CZ 90 1272 209 Europe/Prague 2006-11-25
-3064352 Tasovice Tasovice Tasswitz 48.8361 16.15558 P PPL CZ CZ 78 1221 210 Europe/Prague 2006-11-25
-3064358 Tanvald Tanvald Tannwald 50.73735 15.30585 P PPL CZ 83 6921 479 Europe/Prague 2006-11-25
-3064373 Tachov Tachov Reichental,Tachau,Tachoph,Tachov,Tachovas,Tahova,Tάχοφ 49.79528 12.63365 P PPL CZ 87 12640 483 Europe/Prague 2007-02-17
-3064379 Tábor Tabor Tabor,Tábor,tabor,taboru,Табор,ターボル 49.41441 14.6578 P PPL CZ 79 0317 36264 456 Europe/Prague 2007-11-05
-3064415 Svratka Svratka Swratka 49.71066 16.03214 P PPL CZ 80 1539 637 Europe/Prague 2006-11-25
-3064449 Svoboda nad Úpou Svoboda nad Upou Freiheit,Svoboda 50.62596 15.81648 P PPL CZ 82 2216 518 Europe/Prague 2006-11-25
-3064454 Svitavy Svitavy Svitave,Svitavy,Zwittau 49.75594 16.46829 P PPL CZ 86 17427 442 Europe/Prague 2008-11-28
-3064456 Svitávka Svitavka Swittawka 49.50178 16.59793 P PPL CZ 78 1700 315 Europe/Prague 2006-11-25
-3064492 Švihov Svihov Schwihau 49.48136 13.28417 P PPL CZ 87 1582 375 Europe/Prague 2006-11-25
-3064501 Sviadnov Sviadnov 49.68926 18.32762 P PPL CZ 00 1352 277 Europe/Prague 2006-11-25
-3064510 Světlá nad Sázavou Svetla nad Sazavou Swetla,Swětlá 49.66801 15.40393 P PPL CZ 80 7037 403 Europe/Prague 2006-11-25
-3064597 Svatava Svatava Zwodau 50.19223 12.62524 P PPL CZ 81 1577 406 Europe/Prague 2006-11-25
-3064662 Sušice Susice Schuttenhofen,Schüttenhofen 49.23106 13.52018 P PPL CZ 87 11483 477 Europe/Prague 2006-11-25
-3064673 Šumperk Sumperk Maehrisch-Schoenberg,Mährisch-Schönberg,Shumperk,Шумперк 49.96528 16.97061 P PPL CZ 84 28768 336 Europe/Prague 2010-01-29
-3064677 Šumice Sumice Schumitz 49.02858 17.72205 P PPL CZ 90 1764 226 Europe/Prague 2006-11-25
-3064708 Sudoměřice Sudomerice 48.86723 17.25676 P PPL CZ 78 1206 182 Europe/Prague 2006-11-25
-3064713 Sudkov Sudkov Zautke 49.91903 16.94516 P PPL CZ 84 1185 292 Europe/Prague 2006-11-25
-3064736 Suchohrdly Suchohrdly Zuckerhandl 48.86822 16.09471 P PPL CZ CZ 78 1010 308 Europe/Prague 2008-07-08
-3064742 Suchdol nad Lužnicí Suchdol nad Luznici Suchenthal an der Lainsitz 48.89 14.8772 P PPL CZ 79 3659 457 Europe/Prague 2009-03-30
-3064745 Suchdol Suchdol 49.95247 15.16651 P PPL CZ 88 1065 370 Europe/Prague 2006-11-25
-3064753 Suchá Loz Sucha Loz 48.97001 17.71379 P PPL CZ 90 1078 297 Europe/Prague 2006-11-25
-3064807 Studénka Studenka Stauding 49.72342 18.07853 P PPL CZ 00 10341 240 Europe/Prague 2006-11-25
-3064811 Studenec Studenec 50.55344 15.54936 P PPL CZ 83 1734 535 Europe/Prague 2006-11-25
-3064826 Studená Studena Studein 49.18516 15.28688 P PPL CZ 79 2464 624 Europe/Prague 2006-11-25
-3064856 Strunkovice nad Blanicí Strunkovice nad Blanici Strunkovice,Strunkowitz 49.08402 14.05522 P PPL CZ 79 1230 461 Europe/Prague 2006-11-25
-3064877 Strmilov Strmilov Strmelov,Tremles 49.15846 15.19934 P PPL CZ 79 1399 535 Europe/Prague 2006-11-25
-3064894 Střížkov Strizkov 50.12674 14.49363 P PPLX CZ 52 14069 296 Europe/Prague 2007-04-24
-3064919 Stříbro Stribro Mies 49.75294 13.00409 P PPL CZ 87 7689 406 Europe/Prague 2008-11-28
-3064962 Střelice Strelice Strelitz,Střelitz 49.15221 16.50399 P PPL CZ 78 2578 273 Europe/Prague 2006-11-25
-3064983 Stráž pod Ralskem Straz pod Ralskem Wartenberg 50.7028 14.80102 P PPL CZ 00 4068 315 Europe/Prague 2006-11-25
-3064989 Strážov Strazov Drosau 49.30326 13.24623 P PPL CZ 87 1326 483 Europe/Prague 2006-11-25
-3064995 Strážnice Straznice 48.90102 17.3168 P PPL CZ 78 5900 180 Europe/Prague 2006-11-25
-3064997 Stráž nad Nisou Straz nad Nisou Alt-Habendorf,Stary Habendorf,Starý Habendorf 50.79099 15.02683 P PPL CZ 00 1877 362 Europe/Prague 2006-11-25
-3064999 Strážná Strazna Moravsky Sumvald,Moravský Šumvald,Schonwald,Schönwald,Sumvald,Sumwald,Šumvald,Šumwald 49.83104 17.13275 P PPL CZ CZ 84 1770 263 Europe/Prague 2006-11-25
-3065018 Stráž Straz Neustadtl 49.66878 12.77546 P PPL CZ 87 1057 453 Europe/Prague 2006-11-25
-3065033 Strašice Strasice Straschitz 49.73552 13.75755 P PPL CZ 87 2442 508 Europe/Prague 2006-11-25
-3065051 Strání Strani 48.90216 17.70671 P PPL CZ 90 3803 387 Europe/Prague 2006-11-25
-3065054 Strančice Strancice Stranschitz 49.94811 14.67745 P PPL CZ 88 1505 419 Europe/Prague 2006-11-25
-3065062 Štramberk Stramberk Stramberg 49.59181 18.11741 P PPL CZ 00 3380 418 Europe/Prague 2006-11-25
-3065067 Strakonice Strakonice Strakonice,Strakonitz,Страконице 49.26141 13.90237 P PPL CZ 79 23545 403 Europe/Prague 2010-01-29
-3065098 Stonava Stonava Stonawa 49.81691 18.52518 P PPL CZ 00 1771 243 Europe/Prague 2006-11-25
-3065103 Štoky Stoky Stecken 49.50249 15.58863 P PPL CZ 80 1540 522 Europe/Prague 2006-11-25
-3065116 Stod Stod Staab 49.63909 13.16474 P PPL CZ 87 3532 340 Europe/Prague 2006-11-25
-3065117 Stochov Stochov 50.14631 13.96345 P PPL CZ 88 5538 439 Europe/Prague 2006-11-25
-3065118 Štíty Stity Schildberg,Silperk,Šilperk 49.96122 16.76576 P PPL CZ 84 2049 442 Europe/Prague 2006-11-25
-3065123 Štítná nad Vláří Stitna nad Vlari 49.06881 17.98274 P PPL CZ 90 2500 323 323 Europe/Prague 2007-01-19
-3065125 Štítina Stitina 49.91487 18.01245 P PPL CZ 00 1173 238 Europe/Prague 2006-11-25
-3065157 Stěžery Stezery Stezer 50.21572 15.74831 P PPL CZ 00 1625 257 Europe/Prague 2006-11-25
-3065163 Štětí Steti Wegstadtl,Wegstädtl 50.45298 14.37421 P PPL CZ 89 9165 160 Europe/Prague 2006-11-25
-3065166 Šternberk Sternberk Sternberk,Šternberk 49.73044 17.29889 P PPL CZ 84 13967 280 Europe/Prague 2011-03-04
-3065180 Štěpánov Stepanov Stepanov,Stiepanau,Štěpánov 50.16238 16.91702 P PPL CZ 84 3306 598 Europe/Prague 2012-01-19
-3065185 Štěpánov Stepanov Stefanau 49.68404 17.22041 P PPL CZ CZ 84 3310 223 Europe/Prague 2006-11-25
-3065187 Štěpánkovice Stepankovice Schepankowitz 49.95738 18.03741 P PPL CZ 00 3096 263 Europe/Prague 2006-11-25
-3065191 Štěnovice Stenovice Stenowitz,Stěnowitz 49.67051 13.39963 P PPL CZ 87 1401 346 Europe/Prague 2006-11-25
-3065210 Štěchovice Stechovice Stechowitz 49.85109 14.40543 P PPL CZ 88 1377 213 Europe/Prague 2006-11-25
-3065213 Stěbořice Steborice 49.93708 17.80547 P PPL CZ 00 1330 304 Europe/Prague 2006-11-25
-3065249 Starý Plzenec Stary Plzenec Alt Pilsenetz 49.69768 13.4735 P PPL CZ 87 4387 348 Europe/Prague 2006-11-25
-3065259 Starý Kolín Stary Kolin Alt Kolin 50.00977 15.29388 P PPL CZ 88 1561 201 Europe/Prague 2006-11-25
-3065263 Starý Jičín Stary Jicin Alttitschein 49.57686 17.96169 P PPL CZ 00 2405 366 Europe/Prague 2006-11-25
-3065281 Starý Bohumín Stary Bohumin Bogumin,Bohumin,Bohumín,Oderberg,Stary Bohumin,Starý Bohumín 49.9169 18.33619 P PPLX CZ 85 23034 200 Europe/Prague 2012-01-19
-3065300 Staříč Staric Stara Staric,Staritsch,Stará Staříč 49.68594 18.27281 P PPL CZ 00 1906 322 Europe/Prague 2006-11-25
-3065325 Staré Nechanice Stare Nechanice 50.24298 15.61787 P PPL CZ 82 2180 246 Europe/Prague 2011-03-07
-3065328 Staré Město Stare Mesto 50.087 14.42024 P PPLX CZ 52 10127 206 Europe/Prague 2007-04-24
-3065330 Staré Město Stare Mesto Altstadt,Mahrisch-Altstadt,Mährisch-Altstadt 50.16174 16.94734 P PPL CZ 84 2054 544 Europe/Prague 2006-11-25
-3065334 Staré Město Stare Mesto Stare Miasto 49.66992 18.36349 P PPL CZ CZ 00 1205 300 Europe/Prague 2006-11-25
-3065335 Staré Město Stare Mesto Altstadt 49.07515 17.43338 P PPL CZ 90 6742 192 Europe/Prague 2006-11-25
-3065340 Staré Křečany Stare Krecany Alt-Ehrenberg,Stary Ehrenberk,Starý Ehrenberk 50.95044 14.49617 P PPL CZ 89 1244 402 Europe/Prague 2006-11-25
-3065353 Staré Hradiště Stare Hradiste 50.0654 15.77885 P PPL CZ 86 1219 219 Europe/Prague 2006-11-25
-3065367 Stařeč Starec Startsch 49.19783 15.82791 P PPL CZ 80 1539 453 Europe/Prague 2006-11-25
-3065379 Stará Ves nad Ondřejnicí Stara Ves nad Ondrejnici Altendorf,Stara Ves,Stará Ves 49.72775 18.1885 P PPL CZ 00 2450 232 Europe/Prague 2006-11-25
-3065392 Stará Paka Stara Paka Alt Paka 50.51032 15.49444 P PPL CZ 82 2026 411 Europe/Prague 2006-11-25
-3065404 Stará Huť Stara Hut' Althutten,Althütten 49.78225 14.19735 P PPL CZ CZ 88 1158 353 Europe/Prague 2006-11-25
-3065439 Staňkov Stankov Mestys Stankov,Městys Staňkov,Stankau,Ves Stankov,Ves Staňkov 49.55348 13.06976 P PPL CZ 87 3026 359 Europe/Prague 2006-11-25
-3065453 Šťáhlavy St'ahlavy Stahlau 49.67555 13.50394 P PPL CZ CZ 87 2200 354 Europe/Prague 2006-11-25
-3065459 Stachy Stachy Stachau 49.10179 13.66659 P PPL CZ CZ 79 1222 746 Europe/Prague 2006-11-25
-3065467 Srubec Srubec 48.94806 14.54131 P PPL CZ 79 1107 521 Europe/Prague 2006-11-25
-3065497 Spytihněv Spytihnev Spitinau,Spytinov 49.14115 17.49808 P PPL CZ 90 1692 186 Europe/Prague 2006-11-25
-3065522 Špindlerův Mlýn Spindleruv Mlyn Spindelmuhle,Spindelmühle,Spindlermuehle,Spindlermühle,Spindleruv Mlyn,Szpindlerowy Mlyn,Szpindlerowy Młyn,Špindlerův Mlýn 50.72615 15.60944 P PPL CZ CZ 83 1302 736 Europe/Prague 2008-11-28
-3065560 Spálené Poříčí Spalene Porici Brennporitschen 49.61371 13.60556 P PPL CZ 87 2529 415 Europe/Prague 2006-11-25
-3065607 Solnice Solnice Sollnitz 50.20366 16.23762 P PPL CZ 00 2099 333 Europe/Prague 2006-11-25
-3065617 Sokolov Sokolov Faiknov,Falkenau,Falkenau an der Eger,Falknov,Falknov nad Ohri,Falknov nad Ohří,Sokolov,Sokolov nad Ohri,Sokolov nad Ohří,sokollopeu,Соколов,소콜로프 50.1813 12.6401 P PPL CZ 81 24901 402 Europe/Prague 2008-11-28
-3065618 Sokolnice Sokolnice Sokolnitz 49.11392 16.72156 P PPL CZ 78 1761 203 Europe/Prague 2006-11-25
-3065626 Sobotka Sobotka 50.46741 15.17619 P PPL CZ 82 2274 303 Europe/Prague 2009-01-26
-3065627 Sobotín Sobotin Zoptau,Zöptau 50.01039 17.09129 P PPL CZ 84 2468 439 Europe/Prague 2008-07-04
-3065644 Soběslav Sobeslav Sobeslau,Soběslau 49.25993 14.71861 P PPL CZ 79 7308 408 Europe/Prague 2006-11-25
-3065684 Smržovka Smrzovka Morchenstern 50.7382 15.24639 P PPL CZ 83 3433 583 Europe/Prague 2006-11-25
-3065689 Smržice Smrzice Smrzitz 49.50569 17.10698 P PPL CZ 84 1575 223 Europe/Prague 2006-11-25
-3065728 Smiřice Smirice Smiritz,Smiřitz 50.29978 15.86508 P PPL CZ 88 3122 243 Europe/Prague 2006-11-25
-3065741 Smidary Smidary Smidar 50.29146 15.47725 P PPL CZ 00 1523 242 Europe/Prague 2006-11-25
-3065751 Smečno Smecno 50.18844 14.04037 P PPL CZ 88 1781 374 Europe/Prague 2006-11-25
-3065759 Slušovice Slusovice Sluschowitz 49.24782 17.8015 P PPL CZ 90 2904 275 Europe/Prague 2006-11-25
-3065768 Šluknov Sluknov Schluckenau 51.00369 14.45258 P PPL CZ 89 5701 355 Europe/Prague 2008-11-28
-3065818 Slavonice Slavonice Zlabings 48.99753 15.35154 P PPL CZ 79 2706 517 Europe/Prague 2006-11-25
-3065824 Slavkov u Brna Slavkov u Brna Austerlic,Austerlitz,Slavkov u Brna,Slawkow,Sławków,bu er nuo fu jin si la fu ke fu,slbqwb,Аустерлиц,סלבקוב,布尔诺附近斯拉夫科夫 49.15325 16.87649 P PPL CZ 78 5936 211 Europe/Prague 2008-11-28
-3065831 Slavkov Slavkov Schlakau 49.9218 17.83641 P PPL CZ 00 1686 296 Europe/Prague 2006-11-25
-3065843 Slavičín Slavicin Mladotitz,Slavicin-Mladotice,Slavičín-Mladotice,Slawitschin 49.08799 17.87349 P PPL CZ 90 7079 367 Europe/Prague 2006-11-25
-3065872 Slatinice Slatinice 49.56155 17.09992 P PPL CZ 84 1457 233 Europe/Prague 2006-11-25
-3065873 Slatiňany Slatinany Slatinan 49.9211 15.81377 P PPL CZ 86 4004 267 Europe/Prague 2006-11-25
-3065901 Šlapanice Slapanice Schlapanitz 49.16863 16.72731 P PPL CZ 78 6339 221 Europe/Prague 2006-11-25
-3065903 Slaný Slany Schlan 50.23046 14.08693 P PPL CZ 88 15070 282 Europe/Prague 2006-11-25
-3065921 Skuteč Skutec Skutsch 49.84347 15.99655 P PPL CZ 86 5415 412 Europe/Prague 2006-11-25
-3065930 Skuhrov nad Bělou Skuhrov nad Belou 50.22946 16.2923 P PPL CZ 00 1060 383 Europe/Prague 2006-11-25
-3065976 Skrbeň Skrben Kirwein 49.64115 17.1765 P PPL CZ 84 1081 224 Europe/Prague 2006-11-25
-3066045 Skalná Skalna Vildstejn,Vildštejn,Wildstein 50.1703 12.36144 P PPL CZ DE 81 0411 1950 465 461 Europe/Prague 2011-01-08
-3066095 Šitbořice Sitborice Schuttborzitz,Schüttborzitz 49.01433 16.77975 P PPL CZ 78 1958 259 Europe/Prague 2006-11-25
-3066137 Šilheřovice Silherovice Schillersdorf 49.92602 18.27017 P PPL CZ 00 1534 220 Europe/Prague 2006-11-25
-3066154 Sezimovo Ústí Sezimovo Usti Alt Tabor 49.38519 14.6848 P PPL CZ 79 7420 400 Europe/Prague 2006-11-25
-3066159 Sezemice Sezemice Sezemitz 50.06651 15.8527 P PPL CZ 86 3097 233 Europe/Prague 2006-11-25
-3066160 Ševětín Sevetin Schewetin 49.10005 14.5722 P PPL CZ 79 1294 487 Europe/Prague 2006-11-25
-3066169 Šestajovice Sestajovice 50.10845 14.68013 P PPL CZ 88 1465 261 Europe/Prague 2006-11-25
-3066180 Sepekov Sepekov Sepekau 49.42865 14.41815 P PPL CZ 79 1343 450 Europe/Prague 2006-11-25
-3066184 Šenov Senov 49.79315 18.37607 P PPL CZ 00 5462 275 Europe/Prague 2006-11-25
-3066195 Senice na Hané Senice na Hane Gross Senitz,Senice 49.62401 17.08578 P PPL CZ 84 1824 239 Europe/Prague 2006-11-25
-3066220 Semily Semily Semil 50.60191 15.33552 P PPL CZ 83 9040 321 Europe/Prague 2006-11-25
-3066276 Sedlnice Sedlnice Sedlnitz 49.6577 18.0869 P PPL CZ 00 1327 249 Europe/Prague 2006-11-25
-3066284 Sedliště Sedliste Siedliszcze 49.71836 18.36869 P PPL CZ 00 1263 332 Europe/Prague 2006-11-25
-3066298 Sedlice Sedlice Sedlitz 49.37715 13.93895 P PPL CZ CZ 79 1219 512 Europe/Prague 2006-11-25
-3066299 Sedlice Sedlice 48.77401 14.39115 P PPL CZ 00 1220 656 Europe/Prague 2007-07-21
-3066333 Sedlčany Sedlcany Selcan,Selčan 49.66057 14.42664 P PPL CZ 88 7836 356 Europe/Prague 2006-11-25
-3066342 Seč Sec 49.84694 15.65643 P PPL CZ 86 1686 535 Europe/Prague 2006-11-25
-3066385 Sázava Sazava Sazau 49.87164 14.89674 P PPL CZ 88 3797 291 Europe/Prague 2006-11-25
-3066390 Šatov Satov Schattau 48.79317 16.00992 P PPL CZ 78 1200 250 Europe/Prague 2006-11-25
-3066392 Satalice Satalice Satalic,Satalitz 50.12405 14.56701 P PPLX CZ CZ 52 2069 284 Europe/Prague 2007-04-24
-3066399 Šardice Sardice 48.96403 17.02812 P PPL CZ 78 2205 183 Europe/Prague 2006-11-25
-3066410 Šanov Sanov Schonau,Schönau 48.80089 16.37858 P PPL CZ 78 1253 197 Europe/Prague 2006-11-25
-3066416 Samotíšky Samotisky 49.63042 17.32807 P PPL CZ 84 1137 275 Europe/Prague 2006-11-25
-3066439 Šakvice Sakvice 48.89746 16.71424 P PPL CZ 78 1369 193 Europe/Prague 2006-11-25
-3066446 Sadská Sadska 50.13596 14.98633 P PPL CZ 88 3095 188 Europe/Prague 2006-11-25
-3066448 Sadov Sadov Sodau 50.26711 12.89708 P PPL CZ 81 1016 406 Europe/Prague 2006-11-25
-3066483 Rýmařov Rymarov Romerstadt,Römerstadt 49.93183 17.27177 P PPL CZ CZ 00 9069 606 Europe/Prague 2006-11-25
-3066492 Rychvald Rychvald Rychwald 49.86625 18.37626 P PPL CZ 00 6771 228 Europe/Prague 2006-11-25
-3066503 Rychnov nad Kněžnou Rychnov nad Kneznou Reichenau 50.16284 16.27488 P PPL CZ 82 11695 325 Europe/Prague 2006-11-25
-3066536 Rybitví Rybitvi Rybitew 50.06015 15.70472 P PPL CZ 86 1379 221 Europe/Prague 2006-11-25
-3066537 Rybí Rybi Reimlich,Reimrich 49.60073 18.07592 P PPL CZ CZ 00 1047 318 Europe/Prague 2006-11-25
-3066578 Rumburk Rumburk Rumburg 50.95151 14.55699 P PPL CZ 89 11101 388 Europe/Prague 2008-11-28
-3066592 Rudolfov Rudolfov Rudolfstadt 48.99339 14.54179 P PPL CZ 79 2384 480 Europe/Prague 2006-11-25
-3066595 Rudník Rudnik Hermannseifen,Hermanovy Sejfy,Heřmanovy Sejfy,Scify 50.59517 15.73362 P PPL CZ 82 2161 429 Europe/Prague 2008-05-20
-3066599 Rudná Rudna 50.03502 14.23435 P PPL CZ 88 3360 382 Europe/Prague 2006-11-25
-3066613 Ruda nad Moravou Ruda nad Moravou Eisenberg an der March,Eisenberg an der Morava,Ober Eisenberg,Ruda na Morave,Ruda na Moravě 49.981 16.87782 P PPL CZ 84 2490 329 Europe/Prague 2006-11-25
-3066623 Rtyně v Podkrkonoší Rtyne v Podkrkonosi Hertin 50.50523 16.07187 P PPL CZ 00 3023 391 Europe/Prague 2006-11-25
-3066636 Roztoky Roztoky Rostok 50.15841 14.3976 P PPL CZ 88 5956 189 Europe/Prague 2006-11-25
-3066637 Roztoky Roztoky Rostok 50.02671 13.86787 P PPL CZ 88 1006 278 Europe/Prague 2006-11-25
-3066651 Rožnov pod Radhoštěm Roznov pod Radhostem Roznau,Roznov,Rožnov 49.45853 18.14302 P PPL CZ 90 17238 378 Europe/Prague 2006-11-25
-3066659 Rožmitál pod Třemšínem Rozmital pod Tremsinem Rozmital,Rožmitál 49.60196 13.8643 P PPL CZ 88 4245 524 Europe/Prague 2006-11-25
-3066680 Rožďalovice Rozd'alovice Rozdalowitz,Rozdd'alovice,Roždálowitz,Roždďalovice 50.30476 15.16962 P PPL CZ CZ 88 1648 202 Europe/Prague 2006-11-25
-3066703 Rovensko pod Troskami Rovensko pod Troskami Rovensko,Rowensko 50.53532 15.25941 P PPL CZ 83 1267 304 Europe/Prague 2006-11-25
-3066719 Rousínov Rousinov 49.20128 16.88215 P PPL CZ 78 5016 235 Europe/Prague 2006-11-25
-3066727 Roudnice nad Labem Roudnice nad Labem Raudnitz a.d. Elbe 50.42528 14.26175 P PPL CZ 89 13084 180 Europe/Prague 2010-12-20
-3066735 Rouchovany Rouchovany Rouchowan 49.07036 16.1076 P PPL CZ 80 1093 352 Europe/Prague 2006-11-25
-3066743 Rotava Rotava Rothau 50.29627 12.57341 P PPL CZ 81 3403 515 Europe/Prague 2006-11-25
-3066757 Rosice Rosice Rositz 49.92226 15.95127 P PPL CZ CZ 86 1323 261 Europe/Prague 2006-11-25
-3066759 Rosice Rosice Rossitz 49.18232 16.38787 P PPL CZ 78 5287 339 Europe/Prague 2006-11-25
-3066763 Ropice Ropice 49.70536 18.61345 P PPL CZ 00 1390 300 Europe/Prague 2006-11-25
-3066765 Ronov nad Doubravou Ronov nad Doubravou Ronow an der Doubrava 49.88825 15.53144 P PPL CZ 86 1645 259 Europe/Prague 2006-11-25
-3066781 Rokytnice v Orlických Horách Rokytnice v Orlickych Horach Rokitnitz,Rokitnitz im Adlergebirge 50.16473 16.46567 P PPL CZ 00 2463 574 Europe/Prague 2006-11-25
-3066783 Rokytnice nad Jizerou Rokytnice nad Jizerou Rochlitz an der Iser,Rokytnice 50.72561 15.43357 P PPL CZ 82 3281 513 Europe/Prague 2006-11-25
-3066786 Rokytnice Rokytnice Roketnitz 49.46592 17.3912 P PPL CZ 84 1422 215 Europe/Prague 2006-11-25
-3066794 Rokycany Rokycany Rokitzan,Rokycan 49.7427 13.59459 P PPL CZ 87 13826 366 Europe/Prague 2006-11-25
-3066825 Rohatec Rohatec 48.8804 17.1833 P PPL CZ 78 3343 179 Europe/Prague 2006-11-25
-3066878 Říčany Ricany Rican,Ričan 49.99168 14.65427 P PPL CZ 88 11329 343 Europe/Prague 2006-11-25
-3066879 Říčany Ricany Rican,Ričan 49.21497 16.39362 P PPL CZ 78 1702 349 Europe/Prague 2006-11-25
-3066885 Řež Rez 50.17734 14.35733 P PPL CZ 88 1022 184 Europe/Prague 2008-10-10
-3066889 Řevničov Revnicov Rentsch 50.18489 13.80823 P PPL CZ 88 1403 463 Europe/Prague 2006-11-25
-3066890 Řevnice Revnice Rewnitz 49.91395 14.23589 P PPL CZ 88 2908 221 Europe/Prague 2006-11-25
-3066917 Řepiště Repiste 49.73338 18.31707 P PPL CZ 00 1581 313 Europe/Prague 2006-11-25
-3066958 Řehlovice Rehlovice Gross Tschochau 50.60712 13.95412 P PPL CZ 89 1129 167 Europe/Prague 2006-11-25
-3066974 Řečany nad Labem Recany nad Labem Recan,Rečan 50.03589 15.47735 P PPL CZ 86 1364 206 Europe/Prague 2006-11-25
-3066987 Ratíškovice Ratiskovice 48.92002 17.16561 P PPL CZ 78 3994 202 Europe/Prague 2006-11-25
-3066995 Ratiboř Ratibor 49.36769 17.91499 P PPL CZ 90 1719 341 Europe/Prague 2006-11-25
-3067004 Rataje Rataje 49.2713 17.33555 P PPL CZ 90 1031 249 Europe/Prague 2006-11-25
-3067006 Raspenava Raspenava Raspenau 50.90415 15.11465 P PPL CZ 83 2826 325 Europe/Prague 2006-11-25
-3067023 Raškovice Raskovice Raszkowice 49.61975 18.47286 P PPL CZ 00 1771 405 Europe/Prague 2006-11-25
-3067026 Rapotín Rapotin Reitendorf 50.01094 17.03121 P PPL CZ 84 3009 367 Europe/Prague 2008-01-29
-3067047 Rakvice Rakvice 48.85811 16.8133 P PPL CZ 78 2134 166 Europe/Prague 2006-11-25
-3067051 Rakovník Rakovnik Rakonitz 50.1037 13.7334 P PPL CZ 88 16473 322 Europe/Prague 2008-11-28
-3067077 Rajhradice Rajhradice 49.09203 16.62933 P PPL CZ 78 1204 185 Europe/Prague 2006-11-25
-3067078 Rajhrad Rajhrad 49.09021 16.60388 P PPL CZ 78 2697 196 Europe/Prague 2006-11-25
-3067079 Ráječko Rajecko 49.39393 16.64497 P PPL CZ 78 1222 293 Europe/Prague 2006-11-25
-3067080 Rájec-Jestřebí Rajec-Jestrebi 49.41094 16.63902 P PPL CZ 78 3619 295 Europe/Prague 2006-11-25
-3067101 Radvanice Radvanice Radowenz 50.56745 16.06172 P PPL CZ 00 1090 526 Europe/Prague 2006-11-25
-3067110 Radslavice Radslavice 49.47817 17.51656 P PPL CZ 84 1110 224 Europe/Prague 2006-11-25
-3067157 Radonice Radonice Radonitz 50.29803 13.28464 P PPL CZ 89 1190 327 Europe/Prague 2006-11-25
-3067162 Radomyšl Radomysl Radomischl 49.31634 13.93024 P PPL CZ 79 1149 457 Europe/Prague 2006-11-25
-3067174 Radnice Radnice Radnitz 49.85677 13.6057 P PPL CZ 87 1749 387 Europe/Prague 2006-11-25
-3067204 Radiměř Radimer Bohmisch Rothmuhl,Böhmisch Rothmühl,Ceska Radimer,Mahrisch Rothmuhl,Moravska Radimer,Moravská Radiměř,Mährisch Rothmühl,Rothmuhl,Rothmühl,Česká Radiměř 49.6985 16.4407 P PPL CZ 86 1117 444 Europe/Prague 2008-07-08
-3067296 Pyšely Pysely Pischely 49.87678 14.67713 P PPL CZ 88 1250 372 Europe/Prague 2006-11-25
-3067314 Pustiměř Pustimer Nemecke Prusy,Německé Prusy,Pustomer,Pustoměř 49.32251 17.02792 P PPL CZ 78 1580 286 Europe/Prague 2006-11-25
-3067324 Pustá Polom Pusta Polom Wust Pohlom,Wüst Pohlom 49.84917 17.9979 P PPL CZ 00 1394 441 Europe/Prague 2006-11-25
-3067351 Ptení Pteni Ptin 49.51163 16.9611 P PPL CZ 84 1093 326 Europe/Prague 2006-11-25
-3067368 Psáry Psary Psar 49.93622 14.51276 P PPL CZ 88 2243 323 Europe/Prague 2006-11-25
-3067375 Prusinovice Prusinovice Prusinowitz 49.37898 17.5871 P PPL CZ 90 1207 264 Europe/Prague 2006-11-25
-3067379 Prušánky Prusanky 48.8284 16.98068 P PPL CZ 78 2145 183 Europe/Prague 2006-11-25
-3067383 Průhonice Pruhonice 49.99962 14.55017 P PPL CZ 88 2007 296 Europe/Prague 2006-11-25
-3067395 Protivín Protivin Protiwin,Protiwín 49.19949 14.21717 P PPL CZ 79 5021 388 Europe/Prague 2006-11-25
-3067398 Protivanov Protivanov Protiwanow 49.48351 16.83594 P PPL CZ 84 1077 665 Europe/Prague 2006-11-25
-3067416 Prostřední Bečva Prostredni Becva Mittel Becwa,Mittel Beczwa,Mittel Bečwa 49.43609 18.252 P PPL CZ 90 1661 465 Europe/Prague 2006-11-25
-3067421 Prostějov Prostejov Prosnitz,Prossnitz,Prostejov,Prostějov,Prosznitz,Простейов 49.47188 17.11184 P PPL CZ 84 47374 227 Europe/Prague 2010-01-29
-3067433 Prosek Prosek 50.11667 14.5 P PPLX CZ 52 15581 285 Europe/Prague 2007-04-24
-3067443 Proseč Prosec 49.8059 16.11621 P PPL CZ 86 2098 519 Europe/Prague 2006-11-25
-3067461 Proboštov Probostov Probstau 50.66773 13.83601 P PPL CZ 89 2333 243 Europe/Prague 2006-11-25
-3067485 Příšovice Prisovice 50.57813 15.0839 P PPL CZ 00 1277 241 Europe/Prague 2006-11-25
-3067499 Přimda Primda Pfraumberg 49.67488 12.67366 P PPL CZ 87 1364 696 Europe/Prague 2006-11-25
-3067514 Příkazy Prikazy Przikaz 49.6436 17.14337 P PPL CZ 84 1224 229 Europe/Prague 2006-11-25
-3067535 Přibyslav Pribyslav Pribislau,Přibislau 49.57684 15.73855 P PPL CZ 80 3965 487 Europe/Prague 2006-11-25
-3067542 Příbram Pribram Pribram,Prshibram,Prsibram,Příbram,Пршибрам,Пршібрам 49.68988 14.01043 P PPL CZ 88 35251 510 Europe/Prague 2006-11-25
-3067544 Příbor Pribor Freiberg,Pribor,Przyborz,Příbor 49.64094 18.14499 P PPL CZ 00 8789 285 Europe/Prague 2006-11-25
-3067553 Přeštice Prestice Prestitz,Přestitz 49.57298 13.3335 P PPL CZ 87 6353 353 Europe/Prague 2006-11-25
-3067577 Přerov nad Labem Prerov nad Labem Alt-Prerow,Alt-Přerow,Neu-Prerow,Neu-Přerow 50.16027 14.82502 P PPL CZ 88 1067 180 Europe/Prague 2006-11-25
-3067580 Přerov Prerov Prerau,Prerov,Přerov,Преров 49.45511 17.4509 P PPL CZ 84 47311 221 Europe/Prague 2010-01-29
-3067587 Přemyslovice Premyslovice Przemislowitz 49.55637 16.95581 P PPL CZ 84 1268 411 Europe/Prague 2006-11-25
-3067594 Přelouč Prelouc Prelauc,Přelauč 50.03985 15.56031 P PPL CZ 86 8586 222 Europe/Prague 2006-11-25
-3067627 Předměřice nad Labem Predmerice nad Labem Predmeritz,Předmeřitz 50.25633 15.81556 P PPL CZ 00 1638 242 Europe/Prague 2006-11-25
-3067631 Předklášteří Predklasteri Vorkloster 49.35253 16.40241 P PPL CZ 78 1446 261 Europe/Prague 2006-11-25
-3067660 Pražmo Prazmo 49.60876 18.48617 P PPL CZ 00 1007 435 Europe/Prague 2006-11-25
-3067676 Přáslavice Praslavice Przaslawitz 49.58568 17.38209 P PPL CZ 84 1290 300 Europe/Prague 2008-07-04
-3067696 Prague Prague %E3%83%97%E3%83%A9%E3%83%8F,PRG,Praag,Prag,Praga,Pragae,Prago,Prague,Praha,Pràg,Prág,Prága,Prâg,Prāga,bragh,bu la ge,peulaha,prag,praga,prak,prg,Πράγα,Праг,Прагæ,Прага,פראג,براغ,پراگ,پراگا,ܦܪܓ,ปราก,པུ་ལ་ཁེ,პრაღა,ፕራግ,プラハ,布拉格,프라하 50.08804 14.42076 P PPLC CZ 52 1165581 202 Europe/Prague 2011-12-02
-3067707 Prachovice Prachovice 49.89379 15.62872 P PPL CZ 86 1522 456 Europe/Prague 2006-11-25
-3067713 Prachatice Prachatice Prachatitz 49.01292 13.99752 P PPL CZ 79 11803 578 Europe/Prague 2008-11-28
-3067723 Pozořice Pozorice Posoritz,Posořitz 49.20976 16.79074 P PPL CZ 78 2016 316 Europe/Prague 2006-11-25
-3067724 Pozlovice Pozlovice Poslowitz 49.12921 17.76925 P PPL CZ 90 1189 300 Europe/Prague 2006-11-25
-3067733 Povrly Povrly Pomerle,Pommerle,Pömerle,Pömmerle 50.67276 14.16033 P PPL CZ 89 2219 148 Europe/Prague 2006-11-25
-3067752 Potštát Potstat Bodenstadt 49.63693 17.65174 P PPL CZ 84 1214 498 Europe/Prague 2006-11-25
-3067761 Postupice Postupice Postupitz 49.72798 14.77722 P PPL CZ 88 1120 419 Europe/Prague 2006-11-25
-3067765 Postřelmov Postrelmov Gross Heilendorf 49.90756 16.91226 P PPL CZ 84 3314 285 Europe/Prague 2006-11-25
-3067766 Postřekov Postrekov 49.45827 12.80678 P PPL CZ 87 1129 463 Europe/Prague 2006-11-25
-3067770 Postoloprty Postoloprty Postelberg 50.35979 13.70291 P PPL CZ 89 4924 193 Europe/Prague 2006-11-25
-3067783 Poříčí nad Sázavou Porici nad Sazavou Poric,Pořič 49.83895 14.67446 P PPL CZ 88 1045 273 Europe/Prague 2006-11-25
-3067789 Poříčany Poricany Porican,Pořican 50.10806 14.91818 P PPL CZ 88 1197 205 Europe/Prague 2006-11-25
-3067816 Popovice Popovice Popowitz 49.05255 17.52712 P PPL CZ 90 1091 262 Europe/Prague 2006-11-25
-3067834 Poniklá Ponikla Pinklau 50.66152 15.46329 P PPL CZ 82 1247 497 Europe/Prague 2007-01-23
-3067846 Pomezí Pomezi Laubendorf,Limberk 49.71026 16.31729 P PPL CZ 86 1031 588 Europe/Prague 2006-11-25
-3067870 Polná Polna 49.487 15.71881 P PPL CZ 80 5006 490 Europe/Prague 2006-11-25
-3067882 Polička Policka 49.71465 16.26543 P PPL CZ 86 9129 559 Europe/Prague 2006-11-25
-3067885 Police nad Metují Police nad Metuji Politz 50.53687 16.2335 P PPL CZ 00 4316 439 Europe/Prague 2006-11-25
-3067892 Polešovice Polesovice Poleschowitz 49.0339 17.34064 P PPL CZ 90 1941 227 Europe/Prague 2006-11-25
-3067897 Polepy Polepy 50.50563 14.26447 P PPL CZ 89 1178 160 Europe/Prague 2006-11-25
-3067953 Pohořelice Pohorelice Pohrlitz 48.98119 16.52445 P PPL CZ 78 4409 183 Europe/Prague 2006-11-25
-3068020 Podolí Podoli Kricen,Kritschen,Kříčeň 49.19042 16.72084 P PPL CZ CZ 78 1074 243 Europe/Prague 2006-11-25
-3068066 Podivín Podivin 48.82554 16.84822 P PPL CZ 78 2872 169 Europe/Prague 2006-11-25
-3068107 Poděbrady Podebrady Podebrad 50.14242 15.11881 P PPL CZ 88 13128 195 Europe/Prague 2006-11-25
-3068119 Podbořany Podborany Podersam 50.22937 13.41192 P PPL CZ 89 6212 328 Europe/Prague 2006-11-25
-3068140 Počátky Pocatky Pocatek,Počátek 49.2602 15.24022 P PPL CZ 80 2719 618 Europe/Prague 2006-11-25
-3068150 Poběžovice Pobezovice Ronsperg,Ronsperk,Ronšperk 49.51029 12.80261 P PPL CZ 87 1707 430 Europe/Prague 2006-11-25
-3068160 Plzeň Plzen Pilsen,Pilsna,Pilzen,Pilzenas,Pilzno,Pl'zen',Plzen,Plzena,Plzeņa,Plzeň,bylzn,peuljen,piruzen,Πίλζεν,Πίλσεν,Пилзен,Плзен,Плзењ,Пльзень,بيلزن,ピルゼン,플젠 49.74747 13.37759 P PPLA CZ 87 164180 316 Europe/Prague 2007-04-27
-3068162 Plumlov Plumlov Plumenau 49.46614 17.01502 P PPL CZ 84 2384 307 Europe/Prague 2006-11-25
-3068191 Plesná Plesna Fleissen 50.2207 12.34669 P PPL CZ 81 2077 501 Europe/Prague 2006-11-25
-3068215 Plavy Plavy 50.70324 15.31736 P PPL CZ 00 1077 399 Europe/Prague 2006-11-25
-3068222 Plasy Plasy Plass 49.93449 13.39035 P PPL CZ 87 2527 326 Europe/Prague 2006-11-25
-3068237 Plánice Planice Planitz 49.38993 13.47106 P PPL CZ 87 1649 559 Europe/Prague 2006-11-25
-3068244 Plaňany Planany Planan,Plaňan 50.0501 15.02944 P PPL CZ 88 1467 217 Europe/Prague 2006-11-25
-3068245 Planá nad Lužnicí Plana nad Luznici Plana an der Lusnitz,Planá an der Lusnitz 49.35444 14.70147 P PPL CZ 79 3128 396 Europe/Prague 2006-11-25
-3068246 Planá Plana Plan 49.86816 12.74378 P PPL CZ 87 5450 514 Europe/Prague 2006-11-25
-3068279 Píšť Pist' Sandau 49.97857 18.19349 P PPL CZ CZ 00 2096 217 Europe/Prague 2006-11-25
-3068292 Písek Pisek Piasek,Piosek,Pisek,Писек 49.55924 18.80231 P PPL CZ 00 1776 415 Europe/Prague 2010-01-29
-3068293 Písek Pisek Pisek,Písek,Писек 49.3088 14.1475 P PPL CZ 79 29774 374 Europe/Prague 2007-02-18
-3068298 Písečná Pisecna Sandhubel,Sandhybl,Sandhübel,Sandhýbl 50.27303 17.25373 P PPL CZ 84 1063 384 Europe/Prague 2006-11-25
-3068311 Pilníkov Pilnikov Pilsdorf 50.53247 15.8202 P PPL CZ 82 1110 367 Europe/Prague 2006-11-25
-3068329 Petřvald Petrvald 49.831 18.3894 P PPL CZ 00 6854 248 Europe/Prague 2006-11-25
-3068330 Petřvald Petrvald Gross Peterswald 49.70872 18.15719 P PPL CZ 00 1735 252 Europe/Prague 2006-11-25
-3068345 Petrovice u Karviné Petrovice u Karvine Petrovice u Karvine,Petrovice u Karviné,Piotrowice kolo Karwiny,Piotrowice koło Karwiny 49.89587 18.54779 P PPL CZ 00 4874 227 Europe/Prague 2007-12-20
-3068366 Petrovice Petrovice Petrowitz 49.55426 14.33737 P PPL CZ 88 1362 453 Europe/Prague 2006-11-25
-3068383 Petrov Petrov 48.88196 17.2781 P PPL CZ 78 1354 169 Europe/Prague 2006-11-25
-3068411 Peruc Peruc Perutz 50.3425 13.95986 P PPL CZ 89 2109 346 Europe/Prague 2006-11-25
-3068415 Perštejn Perstejn Purstein,Pürstein 50.38166 13.1102 P PPL CZ 89 1017 362 Europe/Prague 2006-11-25
-3068437 Pěnčín Pencin 50.68769 15.23593 P PPL CZ 00 1769 560 Europe/Prague 2006-11-25
-3068445 Pelhřimov Pelhrimov Pilgram 49.43134 15.22336 P PPL CZ 80 16541 496 Europe/Prague 2006-11-25
-3068476 Pečky Pecky Petschek 50.09043 15.03017 P PPL CZ 88 4317 199 Europe/Prague 2006-11-25
-3068478 Pecka Pecka 50.48034 15.60822 P PPL CZ 82 1254 419 Europe/Prague 2006-11-25
-3068494 Pchery Pchery Pcher 50.19378 14.11782 P PPL CZ 88 1743 302 Europe/Prague 2006-11-25
-3068522 Pavlíkov Pavlikov Pawlikow 50.05599 13.73636 P PPL CZ 88 1013 462 Europe/Prague 2006-11-25
-3068547 Paskov Paskov Paskau 49.73179 18.29037 P PPL CZ 00 3754 253 Europe/Prague 2006-11-25
-3068564 Paseka Paseka Paseha,Passek 49.79644 17.22276 P PPL CZ 84 1162 277 Europe/Prague 2006-11-25
-3068582 Pardubice Pardubice Pardubice,Pardubitz,Parntoumpitse,Παρντουμπίτσε,Пардубице 50.04075 15.77659 P PPLA CZ 86 88741 227 Europe/Prague 2008-06-18
-3068623 Palkovice Palkovice Palkowitz 49.63467 18.31508 P PPL CZ 00 2751 322 Europe/Prague 2006-11-25
-3068647 Pacov Pacov Patzau 49.47076 15.00168 P PPL CZ 80 5145 559 Europe/Prague 2006-11-25
-3068689 Otrokovice Otrokovice Bahnak,Bahňák,Otrokovice,Otrokovice-Kvitkovice,Otrokovice-Kvítkovice 49.21667 17.51667 P PPL CZ 90 18745 183 Europe/Prague 2010-08-10
-3068690 Otrokovice Otrokovice Kvitkovice,Kvítkovice 49.20934 17.53944 P PPL CZ CZ 90 18857 196 Europe/Prague 2006-11-25
-3068706 Otnice Otnice Ottnitz 49.08642 16.81443 P PPL CZ 78 1411 212 Europe/Prague 2006-11-25
-3068719 Otice Otice Ottendorf 49.91684 17.86982 P PPL CZ 00 1292 262 Europe/Prague 2006-11-25
-3068727 Otaslavice Otaslavice Dolni Otaslavice,Dolní Otaslavice,Unter Ottaslawitz 49.38833 17.07108 P PPL CZ 84 1275 252 Europe/Prague 2006-11-25
-3068750 Ostrožská Nová Ves Ostrozska Nova Ves Hradisch,Neudorf 49.00434 17.43632 P PPL CZ 90 3360 181 Europe/Prague 2006-11-25
-3068751 Ostrožská Lhota Ostrozska Lhota 48.97559 17.46751 P PPL CZ 90 1633 200 Europe/Prague 2006-11-25
-3068753 Ostrov u Macochy Ostrov u Macochy Ostrow 49.38236 16.76268 P PPL CZ 78 1078 503 Europe/Prague 2006-11-25
-3068766 Ostrov Ostrov Ostrov nad Ohri,Ostrov nad Ohří,Schlackenwerth 50.30592 12.93907 P PPL CZ 81 17206 403 Europe/Prague 2008-11-28
-3068785 Ostroměř Ostromer Wostromer,Wostroměr 50.37246 15.54949 P PPL CZ 88 1368 263 Europe/Prague 2006-11-25
-3068797 Ostravice Ostravice Ostrawica,Ostrawitz,Ostrawitza 49.5351 18.39164 P PPL CZ CZ 00 2324 436 Europe/Prague 2006-11-25
-3068799 Ostrava Ostrava Ostraba,Ostrava,Ostrawa,ao si te la wa,awstrafa,e si te la fa,oseuteulaba,osutoravu~a,Οστράβα,Острава,אוסטרבה,أوسترافا,オストラヴァ,俄斯特拉發,奥斯特拉瓦,오스트라바 49.83465 18.28204 P PPLA CZ 85 313088 211 Europe/Prague 2006-11-25
-3068805 Ostopovice Ostopovice 49.161 16.54548 P PPL CZ 78 1367 238 Europe/Prague 2006-11-25
-3068818 Osoblaha Osoblaha Hotzenplotz,Osoblaga,Osobłaga 50.27517 17.71523 P PPL CZ 00 1136 238 Europe/Prague 2006-11-25
-3068830 Oslavany Oslavany Oslawan 49.12335 16.33653 P PPL CZ 78 4561 218 Europe/Prague 2006-11-25
-3068837 Oskava Oskava Oskau 49.89523 17.13214 P PPL CZ 84 1471 339 Europe/Prague 2006-11-25
-3068844 Osík Osik 49.84355 16.28467 P PPL CZ 86 1051 361 Europe/Prague 2006-11-25
-3068856 Osek nad Bečvou Osek nad Becvou Osek 49.51121 17.52829 P PPL CZ 84 1097 225 Europe/Prague 2006-11-25
-3068857 Osek Osek Ossegg 50.62115 13.69274 P PPL CZ 89 4975 315 Europe/Prague 2010-02-20
-3068861 Osek Osek Wosek 49.77594 13.5906 P PPL CZ CZ 87 1159 399 Europe/Prague 2007-02-11
-3068867 Osečná Osecna Oschitz 50.69489 14.92138 P PPL CZ 00 1004 374 Europe/Prague 2006-11-25
-3068873 Orlová Orlova Orlau,Orlova,Orlowa,Orłowa,Орлова 49.84527 18.43011 P PPL CZ 00 34282 226 Europe/Prague 2010-01-29
-3068897 Ořechov Orechov Gross Urhau 49.11118 16.52329 P PPL CZ 78 2368 296 Europe/Prague 2006-11-25
-3068915 Opočno Opocno 50.26742 16.1148 P PPL CZ 00 3177 308 Europe/Prague 2006-11-25
-3068927 Opava Opava Opava,Opawa,Oppavia,Troppau,Опава 49.93866 17.90257 P PPL CZ 85 60252 262 Europe/Prague 2008-11-28
-3068933 Opatovice nad Labem Opatovice nad Labem Opatovic,Opatovice 50.14541 15.79045 P PPL CZ 86 2218 227 Europe/Prague 2006-11-25
-3068946 Opatov Opatov Abtsdorf 49.825 16.50458 P PPL CZ 86 1124 436 Europe/Prague 2006-11-25
-3068950 Opařany Oparany Oporany,Opořany,Woporan,Wopořan 49.39678 14.48137 P PPL CZ 79 1365 469 Europe/Prague 2006-11-25
-3068969 Ondřejov Ondrejov Ondrejow,Ondřejow 49.90461 14.7842 P PPL CZ 88 1086 480 Europe/Prague 2006-11-25
-3068997 Olšany Olsany 49.96509 16.85894 P PPL CZ 84 1108 320 Europe/Prague 2006-11-25
-3069007 Oloví Olovi Bleistadt 50.25113 12.55877 P PPL CZ 81 1909 476 Europe/Prague 2006-11-25
-3069011 Olomouc Olomouc Aebura,Eburum,Olmuetz,Olmütz,Olomouc,Olomouca,Olomoucas,Olomouch,Olomuc,Olomucium,Olomuniec,Ołomuniec,ao luo mu ke,awlwmwts,oromoutsu,Оломоуц,Оломуц,أولوموتس,オロモウツ,奧洛穆克 49.59552 17.25175 P PPLA CZ 84 101268 223 Europe/Prague 2012-03-30
-3069029 Olešnice Olesnice Oels 49.55755 16.42169 P PPL CZ 78 1757 550 Europe/Prague 2006-11-25
-3069059 Oldřišov Oldrisov Odersch 49.9913 17.96074 P PPL CZ 00 1306 281 Europe/Prague 2006-11-25
-3069082 Olbramovice Olbramovice Wolframitz 48.9848 16.40239 P PPL CZ 78 1048 197 Europe/Prague 2006-11-25
-3069092 Okrouhlice Okrouhlice Okroulitz 49.62991 15.49083 P PPL CZ 80 1210 409 Europe/Prague 2006-11-25
-3069098 Okříšky Okrisky Okrischka,Okrischko 49.24539 15.76959 P PPL CZ 80 2016 477 Europe/Prague 2006-11-25
-3069118 Ohrazenice Ohrazenice Wohrazenitz 50.59765 15.12596 P PPL CZ 00 1055 288 Europe/Prague 2006-11-25
-3069136 Odry Odry Odrau 49.66255 17.83084 P PPL CZ 00 7395 305 Europe/Prague 2006-11-25
-3069150 Odolena Voda Odolena Voda Wodolka 50.23341 14.41078 P PPL CZ 88 4451 247 Europe/Prague 2006-11-25
-3069179 Obrnice Obrnice Obernitz 50.50498 13.6954 P PPL CZ 89 2631 222 Europe/Prague 2006-11-25
-3069221 Obecnice Obecnice Obecnitz 49.71615 13.94731 P PPL CZ 88 1174 523 Europe/Prague 2006-11-25
-3069230 Nýrsko Nyrsko Neuern 49.29387 13.14353 P PPL CZ 87 5070 455 Europe/Prague 2006-11-25
-3069232 Nýřany Nyrany Nurschan,Nürschan 49.71145 13.21185 P PPL CZ 87 6942 335 Europe/Prague 2006-11-25
-3069236 Nymburk Nymburk Neuenberg,Nimburg,Nimburk,Нимбурк 50.18605 15.04167 P PPL CZ 88 14373 192 Europe/Prague 2010-01-29
-3069238 Nýdek Nydek 49.65609 18.75687 P PPL CZ 00 1934 401 Europe/Prague 2006-11-25
-3069290 Nový Malín Novy Malin Frankstadt,Frankstat,Frankštát 49.94262 17.03191 P PPL CZ 84 2713 369 Europe/Prague 2006-11-25
-3069300 Nový Knín Novy Knin Neu Knin 49.788 14.29355 P PPL CZ 88 1779 312 Europe/Prague 2006-11-25
-3069305 Nový Jičín Novy Jicin Neutitschein,Novi-Jichin,Novy Jicin,Nový Jičín,Nowy Jiczyn,xin yi qin,Нови-Йичин,新伊钦 49.59438 18.01028 P PPL CZ 85 26547 287 Europe/Prague 2008-11-28
-3069308 Nový Hrozenkov Novy Hrozenkov Neu-Hrosenkau 49.33697 18.19793 P PPL CZ 90 2714 449 Europe/Prague 2006-11-25
-3069377 Nový Bydžov Novy Bydzov Neubidschow,Novy Budzov,Novy Budžov 50.2415 15.49082 P PPL CZ 82 7160 235 Europe/Prague 2006-11-25
-3069381 Nový Bor Novy Bor Bor u Ceske Lipy,Bor u Ceské Lipy,Haida 50.75761 14.55555 P PPL CZ 00 12171 371 Europe/Prague 2006-11-25
-3069395 Novosedly Novosedly Neusiedl 48.83704 16.49273 P PPL CZ 78 1162 176 Europe/Prague 2006-11-25
-3069398 Novosedlice Novosedlice Weisskirchlitz 50.65633 13.82304 P PPL CZ 89 2204 261 Europe/Prague 2006-11-25
-3069422 Nové Veselí Nove Veseli Neuwessely 49.51976 15.90853 P PPL CZ 80 1236 559 Europe/Prague 2006-11-25
-3069429 Nové Syrovice Nove Syrovice Neu Serowitz 49.01763 15.77345 P PPL CZ 80 1007 443 Europe/Prague 2006-11-25
-3069431 Nové Strašecí Nove Straseci Neustraschitz 50.15272 13.90043 P PPL CZ 88 5082 481 Europe/Prague 2006-11-25
-3069437 Nové Sedlo Nove Sedlo Neu Sattl,Neusattle 50.20647 12.738 P PPL CZ 81 2669 428 Europe/Prague 2006-11-25
-3069464 Nové Město pod Smrkem Nove Mesto pod Smrkem Neustadt an der Tafelfichte,Nove Mesto,Nové Město 50.92491 15.22943 P PPL CZ 83 3915 467 Europe/Prague 2006-11-25
-3069465 Nové Město na Moravě Nove Mesto na Morave Neustadtl 49.56144 16.07418 P PPL CZ 80 10537 602 Europe/Prague 2006-11-25
-3069466 Nové Město nad Metují Nove Mesto nad Metuji Neustadt an der Mettau 50.34456 16.15147 P PPL CZ 00 10126 334 Europe/Prague 2006-11-25
-3069493 Nové Hrady Nove Hrady Gratzen 48.78963 14.77839 P PPL CZ 79 2590 542 Europe/Prague 2006-11-25
-3069648 Nová Včelnice Nova Vcelnice Vcelnice,Včelnice 49.23935 15.0726 P PPL CZ 79 2449 507 Europe/Prague 2006-11-25
-3069662 Nová Role Nova Role Neu-Rohlau 50.27092 12.78422 P PPL CZ 81 4047 439 Europe/Prague 2006-11-25
-3069669 Nová Paka Nova Paka Neu Paka 50.49449 15.51503 P PPL CZ 82 9219 427 Europe/Prague 2006-11-25
-3069705 Nová Cerekev Nova Cerekev Neucerekwe 49.41723 15.11675 P PPL CZ 80 1097 562 Europe/Prague 2006-11-25
-3069706 Nová Bystřice Nova Bystrice Neu-Bistritz,Novy Bystrice,Nový Bystřice 49.01926 15.10316 P PPL CZ 79 3371 593 Europe/Prague 2006-11-25
-3069720 Nosislav Nosislav Noslau 49.0138 16.65431 P PPL CZ 78 1230 184 Europe/Prague 2006-11-25
-3069738 Nižbor Nizbor 49.99995 14.00237 P PPL CZ 88 1549 236 Europe/Prague 2006-11-25
-3069744 Nivnice Nivnice 48.97465 17.64757 P PPL CZ 90 3278 247 Europe/Prague 2006-11-25
-3069758 Nezvěstice Nezvestice Nezbawietitz 49.64043 13.51962 P PPL CZ 87 1353 377 Europe/Prague 2006-11-25
-3069773 Nezamyslice Nezamyslice Nezamislitz 49.32543 17.17326 P PPL CZ 84 1278 207 Europe/Prague 2006-11-25
-3069785 Neveklov Neveklov Neweklau 49.75373 14.53291 P PPL CZ 88 2357 412 Europe/Prague 2006-11-25
-3069796 Netvořice Netvorice Networitz 49.81569 14.51827 P PPL CZ 88 1060 358 Europe/Prague 2006-11-25
-3069808 Netolice Netolice Netolitz 49.0493 14.197 P PPL CZ 79 2721 434 Europe/Prague 2006-11-25
-3069832 Nesovice Nesovice Nessowitz 49.15111 17.08095 P PPL CZ 78 1152 239 Europe/Prague 2006-11-25
-3069844 Neratovice Neratovice Nerarovice,Neratowitz 50.25926 14.51759 P PPL CZ 88 16427 170 Europe/Prague 2006-11-25
-3069862 Nepomuk Nepomuk 49.48616 13.58225 P PPL CZ 87 3670 451 Europe/Prague 2006-11-25
-3069900 Němčice nad Hanou Nemcice nad Hanou Nemcice na Hane,Němčice na Hané 49.34181 17.20596 P PPL CZ 84 2095 204 Europe/Prague 2006-11-25
-3069927 Nelahozeves Nelahozeves Muhlhausen,Mühlhausen 50.26148 14.29881 P PPL CZ 88 1313 190 Europe/Prague 2006-11-25
-3069934 Nejdek Nejdek Neudek 50.32242 12.72936 P PPL CZ 81 8565 557 Europe/Prague 2006-11-25
-3069938 Nehvizdy Nehvizdy Gross Nehwist,Gross-Nehwizd 50.13056 14.72993 P PPL CZ 88 1045 242 Europe/Prague 2006-11-25
-3069952 Nedvědice Nedvedice Nedweditz,Nedwěditz 49.45702 16.33406 P PPL CZ 80 1330 328 Europe/Prague 2006-11-25
-3069960 Nedašov Nedasov 49.10778 18.07036 P PPL CZ 90 1428 402 Europe/Prague 2006-11-25
-3069966 Nedakonice Nedakonice Nedakonitz 49.03159 17.38141 P PPL CZ 90 1505 176 Europe/Prague 2006-11-25
-3069980 Nechanice Nechanice Nechanitz 50.23737 15.63276 P PPL CZ CZ 82 2183 242 Europe/Prague 2006-11-25
-3070010 Návsí u Jablunkova Navsi u Jablunkova Navsi,Nawsie,Nawsy,Návsí 49.5872 18.75907 P PPL CZ 00 3809 392 Europe/Prague 2006-11-25
-3070030 Nasavrky Nasavrky Nassaberg 49.8445 15.80461 P PPL CZ CZ 86 1526 487 Europe/Prague 2006-11-25
-3070045 Napajedla Napajedla Napajedl 49.17156 17.51194 P PPL CZ 90 7662 185 Europe/Prague 2006-11-25
-3070054 Náměšť na Hané Namest' na Hane Namiescht 49.60213 17.06539 P PPL CZ CZ 84 1872 247 Europe/Prague 2006-11-25
-3070055 Náměšť nad Oslavou Namest' nad Oslavou Namiest 49.20726 16.15849 P PPL CZ CZ 80 5192 360 Europe/Prague 2006-11-25
-3070071 Náklo Naklo 49.65462 17.12969 P PPL CZ 84 1425 232 Europe/Prague 2006-11-25
-3070122 Náchod Nachod 50.4167 16.16289 P PPL CZ 82 21263 350 Europe/Prague 2006-11-25
-3070129 Načeradec Naceradec Naceradetz,Načeradetz 49.61018 14.90633 P PPL CZ 88 1044 526 Europe/Prague 2006-11-25
-3070136 Mýto Myto Mauth 49.78904 13.73461 P PPL CZ 87 1384 448 Europe/Prague 2006-11-25
-3070190 Mutěnice Mutenice Mutienitz 48.90413 17.02917 P PPL CZ 78 3647 182 Europe/Prague 2006-11-25
-3070204 Mukařov Mukarov Mukarschow 49.99115 14.74155 P PPL CZ 88 1297 432 Europe/Prague 2006-11-25
-3070223 Mšeno Mseno Mscheno 50.43809 14.6325 P PPL CZ 88 1417 359 Europe/Prague 2006-11-25
-3070251 Mrákov Mrakov 49.40314 12.9512 P PPL CZ 87 1144 461 Europe/Prague 2006-11-25
-3070264 Moutnice Moutnice 49.04924 16.73741 P PPL CZ 78 1139 193 Europe/Prague 2006-11-25
-3070271 Mosty u Jablunkova Mosty u Jablunkova Mosty 49.52737 18.75417 P PPL CZ 85 3989 490 Europe/Prague 2008-11-23
-3070276 Mostkovice Mostkovice 49.47215 17.05212 P PPL CZ 84 1313 254 Europe/Prague 2006-11-25
-3070282 Mostek Mostek Mastig 50.48623 15.69622 P PPL CZ CZ 82 1360 440 Europe/Prague 2006-11-25
-3070291 Most Most Bruex,Brüx,Most,Мост 50.50301 13.63617 P PPL CZ 89 67905 282 Europe/Prague 2008-11-28
-3070299 Mořkov Morkov Murk 49.53684 18.05968 P PPL CZ 00 2414 361 Europe/Prague 2006-11-25
-3070306 Moravský Žižkov Moravsky Zizkov 48.83285 16.9314 P PPL CZ 78 1396 195 Europe/Prague 2006-11-25
-3070308 Moravský Písek Moravsky Pisek 48.99016 17.33269 P PPL CZ 78 2201 178 Europe/Prague 2006-11-25
-3070310 Moravský Krumlov Moravsky Krumlov Mahrisch Kromau,Mährisch Kromau 49.04893 16.31169 P PPL CZ 78 6050 258 Europe/Prague 2006-11-25
-3070314 Moravský Beroun Moravsky Beroun Barn,Beroun,Bärn 49.79374 17.44212 P PPL CZ 00 3369 564 Europe/Prague 2006-11-25
-3070323 Moravské Budějovice Moravske Budejovice Mahrisch-Budwitz,Mährisch-Budwitz 49.05209 15.80864 P PPL CZ 80 7971 467 Europe/Prague 2006-11-25
-3070325 Moravská Třebová Moravska Trebova Mahrisch Trubau,Mährisch Trübau 49.75793 16.66426 P PPL CZ 86 11414 364 Europe/Prague 2006-11-25
-3070329 Moravská Nová Ves Moravska Nova Ves 48.80304 17.01371 P PPL CZ 78 2517 190 Europe/Prague 2006-11-25
-3070339 Morávka Moravka Morawka 49.59607 18.52471 P PPL CZ 00 1017 462 Europe/Prague 2006-11-25
-3070344 Moravičany Moravicany Morawiczan 49.75694 16.96042 P PPL CZ 84 1184 249 Europe/Prague 2006-11-25
-3070354 Moravany Moravany Morawan 50.00095 15.94071 P PPL CZ 86 1706 248 Europe/Prague 2006-11-25
-3070356 Moravany Moravany Morbes 49.1478 16.58026 P PPL CZ 78 1286 248 Europe/Prague 2008-07-08
-3070383 Mokré Lazce Mokre Lazce 49.90462 18.02954 P PPL CZ 00 1085 255 Europe/Prague 2006-11-25
-3070390 Mokrá Hora Mokra Hora 49.26176 16.59107 P PPL CZ 00 2612 286 Europe/Prague 2008-07-08
-3070404 Mohelno Mohelno 49.11412 16.19022 P PPL CZ 80 1424 348 Europe/Prague 2006-11-25
-3070409 Mohelnice Mohelnice Muglitz,Müglitz 49.77698 16.91946 P PPL CZ 84 9742 278 Europe/Prague 2006-11-25
-3070416 Modřice Modrice Modritz,Mödritz 49.11928 16.60446 P PPL CZ 78 3866 204 Europe/Prague 2008-07-08
-3070420 Modřany Modrany Modran,Modrzhany,Modřan,Модржаны 50.01116 14.4096 P PPLX CZ CZ 52 31901 231 Europe/Prague 2010-01-29
-3070446 Mníšek pod Brdy Mnisek pod Brdy Mnischek,Mnisek 49.8665 14.26176 P PPL CZ 88 4181 384 Europe/Prague 2006-11-25
-3070447 Mníšek Mnisek Einsiedel,Mnisk 50.83163 15.0563 P PPL CZ 83 1133 387 Europe/Prague 2006-11-25
-3070451 Mnichovo Hradiště Mnichovo Hradiste Mnichovo Hradiste,Mnichovo Hradiště,Mnikhovo Gradishte,Muenchengraetz,Münchengrätz,Мнихово Градиште,ムニホヴォ・フラジシチェ 50.5272 14.97134 P PPL CZ 88 8368 241 Europe/Prague 2008-11-28
-3070452 Mnichovice Mnichovice Mnichowitz 49.93601 14.70907 P PPL CZ 88 2256 351 Europe/Prague 2006-11-25
-3070537 Mladé Buky Mlade Buky Jungbuch 50.60643 15.83348 P PPL CZ 82 2232 486 Europe/Prague 2006-11-25
-3070542 Mladá Vožice Mlada Vozice Jungwoschitz,Male Vozice,Malé Vožice 49.53313 14.80857 P PPL CZ 79 2772 450 Europe/Prague 2006-11-25
-3070544 Mladá Boleslav Mlada Boleslav Jungbunzlau,Mlada Boleslav,Mlada Boleslaz,Mlada-Boleslav,Mladá Boleslav,Млада-Болеслав 50.41135 14.90318 P PPL CZ 88 43684 241 Europe/Prague 2008-11-28
-3070557 Mistřice Mistrice Mistritz 49.08668 17.53597 P PPL CZ 90 1169 250 Europe/Prague 2006-11-25
-3070575 Mirovice Mirovice Mirowitz 49.51555 14.03582 P PPL CZ 79 1658 441 Europe/Prague 2006-11-25
-3070580 Mirotice Mirotice Mirotitz 49.42908 14.03697 P PPL CZ 79 1114 420 Europe/Prague 2008-11-28
-3070584 Mirošov Mirosov Miroschau,Miröschau 49.68782 13.65807 P PPL CZ 87 2237 455 Europe/Prague 2006-11-25
-3070593 Miroslav Miroslav Misslitz 48.94767 16.31252 P PPL CZ 78 3017 253 Europe/Prague 2006-11-25
-3070603 Miřetice Miretice 49.84126 15.88472 P PPL CZ 86 1205 394 Europe/Prague 2006-11-25
-3070622 Mimoň Mimon Niemes 50.65869 14.72474 P PPL CZ 00 6692 281 Europe/Prague 2006-11-25
-3070628 Milovice Milovice Milowitz 50.22596 14.88863 P PPL CZ 88 5461 190 Europe/Prague 2006-11-25
-3070640 Milotice Milotice 48.95528 17.14241 P PPL CZ 78 1941 183 Europe/Prague 2006-11-25
-3070661 Milín Milin 49.63192 14.046 P PPL CZ 88 2053 550 Europe/Prague 2006-11-25
-3070666 Milíkov Milikov 49.58565 18.71943 P PPL CZ 00 1291 423 Europe/Prague 2006-11-25
-3070678 Milevsko Milevsko Muhlhausen,Mühlhausen 49.45089 14.36 P PPL CZ 79 9343 457 Europe/Prague 2006-11-25
-3070715 Mikulovice Mikulovice Niklasdorf 50.29854 17.32155 P PPL CZ 84 2750 324 Europe/Prague 2006-11-25
-3070720 Mikulov Mikulov Nickolsburg,Nikolov,Nikolsburg 48.80556 16.6378 P PPL CZ 78 7608 243 Europe/Prague 2009-05-06
-3070724 Mikulčice Mikulcice 48.81643 17.05107 P PPL CZ 78 1881 163 Europe/Prague 2006-11-25
-3070725 Mikulášovice Mikulasovice Nixdorf 50.96507 14.36368 P PPL CZ 89 2375 424 Europe/Prague 2006-11-25
-3070774 Meziměstí Mezimesti Halbstadt,Mesimesti,Mesiměstí 50.62461 16.24207 P PPL CZ 00 2784 435 Europe/Prague 2006-11-25
-3070792 Meziboři Mezibori Schonbach,Schönbach 50.62115 13.5987 P PPL CZ 89 4885 515 Europe/Prague 2006-11-25
-3070800 Metylovice Metylovice 49.60666 18.33911 P PPL CZ 00 1534 370 Europe/Prague 2006-11-25
-3070814 Město Touškov Mesto Touskov Touskov,Touškov,Tuschkau Stadt 49.77587 13.25108 P PPL CZ 87 1777 331 Europe/Prague 2009-06-07
-3070816 Město Libavá Mesto Libava Libava,Libavá,Stadt Liebau 49.72162 17.52013 P PPL CZ 84 1213 544 Europe/Prague 2006-11-25
-3070819 Město Albrechtice Mesto Albrechtice Albrechtice,Olbersdorf,Olbersdorf Stadt,Olbrachcice 50.16294 17.57481 P PPL CZ 00 3638 389 Europe/Prague 2006-11-25
-3070820 Město Mesto Meste Tepla,Mesto,Měste Teplá,Město,Tepl,Tepl Stadt,Tepla,Teplá 49.97997 12.86432 P PPL CZ 81 3013 659 Europe/Prague 2012-01-19
-3070822 Městec Králové Mestec Kralove Konigstadtl,Königstadtl 50.20718 15.29758 P PPL CZ 88 2913 215 Europe/Prague 2006-11-25
-3070823 Městečko Trnávka Mestecko Trnavka Markt Turnau,Markt Türnau,Trnavka,Trnávka,Turnau,Türnau 49.70926 16.72744 P PPL CZ 86 1502 319 Europe/Prague 2006-11-25
-3070834 Měšice Mesice 50.19799 14.51992 P PPL CZ 88 1083 202 Europe/Prague 2006-11-25
-3070844 Merklín Merklin Merkelsgrun,Merkelsgrün,Merklin u Karlovych Var,Merklín u Karlových Var 50.32808 12.8635 P PPL CZ 81 1117 516 Europe/Prague 2006-11-25
-3070845 Merklín Merklin 49.56043 13.1979 P PPL CZ 87 1034 381 Europe/Prague 2006-11-25
-3070847 Měřín Merin Wollein 49.39321 15.88381 P PPL CZ 80 1910 490 Europe/Prague 2006-11-25
-3070853 Měnín Menin Monitz,Mönitz 49.0824 16.69424 P PPL CZ 78 1657 191 Europe/Prague 2006-11-25
-3070862 Mělník Melnik Mel'nik,Melnik,Mělník,mlnyk,Мельник,ملنیک 50.3505 14.47411 P PPL CZ 88 19231 219 Europe/Prague 2007-02-18
-3070886 Medlov Medlov Meedl 49.78754 17.06261 P PPL CZ 84 1560 252 Europe/Prague 2006-11-25
-3070899 Meclov Meclov Metzling 49.50556 12.88082 P PPL CZ 87 1062 391 Europe/Prague 2006-11-25
-3070902 Měčín Mecin 49.48009 13.40289 P PPL CZ 87 1118 476 Europe/Prague 2006-11-25
-3070906 Měcholupy Mecholupy Michelob 50.26666 13.53737 P PPL CZ 89 1026 253 Europe/Prague 2006-11-25
-3070995 Markvartovice Markvartovice Markersdorf 49.90595 18.23602 P PPL CZ 00 1766 241 Europe/Prague 2006-11-25
-3071024 Mariánské Lázně Marianske Lazne Marianske Lazne,Marienbad,Mariánské Lázně,Mariënbad,マリアーンスケー・ラーズニェ 49.96459 12.70118 P PPL CZ 81 14277 592 Europe/Prague 2007-02-17
-3071046 Manětín Manetin 49.99177 13.23319 P PPL CZ 87 1240 412 Europe/Prague 2006-11-25
-3071099 Malšice Malsice Malschitz 49.36391 14.57868 P PPL CZ 79 1702 498 Europe/Prague 2006-11-25
-3071110 Malonty Malonty Meinetschlag 48.68611 14.57678 P PPL CZ 79 1135 681 Europe/Prague 2006-11-25
-3071148 Malé Svatoňovice Male Svatonovice Klein Schwadowitz 50.53395 16.04978 P PPL CZ 00 1587 439 Europe/Prague 2006-11-25
-3071213 Malá Strana Mala Strana Kisoldal,Mala Strana,Malgranda Kvartalo de Prago,Malá Strana,Prager Kleinseite,Μάλα Στράνα 50.08774 14.40449 P PPLX CZ 52 6350 209 Europe/Prague 2007-04-24
-3071223 Malá Skála Mala Skala 50.64631 15.19543 P PPL CZ 00 1067 326 Europe/Prague 2006-11-25
-3071272 Majetín Majetin 49.49808 17.33314 P PPL CZ 84 1087 206 Europe/Prague 2006-11-25
-3071289 Machov Machov Machau 50.49927 16.2769 P PPL CZ 00 1109 478 Europe/Prague 2006-11-25
-3071302 Lysice Lysice Lissitz 49.4516 16.53716 P PPL CZ 78 1831 362 Europe/Prague 2006-11-25
-3071304 Lysá nad Labem Lysa nad Labem Lissa an der Elbe 50.20143 14.83281 P PPL CZ 88 8194 189 Europe/Prague 2006-11-25
-3071319 Lužná Luzna 50.12377 13.77004 P PPL CZ 88 1806 349 Europe/Prague 2006-11-25
-3071330 Lužice Luzice 48.84098 17.07104 P PPL CZ 78 2750 174 Europe/Prague 2006-11-25
-3071333 Lužec nad Vltavou Luzec nad Vltavou Luzec 50.32138 14.40022 P PPL CZ 88 1347 169 Europe/Prague 2006-11-25
-3071339 Luže Luze 49.89341 16.0285 P PPL CZ 86 2591 306 Europe/Prague 2006-11-25
-3071350 Lutín Lutin Luttein 49.55845 17.13572 P PPL CZ 84 3194 222 Europe/Prague 2006-11-25
-3071351 Luštěnice Lustenice Luschtenitz,Luschtěnitz 50.32296 14.93667 P PPL CZ 88 1447 209 Europe/Prague 2006-11-25
-3071374 Lukov Lukov 49.29027 17.72959 P PPL CZ 90 1725 310 Europe/Prague 2006-11-25
-3071381 Lukavice Lukavice 50.06029 16.48207 P PPL CZ 86 1066 386 Europe/Prague 2006-11-25
-3071388 Lukavec Lukavec Lukawetz 49.56541 14.99041 P PPL CZ 80 1120 586 Europe/Prague 2006-11-25
-3071390 Luka nad Jihlavou Luka nad Jihlavou Wiese 49.37403 15.70194 P PPL CZ 80 2586 447 Europe/Prague 2006-11-25
-3071407 Luhačovice Luhacovice Luhatschowitz 49.09982 17.75747 P PPL CZ 90 5554 254 Europe/Prague 2006-11-25
-3071429 Ludgeřovice Ludgerovice Ludgerstal 49.89042 18.24008 P PPL CZ 00 4635 231 Europe/Prague 2006-11-25
-3071447 Lučany nad Nisou Lucany nad Nisou Lucany,Lučany,Wiesenthal,Wiesenthal an der Neisse 50.74136 15.22046 P PPL CZ 00 1636 593 Europe/Prague 2006-11-25
-3071448 Luby Luby Schoenbach,Schonbach,Schönbach 50.25248 12.40595 P PPL CZ 81 2525 524 Europe/Prague 2006-11-25
-3071467 Lubenec Lubenec Lubenz 50.13207 13.31319 P PPL CZ 89 1541 378 Europe/Prague 2006-11-25
-3071480 Lovosice Lovosice Lavosice,Lobositz 50.51504 14.05103 P PPL CZ 89 9196 156 Europe/Prague 2008-11-28
-3071507 Louny Louny Laun,Louny 50.35699 13.79667 P PPL CZ 89 19147 204 Europe/Prague 2008-11-28
-3071529 Louka Louka 48.91517 17.48927 P PPL CZ 78 1045 246 Europe/Prague 2006-11-25
-3071532 Loučovice Loucovice Bolechy,Wullachen 48.62019 14.25747 P PPL CZ CZ 79 1955 672 Europe/Prague 2006-11-25
-3071533 Loučovice Loucovice Kienberg,Loucovice,Loučovice 48.6209 14.24976 P PPL CZ 79 1951 698 Europe/Prague 2012-01-19
-3071536 Loučná nad Desnou Loucna nad Desnou Vizmberk,Vízmberk,Wiesenberg 50.07433 17.09052 P PPL CZ 84 1949 493 Europe/Prague 2008-07-04
-3071571 Loučeň Loucen Lautschin 50.28537 15.02049 P PPL CZ 88 1082 256 Europe/Prague 2006-11-25
-3071579 Loštice Lostice Loschitz 49.7447 16.92892 P PPL CZ 84 3098 260 Europe/Prague 2006-11-25
-3071602 Lom u Mostu Lom u Mostu Bruch,Lom 50.59328 13.65729 P PPL CZ 89 3736 296 Europe/Prague 2006-11-25
-3071606 Lomnice nad Popelkou Lomnice nad Popelkou Lomnice,Lomnitz an der Popelka 50.53062 15.37341 P PPL CZ 83 5957 479 Europe/Prague 2006-11-25
-3071607 Lomnice nad Lužnicí Lomnice nad Luznici Lomnice na Luznici,Lomnice na Lužnicí,Lomnitz 49.08468 14.71727 P PPL CZ 79 1660 424 Europe/Prague 2006-11-25
-3071609 Lomnice Lomnice Lanz 50.21174 12.63267 P PPL CZ 81 1138 432 Europe/Prague 2006-11-25
-3071611 Lomnice Lomnice Lomnitz 49.40462 16.41359 P PPL CZ 78 1300 373 Europe/Prague 2006-11-25
-3071627 Loket Loket Elbogen,Loket,Локет 50.186 12.75405 P PPL CZ 81 3217 415 Europe/Prague 2010-10-07
-3071643 Loděnice Lodenice Lodenitz 49.99486 14.15785 P PPL CZ 88 1564 260 Europe/Prague 2006-11-25
-3071645 Lochovice Lochovice Lochowitz 49.85318 13.98126 P PPL CZ 88 1085 302 Europe/Prague 2006-11-25
-3071664 Litvínovice Litvinovice Leitowitz 48.96207 14.45146 P PPL CZ 79 1483 390 Europe/Prague 2006-11-25
-3071665 Litvínov Litvinov Litvinov,Litvínov,Oberleutensdorf,Литвинов 50.6042 13.61812 P PPL CZ 89 27022 342 Europe/Prague 2010-01-29
-3071669 Litovel Litovel Littau 49.70121 17.07615 P PPL CZ 84 10062 239 Europe/Prague 2006-11-25
-3071675 Litomyšl Litomysl Leitomischl,Litomysl,Litomyšl 49.86809 16.31298 P PPL CZ 86 10146 334 Europe/Prague 2008-07-08
-3071677 Litoměřice Litomerice Leitmeritz,Litomerice,Litomerzhice,Litoměřice,Литомержице 50.53348 14.1318 P PPL CZ 89 24489 167 Europe/Prague 2008-11-28
-3071709 Lišov Lisov Lischau 49.01597 14.60838 P PPL CZ 79 3989 515 Europe/Prague 2006-11-25
-3071759 Lipůvka Lipuvka Lipuwka 49.33933 16.55313 P PPL CZ CZ 78 1135 367 Europe/Prague 2008-07-09
-3071762 Liptál Liptal Lipove,Lipové,Lipthal 49.29051 17.92177 P PPL CZ 90 1403 430 Europe/Prague 2006-11-25
-3071771 Lipovec Lipovec Lipowetz 49.38394 16.80583 P PPL CZ 78 1045 552 Europe/Prague 2006-11-25
-3071782 Lipov Lipov 48.90495 17.46171 P PPL CZ 78 1560 228 Europe/Prague 2006-11-25
-3071791 Lipník nad Bečvou Lipnik nad Becvou Lipnik,Lipník 49.52721 17.58594 P PPL CZ 00 8369 248 Europe/Prague 2008-07-07
-3071839 Lípa Lipa 49.55418 15.54465 P PPL CZ 80 1020 502 Europe/Prague 2006-11-25
-3071844 Líně Line Lihn 49.69472 13.25693 P PPL CZ 87 2311 337 Europe/Prague 2006-11-25
-3071863 Lidečko Lidecko Lidetschko 49.20303 18.0513 P PPL CZ 90 1873 445 Europe/Prague 2006-11-25
-3071874 Lichnov Lichnov Lichnow,Lichnów,Lichten 50.00786 17.6264 P PPL CZ 00 1088 397 Europe/Prague 2006-11-25
-3071875 Lichnov (o. Nový Jičín) Lichnov (o. Novy Jicin) Lichnau 49.56423 18.16898 P PPL CZ 00 1335 361 Europe/Prague 2011-02-22
-3071881 Libušín Libusin Libuschin 50.16819 14.05458 P PPL CZ 88 2564 318 Europe/Prague 2006-11-25
-3071895 Libouchec Libouchec Konigswald,Königswald 50.75854 14.04071 P PPL CZ 89 1772 338 Europe/Prague 2006-11-25
-3071911 Libochovice Libochovice Libochowitz 50.40626 14.04439 P PPL CZ 89 3627 170 Europe/Prague 2006-11-25
-3071937 Libiš Libis Libisch 50.27417 14.5024 P PPL CZ 88 1807 165 Europe/Prague 2006-11-25
-3071947 Libice nad Cidlinou Libice nad Cidlinou Libice,Libice Cidlinou,Libitz 50.12677 15.1782 P PPL CZ 88 1310 192 Europe/Prague 2006-11-25
-3071951 Líbeznice Libeznice Libeznitz 50.19198 14.49357 P PPL CZ 88 1290 233 Europe/Prague 2006-11-25
-3071955 Liběšice Libesice Libeschitz 50.56886 14.28906 P PPL CZ 89 1401 253 Europe/Prague 2006-11-25
-3071961 Liberec Liberec Liberec,Liberecas,Reichenberg,lybyryts,Либерец,ليبيريتس 50.76711 15.05619 P PPLA CZ 83 97770 359 Europe/Prague 2008-11-28
-3071966 Libeň Liben 50.10819 14.47457 P PPLX CZ 52 31756 192 Europe/Prague 2007-04-24
-3071980 Libčice nad Vltavou Libcice nad Vltavou Libschitz,Libsice,Libšice 50.19778 14.36385 P PPL CZ 88 3227 191 Europe/Prague 2008-08-30
-3071990 Libáň Liban 50.37542 15.21684 P PPL CZ 82 1648 242 Europe/Prague 2006-11-25
-3072111 Lhenice Lhenice Elhenitz 48.99479 14.1498 P PPL CZ 79 1771 557 Europe/Prague 2006-11-25
-3072130 Letovice Letovice Lettowitz 49.54709 16.57357 P PPL CZ 78 6799 330 Europe/Prague 2006-11-25
-3072133 Letonice Letonice Letonitz 49.17726 16.95913 P PPL CZ 78 1419 260 Europe/Prague 2006-11-25
-3072134 Letohrad Letohrad Geiersberg,Kysperk,Kyšperk,Supi Hora,Supí Hora 50.0358 16.49879 P PPL CZ 86 6195 373 Europe/Prague 2006-11-25
-3072137 Letňany Letnany Letnan,Letňan 50.13333 14.51667 P PPLX CZ CZ 52 15862 276 Europe/Prague 2007-04-24
-3072155 Leština Lestina Lesche 49.86879 16.92748 P PPL CZ 84 1246 270 Europe/Prague 2006-11-25
-3072184 Lešná Lesna Lesne,Lešne,Loschna,Löschna 49.52055 17.93004 P PPL CZ 90 1965 295 Europe/Prague 2006-11-25
-3072221 Lenešice Lenesice Leneschitz 50.37516 13.7659 P PPL CZ 89 1298 182 Europe/Prague 2006-11-25
-3072224 Lelekovice Lelekovice Lelekowitz 49.29144 16.57874 P PPL CZ 78 1476 308 Europe/Prague 2006-11-25
-3072232 Lednice Lednice Eisgrub,Lednice 48.79992 16.80339 P PPL CZ 78 2355 172 Europe/Prague 2007-02-18
-3072234 Ledenice Ledenice 48.93329 14.61886 P PPL CZ 79 2193 496 Europe/Prague 2006-11-25
-3072235 Ledeč nad Sázavou Ledec nad Sazavou Ledec,Ledec na Sazave,Ledeč,Ledeč na Sazavé 49.69517 15.27772 P PPL CZ 80 6048 358 Europe/Prague 2006-11-25
-3072265 Lázně Kynžvart Lazne Kynzvart Bad Konigswart,Bad Königswart 50.01058 12.62474 P PPL CZ 81 1647 675 Europe/Prague 2006-11-25
-3072268 Lázně Bělohrad Lazne Belohrad Bad Belohrad 50.42874 15.58269 P PPL CZ 82 3744 300 Europe/Prague 2006-11-25
-3072319 Lanžhot Lanzhot Landshut 48.72443 16.96695 P PPL CZ 78 3713 168 Europe/Prague 2006-11-25
-3072325 Lány Lany Lana 50.12471 13.95041 P PPL CZ 88 1659 426 Europe/Prague 2006-11-25
-3072332 Lanškroun Lanskroun Landskron 49.91217 16.6119 P PPL CZ 86 9847 383 Europe/Prague 2006-11-25
-3072394 Kynšperk nad Ohří Kynsperk nad Ohri Konigsberg,Konigsberg an der Eger,Kynsperk,Königsberg,Königsberg an der Eger 50.11893 12.53027 P PPL CZ 81 5085 441 Europe/Prague 2006-11-25
-3072407 Kyjov Kyjov Gaya 49.01018 17.12253 P PPL CZ CZ 78 12191 191 Europe/Prague 2006-11-25
-3072449 Kvasiny Kvasiny Kwasnei 50.2125 16.26323 P PPL CZ 00 1349 349 Europe/Prague 2006-11-25
-3072451 Kvasice Kvasice Kwassitz 49.24223 17.46974 P PPL CZ 90 2282 194 Europe/Prague 2006-11-25
-3072463 Kutná Hora Kutna Hora Kutna Hora,Kutna-Gora,Kutná Hora,Kuttenberg,gu te na huo la,ku te na huo la,kuteuna hola,Кутна-Гора,古特纳霍拉,库特纳霍拉,쿠트나 호라 49.94839 15.26816 P PPL CZ 88 21280 255 Europe/Prague 2008-11-28
-3072476 Kuřim Kurim Gurein 49.29852 16.53144 P PPL CZ 78 9283 283 Europe/Prague 2006-11-25
-3072483 Kunžak Kunzak Konigseck,Königseck 49.12119 15.19028 P PPL CZ 79 1484 579 Europe/Prague 2006-11-25
-3072484 Kunvald Kunvald Kunwald 50.12927 16.49996 P PPL CZ 86 1009 481 Europe/Prague 2006-11-25
-3072486 Kunštát Kunstat Kunstadt 49.50645 16.51722 P PPL CZ 78 2637 443 Europe/Prague 2007-04-27
-3072497 Kunovice Kunovice Kunowitz 49.04499 17.47011 P PPL CZ 90 5148 181 Europe/Prague 2006-11-25
-3072503 Kunín Kunin Kunewald,Kunvald 49.63377 17.98965 P PPL CZ 00 1811 251 Europe/Prague 2011-02-20
-3072527 Kunčina Kuncina Kunzendorf 49.79455 16.62763 P PPL CZ 86 1191 374 Europe/Prague 2006-11-25
-3072531 Kunčice pod Ondřejníkem Kuncice pod Ondrejnikem Kuntschitz 49.5507 18.26113 P PPL CZ 00 1995 394 Europe/Prague 2006-11-25
-3072581 Kryry Kryry Kriegern 50.17437 13.4266 P PPL CZ 89 2431 305 Europe/Prague 2006-11-25
-3072598 Krupka Krupka Graupen 50.68449 13.85815 P PPL CZ 89 13687 325 Europe/Prague 2006-11-25
-3072605 Krumvíř Krumvir 48.98901 16.91027 P PPL CZ 78 1112 182 Europe/Prague 2006-11-25
-3072638 Krouna Krouna Krauna 49.7724 16.02674 P PPL CZ 86 1352 537 Europe/Prague 2006-11-25
-3072649 Kroměříž Kromeriz Kremsier,Kromeriz,Kromerizas,Kromerižas,Kromnerzhizh,Kroměříž,Кромнержиж 49.29785 17.39312 P PPL CZ 90 29126 208 Europe/Prague 2010-01-29
-3072656 Krnov Krnov Jaegerndorf,Jägerndorf,Karniow,Karníow,Krnov,Крнов 50.08967 17.70385 P PPL CZ 00 25547 320 Europe/Prague 2010-01-29
-3072661 Krmelín Krmelin 49.72914 18.23541 P PPL CZ 00 1853 261 Europe/Prague 2006-11-25
-3072675 Křížová Krizova Kreuzberg,Krucemburk 49.68841 15.85207 P PPL CZ 80 1630 572 Europe/Prague 2006-11-25
-3072693 Křižanov Krizanov Krizanau,Křižanau 49.38858 16.1096 P PPL CZ 80 1832 525 Europe/Prague 2006-11-25
-3072717 Křinec Krinec Krinetz,Křinetz 50.26449 15.13782 P PPL CZ 88 1351 194 Europe/Prague 2006-11-25
-3072748 Křešice Kresice Krzeschitz 50.52259 14.2145 P PPL CZ 89 1371 150 Europe/Prague 2006-11-25
-3072760 Křepice Krepice 48.99986 16.71989 P PPL CZ 78 1254 235 Europe/Prague 2006-11-25
-3072771 Křenovice Krenovice Krenowitz 49.14216 16.82932 P PPL CZ CZ 78 1738 204 Europe/Prague 2006-11-25
-3072781 Křemže Kremze Krems 48.90497 14.30568 P PPL CZ 79 2516 524 Europe/Prague 2006-11-25
-3072841 Kravaře Kravare Deutsch,Krawarn 49.93203 18.00472 P PPL CZ 00 6787 242 Europe/Prague 2006-11-25
-3072889 Krásná Lípa Krasna Lipa Schonlind,Schonlinde,Schönlind,Schönlinde 50.91303 14.50999 P PPL CZ CZ 89 3666 428 Europe/Prague 2006-11-25
-3072890 Krásná Lípa Krasna Lipa Krasna Lipa,Krásná Lípa,Schonlind,Schönlind 50.48378 13.3575 P PPL CZ 00 3677 604 Europe/Prague 2012-01-19
-3072894 Krásná Hora nad Vltavou Krasna Hora nad Vltavou Krasna Hora,Krásná Hora,Schonberg,Schönberg 49.60461 14.27742 P PPL CZ 88 1002 434 Europe/Prague 2006-11-25
-3072903 Kraslice Kraslice Graslitz 50.32372 12.51747 P PPL CZ 81 7159 515 Europe/Prague 2006-11-25
-3072927 Králův Dvůr Kraluv Dvur Konigshof,Kraluv Dvur,Králův Dvůr,Königshof 49.94981 14.03445 P PPL CZ CZ 88 5805 245 Europe/Prague 2010-05-31
-3072929 Kralupy nad Vltavou Kralupy nad Vltavou Kralup,Kralupy 50.24107 14.31149 P PPL CZ 88 17373 179 Europe/Prague 2006-11-25
-3072941 Kralovice Kralovice Kralowitz 49.98192 13.48747 P PPL CZ 87 3526 450 Europe/Prague 2006-11-25
-3072952 Králíky Kraliky Grulich 50.08384 16.76054 P PPL CZ 86 4723 575 Europe/Prague 2006-11-25
-3072954 Kralice na Hané Kralice na Hane Kralice,Kralitz 49.46296 17.18048 P PPL CZ 84 1427 213 Europe/Prague 2007-07-14
-3073000 Kozmice Kozmice Kosmutz,Kosmütz 49.9128 18.15584 P PPL CZ 00 1808 241 Europe/Prague 2006-11-25
-3073008 Kozlovice Kozlovice Koslowitz 49.5904 18.25656 P PPL CZ 00 2852 373 Europe/Prague 2006-11-25
-3073025 Kožlany Kozlany Kozlan 49.99389 13.54107 P PPL CZ 87 1374 438 Europe/Prague 2006-11-25
-3073052 Kovářská Kovarska Schmiedeberg,Smideberk,Šmídeberk 50.43821 13.05388 P PPL CZ CZ 89 1320 815 Europe/Prague 2006-11-25
-3073059 Kovářov Kovarov Kowarow,Kowářow 49.5176 14.27809 P PPL CZ 79 1435 528 Europe/Prague 2006-11-25
-3073082 Kout na Šumavě Kout na Sumave Kauth 49.40255 13.00208 P PPL CZ 87 1140 425 Europe/Prague 2006-11-25
-3073084 Kouřim Kourim Kaurim,Kauřim 50.00306 14.97703 P PPL CZ 88 1772 270 Europe/Prague 2006-11-25
-3073130 Kostice Kostice 48.74685 16.97869 P PPL CZ 78 1864 167 Europe/Prague 2006-11-25
-3073147 Kostelec na Hané Kostelec na Hane Kostelec,Kosteletz 49.51398 17.05824 P PPL CZ 84 2851 241 Europe/Prague 2006-11-25
-3073149 Kostelec nad Orlicí Kostelec nad Orlici Adler-Kosteletz 50.12267 16.21319 P PPL CZ 00 6184 294 Europe/Prague 2006-11-25
-3073151 Kostelec nad Labem Kostelec nad Labem Elbe Kosteletz 50.22653 14.58552 P PPL CZ 88 3052 172 Europe/Prague 2006-11-25
-3073152 Kostelec nad Černými Lesy Kostelec nad Cernymi Lesy Schwarzkosteletz 49.99403 14.85922 P PPL CZ 88 3264 398 Europe/Prague 2006-11-25
-3073170 Košťany Kost'any Kosten 50.65507 13.75554 P PPL CZ CZ 89 2700 277 Europe/Prague 2006-11-25
-3073172 Košťálov Kost'alov 50.57165 15.40403 P PPL CZ 83 1671 362 Europe/Prague 2006-11-25
-3073178 Kosova Hora Kosova Hora Amschelberg 49.65414 14.47173 P PPL CZ 88 1188 378 Europe/Prague 2006-11-25
-3073190 Kosmonosy Kosmonosy Kosmanos 50.4385 14.93 P PPL CZ 88 3822 244 Europe/Prague 2006-11-25
-3073222 Koryčany Korycany Koritschan 49.10639 17.16433 P PPL CZ 90 2900 284 Europe/Prague 2006-11-25
-3073241 Kořenov Korenov Wurzelsdorf 50.75926 15.36532 P PPL CZ 83 1014 748 Europe/Prague 2006-11-25
-3073254 Kopřivnice Koprivnice Koprshivnicakh,Nesselsdorf,Копршивницах 49.59947 18.1448 P PPL CZ 00 23424 321 Europe/Prague 2010-01-29
-3073261 Kopidlno Kopidlno 50.33085 15.27029 P PPL CZ 82 2231 224 Europe/Prague 2006-11-25
-3073299 Konice Konice Konitz 49.5903 16.88911 P PPL CZ 84 2931 426 Europe/Prague 2006-11-25
-3073322 Komorní Lhotka Komorni Lhotka Kameralna Ligotka 49.65811 18.52777 P PPL CZ 00 1119 413 Europe/Prague 2006-11-25
-3073345 Komárov Komarov 49.8065 13.85636 P PPL CZ 88 2426 395 Europe/Prague 2006-11-25
-3073369 Kolinec Kolinec Kolinetz 49.29895 13.439 P PPL CZ 87 1388 536 Europe/Prague 2006-11-25
-3073371 Kolín Kolin Koeln an der Elbe,Kolin,Kolín,Köln an der Elbe,Колин 50.02814 15.20057 P PPL CZ 88 29690 215 Europe/Prague 2008-11-28
-3073389 Kokory Kokory Kokor 49.49482 17.37544 P PPL CZ 84 1099 221 Europe/Prague 2006-11-25
-3073407 Kojetín Kojetin Kojetein 49.35179 17.30207 P PPL CZ 84 6397 203 Europe/Prague 2006-11-25
-3073483 Kobylí Kobyli 48.93286 16.89159 P PPL CZ 78 2058 219 Europe/Prague 2006-11-25
-3073493 Kobeřice Koberice Koberwitz,Köberwitz 49.98548 18.05212 P PPL CZ 00 3228 245 Europe/Prague 2006-11-25
-3073523 Kněžpole Knezpole 49.09855 17.51671 P PPL CZ 90 1089 180 Europe/Prague 2006-11-25
-3073526 Kněžmost Knezmost Furstenbruck,Fürstenbruck 50.48917 15.03829 P PPL CZ 88 1470 244 Europe/Prague 2006-11-25
-3073535 Kněžice Knezice Knezitz,Knězitz 49.27078 15.67216 P PPL CZ 80 1455 547 Europe/Prague 2006-11-25
-3073541 Kněždub Knezdub 48.88666 17.39546 P PPL CZ 78 1084 185 Europe/Prague 2006-11-25
-3073582 Klobuky Klobuky 50.29401 13.98748 P PPL CZ 88 1001 265 Europe/Prague 2006-11-25
-3073583 Klobouky Klobouky Klobouk,Klobouky 48.99609 16.86298 P PPL CZ 78 2227 220 Europe/Prague 2012-01-19
-3073599 Klimkovice Klimkovice Konigsberg,Königsberg 49.78809 18.12585 P PPL CZ 00 3779 266 Europe/Prague 2006-11-25
-3073644 Klenčí pod Čerchovem Klenci pod Cerchovem Klenec pod Cerchovem,Kleneč pod Čerchovem,Klentsch 49.43484 12.81473 P PPL CZ 87 0321 1270 505 497 Europe/Prague 2009-07-18
-3073652 Klecany Klecany Gross-Klecan 50.17599 14.41148 P PPL CZ 88 1904 249 Europe/Prague 2006-11-25
-3073660 Klatovy Klatovy Klatovy,Klattau,Клатовы 49.39552 13.29505 P PPL CZ 87 23102 416 Europe/Prague 2010-01-29
-3073668 Klášterec nad Ohří Klasterec nad Ohri Klosterle an der Eger,Klösterle an der Eger 50.38445 13.17128 P PPL CZ 89 15695 316 Europe/Prague 2006-11-25
-3073672 Klášter Klaster Klaster Tepla,Kloster Tepla,Klášter Teplá,Stift Tepl,Tepl Stift 49.96762 12.87623 P PPL CZ CZ 81 3034 660 Europe/Prague 2008-06-06
-3073692 Kladruby Kladruby Kladrau 49.7153 12.97991 P PPL CZ CZ 87 1419 411 Europe/Prague 2006-11-25
-3073699 Kladno Kladno Kladno,Klantno,Κλάντνο,Кладно 50.14734 14.10285 P PPL CZ 88 70003 390 Europe/Prague 2007-02-17
-3073731 Kelč Kelc Keltsch,Kielce 49.47844 17.81533 P PPL CZ 90 2623 349 Europe/Prague 2006-11-25
-3073739 Kdyně Kdyne Kdyne Nova,Kdyně Nová,Neugedein 49.39077 13.03968 P PPL CZ 87 4985 460 Europe/Prague 2006-11-25
-3073743 Kbely Kbely 50.13333 14.55 P PPLX CZ 52 5457 272 Europe/Prague 2007-04-24
-3073752 Kaznějov Kaznejov Kaznau 49.89313 13.38295 P PPL CZ 87 3053 402 Europe/Prague 2006-11-25
-3073754 Katovice Katovice Katowitz 49.27348 13.83035 P PPL CZ 79 1279 409 Europe/Prague 2006-11-25
-3073769 Kašperské Hory Kasperske Hory Bergreichenstein 49.14289 13.55616 P PPL CZ 87 1562 733 Europe/Prague 2006-11-25
-3073780 Kasejovice Kasejovice Kasejowitz 49.4627 13.7406 P PPL CZ 87 1320 541 Europe/Prague 2006-11-25
-3073789 Karviná Karvina Freistadt,Frystat,Frysztat,Fryštát,Karvina,Karvina 1,Karviná 1,Карвина 49.854 18.54169 P PPL CZ 85 63677 238 Europe/Prague 2010-01-29
-3073792 Karolinka Karolinka Karolinina Hut',Karolinina Huť 49.35128 18.24006 P PPL CZ 90 2916 479 Europe/Prague 2006-11-25
-3073803 Karlovy Vary Karlovy Vary Carlsbad,Karl Vary,Karloby Bary,Karlove Vari,Karlovi Varai,Karlovi Vari,Karlovy Vary,Karlsbad,kaleullobi bali,Κάρλοβυ Βάρυ,Карлове Вари,Карлови Вари,Карловы Вары,Карлові Вари,קרלובי וארי,カルロヴィ・ヴァリ,카를로비 바리 50.23271 12.87117 P PPLA CZ 81 51807 374 Europe/Prague 2009-06-08
-3073811 Karlovice Karlovice Karlsthal 50.10564 17.44563 P PPL CZ 00 1128 482 Europe/Prague 2006-11-25
-3073838 Karlín Karlin Karolinenthal 50.09272 14.44711 P PPLX CZ CZ 52 11971 190 Europe/Prague 2007-04-24
-3073850 Kardašova Řečice Kardasova Recice Kardasch Recice,Kardasch Řečice 49.18478 14.85315 P PPL CZ 79 2071 442 Europe/Prague 2006-11-25
-3073862 Kaplice Kaplice 48.73849 14.49628 P PPL CZ 79 7195 535 Europe/Prague 2006-11-25
-3073892 Kamenný Újezd Kamenny Ujezd 48.89753 14.44638 P PPL CZ 79 2002 491 Europe/Prague 2006-11-25
-3073893 Kamenný Přívoz Kamenny Privoz Stein Uberfuhr,Stein Überfuhr 49.86299 14.50339 P PPL CZ 88 1124 236 Europe/Prague 2006-11-25
-3073899 Kamenné Žehrovice Kamenne Zehrovice Zehrovice,Žehrovice 50.12697 14.01809 P PPL CZ 88 1606 403 Europe/Prague 2006-11-25
-3073928 Kamenický Šenov Kamenicky Senov Stein Schonau,Stein Schönau 50.77359 14.47287 P PPL CZ 00 3982 528 Europe/Prague 2006-11-25
-3073936 Kamenice nad Lipou Kamenice nad Lipou Kamenice,Kamenitz an der Linde 49.30303 15.07519 P PPL CZ 80 4148 566 Europe/Prague 2006-11-25
-3073944 Kamenice Kamenice Kamenitz 49.90151 14.58242 P PPL CZ 88 3011 381 Europe/Prague 2006-11-25
-3073948 Kamenice Kamenice Kamenitz 49.36659 15.78023 P PPL CZ CZ 80 1760 521 Europe/Prague 2006-11-25
-3074004 Kájov Kajov Gojau 48.81082 14.25859 P PPL CZ 79 1290 539 Europe/Prague 2006-11-25
-3074020 Kadaň Kadan 50.38333 13.26667 P PPL CZ 00 17648 302 Europe/Prague 2006-01-17
-3074031 Kačice Kacice 50.16261 13.98815 P PPL CZ 88 1169 401 Europe/Prague 2006-11-25
-3074039 Kadaň Kadan Kaaden 50.37598 13.27131 P PPL CZ CZ 89 17639 301 Europe/Prague 2006-11-25
-3074049 Josefův Důl Josefuv Dul Josefodol,Josefsthal 50.78191 15.23146 P PPL CZ CZ 83 1024 581 Europe/Prague 2006-11-25
-3074099 Jistebník Jistebnik Stiebnig 49.754 18.13063 P PPL CZ 00 1461 237 Europe/Prague 2006-11-25
-3074102 Jistebnice Jistebnice Jistebnitz 49.48553 14.5276 P PPL CZ 79 2007 579 Europe/Prague 2006-11-25
-3074107 Jirny Jirny Gross Jirna 50.11578 14.69923 P PPL CZ 88 1366 249 Europe/Prague 2006-11-25
-3074110 Jirkov Jirkov Gorkau,Görkau 50.49979 13.44769 P PPL CZ 89 21056 306 Europe/Prague 2006-11-25
-3074119 Jiříkov Jirikov Georgswalde 50.99514 14.5691 P PPL CZ 89 3926 371 Europe/Prague 2006-11-25
-3074149 Jindřichův Hradec Jindrichuv Hradec Neuhaus 49.14404 15.00301 P PPL CZ 79 22812 480 Europe/Prague 2008-11-28
-3074161 Jindřichov Jindrichov Hennersdorf 50.25184 17.51903 P PPL CZ 00 1504 364 Europe/Prague 2006-11-25
-3074166 Jince Jince Jinetz 49.78624 13.97867 P PPL CZ 88 2139 391 Europe/Prague 2006-11-25
-3074170 Jimramov Jimramov Ingrowitz 49.63719 16.22632 P PPL CZ 80 1207 495 Europe/Prague 2006-11-25
-3074178 Jílové u Prahy Jilove u Prahy Eule,Jilove,Jílové 49.89545 14.49333 P PPL CZ 88 3461 394 Europe/Prague 2006-11-25
-3074181 Jílové Jilove Eulau 50.76082 14.10383 P PPL CZ 89 5307 265 Europe/Prague 2006-11-25
-3074187 Jilemnice Jilemnice 50.6089 15.50653 P PPL CZ 83 5777 462 Europe/Prague 2006-11-25
-3074199 Jihlava Jihlava Iglau,Iglawa,Igława,Jiglava,Jihlava,Jikhlava,Јихлава,Йиглава 49.3961 15.59124 P PPLA CZ 80 50100 523 Europe/Prague 2008-11-28
-3074204 Jičín Jicin Gitschin,Jichin,Jicin,Jitschin,Jičín,Titschein,Йичин 50.43723 15.35162 P PPL CZ 82 16328 288 Europe/Prague 2006-11-25
-3074239 Jevišovice Jevisovice 48.98736 15.98992 P PPL CZ 78 1162 365 Europe/Prague 2006-11-25
-3074241 Jevíčko Jevicko Gewitsch 49.6322 16.71125 P PPL CZ 86 2886 363 Europe/Prague 2006-11-25
-3074280 Jeseník nad Odrou Jesenik nad Odrou Deutsch Jassnik,Nemecky Jesenik,Německý Jeseník 49.61194 17.90526 P PPL CZ 00 1898 258 Europe/Prague 2011-02-20
-3074281 Jeseník Jesenik Freiwaldau,Fryvaldov,Frývaldov 50.22937 17.20464 P PPL CZ 84 12457 440 Europe/Prague 2012-01-07
-3074284 Jesenice Jesenice Jechnitz 50.09703 13.46948 P PPL CZ 88 1660 464 Europe/Prague 2006-11-25
-3074286 Jesenice Jesenice Jessenitz 49.96814 14.5135 P PPL CZ 88 3221 351 Europe/Prague 2006-11-25
-3074322 Jeneč Jenec Gross Jentsch 50.0873 14.21482 P PPL CZ 88 1054 366 Europe/Prague 2006-11-25
-3074331 Jemnice Jemnice Jamnitz 49.01898 15.56994 P PPL CZ 80 4311 484 Europe/Prague 2006-11-25
-3074360 Jedovnice Jedovnice Jedownitz 49.34453 16.75595 P PPL CZ 78 2578 472 Europe/Prague 2006-11-25
-3074373 Jedlová Jedlova Schonbrunn,Schönbrunn 49.661 16.30608 P PPL CZ 86 1010 599 Europe/Prague 2006-11-25
-3074398 Javorník Javornik Jauernig 50.39077 17.00272 P PPL CZ 84 2967 301 Europe/Prague 2006-11-25
-3074444 Jarošov nad Nežárkou Jarosov nad Nezarkou Jareschau 49.18989 15.06734 P PPL CZ 79 1067 476 Europe/Prague 2006-11-25
-3074452 Jaroslavice Jaroslavice Joslowitz 48.75657 16.23351 P PPL CZ 78 1250 191 Europe/Prague 2006-11-25
-3074459 Jaroměřice nad Rokytnou Jaromerice nad Rokytnou Jarmeritz,Jaromerice na Rokytne,Jaroměřice na Rokytné 49.09408 15.89331 P PPL CZ 80 4171 423 Europe/Prague 2006-11-25
-3074461 Jaroměřice Jaromerice Jarmeritz,Jaromeritz,Jaroměřitz 49.62556 16.75185 P PPL CZ 86 1242 364 Europe/Prague 2006-11-25
-3074462 Jaroměř Jaromer 50.3562 15.92136 P PPL CZ 82 12831 258 Europe/Prague 2006-11-25
-3074482 Janov nad Nisou Janov nad Nisou Honsberg,Honsberk,Johannesberg 50.77204 15.16913 P PPL CZ 00 1186 546 Europe/Prague 2006-11-25
-3074491 Janovice nad Úhlavou Janovice nad Uhlavou Janowitz 49.34515 13.21813 P PPL CZ 87 2049 417 Europe/Prague 2006-11-25
-3074500 Janovice Janovice 49.62141 18.40602 P PPL CZ 00 1693 362 Europe/Prague 2006-11-25
-3074558 Jalubí Jalubi Jalub 49.11626 17.42788 P PPL CZ 90 1708 210 Europe/Prague 2006-11-25
-3074577 Jakartovice Jakartovice Eckersdorf 49.9151 17.684 P PPL CZ 00 1054 358 Europe/Prague 2006-11-25
-3074587 Jáchymov Jachymov Joachimsthal,Sankt-Joachimsthal 50.35846 12.93465 P PPL CZ 81 3143 596 Europe/Prague 2008-11-28
-3074593 Jablunkov Jablunkov Jablonkow,Jablunkau,Jabłonków 49.57672 18.76458 P PPL CZ 00 5782 387 Europe/Prague 2006-11-25
-3074594 Jablůnka Jablunka 49.38355 17.95021 P PPL CZ 90 2004 321 Europe/Prague 2006-11-25
-3074597 Jablonné v Podještědí Jablonne v Podjestedi Deutsch Gabel,Nemecke Jablonne,Německé Jablonné 50.76528 14.76052 P PPL CZ 00 3699 323 Europe/Prague 2006-11-25
-3074598 Jablonné nad Orlicí Jablonne nad Orlici Gabl 50.02964 16.60059 P PPL CZ 86 3147 428 Europe/Prague 2006-11-25
-3074603 Jablonec nad Nisou Jablonec nad Nisou Gablonz,Gablonz an der Neisse,Jablonec,Jablonec nad Nisou,Jablonec nad Nysa,Jablonec nad Nysą,Jablonecas prie Nisos,yabeullonecheunateunisou,Яблонец,야블로네츠나트니소우 50.72431 15.17108 P PPL CZ 83 44878 518 Europe/Prague 2008-11-28
-3074604 Jablonec nad Jizerou Jablonec nad Jizerou Jablonec,Jablonec an der Iser,Jablonetz 50.70347 15.42959 P PPL CZ 83 1968 450 Europe/Prague 2006-11-25
-3074614 Ivanovice na Hané Ivanovice na Hane Eiwanowitz 49.30542 17.09343 P PPL CZ 78 2884 224 Europe/Prague 2006-11-25
-3074615 Ivančice Ivancice Eibenschitz 49.10144 16.37752 P PPL CZ 78 9354 212 Europe/Prague 2006-11-25
-3074621 Hýskov Hyskov Hyskow 49.99072 14.05055 P PPL CZ 88 1296 261 Europe/Prague 2006-11-25
-3074636 Hvozdná Hvozdna 49.24848 17.75163 P PPL CZ 90 1075 287 Europe/Prague 2006-11-25
-3074676 Hustopeče Nad Bečvou Hustopece Nad Becvou Hustopetsch 49.53053 17.86994 P PPL CZ CZ 84 1748 273 Europe/Prague 2006-11-25
-3074677 Hustopeče Hustopece Auspitz 48.94085 16.73762 P PPL CZ 78 5913 197 Europe/Prague 2006-11-25
-3074686 Husinec Husinec Husinetz 49.05496 13.98697 P PPL CZ 79 1339 514 Europe/Prague 2006-11-25
-3074723 Humpolec Humpolec Humpoletz 49.54152 15.35932 P PPL CZ 80 10914 530 Europe/Prague 2006-11-25
-3074731 Hulín Hulin Hullein 49.31689 17.46374 P PPL CZ 90 7571 191 Europe/Prague 2006-11-25
-3074733 Hukvaldy Hukvaldy Hochwald 49.62381 18.22189 P PPL CZ 00 1924 343 Europe/Prague 2010-07-03
-3074737 Hudlice Hudlice Hudlitz 49.96096 13.97063 P PPL CZ 88 1206 412 Europe/Prague 2006-11-25
-3074763 Hrušovany u Brna Hrusovany u Brna Rohrbach 49.03863 16.59429 P PPL CZ 78 2941 185 Europe/Prague 2006-11-25
-3074764 Hrušovany nad Jevišovkou Hrusovany nad Jevisovkou Grusbach 48.82991 16.40271 P PPL CZ 78 3209 179 Europe/Prague 2006-11-25
-3074773 Hrušky Hrusky 48.79272 16.97404 P PPL CZ 78 1409 172 Europe/Prague 2006-11-25
-3074795 Hroznová Lhota Hroznova Lhota 48.90784 17.41697 P PPL CZ 78 1253 200 Europe/Prague 2006-11-25
-3074797 Hroznětín Hroznetin Lichtenstadt 50.3094 12.8718 P PPL CZ 81 1721 452 Europe/Prague 2006-11-25
-3074803 Hrotovice Hrotovice Hrottowitz 49.1077 16.06067 P PPL CZ 80 1780 411 Europe/Prague 2006-11-25
-3074805 Hronov Hronov Hronow 50.47968 16.1823 P PPL CZ 00 6516 372 Europe/Prague 2006-11-25
-3074807 Hromnice Hromnice 49.84907 13.44146 P PPL CZ 87 1018 347 Europe/Prague 2006-11-25
-3074808 Hrochův Týnec Hrochuv Tynec Hrochowteinitz 49.95946 15.91054 P PPL CZ CZ 86 1899 243 Europe/Prague 2006-11-25
-3074817 Hrob Hrob Klostergrab 50.65919 13.72676 P PPL CZ 89 2020 362 Europe/Prague 2006-11-25
-3074853 Hřebeč Hrebec 50.13595 14.16446 P PPL CZ 88 1364 352 Europe/Prague 2006-11-25
-3074864 Hrdějovice Hrdejovice Hartowitz 49.01893 14.47857 P PPL CZ 79 1560 387 Europe/Prague 2006-11-25
-3074889 Hranice Hranice Rossbach 50.30459 12.17577 P PPL CZ 81 2268 580 Europe/Prague 2006-11-25
-3074893 Hranice Hranice Mahrisch Weisskirchen,Mährisch Weisskirchen 49.54796 17.73469 P PPL CZ 84 19582 261 Europe/Prague 2006-11-25
-3074909 Hradišťko Hradist'ko Hradischko 49.86828 14.40935 P PPL CZ CZ 88 1320 284 Europe/Prague 2006-11-25
-3074944 Hrádek nad Nisou Hradek nad Nisou Grottau 50.85279 14.84455 P PPL CZ 00 7327 253 Europe/Prague 2006-11-25
-3074954 Hrádek Hradek 49.71316 13.65296 P PPL CZ 87 2897 409 Europe/Prague 2011-09-07
-3074955 Hrádek Hradek 49.61661 18.7372 P PPL CZ 00 1753 356 Europe/Prague 2006-11-25
-3074956 Hrádek Hradek 49.26127 13.4985 P PPL CZ 87 1321 488 Europe/Prague 2006-11-25
-3074961 Hradec nad Svitavou Hradec nad Svitavou Graendorf,Grandorf,Greifendorf,Grándorf 49.71143 16.48058 P PPL CZ 86 1584 423 Europe/Prague 2006-11-25
-3074967 Hradec Králové Hradec Kralove Chrantek Kralobe,Gradec Kralove,Gradets Kralove,Hradec Kralove,Hradec Králové,Khradec Kralove,Koeniggraetz,Königgrätz,Χράντεκ Κράλοβε,Градец Кралове,Храдец Кралове 50.20923 15.83277 P PPLA CZ 82 95195 250 Europe/Prague 2008-11-28
-3074975 Hradec Hradec Gratz,Hradec 49.87042 17.87842 P PPL CZ 85 5255 278 Europe/Prague 2012-01-19
-3075005 Hrabyně Hrabyne Hrabin 49.88249 18.05483 P PPL CZ 00 1184 388 Europe/Prague 2006-11-25
-3075022 Hovorčovice Hovorcovice 50.17866 14.51789 P PPL CZ 88 1198 231 Europe/Prague 2006-11-25
-3075023 Hovorany Hovorany 48.95493 16.99346 P PPL CZ 78 2232 193 Europe/Prague 2006-11-25
-3075025 Hovězí Hovezi Howiezy 49.30365 18.06062 P PPL CZ 90 2351 384 Europe/Prague 2006-11-25
-3075042 Hostouň Hostoun Hostau 49.55971 12.77147 P PPL CZ 87 1299 448 Europe/Prague 2006-11-25
-3075043 Hostomice Hostomice Hostomitz 50.5877 13.80803 P PPL CZ 89 1240 192 Europe/Prague 2006-11-25
-3075044 Hostomice Hostomice Hostomitz 49.82526 14.0456 P PPL CZ 88 1491 367 Europe/Prague 2006-11-25
-3075049 Hošťka Host'ka Gastorf 50.48859 14.335 P PPL CZ CZ 89 1473 181 Europe/Prague 2006-11-25
-3075051 Hostivice Hostivice Hostiwitz 50.08158 14.25856 P PPL CZ 88 4915 344 Europe/Prague 2006-11-25
-3075058 Hostinné Hostinne Arnau 50.54066 15.72334 P PPL CZ 82 4795 359 Europe/Prague 2006-11-25
-3075079 Hostěradice Hosteradice Hosterlitz 48.95006 16.25931 P PPL CZ 78 1488 215 Europe/Prague 2006-11-25
-3075086 Hostavice Hostavice 50.09283 14.55822 P PPLX CZ 52 1729 229 Europe/Prague 2007-04-24
-3075091 Hošťálková Host'alkova Hostialkow 49.35467 17.86944 P PPL CZ CZ 90 2036 378 Europe/Prague 2006-11-25
-3075112 Horšovský Týn Horsovsky Tyn Bischofteinitz 49.52965 12.94405 P PPL CZ 87 4905 383 Europe/Prague 2006-11-25
-3075119 Hořovice Horovice Horowitz,Horschowitz 49.83597 13.90268 P PPL CZ 88 6431 377 Europe/Prague 2006-11-25
-3075127 Horoměřice Horomerice Horomeritz,Horoměřitz 50.13173 14.33879 P PPL CZ 88 2212 321 Europe/Prague 2006-11-25
-3075179 Horní Těrlicko Horni Terlicko Gorne Cierlicko,Górne Cierlicko,Horni Terlicko,Horní Těrlicko,Tierlitzko 49.75177 18.4829 P PPL CZ 00 4134 312 Europe/Prague 2007-12-20
-3075187 Horní Suchá Horni Sucha Gorna Sucha 49.7978 18.48189 P PPL CZ 00 4466 277 Europe/Prague 2006-11-25
-3075191 Horní Stropnice Horni Stropnice Stropnice 48.76124 14.73502 P PPL CZ 79 1560 558 Europe/Prague 2006-11-25
-3075193 Horní Štěpánov Horni Stepanov Horni Stefanau,Horní Stefanau,Stefanau 49.54901 16.79078 P PPL CZ 84 1002 596 Europe/Prague 2006-11-25
-3075206 Horní Sloupnice Horni Sloupnice Sloupnice,Sloupnitz 49.92138 16.33948 P PPL CZ CZ 86 1742 423 Europe/Prague 2006-11-25
-3075208 Horní Slavkov Horni Slavkov Schlaggenwald 50.13863 12.80758 P PPL CZ 81 5818 567 Europe/Prague 2006-11-25
-3075257 Horní Počernice Horni Pocernice Ober Pocernitz,Ober Počernitz 50.1121 14.61036 P PPLX CZ CZ 52 14296 286 Europe/Prague 2007-04-24
-3075259 Horní Počaply Horni Pocaply Ober Podcap,Ober Podčáp 50.4244 14.38993 P PPL CZ 88 1141 163 Europe/Prague 2006-11-25
-3075262 Horní Planá Horni Plana Ober-Plan,Oberplan 48.76736 14.03257 P PPL CZ 79 2278 774 Europe/Prague 2008-11-28
-3075289 Horní Moštěnice Horni Mostenice Ober Moschtienitz 49.41213 17.45879 P PPL CZ 84 1581 206 Europe/Prague 2006-11-25
-3075296 Horní Město Horni Mesto Bergstadt 49.90845 17.21112 P PPL CZ 00 1009 683 Europe/Prague 2006-11-25
-3075316 Horní Lideč Horni Lidec Ober Litsch 49.18121 18.06099 P PPL CZ 90 1379 464 Europe/Prague 2006-11-25
-3075319 Horní Libina Horni Libina Deutsch Liebau,Horni Libina,Horní Libina,Labau,Nemecka Libina,Německá Libina 49.88987 17.07262 P PPL CZ 84 3501 306 Europe/Prague 2012-01-19
-3075356 Horní Jiřetín Horni Jiretin Ober-Georgenthal 50.57309 13.54717 P PPL CZ 89 1963 269 Europe/Prague 2006-11-25
-3075361 Horní Jelení Horni Jeleni Ober Jeleni,Ober Jelení 50.04901 16.08396 P PPL CZ 86 1811 307 Europe/Prague 2006-11-25
-3075422 Horní Čermná Horni Cermna 49.97053 16.60772 P PPL CZ 86 1016 431 Europe/Prague 2006-11-25
-3075423 Horní Cerekev Horni Cerekev Ober Cerekve 49.32026 15.32769 P PPL CZ 80 1866 592 Europe/Prague 2006-11-25
-3075433 Horní Bříza Horni Briza Ober Bris,Ober Břis 49.84012 13.35558 P PPL CZ 87 4463 372 Europe/Prague 2006-11-25
-3075436 Horní Branná Horni Branna Branna 50.60826 15.57146 P PPL CZ 00 1798 460 Europe/Prague 2006-11-25
-3075447 Horní Bludovice Horni Bludovice 49.74965 18.43677 P PPL CZ 00 1652 259 Europe/Prague 2006-11-25
-3075451 Horní Benešov Horni Benesov Benisch,Bennisch,Horni Bennisch,Horní Bennisch 49.96682 17.60262 P PPL CZ 00 2460 571 Europe/Prague 2006-11-25
-3075454 Horní Bečva Horni Becva 49.43216 18.28859 P PPL CZ 90 2420 508 Europe/Prague 2006-11-25
-3075471 Horka nad Moravou Horka nad Moravou Horka 49.64009 17.2107 P PPL CZ 84 2101 222 Europe/Prague 2006-11-25
-3075493 Hořice Horice Horitz,Hořitz 50.36609 15.63183 P PPL CZ 82 8899 306 Europe/Prague 2006-11-25
-3075522 Horažďovice Horazd'ovice Horazdowitz,Horaždowitz 49.32069 13.701 P PPL CZ CZ 87 5727 433 Europe/Prague 2006-11-25
-3075562 Holýšov Holysov Holleischen 49.59361 13.10129 P PPL CZ 87 4659 367 Europe/Prague 2006-11-25
-3075587 Holoubkov Holoubkov Holoubkau 49.77598 13.69246 P PPL CZ 87 1485 435 Europe/Prague 2006-11-25
-3075599 Holice Holice Holitz 50.06601 15.9859 P PPL CZ 86 6219 253 Europe/Prague 2006-11-25
-3075606 Holešov Holesov Holleschau 49.33331 17.57832 P PPL CZ 90 12384 231 Europe/Prague 2006-11-25
-3075620 Holasovice Holasovice Kreuzendorf 49.99843 17.80847 P PPL CZ 00 1366 281 Europe/Prague 2006-11-25
-3075643 Hodslavice Hodslavice Hotzendorf 49.53856 18.02367 P PPL CZ 00 1699 339 Europe/Prague 2006-11-25
-3075654 Hodonín Hodonin Goding,Godonin,Göding,Hodonin,Hodonín,Годонин 48.84893 17.13244 P PPL CZ 78 26345 163 Europe/Prague 2007-02-18
-3075656 Hodonice Hodonice Hodnitz,Hödnitz 48.8368 16.16337 P PPL CZ 78 1648 217 Europe/Prague 2006-11-25
-3075663 Hodkovičky Hodkovicky 50.02809 14.41741 P PPLX CZ 52 3584 257 Europe/Prague 2007-04-24
-3075664 Hodkovice nad Mohelkou Hodkovice nad Mohelkou Hodkovice,Liebenau,Liebenau in Bohmen,Liebenau in Böhmen 50.66586 15.08985 P PPL CZ 83 2659 378 Europe/Prague 2006-11-25
-3075690 Hněvotín Hnevotin Nebotein 49.57205 17.17954 P PPL CZ 84 1201 244 Europe/Prague 2006-11-25
-3075691 Hněvošice Hnevosice Schreibersdorf 50.00299 18.00829 P PPL CZ 00 1028 255 Europe/Prague 2006-11-25
-3075715 Hluk Hluk Hluck 48.98812 17.52668 P PPL CZ 90 4424 225 Europe/Prague 2006-11-25
-3075716 Hlučín Hlucin Hulczyn,Hultschin 49.89795 18.19196 P PPL CZ 00 14228 247 Europe/Prague 2006-11-25
-3075731 Hluboká nad Vltavou Hluboka nad Vltavou Frauenberg 49.05225 14.43427 P PPL CZ 79 4682 398 Europe/Prague 2006-11-25
-3075744 Hlubočky Hlubocky Hombock 49.61783 17.39436 P PPL CZ 84 4448 271 Europe/Prague 2008-07-04
-3075756 Hlohovec Hlohovec 48.77399 16.7623 P PPL CZ 78 1315 177 Europe/Prague 2006-11-25
-3075766 Hlinsko Hlinsko 49.76213 15.90756 P PPL CZ 86 10411 561 Europe/Prague 2006-11-25
-3075827 Hevlín Hevlin Hoflein,Höflein 48.75209 16.38131 P PPL CZ 78 1366 178 Europe/Prague 2006-11-25
-3075841 Heřmanův Městec Hermanuv Mestec Hermanmestetz,Heřmanměstetz 49.94707 15.66492 P PPL CZ CZ 86 4841 281 Europe/Prague 2006-11-25
-3075843 Heřmanova Huť Hermanova Hut' Hermannshutte,Hermannshütte 49.70679 13.10069 P PPL CZ CZ 87 1794 367 Europe/Prague 2006-11-25
-3075877 Herálec Heralec Heraletz 49.68891 15.99431 P PPL CZ 80 1269 642 Europe/Prague 2006-11-25
-3075878 Herálec Heralec Heraletz 49.53083 15.45708 P PPL CZ 80 1080 564 Europe/Prague 2006-11-25
-3075894 Hejnice Hejnice Haindorf 50.8772 15.18168 P PPL CZ 83 2751 377 Europe/Prague 2006-11-25
-3075905 Hazlov Hazlov Haslau 50.15634 12.27238 P PPL CZ 81 1583 541 Europe/Prague 2006-11-25
-3075919 Havlíčkův Brod Havlickuv Brod Deutsch Brod,Gavlichkuv-Brod,Havlickuv Brod,Havlíčkův Brod,Nemecky Brod,Německý Brod,Гавличкув-Брод 49.60785 15.58069 P PPL CZ 80 24356 424 Europe/Prague 2007-02-18
-3075921 Havířov Havirov Gavirsov,Gavirzhov,Havirov,Havířov,Hawierzow,Hawierzów,Гавиржов,Гавіршов 49.77984 18.43688 P PPL CZ 00 84914 278 Europe/Prague 2010-01-29
-3075930 Hať Hat' Haatsch 49.94644 18.23931 P PPL CZ CZ 00 2539 215 Europe/Prague 2006-11-25
-3075949 Hartmanice Hartmanice Hartmanitz 49.16948 13.45455 P PPL CZ 87 1189 718 Europe/Prague 2006-11-25
-3075953 Harrachov Harrachov Harrachsdorf 50.77209 15.43141 P PPL CZ 83 1700 689 Europe/Prague 2006-11-25
-3075958 Hanušovice Hanusovice Hannsdorf,Hansovice 50.08049 16.93641 P PPL CZ 84 3556 414 Europe/Prague 2006-11-25
-3075996 Halenkovice Halenkovice Allenkowitz,Halenovice 49.17102 17.47156 P PPL CZ 90 1701 297 Europe/Prague 2006-11-25
-3075997 Halenkov Halenkov Hallenkau 49.3174 18.14749 P PPL CZ 90 2367 425 Europe/Prague 2006-11-25
-3076001 Háj ve Slezsku Haj ve Slezsku Haj,Háj 49.89856 18.0954 P PPL CZ 00 3322 232 Europe/Prague 2006-11-25
-3076053 Habry Habry Habern 49.75603 15.48486 P PPL CZ 80 1305 471 Europe/Prague 2006-11-25
-3076076 Habartov Habartov Habersbirk 50.18297 12.55054 P PPL CZ 81 5337 504 Europe/Prague 2006-11-25
-3076084 Grygov Grygov Gru"gau,Gru”gau 49.53841 17.30887 P PPL CZ 84 1385 204 Europe/Prague 2008-06-03
-3076098 Golčův Jeníkov Golcuv Jenikov Goleav Jenikov,Goltsch Jenikau 49.81626 15.47686 P PPL CZ CZ 80 2644 379 Europe/Prague 2006-11-25
-3076116 Fulnek Fulnek Ful'nek,Fulnek,furuneku,Фульнек,フルネク 49.71238 17.90319 P PPL CZ 00 6107 290 Europe/Prague 2006-11-25
-3076118 Fryšták Frystak Freistadtl 49.2852 17.68346 P PPL CZ 90 3540 269 Europe/Prague 2006-11-25
-3076120 Frymburk Frymburk Friedberg 48.66094 14.16564 P PPL CZ 79 1324 735 Europe/Prague 2008-11-28
-3076123 Frýdlant nad Ostravicí Frydlant nad Ostravici Friedland an der Ostrawitza,Frydland,Frydlant,Frydlant n Ostroh,Frýdlant n Ostroh 49.5928 18.35967 P PPL CZ 00 9824 355 Europe/Prague 2006-11-25
-3076124 Frýdlant Frydlant Friedland,Friedland in Bohmen,Friedland in Böhmen 50.92139 15.07974 P PPL CZ 83 7471 296 Europe/Prague 2006-11-25
-3076127 Frýdek-Místek Frydek-Mistek Friedeck,Friedek,Frydek,Frydek-Mistek,Frýdek,Frýdek-Místek,Mistek,Мистек 49.68333 18.35 P PPL CZ 85 59416 291 283 Europe/Prague 2012-01-19
-3076129 Fryčovice Frycovice Fritschowitz 49.66677 18.22321 P PPL CZ 00 2192 263 Europe/Prague 2006-11-25
-3076132 Frenštát pod Radhoštěm Frenstat pod Radhostem Frankstadt,Frankstadt am Radhost,Frankstadt am Radhošt,Frenstat,Frenštát 49.54835 18.21078 P PPL CZ 00 11334 393 Europe/Prague 2008-11-28
-3076136 Františkovy Lázně Frantiskovy Lazne Franzensbad 50.12033 12.35174 P PPL CZ 81 5355 448 Europe/Prague 2008-11-28
-3076153 Francova Lhota Francova Lhota Lhota Franzowa 49.20174 18.11175 P PPL CZ 90 1615 498 Europe/Prague 2006-11-25
-3076234 Dýšina Dysina 49.77735 13.4915 P PPL CZ 87 1424 361 Europe/Prague 2006-11-25
-3076284 Dvorce Dvorce Hof 49.83332 17.54762 P PPL CZ 00 1518 553 Europe/Prague 2006-11-25
-3076311 Duchcov Duchcov Duchcov,Dux,do~ufutsu~ofu,ドゥフツォフ 50.60376 13.74621 P PPL CZ 89 8937 217 Europe/Prague 2007-02-18
-3076328 Dubné Dubne 48.97619 14.36038 P PPL CZ 79 1141 411 Europe/Prague 2006-11-25
-3076329 Dubňany Dubnany Dubnain 48.91694 17.09004 P PPL CZ 78 6649 191 Europe/Prague 2006-11-25
-3076330 Dub nad Moravou Dub nad Moravou Dub 49.48249 17.27723 P PPL CZ 84 1485 212 Europe/Prague 2006-11-25
-3076342 Dubicko Dubicko Dubitzke 49.82806 16.96266 P PPL CZ 84 1082 272 Europe/Prague 2006-11-25
-3076346 Dubí Dubi Eichwald 50.68558 13.78561 P PPL CZ 89 7591 407 Europe/Prague 2009-05-27
-3076363 Dubá Duba Dauba 50.54034 14.54023 P PPL CZ 00 1753 270 Europe/Prague 2006-11-25
-3076402 Drnovice Drnovice Drnowitz 49.46931 16.54223 P PPL CZ CZ 78 1129 352 Europe/Prague 2006-11-25
-3076403 Drnovice Drnovice Drnowitz 49.2763 16.95146 P PPL CZ 78 2225 266 Europe/Prague 2006-11-25
-3076408 Drnholec Drnholec Drnoholec,Durnholz,Dürnholz 48.85746 16.48586 P PPL CZ 78 1676 184 Europe/Prague 2006-11-25
-3076413 Dřiteň Driten Zirnau 49.1428 14.34596 P PPL CZ 79 1392 435 Europe/Prague 2006-11-25
-3076428 Dřevohostice Drevohostice Drewohostitz,Dřewohostitz 49.42594 17.59204 P PPL CZ 84 1569 242 Europe/Prague 2006-11-25
-3076470 Drásov Drasov Drasow 49.33183 16.47798 P PPL CZ 78 1138 280 Europe/Prague 2006-11-25
-3076508 Drahanovice Drahanovice Drahanowitz 49.57856 17.07701 P PPL CZ 84 1699 245 Europe/Prague 2006-11-25
-3076522 Doudleby nad Orlicí Doudleby nad Orlici Daudleb 50.10742 16.26131 P PPL CZ 00 1926 284 Europe/Prague 2006-11-25
-3076531 Doubravice nad Svitavou Doubravice nad Svitavou Doubrawitz 49.43664 16.62937 P PPL CZ 78 1222 313 Europe/Prague 2006-11-25
-3076555 Doubrava Doubrava Daabrowa,Daąbrowa,Dombrau 49.85873 18.48018 P PPL CZ 00 1744 229 Europe/Prague 2006-11-25
-3076587 Domažlice Domazlice Taus,Tausz 49.44049 12.92976 P PPL CZ 87 10944 432 Europe/Prague 2008-11-28
-3076604 Domanín Domanin 49.00167 17.28476 P PPL CZ 78 1020 229 Europe/Prague 2006-11-25
-3076615 Doloplazy Doloplazy Doloplas 49.56876 17.41393 P PPL CZ 84 1235 299 Europe/Prague 2008-07-04
-3076621 Dolní Životice Dolni Zivotice Schonstein,Schönstein 49.89732 17.77969 P PPL CZ 00 1143 304 Europe/Prague 2006-11-25
-3076627 Dolní Žandov Dolni Zandov Unter-Sandau 50.01794 12.55101 P PPL CZ 81 1204 537 Europe/Prague 2006-11-25
-3076650 Dolní Újezd Dolni Ujezd Unter Aujezd 49.82562 16.25461 P PPL CZ 86 1963 413 Europe/Prague 2006-11-25
-3076651 Dolní Újezd Dolni Ujezd 49.54597 17.53547 P PPL CZ 84 1138 289 Europe/Prague 2006-11-25
-3076671 Dolní Studénky Dolni Studenky Schonbrunn,Schönbrunn,Studenky,Studénky 49.93506 16.97107 P PPL CZ 84 1278 303 Europe/Prague 2006-11-25
-3076685 Dolní Sloupnice Dolni Sloupnice 49.92721 16.29401 P PPL CZ 86 1729 365 Europe/Prague 2011-03-07
-3076694 Dolní Rychnov Dolni Rychnov Unter-Reichenau 50.16462 12.64507 P PPL CZ 81 1337 426 Europe/Prague 2006-11-25
-3076701 Dolní Roveň Dolni Roven Roven,Roveň,Rowen,Roweň 50.02927 15.96774 P PPL CZ 86 1899 232 Europe/Prague 2006-11-25
-3076726 Dolní Poustevna Dolni Poustevna Nieder-Einsiedel,Poustevna 50.98251 14.28684 P PPL CZ 89 1941 310 Europe/Prague 2006-11-25
-3076734 Dolní Podluží Dolni Podluzi Dolni Grunt,Dolní Grunt,Nieder-Grund 50.87988 14.59503 P PPL CZ 89 1199 392 Europe/Prague 2006-11-25
-3076735 Dolní Počernice Dolni Pocernice Unter Pocernitz,Unter Počernitz 50.0876 14.57199 P PPLX CZ CZ 52 2157 234 Europe/Prague 2007-04-24
-3076761 Dolní Němčí Dolni Nemci 48.96837 17.58585 P PPL CZ 90 2957 257 Europe/Prague 2006-11-25
-3076777 Dolní Lutyně Dolni Lutyne Nemecka Lutyne,Německá Lutyně 49.89876 18.42815 P PPL CZ 00 4712 211 Europe/Prague 2006-11-25
-3076780 Dolní Loućky Dolni Loucky Unter-Loucka 49.36099 16.35871 P PPL CZ CZ 80 1111 280 Europe/Prague 2006-11-25
-3076794 Dolní Libina Dolni Libina Bohmisch Liebau,Böhmisch Liebau,Moravska Libina,Moravská Libina 49.85821 17.10729 P PPL CZ CZ 84 3495 271 Europe/Prague 2006-11-25
-3076800 Dolní Lhota Dolni Lhota 49.84236 18.09241 P PPL CZ 00 1308 303 Europe/Prague 2006-11-25
-3076822 Dolní Kounice Dolni Kounice Kanitz 49.07011 16.46492 P PPL CZ 78 2403 199 Europe/Prague 2006-11-25
-3076873 Dolní Dvořiště Dolni Dvoriste Unter-Haid 48.65642 14.45221 P PPL CZ 79 1235 619 Europe/Prague 2006-11-25
-3076876 Dolní Dunajovice Dolni Dunajovice Unter-Tannowitz 48.85447 16.59283 P PPL CZ 78 1717 181 Europe/Prague 2006-11-25
-3076882 Dolní Dobrouč Dolni Dobrouc Liebenthal 49.99273 16.49766 P PPL CZ 86 2543 364 Europe/Prague 2006-11-25
-3076901 Dolní Černilov Dolni Cernilov 50.2611 15.96107 P PPL CZ 82 2255 258 Europe/Prague 2011-03-07
-3076902 Dolní Čermná Dolni Cermna 49.97954 16.56475 P PPL CZ 86 1371 397 Europe/Prague 2006-11-25
-3076903 Dolní Cerekev Dolni Cerekev Unter Cerekwe 49.34449 15.45655 P PPL CZ 80 1173 533 Europe/Prague 2006-11-25
-3076907 Dolní Bukovsko Dolni Bukovsko Bukowsko 49.17086 14.58127 P PPL CZ 79 1473 445 Europe/Prague 2006-11-25
-3076915 Dolní Břežany Dolni Brezany Unterbrezan,Unterbřežan 49.96321 14.4585 P PPL CZ 88 1790 334 Europe/Prague 2006-11-25
-3076918 Dolní Bousov Dolni Bousov Unter Bautzen 50.43825 15.12812 P PPL CZ 88 2275 243 Europe/Prague 2006-11-25
-3076923 Dolní Bojanovice Dolni Bojanovice 48.85861 17.02859 P PPL CZ 78 2859 174 Europe/Prague 2006-11-25
-3076925 Dolní Bohdíkov Dolni Bohdikov Cesky Bohdikov,Český Bohdíkov 50.00996 16.90433 P PPL CZ CZ 84 1427 350 Europe/Prague 2006-11-25
-3076930 Dolní Beřkovice Dolni Berkovice Unter Berkowitz,Unter Beřkowitz 50.39313 14.45024 P PPL CZ 88 1298 163 Europe/Prague 2006-11-25
-3076931 Dolní Benešov Dolni Benesov Beneschau 49.92101 18.10835 P PPL CZ 00 4314 227 Europe/Prague 2006-11-25
-3076934 Dolní Bečva Dolni Becva 49.45498 18.19419 P PPL CZ 90 1805 433 Europe/Prague 2006-11-25
-3076960 Dolany Dolany Dollein 49.64987 17.3224 P PPL CZ 84 2162 251 Europe/Prague 2006-11-25
-3076972 Doksy Doksy Hirschberg,Hirschberg in Bohmen,Hirschberg in Böhmen 50.56471 14.65553 P PPL CZ 00 5025 279 Europe/Prague 2006-11-25
-3076973 Doksy Doksy 50.119 14.04782 P PPL CZ 88 1156 399 Europe/Prague 2006-11-25
-3076984 Dobšice Dobsice Klein Tesswitz 48.84834 16.08218 P PPL CZ 78 2363 212 Europe/Prague 2008-07-08
-3076985 Dobruška Dobruska Dobruschka 50.29201 16.16001 P PPL CZ 00 7085 297 Europe/Prague 2006-11-25
-3076991 Dobrovice Dobrovice Dobrowitz 50.36933 14.96233 P PPL CZ 88 2954 243 Europe/Prague 2006-11-25
-3077001 Dobronín Dobronin Dobrenz 49.47833 15.64992 P PPL CZ 80 1913 481 Europe/Prague 2006-11-25
-3077006 Dobroměřice Dobromerice 50.37009 13.79473 P PPL CZ 89 1329 184 Europe/Prague 2006-11-25
-3077023 Dobřív Dobriv Dobriw,Dobříw 49.71566 13.68681 P PPL CZ 87 1110 419 Europe/Prague 2006-11-25
-3077024 Dobříš Dobris 49.78113 14.16717 P PPL CZ 88 7926 382 Europe/Prague 2006-11-25
-3077034 Dobřichovice Dobrichovice Dobrichowitz 49.92749 14.27469 P PPL CZ 88 2874 205 Europe/Prague 2006-11-25
-3077071 Dobratice Dobratice 49.66039 18.49226 P PPL CZ 00 1047 397 Europe/Prague 2006-11-25
-3077073 Dobřany Dobrany Dobrzan 49.65482 13.29307 P PPL CZ 87 5779 327 Europe/Prague 2006-11-25
-3077075 Dobrá Dobra 49.67383 18.41393 P PPL CZ 00 2965 331 Europe/Prague 2006-11-25
-3077119 Dlouhá Třebová Dlouha Trebova Langentriebe 49.9404 16.42329 P PPL CZ 86 1250 341 Europe/Prague 2006-11-25
-3077148 Divišov Divisov Diwischau 49.78849 14.87579 P PPL CZ 88 1367 468 Europe/Prague 2006-11-25
-3077184 Dětmarovice Detmarovice Detmarovice,Dittmannsdorf,Dziecmorowice,Dziećmorowice,Dětmarovice 49.89412 18.46079 P PPL CZ 00 3821 230 Europe/Prague 2007-12-20
-3077198 Desná Desna Dessendorf 50.75987 15.30284 P PPL CZ 83 3481 520 Europe/Prague 2006-11-25
-3077244 Děčín Decin Dechin,Decin,Decinas,Dečinas,Děčín,Tetschen,Дечин 50.78215 14.21478 P PPL CZ 89 52058 138 Europe/Prague 2010-01-29
-3077258 Davle Davle Dalve,Dawle 49.89218 14.40037 P PPL CZ 88 1176 211 Europe/Prague 2006-11-25
-3077264 Dašice Dasice Daschitz 50.02844 15.91244 P PPL CZ 86 1797 229 Europe/Prague 2006-11-25
-3077268 Darkovice Darkovice 49.93592 18.22213 P PPL CZ 00 1210 246 Europe/Prague 2006-11-25
-3077285 Dambořice Damborice Damboritz 49.03828 16.91757 P PPL CZ 78 1258 213 Europe/Prague 2006-11-25
-3077291 Dalovice Dalovice Dallwitz 50.24779 12.89581 P PPL CZ 81 1880 383 Europe/Prague 2006-11-25
-3077304 Dačice Dacice Datschitz 49.08154 15.43727 P PPL CZ 79 7958 468 Europe/Prague 2006-11-25
-3077318 Cvikov Cvikov Zwickau 50.77668 14.63298 P PPL CZ 00 4435 359 Europe/Prague 2006-11-25
-3077349 Čkyně Ckyne Ckyn,Čkyn 49.11503 13.82906 P PPL CZ 79 1466 527 Europe/Prague 2006-11-25
-3077359 Čížkovice Cizkovice Tschischkowitz 50.48418 14.02839 P PPL CZ 89 1323 182 Europe/Prague 2006-11-25
-3077366 Cítov Citov 50.37225 14.39813 P PPL CZ 88 1028 182 Europe/Prague 2006-11-25
-3077391 Církvice Cirkvice 49.9456 15.33505 P PPL CZ 88 1136 214 Europe/Prague 2006-11-25
-3077407 Čimelice Cimelice Cimelitz,Čimelitz 49.46557 14.06922 P PPL CZ 79 1045 425 Europe/Prague 2006-11-25
-3077453 Chyšky Chysky Klein Chyschka 49.52346 14.42757 P PPL CZ 79 1080 667 Europe/Prague 2006-11-25
-3077457 Chýnov Chynov Chejnow 49.40677 14.81122 P PPL CZ 79 2121 484 Europe/Prague 2006-11-25
-3077461 Chyňava Chynava Chynawa 50.02736 14.07398 P PPL CZ 88 1550 397 Europe/Prague 2006-11-25
-3077478 Chvalšiny Chvalsiny Kalsching 48.85401 14.21114 P PPL CZ 79 1159 572 Europe/Prague 2006-11-25
-3077501 Chvaletice Chvaletice Chavaletice,Chwaletitz 50.03443 15.41846 P PPL CZ 86 3223 222 Europe/Prague 2006-11-25
-3077508 Chvalčov Chvalcov 49.38918 17.71149 P PPL CZ 90 1644 378 Europe/Prague 2006-11-25
-3077533 Chuchelná Chuchelna Kuchelna 49.98664 18.11656 P PPL CZ 00 1315 243 Europe/Prague 2006-11-25
-3077539 Chrudim Chrudim 49.95109 15.79558 P PPL CZ 86 23630 274 Europe/Prague 2006-11-25
-3077543 Chroustovice Chroustovice Chroustowitz 49.95553 15.99143 P PPL CZ 86 1208 258 Europe/Prague 2006-11-25
-3077549 Chropyně Chropyne Chropin 49.35644 17.36451 P PPL CZ 90 5172 197 Europe/Prague 2006-11-25
-3077558 Chřibská Chribska Kreibitz 50.86079 14.48444 P PPL CZ 89 1453 352 Europe/Prague 2009-03-26
-3077584 Chrastava Chrastava Kratzau 50.81693 14.96884 P PPL CZ 00 6051 297 Europe/Prague 2006-11-25
-3077596 Chrast Chrast 49.90205 15.93396 P PPL CZ 86 0531 3186 285 288 Europe/Prague 2007-10-23
-3077598 Chrást Chrast 49.7932 13.49358 P PPL CZ 87 1700 340 Europe/Prague 2006-11-25
-3077625 Chotoviny Chotoviny 49.47803 14.67695 P PPL CZ 79 1578 553 Europe/Prague 2006-11-25
-3077650 Chotěšov Chotesov Choteschau,Chotěschau 49.65408 13.20271 P PPL CZ 87 2688 332 Europe/Prague 2006-11-25
-3077665 Chotěbuz Chotebuz Chotebuz,Chotěbuz,Kocobedz,Kocobędz,Kotzobenz,Kozobentz 49.76849 18.56912 P PPL CZ 00 1050 348 Europe/Prague 2007-12-20
-3077669 Chotěboř Chotebor 49.72072 15.67018 P PPL CZ 80 9849 520 525 Europe/Prague 2011-04-05
-3077685 Chomutov Chomutov Chomutov,Khomutov,Komotau,homutofu,Хомутов,ホムトフ 50.46048 13.41779 P PPL CZ 89 50251 341 Europe/Prague 2008-11-28
-3077705 Chodová Planá Chodova Plana Kuttenplan 49.89321 12.73014 P PPL CZ 87 1793 525 Europe/Prague 2006-11-25
-3077706 Chodov Chodov Chodau 50.24018 12.74551 P PPL CZ 81 14454 414 Europe/Prague 2009-03-31
-3077725 Choceň Chocen Checen,Checeň,Chotzen 50.00161 16.22303 P PPL CZ 86 9008 291 Europe/Prague 2006-11-25
-3077741 Chlum u Třeboně Chlum u Trebone Chlum,Chlumec,Chlumetz 48.96235 14.92799 P PPL CZ 79 2183 483 Europe/Prague 2006-11-25
-3077751 Chlumec nad Cidlinou Chlumec nad Cidlinou Chlumec,Chlumec na Cidline,Chlumec na Cidliňe 50.1544 15.46026 P PPL CZ 82 5292 222 Europe/Prague 2008-10-17
-3077754 Chlumec Chlumec Kulm 50.69972 13.93964 P PPL CZ 89 4170 243 Europe/Prague 2006-11-25
-3077760 Chlumčany Chlumcany 49.63256 13.31323 P PPL CZ 87 2383 392 Europe/Prague 2006-11-25
-3077828 Chlebičov Chlebicov 49.95942 17.96748 P PPL CZ 00 1068 275 Europe/Prague 2006-11-25
-3077835 Cheb Cheb Cheb,Chebas,Eger,Kheb,hepu,Хеб,ヘプ 50.07963 12.37392 P PPL CZ 81 33242 445 Europe/Prague 2010-01-29
-3077862 Chabařovice Chabarovice Karbitz 50.67318 13.94184 P PPL CZ 89 2329 175 Europe/Prague 2006-11-25
-3077882 Český Těšín Cesky Tesin Ceski Tjesin,Cesky Tesin,Cheski-Teshin,Czeski Cieszyn,Teschen,Tesin,Tschechisch Teschen,Český Tešín,Český Těšín,Češki Tješin,Чески-Тешин 49.74613 18.62613 P PPL CZ 00 26159 275 Europe/Prague 2008-11-28
-3077884 Český Rudolec Cesky Rudolec Bohmisch Rudoletz,Böhmisch Rudoletz 49.06835 15.32437 P PPL CZ 79 1004 512 Europe/Prague 2006-11-25
-3077889 Český Krumlov Cesky Krumlov Boehmisch Krumau,Böhmisch Krumau,Ceske Krumlov,Cesky Krumlov,Cheski Krumlov,Krumau,Krumlov,Krummau,Tsesky Kroumlob,jie ke ke lu mu luo fu,ke lu mu luo fu,Český Krumlov,Τσεσκύ Κρούμλοβ,Чески Крумлов,克鲁姆洛夫,捷克克鲁姆洛夫 48.81091 14.31521 P PPL CZ 79 14146 492 Europe/Prague 2008-11-28
-3077895 Český Dub Cesky Dub Bohmisch Aicha,Böhmisch Aicha 50.66054 14.99617 P PPL CZ 00 2698 328 Europe/Prague 2006-11-25
-3077898 Český Brod Cesky Brod Bohmisch Brod,Böhmisch Brod 50.0742 14.86081 P PPL CZ 88 6609 223 Europe/Prague 2006-11-25
-3077903 České Velenice Ceske Velenice 48.76851 14.96368 P PPL CZ 79 3479 492 Europe/Prague 2006-11-25
-3077906 České Meziříčí Ceske Mezirici Mezirici,Meziříčí,Mezritz,Mezřitz 50.2868 16.04428 P PPL CZ 00 1603 258 Europe/Prague 2006-11-25
-3077916 České Budějovice Ceske Budejovice Boehmisch Budweis,Budejovice,Budweis,Böhmisch Budweis,Ceske Budejovicai,Ceske Budejovice,Cheshke Budjejovice,Cheske Budejovice,Cheske-Budejovice,Czeskie Budziejowice,Tseske Mpountegiobitse,Česke Budejovicai,České Budějovice,Τσέσκε Μπουντεγιόβιτσε,Ческе Будейовице,Ческе-Будеёвице,Чешке Будјејовице,Чешке Буђејовице 48.97447 14.47434 P PPLA CZ 79 96053 381 390 Europe/Prague 2009-11-04
-3077918 Česká Ves Ceska Ves Bohmischdorf,Böhmischdorf 50.25736 17.22805 P PPL CZ 84 2554 403 Europe/Prague 2006-11-25
-3077920 Česká Třebová Ceska Trebova Bohmisch-Trubau,Böhmisch-Trübau 49.90436 16.44413 P PPL CZ 86 16655 370 Europe/Prague 2008-07-08
-3077921 Česká Skalice Ceska Skalice Bohmisch,Böhmisch 50.39467 16.04276 P PPL CZ 00 5402 291 Europe/Prague 2006-11-25
-3077929 Česká Lípa Ceska Lipa Boehmisch-Leipa,Böhmisch-Leipa,Ceska Lipa,Cheska-Lipa,Lipa,Česká Lípa,Ческа-Липа 50.68551 14.53764 P PPL CZ 83 38841 263 Europe/Prague 2010-01-29
-3077932 Česká Kamenice Ceska Kamenice Bohmisch Kamnitz,Böhmisch Kamnitz 50.7978 14.41767 P PPL CZ 89 5475 313 Europe/Prague 2006-11-25
-3077955 Červený Kostelec Cerveny Kostelec Roth-Kosteletz 50.47626 16.09289 P PPL CZ 00 8441 419 Europe/Prague 2006-11-25
-3077965 Červenka Cervenka 49.72068 17.07773 P PPL CZ 84 1361 233 Europe/Prague 2008-07-08
-3077968 Červené Pečky Cervene Pecky Cerveny Pecky,Petschkau 49.97822 15.20856 P PPL CZ CZ 88 1617 290 Europe/Prague 2006-11-25
-3077972 Červená Voda Cervena Voda Mahrisch Rothwasser,Mährisch Rothwasser,Rothwasser 50.04029 16.74268 P PPL CZ 86 3180 526 Europe/Prague 2006-11-25
-3078012 Černožice Cernozice 50.31863 15.87403 P PPL CZ 00 1253 256 Europe/Prague 2006-11-25
-3078021 Černovice Cernovice Cernowitz,Černowitz 49.37265 14.96089 P PPL CZ 80 1863 596 Europe/Prague 2006-11-25
-3078028 Černošín Cernosin Tschernoschin 49.81613 12.88381 P PPL CZ 87 1097 498 Europe/Prague 2006-11-25
-3078029 Černošice Cernosice 49.96008 14.31979 P PPL CZ 88 4920 215 Europe/Prague 2006-11-25
-3078038 Černilov Cernilov Cernilow,Černílow 50.26265 15.92254 P PPL CZ CZ 82 2233 254 Europe/Prague 2006-11-25
-3078065 Černčice Cerncice 50.36138 13.84521 P PPL CZ 89 1423 185 Europe/Prague 2006-11-25
-3078085 Černá Hora Cerna Hora 49.41361 16.5814 P PPL CZ 78 1903 326 Europe/Prague 2006-11-25
-3078114 Cerhenice Cerhenice Cerhenitz 50.07127 15.07203 P PPL CZ 88 1491 211 Europe/Prague 2006-11-25
-3078122 Čerčany Cercany Cercan,Čerčan 49.85293 14.70299 P PPL CZ 88 2611 284 Europe/Prague 2006-11-25
-3078155 Čelechovice na Hané Celechovice na Hane 49.51626 17.09379 P PPL CZ 84 1220 239 Europe/Prague 2006-11-25
-3078160 Čelákovice Celakovice Celakowitz,Celakoyice,Cellakovice,Čelakowitz 50.16038 14.75005 P PPL CZ 88 10125 181 Europe/Prague 2006-11-25
-3078161 Čeladná Celadna 49.54873 18.33759 P PPL CZ 00 2152 427 Europe/Prague 2006-11-25
-3078181 Čejkovice Cejkovice 48.90592 16.9423 P PPL CZ 78 2527 209 Europe/Prague 2006-11-25
-3078187 Čejč Cejc 48.94653 16.96511 P PPL CZ 78 1232 185 Europe/Prague 2006-11-25
-3078203 Čechtice Cechtice Cechtitz 49.62403 15.04824 P PPL CZ 88 1410 477 Europe/Prague 2006-11-25
-3078211 Čebín Cebin 49.31324 16.47791 P PPL CZ 78 1632 281 Europe/Prague 2006-11-25
-3078223 Častolovice Castolovice Castolowitz,Častolowitz 50.1291 16.18128 P PPL CZ 00 1614 266 Europe/Prague 2006-11-25
-3078234 Čáslav Caslav Caslau,Tschaslau,Časlau 49.91099 15.38972 P PPL CZ 88 0205 10025 231 264 Europe/Prague 2007-10-01
-3078275 Bzenec Bzenec Bisenz 48.97336 17.26685 P PPL CZ 78 4315 188 Europe/Prague 2006-11-25
-3078286 Bystřice pod Hostýnem Bystrice pod Hostynem Bystritz-am-Hostein 49.39924 17.67401 P PPL CZ 90 8727 320 Europe/Prague 2006-11-25
-3078288 Bystřice nad Pernštejnem Bystrice nad Pernstejnem Bystrice pod Pernstynem,Bystritz am Pernstein,Bystritz-ober-Pernstein,Bystřice pod Pernštýnem 49.52295 16.26147 P PPL CZ 80 8996 534 Europe/Prague 2006-11-25
-3078300 Bystřice Bystrice Bistritz 49.73213 14.6674 P PPL CZ 88 3993 372 Europe/Prague 2006-11-25
-3078301 Bystřice Bystrice Bystrzyca 49.63657 18.72038 P PPL CZ 00 5076 351 Europe/Prague 2006-11-25
-3078303 Bystřec Bystrec Waltersdorf 50.01168 16.619 P PPL CZ 86 1084 500 Europe/Prague 2006-11-25
-3078306 Bystré Bystre Bistrau 49.62846 16.34679 P PPL CZ 86 1681 619 Europe/Prague 2006-11-25
-3078309 Bystřany Bystrany Wisterschan 50.62867 13.86419 P PPL CZ 89 1840 193 Europe/Prague 2006-11-25
-3078316 Býšť Byst' Bejscht 50.13243 15.91116 P PPL CZ CZ 86 1115 249 Europe/Prague 2006-11-25
-3078322 Byšice Bysice Bischitz 50.31044 14.61136 P PPL CZ 88 1170 200 Europe/Prague 2006-11-25
-3078358 Buštěhrad Bustehrad 50.15594 14.18897 P PPL CZ 88 2295 323 Europe/Prague 2006-11-25
-3078417 Bukovec Bukovec 49.55114 18.82683 P PPL CZ 00 1364 457 Europe/Prague 2006-11-25
-3078421 Bukovany Bukovany Bukwa 50.16632 12.57265 P PPL CZ 81 1808 455 Europe/Prague 2006-11-25
-3078458 Budyně nad Ohří Budyne nad Ohri Budin 50.40427 14.12591 P PPL CZ 89 1964 166 Europe/Prague 2006-11-25
-3078469 Budišov nad Budišovkou Budisov nad Budisovkou Bautsch,Budisop n Bud,Budišop n Bud 49.79511 17.62969 P PPL CZ 00 3159 510 Europe/Prague 2006-11-25
-3078472 Budišov Budisov Budischau 49.27138 16.00383 P PPL CZ 80 1168 484 Europe/Prague 2006-11-25
-3078503 Bučovice Bucovice Butschowitz 49.14896 17.00191 P PPL CZ 78 6386 219 Europe/Prague 2006-11-25
-3078513 Buchlovice Buchlovice Buchlowitz 49.08627 17.33852 P PPL CZ 90 2487 250 Europe/Prague 2006-11-25
-3078536 Brušperk Brusperk Braunsberg 49.7001 18.2221 P PPL CZ 00 3620 246 Europe/Prague 2006-11-25
-3078545 Bruntál Bruntal Freudenthal 49.98844 17.4647 P PPL CZ 85 17686 550 Europe/Prague 2006-11-25
-3078547 Brumovice Brumovice Braunsdorf 50.0153 17.74958 P PPL CZ 00 1464 328 Europe/Prague 2006-11-25
-3078561 Brtnice Brtnice Pirnitz 49.30695 15.67642 P PPL CZ 80 3744 518 Europe/Prague 2006-11-25
-3078577 Broumov Broumov Braunau 50.58566 16.33181 P PPL CZ 00 8254 415 Europe/Prague 2008-11-28
-3078584 Brodek u Přerova Brodek u Prerova Brodek 49.48419 17.33825 P PPL CZ 84 1972 207 Europe/Prague 2006-11-25
-3078610 Brno Brno Berno,Brno,Bruenn,Bruna,Brunn,Brünn,Burno,Mprno,beuleuno,brnw,bu er nuo,buruno,Μπρνο,Брно,Бърно,ברנו,برنو,ブルノ,布爾諾,브르노 49.19522 16.60796 P PPLA CZ 78 369559 226 Europe/Prague 2008-07-14
-3078613 Brniště Brniste Brims,Brins 50.72919 14.70338 P PPL CZ 00 1358 300 Europe/Prague 2006-11-25
-3078620 Brněnec Brnenec Brunnlitz,Brünnlitz 49.62735 16.52202 P PPL CZ 86 1405 377 Europe/Prague 2006-11-25
-3078633 Brloh Brloh Berlau,Brlohy 48.92987 14.21857 P PPL CZ 79 1039 564 Europe/Prague 2006-11-25
-3078648 Břidličná Bridlicna Friedland,Friedland an der Mohra,Frydland na Morave,Frydlant nad Moravici,Frýdland na Moravě,Frýdlant nad Moravicí 49.91167 17.37107 P PPL CZ 00 3698 532 Europe/Prague 2006-11-25
-3078659 Březová nad Svitavou Brezova nad Svitavou Brezova,Brusau,Brüsau,Březová 49.64418 16.51799 P PPL CZ 86 1518 382 Europe/Prague 2006-11-25
-3078664 Březová Brezova Prosau,Prösau 50.14557 12.64996 P PPL CZ CZ 81 2826 509 Europe/Prague 2006-11-25
-3078669 Březová Brezova Briesau 49.79158 17.86556 P PPL CZ 00 1307 518 Europe/Prague 2010-07-10
-3078671 Březová Brezova 48.92543 17.73986 P PPL CZ 90 1109 416 Europe/Prague 2006-11-25
-3078672 Březolupy Brezolupy Brzezoluse 49.12138 17.58034 P PPL CZ 90 1559 205 Europe/Prague 2006-11-25
-3078675 Březno Brezno Priesen 50.40185 13.42118 P PPL CZ 89 1220 279 Europe/Prague 2006-11-25
-3078683 Březnice Breznice Breznitz,Březnitz 49.55763 13.95063 P PPL CZ 88 3662 468 Europe/Prague 2006-11-25
-3078685 Březnice Breznice Brzeznitz,Břzeznitz 49.18643 17.66277 P PPL CZ 90 1136 296 Europe/Prague 2006-11-25
-3078732 Březí Brezi Bratelsbrunn,Pratelsbrunn,Pratlsbrun,Prátelsbrunn,Prátlsbrun 48.81928 16.56748 P PPL CZ 78 1539 196 Europe/Prague 2006-11-25
-3078773 Břeclav Breclav Breclav,Brzheclav,Břeclav,Lundenburg,bujetsurafu,Бржецлав,ブジェツラフ 48.75897 16.88203 P PPL CZ 78 25789 161 Europe/Prague 2010-01-29
-3078807 Břasy Brasy 49.837 13.57833 P PPL CZ 87 2055 470 Europe/Prague 2006-11-25
-3078812 Brantice Brantice Bransdorf 50.06351 17.62911 P PPL CZ 00 1215 346 Europe/Prague 2006-11-25
-3078833 Braník Branik 50.03597 14.41235 P PPLX CZ 52 18740 199 Europe/Prague 2007-04-24
-3078836 Brandýs nad Orlicí Brandys nad Orlici Brandeis 50.00194 16.28528 P PPL CZ 86 1435 306 Europe/Prague 2006-11-25
-3078837 Brandýs nad Labem-Stará Boleslav Brandys nad Labem-Stara Boleslav 50.18709 14.66326 P PPL CZ 88 15398 186 Europe/Prague 2006-11-25
-3078839 Brandýsek Brandysek Brandeis 50.18923 14.16199 P PPL CZ 88 1679 273 Europe/Prague 2006-11-25
-3078845 Braňany Branany Prohn 50.54295 13.70017 P PPL CZ 89 1172 255 Europe/Prague 2006-11-25
-3078872 Božice Bozice Possitz 48.83687 16.28875 P PPL CZ 78 1436 190 Europe/Prague 2006-11-25
-3078885 Bouzov Bouzov Busau 49.70426 16.89288 P PPL CZ 84 1490 384 Europe/Prague 2006-11-25
-3078903 Bošovice Bosovice Boschowitz 49.05351 16.83676 P PPL CZ 78 1071 266 Europe/Prague 2006-11-25
-3078910 Boskovice Boskovice Boskowitz 49.48751 16.65997 P PPL CZ 78 11121 386 Europe/Prague 2006-11-25
-3078933 Boršice Borsice Borschitz 49.06254 17.35084 P PPL CZ 90 2239 209 Europe/Prague 2006-11-25
-3078957 Borovany Borovany 48.8986 14.64227 P PPL CZ 79 3739 519 Europe/Prague 2006-11-25
-3078973 Borohrádek Borohradek 50.09777 16.09326 P PPL CZ 00 2152 262 Europe/Prague 2006-11-25
-3078982 Bořitov Boritov Borstendorf 49.42504 16.59119 P PPL CZ 78 1234 307 Europe/Prague 2006-11-25
-3078997 Bořetice Boretice 48.91302 16.85306 P PPL CZ 78 1297 193 Europe/Prague 2006-11-25
-3079023 Borek Borek 49.02339 14.50088 P PPL CZ 79 1157 418 Europe/Prague 2006-11-25
-3079038 Bor Bor Haid 49.71159 12.77516 P PPL CZ 87 4025 472 Europe/Prague 2006-11-25
-3079078 Bolatice Bolatice Bolatitz 49.95172 18.08358 P PPL CZ 00 4186 249 Europe/Prague 2006-11-25
-3079082 Bojkovice Bojkovice Bojkowitz 49.03864 17.81487 P PPL CZ 90 4742 278 Europe/Prague 2006-11-25
-3079099 Bohutín Bohutin 49.65551 13.94389 P PPL CZ 88 1544 554 Europe/Prague 2006-11-25
-3079102 Bohušovice nad Ohří Bohusovice nad Ohri Bauschowitz 50.49316 14.15048 P PPL CZ 89 2544 153 Europe/Prague 2006-11-25
-3079108 Bohuslavice Bohuslavice Buslawitz 49.94232 18.12866 P PPL CZ 00 1560 248 Europe/Prague 2006-11-25
-3079121 Bohuňovice Bohunovice 49.66301 17.28693 P PPL CZ 84 2390 230 Europe/Prague 2006-11-25
-3079129 Bohumín Bohumin 49.90411 18.35755 P PPL CZ 00 23075 203 Europe/Prague 2006-11-25
-3079159 Bohdalov Bohdalov Bohdalau 49.47921 15.87582 P PPL CZ 80 1074 577 Europe/Prague 2006-11-25
-3079174 Bochov Bochov Buchau 50.14872 13.05227 P PPL CZ 81 1973 676 Europe/Prague 2010-07-18
-3079194 Bludov Bludov Blauda 49.9408 16.92849 P PPL CZ 84 3155 304 Europe/Prague 2006-11-25
-3079199 Blučina Blucina 49.05497 16.6445 P PPL CZ 78 2040 189 Europe/Prague 2006-11-25
-3079203 Blovice Blovice Blowitz 49.5822 13.54009 P PPL CZ 87 3901 389 Europe/Prague 2006-11-25
-3079209 Blížkovice Blizkovice 48.99976 15.83482 P PPL CZ 78 1235 402 Europe/Prague 2006-11-25
-3079212 Blížejov Blizejov Blisowa 49.5 12.98926 P PPL CZ 87 1029 384 Europe/Prague 2006-11-25
-3079220 Blažovice Blazovice 49.16569 16.78611 P PPL CZ 78 1076 238 Europe/Prague 2006-11-25
-3079252 Blatná Blatna 49.42489 13.88176 P PPL CZ 79 6735 442 Europe/Prague 2006-11-25
-3079273 Blansko Blansko Blansko,Бланско 49.36304 16.64446 P PPL CZ 78 20384 278 Europe/Prague 2010-01-29
-3079332 Bílovice nad Svitavou Bilovice nad Svitavou Bilowitz 49.24708 16.67247 P PPL CZ 78 2600 225 Europe/Prague 2006-11-25
-3079334 Bílovice Bilovice Bilowitz 49.09965 17.54961 P PPL CZ 90 1634 190 Europe/Prague 2006-11-25
-3079336 Bílovec Bilovec Bielowiec,Wagstadt 49.75639 18.01581 P PPL CZ 00 7486 288 Europe/Prague 2006-11-25
-3079346 Bílina Kyselka Bilina Kyselka Bilina Kyselka,Bílina Kyselka,Sauerbrunn 50.55 13.76667 P PPL CZ 00 15697 216 Europe/Prague 2012-01-19
-3079348 Bílina Bilina Bilin 50.54854 13.77535 P PPL CZ CZ 89 15738 204 Europe/Prague 2006-11-25
-3079368 Bílá Třemešná Bila Tremesna Weiss Tremeschna 50.44465 15.74101 P PPL CZ 00 1345 352 Europe/Prague 2006-11-25
-3079374 Bílá Lhota Bila Lhota Lhota 49.70953 16.97507 P PPL CZ 84 1091 293 Europe/Prague 2006-11-25
-3079403 Bezdružice Bezdruzice Weseritz 49.90724 12.9711 P PPL CZ 87 1004 592 Europe/Prague 2006-11-25
-3079467 Beroun Beroun Beraun 49.96382 14.072 P PPL CZ 88 17550 228 Europe/Prague 2008-11-28
-3079476 Bernartice Bernartice Bernaditz 49.36889 14.38101 P PPL CZ 79 1260 462 Europe/Prague 2006-11-25
-3079500 Benešov nad Ploučnicí Benesov nad Ploucnici Bensen 50.74159 14.31239 P PPL CZ 89 4043 212 Europe/Prague 2006-11-25
-3079501 Benešov nad Černou Benesov nad Cernou Deutsch Beneschau,Nemecky Benesov,Německý Benešov 48.7294 14.62737 P PPL CZ 79 1259 659 Europe/Prague 2006-11-25
-3079508 Benešov Benesov Beneschau,Benesov,Benešov 49.78162 14.68697 P PPL CZ 88 16257 357 Europe/Prague 2007-02-18
-3079511 Benecko Benecko 50.66633 15.54816 P PPL CZ 00 1142 793 Europe/Prague 2006-11-25
-3079514 Benátky nad Jizerou Benatky nad Jizerou Benatky,Benátky,Neu Benatek,Nove Benatky,Nové Benátky 50.29085 14.82343 P PPL CZ 88 6818 241 Europe/Prague 2006-11-25
-3079532 Bělotín Belotin Bolten,Bölten 49.5912 17.80654 P PPL CZ CZ 84 1630 294 Europe/Prague 2006-11-25
-3079556 Bělá pod Bezdězem Bela pod Bezdezem Bela pri Bedez,Weisswasser in Bohmen,Weisswasser in Böhmen 50.50121 14.80418 P PPL CZ 88 4855 297 Europe/Prague 2006-11-25
-3079557 Bělá nad Radbuzou Bela nad Radbuzou Weissensulz 49.59115 12.71761 P PPL CZ 87 1812 441 Europe/Prague 2006-11-25
-3079605 Bedihošť Bedihost' Bedihoscht 49.44826 17.16643 P PPL CZ CZ 84 1002 208 Europe/Prague 2006-11-25
-3079611 Bečov Becov Hochpetsch 50.44972 13.71784 P PPL CZ 89 2072 256 Europe/Prague 2006-11-25
-3079616 Bechyně Bechyne Bechyn 49.29523 14.4681 P PPL CZ 79 5755 407 Europe/Prague 2006-11-25
-3079620 Bechlín Bechlin 50.41615 14.34092 P PPL CZ 89 1150 218 Europe/Prague 2006-11-25
-3079632 Bavorov Bavorov Barau 49.12184 14.07893 P PPL CZ 79 1401 441 Europe/Prague 2006-11-25
-3079637 Batelov Batelov Batelau,Battelau 49.31425 15.39465 P PPL CZ 80 2388 553 Europe/Prague 2006-11-25
-3079645 Baška Baska 49.64584 18.37233 P PPL CZ 00 3222 312 Europe/Prague 2006-11-25
-3079653 Bartošovice Bartosovice Partschendorf 49.66884 18.05461 P PPL CZ 00 1596 245 Europe/Prague 2006-11-25
-3079671 Bánov Banov 48.98801 17.71752 P PPL CZ 90 2095 292 Europe/Prague 2006-11-25
-3079685 Bakov nad Jizerou Bakov nad Jizerou Bakow 50.4823 14.94149 P PPL CZ 88 4417 222 Europe/Prague 2006-11-25
-3079732 Babice Babice 49.12167 17.48075 P PPL CZ 90 1754 182 Europe/Prague 2006-11-25
-3079751 Aš As Asch 50.22387 12.19499 P PPL CZ CZ 81 12866 676 Europe/Prague 2006-11-25
-3079817 Albrechtice nad Orlicí Albrechtice nad Orlici 50.13979 16.06437 P PPL CZ 00 1063 251 Europe/Prague 2006-11-25
-3079824 Albrechtice Albrechtice 49.78645 18.52444 P PPL CZ 00 4019 256 Europe/Prague 2006-11-25
-3079841 Adamov Adamov Adamsthal 49.30162 16.65253 P PPL CZ 78 4871 249 Europe/Prague 2008-06-06
-3079843 Abertamy Abertamy Abertham 50.36874 12.81826 P PPL CZ 81 1315 891 Europe/Prague 2006-11-25
-3337421 Lázně Bohdaneč Lazne Bohdanec 50.0756 15.67978 P PPL CZ 86 3274 222 Europe/Prague 2006-11-25
-6269470 Černý Most Cerny Most 50.10475 14.57974 P PPLX CZ 52 21500 250 252 Europe/Prague 2007-04-24
-7602675 Lučina Lucina 49.72082 18.44776 P PPL CZ 85 1181 303 Europe/Prague 2010-11-25
-2803474 Zwota Zwota 50.38333 12.43333 P PPLA4 DE 13 145 14523 14523470 1541 744 Europe/Berlin 2011-07-31
-2803476 Zwönitz Zwonitz Zwonitz,Zwönitz 50.63333 12.8 P PPL DE 13 11547 542 Europe/Berlin 2012-01-18
-2803489 Zwochau Zwochau Grebehna,Zwochau 51.46667 12.26667 P PPLA4 DE 13 147 14730 14730370 1167 110 Europe/Berlin 2011-04-25
-2803515 Zwingenberg Zwingenberg Zwingenberg 49.72639 8.61861 P PPL DE 05 7082 188 Europe/Berlin 2012-01-18
-2803516 Zwingenberg Zwingenberg 49.41917 9.04056 P PPLA4 DE 01 082 08225 08225113 750 185 Europe/Berlin 2011-04-25
-2803519 Zwinge Zwinge Zwinge 51.55 10.38333 P PPLA4 DE 15 00 16061 16061112 462 202 Europe/Berlin 2011-04-25
-2803537 Zwiesel Zwiesel Zwiesel,Zwisel 49.01667 13.23333 P PPL DE 02 10327 597 Europe/Berlin 2012-01-18
-2803545 Zwiefalten Zwiefalten 48.23396 9.46232 P PPLA4 DE 01 084 08415 08415085 2148 551 Europe/Berlin 2011-04-25
-2803560 Zwickau Zwickau Cvikau,Cvikkau,Cygnea,Stadt Zwickau,Zwickau,tsuvu~ikkau,zwykaw,Цвикау,Цвиккау,زویکاو,ツヴィッカウ 50.73333 12.5 P PPL DE 13 98796 276 Europe/Berlin 2012-01-18
-2803588 Zwenkau Zwenkau Zwenkau 51.21667 12.31667 P PPL DE 13 8905 131 Europe/Berlin 2012-01-18
-2803604 Zweiflingen Zweiflingen 49.25639 9.51806 P PPLA4 DE 01 081 08126 08126094 1716 325 Europe/Berlin 2011-04-25
-2803606 Zweifelscheid Zweifelscheid 50.03333 6.25 P PPLA4 DE 08 00 07232 07232138 44 466 Europe/Berlin 2011-04-25
-2803620 Zweibrücken Zweibrucken Deux Ponts,Deux-Ponts,Zweibrucken,Zweibruecken,Zweibrücken,tsuvu~aiburyukken,ツヴァイブリュッケン 49.25 7.36667 P PPL DE 08 35221 227 Europe/Berlin 2012-01-18
-2803642 Zuzenhausen Zuzenhausen 49.29636 8.82254 P PPLA4 DE 01 082 08226 08226101 2083 149 Europe/Berlin 2011-04-25
-2803651 Züssow Zussow 53.97709 13.54855 P PPLA4 DE 12 00 13059 13059110 1274 36 Europe/Berlin 2011-07-31
-2803654 Züsow Zusow 53.91667 11.68333 P PPLA4 DE 12 00 13058 13058111 365 66 Europe/Berlin 2011-04-25
-2803655 Zusmarshausen Zusmarshausen Zusmarshausen 48.4 10.6 P PPL DE 02 6384 464 Europe/Berlin 2012-01-18
-2803657 Züsedom Zusedom 53.45 14.01667 P PPLA4 DE 12 00 13062 13062065 287 77 Europe/Berlin 2011-04-25
-2803664 Züsch Zusch 49.65 7 P PPLA4 DE 08 00 07235 07235153 681 570 Europe/Berlin 2011-04-25
-2803667 Zusamaltheim Zusamaltheim 48.53104 10.63562 P PPLA4 DE 02 097 09773 09773188 1290 444 Europe/Berlin 2011-07-31
-2803670 Zurow Zurow 53.86667 11.61667 P PPLA4 DE 12 00 13058 13058110 1421 48 Europe/Berlin 2011-04-25
-2803723 Zülpich Zulpich Bitwa pod Tolbiac,Cjul'pikh,Slaget vid Tulpiacum,Tolbiac,Zuelpich,Zulpich,Zülpich,Цюльпих 50.7 6.65 P PPL DE 07 20208 152 Europe/Berlin 2012-01-18
-2803727 Zülow Zulow 53.57742 11.27146 P PPLA4 DE 12 00 13054 13054123 0 48 Europe/Berlin 2011-04-25
-2803776 Zschortau Zschortau 51.4793 12.35893 P PPL DE 13 2412 102 Europe/Berlin 2011-07-06
-2803781 Zschornewitz Zschornewitz 51.71667 12.4 P PPLA4 DE 14 00 15091 15091405 2936 88 Europe/Berlin 2011-04-25
-2803786 Zschorlau Zschorlau 50.56667 12.65 P PPLA4 DE 13 145 14521 14521700 5944 501 Europe/Berlin 2011-04-25
-2803798 Zschopau Zschopau Zschopau 50.75 13.06667 P PPL DE 13 11705 358 Europe/Berlin 2012-01-18
-2803823 Zscherndorf Zscherndorf 51.61667 12.26667 P PPL DE 14 1852 79 Europe/Berlin 2006-01-17
-2803825 Zscherben Zscherben 51.33333 11.96667 P PPL DE 14 1613 98 Europe/Berlin 2006-01-17
-2803827 Zschepplin Zschepplin 51.5 12.6 P PPLA4 DE 13 147 14730 14730360 3373 108 Europe/Berlin 2011-04-25
-2803848 Zschadrass Zschadrass Zschadrass 51.13333 12.81667 P PPL DE 13 3763 211 Europe/Berlin 2012-01-18
-2803857 Zotzenheim Zotzenheim 49.86667 7.96667 P PPLA4 DE 08 00 07339 07339068 646 114 Europe/Berlin 2011-04-25
-2803870 Zossen Zossen Zossen 52.21667 13.45 P PPL DE 11 17138 38 Europe/Berlin 2012-01-18
-2803874 Zöschingen Zoschingen 48.66667 10.31667 P PPLA4 DE 02 097 09773 09773187 743 522 Europe/Berlin 2011-04-25
-2803875 Zöschen Zoschen Zoschen,Zöschen 51.35 12.11667 P PPL DE 14 1074 98 Europe/Berlin 2012-01-18
-2803879 Zörnigall Zornigall 51.86667 12.75 P PPLA4 DE 14 00 15091 15091400 991 72 Europe/Berlin 2011-04-25
-2803882 Zornheim Zornheim 49.89 8.22472 P PPLA4 DE 08 00 07339 07339067 3559 217 Europe/Berlin 2011-04-25
-2803884 Zorneding Zorneding 48.08433 11.82446 P PPLA4 DE 02 091 09175 09175139 8581 563 Europe/Berlin 2011-04-25
-2803889 Zorge Zorge 51.63333 10.63333 P PPLA4 DE 06 00 03156 03156016 1230 385 Europe/Berlin 2011-04-25
-2803891 Zörbig Zorbig Zorbig,Zörbig 51.63333 12.11667 P PPL DE 14 4052 86 Europe/Berlin 2012-01-18
-2803892 Zorbau Zorbau Zorbau 51.2 12.01667 P PPLA4 DE 14 00 15084 15084600 882 162 Europe/Berlin 2011-04-25
-2803917 Zöllnitz Zollnitz 50.86667 11.63333 P PPLA4 DE 15 00 16074 16074114 724 182 Europe/Berlin 2011-04-25
-2803923 Zolling Zolling 48.45 11.76667 P PPLA4 DE 02 091 09178 09178157 4029 429 Europe/Berlin 2011-04-25
-2803953 Zölkow Zolkow 53.56325 11.8206 P PPLA4 DE 12 00 13060 13060092 698 60 Europe/Berlin 2011-04-25
-2803972 Zöblitz Zoblitz Zoblitz,Zöblitz 50.65 13.23333 P PPL DE 13 3134 636 Europe/Berlin 2012-01-18
-2804008 Zittau Zittau Cittau,Nimeccina,Zitava,Zitawa,Zittau,Zytawa,tsu~ittau,tsu~ittauno,Żytawa,Žitava,Žitawa,Німеччина,Циттау,ツィッタウ,ツィッタウの 50.9 14.83333 P PPL DE 13 25785 241 Europe/Berlin 2012-01-18
-2804018 Zislow Zislow 53.43214 12.3131 P PPLA4 DE 12 00 13056 13056075 186 67 Europe/Berlin 2011-04-25
-2804022 Zirzow Zirzow 53.58333 13.2 P PPLA4 DE 12 00 13055 13055081 342 45 Europe/Berlin 2011-04-25
-2804034 Zirndorf Zirndorf 49.4424 10.95414 P PPL DE 02 25734 309 Europe/Berlin 2009-04-15
-2804041 Zirkow Zirkow 54.38333 13.55 P PPLA4 DE 12 00 13061 13061044 0 26 Europe/Berlin 2011-04-25
-2804051 Zirchow Zirchow 53.88333 14.13333 P PPLA4 DE 12 00 13059 13059109 672 15 Europe/Berlin 2011-04-25
-2804109 Ostseebad Zinnowitz Ostseebad Zinnowitz Ostseebad Zinnowitz,Zinnowitz 54.06667 13.9 P PPL DE 12 3736 253 Europe/Berlin 2012-01-18
-2804121 Zinna Zinna 51.56667 12.95 P PPLA4 DE 13 147 14730 14730350 1696 97 Europe/Berlin 2011-04-25
-2804135 Zingst Zingst Zingst 54.43333 12.68333 P PPLA4 DE 12 00 13057 13057096 3198 2 Europe/Berlin 2011-04-25
-2804155 Zimmerschied Zimmerschied Zimmerscheid,Zimmerschied 50.35 7.78333 P PPLA4 DE 08 00 07141 07141141 93 364 Europe/Berlin 2011-04-25
-2804157 Zimmern unter der Burg Zimmern unter der Burg 48.22053 8.71928 P PPLA4 DE 01 084 08417 08417078 0 596 Europe/Berlin 2011-04-25
-2804158 Zimmernsupra Zimmernsupra Zimmernsupra 50.98333 10.86667 P PPLA4 DE 15 00 16067 16067082 391 299 Europe/Berlin 2011-04-25
-2804159 Zimmern ob Rottweil Zimmern ob Rottweil 48.1666 8.59436 P PPLA4 DE 01 083 08325 08325069 6061 663 Europe/Berlin 2011-07-31
-2804161 Zimmern Zimmern 51 11.63333 P PPLA4 DE 15 00 16074 16074113 214 310 Europe/Berlin 2011-04-25
-2804207 Ziltendorf Ziltendorf 52.20608 14.62411 P PPLA4 DE 11 00 12067 12067552 1639 30 30 Europe/Berlin 2011-04-25
-2804208 Zilshausen Zilshausen 50.11667 7.38333 P PPLA4 DE 08 00 07135 07135094 343 346 Europe/Berlin 2011-04-25
-2804254 Ziethen Ziethen 53.88333 13.68333 P PPLA4 DE 12 00 13059 13059106 471 10 Europe/Berlin 2011-04-25
-2804255 Ziethen Ziethen 53.7 10.81667 P PPLA4 DE 10 00 01053 01053136 888 44 Europe/Berlin 2011-04-25
-2804268 Ziesendorf Ziesendorf 54 12.03333 P PPLA4 DE 12 00 13051 13051085 1350 34 Europe/Berlin 2011-04-25
-2804279 Ziesar Ziesar 52.26667 12.28333 P PPL DE 11 2875 52 Europe/Berlin 2006-01-17
-2804282 Zierzow Zierzow 53.28333 11.68333 P PPLA4 DE 12 00 13054 13054122 0 39 Europe/Berlin 2011-04-25
-2804283 Ziertheim Ziertheim 48.65 10.38333 P PPLA4 DE 02 097 09773 09773186 1011 450 Europe/Berlin 2011-04-25
-2804285 Zierow Zierow 53.93333 11.36667 P PPLA4 DE 12 00 13058 13058109 748 3 Europe/Berlin 2011-04-25
-2804297 Zierenberg Zierenberg 51.36948 9.30164 P PPL DE 05 066 6782 276 Europe/Berlin 2010-11-15
-2804313 Ziemetshausen Ziemetshausen 48.29244 10.53503 P PPL DE 02 3049 482 Europe/Berlin 2010-08-16
-2804318 Zielitz Zielitz 52.28958 11.67572 P PPLA4 DE 14 00 15083 15083580 2154 53 Europe/Berlin 2011-04-25
-2804391 Ziegenhain Ziegenhain 50.68333 7.53333 P PPLA4 DE 08 00 07132 07132119 135 276 Europe/Berlin 2011-04-25
-2804399 Ziegendorf Ziegendorf 53.28333 11.81667 P PPLA4 DE 12 00 13060 13060091 792 45 Europe/Berlin 2011-04-25
-2804549 Ziegelheim Ziegelheim Ziegelheim 50.93333 12.55 P PPLA4 DE 15 00 16077 16077055 959 221 Europe/Berlin 2011-04-25
-2804616 Zickhusen Zickhusen 53.75886 11.41394 P PPLA4 DE 12 00 13058 13058108 596 56 Europe/Berlin 2011-04-25
-2804630 Zichow Zichow 53.18927 14.03847 P PPLA4 DE 11 00 12073 12073645 631 63 Europe/Berlin 2011-04-25
-2804642 Zeven Zeven 53.3 9.28333 P PPL DE 06 12607 26 Europe/Berlin 2006-01-17
-2804646 Zeuthen Zeuthen Zeuthen 52.36667 13.61667 P PPLA4 DE 11 00 12061 12061572 10084 36 Europe/Berlin 2011-04-25
-2804654 Zeulenroda Zeulenroda 50.65278 11.98377 P PPL DE 15 13763 425 Europe/Berlin 2012-03-19
-2804674 Zettlitz Zettlitz 51.06667 12.83333 P PPLA4 DE 13 145 14522 14522600 904 234 Europe/Berlin 2011-04-25
-2804684 Zettingen Zettingen 50.23333 7.2 P PPLA4 DE 08 00 07135 07135093 258 377 Europe/Berlin 2011-04-25
-2804686 Zettemin Zettemin 53.65 12.83333 P PPLA4 DE 12 00 13052 13052092 374 48 Europe/Berlin 2011-04-25
-2804692 Zethlingen Zethlingen 52.7 11.3 P PPLA4 DE 14 00 15081 15081585 336 31 Europe/Berlin 2011-04-25
-2804697 Zetel Zetel Zetel 53.41667 7.98333 P PPLA4 DE 06 00 03455 03455027 11684 7 Europe/Berlin 2011-07-31
-2804715 Zerrenthin Zerrenthin 53.49366 14.08979 P PPLA4 DE 12 00 13062 13062064 507 22 Europe/Berlin 2011-07-31
-2804729 Zernien Zernien 53.06845 10.88325 P PPLA4 DE 06 00 03354 03354027 1695 85 Europe/Berlin 2011-04-25
-2804745 Zerf Zerf 49.6 6.68333 P PPLA4 DE 08 00 07235 07235152 1683 364 Europe/Berlin 2011-04-25
-2804748 Zerbst Zerbst Zerbst 51.96667 12.08333 P PPL DE 14 15680 68 Europe/Berlin 2012-01-18
-2804756 Zepkow Zepkow 53.30175 12.49128 P PPLA4 DE 12 00 13056 13056074 248 72 Europe/Berlin 2011-04-25
-2804761 Zepelin Zepelin 53.8348 12.04599 P PPLA4 DE 12 00 13053 13053099 502 9 Europe/Berlin 2011-04-25
-2804764 Zenting Zenting 48.8 13.26667 P PPLA4 DE 02 092 09272 09272152 1179 601 Europe/Berlin 2011-04-25
-2804784 Zendscheid Zendscheid 50.1 6.6 P PPLA4 DE 08 00 07232 07232331 152 326 Europe/Berlin 2011-04-25
-2804787 Zempin Zempin 54.06667 13.96667 P PPLA4 DE 12 00 13059 13059105 925 255 Europe/Berlin 2011-04-25
-2804788 Zemnick Zemnick 51.86667 12.85 P PPLA4 DE 14 00 15091 15091395 132 73 Europe/Berlin 2011-04-25
-2804791 Zemmer Zemmer 49.9 6.7 P PPLA4 DE 08 00 07235 07235151 2900 360 Europe/Berlin 2011-04-25
-2804792 Zemitz Zemitz 53.98333 13.75 P PPLA4 DE 12 00 13059 13059104 870 10 Europe/Berlin 2011-04-25
-2804803 Zell unter Aichelberg Zell unter Aichelberg 48.64882 9.57137 P PPLA4 DE 01 081 08117 08117060 2984 383 Europe/Berlin 2011-04-25
-2804808 Zellingen Zellingen Zellingen 49.89778 9.81722 P PPL DE 02 6365 171 Europe/Berlin 2012-01-18
-2804810 Zell im Wiesental Zell im Wiesental 47.70555 7.85248 P PPL DE 01 083 6206 431 Europe/Berlin 2010-11-15
-2804865 Zell am Main Zell am Main Zell,Zell am Main 49.81 9.86972 P PPL DE 02 4035 193 Europe/Berlin 2012-01-18
-2804867 Zella-Mehlis Zella-Mehlis Zella-Mehlis 50.65 10.65 P PPL DE 15 12361 678 Europe/Berlin 2012-01-18
-2804880 Zell Zell 50.13532 11.82266 P PPL DE 02 094 2275 621 Europe/Berlin 2010-11-15
-2804882 Zell Zell Zell 50.03333 7.18333 P PPL DE 08 4402 195 Europe/Berlin 2012-02-02
-2804895 Zell Zell 48.7 8.06667 P PPL DE 01 8043 126 Europe/Berlin 2006-01-17
-2804922 Zeitz Zeitz Zeitz 51.05 12.15 P PPL DE 14 29469 186 Europe/Berlin 2012-01-18
-2804925 Zeitlofs Zeitlofs Zeitlofs 50.26667 9.66667 P PPL DE 02 2228 364 Europe/Berlin 2012-01-18
-2804932 Zeitlarn Zeitlarn 49.33333 12.4 P PPL DE 02 5849 444 Europe/Berlin 2006-01-17
-2804933 Zeitlarn Zeitlarn 49.08333 12.1 P PPLA4 DE 02 093 09375 09375213 0 389 Europe/Berlin 2011-04-25
-2804939 Zeithain Zeithain 51.33356 13.33809 P PPLA4 DE 13 146 14627 14627360 0 98 Europe/Berlin 2011-07-31
-2804951 Zeiskam Zeiskam 49.23278 8.24722 P PPLA4 DE 08 00 07334 07334036 2283 120 Europe/Berlin 2011-04-25
-2805006 Zeilarn Zeilarn 48.3 12.83333 P PPLA4 DE 02 092 09277 09277154 2291 444 Europe/Berlin 2011-07-31
-2805008 Zeil Zeil 50.01667 10.6 P PPL DE 02 6016 279 Europe/Berlin 2006-01-17
-2805041 Zehnhausen bei Wallmerod Zehnhausen bei Wallmerod 50.46667 7.93333 P PPLA4 DE 08 00 07143 07143316 169 277 Europe/Berlin 2011-04-25
-2805042 Zehnhausen bei Rennerod Zehnhausen bei Rennerod 50.65 8.06667 P PPLA4 DE 08 00 07143 07143315 0 549 Europe/Berlin 2011-04-25
-2805050 Zehna Zehna 53.71667 12.15 P PPLA4 DE 12 00 13053 13053098 742 80 Europe/Berlin 2011-04-25
-2805075 Zehdenick Zehdenick 52.97852 13.33165 P PPL DE 11 14809 52 Europe/Berlin 2009-01-29
-2805095 Zedlitz Zedlitz Zedlitz 50.81667 12.03333 P PPLA4 DE 15 00 16076 16076086 741 255 Europe/Berlin 2011-04-25
-2805119 Zechin Zechin 52.60842 14.45251 P PPLA4 DE 11 00 12064 12064538 805 7 Europe/Berlin 2011-04-25
-2805193 Zarrentin Zarrentin Zarrentin 53.55 10.91667 P PPL DE 12 3243 45 Europe/Berlin 2012-02-02
-2805195 Zarrendorf Zarrendorf 54.23689 13.10094 P PPLA4 DE 12 00 13057 13057095 1127 20 Europe/Berlin 2011-07-31
-2805198 Zarpen Zarpen Zarpen 53.86667 10.51667 P PPLA4 DE 10 00 01062 01062087 1577 10 Europe/Berlin 2011-04-25
-2805208 Zarnewanz Zarnewanz 54.05783 12.49223 P PPLA4 DE 12 00 13051 13051084 425 43 Europe/Berlin 2011-07-31
-2805223 Zappendorf Zappendorf Zappendorf 51.5 11.8 P PPL DE 14 1592 80 Europe/Berlin 2012-01-18
-2805228 Zapfendorf Zapfendorf 50.01783 10.93243 P PPL DE 02 094 5017 249 Europe/Berlin 2010-11-15
-2805231 Zapel Zapel 53.55 11.66667 P PPLA4 DE 12 00 13060 13060090 631 63 Europe/Berlin 2011-04-25
-2805261 Zangberg Zangberg 48.28333 12.43333 P PPLA4 DE 02 091 09183 09183151 1021 448 Europe/Berlin 2011-04-25
-2805264 Zandt Zandt 49.15 12.73333 P PPLA4 DE 02 093 09372 09372177 1875 456 Europe/Berlin 2011-07-31
-2805283 Zaisenhausen Zaisenhausen 49.10667 8.81278 P PPLA4 DE 01 082 08215 08215094 1776 185 Europe/Berlin 2011-04-25
-2805303 Zahrensdorf Zahrensdorf 53.75 11.66667 P PPLA4 DE 12 00 13060 13060089 398 23 Europe/Berlin 2011-04-25
-2805313 Zahna Zahna Zahna 51.91667 12.78333 P PPL DE 14 3623 95 Europe/Berlin 2012-01-18
-2805329 Zadelsdorf Zadelsdorf 50.666 11.94081 P PPLA4 DE 15 00 16076 16076085 153 376 Europe/Berlin 2011-04-25
-2805354 Zachenberg Zachenberg 48.96667 13 P PPLA4 DE 02 092 09276 09276146 2173 608 Europe/Berlin 2011-04-25
-2805361 Zaberfeld Zaberfeld 49.05611 8.92694 P PPLA4 DE 01 081 08125 08125108 3843 237 Europe/Berlin 2011-04-25
-2805365 Zabeltitz Zabeltitz Zabeltitz 51.35 13.5 P PPL DE 13 3047 112 Europe/Berlin 2012-01-18
-2805385 Xanten Xanten Ksanten,Santen,Xanten,kusanten,Ксантен,クサンテン 51.66667 6.45 P PPL DE 07 21587 24 Europe/Berlin 2012-01-18
-2805396 Wyk auf Föhr Wyk auf Fohr Vyk,Wik,Wyck,Wyk,Wyk auf Foehr,Wyk auf Föhr 54.6914 8.56702 P PPL DE 10 00 4429 6 Europe/Berlin 2010-11-20
-2805400 Wyhl Wyhl Wyhl 48.16617 7.64917 P PPL DE 01 3645 173 Europe/Berlin 2012-02-28
-2805419 Wutöschingen Wutoschingen Wutoschingen,Wutöschingen 47.66667 8.36667 P PPLA4 DE 01 083 08337 08337123 6675 479 Europe/Berlin 2011-04-25
-2805448 Wustrow Wustrow 53.48333 13.15 P PPL DE 12 1312 48 Europe/Berlin 2006-01-17
-2805449 Wustrow Wustrow 53.22803 12.9697 P PPLA4 DE 12 00 13055 13055080 0 64 Europe/Berlin 2011-04-25
-2805451 Wustrow Wustrow 52.9237 11.12846 P PPL DE 06 3086 19 Europe/Berlin 2011-12-09
-2805463 Wüstheuterode Wustheuterode 51.31667 10.06667 P PPLA4 DE 15 00 16061 16061111 675 399 Europe/Berlin 2011-04-25
-2805475 Wusterwitz Wusterwitz Grosswusterwitz,Großwusterwitz,Wusterwitz 52.38333 12.4 P PPLA4 DE 11 00 12069 12069688 3184 34 Europe/Berlin 2011-04-25
-2805480 Wustermark Wustermark Wustermark 52.55 12.95 P PPLA4 DE 11 00 12063 12063357 7729 33 Europe/Berlin 2011-07-31
-2805481 Wusterhusen Wusterhusen 54.11667 13.61667 P PPLA4 DE 12 00 13059 13059103 1370 27 Europe/Berlin 2011-04-25
-2805483 Wusterhausen Wusterhausen 52.8912 12.46021 P PPL DE 11 6632 36 Europe/Berlin 2009-02-27
-2805497 Wüstenrot Wustenrot 49.08083 9.46056 P PPLA4 DE 01 081 08125 08125107 6770 495 Europe/Berlin 2011-07-31
-2805581 Wüschheim Wuschheim 50.01667 7.41667 P PPLA4 DE 08 00 07140 07140166 328 456 Europe/Berlin 2011-04-25
-2805586 Würzweiler Wurzweiler 49.65 7.86667 P PPLA4 DE 08 00 07333 07333084 202 339 Europe/Berlin 2011-04-25
-2805597 Wurzen Wurzen Wurzen 51.36667 12.73333 P PPL DE 13 15233 128 Europe/Berlin 2012-01-18
-2805615 Würzburg Wuerzburg Birtsmpournk,Herbipolis,Vircburg,Vjurcburg,Wuerzburg,Wurtzburgo,Wurzburg,Wurzburgo,Würzburg,vu~yurutsuburuku,wei er ci bao,Βίρτσμπουργκ,Вирцбург,Вюрцбург,ヴュルツブルク,维尔茨堡 49.78778 9.93611 P PPLA2 DE 02 096 133731 187 Europe/Berlin 2012-01-29
-2805623 Wurzbach Wurzbach Wurzbach 50.46667 11.53333 P PPL DE 15 3864 570 Europe/Berlin 2012-01-18
-2805644 Würselen Wurselen Wurselen,Würselen 50.81667 6.13333 P PPL DE 07 37074 194 Europe/Berlin 2012-01-18
-2805652 Würrich Wurrich 49.98333 7.3 P PPLA4 DE 08 00 07140 07140165 160 424 Europe/Berlin 2011-04-25
-2805657 Wurmsham Wurmsham 48.35 12.33333 P PPLA4 DE 02 092 09274 09274193 1351 507 Europe/Berlin 2011-04-25
-2805667 Wurmlingen Wurmlingen 48 8.78333 P PPLA4 DE 01 083 08327 08327054 3812 677 Europe/Berlin 2011-04-25
-2805677 Wurmberg Wurmberg 48.86667 8.81667 P PPLA4 DE 01 082 08236 08236068 2898 448 Europe/Berlin 2011-04-25
-2805694 Wurmannsquick Wurmannsquick Wurmannsquick 48.35 12.78333 P PPL DE 02 3710 470 Europe/Berlin 2012-01-18
-2805753 Wuppertal Wuppertal Boupertal,Vupertale,Vupertāle,Vuppertal',Wuppertal,fwbrtal,vuppataru,wu po ta er,wwprtl,Βούπερταλ,Вупперталь,וופרטל,فوبرتال,ヴッパータール,伍泊塔尔 51.26667 7.18333 P PPL DE 07 360797 154 Europe/Berlin 2012-01-18
-2805761 Wunstorf Wunstorf Wunstorf 52.43333 9.41667 P PPL DE 06 42080 46 Europe/Berlin 2012-01-18
-2805762 Wunsiedel Wunsiedel 50.03333 12.01667 P PPL DE 02 10295 593 Europe/Berlin 2006-01-17
-2805773 Wünschendorf Wunschendorf 50.8 12.1 P PPL DE 15 3257 223 Europe/Berlin 2006-01-17
-2805785 Wünnenberg Wunnenberg 51.51667 8.7 P PPL DE 07 12439 301 Europe/Berlin 2006-01-27
-2805793 Wundersleben Wundersleben 51.15 11.03333 P PPLA4 DE 15 00 16068 16068062 772 141 Europe/Berlin 2011-04-25
-2805825 Wulsbüttel Wulsbuttel 53.31667 8.66667 P PPLA4 DE 06 00 03352 03352058 1967 17 Europe/Berlin 2011-07-31
-2805861 Wülknitz Wulknitz 51.36667 13.4 P PPLA4 DE 13 146 14627 14627340 1877 97 Europe/Berlin 2011-04-25
-2805865 Wulkenzin Wulkenzin 53.53333 13.16667 P PPLA4 DE 12 00 13055 13055079 1579 57 Europe/Berlin 2011-04-25
-2805870 Wulften Wulften 51.65999 10.17437 P PPLA4 DE 06 00 03156 03156015 2127 158 Europe/Berlin 2011-03-16
-2805877 Wulfsmoor Wulfsmoor Wulfsmoor 53.91233 9.72402 P PPLA4 DE 10 00 01061 01061117 389 3 Europe/Berlin 2011-08-24
-2805891 Wulfsen Wulfsen Wulfsen 53.3 10.15 P PPLA4 DE 06 00 03353 03353042 1582 23 Europe/Berlin 2011-04-25
-2805910 Wülfrath Wulfrath Wulfrath,Wülfrath 51.28333 7.05 P PPL DE 07 22355 224 Europe/Berlin 2012-01-18
-2805929 Wülfershausen Wulfershausen 50.05416 9.99902 P PPL DE 02 096 1480 296 Europe/Berlin 2010-11-15
-2805945 Wulfen Wulfen Wulfen 51.81667 11.93333 P PPL DE 14 1215 72 Europe/Berlin 2012-02-02
-2805988 Wrohm Wrohm Wrohm 54.21667 9.4 P PPLA4 DE 10 00 01051 01051136 740 16 Europe/Berlin 2011-04-25
-2805992 Wrixum Wrixum 54.69993 8.54856 P PPLA4 DE 10 00 01054 01054163 670 3 Europe/Berlin 2011-04-25
-2805994 Wrist Wrist Wrist 53.93333 9.76667 P PPLA4 DE 10 00 01061 01061116 2507 4 Europe/Berlin 2011-04-25
-2805999 Wriezen Wriezen 52.72091 14.13425 P PPL DE 11 8213 12 Europe/Berlin 2009-01-28
-2806002 Wriedel Wriedel 53.0313 10.29848 P PPLA4 DE 06 00 03360 03360029 2596 76 Europe/Berlin 2011-07-31
-2806007 Wrestedt Wrestedt 52.90435 10.57494 P PPLA4 DE 06 00 03360 03360028 2996 48 Europe/Berlin 2011-04-25
-2806011 Wremen Wremen 53.65 8.51667 P PPLA4 DE 06 00 03352 03352057 2023 3 Europe/Berlin 2011-04-25
-2806015 Wredenhagen Wredenhagen 53.29026 12.5172 P PPLA4 DE 12 00 13056 13056073 536 70 Europe/Berlin 2011-04-25
-2806023 Wrangelsburg Wrangelsburg 54.01667 13.6 P PPLA4 DE 12 00 13059 13059102 230 31 Europe/Berlin 2011-04-25
-2806072 Wörthsee Worthsee 48.06305 11.20176 P PPLA4 DE 02 091 09188 09188145 4589 574 Europe/Berlin 2011-07-31
-2806079 Wörth an der Isar Worth an der Isar Wort,Worth an der Isar,Wörth an der Isar 48.61667 12.35 P PPL DE 02 2400 372 Europe/Berlin 2012-01-18
-2806080 Wörth an der Donau Worth an der Donau Werth,Worth,Worth an der Donau,Wörth,Wörth an der Donau 49.01667 12.4 P PPL DE 02 4524 449 Europe/Berlin 2012-01-18
-2806081 Wörth am Rhein Worth am Rhein Worth,Worth am Rhein,Wörth,Wörth am Rhein 49.05806 8.24861 P PPL DE 08 17272 121 Europe/Berlin 2012-01-18
-2806082 Wörth am Main Worth am Main Worth,Worth am Main,Wörth,Wörth am Main 49.79472 9.15389 P PPL DE 02 4983 131 Europe/Berlin 2012-01-18
-2806083 Worth Worth 53.46667 10.41667 P PPLA4 DE 10 00 01053 01053135 164 37 Europe/Berlin 2011-04-25
-2806097 Wört Wort 49.03047 10.27239 P PPLA4 DE 01 081 08136 08136084 1444 453 Europe/Berlin 2011-04-25
-2806105 Wörrstadt Worrstadt 49.84861 8.12417 P PPLA4 DE 08 00 07331 07331073 7668 208 Europe/Berlin 2011-07-31
-2806108 Worpswede Worpswede 53.21667 8.93333 P PPLA4 DE 06 00 03356 03356011 9417 22 Europe/Berlin 2011-04-25
-2806127 Wörnersberg Wornersberg 48.56667 8.56667 P PPLA4 DE 01 082 08237 08237072 245 604 Europe/Berlin 2011-04-25
-2806142 Worms Worms Borbetomagus,Vormatia,Vorms,Wormacja,Wormatia,Worms,boleumseu,vu~orumusu,wwrms,Вормс,וורמס,ヴォルムス,보름스 49.63556 8.35972 P PPL DE 08 81099 102 Europe/Berlin 2012-01-18
-2806162 Wörlitz Worlitz Worlitz,Wörlitz 51.83333 12.41667 P PPL DE 14 1681 62 Europe/Berlin 2012-01-18
-2806173 Woringen Woringen 47.91667 10.2 P PPLA4 DE 02 097 09778 09778219 1812 638 Europe/Berlin 2011-04-25
-2806192 Worbis Worbis 51.41667 10.36667 P PPL DE 15 5371 318 Europe/Berlin 2006-01-17
-2806205 Woppenroth Woppenroth 49.86667 7.41667 P PPLA4 DE 08 00 07140 07140164 300 388 Europe/Berlin 2011-04-25
-2806231 Wonsheim Wonsheim 49.78333 7.96667 P PPLA4 DE 08 00 07331 07331075 903 163 Europe/Berlin 2011-04-25
-2806232 Wonsees Wonsees Wonsees 49.98333 11.3 P PPL DE 02 1219 455 Europe/Berlin 2012-01-18
-2806239 Wonfurt Wonfurt 50.01667 10.46667 P PPLA4 DE 02 096 09674 09674219 1955 219 Europe/Berlin 2011-04-25
-2806244 Womrath Womrath 49.91667 7.45 P PPLA4 DE 08 00 07140 07140163 222 378 Europe/Berlin 2011-04-25
-2806276 Woltershausen Woltershausen 51.98333 9.95 P PPLA4 DE 06 00 03254 03254035 963 197 Europe/Berlin 2011-07-31
-2806283 Woltersdorf Woltersdorf 53.58333 10.63333 P PPLA4 DE 10 00 01053 01053134 272 36 Europe/Berlin 2011-04-25
-2806285 Woltersdorf Woltersdorf 52.95 11.21667 P PPLA4 DE 06 00 03354 03354025 1033 19 Europe/Berlin 2011-04-25
-2806287 Woltersdorf Woltersdorf Woltersdorf 52.45 13.76667 P PPLA4 DE 11 00 12067 12067544 7581 39 Europe/Berlin 2011-04-25
-2806307 Wolsfeld Wolsfeld 49.90702 6.46597 P PPLA4 DE 08 00 07232 07232137 801 222 Europe/Berlin 2011-04-25
-2806310 Wolsdorf Wolsdorf 52.19098 10.93878 P PPLA4 DE 06 00 03154 03154026 1108 136 Europe/Berlin 2011-05-03
-2806320 Wölpinghausen Wolpinghausen 52.41667 9.23333 P PPLA4 DE 06 00 03257 03257038 1754 86 Europe/Berlin 2011-07-31
-2806322 Wolpertswende Wolpertswende Wolpertswende 47.9 9.61667 P PPLA4 DE 01 084 08436 08436087 4128 550 Europe/Berlin 2011-04-25
-2806325 Wolpertshausen Wolpertshausen Wolpertshausen 49.1675 9.84472 P PPLA4 DE 01 081 08127 08127099 2037 443 Europe/Berlin 2011-04-25
-2806339 Wolnzach Wolnzach 48.6038 11.62568 P PPL DE 02 091 10973 413 Europe/Berlin 2010-11-15
-2806342 Wolmirstedt Wolmirstedt Wolmirstedt 52.25 11.63333 P PPL DE 14 10860 49 Europe/Berlin 2012-01-18
-2806343 Wolmirsleben Wolmirsleben Wolmirsleben 51.95 11.48333 P PPLA4 DE 14 00 15089 15089365 1544 79 Europe/Berlin 2011-04-25
-2806345 Wölmersen Wolmersen 50.71667 7.6 P PPLA4 DE 08 00 07132 07132118 431 298 Europe/Berlin 2011-04-25
-2806346 Wolmersdorf Wolmersdorf Wolmersdorf 54.08333 9.11667 P PPLA4 DE 10 00 01051 01051135 355 16 Europe/Berlin 2011-04-25
-2806353 Wöllstein Wollstein 49.81667 7.96667 P PPLA4 DE 08 00 07331 07331072 4516 131 Europe/Berlin 2011-04-25
-2806380 Wollmerath Wollmerath 50.15 6.98333 P PPLA4 DE 08 00 07135 07135091 230 407 Europe/Berlin 2011-04-25
-2806399 Wollin Wollin 52.28333 12.46667 P PPLA4 DE 11 00 12069 12069680 972 39 Europe/Berlin 2011-04-25
-2806414 Wollershausen Wollershausen 51.6 10.25 P PPLA4 DE 06 00 03152 03152029 489 154 Europe/Berlin 2011-04-25
-2806439 Wollbrandshausen Wollbrandshausen 51.58333 10.16667 P PPLA4 DE 06 00 03152 03152028 661 198 Europe/Berlin 2011-04-25
-2806442 Wollbach Wollbach 50.36667 10.23333 P PPLA4 DE 02 096 09673 09673183 1242 262 Europe/Berlin 2011-04-25
-2806453 Wolkramshausen Wolkramshausen 51.41667 10.75 P PPLA4 DE 15 00 16062 16062059 1180 201 Europe/Berlin 2011-04-25
-2806474 Wolkenstein Wolkenstein Wolkenstein 50.65 13.08333 P PPL DE 13 4359 544 Europe/Berlin 2012-01-18
-2806489 Wolken Wolken 50.33333 7.46667 P PPLA4 DE 08 00 07137 07137231 1093 242 Europe/Berlin 2011-04-25
-2806501 Wolgast Wolgast Vol'gast,Wolgast,Wologoszcz,Wołogoszcz,Вольгаст 54.05 13.76667 P PPL DE 12 12664 19 Europe/Berlin 2012-01-18
-2806523 Wolfstein Wolfstein 49.58333 7.6 P PPL DE 08 2060 268 Europe/Berlin 2006-01-17
-2806596 Wolfsheim Wolfsheim 49.87222 8.03944 P PPLA4 DE 08 00 07339 07339202 701 204 Europe/Berlin 2011-04-25
-2806633 Wolfsegg Wolfsegg 49.10731 11.9781 P PPLA4 DE 02 093 09375 09375211 1506 407 Europe/Berlin 2011-04-25
-2806646 Wolfschlugen Wolfschlugen Wolfschlugen 48.65 9.28333 P PPLA4 DE 01 081 08116 08116073 6108 373 Europe/Berlin 2011-07-31
-2806650 Wolfsburg-Unkeroda Wolfsburg-Unkeroda Wolfsburg-Unkeroda 50.93333 10.26667 P PPLA4 DE 15 00 16063 16063089 778 311 Europe/Berlin 2011-04-25
-2806654 Wolfsburg Wolfsburg Vol'fsburg,Wolfsburg,Вольфсбург 52.43333 10.8 P PPL DE 06 123064 59 Europe/Berlin 2012-01-18
-2806768 Wolfratshausen Wolfratshausen 47.91289 11.42166 P PPL DE 02 091 17191 578 Europe/Berlin 2010-11-15
-2806770 Wolframs-Eschenbach Wolframs-Eschenbach Wolframs-Eschenbach 49.23333 10.73333 P PPL DE 02 2911 439 Europe/Berlin 2012-01-18
-2806788 Wölfis Wolfis Wolfis,Wölfis 50.81667 10.78333 P PPLA4 DE 15 00 16067 16067081 1662 430 Europe/Berlin 2011-04-25
-2806799 Wolfhagen Wolfhagen Wolfhagen 51.32611 9.17015 P PPL DE 05 13266 283 Europe/Berlin 2011-07-11
-2806831 Wolfertschwenden Wolfertschwenden 47.88333 10.26667 P PPLA4 DE 02 097 09778 09778218 1852 693 Europe/Berlin 2011-04-25
-2806847 Wolferstadt Wolferstadt 48.91667 10.78333 P PPLA4 DE 02 097 09779 09779231 1113 515 Europe/Berlin 2011-04-25
-2806852 Wölfersheim Wolfersheim Wolfersheim,Wölfersheim 50.4 8.81667 P PPLA4 DE 05 064 06440 06440024 9610 153 Europe/Berlin 2011-04-25
-2806856 Wölfershausen Wolfershausen 50.48333 10.43333 P PPLA4 DE 15 00 16066 16066088 449 349 Europe/Berlin 2011-04-25
-2806869 Wolfersdorf Wolfersdorf 48.55 11.76667 P PPLA4 DE 02 091 09178 09178156 0 472 Europe/Berlin 2011-07-31
-2806870 Wolfersdorf Wolfersdorf Wolfersdorf,Wolferstorf 48.48333 11.71667 P PPLA4 DE 02 091 09178 09178156 2327 483 Europe/Berlin 2011-04-25
-2806872 Wolferschwenda Wolferschwenda Wolferschwenda 51.23333 10.8 P PPLA4 DE 15 00 16065 16065082 171 287 Europe/Berlin 2011-04-25
-2806884 Wolferode Wolferode 51.5065 11.51299 P PPL DE 14 1292 207 Europe/Berlin 2010-08-27
-2806890 Wölferlingen Wolferlingen 50.56667 7.85 P PPLA4 DE 08 00 07143 07143085 569 393 Europe/Berlin 2011-04-25
-2806898 Wölferbütt Wolferbutt 50.76667 10.05 P PPLA4 DE 15 00 16063 16063087 436 396 Europe/Berlin 2011-04-25
-2806914 Wolfenbüttel Wolfenbuttel Wolfenbuettel,Wolfenbuttel,Wolfenbüttel,Wulffenbuettel,Wulffenbüttel 52.16667 10.55 P PPL DE 06 54740 84 Europe/Berlin 2012-01-18
-2806919 Wolfen Wolfen Vol'fen,Wolfen,Вольфен 51.66667 12.28333 P PPL DE 14 25251 73 Europe/Berlin 2012-01-18
-2806923 Wolfegg Wolfegg 47.8203 9.79491 P PPLA4 DE 01 084 08436 08436085 3440 672 Europe/Berlin 2011-04-25
-2806946 Wolfach Wolfach Wolfach 48.3 8.21667 P PPL DE 01 5998 343 Europe/Berlin 2012-01-18
-2806959 Woldert Woldert 50.6 7.65 P PPLA4 DE 08 00 07138 07138078 695 271 Europe/Berlin 2011-04-25
-2806963 Woldegk Woldegk Woldegk 53.46667 13.58333 P PPL DE 12 4144 127 Europe/Berlin 2012-02-02
-2806968 Wolde Wolde 53.68333 13.08333 P PPLA4 DE 12 00 13052 13052088 735 62 Europe/Berlin 2011-04-25
-2807001 Wöhrden Wohrden 54.16667 9 P PPLA4 DE 10 00 01051 01051113 1335 2 Europe/Berlin 2011-04-25
-2807010 Wohnste Wohnste 53.35 9.53333 P PPLA4 DE 06 00 03357 03357056 819 30 Europe/Berlin 2011-04-25
-2807025 Wohltorf Wohltorf Wohltorf 53.51667 10.28333 P PPLA4 DE 10 00 01053 01053133 2249 29 Europe/Berlin 2011-04-25
-2807033 Wohlsborn Wohlsborn 51.03333 11.36667 P PPLA4 DE 15 00 16071 16071097 512 282 Europe/Berlin 2011-04-25
-2807068 Wohldorf-Ohlstedt Wohldorf-Ohlstedt Hamburg-Ohlstedt,Hamburg-Wohldorf,Wohldorf-Ohlstedt 53.69282 10.13117 P PPLX DE DE 04 4450 28 Europe/Berlin 2011-08-21
-2807075 Wohlde Wohlde 54.40614 9.2989 P PPLA4 DE 10 00 01059 01059096 575 11 Europe/Berlin 2012-01-05
-2807098 Woggersin Woggersin 53.6 13.23333 P PPLA4 DE 12 00 13055 13055076 572 26 Europe/Berlin 2011-04-25
-2807136 Wobbenbüll Wobbenbull Wobbenbull,Wobbenbüll 54.53333 9 P PPLA4 DE 10 00 01054 01054162 466 254 Europe/Berlin 2011-04-25
-2807138 Wöbbelin Wobbelin Wobbelin,Wöbbelin 53.4 11.5 P PPLA4 DE 12 00 13054 13054119 987 33 Europe/Berlin 2011-04-25
-2807143 Witzwort Witzwort Witzwort 54.4 8.98333 P PPLA4 DE 10 00 01054 01054161 966 2 Europe/Berlin 2011-04-25
-2807153 Witzmannsberg Witzmannsberg 48.71667 13.41667 P PPLA4 DE 02 092 09275 09275160 0 485 Europe/Berlin 2011-04-25
-2807154 Witzmannsberg Witzmannsberg 48.61667 13.5 P PPL DE 02 1742 425 Europe/Berlin 2006-01-17
-2807163 Witzleben Witzleben 50.81667 11.11667 P PPLA4 DE 15 00 16070 16070054 697 384 Europe/Berlin 2011-04-25
-2807171 Witzin Witzin 53.71667 11.91667 P PPLA4 DE 12 00 13060 13060088 536 12 Europe/Berlin 2011-04-25
-2807177 Witzhave Witzhave Witzhave 53.56667 10.33333 P PPLA4 DE 10 00 01062 01062086 1446 26 Europe/Berlin 2011-04-25
-2807184 Witzenhausen Witzenhausen Witzenhausen 51.33333 9.86667 P PPL DE 05 16055 175 Europe/Berlin 2012-01-18
-2807194 Witzeeze Witzeeze Witzeeze 53.45 10.61667 P PPLA4 DE 10 00 01053 01053132 936 11 Europe/Berlin 2011-04-25
-2807201 Wittstock Wittstock 53.16118 12.48287 P PPL DE 11 17361 66 Europe/Berlin 2009-03-31
-2807213 Wittorf Wittorf 53.33333 10.38333 P PPLA4 DE 06 00 03355 03355042 1384 4 Europe/Berlin 2011-04-25
-2807215 Wittnau Wittnau Wittnau 47.95 7.81667 P PPLA4 DE 01 083 08315 08315125 1423 377 Europe/Berlin 2011-04-25
-2807218 Wittmund Wittmund 53.56667 7.78333 P PPL DE 06 21355 255 Europe/Berlin 2006-01-17
-2807224 Wittmoldt Wittmoldt Wittmoldt 54.16667 10.36667 P PPLA4 DE 10 00 01057 01057089 179 20 Europe/Berlin 2011-04-25
-2807229 Wittmar Wittmar 52.12969 10.64 P PPLA4 DE 06 00 03158 03158036 1391 122 Europe/Berlin 2011-04-25
-2807238 Wittlingen Wittlingen Wittlingen 47.65 7.65 P PPLA4 DE 01 083 08336 08336100 976 302 Europe/Berlin 2011-04-25
-2807240 Wittlich Wittlich Wittlich 49.98333 6.88333 P PPL DE 08 17887 166 Europe/Berlin 2012-01-18
-2807254 Wittislingen Wittislingen Wittislingen 48.61667 10.41667 P PPL DE 02 2360 451 Europe/Berlin 2012-01-18
-2807257 Wittingen Wittingen 52.72694 10.73613 P PPL DE 06 00 12427 84 Europe/Berlin 2010-11-22
-2807265 Wittichenau Wittichenau Wittichenau 51.38496 14.24403 P PPL DE 13 6261 126 Europe/Berlin 2012-01-20
-2807267 Wittibreut Wittibreut 48.32921 12.98704 P PPLA4 DE 02 092 09277 09277152 0 482 Europe/Berlin 2011-07-31
-2807276 Wittgert Wittgert 50.5 7.7 P PPLA4 DE 08 00 07143 07143084 624 238 Europe/Berlin 2011-04-25
-2807279 Wittgensdorf Wittgensdorf 50.88316 12.87031 P PPL DE 13 4440 312 Europe/Berlin 2009-10-29
-2807285 Wittgendorf Wittgendorf 50.6 11.23333 P PPLA4 DE 15 00 16073 16073101 216 559 Europe/Berlin 2011-04-25
-2807300 Witterda Witterda 51.03333 10.88333 P PPLA4 DE 15 00 16068 16068061 1153 278 Europe/Berlin 2011-04-25
-2807325 Wittenhagen Wittenhagen 54.18379 13.07133 P PPLA4 DE 12 00 13057 13057093 1358 23 Europe/Berlin 2011-07-31
-2807327 Wittenförden Wittenforden 53.62917 11.32982 P PPLA4 DE 12 00 13054 13054118 2931 67 Europe/Berlin 2011-04-25
-2807335 Wittenburg Wittenburg Wittenburg 53.51667 11.06667 P PPL DE 12 5041 37 Europe/Berlin 2012-02-02
-2807337 Wittenborn Wittenborn 53.93333 10.21667 P PPLA4 DE 10 00 01060 01060101 805 58 Europe/Berlin 2011-04-25
-2807340 Wittenbergen Wittenbergen 53.93345 9.68608 P PPLA4 DE 10 00 01061 01061115 173 2 Europe/Berlin 2011-08-24
-2807344 Wittenberge Wittenberge Wittenberge 53 11.75 P PPL DE 11 20171 28 Europe/Berlin 2012-01-18
-2807355 Wittenbeck Wittenbeck 54.11667 11.78333 P PPLA4 DE 12 00 13051 13051083 757 48 Europe/Berlin 2011-04-25
-2807363 Witten Witten Vitten,Witten,vu~itten,Виттен,ヴィッテン 51.43333 7.33333 P PPL DE 07 101247 94 Europe/Berlin 2012-01-18
-2807365 Wittelshofen Wittelshofen Wittelshofen 49.06667 10.48333 P PPLA4 DE 02 095 09571 09571227 1274 431 Europe/Berlin 2011-04-25
-2807381 Wittdün Wittdun 54.62695 8.38935 P PPLA4 DE 10 00 01054 01054160 650 6 Europe/Berlin 2011-04-25
-2807388 Wittbek Wittbek Wittbek 54.46667 9.2 P PPLA4 DE 10 00 01054 01054159 764 21 Europe/Berlin 2011-04-25
-2807395 Witsum Witsum 54.69953 8.43887 P PPLA4 DE 10 00 01054 01054158 41 6 Europe/Berlin 2011-04-25
-2807411 Wistedt Wistedt 53.26667 9.68333 P PPLA4 DE 06 00 03353 03353041 1732 47 Europe/Berlin 2011-04-25
-2807424 Wißmannsdorf Wissmannsdorf 49.98333 6.45 P PPLA4 DE 08 00 07232 07232501 812 263 Europe/Berlin 2011-04-25
-2807440 Wissen Wissen 50.78333 7.75 P PPL DE 08 8547 228 Europe/Berlin 2006-01-17
-2807465 Wismar Wismar Vismar,Wismar,Wyszomierz,wei si ma,Висмар,维斯马 53.9 11.46667 P PPL DE 12 45255 255 Europe/Berlin 2012-01-18
-2807484 Wischhafen Wischhafen 53.78333 9.31667 P PPLA4 DE 06 00 03359 03359040 3110 255 Europe/Berlin 2011-04-25
-2807496 Wisch Wisch 54.41667 10.35 P PPLA4 DE 10 00 01057 01057088 731 254 Europe/Berlin 2011-04-25
-2807497 Wisch Wisch 54.41667 9.15 P PPLA4 DE 10 00 01054 01054157 0 1 Europe/Berlin 2011-04-25
-2807526 Wirschweiler Wirschweiler 49.76667 7.16667 P PPLA4 DE 08 00 07134 07134095 384 594 Europe/Berlin 2011-07-31
-2807527 Wirscheid Wirscheid 50.46667 7.66667 P PPLA4 DE 08 00 07143 07143082 307 315 Europe/Berlin 2011-04-25
-2807528 Wirsberg Wirsberg Wirsberg 50.11667 11.6 P PPL DE 02 2003 477 Europe/Berlin 2012-01-18
-2807549 Wirges Wirges 50.46667 7.8 P PPL DE 08 5201 274 Europe/Berlin 2006-01-17
-2807551 Wirfus Wirfus 50.2 7.2 P PPLA4 DE 08 00 07135 07135090 207 338 Europe/Berlin 2011-04-25
-2807555 Wirft Wirft 50.36667 6.86667 P PPLA4 DE 08 00 07131 07131086 155 440 Europe/Berlin 2011-04-25
-2807558 Wirdum Wirdum 53.48333 7.2 P PPLA4 DE 06 00 03452 03452026 1096 255 Europe/Berlin 2011-04-25
-2807579 Wippra Wippra Wippra 51.56667 11.28333 P PPL DE 14 1621 327 Europe/Berlin 2012-01-18
-2807584 Wippingen Wippingen 52.91667 7.41667 P PPLA4 DE 06 00 03454 03454060 881 15 Europe/Berlin 2011-04-25
-2807594 Wipperfürth Wipperfurth Viperfiurtas,Vipperfjurt,Wipperfuerth,Wipperfurta,Wipperfurth,Wipperfürth,Випперфюрт 51.11667 7.4 P PPL DE 07 23723 275 Europe/Berlin 2012-01-18
-2807596 Wipperdorf Wipperdorf 51.45 10.66667 P PPLA4 DE 15 00 16062 16062058 1606 219 Europe/Berlin 2011-04-25
-2807625 Wipfeld Wipfeld 49.91667 10.16667 P PPLA4 DE 02 096 09678 09678196 1126 245 Europe/Berlin 2011-04-25
-2807640 Winzer Winzer Winzer 48.73333 13.06667 P PPL DE 02 3964 307 Europe/Berlin 2012-02-02
-2807647 Winzenburg Winzenburg 51.93333 9.93333 P PPLA4 DE 06 00 03254 03254034 808 158 Europe/Berlin 2011-04-25
-2807660 Wintrich Wintrich 49.88333 6.95 P PPLA4 DE 08 00 07231 07231133 941 116 Europe/Berlin 2011-04-25
-2807663 Winterwerb Winterwerb 50.23639 7.73901 P PPLA4 DE 08 00 07141 07141140 183 335 Europe/Berlin 2011-12-29
-2807685 Winterspelt Winterspelt 50.21667 6.21667 P PPLA4 DE 08 00 07232 07232329 826 483 Europe/Berlin 2011-04-25
-2807693 Wintersheim Wintersheim 49.77861 8.28028 P PPLA4 DE 08 00 07339 07339066 312 199 Europe/Berlin 2011-04-25
-2807696 Wintersdorf Wintersdorf Wintersdorf 51.05 12.36667 P PPL DE 15 2978 184 Europe/Berlin 2012-02-02
-2807704 Winterscheid Winterscheid 50.23333 6.25 P PPLA4 DE 08 00 07232 07232328 165 475 Europe/Berlin 2011-04-25
-2807718 Winterrieden Winterrieden 48.11667 10.21667 P PPLA4 DE 02 097 09778 09778217 885 596 Europe/Berlin 2011-04-25
-2807736 Winterlingen Winterlingen 48.18333 9.11667 P PPLA4 DE 01 084 08417 08417075 6722 781 Europe/Berlin 2011-04-25
-2807748 Winterhude Winterhude 53.6 10 P PPLX DE 04 51297 22 Europe/Berlin 2011-08-21
-2807757 Winterhausen Winterhausen 49.70683 10.01661 P PPL DE 02 1558 183 Europe/Berlin 2010-06-07
-2807778 Winterburg Winterburg 49.86667 7.65 P PPLA4 DE 08 00 07133 07133116 226 310 Europe/Berlin 2011-04-25
-2807783 Winterborn Winterborn 49.75 7.86667 P PPLA4 DE 08 00 07333 07333083 193 334 Europe/Berlin 2011-04-25
-2807788 Winterberg Winterberg Winterberg 51.2 8.53333 P PPL DE 07 14601 657 Europe/Berlin 2012-01-18
-2807822 Winterbach Winterbach 49.86667 7.63333 P PPLA4 DE 08 00 07133 07133115 522 368 Europe/Berlin 2011-04-25
-2807825 Winterbach Winterbach 48.79918 9.47914 P PPLA4 DE 01 081 08119 08119086 7844 243 Europe/Berlin 2011-04-25
-2807827 Winterbach Winterbach 48.46667 10.48333 P PPLA4 DE 02 097 09774 09774196 808 469 Europe/Berlin 2011-04-25
-2807844 Winsen Winsen 53.83333 10.01667 P PPLA4 DE 10 00 01060 01060100 440 47 Europe/Berlin 2011-04-25
-2807845 Winsen Winsen 53.36667 10.21667 P PPL DE 06 32662 4 Europe/Berlin 2006-01-17
-2807846 Winsen Winsen 52.66667 9.91667 P PPL DE 06 12838 32 Europe/Berlin 2006-01-17
-2807848 Winseldorf Winseldorf Winseldorf 53.94431 9.60632 P PPLA4 DE 10 00 01061 01061114 309 7 Europe/Berlin 2011-04-25
-2807851 Winringen Winringen 50.15 6.41667 P PPLA4 DE 08 00 07232 07232327 68 472 Europe/Berlin 2011-04-25
-2807852 Winnweiler Winnweiler 49.56667 7.85 P PPLA4 DE 08 00 07333 07333503 4850 268 Europe/Berlin 2011-04-25
-2807859 Winningen Winningen 50.31667 7.51667 P PPLA4 DE 08 00 07137 07137230 2457 100 Europe/Berlin 2011-04-25
-2807862 Winnigstedt Winnigstedt 52.06629 10.76879 P PPLA4 DE 06 00 03158 03158035 912 93 Europe/Berlin 2011-05-03
-2807864 Winnert Winnert Winnert 54.43333 9.2 P PPLA4 DE 10 00 01054 01054156 788 19 Europe/Berlin 2011-04-25
-2807868 Winnerath Winnerath 50.42886 6.87658 P PPLA4 DE 08 00 07131 07131085 201 445 Europe/Berlin 2011-04-25
-2807872 Winnenden Winnenden Winnenden 48.87563 9.39819 P PPL DE 01 27783 293 Europe/Berlin 2008-12-20
-2807876 Winnen Winnen 50.58333 8.01667 P PPLA4 DE 08 00 07143 07143314 465 469 Europe/Berlin 2011-04-25
-2807877 Winnemark Winnemark Winnemark 54.61667 9.91667 P PPLA4 DE 10 00 01058 01058174 507 3 Europe/Berlin 2011-04-25
-2807916 Winklarn Winklarn Winklarn 49.43333 12.48333 P PPL DE 02 1473 514 Europe/Berlin 2012-02-02
-2807956 Winkelsett Winkelsett 52.86667 8.53333 P PPLA4 DE 06 00 03458 03458015 664 39 Europe/Berlin 2011-04-25
-2807991 Winkelhaid Winkelhaid 49.38333 11.3 P PPLA4 DE 02 095 09574 09574164 3971 433 Europe/Berlin 2011-04-25
-2808007 Winkelbach Winkelbach 50.65 7.73333 P PPLA4 DE 08 00 07143 07143313 230 277 Europe/Berlin 2011-04-25
-2808043 Winhöring Winhoring 48.26667 12.65 P PPLA4 DE 02 091 09171 09171137 4917 385 Europe/Berlin 2011-04-25
-2808048 Wingst Wingst 53.73572 9.08054 P PPLL DE 06 00 03352 03352056 3610 32 Europe/Berlin 2011-04-25
-2808067 Wingerode Wingerode Wingerode 51.4 10.23333 P PPLA4 DE 15 00 16061 16061107 1243 331 Europe/Berlin 2011-07-31
-2808101 Windsbach Windsbach Windsbach 49.24786 10.82651 P PPL DE 02 6235 389 Europe/Berlin 2011-07-21
-2808143 Windischleuba Windischleuba Windischleuba 51.03333 12.48333 P PPLA4 DE 15 00 16077 16077052 2254 177 Europe/Berlin 2011-07-31
-2808148 Windischeschenbach Windischeschenbach Windischeschenbach 49.79972 12.15889 P PPL DE 02 5659 458 Europe/Berlin 2012-01-18
-2808189 Windhausen Windhausen 51.78544 10.21218 P PPLA4 DE 06 00 03156 03156014 1113 210 214 Europe/Berlin 2011-04-25
-2808204 Windhagen Windhagen 50.63333 7.35 P PPLA4 DE 08 00 07138 07138077 4433 288 Europe/Berlin 2011-04-25
-2808219 Windesheim Windesheim 49.9 7.81667 P PPLA4 DE 08 00 07133 07133114 1951 184 Europe/Berlin 2011-04-25
-2808239 Winden Winden 50.33333 7.83333 P PPLA4 DE 08 00 07141 07141139 742 394 Europe/Berlin 2011-04-25
-2808241 Winden Winden 49.09778 8.11694 P PPLA4 DE 08 00 07334 07334034 1054 143 Europe/Berlin 2011-04-25
-2808251 Windelsbach Windelsbach 49.4 10.3 P PPLA4 DE 02 095 09571 09571225 1037 452 Europe/Berlin 2011-04-25
-2808253 Windehausen Windehausen 51.46577 10.87303 P PPLA4 DE 15 00 16062 16062057 568 165 Europe/Berlin 2011-04-25
-2808263 Windeby Windeby Windeby 54.46667 9.81667 P PPLA4 DE 10 00 01058 01058173 1103 255 Europe/Berlin 2011-04-25
-2808275 Windbergen Windbergen Windbergen 54.05 9.11667 P PPLA4 DE 10 00 01051 01051134 839 3 Europe/Berlin 2011-04-25
-2808279 Windberg Windberg 48.94285 12.7462 P PPLA4 DE 02 092 09278 09278198 1059 430 Europe/Berlin 2011-04-25
-2808306 Windach Windach 48.06667 11.03333 P PPLA4 DE 02 091 09181 09181146 3449 579 Europe/Berlin 2011-04-25
-2808310 Wincheringen Wincheringen 49.61667 6.43333 P PPLA4 DE 08 00 07235 07235149 1499 287 Europe/Berlin 2011-04-25
-2808315 Wimsheim Wimsheim 48.85 8.83333 P PPLA4 DE 01 082 08236 08236067 2705 420 Europe/Berlin 2011-04-25
-2808359 Wimmelburg Wimmelburg Wimmelburg 51.51667 11.51667 P PPLA4 DE 14 00 15087 15087470 1410 200 Europe/Berlin 2011-04-25
-2808390 Wimbach Wimbach 50.36667 6.91667 P PPLA4 DE 08 00 07131 07131084 475 419 Europe/Berlin 2011-04-25
-2808404 Wiltingen Wiltingen 49.66667 6.6 P PPLA4 DE 08 00 07235 07235148 1349 239 Europe/Berlin 2011-04-25
-2808406 Wilthen Wilthen Wilthen 51.1 14.4 P PPL DE 13 6304 291 Europe/Berlin 2012-01-18
-2808408 Wilsum Wilsum 52.53333 6.85 P PPLA4 DE 06 00 03456 03456026 1608 30 Europe/Berlin 2011-04-25
-2808413 Wilster Wilster 53.92253 9.37465 P PPL DE 10 4443 3 Europe/Berlin 2010-10-13
-2808417 Wilstedt Wilstedt 53.18333 9.1 P PPLA4 DE 06 00 03357 03357055 1718 19 Europe/Berlin 2011-04-25
-2808435 Wilsecker Wilsecker 50.01667 6.58333 P PPLA4 DE 08 00 07232 07232135 201 376 Europe/Berlin 2011-04-25
-2808436 Wilsdruff Wilsdruff Wilsdruff 51.05 13.53333 P PPL DE 13 13772 273 Europe/Berlin 2012-01-18
-2808461 Wilnsdorf Wilnsdorf Wilnsdorf 50.81667 8.1 P PPLA4 DE 07 059 05970 05970044 21505 396 Europe/Berlin 2011-04-25
-2808487 Willwerscheid Willwerscheid 50.03333 6.93333 P PPLA4 DE 08 00 07231 07231132 56 428 Europe/Berlin 2011-04-25
-2808493 Willstätt Willstatt Willstatt,Willstätt 48.53333 7.88333 P PPLA4 DE 01 083 08317 08317141 9061 142 Europe/Berlin 2011-04-25
-2808497 Willroth Willroth 50.56667 7.51667 P PPLA4 DE 08 00 07132 07132116 821 357 Europe/Berlin 2011-04-25
-2808514 Willmering Willmering 49.25 12.66667 P PPLA4 DE 02 093 09372 09372175 2193 392 Europe/Berlin 2011-04-25
-2808516 Willmenrod Willmenrod 50.55 7.96667 P PPLA4 DE 08 00 07143 07143312 690 377 Europe/Berlin 2011-04-25
-2808521 Willmars Willmars 50.5 10.25 P PPLA4 DE 02 096 09673 09673182 707 440 Europe/Berlin 2011-04-25
-2808533 Willingshausen Willingshausen Willingshausen 50.85 9.2 P PPLA4 DE 05 066 06634 06634026 5385 230 Europe/Berlin 2011-04-25
-2808544 Willingen Willingen Willingen 51.3 8.61667 P PPL DE 05 6564 619 Europe/Berlin 2012-01-18
-2808545 Willingen Willingen 50.66758 8.08774 P PPLA4 DE 08 00 07143 07143311 293 578 Europe/Berlin 2011-08-31
-2808559 Willich Willich Willich 51.26667 6.55 P PPL DE 07 51843 42 Europe/Berlin 2012-01-18
-2808571 Willerstedt Willerstedt 51.08333 11.45 P PPLA4 DE 15 00 16071 16071096 277 221 Europe/Berlin 2011-04-25
-2808596 Willenscharen Willenscharen Willenscharen 54.01667 9.8 P PPLA4 DE 10 00 01061 01061112 161 11 Europe/Berlin 2011-04-25
-2808619 Willebadessen Willebadessen 51.62564 9.03694 P PPL DE 07 057 8821 221 Europe/Berlin 2010-11-15
-2808624 Willanzheim Willanzheim Willanzheim 49.68333 10.23333 P PPL DE 02 1590 252 Europe/Berlin 2012-01-18
-2808644 Wilkau-Haßlau Wilkau-Hasslau Wilkau-Hasslau,Wilkau-Haßlau 50.66667 12.51667 P PPL DE 13 11850 304 Europe/Berlin 2012-01-18
-2808649 Wilhermsdorf Wilhermsdorf Wilhermsdorf 49.48333 10.71667 P PPL DE 02 5105 321 Europe/Berlin 2012-01-18
-2808657 Wilhelmsthal Wilhelmsthal 50.31113 11.37278 P PPLA4 DE 02 094 09476 09476189 4123 480 Europe/Berlin 2012-03-04
-2808720 Wilhelmshaven Wilhelmshaven Vil'gel'mskhafen,Wilhelmshaven,Willemshaven,bilhelleumseuhapen,fylhylmshafn,vu~iruherumusuhafen,wei lian gang,Вильгельмсхафен,فيلهيلمسهافن,ヴィルヘルムスハーフェン,威廉港,빌헬름스하펜 53.51667 8.13333 P PPL DE 06 84393 2 Europe/Berlin 2012-01-18
-2808734 Wilhelmsfeld Wilhelmsfeld 49.47056 8.75361 P PPLA4 DE 01 082 08226 08226099 3433 440 Europe/Berlin 2011-04-25
-2808743 Wilhelmsdorf Wilhelmsdorf 50.62965 11.54981 P PPLA4 DE 15 00 16075 16075125 233 483 Europe/Berlin 2011-04-25
-2808745 Wilhelmsdorf Wilhelmsdorf 49.56419 10.73716 P PPLA4 DE 02 095 09575 09575181 1269 329 Europe/Berlin 2011-04-25
-2808746 Wilhelmsdorf Wilhelmsdorf Wilhelmsdorf 47.86667 9.41667 P PPLA4 DE 01 084 08436 08436083 4903 622 Europe/Berlin 2011-04-25
-2808748 Wilhelmsburg Wilhelmsburg 53.65 13.86667 P PPLA4 DE 12 00 13062 13062062 987 5 Europe/Berlin 2011-04-25
-2808792 Wilgartswiesen Wilgartswiesen Wilgartswiesen 49.21667 7.88333 P PPLA4 DE 08 00 07340 07340057 1164 335 Europe/Berlin 2011-04-25
-2808810 Wildsteig Wildsteig 47.7 10.95 P PPLA4 DE 02 091 09190 09190160 1245 875 Europe/Berlin 2011-04-25
-2808833 Wildpoldsried Wildpoldsried 47.76667 10.4 P PPLA4 DE 02 097 09780 09780147 2501 723 Europe/Berlin 2011-04-25
-2808871 Wildflecken Wildflecken Wildflecken 50.36667 9.91667 P PPL DE 02 3352 639 Europe/Berlin 2012-01-18
-2808878 Wildetaube Wildetaube Wildetaube 50.71667 12.11667 P PPLA4 DE 15 00 16076 16076083 733 352 Europe/Berlin 2011-04-25
-2808893 Wildeshausen Wildeshausen Wildeshausen 52.9 8.43333 P PPL DE 06 18114 21 Europe/Berlin 2012-01-18
-2808919 Wildenspring Wildenspring Wildenspring 50.6 11.06667 P PPLA4 DE 15 00 16070 16070052 231 605 Europe/Berlin 2011-04-25
-2808947 Wildenhain Wildenhain Wildenhain 51.3 13.48333 P PPL DE 13 1765 121 Europe/Berlin 2012-02-02
-2808956 Wildenfels Wildenfels Wildenfels 50.66667 12.61667 P PPL DE 13 4072 355 Europe/Berlin 2012-01-18
-2808964 Wildenbörten Wildenborten 50.91667 12.28333 P PPLA4 DE 15 00 16077 16077051 375 286 Europe/Berlin 2011-04-25
-2808970 Wildenberg Wildenberg 48.73333 11.91667 P PPLA4 DE 02 092 09273 09273181 1353 447 Europe/Berlin 2011-04-25
-2808987 Wildemann Wildemann Wildemann 51.83333 10.3 P PPL DE 06 1135 446 Europe/Berlin 2012-01-18
-2809009 Wildberg Wildberg 53.65 13.11667 P PPLA4 DE 12 00 13052 13052087 594 58 Europe/Berlin 2011-04-25
-2809013 Wildberg Wildberg 48.62336 8.74518 P PPL DE 01 10187 401 Europe/Berlin 2009-02-09
-2809025 Bad Wildbad im Schwarzwald Bad Wildbad im Schwarzwald Bad Wildbad,Bad Wildbad im Schwarzwald,Stadt Bad Wildbad im Schwarzwald,Wildbad,Wildbad im Schwarzwald 48.75 8.55 P PPL DE 01 11256 431 Europe/Berlin 2012-01-18
-2809033 Wildau Wildau Wildau 52.31667 13.63333 P PPLA4 DE 11 00 12061 12061540 0 38 Europe/Berlin 2011-07-31
-2809042 Wilburgstetten Wilburgstetten Wilburgstetten 49.03333 10.38333 P PPLA4 DE 02 095 09571 09571224 2183 440 Europe/Berlin 2011-07-31
-2809065 Wiggensbach Wiggensbach Wiggensbach 47.75 10.23333 P PPL DE 02 4656 838 Europe/Berlin 2012-01-18
-2809085 Wietzendorf Wietzendorf 52.91667 9.98333 P PPLA4 DE 06 00 03358 03358023 4105 64 Europe/Berlin 2011-04-25
-2809089 Wietzen Wietzen 52.71667 9.08333 P PPLA4 DE 06 00 03256 03256036 2205 52 Europe/Berlin 2011-07-31
-2809092 Wietze Wietze Wietze 52.65 9.83333 P PPLA4 DE 06 00 03351 03351023 8216 34 Europe/Berlin 2011-04-25
-2809093 Wietstock Wietstock 53.71667 13.78333 P PPLA4 DE 12 00 13059 13059100 142 8 Europe/Berlin 2011-04-25
-2809100 Wietmarschen Wietmarschen 52.53333 7.13333 P PPLA4 DE 06 00 03456 03456025 10903 21 Europe/Berlin 2011-04-25
-2809119 Wiesweiler Wiesweiler 49.63333 7.56667 P PPLA4 DE 08 00 07336 07336104 484 200 Europe/Berlin 2011-04-25
-2809123 Wiesthal Wiesthal 50.03333 9.43333 P PPLA4 DE 02 096 09677 09677200 1445 274 Europe/Berlin 2011-04-25
-2809134 Wiesmoor Wiesmoor 53.41667 7.73333 P PPLA4 DE 06 00 03452 03452025 13157 15 Europe/Berlin 2011-07-31
-2809138 Wiesloch Wiesloch Wiesloch 49.29778 8.70139 P PPL DE 01 25630 144 Europe/Berlin 2012-01-18
-2809181 Wieseth Wieseth 49.16667 10.48333 P PPLA4 DE 02 095 09571 09571223 0 462 Europe/Berlin 2011-04-25
-2809191 Wiesentheid Wiesentheid Wiesentheid 49.8 10.35 P PPL DE 02 4759 257 Europe/Berlin 2012-01-18
-2809192 Wiesenthau Wiesenthau 49.71667 11.13333 P PPLA4 DE 02 094 09474 09474175 1711 304 Europe/Berlin 2011-04-25
-2809196 Wiesenthal Wiesenthal 50.7 10.16667 P PPLA4 DE 15 00 16063 16063086 796 379 Europe/Berlin 2011-04-25
-2809210 Wiesent Wiesent 49.01667 12.38333 P PPLA4 DE 02 093 09375 09375209 2561 331 Europe/Berlin 2011-04-25
-2809214 Wiesensteig Wiesensteig 48.56127 9.6254 P PPL DE 01 2199 590 Europe/Berlin 2008-12-24
-2809241 Wiesenfelden Wiesenfelden 49.03333 12.53333 P PPLA4 DE 02 092 09278 09278197 3596 618 Europe/Berlin 2011-04-25
-2809259 Wiesenburg Wiesenburg Wiesenburg 52.11667 12.45 P PPL DE 11 5380 176 Europe/Berlin 2012-01-18
-2809264 Wiesenbronn Wiesenbronn 49.75 10.3 P PPLA4 DE 02 096 09675 09675177 971 253 Europe/Berlin 2011-04-25
-2809277 Wiesenbach Wiesenbach 49.36139 8.80361 P PPLA4 DE 01 082 08226 08226097 3158 139 Europe/Berlin 2011-04-25
-2809286 Wiesenau Wiesenau 52.23071 14.59107 P PPLA4 DE 11 00 12067 12067528 1382 30 31 Europe/Berlin 2011-04-25
-2809291 Wiesen Wiesen 50.11667 9.36667 P PPLA4 DE 02 096 09671 09671162 1139 417 Europe/Berlin 2011-04-25
-2809303 Wiesemscheid Wiesemscheid 50.33333 6.88333 P PPLA4 DE 08 00 07131 07131083 282 494 Europe/Berlin 2011-04-25
-2809341 Wiesbaum Wiesbaum 50.33333 6.66667 P PPLA4 DE 08 00 07233 07233083 600 470 Europe/Berlin 2011-04-25
-2809346 Wiesbaden Wiesbaden Aquae Mattiacae,Bismpanten,Uisibada,Visbaden,Visbadene,Vysbadenas,Vīsbādene,Wiesbaden,vu~isubaden,wei si ba deng,wysbadn,Βισμπάντεν,Висбаден,ויסבאדן,ویسبادن,ヴィースバーデン,威斯巴登 50.08333 8.25 P PPLA DE 05 272432 129 Europe/Berlin 2012-01-18
-2809357 Wiesbach Wiesbach 49.33333 7.45 P PPLA4 DE 08 00 07340 07340227 0 315 Europe/Berlin 2011-04-25
-2809362 Wiesau Wiesau Wiesau 49.91667 12.18333 P PPL DE 02 4550 521 Europe/Berlin 2012-01-18
-2809367 Wiesa Wiesa 50.61667 13.01667 P PPL DE 13 3811 512 Europe/Berlin 2006-01-17
-2809395 Wiershop Wiershop Wiershop 53.43333 10.45 P PPLA4 DE 10 00 01053 01053131 151 42 Europe/Berlin 2011-04-25
-2809401 Wiersdorf Wiersdorf 50 6.45 P PPLA4 DE 08 00 07232 07232134 209 253 Europe/Berlin 2011-04-25
-2809402 Wierschem Wierschem 50.22557 7.35157 P PPLA4 DE 08 00 07137 07137114 323 244 Europe/Berlin 2011-04-25
-2809403 Wiernsheim Wiernsheim 48.88333 8.85 P PPLA4 DE 01 082 08236 08236065 6391 423 Europe/Berlin 2011-04-25
-2809415 Wieren Wieren 52.88529 10.65871 P PPLA4 DE 06 00 03360 03360027 2666 56 Europe/Berlin 2011-04-25
-2809444 Wienhausen Wienhausen 52.58021 10.18862 P PPLA4 DE 06 00 03351 03351022 4278 44 Europe/Berlin 2011-04-25
-2809449 Wiendorf Wiendorf 53.94649 12.15054 P PPLA4 DE 12 00 13051 13051082 790 29 Europe/Berlin 2011-04-25
-2809463 Wiemerstedt Wiemerstedt Wiemerstedt 54.26667 9.11667 P PPLA4 DE 10 00 01051 01051133 168 3 Europe/Berlin 2011-04-25
-2809468 Wiemersdorf Wiemersdorf Wiemersdorf 53.95815 9.90297 P PPLA4 DE 10 00 01060 01060099 1520 28 Europe/Berlin 2011-09-05
-2809489 Wielenbach Wielenbach 47.86667 11.15 P PPLA4 DE 02 091 09190 09190159 0 547 Europe/Berlin 2011-04-25
-2809491 Wielen Wielen 52.55 6.71667 P PPLA4 DE 06 00 03456 03456024 612 16 Europe/Berlin 2011-07-31
-2809509 Wiek Wiek 54.61667 13.28333 P PPLA4 DE 12 00 13061 13061043 1269 2 Europe/Berlin 2011-04-25
-2809517 Wiehl Wiehl Vil',Wiehl,Виль 50.95 7.53333 P PPL DE 07 26291 212 Europe/Berlin 2012-01-18
-2809524 Wiehe Wiehe Wiehe 51.26667 11.41667 P PPL DE 15 2258 128 Europe/Berlin 2012-01-18
-2809539 Wiegendorf Wiegendorf 50.98333 11.43333 P PPLA4 DE 15 00 16071 16071095 416 269 Europe/Berlin 2011-04-25
-2809544 Wiefelstede Wiefelstede 53.25 8.11667 P PPLA4 DE 06 00 03451 03451008 14775 13 Europe/Berlin 2011-04-25
-2809550 Wiednitz Wiednitz 51.4 14.03333 P PPLA4 DE 13 146 14625 14625620 1178 138 Europe/Berlin 2011-04-25
-2809567 Wiederstedt Wiederstedt Wiederstedt 51.66667 11.53333 P PPL DE 14 1159 141 Europe/Berlin 2012-01-18
-2809578 Wiedergeltingen Wiedergeltingen 48.03333 10.66667 P PPLA4 DE 02 097 09778 09778216 1377 627 Europe/Berlin 2011-04-25
-2809587 Wiedensahl Wiedensahl Wiedensahl 52.38333 9.11667 P PPL DE 06 1061 64 Europe/Berlin 2012-02-02
-2809625 Wieden Wieden 47.84145 7.882 P PPLA4 DE 01 083 08336 08336096 578 830 Europe/Berlin 2011-04-25
-2809628 Wiedemar Wiedemar 51.46667 12.2 P PPLA4 DE 13 147 14730 14730340 2274 109 Europe/Berlin 2011-04-25
-2809645 Wieda Wieda 51.634 10.58704 P PPLA4 DE 06 00 03156 03156013 1501 360 Europe/Berlin 2011-04-25
-2809670 Wieblitz-Eversdorf Wieblitz-Eversdorf 52.81667 11.06667 P PPLA4 DE 14 00 15081 15081565 303 33 Europe/Berlin 2011-04-25
-2809675 Wiebelsheim Wiebelsheim 50.08333 7.63333 P PPLA4 DE 08 00 07140 07140161 498 458 Europe/Berlin 2011-04-25
-2809677 Wiebelsdorf Wiebelsdorf 50.71575 11.94952 P PPLA4 DE 15 00 16076 16076082 283 364 Europe/Berlin 2011-04-25
-2809718 Widdern Widdern Widdern 49.31944 9.42194 P PPL DE 01 1967 202 Europe/Berlin 2012-01-18
-2809741 Wickerstedt Wickerstedt 51.06667 11.55 P PPLA4 DE 15 00 16071 16071094 882 165 Europe/Berlin 2011-04-25
-2809762 Wickenrodt Wickenrodt 49.81667 7.35 P PPLA4 DE 08 00 07134 07134093 158 444 Europe/Berlin 2011-04-25
-2809778 Wickede Wickede Wickede 51.48333 7.86667 P PPL DE 07 12504 149 Europe/Berlin 2012-01-18
-2809796 Wichmar Wichmar Wichmar 51.03333 11.68333 P PPLA4 DE 15 00 16074 16074112 232 134 Europe/Berlin 2011-04-25
-2809837 Weyhausen Weyhausen 52.46208 10.71699 P PPLA4 DE 06 00 03151 03151039 2654 56 Europe/Berlin 2011-04-28
-2809845 Weyerbusch Weyerbusch Weyerbusch 50.71667 7.55 P PPLA4 DE 08 00 07132 07132115 1456 294 Europe/Berlin 2011-04-25
-2809852 Weyer Weyer 50.18333 7.71667 P PPLA4 DE 08 00 07141 07141138 513 249 Europe/Berlin 2011-04-25
-2809856 Weyarn Weyarn 47.85838 11.79923 P PPLA4 DE 02 091 09182 09182137 3217 673 Europe/Berlin 2011-04-25
-2809861 Wewelsfleth Wewelsfleth Wewelsfleth 53.85 9.4 P PPLA4 DE 10 00 01061 01061110 1538 253 Europe/Berlin 2011-04-25
-2809889 Wetzlar Wetzlar Betslar,Veclar,Veclara,Veclaras,Veclāra,Vetclar,Weslar,Weslår,Wetzlar,vu~ettsura,wei ci la er,Βέτσλαρ,Ветцлар,Вецлар,ヴェッツラー,韦茨拉尔 50.55 8.5 P PPL DE 05 52656 168 Europe/Berlin 2012-01-18
-2809914 Wettstetten Wettstetten 48.83333 11.41667 P PPLA4 DE 02 091 09176 09176167 0 419 Europe/Berlin 2011-04-25
-2809917 Wettrup Wettrup 52.58887 7.59911 P PPLA4 DE 06 00 03454 03454059 578 24 Europe/Berlin 2011-04-25
-2809919 Wettringen Wettringen 52.20939 7.31895 P PPLA4 DE 07 055 05566 05566096 7897 49 Europe/Berlin 2011-04-25
-2809921 Wettringen Wettringen 49.25 10.15 P PPLA4 DE 02 095 09571 09571222 964 435 Europe/Berlin 2011-04-25
-2809928 Wettlingen Wettlingen 49.93333 6.4 P PPLA4 DE 08 00 07232 07232133 54 235 Europe/Berlin 2011-04-25
-2809939 Wettin Wettin Wettin 51.58333 11.8 P PPL DE 14 2046 69 Europe/Berlin 2012-01-18
-2809944 Wetterzeube Wetterzeube Wetterzeube 51 12.01667 P PPLA4 DE 14 00 15084 15084565 1145 159 Europe/Berlin 2011-04-25
-2809984 Wetter (Ruhr) Wetter (Ruhr) Stadt Wetter (Ruhr),Wetter,Wetter (Ruhr) 51.38333 7.4 P PPL DE 07 29146 93 Europe/Berlin 2012-01-18
-2809985 Wetter Wetter Wetter 50.9 8.71667 P PPL DE 05 9457 251 Europe/Berlin 2012-01-18
-2810014 Wetschen Wetschen 52.61295 8.44883 P PPLA4 DE 06 00 03251 03251046 1785 42 Europe/Berlin 2011-04-25
-2810024 Wethau Wethau Wethau 51.13333 11.86667 P PPLA4 DE 14 00 15084 15084560 727 122 Europe/Berlin 2011-04-25
-2810058 Westre Westre Westre 54.85 8.98333 P PPLA4 DE 10 00 01054 01054154 397 18 Europe/Berlin 2011-04-25
-2810110 Westhofen Westhofen 49.70444 8.24806 P PPLA4 DE 08 00 07331 07331071 3268 127 Europe/Berlin 2011-04-25
-2810125 Westheim Westheim Westheim 49.24917 8.32444 P PPL DE 08 1720 116 Europe/Berlin 2012-02-02
-2810128 Westheim Westheim 49 10.66667 P PPLA4 DE 02 095 09577 09577179 1215 451 Europe/Berlin 2011-04-25
-2810134 Westhausen Westhausen 51.01667 10.68333 P PPLA4 DE 15 00 16067 16067078 514 277 Europe/Berlin 2011-04-25
-2810135 Westhausen Westhausen 50.31667 10.66667 P PPLA4 DE 15 00 16069 16069056 580 316 Europe/Berlin 2011-04-25
-2810136 Westhausen Westhausen Westhausen 48.88333 10.18333 P PPLA4 DE 01 081 08136 08136082 5884 487 Europe/Berlin 2011-04-25
-2810143 Westgreußen Westgreussen Westgreussen,Westgreußen 51.25 10.91667 P PPLA4 DE 15 00 16065 16065079 449 203 Europe/Berlin 2011-04-25
-2810148 Westfeld Westfeld 52.05 9.91667 P PPLA4 DE 06 00 03254 03254033 956 181 Europe/Berlin 2011-04-25
-2810168 Westerwalsede Westerwalsede 53.03333 9.36667 P PPLA4 DE 06 00 03357 03357054 743 38 Europe/Berlin 2011-04-25
-2810178 Westertimke Westertimke 53.23697 9.13084 P PPLA4 DE 06 00 03357 03357053 642 32 Europe/Berlin 2011-07-29
-2810184 Westerstetten Westerstetten 48.51916 9.95494 P PPLA4 DE 01 084 08425 08425135 2166 541 Europe/Berlin 2011-04-25
-2810188 Westerstede Westerstede Westerstede 53.25 7.93333 P PPL DE 06 21902 4 Europe/Berlin 2012-01-18
-2810204 Westerrönfeld Westerronfeld Westerronfeld,Westerrönfeld 54.28333 9.65 P PPLA4 DE 10 00 01058 01058172 5227 8 Europe/Berlin 2011-04-25
-2810208 Westerrade Westerrade Westerrade 53.93333 10.45 P PPLA4 DE 10 00 01060 01060098 512 31 Europe/Berlin 2011-04-25
-2810214 Wester-Ohrstedt Wester-Ohrstedt Wester-Ohrstedt 54.50796 9.18574 P PPLA4 DE 10 00 01054 01054152 1124 30 Europe/Berlin 2011-08-25
-2810223 Westernohe Westernohe 50.58333 8.1 P PPLA4 DE 08 00 07143 07143309 907 422 Europe/Berlin 2011-04-25
-2810254 Westermoor Westermoor Westermoor 53.91351 9.62394 P PPLA4 DE 10 00 01061 01061109 383 0 Europe/Berlin 2011-04-25
-2810284 Westerland Westerland Waeaesterloen',Wäästerlön' 54.9079 8.30326 P PPL DE 10 00 8967 8 Europe/Berlin 2010-11-20
-2810289 Westerkappeln Westerkappeln Westerkappeln 52.31667 7.88333 P PPLA4 DE 07 055 05566 05566092 11397 64 Europe/Berlin 2011-04-25
-2810300 Westerhorn Westerhorn 53.86667 9.68333 P PPLA4 DE 10 00 01056 01056051 1293 5 Europe/Berlin 2011-04-25
-2810305 Westerholz Westerholz 54.81667 9.66667 P PPLA4 DE 10 00 01059 01059178 0 31 Europe/Berlin 2011-04-25
-2810317 Westerholt Westerholt 53.6 7.45 P PPLA4 DE 06 00 03462 03462018 2353 0 Europe/Berlin 2011-04-25
-2810335 Westerhever Westerhever 54.38236 8.6774 P PPLA4 DE 10 00 01054 01054150 121 0 Europe/Berlin 2011-08-23
-2810336 Westerheim Westerheim 48.51511 9.62424 P PPLA4 DE 01 084 08425 08425134 2888 816 Europe/Berlin 2011-04-25
-2810337 Westerheim Westerheim 48.01667 10.3 P PPLA4 DE 02 097 09778 09778214 2077 599 Europe/Berlin 2011-04-25
-2810345 Westerhausen Westerhausen Westerhausen 51.8 11.06667 P PPL DE 14 2169 177 Europe/Berlin 2012-01-18
-2810364 Westergellersen Westergellersen 53.23333 10.25 P PPLA4 DE 06 00 03355 03355041 1709 47 Europe/Berlin 2011-04-25
-2810395 Westeregeln Westeregeln Westeregeln 51.96667 11.4 P PPL DE 14 2099 69 Europe/Berlin 2012-01-18
-2810399 Westerdeichstrich Westerdeichstrich 54.16667 8.86667 P PPLA4 DE 10 00 01051 01051132 926 0 Europe/Berlin 2011-04-25
-2810413 Westerburg Westerburg 50.56667 7.98333 P PPL DE 08 5863 439 Europe/Berlin 2006-01-17
-2810428 Westerborstel Westerborstel Westerborstel 54.23333 9.28333 P PPLA4 DE 10 00 01051 01051131 95 0 Europe/Berlin 2011-04-25
-2810493 Westerau Westerau Westerau 53.78333 10.5 P PPLA4 DE 10 00 01062 01062083 797 42 Europe/Berlin 2011-04-25
-2810505 Westensee Westensee Westensee 54.28333 9.9 P PPLA4 DE 10 00 01058 01058171 1582 5 Europe/Berlin 2011-04-25
-2810522 Westenfeld Westenfeld 50.43333 10.5 P PPLA4 DE 15 00 16069 16069055 397 335 Europe/Berlin 2011-04-25
-2810531 Westendorf Westendorf 48.56667 10.83333 P PPLA4 DE 02 097 09772 09772217 1489 421 Europe/Berlin 2011-04-25
-2810533 Westendorf Westendorf 47.93333 10.71667 P PPLA4 DE 02 097 09777 09777182 1825 679 Europe/Berlin 2011-04-25
-2810559 Weste Weste 53.05943 10.70283 P PPLA4 DE 06 00 03360 03360026 1062 59 Europe/Berlin 2011-04-25
-2810581 Wessobrunn Wessobrunn Wessobrunn 47.88333 11.03333 P PPLA4 DE 02 091 09190 09190158 2076 699 Europe/Berlin 2011-04-25
-2810587 Weßling Wessling 48.07452 11.2482 P PPLA4 DE 02 091 09188 09188144 5172 596 Europe/Berlin 2011-04-25
-2810590 Wessin Wessin 53.56667 11.73333 P PPLA4 DE 12 00 13060 13060087 532 59 Europe/Berlin 2011-04-25
-2810608 Wesseln Wesseln 54.2 9.08333 P PPLA4 DE 10 00 01051 01051130 1398 13 Europe/Berlin 2011-04-25
-2810612 Wesseling Wesseling Wesseling 50.83333 6.98333 P PPL DE 07 35665 49 Europe/Berlin 2012-01-18
-2810617 Wesselburenerkoog Wesselburenerkoog Wesselburenerkoog 54.25 8.88333 P PPLA4 DE 10 00 01051 01051129 149 0 Europe/Berlin 2011-04-25
-2810618 Wesselburener Deichhausen Wesselburener Deichhausen Wesselburener Deichhausen 54.16667 8.93333 P PPLA4 DE 10 00 01051 01051128 150 255 Europe/Berlin 2011-04-25
-2810619 Wesselburen Wesselburen 54.21667 8.91667 P PPL DE 10 3146 0 Europe/Berlin 2006-01-17
-2810659 Wesendorf Wesendorf 52.6 10.53333 P PPLA4 DE 06 00 03151 03151038 4924 61 Europe/Berlin 2011-04-25
-2810662 Wesenberg Wesenberg 53.2803 12.96936 P PPL DE 12 3346 59 Europe/Berlin 2010-07-05
-2810673 Weselberg Weselberg 49.33333 7.61667 P PPLA4 DE 08 00 07340 07340055 1402 351 Europe/Berlin 2011-04-25
-2810678 Wesel Wesel Vezel',Wesel,Везель 51.66667 6.61667 P PPL DE 07 61685 25 Europe/Berlin 2012-01-18
-2810702 Wertingen Wertingen Wertingen 48.55 10.68333 P PPL DE 02 8958 417 Europe/Berlin 2012-01-18
-2810710 Werther Werther 52.07771 8.41793 P PPL DE 07 057 11575 129 Europe/Berlin 2010-11-15
-2810716 Wertheim Wertheim Wertheim 49.7575 9.50944 P PPL DE 01 24869 182 Europe/Berlin 2012-02-28
-2810728 Wertach Wertach Wertach 47.6 10.4 P PPL DE 02 2423 935 Europe/Berlin 2012-01-18
-2810732 Wershofen Wershofen 50.44482 6.81333 P PPLA4 DE 08 00 07131 07131082 902 477 Europe/Berlin 2011-04-25
-2810763 Werpeloh Werpeloh 52.88333 7.5 P PPLA4 DE 06 00 03454 03454058 1104 50 Europe/Berlin 2011-04-25
-2810767 Weroth Weroth 50.46667 7.95 P PPLA4 DE 08 00 07143 07143080 0 311 Europe/Berlin 2011-04-25
-2810775 Wernshausen Wernshausen Wernshausen 50.71667 10.35 P PPL DE 15 3143 268 Europe/Berlin 2012-01-18
-2810801 Werningshausen Werningshausen 51.13333 11 P PPLA4 DE 15 00 16068 16068059 744 143 Europe/Berlin 2011-04-25
-2810808 Wernigerode Wernigerode Vernigerode,Wernigerode,Вернигероде 51.83333 10.78333 P PPL DE 14 34463 244 Europe/Berlin 2012-01-18
-2810815 Werneuchen Werneuchen 52.63275 13.73437 P PPL DE 11 7767 73 Europe/Berlin 2009-01-29
-2810828 Wernersberg Wernersberg 49.18333 7.93333 P PPLA4 DE 08 00 07337 07337083 1120 325 Europe/Berlin 2011-04-25
-2810832 Werneck Werneck Werneck 49.98333 10.1 P PPL DE 02 10673 228 Europe/Berlin 2012-01-18
-2810833 Werne Werne Verne,Werne an der Lippe,Верне 51.66446 7.63421 P PPL DE 07 30810 60 60 Europe/Berlin 2010-01-29
-2810836 Wernburg Wernburg 50.67775 11.60199 P PPLA4 DE 15 00 16075 16075124 776 333 Europe/Berlin 2011-04-25
-2810840 Wernberg-Köblitz Wernberg-Koblitz Wernberg,Wernberg-Koblitz,Wernberg-Köblitz 49.53694 12.15167 P PPL DE 02 5830 380 Europe/Berlin 2012-01-18
-2810841 Wernau Wernau 48.69306 9.41533 P PPL DE 01 12518 260 Europe/Berlin 2008-12-20
-2810848 Wermsdorf Wermsdorf Wermsdorf 51.28333 12.95 P PPLA4 DE 13 147 14730 14730330 6074 179 Europe/Berlin 2011-04-25
-2810855 Wermelskirchen Wermelskirchen Wermelskirchen 51.15 7.21667 P PPL DE 07 36816 274 Europe/Berlin 2012-01-18
-2810860 Werlte Werlte 52.85 7.68333 P PPLA4 DE 06 00 03454 03454057 9255 35 Europe/Berlin 2011-07-31
-2810874 Werlaburgdorf Werlaburgdorf 52.04996 10.53726 P PPLA4 DE 06 00 03158 03158034 795 88 Europe/Berlin 2011-05-03
-2810878 Werl Werl Werl 51.55 7.91667 P PPL DE 07 059 05974 32149 97 Europe/Berlin 2012-01-18
-2810883 Werkhausen Werkhausen 50.73333 7.53333 P PPLA4 DE 08 00 07132 07132114 237 315 Europe/Berlin 2011-04-25
-2810898 Werftpfuhl Werftpfuhl Verftpful',Верфтпфуль 52.66014 13.79351 P PPL DE 11 1540 89 Europe/Berlin 2010-06-08
-2810917 Werdum Werdum 53.65751 7.71901 P PPLA4 DE 06 00 03462 03462017 691 2 Europe/Berlin 2011-04-25
-2810919 Werdohl Werdohl Werdohl 51.26667 7.76667 P PPL DE 07 20366 360 Europe/Berlin 2012-01-18
-2810936 Werder Werder 53.71652 13.35663 P PPLA4 DE 12 00 13052 13052086 0 26 Europe/Berlin 2011-07-31
-2810937 Werder Werder 53.50112 12.00771 P PPLA4 DE 12 00 13060 13060086 502 61 Europe/Berlin 2011-04-25
-2810945 Werder Werder 52.37874 12.934 P PPL DE 11 00 22384 33 Europe/Berlin 2010-11-22
-2810969 Werdau Werdau Werdau 50.73333 12.38333 P PPL DE 13 24424 298 Europe/Berlin 2012-01-18
-2810970 Werda Werda 50.43333 12.31667 P PPLA4 DE 13 145 14523 14523460 1774 632 Europe/Berlin 2011-04-25
-2810985 Werben Werben 51.81667 14.18333 P PPLA4 DE 11 00 12071 12071412 1891 59 Europe/Berlin 2011-04-25
-2811000 Werbach Werbach 49.67083 9.63944 P PPLA4 DE 01 081 08128 08128128 3589 186 Europe/Berlin 2011-04-25
-2811007 Wenzlow Wenzlow 52.3 12.45 P PPLA4 DE 11 00 12069 12069648 625 40 Europe/Berlin 2011-04-25
-2811011 Wenzendorf Wenzendorf 53.35 9.76667 P PPLA4 DE 06 00 03353 03353039 1262 53 Europe/Berlin 2011-04-25
-2811013 Wenzenbach Wenzenbach 49.07556 12.19417 P PPLA4 DE 02 093 09375 09375208 8101 354 Europe/Berlin 2011-04-25
-2811031 Wentorf bei Hamburg Wentorf bei Hamburg Wentorf bei Hamburg 53.5 10.25 P PPLA4 DE 10 00 01053 01053129 0 38 Europe/Berlin 2011-04-25
-2811034 Wentorf Wentorf 53.68333 10.46667 P PPL DE 10 13477 56 Europe/Berlin 2006-01-17
-2811047 Wensin Wensin Wensin 53.98333 10.41667 P PPLA4 DE 10 00 01060 01060097 797 27 Europe/Berlin 2011-04-25
-2811072 Wennigsen Wennigsen 52.27404 9.57287 P PPL DE 06 14137 91 Europe/Berlin 2010-08-19
-2811094 Wennbüttel Wennbuttel Wennbuttel,Wennbüttel 54.13333 9.33333 P PPLA4 DE 10 00 01051 01051126 76 0 Europe/Berlin 2011-04-25
-2811160 Weng Weng 48.66667 12.38333 P PPLA4 DE 02 092 09274 09274188 1389 473 Europe/Berlin 2011-04-25
-2811173 Wendtorf Wendtorf Wendtorf 54.41667 10.3 P PPLA4 DE 10 00 01057 01057087 1139 252 Europe/Berlin 2011-04-25
-2811187 Wendorf Wendorf 54.2554 13.07682 P PPLA4 DE 12 00 13057 13057090 1087 16 Europe/Berlin 2011-07-31
-2811204 Wendlingen am Neckar Wendlingen am Neckar Wendlingen 48.67124 9.37632 P PPL DE 01 15728 268 Europe/Berlin 2008-12-21
-2811216 Wendisch Waren Wendisch Waren 53.57447 12.12959 P PPLA4 DE 12 00 13060 13060084 428 51 Europe/Berlin 2011-04-25
-2811218 Wendisch Rietz Wendisch Rietz Markisch Rietz,Märkisch Rietz,Wendisch Rietz 52.2 14.01667 P PPLA4 DE 11 00 12067 12067520 1466 42 Europe/Berlin 2011-04-25
-2811220 Wendisch Priborn Wendisch Priborn 53.33333 12.28333 P PPLA4 DE 12 00 13060 13060083 474 83 Europe/Berlin 2011-04-25
-2811227 Wendisch Evern Wendisch Evern 53.21667 10.46667 P PPLA4 DE 06 00 03355 03355040 1597 48 Europe/Berlin 2011-04-25
-2811236 Wendisch Baggendorf Wendisch Baggendorf 54.07399 12.94335 P PPLA4 DE 12 00 13057 13057089 595 19 Europe/Berlin 2011-07-31
-2811278 Wenden Wenden Wenden 50.96667 7.86667 P PPLA4 DE 07 059 05966 05966028 19924 405 Europe/Berlin 2011-07-31
-2811292 Wendelstein Wendelstein Wendelstein 49.35361 11.14833 P PPL DE 02 16220 344 Europe/Berlin 2012-02-02
-2811295 Wendelsheim Wendelsheim 49.76667 8 P PPLA4 DE 08 00 07331 07331070 1453 172 Europe/Berlin 2011-04-25
-2811317 Wendeburg Wendeburg 52.32957 10.39255 P PPLA4 DE 06 00 03157 03157008 10147 69 Europe/Berlin 2011-07-31
-2811342 Wemding Wemding Wemding,Wemdingen 48.86667 10.71667 P PPL DE 02 5669 441 Europe/Berlin 2012-01-18
-2811346 Wembach Wembach 47.7725 7.8869 P PPLA4 DE 01 083 08336 08336094 340 516 Europe/Berlin 2011-07-31
-2811348 Welzow Welzow Welzow 51.56667 14.18333 P PPL DE 11 4240 118 Europe/Berlin 2012-01-18
-2811354 Welzheim Welzheim 48.87675 9.63434 P PPL DE 01 11306 508 Europe/Berlin 2008-12-20
-2811361 Welver Welver Kirchwelver,Welver 51.61667 7.96667 P PPLA4 DE 07 059 05974 05974048 12993 76 Europe/Berlin 2011-07-31
-2811370 Weltersburg Weltersburg 50.53333 7.95 P PPLA4 DE 08 00 07143 07143307 270 339 Europe/Berlin 2011-04-25
-2811378 Welterod Welterod 50.13333 7.88333 P PPLA4 DE 08 00 07141 07141137 529 440 Europe/Berlin 2011-04-25
-2811384 Welt Welt 54.30248 8.79458 P PPLA4 DE 10 00 01054 01054148 219 1 Europe/Berlin 2011-08-23
-2811387 Welsleben Welsleben Welsleben 52 11.65 P PPL DE 14 1904 75 Europe/Berlin 2012-01-18
-2811403 Welschneudorf Welschneudorf 50.36667 7.8 P PPLA4 DE 08 00 07143 07143079 962 403 Europe/Berlin 2011-04-25
-2811413 Welschenbach Welschenbach 50.36667 7.06667 P PPLA4 DE 08 00 07137 07137113 56 493 Europe/Berlin 2011-04-25
-2811420 Welschbillig Welschbillig 49.85 6.56667 P PPLA4 DE 08 00 07235 07235501 2606 357 Europe/Berlin 2011-07-31
-2811439 Welmbüttel Welmbuttel Welmbuttel,Welmbüttel 54.2 9.25 P PPLA4 DE 10 00 01051 01051125 491 58 Europe/Berlin 2011-04-25
-2811461 Wellingsbüttel Wellingsbuettel 53.64104 10.0798 P PPLX DE 04 10088 27 Europe/Berlin 2011-08-21
-2811474 Welling Welling 50.33333 7.31667 P PPLA4 DE 08 00 07137 07137112 904 226 Europe/Berlin 2011-04-25
-2811514 Wellendingen Wellendingen 48.14745 8.70375 P PPLA4 DE 01 083 08325 08325064 3117 633 Europe/Berlin 2011-04-25
-2811532 Wellen Wellen 52.14518 11.44106 P PPL DE 14 1328 122 Europe/Berlin 2011-03-17
-2811534 Wellen Wellen 49.66667 6.43333 P PPLA4 DE 08 00 07235 07235146 762 172 Europe/Berlin 2011-04-25
-2811537 Welle Welle 53.23985 9.80178 P PPLA4 DE 06 00 03353 03353038 1251 52 Europe/Berlin 2011-07-31
-2811558 Welkenbach Welkenbach 50.63333 7.73333 P PPLA4 DE 08 00 07143 07143306 144 305 Europe/Berlin 2011-04-25
-2811562 Welgesheim Welgesheim 49.88333 7.96667 P PPLA4 DE 08 00 07339 07339065 596 118 Europe/Berlin 2011-04-25
-2811570 Welden Welden 48.45505 10.66086 P PPL DE 02 3614 465 Europe/Berlin 2010-08-16
-2811575 Welchweiler Welchweiler 49.58333 7.5 P PPLA4 DE 08 00 07336 07336103 201 275 Europe/Berlin 2011-04-25
-2811578 Welcherath Welcherath 50.31667 6.96667 P PPLA4 DE 08 00 07233 07233244 134 496 Europe/Berlin 2011-07-31
-2811611 Weitramsdorf Weitramsdorf 50.25 10.88333 P PPLA4 DE 02 094 09473 09473175 5183 325 Europe/Berlin 2011-04-25
-2811614 Weitnau Weitnau Weitnau 47.65 10.13333 P PPL DE 02 5143 909 Europe/Berlin 2012-01-18
-2811643 Weitersweiler Weitersweiler 49.61667 8 P PPLA4 DE 08 00 07333 07333081 490 243 Europe/Berlin 2011-04-25
-2811644 Weiterstadt Weiterstadt Weiterstadt 49.90778 8.59528 P PPL DE 05 24253 108 Europe/Berlin 2012-01-18
-2811652 Weitersburg Weitersburg 50.41667 7.6 P PPLA4 DE 08 00 07137 07137229 2152 186 Europe/Berlin 2011-04-25
-2811653 Weitersborn Weitersborn 49.85 7.53333 P PPLA4 DE 08 00 07133 07133113 256 398 Europe/Berlin 2011-04-25
-2811654 Weitersbach Weitersbach 49.86667 7.31667 P PPLA4 DE 08 00 07134 07134092 85 388 Europe/Berlin 2011-04-25
-2811664 Weitenhagen Weitenhagen 54.22676 12.78676 P PPLA4 DE 12 00 13057 13057088 261 16 Europe/Berlin 2011-04-25
-2811665 Weitenhagen Weitenhagen 54.05 13.41667 P PPLA4 DE 12 00 13059 13059099 1604 37 Europe/Berlin 2011-04-25
-2811675 Weitendorf Weitendorf 53.71667 11.75 P PPLA4 DE 12 00 13060 13060082 0 17 Europe/Berlin 2011-04-25
-2811683 Weiten Weiten 49.53011 6.54064 P PPL DE 09 00 1209 385 Europe/Berlin 2010-11-22
-2811685 Weitefeld Weitefeld 50.71667 7.93333 P PPLA4 DE 08 00 07132 07132113 2451 485 Europe/Berlin 2011-04-25
-2811691 Weisweil Weisweil 48.19939 7.67713 P PPLA4 DE 01 083 08316 08316049 2114 170 Europe/Berlin 2011-09-08
-2811698 Weißwasser Weisswasser Betla Woda,Bialawoda,Białawoda,Bětła Woda,Weisswasser,Weißwasser 51.51667 14.63333 P PPL DE 13 22099 132 Europe/Berlin 2012-01-18
-2811713 Weißkeißel Weisskeissel Weiskeissel,Weisskeissel,Weißkeißel 51.48333 14.71667 P PPLA4 DE 13 146 14626 14626590 1481 135 Europe/Berlin 2011-04-25
-2811715 Weißig Weissig Weissig,Weissig Ort,Weißig,Weißig Ort 51.28333 13.45 P PPL DE 13 1013 122 Europe/Berlin 2012-01-18
-2811837 Weißenthurm Weissenthurm 50.41667 7.45 P PPL DE 08 7639 86 Europe/Berlin 2006-01-17
-2811852 Weißenstadt Weissenstadt Weissenstadt,Weißenstadt 50.1 11.86667 P PPL DE 02 3545 623 Europe/Berlin 2012-01-18
-2811860 Weißensee Weissensee Weissensee,Weißensee 51.18333 11.06667 P PPL DE 15 3720 164 Europe/Berlin 2012-01-18
-2811865 Weißensberg Weissensberg 47.58333 9.73333 P PPLA4 DE 02 097 09776 09776130 2655 528 Europe/Berlin 2011-04-25
-2811870 Weißenohe Weissenohe 49.63089 11.25369 P PPLA4 DE 02 094 09474 09474173 1080 367 Europe/Berlin 2011-04-25
-2811879 Weißenhorn Weissenhorn 48.30501 10.16047 P PPL DE 02 13377 503 Europe/Berlin 2010-08-16
-2811899 Weißenfels Weissenfels Weissenfels,Weißenfels 51.2 11.96667 P PPL DE 14 29792 102 Europe/Berlin 2012-01-18
-2811905 Weißendorf Weissendorf 50.68333 12 P PPLA4 DE 15 00 16076 16076081 372 399 Europe/Berlin 2011-04-25
-2811909 Weißenburg in Bayern Weissenburg in Bayern Weissenburg 49.03095 10.97221 P PPL DE 02 17801 428 Europe/Berlin 2009-06-15
-2811918 Weißenbrunn Weissenbrunn 50.2 11.35 P PPLA4 DE 02 094 09476 09476185 3110 331 Europe/Berlin 2011-04-25
-2811927 Weißenborn-Lüderode Weissenborn-Luderode Weissenborn-Luderode,Weißenborn-Lüderode 51.53333 10.41667 P PPLA4 DE 15 00 16061 16061104 1495 232 Europe/Berlin 2011-04-25
-2811930 Weißenborn Weissenborn 51.11667 10.11667 P PPLA4 DE 05 066 06636 06636015 0 441 Europe/Berlin 2011-04-25
-2811934 Weißenborn Weissenborn 50.93333 11.88333 P PPLA4 DE 15 00 16074 16074109 1311 314 Europe/Berlin 2011-04-25
-2811937 Weißenborn Weissenborn 50.73333 12.46667 P PPL DE 13 2747 297 Europe/Berlin 2006-01-17
-2811941 Weißenberg Weissenberg Weissenberg,Weißenberg 51.2 14.66667 P PPL DE 13 3583 196 Europe/Berlin 2012-01-18
-2812009 Weißdorf Weissdorf 50.18333 11.85 P PPLA4 DE 02 094 09475 09475184 1382 551 Europe/Berlin 2011-04-25
-2812032 Weißbach Weissbach 50.81667 11.78333 P PPLA4 DE 15 00 16074 16074108 0 318 Europe/Berlin 2011-04-25
-2812036 Weißbach Weissbach 49.29717 9.59531 P PPLA4 DE 01 081 08126 08126086 2082 205 Europe/Berlin 2011-04-25
-2812043 Weißandt-Gölzau Weissandt-Golzau Golzau-Weissandt,Gölzau-Weißandt,Weissandt-Golzau,Weißandt-Gölzau 51.66667 12.06667 P PPL DE 14 1434 82 Europe/Berlin 2012-01-18
-2812053 Weissach Weissach 48.84687 8.92828 P PPL DE 01 081 08115 08115052 7712 358 Europe/Berlin 2011-07-31
-2812067 Weismain Weismain 50.08486 11.23979 P PPL DE 02 4840 318 Europe/Berlin 2008-08-14
-2812071 Weiskirchen Weiskirchen 49.55 6.81667 P PPLA4 DE 09 00 10042 10042117 6316 352 Europe/Berlin 2011-04-25
-2812084 Weisenheim am Sand Weisenheim am Sand 49.51806 8.24778 P PPLA4 DE 08 00 07332 07332050 0 109 Europe/Berlin 2011-04-25
-2812085 Weisenheim am Berg Weisenheim am Berg 49.51306 8.15389 P PPLA4 DE 08 00 07332 07332049 0 233 Europe/Berlin 2011-04-25
-2812086 Weisendorf Weisendorf 49.62283 10.82531 P PPL DE 02 6118 308 Europe/Berlin 2008-10-07
-2812092 Weisenbach Weisenbach 48.71667 8.35 P PPLA4 DE 01 082 08216 08216059 2720 500 Europe/Berlin 2011-04-25
-2812095 Weisen Weisen 53.03333 11.78333 P PPLA4 DE 11 00 12070 12070416 1103 24 Europe/Berlin 2011-07-31
-2812099 Weisel Weisel 50.11667 7.8 P PPLA4 DE 08 00 07141 07141136 1161 397 Europe/Berlin 2011-04-25
-2812104 Weischlitz Weischlitz 50.45 12.06667 P PPLA4 DE 13 145 14523 14523450 3614 387 Europe/Berlin 2011-07-31
-2812118 Weira Weira Weira 50.7 11.71667 P PPLA4 DE 15 00 16075 16075121 427 411 Europe/Berlin 2011-04-25
-2812145 Weinstadt-Endersbach Weinstadt-Endersbach Endersbach 48.81311 9.36387 P PPL DE 01 26166 235 Europe/Berlin 2008-12-23
-2812148 Weinsheim Weinsheim 50.23333 6.46667 P PPLA4 DE 08 00 07232 07232226 1046 600 Europe/Berlin 2011-04-25
-2812149 Weinsheim Weinsheim 49.83333 7.76667 P PPLA4 DE 08 00 07133 07133112 1893 178 Europe/Berlin 2011-04-25
-2812158 Weinsberg Weinsberg Weinsberg 49.15028 9.28833 P PPL DE 01 11855 191 Europe/Berlin 2012-02-28
-2812164 Weinolsheim Weinolsheim 49.81583 8.27278 P PPLA4 DE 08 00 07339 07339064 714 186 Europe/Berlin 2011-04-25
-2812174 Weinheim Weinheim Weinheim,wyynhyym,ויינהיים 49.54833 8.66611 P PPL DE 01 43325 113 Europe/Berlin 2012-01-18
-2812193 Weingarten Weingarten 50.98333 10.53333 P PPLA4 DE 15 00 16067 16067077 177 296 Europe/Berlin 2011-04-25
-2812196 Weingarten Weingarten 49.25972 8.28667 P PPL DE 08 1532 122 Europe/Berlin 2006-01-17
-2812197 Weingarten Weingarten Weingarten 49.05611 8.52472 P PPL DE 01 9556 116 Europe/Berlin 2012-01-18
-2812204 Weingarten Weingarten Weingarten 47.8 9.63333 P PPL DE 01 23802 452 Europe/Berlin 2012-01-18
-2812225 Weinböhla Weinbohla Weinbohla,Weinböhla 51.16667 13.56667 P PPLA4 DE 13 146 14627 14627310 10456 137 Europe/Berlin 2011-07-31
-2812469 Weinbach Weinbach Weinbach 50.43333 8.3 P PPLA4 DE 05 065 06533 06533019 4763 203 Europe/Berlin 2011-07-31
-2812471 Weinähr Weinahr 50.31667 7.85 P PPLA4 DE 08 00 07141 07141135 482 101 Europe/Berlin 2011-04-25
-2812482 Weimar Weimar Vajmar,Vajmaro,Vejmar,Vymar,Výmar,Weimar,faymar,vu~aimaru,waymar,wei ma,Ваймар,Вајмар,Веймар,ויימאר,فايمار,وایمار,ヴァイマル,魏玛 50.98333 11.31667 P PPL DE 15 64727 229 Europe/Berlin 2012-01-18
-2812484 Weiltingen Weiltingen Weiltingen 49.03333 10.45 P PPL DE 02 1433 438 Europe/Berlin 2012-01-18
-2812497 Weilmünster Weilmunster Weilmunster,Weilmünster 50.43333 8.36667 P PPL DE 05 9402 221 Europe/Berlin 2012-01-18
-2812502 Weil im Schönbuch Weil im Schonbuch Weil 48.6227 9.06355 P PPLA4 DE 01 081 08115 08115051 10037 481 Europe/Berlin 2011-04-25
-2812509 Weilheim an der Teck Weilheim an der Teck 48.61572 9.53751 P PPL DE 01 9634 383 Europe/Berlin 2008-12-21
-2812515 Weilheim in Oberbayern Weilheim in Oberbayern Weilheim,Weilheim in Oberbayern,Wilheim 47.83333 11.15 P PPL DE 02 21401 569 Europe/Berlin 2012-01-18
-2812516 Weilheim Weilheim Weilheim 47.66667 8.23333 P PPLA4 DE 01 083 08337 08337118 3185 669 Europe/Berlin 2011-04-25
-2812522 Weilerswist Weilerswist Weilerswist 50.76667 6.83333 P PPLA4 DE 07 053 05366 05366040 16321 112 Europe/Berlin 2011-07-31
-2812568 Weilerbach Weilerbach 49.48333 7.63333 P PPLA4 DE 08 00 07335 07335049 4476 231 Europe/Berlin 2011-04-25
-2812580 Weiler Weiler 50.31667 7.11667 P PPLA4 DE 08 00 07137 07137110 527 426 Europe/Berlin 2011-04-25
-2812582 Weiler Weiler 50.15 7.08333 P PPLA4 DE 08 00 07135 07135089 0 385 Europe/Berlin 2011-04-25
-2812584 Weiler Weiler 49.95696 7.86484 P PPL DE 08 00 2712 256 Europe/Berlin 2010-11-22
-2812617 Weilen unter den Rinnen Weilen unter den Rinnen 48.18984 8.76486 P PPLA4 DE 01 084 08417 08417071 638 701 Europe/Berlin 2011-04-25
-2812625 Weil der Stadt Weil der Stadt Weil der Stadt 48.75 8.86667 P PPL DE 01 19338 406 Europe/Berlin 2012-01-18
-2812626 Weilburg Weilburg Weilburg 50.48333 8.25 P PPL DE 05 13798 229 Europe/Berlin 2012-01-18
-2812633 Weilbach Weilbach Weilbach 49.66528 9.21861 P PPL DE 02 2342 160 Europe/Berlin 2012-01-18
-2812634 Weilar Weilar 50.76667 10.15 P PPLA4 DE 15 00 16063 16063084 898 284 Europe/Berlin 2011-04-25
-2812636 Weil am Rhein Weil am Rhein Stadt Weil am Rhein,Vajl'-na-Rejne,Weil am Rhein,Weil-am-Rhein,Вайль-на-Рейне 47.59331 7.62082 P PPL DE 01 29548 277 Europe/Berlin 2011-12-14
-2812644 Weil Weil 48.11717 10.92161 P PPLA4 DE 02 091 09181 09181145 3664 587 Europe/Berlin 2011-04-25
-2812655 Weikersheim Weikersheim Weikersheim 49.48056 9.905 P PPL DE 01 7569 227 Europe/Berlin 2012-02-28
-2812670 Weihmichl Weihmichl 48.6 12.05 P PPLA4 DE 02 092 09274 09274187 2479 435 Europe/Berlin 2011-04-25
-2812752 Weiherhammer Weiherhammer 49.63333 12.06667 P PPLA4 DE 02 093 09374 09374166 4036 390 Europe/Berlin 2011-04-25
-2812831 Weihenzell Weihenzell 49.35 10.61667 P PPLA4 DE 02 095 09571 09571217 2829 399 Europe/Berlin 2011-04-25
-2812854 Weigenheim Weigenheim 49.56667 10.26667 P PPLA4 DE 02 095 09575 09575179 978 348 Europe/Berlin 2011-04-25
-2812855 Weigendorf Weigendorf 49.5 11.56667 P PPLA4 DE 02 093 09371 09371157 1292 381 Europe/Berlin 2011-04-25
-2812914 Weidingen Weidingen 50.01667 6.38333 P PPLA4 DE 08 00 07232 07232132 207 414 Europe/Berlin 2011-04-25
-2812915 Weiding Weiding 49.48333 12.56667 P PPLA4 DE 02 093 09376 09376176 0 666 Europe/Berlin 2011-04-25
-2812916 Weiding Weiding 49.38333 12.21667 P PPL DE 02 2629 396 Europe/Berlin 2006-01-17
-2812917 Weiding Weiding 49.26667 12.76667 P PPLA4 DE 02 093 09372 09372174 0 387 Europe/Berlin 2011-04-25
-2812931 Weidhausen bei Coburg Weidhausen bei Coburg Weidhausen bei Coburg 50.2 11.13333 P PPL DE 02 3331 330 Europe/Berlin 2012-02-02
-2812954 Weidenthal Weidenthal 49.41667 8 P PPLA4 DE 08 00 07332 07332048 2018 213 Europe/Berlin 2011-04-25
-2812958 Weidenstetten Weidenstetten 48.5525 9.9961 P PPLA4 DE 01 084 08425 08425130 1249 587 Europe/Berlin 2011-04-25
-2812994 Weidenhahn Weidenhahn 50.55 7.83333 P PPLA4 DE 08 00 07143 07143305 542 394 Europe/Berlin 2011-04-25
-2813021 Weidenbach Weidenbach 50.15 7.88333 P PPLA4 DE 08 00 07141 07141134 118 397 Europe/Berlin 2011-04-25
-2813022 Weidenbach Weidenbach 50.13333 6.71667 P PPLA4 DE 08 00 07233 07233081 273 512 Europe/Berlin 2011-04-25
-2813023 Weidenbach Weidenbach Weidenbach 49.2 10.63333 P PPL DE 02 2276 437 Europe/Berlin 2012-01-18
-2813039 Weiden Weiden 49.81667 7.3 P PPLA4 DE 08 00 07134 07134091 97 417 Europe/Berlin 2011-04-25
-2813040 Weiden Weiden Vajden,Weiden,Weyden,Вайден 49.6775 12.15667 P PPL DE 02 42550 399 Europe/Berlin 2012-01-18
-2813110 Weida Weida Weida 50.76667 12.06667 P PPL DE 15 8528 286 Europe/Berlin 2012-01-18
-2813145 Weichs Weichs 48.38333 11.41667 P PPLA4 DE 02 091 09174 09174151 3123 483 Europe/Berlin 2011-04-25
-2813152 Weichering Weichering 48.71667 11.31667 P PPLA4 DE 02 091 09185 09185168 2244 374 Europe/Berlin 2011-04-25
-2813176 Weibersbrunn Weibersbrunn 49.93083 9.36611 P PPLA4 DE 02 096 09671 09671157 2142 361 Europe/Berlin 2011-07-31
-2813180 Weibern Weibern 50.4 7.15 P PPLA4 DE 08 00 07131 07131211 1585 456 Europe/Berlin 2011-04-25
-2813209 Wehringen Wehringen 48.25 10.8 P PPLA4 DE 02 097 09772 09772215 2877 522 Europe/Berlin 2011-04-25
-2813216 Wehrheim Wehrheim Wehrheim 50.3 8.56667 P PPLA4 DE 05 064 06434 06434012 9383 314 Europe/Berlin 2011-04-25
-2813246 Wehrbleck Wehrbleck 52.6289 8.69019 P PPLA4 DE 06 00 03251 03251045 900 42 Europe/Berlin 2011-07-31
-2813259 Wehr Wehr 50.41667 7.21667 P PPLA4 DE 08 00 07131 07131210 1152 354 Europe/Berlin 2011-04-25
-2813262 Wehr Wehr 47.62983 7.90423 P PPL DE 01 083 13037 358 Europe/Berlin 2010-11-15
-2813277 Wehnde Wehnde Wehnde 51.48333 10.31667 P PPLA4 DE 15 00 16061 16061103 412 290 Europe/Berlin 2011-04-25
-2813308 Wehingen Wehingen 48.14533 8.79151 P PPLA4 DE 01 083 08327 08327051 3731 779 Europe/Berlin 2011-04-25
-2813344 Wegscheid Wegscheid 48.60136 13.78733 P PPL DE 02 092 09275 09275156 5817 716 Europe/Berlin 2011-07-14
-2813383 Wegeleben Wegeleben Wegeleben 51.88333 11.16667 P PPL DE 14 3132 99 Europe/Berlin 2012-01-18
-2813390 Wegberg Wegberg Wegberg 51.15 6.26667 P PPL DE 07 29622 65 Europe/Berlin 2012-01-18
-2813405 Weferlingen Weferlingen Weferlingen 52.31205 11.05791 P PPL DE 14 2444 87 Europe/Berlin 2011-05-03
-2813407 Wefensleben Wefensleben Wefensleben 52.18319 11.16074 P PPLA4 DE 14 00 15083 15083535 2188 123 Europe/Berlin 2011-05-03
-2813410 Weeze Weeze 51.62678 6.19792 P PPLA4 DE 07 051 05154 05154064 10131 21 Europe/Berlin 2011-04-25
-2813425 Weesby Weesby Weesby 54.83333 9.15 P PPLA4 DE 10 00 01059 01059177 479 25 Europe/Berlin 2011-04-25
-2813427 Wees Wees Wees 54.81667 9.51667 P PPLA4 DE 10 00 01059 01059176 2247 34 Europe/Berlin 2011-04-25
-2813431 Weenzen Weenzen 52.03333 9.66667 P PPLA4 DE 06 00 03254 03254040 433 283 Europe/Berlin 2011-04-25
-2813433 Weener Weener Weener 53.16667 7.35 P PPL DE 06 15718 4 Europe/Berlin 2012-01-18
-2813442 Weede Weede Weede 53.91667 10.38333 P PPLA4 DE 10 00 01060 01060096 992 50 Europe/Berlin 2011-04-25
-2813455 Wedendorf Wedendorf 53.76667 11.11667 P PPLA4 DE 12 00 13058 13058107 307 35 Europe/Berlin 2011-04-25
-2813464 Wedel Wedel Wedel 53.58374 9.69835 P PPL DE 10 31995 11 Europe/Berlin 2011-08-23
-2813468 Weddingstedt Weddingstedt 54.23333 9.1 P PPLA4 DE 10 00 01051 01051122 2235 8 Europe/Berlin 2011-04-25
-2813480 Weddersleben Weddersleben Weddersleben 51.76667 11.08333 P PPL DE 14 1086 153 Europe/Berlin 2012-01-18
-2813493 Weddelbrook Weddelbrook Weddelbrook 53.9 9.83333 P PPLA4 DE 10 00 01060 01060095 1025 19 Europe/Berlin 2011-04-25
-2813524 Wechselburg Wechselburg 51 12.76667 P PPLA4 DE 13 145 14522 14522580 2223 166 Europe/Berlin 2011-04-25
-2813531 Wechingen Wechingen 48.9 10.61667 P PPLA4 DE 02 097 09779 09779226 1416 409 Europe/Berlin 2011-04-25
-2813539 Weberstedt Weberstedt 51.1 10.5 P PPLA4 DE 15 00 16064 16064065 592 282 Europe/Berlin 2011-04-25
-2813573 Waxweiler Waxweiler Waxweiler 50.1 6.36667 P PPLA4 DE 08 00 07232 07232322 1128 367 Europe/Berlin 2011-04-25
-2813580 Wawern Wawern 50.11667 6.48333 P PPLA4 DE 08 00 07232 07232321 318 454 Europe/Berlin 2011-04-25
-2813581 Wawern Wawern 49.65 6.55 P PPLA4 DE 08 00 07235 07235144 610 183 Europe/Berlin 2011-04-25
-2813604 Watzerath Watzerath 50.18333 6.36667 P PPLA4 DE 08 00 07232 07232320 447 423 Europe/Berlin 2011-04-25
-2813624 Wattmannshagen Wattmannshagen 53.78333 12.41667 P PPL DE 12 1062 33 Europe/Berlin 2006-01-17
-2813638 Wattenheim Wattenheim 49.52167 8.06167 P PPLA4 DE 08 00 07332 07332047 1632 328 Europe/Berlin 2011-04-25
-2813641 Wattendorf Wattendorf 50.03261 11.12623 P PPLA4 DE 02 094 09471 09471209 694 531 Europe/Berlin 2011-04-25
-2813647 Wattenbek Wattenbek Wattenbek 54.16667 10.05 P PPLA4 DE 10 00 01058 01058170 2883 23 Europe/Berlin 2011-04-25
-2813660 Wathlingen Wathlingen Waditlagun [a. 1022],Wateln,Wathlingen,Wodeln 52.53333 10.15 P PPL DE 06 00 03351 03351021 6431 44 Europe/Berlin 2012-01-18
-2813685 Wasungen Wasungen Wasungen 50.66667 10.36667 P PPL DE 15 3779 298 Europe/Berlin 2012-01-18
-2813700 Wassertrüdingen Wassertrudingen Wassertrudingen,Wassertrüdingen 49.05 10.6 P PPL DE 02 6245 454 Europe/Berlin 2012-01-18
-2813701 Wasserthaleben Wasserthaleben Wasserthaleben 51.25 10.88333 P PPLA4 DE 15 00 16065 16065077 476 235 Europe/Berlin 2011-04-25
-2813723 Wasserlosen Wasserlosen 50.09476 10.03017 P PPLA4 DE 02 096 09678 09678192 3524 340 Europe/Berlin 2011-04-25
-2813728 Wasserliesch Wasserliesch Wasserliesch 49.71667 6.55 P PPLA4 DE 08 00 07235 07235143 2265 242 Europe/Berlin 2011-04-25
-2813732 Wasserleben Wasserleben Wasserleben 51.91667 10.76667 P PPL DE 14 1509 165 Europe/Berlin 2012-01-18
-2813755 Wasserburg am Inn Wasserburg am Inn Wasserburg 48.06053 12.2313 P PPL DE 02 091 12374 436 Europe/Berlin 2010-11-15
-2813758 Wasserburg Wasserburg 48.44105 10.2693 P PPL DE 02 3238 454 Europe/Berlin 2010-08-16
-2813786 Wassenberg Wassenberg Wassenberg 51.1 6.15 P PPL DE 07 16641 42 Europe/Berlin 2012-01-18
-2813787 Wassenach Wassenach 50.43333 7.28333 P PPLA4 DE 08 00 07131 07131209 1174 289 Europe/Berlin 2011-04-25
-2813819 Wasenbach Wasenbach 50.31667 7.96667 P PPLA4 DE 08 00 07141 07141133 359 244 Europe/Berlin 2011-04-25
-2813828 Wasdow Wasdow 53.99566 12.76792 P PPLA4 DE 12 00 13053 13053095 410 12 Europe/Berlin 2011-04-25
-2813847 Wäschenbeuren Waschenbeuren 48.75991 9.68735 P PPLA4 DE 01 081 08117 08117053 3924 415 Europe/Berlin 2011-04-25
-2813860 Wasbüttel Wasbuttel 52.41331 10.59357 P PPLA4 DE 06 00 03151 03151037 1948 68 Europe/Berlin 2011-04-25
-2813864 Wasbek Wasbek Wasbek 54.06667 9.9 P PPLA4 DE 10 00 01058 01058169 2192 22 Europe/Berlin 2011-04-25
-2813877 Warza Warza Warza 51 10.68333 P PPLA4 DE 15 00 16067 16067075 756 278 Europe/Berlin 2011-04-25
-2813888 Wartmannsroth Wartmannsroth 50.16667 9.78333 P PPLA4 DE 02 096 09672 09672161 2313 331 Europe/Berlin 2011-04-25
-2813914 Warthausen Warthausen 48.13333 9.8 P PPLA4 DE 01 084 08426 08426128 4769 524 Europe/Berlin 2011-04-25
-2813931 Wartenberg-Rohrbach Wartenberg-Rohrbach 49.53333 7.85 P PPLA4 DE 08 00 07333 07333080 565 266 Europe/Berlin 2011-04-25
-2813935 Wartenberg Wartenberg Wartenberg,Wartenburg 48.4 11.98333 P PPL DE 02 4548 430 Europe/Berlin 2012-01-18
-2814005 Warstein Warstein Stadt Warstein,Varshtajn,Warstein,Варштайн 51.45 8.36667 P PPL DE 07 28532 373 Europe/Berlin 2012-01-18
-2814011 Warsow Warsow 53.53333 11.3 P PPLA4 DE 12 00 13054 13054113 0 41 Europe/Berlin 2011-04-25
-2814024 Warringholz Warringholz Warringholz 54.08333 9.46667 P PPLA4 DE 10 00 01061 01061108 318 50 Europe/Berlin 2011-04-25
-2814025 Warrenzin Warrenzin 53.89938 12.94807 P PPLA4 DE 12 00 13052 13052085 461 18 Europe/Berlin 2011-04-25
-2814031 Warpe Warpe 52.73333 9.1 P PPLA4 DE 06 00 03256 03256035 811 27 Europe/Berlin 2011-04-25
-2814042 Warnow Warnow 53.88333 11.2 P PPLA4 DE 12 00 13058 13058106 0 34 Europe/Berlin 2011-04-25
-2814043 Warnow Warnow 53.78333 11.88333 P PPLA4 DE 12 00 13053 13053094 1073 31 Europe/Berlin 2011-04-25
-2814047 Warnkenhagen Warnkenhagen 53.85 12.45 P PPLA4 DE 12 00 13053 13053093 399 35 Europe/Berlin 2011-04-25
-2814053 Warngau Warngau 47.83217 11.72173 P PPLA4 DE 02 091 09182 09182136 3600 721 Europe/Berlin 2011-07-31
-2814055 Warnemünde Warnemuende 54.1767 12.08402 P PPLX DE 12 00 8441 4 Europe/Berlin 2010-11-22
-2814062 Warnau Warnau 54.18333 10.16667 P PPLA4 DE 10 00 01057 01057086 360 52 Europe/Berlin 2011-04-25
-2814065 Warmsroth Warmsroth 49.95 7.78333 P PPLA4 DE 08 00 07133 07133110 426 323 Europe/Berlin 2011-04-25
-2814066 Warmsen Warmsen 52.45695 8.84949 P PPLA4 DE 06 00 03256 03256034 3552 46 Europe/Berlin 2011-04-25
-2814077 Warmensteinach Warmensteinach Warmensteinach 49.98333 11.78333 P PPLA4 DE 02 094 09472 09472198 2379 728 Europe/Berlin 2011-04-25
-2814095 Warlow Warlow 53.35 11.4 P PPLA4 DE 12 00 13054 13054112 518 37 Europe/Berlin 2011-04-25
-2814096 Warlitz Warlitz 53.37846 11.14943 P PPLA4 DE 12 00 13054 13054111 468 23 Europe/Berlin 2011-08-28
-2814107 Warin Warin Warin 53.8 11.7 P PPL DE 12 3465 22 Europe/Berlin 2012-01-18
-2814127 Warendorf Warendorf 51.95 7.98333 P PPL DE 07 38707 56 Europe/Berlin 2006-01-17
-2814131 Waren Waren Waren 53.51667 12.68333 P PPL DE 12 21470 64 Europe/Berlin 2012-02-02
-2814133 Wardow Wardow 53.93333 12.41667 P PPLA4 DE 12 00 13053 13053092 1116 34 Europe/Berlin 2011-04-25
-2814142 Warder Warder 54.21667 9.88333 P PPLA4 DE 10 00 01058 01058168 616 25 Europe/Berlin 2011-04-25
-2814146 Wardenburg Wardenburg 53.06667 8.2 P PPLA4 DE 06 00 03458 03458013 16019 7 Europe/Berlin 2011-04-25
-2814153 Warburg Warburg Warburg 51.5 9.16667 P PPL DE 07 24317 230 Europe/Berlin 2012-01-18
-2814157 Warberg Warberg 52.1812 10.91972 P PPLA4 DE 06 00 03154 03154025 978 148 Europe/Berlin 2011-05-03
-2814174 Wapelfeld Wapelfeld Wapelfeld 54.08333 9.6 P PPLA4 DE 10 00 01058 01058167 335 11 Europe/Berlin 2011-04-25
-2814181 Wanzleben Wanzleben Wanzleben 52.05 11.45 P PPL DE 14 5397 95 Europe/Berlin 2012-01-18
-2814187 Wansleben Wansleben 51.46667 11.75 P PPL DE 14 1862 86 Europe/Berlin 2006-01-17
-2814195 Wannweil Wannweil 48.51667 9.15 P PPLA4 DE 01 084 08415 08415080 5092 320 Europe/Berlin 2011-04-25
-2814241 Wanna Wanna 53.75 8.8 P PPLA4 DE 06 00 03352 03352055 2419 253 Europe/Berlin 2011-04-25
-2814246 Wankendorf Wankendorf 54.11667 10.21667 P PPLA4 DE 10 00 01057 01057085 2914 32 Europe/Berlin 2011-04-25
-2814266 Wangerooge Wangerooge Wangerooge 53.8 7.9 P PPL DE 06 1081 -9999 Europe/Berlin 2012-01-18
-2814270 Wangen im Allgäu Wangen im Allgau Wangen im Allgau,Wangen im Allgäu 47.68333 9.83333 P PPL DE 01 27045 549 Europe/Berlin 2012-01-18
-2814273 Wangenheim Wangenheim Wangenheim 51.01667 10.61667 P PPLA4 DE 15 00 16067 16067074 706 268 Europe/Berlin 2011-04-25
-2814279 Wangen Wangen 48.72933 9.61175 P PPLA4 DE 01 081 08117 08117055 3209 382 Europe/Berlin 2011-07-31
-2814287 Wangels Wangels Wangels 54.26667 10.76667 P PPLA4 DE 10 00 01055 01055043 2428 53 Europe/Berlin 2011-04-25
-2814288 Wangelnstedt Wangelnstedt 51.86667 9.68333 P PPLA4 DE 06 00 03255 03255036 681 260 Europe/Berlin 2011-04-25
-2814292 Wangelau Wangelau Wangelau 53.45 10.55 P PPLA4 DE 10 00 01053 01053128 231 36 Europe/Berlin 2011-04-25
-2814294 Wang Wang 48.5 11.95 P PPLA4 DE 02 091 09178 09178155 2284 427 Europe/Berlin 2011-04-25
-2814297 Wanfried Wanfried Wanfried 51.18333 10.16667 P PPL DE 05 4398 172 Europe/Berlin 2012-01-18
-2814305 Wandlitz Wandlitz 52.74196 13.45799 P PPLA4 DE 11 00 12060 12060269 19888 66 Europe/Berlin 2011-04-25
-2814312 Wanderup Wanderup Wanderup 54.68333 9.33333 P PPLA4 DE 10 00 01059 01059174 2270 23 Europe/Berlin 2011-04-25
-2814313 Wandersleben Wandersleben Wandersleben 50.9 10.85 P PPL DE 15 1716 265 Europe/Berlin 2012-01-18
-2814362 Waltrop Waltrop Waltrop 51.63333 7.4 P PPL DE 07 30220 58 Europe/Berlin 2012-01-18
-2814372 Walting Walting Walting 48.91667 11.3 P PPLA4 DE 02 091 09176 09176165 0 390 Europe/Berlin 2011-04-25
-2814392 Waltershausen Waltershausen Waltershausen 50.9 10.56667 P PPL DE 15 11445 325 Europe/Berlin 2012-01-18
-2814406 Waltersdorf Waltersdorf 50.83333 11.75 P PPLA4 DE 15 00 16074 16074107 183 255 Europe/Berlin 2011-04-25
-2814415 Walterschen Walterschen 50.68333 7.56667 P PPLA4 DE 08 00 07132 07132112 137 249 Europe/Berlin 2011-04-25
-2814445 Waltenhofen Waltenhofen 47.66667 10.3 P PPLA4 DE 02 097 09780 09780143 9045 715 Europe/Berlin 2011-04-25
-2814448 Waltenhausen Waltenhausen 48.19047 10.36457 P PPLA4 DE 02 097 09774 09774192 726 545 Europe/Berlin 2011-04-25
-2814462 Walsrode Walsrode Walsrode 52.86667 9.6 P PPL DE 06 24448 39 Europe/Berlin 2012-01-18
-2814465 Walsleben Walsleben 52.93829 12.66449 P PPLA4 DE 11 00 12068 12068452 803 44 Europe/Berlin 2011-04-25
-2814469 Walsheim Walsheim 49.23722 8.12694 P PPLA4 DE 08 00 07337 07337082 550 167 Europe/Berlin 2011-04-25
-2814471 Walshausen Walshausen 49.21667 7.48333 P PPLA4 DE 08 00 07340 07340226 356 299 Europe/Berlin 2011-04-25
-2814476 Walsdorf Walsdorf 50.28333 6.71667 P PPLA4 DE 08 00 07233 07233080 876 472 Europe/Berlin 2011-04-25
-2814478 Walsdorf Walsdorf 49.86667 10.78333 P PPLA4 DE 02 094 09471 09471208 2541 290 Europe/Berlin 2011-04-25
-2814479 Walschleben Walschleben 51.06667 10.93333 P PPLA4 DE 15 00 16068 16068057 1904 163 Europe/Berlin 2011-04-25
-2814486 Walpertskirchen Walpertskirchen 48.2584 11.97527 P PPLA4 DE 02 091 09177 09177142 1960 495 Europe/Berlin 2011-07-31
-2814499 Walpernhain Walpernhain Walpernhain 51.01667 11.95 P PPLA4 DE 15 00 16074 16074106 227 273 Europe/Berlin 2011-04-25
-2814502 Walow Walow 53.42048 12.46622 P PPLA4 DE 12 00 13056 13056071 423 84 Europe/Berlin 2011-04-25
-2814512 Wallwitz Wallwitz 51.58333 11.91667 P PPL DE 14 1124 128 Europe/Berlin 2006-01-17
-2814518 Wallstawe Wallstawe 52.8 11.01667 P PPLA4 DE 14 00 15081 15081545 475 32 Europe/Berlin 2011-04-25
-2814522 Wallscheid Wallscheid 50.1 6.88333 P PPLA4 DE 08 00 07231 07231127 366 445 Europe/Berlin 2011-04-25
-2814526 Wallsbüll Wallsbull 54.76667 9.23333 P PPLA4 DE 10 00 01059 01059173 892 32 Europe/Berlin 2011-04-25
-2814553 Wallmerod Wallmerod 50.48333 7.95 P PPLA4 DE 08 00 07143 07143304 1341 318 Europe/Berlin 2011-04-25
-2814557 Wallmenroth Wallmenroth 50.8 7.83333 P PPLA4 DE 08 00 07132 07132111 1261 275 Europe/Berlin 2011-04-25
-2814570 Wallhausen Wallhausen 51.46117 11.2076 P PPLA4 DE 14 00 15087 15087440 2189 144 Europe/Berlin 2011-04-25
-2814571 Wallhausen Wallhausen 49.88333 7.76667 P PPLA4 DE 08 00 07133 07133109 1617 261 Europe/Berlin 2011-04-25
-2814572 Wallhausen Wallhausen 49.21042 10.06219 P PPLA4 DE 01 081 08127 08127091 3630 438 Europe/Berlin 2011-04-25
-2814577 Wallhalben Wallhalben 49.31667 7.53333 P PPLA4 DE 08 00 07340 07340225 875 360 Europe/Berlin 2011-04-25
-2814582 Wallgau Wallgau Wallgau 47.51667 11.28333 P PPLA4 DE 02 091 09180 09180136 1446 865 Europe/Berlin 2011-04-25
-2814591 Wallertheim Wallertheim 49.83556 8.05139 P PPLA4 DE 08 00 07331 07331068 1826 128 Europe/Berlin 2011-04-25
-2814592 Wallerstein Wallerstein Wallerstein 48.88333 10.46667 P PPL DE 02 3473 435 Europe/Berlin 2012-01-18
-2814596 Wallersheim Wallersheim 50.2 6.53333 P PPLA4 DE 08 00 07232 07232318 753 555 Europe/Berlin 2011-04-25
-2814599 Wallersdorf Wallersdorf Wallersdorf 48.73333 12.75 P PPL DE 02 6702 333 Europe/Berlin 2012-01-18
-2814612 Wallerfing Wallerfing 48.68333 12.88333 P PPLA4 DE 02 092 09271 09271152 1388 363 Europe/Berlin 2011-04-25
-2814613 Wallerfangen Wallerfangen Wallerfangen 49.33333 6.71667 P PPLA4 DE 09 00 10044 10044121 9733 183 Europe/Berlin 2011-04-25
-2814632 Wallenhorst Wallenhorst Wallenhorst 52.35 8.01667 P PPLA4 DE 06 00 03459 03459033 24201 96 Europe/Berlin 2011-04-25
-2814637 Wallenfels Wallenfels Wallenfels 50.2685 11.47058 P PPL DE 02 3101 450 Europe/Berlin 2012-03-04
-2814640 Wallendorf Wallendorf Wallendorf 51.36667 12.08333 P PPL DE 14 1005 86 Europe/Berlin 2012-02-02
-2814643 Wallendorf Wallendorf 49.86667 6.3 P PPLA4 DE 08 00 07232 07232131 381 184 Europe/Berlin 2011-04-25
-2814650 Wallenborn Wallenborn 50.15 6.71667 P PPLA4 DE 08 00 07233 07233079 493 442 Europe/Berlin 2011-04-25
-2814655 Wallen Wallen 54.28333 9.26667 P PPLA4 DE 10 00 01051 01051120 41 253 Europe/Berlin 2011-04-25
-2814667 Walldürn Walldurn Walldurn,Walldürn 49.58333 9.36667 P PPL DE 01 12113 417 Europe/Berlin 2012-02-28
-2814668 Walldorf Walldorf 50.61667 10.38333 P PPLA4 DE 15 00 16066 16066085 2281 275 Europe/Berlin 2011-04-25
-2814670 Walldorf Walldorf Walldorf 49.30639 8.64528 P PPL DE 01 14842 107 Europe/Berlin 2012-01-18
-2814685 Wallbach Wallbach 50.63333 10.4 P PPLA4 DE 15 00 16066 16066084 375 317 Europe/Berlin 2011-04-25
-2814707 Walksfelde Walksfelde Walksfelde 53.63333 10.58333 P PPLA4 DE 10 00 01053 01053127 214 40 Europe/Berlin 2011-04-25
-2814718 Walkertshofen Walkertshofen 48.23333 10.58333 P PPLA4 DE 02 097 09772 09772214 1120 541 Europe/Berlin 2011-04-25
-2814733 Walkenried Walkenried Walkenried 51.58333 10.61667 P PPLA4 DE 06 00 03156 03156012 2485 271 Europe/Berlin 2011-04-25
-2814738 Walkendorf Walkendorf 53.95215 12.55136 P PPLA4 DE 12 00 13053 13053091 520 32 Europe/Berlin 2011-07-31
-2814747 Walheim Walheim Walheim 49.01417 9.15111 P PPLA4 DE 01 081 08118 08118074 3057 192 Europe/Berlin 2011-04-25
-2814748 Walhausen Walhausen 50.03333 7.28333 P PPLA4 DE 08 00 07135 07135088 230 467 Europe/Berlin 2011-04-25
-2814762 Waldweiler Waldweiler Waldweiler 49.61667 6.8 P PPLA4 DE 08 00 07235 07235142 924 500 Europe/Berlin 2011-04-25
-2814765 Waldthurn Waldthurn 49.67221 12.32919 P PPL DE 02 2189 554 Europe/Berlin 2011-03-01
-2814775 Waldstetten Waldstetten 48.76615 9.82135 P PPLA4 DE 01 081 08136 08136079 7316 382 Europe/Berlin 2011-07-31
-2814776 Waldstetten Waldstetten 48.34815 10.29385 P PPL DE 02 1263 489 Europe/Berlin 2010-08-16
-2814787 Waldsieversdorf Waldsieversdorf 52.55 14.06667 P PPLA4 DE 11 00 12064 12064484 1314 54 Europe/Berlin 2011-04-25
-2814791 Waldshut-Tiengen Waldshut-Tiengen 47.62323 8.21717 P PPL DE 01 22404 341 Europe/Berlin 2007-11-23
-2814795 Waldsee Waldsee 49.39528 8.44028 P PPLA4 DE 08 00 07338 07338026 5384 102 Europe/Berlin 2011-04-25
-2814815 Waldsassen Waldsassen Waldsassen 50.005 12.30278 P PPL DE 02 7505 488 Europe/Berlin 2012-01-18
-2814821 Waldrohrbach Waldrohrbach 49.16667 7.96667 P PPLA4 DE 08 00 07337 07337081 429 279 Europe/Berlin 2011-04-25
-2814832 Waldrach Waldrach 49.74623 6.74543 P PPLA4 DE 08 00 07235 07235141 2015 204 Europe/Berlin 2011-04-25
-2814840 Waldorf Waldorf 50.48333 7.23333 P PPLA4 DE 08 00 07131 07131081 948 176 Europe/Berlin 2011-04-25
-2814846 Waldmünchen Waldmunchen Waldmunchen,Waldmünchen 49.37861 12.70417 P PPL DE 02 7392 501 Europe/Berlin 2012-01-18
-2814847 Waldmühlen Waldmuhlen 50.58333 8.06667 P PPLA4 DE 08 00 07143 07143303 369 419 Europe/Berlin 2011-04-25
-2814851 Waldmohr Waldmohr 49.38333 7.33333 P PPLA4 DE 08 00 07336 07336102 5426 270 Europe/Berlin 2011-04-25
-2814853 Wald-Michelbach Wald-Michelbach 49.57 8.83167 P PPLA4 DE 05 064 06431 06431021 11720 339 Europe/Berlin 2011-04-25
-2814866 Waldleiningen Waldleiningen 49.4 7.88333 P PPLA4 DE 08 00 07335 07335048 453 330 Europe/Berlin 2011-04-25
-2814871 Waldlaubersheim Waldlaubersheim 49.93333 7.83333 P PPLA4 DE 08 00 07133 07133108 804 263 Europe/Berlin 2011-07-31
-2814874 Waldkraiburg Waldkraiburg 48.20854 12.39893 P PPL DE 02 24676 439 Europe/Berlin 2009-01-19
-2814878 Waldkirchen Waldkirchen 50.6 12.36667 P PPL DE 13 1212 487 Europe/Berlin 2006-01-17
-2814880 Waldkirchen Waldkirchen Waldkirchen 48.7327 13.60082 P PPL DE 02 092 09272 09272151 10757 547 Europe/Berlin 2011-07-15
-2814883 Waldkirch Waldkirch 48.09585 7.96371 P PPL DE 01 083 20155 266 Europe/Berlin 2010-11-15
-2814888 Waldkappel Waldkappel Waldkappel 51.15 9.88333 P PPL DE 05 5022 246 Europe/Berlin 2012-01-18
-2814914 Waldhof-Falkenstein Waldhof-Falkenstein 49.96667 6.18333 P PPLA4 DE 08 00 07232 07232130 44 244 Europe/Berlin 2011-04-25
-2814956 Waldheim Waldheim Waldheim 51.06667 13.01667 P PPL DE 13 9001 252 Europe/Berlin 2012-01-18
-2815002 Waldhambach Waldhambach 49.16667 7.98333 P PPLA4 DE 08 00 07337 07337080 369 279 Europe/Berlin 2011-04-25
-2815010 Waldgrehweiler Waldgrehweiler 49.66667 7.73333 P PPLA4 DE 08 00 07333 07333079 261 291 Europe/Berlin 2011-04-25
-2815032 Waldfischbach-Burgalben Waldfischbach-Burgalben Waldfischbach-Burgalben 49.28333 7.66667 P PPLA4 DE 08 00 07340 07340054 5111 352 Europe/Berlin 2011-04-25
-2815035 Waldfeucht Waldfeucht 51.0661 5.98815 P PPLA4 DE 07 053 05370 05370032 9305 50 Europe/Berlin 2011-04-25
-2815046 Waldesch Waldesch 50.28333 7.55 P PPLA4 DE 08 00 07137 07137227 0 313 Europe/Berlin 2011-04-25
-2815048 Waldershof Waldershof Waldershof 49.98333 12.06667 P PPL DE 02 4634 555 Europe/Berlin 2012-01-18
-2815059 Walderbach Walderbach 49.18333 12.38333 P PPLA4 DE 02 093 09372 09372170 2087 352 Europe/Berlin 2011-04-25
-2815074 Waldenburg Waldenburg Waldenburg 50.88333 12.6 P PPL DE 13 4597 256 Europe/Berlin 2012-01-18
-2815075 Waldenburg Waldenburg Waldenburg 49.1875 9.64222 P PPL DE 01 3127 499 Europe/Berlin 2012-01-18
-2815076 Waldenbuch Waldenbuch 48.6383 9.13256 P PPL DE 01 8803 347 Europe/Berlin 2008-12-23
-2815101 Waldeck Waldeck 51.20618 9.06286 P PPL DE 05 066 7785 399 Europe/Berlin 2010-11-15
-2815102 Waldeck Waldeck 50.91667 11.78333 P PPLA4 DE 15 00 16074 16074105 286 352 Europe/Berlin 2011-04-25
-2815127 Waldbüttelbrunn Waldbuttelbrunn 49.78833 9.84667 P PPLA4 DE 02 096 09679 09679205 5099 323 Europe/Berlin 2011-04-25
-2815128 Waldburg Waldburg 47.76667 9.71667 P PPLA4 DE 01 084 08436 08436079 2920 726 Europe/Berlin 2011-04-25
-2815132 Waldbrunn Waldbrunn 49.75861 9.80361 P PPLA4 DE 02 096 09679 09679204 2582 316 Europe/Berlin 2011-04-25
-2815137 Waldbröl Waldbrol Waldbrol,Waldbröl 50.88333 7.61667 P PPL DE 07 19533 293 Europe/Berlin 2012-01-18
-2815138 Waldbreitbach Waldbreitbach 50.55 7.41667 P PPLA4 DE 08 00 07138 07138076 1956 114 Europe/Berlin 2011-04-25
-2815139 Waldböckelheim Waldbockelheim 49.81667 7.71667 P PPLA4 DE 08 00 07133 07133107 2333 194 Europe/Berlin 2011-04-25
-2815180 Waldaschaff Waldaschaff 49.97528 9.30194 P PPLA4 DE 02 096 09671 09671156 4056 220 Europe/Berlin 2011-07-31
-2815186 Waldalgesheim Waldalgesheim 49.95 7.83333 P PPLA4 DE 08 00 07339 07339062 3676 291 Europe/Berlin 2011-04-25
-2815198 Wald Wald 49.15 12.35 P PPLA4 DE 02 093 09372 09372169 2787 552 Europe/Berlin 2011-04-25
-2815204 Wald Wald Kloster Wald,Wald 47.96667 10.3 P PPL DE 02 1021 676 Europe/Berlin 2012-01-18
-2815205 Wald Wald Wald 47.93333 9.16667 P PPLA4 DE 01 084 08437 08437118 2706 657 Europe/Berlin 2011-04-25
-2815207 Wald Wald 47.71667 10.55 P PPLA4 DE 02 097 09777 09777179 0 837 Europe/Berlin 2011-04-25
-2815218 Walchum Walchum 52.92717 7.28325 P PPLA4 DE 06 00 03454 03454056 1299 8 Europe/Berlin 2011-09-11
-2815297 Waischenfeld Waischenfeld 49.84645 11.3481 P PPL DE 02 3167 365 Europe/Berlin 2010-09-06
-2815300 Wain Wain 48.18904 10.0209 P PPLA4 DE 01 084 08426 08426125 1586 545 Europe/Berlin 2011-04-25
-2815303 Waigolshausen Waigolshausen 49.95 10.13333 P PPLA4 DE 02 096 09678 09678190 2931 276 Europe/Berlin 2011-04-25
-2815305 Waigandshain Waigandshain 50.65 8.08333 P PPLA4 DE 08 00 07143 07143302 218 544 Europe/Berlin 2011-04-25
-2815315 Waidhofen Waidhofen 48.58333 11.33333 P PPLA4 DE 02 091 09185 09185166 2152 401 Europe/Berlin 2011-04-25
-2815317 Waidhaus Waidhaus 49.64218 12.49523 P PPL DE 02 2467 526 Europe/Berlin 2010-05-27
-2815328 Waibstadt Waibstadt Waibstadt 49.29806 8.91917 P PPL DE 01 5762 171 Europe/Berlin 2012-01-18
-2815330 Waiblingen Waiblingen 48.83241 9.31641 P PPL DE 01 52945 233 Europe/Berlin 2008-12-20
-2815345 Wahrenholz Wahrenholz Wahrenholz 52.61667 10.6 P PPLA4 DE 06 00 03151 03151036 3830 62 Europe/Berlin 2011-04-25
-2815369 Wahnwegen Wahnwegen 49.48333 7.38333 P PPLA4 DE 08 00 07336 07336101 728 333 Europe/Berlin 2011-04-25
-2815373 Wahns Wahns Wahns 50.63333 10.3 P PPLA4 DE 15 00 16066 16066083 505 365 Europe/Berlin 2011-04-25
-2815390 Wahlstorf (Dorf) Wahlstorf (Dorf) 54.17836 10.29462 P PPLA4 DE 10 00 01057 01057084 514 37 Europe/Berlin 2011-04-25
-2815391 Wahlstorf Wahlstorf 53.36131 12.09629 P PPLA4 DE 12 00 13060 13060081 157 64 Europe/Berlin 2011-07-31
-2815392 Wahlstedt Wahlstedt Wahlstedt 53.95 10.21667 P PPL DE 10 9553 46 Europe/Berlin 2012-01-18
-2815410 Wahlrod Wahlrod 50.65 7.71667 P PPLA4 DE 08 00 07143 07143301 883 278 Europe/Berlin 2011-04-25
-2815412 Wahlitz Wahlitz 52.1 11.78333 P PPL DE 14 1027 49 Europe/Berlin 2006-01-17
-2815418 Wahlheim Wahlheim 49.71778 8.10611 P PPLA4 DE 08 00 07331 07331067 579 229 Europe/Berlin 2011-04-25
-2815419 Wahlhausen Wahlhausen Wahlhausen 51.3 9.98333 P PPLA4 DE 15 00 16061 16061102 356 185 Europe/Berlin 2011-04-25
-2815436 Wahlenau Wahlenau 49.9 7.25 P PPLA4 DE 08 00 07140 07140159 210 447 Europe/Berlin 2011-04-25
-2815456 Wahlbach Wahlbach 50 7.6 P PPLA4 DE 08 00 07140 07140158 173 445 Europe/Berlin 2011-04-25
-2815484 Waging am See Waging am See Waging,Waging am See 47.93333 12.73333 P PPL DE 02 6291 464 Europe/Berlin 2012-01-18
-2815487 Waghäusel Waghausel Waghausel,Waghäusel 49.25639 8.50722 P PPL DE 01 20178 98 Europe/Berlin 2012-01-18
-2815491 Wagersrott Wagersrott Wagersrott 54.66667 9.8 P PPLA4 DE 10 00 01059 01059095 226 37 Europe/Berlin 2011-04-25
-2815507 Wagenhoff Wagenhoff 52.53333 10.51667 P PPLA4 DE 06 00 03151 03151035 1150 61 Europe/Berlin 2011-04-25
-2815513 Wagenhausen Wagenhausen 50.15 6.98333 P PPLA4 DE 08 00 07135 07135087 57 407 Europe/Berlin 2011-04-25
-2815523 Wagenfeld Wagenfeld Wagenfeld 52.55 8.58333 P PPLA4 DE 06 00 03251 03251044 7132 40 Europe/Berlin 2011-04-25
-2815552 Waffenbrunn Waffenbrunn 49.26667 12.66667 P PPLA4 DE 02 093 09372 09372168 1999 421 Europe/Berlin 2011-04-25
-2815559 Wadgassen Wadgassen 49.26667 6.78333 P PPLA4 DE 09 00 10044 10044120 18464 230 Europe/Berlin 2011-04-25
-2815563 Wadersloh Wadersloh Wadersloh 51.73333 8.25 P PPLA4 DE 07 055 05570 05570048 13173 95 Europe/Berlin 2011-07-31
-2815565 Wadern Wadern Wadern 49.53333 6.88333 P PPL DE 09 17282 277 Europe/Berlin 2012-01-18
-2815579 Waddeweitz Waddeweitz 53 10.96667 P PPLA4 DE 06 00 03354 03354024 942 46 Europe/Berlin 2011-04-25
-2815598 Wackersdorf Wackersdorf 49.31667 12.18333 P PPLA4 DE 02 093 09376 09376175 4900 452 Europe/Berlin 2011-04-25
-2815600 Wackersberg Wackersberg 47.73333 11.55 P PPLA4 DE 02 091 09173 09173145 3463 727 Europe/Berlin 2011-04-25
-2815603 Wackerow Wackerow 54.1035 13.34513 P PPLA4 DE 12 00 13059 13059098 0 3 Europe/Berlin 2011-04-25
-2815604 Wackerow Wackerow 53.68333 12.98333 P PPL DE 12 1445 74 Europe/Berlin 2006-01-17
-2815605 Wackernheim Wackernheim 49.97444 8.11667 P PPLA4 DE 08 00 07339 07339061 2652 213 Europe/Berlin 2011-04-25
-2815623 Wacken Wacken 54.02078 9.37597 P PPLA4 DE 10 00 01061 01061107 1844 25 Europe/Berlin 2011-04-25
-2815642 Wächtersbach Wachtersbach 50.25511 9.29564 P PPL DE 05 064 12464 148 Europe/Berlin 2010-11-15
-2815651 Wachtendonk Wachtendonk Wachtendonk 51.40916 6.33894 P PPLA4 DE 07 051 05154 05154060 7823 31 Europe/Berlin 2011-11-24
-2815678 Wachtberg Wachtberg 50.63333 7.1 P PPLA4 DE 07 053 05382 05382072 20032 194 Europe/Berlin 2011-07-31
-2815689 Wachstedt Wachstedt Wachstedt 51.3 10.25 P PPLA4 DE 15 00 16061 16061101 568 502 Europe/Berlin 2011-04-25
-2815735 Wachenroth Wachenroth Wachenroth 49.75 10.71667 P PPL DE 02 2205 287 Europe/Berlin 2012-01-18
-2815739 Wachenheim an der Weinstraße Wachenheim an der Weinstrasse Wachenheim,Wachenheim an der Weinstrasse,Wachenheim an der Weinstraße 49.44722 8.17722 P PPL DE 08 4758 148 Europe/Berlin 2012-01-18
-2815740 Wachenheim Wachenheim 49.63667 8.16667 P PPLA4 DE 08 00 07331 07331066 644 164 Europe/Berlin 2011-07-31
-2815782 Wachau Wachau Wachau 51.16667 13.9 P PPLA4 DE 13 146 14625 14625600 4551 231 Europe/Berlin 2011-04-25
-2815784 Wabern Wabern Wabern 51.1 9.35 P PPLA4 DE 05 066 06634 06634025 7708 165 Europe/Berlin 2011-04-25
-2815803 Waal Waal Waal 48 10.78333 P PPL DE 02 2152 632 Europe/Berlin 2012-02-02
-2815804 Waakirchen Waakirchen 47.7725 11.67315 P PPLA4 DE 02 091 09182 09182134 5464 767 Europe/Berlin 2011-08-26
-2815807 Waake Waake 51.55637 10.05713 P PPLA4 DE 06 00 03152 03152027 1429 249 Europe/Berlin 2011-04-25
-2815812 Waabs Waabs Waabs 54.53333 9.98333 P PPLA4 DE 10 00 01058 01058166 1462 32 Europe/Berlin 2011-04-25
-2815823 Vrees Vrees 52.88333 7.76667 P PPLA4 DE 06 00 03454 03454055 1577 34 Europe/Berlin 2011-04-25
-2815824 Vreden Vreden Freden,Frethenna,Vreden,Фреден 52.03792 6.828 P PPL DE 07 22412 41 Europe/Berlin 2011-11-06
-2815987 Vorwerk Vorwerk 53.18333 9.15 P PPLA4 DE 06 00 03357 03357052 1083 18 Europe/Berlin 2011-04-25
-2816010 Vörstetten Vorstetten 48.06667 7.85 P PPLA4 DE 01 083 08316 08316045 2785 211 Europe/Berlin 2011-04-25
-2816043 Vorra Vorra 49.55718 11.49419 P PPLA4 DE 02 095 09574 09574161 1810 365 Europe/Berlin 2011-04-25
-2816127 Vordorf Vordorf 52.36522 10.52035 P PPLA4 DE 06 00 03151 03151034 3310 84 Europe/Berlin 2011-07-31
-2816141 Vorderweidenthal Vorderweidenthal 49.13333 7.88333 P PPLA4 DE 08 00 07337 07337079 680 288 Europe/Berlin 2011-04-25
-2816494 Vorbeck Vorbeck 53.90778 12.07071 P PPLA4 DE 12 00 13051 13051080 360 18 Europe/Berlin 2011-04-25
-2816503 Vorbach Vorbach 49.81667 11.75 P PPLA4 DE 02 093 09374 09374163 1052 442 Europe/Berlin 2011-04-25
-2816524 Volxheim Volxheim 49.81667 7.93333 P PPLA4 DE 08 00 07133 07133106 1056 172 Europe/Berlin 2011-04-25
-2816527 Voltlage Voltlage 52.43333 7.75 P PPLA4 DE 06 00 03459 03459032 1821 46 Europe/Berlin 2011-04-25
-2816531 Völschow Volschow 53.87783 13.33569 P PPLA4 DE 12 00 13052 13052083 602 16 Europe/Berlin 2011-04-25
-2816534 Völpke Volpke Volpke,Völpke 52.13865 11.09877 P PPLA4 DE 14 00 15083 15083515 1622 128 Europe/Berlin 2011-05-03
-2816547 Vollstedt Vollstedt Vollstedt 54.61667 9.03333 P PPLA4 DE 10 00 01054 01054146 162 21 Europe/Berlin 2011-04-25
-2816548 Vollrathsruhe Vollrathsruhe 53.64362 12.48819 P PPLA4 DE 12 00 13056 13056070 545 93 Europe/Berlin 2011-04-25
-2816557 Vollmersweiler Vollmersweiler 49.065 8.07722 P PPLA4 DE 08 00 07334 07334031 221 145 Europe/Berlin 2011-04-25
-2816559 Vollmershain Vollmershain 50.85 12.3 P PPLA4 DE 15 00 16077 16077049 331 258 Europe/Berlin 2011-07-31
-2816562 Vollmersbach Vollmersbach 49.73333 7.31667 P PPLA4 DE 08 00 07134 07134090 582 381 Europe/Berlin 2011-04-25
-2816576 Vollerwiek Vollerwiek Vollerwiek 54.29128 8.79833 P PPLA4 DE 10 00 01054 01054145 212 0 Europe/Berlin 2011-08-23
-2816577 Vollersroda Vollersroda 50.93604 11.33094 P PPLA4 DE 15 00 16071 16071093 217 342 Europe/Berlin 2011-04-25
-2816578 Vollersode Vollersode 53.33333 8.91667 P PPLA4 DE 06 00 03356 03356010 3209 10 Europe/Berlin 2011-04-25
-2816583 Vollenborn Vollenborn Vollenborn 51.35 10.5 P PPLA4 DE 15 00 16061 16061099 280 509 Europe/Berlin 2011-04-25
-2816596 Volkstedt Volkstedt 51.56667 11.56667 P PPL DE 14 1307 222 Europe/Berlin 2006-01-17
-2816616 Volkmarsen Volkmarsen 51.40895 9.11814 P PPL DE 05 066 6959 189 Europe/Berlin 2011-07-11
-2816625 Volkmannsdorf Volkmannsdorf 50.61102 11.73168 P PPLA4 DE 15 00 16075 16075119 319 435 Europe/Berlin 2011-04-25
-2816630 Völklingen Volklingen Volklingen,Völklingen 49.25162 6.85873 P PPL DE 09 41132 197 Europe/Berlin 2011-09-25
-2816639 Volkesfeld Volkesfeld 50.4 7.15 P PPLA4 DE 08 00 07137 07137106 563 456 Europe/Berlin 2011-04-25
-2816640 Volkerzen Volkerzen 50.71667 7.68333 P PPLA4 DE 08 00 07132 07132110 101 271 Europe/Berlin 2011-04-25
-2816646 Volkertshausen Volkertshausen 47.81667 8.86667 P PPLA4 DE 01 083 08335 08335081 2779 445 Europe/Berlin 2011-04-25
-2816652 Völkersweiler Volkersweiler 49.16667 7.93333 P PPLA4 DE 08 00 07337 07337078 661 278 Europe/Berlin 2011-04-25
-2816660 Völkershausen Volkershausen 50.8 10.05 P PPLA4 DE 15 00 16063 16063083 1206 304 Europe/Berlin 2011-04-25
-2816678 Volkerode Volkerode Volkerode 51.26667 10.06667 P PPLA4 DE 15 00 16061 16061098 265 506 Europe/Berlin 2011-04-25
-2816687 Volkenschwand Volkenschwand 48.6 11.88333 P PPLA4 DE 02 092 09273 09273178 1634 503 Europe/Berlin 2011-04-25
-2816702 Volkach Volkach Volkach 49.86667 10.23333 P PPL DE 02 9585 198 Europe/Berlin 2012-01-18
-2816734 Voigtstedt Voigtstedt Voigtstedt 51.38333 11.31667 P PPLA4 DE 15 00 16065 16065076 1058 120 Europe/Berlin 2011-04-25
-2816744 Voigtsdorf Voigtsdorf 53.56667 13.65 P PPLA4 DE 12 00 13055 13055071 111 86 Europe/Berlin 2011-04-25
-2816760 Vöhringen Vohringen 48.33446 8.66392 P PPLA4 DE 01 083 08325 08325061 4183 507 Europe/Berlin 2011-04-25
-2816761 Vöhringen Vohringen 48.27839 10.08236 P PPL DE 02 13207 499 Europe/Berlin 2010-08-16
-2816762 Vöhrenbach Vohrenbach Vohrenbach,Vöhrenbach 48.05 8.3 P PPLA4 DE 01 083 08326 08326068 4167 874 Europe/Berlin 2011-07-31
-2816769 Vöhl Vohl 51.20565 8.9451 P PPLA4 DE 05 066 06635 06635019 6296 303 Europe/Berlin 2011-07-31
-2816770 Vohenstrauß Vohenstrauss Vohenstrausz 49.62383 12.33808 P PPL DE 02 7550 553 Europe/Berlin 2009-08-30
-2816776 Vohburg an der Donau Vohburg an der Donau Vohburg,Vohburg an der Donau 48.76667 11.61667 P PPL DE 02 7101 358 Europe/Berlin 2012-01-18
-2816795 Vogtareuth Vogtareuth Voctareit 47.94694 12.18126 P PPLA4 DE 02 091 09187 09187181 3045 485 Europe/Berlin 2011-04-25
-2816796 Vogt Vogt Vogt 47.76667 9.76667 P PPLA4 DE 01 084 08436 08436078 4534 662 Europe/Berlin 2011-07-31
-2816874 Vögelsen Vogelsen 53.28333 10.35 P PPLA4 DE 06 00 03355 03355039 2299 13 Europe/Berlin 2011-04-25
-2816884 Vogelsberg Vogelsberg 51.13333 11.25 P PPLA4 DE 15 00 16068 16068056 759 158 Europe/Berlin 2011-04-25
-2816920 Vogelsang Vogelsang 52.18235 14.66366 P PPLA4 DE 11 00 12067 12067508 798 30 28 Europe/Berlin 2011-04-25
-2817065 Voerde Voerde Ferde,Voerde,Ферде 51.6 6.68333 P PPL DE 07 38759 25 Europe/Berlin 2012-01-18
-2817080 Vockerode Vockerode Vockerode 51.85 12.35 P PPLA4 DE 14 00 15091 15091365 1741 59 Europe/Berlin 2011-04-25
-2817105 Vlotho Vlotho Flotowe,Flôtôwe 52.1653 8.85996 P PPL DE 07 057 20214 68 Europe/Berlin 2011-11-06
-2817128 Vissum Vissum 52.81667 11.35 P PPLA4 DE 14 00 15081 15081540 268 30 Europe/Berlin 2011-04-25
-2817130 Visselhövede Visselhovede Visselhovede,Visselhövede 52.98333 9.6 P PPL DE 06 10808 72 Europe/Berlin 2012-01-18
-2817139 Visbek Visbek 52.83333 8.31667 P PPLA4 DE 06 00 03460 03460010 9164 53 Europe/Berlin 2011-04-25
-2817146 Virneburg Virneburg 50.35 7.08333 P PPLA4 DE 08 00 07137 07137105 427 409 Europe/Berlin 2011-04-25
-2817148 Vipperow Vipperow 53.32611 12.68887 P PPLA4 DE 12 00 13056 13056069 433 66 Europe/Berlin 2011-04-25
-2817149 Vippachedelhausen Vippachedelhausen 51.08333 11.2 P PPLA4 DE 15 00 16071 16071092 631 185 Europe/Berlin 2011-04-25
-2817154 Viöl Viol Viol,Viöl 54.56667 9.18333 P PPLA4 DE 10 00 01054 01054144 1956 13 Europe/Berlin 2011-07-31
-2817168 Vinningen Vinningen 49.16667 7.55 P PPLA4 DE 08 00 07340 07340053 1723 377 Europe/Berlin 2011-04-25
-2817202 Vilshofen Vilshofen 48.63333 13.18333 P PPL DE 02 16695 321 Europe/Berlin 2006-01-17
-2817204 Vilsheim Vilsheim 48.45 12.11667 P PPLA4 DE 02 092 09274 09274185 2404 466 Europe/Berlin 2011-04-25
-2817207 Vilseck Vilseck Vilseck 49.61 11.80194 P PPL DE 02 6560 399 Europe/Berlin 2012-01-18
-2817209 Vilsbiburg Vilsbiburg Vilsbiburg 48.45 12.35 P PPL DE 02 11416 453 Europe/Berlin 2012-01-18
-2817217 Villmar Villmar Villmar 50.38333 8.2 P PPLA4 DE 05 065 06533 06533015 7334 193 Europe/Berlin 2011-04-25
-2817220 Villingen-Schwenningen Villingen-Schwenningen Villingen-Schwenningen,Villingen-Shvenningen,Виллинген-Швеннинген 48.06667 8.45 P PPL DE 01 81770 710 Europe/Berlin 2012-01-18
-2817222 Villingendorf Villingendorf Villingendorf 48.2 8.58333 P PPLA4 DE 01 083 08325 08325060 3226 640 Europe/Berlin 2011-04-25
-2817230 Villenbach Villenbach 48.50887 10.61468 P PPLA4 DE 02 097 09773 09773179 1283 437 Europe/Berlin 2011-07-31
-2817239 Vilgertshofen Vilgertshofen 47.95 10.91667 P PPLA4 DE 02 091 09181 09181133 2445 703 Europe/Berlin 2011-04-25
-2817252 Veitsrodt Veitsrodt Veitsrodt,Vietsrodt 49.75 7.3 P PPLA4 DE 08 00 07134 07134089 727 432 Europe/Berlin 2011-04-25
-2817311 Viersen Viersen Viersen 51.25 6.38333 P PPL DE 07 76153 62 Europe/Berlin 2012-01-18
-2817324 Viernheim Viernheim Viernheim 49.54167 8.57861 P PPL DE 05 32620 100 Europe/Berlin 2012-01-18
-2817325 Viernau Viernau Viernau 50.66667 10.55 P PPLA4 DE 15 00 16066 16066082 2209 413 Europe/Berlin 2011-07-31
-2817339 Vierkirchen Vierkirchen 48.36667 11.46667 P PPLA4 DE 02 091 09174 09174150 4216 485 Europe/Berlin 2011-04-25
-2817346 Vierhöfen Vierhofen 53.26667 10.21667 P PPLA4 DE 06 00 03353 03353037 966 21 Europe/Berlin 2011-04-25
-2817375 Viereck Viereck 53.54898 14.04001 P PPLA4 DE 12 00 13062 13062060 1375 8 Europe/Berlin 2011-07-31
-2817376 Vierden Vierden 53.33333 9.5 P PPLA4 DE 06 00 03357 03357050 779 35 Europe/Berlin 2011-04-25
-2817394 Vienenburg Vienenburg Vienenburg 51.95 10.56667 P PPL DE 06 11417 164 Europe/Berlin 2012-01-18
-2817404 Vielist Vielist 53.55 12.63333 P PPLA4 DE 12 00 13056 13056068 517 69 Europe/Berlin 2011-04-25
-2817410 Vielbach Vielbach 50.51667 7.76667 P PPLA4 DE 08 00 07143 07143078 588 288 Europe/Berlin 2011-04-25
-2817412 Vielank Vielank 53.23333 11.13333 P PPLA4 DE 12 00 13054 13054110 714 14 Europe/Berlin 2011-04-25
-2817483 Viechtach Viechtach Viechtach 49.07917 12.88472 P PPL DE 02 8653 441 Europe/Berlin 2012-01-18
-2817506 Vettweiß Vettweiss Vettweiss,Vettweiß 50.73333 6.6 P PPLA4 DE 07 053 05358 05358060 9116 161 Europe/Berlin 2011-04-25
-2817512 Vettelschoß Vettelschoss 50.61667 7.35 P PPLA4 DE 08 00 07138 07138075 3510 281 Europe/Berlin 2011-04-25
-2817517 Vetschau Vetschau Vetschau 51.78333 14.06667 P PPL DE 11 9857 63 Europe/Berlin 2012-01-18
-2817523 Vestenbergsgreuth Vestenbergsgreuth Vestenbergsgreuth 49.68333 10.63333 P PPL DE 02 1595 334 Europe/Berlin 2012-02-02
-2817537 Versmold Versmold Fersmele,Versmold 52.05 8.15 P PPL DE 07 20996 71 Europe/Berlin 2012-01-18
-2817576 Verl Verl Verl 51.88333 8.51667 P PPLA4 DE 07 057 05754 05754044 24002 94 Europe/Berlin 2011-07-31
-2817581 Veringenstadt Veringenstadt 48.18515 9.21079 P PPL DE 01 2332 651 Europe/Berlin 2008-12-23
-2817599 Verden Verden Verden,feruden,Верден,フェルデン 52.91667 9.23333 P PPL DE 06 26924 24 Europe/Berlin 2012-01-18
-2817616 Venusberg Venusberg Venusberg 50.7 13.01667 P PPL DE 13 2390 462 Europe/Berlin 2012-02-02
-2817620 Ventschow Ventschow 53.78777 11.58045 P PPLA4 DE 12 00 13058 13058103 799 45 Europe/Berlin 2011-04-25
-2817627 Venningen Venningen 49.28167 8.17361 P PPLA4 DE 08 00 07337 07337077 956 136 Europe/Berlin 2011-04-25
-2817659 Vendersheim Vendersheim 49.86639 8.06861 P PPLA4 DE 08 00 07331 07331065 561 211 Europe/Berlin 2011-04-25
-2817668 Veltheim Veltheim Veltheim 52.23333 10.68333 P PPL DE 06 1044 141 Europe/Berlin 2012-02-02
-2817674 Velten Velten Velten 52.68333 13.18333 P PPL DE 11 11498 33 Europe/Berlin 2012-01-18
-2817679 Velpke Velpke 52.40797 10.93637 P PPLA4 DE 06 00 03154 03154024 4506 81 Europe/Berlin 2011-04-28
-2817694 Vellberg Vellberg Vellberg 49.08611 9.88056 P PPL DE 01 4264 381 Europe/Berlin 2012-01-18
-2817696 Vellahn Vellahn 53.4 10.96667 P PPLA4 DE 12 00 13054 13054109 933 30 Europe/Berlin 2011-04-25
-2817703 Velgast Velgast 54.27204 12.81075 P PPLA4 DE 12 00 13057 13057087 2016 16 Europe/Berlin 2011-07-31
-2817704 Velen Velen Felie,Felin,Velen 51.9 6.98333 P PPLA4 DE 07 055 05554 05554064 13074 66 Europe/Berlin 2011-11-06
-2817714 Veldenz Veldenz 49.88333 7.01667 P PPLA4 DE 08 00 07231 07231126 939 193 Europe/Berlin 2011-04-25
-2817717 Velden Velden Velden 49.61667 11.51667 P PPL DE 02 1887 424 Europe/Berlin 2012-01-18
-2817719 Velden Velden Velden 48.36667 12.25 P PPL DE 02 6488 455 Europe/Berlin 2012-01-18
-2817722 Velburg Velburg 49.23212 11.6716 P PPL DE 02 5373 505 Europe/Berlin 2009-06-23
-2817724 Velbert Velbert Velbert 51.33333 7.05 P PPL DE 07 87669 264 Europe/Berlin 2012-01-18
-2817733 Veitshöchheim Veitshochheim 49.83278 9.88167 P PPLA4 DE 02 096 09679 09679202 10279 215 Europe/Berlin 2011-04-25
-2817736 Veitsbronn Veitsbronn 49.51239 10.88797 P PPLA4 DE 02 095 09573 09573130 6194 310 Europe/Berlin 2011-04-25
-2817752 Veilsdorf Veilsdorf Veilsdorf 50.4 10.81667 P PPLA4 DE 15 00 16069 16069053 3225 404 Europe/Berlin 2011-04-25
-2817798 Veelböken Veelboken 53.75 11.18333 P PPLA4 DE 12 00 13058 13058102 791 61 Europe/Berlin 2011-04-25
-2817806 Veckenstedt Veckenstedt Veckenstedt 51.9 10.73333 P PPL DE 14 1433 182 Europe/Berlin 2012-01-18
-2817812 Vechta Vechta Fekhta,Vechta,Фехта 52.71667 8.28333 P PPL DE 06 29729 37 Europe/Berlin 2012-01-18
-2817813 Vechelde Vechelde 52.26038 10.36491 P PPLA4 DE 06 00 03157 03157007 16219 82 Europe/Berlin 2011-04-25
-2817818 Vaterstetten Vaterstetten 48.10537 11.76825 P PPLA4 DE 02 091 09175 09175132 21007 547 Europe/Berlin 2011-04-25
-2817823 Vastorf Vastorf 53.19801 10.54563 P PPLA4 DE 06 00 03355 03355038 943 55 Europe/Berlin 2011-04-25
-2817841 Varrel Varrel 52.6215 8.7331 P PPLA4 DE 06 00 03251 03251043 1368 40 Europe/Berlin 2011-04-25
-2817873 Varel Varel 53.39693 8.13621 P PPLA4 DE 06 00 03455 03455026 25212 9 Europe/Berlin 2011-04-25
-2817881 Varchentin Varchentin 53.58333 12.85 P PPLA4 DE 12 00 13056 13056067 396 36 Europe/Berlin 2011-04-25
-2817894 Valwig Valwig 50.15 7.21667 P PPLA4 DE 08 00 07135 07135086 430 312 Europe/Berlin 2011-04-25
-2817904 Valley Valley 47.8931 11.77915 P PPLA4 DE 02 091 09182 09182133 2968 650 Europe/Berlin 2011-04-25
-2817909 Vallendar Vallendar 50.4 7.61667 P PPL DE 08 8959 75 Europe/Berlin 2006-01-17
-2817927 Vaihingen an der Enz Vaihingen an der Enz Vaihingen,Vaihingen an der Enz 48.93333 8.96667 P PPL DE 01 28867 265 Europe/Berlin 2012-01-18
-2817950 Vahlde Vahlde 53.1851 9.63209 P PPLA4 DE 06 00 03357 03357049 746 38 Europe/Berlin 2011-04-25
-2817951 Vahlbruch Vahlbruch 51.92077 9.34061 P PPLA4 DE 06 00 03255 03255035 542 282 Europe/Berlin 2011-07-31
-2817965 Vachendorf Vachendorf 47.85 12.61667 P PPLA4 DE 02 091 09189 09189161 1770 629 Europe/Berlin 2011-04-25
-2817967 Vachdorf Vachdorf Vachdorf 50.53333 10.53333 P PPLA4 DE 15 00 16066 16066081 831 420 Europe/Berlin 2011-04-25
-2817970 Vacha Vacha 50.8279 10.02185 P PPL DE 15 3856 237 Europe/Berlin 2011-07-19
-2817974 Vaalermoor Vaalermoor Vaalermoor 53.98506 9.33913 P PPLA4 DE 10 00 01061 01061106 150 254 Europe/Berlin 2011-04-25
-2817976 Vaale Vaale Vaale 54 9.38333 P PPLA4 DE 10 00 01061 01061105 1318 11 Europe/Berlin 2011-04-25
-2817980 Üxheim Uxheim Uxheim,Uxheim-Ahutte,Üxheim,Üxheim-Ahütte 50.35 6.75 P PPLA4 DE 08 00 07233 07233076 1399 443 Europe/Berlin 2011-04-25
-2817990 Utzerath Utzerath 50.21667 6.93333 P PPLA4 DE 08 00 07233 07233077 204 449 Europe/Berlin 2011-04-25
-2817995 Utzenhain Utzenhain 50.13333 7.63333 P PPLA4 DE 08 00 07140 07140156 123 397 Europe/Berlin 2011-04-25
-2817996 Utzenfeld Utzenfeld 47.8 7.91667 P PPLA4 DE 01 083 08336 08336090 697 554 Europe/Berlin 2011-04-25
-2818000 Utzedel Utzedel 53.86667 13.11667 P PPLA4 DE 12 00 13052 13052097 431 28 Europe/Berlin 2011-04-25
-2818014 Utting am Ammersee Utting am Ammersee 48.02608 11.08612 P PPL DE 02 3983 561 Europe/Berlin 2009-06-15
-2818025 Uttenweiler Uttenweiler Uttenweiler 48.15 9.61667 P PPLA4 DE 01 084 08426 08426124 3770 576 Europe/Berlin 2011-04-25
-2818027 Uttenreuth Uttenreuth 49.59675 11.07216 P PPLA4 DE 02 095 09572 09572158 4545 294 Europe/Berlin 2011-04-25
-2818059 Uthlede Uthlede 53.31667 8.58333 P PPLA4 DE 06 00 03352 03352054 1020 8 Europe/Berlin 2011-04-25
-2818060 Uthleben Uthleben 51.43333 10.83333 P PPLA4 DE 15 00 16062 16062055 1219 249 Europe/Berlin 2011-04-25
-2818066 Utersum Utersum 54.71431 8.40609 P PPLA4 DE 10 00 01054 01054143 407 4 Europe/Berlin 2011-04-25
-2818067 Uetersen Uetersen Uetersen,Utersen,Ütersen 53.68333 9.66667 P PPL DE 10 17921 3 Europe/Berlin 2012-01-18
-2818073 Utendorf Utendorf Utendorf 50.61667 10.43333 P PPLA4 DE 15 00 16066 16066079 509 442 Europe/Berlin 2011-04-25
-2818079 Utecht Utecht 53.76667 10.76667 P PPLA4 DE 12 00 13058 13058101 375 11 Europe/Berlin 2011-04-25
-2818080 Utarp Utarp 53.61667 7.48333 P PPLA4 DE 06 00 03462 03462016 655 254 Europe/Berlin 2011-04-25
-2818082 Ustersbach Ustersbach Ustersbach 48.31667 10.65 P PPLA4 DE 02 097 09772 09772211 1214 487 Europe/Berlin 2011-07-31
-2818094 Uslar Uslar Uslar 51.6569 9.63501 P PPL DE 06 15951 167 Europe/Berlin 2011-07-11
-2818097 Usingen Usingen Usingen 50.33333 8.53333 P PPL DE 05 13511 279 Europe/Berlin 2012-01-18
-2818099 Userin Userin 53.33866 12.98 P PPLA4 DE 12 00 13055 13055070 801 58 Europe/Berlin 2011-04-25
-2818107 Usedom Usedom Usedom 53.86667 13.91667 P PPL DE 12 1929 254 Europe/Berlin 2012-01-18
-2818115 Usch Usch 50.1 6.6 P PPLA4 DE 08 00 07232 07232129 76 326 Europe/Berlin 2011-04-25
-2818121 Ürzig Urzig 49.97943 7.0061 P PPLA4 DE 08 00 07231 07231125 914 118 Europe/Berlin 2011-04-25
-2818142 Urspringen Urspringen 49.90028 9.67417 P PPLA4 DE 02 096 09677 09677193 1350 258 Europe/Berlin 2011-04-25
-2818152 Uersfeld Uersfeld Uersfeld,Ursfeld,Ürsfeld 50.25 7.01667 P PPLA4 DE 08 00 07233 07233242 717 463 Europe/Berlin 2011-04-25
-2818155 Ursensollen Ursensollen 49.40204 11.75503 P PPLA4 DE 02 093 09371 09371154 3690 538 Europe/Berlin 2011-04-25
-2818164 Urschmitt Urschmitt 50.11667 7.06667 P PPLA4 DE 08 00 07135 07135085 276 386 Europe/Berlin 2011-04-25
-2818170 Ursberg Ursberg 48.26428 10.44594 P PPLA4 DE 02 097 09774 09774116 3579 513 Europe/Berlin 2011-04-25
-2818177 Urnshausen Urnshausen 50.73333 10.18333 P PPLA4 DE 15 00 16063 16063081 801 369 Europe/Berlin 2011-04-25
-2818184 Urmitz Urmitz Urmitz 50.41667 7.51667 P PPLA4 DE 08 00 07137 07137225 3480 60 Europe/Berlin 2011-04-25
-2818186 Urmersbach Urmersbach 50.25 7.13333 P PPLA4 DE 08 00 07135 07135084 493 399 Europe/Berlin 2011-04-25
-2818229 Urbar Urbar 50.38333 7.63333 P PPLA4 DE 08 00 07137 07137224 3152 162 Europe/Berlin 2011-04-25
-2818230 Urbar Urbar 50.13333 7.71667 P PPLA4 DE 08 00 07140 07140155 799 256 Europe/Berlin 2011-04-25
-2818232 Urbach-Überdorf Urbach-Uberdorf Uberdorf,Urbach-Uberdorf,Urbach-Überdorf,Überdorf 50.55 7.58333 P PPL DE 08 1577 354 Europe/Berlin 2012-01-18
-2818242 Urbach Urbach 51.4801 10.90118 P PPLA4 DE 15 00 16062 16062054 0 179 Europe/Berlin 2011-04-25
-2818243 Urbach Urbach 51.28333 10.6 P PPL DE 15 1013 313 Europe/Berlin 2006-01-17
-2818246 Bad Urach Bad Urach Urach 48.49107 9.40009 P PPL DE 01 12831 463 Europe/Berlin 2008-12-24
-2818258 Uppershausen Uppershausen 50.03333 6.31667 P PPLA4 DE 08 00 07232 07232128 84 477 Europe/Berlin 2011-04-25
-2818276 Uphusum Uphusum 54.85 8.85 P PPLA4 DE 10 00 01054 01054142 0 1 Europe/Berlin 2011-04-25
-2818297 Upgant-Schott Upgant-Schott 53.51667 7.28333 P PPLA4 DE 06 00 03452 03452024 3836 3 Europe/Berlin 2011-04-25
-2818309 Upahl Upahl 53.81667 11.21667 P PPLA4 DE 12 00 13058 13058100 825 29 Europe/Berlin 2011-04-25
-2818313 Unzenberg Unzenberg 49.96667 7.45 P PPLA4 DE 08 00 07140 07140154 449 374 Europe/Berlin 2011-04-25
-2818322 Untrasried Untrasried 47.83333 10.38333 P PPLA4 DE 02 097 09777 09777176 1515 855 Europe/Berlin 2011-04-25
-2818354 Unterwössen Unterwossen 47.73333 12.46667 P PPLA4 DE 02 091 09189 09189160 3545 594 Europe/Berlin 2011-04-25
-2818418 Unterwellenborn Unterwellenborn Unterwellenborn 50.65 11.43333 P PPLA4 DE 15 00 16073 16073111 3002 295 Europe/Berlin 2011-04-25
-2818426 Unterweißbach Unterweissbach Unterweissbach,Unterweißbach 50.61396 11.16743 P PPLA4 DE 15 00 16073 16073094 891 332 Europe/Berlin 2011-07-31
-2818448 Unterweid Unterweid Unterweid 50.61667 10.06667 P PPLA4 DE 15 00 16066 16066078 518 491 Europe/Berlin 2011-04-25
-2818471 Unterwaldhausen Unterwaldhausen 47.9 9.46667 P PPLA4 DE 01 084 08436 08436077 0 636 Europe/Berlin 2011-04-25
-2818495 Unterwachingen Unterwachingen 48.20288 9.64355 P PPLA4 DE 01 084 08425 08425125 185 519 Europe/Berlin 2011-04-25
-2818541 Unterthingau Unterthingau Unterthingau 47.76667 10.5 P PPL DE 02 2747 777 Europe/Berlin 2012-01-18
-2818632 Untersteinach Untersteinach 50.13333 11.51667 P PPLA4 DE 02 094 09477 09477159 1989 390 Europe/Berlin 2011-04-25
-2818653 Unterstadion Unterstadion 48.20305 9.6884 P PPLA4 DE 01 084 08425 08425124 760 504 Europe/Berlin 2011-04-25
-2818677 Untersiemau Untersiemau 50.19415 10.97448 P PPLA4 DE 02 094 09473 09473170 4208 302 Europe/Berlin 2011-07-31
-2818682 Untershausen Untershausen 50.4 7.85 P PPLA4 DE 08 00 07143 07143077 505 348 Europe/Berlin 2011-04-25
-2818719 Unterschwaningen Unterschwaningen 49.08333 10.63333 P PPLA4 DE 02 095 09571 09571208 928 465 Europe/Berlin 2011-04-25
-2818743 Unterschönau Unterschonau 50.71667 10.58333 P PPLA4 DE 15 00 16066 16066077 626 510 Europe/Berlin 2011-04-25
-2818754 Unterschneidheim Unterschneidheim Unterschneidheim 48.93333 10.36667 P PPLA4 DE 01 081 08136 08136075 4684 475 Europe/Berlin 2011-04-25
-2818766 Unterschleißheim Unterschleissheim Schleisheim,Unterschleissheim,Unterschleißheim 48.28333 11.56667 P PPL DE 02 25567 473 Europe/Berlin 2012-01-18
-2818818 Unterroth Unterroth 48.19562 10.17111 P PPLA4 DE 02 097 09775 09775161 951 525 Europe/Berlin 2011-04-25
-2818879 Unterreit Unterreit Kirchreit,Unterreit 48.11667 12.33333 P PPLA4 DE 02 091 09183 09183147 1673 493 Europe/Berlin 2011-04-25
-2818889 Unterreichenbach Unterreichenbach 48.83333 8.71667 P PPLA4 DE 01 082 08235 08235073 2282 527 Europe/Berlin 2011-04-25
-2818929 Unterpleichfeld Unterpleichfeld 49.86667 10.05 P PPLA4 DE 02 096 09679 09679201 2718 261 Europe/Berlin 2011-04-25
-2818999 Unterneukirchen Unterneukirchen 48.16667 12.61667 P PPLA4 DE 02 091 09171 09171135 2987 459 Europe/Berlin 2011-04-25
-2819030 Untermünkheim Untermunkheim 49.15255 9.73384 P PPLA4 DE 01 081 08127 08127086 3019 265 Europe/Berlin 2011-04-25
-2819075 Untermerzbach Untermerzbach 50.12754 10.85634 P PPLA4 DE 02 096 09674 09674210 1759 264 266 Europe/Berlin 2011-04-25
-2819081 Untermeitingen Untermeitingen 48.16667 10.8 P PPLA4 DE 02 097 09772 09772209 6415 564 Europe/Berlin 2011-04-25
-2819100 Untermaßfeld Untermassfeld Untermassfeld,Untermaßfeld 50.53333 10.41667 P PPLA4 DE 15 00 16066 16066076 1316 293 Europe/Berlin 2011-07-31
-2819103 Untermarchtal Untermarchtal 48.23919 9.60978 P PPLA4 DE 01 084 08425 08425123 908 510 Europe/Berlin 2011-04-25
-2819117 Unterlüß Unterluss 52.83471 10.29685 P PPLA4 DE 06 00 03351 03351020 4158 104 Europe/Berlin 2011-07-31
-2819167 Unterleinleiter Unterleinleiter 49.82303 11.18906 P PPLA4 DE 02 094 09474 09474168 1258 326 Europe/Berlin 2011-04-25
-2819248 Unterkirnach Unterkirnach 48.07946 8.36575 P PPLA4 DE 01 083 08326 08326065 2895 805 Europe/Berlin 2011-04-25
-2819262 Unterkatz Unterkatz Unterkatz 50.61667 10.25 P PPLA4 DE 15 00 16066 16066075 437 412 Europe/Berlin 2011-04-25
-2819282 Unterjettingen Unterjettingen 48.56667 8.78333 P PPL DE 01 4120 559 557 Europe/Berlin 2006-09-05
-2819285 Unterjeckenbach Unterjeckenbach 49.66667 7.48333 P PPLA4 DE 08 00 07336 07336100 105 377 Europe/Berlin 2011-04-25
-2819465 Unterhaching Unterhaching Haching,Unterkhakhing,Унтерхахинг 48.06047 11.61873 P PPLA4 DE 02 091 09184 09184148 20852 556 Europe/Berlin 2011-07-31
-2819479 Untergruppenbach Untergruppenbach 49.0894 9.27516 P PPLA4 DE 01 081 08125 08125098 7567 254 Europe/Berlin 2011-04-25
-2819497 Untergriesbach Untergriesbach 48.57434 13.66725 P PPL DE 02 092 09275 09275153 6294 555 Europe/Berlin 2011-07-11
-2819568 Unterföhring Unterfohring 48.19253 11.64293 P PPLA4 DE 02 091 09184 09184147 7494 505 Europe/Berlin 2011-07-31
-2819710 Unterensingen Unterensingen Ensingen 48.65452 9.35799 P PPLA4 DE 01 081 08116 08116068 4565 265 Europe/Berlin 2011-04-25
-2819738 Untereisesheim Untereisesheim Untereisesheim 49.21111 9.20194 P PPLA4 DE 01 081 08125 08125096 3861 160 Europe/Berlin 2011-04-25
-2819782 Unteregg Unteregg 47.96667 10.46667 P PPLA4 DE 02 097 09778 09778207 1370 688 Europe/Berlin 2011-04-25
-2819823 Unterdietfurt Unterdietfurt 48.38333 12.66667 P PPLA4 DE 02 092 09277 09277151 2174 437 Europe/Berlin 2011-04-25
-2819825 Unterdießen Unterdiessen 47.98333 10.83333 P PPLA4 DE 02 091 09181 09181143 1323 635 Europe/Berlin 2011-04-25
-2819892 Unterbreizbach Unterbreizbach 50.81667 9.98333 P PPLA4 DE 15 00 16063 16063078 4102 236 Europe/Berlin 2011-04-25
-2819907 Unterbodnitz Unterbodnitz Unterbodnitz 50.81667 11.65 P PPLA4 DE 15 00 16074 16074104 197 279 Europe/Berlin 2011-04-25
-2819974 Unter-Bad Krozingen Unter-Bad Krozingen Bad Krozingen,Unter-Bad Krozingen 47.91667 7.7 P PPLX DE 01 15908 230 Europe/Berlin 2012-01-18
-2820020 Unterammergau Unterammergau 47.61658 11.02718 P PPLA4 DE 02 091 09180 09180135 1435 837 Europe/Berlin 2011-04-25
-2820058 Unter-Abtsteinach Unter-Abtsteinach 49.52917 8.78833 P PPL DE 05 2414 417 Europe/Berlin 2006-01-17
-2820065 Unsleben Unsleben 50.38333 10.26667 P PPLA4 DE 02 096 09673 09673175 996 273 Europe/Berlin 2011-07-31
-2820071 Unseburg Unseburg Unseburg 51.93199 11.51814 P PPL DE 14 1294 69 Europe/Berlin 2011-04-27
-2820084 Unnau Unnau 50.64881 7.90827 P PPLA4 DE 08 00 07143 07143300 1932 382 Europe/Berlin 2011-04-25
-2820087 Unna Unna Unna,Унна 51.53333 7.68333 P PPL DE 07 66734 117 Europe/Berlin 2012-01-18
-2820088 Unlingen Unlingen 48.16734 9.52219 P PPLA4 DE 01 084 08426 08426121 2512 535 Europe/Berlin 2011-04-25
-2820099 Unkenbach Unkenbach 49.71667 7.75 P PPLA4 DE 08 00 07333 07333078 242 251 Europe/Berlin 2011-04-25
-2820101 Unkel Unkel 50.59653 7.21888 P PPL DE 08 4938 57 Europe/Berlin 2011-07-28
-2820122 Ungerhausen Ungerhausen 48.00566 10.26672 P PPLA4 DE 02 097 09778 09778205 1056 619 Europe/Berlin 2011-05-31
-2820150 Undenheim Undenheim 49.83806 8.21889 P PPLA4 DE 08 00 07339 07339060 2525 146 Europe/Berlin 2011-04-25
-2820151 Undeloh Undeloh 53.19711 9.97575 P PPLA4 DE 06 00 03353 03353036 881 84 Europe/Berlin 2011-08-30
-2820164 Umpferstedt Umpferstedt 50.98333 11.41667 P PPLA4 DE 15 00 16071 16071089 647 273 Europe/Berlin 2011-07-31
-2820172 Ummern Ummern 52.59111 10.43195 P PPLA4 DE 06 00 03151 03151033 1625 61 Europe/Berlin 2011-04-25
-2820178 Ummendorf Ummendorf 52.15645 11.18151 P PPLA4 DE 14 00 15083 15083505 1082 142 Europe/Berlin 2011-05-03
-2820179 Ummendorf Ummendorf Ummendorf 48.06667 9.83333 P PPLA4 DE 01 084 08426 08426120 4254 551 Europe/Berlin 2011-04-25
-2820186 Ummanz Ummanz 54.46667 13.18333 P PPLA4 DE 12 00 13061 13061042 716 1 Europe/Berlin 2011-04-25
-2820190 Umkirch Umkirch 48.03333 7.76667 P PPLA4 DE 01 083 08315 08315115 5208 206 Europe/Berlin 2011-04-25
-2820203 Uelvesbüll Uelvesbull Uelvesbull,Uelvesbüll,Ulvesbull,Ülvesbüll 54.4153 8.92392 P PPLA4 DE 10 00 01054 01054141 290 254 Europe/Berlin 2011-08-25
-2820210 Ulsnis Ulsnis Ulsnis 54.56667 9.75 P PPLA4 DE 10 00 01059 01059094 634 14 Europe/Berlin 2011-04-25
-2820214 Ülsby Ulsby 54.63333 9.6 P PPLA4 DE 10 00 01059 01059093 464 31 Europe/Berlin 2011-04-25
-2820217 Ulrichstein Ulrichstein Ulrichstein 50.58333 9.2 P PPL DE 05 3258 562 Europe/Berlin 2012-01-18
-2820240 Ulmet Ulmet 49.58333 7.45 P PPLA4 DE 08 00 07336 07336099 799 213 Europe/Berlin 2011-04-25
-2820249 Ulmen Ulmen 50.20943 6.97941 P PPLA4 DE 08 00 07135 07135083 3265 429 Europe/Berlin 2011-04-25
-2820256 Ulm Ulm Oulm,Ul'm,Ulm,Ulma,awlm,ulmi,urumu,wu er mu,Ουλμ,Улм,Ульм,אולם,اولم,ულმი,ウルム,乌尔姆 48.39841 9.99155 P PPL DE 01 120451 480 Europe/Berlin 2008-12-24
-2820312 Uichteritz Uichteritz Uichteritz 51.2 11.91667 P PPL DE 14 1455 108 Europe/Berlin 2012-01-18
-2820314 Uhyst Uhyst Uhyst 51.36667 14.51667 P PPL DE 13 1169 128 Europe/Berlin 2012-01-18
-2820322 Uehrde Uehrde Uehrde,Uhrde,Ührde 52.09902 10.76523 P PPLA4 DE 06 00 03158 03158031 1041 114 Europe/Berlin 2011-05-03
-2820334 Uehlfeld Uehlfeld Uhlfeld,Ühlfeld 49.67085 10.72017 P PPL DE 02 2908 282 Europe/Berlin 2008-10-07
-2820338 Uhler Uhler 50.08333 7.43333 P PPLA4 DE 08 00 07140 07140153 405 416 Europe/Berlin 2011-04-25
-2820407 Uhingen Uhingen 48.70475 9.5857 P PPL DE 01 14031 292 Europe/Berlin 2008-12-23
-2820413 Uftrungen Uftrungen 51.49859 10.98066 P PPL DE 14 1122 193 Europe/Berlin 2009-03-26
-2820419 Uffing Uffing Uffing 47.71667 11.15 P PPL DE 02 2994 664 Europe/Berlin 2012-02-02
-2820423 Uffenheim Uffenheim Uffenheim 49.53333 10.25 P PPL DE 02 6542 364 Europe/Berlin 2012-01-18
-2820436 Uetze Uetze Juce,UEtze,Utisson [a. 1022],Ütze,Юце 52.46511 10.20467 P PPLA4 DE 06 00 03241 03241018 7500 51 55 Europe/Berlin 2011-02-22
-2820439 Uettingen Uettingen 49.79472 9.73056 P PPLA4 DE 02 096 09679 09679196 1887 241 Europe/Berlin 2011-04-25
-2820444 Ueß Uess 50.25 6.93333 P PPLA4 DE 08 00 07233 07233243 48 499 Europe/Berlin 2011-04-25
-2820452 Uenglingen Uenglingen Uenglingen 52.61667 11.8 P PPL DE 14 1053 34 Europe/Berlin 2012-01-18
-2820456 Uelzen Uelzen Uelzen 52.96667 10.56667 P PPL DE 06 34996 41 Europe/Berlin 2012-02-02
-2820457 Uelversheim Uelversheim 49.81 8.28861 P PPLA4 DE 08 00 07339 07339059 1162 186 Europe/Berlin 2011-04-25
-2820458 Uelsen Uelsen 52.5 6.88333 P PPLA4 DE 06 00 03456 03456023 5171 55 Europe/Berlin 2011-04-25
-2820460 Uelitz Uelitz 53.48333 11.43333 P PPLA4 DE 12 00 13054 13054107 481 43 Europe/Berlin 2011-04-25
-2820465 Uedem Uedem 51.66667 6.3 P PPLA4 DE 07 051 05154 05154056 8619 21 Europe/Berlin 2011-07-31
-2820471 Ueckermünde Ueckermunde 53.73795 14.04473 P PPL DE 12 00 11003 2 Europe/Berlin 2010-11-22
-2820472 Ückeritz Uckeritz Uckeritz,Ueckeritz,Ückeritz 54.01667 14.05 P PPLA4 DE DE 12 00 13059 13059096 0 8 Europe/Berlin 2011-04-25
-2820486 Udler Udler 50.13333 6.88333 P PPLA4 DE 08 00 07233 07233074 312 433 Europe/Berlin 2011-04-25
-2820491 Udestedt Udestedt 51.05 11.13333 P PPLA4 DE 15 00 16068 16068055 812 169 Europe/Berlin 2011-04-25
-2820496 Üdersdorf Udersdorf 50.15 6.8 P PPLA4 DE 08 00 07233 07233075 1176 440 Europe/Berlin 2011-04-25
-2820498 Uder Uder Uder 51.36667 10.08333 P PPLA4 DE 15 00 16061 16061097 2509 230 Europe/Berlin 2011-04-25
-2820499 Udenheim Udenheim 49.86472 8.17167 P PPLA4 DE 08 00 07331 07331064 1327 154 Europe/Berlin 2011-04-25
-2820500 Udenhausen Udenhausen Udenhausen (Grebenstein),Udenhusen 51.46385 9.46335 P PPL DE 05 066 06633 06633010 1150 280 Europe/Berlin 2011-03-15
-2820529 Uchtspringe Uchtspringe Uchtspringe 52.53333 11.61667 P PPL DE 14 1487 61 Europe/Berlin 2012-01-18
-2820533 Üchtelhausen Uchtelhausen 50.09184 10.26861 P PPLA4 DE 02 096 09678 09678186 4073 306 Europe/Berlin 2011-04-25
-2820537 Uchte Uchte 52.5 8.91667 P PPL DE 06 4892 47 Europe/Berlin 2006-01-17
-2820564 Übersee Ubersee 47.81667 12.48333 P PPLA4 DE 02 091 09189 09189159 4896 525 Europe/Berlin 2011-04-25
-2820577 Überlingen Uberlingen Uberlingen,Überlingen 47.76667 9.16667 P PPL DE 01 21507 425 Europe/Berlin 2012-01-18
-2820583 Überherrn Uberherrn 49.24187 6.6984 P PPL DE 09 00 10044 10044119 12071 211 Europe/Berlin 2011-07-31
-2820591 Übereisenbach Ubereisenbach 50 6.15 P PPLA4 DE 08 00 07232 07232127 59 331 Europe/Berlin 2011-04-25
-2820621 Übach-Palenberg Ubach-Palenberg Ubach-Palenberg,Übach-Palenberg 50.93333 6.11667 P PPLA4 DE 07 053 05370 05370028 25544 111 Europe/Berlin 2011-07-31
-2820624 Tschernitz Tschernitz Tschernitz,Tzschernitz 51.58333 14.61667 P PPLA4 DE 11 00 12071 12071392 1630 135 Europe/Berlin 2011-04-25
-2820633 Tyrlaching Tyrlaching 48.06667 12.66667 P PPLA4 DE 02 091 09171 09171134 1031 528 Europe/Berlin 2011-04-25
-2820643 Twistringen Twistringen Twistringen 52.8 8.65 P PPL DE 06 12645 48 Europe/Berlin 2012-01-18
-2820649 Twist Twist 52.63333 7.05 P PPLA4 DE 06 00 03454 03454054 0 15 Europe/Berlin 2011-07-31
-2820665 Twieflingen Twieflingen 52.12485 10.91681 P PPLA4 DE 06 00 03154 03154023 786 149 Europe/Berlin 2011-05-03
-2820687 Twedt Twedt 54.6 9.68333 P PPLA4 DE 10 00 01059 01059097 512 13 Europe/Berlin 2011-04-25
-2820691 Tützpatz Tutzpatz 53.73333 13.15 P PPLA4 DE 12 00 13052 13052079 658 75 Europe/Berlin 2011-04-25
-2820692 Tutzing Tutzing 47.90938 11.2803 P PPLA4 DE 02 091 09188 09188141 9517 595 Europe/Berlin 2011-04-25
-2820693 Tuttlingen Tuttlingen Tuttlingen 47.98333 8.81667 P PPL DE 01 34847 647 Europe/Berlin 2012-01-18
-2820694 Tüttleben Tuttleben Tuttleben,Tüttleben 50.95 10.8 P PPLA4 DE 15 00 16067 16067071 761 287 Europe/Berlin 2011-04-25
-2820697 Tüttendorf Tuttendorf Tuttendorf,Tüttendorf 54.4 10 P PPLA4 DE 10 00 01058 01058165 1197 19 Europe/Berlin 2011-04-25
-2820704 Tutow Tutow Tutov,Tutow,Тутов 53.91566 13.24814 P PPLA4 DE 12 00 13052 13052078 1299 11 Europe/Berlin 2011-07-31
-2820714 Tuszshing Tuszshing Tussling,Tuszshing,Tüßling 48.21667 12.6 P PPL DE 02 2970 405 Europe/Berlin 2012-01-18
-2820716 Tussenhausen Tussenhausen Tussenhausen 48.1 10.56667 P PPL DE 02 2921 577 Europe/Berlin 2012-01-18
-2820752 Türkheim Turkheim Turkheim,Türkheim 48.06667 10.63333 P PPL DE 02 6632 594 Europe/Berlin 2012-01-18
-2820756 Türkenfeld Tuerkenfeld 48.11667 11.08333 P PPLA4 DE 02 091 09179 09179149 3397 612 Europe/Berlin 2011-04-25
-2820775 Tuntenhausen Tuntenhausen 47.93509 12.01518 P PPLA4 DE 02 091 09187 09187179 6642 503 Europe/Berlin 2011-04-25
-2820786 Tuningen Tuningen 48.03333 8.6 P PPLA4 DE 01 083 08326 08326061 2870 759 Europe/Berlin 2011-04-25
-2820799 Tunau Tunau 47.78614 7.92428 P PPLA4 DE 01 083 08336 08336089 207 733 Europe/Berlin 2011-04-25
-2820805 Tümlauer Koog Tumlauer Koog Tumlauer Koog,Tummlauer Koog,Tümlauer Koog,Tümmlauer Koog 54.35 8.68333 P PPLA4 DE 10 00 01054 01054140 119 255 Europe/Berlin 2011-04-25
-2820823 Tülau Tulau 52.57578 10.87818 P PPLA4 DE 06 00 03151 03151032 1494 75 Europe/Berlin 2011-07-31
-2820851 Tuchenbach Tuchenbach 49.52794 10.85973 P PPLA4 DE 02 095 09573 09573129 1185 347 Europe/Berlin 2011-04-25
-2820856 Tucheim Tucheim Tucheim 52.31667 12.18333 P PPL DE 14 1431 34 Europe/Berlin 2012-01-18
-2820860 Tübingen Tuebingen Tjubingen,Tubinga,Tubingen,Tuebingen,Tybinga,Tübingen,te~yubingen,tu bin gen,twbyngn,tybyngn,Тубинген,Тюбинген,טובינגן,טיבינגן,توبینگن,テュービンゲン,图宾根 48.52266 9.05222 P PPLA2 DE 01 084 83416 333 Europe/Berlin 2010-11-21
-2820866 Tschirn Tschirn Tschirn 50.4 11.45 P PPLA4 DE 02 094 09476 09476182 621 646 Europe/Berlin 2011-04-25
-2820882 Trusetal Trusetal Auwallenburg,Herges-Auwallenburg,Trusetal 50.78333 10.41667 P PPLA4 DE 15 00 16066 16066074 4208 406 Europe/Berlin 2011-04-25
-2820905 Trunkelsberg Trunkelsberg 48 10.21667 P PPLA4 DE 02 097 09778 09778202 1810 626 Europe/Berlin 2011-04-25
-2820912 Trulben Trulben 49.13333 7.55 P PPLA4 DE 08 00 07340 07340052 1338 405 Europe/Berlin 2011-04-25
-2820917 Trügleben Trugleben Trugleben,Trügleben 50.95 10.63333 P PPLA4 DE 15 00 16067 16067069 368 346 Europe/Berlin 2011-04-25
-2820964 Trostberg an der Alz Trostberg an der Alz Trosburg,Trostberg,Trostberg an der Alz 48.03333 12.55 P PPL DE 02 11676 555 Europe/Berlin 2012-01-18
-2820967 Tröstau Trostau 50.01667 11.95 P PPLA4 DE 02 094 09479 09479161 2583 552 Europe/Berlin 2011-04-25
-2820973 Trossingen Trossingen 48.07667 8.64409 P PPL DE 01 15040 687 Europe/Berlin 2008-12-23
-2820974 Trossin Trossin 51.61667 12.81667 P PPLA4 DE 13 147 14730 14730320 1519 112 Europe/Berlin 2011-04-25
-2821000 Tröndel Trondel Trondel,Tröndel 54.33333 10.51667 P PPLA4 DE 10 00 01057 01057082 432 42 Europe/Berlin 2011-04-25
-2821022 Trollenhagen Trollenhagen 53.6 13.3 P PPLA4 DE 12 00 13055 13055069 1064 64 Europe/Berlin 2011-04-25
-2821028 Troistedt Troistedt 50.93333 11.25 P PPLA4 DE 15 00 16071 16071088 227 364 Europe/Berlin 2011-04-25
-2821029 Troisdorf Troisdorf Troisdorf,Trojsdorf,Тройсдорф 50.81667 7.16667 P PPL DE 07 74749 62 Europe/Berlin 2012-01-18
-2821043 Trogen Trogen 50.36667 11.95 P PPLA4 DE 02 094 09475 09475182 1636 528 Europe/Berlin 2011-04-25
-2821057 Trockenborn-Wolfersdorf Trockenborn-Wolfersdorf Trockenborn-Wolfersdorf 50.78333 11.7 P PPLA4 DE 15 00 16074 16074102 661 329 Europe/Berlin 2011-04-25
-2821065 Trochtelfingen Trochtelfingen 48.30843 9.24491 P PPL DE 01 6638 695 Europe/Berlin 2008-12-23
-2821066 Tröchtelborn Trochtelborn Trochtelborn,Tröchtelborn 51 10.81667 P PPLA4 DE 15 00 16067 16067068 313 329 Europe/Berlin 2011-04-25
-2821069 Tröbnitz Trobnitz Trobnitz,Tröbnitz 50.83333 11.73333 P PPLA4 DE 15 00 16074 16074103 494 232 Europe/Berlin 2011-04-25
-2821071 Tröbitz Trobitz 51.6 13.43333 P PPLA4 DE 11 00 12062 12062492 830 102 Europe/Berlin 2011-04-25
-2821081 Trittenheim Trittenheim 49.81667 6.9 P PPLA4 DE 08 00 07231 07231207 1146 117 Europe/Berlin 2011-07-31
-2821085 Trittau Trittau 53.61667 10.4 P PPLA4 DE 10 00 01062 01062082 7688 38 Europe/Berlin 2011-04-25
-2821094 Triptis Triptis Triptis 50.73333 11.85 P PPL DE 15 4097 372 Europe/Berlin 2012-01-18
-2821099 Trippstadt Trippstadt 49.35935 7.7748 P PPLA4 DE 08 00 07335 07335047 3085 408 Europe/Berlin 2011-07-31
-2821106 Trinwillershagen Trinwillershagen 54.25048 12.62312 P PPLA4 DE 12 00 13057 13057086 1418 18 Europe/Berlin 2011-07-31
-2821118 Trimport Trimport 49.91667 6.58333 P PPLA4 DE 08 00 07232 07232126 298 358 Europe/Berlin 2011-04-25
-2821121 Trimbs Trimbs 50.31667 7.3 P PPLA4 DE 08 00 07137 07137102 658 250 Europe/Berlin 2011-04-25
-2821132 Triglitz Triglitz 53.21667 12.1 P PPLA4 DE 11 00 12070 12070393 556 58 Europe/Berlin 2011-04-25
-2821143 Triftern Triftern Triftern,Truftlern 48.39468 13.00627 P PPL DE 02 5419 392 Europe/Berlin 2011-07-01
-2821157 Trierweiler Trierweiler 49.76231 6.55987 P PPLA4 DE 08 00 07235 07235137 3424 283 Europe/Berlin 2011-04-25
-2821159 Trierscheid Trierscheid 50.35 6.81667 P PPLA4 DE 08 00 07131 07131079 60 422 Europe/Berlin 2011-04-25
-2821164 Trier Trier Augusta Treverorum,Treier,Treveris,Treves,Treviri,Treviro,Trewir,Trier,Trir,Trèveris,Trèves,Tréier,Tréveris,te li er,teulieo,toria,Трир,トリーア,特里尔,트리어 49.75565 6.63935 P PPLA4 DE 08 00 07211 07211000 100129 141 Europe/Berlin 2011-04-25
-2821192 Triebes Triebes Triebes 50.68333 12.03333 P PPL DE 15 4081 381 Europe/Berlin 2012-01-18
-2821211 Tribsees Tribsees 54.09556 12.75683 P PPL DE 12 2942 3 Europe/Berlin 2009-01-25
-2821216 Triberg Triberg 48.13333 8.23333 P PPL DE 01 5275 658 Europe/Berlin 2006-01-17
-2821248 Treuenbrietzen Treuenbrietzen Treuenbrietzen 52.1 12.86667 P PPL DE 11 8675 57 Europe/Berlin 2012-01-18
-2821251 Treuen Treuen Treuen 50.55 12.3 P PPL DE 13 9189 479 Europe/Berlin 2012-01-18
-2821254 Treuchtlingen Treuchtlingen Treuchtlingen 48.95 10.91667 P PPL DE 02 13141 415 Europe/Berlin 2012-01-18
-2821308 Treplin Treplin 52.4 14.4 P PPLA4 DE 11 00 12064 12064480 431 71 Europe/Berlin 2011-04-25
-2821319 Trent Trent 54.51667 13.25 P PPLA4 DE 12 00 13061 13061041 871 255 Europe/Berlin 2011-04-25
-2821330 Trennewurth Trennewurth Trennewurth 54 9.03333 P PPLA4 DE 10 00 01051 01051118 294 1 Europe/Berlin 2011-07-31
-2821336 Trendelburg Trendelburg Trendelburg 51.57408 9.42095 P PPL DE 05 5749 160 Europe/Berlin 2011-07-11
-2821342 Tremsbüttel Tremsbuttel 53.74384 10.31024 P PPLA4 DE 10 00 01062 01062081 1891 39 Europe/Berlin 2011-07-31
-2821362 Treis-Karden Treis-Karden 50.18333 7.3 P PPLA4 DE 08 00 07135 07135082 2332 101 Europe/Berlin 2011-04-25
-2821389 Treia Treia 54.5 9.31667 P PPLA4 DE 10 00 01059 01059092 1514 17 Europe/Berlin 2011-04-25
-2821395 Treffurt Treffurt Treffurt 51.13333 10.23333 P PPL DE 15 6206 173 Europe/Berlin 2012-01-18
-2821400 Treffelstein Treffelstein 49.41667 12.61667 P PPLA4 DE 02 093 09372 09372165 1033 496 Europe/Berlin 2011-04-25
-2821408 Trechtingshausen Trechtingshausen Trechtingshausen 50.01667 7.85 P PPLA4 DE 08 00 07339 07339058 1053 97 Europe/Berlin 2011-04-25
-2821416 Trebur Trebur 49.93111 8.41611 P PPLA4 DE 05 064 06433 06433014 12897 85 Europe/Berlin 2011-04-25
-2821418 Trebsen Trebsen 51.28898 12.75496 P PPL DE 13 4244 129 Europe/Berlin 2009-11-03
-2821422 Trebra Trebra 51.28333 10.98333 P PPLA4 DE 15 00 16065 16065075 342 250 Europe/Berlin 2011-04-25
-2821430 Trebnitz Trebnitz 51.1 12.06667 P PPLA4 DE 14 00 15084 15084505 931 181 Europe/Berlin 2011-04-25
-2821439 Trebitz Trebitz 51.58333 11.91667 P PPL DE 14 1368 128 Europe/Berlin 2006-01-17
-2821444 Trebgast Trebgast 50.06667 11.55 P PPLA4 DE 02 094 09477 09477158 1704 332 Europe/Berlin 2011-04-25
-2821450 Trebendorf Trebendorf 51.53333 14.56667 P PPLA4 DE 13 146 14626 14626560 1106 133 Europe/Berlin 2011-04-25
-2821454 Treben Treben 51.05 12.41667 P PPLA4 DE 15 00 16077 16077048 993 188 Europe/Berlin 2011-07-31
-2821465 Trebbin Trebbin Trebbin 52.21667 13.2 P PPL DE 11 9199 38 Europe/Berlin 2012-01-18
-2821478 Travenhorst Travenhorst Travenhorst 54.01667 10.45 P PPLA4 DE 10 00 01060 01060090 212 28 Europe/Berlin 2011-04-25
-2821480 Travemünde Travemuende Luebeck-Travemuende,Lübeck-Travemünde,Travemjunde,Travemuende,Travemünde,Travenamunde,Травемюнде 53.96667 10.86667 P PPLX DE 10 13902 12 Europe/Berlin 2009-05-15
-2821488 Trautskirchen Trautskirchen 49.45 10.6 P PPLA4 DE 02 095 09575 09575166 1348 337 Europe/Berlin 2011-04-25
-2821504 Trausnitz Trausnitz 49.51667 12.26667 P PPLA4 DE 02 093 09376 09376173 1021 464 Europe/Berlin 2011-04-25
-2821515 Traunstein Traunstein Traunshtajn,Traunstein,Траунштайн 47.88333 12.65 P PPL DE 02 18422 634 Europe/Berlin 2012-01-18
-2821517 Traunreut Traunreut Traunrojt,Траунройт 47.96269 12.59231 P PPL DE 02 21244 552 Europe/Berlin 2010-01-29
-2821546 Trassenheide Trassenheide Kolonie Trassenheide,Trassenheide 54.1 13.86667 P PPLA4 DE 12 00 13059 13059095 964 14 Europe/Berlin 2011-04-25
-2821548 Trassem Trassem 49.56667 6.51667 P PPLA4 DE 08 00 07235 07235136 1178 252 Europe/Berlin 2011-04-25
-2821555 Trappstadt Trappstadt Trappstadt 50.31667 10.58333 P PPL DE 02 1037 342 Europe/Berlin 2012-01-18
-2821558 Trappenkamp Trappenkamp Trappenkamp 54.05 10.25 P PPLA4 DE 10 00 01060 01060089 5113 51 Europe/Berlin 2011-07-31
-2821605 Tramm Tramm 53.56667 10.6 P PPLA4 DE 10 00 01053 01053126 331 57 Europe/Berlin 2011-04-25
-2821606 Tramm Tramm 53.52245 11.64791 P PPLA4 DE 12 00 13060 13060080 626 49 Europe/Berlin 2011-07-31
-2821617 Traitsching Traitsching 49.15 12.65 P PPLA4 DE 02 093 09372 09372164 4074 416 Europe/Berlin 2011-04-25
-2821622 Traisen Traisen 49.81667 7.81667 P PPLA4 DE 08 00 07133 07133105 557 156 Europe/Berlin 2011-04-25
-2821633 Train Train 48.73333 11.83333 P PPLA4 DE 02 092 09273 09273177 1777 416 Europe/Berlin 2011-04-25
-2821687 Trabitz Trabitz 49.8 11.9 P PPLA4 DE 02 093 09374 09374148 1406 443 Europe/Berlin 2011-04-25
-2821690 Traben-Trarbach Traben-Trarbach 49.95 7.11667 P PPL DE 08 6018 101 Europe/Berlin 2006-01-17
-2821695 Tottleben Tottleben 51.16667 10.75 P PPLA4 DE 15 00 16064 16064062 0 208 Europe/Berlin 2011-04-25
-2821734 Tosterglope Tosterglope 53.20984 10.8193 P PPLA4 DE 06 00 03355 03355037 628 87 Europe/Berlin 2011-08-23
-2821736 Tostedt Tostedt 53.28333 9.71667 P PPLA4 DE 06 00 03353 03353035 13315 62 Europe/Berlin 2011-04-25
-2821779 Tornesch Tornesch Tornesch 53.7 9.71667 P PPLA4 DE 10 00 01056 01056048 13079 13 Europe/Berlin 2011-07-31
-2821786 Tornau Tornau 51.63333 12.6 P PPLA4 DE 14 00 15091 15091350 0 128 Europe/Berlin 2011-04-25
-2821799 Torgelow-Holländerei Torgelow-Hollanderei Hollanderei Torgelow,Holländerei Torgelow,Torgelow-Hollanderei,Torgelow-Holländerei 53.66667 14.03333 P PPLA4 DE 12 00 13062 13062057 444 10 Europe/Berlin 2011-04-25
-2821802 Torgelow Torgelow Torgelow 53.63333 14.01667 P PPL DE 12 10665 8 Europe/Berlin 2012-01-18
-2821807 Torgau Torgau Torgau,Торгау 51.56667 13 P PPL DE 13 18746 83 Europe/Berlin 2012-01-18
-2821843 Toppenstedt Toppenstedt 53.2643 10.11451 P PPLA4 DE 06 00 03353 03353034 2122 36 Europe/Berlin 2011-09-02
-2821864 Töpen Topen 50.38333 11.86667 P PPLA4 DE 02 094 09475 09475181 1175 545 Europe/Berlin 2011-04-25
-2821878 Tönning Tonning Tonning,Tönning 54.31667 8.95 P PPL DE 10 5008 3 Europe/Berlin 2012-01-18
-2821894 Tonndorf Tonndorf 50.88898 11.20374 P PPLA4 DE 15 00 16071 16071087 653 318 Europe/Berlin 2011-04-25
-2821899 Tönisvorst Tonisvorst Stadt Tonisvorst,Stadt Tönisvorst,Tonisvorst,Tönisvorst 51.31667 6.45 P PPL DE 07 30296 37 Europe/Berlin 2012-01-18
-2821919 Tömmelsdorf Tommelsdorf Tommelsdorf,Tömmelsdorf 50.71667 11.86667 P PPLA4 DE 15 00 16075 16075114 136 430 Europe/Berlin 2011-04-25
-2821930 Tollwitz Tollwitz Tollwitz 51.28333 12.1 P PPL DE 14 1252 100 Europe/Berlin 2012-01-18
-2821956 Tolk Tolk 54.58333 9.65 P PPLA4 DE 10 00 01059 01059090 1097 23 Europe/Berlin 2011-04-25
-2821963 Töging am Inn Toging am Inn Toging,Toging am Inn,Töging,Töging am Inn 48.25 12.58333 P PPL DE 02 9392 396 Europe/Berlin 2012-01-18
-2821975 Todtnau Todtnau 47.82941 7.9438 P PPL DE 01 083 5072 642 Europe/Berlin 2010-11-15
-2821980 Todtmoos Todtmoos 47.73333 8 P PPLA4 DE 01 083 08337 08337108 2215 852 Europe/Berlin 2011-04-25
-2821985 Todtenweis Todtenweis 48.51667 10.93333 P PPLA4 DE 02 097 09771 09771169 1443 453 Europe/Berlin 2011-04-25
-2822017 Todesfelde Todesfelde Todesfelde 53.9 10.18333 P PPLA4 DE 10 00 01060 01060088 1040 36 Europe/Berlin 2011-04-25
-2822019 Todenroth Todenroth 49.96667 7.35 P PPLA4 DE 08 00 07140 07140151 93 416 Europe/Berlin 2011-04-25
-2822029 Todendorf Todendorf 53.7 10.35 P PPLA4 DE 10 00 01062 01062078 1062 40 Europe/Berlin 2011-04-25
-2822030 Todenbüttel Todenbuttel Todenbuttel,Todenbüttel 54.13333 9.55 P PPLA4 DE 10 00 01058 01058164 1134 12 Europe/Berlin 2011-04-25
-2822031 Toddin Toddin 53.41667 11.13333 P PPLA4 DE 12 00 13054 13054106 552 26 Europe/Berlin 2011-04-25
-2822073 Titz Titz 51.00619 6.42477 P PPLA4 DE 07 053 05358 05358056 8461 102 Europe/Berlin 2011-07-31
-2822075 Tittmoning Tittmoning Tittmaning,Tittmening,Tittmoning 48.06667 12.76667 P PPL DE 02 6084 371 Europe/Berlin 2012-01-18
-2822076 Tittling Tittling Tittling,Tutling 48.72619 13.38221 P PPL DE 02 3800 512 Europe/Berlin 2010-08-12
-2822083 Titisee-Neustadt Titisee-Neustadt Titisee-Neustadt 47.9 8.16667 P PPL DE 01 12019 926 Europe/Berlin 2012-01-18
-2822087 Tiste Tiste 53.28333 9.53333 P PPLA4 DE 06 00 03357 03357048 899 35 Europe/Berlin 2011-04-25
-2822088 Tissa Tissa Tissa 50.85 11.75 P PPLA4 DE 15 00 16074 16074101 167 285 Europe/Berlin 2011-04-25
-2822100 Tirschenreuth Tirschenreuth Tirschenreit,Tirschenreuth,Tirshenrojt,Тиршенройт 49.8825 12.33306 P PPL DE 02 9410 515 Europe/Berlin 2012-01-18
-2822104 Tirpersdorf Tirpersdorf 50.43333 12.25 P PPLA4 DE 13 145 14523 14523420 1548 480 Europe/Berlin 2011-04-25
-2822121 Tinningstedt Tinningstedt Tinningstedt 54.81667 8.93333 P PPLA4 DE 10 00 01054 01054136 197 7 Europe/Berlin 2011-04-25
-2822159 Timmenrode Timmenrode Timmenrode 51.77113 11.00624 P PPL DE 14 1116 199 Europe/Berlin 2011-08-19
-2822160 Timmendorfer Strand Timmendorfer Strand Timmendorfer Strand 54 10.78333 P PPLA4 DE 10 00 01055 01055042 9127 1 Europe/Berlin 2011-07-31
-2822168 Timmaspe Timmaspe Timmaspe 54.13333 9.88333 P PPLA4 DE 10 00 01058 01058163 1124 21 Europe/Berlin 2011-04-25
-2822269 Tielen Tielen Tielen 54.28333 9.33333 P PPLA4 DE 10 00 01059 01059088 329 2 Europe/Berlin 2011-04-25
-2822320 Tiefenthal Tiefenthal 49.75 7.9 P PPLA4 DE 08 00 07133 07133104 117 310 Europe/Berlin 2011-04-25
-2822323 Tiefenthal Tiefenthal 49.53861 8.10389 P PPLA4 DE 08 00 07332 07332044 848 274 Europe/Berlin 2011-04-25
-2822368 Tiefenort Tiefenort Tiefenort 50.83333 10.16667 P PPLA4 DE 15 00 16063 16063075 4268 232 Europe/Berlin 2011-04-25
-2822401 Tiefenbronn Tiefenbronn 48.83333 8.8 P PPLA4 DE 01 082 08236 08236062 5583 450 Europe/Berlin 2011-04-25
-2822432 Tiefenbach Tiefenbach 49.95 7.55 P PPLA4 DE 08 00 07140 07140150 793 433 Europe/Berlin 2011-04-25
-2822434 Tiefenbach Tiefenbach 49.43333 12.58333 P PPLA4 DE 02 093 09372 09372163 0 525 Europe/Berlin 2011-04-25
-2822436 Tiefenbach Tiefenbach 49.18333 12.33333 P PPL DE 02 2247 398 Europe/Berlin 2006-01-17
-2822442 Tiefenbach Tiefenbach 48.61667 13.4 P PPLA4 DE 02 092 09275 09275151 0 396 Europe/Berlin 2011-04-25
-2822443 Tiefenbach Tiefenbach 48.5 12.1 P PPLA4 DE 02 092 09274 09274182 3501 430 Europe/Berlin 2011-04-25
-2822447 Tiefenbach Tiefenbach 48.08333 9.65 P PPLA4 DE 01 084 08426 08426118 527 590 Europe/Berlin 2011-04-25
-2822471 Tiddische Tiddische 52.51667 10.8 P PPLA4 DE 06 00 03151 03151031 1283 60 Europe/Berlin 2011-04-25
-2822484 Thyrnau Thyrnau 48.61667 13.53333 P PPLA4 DE 02 092 09275 09275150 4075 432 Europe/Berlin 2011-04-25
-2822522 Thurnau Thurnau Thurnau 50.01667 11.38333 P PPL DE 02 4502 379 Europe/Berlin 2012-01-18
-2822531 Thurmannsbang Thurmannsbang 48.76667 13.31667 P PPL DE 02 2458 495 Europe/Berlin 2006-01-27
-2822536 Thürkow Thurkow 53.83333 12.56667 P PPLA4 DE 12 00 13053 13053088 478 27 Europe/Berlin 2011-04-25
-2822541 Thüringenhausen Thuringenhausen Thuringenhausen,Thüringenhausen 51.26667 10.8 P PPLA4 DE 15 00 16065 16065072 105 218 Europe/Berlin 2011-04-25
-2822556 Thür Thur 50.35 7.28333 P PPLA4 DE 08 00 07137 07137101 1450 176 Europe/Berlin 2011-04-25
-2822563 Thüngersheim Thungersheim 49.87833 9.84917 P PPLA4 DE 02 096 09679 09679194 2726 190 Europe/Berlin 2011-04-25
-2822564 Thüngen Thungen Thungen,Thüngen 49.94222 9.85944 P PPL DE 02 1369 211 Europe/Berlin 2012-01-18
-2822571 Thundorf in Unterfranken Thundorf in Unterfranken Thundorf i. Ufr.,Thundorf i. Unterfranken,Thundorf in Unterfranken 50.2 10.31667 P PPL DE 02 1202 310 Europe/Berlin 2012-01-18
-2822589 Thumby Thumby 54.58333 9.91667 P PPLA4 DE 10 00 01058 01058162 501 21 Europe/Berlin 2011-04-25
-2822595 Thum Thum Thum 50.68333 12.96667 P PPL DE 13 5892 539 Europe/Berlin 2012-01-18
-2822599 Thulendorf Thulendorf 54.1 12.3 P PPLA4 DE 12 00 13051 13051079 536 40 Europe/Berlin 2011-04-25
-2822607 Thuine Thuine 52.5 7.48333 P PPLA4 DE 06 00 03454 03454053 1962 51 Europe/Berlin 2011-07-31
-2822633 Thörnich Thornich 49.83333 6.83333 P PPLA4 DE 08 00 07235 07235134 178 115 Europe/Berlin 2011-04-25
-2822637 Thörlingen Thorlingen 50.13333 7.53333 P PPLA4 DE 08 00 07140 07140149 146 411 Europe/Berlin 2011-04-25
-2822660 Thonhausen Thonhausen 50.83333 12.31667 P PPLA4 DE 15 00 16077 16077047 659 282 Europe/Berlin 2011-04-25
-2822684 Thomm Thomm 49.73333 6.8 P PPLA4 DE 08 00 07235 07235135 1036 459 Europe/Berlin 2011-04-25
-2822703 Thomasburg Thomasburg 53.23333 10.66667 P PPLA4 DE 06 00 03355 03355036 1269 37 Europe/Berlin 2011-04-25
-2822713 Tholey Tholey 49.48374 7.03691 P PPLA4 DE 09 00 10046 10046118 13157 389 Europe/Berlin 2011-04-25
-2822725 Thiessow Thiessow 54.27725 13.71574 P PPLA4 DE 12 00 13061 13061040 482 0 Europe/Berlin 2011-07-31
-2822736 Thierstein Thierstein Thierstein 50.1 12.1 P PPL DE 02 1278 581 Europe/Berlin 2012-02-02
-2822737 Thiersheim Thiersheim Thiersheim 50.08333 12.13333 P PPL DE 02 2117 538 Europe/Berlin 2012-02-02
-2822739 Thierschneck Thierschneck Thierschneck 51.03333 11.76667 P PPLA4 DE 15 00 16074 16074099 134 300 Europe/Berlin 2011-04-25
-2822749 Thierhaupten Thierhaupten Thierhaupten 48.56667 10.91667 P PPL DE 02 3841 467 Europe/Berlin 2012-01-18
-2822786 Thiendorf Thiendorf Theindorf 51.29375 13.74124 P PPLA4 DE 13 146 14627 14627290 2298 145 Europe/Berlin 2011-04-25
-2822822 Theuma Theuma 50.47007 12.22195 P PPLA4 DE 13 145 14523 14523410 1132 486 Europe/Berlin 2011-04-25
-2822837 Thesenvitz Thesenvitz 54.45 13.38333 P PPLA4 DE 12 00 13061 13061039 408 15 Europe/Berlin 2011-04-25
-2822840 Thermalbad Wiesenbad Thermalbad Wiesenbad Thermalbad Wiesenbad,Wiesenbad 50.61667 13.05 P PPLA4 DE DE 13 145 14521 14521630 0 469 Europe/Berlin 2011-04-25
-2822868 Themar Themar Themar 50.5 10.63333 P PPL DE 15 3083 371 Europe/Berlin 2012-01-18
-2822870 Thelkow Thelkow 54.03616 12.55978 P PPLA4 DE 12 00 13051 13051078 514 44 Europe/Berlin 2011-04-25
-2822881 Theißen Theissen Theissen,Theißen 51.08333 12.1 P PPL DE 14 1977 174 Europe/Berlin 2012-01-18
-2822883 Theisseil Theisseil 49.7 12.23333 P PPLA4 DE 02 093 09374 09374160 1261 520 Europe/Berlin 2011-04-25
-2822903 Theilheim Theilheim 49.75 10.03333 P PPLA4 DE 02 096 09679 09679193 2337 296 Europe/Berlin 2011-04-25
-2822930 Thedinghausen Thedinghausen Thedinghausen 52.96667 9.01667 P PPLA4 DE 06 00 03361 03361013 4727 7 Europe/Berlin 2011-07-31
-2822939 Tharandt Tharandt Tharandt 50.98333 13.58333 P PPL DE 13 5624 224 Europe/Berlin 2012-01-18
-2822941 Thanstein Thanstein 49.38333 12.46667 P PPLA4 DE 02 093 09376 09376172 1045 577 Europe/Berlin 2011-04-25
-2822958 Thannhausen Thannhausen Thannhausen 48.28333 10.46667 P PPL DE 02 6336 499 Europe/Berlin 2012-01-18
-2823024 Thandorf Thandorf 53.76667 10.81667 P PPLA4 DE 12 00 13058 13058099 180 56 Europe/Berlin 2011-04-25
-2823034 Thalwenden Thalwenden Thalwenden 51.35 10.05 P PPLA4 DE 15 00 16061 16061096 378 462 Europe/Berlin 2011-04-25
-2823044 Thalmässing Thalmassing Thalmassing,Thalmässing 49.08806 11.22306 P PPL DE 02 5442 416 Europe/Berlin 2012-01-18
-2823045 Thalmassing Thalmassing 48.91167 12.155 P PPLA4 DE 02 093 09375 09375205 3317 355 Europe/Berlin 2011-07-31
-2823049 Thallwitz Thallwitz 51.43333 12.68333 P PPLA4 DE 13 147 14729 14729380 3894 108 Europe/Berlin 2011-04-25
-2823052 Thallichtenberg Thallichtenberg 49.56667 7.35 P PPLA4 DE 08 00 07336 07336097 593 388 Europe/Berlin 2011-04-25
-2823078 Thalheim Thalheim 51.65 12.23333 P PPL DE 14 1558 87 Europe/Berlin 2006-01-17
-2823081 Thalheim Thalheim Thalheim 50.7 12.85 P PPL DE 13 7583 444 Europe/Berlin 2012-01-18
-2823087 Thalhausen Thalhausen 50.5 7.58333 P PPLA4 DE 08 00 07138 07138072 746 258 Europe/Berlin 2011-04-25
-2823137 Thaleischweiler-Fröschen Thaleischweiler-Froschen 49.26667 7.58333 P PPLA4 DE 08 00 07340 07340051 3515 290 Europe/Berlin 2011-04-25
-2823141 Thale Thale 51.75 11.05 P PPL DE 14 13386 167 Europe/Berlin 2006-01-17
-2823214 Thaining Thaining 47.95 10.96667 P PPLA4 DE 02 091 09181 09181142 908 693 Europe/Berlin 2011-04-25
-2823218 Thaden Thaden Thaden 54.1 9.41667 P PPLA4 DE 10 00 01058 01058161 298 27 Europe/Berlin 2011-04-25
-2823230 Teutschenthal Teutschenthal Teutschenthal 51.45 11.8 P PPLA4 DE 14 00 15088 15088365 6996 119 Europe/Berlin 2011-04-25
-2823233 Teutleben Teutleben 50.95 10.56667 P PPLA4 DE 15 00 16067 16067066 396 316 Europe/Berlin 2011-04-25
-2823245 Teuschnitz Teuschnitz Teuschnitz 50.38333 11.38333 P PPL DE 02 2247 619 Europe/Berlin 2012-01-18
-2823256 Teupitz Teupitz Teupitz 52.11667 13.61667 P PPL DE 11 1881 46 Europe/Berlin 2012-01-18
-2823257 Teunz Teunz 49.48333 12.38333 P PPLA4 DE 02 093 09376 09376171 2035 470 Europe/Berlin 2011-04-25
-2823259 Teugn Teugn 48.9 12.01667 P PPLA4 DE 02 092 09273 09273175 1508 388 Europe/Berlin 2011-04-25
-2823355 Teuchern Teuchern Teuchern 51.11667 12.01667 P PPL DE 14 3197 173 Europe/Berlin 2012-01-18
-2823360 Teublitz Teublitz Teublitz 49.22306 12.08833 P PPL DE 02 7405 353 Europe/Berlin 2012-01-18
-2823368 Tettnang Tettnang Tettnang 47.66667 9.6 P PPL DE 01 18135 470 Europe/Berlin 2012-02-02
-2823372 Tettenweis Tettenweis 48.44281 13.26955 P PPLA4 DE 02 092 09275 09275149 1702 334 Europe/Berlin 2011-04-25
-2823393 Tettau Tettau 51.43333 13.73333 P PPLA4 DE 11 00 12066 12066316 889 95 Europe/Berlin 2011-04-25
-2823395 Tettau Tettau Tettau 50.46667 11.25 P PPL DE 02 2516 728 Europe/Berlin 2012-02-02
-2823398 Teterow Teterow Teterow 53.78333 12.56667 P PPL DE 12 9544 29 Europe/Berlin 2012-01-18
-2823401 Tetenhusen Tetenhusen Tetenhusen 54.35 9.5 P PPLA4 DE 10 00 01059 01059087 950 7 Europe/Berlin 2011-04-25
-2823403 Tetenbüll Tetenbull Tetenbull,Tetenbüll 54.35214 8.82794 P PPLA4 DE 10 00 01054 01054135 653 2 Europe/Berlin 2011-08-23
-2823407 Testorf-Steinfort Testorf-Steinfort 53.78333 11.26667 P PPLA4 DE 12 00 13058 13058098 697 46 Europe/Berlin 2011-04-25
-2823418 Tessin Tessin 54.02764 12.46519 P PPL DE 12 4212 15 Europe/Berlin 2009-04-02
-2823420 Wittendörp Wittendoerp 53.56285 11.02461 P PPLA4 DE 12 00 13054 13054124 0 45 Europe/Berlin 2011-04-25
-2823424 Tessenow Tessenow 53.35311 11.89459 P PPLA4 DE 12 00 13060 13060079 0 84 Europe/Berlin 2011-07-21
-2823426 Tespe Tespe 53.3964 10.41084 P PPLA4 DE 06 00 03353 03353033 3987 5 Europe/Berlin 2011-09-04
-2823435 Teschenmoschel Teschenmoschel 49.63333 7.73333 P PPLA4 DE 08 00 07333 07333077 115 356 Europe/Berlin 2011-04-25
-2823486 Tensfeld Tensfeld Tensfeld 54.05 10.31667 P PPLA4 DE 10 00 01060 01060087 802 53 Europe/Berlin 2011-04-25
-2823497 Tennenbronn Tennenbronn 48.19041 8.35176 P PPL DE 01 3717 663 Europe/Berlin 2009-09-18
-2823504 Teningen Teningen 48.12952 7.81205 P PPLA4 DE 01 083 08316 08316043 11887 190 Europe/Berlin 2011-04-25
-2823515 Tengen Tengen 47.82128 8.66117 P PPL DE 01 4670 639 Europe/Berlin 2008-08-15
-2823533 Templin Templin 53.11865 13.5022 P PPL DE 11 17634 61 Europe/Berlin 2009-04-03
-2823561 Temmels Temmels 49.68333 6.46667 P PPLA4 DE 08 00 07235 07235133 649 205 Europe/Berlin 2011-04-25
-2823567 Teltow Teltow Teltow 52.4 13.26667 P PPL DE 11 19530 37 Europe/Berlin 2012-01-18
-2823578 Tellingstedt Tellingstedt 54.21667 9.28333 P PPLA4 DE 10 00 01051 01051114 2581 15 Europe/Berlin 2011-04-25
-2823579 Tellig Tellig 50.03333 7.25 P PPLA4 DE 08 00 07135 07135081 311 443 Europe/Berlin 2011-04-25
-2823590 Telgte Telgte Telgte 51.98333 7.78333 P PPL DE 07 19389 52 Europe/Berlin 2012-01-18
-2823603 Teistungen Teistungen Teistungen 51.46667 10.26667 P PPLA4 DE 15 00 16061 16061114 2566 198 Europe/Berlin 2011-07-31
-2823605 Teisnach Teisnach Teisnach 49.03333 13 P PPL DE 02 2962 478 Europe/Berlin 2012-01-18
-2823608 Teising Teising 48.23333 12.61667 P PPLA4 DE 02 091 09171 09171131 1971 399 Europe/Berlin 2011-04-25
-2823611 Teisendorf Teisendorf Teisendorf 47.85 12.81667 P PPL DE 02 9019 493 Europe/Berlin 2012-01-18
-2823625 Teichwolframsdorf Teichwolframsdorf Teichwolframsdorf 50.71667 12.25 P PPLA4 DE 15 00 16076 16076075 2686 353 Europe/Berlin 2011-04-25
-2823626 Teichwitz Teichwitz Teichwitz 50.75 12.08333 P PPLA4 DE 15 00 16076 16076074 122 360 Europe/Berlin 2011-04-25
-2823667 Teicha Teicha 51.56667 11.95 P PPL DE 14 1479 103 Europe/Berlin 2006-01-17
-2823679 Tegernsee Tegernsee 47.70967 11.75271 P PPL DE 02 3770 732 Europe/Berlin 2009-07-26
-2823682 Tegernheim Tegernheim 49.01667 12.18333 P PPLA4 DE 02 093 09375 09375204 4439 326 Europe/Berlin 2011-04-25
-2823710 Tegau Tegau Tegau 50.65 11.86667 P PPLA4 DE 15 00 16075 16075109 426 453 Europe/Berlin 2011-04-25
-2823728 Tecklenburg Tecklenburg Tecklenburg 52.21667 7.83333 P PPL DE 07 9552 131 Europe/Berlin 2012-01-18
-2823737 Techentin Techentin 53.58731 11.9878 P PPLA4 DE 12 00 13060 13060099 629 75 Europe/Berlin 2011-04-25
-2823740 Techelsdorf Techelsdorf Techelsdorf 54.21667 10.05 P PPLA4 DE 10 00 01058 01058160 163 39 Europe/Berlin 2011-04-25
-2823755 Tawern Tawern 49.66667 6.51667 P PPLA4 DE 08 00 07235 07235132 2345 238 Europe/Berlin 2011-04-25
-2823764 Tautenhain Tautenhain 50.93333 11.91667 P PPLA4 DE 15 00 16074 16074098 1273 334 Europe/Berlin 2011-04-25
-2823768 Tautendorf Tautendorf 50.81667 11.9 P PPLA4 DE 15 00 16074 16074097 164 377 Europe/Berlin 2011-04-25
-2823771 Tautenburg Tautenburg Tautenburg 51 11.71667 P PPLA4 DE 15 00 16074 16074096 333 235 Europe/Berlin 2011-04-25
-2823788 Tauscha Tauscha 51.26667 13.8 P PPLA4 DE 13 146 14627 14627280 1559 168 Europe/Berlin 2011-04-25
-2823795 Taura Taura 50.91667 12.85 P PPLA4 DE 13 145 14522 14522550 2609 298 Europe/Berlin 2011-07-31
-2823799 Taunusstein Taunusstein Stadt Taunusstein,Taunusshtajn,Taunusstein,Таунусштайн 50.15 8.15 P PPL DE 05 29501 383 Europe/Berlin 2012-01-18
-2823810 Taufkirchen Taufkirchen 48.35 12.13333 P PPL DE 02 8690 482 Europe/Berlin 2006-01-17
-2823811 Taufkirchen Taufkirchen 48.15 12.45 P PPLA4 DE 02 091 09183 09183145 1307 486 Europe/Berlin 2011-04-25
-2823812 Taufkirchen Taufkirchen 48.0432 11.61907 P PPLA4 DE 02 091 09184 09184145 17791 565 Europe/Berlin 2011-01-23
-2823824 Tauer Tauer 51.9 14.45 P PPLA4 DE 11 00 12071 12071384 785 67 Europe/Berlin 2011-04-25
-2823835 Tauche Tauche 52.15 14.16667 P PPLA4 DE 11 00 12067 12067493 4140 56 Europe/Berlin 2011-07-31
-2823836 Taucha Taucha Taucha 51.38333 12.48333 P PPL DE 13 14552 127 Europe/Berlin 2012-01-18
-2823851 Tauberrettersheim Tauberrettersheim 49.49444 9.93667 P PPLA4 DE 02 096 09679 09679192 839 239 Europe/Berlin 2011-04-25
-2823854 Tauberbischofsheim Tauberbischofsheim Tauberbischofsheim 49.62472 9.66278 P PPL DE 01 13293 176 Europe/Berlin 2012-02-28
-2823936 Tating Tating Tating 54.33333 8.71667 P PPLA4 DE 10 00 01054 01054134 1022 255 Europe/Berlin 2011-04-25
-2823951 Tastungen Tastungen 51.46919 10.30964 P PPLA4 DE 15 00 16061 16061094 282 261 Europe/Berlin 2011-04-25
-2823953 Tastrup Tastrup Tastrup 54.76667 9.48333 P PPLA4 DE 10 00 01059 01059101 464 41 Europe/Berlin 2011-04-25
-2823956 Tasdorf Tasdorf Tasdorf 54.1 10.03333 P PPLA4 DE 10 00 01057 01057083 362 27 Europe/Berlin 2011-04-25
-2823968 Markt Taschendorf Markt Taschendorf Markt Taschendorf,Taschendorf 49.7 10.55 P PPL DE 02 1075 349 Europe/Berlin 2012-01-18
-2823978 Tarp Tarp Tarp 54.66667 9.4 P PPLA4 DE 10 00 01059 01059171 5711 27 Europe/Berlin 2011-04-25
-2823981 Tarnow Tarnow 53.78333 12.01667 P PPLA4 DE 12 00 13053 13053086 1284 6 Europe/Berlin 2011-04-25
-2823989 Tarmstedt Tarmstedt Tarmstedt 53.22505 9.07763 P PPLA4 DE 06 00 03357 03357047 3616 21 Europe/Berlin 2011-07-29
-2823993 Tarbek Tarbek Tarbek 54.05 10.26667 P PPLA4 DE 10 00 01060 01060086 173 52 Europe/Berlin 2011-04-25
-2823997 Tappendorf Tappendorf Tappendorf 54.1 9.68333 P PPLA4 DE 10 00 01058 01058159 349 52 Europe/Berlin 2011-04-25
-2824000 Tappenbeck Tappenbeck 52.47055 10.74068 P PPLA4 DE 06 00 03151 03151030 1274 64 Europe/Berlin 2011-04-28
-2824005 Tapfheim Tapfheim 48.66667 10.68333 P PPLA4 DE 02 097 09779 09779218 4077 404 Europe/Berlin 2011-04-25
-2824020 Tantow Tantow 53.27163 14.35098 P PPLA4 DE 11 00 12073 12073565 793 22 Europe/Berlin 2011-04-25
-2824053 Tannheim Tannheim 48 10.08333 P PPLA4 DE 01 084 08426 08426117 2346 586 Europe/Berlin 2011-04-25
-2824055 Tannhausen Tannhausen 48.96667 10.35 P PPLA4 DE 01 081 08136 08136071 1868 495 Europe/Berlin 2011-07-31
-2824063 Tännesberg Tannesberg Tannesberg,Tenesberg,Tännesberg 49.53333 12.33333 P PPL DE 02 1536 650 Europe/Berlin 2012-01-18
-2824148 Tannenbergsthal Tannenbergsthal Tannenbergsthal 50.43333 12.46667 P PPL DE 13 1536 723 Europe/Berlin 2012-01-18
-2824152 Tannenberg Tannenberg 50.6 12.95 P PPLA4 DE 13 145 14521 14521610 1283 519 Europe/Berlin 2011-04-25
-2824227 Tanna Tanna Tanna 50.5 11.85 P PPL DE 15 4193 554 Europe/Berlin 2012-02-02
-2824229 Tann Tann Tann 50.65 10.01667 P PPL DE 05 4695 350 Europe/Berlin 2012-01-18
-2824230 Tann Tann 48.31463 12.89301 P PPL DE 02 092 4039 447 447 Europe/Berlin 2010-11-15
-2824245 Tangstedt Tangstedt 53.73333 10.08333 P PPLA4 DE 10 00 01062 01062076 5937 32 Europe/Berlin 2011-07-31
-2824246 Tangstedt Tangstedt 53.66667 9.85 P PPLA4 DE 10 00 01056 01056047 1829 12 Europe/Berlin 2011-04-25
-2824254 Tangermünde Tangermunde 52.54463 11.97647 P PPL DE 14 00 9912 43 Europe/Berlin 2010-11-22
-2824255 Tangerhütte Tangerhutte Tangerhutte,Tangerhütte 52.43333 11.8 P PPL DE 14 6039 37 Europe/Berlin 2012-01-18
-2824284 Tamm Tamm 48.91988 9.11556 P PPLA4 DE 01 081 08118 08118071 12129 256 Europe/Berlin 2011-04-25
-2824285 Tambach-Dietharz Tambach-Dietharz Dietharz,Tambach-Dietharz 50.8 10.61667 P PPL DE 15 4354 431 Europe/Berlin 2012-01-18
-2824297 Talling Talling 49.76667 6.95 P PPLA4 DE 08 00 07231 07231122 220 484 Europe/Berlin 2011-04-25
-2824303 Talkau Talkau Talkau 53.56667 10.56667 P PPLA4 DE 10 00 01053 01053125 543 63 Europe/Berlin 2011-04-25
-2824316 Talheim Talheim 49.08333 9.19306 P PPLA4 DE 01 081 08125 08125094 4758 205 Europe/Berlin 2011-04-25
-2824319 Talheim Talheim 48.01667 8.66667 P PPLA4 DE 01 083 08327 08327048 1195 827 Europe/Berlin 2011-04-25
-2824379 Tagmersheim Tagmersheim 48.81667 10.96667 P PPLA4 DE 02 097 09779 09779217 1083 499 Europe/Berlin 2011-04-25
-2824393 Täferrot Taferrot 48.84972 9.83824 P PPLA4 DE 01 081 08136 08136070 1045 408 Europe/Berlin 2011-04-25
-2824412 Tackesdorf Tackesdorf Tackesdorf 54.18333 9.48333 P PPLA4 DE 10 00 01058 01058158 91 6 Europe/Berlin 2011-04-25
-2824419 Taching am See Taching am See Taching a. See,Taching am See 47.96667 12.73333 P PPL DE 02 1937 450 Europe/Berlin 2012-01-18
-2824420 Tacherting Tacherting 48.08333 12.56667 P PPLA4 DE 02 091 09189 09189149 5704 471 Europe/Berlin 2011-04-25
-2824431 Taben-Rodt Taben-Rodt 49.55 6.58333 P PPLA4 DE 08 00 07235 07235131 912 264 Europe/Berlin 2011-04-25
-2824437 Tabarz Tabarz Tabarz 50.88333 10.51667 P PPL DE 15 4192 376 Europe/Berlin 2012-01-18
-2824441 Taarstedt Taarstedt Taarstedt 54.56667 9.68333 P PPLA4 DE 10 00 01059 01059086 862 11 Europe/Berlin 2011-04-25
-2824448 Syrau Syrau 50.53333 12.08333 P PPLA4 DE 13 145 14523 14523390 1754 452 Europe/Berlin 2011-04-25
-2824461 Syke Syke Syke 52.9 8.83333 P PPL DE 06 24274 25 Europe/Berlin 2012-01-18
-2824522 Sustrum Sustrum 52.91667 7.28333 P PPLA4 DE 06 00 03454 03454052 1258 6 Europe/Berlin 2011-04-25
-2824525 Süstedt Sustedt 52.86667 8.91667 P PPLA4 DE 06 00 03251 03251039 1533 19 Europe/Berlin 2011-04-25
-2824545 Süßen Sussen 48.67934 9.75534 P PPL DE 01 081 10167 361 Europe/Berlin 2010-11-15
-2824564 Süsel Susel Susel,Süsel 54.06667 10.71667 P PPLA4 DE 10 00 01055 01055041 5338 33 Europe/Berlin 2011-04-25
-2824572 Surwold Surwold 52.978 7.51534 P PPLA4 DE 06 00 03454 03454051 4421 10 Europe/Berlin 2011-07-31
-2824593 Surberg Surberg 47.86667 12.7 P PPLA4 DE 02 091 09189 09189148 3176 599 Europe/Berlin 2011-04-25
-2824602 Süpplingenburg Supplingenburg 52.25072 10.91011 P PPLA4 DE 06 00 03154 03154022 722 114 Europe/Berlin 2011-05-03
-2824603 Süpplingen Supplingen 52.22811 10.90393 P PPLA4 DE 06 00 03154 03154021 1857 111 Europe/Berlin 2011-05-03
-2824609 Süplingen Suplingen Suplingen,Süplingen 52.28759 11.3245 P PPLA4 DE 14 00 15083 15083495 1065 91 Europe/Berlin 2011-04-25
-2824642 Sundhausen Sundhausen 51.16667 10.71667 P PPLA4 DE 15 00 16064 16064061 0 250 Europe/Berlin 2011-04-25
-2824655 Sundern Sundern Sundern 51.33333 8 P PPL DE 07 29609 246 Europe/Berlin 2012-01-18
-2824687 Sünching Sunching 48.88333 12.35 P PPLA4 DE 02 093 09375 09375201 1934 344 Europe/Berlin 2011-04-25
-2824729 Sulzheim Sulzheim 49.95 10.33333 P PPLA4 DE 02 096 09678 09678183 2014 227 Europe/Berlin 2011-04-25
-2824730 Sulzheim Sulzheim 49.84306 8.09167 P PPLA4 DE 08 00 07331 07331063 1059 148 Europe/Berlin 2011-04-25
-2824738 Sulzfeld am Main Sulzfeld am Main 49.70694 10.13248 P PPL DE 02 1293 187 Europe/Berlin 2010-06-07
-2824739 Sülzfeld Sulzfeld 50.53333 10.36667 P PPLA4 DE 15 00 16066 16066073 947 347 Europe/Berlin 2011-07-31
-2824741 Sulzfeld Sulzfeld 50.25972 10.40525 P PPLA4 DE 02 096 09673 09673173 1808 300 Europe/Berlin 2012-01-01
-2824742 Sulzfeld Sulzfeld Sulzfeld 49.10472 8.85583 P PPLA4 DE 01 082 08215 08215082 4677 195 Europe/Berlin 2011-04-25
-2824753 Sulzemoos Sulzemoos 48.29107 11.26356 P PPLA4 DE 02 091 09174 09174146 2507 505 Europe/Berlin 2011-04-25
-2824770 Sulzdorf Sulzdorf 49.65 9.9 P PPL DE 02 1287 288 Europe/Berlin 2006-01-17
-2824776 Sulzburg Sulzburg 47.84116 7.70777 P PPL DE 01 083 2717 338 Europe/Berlin 2010-11-15
-2824787 Sulzberg Sulzberg 47.66667 10.35 P PPL DE 02 4587 732 Europe/Berlin 2006-01-17
-2824801 Sulzbach-Rosenberg Sulzbach-Rosenberg Sulzbach,Sulzbach-Rosenberg,Zul'cbakh-Rozenberg,Зульцбах-Розенберг 49.49833 11.75167 P PPL DE 02 20780 394 Europe/Berlin 2012-01-18
-2824804 Sulzbach an der Murr Sulzbach an der Murr Sulzbach 49.00303 9.5003 P PPLA4 DE 01 081 08119 08119075 5469 278 Europe/Berlin 2011-04-25
-2824806 Sulzbach am Main Sulzbach am Main Sulzbach,Sulzbach am Main 49.91083 9.15917 P PPL DE 02 7057 127 Europe/Berlin 2012-02-28
-2824835 Sulzbach Sulzbach 50.3 7.75 P PPLA4 DE 08 00 07141 07141132 228 294 Europe/Berlin 2011-04-25
-2824837 Sulzbach Sulzbach Sulzbach 50.13333 8.53333 P PPL DE 05 8149 134 Europe/Berlin 2012-01-18
-2824838 Sulzbach Sulzbach 49.83333 7.33333 P PPLA4 DE 08 00 07134 07134088 325 466 Europe/Berlin 2011-04-25
-2824841 Sulzbach Sulzbach Sulzbach 49.3 7.06667 P PPL DE 09 18364 237 Europe/Berlin 2012-02-02
-2824855 Sulz am Neckar Sulz am Neckar Sulz 48.36241 8.63309 P PPL DE 01 12763 431 Europe/Berlin 2008-12-23
-2824858 Sulza Sulza Sulza 50.86667 11.61667 P PPLA4 DE 15 00 16074 16074095 316 217 Europe/Berlin 2011-04-25
-2824888 Sülm Sulm 49.91667 6.56667 P PPLA4 DE 08 00 07232 07232125 486 344 Europe/Berlin 2011-04-25
-2824902 Sulingen Sulingen Sulingen 52.68333 8.8 P PPL DE 06 12835 46 Europe/Berlin 2012-01-18
-2824907 Sülfeld Sulfeld 53.8 10.23333 P PPLA4 DE 10 00 01060 01060085 3349 32 Europe/Berlin 2011-04-25
-2824926 Sukow Sukow 53.55 11.56667 P PPLA4 DE 12 00 13060 13060077 1505 40 Europe/Berlin 2011-04-25
-2824937 Sülstorf Sulstorf Suhlstorf,Sulstorf,Sühlstorf,Sülstorf 53.51667 11.36667 P PPLA4 DE 12 00 13054 13054101 1011 43 Europe/Berlin 2011-04-25
-2824940 Suhlendorf Suhlendorf 52.93333 10.76667 P PPLA4 DE 06 00 03360 03360024 2661 62 Europe/Berlin 2011-04-25
-2824948 Suhl Suhl Suhl,zul',zuru,Зуль,ズール 50.6 10.7 P PPL DE 15 43509 464 Europe/Berlin 2012-01-18
-2824954 Sugenheim Sugenheim Sugenheim 49.6 10.43333 P PPL DE 02 2388 308 Europe/Berlin 2012-01-18
-2824967 Sudwalde Sudwalde 52.8 8.85 P PPLA4 DE 06 00 03251 03251038 1159 46 Europe/Berlin 2011-04-25
-2824998 Südlohn Sudlohn Sudlohn,Südlohn 51.93333 6.86667 P PPLA4 DE 07 055 05554 05554060 9024 51 Europe/Berlin 2011-04-25
-2825077 Süderstapel Suderstapel Suderstapel,Süderstapel 54.35 9.21667 P PPLA4 DE 10 00 01059 01059085 1053 10 Europe/Berlin 2011-04-25
-2825108 Süderlügum Suderlugum 54.86667 8.91667 P PPLA4 DE 10 00 01054 01054131 2242 13 Europe/Berlin 2011-04-25
-2825130 Süderhöft Suderhoft 54.38333 9.23333 P PPLA4 DE 10 00 01054 01054130 0 11 Europe/Berlin 2011-04-25
-2825137 Süderheistedt Suderheistedt Suderheistedt,Süderheistedt 54.23333 9.13333 P PPLA4 DE 10 00 01051 01051141 559 253 Europe/Berlin 2011-04-25
-2825142 Süderhastedt Suderhastedt Suderhastedt,Süderhastedt 54.05 9.21667 P PPLA4 DE 10 00 01051 01051110 860 17 Europe/Berlin 2011-04-25
-2825145 Süderhackstedt Suderhackstedt Suderhackstedt,Süderhackstedt 54.6 9.28333 P PPLA4 DE 10 00 01059 01059169 357 10 Europe/Berlin 2011-04-25
-2825148 Südergellersen Sudergellersen 53.21667 10.3 P PPLA4 DE 06 00 03355 03355035 1595 56 Europe/Berlin 2011-04-25
-2825156 Süderfahrenstedt Suderfahrenstedt Suderfahrenstedt,Süderfahrenstedt 54.58333 9.58333 P PPLA4 DE 10 00 01059 01059084 521 34 Europe/Berlin 2011-04-25
-2825158 Süderende Suderende 54.72611 8.43853 P PPLA4 DE 10 00 01054 01054129 182 2 Europe/Berlin 2011-07-31
-2825173 Süderdeich Suderdeich 54.2 8.91667 P PPLA4 DE 10 00 01051 01051109 0 255 Europe/Berlin 2011-04-25
-2825180 Suderburg Suderburg 52.9 10.46667 P PPLA4 DE 06 00 03360 03360023 4778 61 Europe/Berlin 2011-04-25
-2825186 Süderbrarup Suderbrarup Suderbrarup,Süderbrarup 54.63333 9.78333 P PPLA4 DE 10 00 01059 01059083 3887 32 Europe/Berlin 2011-04-25
-2825196 Süderau Suderau Suderau,Süderau 53.81667 9.51667 P PPLA4 DE 10 00 01061 01061104 776 254 Europe/Berlin 2011-04-25
-2825225 Suddendorf Suddendorf 52.3 7.21667 P PPLA4 DE 06 00 03456 03456022 1091 35 Europe/Berlin 2011-04-25
-2825248 Suckow Suckow 53.30965 11.97081 P PPLA4 DE 12 00 13060 13060076 0 75 Europe/Berlin 2011-04-25
-2825266 Stuvenborn Stuvenborn Stuvenborn 53.85 10.13333 P PPLA4 DE 10 00 01060 01060084 893 25 Europe/Berlin 2011-04-25
-2825273 Stützerbach Stutzerbach Stutzerbach,Stützerbach 50.63333 10.86667 P PPLA4 DE 15 00 16070 16070049 1698 660 Europe/Berlin 2011-04-25
-2825275 Stützengrün Stutzengrun 50.53333 12.53333 P PPLA4 DE 13 145 14521 14521600 3900 640 Europe/Berlin 2011-04-25
-2825297 Stuttgart Stuttgart STR,Shhutgart,Shtutgart,Stoccarda,Stoutnkarde,Stutgartas,Stutgarte,Stutgarto,Stuttgart,Stuttgartum,ashtwtgart,s tu tkart,shtwtghart,shuto~uttogaruto,si tu jia te,stwtgrt,syututeugaleuteu,Štutgartas,Štutgarte,Στουτγκάρδη,Штутгарт,Штуттґарт,Щутгарт,שטוטגרט,اشتوتگارت,شتوتغارت,สตุตการ์ต,შტუტგარტი,シュトゥットガルト,斯图加特,슈투트가르트 48.78232 9.17702 P PPLA DE 01 081 08111 589793 252 Europe/Berlin 2011-06-16
-2825333 Stürzelbach Sturzelbach 50.65 7.61667 P PPLA4 DE 08 00 07132 07132109 258 285 Europe/Berlin 2011-04-25
-2825406 Stulln Stulln 49.41667 12.13333 P PPLA4 DE 02 093 09376 09376169 1683 369 Europe/Berlin 2011-04-25
-2825422 Stuhr Stuhr 53.03333 8.75 P PPLA4 DE 06 00 03251 03251037 32507 3 Europe/Berlin 2011-07-31
-2825429 Stühlingen Stuhlingen Stuhlingen,Stühlingen 47.73333 8.43333 P PPL DE 01 5297 591 Europe/Berlin 2012-01-18
-2825460 Stuer Stuer 53.37893 12.3373 P PPLA4 DE 12 00 13056 13056065 300 97 Europe/Berlin 2011-04-25
-2825519 Stubenberg Stubenberg 48.31667 13.08333 P PPLA4 DE 02 092 09277 09277147 1503 473 Europe/Berlin 2011-04-25
-2825550 Stubbendorf Stubbendorf 54.08782 12.52223 P PPLA4 DE 12 00 13051 13051076 0 42 Europe/Berlin 2011-04-25
-2825558 Stubben Stubben 53.73333 10.43333 P PPLA4 DE 10 00 01053 01053124 422 46 Europe/Berlin 2011-04-25
-2825559 Stubben Stubben 53.40902 8.78391 P PPLA4 DE 06 00 03352 03352053 0 14 Europe/Berlin 2011-10-13
-2825570 Struxdorf Struxdorf Struxdorf 54.63333 9.65 P PPLA4 DE 10 00 01059 01059082 683 23 Europe/Berlin 2011-04-25
-2825577 Struvenhütten Struvenhutten Struvenhutten,Struvenhütten 53.86667 10.05 P PPLA4 DE 10 00 01060 01060082 1062 19 Europe/Berlin 2011-04-25
-2825602 Strüth Struth 50.13333 7.88333 P PPLA4 DE 08 00 07141 07141131 319 440 Europe/Berlin 2011-04-25
-2825620 Struppen Struppen 50.93333 14.01667 P PPLA4 DE 13 146 14628 14628390 2749 231 Europe/Berlin 2011-04-25
-2825638 Strullendorf Strullendorf 49.84429 10.97208 P PPLA4 DE 02 094 09471 09471195 7926 254 Europe/Berlin 2011-04-25
-2825641 Strukdorf Strukdorf Strukdorf 53.91667 10.48333 P PPLA4 DE 10 00 01060 01060081 255 44 Europe/Berlin 2011-04-25
-2825647 Struckum Struckum Struckum,Struekem,Strükem 54.58333 9 P PPLA4 DE 10 00 01054 01054128 963 5 Europe/Berlin 2011-07-31
-2825681 Strübbel Strubbel Strubbel,Strübbel 54.26667 8.96667 P PPLA4 DE 10 00 01051 01051108 84 0 Europe/Berlin 2011-04-25
-2825683 Strotzbüsch Strotzbusch 50.1 6.95 P PPLA4 DE 08 00 07233 07233071 370 372 Europe/Berlin 2011-04-25
-2825715 Stromberg Stromberg 50.45 7.6 P PPL DE 08 3221 234 Europe/Berlin 2006-01-17
-2825733 Strohn Strohn 50.11667 6.91667 P PPLA4 DE 08 00 07233 07233070 493 388 Europe/Berlin 2011-04-25
-2825740 Strohkirchen Strohkirchen 53.4 11.31667 P PPLA4 DE 12 00 13054 13054100 364 23 Europe/Berlin 2011-04-25
-2825797 Ströbeck Strobeck Strobeck,Ströbeck 51.91667 10.95 P PPL DE 14 1181 167 Europe/Berlin 2012-01-18
-2825849 Strickscheid Strickscheid 50.13333 6.31667 P PPLA4 DE 08 00 07232 07232315 37 449 Europe/Berlin 2011-04-25
-2825949 Streithausen Streithausen 50.7 7.81667 P PPLA4 DE 08 00 07143 07143299 600 348 Europe/Berlin 2011-04-25
-2826033 Strehla Strehla Strehla 51.35 13.23333 P PPL DE 13 4231 98 Europe/Berlin 2012-01-18
-2826073 Straußfurt Straussfurt 51.16667 10.98333 P PPLA4 DE 15 00 16068 16068053 1963 160 Europe/Berlin 2011-04-25
-2826082 Strausberg Strausberg 52.57859 13.88741 P PPL DE 11 26649 67 Europe/Berlin 2009-01-29
-2826088 Straupitz Straupitz Straupitz 51.9 14.11667 P PPLA4 DE 11 00 12061 12061476 1098 52 Europe/Berlin 2011-04-25
-2826099 Straubing Straubing Straubing,Страубинг 48.88333 12.56667 P PPL DE 02 44580 324 Europe/Berlin 2012-01-18
-2826120 Straßkirchen Strasskirchen 48.83333 12.71667 P PPLA4 DE 02 092 09278 09278192 3348 327 Europe/Berlin 2011-04-25
-2826187 Straßberg Strassberg 48.17805 9.09059 P PPLA4 DE 01 084 08417 08417063 2755 675 Europe/Berlin 2011-07-31
-2826258 Strasburg Strasburg Strasburg 53.51667 13.75 P PPL DE 12 6286 59 Europe/Berlin 2012-01-18
-2826277 Strande Strande Strande 54.43333 10.16667 P PPLA4 DE 10 00 01058 01058157 1552 254 Europe/Berlin 2011-04-25
-2826287 Stralsund Stralsund Shtral'zund,Stralsund,shi te la er song,shutoraruzunto,Штральзунд,シュトラルズント,施特拉尔松 54.30911 13.0818 P PPL DE 12 58976 4 Europe/Berlin 2009-01-26
-2826290 Stralendorf Stralendorf 53.57498 11.30356 P PPLA4 DE 12 00 13054 13054099 1536 59 Europe/Berlin 2011-04-25
-2826294 Strahlungen Strahlungen 50.28333 10.23333 P PPLA4 DE 02 096 09673 09673171 928 319 Europe/Berlin 2011-04-25
-2826304 Straelen Straelen Straelen 51.45 6.26667 P PPL DE 07 15325 40 Europe/Berlin 2012-01-18
-2826328 Stöttwang Stottwang 47.88333 10.71667 P PPLA4 DE 02 097 09777 09777172 1847 740 Europe/Berlin 2011-04-25
-2826341 Stötten am Auerberg Stotten am Auerberg Stotten am Auerberg,Stötten am Auerberg 47.73333 10.68333 P PPL DE 02 1856 766 Europe/Berlin 2012-02-02
-2826356 Stößen Stossen Stossen,Stößen 51.1 11.93333 P PPL DE 14 1191 239 Europe/Berlin 2012-02-02
-2826359 Stoßdorf Stossdorf 50.78248 7.25126 P PPL DE 07 053 05382 05382020 1739 80 67 Europe/Berlin 2011-10-26
-2826380 Störnstein Stornstein Sternstein,Stornstein,Störnstein 49.73333 12.21667 P PPLA4 DE 02 093 09374 09374158 1445 454 Europe/Berlin 2011-04-25
-2826403 Storkow Storkow Storkow 52.25 13.93333 P PPL DE 11 9550 36 Europe/Berlin 2012-01-18
-2826409 Störkathen Storkathen Storkathen,Störkathen 53.98333 9.75 P PPLA4 DE 10 00 01061 01061103 108 6 Europe/Berlin 2011-04-25
-2826421 Stördorf Stordorf Stordorf,Stördorf 53.91531 9.42588 P PPLA4 DE 10 00 01061 01061102 132 255 Europe/Berlin 2011-07-31
-2826503 Stolzenau Stolzenau Stolzenau 52.51667 9.06667 P PPLA4 DE 06 00 03256 03256032 7473 30 Europe/Berlin 2011-07-31
-2826511 Stoltenberg Stoltenberg Stoltenberg 54.35 10.35 P PPLA4 DE 10 00 01057 01057081 381 34 Europe/Berlin 2011-04-25
-2826516 Stoltebüll Stoltebull Stoltebull,Stoltebüll 54.7 9.88333 P PPLA4 DE 10 00 01059 01059168 872 24 Europe/Berlin 2011-04-25
-2826532 Stolpen Stolpen Stolpen 51.05 14.08333 P PPL DE 13 6284 316 Europe/Berlin 2012-02-02
-2826536 Stolpe Stolpe 54.13333 10.21667 P PPLA4 DE 10 00 01057 01057080 1322 53 Europe/Berlin 2011-04-25
-2826538 Stolpe Stolpe 53.87247 13.56056 P PPLA4 DE 12 00 13059 13059093 434 8 Europe/Berlin 2011-04-25
-2826540 Stolpe Stolpe 53.35906 11.73855 P PPLA4 DE 12 00 13060 13060074 400 71 Europe/Berlin 2011-07-31
-2826584 Stollberg Stollberg 50.71667 12.8 P PPL DE 13 12948 433 Europe/Berlin 2006-01-17
-2826591 Stolk Stolk Stolk 54.6 9.55 P PPLA4 DE 10 00 01059 01059081 886 42 Europe/Berlin 2011-04-25
-2826594 Stolberg Stolberg Stolberg 51.56667 10.95 P PPL DE 14 1401 379 Europe/Berlin 2012-01-18
-2826595 Stolberg Stolberg Stolberg 50.76667 6.23333 P PPL DE 07 58874 201 Europe/Berlin 2012-01-18
-2826636 Stoetze Stoetze 53.06667 10.78333 P PPLA4 DE 06 00 03360 03360022 630 62 Europe/Berlin 2011-04-25
-2826637 Stödtlen Stodtlen Stodtlen,Stödtlen 49 10.3 P PPLA4 DE 01 081 08136 08136068 1957 466 Europe/Berlin 2011-04-25
-2826670 Stockstadt am Main Stockstadt am Main Stockstadt,Stockstadt am Main 49.97694 9.06417 P PPL DE 02 7663 118 Europe/Berlin 2012-02-28
-2826671 Stockstadt am Rhein Stockstadt am Rhein 49.80944 8.47278 P PPLA4 DE 05 064 06433 06433013 5741 89 Europe/Berlin 2011-04-25
-2826679 Stocksee Stocksee Stocksee 54.1 10.35 P PPLA4 DE 10 00 01060 01060080 462 54 Europe/Berlin 2011-04-25
-2826681 Stöckse Stockse 52.64067 9.34027 P PPLA4 DE 06 00 03256 03256031 1400 45 Europe/Berlin 2011-04-25
-2826741 Stockheim Stockheim 50.45 10.28333 P PPLA4 DE 02 096 09673 09673170 1142 274 Europe/Berlin 2011-04-25
-2826743 Stockheim Stockheim 50.3 11.26667 P PPLA4 DE 02 094 09476 09476178 5286 425 Europe/Berlin 2011-04-25
-2826755 Stockhausen-Illfurth Stockhausen-Illfurth Stockhausen-Illfurt,Stockhausen-Illfurth 50.65 7.98333 P PPLA4 DE 08 00 07143 07143297 486 522 Europe/Berlin 2011-04-25
-2826789 Stöckey Stockey Stockey,Stöckey 51.53333 10.5 P PPLA4 DE 15 00 16061 16061093 448 232 Europe/Berlin 2011-04-25
-2826859 Stockem Stockem 49.93333 6.38333 P PPLA4 DE 08 00 07232 07232124 76 302 Europe/Berlin 2011-04-25
-2826861 Stockelsdorf Stockelsdorf 53.8922 10.64713 P PPLA4 DE 10 00 01055 01055040 16562 15 Europe/Berlin 2012-03-09
-2826909 Stockach Stockach Stockach 47.85 9.01667 P PPL DE 01 16844 471 Europe/Berlin 2012-01-18
-2826973 Stipshausen Stipshausen 49.85 7.28333 P PPLA4 DE 08 00 07134 07134087 970 535 Europe/Berlin 2011-04-25
-2826974 Stipsdorf Stipsdorf Stipsdorf 53.95 10.33333 P PPLA4 DE 10 00 01060 01060079 241 27 Europe/Berlin 2011-04-25
-2826985 Stinstedt Stinstedt 53.66667 8.96667 P PPLA4 DE 06 00 03352 03352052 0 8 Europe/Berlin 2011-04-25
-2826997 Stimpfach Stimpfach 49.06135 10.09274 P PPLA4 DE 01 081 08127 08127104 3129 415 Europe/Berlin 2011-04-25
-2827166 Steyerberg Steyerberg Steyerberg 52.56667 9.03333 P PPL DE 06 5368 31 Europe/Berlin 2012-01-18
-2827197 Stettfeld Stettfeld 49.97187 10.72386 P PPLA4 DE 02 096 09674 09674201 1302 245 Europe/Berlin 2011-04-25
-2827216 Stetten am Kalten Markt Stetten am Kalten Markt 48.12419 9.07775 P PPL DE 01 5471 804 Europe/Berlin 2008-12-23
-2827223 Stetten Stetten 49.66944 8.09194 P PPLA4 DE 08 00 07333 07333076 644 241 Europe/Berlin 2011-04-25
-2827240 Stetten Stetten 48.03333 10.43333 P PPLA4 DE 02 097 09778 09778199 1365 621 Europe/Berlin 2011-04-25
-2827246 Stetten Stetten 47.69012 9.29855 P PPLA4 DE 01 084 08435 08435054 953 461 Europe/Berlin 2011-04-25
-2827284 Sterup Sterup Sterup 54.73333 9.73333 P PPLA4 DE 10 00 01059 01059167 1449 16 Europe/Berlin 2011-04-25
-2827318 Sternenfels Sternenfels Sternenfels 49.05139 8.85083 P PPLA4 DE 01 082 08236 08236061 2797 305 Europe/Berlin 2011-04-25
-2827336 Sternberg Sternberg 53.71236 11.82678 P PPL DE 12 4863 23 Europe/Berlin 2010-05-28
-2827359 Sterley Sterley Sterley 53.61667 10.81667 P PPLA4 DE 10 00 01053 01053123 941 44 Europe/Berlin 2011-04-25
-2827400 Stephansposching Stephansposching 48.81667 12.8 P PPLA4 DE 02 092 09271 09271151 3080 327 Europe/Berlin 2011-04-25
-2827406 Stephanskirchen Stephanskirchen 47.85389 12.1856 P PPLA4 DE 02 091 09187 09187177 9554 483 Europe/Berlin 2011-07-31
-2827414 Stepfershausen Stepfershausen Stepfershausen 50.6 10.3 P PPLA4 DE 15 00 16066 16066071 656 428 Europe/Berlin 2011-04-25
-2827479 Stendal Stendal Stendal,Stendal',Стендаль 52.6 11.85 P PPL DE 14 37722 30 Europe/Berlin 2012-01-18
-2827481 Stemshorn Stemshorn 52.45 8.36667 P PPLA4 DE 06 00 03251 03251036 739 54 Europe/Berlin 2011-04-25
-2827501 Stemmen Stemmen 53.22423 9.55313 P PPLA4 DE 06 00 03357 03357046 947 39 Europe/Berlin 2011-04-25
-2827527 Stelzenberg Stelzenberg 49.38333 7.73333 P PPLA4 DE 08 00 07335 07335045 1291 362 Europe/Berlin 2011-04-25
-2827552 Stellingen Stellingen 53.5922 9.9287 P PPLX DE 04 23472 23 Europe/Berlin 2011-08-21
-2827559 Stelle-Wittenwurth Stelle-Wittenwurth Stelle-Wittenwurth 54.26667 9.05 P PPLA4 DE 10 00 01051 01051107 467 4 Europe/Berlin 2011-04-25
-2827574 Stelle Stelle 53.38416 10.11138 P PPLA4 DE 06 00 03353 03353032 11073 8 Europe/Berlin 2011-09-04
-2827602 Steißlingen Steisslingen 47.8 8.93333 P PPLA4 DE 01 083 08335 08335077 4457 465 Europe/Berlin 2011-04-25
-2827608 Stein-Wingert Stein-Wingert 50.71667 7.73333 P PPLA4 DE 08 00 07143 07143296 215 259 Europe/Berlin 2011-04-25
-2827610 Steinwiesen Steinwiesen Steinwiesen 50.29444 11.46295 P PPL DE 02 3869 457 Europe/Berlin 2012-03-04
-2827613 Steinwenden Steinwenden 49.45 7.53333 P PPLA4 DE 08 00 07335 07335044 2535 234 Europe/Berlin 2011-04-25
-2827615 Steinweiler Steinweiler 49.12111 8.14139 P PPLA4 DE 08 00 07334 07334030 1843 133 Europe/Berlin 2011-04-25
-2827638 Steinthaleben Steinthaleben Steinthaleben 51.4 11.01667 P PPLA4 DE 15 00 16065 16065068 548 213 Europe/Berlin 2011-04-25
-2827664 Steinsfeld Steinsfeld 49.41667 10.21667 P PPLA4 DE 02 095 09571 09571205 1308 394 Europe/Berlin 2011-04-25
-2827677 Steinsdorf Steinsdorf 50.75 12.05 P PPLA4 DE 15 00 16076 16076073 995 326 Europe/Berlin 2011-04-25
-2827688 Steinsberg Steinsberg 50.33333 7.95 P PPLA4 DE 08 00 07141 07141130 276 101 Europe/Berlin 2011-04-25
-2827702 Steinrode Steinrode Steinrode 51.5 10.48333 P PPLA4 DE 15 00 16061 16061092 534 364 Europe/Berlin 2011-04-25
-2827749 Stein-Neukirch Stein-Neukirch Neukirch,Stein-Neukirch 50.68333 8.05 P PPLA4 DE 08 00 07143 07143295 490 587 Europe/Berlin 2011-04-25
-2827758 Steinmauern Steinmauern 48.90095 8.19692 P PPLA4 DE 01 082 08216 08216052 2916 113 Europe/Berlin 2011-07-31
-2827862 Steinkirchen Steinkirchen 53.56601 9.61111 P PPLA4 DE 06 00 03359 03359039 1650 1 Europe/Berlin 2011-08-26
-2827870 Steinkirchen Steinkirchen 48.38333 12.08333 P PPLA4 DE 02 091 09177 09177138 1185 504 Europe/Berlin 2011-04-25
-2827896 Steinitz Steinitz Kemnitz,Steinitz 52.83333 11.11667 P PPLA4 DE 14 00 15081 15081510 481 31 Europe/Berlin 2011-04-25
-2827900 Steiningen Steiningen 50.18333 6.91667 P PPLA4 DE 08 00 07233 07233068 193 500 Europe/Berlin 2011-04-25
-2827907 Steinigtwolmsdorf Steinigtwolmsdorf 51.06314 14.3454 P PPLA4 DE 13 146 14625 14625590 3422 403 Europe/Berlin 2011-04-25
-2827950 Steinhorst Steinhorst 53.71667 10.48333 P PPLA4 DE 10 00 01053 01053122 545 61 Europe/Berlin 2011-04-25
-2827951 Steinhorst Steinhorst 52.68333 10.4 P PPLA4 DE 06 00 03151 03151029 1397 76 Europe/Berlin 2011-04-25
-2827955 Steinhöring Steinhoring 48.08679 12.0314 P PPLA4 DE 02 091 09175 09175137 3759 518 Europe/Berlin 2011-04-25
-2827965 Steinhöfel Steinhofel 52.4 14.16667 P PPLA4 DE 11 00 12067 12067473 4672 51 Europe/Berlin 2011-07-31
-2827983 Steinheuterode Steinheuterode 51.38333 10.06667 P PPLA4 DE 15 00 16061 16061091 293 284 Europe/Berlin 2011-04-25
-2827988 Steinheim am der Murr Steinheim am der Murr Steinheim,Steinheim am der Murr 48.96667 9.28333 P PPL DE 01 11374 242 Europe/Berlin 2012-01-18
-2827989 Steinheim am Albuch Steinheim am Albuch 48.6909 10.06382 P PPLA4 DE 01 081 08135 08135032 9013 534 Europe/Berlin 2011-07-31
-2827990 Steinheim Steinheim 51.87066 9.09136 P PPL DE 07 057 13797 148 Europe/Berlin 2010-11-15
-2827999 Steinheid Steinheid 50.46667 11.08333 P PPLA4 DE 15 00 16072 16072021 1311 804 Europe/Berlin 2011-04-25
-2828007 Steinhausen an der Rottum Steinhausen an der Rottum 48.01667 9.96667 P PPLA4 DE 01 084 08426 08426113 0 672 Europe/Berlin 2011-04-25
-2828016 Steinhausen Steinhausen 48.03333 9.7 P PPL DE 01 1915 576 Europe/Berlin 2006-01-17
-2828045 Steinhagen Steinhagen 54.22616 12.98867 P PPLA4 DE 12 00 13057 13057083 2738 23 Europe/Berlin 2011-07-31
-2828048 Steinhagen Steinhagen 53.85 11.93333 P PPLA4 DE 12 00 13053 13053083 0 17 Europe/Berlin 2011-04-25
-2828050 Steinhagen Steinhagen Steinhagen 52 8.4 P PPLA4 DE 07 057 05754 05754040 19869 96 Europe/Berlin 2011-07-31
-2828089 Steingaden Steingaden 47.7 10.86667 P PPLA4 DE 02 091 09190 09190154 2828 805 Europe/Berlin 2011-04-25
-2828105 Steinfurt Steinfurt 52.15045 7.33664 P PPL DE 07 055 34601 59 Europe/Berlin 2010-11-15
-2828129 Steinfeld Steinfeld 54.6 9.75 P PPLA4 DE 10 00 01059 01059080 0 28 Europe/Berlin 2011-04-25
-2828131 Steinfeld Steinfeld 54.10813 12.30975 P PPLA4 DE 12 00 13051 13051075 0 46 Europe/Berlin 2011-07-31
-2828136 Steinfeld Steinfeld Steinfeld 52.6 8.21667 P PPL DE 06 9392 41 Europe/Berlin 2012-01-18
-2828140 Steinfeld Steinfeld 49.95278 9.66944 P PPLA4 DE 02 096 09677 09677186 2302 279 Europe/Berlin 2011-04-25
-2828141 Steinfeld Steinfeld 49.04833 8.03694 P PPLA4 DE 08 00 07337 07337076 1998 144 Europe/Berlin 2011-04-25
-2828165 Steineroth Steineroth 50.75 7.85 P PPLA4 DE 08 00 07132 07132108 684 382 Europe/Berlin 2011-04-25
-2828206 Steinenbronn Steinenbronn Steinenbronn 48.66667 9.11667 P PPLA4 DE 01 081 08115 08115046 6089 439 Europe/Berlin 2011-04-25
-2828227 Steinen Steinen 50.58333 7.8 P PPLA4 DE 08 00 07143 07143075 259 459 Europe/Berlin 2011-04-25
-2828228 Steinen Steinen 47.64446 7.73914 P PPLA4 DE 01 083 08336 08336084 10128 330 Europe/Berlin 2011-04-25
-2828241 Steinefrenz Steinefrenz 50.46667 7.93333 P PPLA4 DE 08 00 07143 07143074 753 277 Europe/Berlin 2011-04-25
-2828249 Steineberg Steineberg 50.18333 6.91667 P PPLA4 DE 08 00 07233 07233067 252 500 Europe/Berlin 2011-04-25
-2828270 Steindorf Steindorf 48.21667 11 P PPLA4 DE 02 097 09771 09771168 943 542 Europe/Berlin 2011-04-25
-2828384 Steinborn Steinborn 50.06667 6.63333 P PPLA4 DE 08 00 07232 07232313 233 464 Europe/Berlin 2011-04-25
-2828386 Stein-Bockenheim Stein-Bockenheim 49.76667 7.96667 P PPLA4 DE 08 00 07331 07331062 688 225 Europe/Berlin 2011-04-25
-2828396 Steinbergkirche Steinbergkirche Steinbergkirche 54.75 9.76667 P PPLA4 DE 10 00 01059 01059165 1445 30 Europe/Berlin 2011-07-31
-2828428 Steinberg Steinberg 54.76667 9.78333 P PPLA4 DE 10 00 01059 01059164 1031 15 Europe/Berlin 2011-04-25
-2828443 Steinberg Steinberg 49.28333 12.18333 P PPLA4 DE 02 093 09376 09376168 0 386 Europe/Berlin 2011-04-25
-2828685 Stein bei Nürnberg Stein bei Nurnberg Stein,Stein bei Nurnberg,Stein bei Nürnberg 49.41667 11.01667 P PPL DE 02 14055 307 Europe/Berlin 2012-01-18
-2828723 Kurort Steinbach-Hallenberg Kurort Steinbach-Hallenberg Kurort Steinbach-Hallenberg,Steinbach-Hallenberg 50.7 10.56667 P PPL DE 15 5776 443 Europe/Berlin 2012-01-18
-2828737 Steinbach am Taunus Steinbach am Taunus Steinbach,Steinbach am Taunus 50.16667 8.56667 P PPL DE 05 10170 180 Europe/Berlin 2012-01-18
-2828738 Steinbach am Donnersberg Steinbach am Donnersberg 49.6 7.95 P PPLA4 DE 08 00 07333 07333075 828 295 Europe/Berlin 2011-04-25
-2828788 Steinbach Steinbach Steinbach (Eichsfeld) 51.42212 10.21866 P PPLA4 DE 15 00 16061 16061089 563 355 Europe/Berlin 2011-03-15
-2828795 Steinbach Steinbach 50.83333 10.36667 P PPLA4 DE 15 00 16063 16063073 1345 414 Europe/Berlin 2011-04-25
-2828805 Steinbach Steinbach 50.15 11.65 P PPL DE 02 3522 540 Europe/Berlin 2006-01-17
-2828806 Steinbach Steinbach 50.03333 7.6 P PPLA4 DE 08 00 07140 07140148 115 478 Europe/Berlin 2011-04-25
-2828869 Steinau Steinau 53.68333 8.88333 P PPLA4 DE 06 00 03352 03352051 0 253 Europe/Berlin 2011-04-25
-2828871 Steinau an der Straße Steinau an der Strasse Steinau 50.31401 9.46335 P PPL DE 05 064 11302 175 Europe/Berlin 2010-11-15
-2828879 Steinalben Steinalben 49.31667 7.65 P PPLA4 DE 08 00 07340 07340050 460 263 Europe/Berlin 2011-04-25
-2828907 Steinach Steinach Steinach 50.43333 11.16667 P PPL DE 15 4729 527 Europe/Berlin 2012-01-18
-2828911 Steinach Steinach 48.95 12.61667 P PPLA4 DE 02 092 09278 09278190 2938 325 Europe/Berlin 2011-04-25
-2828913 Steinach Steinach Steinach 48.3 8.05 P PPLA4 DE 01 083 08317 08317129 3924 278 Europe/Berlin 2011-04-25
-2828923 Steina Steina Niedersteina,Steina 51.2 14.05 P PPLA4 DE 13 146 14625 14625580 1842 320 Europe/Berlin 2011-04-25
-2828929 Stein Stein 54.41667 10.26667 P PPLA4 DE 10 00 01057 01057079 859 4 Europe/Berlin 2011-04-25
-2828984 Steimel Steimel 50.61667 7.63333 P PPLA4 DE 08 00 07138 07138070 1349 304 Europe/Berlin 2011-04-25
-2828993 Steimbke Steimbke 52.65483 9.39091 P PPLA4 DE 06 00 03256 03256029 2505 38 Europe/Berlin 2011-07-31
-2828994 Steilshoop Steilshoop 53.61028 10.05917 P PPLX DE 04 19343 30 Europe/Berlin 2011-08-21
-2829011 Steigra Steigra Steigra 51.3 11.66667 P PPLA4 DE 14 00 15088 15088355 916 216 Europe/Berlin 2011-04-25
-2829080 Stiefenhofen Stiefenhofen Steifenhofen,Stiefenhofen 47.5932 10.00365 P PPLA4 DE 02 097 09776 09776127 1738 816 Europe/Berlin 2011-07-21
-2829130 Stegen Stegen 47.98333 7.96667 P PPLA4 DE 01 083 08315 08315109 4490 386 Europe/Berlin 2011-04-25
-2829145 Stegaurach Stegaurach 49.86543 10.84385 P PPLA4 DE 02 094 09471 09471191 6804 287 Europe/Berlin 2011-07-31
-2829154 Steffenshagen Steffenshagen 54.1 11.83333 P PPLA4 DE 12 00 13051 13051074 516 57 Europe/Berlin 2011-04-25
-2829161 Steffeln Steffeln 50.28333 6.56667 P PPLA4 DE 08 00 07233 07233241 685 495 Europe/Berlin 2011-04-25
-2829168 Steesow Steesow 53.15881 11.54406 P PPLA4 DE 12 00 13054 13054098 202 38 Europe/Berlin 2011-07-31
-2829183 Steenfeld Steenfeld Steenfeld 54.15 9.36667 P PPLA4 DE 10 00 01058 01058156 443 0 Europe/Berlin 2011-04-25
-2829210 Stedten Stedten Stedten 51.43333 11.68333 P PPL DE 14 1115 158 Europe/Berlin 2012-02-02
-2829218 Stedesdorf Stedesdorf 53.63333 7.66667 P PPLA4 DE 06 00 03462 03462015 1715 0 Europe/Berlin 2011-04-25
-2829219 Stedesand Stedesand Staeaesoenj,Stedesand,Stääsönj 54.73333 8.91667 P PPLA4 DE 10 00 01054 01054126 918 253 Europe/Berlin 2011-04-25
-2829280 Stebach Stebach 50.51667 7.65 P PPLA4 DE 08 00 07138 07138069 348 289 Europe/Berlin 2011-04-25
-2829291 Staven Staven 53.63333 13.4 P PPLA4 DE 12 00 13055 13055066 560 53 Europe/Berlin 2011-04-25
-2829322 Staufenberg Staufenberg Staufenberg 50.66667 8.71667 P PPL DE 05 8346 167 Europe/Berlin 2012-01-18
-2829333 Staufen Staufen 47.75 8.21667 P PPL DE 01 7779 947 Europe/Berlin 2006-01-17
-2829345 Staudt Staudt 50.46667 7.83333 P PPLA4 DE 08 00 07143 07143073 999 256 Europe/Berlin 2011-04-25
-2829353 Staudernheim Staudernheim 49.78333 7.68333 P PPLA4 DE 08 00 07133 07133102 1601 229 Europe/Berlin 2011-04-25
-2829375 Staudach-Egerndach Staudach-Egerndach 47.78333 12.48333 P PPLA4 DE 02 091 09189 09189146 1172 531 Europe/Berlin 2011-04-25
-2829402 Stauchitz Stauchitz 51.25 13.21667 P PPLA4 DE 13 146 14627 14627260 3463 124 Europe/Berlin 2011-04-25
-2829422 Staßfurt Stassfurt Shtasfurt,Stadt Stassfurt,Stadt Staßfurt,Stassfurt,Staßfurt,Штасфурт 51.86667 11.58333 P PPL DE 14 22960 96 Europe/Berlin 2012-01-18
-2829457 Starnberg Starnberg Shtarnberg,Starenberg,Starnberg,Штарнберг 48 11.35 P PPL DE 02 23086 589 Europe/Berlin 2012-01-18
-2829480 Starkenburg Starkenburg 49.96667 7.13333 P PPLA4 DE 08 00 07231 07231120 252 101 Europe/Berlin 2011-04-25
-2829509 Stapelfeld Stapelfeld 53.6 10.21667 P PPLA4 DE 10 00 01062 01062071 1586 42 Europe/Berlin 2011-08-21
-2829513 Stapelburg Stapelburg Stapelburg 51.9 10.66667 P PPL DE 14 1386 229 Europe/Berlin 2012-01-18
-2829534 Stangheck Stangheck Stangheck 54.71667 9.86667 P PPLA4 DE 10 00 01059 01059163 258 25 Europe/Berlin 2011-04-25
-2829565 Standenbühl Standenbuhl 49.6 7.98333 P PPLA4 DE 08 00 07333 07333074 220 248 Europe/Berlin 2011-07-31
-2829568 Stanau Stanau Stanau 50.78333 11.73333 P PPLA4 DE 15 00 16075 16075106 156 307 Europe/Berlin 2011-07-31
-2829569 Stamsried Stamsried Stamsried 49.26667 12.53333 P PPL DE 02 2276 436 Europe/Berlin 2012-01-18
-2829580 Stammham Stammham 48.85 11.46667 P PPLA4 DE 02 091 09176 09176161 0 455 Europe/Berlin 2011-04-25
-2829581 Stammham Stammham 48.29604 11.86961 P PPL DE 02 091 3487 478 Europe/Berlin 2010-11-15
-2829582 Stammham Stammham 48.25 12.88333 P PPLA4 DE 02 091 09171 09171130 1044 367 Europe/Berlin 2011-04-25
-2829595 Stammbach Stammbach 50.15 11.68333 P PPL DE 02 2623 563 Europe/Berlin 2006-01-17
-2829602 Stallwang Stallwang 49.05 12.66667 P PPLA4 DE 02 092 09278 09278189 0 492 Europe/Berlin 2011-04-25
-2829603 Stallwang Stallwang 48.56667 12.23333 P PPL DE 02 1382 463 Europe/Berlin 2006-01-17
-2829638 Stakendorf Stakendorf Stakendorf 54.38333 10.43333 P PPLA4 DE 10 00 01057 01057078 461 22 Europe/Berlin 2011-04-25
-2829641 Staitz Staitz 50.71793 11.99244 P PPLA4 DE 15 00 16076 16076072 337 369 Europe/Berlin 2011-04-25
-2829644 Staig Staig 48.29998 9.99138 P PPLA4 DE 01 084 08425 08425138 3205 499 Europe/Berlin 2011-04-25
-2829657 Stahnsdorf Stahnsdorf Stahnsdorf 52.38333 13.21667 P PPLA4 DE 11 00 12069 12069604 12964 43 Europe/Berlin 2011-07-31
-2829664 Stahlhofen Stahlhofen 50.4 7.86667 P PPLA4 DE 08 00 07143 07143072 369 285 Europe/Berlin 2011-04-25
-2829678 Stahlberg Stahlberg 49.66667 7.78333 P PPLA4 DE 08 00 07333 07333073 198 388 Europe/Berlin 2011-04-25
-2829693 Stafstedt Stafstedt Stafstedt 54.16667 9.66667 P PPLA4 DE 10 00 01058 01058155 385 16 Europe/Berlin 2011-04-25
-2829698 Staffhorst Staffhorst 52.71667 8.96667 P PPLA4 DE 06 00 03251 03251035 578 43 Europe/Berlin 2011-04-25
-2829701 Bad Staffelstein Bad Staffelstein Staffelstein 50.10199 11.00128 P PPL DE 02 094 09478 10618 274 282 Europe/Berlin 2012-01-11
-2829731 Stadum Stadum Stadum 54.73333 9.05 P PPLA4 DE 10 00 01054 01054125 1058 7 Europe/Berlin 2011-04-25
-2829734 Stadt Wehlen Stadt Wehlen 50.95821 14.03091 P PPL DE 13 146 1733 163 Europe/Berlin 2010-11-15
-2829742 Stadtsteinach Stadtsteinach Stadtsteinach 50.16667 11.5 P PPL DE 02 3563 347 Europe/Berlin 2012-01-18
-2829750 Stadtroda Stadtroda 50.85 11.73333 P PPL DE 15 6695 252 Europe/Berlin 2006-01-17
-2829751 Stadtprozelten Stadtprozelten Stadtprozelten 49.78806 9.41361 P PPL DE 02 1702 210 Europe/Berlin 2012-02-02
-2829753 Stadtoldendorf Stadtoldendorf Stadtoldendorf 51.9 9.65 P PPL DE 06 6082 386 Europe/Berlin 2012-01-18
-2829758 Stadtlohn Stadtlohn Stadtlohn 51.98333 6.93333 P PPL DE 07 20602 53 Europe/Berlin 2012-01-18
-2829759 Stadtlengsfeld Stadtlengsfeld Lengsfeld,Stadtlengsfeld 50.78333 10.13333 P PPL DE 15 2698 292 Europe/Berlin 2012-01-18
-2829760 Stadtlauringen Stadtlauringen Stadtlauringen 50.18333 10.36667 P PPL DE 02 4496 299 Europe/Berlin 2012-01-18
-2829762 Stadtkyll Stadtkyll 50.35 6.53333 P PPLA4 DE 08 00 07233 07233240 1600 459 Europe/Berlin 2011-04-25
-2829765 Stadtilm Stadtilm Stadtilm 50.76667 11.08333 P PPL DE 15 5265 425 Europe/Berlin 2012-01-18
-2829777 Stadthagen Stadthagen 52.32333 9.20311 P PPL DE 06 23076 77 Europe/Berlin 2009-09-07
-2829790 Stadtbergen Stadtbergen Stadtbergen,Stadtberger 48.36667 10.85 P PPLX DE 02 14705 482 Europe/Berlin 2012-01-18
-2829804 Stadtallendorf Stadtallendorf Stadtallendorf 50.83333 9.01667 P PPL DE 05 21720 261 Europe/Berlin 2012-01-18
-2829825 Stadlern Stadlern 49.5 12.61667 P PPLA4 DE 02 093 09376 09376167 634 700 Europe/Berlin 2011-04-25
-2829858 Stadensen Stadensen 52.87571 10.55619 P PPLA4 DE 06 00 03360 03360021 1374 57 Europe/Berlin 2011-04-25
-2829876 Stadelhofen Stadelhofen 50.00317 11.19757 P PPLA4 DE 02 094 09471 09471189 1264 480 Europe/Berlin 2011-04-25
-2829901 Stade Stade Stade,Stood,shtadh,shutade,شتاده,シュターデ 53.6 9.48333 P PPL DE 06 45634 0 Europe/Berlin 2012-01-18
-2829943 Stäbelow Stabelow 54.03333 12.01667 P PPLA4 DE 12 00 13051 13051073 1250 35 Europe/Berlin 2011-04-25
-2829990 Sprötau Sprotau 51.11667 11.2 P PPLA4 DE 15 00 16068 16068052 860 233 Europe/Berlin 2011-04-25
-2829998 Sprockhövel Sprockhovel Sprockhovel,Sprockhövel 51.35 7.25 P PPL DE 07 26400 192 Europe/Berlin 2012-01-18
-2830008 Springstille Springstille Springstille 50.68333 10.53333 P PPLA4 DE 15 00 16066 16066067 612 404 Europe/Berlin 2011-04-25
-2830035 Springe Springe Shpringe,Springe,Stadt Springe,Шпринге 52.20845 9.55416 P PPL DE 06 29828 110 Europe/Berlin 2011-03-20
-2830080 Sprendlingen Sprendlingen 49.86667 7.98333 P PPLA4 DE 08 00 07339 07339056 4014 111 Europe/Berlin 2011-04-25
-2830100 Spreenhagen Spreenhagen 52.36667 13.88333 P PPLA4 DE 11 00 12067 12067469 3530 49 Europe/Berlin 2011-07-31
-2830121 Sprakensehl Sprakensehl 52.76668 10.49177 P PPLA4 DE 06 00 03151 03151028 1313 112 Europe/Berlin 2011-04-25
-2830132 Sprakebüll Sprakebull Sprakebull,Sprakebüll 54.78333 9.08333 P PPLA4 DE 10 00 01054 01054124 235 4 Europe/Berlin 2011-04-25
-2830133 Spraitbach Spraitbach 48.88065 9.76217 P PPLA4 DE 01 081 08136 08136066 3550 540 Europe/Berlin 2011-04-25
-2830146 Spornitz Spornitz 53.40749 11.71864 P PPLA4 DE 12 00 13060 13060072 1568 58 Europe/Berlin 2011-04-25
-2830166 Sponholz Sponholz 53.55 13.36667 P PPLA4 DE 12 00 13055 13055090 433 52 Europe/Berlin 2011-04-25
-2830167 Sponheim Sponheim 49.84496 7.72665 P PPLA4 DE 08 00 07133 07133101 901 231 Europe/Berlin 2011-07-21
-2830193 Splietsdorf Splietsdorf 54.12392 12.93074 P PPLA4 DE 12 00 13057 13057081 598 17 Europe/Berlin 2011-07-31
-2830409 Spirkelbach Spirkelbach 49.2 7.88333 P PPLA4 DE 08 00 07340 07340049 709 235 Europe/Berlin 2011-04-25
-2830449 Spiesheim Spiesheim 49.81028 8.1275 P PPLA4 DE 08 00 07331 07331061 1012 205 Europe/Berlin 2011-04-25
-2830452 Spiesen-Elversberg Spiesen-Elversberg 49.31667 7.13333 P PPLA4 DE 09 00 10043 10043117 14570 353 Europe/Berlin 2011-04-25
-2830534 Spiekeroog Spiekeroog 53.76667 7.7 P PPLA4 DE 06 00 03462 03462014 815 0 Europe/Berlin 2011-04-25
-2830561 Spiegelberg Spiegelberg 49.04083 9.44444 P PPLA4 DE 01 081 08119 08119069 2178 352 Europe/Berlin 2011-04-25
-2830582 Speyer Speyer Espira,Shpejer,Speyer,Spira,Spire,shupaia,Шпейер,シュパイアー 49.32972 8.42778 P PPL DE 08 50343 102 Europe/Berlin 2012-01-18
-2830591 Spessart Spessart 50.45 7.11667 P PPLA4 DE 08 00 07131 07131208 781 560 Europe/Berlin 2011-04-25
-2830593 Spesenroth Spesenroth 50.05 7.45 P PPLA4 DE 08 00 07140 07140147 166 451 Europe/Berlin 2011-04-25
-2830620 Spergau Spergau Spergau 51.3 12.03333 P PPL DE 14 1095 88 Europe/Berlin 2012-01-18
-2830622 Sperenberg Sperenberg 52.14113 13.365 P PPL DE 11 00 12072 12072002 2180 51 Europe/Berlin 2012-01-09
-2830637 Spenge Spenge Spenge 52.13333 8.48333 P PPL DE 07 15625 112 Europe/Berlin 2012-01-18
-2830652 Spelle Spelle Spelle 52.36667 7.46667 P PPLA4 DE 06 00 03454 03454049 8327 35 Europe/Berlin 2011-04-25
-2830661 Speinshart Speinshart 49.78333 11.81667 P PPLA4 DE 02 093 09374 09374157 1181 420 Europe/Berlin 2011-04-25
-2830670 Speichersdorf Speichersdorf 49.88333 11.78333 P PPLA4 DE 02 094 09472 09472190 6284 467 Europe/Berlin 2011-04-25
-2830674 Speicher Speicher 49.93333 6.63333 P PPLA4 DE 08 00 07232 07232123 2970 311 Europe/Berlin 2011-04-25
-2830761 Spechbach Spechbach 49.34639 8.88333 P PPLA4 DE 01 082 08226 08226086 1734 198 Europe/Berlin 2011-04-25
-2830768 Spatzenhausen Spatzenhausen 47.71667 11.2 P PPLA4 DE 02 091 09180 09180133 820 681 Europe/Berlin 2011-04-25
-2830790 Sparneck Sparneck Sparneck 50.16667 11.83333 P PPL DE 02 1802 543 Europe/Berlin 2012-01-18
-2830803 Spardorf Spardorf 49.60854 11.05585 P PPLA4 DE 02 095 09572 09572154 1953 314 Europe/Berlin 2011-07-31
-2830807 Spantekow Spantekow Spantekow 53.78333 13.53333 P PPLA4 DE 12 00 13059 13059091 854 13 Europe/Berlin 2011-04-25
-2830829 Spangenberg Spangenberg Spangenberg 51.11667 9.66667 P PPL DE 05 6570 268 Europe/Berlin 2012-01-18
-2830832 Spangdahlem Spangdahlem 49.98333 6.68333 P PPLA4 DE 08 00 07232 07232311 831 320 Europe/Berlin 2011-04-25
-2830849 Spalt Spalt 49.17553 10.92453 P PPL DE 02 5216 368 Europe/Berlin 2009-04-15
-2830850 Spall Spall 49.88333 7.68333 P PPLA4 DE 08 00 07133 07133100 153 340 Europe/Berlin 2011-04-25
-2830851 Spaichingen Spaichingen Spaichingen 48.08333 8.71667 P PPL DE 01 12466 668 Europe/Berlin 2012-01-18
-2830869 Spabrücken Spabrucken 49.9 7.71667 P PPLA4 DE 08 00 07133 07133099 1218 340 Europe/Berlin 2011-04-25
-2830873 Soyen Soyen 48.11667 12.2 P PPLA4 DE 02 091 09187 09187176 2712 482 Europe/Berlin 2011-04-25
-2830880 Sottrum Sottrum Sottrum 53.11667 9.23333 P PPLA4 DE 06 00 03357 03357045 6131 20 Europe/Berlin 2011-07-31
-2830899 Sössen Sossen Sossen,Sössen 51.21667 12.1 P PPLA4 DE 14 00 15084 15084450 229 120 Europe/Berlin 2011-04-25
-2830910 Sosberg Sosberg 50.08333 7.33333 P PPLA4 DE 08 00 07135 07135080 200 342 Europe/Berlin 2011-04-25
-2830912 Sosa Sosa 50.5 12.66667 P PPLA4 DE 13 145 14521 14521580 2223 684 Europe/Berlin 2011-04-25
-2830919 Sörup Sorup 54.71667 9.66667 P PPLA4 DE 10 00 01059 01059161 4118 39 Europe/Berlin 2011-04-25
-2830920 Sörth Sorth 50.7 7.68333 P PPLA4 DE 08 00 07132 07132106 238 268 Europe/Berlin 2011-04-25
-2830959 Sörgenloch Sorgenloch 49.88306 8.20111 P PPLA4 DE 08 00 07339 07339054 1197 153 Europe/Berlin 2011-04-25
-2830998 Sören Soren Soren,Sören 54.2 10.01667 P PPLA4 DE 10 00 01058 01058153 171 42 Europe/Berlin 2011-04-25
-2831058 Sophienhamm Sophienhamm Sophienhamm 54.28333 9.46667 P PPLA4 DE 10 00 01058 01058154 354 254 Europe/Berlin 2011-04-25
-2831083 Sontra Sontra Sontra 51.06667 9.93333 P PPL DE 05 8624 250 Europe/Berlin 2012-01-18
-2831088 Sonthofen Sonthofen Sonthofen 47.51667 10.28333 P PPL DE 02 21285 746 Europe/Berlin 2012-01-18
-2831091 Sontheim an der Brenz Sontheim an der Brenz Sontheim 48.55235 10.29097 P PPLA4 DE 01 081 08135 08135031 5656 443 Europe/Berlin 2011-04-25
-2831097 Sontheim Sontheim 48 10.35 P PPLA4 DE 02 097 09778 09778196 2490 620 Europe/Berlin 2011-04-25
-2831105 Sonsbeck Sonsbeck Sonsbeck 51.61667 6.36667 P PPLA4 DE 07 051 05170 05170040 8604 26 Europe/Berlin 2011-04-25
-2831109 Sonnschied Sonnschied 49.81667 7.38333 P PPLA4 DE 08 00 07134 07134086 130 409 Europe/Berlin 2011-04-25
-2831121 Sonnewalde Sonnewalde Sonnewalde 51.68333 13.65 P PPL DE 11 3692 102 Europe/Berlin 2012-01-18
-2831183 Sonnenberg-Winnenberg Sonnenberg-Winnenberg 49.66667 7.28333 P PPLA4 DE 08 00 07134 07134085 535 276 Europe/Berlin 2011-04-25
-2831189 Sonnenberg Sonnenberg 53.01917 13.08841 P PPLA4 DE 11 00 12065 12065301 923 68 Europe/Berlin 2011-07-31
-2831236 Sonnen Sonnen 48.68333 13.71667 P PPLA4 DE 02 092 09275 09275148 1528 802 Europe/Berlin 2011-04-25
-2831239 Sonnefeld Sonnefeld 50.21667 11.13333 P PPLA4 DE 02 094 09473 09473166 5345 315 Europe/Berlin 2011-04-25
-2831240 Sönnebüll Sonnebull Sonnebull,Sönnebüll 54.63333 9 P PPLA4 DE 10 00 01054 01054121 238 18 Europe/Berlin 2011-04-25
-2831242 Sonneborn Sonneborn 51 10.58333 P PPLA4 DE 15 00 16067 16067063 1283 263 Europe/Berlin 2011-04-25
-2831250 Sonneberg Sonneberg Sonneberg,Stadt Sonneberg,Zonneberg,Зоннеберг 50.35 11.16667 P PPL DE 15 23908 385 Europe/Berlin 2012-01-18
-2831269 Sondheim Sondheim Sondheim 50.46667 10.16667 P PPL DE 02 1025 410 Europe/Berlin 2012-02-02
-2831276 Sondershausen Sondershausen Sondershausen 51.36667 10.86667 P PPL DE 15 21802 213 Europe/Berlin 2012-01-18
-2831294 Sonderhofen Sonderhofen 49.6 10 P PPLA4 DE 02 096 09679 09679188 826 291 Europe/Berlin 2011-04-25
-2831342 Sommersdorf Sommersdorf 53.8 12.9 P PPLA4 DE 12 00 13052 13052073 243 7 Europe/Berlin 2011-04-25
-2831344 Sommersdorf Sommersdorf 52.16667 11.08333 P PPLA4 DE 14 00 15083 15083485 1108 133 Europe/Berlin 2011-04-25
-2831366 Sommerloch Sommerloch 49.87727 7.75995 P PPLA4 DE 08 00 07133 07133098 438 234 Europe/Berlin 2011-09-16
-2831369 Sommerland Sommerland Sommerland 53.8036 9.53748 P PPLA4 DE 10 00 01061 01061101 848 255 Europe/Berlin 2011-08-29
-2831377 Sommerkahl Sommerkahl 50.06667 9.26667 P PPLA4 DE 02 096 09671 09671153 1222 269 Europe/Berlin 2011-04-25
-2831389 Sommerhausen Sommerhausen 49.70361 10.02605 P PPL DE 02 1664 189 Europe/Berlin 2010-06-07
-2831403 Sömmerda Sommerda 51.15 11.1 P PPL DE 15 20853 136 Europe/Berlin 2006-01-17
-2831448 Sommerau Sommerau 49.71667 6.73333 P PPLA4 DE 08 00 07235 07235129 77 198 Europe/Berlin 2011-04-25
-2831455 Sommerach Sommerach 49.83333 10.2 P PPLA4 DE 02 096 09675 09675169 1432 215 Europe/Berlin 2011-04-25
-2831479 Soltendieck Soltendieck 52.87369 10.76162 P PPLA4 DE 06 00 03360 03360020 1076 65 Europe/Berlin 2011-04-25
-2831486 Soltau Soltau Soltau 52.98333 9.83333 P PPL DE 06 21945 66 Europe/Berlin 2012-01-18
-2831491 Solpke Solpke 52.50588 11.28639 P PPLA4 DE 14 00 15081 15081500 623 63 Europe/Berlin 2011-11-28
-2831493 Solnhofen Solnhofen 48.89271 10.99096 P PPLA4 DE 02 095 09577 09577168 1817 410 Europe/Berlin 2011-07-31
-2831497 Solms Solms 50.76667 9.6 P PPL DE 05 13891 257 Europe/Berlin 2006-01-17
-2831500 Sollwitt Sollwitt Sollwitt 54.6 9.21667 P PPLA4 DE 10 00 01054 01054123 335 18 Europe/Berlin 2011-04-25
-2831501 Sollstedt Sollstedt Sollstedt 51.41667 10.53333 P PPLA4 DE 15 00 16062 16062049 0 269 Europe/Berlin 2011-04-25
-2831502 Sollstedt Sollstedt 51.31667 10.5 P PPL DE 15 3154 436 Europe/Berlin 2006-01-17
-2831515 Söllingen Sollingen 52.08984 10.92522 P PPLA4 DE 06 00 03154 03154020 663 102 Europe/Berlin 2011-05-03
-2831532 Sollerup Sollerup Sollerup 54.58333 9.31667 P PPLA4 DE 10 00 01059 01059162 462 8 Europe/Berlin 2011-04-25
-2831571 Solkwitz Solkwitz Solkwitz 50.7 11.66667 P PPLA4 DE 15 00 16075 16075105 65 301 Europe/Berlin 2011-04-25
-2831580 Solingen Solingen Solingen,Zolingen,zoringen,Золинген,ゾーリンゲン 51.18333 7.08333 P PPL DE 07 164359 231 Europe/Berlin 2012-01-18
-2831594 Sölden Solden 47.93333 7.81667 P PPLA4 DE 01 083 08315 08315107 1191 435 Europe/Berlin 2011-04-25
-2831626 Sohrschied Sohrschied 49.9 7.35 P PPLA4 DE 08 00 07140 07140146 91 392 Europe/Berlin 2011-04-25
-2831634 Sohren Sohren 49.93333 7.31667 P PPLA4 DE 08 00 07140 07140145 3551 429 Europe/Berlin 2011-04-25
-2831671 Söhlde Sohlde 52.18898 10.23239 P PPLA4 DE 06 00 03254 03254032 8361 99 Europe/Berlin 2011-07-31
-2831684 Sohland am Rotstein Sohland am Rotstein Sohland,Sohland am Rotstein 51.11667 14.78333 P PPL DE 13 1433 244 Europe/Berlin 2012-01-18
-2831685 Sohland Sohland 51.05 14.41667 P PPL DE 13 7682 326 Europe/Berlin 2006-01-17
-2831699 Sögel Sogel 52.85 7.51667 P PPLA4 DE 06 00 03454 03454047 6825 53 Europe/Berlin 2011-04-25
-2831708 Soest Soest Soest,Zoest,zosuto,Зоест,ゾースト 51.57558 8.10619 P PPL DE 07 48037 95 Europe/Berlin 2010-04-11
-2831715 Soderstorf Soderstorf 53.14275 10.14807 P PPLA4 DE 06 00 03355 03355034 1536 55 Europe/Berlin 2011-08-30
-2831731 Söchtenau Sochtenau 47.93118 12.22959 P PPLA4 DE 02 091 09187 09187174 2616 482 Europe/Berlin 2011-04-25
-2831787 Sitzendorf Sitzendorf Sitzendorf 50.63182 11.17215 P PPLA4 DE 15 00 16073 16073084 1051 307 Europe/Berlin 2011-07-31
-2831797 Sitters Sitters 49.71667 7.78333 P PPLA4 DE 08 00 07333 07333072 130 265 Europe/Berlin 2011-04-25
-2831802 Sittensen Sittensen 53.27615 9.50429 P PPLA4 DE 06 00 03357 03357044 5462 32 Europe/Berlin 2011-07-31
-2831828 Sirksfelde Sirksfelde Sirksfelde 53.66667 10.5 P PPLA4 DE 10 00 01053 01053121 316 56 Europe/Berlin 2011-04-25
-2831837 Sipplingen Sipplingen Sipplingen 47.8 9.1 P PPLA4 DE 01 084 08435 08435053 2132 467 Europe/Berlin 2011-04-25
-2831838 Sippersfeld Sippersfeld 49.55 7.93333 P PPLA4 DE 08 00 07333 07333071 1217 314 Europe/Berlin 2011-04-25
-2831847 Sinzing Sinzing Sinzing 49 12.03333 P PPLA4 DE 02 093 09375 09375199 6724 337 Europe/Berlin 2011-04-25
-2831852 Sinzig Sinzig Sinzig 50.55 7.25 P PPL DE 08 17880 63 Europe/Berlin 2012-01-18
-2831853 Sinzheim Sinzheim 48.76667 8.16667 P PPLA4 DE 01 082 08216 08216049 11078 125 Europe/Berlin 2011-04-25
-2831870 Sinspelt Sinspelt 49.97259 6.31817 P PPLA4 DE 08 00 07232 07232122 451 298 Europe/Berlin 2011-04-25
-2831872 Sinsheim Sinsheim 49.2529 8.87867 P PPL DE 01 35219 162 Europe/Berlin 2010-08-16
-2831888 Sinnersdorf Sinnersdorf 51.02445 6.81787 P PPL DE 07 053 5727 46 Europe/Berlin 2010-11-15
-2831896 Sinn Sinn Sinn 50.65 8.33333 P PPLA4 DE 05 065 06532 06532020 6634 213 Europe/Berlin 2011-04-25
-2831907 Singhofen Singhofen 50.28333 7.83333 P PPLA4 DE 08 00 07141 07141129 1895 322 Europe/Berlin 2011-07-31
-2831924 Singen Singen 47.75935 8.8403 P PPL DE 01 45696 436 Europe/Berlin 2008-08-15
-2831942 Sindelsdorf Sindelsdorf 47.71667 11.33333 P PPLA4 DE 02 091 09190 09190153 1036 601 Europe/Berlin 2011-04-25
-2831948 Sindelfingen Sindelfingen Sindelfingen,Zindel'fingen,Зиндельфинген 48.7 9.01667 P PPL DE 01 61311 468 Europe/Berlin 2012-01-18
-2831985 Simonsberg Simonsberg 54.43355 8.97692 P PPLA4 DE 10 00 01054 01054120 865 2 Europe/Berlin 2011-08-25
-2831992 Simmozheim Simmozheim 48.75127 8.81142 P PPLA4 DE 01 082 08235 08235067 2731 479 Europe/Berlin 2011-04-25
-2831999 Simmershofen Simmershofen 49.53333 10.13333 P PPLA4 DE 02 095 09575 09575163 996 319 Europe/Berlin 2011-04-25
-2832003 Simmersfeld Simmersfeld 48.61667 8.51667 P PPLA4 DE 01 082 08235 08235066 2207 701 Europe/Berlin 2011-04-25
-2832012 Simmern Simmern 50.4 7.66667 P PPLA4 DE 08 00 07143 07143071 1518 191 Europe/Berlin 2011-04-25
-2832013 Simmern Simmern 49.98333 7.51667 P PPL DE 08 7979 353 Europe/Berlin 2006-01-17
-2832014 Simmertal Simmertal Simmern,Simmertal 49.81667 7.51667 P PPLA4 DE 08 00 07133 07133096 2009 310 Europe/Berlin 2011-04-25
-2832023 Simmerath Simmerath Simmerath 50.6 6.3 P PPLA4 DE 07 053 05334 05334028 15646 536 Europe/Berlin 2011-04-25
-2832025 Simmelsdorf Simmelsdorf 49.59775 11.33901 P PPLA4 DE 02 095 09574 09574158 3372 378 Europe/Berlin 2011-04-25
-2832043 Simbach am Inn Simbach am Inn Simbach,Simbach am Inn 48.26667 13.01667 P PPL DE 02 9979 358 Europe/Berlin 2012-01-18
-2832045 Simbach Simbach Simbach,Simpach 48.56667 12.75 P PPL DE 02 3672 416 Europe/Berlin 2012-01-18
-2832049 Silzen Silzen Silzen 54.03333 9.61667 P PPLA4 DE 10 00 01061 01061100 170 18 Europe/Berlin 2011-04-25
-2832052 Silz Silz 53.51949 12.43996 P PPLA4 DE 12 00 13056 13056064 371 70 Europe/Berlin 2011-04-25
-2832053 Silz Silz 49.15 7.95 P PPLA4 DE 08 00 07337 07337074 820 258 Europe/Berlin 2011-04-25
-2832078 Sillenstede Sillenstede Celensteda [a. 1138],Sillenstae,Sillenstä 53.57437 7.985 P PPL DE 06 00 03455 03455015 2220 4 Europe/Berlin 2011-03-09
-2832097 Silkerode Silkerode Silkerode 51.56667 10.4 P PPLA4 DE 15 00 16061 16061088 435 225 Europe/Berlin 2011-04-25
-2832106 Silbitz Silbitz Silbitz 50.95 12 P PPLA4 DE 15 00 16074 16074092 569 173 Europe/Berlin 2011-04-25
-2832114 Silberstedt Silberstedt Silberstedt 54.51667 9.38333 P PPLA4 DE 10 00 01059 01059079 2213 11 Europe/Berlin 2011-04-25
-2832144 Silberhausen Silberhausen Silberhausen 51.3 10.33333 P PPLA4 DE 15 00 16061 16061087 711 329 Europe/Berlin 2011-04-25
-2832154 Silberfeld Silberfeld Silberfeld 50.68333 11.96667 P PPLA4 DE 15 00 16076 16076071 118 404 Europe/Berlin 2011-07-31
-2832228 Sigmarszell Sigmarszell 47.58333 9.76667 P PPLA4 DE 02 097 09776 09776126 2641 478 Europe/Berlin 2011-04-25
-2832231 Sigmaringendorf Sigmaringendorf 48.06586 9.26208 P PPLA4 DE 01 084 08437 08437105 3827 568 Europe/Berlin 2011-04-25
-2832232 Sigmaringen Sigmaringen Sigmaringen,zygmryngn,זיגמרינגן 48.08333 9.21667 P PPL DE 01 16592 627 Europe/Berlin 2012-01-18
-2832264 Siggelkow Siggelkow 53.38742 11.93802 P PPLA4 DE 12 00 13060 13060071 1056 50 Europe/Berlin 2011-07-08
-2832271 Siezbüttel Siezbuttel Siezbuttel,Siezbüttel 54.05245 9.44758 P PPLA4 DE 10 00 01061 01061099 62 26 Europe/Berlin 2011-04-25
-2832276 Sieverstedt Sieverstedt Sieverstedt 54.65 9.48333 P PPLA4 DE 10 00 01059 01059159 1653 36 Europe/Berlin 2011-04-25
-2832280 Sievershütten Sievershutten Sievershutten,Sievershütten 53.85 10.1 P PPLA4 DE 10 00 01060 01060077 1161 30 Europe/Berlin 2011-04-25
-2832312 Sietow Sietow 53.45 12.55 P PPLA4 DE 12 00 13056 13056063 662 80 Europe/Berlin 2011-07-31
-2832328 Siesbach Siesbach 49.73333 7.23333 P PPLA4 DE 08 00 07134 07134084 434 422 Europe/Berlin 2011-04-25
-2832331 Siersleben Siersleben Siersleben 51.6 11.55 P PPL DE 14 1575 217 Europe/Berlin 2012-01-18
-2832332 Siershahn Siershahn 50.48333 7.8 P PPLA4 DE 08 00 07143 07143070 2879 329 Europe/Berlin 2011-04-25
-2832335 Sierscheid Sierscheid 50.45707 6.91744 P PPLA4 DE 08 00 07131 07131076 104 382 Europe/Berlin 2011-04-25
-2832337 Sierksrade Sierksrade Sierksrade 53.73333 10.6 P PPLA4 DE 10 00 01053 01053120 330 34 Europe/Berlin 2011-04-25
-2832338 Sierksdorf Sierksdorf Sierksdorf 54.06667 10.76667 P PPLA4 DE 10 00 01055 01055039 1489 30 Europe/Berlin 2011-04-25
-2832357 Sienhachenbach Sienhachenbach 49.7 7.48333 P PPLA4 DE 08 00 07134 07134083 230 333 Europe/Berlin 2011-04-25
-2832363 Sien Sien 49.7 7.5 P PPLA4 DE 08 00 07134 07134082 611 368 Europe/Berlin 2011-04-25
-2832371 Siemerode Siemerode Selmanroth [a. 1055] 51.42281 10.12064 P PPLA4 DE 15 00 16061 16061049 0 304 Europe/Berlin 2011-03-15
-2832392 Sielenbach Sielenbach 48.4 11.16667 P PPLA4 DE 02 097 09771 09771165 1446 474 Europe/Berlin 2011-04-25
-2832406 Siek Siek 53.63333 10.3 P PPLA4 DE 10 00 01062 01062069 1958 64 Europe/Berlin 2011-04-25
-2832423 Siegsdorf Siegsdorf 47.93333 12.3 P PPL DE 02 8288 557 Europe/Berlin 2006-01-17
-2832424 Siegsdorf Siegsdorf 47.83333 12.65 P PPLA4 DE 02 091 09189 09189145 0 670 Europe/Berlin 2011-04-25
-2832433 Siegmundsburg Siegmundsburg 50.46667 11.05 P PPLA4 DE 15 00 16072 16072017 246 812 Europe/Berlin 2011-04-25
-2832492 Siegenburg Siegenburg Siegenburg,Sigenburg 48.75 11.85 P PPL DE 02 3376 399 Europe/Berlin 2012-01-18
-2832495 Siegen Siegen Siegen,Zigen,jigen,Зиген,ジーゲン 50.86667 8.03333 P PPL DE 07 107242 256 Europe/Berlin 2012-01-18
-2832506 Siegelsbach Siegelsbach 49.26972 9.08972 P PPLA4 DE 01 081 08125 08125087 1677 278 Europe/Berlin 2011-04-25
-2832521 Siegburg Siegburg Siebursh,Siegburg,jikuburuku,zigburg,zygbwrg,Зигбург,זיגבורג,ジークブルク 50.8 7.2 P PPL DE 07 053 05382 39135 60 Europe/Berlin 2012-01-18
-2832529 Siefersheim Siefersheim 49.8 7.95 P PPLA4 DE 08 00 07331 07331060 1287 164 Europe/Berlin 2011-04-25
-2832597 Siedenburg Siedenburg 52.69293 8.93961 P PPL DE 06 1349 41 Europe/Berlin 2009-01-27
-2832598 Siedenbrünzow Siedenbrunzow 53.9 13.15 P PPLA4 DE 12 00 13052 13052096 396 4 Europe/Berlin 2011-04-25
-2832599 Siedenbollentin Siedenbollentin 53.73333 13.38333 P PPLA4 DE 12 00 13052 13052071 719 24 Europe/Berlin 2011-04-25
-2832714 Siebeneichen Siebeneichen 53.51092 10.61811 P PPLA4 DE 10 00 01053 01053119 247 30 Europe/Berlin 2011-04-25
-2832734 Siebenbäumen Siebenbaumen Siebenbaumen,Siebenbäumen 53.75 10.53333 P PPLA4 DE 10 00 01053 01053118 619 47 Europe/Berlin 2011-04-25
-2832736 Siebenbach Siebenbach 50.38333 7.03333 P PPLA4 DE 08 00 07137 07137099 205 574 Europe/Berlin 2011-04-25
-2832743 Siebeldingen Siebeldingen 49.20889 8.05139 P PPLA4 DE 08 00 07337 07337073 1056 157 Europe/Berlin 2011-04-25
-2832772 Sickerode Sickerode Sickerode 51.25 10.11667 P PPLA4 DE 15 00 16061 16061086 169 271 Europe/Berlin 2011-04-25
-2832778 Sickenhausen Sickenhausen 48.53252 9.18114 P PPL DE 01 2000 390 Europe/Berlin 2008-12-23
-2832803 Sichau Sichau 52.51371 11.22734 P PPLA4 DE 14 00 15081 15081490 259 60 Europe/Berlin 2011-07-31
-2832819 Sibbesse Sibbesse Sibbesse 52.05 9.9 P PPLA4 DE 06 00 03254 03254031 2810 191 Europe/Berlin 2011-04-25
-2832835 Seyda Seyda 51.88333 12.9 P PPL DE 14 1043 75 Europe/Berlin 2006-01-17
-2832838 Seybothenreuth Seybothenreuth 49.9 11.71667 P PPLA4 DE 02 094 09472 09472188 1373 481 Europe/Berlin 2011-04-25
-2832841 Sexau Sexau Sexau 48.1 7.91667 P PPLA4 DE 01 083 08316 08316039 3186 277 Europe/Berlin 2011-04-25
-2832851 Severin Severin 53.50347 11.77185 P PPLA4 DE 12 00 13060 13060070 267 54 Europe/Berlin 2011-04-25
-2832867 Seulingen Seulingen 51.55 10.16667 P PPLA4 DE 06 00 03152 03152025 1472 171 Europe/Berlin 2011-04-25
-2832871 Seukendorf Seukendorf 49.48333 10.88333 P PPLA4 DE 02 095 09573 09573126 3287 311 Europe/Berlin 2011-04-25
-2832884 Seubersdorf Seubersdorf 49.16212 11.62714 P PPL DE 02 5035 515 Europe/Berlin 2009-06-24
-2832887 Setzingen Setzingen 48.53815 10.13025 P PPLA4 DE 01 084 08425 08425112 625 504 Europe/Berlin 2011-04-25
-2832888 Setzin Setzin 53.41096 11.08212 P PPLA4 DE 12 00 13054 13054097 531 57 Europe/Berlin 2011-04-25
-2832915 Seth Seth Seth 53.85 10.18333 P PPLA4 DE 10 00 01060 01060076 2026 33 Europe/Berlin 2011-04-25
-2832921 Seßlach Sesslach Sesslach,Seßlach 50.18333 10.85 P PPL DE 02 4088 292 Europe/Berlin 2012-01-18
-2832925 Sessenhausen Sessenhausen 50.53333 7.71667 P PPLA4 DE 08 00 07143 07143069 922 275 Europe/Berlin 2011-04-25
-2832926 Sessenbach Sessenbach 50.46667 7.65 P PPLA4 DE 08 00 07143 07143068 548 315 Europe/Berlin 2011-04-25
-2832939 Sersheim Sersheim 48.96667 9.01667 P PPLA4 DE 01 081 08118 08118068 5199 234 Europe/Berlin 2011-04-25
-2832940 Serrig Serrig 49.57519 6.57454 P PPLA4 DE 08 00 07235 07235126 1580 165 Europe/Berlin 2011-04-25
-2832968 Serba Serba Serba 50.95 11.81667 P PPLA4 DE 15 00 16074 16074091 784 292 Europe/Berlin 2011-04-25
-2832986 Sensweiler Sensweiler 49.77539 7.1969 P PPLA4 DE 08 00 07134 07134081 553 511 Europe/Berlin 2011-04-25
-2832997 Senscheid Senscheid 50.33333 6.83333 P PPLA4 DE 08 00 07131 07131075 93 473 Europe/Berlin 2011-04-25
-2833010 Sennfeld Sennfeld 50.03895 10.25986 P PPLA4 DE 02 096 09678 09678178 4054 216 Europe/Berlin 2011-04-25
-2833012 Sennewitz Sennewitz 51.55 11.95 P PPL DE 14 1684 91 Europe/Berlin 2006-01-17
-2833034 Senheim Senheim 50.08333 7.21667 P PPLA4 DE 08 00 07135 07135079 606 293 Europe/Berlin 2011-04-25
-2833047 Sengerich Sengerich 50.11667 6.21667 P PPLA4 DE 08 00 07232 07232309 17 504 Europe/Berlin 2011-04-25
-2833050 Sengenthal Sengenthal 49.23333 11.46667 P PPLA4 DE 02 093 09373 09373159 2633 476 Europe/Berlin 2011-04-25
-2833073 Senftenberg Senftenberg Senftenberg,Zenftenberg,Zly Komorow,Zły Komorow,Зенфтенберг 51.51667 14.01667 P PPL DE 11 28988 103 Europe/Berlin 2012-01-18
-2833076 Sendenhorst Sendenhorst Sendenhorst 51.83333 7.83333 P PPL DE 07 13316 62 Europe/Berlin 2012-01-18
-2833079 Senden Senden Senden 51.85 7.5 P PPLA4 DE 07 055 05558 05558044 20363 62 Europe/Berlin 2011-04-25
-2833080 Senden Senden 48.32441 10.04442 P PPL DE 02 22275 487 Europe/Berlin 2010-08-16
-2833099 Semmenstedt Semmenstedt 52.09375 10.69691 P PPLA4 DE 06 00 03158 03158029 680 114 Europe/Berlin 2011-04-25
-2833110 Semlow Semlow 54.18117 12.65659 P PPLA4 DE 12 00 13057 13057079 894 28 Europe/Berlin 2011-04-25
-2833126 Sembach Sembach 49.51667 7.85 P PPLA4 DE 08 00 07335 07335205 1199 287 Europe/Berlin 2011-04-25
-2833129 Selzen Selzen 49.86056 8.25528 P PPLA4 DE 08 00 07339 07339053 1557 124 Europe/Berlin 2011-04-25
-2833138 Selters Selters 50.53333 7.76667 P PPL DE 08 2711 314 Europe/Berlin 2006-01-17
-2833139 Selters Selters 50.51681 8.28953 P PPL DE 05 8235 157 Europe/Berlin 2010-08-06
-2833154 Selsingen Selsingen 53.37329 9.21289 P PPLA4 DE 06 00 03357 03357043 3310 26 Europe/Berlin 2011-04-25
-2833160 Selpin Selpin 53.99112 12.49575 P PPLA4 DE 12 00 13051 13051072 601 29 Europe/Berlin 2011-04-25
-2833163 Selmsdorf Selmsdorf 53.88333 10.86667 P PPLA4 DE 12 00 13058 13058096 2261 33 Europe/Berlin 2011-07-31
-2833170 Selm Selm Selm,Stadt Selm,Zel'm,Зельм 51.7 7.46667 P PPL DE 07 27540 56 Europe/Berlin 2012-01-18
-2833184 Sellin Sellin 53.88333 11.6 P PPL DE 12 2547 78 Europe/Berlin 2006-01-17
-2833196 Sellerich Sellerich 50.23333 6.36667 P PPLA4 DE 08 00 07232 07232308 342 475 Europe/Berlin 2011-04-25
-2833228 Selk Selk Selk 54.46667 9.56667 P PPLA4 DE 10 00 01059 01059078 837 16 Europe/Berlin 2011-04-25
-2833242 Seligenstadt Seligenstadt 50.0432 8.97394 P PPL DE 05 19569 112 Europe/Berlin 2009-06-08
-2833259 Selent Selent Selent 54.3 10.43333 P PPLA4 DE 10 00 01057 01057077 1303 34 Europe/Berlin 2011-07-31
-2833264 Selchenbach Selchenbach 49.5 7.3 P PPLA4 DE 08 00 07336 07336094 396 379 Europe/Berlin 2011-04-25
-2833269 Selbitz Selbitz Selbitz 50.31667 11.75 P PPL DE 02 4758 532 Europe/Berlin 2012-02-02
-2833296 Selb Selb 50.17058 12.13054 P PPL DE 02 17132 546 Europe/Berlin 2008-07-28
-2833298 Seiwerath Seiwerath 50.15 6.5 P PPLA4 DE 08 00 07232 07232307 151 552 Europe/Berlin 2011-04-25
-2833313 Seitenroda Seitenroda Seitenroda 50.8 11.61667 P PPLA4 DE 15 00 16074 16074089 228 281 Europe/Berlin 2011-04-25
-2833326 Seisla Seisla 50.65028 11.53483 P PPLA4 DE 15 00 16075 16075103 172 351 Europe/Berlin 2011-04-25
-2833330 Seinsheim Seinsheim 49.64073 10.22038 P PPL DE 02 1102 248 Europe/Berlin 2010-06-07
-2833332 Seinsfeld Seinsfeld 50.05 6.65 P PPLA4 DE 08 00 07232 07232306 165 415 Europe/Berlin 2011-04-25
-2833365 Seifhennersdorf Seifhennersdorf Seifhennersdorf 50.93333 14.61667 P PPL DE 13 4878 350 Europe/Berlin 2012-01-18
-2833398 Seifen Seifen 50.68333 7.51667 P PPLA4 DE 08 00 07132 07132104 0 270 Europe/Berlin 2011-07-31
-2833399 Seifen Seifen 50.63333 7.56667 P PPLA4 DE 08 00 07132 07132104 159 267 Europe/Berlin 2011-04-25
-2833461 Seibersbach Seibersbach 49.96667 7.71667 P PPLA4 DE 08 00 07133 07133095 1457 433 Europe/Berlin 2011-04-25
-2833475 Sehnde Sehnde 52.31394 9.9682 P PPL DE 06 00 22265 66 Europe/Berlin 2010-11-22
-2833488 Sehlen Sehlen 54.37971 13.38907 P PPLA4 DE 12 00 13061 13061037 1002 31 Europe/Berlin 2011-07-31
-2833491 Sehlem Sehlem 52.01236 9.97593 P PPLA4 DE 06 00 03254 03254030 1023 145 Europe/Berlin 2011-07-31
-2833492 Sehlem Sehlem 49.9 6.83333 P PPLA4 DE 08 00 07231 07231117 851 158 Europe/Berlin 2011-04-25
-2833495 Sehlde Sehlde 52.03887 10.26569 P PPLA4 DE 06 00 03158 03158028 1043 133 Europe/Berlin 2011-07-31
-2833500 Sehestedt Sehestedt 54.36667 9.81667 P PPLA4 DE 10 00 01058 01058152 869 7 Europe/Berlin 2011-04-25
-2833511 Segnitz Segnitz 49.67241 10.14416 P PPLA4 DE 02 096 09675 09675166 846 185 Europe/Berlin 2011-07-31
-2833521 Seggebruch Seggebruch 52.3005 9.09462 P PPLA4 DE 06 00 03257 03257034 1611 63 Europe/Berlin 2011-07-08
-2833539 Sefferweich Sefferweich 50.06667 6.51667 P PPLA4 DE 08 00 07232 07232120 247 444 Europe/Berlin 2011-04-25
-2833541 Seffern Seffern 50.06667 6.5 P PPLA4 DE 08 00 07232 07232119 317 328 Europe/Berlin 2011-04-25
-2833564 Seevetal Seevetal 53.4 9.96667 P PPLA4 DE 06 00 03353 03353031 41266 45 Europe/Berlin 2011-07-31
-2833570 Seethen Seethen 52.58333 11.56667 P PPLA4 DE 14 00 15081 15081485 171 56 Europe/Berlin 2011-04-25
-2833571 Seeth-Ekholt Seeth-Ekholt Seeth-Ekholt 53.7413 9.73002 P PPLA4 DE 10 00 01056 01056046 853 14 Europe/Berlin 2011-08-24
-2833575 Seeth Seeth 54.36667 9.16667 P PPLA4 DE 10 00 01054 01054119 0 3 Europe/Berlin 2011-04-25
-2833582 Seestermühe Seestermuhe Seestermuhe,Seestermühe 53.7 9.56667 P PPLA4 DE 10 00 01056 01056045 910 254 Europe/Berlin 2011-04-25
-2833585 Seester Seester Seester 53.71783 9.59798 P PPLA4 DE 10 00 01056 01056033 973 2 Europe/Berlin 2011-08-29
-2833590 Seeshaupt Seeshaupt 47.82468 11.30219 P PPLA4 DE 02 091 09190 09190152 2862 598 Europe/Berlin 2011-04-25
-2833592 Seesen Seesen Seesen 51.9 10.18333 P PPL DE 06 21909 198 Europe/Berlin 2012-01-18
-2833600 Seesbach Seesbach 49.85 7.55 P PPLA4 DE 08 00 07133 07133094 584 405 Europe/Berlin 2011-04-25
-2833641 Seelze Seelze Seelze 52.4 9.6 P PPL DE 06 32899 45 Europe/Berlin 2012-01-18
-2833651 Seelow Seelow 52.53392 14.38128 P PPL DE 11 5981 51 Europe/Berlin 2009-01-29
-2833654 Seelitz Seelitz 51.03333 12.81667 P PPLA4 DE 13 145 14522 14522530 2114 228 Europe/Berlin 2011-04-25
-2833657 Seelingstädt Seelingstadt 50.78333 12.25 P PPLA4 DE 15 00 16076 16076069 1513 320 Europe/Berlin 2011-04-25
-2833683 Seelen Seelen 49.6 7.71667 P PPLA4 DE 08 00 07333 07333203 171 390 Europe/Berlin 2011-04-25
-2833702 Seelbach Seelbach 50.31667 7.86667 P PPLA4 DE 08 00 07141 07141128 470 154 Europe/Berlin 2011-04-25
-2833704 Seelbach Seelbach Seelbach 48.31667 7.95 P PPLA4 DE 01 083 08317 08317127 5278 394 Europe/Berlin 2011-04-25
-2833732 Seekirch Seekirch 48.1 9.65 P PPLA4 DE 01 084 08426 08426109 290 603 Europe/Berlin 2011-04-25
-2833754 Seehof Seehof 53.69249 11.43256 P PPLA4 DE 12 00 13058 13058095 1048 51 Europe/Berlin 2011-04-25
-2833795 Seehausen am Staffelsee Seehausen am Staffelsee Seehausen a. Staffelsee 47.68928 11.18498 P PPL DE 02 2416 658 Europe/Berlin 2010-11-17
-2833800 Seehausen Seehausen Seehausen 52.88333 11.75 P PPL DE 14 4355 24 Europe/Berlin 2012-02-02
-2833801 Seehausen Seehausen Seehausen 52.1 11.3 P PPL DE 14 1945 138 Europe/Berlin 2012-01-18
-2833848 Seega Seega Seega 51.31667 11.03333 P PPLA4 DE 15 00 16065 16065066 476 180 Europe/Berlin 2011-04-25
-2833849 Seeg Seeg 47.65 10.6 P PPLA4 DE 02 097 09777 09777170 2829 868 Europe/Berlin 2011-04-25
-2833859 Seefeld Seefeld 54.1 9.46667 P PPLA4 DE 10 00 01058 01058151 424 44 Europe/Berlin 2011-04-25
-2833866 Seefeld Seefeld 48.03505 11.21395 P PPLA4 DE 02 091 09188 09188132 7033 568 Europe/Berlin 2011-07-31
-2833878 Seedorf Seedorf 54.05 10.41667 P PPLA4 DE 10 00 01060 01060075 2297 34 Europe/Berlin 2011-04-25
-2833883 Seedorf Seedorf 53.6197 10.86599 P PPLA4 DE 10 00 01053 01053117 541 38 Europe/Berlin 2011-08-23
-2833884 Seedorf Seedorf 53.35 9.23333 P PPLA4 DE 06 00 03357 03357042 611 32 Europe/Berlin 2011-04-25
-2833893 Seedorf Seedorf 48.24908 8.48993 P PPL DE 01 083 08325 2000 663 661 Europe/Berlin 2010-11-15
-2833903 Seeburg Seeburg 51.56667 10.15 P PPLA4 DE 06 00 03152 03152024 1649 178 Europe/Berlin 2011-04-25
-2833934 Seebergen Seebergen Seebergen 50.91667 10.8 P PPL DE 15 1334 293 Europe/Berlin 2012-01-18
-2833988 Seebad Heringsdorf Seebad Heringsdorf Heringsdorf,Seebad Heringsdorf 53.96667 14.16667 P PPL DE 12 3517 -9999 Europe/Berlin 2012-01-18
-2833989 Seebad Bansin Seebad Bansin Bansin,Seebad Bansin 53.96667 14.15 P PPL DE 12 2465 254 Europe/Berlin 2012-01-18
-2834020 Seebach Seebach 51.16667 10.51667 P PPL DE 15 2459 194 Europe/Berlin 2006-01-17
-2834021 Seebach Seebach Seebach 50.91667 10.41667 P PPLA4 DE 15 00 16063 16063071 0 332 Europe/Berlin 2011-07-31
-2834028 Seebach Seebach 48.57621 8.17048 P PPLA4 DE 01 083 08317 08317126 1535 400 Europe/Berlin 2011-07-31
-2834081 Seckach Seckach Seckach 49.44222 9.33417 P PPLA4 DE 01 082 08225 08225091 4420 269 Europe/Berlin 2011-04-25
-2834082 Seck Seck 50.58333 8.05 P PPLA4 DE 08 00 07143 07143292 1309 431 Europe/Berlin 2011-04-25
-2834102 Sebnitz Sebnitz 50.9754 14.27579 P PPL DE 13 9114 319 Europe/Berlin 2009-09-14
-2834129 Schwörstadt Schworstadt 47.59314 7.8784 P PPLA4 DE 01 083 08336 08336082 2459 292 Europe/Berlin 2011-04-25
-2834136 Schwollen Schwollen 49.7 7.18333 P PPLA4 DE 08 00 07134 07134080 456 460 Europe/Berlin 2011-04-25
-2834146 Schwobfeld Schwobfeld Schwobfeld 51.28333 10.1 P PPLA4 DE 15 00 16061 16061085 113 347 Europe/Berlin 2011-04-25
-2834157 Schwissel Schwissel Schwissel 53.9 10.3 P PPLA4 DE 10 00 01060 01060074 240 13 Europe/Berlin 2011-04-25
-2834159 Schwirzheim Schwirzheim 50.23333 6.53333 P PPLA4 DE 08 00 07232 07232305 439 504 Europe/Berlin 2011-04-25
-2834165 Schwinkendorf Schwinkendorf 53.65 12.68333 P PPLA4 DE 12 00 13056 13056062 375 60 Europe/Berlin 2011-04-25
-2834183 Schwindegg Schwindegg 48.26667 12.25 P PPLA4 DE 02 091 09183 09183144 3501 435 Europe/Berlin 2011-04-25
-2834196 Schwifting Schwifting 48.04555 10.92762 P PPLA4 DE 02 091 09181 09181140 871 636 Europe/Berlin 2011-04-25
-2834226 Schwieberdingen Schwieberdingen 48.87644 9.07439 P PPLA4 DE 01 081 08118 08118067 10736 256 Europe/Berlin 2011-04-25
-2834240 Schwetzingen Schwetzingen Schwetzingen 49.37806 8.58194 P PPL DE 01 22593 101 Europe/Berlin 2012-01-18
-2834249 Schwesing Schwesing Schwesing 54.49482 9.13504 P PPLA4 DE 10 00 01054 01054118 908 16 Europe/Berlin 2011-08-25
-2834265 Schwerte Schwerte Schwerte 51.45 7.56667 P PPL DE 07 50399 135 Europe/Berlin 2012-01-18
-2834266 Schwerstedt Schwerstedt 51.15 10.91667 P PPLA4 DE 15 00 16068 16068049 695 153 Europe/Berlin 2011-04-25
-2834267 Schwerstedt Schwerstedt 51.06667 11.28333 P PPLA4 DE 15 00 16071 16071085 377 206 Europe/Berlin 2011-04-25
-2834271 Schwerinsdorf Schwerinsdorf 53.31667 7.68333 P PPLA4 DE 06 00 03457 03457019 762 6 Europe/Berlin 2011-04-25
-2834275 Schweringen Schweringen 52.75 9.18333 P PPLA4 DE 06 00 03256 03256028 912 23 Europe/Berlin 2011-04-25
-2834282 Schwerin Schwerin Schwerin,Shverin,Suerinum,Swerin,shen wei lin,shuvu~erin,syubelin,Шверин,シュヴェリン,什未林,슈베린 53.62937 11.41316 P PPLA DE 12 96641 48 Europe/Berlin 2010-03-27
-2834284 Schwerin Schwerin 52.15 13.63333 P PPLA4 DE 11 00 12061 12061448 0 40 Europe/Berlin 2011-04-25
-2834291 Schwerbach Schwerbach 49.9 7.35 P PPLA4 DE 08 00 07134 07134079 62 392 Europe/Berlin 2011-04-25
-2834293 Schweppenhausen Schweppenhausen 49.91667 7.8 P PPLA4 DE 08 00 07133 07133093 890 210 Europe/Berlin 2011-04-25
-2834296 Schwepnitz Schwepnitz 51.33333 13.96667 P PPLA4 DE 13 146 14625 14625550 2823 152 Europe/Berlin 2011-04-25
-2834312 Schwenningen Schwenningen 48.65 10.65 P PPLA4 DE 02 097 09773 09773164 1478 410 Europe/Berlin 2011-04-25
-2834313 Schwenningen Schwenningen 48.1 9 P PPLA4 DE 01 084 08437 08437102 1563 823 Europe/Berlin 2011-04-25
-2834334 Schwendi Schwendi 48.18333 9.96667 P PPLA4 DE 01 084 08426 08426108 6309 516 Europe/Berlin 2011-04-25
-2834372 Schwelm Schwelm Schwelm 51.28333 7.28333 P PPL DE 07 30235 219 Europe/Berlin 2012-01-18
-2834415 Schweix Schweix 49.13333 7.51667 P PPLA4 DE 08 00 07340 07340048 388 283 Europe/Berlin 2011-04-25
-2834416 Schweitenkirchen Schweitenkirchen 48.5 11.61667 P PPLA4 DE 02 091 09186 09186152 4876 494 Europe/Berlin 2011-07-31
-2834417 Schweisweiler Schweisweiler 49.58333 7.81667 P PPLA4 DE 08 00 07333 07333069 370 284 Europe/Berlin 2011-04-25
-2834456 Schweinschied Schweinschied 49.7 7.56667 P PPLA4 DE 08 00 07133 07133092 187 270 Europe/Berlin 2011-04-25
-2834498 Schweinfurt Schweinfurt Kuspinian,Schweinfurt,Куспиниан 50.05 10.23333 P PPL DE 02 54012 250 221 Europe/Berlin 2012-01-18
-2834519 Schweindorf Schweindorf 53.6 7.46667 P PPLA4 DE 06 00 03462 03462013 0 3 Europe/Berlin 2011-04-25
-2834548 Schweina Schweina 50.83333 10.33333 P PPLA4 DE 15 00 16063 16063069 3098 358 Europe/Berlin 2011-04-25
-2834560 Schweighofen Schweighofen 49.03984 7.99367 P PPLA4 DE 08 00 07337 07337072 576 161 Europe/Berlin 2011-04-25
-2834569 Schweighausen Schweighausen 50.28333 7.75 P PPLA4 DE 08 00 07141 07141127 260 379 Europe/Berlin 2011-04-25
-2834594 Schweich Schweich Schweich 49.82215 6.75256 P PPL DE 08 6533 135 Europe/Berlin 2011-03-23
-2834611 Schwegenheim Schwegenheim 49.27 8.32861 P PPLA4 DE 08 00 07334 07334028 2996 115 Europe/Berlin 2011-04-25
-2834629 Schwedt (Oder) Schwedt (Oder) Schwedt,Schwedt/Oder,Stadt Schwedt/Oder 53.05963 14.28154 P PPL DE 11 38001 2 Europe/Berlin 2009-01-28
-2834646 Schwedelbach Schwedelbach 49.5 7.6 P PPLA4 DE 08 00 07335 07335043 1119 263 Europe/Berlin 2011-04-25
-2834651 Schwebheim Schwebheim 49.98333 10.25 P PPLA4 DE 02 096 09678 09678176 4023 217 Europe/Berlin 2011-04-25
-2834669 Schwasdorf Schwasdorf 53.9 12.63333 P PPLA4 DE 12 00 13053 13053106 0 38 Europe/Berlin 2011-07-31
-2834733 Schwarzhofen Schwarzhofen 49.38333 12.35 P PPL DE 02 1496 404 Europe/Berlin 2006-01-17
-2834740 Schwarzheide Schwarzheide Schwarzheide 51.48333 13.86667 P PPL DE 11 6646 105 Europe/Berlin 2012-01-18
-2834843 Schwarzerden Schwarzerden 49.85 7.51667 P PPLA4 DE 08 00 07133 07133205 243 367 Europe/Berlin 2011-04-25
-2834945 Schwarzenfeld Schwarzenfeld Schwarzenfeld 49.38944 12.13972 P PPL DE 02 6398 366 Europe/Berlin 2012-01-18
-2834955 Schwarzenbruck Schwarzenbruck Schwarzenbruck 49.35778 11.24333 P PPLA4 DE 02 095 09574 09574157 8690 364 Europe/Berlin 2011-04-25
-2834963 Schwarzenborn Schwarzenborn Schwarzenborn 50.91667 9.45 P PPL DE 05 1251 483 Europe/Berlin 2012-01-18
-2834966 Schwarzenborn Schwarzenborn 50.03333 6.71667 P PPLA4 DE 08 00 07231 07231116 52 425 Europe/Berlin 2011-04-25
-2834978 Schwarzenberg Schwarzenberg Schwarzenberg 50.55 12.78333 P PPL DE 13 18523 435 Europe/Berlin 2012-01-18
-2835013 Schwarzenbek Schwarzenbek Schwarzenbek 53.5 10.48333 P PPL DE 10 14832 48 Europe/Berlin 2012-01-18
-2835018 Schwarzenbach an der Saale Schwarzenbach an der Saale Schwarzenbach,Schwarzenbach an der Saale 50.21667 11.93333 P PPL DE 02 11375 504 Europe/Berlin 2012-01-18
-2835034 Schwarzenbach Schwarzenbach 49.83876 12.38005 P PPL DE 02 1129 569 Europe/Berlin 2011-03-26
-2835035 Schwarzenbach Schwarzenbach 49.73333 12 P PPLA4 DE 02 093 09374 09374156 0 451 Europe/Berlin 2011-04-25
-2835058 Schwarzen Schwarzen 49.96667 7.33333 P PPLA4 DE 08 00 07140 07140141 146 411 Europe/Berlin 2011-04-25
-2835105 Schwarzburg Schwarzburg 50.64304 11.19189 P PPLA4 DE 15 00 16073 16073082 642 305 Europe/Berlin 2011-07-31
-2835150 Schwarzbach Schwarzbach 51.45 13.93333 P PPLA4 DE 11 00 12066 12066292 827 101 Europe/Berlin 2011-04-25
-2835152 Schwarzbach Schwarzbach 50.8 11.88333 P PPLA4 DE 15 00 16076 16076068 242 371 Europe/Berlin 2011-04-25
-2835164 Spiegelau Spiegelau Schwarzach,Schwarzach mit Spiegelau,Spiegelau,Spiegelau mit Schwarzach 48.91517 13.36229 P PPLA4 DE 02 092 09272 09272149 4132 729 Europe/Berlin 2011-08-22
-2835184 Schwarzach Schwarzach Schwarzach 48.91667 12.81667 P PPL DE 02 2898 397 Europe/Berlin 2012-02-02
-2835185 Schwarzach Schwarzach 48.75 8.05 P PPL DE 01 3115 120 Europe/Berlin 2006-01-17
-2835193 Schwarza Schwarza 50.85386 11.32433 P PPL DE 15 1398 334 Europe/Berlin 2009-10-09
-2835195 Schwarza Schwarza 50.63333 10.53333 P PPLA4 DE 15 00 16066 16066065 0 441 Europe/Berlin 2011-04-25
-2835196 Schwarz Schwarz 53.22412 12.78465 P PPLA4 DE 12 00 13056 13056061 427 78 Europe/Berlin 2011-04-25
-2835216 Schwartbuck Schwartbuck Schwartbuck 54.35 10.48333 P PPLA4 DE 10 00 01057 01057076 895 39 Europe/Berlin 2011-04-25
-2835220 Schwarmstedt Schwarmstedt 52.67794 9.61767 P PPLA4 DE 06 00 03358 03358020 5159 30 Europe/Berlin 2011-04-25
-2835223 Schwarme Schwarme 52.9 9.01667 P PPLA4 DE 06 00 03251 03251033 2544 12 Europe/Berlin 2011-04-25
-2835248 Schwanheim Schwanheim 49.16667 7.88333 P PPLA4 DE 08 00 07340 07340047 602 257 Europe/Berlin 2011-04-25
-2835249 Schwanheide Schwanheide 53.43333 10.68333 P PPLA4 DE 12 00 13054 13054096 760 14 Europe/Berlin 2011-04-25
-2835255 Schwangau Schwangau Schwangau 47.58333 10.73333 P PPLA4 DE 02 097 09777 09777169 3505 787 Europe/Berlin 2011-07-31
-2835256 Schwanfeld Schwanfeld 49.91667 10.13333 P PPLA4 DE 02 096 09678 09678175 2032 251 Europe/Berlin 2011-04-25
-2835260 Schwanewede Schwanewede Schwanewede 53.23333 8.6 P PPLA4 DE 06 00 03356 03356009 20015 12 Europe/Berlin 2011-07-31
-2835292 Schwanebeck Schwanebeck Schwanebeck 51.96667 11.11667 P PPL DE 14 2435 119 Europe/Berlin 2012-01-18
-2835297 Schwandorf in Bayern Schwandorf in Bayern Schwandorf,Schwandorf in Bayern,Stadt Schwandorf 49.32639 12.10972 P PPL DE 02 28235 368 Europe/Berlin 2012-01-18
-2835342 Schwalmtal Schwalmtal Schwalmtal 51.21667 6.26667 P PPLA4 DE 07 051 05166 05166024 19435 62 Europe/Berlin 2011-04-25
-2835343 Schwalmtal Schwalmtal 50.68333 9.21667 P PPLA4 DE 05 065 06535 06535017 3159 348 Europe/Berlin 2011-07-31
-2835345 Schwalmstadt Schwalmstadt Schwalmstadt 50.93333 9.21667 P PPL DE 05 19279 235 Europe/Berlin 2012-01-18
-2835352 Schwallungen Schwallungen Schwallungen 50.7 10.36667 P PPLA4 DE 15 00 16066 16066064 2782 304 Europe/Berlin 2011-04-25
-2835356 Schwall Schwall 50.15 7.55 P PPLA4 DE 08 00 07140 07140140 328 425 Europe/Berlin 2011-04-25
-2835380 Schwalbach Schwalbach 50.49672 8.46943 P PPLX DE 05 065 1600 285 274 Europe/Berlin 2010-11-15
-2835381 Schwalbach am Taunus Schwalbach am Taunus 50.15 8.53333 P PPL DE 05 14192 142 Europe/Berlin 2007-12-05
-2835382 Schwalbach Schwalbach 49.3 6.81667 P PPLA4 DE 09 00 10044 10044118 18708 210 Europe/Berlin 2011-07-31
-2835385 Schwaikheim Schwaikheim 48.87733 9.34958 P PPLA4 DE 01 081 08119 08119068 9295 267 Europe/Berlin 2011-04-25
-2835411 Schwaigern Schwaigern Schwaigern 49.14389 9.055 P PPL DE 01 11047 197 Europe/Berlin 2012-02-28
-2835416 Schwaigen Schwaigen 47.61667 11.15 P PPLA4 DE 02 091 09180 09180131 621 625 Europe/Berlin 2011-04-25
-2835421 Schwaig Schwaig Schwaig,Shvajg,Швайг 49.46944 11.20111 P PPL DE 02 8340 324 Europe/Berlin 2012-01-18
-2835454 Schwaförden Schwaforden 52.73775 8.83026 P PPLA4 DE 06 00 03251 03251032 1493 59 Europe/Berlin 2011-07-31
-2835467 Schwabstedt Schwabstedt Schwabstedt 54.39705 9.18646 P PPLA4 DE 10 00 01054 01054116 1367 9 Europe/Berlin 2012-01-05
-2835470 Schwabsoien Schwabsoien 47.83333 10.83333 P PPLA4 DE 02 091 09190 09190151 1344 735 Europe/Berlin 2011-04-25
-2835477 Schwabmünchen Schwabmunchen Schwabmunchen,Schwabmünchen 48.18333 10.75 P PPL DE 02 13232 555 Europe/Berlin 2012-01-18
-2835481 Schwäbisch Hall Schwabisch Hall Hale Suevice,Hall,Halla Suevica,Schwaebisch Hall,Schwäbisch Hall,シュヴェービッシュ・ハル 49.11127 9.73908 P PPL DE 01 36543 322 Europe/Berlin 2008-12-22
-2835482 Schwäbisch Gmünd Schwabisch Gmund Gmund,Gmünd,Schwaebisch Gmuend,Schwäbisch Gmünd 48.79947 9.79809 P PPL DE 01 61338 325 Europe/Berlin 2008-12-20
-2835491 Schwabhausen Schwabhausen 48.30318 11.35574 P PPLA4 DE 02 091 09174 09174143 0 487 Europe/Berlin 2011-04-25
-2835494 Schwabhausen Schwabhausen 50.88333 10.73333 P PPLA4 DE 15 00 16067 16067059 685 347 Europe/Berlin 2011-04-25
-2835496 Schwabhausen Schwabhausen Kleinschwabhausen 48.40157 11.35729 P PPL DE 02 091 5911 507 Europe/Berlin 2010-11-15
-2835512 Schwabenheim Schwabenheim 49.93278 8.09417 P PPL DE 08 2555 130 Europe/Berlin 2006-01-17
-2835531 Schwabbruck Schwabbruck 47.83333 10.83333 P PPLA4 DE 02 091 09190 09190149 905 735 Europe/Berlin 2011-04-25
-2835537 Schwabach Schwabach Schwabach 49.32917 11.02556 P PPL DE 02 38554 327 Europe/Berlin 2012-01-18
-2835540 Schwaara Schwaara Schwaara 50.9 12.13333 P PPLA4 DE 15 00 16076 16076067 166 280 Europe/Berlin 2011-04-25
-2835542 Schwaan Schwaan Schwaan 53.95 12.11667 P PPL DE 12 5345 254 Europe/Berlin 2012-02-02
-2835581 Schützberg Schutzberg 51.79025 12.82413 P PPLA4 DE 14 00 15091 15091310 157 71 Europe/Berlin 2011-07-31
-2835583 Schutzbach Schutzbach 50.75 7.9 P PPLA4 DE 08 00 07132 07132101 453 355 Europe/Berlin 2011-04-25
-2835584 Schutz Schutz 50.13333 6.75 P PPLA4 DE 08 00 07233 07233065 161 491 Europe/Berlin 2011-04-25
-2835587 Schüttorf Schuttorf Schuttorf,Schüttorf 52.31667 7.23333 P PPL DE 06 11465 34 Europe/Berlin 2012-01-18
-2835596 Schutterwald Schutterwald 48.45 7.88333 P PPLA4 DE 01 083 08317 08317122 7105 150 Europe/Berlin 2011-04-25
-2835597 Schuttertal Schuttertal 48.26667 7.95 P PPLA4 DE 01 083 08317 08317121 3343 284 Europe/Berlin 2011-07-31
-2835635 Bad Schussenried Bad Schussenried Bad Schussenried,Schussenried 48.01667 9.65 P PPL DE 01 8319 600 Europe/Berlin 2012-01-18
-2835674 Schürensöhlen Schurensohlen Schurensohlen,Schürensöhlen 53.76667 10.48333 P PPLA4 DE 10 00 01053 01053114 169 57 Europe/Berlin 2011-04-25
-2835683 Schürdt Schurdt 50.66667 7.55 P PPLA4 DE 08 00 07132 07132100 248 258 Europe/Berlin 2011-04-25
-2835787 Schulzendorf Schulzendorf 52.36667 13.58333 P PPLA4 DE 11 00 12061 12061444 7452 34 Europe/Berlin 2011-04-25
-2835944 Schülp Schulp 54.26667 9.63333 P PPL DE 10 1202 13 Europe/Berlin 2006-01-17
-2835945 Schülp Schulp 54.25 8.93333 P PPLA4 DE 10 00 01051 01051105 483 255 Europe/Berlin 2011-04-25
-2835950 Schüller Schuller 50.33333 6.58333 P PPLA4 DE 08 00 07233 07233239 367 525 Europe/Berlin 2011-04-25
-2835953 Schülldorf Schulldorf Schulldorf,Schülldorf 54.3 9.73333 P PPLA4 DE 10 00 01058 01058146 561 13 Europe/Berlin 2011-04-25
-2835972 Schulendorf Schulendorf 53.47323 10.56104 P PPLA4 DE 10 00 01053 01053115 452 34 Europe/Berlin 2011-04-25
-2835990 Schuld Schuld 50.44767 6.88894 P PPLA4 DE 08 00 07131 07131074 847 243 Europe/Berlin 2011-04-25
-2836031 Schuby Schuby Schuby 54.51667 9.48333 P PPLA4 DE 10 00 01059 01059077 2530 29 Europe/Berlin 2011-04-25
-2836039 Schrum Schrum Schrum 54.18333 9.25 P PPLA4 DE 10 00 01051 01051104 68 73 Europe/Berlin 2011-04-25
-2836040 Schrozberg Schrozberg Schrozberg 49.34528 9.97944 P PPL DE 01 6082 461 Europe/Berlin 2012-02-28
-2836084 Schrobenhausen Schrobenhausen Schrobenhausen 48.55 11.26667 P PPL DE 02 16143 424 Europe/Berlin 2012-01-18
-2836089 Schriesheim Schriesheim Schriesheim 49.47778 8.67278 P PPL DE 01 14379 148 Europe/Berlin 2012-01-18
-2836143 Schrecksbach Schrecksbach 50.83333 9.28333 P PPLA4 DE 05 066 06634 06634021 3343 225 Europe/Berlin 2011-04-25
-2836182 Schraplau Schraplau Schraplau 51.43333 11.66667 P PPL DE 14 1357 145 Europe/Berlin 2012-01-18
-2836203 Schramberg Schramberg 48.22399 8.38583 P PPL DE 01 18565 436 Europe/Berlin 2009-09-18
-2836219 Schraden Schraden 51.43333 13.7 P PPLA4 DE 11 00 12062 12062464 598 92 Europe/Berlin 2011-04-25
-2836251 Schotten Schotten Schotten 50.5 9.13333 P PPL DE 05 11566 325 Europe/Berlin 2012-01-18
-2836271 Schossin Schossin 53.55 11.21667 P PPLA4 DE 12 00 13054 13054095 267 44 Europe/Berlin 2011-04-25
-2836282 Schortens Schortens Schortens 53.53333 7.95 P PPLA4 DE 06 00 03455 03455015 21357 6 Europe/Berlin 2011-07-31
-2836306 Schornsheim Schornsheim Schornsheim 49.84583 8.175 P PPLA4 DE 08 00 07331 07331059 1590 165 Europe/Berlin 2011-07-31
-2836319 Schorndorf Schorndorf 49.16667 12.6 P PPLA4 DE 02 093 09372 09372158 2554 433 Europe/Berlin 2011-04-25
-2836320 Schorndorf Schorndorf Shorndorf,Шорндорф 48.80537 9.52721 P PPL DE 01 39697 259 Europe/Berlin 2010-01-29
-2836387 Schöps Schops 50.83333 11.6 P PPLA4 DE 15 00 16074 16074087 320 155 Europe/Berlin 2011-04-25
-2836390 Schöppingen Schoppingen 52.1 7.23333 P PPLA4 DE 07 055 05554 05554052 8165 86 Europe/Berlin 2011-04-25
-2836396 Schöppenstedt Schoppenstedt 52.14308 10.7745 P PPL DE 06 5961 109 Europe/Berlin 2011-02-07
-2836402 Schopp Schopp 49.35 7.68333 P PPLA4 DE 08 00 07335 07335204 1520 320 Europe/Berlin 2011-04-25
-2836407 Schopfloch Schopfloch Schopfloch 49.11667 10.3 P PPL DE 02 2884 471 Europe/Berlin 2012-02-02
-2836409 Schopfloch Schopfloch 48.45477 8.55131 P PPLA4 DE 01 082 08237 08237061 2569 666 Europe/Berlin 2011-04-25
-2836413 Schopfheim Schopfheim 47.65105 7.82089 P PPL DE 01 083 19386 376 Europe/Berlin 2010-11-15
-2836438 Schönwalde am Bungsberg Schonwalde am Bungsberg Schonwalde am Bungsberg,Schönwalde am Bungsberg 54.18333 10.75 P PPLA4 DE 10 00 01055 01055038 2527 95 Europe/Berlin 2011-04-25
-2836442 Schönwalde Schonwalde 53.53333 13.9 P PPLA4 DE 12 00 13062 13062053 551 38 Europe/Berlin 2011-04-25
-2836450 Schönwald Schonwald Schonwald,Schönwald 50.2 12.1 P PPL DE 02 3741 600 Europe/Berlin 2012-02-02
-2836451 Schönwald Schonwald 48.1 8.2 P PPL DE 01 2548 994 Europe/Berlin 2006-01-17
-2836455 Schonungen Schonungen 50.05008 10.30809 P PPLA4 DE 02 096 09678 09678174 8230 262 Europe/Berlin 2011-04-25
-2836460 Schönthal Schonthal 49.35 12.6 P PPLA4 DE 02 093 09372 09372157 2037 450 Europe/Berlin 2011-04-25
-2836469 Schonstett Schonstett 47.98333 12.25 P PPLA4 DE 02 091 09187 09187173 1214 485 Europe/Berlin 2011-04-25
-2836480 Schönsee Schonsee Schonsee,Schönsee 49.51667 12.55 P PPL DE 02 2720 667 Europe/Berlin 2012-01-18
-2836532 Schönkirchen Schonkirchen 54.33333 10.23333 P PPLA4 DE 10 00 01057 01057074 6375 16 Europe/Berlin 2011-07-31
-2836543 Schöningen Schoningen Schoningen,Schöningen 52.13802 10.96745 P PPL DE 06 13265 136 Europe/Berlin 2011-05-03
-2836581 Schönheide Schoenheide 50.50458 12.52158 P PPL DE 13 145 14521 14521540 5310 669 Europe/Berlin 2012-01-26
-2836586 Schönhausen Schonhausen 53.55 13.7 P PPLA4 DE 12 00 13055 13055062 319 95 Europe/Berlin 2011-04-25
-2836587 Schönhausen Schonhausen Schonhausen,Schönhausen 52.58333 12.03333 P PPL DE 14 2100 38 Europe/Berlin 2012-01-18
-2836605 Schönhagen Schonhagen 51.33333 10.01667 P PPLA4 DE 15 00 16061 16061084 149 445 Europe/Berlin 2011-04-25
-2836614 Schöngleina Schongleina Schongleina,Schöngleina 50.91667 11.73333 P PPLA4 DE 15 00 16074 16074086 543 282 Europe/Berlin 2011-04-25
-2836615 Schöngeising Schongeising 48.13333 11.2 P PPLA4 DE 02 091 09179 09179147 1806 532 Europe/Berlin 2011-04-25
-2836616 Schongau Schongau Schongau 47.81667 10.9 P PPL DE 02 12442 688 Europe/Berlin 2012-01-18
-2836648 Schönfeld Schonfeld 53.85 12.96667 P PPLA4 DE 12 00 13052 13052070 473 28 Europe/Berlin 2011-04-25
-2836650 Schönfeld Schonfeld 53.41667 13.98333 P PPLA4 DE 11 00 12073 12073520 0 57 Europe/Berlin 2011-04-25
-2836658 Schönfeld Schonfeld Schonefeld,Schonfeld,Schönefeld,Schönfeld 51.3 13.7 P PPLA4 DE 13 146 14627 14627250 2021 137 Europe/Berlin 2011-04-25
-2836675 Schönewörde Schoneworde 52.63333 10.63333 P PPLA4 DE 06 00 03151 03151026 966 61 Europe/Berlin 2011-04-25
-2836680 Schönewalde Schonewalde Schonewalde,Schönewalde 51.68333 13.6 P PPL DE 11 3740 98 Europe/Berlin 2012-01-18
-2836697 Schönermark Schonermark 53.00699 13.12016 P PPLA4 DE 11 00 12065 12065276 520 63 Europe/Berlin 2011-04-25
-2836725 Schönenberg Schonenberg 47.79378 7.88248 P PPLA4 DE 01 083 08336 08336080 356 705 Europe/Berlin 2011-07-31
-2836746 Schöneiche Schoneiche Schoneiche,Schöneiche 52.46667 13.68333 P PPL DE 11 11907 44 Europe/Berlin 2012-01-18
-2836761 Schönefeld Schonefeld Schonefeld,Schönefeld 52.38333 13.51667 P PPLA4 DE 11 00 12061 12061433 12015 44 Europe/Berlin 2011-07-31
-2836770 Schönecken Schonecken 50.15909 6.4682 P PPLA4 DE 08 00 07232 07232304 1625 457 Europe/Berlin 2011-04-25
-2836772 Schöneck Schoneck Schoneck,Schöneck 50.38333 12.31667 P PPL DE 13 3728 623 Europe/Berlin 2012-01-18
-2836791 Schöneberg Schoneberg 53.00853 14.14258 P PPLA4 DE 11 00 12073 12073505 955 43 Europe/Berlin 2011-07-31
-2836793 Schöneberg Schoneberg 50.66667 7.6 P PPLA4 DE 08 00 07132 07132099 0 201 Europe/Berlin 2011-04-25
-2836795 Schöneberg Schoneberg 49.91667 7.75 P PPLA4 DE 08 00 07133 07133091 661 343 Europe/Berlin 2011-04-25
-2836809 Schönebeck Schonebeck 52.01667 11.75 P PPL DE 14 34301 50 Europe/Berlin 2006-01-17
-2836817 Schondra Schondra Schondra 50.26667 9.86667 P PPL DE 02 1855 444 Europe/Berlin 2012-01-18
-2836820 Schöndorf Schondorf 50.61745 11.69477 P PPLA4 DE 15 00 16075 16075102 0 444 Europe/Berlin 2011-04-25
-2836834 Schönburg Schonburg 51.16667 11.86667 P PPLA4 DE 14 00 15084 15084445 1133 103 Europe/Berlin 2011-04-25
-2836908 Schönborn Schonborn Schonborn,Schönborn 51.6 13.5 P PPLA4 DE 11 00 12062 12062453 1881 99 Europe/Berlin 2011-04-25
-2836913 Schönborn Schonborn 50.3 7.98333 P PPLA4 DE 08 00 07141 07141126 725 301 Europe/Berlin 2011-04-25
-2836914 Schönborn Schonborn 49.95 7.46667 P PPLA4 DE 08 00 07140 07140139 262 374 Europe/Berlin 2011-04-25
-2836915 Schönborn Schonborn 49.63333 7.76667 P PPLA4 DE 08 00 07333 07333068 125 450 Europe/Berlin 2011-04-25
-2836945 Schönberg Schonberg 53.68319 10.42671 P PPLA4 DE 10 00 01053 01053112 1304 58 Europe/Berlin 2011-07-31
-2836952 Schönberg Schonberg 50.86667 12.5 P PPLA4 DE 13 145 14524 14524270 1013 299 Europe/Berlin 2011-04-25
-2836958 Schönberg Schonberg 49.76667 6.91667 P PPLA4 DE 08 00 07231 07231115 238 448 Europe/Berlin 2011-04-25
-2836968 Schönberg Schonberg 48.33333 12.43333 P PPLA4 DE 02 091 09183 09183143 0 474 Europe/Berlin 2011-04-25
-2837009 Schönbek Schonbek Schonbek,Schönbek 54.16667 9.96667 P PPLA4 DE 10 00 01058 01058144 173 28 Europe/Berlin 2011-04-25
-2837012 Schönbeck Schonbeck 53.58333 13.58333 P PPLA4 DE 12 00 13055 13055061 537 40 Europe/Berlin 2011-04-25
-2837022 Schönbach Schonbach 51.06667 14.56667 P PPLA4 DE 13 146 14626 14626510 1368 402 Europe/Berlin 2011-04-25
-2837028 Schönbach Schonbach 50.21667 6.95 P PPLA4 DE 08 00 07233 07233064 280 431 Europe/Berlin 2011-04-25
-2837041 Schönau-Berzdorf Schonau-Berzdorf Berzdorf,Berzdorf auf dem Eigen,Berzdorf uber Gorlitz,Berzdorf über Görlitz,Schonau-Berzdorf,Schönau-Berzdorf 51.06667 14.9 P PPL DE 13 1796 243 Europe/Berlin 2012-01-18
-2837062 Schönau Schonau 50.08333 9.71667 P PPL DE 02 1365 186 Europe/Berlin 2006-01-17
-2837064 Schönau Schonau Schonau,Schönau 49.43556 8.80917 P PPL DE 01 4918 181 Europe/Berlin 2012-01-18
-2837072 Schönau Schonau 48.48333 12.85 P PPLA4 DE 02 092 09277 09277144 2058 440 Europe/Berlin 2011-07-31
-2837074 Schönau im Schwarzwald Schonau im Schwarzwald Schonau,Schonau im Schwarzwald,Schönau,Schönau im Schwarzwald 47.78623 7.89445 P PPL DE 01 083 2525 535 Europe/Berlin 2010-11-15
-2837085 Schönau am Königssee Schoenau am Koenigssee Schonau,Schönau 47.60055 12.98704 P PPL DE DE 02 091 5319 576 Europe/Berlin 2010-11-15
-2837093 Schönaich Schonaich Schonaich,Schönaich 48.65 9.06667 P PPLA4 DE 01 081 08115 08115044 10190 407 Europe/Berlin 2011-07-31
-2837096 Schonach Schonach 48.15 8.2 P PPL DE 01 4259 996 Europe/Berlin 2006-01-17
-2837111 Schömerich Schomerich 49.63333 6.7 P PPLA4 DE 08 00 07235 07235123 138 444 Europe/Berlin 2011-04-25
-2837114 Schömberg Schomberg 50.76667 12.01667 P PPLA4 DE 15 00 16076 16076065 117 307 Europe/Berlin 2011-04-25
-2837115 Schömberg Schomberg 48.78713 8.64495 P PPLA4 DE 01 082 08235 08235065 8725 629 Europe/Berlin 2011-04-25
-2837117 Schömberg Schomberg 48.20997 8.75949 P PPL DE 01 4633 677 Europe/Berlin 2008-12-23
-2837134 Schöllnach Schollnach Schollnach,Schöllnach 48.75 13.18333 P PPL DE 02 5120 373 Europe/Berlin 2012-01-18
-2837136 Schöllkrippen Schollkrippen Schollkrippen,Schöllkrippen 50.06667 9.23333 P PPL DE 02 3868 191 Europe/Berlin 2012-01-18
-2837155 Schollene Schollene 52.67695 12.21869 P PPLA4 DE 14 00 15090 15090485 0 34 Europe/Berlin 2011-04-25
-2837159 Schollbrunn Schollbrunn 49.835 9.46389 P PPLA4 DE 02 096 09677 09677182 938 391 Europe/Berlin 2011-04-25
-2837181 Scholen Scholen 52.73333 8.76667 P PPLA4 DE 06 00 03251 03251031 857 54 Europe/Berlin 2011-04-25
-2837198 Schöfweg Schofweg 48.83882 13.22861 P PPLA4 DE 02 092 09272 09272145 1314 774 Europe/Berlin 2011-08-22
-2837217 Schoden Schoden 49.63333 6.58333 P PPLA4 DE 08 00 07235 07235122 722 210 Europe/Berlin 2011-04-25
-2837225 Schochwitz Schochwitz Schochwitz 51.53333 11.75 P PPL DE 14 1295 134 Europe/Berlin 2012-01-18
-2837236 Schobüll Schobull 54.5 9.01667 P PPL DE 10 1658 4 Europe/Berlin 2006-01-17
-2837250 Schnürpflingen Schnurpflingen 48.2728 9.99292 P PPLA4 DE 01 084 08425 08425110 1322 517 Europe/Berlin 2011-04-25
-2837265 Schnorbach Schnorbach 49.98333 7.61667 P PPLA4 DE 08 00 07140 07140138 230 472 Europe/Berlin 2011-04-25
-2837291 Schneverdingen Schneverdingen Schneverdingen 53.11667 9.8 P PPL DE 06 19199 96 Europe/Berlin 2012-01-18
-2837368 Schnelldorf Schnelldorf Schnelldorf 49.2 10.18333 P PPLA4 DE 02 095 09571 09571199 3614 468 Europe/Berlin 2011-07-31
-2837375 Schneizlreuth Schneizlreuth Schneizlreuth 47.68333 12.8 P PPLA4 DE 02 091 09172 09172131 1538 651 Europe/Berlin 2011-04-25
-2837385 Schneidlingen Schneidlingen 51.9 11.46667 P PPL DE 14 1169 69 Europe/Berlin 2006-01-17
-2837441 Schnega Schnega 52.8913 10.89226 P PPLA4 DE 06 00 03354 03354022 1488 40 Europe/Berlin 2011-07-31
-2837470 Schneeberg Schneeberg Schneeberg 50.6 12.63333 P PPL DE 13 16784 491 Europe/Berlin 2012-01-18
-2837507 Schneckenlohe Schneckenlohe 50.21184 11.19395 P PPLA4 DE 02 094 09476 09476171 1160 322 Europe/Berlin 2011-04-25
-2837512 Schneckenhausen Schneckenhausen 49.53333 7.75 P PPLA4 DE 08 00 07335 07335042 639 370 Europe/Berlin 2011-04-25
-2837566 Schnakenbek Schnakenbek Schnakenbek 53.38333 10.5 P PPLA4 DE 10 00 01053 01053111 868 30 Europe/Berlin 2011-04-25
-2837569 Schnaittenbach Schnaittenbach Schnaittenbach 49.55 12.01667 P PPL DE 02 4375 406 Europe/Berlin 2012-01-18
-2837572 Schnaittach Schnaittach Schnaittach 49.55917 11.34306 P PPL DE 02 8238 350 Europe/Berlin 2012-01-18
-2837575 Schnaitsee Schnaitsee 48.06667 12.36667 P PPLA4 DE 02 091 09189 09189142 3571 576 Europe/Berlin 2011-04-25
-2837638 Schmorda Schmorda 50.64478 11.58646 P PPLA4 DE 15 00 16075 16075101 97 510 Europe/Berlin 2011-04-25
-2837652 Schmölln Schmolln Schmolln,Schmölln 50.9 12.36667 P PPL DE 15 12604 244 Europe/Berlin 2012-01-18
-2837706 Schmitten Schmitten 50.26667 8.45 P PPLA4 DE 05 064 06434 06434009 9042 465 Europe/Berlin 2011-07-31
-2837719 Schmitt Schmitt 50.16667 7.01667 P PPLA4 DE 08 00 07135 07135078 177 422 Europe/Berlin 2011-04-25
-2837720 Schmitshausen Schmitshausen 49.3 7.51667 P PPLA4 DE 08 00 07340 07340224 448 334 Europe/Berlin 2011-04-25
-2837724 Schmißberg Schmissberg 49.66667 7.2 P PPLA4 DE 08 00 07134 07134078 236 394 Europe/Berlin 2011-04-25
-2837732 Schmilau Schmilau Schmilau 53.66667 10.76667 P PPLA4 DE 10 00 01053 01053110 580 29 Europe/Berlin 2011-04-25
-2837738 Schmieritz Schmieritz Schmieritz 50.71667 11.8 P PPLA4 DE 15 00 16075 16075099 447 438 Europe/Berlin 2011-04-25
-2837776 Schmiedehausen Schmiedehausen 51.06667 11.66667 P PPLA4 DE 15 00 16071 16071083 466 240 Europe/Berlin 2011-04-25
-2837777 Schmiedefeld am Rennsteig Schmiedefeld am Rennsteig Schmiedefeld am Rennsteig 50.61667 10.83333 P PPLA4 DE 15 00 16070 16070046 1989 749 Europe/Berlin 2011-04-25
-2837780 Schmiedefeld Schmiedefeld 50.53333 11.21667 P PPLA4 DE 15 00 16073 16073079 1218 710 Europe/Berlin 2011-04-25
-2837788 Schmiedeberg Schmiedeberg 50.83644 13.67622 P PPLA4 DE 13 146 14628 14628350 4806 436 Europe/Berlin 2011-07-31
-2837809 Schmiechen Schmiechen 48.21667 10.96667 P PPLA4 DE 02 097 09771 09771163 1144 537 Europe/Berlin 2011-04-25
-2837831 Schmidthachenbach Schmidthachenbach 49.73333 7.46667 P PPLA4 DE 08 00 07134 07134077 413 247 Europe/Berlin 2011-04-25
-2837850 Schmidmühlen Schmidmuhlen 49.26898 11.92429 P PPL DE 02 2481 362 Europe/Berlin 2009-06-24
-2837885 Schmidgaden Schmidgaden 49.41667 12.08333 P PPLA4 DE 02 093 09376 09376159 2881 393 Europe/Berlin 2011-04-25
-2837954 Schmelz Schmelz 49.43333 6.85 P PPLA4 DE 09 00 10044 10044117 17596 218 Europe/Berlin 2011-04-25
-2837976 Schmeheim Schmeheim Schmeheim 50.56667 10.58333 P PPLA4 DE 15 00 16069 16069044 359 466 Europe/Berlin 2011-04-25
-2837995 Schmatzin Schmatzin 53.92486 13.55249 P PPLA4 DE 12 00 13059 13059089 380 25 Europe/Berlin 2011-04-25
-2838040 Schmalstede Schmalstede Schmalstede 54.2 10.03333 P PPLA4 DE 10 00 01058 01058143 245 26 Europe/Berlin 2011-04-25
-2838053 Schmallenberg Schmallenberg Schmallenberg,Shmallenberg,Шмалленберг 51.15 8.3 P PPL DE 07 26132 466 Europe/Berlin 2012-01-18
-2838059 Schmalkalden Schmalkalden Schmalkalden 50.71667 10.45 P PPL DE 15 17710 349 Europe/Berlin 2012-01-18
-2838075 Schmalfeld Schmalfeld Schmalfeld 53.88333 9.96667 P PPLA4 DE 10 00 01060 01060073 1885 19 Europe/Berlin 2011-04-25
-2838087 Schmalensee Schmalensee Schmalensee 54.08333 10.26667 P PPLA4 DE 10 00 01060 01060072 493 27 Europe/Berlin 2011-04-25
-2838101 Schmalenberg Schmalenberg 49.33333 7.73333 P PPLA4 DE 08 00 07340 07340044 814 449 Europe/Berlin 2011-04-25
-2838167 Schlüsselfeld Schlusselfeld Schlusselfeld,Schlüsselfeld 49.76667 10.63333 P PPL DE 02 5848 334 Europe/Berlin 2012-01-18
-2838201 Schlüchtern Schluchtern 50.34891 9.52532 P PPL DE 05 064 17260 211 Europe/Berlin 2010-11-15
-2838208 Schluchsee Schluchsee 47.81667 8.18333 P PPLA4 DE 01 083 08315 08315102 2586 943 Europe/Berlin 2011-04-25
-2838240 Schlotheim Schlotheim 51.25 10.66667 P PPL DE 15 4288 275 Europe/Berlin 2006-01-17
-2838242 Schlotfeld Schlotfeld Schlotfeld 53.95619 9.58231 P PPLA4 DE 10 00 01061 01061098 252 12 Europe/Berlin 2011-04-25
-2838250 Schloßvippach Schlossvippach 51.1 11.13333 P PPLA4 DE 15 00 16068 16068048 1459 163 Europe/Berlin 2011-04-25
-2838316 Schloßböckelheim Schlossbockelheim 49.8 7.75 P PPLA4 DE 08 00 07133 07133089 395 178 Europe/Berlin 2011-04-25
-2838442 Schloen Schloen 53.55 12.81667 P PPLA4 DE 12 00 13056 13056060 433 64 Europe/Berlin 2011-04-25
-2838453 Schlöben Schloben Schloben,Schlöben 50.9 11.7 P PPLA4 DE 15 00 16074 16074085 982 262 Europe/Berlin 2011-04-25
-2838459 Schlitz Schlitz 50.67416 9.56102 P PPL DE 05 065 10258 243 Europe/Berlin 2010-11-15
-2838502 Schliersee Schliersee Schliers,Schliersee 47.73333 11.86667 P PPL DE 02 6416 795 Europe/Berlin 2012-01-18
-2838504 Schlierschied Schlierschied 49.86667 7.43333 P PPLA4 DE 08 00 07140 07140135 190 439 Europe/Berlin 2011-04-25
-2838529 Schlierbach Schlierbach 48.67362 9.51811 P PPLA4 DE 01 081 08117 08117044 3784 351 Europe/Berlin 2011-04-25
-2838531 Schlier Schlier 47.76667 9.66667 P PPLA4 DE 01 084 08436 08436069 3665 586 Europe/Berlin 2011-04-25
-2838534 Schliengen Schliengen 47.75698 7.57645 P PPLA4 DE 01 083 08336 08336078 5208 243 Europe/Berlin 2011-04-25
-2838547 Schlieben Schlieben 51.71667 13.38333 P PPL DE 11 2994 92 Europe/Berlin 2006-01-17
-2838559 Schlichting Schlichting Schlichting 54.31667 9.08333 P PPLA4 DE 10 00 01051 01051102 238 252 Europe/Berlin 2011-04-25
-2838600 Schleusingen Schleusingen Schleusingen 50.51667 10.75 P PPL DE 15 5842 438 Europe/Berlin 2012-01-18
-2838628 Schlettau Schlettau Schlettau 50.56667 12.95 P PPL DE 13 2733 550 Europe/Berlin 2012-01-18
-2838634 Schleswig Schleswig Schleswig,Shlezvig,Sleeswig,Slesvig,Sliesthorp,Stadt Schleswig,Шлезвиг 54.51667 9.55 P PPL DE 10 24114 34 Europe/Berlin 2012-01-18
-2838638 Schlesen Schlesen 54.32153 10.33419 P PPLA4 DE 10 00 01057 01057072 555 29 Europe/Berlin 2011-04-25
-2838640 Schlepzig Schlepzig 52.03333 13.9 P PPLA4 DE 11 00 12061 12061428 645 53 Europe/Berlin 2011-04-25
-2838665 Schlemmin Schlemmin 54.22235 12.68277 P PPLA4 DE 12 00 13057 13057077 317 27 Europe/Berlin 2011-04-25
-2838671 Schlema Schlema Niederschlema,Schlema 50.61667 12.66667 P PPL DE 13 5540 471 Europe/Berlin 2012-01-18
-2838673 Schleiz Schleiz Schleiz 50.58333 11.81667 P PPL DE 15 8976 431 Europe/Berlin 2012-01-18
-2838707 Schleifreisen Schleifreisen Schleifreisen 50.88333 11.81667 P PPLA4 DE 15 00 16074 16074084 479 344 Europe/Berlin 2011-04-25
-2838725 Schleife Schleife Schleife,Slepo 51.53333 14.53333 P PPLA4 DE 13 146 14626 14626490 2950 131 Europe/Berlin 2011-04-25
-2838744 Schleiden Schleiden 50.52947 6.47696 P PPL DE 07 14160 367 Europe/Berlin 2008-10-21
-2838749 Schleid Schleid 50.7 9.96667 P PPLA4 DE 15 00 16063 16063068 1137 335 Europe/Berlin 2011-04-25
-2838750 Schleid Schleid 50.06667 6.48333 P PPLA4 DE 08 00 07232 07232118 387 409 Europe/Berlin 2011-04-25
-2838756 Schleich Schleich 49.81667 6.83333 P PPLA4 DE 08 00 07235 07235120 204 275 Europe/Berlin 2011-04-25
-2838769 Schlehdorf Schlehdorf Schleedorf,Schlehdorf 47.65 11.31667 P PPLA4 DE 02 091 09173 09173142 1203 597 Europe/Berlin 2011-04-25
-2838793 Schlegel Schlegel 50.98333 14.88333 P PPL DE 13 1115 308 Europe/Berlin 2006-01-17
-2838794 Schlegel Schlegel 50.4 11.61667 P PPLA4 DE 15 00 16075 16075097 0 623 Europe/Berlin 2011-04-25
-2838842 Schleching Schleching 47.71667 12.4 P PPLA4 DE 02 091 09189 09189141 1854 563 Europe/Berlin 2011-04-25
-2838889 Schlat Schlat 48.65321 9.70625 P PPLA4 DE 01 081 08117 08117043 1719 418 Europe/Berlin 2011-04-25
-2838918 Schlangenbad Schlangenbad Schlangenbad 50.1 8.1 P PPLA4 DE 05 064 06439 06439014 6265 447 Europe/Berlin 2011-04-25
-2838922 Schlangen Schlangen 51.80978 8.84605 P PPLA4 DE 07 057 05766 05766064 9137 169 Europe/Berlin 2011-04-25
-2838924 Schlammersdorf Schlammersdorf 49.8 11.73333 P PPLA4 DE 02 093 09374 09374155 934 455 Europe/Berlin 2011-04-25
-2838938 Schlaitz Schlaitz Schlaitz 51.66667 12.43333 P PPL DE 14 1007 92 Europe/Berlin 2012-01-18
-2838939 Schlaitdorf Schlaitdorf 48.60431 9.22268 P PPLA4 DE 01 081 08116 08116063 1663 398 Europe/Berlin 2011-04-25
-2838955 Schlagsdorf Schlagsdorf 53.73333 10.83333 P PPLA4 DE 12 00 13058 13058093 1141 40 Europe/Berlin 2011-04-25
-2839005 Schladt Schladt 50.03333 6.83333 P PPLA4 DE 08 00 07231 07231114 119 313 Europe/Berlin 2011-04-25
-2839010 Schladen Schladen Schladen 52.02218 10.53967 P PPLA4 DE 06 00 03158 03158026 5251 98 Europe/Berlin 2011-07-31
-2839044 Schkopau Schkopau Schkopau 51.4 11.98333 P PPLA4 DE 14 00 15088 15088330 3060 81 Europe/Berlin 2011-07-31
-2839046 Schköna Schkona 51.68333 12.53333 P PPLA4 DE 14 00 15091 15091295 801 148 Europe/Berlin 2011-04-25
-2839049 Schkölen Schkolen Schkolen,Schkölen 51.03333 11.81667 P PPL DE 15 2909 265 Europe/Berlin 2012-01-18
-2839050 Schkeuditz Schkeuditz Schkeuditz 51.4 12.21667 P PPL DE 13 18487 121 Europe/Berlin 2012-01-18
-2839066 Schirnding Schirnding Schirnding 50.08333 12.23333 P PPL DE 02 1471 466 Europe/Berlin 2012-01-18
-2839074 Schirmitz Schirmitz 49.65 12.16667 P PPLA4 DE 02 093 09374 09374154 2120 393 Europe/Berlin 2011-04-25
-2839090 Schirgiswalde Schirgiswalde Schirgiswalde 51.06667 14.43333 P PPL DE 13 3009 289 Europe/Berlin 2012-01-18
-2839101 Schipkau Schipkau Schipkau,Shipkau 51.51667 13.88333 P PPLA4 DE 11 00 12066 12066285 7876 148 Europe/Berlin 2011-07-31
-2839102 Schiphorst Schiphorst Schiphorst 53.7 10.46667 P PPLA4 DE 10 00 01053 01053109 573 74 Europe/Berlin 2011-04-25
-2839124 Schindhard Schindhard 49.14183 7.82214 P PPLA4 DE 08 00 07340 07340043 634 223 Europe/Berlin 2011-08-07
-2839194 Schiltberg Schiltberg 48.46293 11.24876 P PPLA4 DE 02 097 09771 09771162 1824 454 Europe/Berlin 2011-07-31
-2839195 Schiltach Schiltach Schiltach 48.28333 8.35 P PPL DE 01 4025 352 Europe/Berlin 2012-01-18
-2839203 Schillsdorf Schillsdorf Schillsdorf 54.11667 10.13333 P PPLA4 DE 10 00 01057 01057071 890 47 Europe/Berlin 2011-04-25
-2839207 Schillingstedt Schillingstedt 51.23333 11.2 P PPLA4 DE 15 00 16068 16068047 292 148 Europe/Berlin 2011-04-25
-2839212 Schillingsfürst Schillingsfurst Schillingsfurst,Schillingsfürst 49.28333 10.26667 P PPL DE 02 2847 510 Europe/Berlin 2012-01-18
-2839222 Schillingen Schillingen 49.63333 6.78333 P PPLA4 DE 08 00 07235 07235119 1334 485 Europe/Berlin 2011-04-25
-2839229 Schillig Schillig Schillig,Shilling,Шиллинг 53.7 8.01667 P PPL DE 06 2000 255 Europe/Berlin 2012-01-18
-2839303 Schildau Schildau Gneisenaustadt Schildau,Schildau 51.45 12.93333 P PPL DE 13 3838 115 Europe/Berlin 2012-01-18
-2839304 Schilda Schilda 51.6 13.38333 P PPLA4 DE 11 00 12062 12062440 561 107 Europe/Berlin 2011-04-25
-2839316 Schiffweiler Schiffweiler 49.36667 7.13333 P PPLA4 DE 09 00 10043 10043116 17454 295 Europe/Berlin 2011-04-25
-2839335 Schifferstadt Schifferstadt Schifferstadt 49.38722 8.37472 P PPL DE 08 19209 103 Europe/Berlin 2012-01-18
-2839345 Schiffdorf Schiffdorf Schiffdorf 53.53333 8.65 P PPLA4 DE 06 00 03352 03352050 14143 8 Europe/Berlin 2011-04-25
-2839377 Schiesheim Schiesheim 50.28333 8.06667 P PPLA4 DE 08 00 07141 07141125 258 189 Europe/Berlin 2011-04-25
-2839383 Schiersfeld Schiersfeld 49.7 7.76667 P PPLA4 DE 08 00 07333 07333067 265 209 Europe/Berlin 2011-04-25
-2839393 Schierling Schierling Schierling 48.83333 12.13333 P PPL DE 02 7347 373 Europe/Berlin 2012-02-02
-2839413 Schierensee Schierensee Schierensee 54.25 9.98333 P PPLA4 DE 10 00 01058 01058141 384 34 Europe/Berlin 2011-04-25
-2839427 Schieren Schieren Schieren 53.95 10.38333 P PPLA4 DE 10 00 01060 01060071 267 50 Europe/Berlin 2011-04-25
-2839527 Scheyern Scheyern 48.5 11.46667 P PPLA4 DE 02 091 09186 09186151 4450 492 Europe/Berlin 2011-04-25
-2839538 Scheuring Scheuring 48.16667 10.9 P PPLA4 DE 02 091 09181 09181138 1794 574 Europe/Berlin 2011-04-25
-2839560 Scheuern Scheuern 50.01667 6.3 P PPLA4 DE 08 00 07232 07232117 0 468 Europe/Berlin 2011-04-25
-2839581 Scheuerfeld Scheuerfeld 50.78333 7.83333 P PPLA4 DE 08 00 07132 07132098 2166 175 Europe/Berlin 2011-04-25
-2839613 Scheßlitz Schesslitz Schesslitz,Scheßlitz 49.97667 11.03389 P PPL DE 02 7195 309 Europe/Berlin 2012-01-18
-2839623 Scherstetten Scherstetten 48.18333 10.63333 P PPLA4 DE 02 097 09772 09772197 1008 591 Europe/Berlin 2011-04-25
-2839646 Schernfeld Schernfeld 48.9 11.1 P PPLA4 DE 02 091 09176 09176160 0 509 Europe/Berlin 2011-04-25
-2839658 Schernberg Schernberg Schernberg 51.31667 10.76667 P PPL DE 15 3427 297 Europe/Berlin 2012-01-18
-2839670 Schermen Schermen 52.23206 11.81382 P PPL DE 14 1575 61 Europe/Berlin 2008-06-06
-2839674 Schermbeck Schermbeck Schermbeck 51.68333 6.86667 P PPLA4 DE 07 051 05170 05170036 13682 32 Europe/Berlin 2011-04-25
-2839726 Schenklengsfeld Schenklengsfeld 50.81667 9.85 P PPLA4 DE 05 066 06632 06632019 4806 323 Europe/Berlin 2011-04-25
-2839732 Schenkenzell Schenkenzell 48.3 8.36667 P PPLA4 DE 01 083 08325 08325050 1822 343 Europe/Berlin 2011-04-25
-2839748 Schenkendöbern Schenkendobern 51.95 14.63333 P PPLA4 DE 11 00 12071 12071337 4455 71 Europe/Berlin 2011-07-31
-2839751 Schenkenberg Schenkenberg 53.36667 13.95 P PPLA4 DE 11 00 12073 12073490 694 46 Europe/Berlin 2011-04-25
-2839760 Schenkelberg Schenkelberg 50.6 7.78333 P PPLA4 DE 08 00 07143 07143066 692 425 Europe/Berlin 2011-04-25
-2839763 Schenefeld Schenefeld Schenefeld 54.05 9.48333 P PPLA4 DE 10 00 01061 01061097 2524 27 Europe/Berlin 2011-04-25
-2839764 Schenefeld Schenefeld Schenefeld,Schenefeld, Stadt 53.60278 9.82333 P PPLX DE 10 17894 17 Europe/Berlin 2011-08-24
-2839791 Schellweiler Schellweiler 49.51667 7.4 P PPLA4 DE 08 00 07336 07336091 538 349 Europe/Berlin 2011-04-25
-2839812 Schellhorn Schellhorn 54.22952 10.29402 P PPLA4 DE 10 00 01057 01057070 1714 38 Europe/Berlin 2011-04-25
-2839819 Schellerten Schellerten 52.1853 10.10227 P PPLA4 DE 06 00 03254 03254029 8694 91 Europe/Berlin 2011-04-25
-2839888 Schelklingen Schelklingen 48.37575 9.73273 P PPL DE 01 7130 538 Europe/Berlin 2008-12-24
-2839912 Scheitenkorb Scheitenkorb 50.01667 6.2 P PPLA4 DE 08 00 07232 07232116 25 481 Europe/Berlin 2011-04-25
-2839916 Scheinfeld Scheinfeld Scheinfeld 49.66667 10.46667 P PPL DE 02 4770 315 Europe/Berlin 2012-01-18
-2839939 Scheidt Scheidt 50.33333 7.91667 P PPLA4 DE 08 00 07141 07141124 309 201 Europe/Berlin 2011-04-25
-2839949 Scheiditz Scheiditz Scheiditz 50.9 11.75 P PPLA4 DE 15 00 16074 16074082 53 307 Europe/Berlin 2011-04-25
-2839980 Scheidegg Scheidegg Scheidegg 47.58333 9.85 P PPL DE 02 4198 799 Europe/Berlin 2012-01-18
-2839997 Scheid Scheid 50.35 6.41667 P PPLA4 DE 08 00 07233 07233237 115 557 Europe/Berlin 2011-04-25
-2840016 Scheibenhardt Scheibenhardt 48.98117 8.13993 P PPLA4 DE 08 00 07334 07334027 731 125 Europe/Berlin 2011-04-25
-2840021 Scheibenberg Scheibenberg Scheibenberg 50.53333 12.91667 P PPL DE 13 2358 711 Europe/Berlin 2012-01-18
-2840044 Scheibe-Alsbach Scheibe-Alsbach Scheibe-Alsbach 50.5 11.06667 P PPLA4 DE 15 00 16072 16072016 655 799 Europe/Berlin 2011-04-25
-2840058 Scheggerott Scheggerott Scheggerott 54.66667 9.81667 P PPLA4 DE 10 00 01059 01059074 388 26 Europe/Berlin 2011-04-25
-2840070 Scheeßel Scheessel Scheessel,Scheeßel 53.16667 9.48333 P PPLA4 DE 06 00 03357 03357041 12907 36 Europe/Berlin 2011-04-25
-2840086 Scheer Scheer 48.07292 9.29486 P PPL DE 01 2622 561 Europe/Berlin 2008-12-23
-2840116 Schechingen Schechingen 48.87341 9.91744 P PPLA4 DE 01 081 08136 08136062 2484 484 Europe/Berlin 2011-04-25
-2840117 Schechen Schechen 47.92911 12.12393 P PPLA4 DE 02 091 09187 09187142 4430 441 Europe/Berlin 2011-07-31
-2840129 Schauren Schauren 50.01667 7.26667 P PPLA4 DE 08 00 07135 07135077 394 385 Europe/Berlin 2011-04-25
-2840130 Schauren Schauren 49.80719 7.23724 P PPLA4 DE 08 00 07134 07134076 547 522 Europe/Berlin 2011-04-25
-2840150 Schaufling Schaufling 48.85 13.06667 P PPLA4 DE 02 092 09271 09271148 1494 495 Europe/Berlin 2011-04-25
-2840169 Schauerberg Schauerberg 49.31667 7.58333 P PPLA4 DE 08 00 07340 07340042 0 328 Europe/Berlin 2011-04-25
-2840179 Schauenstein Schauenstein Schauenstein 50.26667 11.75 P PPL DE 02 2142 541 Europe/Berlin 2012-01-18
-2840232 Schashagen Schashagen Schashagen 54.13333 10.88333 P PPLA4 DE 10 00 01055 01055037 2385 35 Europe/Berlin 2011-04-25
-2840289 Scharnhorst Scharnhorst 52.71667 10.28333 P PPLA4 DE 06 00 03351 03351019 0 78 Europe/Berlin 2011-04-25
-2840297 Scharnebeck Scharnebeck Scharnebeck 53.3 10.51667 P PPLA4 DE 06 00 03355 03355033 3275 8 Europe/Berlin 2011-04-25
-2840337 Scharfenstein Scharfenstein 50.7 13.06667 P PPL DE 13 1085 455 Europe/Berlin 2006-01-17
-2840375 Scharfbillig Scharfbillig 49.93233 6.55523 P PPLA4 DE 08 00 07232 07232115 68 360 Europe/Berlin 2011-04-25
-2840393 Scharbeutz Scharbeutz Scharbeutz 54.03333 10.75 P PPLA4 DE 10 00 01055 01055044 12087 254 Europe/Berlin 2011-07-31
-2840403 Schaprode Schaprode 54.51667 13.16667 P PPLA4 DE 12 00 13061 13061036 526 0 Europe/Berlin 2011-04-25
-2840419 Schapen Schapen 52.4 7.56667 P PPLA4 DE 06 00 03454 03454046 2444 38 Europe/Berlin 2011-04-25
-2840476 Schankweiler Schankweiler 49.9 6.38333 P PPLA4 DE 08 00 07232 07232114 198 213 Europe/Berlin 2011-04-25
-2840526 Schallstadt Schallstadt 47.95 7.75 P PPLA4 DE 01 083 08315 08315098 5841 280 Europe/Berlin 2011-04-25
-2840529 Schallodenbach Schallodenbach 49.55 7.71667 P PPLA4 DE 08 00 07335 07335041 942 351 Europe/Berlin 2011-04-25
-2840552 Schallbach Schallbach 47.65 7.63333 P PPLA4 DE 01 083 08336 08336075 698 293 Europe/Berlin 2011-04-25
-2840555 Schalksmühle Schalksmuhle Schalksmuhle,Schalksmühle 51.23333 7.53333 P PPLA4 DE 07 059 05962 05962056 11753 301 Europe/Berlin 2011-07-31
-2840566 Schalkholz Schalkholz Schalkholz 54.2564 9.28551 P PPLA4 DE 10 00 01051 01051100 601 15 Europe/Berlin 2011-07-31
-2840568 Schalkham Schalkham 48.48333 12.41667 P PPLA4 DE 02 092 09274 09274179 898 467 Europe/Berlin 2011-04-25
-2840575 Schalkenmehren Schalkenmehren 50.16667 6.85 P PPLA4 DE 08 00 07233 07233063 606 499 Europe/Berlin 2011-04-25
-2840586 Schalkenbach Schalkenbach 50.5 7.15 P PPLA4 DE 08 00 07131 07131073 878 355 Europe/Berlin 2011-04-25
-2840590 Schalkau Schalkau Schalkau 50.4 11.01667 P PPL DE 15 3367 476 Europe/Berlin 2012-01-18
-2840634 Schäftlarn Schaftlarn 47.98889 11.44338 P PPLA4 DE 02 091 09184 09184142 5281 683 Europe/Berlin 2011-07-31
-2840643 Schafstedt Schafstedt Schafstedt 54.08333 9.3 P PPLA4 DE 10 00 01051 01051099 0 16 Europe/Berlin 2011-04-25
-2840647 Schafstädt Schafstadt Schafstadt,Schafstädt 51.38333 11.76667 P PPL DE 14 2170 149 Europe/Berlin 2012-01-18
-2840732 Schafflund Schafflund Schafflund 54.76667 9.18333 P PPLA4 DE 10 00 01059 01059158 2323 15 Europe/Berlin 2011-04-25
-2840903 Schackendorf Schackendorf 53.96667 10.26667 P PPLA4 DE 10 00 01060 01060070 784 31 Europe/Berlin 2011-07-31
-2840933 Schachtebich Schachtebich Schachtebich 51.4 10.05 P PPLA4 DE 15 00 16061 16061083 260 274 Europe/Berlin 2011-04-25
-2840936 Schacht-Audorf Schacht-Audorf 54.31282 9.71586 P PPLA4 DE 10 00 01058 01058140 4667 10 Europe/Berlin 2011-04-25
-2841027 Schaalby Schaalby Schaalby 54.55 9.63333 P PPLA4 DE 10 00 01059 01059073 1700 22 Europe/Berlin 2011-04-25
-2841039 Schaafheim Schaafheim Schaafheim 49.92417 9.00944 P PPLA4 DE 05 064 06432 06432021 8784 151 Europe/Berlin 2011-04-25
-2841047 Sayda Sayda Sayda 50.71667 13.41667 P PPL DE 13 2235 640 Europe/Berlin 2012-01-18
-2841050 Saxler Saxler 50.13333 6.9 P PPLA4 DE 08 00 07233 07233062 81 427 Europe/Berlin 2011-04-25
-2841061 Sauzin Sauzin 54.03333 13.78333 P PPLA4 DE 12 00 13059 13059088 411 11 Europe/Berlin 2011-04-25
-2841074 Saustrup Saustrup Saustrup 54.66667 9.76667 P PPLA4 DE 10 00 01059 01059072 241 32 Europe/Berlin 2011-04-25
-2841124 Saulgrub Saulgrub 47.66643 11.02469 P PPLA4 DE 02 091 09180 09180129 1664 860 Europe/Berlin 2011-04-25
-2841125 Saulgau Saulgau Bad Saulgau,Saulgau 48.01667 9.5 P PPL DE 01 17911 591 Europe/Berlin 2012-01-18
-2841128 Sauldorf Sauldorf Sauldorf 47.93333 9.1 P PPLA4 DE 01 084 08437 08437123 2501 643 Europe/Berlin 2011-04-25
-2841166 Sauerthal Sauerthal 50.08333 7.81667 P PPLA4 DE 08 00 07141 07141122 0 319 Europe/Berlin 2011-04-25
-2841178 Sauerlach Sauerlach 47.97171 11.65383 P PPLA4 DE 02 091 09184 09184141 5991 619 Europe/Berlin 2011-07-31
-2841204 Sauensiek Sauensiek Sauensiek 53.38333 9.6 P PPLA4 DE 06 00 03359 03359037 2281 39 Europe/Berlin 2011-04-25
-2841290 Satteldorf Satteldorf 49.16953 10.07957 P PPLA4 DE 01 081 08127 08127073 5176 430 Europe/Berlin 2011-04-25
-2841320 Satrup Satrup Satrup 54.7 9.6 P PPLA4 DE 10 00 01059 01059071 3581 33 Europe/Berlin 2011-04-25
-2841321 Satow-Oberhagen Satow-Oberhagen 54 11.88333 P PPL DE 12 5895 56 Europe/Berlin 2006-01-17
-2841333 Saßnitz Sassnitz Sassnitz,Saßnitz 54.51667 13.65 P PPL DE 12 10779 27 Europe/Berlin 2012-01-18
-2841351 Sassenberg Sassenberg Sassenberg 52 8.05 P PPL DE 07 14273 64 Europe/Berlin 2012-01-18
-2841358 Sassen Sassen 50.26667 6.96667 P PPLA4 DE 08 00 07233 07233236 97 550 Europe/Berlin 2011-04-25
-2841374 Sasel Sasel 53.65385 10.11184 P PPLX DE 04 23131 34 Europe/Berlin 2011-08-21
-2841375 Sasbachwalden Sasbachwalden 48.61667 8.13333 P PPLA4 DE 01 083 08317 08317118 2541 316 Europe/Berlin 2011-04-25
-2841380 Sasbach Sasbach 48.63971 8.09375 P PPLA4 DE 01 083 08317 08317116 5599 142 Europe/Berlin 2011-04-25
-2841381 Sasbach Sasbach 48.13837 7.61576 P PPL DE 01 3369 178 Europe/Berlin 2011-09-08
-2841383 Sarzbüttel Sarzbuttel Sarzbuttel,Sarzbüttel 54.11667 9.18333 P PPLA4 DE 10 00 01051 01051098 734 6 Europe/Berlin 2011-04-25
-2841386 Sarstedt Sarstedt Sarstedt 52.23333 9.85 P PPL DE 06 18718 65 Europe/Berlin 2012-01-18
-2841391 Sarow Sarow 53.8 13.1 P PPLA4 DE 12 00 13052 13052067 927 46 Europe/Berlin 2011-04-25
-2841393 Sarnow Sarnow 53.75 13.63333 P PPLA4 DE 12 00 13059 13059087 483 14 Europe/Berlin 2011-04-25
-2841403 Sarmersbach Sarmersbach 50.23333 6.88333 P PPLA4 DE 08 00 07233 07233061 188 547 Europe/Berlin 2011-04-25
-2841406 Sarlhusen Sarlhusen Sarlhusen 54.02284 9.79294 P PPLA4 DE 10 00 01061 01061096 528 25 Europe/Berlin 2011-09-05
-2841417 Sargenroth Sargenroth 49.93333 7.51667 P PPLA4 DE 08 00 07140 07140134 515 436 Europe/Berlin 2011-04-25
-2841457 Sankt Wolfgang Sankt Wolfgang Sankt Wolfgang 48.21667 12.13333 P PPLA4 DE 02 091 09177 09177137 4102 525 Europe/Berlin 2011-04-25
-2841463 Sankt Wendel Sankt Wendel Kreisstadt Sankt Wendel,Sankt Wendel,Sankt-Vendel',Санкт-Вендель 49.46667 7.16667 P PPL DE 09 26904 301 279 Europe/Berlin 2012-01-18
-2841474 Sankt Thomas Sankt Thomas 50.06667 6.6 P PPLA4 DE 08 00 07232 07232113 320 291 Europe/Berlin 2011-04-25
-2841477 Sankt Sebastian Sankt Sebastian 50.41667 7.56667 P PPLA4 DE 08 00 07137 07137222 2508 64 Europe/Berlin 2011-04-25
-2841484 Sankt Peter-Ording Sankt Peter-Ording Sankt Peter-Ording,Sankt Peter-Oring 54.3 8.63333 P PPLA4 DE 10 00 01054 01054113 4092 2 Europe/Berlin 2011-04-25
-2841488 Sankt Peter Sankt Peter Sankt Peter 48.01667 8.03333 P PPL DE 01 2509 720 Europe/Berlin 2012-01-18
-2841509 Sankt Michaelisdonn Sankt Michaelisdonn Saint Michaelisdonn,Sankt Michaelisdonn 53.98333 9.11667 P PPLA4 DE 10 00 01051 01051097 3762 2 Europe/Berlin 2011-04-25
-2841517 Sankt Martin Sankt Martin 49.30028 8.10528 P PPLA4 DE 08 00 07337 07337070 1872 228 Europe/Berlin 2011-04-25
-2841521 Sankt Märgen Sankt Margen Sankt Margen,Sankt Märgen 48 8.1 P PPL DE 01 1850 905 Europe/Berlin 2012-01-18
-2841523 Sankt Margarethen Sankt Margarethen 53.9 9.25 P PPLA4 DE 10 00 01061 01061095 1072 255 Europe/Berlin 2011-04-25
-2841546 Sankt Kilian Sankt Kilian Sankt Kilian 50.53333 10.75 P PPL DE 15 3226 414 Europe/Berlin 2012-01-18
-2841547 Sankt Katharinen Sankt Katharinen 49.86667 7.76667 P PPLA4 DE 08 00 07133 07133088 352 204 Europe/Berlin 2011-04-25
-2841557 Sankt Julian Sankt Julian Sankt Julian,Sankt Julian-Obereisenbach 49.61667 7.51667 P PPLA4 DE 08 00 07336 07336095 1260 224 Europe/Berlin 2011-04-25
-2841573 Sankt Johann Sankt Johann 50.35 7.2 P PPLA4 DE 08 00 07137 07137097 949 443 Europe/Berlin 2011-04-25
-2841574 Sankt Johann Sankt Johann 49.8675 8.01444 P PPLA4 DE 08 00 07339 07339050 811 158 Europe/Berlin 2011-04-25
-2841577 Sankt Johann Sankt Johann 48.45397 9.34396 P PPL DE 01 5181 732 Europe/Berlin 2008-12-24
-2841590 Sankt Ingbert Sankt Ingbert Sankt Ingbert 49.28333 7.11667 P PPL DE 09 38697 234 Europe/Berlin 2012-01-18
-2841609 Sankt Goarshausen Sankt Goarshausen Saint Goarshausen,Sankt Goarshausen 50.15 7.73333 P PPL DE 08 1511 253 Europe/Berlin 2012-01-18
-2841611 Sankt Goar Sankt Goar Sankt Goar 50.15 7.71667 P PPL DE 08 3083 82 Europe/Berlin 2012-01-18
-2841619 Sankt Georgen im Schwarzwald Sankt Georgen im Schwarzwald Sankt Georgen,Sankt Georgen im Schwarzwald 48.13333 8.33333 P PPL DE 01 13636 831 Europe/Berlin 2012-01-18
-2841631 St. Georg St. Georg Sankt Georg 53.55513 10.01231 P PPLX DE 04 12802 12 Europe/Berlin 2011-08-20
-2841636 Sankt Gangloff Sankt Gangloff Sankt Gangloff 50.85 11.9 P PPL DE 15 1322 320 Europe/Berlin 2012-01-18
-2841639 Sankt Egidien Sankt Egidien Saint Egidien,Sankt Egidien 50.78333 12.63333 P PPL DE 13 3709 278 Europe/Berlin 2012-01-18
-2841643 Sankt Blasien Sankt Blasien Saint Blasien,San Blasien,Sankt Blasien,St. Blasien 47.76252 8.12714 P PPL DE 01 083 4111 765 Europe/Berlin 2010-11-15
-2841648 Sankt Augustin Sankt Augustin Sankt Augustin 50.76667 7.18333 P PPL DE 07 56094 68 Europe/Berlin 2012-01-18
-2841663 Sankt Annen Sankt Annen 54.35 9.08333 P PPLA4 DE 10 00 01051 01051096 0 254 Europe/Berlin 2011-04-25
-2841672 Sankt Andreasberg Sankt Andreasberg Sankt Andreasberg 51.71667 10.51667 P PPL DE 06 2037 646 Europe/Berlin 2012-01-18
-2841673 Sankt Aldegund Sankt Aldegund 50.08333 7.13333 P PPLA4 DE 08 00 07135 07135076 688 96 Europe/Berlin 2011-04-25
-2841674 Sankt Alban Sankt Alban 49.68333 7.86667 P PPLA4 DE 08 00 07333 07333066 363 261 Europe/Berlin 2011-04-25
-2841682 Sankelmark Sankelmark Sankelmark 54.71667 9.43333 P PPL DE 10 1358 30 Europe/Berlin 2012-01-18
-2841683 Sanitz Sanitz 54.07757 12.37558 P PPLA4 DE 12 00 13051 13051068 0 52 Europe/Berlin 2011-04-25
-2841684 Alt-Sanitz Alt-Sanitz 53.81363 13.58786 P PPL DE 12 5889 8 Europe/Berlin 2009-09-07
-2841693 Sangerhausen Sangerhausen Sangerhausen 51.46667 11.3 P PPL DE 14 23347 191 Europe/Berlin 2012-01-18
-2841731 Sandstedt Sandstedt 53.36667 8.53333 P PPLA4 DE 06 00 03352 03352049 1808 255 Europe/Berlin 2011-04-25
-2841835 Sandhausen Sandhausen Sandhausen 49.34278 8.65917 P PPLA4 DE 01 082 08226 08226076 14336 109 Europe/Berlin 2011-07-31
-2841874 Sandesneben Sandesneben Sandesneben 53.68333 10.5 P PPLA4 DE 10 00 01053 01053108 1620 46 Europe/Berlin 2011-04-25
-2841876 Sandersleben Sandersleben Sandersleben 51.68333 11.56667 P PPL DE 14 2085 144 Europe/Berlin 2012-01-18
-2841879 Sandersdorf Sandersdorf Sandersdorf 51.63333 12.26667 P PPL DE 14 6580 88 Europe/Berlin 2012-01-18
-2841895 Sande Sande Sande 53.50489 8.01418 P PPLA4 DE 06 00 03455 03455014 9359 2 Europe/Berlin 2011-04-25
-2841910 Sandbostel Sandbostel 53.40933 9.1293 P PPLA4 DE 06 00 03357 03357040 842 9 Europe/Berlin 2011-04-25
-2841935 Sandberg Sandberg 50.35 10 P PPLA4 DE 02 096 09673 09673162 2890 470 Europe/Berlin 2011-04-25
-2842033 Sandau Sandau 52.78968 12.04582 P PPL DE 14 00 1093 31 Europe/Berlin 2010-11-22
-2842047 Sand Sand 50 10.6 P PPL DE 02 3181 222 Europe/Berlin 2006-01-17
-2842059 Samtens Samtens 54.35481 13.29311 P PPLA4 DE 12 00 13061 13061034 2085 5 Europe/Berlin 2011-07-31
-2842060 Samswegen Samswegen 52.26059 11.56174 P PPL DE 14 1939 50 Europe/Berlin 2011-03-25
-2842084 Samerberg Samerberg 47.77654 12.19139 P PPLA4 DE 02 091 09187 09187172 2569 779 Europe/Berlin 2011-07-31
-2842109 Salzweg Salzweg 48.61667 13.48333 P PPLA4 DE 02 092 09275 09275146 6805 454 Europe/Berlin 2011-04-25
-2842112 Salzwedel Salzwedel Salzwedel 52.85 11.15 P PPL DE 14 21058 27 Europe/Berlin 2012-01-18
-2842124 Salzmünde Salzmunde Salzmunde,Salzmünde 51.53333 11.83333 P PPL DE 14 2536 71 Europe/Berlin 2012-01-18
-2842131 Salzkotten Salzkotten 51.6717 8.60092 P PPL DE 07 057 24561 99 Europe/Berlin 2010-11-15
-2842143 Salzhemmendorf Salzhemmendorf 52.067 9.5872 P PPL DE 06 10603 119 Europe/Berlin 2010-08-15
-2842144 Salzhausen Salzhausen 53.23333 10.16667 P PPLA4 DE 06 00 03353 03353030 4406 37 Europe/Berlin 2011-04-25
-2842167 Salzburg Salzburg 50.66667 8.05 P PPLA4 DE 08 00 07143 07143291 238 614 Europe/Berlin 2011-04-25
-2842175 Salzbergen Salzbergen Salzbergen 52.33333 7.35 P PPLA4 DE 06 00 03454 03454045 7602 31 Europe/Berlin 2011-07-31
-2842201 Salz Salz 50.5 7.96667 P PPLA4 DE 08 00 07143 07143290 963 233 Europe/Berlin 2011-04-25
-2842203 Salz Salz 50.3 10.21667 P PPLA4 DE 02 096 09673 09673161 2311 253 Europe/Berlin 2011-04-25
-2842243 Salm Salm 50.15287 6.69059 P PPLA4 DE 08 00 07233 07233060 373 555 Europe/Berlin 2011-04-25
-2842258 Sallgast Sallgast Sallgast 51.58333 13.86667 P PPLA4 DE 11 00 12062 12062425 1827 152 Europe/Berlin 2011-04-25
-2842290 Salgen Salgen 48.13069 10.4789 P PPLA4 DE 02 097 09778 09778190 1459 559 Europe/Berlin 2011-04-25
-2842305 Salem Salem 53.66667 10.83333 P PPLA4 DE 10 00 01053 01053107 561 54 Europe/Berlin 2011-04-25
-2842311 Saldenburg Saldenburg 48.78333 13.35 P PPLA4 DE 02 092 09272 09272142 2040 472 Europe/Berlin 2011-04-25
-2842315 Salching Salching 48.81667 12.56667 P PPLA4 DE 02 092 09278 09278182 2532 347 Europe/Berlin 2011-04-25
-2842331 Salach Salach 48.69198 9.73715 P PPLA4 DE 01 081 08117 08117042 7778 354 Europe/Berlin 2011-04-25
-2842372 Sahms Sahms Sahms 53.53333 10.53333 P PPLA4 DE 10 00 01053 01053106 371 42 Europe/Berlin 2011-04-25
-2842434 Sagard Sagard 54.52556 13.55387 P PPLA4 DE 12 00 13061 13061033 2859 26 Europe/Berlin 2011-04-25
-2842438 Saffig Saffig 50.38333 7.41667 P PPLA4 DE 08 00 07137 07137096 2184 104 Europe/Berlin 2011-04-25
-2842441 Saerbeck Saerbeck 52.17372 7.63395 P PPLA4 DE 07 055 05566 05566080 7027 46 Europe/Berlin 2011-04-25
-2842507 Sachsenkam Sachsenkam 47.80543 11.64396 P PPLA4 DE 02 091 09173 09173141 1251 720 Europe/Berlin 2011-04-25
-2842519 Sachsenhausen Sachsenhausen 51.05 11.36667 P PPLA4 DE 15 00 16071 16071082 393 239 Europe/Berlin 2011-04-25
-2842531 Sachsenhagen Sachsenhagen 52.39734 9.26791 P PPL DE 06 2154 49 Europe/Berlin 2010-08-18
-2842568 Sachsen Sachsen 49.3 10.65 P PPL DE 02 3349 455 Europe/Berlin 2006-01-17
-2842584 Sachau Sachau 52.47421 11.26081 P PPLA4 DE 14 00 15081 15081450 166 59 Europe/Berlin 2011-07-31
-2842621 Saarwellingen Saarwellingen Saarwellingen 49.35 6.81667 P PPL DE 09 00 10044 10044116 13930 201 Europe/Berlin 2012-02-02
-2842632 Saarlouis Saarlouis Saarlouis,Saarluise,Sarrelouis,zaarlui,Саарлуисе,ზაარლუი 49.31667 6.75 P PPL DE 09 38333 181 Europe/Berlin 2012-01-18
-2842638 Saarhölzbach Saarhoelzbach 49.51585 6.60742 P PPL DE 09 00 1737 169 Europe/Berlin 2010-11-22
-2842644 Saarburg Saarburg 49.6 6.55 P PPL DE 08 6222 185 Europe/Berlin 2006-01-17
-2842647 Saarbrücken Saarbrucken Saarbrecken,Saarbrjuken,Saarbrjukken,Saarbrucken,Saarbruecken,Saarbrécken,Saarbrücken,Saarmpryken,Sarbriken,Sarrebruck,sa er bu lu ken,zaruburyukken,Σααρμπρύκεν,Саарбрюкен,Саарбрюккен,Сарбрикен,זארבריקן,ზაარბრიუკენი,ザールブリュッケン,萨尔布吕肯 49.23333 7 P PPLA DE 09 181227 195 Europe/Berlin 2012-01-18
-2842656 Saara Saara 50.93333 12.41667 P PPLA4 DE 15 00 16077 16077056 3199 189 Europe/Berlin 2011-07-31
-2842666 Saalstadt Saalstadt 49.31667 7.55 P PPLA4 DE 08 00 07340 07340041 359 376 Europe/Berlin 2011-04-25
-2842688 Saalfeld Saalfeld Saalfeld,Saalfeld/Saale,Zaal'fel'd,zaruferuto,Заальфельд,ザールフェルト 50.65 11.36667 P PPL DE 15 28023 214 Europe/Berlin 2012-01-18
-2842720 Saal an der Saale Saal an der Saale Saal a. d. Saale,Saal an der Saale 50.31667 10.36667 P PPL DE 02 1595 252 Europe/Berlin 2012-01-18
-2842725 Saal Saal 54.31051 12.49935 P PPLA4 DE 12 00 13057 13057076 1442 3 Europe/Berlin 2011-04-25
-2842728 Saal Saal 48.9 11.93333 P PPL DE 02 5626 346 Europe/Berlin 2006-01-17
-2842785 Rutsweiler an der Lauter Rutsweiler an der Lauter 49.56667 7.61667 P PPLA4 DE 08 00 07336 07336090 390 256 Europe/Berlin 2011-04-25
-2842795 Rüting Ruting 53.78333 11.21667 P PPLA4 DE 12 00 13058 13058091 604 43 Europe/Berlin 2011-04-25
-2842796 Ruthweiler Ruthweiler 49.55 7.36667 P PPLA4 DE 08 00 07336 07336088 537 298 Europe/Berlin 2011-04-25
-2842801 Rüthnick Ruthnick 52.8812 12.99648 P PPLA4 DE 11 00 12068 12068372 536 43 Europe/Berlin 2011-07-31
-2842816 Rüthen Ruthen 51.4909 8.43596 P PPL DE 07 059 11299 376 Europe/Berlin 2010-11-15
-2842824 Rutesheim Rutesheim 48.80808 8.94536 P PPLA4 DE 01 081 08115 08115042 10222 440 Europe/Berlin 2011-04-25
-2842854 Rustenfelde Rustenfelde Rustenfelde 51.4 10 P PPLA4 DE 15 00 16061 16061082 504 342 Europe/Berlin 2011-04-25
-2842861 Rust Rust 48.26667 7.73333 P PPLA4 DE 01 083 08317 08317114 3577 162 Europe/Berlin 2011-04-25
-2842869 Rüssingen Russingen 49.61583 8.08833 P PPLA4 DE 08 00 07333 07333064 508 250 Europe/Berlin 2011-04-25
-2842884 Rüsselsheim Russelsheim Ruesselsheim,Russelsheim,Rüsselsheim 49.9925 8.435 P PPL DE 05 59730 93 Europe/Berlin 2012-01-18
-2842928 Rüscheid Ruscheid 50.53333 7.56667 P PPLA4 DE 08 00 07138 07138066 786 374 Europe/Berlin 2011-04-25
-2842930 Ruschberg Ruschberg 49.61667 7.28333 P PPLA4 DE 08 00 07134 07134075 857 462 Europe/Berlin 2011-04-25
-2842960 Ruppichteroth Ruppichteroth 50.84367 7.48409 P PPLA4 DE 07 053 05382 05382052 10749 169 Europe/Berlin 2011-10-26
-2842964 Ruppertsweiler Ruppertsweiler 49.19707 7.68957 P PPLA4 DE 08 00 07340 07340040 1449 294 Europe/Berlin 2011-04-25
-2842972 Ruppertshofen Ruppertshofen 50.20086 7.80553 P PPLA4 DE 08 00 07141 07141120 402 327 Europe/Berlin 2011-12-29
-2842974 Ruppertshofen Ruppertshofen 48.88275 9.81506 P PPLA4 DE 01 081 08136 08136061 1868 509 Europe/Berlin 2011-04-25
-2842979 Ruppertsecken Ruppertsecken 49.65 7.88333 P PPLA4 DE 08 00 07333 07333065 406 416 Europe/Berlin 2011-04-25
-2842981 Ruppertsberg Ruppertsberg 49.40028 8.19611 P PPLA4 DE 08 00 07332 07332043 1416 123 Europe/Berlin 2011-04-25
-2843042 Runkel Runkel Runkel 50.4 8.16667 P PPL DE 05 9872 119 Europe/Berlin 2012-01-18
-2843054 Runding Runding Runding,Runting 49.21667 12.76667 P PPLA4 DE 02 093 09372 09372155 2336 459 Europe/Berlin 2011-04-25
-2843094 Rümpel Rumpel Rumpel,Rümpel 53.78333 10.35 P PPLA4 DE 10 00 01062 01062065 1289 18 Europe/Berlin 2011-04-25
-2843097 Rumohr Rumohr Rumohr 54.25 10.03333 P PPLA4 DE 10 00 01058 01058139 736 16 Europe/Berlin 2011-04-25
-2843099 Rümmingen Rummingen 47.65 7.65 P PPLA4 DE 01 083 08336 08336073 1494 302 Europe/Berlin 2011-04-25
-2843104 Rümmelsheim Rummelsheim 49.93307 7.85977 P PPLA4 DE 08 00 07133 07133087 1435 186 Europe/Berlin 2011-07-31
-2843145 Rumbach Rumbach 49.0966 7.78765 P PPLA4 DE 08 00 07340 07340039 521 223 Europe/Berlin 2011-08-07
-2843146 Rülzheim Rulzheim 49.16278 8.28583 P PPLA4 DE 08 00 07334 07334025 7917 127 Europe/Berlin 2011-04-25
-2843148 Rullstorf Rullstorf 53.28645 10.52972 P PPLA4 DE 06 00 03355 03355032 1819 22 Europe/Berlin 2011-09-07
-2843166 Rukieten Rukieten 53.89888 12.15483 P PPLA4 DE 12 00 13051 13051067 373 37 Europe/Berlin 2011-04-25
-2843177 Ruhwinkel Ruhwinkel Ruhwinkel 54.1 10.21667 P PPLA4 DE 10 00 01057 01057069 1069 36 Europe/Berlin 2011-04-25
-2843185 Ruhstorf Ruhstorf 48.53333 12.68333 P PPL DE 02 7098 460 Europe/Berlin 2006-01-17
-2843190 Rühstädt Ruhstadt 52.91667 11.86667 P PPLA4 DE 11 00 12070 12070348 606 26 Europe/Berlin 2011-04-25
-2843203 Ruhpolding Ruhpolding Ruhpolding,Rupolting 47.76667 12.65 P PPLA4 DE 02 091 09189 09189140 6419 648 Europe/Berlin 2011-07-31
-2843214 Rühn Ruhn 53.81667 11.93333 P PPLA4 DE 12 00 13053 13053078 706 1 Europe/Berlin 2011-04-25
-2843223 Ruhmannsfelden Ruhmannsfelden Ruemansfelden,Ruhmannsfelden 48.98333 12.98333 P PPL DE 02 2190 530 Europe/Berlin 2012-01-18
-2843256 Ruhland Ruhland 51.46667 13.86667 P PPL DE 11 4083 97 Europe/Berlin 2006-01-17
-2843258 Ruhla Ruhla Ruhla 50.88333 10.36667 P PPL DE 15 6757 596 Europe/Berlin 2012-01-18
-2843272 Rühen Ruhen Ruhen,Rühen 52.4856 10.88642 P PPLA4 DE 06 00 03151 03151024 4452 68 Europe/Berlin 2011-04-28
-2843290 Rügland Rugland Rugland,Rügland 49.4 10.58333 P PPLA4 DE 02 095 09571 09571194 1258 390 Europe/Berlin 2011-04-25
-2843302 Rügge Rugge Rugge,Rügge 54.68333 9.76667 P PPLA4 DE 10 00 01059 01059070 226 45 Europe/Berlin 2011-04-25
-2843318 Rugendorf Rugendorf 50.2 11.46667 P PPLA4 DE 02 094 09477 09477151 1071 392 Europe/Berlin 2011-04-25
-2843355 Rudolstadt Rudolstadt Rudolstadt 50.71667 11.33333 P PPL DE 15 25476 194 Europe/Berlin 2012-01-18
-2843368 Rüdnitz Rudnitz 52.72137 13.62502 P PPLA4 DE 11 00 12060 12060192 1875 61 Europe/Berlin 2011-04-25
-2843395 Rüdesheim am Rhein Rudesheim am Rhein Rudesheim,Rudesheim am Rhein,Rüdesheim,Rüdesheim am Rhein 49.97841 7.92183 P PPL DE 05 064 9921 88 Europe/Berlin 2010-11-15
-2843396 Rüdesheim Rudesheim 49.85 7.81667 P PPLA4 DE 08 00 07133 07133117 2408 144 Europe/Berlin 2011-04-25
-2843399 Ruderting Ruderting 48.65 13.41667 P PPLA4 DE 02 092 09275 09275144 3074 448 Europe/Berlin 2011-04-25
-2843404 Rüdershausen Rudershausen 51.58333 10.26667 P PPLA4 DE 06 00 03152 03152022 996 154 Europe/Berlin 2011-04-25
-2843409 Rudersdorf Rudersdorf 51.1 11.45 P PPLA4 DE 15 00 16068 16068046 370 210 Europe/Berlin 2011-04-25
-2843415 Rudersberg Rudersberg 48.88515 9.52927 P PPLA4 DE 01 081 08119 08119061 11726 280 Europe/Berlin 2011-04-25
-2843431 Ruderatshofen Ruderatshofen 47.81667 10.58333 P PPLA4 DE 02 097 09777 09777167 1709 742 Europe/Berlin 2011-04-25
-2843441 Rüdenau Rudenau 49.71139 9.17917 P PPLA4 DE 02 096 09676 09676153 866 195 Europe/Berlin 2011-04-25
-2843445 Rudelzhausen Rudelzhausen 48.6 11.76667 P PPLA4 DE 02 091 09178 09178122 3114 462 Europe/Berlin 2011-04-25
-2843458 Rüde Rude 54.81667 9.58333 P PPLA4 DE 10 00 01059 01059069 0 27 Europe/Berlin 2011-04-25
-2843464 Rückweiler Ruckweiler 49.58333 7.23333 P PPLA4 DE 08 00 07134 07134074 447 531 Europe/Berlin 2011-04-25
-2843472 Rückholz Ruckholz 47.66667 10.55 P PPLA4 DE 02 097 09777 09777168 835 864 Europe/Berlin 2011-04-25
-2843493 Rückersdorf Ruckersdorf 51.58333 13.56667 P PPLA4 DE 11 00 12062 12062417 1773 95 Europe/Berlin 2011-04-25
-2843495 Rückersdorf Ruckersdorf 50.81667 12.21667 P PPLA4 DE 15 00 16076 16076062 0 340 Europe/Berlin 2011-04-25
-2843497 Rückersdorf Ruckersdorf 49.49757 11.24751 P PPLA4 DE 02 095 09574 09574154 4518 330 Europe/Berlin 2011-07-31
-2843503 Rückeroth Ruckeroth 50.56667 7.75 P PPLA4 DE 08 00 07143 07143064 494 287 Europe/Berlin 2011-04-25
-2843535 Rubkow Rubkow 53.93333 13.71667 P PPLA4 DE 12 00 13059 13059086 755 29 Europe/Berlin 2011-04-25
-2843551 Rüber Ruber 50.3 7.36667 P PPLA4 DE 08 00 07137 07137095 877 223 Europe/Berlin 2011-04-25
-2843553 Rubenow Rubenow 54.1 13.7 P PPLA4 DE 12 00 13059 13059085 0 6 Europe/Berlin 2011-04-25
-2843574 Rübeland Rubeland Rubeland,Rübeland 51.75 10.83333 P PPL DE 14 1201 411 Europe/Berlin 2012-01-18
-2843591 Roxheim Roxheim 49.86667 7.81667 P PPLA4 DE 08 00 07133 07133086 2375 160 Europe/Berlin 2011-04-25
-2843603 Rövershagen Rovershagen Mittelrovershagen,Mittelrövershagen 54.17668 12.24276 P PPLA4 DE 12 00 13051 13051066 2483 12 Europe/Berlin 2011-07-31
-2843617 Retz Retz Retz,Rotz,Rötz 49.35 12.53333 P PPL DE 02 3548 457 Europe/Berlin 2012-01-18
-2843636 Rottweil Rottweil Rottweil,Rotvajl',Ротвайль 48.16783 8.62719 P PPL DE 01 25510 605 Europe/Berlin 2008-12-23
-2843667 Rottleberode Rottleberode Rottleberode 51.51667 10.93333 P PPL DE 14 1599 260 Europe/Berlin 2012-01-18
-2843668 Rottleben Rottleben Rottleben 51.36667 11.05 P PPLA4 DE 15 00 16065 16065062 751 138 Europe/Berlin 2011-04-25
-2843673 Röttingen Rottingen Rottingen,Röttingen 49.51028 9.97111 P PPL DE 02 1679 242 Europe/Berlin 2012-02-02
-2843682 Rotthalmünster Rotthalmunster Minster 48.35825 13.20162 P PPL DE 02 5115 370 Europe/Berlin 2008-07-30
-2843708 Rotterode Rotterode Rotterode 50.71667 10.55 P PPLA4 DE 15 00 16066 16066062 854 638 Europe/Berlin 2011-04-25
-2843724 Rottendorf Rottendorf 49.8 10.03333 P PPLA4 DE 02 096 09679 09679185 5234 249 Europe/Berlin 2011-07-31
-2843728 Rottenburg an der Laaber Rottenburg an der Laaber Rottenburg,Rottenburg an der Laaber 48.7 12.03333 P PPL DE 02 7702 478 Europe/Berlin 2012-01-18
-2843729 Rottenburg Rottenburg 48.47629 8.93528 P PPL DE 01 42721 349 Europe/Berlin 2008-12-23
-2843731 Rottenbuch Rottenbuch Raitenbuch,Rottenbuch 47.73333 10.96667 P PPLA4 DE 02 091 09190 09190145 1771 768 Europe/Berlin 2011-04-25
-2843738 Rottenbach Rottenbach Rottenbach 50.68333 11.16667 P PPLA4 DE 15 00 16073 16073075 2036 312 Europe/Berlin 2011-04-25
-2843741 Röttenbach Rottenbach 49.66429 10.92607 P PPLA4 DE 02 095 09572 09572149 4649 311 Europe/Berlin 2011-04-25
-2843743 Röttenbach Rottenbach 49.15 11.03333 P PPLA4 DE 02 095 09576 09576141 2890 373 Europe/Berlin 2011-04-25
-2843747 Rottenacker Rottenacker 48.23485 9.68956 P PPLA4 DE 01 084 08425 08425104 2192 523 Europe/Berlin 2011-04-25
-2843775 Rottach-Egern Rottach-Egern 47.68966 11.77065 P PPLA4 DE 02 091 09182 09182129 5106 738 Europe/Berlin 2011-07-31
-2843798 Rott Rott 50.63333 7.51667 P PPLA4 DE 08 00 07132 07132097 0 257 Europe/Berlin 2011-04-25
-2843803 Rott Rott 47.92008 12.08771 P PPL DE 02 091 3616 465 Europe/Berlin 2010-11-15
-2843804 Rott Rott 47.9 10.96667 P PPLA4 DE 02 091 09181 09181137 0 679 Europe/Berlin 2011-04-25
-2843810 Rötsweiler-Nockenthal Rotsweiler-Nockenthal 49.71667 7.26667 P PPLA4 DE 08 00 07134 07134072 525 403 Europe/Berlin 2011-04-25
-2843858 Rothselberg Rothselberg 49.55 7.6 P PPLA4 DE 08 00 07336 07336087 726 335 Europe/Berlin 2011-04-25
-2843897 Röthlein Rothlein 49.98333 10.21667 P PPLA4 DE 02 096 09678 09678170 4875 205 Europe/Berlin 2011-04-25
-2843978 Rothenstein Rothenstein 50.85 11.6 P PPLA4 DE 15 00 16074 16074079 1432 180 Europe/Berlin 2011-04-25
-2844008 Rothenklempenow Rothenklempenow 53.51667 14.2 P PPLA4 DE 12 00 13062 13062052 432 8 Europe/Berlin 2011-04-25
-2844042 Rothenfels Rothenfels Rothenfels 49.89056 9.59139 P PPL DE 02 1088 172 Europe/Berlin 2012-01-18
-2844056 Rothenburg ob der Tauber Rothenburg ob der Tauber Rothenburg nad Tauber,Rothenburg ob der Tauber,ローテンブルク・オプ・デア・タウバー 49.38333 10.18333 P PPL DE 02 11106 426 Europe/Berlin 2007-02-18
-2844061 Rothenburg Rothenburg 51.65 11.75 P PPLA4 DE 14 00 15088 15088315 940 103 Europe/Berlin 2011-04-25
-2844062 Rothenburg Rothenburg 51.33333 14.96667 P PPL DE 13 5841 164 Europe/Berlin 2006-01-17
-2844072 Rothenbuch Rothenbuch 49.96528 9.39389 P PPLA4 DE 02 096 09671 09671148 1976 385 Europe/Berlin 2011-04-25
-2844089 Rothenberg Rothenberg 49.49917 8.91917 P PPLA4 DE 05 064 06437 06437014 2515 416 Europe/Berlin 2011-04-25
-2844126 Röthenbach an der Pegnitz Rothenbach an der Pegnitz Rothenbach,Röthenbach 49.48301 11.24116 P PPL DE 02 12224 331 Europe/Berlin 2009-06-25
-2844143 Rothenbach Rothenbach 50.56667 7.88333 P PPLA4 DE 08 00 07143 07143289 921 439 Europe/Berlin 2011-04-25
-2844148 Röthenbach Rothenbach 47.61667 9.98333 P PPL DE 02 1783 724 Europe/Berlin 2006-01-17
-2844163 Rothemühl Rothemuhl 53.6 13.83333 P PPLA4 DE 12 00 13062 13062051 348 30 Europe/Berlin 2011-04-25
-2844245 Rötha Rotha Rotha,Rötha 51.2 12.4 P PPL DE 13 4199 127 Europe/Berlin 2012-01-18
-2844249 Roth Roth 50.75 7.7 P PPLA4 DE 08 00 07132 07132096 1554 241 Europe/Berlin 2011-04-25
-2844256 Roth Roth 50.26667 7.9 P PPLA4 DE 08 00 07141 07141118 221 352 Europe/Berlin 2011-04-25
-2844260 Roth Roth 50.08333 7.45 P PPLA4 DE 08 00 07140 07140131 256 423 Europe/Berlin 2011-04-25
-2844262 Roth Roth 49.93333 7.8 P PPLA4 DE 08 00 07133 07133085 0 291 Europe/Berlin 2011-07-31
-2844265 Roth Roth Rota,Roth,rosu,roto,rwt,Рота,רות,ロス,ロート 49.245 11.09111 P PPL DE 02 25083 340 Europe/Berlin 2012-01-18
-2844274 Rötgesbüttel Rotgesbuttel 52.41667 10.53333 P PPLA4 DE 06 00 03151 03151023 2216 66 Europe/Berlin 2011-04-25
-2844277 Roetgen Roetgen Roetgen,Rotgen,Rötgen 50.65 6.2 P PPLA4 DE 07 053 05334 05334024 8177 400 Europe/Berlin 2011-04-25
-2844421 Rotenhain Rotenhain 50.6 7.88333 P PPLA4 DE 08 00 07143 07143288 572 455 Europe/Berlin 2011-04-25
-2844434 Rotenburg an der Fulda Rotenburg an der Fulda Rotenburg,Rotenburg an der Fulda 50.98333 9.71667 P PPL DE 05 14271 335 Europe/Berlin 2012-01-18
-2844437 Rotenburg Rotenburg Rotenburg,Ротенбург 53.11667 9.4 P PPL DE 06 22139 21 Europe/Berlin 2012-01-18
-2844566 Rot an der Rot Rot an der Rot Rot an der Rot 48.01295 10.03026 P PPLA4 DE 01 084 08426 08426100 0 609 Europe/Berlin 2011-05-31
-2844567 Rot am See Rot am See Rot,Rot am See 49.25 10.01667 P PPLA4 DE 01 081 08127 08127071 5166 422 Europe/Berlin 2011-04-25
-2844579 Rot Rot 47.91667 9.1 P PPL DE 01 4402 638 Europe/Berlin 2006-01-17
-2844588 Rostock Rostock Roshhok,Roshtok,Rostock,Rostok,loseutokeu,rosutokku,rwstwk,Росток,Рошток,Рощок,روستوك,ロストック,로스토크 54.0887 12.14049 P PPL DE 12 00 198293 18 Europe/Berlin 2010-11-22
-2844604 Roßwein Rosswein Rosswein,Roßwein 51.06667 13.18333 P PPL DE 13 7568 214 Europe/Berlin 2012-01-18
-2844616 Roßtal Rosstal 49.39567 10.88848 P PPL DE 02 10052 367 Europe/Berlin 2010-10-17
-2844634 Rossow Rossow 53.47425 14.1255 P PPLA4 DE 12 00 13062 13062050 0 18 Europe/Berlin 2011-04-25
-2844651 Roßleben Rossleben Rossleben,Roßleben 51.3 11.43333 P PPL DE 15 6216 135 Europe/Berlin 2012-01-18
-2844654 Roßlau Rosslau Rosslau,Roßlau 51.88333 12.25 P PPL DE 14 13900 59 Europe/Berlin 2012-01-18
-2844658 Roßla Rossla 51.46331 11.07576 P PPL DE 14 2378 155 Europe/Berlin 2009-03-26
-2844689 Rossin Rossin 53.76667 13.7 P PPLA4 DE 12 00 13059 13059084 187 12 Europe/Berlin 2011-04-25
-2844701 Roßhaupten Rosshaupten 48.42943 10.46911 P PPL DE 02 2189 512 Europe/Berlin 2010-08-16
-2844702 Roßhaupten Rosshaupten 47.65 10.71667 P PPLA4 DE 02 097 09777 09777166 0 819 Europe/Berlin 2011-04-25
-2844753 Roßdorf Rossdorf 50.7 10.21667 P PPLA4 DE 15 00 16066 16066061 716 403 Europe/Berlin 2011-04-25
-2844756 Roßdorf Rossdorf Rossdorf,Roßdorf 49.85972 8.76167 P PPLA4 DE 05 064 06432 06432020 12199 186 Europe/Berlin 2011-07-31
-2844829 Rossbach Rossbach 48.58333 12.95 P PPLL DE 02 2944 400 Europe/Berlin 2006-01-17
-2844836 Roßbach Rossbach 50.61667 7.68333 P PPLA4 DE 08 00 07143 07143287 0 315 Europe/Berlin 2011-04-25
-2844837 Roßbach Rossbach 50.58333 7.41667 P PPLA4 DE 08 00 07138 07138065 937 226 Europe/Berlin 2011-04-25
-2844844 Roßbach Rossbach 48.6 12.93333 P PPLA4 DE 02 092 09277 09277142 0 344 Europe/Berlin 2011-04-25
-2844862 Rösrath Rosrath 50.89559 7.18175 P PPL DE 07 053 26868 89 Europe/Berlin 2010-11-15
-2844880 Roskow Roskow 52.46667 12.73333 P PPLA4 DE 11 00 12069 12069541 1281 28 Europe/Berlin 2011-04-25
-2844883 Rositz Rositz Rositz 51.03333 12.36667 P PPLA4 DE 15 00 16077 16077042 3232 209 Europe/Berlin 2011-07-31
-2844924 Rosenthal Rosenthal Rosenthal 50.96667 8.88333 P PPL DE 05 2209 278 Europe/Berlin 2012-02-02
-2844947 Rosenow Rosenow 53.63333 13.03333 P PPLA4 DE 12 00 13052 13052065 1215 68 Europe/Berlin 2011-04-25
-2844956 Rosenkopf Rosenkopf 49.35 7.43333 P PPLA4 DE 08 00 07340 07340223 329 381 Europe/Berlin 2011-04-25
-2844988 Rosenheim Rosenheim Pons oeni,Rosenheim,Rosnheim,Rozenkhajm,luo sen hai mu,Розенхайм,罗森海姆 47.85637 12.12247 P PPL DE 02 091 60167 448 Europe/Berlin 2010-11-15
-2845027 Rosenfeld Rosenfeld 48.28639 8.72357 P PPL DE 01 6405 630 Europe/Berlin 2008-12-23
-2845033 Rosendorf Rosendorf 50.76667 11.78333 P PPLA4 DE 15 00 16075 16075093 179 384 Europe/Berlin 2011-04-25
-2845035 Rosendahl Rosendahl 51.76667 7.95 P PPLL DE 07 11044 88 Europe/Berlin 2006-01-17
-2845054 Rosenberg Rosenberg 49.45583 9.47306 P PPLA4 DE 01 082 08225 08225082 0 285 Europe/Berlin 2011-04-25
-2845056 Rosenberg Rosenberg 49.01667 10.01667 P PPLA4 DE 01 081 08136 08136060 2656 485 Europe/Berlin 2011-04-25
-2845123 Roseburg Roseburg Roseburg 53.53333 10.63333 P PPLA4 DE 10 00 01053 01053104 494 25 Europe/Berlin 2011-04-25
-2845130 Rosdorf Rosdorf 53.97802 9.72739 P PPLA4 DE 10 00 01061 01061093 401 11 Europe/Berlin 2011-09-05
-2845131 Rosdorf Rosdorf Rosdorf 51.5 9.9 P PPLA4 DE 06 00 03152 03152021 11840 168 Europe/Berlin 2011-07-31
-2845143 Roscheid Roscheid 50.11667 6.18333 P PPLA4 DE 08 00 07232 07232301 68 485 Europe/Berlin 2011-04-25
-2845146 Rosche Rosche 52.98663 10.75184 P PPLA4 DE 06 00 03360 03360018 2157 61 Europe/Berlin 2011-04-25
-2845152 Roschbach Roschbach 49.24611 8.11889 P PPLA4 DE 08 00 07337 07337069 841 168 Europe/Berlin 2011-04-25
-2845160 Rosbach vor der Höhe Rosbach vor der Hohe Rosbach 50.30332 8.68976 P PPL DE 05 064 11741 184 Europe/Berlin 2010-11-15
-2845171 Rosa Rosa 50.71667 10.25 P PPLA4 DE 15 00 16066 16066059 826 365 Europe/Berlin 2011-04-25
-2845175 Rorodt Rorodt 49.76667 7.05 P PPLA4 DE 08 00 07231 07231112 59 461 Europe/Berlin 2011-04-25
-2845209 Ronshausen Ronshausen 50.95 9.85 P PPLA4 DE 05 066 06632 06632017 2409 219 Europe/Berlin 2011-04-25
-2845212 Ronsberg Ronsberg Ronsberg 47.9 10.41667 P PPL DE 02 1675 693 Europe/Berlin 2012-01-18
-2845222 Ronnenberg Ronnenberg 52.31939 9.65544 P PPL DE 06 23416 69 Europe/Berlin 2010-08-19
-2845229 Ronneburg Ronneburg Ronneburg 50.86667 12.18333 P PPL DE 15 5482 293 Europe/Berlin 2012-01-18
-2845258 Rondeshagen Rondeshagen Rondeshagen 53.75 10.63333 P PPLA4 DE 10 00 01053 01053103 895 23 Europe/Berlin 2011-04-25
-2845264 Römstedt Romstedt 53.1 10.65 P PPLA4 DE 06 00 03360 03360017 887 49 Europe/Berlin 2011-04-25
-2845268 Romrod Romrod Romrod 50.71667 9.21667 P PPL DE 05 3073 313 Europe/Berlin 2012-01-18
-2845270 Römnitz Romnitz Romnitz,Römnitz 53.71667 10.76667 P PPLA4 DE 10 00 01053 01053102 79 33 Europe/Berlin 2011-04-25
-2845273 Rommerskirchen Rommerskirchen Rommerskirchen 51.03333 6.68333 P PPLA4 DE 07 051 05162 05162028 12554 74 Europe/Berlin 2011-07-31
-2845275 Rommersheim Rommersheim 50.2 6.45 P PPLA4 DE 08 00 07232 07232300 617 470 Europe/Berlin 2011-04-25
-2845304 Römhild Romhild Romhild,Römhild 50.38333 10.55 P PPL DE 15 1888 305 Europe/Berlin 2012-01-18
-2845371 Rom Rom 53.44472 11.94866 P PPLA4 DE 12 00 13060 13060067 571 62 Europe/Berlin 2011-07-31
-2845383 Rollwitz Rollwitz 53.46667 13.98333 P PPLA4 DE 12 00 13062 13062049 672 54 Europe/Berlin 2011-04-25
-2845389 Rollshausen Rollshausen 51.56667 10.21667 P PPLA4 DE 06 00 03152 03152020 987 160 Europe/Berlin 2011-04-25
-2845433 Röllbach Rollbach 49.77306 9.24611 P PPLA4 DE 02 096 09676 09676151 1719 218 Europe/Berlin 2011-04-25
-2845466 Roklum Roklum 52.06663 10.74085 P PPLA4 DE 06 00 03158 03158025 511 117 Europe/Berlin 2011-05-03
-2845475 Roitzsch Roitzsch Roitzsch 51.58333 12.28333 P PPL DE 14 2650 88 Europe/Berlin 2012-02-02
-2845503 Roigheim Roigheim Roigheim 49.36472 9.34 P PPLA4 DE 01 081 08125 08125084 1462 216 Europe/Berlin 2011-04-25
-2845540 Röhrsen Rohrsen Rohrsen,Röhrsen 52.71667 9.23333 P PPL DE 06 1080 25 Europe/Berlin 2012-02-02
-2845559 Röhrnbach Roehrnbach 48.73859 13.52271 P PPLA4 DE 02 092 09272 09272141 4579 432 Europe/Berlin 2011-07-16
-2845565 Röhrmoos Rohrmoos 48.32966 11.44672 P PPLA4 DE 02 091 09174 09174141 6199 494 Europe/Berlin 2011-07-31
-2845589 Röhrig Rohrig Rohrig,Röhrig 51.33333 10.03333 P PPLA4 DE 15 00 16061 16061077 260 436 Europe/Berlin 2011-04-25
-2845625 Rohrenfels Rohrenfels 48.68333 11.16667 P PPLA4 DE 02 091 09185 09185157 1489 381 Europe/Berlin 2011-04-25
-2845638 Rohrdorf Rohrdorf 48.56667 8.7 P PPLA4 DE 01 082 08235 08235060 1959 439 Europe/Berlin 2011-04-25
-2845641 Rohrdorf Rohrdorf 47.79713 12.1701 P PPLA4 DE 02 091 09187 09187169 5460 476 Europe/Berlin 2011-07-31
-2845652 Rohrberg Rohrberg 52.7 11.03333 P PPLA4 DE 14 00 15081 15081440 613 38 Europe/Berlin 2011-04-25
-2845653 Rohrberg Rohrberg 51.41667 10.01667 P PPLA4 DE 15 00 16061 16061078 245 405 Europe/Berlin 2011-04-25
-2845697 Rohrbach Rohrbach 51.06667 11.4 P PPLA4 DE 15 00 16071 16071081 228 250 Europe/Berlin 2011-04-25
-2845699 Rohrbach Rohrbach 50.6 11.21667 P PPLA4 DE 15 00 16073 16073074 0 469 Europe/Berlin 2011-04-25
-2845704 Rohrbach Rohrbach 49.88333 7.41667 P PPLA4 DE 08 00 07140 07140130 195 422 Europe/Berlin 2011-04-25
-2845707 Rohrbach Rohrbach 49.58333 7.26667 P PPLA4 DE 08 00 07134 07134073 0 441 Europe/Berlin 2011-04-25
-2845714 Rohrbach Rohrbach 49.13667 8.12861 P PPLA4 DE 08 00 07337 07337068 1699 135 Europe/Berlin 2011-04-25
-2845721 Rohrbach Rohrbach Rohrbach 48.61667 11.56667 P PPLA4 DE 02 091 09186 09186149 0 426 Europe/Berlin 2011-04-25
-2845723 Rohrbach Rohrbach 48.28333 12.56667 P PPL DE 02 5513 406 Europe/Berlin 2006-01-17
-2845744 Rohr Rohr 50.58333 10.5 P PPLA4 DE 15 00 16066 16066058 1062 403 Europe/Berlin 2011-04-25
-2845747 Rohr Rohr 49.35 10.88333 P PPLA4 DE 02 095 09576 09576142 3372 394 Europe/Berlin 2011-04-25
-2845750 Rohr Rohr Rohr 48.76667 11.96667 P PPL DE 02 3357 431 Europe/Berlin 2012-01-18
-2845805 Röhl Rohl 49.93333 6.58333 P PPLA4 DE 08 00 07232 07232111 449 348 Europe/Berlin 2011-04-25
-2845823 Rögnitz Rognitz 53.61667 11.03333 P PPLA4 DE 12 00 13058 13058090 236 50 Europe/Berlin 2011-04-25
-2845825 Rögling Rogling 48.85 10.95 P PPLA4 DE 02 097 09779 09779206 669 533 Europe/Berlin 2011-04-25
-2845840 Roggentin Roggentin 54.06667 12.2 P PPLA4 DE 12 00 13051 13051064 2348 32 Europe/Berlin 2011-04-25
-2845842 Roggentin Roggentin 53.33333 12.88333 P PPLA4 DE 12 00 13055 13055058 755 65 Europe/Berlin 2011-04-25
-2845845 Roggenstorf Roggenstorf 53.91667 11.06667 P PPLA4 DE 12 00 13058 13058089 469 23 Europe/Berlin 2011-04-25
-2845858 Roggendorf Roggendorf 53.7 11.01667 P PPLA4 DE 12 00 13058 13058088 1029 52 Europe/Berlin 2011-04-25
-2845863 Roggenburg Roggenburg 48.27588 10.23136 P PPLA4 DE 02 097 09775 09775149 2642 553 Europe/Berlin 2011-04-25
-2845885 Rogätz Rogatz Rogatz,Rogätz 52.31667 11.76667 P PPLA4 DE 14 00 15083 15083440 2283 46 Europe/Berlin 2011-04-25
-2845891 Röfingen Rofingen 48.42442 10.44268 P PPLA4 DE 02 097 09774 09774178 1179 465 Europe/Berlin 2011-07-31
-2845894 Roes Roes 50.24281 7.25836 P PPLA4 DE 08 00 07135 07135075 574 327 Europe/Berlin 2011-04-25
-2845899 Roduchelstorf Roduchelstorf 53.81667 10.98333 P PPLA4 DE 12 00 13058 13058087 256 50 Europe/Berlin 2011-04-25
-2845914 Rodleben Rodleben 51.9 12.2 P PPL DE 14 1673 75 Europe/Berlin 2006-01-17
-2845919 Rödinghausen Rodinghausen 52.25 8.48333 P PPLA4 DE 07 057 05758 05758028 10101 135 Europe/Berlin 2011-04-25
-2845924 Roding Roding Roding 49.19639 12.51861 P PPL DE 02 11406 369 Europe/Berlin 2012-01-18
-2845953 Rodewisch Rodewisch Rodewisch 50.53333 12.41667 P PPL DE 13 7577 457 Europe/Berlin 2012-01-18
-2845968 Rodershausen Rodershausen 49.98333 6.2 P PPLA4 DE 08 00 07232 07232110 202 487 Europe/Berlin 2011-04-25
-2845982 Rödern Rodern 49.95 7.45 P PPLA4 DE 08 00 07140 07140129 201 355 Europe/Berlin 2011-04-25
-2846032 Köln Rodenkirchen Koeln Rodenkirchen Rodenkirchen 50.88333 6.98333 P PPL DE 07 101421 50 Europe/Berlin 2010-05-14
-2846040 Rodenberg Rodenberg Rodenberg 52.31667 9.35 P PPL DE 06 6258 83 Europe/Berlin 2012-01-18
-2846048 Rodenbek Rodenbek Rodenbek 54.28333 10.01667 P PPLA4 DE 10 00 01058 01058138 497 22 Europe/Berlin 2011-04-25
-2846063 Rodenbach Rodenbach Rodenbach 50.15 9.03333 P PPLA4 DE 05 064 06435 06435023 11344 127 Europe/Berlin 2011-07-31
-2846066 Rodenbach Rodenbach 49.57389 8.10556 P PPL DE 08 3485 176 Europe/Berlin 2006-01-17
-2846067 Rodenbach Rodenbach 49.46667 7.65 P PPLA4 DE 08 00 07335 07335040 0 224 Europe/Berlin 2011-04-25
-2846069 Rodenäs Rodenas Rodenas,Rodenäs 54.88333 8.7 P PPLA4 DE 10 00 01054 01054110 460 254 Europe/Berlin 2011-04-25
-2846072 Roden Roden 49.89556 9.62639 P PPLA4 DE 02 096 09677 09677178 1089 253 Europe/Berlin 2011-04-25
-2846084 Rödelsee Rodelsee 49.73333 10.25 P PPLA4 DE 02 096 09675 09675161 1536 249 Europe/Berlin 2011-04-25
-2846089 Rödelmaier Rodelmaier 50.31667 10.28333 P PPLA4 DE 02 096 09673 09673156 947 338 Europe/Berlin 2011-04-25
-2846093 Rödelhausen Rodelhausen 50 7.33333 P PPLA4 DE 08 00 07140 07140128 172 454 Europe/Berlin 2011-04-25
-2846124 Rodder Rodder 50.39473 6.85882 P PPLA4 DE 08 00 07131 07131072 0 505 Europe/Berlin 2011-04-25
-2846158 Rodalben Rodalben 49.2394 7.63962 P PPL DE 08 7638 267 Europe/Berlin 2009-02-11
-2846182 Röckwitz Rockwitz 53.7 13.1 P PPLA4 DE 12 00 13052 13052064 329 72 Europe/Berlin 2011-04-25
-2846186 Rockstedt Rockstedt 51.28333 10.75 P PPLA4 DE 15 00 16065 16065058 263 238 Europe/Berlin 2011-04-25
-2846203 Röckingen Rockingen 49.05 10.56667 P PPLA4 DE 02 095 09571 09571192 789 466 Europe/Berlin 2011-04-25
-2846206 Rockhausen Rockhausen Rockhausen 50.9 11.05 P PPLA4 DE 15 00 16070 16070044 277 314 Europe/Berlin 2011-04-25
-2846209 Rockeskyll Rockeskyll 50.25 6.7 P PPLA4 DE 08 00 07233 07233058 288 432 Europe/Berlin 2011-04-25
-2846229 Rockenhausen Rockenhausen 49.63333 7.83333 P PPL DE 08 5744 295 Europe/Berlin 2006-01-17
-2846235 Rockenberg Rockenberg 50.4305 8.73688 P PPLA4 DE 05 064 06440 06440022 4075 164 Europe/Berlin 2011-04-25
-2846261 Rochlitz Rochlitz Rochlitz 51.05 12.8 P PPL DE 13 6847 166 Europe/Berlin 2012-01-18
-2846267 Rochau Rochau Rochau 52.71667 11.75 P PPLA4 DE 14 00 15090 15090435 715 37 Europe/Berlin 2011-04-25
-2846274 Röblingen am See Roblingen am See Roblingen,Roblingen am See,Röblingen,Röblingen am See 51.45 11.66667 P PPL DE 14 3092 107 Europe/Berlin 2012-01-18
-2846286 Röbel Robel 53.37555 12.60372 P PPL DE 12 5521 67 Europe/Berlin 2009-01-28
-2846307 Riveris Riveris 49.71667 6.76667 P PPLA4 DE 08 00 07235 07235116 395 336 Europe/Berlin 2011-04-25
-2846308 Rivenich Rivenich 49.88333 6.85 P PPLA4 DE 08 00 07231 07231111 736 137 Europe/Berlin 2011-04-25
-2846329 Ritzerow Ritzerow 53.66667 12.96667 P PPLA4 DE 12 00 13052 13052063 509 71 Europe/Berlin 2011-04-25
-2846333 Ritzerau Ritzerau Ritzerau 53.66667 10.56667 P PPLA4 DE 10 00 01053 01053101 316 39 Europe/Berlin 2011-04-25
-2846374 Rittersheim Rittersheim 49.66472 8.05833 P PPLA4 DE 08 00 07333 07333062 202 218 Europe/Berlin 2011-04-25
-2846378 Rittersgrün Rittersgrun 50.46667 12.78333 P PPL DE 13 1889 798 Europe/Berlin 2006-01-17
-2846380 Rittersdorf Rittersdorf 50.81667 11.23333 P PPLA4 DE 15 00 16071 16071079 268 448 Europe/Berlin 2011-04-25
-2846381 Rittersdorf Rittersdorf 50 6.5 P PPLA4 DE 08 00 07232 07232109 1307 291 Europe/Berlin 2011-04-25
-2846398 Ritterhude Ritterhude 53.18289 8.7355 P PPLA4 DE 06 00 03356 03356008 14192 28 Europe/Berlin 2011-07-31
-2846426 Ritschenhausen Ritschenhausen Ritschenhausen 50.51667 10.45 P PPLA4 DE 15 00 16066 16066057 380 483 Europe/Berlin 2011-04-25
-2846500 Rippershausen Rippershausen Rippershausen 50.6 10.35 P PPLA4 DE 15 00 16066 16066056 959 365 Europe/Berlin 2011-04-25
-2846511 Riol Riol Riol 49.8 6.78333 P PPLA4 DE 08 00 07235 07235115 1129 128 Europe/Berlin 2011-04-25
-2846512 Rinzenberg Rinzenberg 49.68333 7.13333 P PPLA4 DE 08 00 07134 07134071 310 610 Europe/Berlin 2011-04-25
-2846523 Rinteln Rinteln Rintel'n,Stadt Rinteln,Ринтельн 52.18604 9.07917 P PPL DE 06 27843 60 Europe/Berlin 2010-01-29
-2846534 Rinnthal Rinnthal 49.21667 7.91667 P PPLA4 DE 08 00 07337 07337067 659 223 Europe/Berlin 2011-04-25
-2846582 Ringstedt Ringstedt 53.56091 8.84871 P PPLA4 DE 06 00 03352 03352048 878 11 Europe/Berlin 2011-07-05
-2846584 Ringsheim Ringsheim 48.24765 7.77823 P PPLA4 DE 01 083 08317 08317113 2112 171 Europe/Berlin 2011-09-08
-2846590 Ringsberg Ringsberg Ringsberg 54.81667 9.6 P PPLA4 DE 10 00 01059 01059157 500 20 Europe/Berlin 2011-04-25
-2846593 Ringleben Ringleben 51.36667 11.21667 P PPLA4 DE 15 00 16065 16065057 1043 127 Europe/Berlin 2011-04-25
-2846594 Ringleben Ringleben 51.1 10.95 P PPLA4 DE 15 00 16068 16068045 587 149 Europe/Berlin 2011-04-25
-2846658 Ringelai Ringelai 48.81667 13.48333 P PPLA4 DE 02 092 09272 09272140 2151 561 Europe/Berlin 2011-04-25
-2846714 Rinchnach Rinchnach 48.94956 13.20102 P PPLA4 DE 02 092 09276 09276139 3348 566 Europe/Berlin 2011-08-22
-2846715 Rimsting Rimsting 47.88078 12.33713 P PPLA4 DE 02 091 09187 09187168 3476 562 Europe/Berlin 2011-04-25
-2846719 Rimsberg Rimsberg 49.65 7.21667 P PPLA4 DE 08 00 07134 07134070 129 460 Europe/Berlin 2011-04-25
-2846722 Rimpar Rimpar Rimpar 49.85639 9.95833 P PPL DE 02 7718 234 Europe/Berlin 2012-01-18
-2846754 Rimbach Rimbach Rimbach 49.625 8.76306 P PPLA4 DE 05 064 06431 06431019 8537 191 Europe/Berlin 2011-04-25
-2846756 Rimbach Rimbach 49.23333 12.88333 P PPLA4 DE 02 093 09372 09372151 2022 587 Europe/Berlin 2011-04-25
-2846759 Rimbach Rimbach 48.46667 12.65 P PPLA4 DE 02 092 09277 09277141 913 462 Europe/Berlin 2011-04-25
-2846790 Rietz Neuendorf Rietz Neuendorf Rietz Neuendorf 52.23333 14.16667 P PPL DE 11 4473 100 Europe/Berlin 2012-02-02
-2846806 Rietschen Rietschen Rietschen 51.4 14.78333 P PPLA4 DE 13 146 14626 14626460 3072 142 Europe/Berlin 2011-04-25
-2846811 Riethnordhausen Riethnordhausen 51.08333 11 P PPLA4 DE 15 00 16068 16068044 1111 159 Europe/Berlin 2011-04-25
-2846815 Riethgen Riethgen 51.25 11.11667 P PPLA4 DE 15 00 16068 16068043 268 172 Europe/Berlin 2011-04-25
-2846843 Rietberg Rietberg Rietberg 51.8 8.43333 P PPL DE 07 28672 76 Europe/Berlin 2012-01-18
-2846847 Riesweiler Riesweiler 49.96667 7.55 P PPLA4 DE 08 00 07140 07140127 716 448 Europe/Berlin 2011-04-25
-2846853 Rieste Rieste Rieste 52.48333 8.01667 P PPLA4 DE 06 00 03459 03459031 3196 38 Europe/Berlin 2011-04-25
-2846854 Riestedt Riestedt Riestadt,Riestedt 51.5 11.36667 P PPL DE 14 1526 190 Europe/Berlin 2012-01-18
-2846865 Riesigk Riesigk Riesigk,Riezigk,Риезигк 51.83333 12.46667 P PPLA4 DE 14 00 15091 15091285 206 62 Europe/Berlin 2011-04-25
-2846922 Rieseby Rieseby Rieseby 54.53333 9.81667 P PPLA4 DE 10 00 01058 01058137 2561 23 Europe/Berlin 2011-04-25
-2846939 Riesa Riesa Riesa 51.3 13.3 P PPL DE 13 37156 113 Europe/Berlin 2012-01-18
-2846946 Riepsdorf Riepsdorf 54.22611 10.97242 P PPLA4 DE 10 00 01055 01055036 1054 12 Europe/Berlin 2011-04-25
-2846947 Rieps Rieps 53.77459 10.86479 P PPLA4 DE 12 00 13058 13058086 380 52 Europe/Berlin 2011-04-25
-2846979 Rieneck Rieneck Rieneck 50.1 9.65 P PPL DE 02 2147 172 Europe/Berlin 2012-01-18
-2847003 Rielasingen-Worblingen Rielasingen-Worblingen 47.73465 8.84013 P PPLA4 DE 01 083 08335 08335100 11953 421 Europe/Berlin 2011-07-31
-2847005 Riekofen Riekofen 48.91667 12.35 P PPLA4 DE 02 093 09375 09375191 819 330 Europe/Berlin 2011-04-25
-2847017 Riegsee Riegsee 47.69867 11.23391 P PPLA4 DE 02 091 09180 09180128 1164 662 Europe/Berlin 2011-04-25
-2847029 Riegenroth Riegenroth 50.05 7.58333 P PPLA4 DE 08 00 07140 07140126 199 382 Europe/Berlin 2011-04-25
-2847033 Riegelsberg Riegelsberg 49.3 6.93333 P PPLA4 DE 09 00 10041 10041517 15647 318 Europe/Berlin 2011-04-25
-2847049 Riegel Riegel Riege,Riegel 48.15111 7.74914 P PPL DE 01 3544 191 Europe/Berlin 2012-02-28
-2847080 Riedlingen Riedlingen 48.15455 9.47558 P PPL DE 01 084 08426 10394 540 Europe/Berlin 2011-12-10
-2847156 Riedhausen Riedhausen 47.9 9.43333 P PPLA4 DE 01 084 08436 08436067 643 614 Europe/Berlin 2011-04-25
-2847195 Riedering Riedering 47.83874 12.20778 P PPLA4 DE 02 091 09187 09187167 5315 489 Europe/Berlin 2011-04-25
-2847198 Riederich Riederich 48.56029 9.26883 P PPLA4 DE 01 084 08415 08415062 4395 324 Europe/Berlin 2011-04-25
-2847210 Rieder Rieder 51.73333 11.16667 P PPLA4 DE 14 00 15085 15085255 2026 193 Europe/Berlin 2011-04-25
-2847227 Riedenheim Riedenheim 49.55722 9.97806 P PPLA4 DE 02 096 09679 09679179 787 307 Europe/Berlin 2011-04-25
-2847231 Riedenburg Riedenburg Riedenburg 48.96667 11.68333 P PPL DE 02 5689 351 Europe/Berlin 2012-01-18
-2847237 Rieden an der Kötz Rieden an der Kotz 48.38499 10.25711 P PPL DE 02 3213 485 Europe/Berlin 2010-08-16
-2847240 Rieden Rieden 50.4 7.18333 P PPLA4 DE 08 00 07137 07137093 1307 450 Europe/Berlin 2011-04-25
-2847242 Rieden Rieden 49.32361 11.94205 P PPL DE 02 2983 365 Europe/Berlin 2009-06-24
-2847247 Rieden Rieden 47.95 10.65 P PPLA4 DE 02 097 09777 09777164 1222 659 Europe/Berlin 2011-04-25
-2847263 Riedelberg Riedelberg 49.18333 7.45 P PPLA4 DE 08 00 07340 07340221 515 280 Europe/Berlin 2011-04-25
-2847271 Riede Riede 52.96667 8.95 P PPLA4 DE 06 00 03361 03361010 2716 6 Europe/Berlin 2011-04-25
-2847319 Ried Ried 48.47698 11.2606 P PPL DE 02 091 2987 450 Europe/Berlin 2010-11-15
-2847323 Ried Ried 48.3 11.05 P PPLA4 DE 02 097 09771 09771160 0 508 Europe/Berlin 2011-04-25
-2847429 Rickling Rickling Rickling 54.01667 10.16667 P PPLA4 DE 10 00 01060 01060068 3328 39 Europe/Berlin 2011-04-25
-2847433 Rickert Rickert Rickert 54.33333 9.66667 P PPLA4 DE 10 00 01058 01058136 1094 11 Europe/Berlin 2011-04-25
-2847442 Rickenbach Rickenbach 47.61895 7.97873 P PPLA4 DE 01 083 08337 08337090 3875 725 Europe/Berlin 2011-04-25
-2847490 Richtenberg Richtenberg 54.20131 12.89409 P PPL DE 12 1429 17 Europe/Berlin 2009-01-25
-2847524 Ribnitz-Damgarten Ribnitz-Damgarten Damgarten,Ribnitz-Damgarten 54.25 12.46667 P PPL DE 12 17152 255 Europe/Berlin 2012-01-18
-2847529 Ribbesbüttel Ribbesbuttel 52.43435 10.50997 P PPLA4 DE 06 00 03151 03151022 2156 55 Europe/Berlin 2011-04-28
-2847547 Rhumspringe Rhumspringe 51.58333 10.3 P PPLA4 DE 06 00 03152 03152019 2050 168 Europe/Berlin 2011-04-25
-2847558 Rhodt unter Rietburg Rhodt unter Rietburg 49.26972 8.10778 P PPLA4 DE 08 00 07337 07337066 1088 209 Europe/Berlin 2011-04-25
-2847574 Rhinow Rhinow 52.75094 12.34194 P PPL DE 11 1923 30 Europe/Berlin 2009-01-30
-2847586 Rheurdt Rheurdt Rheurdt 51.46667 6.46667 P PPLA4 DE 07 051 05154 05154048 6669 42 Europe/Berlin 2011-04-25
-2847588 Rhens Rhens 50.28333 7.61667 P PPL DE 08 3016 79 Europe/Berlin 2006-01-17
-2847595 Rheinzabern Rheinzabern 49.11806 8.27806 P PPLA4 DE 08 00 07334 07334024 4620 113 Europe/Berlin 2011-04-25
-2847612 Rheinsberg Rheinsberg 53.09972 12.89885 P PPL DE 11 00 9113 61 Europe/Berlin 2010-11-22
-2847639 Rheinfelden Rheinfelden Badisch-Rheinfelden,Rajnfel'den,Rheinfelden,Райнфельден 47.56667 7.8 P PPL DE 01 32535 286 Europe/Berlin 2012-01-18
-2847645 Rheine Rheine Rajn,Rheine,Райн 52.28333 7.45 P PPL DE 07 76491 42 Europe/Berlin 2012-01-18
-2847654 Rheinbrohl Rheinbrohl 50.5 7.33333 P PPLA4 DE 08 00 07138 07138063 4017 74 Europe/Berlin 2011-04-25
-2847655 Rheinbreitbach Rheinbreitbach 50.61667 7.23333 P PPLA4 DE 08 00 07138 07138062 4598 94 Europe/Berlin 2011-04-25
-2847658 Rheinböllen Rheinbollen 50.01127 7.67249 P PPLA4 DE 08 00 07140 07140125 4218 396 Europe/Berlin 2011-04-25
-2847662 Rheinberg Rheinberg Rheinberg 51.55 6.6 P PPL DE 07 32188 27 Europe/Berlin 2012-01-18
-2847666 Rheinbach Rheinbach 50.62562 6.94911 P PPL DE 07 053 26262 182 Europe/Berlin 2010-11-15
-2847669 Rheinau Rheinau 48.86667 8.2 P PPL DE 01 10976 116 Europe/Berlin 2006-01-17
-2847686 Rheden Rheden 52.06667 9.78333 P PPLA4 DE 06 00 03254 03254027 1256 78 Europe/Berlin 2011-04-25
-2847688 Rhede Rhede Rhede 53.06667 7.26667 P PPL DE 06 4063 1 Europe/Berlin 2012-02-02
-2847689 Rhede Rhede Rhede 51.83333 6.7 P PPL DE 07 19140 32 Europe/Berlin 2012-01-18
-2847690 Rheda-Wiedenbrück Rheda-Wiedenbruck Red-Videnbrjuk,Ред-Виденбрюк 51.84967 8.30017 P PPL DE 07 46123 72 Europe/Berlin 2010-06-17
-2847695 Rhaunen Rhaunen 49.85 7.35 P PPLA4 DE 08 00 07134 07134069 2287 445 Europe/Berlin 2011-07-31
-2847708 Rhade Rhade 53.32872 9.1135 P PPLA4 DE 06 00 03357 03357038 1101 18 Europe/Berlin 2011-04-25
-2847736 Reutlingen Reutlingen Reutlingen,Rojtlingen,roitoringen,rwytlyngn,Ройтлинген,Ројтлинген,רויטלינגן,ロイトリンゲン 48.49144 9.20427 P PPL DE 01 112627 374 Europe/Berlin 2010-01-29
-2847765 Reuth Reuth 50.61667 12.21667 P PPL DE 13 1083 403 Europe/Berlin 2006-01-17
-2847766 Reuth Reuth 50.46667 11.96667 P PPLA4 DE 13 145 14523 14523350 0 546 Europe/Berlin 2011-04-25
-2847768 Reuth Reuth 50.3 6.48333 P PPLA4 DE 08 00 07233 07233235 224 568 Europe/Berlin 2011-04-25
-2847774 Reuth Reuth 49.98333 11.7 P PPL DE 02 1277 564 Europe/Berlin 2006-01-17
-2847861 Reut Reut 48.6 13.11667 P PPLL DE 02 1793 312 Europe/Berlin 2006-01-17
-2847865 Reut Reut 48.31667 12.93333 P PPLA4 DE 02 092 09277 09277140 0 477 Europe/Berlin 2011-04-25
-2847883 Reußenköge Reussenkoge Reussenkoge,Reußenköge 54.58333 8.93333 P PPLA4 DE 10 00 01054 01054108 372 0 Europe/Berlin 2011-04-25
-2847887 Reußen Reussen 51.5 12.13333 P PPL DE 14 1049 112 Europe/Berlin 2006-01-17
-2847906 Reurieth Reurieth Reurieth 50.45 10.65 P PPLA4 DE 15 00 16069 16069037 963 395 Europe/Berlin 2011-04-25
-2847935 Reudelsterz Reudelsterz 50.31667 7.15 P PPLA4 DE 08 00 07137 07137092 422 423 Europe/Berlin 2011-04-25
-2847938 Retzstadt Retzstadt 49.9125 9.88194 P PPLA4 DE 02 096 09677 09677175 1622 241 Europe/Berlin 2011-04-25
-2847946 Retzow Retzow 52.62478 12.68552 P PPLA4 DE 11 00 12063 12063256 598 35 Europe/Berlin 2011-07-31
-2847971 Rettert Rettert 50.23333 7.93333 P PPLA4 DE 08 00 07141 07141117 496 432 Europe/Berlin 2011-04-25
-2847974 Rettershain Rettershain 50.15 7.83333 P PPLA4 DE 08 00 07141 07141116 349 405 Europe/Berlin 2011-04-25
-2847975 Rettersen Rettersen 50.7 7.5 P PPLA4 DE 08 00 07132 07132094 330 293 Europe/Berlin 2011-04-25
-2847982 Retterath Retterath 50.26667 7.01667 P PPLA4 DE 08 00 07233 07233234 365 457 Europe/Berlin 2011-04-25
-2847985 Rettenberg Rettenberg 47.58333 10.3 P PPLA4 DE 02 097 09780 09780137 4043 871 Europe/Berlin 2011-04-25
-2847993 Rettenbach Rettenbach 49.06667 12.45 P PPLA4 DE 02 093 09372 09372150 1841 590 Europe/Berlin 2011-04-25
-2848001 Rettenbach Rettenbach 48.45881 10.35238 P PPLA4 DE 02 097 09774 09774174 1606 500 Europe/Berlin 2011-04-25
-2848017 Retschow Retschow 54.05 11.86667 P PPLA4 DE 12 00 13051 13051063 1043 90 Europe/Berlin 2011-07-31
-2848029 Rethwisch Rethwisch 53.86667 9.6 P PPLA4 DE 10 00 01061 01061092 631 253 Europe/Berlin 2011-04-25
-2848051 Rethem Rethem Rethem 52.78333 9.38333 P PPL DE 06 2478 21 Europe/Berlin 2012-01-18
-2848054 Retgendorf Retgendorf 53.72922 11.50359 P PPL DE 12 1187 46 Europe/Berlin 2010-04-04
-2848110 Reppenstedt Reppenstedt 53.25 10.35 P PPLA4 DE 06 00 03355 03355031 6699 42 Europe/Berlin 2011-04-25
-2848143 Rentweinsdorf Rentweinsdorf 50.06342 10.79922 P PPL DE 02 096 1637 265 Europe/Berlin 2010-11-15
-2848153 Renthendorf Renthendorf Renthendorf 50.8 11.96667 P PPLA4 DE 15 00 16074 16074077 468 362 Europe/Berlin 2011-04-25
-2848169 Renquishausen Renquishausen 48.08333 8.9 P PPLA4 DE 01 083 08327 08327041 773 892 Europe/Berlin 2011-04-25
-2848175 Renningen Renningen 48.76667 8.93333 P PPL DE 01 17442 404 Europe/Berlin 2006-01-17
-2848181 Rennertshofen Rennertshofen Rennertshofen 48.75 11.06667 P PPL DE 02 5013 394 Europe/Berlin 2012-01-18
-2848187 Rennerod Rennerod 50.61667 8.06667 P PPL DE 08 3891 505 Europe/Berlin 2006-01-17
-2848203 Rennau Rennau 52.29588 10.912 P PPLA4 DE 06 00 03154 03154018 731 113 Europe/Berlin 2011-04-28
-2848207 Renkenberge Renkenberge 52.9 7.38333 P PPLA4 DE 06 00 03454 03454043 717 10 Europe/Berlin 2011-04-25
-2848215 Rengsdorf Rengsdorf 50.5 7.5 P PPLA4 DE 08 00 07138 07138061 2671 269 Europe/Berlin 2011-04-25
-2848243 Rendswühren Rendswuhren Rendswuhren,Rendswühren 54.08333 10.18333 P PPLA4 DE 10 00 01057 01057068 830 44 Europe/Berlin 2011-04-25
-2848245 Rendsburg Rendsburg Rendsborg,Rendsbourg,Rendsburg 54.3 9.66667 P PPL DE 10 28323 10 Europe/Berlin 2012-01-18
-2848251 Renchen Renchen Renchen 48.58333 8.01667 P PPL DE 01 6969 169 Europe/Berlin 2012-01-18
-2848259 Remstädt Remstadt Remstadt,Remstädt 50.98333 10.68333 P PPLA4 DE 15 00 16067 16067056 998 270 Europe/Berlin 2011-04-25
-2848269 Remse Remse 50.85 12.56667 P PPLA4 DE 13 145 14524 14524260 1956 254 Europe/Berlin 2011-04-25
-2848273 Remscheid Remscheid Remscheid,Remshajd,remushaito,Ремшайд,レムシャイト 51.18333 7.2 P PPL DE 07 117118 283 Europe/Berlin 2012-01-18
-2848277 Remptendorf Remptendorf Remptendorf 50.53333 11.65 P PPLA4 DE 15 00 16075 16075134 4187 522 Europe/Berlin 2011-04-25
-2848302 Remmels Remmels Remmels 54.11667 9.65 P PPLA4 DE 10 00 01058 01058134 432 41 Europe/Berlin 2011-04-25
-2848308 Remlingen Remlingen 52.11367 10.67408 P PPLA4 DE 06 00 03158 03158024 2065 137 Europe/Berlin 2011-04-25
-2848309 Remlingen Remlingen Remlingen 49.80472 9.69444 P PPL DE 02 1543 262 Europe/Berlin 2012-02-02
-2848335 Remagen Remagen Remagen 50.57879 7.22703 P PPL DE 08 16280 65 Europe/Berlin 2011-07-28
-2848337 Relsberg Relsberg 49.6 7.66667 P PPLA4 DE 08 00 07336 07336086 214 365 Europe/Berlin 2011-07-31
-2848340 Rellingen Rellingen Rellingen 53.65 9.81667 P PPLA4 DE 10 00 01056 01056043 13707 6 Europe/Berlin 2011-07-31
-2848353 Reitzenhain Reitzenhain 50.15 7.78333 P PPLA4 DE 08 00 07141 07141115 362 307 Europe/Berlin 2011-04-25
-2848364 Reitwein Reitwein 52.50091 14.58169 P PPLA4 DE 11 00 12064 12064420 531 16 Europe/Berlin 2011-04-25
-2848382 Reit im Winkl Reit im Winkl 47.67729 12.47086 P PPLA4 DE 02 091 09189 09189139 2584 692 Europe/Berlin 2011-07-31
-2848543 Reiskirchen Reiskirchen Reiskirchen 50.6 8.83333 P PPLA4 DE 05 065 06531 06531016 10734 228 Europe/Berlin 2011-07-31
-2848591 Reisdorf Reisdorf 51.1 11.56667 P PPLA4 DE 15 00 16071 16071078 328 148 Europe/Berlin 2011-04-25
-2848606 Reischach Reischach 48.29073 12.7262 P PPLA4 DE 02 091 09171 09171129 2581 418 Europe/Berlin 2011-07-31
-2848621 Reisbach Reisbach Reisbach 48.56667 12.63333 P PPL DE 02 7610 416 Europe/Berlin 2012-02-02
-2848665 Reipoltskirchen Reipoltskirchen 49.63333 7.66667 P PPLA4 DE 08 00 07336 07336085 418 226 Europe/Berlin 2011-04-25
-2848673 Reipeldingen Reipeldingen 50.08333 6.18333 P PPLA4 DE 08 00 07232 07232298 87 505 Europe/Berlin 2011-04-25
-2848689 Reinstorf Reinstorf 53.23445 10.57323 P PPLA4 DE 06 00 03355 03355030 1338 51 Europe/Berlin 2011-03-14
-2848699 Reinstädt Reinstadt Reinstadt,Reinstädt 50.8093 11.47428 P PPLA4 DE 15 00 16074 16074076 579 253 Europe/Berlin 2011-07-31
-2848710 Reinsfeld Reinsfeld 49.68333 6.88333 P PPLA4 DE 08 00 07235 07235114 2341 503 Europe/Berlin 2011-04-25
-2848722 Reinsdorf Reinsdorf 51.33333 11.26667 P PPLA4 DE 15 00 16065 16065056 0 134 Europe/Berlin 2011-04-25
-2848725 Reinsdorf Reinsdorf 50.7 12.58333 P PPLA4 DE 13 145 14524 14524250 8907 402 Europe/Berlin 2011-04-25
-2848729 Reinsbüttel Reinsbuttel Reinsbuttel,Reinsbüttel 54.18333 8.91667 P PPLA4 DE 10 00 01051 01051093 416 1 Europe/Berlin 2011-04-25
-2848737 Reinsberg Reinsberg Reinsberg 51 13.36667 P PPLA4 DE 13 145 14522 14522480 3273 331 Europe/Berlin 2011-04-25
-2848756 Berlin Reinickendorf Berlin Reinickendorf Reinickendorf 52.56667 13.33333 P PPLX DE 16 241756 42 Europe/Berlin 2010-05-14
-2848757 Reinholterode Reinholterode Rengerode,Rheinholterode [< 1935] 51.4219 10.19428 P PPLA4 DE 15 00 16061 16061076 809 323 Europe/Berlin 2011-03-15
-2848762 Reinheim Reinheim Reinheim 49.82694 8.83611 P PPL DE 05 17841 161 Europe/Berlin 2012-01-18
-2848779 Reinhardtsgrimma Reinhardtsgrimma Reinhardtsgrimma 50.9 13.75 P PPL DE 13 3094 338 Europe/Berlin 2012-01-18
-2848811 Reinfeld Reinfeld Reinfeld 53.83333 10.48333 P PPL DE 10 8340 7 Europe/Berlin 2012-01-18
-2848841 Reinberg Reinberg 53.68333 13.15 P PPL DE 12 1123 48 Europe/Berlin 2006-01-17
-2848845 Reinbek Reinbek Reinbek 53.51667 10.25 P PPL DE 10 25261 42 Europe/Berlin 2012-01-18
-2848851 Reimlingen Reimlingen 48.81667 10.51667 P PPLA4 DE 02 097 09779 09779203 1345 449 Europe/Berlin 2011-04-25
-2848855 Reimershagen Reimershagen 53.672 12.17594 P PPLA4 DE 12 00 13053 13053075 526 64 Europe/Berlin 2011-04-25
-2848861 Reimerath Reimerath 50.3 6.96667 P PPLA4 DE 08 00 07233 07233233 71 542 Europe/Berlin 2011-04-25
-2848867 Reilingen Reilingen 49.29833 8.56417 P PPLA4 DE 01 082 08226 08226068 7022 102 Europe/Berlin 2011-04-25
-2848872 Reil Reil 50.01667 7.11667 P PPLA4 DE 08 00 07231 07231110 1126 134 Europe/Berlin 2011-04-25
-2848914 Reifferscheid Reifferscheid 50.40529 6.88499 P PPLA4 DE 08 00 07131 07131069 609 518 Europe/Berlin 2011-04-25
-2848917 Reiffelbach Reiffelbach 49.68333 7.68333 P PPLA4 DE 08 00 07133 07133084 262 278 Europe/Berlin 2011-04-25
-2848918 Reiff Reiff 50.1 6.2 P PPLA4 DE 08 00 07232 07232297 57 449 Europe/Berlin 2011-04-25
-2848922 Reiferscheid Reiferscheid 50.65 7.55 P PPLA4 DE 08 00 07132 07132093 389 237 Europe/Berlin 2011-04-25
-2848933 Reifenberg Reifenberg 49.28333 7.5 P PPLA4 DE 08 00 07340 07340220 840 313 Europe/Berlin 2011-04-25
-2848954 Reidenhausen Reidenhausen 50.05 7.31667 P PPLA4 DE 08 00 07135 07135074 211 441 Europe/Berlin 2011-04-25
-2848962 Reichweiler Reichweiler 49.53333 7.28333 P PPLA4 DE 08 00 07336 07336084 565 364 Europe/Berlin 2011-04-25
-2848976 Reichsthal Reichsthal 49.6 7.73333 P PPLA4 DE 08 00 07333 07333202 104 384 Europe/Berlin 2011-04-25
-2848994 Reichmannsdorf Reichmannsdorf 50.55 11.23333 P PPLA4 DE 15 00 16073 16073068 918 717 Europe/Berlin 2011-04-25
-2849001 Reichling Reichling 47.91667 10.93333 P PPLA4 DE 02 091 09181 09181135 1662 701 Europe/Berlin 2011-04-25
-2849017 Reichertshofen Reichertshofen Reichertzhofen 48.65775 11.46612 P PPL DE 02 7298 383 Europe/Berlin 2009-01-21
-2849019 Reichertsheim Reichertsheim 48.2 12.28333 P PPLA4 DE 02 091 09183 09183140 1662 526 Europe/Berlin 2011-04-25
-2849023 Reichertshausen Reichertshausen 48.46667 11.51667 P PPLA4 DE 02 091 09186 09186146 0 460 Europe/Berlin 2011-04-25
-2849025 Reichertshausen Reichertshausen 47.89882 11.55843 P PPL DE 02 091 4986 698 Europe/Berlin 2010-11-15
-2849047 Reichersbeuern Reichersbeuern Reichersbeuern,Reichersbeuren 47.76667 11.63333 P PPLA4 DE 02 091 09173 09173140 2142 715 Europe/Berlin 2011-04-25
-2849052 Reichenwalde Reichenwalde 52.26667 14 P PPLA4 DE 11 00 12067 12067413 1123 67 Europe/Berlin 2011-07-31
-2849062 Reichenschwand Reichenschwand 49.51384 11.37274 P PPLA4 DE 02 095 09574 09574150 2295 342 Europe/Berlin 2011-07-31
-2849092 Reichenberg Reichenberg 50.15 7.76667 P PPLA4 DE 08 00 07141 07141114 231 299 Europe/Berlin 2011-04-25
-2849093 Reichenberg Reichenberg Reichenberg 49.73167 9.91833 P PPL DE 02 4004 247 Europe/Berlin 2012-02-02
-2849102 Reichenbach-Steegen Reichenbach-Steegen 49.5 7.55 P PPLA4 DE 08 00 07335 07335501 1474 340 Europe/Berlin 2011-04-25
-2849118 Reichenbach an der Fils Reichenbach an der Fils 48.71011 9.46429 P PPLA4 DE 01 081 08116 08116058 8046 261 Europe/Berlin 2011-07-31
-2849119 Reichenbach am Heuberg Reichenbach am Heuberg 48.13333 8.85 P PPLA4 DE 01 083 08327 08327040 0 948 Europe/Berlin 2011-04-25
-2849145 Reichenbach Reichenbach Reichenbach 51.15 14.8 P PPL DE 13 4422 249 Europe/Berlin 2012-01-18
-2849152 Reichenbach Reichenbach 50.86667 11.88333 P PPLA4 DE 15 00 16074 16074075 0 336 Europe/Berlin 2011-04-25
-2849156 Reichenbach/Vogtland Reichenbach/Vogtland Reichenbach,Reichenbach/Vogtland,Stadt Reichenbach/Vogtland 50.61667 12.3 P PPL DE 13 22530 385 Europe/Berlin 2012-01-18
-2849158 Reichenbach Reichenbach 50.41667 11.41667 P PPLA4 DE 02 094 09476 09476166 0 621 Europe/Berlin 2011-04-25
-2849167 Reichenbach Reichenbach 49.65 7.28333 P PPLA4 DE 08 00 07134 07134068 675 423 Europe/Berlin 2011-04-25
-2849170 Reichenbach Reichenbach Reichenbach,Richenbach 49.18333 12.35 P PPLA4 DE 02 093 09372 09372149 1178 372 Europe/Berlin 2011-04-25
-2849197 Reichelsheim Reichelsheim 50.35 8.86667 P PPL DE 05 6814 131 Europe/Berlin 2006-01-17
-2849198 Reichelsheim Reichelsheim 49.715 8.84306 P PPL DE 05 9036 215 Europe/Berlin 2006-01-17
-2849209 Reichartshausen Reichartshausen 49.355 8.94528 P PPLA4 DE 01 082 08226 08226066 1926 224 Europe/Berlin 2011-04-25
-2849211 Reichardtswerben Reichardtswerben Reichardtswerben 51.25 11.95 P PPL DE 14 1298 142 Europe/Berlin 2012-01-18
-2849215 Reich Reich 50 7.43333 P PPLA4 DE 08 00 07140 07140123 374 415 Europe/Berlin 2011-04-25
-2849232 Rehweiler Rehweiler 49.48333 7.43333 P PPLA4 DE 08 00 07336 07336082 462 251 Europe/Berlin 2011-04-25
-2849238 Rehsen Rehsen Rehsen 51.83333 12.5 P PPLA4 DE 14 00 15091 15091280 271 62 Europe/Berlin 2011-04-25
-2849249 Rehren Rehren 52.23333 9.23333 P PPLA4 DE 06 00 03257 03257003 0 154 Europe/Berlin 2011-03-19
-2849263 Rehna Rehna Rehna 53.78333 11.05 P PPL DE 12 2897 23 Europe/Berlin 2012-02-02
-2849273 Rehm-Flehde-Bargen Rehm-Flehde-Bargen Rehm-Flehde-Bargen 54.28333 9.01667 P PPLA4 DE 10 00 01051 01051092 619 255 Europe/Berlin 2011-04-25
-2849296 Rehlingen Rehlingen 53.10572 10.22092 P PPLA4 DE 06 00 03355 03355029 730 51 Europe/Berlin 2011-08-30
-2849300 Rehling Rehling 48.48333 10.93333 P PPLA4 DE 02 097 09771 09771158 2381 502 Europe/Berlin 2011-04-25
-2849320 Rehhorst Rehhorst Rehhorst 53.88333 10.46667 P PPLA4 DE 10 00 01062 01062059 0 63 Europe/Berlin 2011-04-25
-2849347 Rehfelde Rehfelde 52.51667 13.9 P PPLA4 DE 11 00 12064 12064408 4600 57 Europe/Berlin 2011-07-31
-2849355 Reher Reher 54.06667 9.58333 P PPLA4 DE 10 00 01061 01061091 816 26 Europe/Berlin 2011-04-25
-2849364 Rehe Rehe 50.63333 8.11667 P PPLA4 DE 08 00 07143 07143285 1013 541 Europe/Berlin 2011-04-25
-2849369 Rehden Rehden 52.61024 8.48093 P PPLA4 DE 06 00 03251 03251030 1790 44 Europe/Berlin 2011-04-25
-2849371 Rehburg-Loccum Rehburg-Loccum Rehburg-Loccum 52.46667 9.2 P PPL DE 06 10894 43 Europe/Berlin 2012-01-18
-2849386 Rehborn Rehborn 49.73333 7.68333 P PPLA4 DE 08 00 07133 07133083 790 171 Europe/Berlin 2011-04-25
-2849443 Rehbach Rehbach 49.85 7.63333 P PPLA4 DE 08 00 07133 07133082 36 376 Europe/Berlin 2011-04-25
-2849446 Rehau Rehau Rehau 50.25 12.03333 P PPL DE 02 10058 523 Europe/Berlin 2012-01-18
-2849455 Regnitzlosau Regnitzlosau Regnitzlosau 50.3 12.05 P PPLA4 DE 02 094 09475 09475161 2648 518 Europe/Berlin 2011-04-25
-2849464 Regis-Breitingen Regis-Breitingen Breitingen Regis,Regis-Breitingen 51.08333 12.45 P PPL DE 13 4185 145 Europe/Berlin 2012-01-18
-2849467 Regesbostel Regesbostel 53.38333 9.65 P PPLA4 DE 06 00 03353 03353028 1063 45 Europe/Berlin 2011-04-25
-2849476 Regenstauf Regenstauf Regenstauf 49.12167 12.12917 P PPL DE 02 14999 349 Europe/Berlin 2012-01-18
-2849483 Regensburg Regensburg Ratisbon,Ratisbona,Ratisbonne,Ratyzbona,Regensburg,Regensburgo,Regenzburg,Rengschburg,Rezno,regensuburuku,rgnsbwrg,Řezno,Регензбург,Регенсбург,Реґенсбурґ,רגנסבורג,レーゲンスブルク 49.015 12.09556 P PPLA2 DE 02 093 129151 348 Europe/Berlin 2010-11-15
-2849495 Regen Regen Regen 48.96667 13.13333 P PPL DE 02 12296 554 Europe/Berlin 2012-01-18
-2849528 Reeßum Reessum 53.13333 9.21667 P PPLA4 DE 06 00 03357 03357037 1778 32 Europe/Berlin 2011-04-25
-2849541 Reesdorf Reesdorf 54.18333 10.05 P PPLA4 DE 10 00 01058 01058133 153 33 Europe/Berlin 2011-04-25
-2849548 Rees Rees Rees 51.76667 6.4 P PPL DE 07 22544 18 Europe/Berlin 2012-01-18
-2849566 Redwitz an der Rodach Redwitz an der Rodach Redwitz an der Rodach 50.16667 11.2 P PPL DE 02 3392 283 Europe/Berlin 2012-01-18
-2849568 Rednitzhembach Rednitzhembach 49.30095 11.07997 P PPLA4 DE 02 095 09576 09576137 7034 326 Europe/Berlin 2011-07-31
-2849601 Redefin Redefin 53.35 11.2 P PPLA4 DE 12 00 13054 13054092 553 14 Europe/Berlin 2011-04-25
-2849624 Reddelich Reddelich 54.08333 11.85 P PPLA4 DE 12 00 13051 13051059 896 64 Europe/Berlin 2011-04-25
-2849647 Recklinghausen Recklinghausen Recklinghausen,Reklingkhauzen,Riaekelkusen,Riäkelkusen,Реклингхаузен 51.61667 7.2 P PPL DE 07 122438 76 Europe/Berlin 2012-01-18
-2849656 Reckershausen Reckershausen 49.98333 7.4 P PPLA4 DE 08 00 07140 07140122 402 426 Europe/Berlin 2011-04-25
-2849667 Reckenroth Reckenroth 50.21667 8.01667 P PPLA4 DE 08 00 07141 07141113 191 413 Europe/Berlin 2011-04-25
-2849674 Reckendorf Reckendorf 50.01667 10.83333 P PPLA4 DE 02 094 09471 09471175 0 255 Europe/Berlin 2011-04-25
-2849689 Recke Recke 52.38333 7.71667 P PPLA4 DE 07 055 05566 05566072 11800 48 Europe/Berlin 2011-04-25
-2849694 Rechtsupweg Rechtsupweg 53.53333 7.33333 P PPLA4 DE 06 00 03452 03452022 2121 2 Europe/Berlin 2011-07-31
-2849698 Rechtmehring Rechtmehring 48.11667 12.16667 P PPLA4 DE 02 091 09183 09183139 1772 508 Europe/Berlin 2011-04-25
-2849705 Rechtenstein Rechtenstein 48.24077 9.54592 P PPLA4 DE 01 084 08425 08425098 300 529 Europe/Berlin 2011-04-25
-2849710 Rechtenbach Rechtenbach 49.98306 9.50833 P PPLA4 DE 02 096 09677 09677172 1046 345 Europe/Berlin 2011-04-25
-2849717 Rechlin Rechlin 53.33549 12.72543 P PPLA4 DE 12 00 13056 13056056 2357 67 Europe/Berlin 2011-07-31
-2849727 Rechenberg-Bienenmühle Rechenberg-Bienenmuhle 50.73333 13.53333 P PPLA4 DE 13 145 14522 14522470 2506 630 Europe/Berlin 2011-04-25
-2849740 Rechberghausen Rechberghausen 48.7308 9.64419 P PPLA4 DE 01 081 08117 08117038 5557 330 Europe/Berlin 2011-04-25
-2849754 Rech Rech 50.51667 7.03333 P PPLA4 DE 08 00 07131 07131068 580 196 Europe/Berlin 2011-04-25
-2849783 Rayerschied Rayerschied 50.01667 7.58333 P PPLA4 DE 08 00 07140 07140121 123 388 Europe/Berlin 2011-04-25
-2849789 Raversbeuren Raversbeuren 49.95 7.23333 P PPLA4 DE 08 00 07140 07140120 177 447 Europe/Berlin 2011-04-25
-2849802 Ravensburg Ravensburg Ravensburg,Равенсбург 47.78333 9.61667 P PPL DE 01 48825 457 Europe/Berlin 2012-01-18
-2849816 Ravengiersburg Ravengiersburg 49.93333 7.48333 P PPLA4 DE 08 00 07140 07140119 508 305 Europe/Berlin 2011-04-25
-2849854 Rausdorf Rausdorf 53.58333 10.31667 P PPLA4 DE 10 00 01062 01062058 240 54 Europe/Berlin 2011-04-25
-2849855 Rausdorf Rausdorf 50.86667 11.68333 P PPLA4 DE 15 00 16074 16074074 210 197 Europe/Berlin 2011-04-25
-2849857 Rauschwitz Rauschwitz 50.96667 11.8 P PPLA4 DE 15 00 16074 16074073 259 288 Europe/Berlin 2011-04-25
-2849875 Rauschenberg Rauschenberg Rauschenberg 50.88333 8.91667 P PPL DE 05 4790 255 Europe/Berlin 2012-02-02
-2849913 Raunheim Raunheim Raunheim 50.01667 8.45 P PPL DE 05 13622 89 Europe/Berlin 2012-01-18
-2849932 Raumbach Raumbach 49.71667 7.65 P PPLA4 DE 08 00 07133 07133081 470 299 Europe/Berlin 2011-04-25
-2850056 Rauenberg Rauenberg Rauenberg 49.26972 8.70417 P PPL DE 01 7411 129 Europe/Berlin 2012-01-18
-2850058 Rauen Rauen 52.33333 14.01667 P PPLA4 DE 11 00 12067 12067408 1901 69 Europe/Berlin 2011-04-25
-2850067 Rauda Rauda Rauda 50.95 11.93333 P PPLA4 DE 15 00 16074 16074072 357 218 Europe/Berlin 2011-04-25
-2850085 Raubling Raubling 47.7905 12.11088 P PPLA4 DE 02 091 09187 09187165 11382 460 Europe/Berlin 2011-04-25
-2850098 Raubach Raubach 50.58333 7.61667 P PPLA4 DE 08 00 07138 07138059 1944 275 Europe/Berlin 2011-04-25
-2850104 Rätzlingen Ratzlingen 52.97583 10.67545 P PPLA4 DE 06 00 03360 03360016 503 62 Europe/Berlin 2011-07-31
-2850114 Ratzert Ratzert 50.65 7.61667 P PPLA4 DE 08 00 07138 07138058 240 285 Europe/Berlin 2011-04-25
-2850132 Ratzeburg Ratzeburg Ratzeburg 53.7 10.76667 P PPL DE 10 13623 6 Europe/Berlin 2012-01-18
-2850141 Rattiszell Rattiszell 49.03333 12.66667 P PPLA4 DE 02 092 09278 09278179 1412 413 Europe/Berlin 2011-04-25
-2850149 Rattenkirchen Rattenkirchen 48.24205 12.31507 P PPLA4 DE 02 091 09183 09183138 946 481 Europe/Berlin 2011-04-25
-2850153 Rattenberg Rattenberg 49.08612 12.74912 P PPLA4 DE 02 092 09278 09278178 1841 541 Europe/Berlin 2011-04-25
-2850160 Rattelsdorf Rattelsdorf 50.81667 11.76667 P PPLA4 DE 15 00 16074 16074071 85 325 Europe/Berlin 2011-04-25
-2850161 Rattelsdorf Rattelsdorf 50.01502 10.88857 P PPL DE 02 4550 259 Europe/Berlin 2010-09-02
-2850165 Ratshausen Ratshausen 48.19373 8.7952 P PPLA4 DE 01 084 08417 08417052 835 675 Europe/Berlin 2011-04-25
-2850174 Ratingen Ratingen Ratingen,Ратинген 51.29724 6.84929 P PPL DE 07 051 91606 64 Europe/Berlin 2010-11-15
-2850176 Rathsweiler Rathsweiler 49.6 7.46667 P PPLA4 DE 08 00 07336 07336081 192 218 Europe/Berlin 2011-04-25
-2850182 Rathskirchen Rathskirchen 49.61667 7.71667 P PPLA4 DE 08 00 07333 07333201 219 291 Europe/Berlin 2011-04-25
-2850195 Rathmannsdorf Rathmannsdorf 50.92993 14.14224 P PPLA4 DE 13 146 14628 14628320 1155 237 Europe/Berlin 2011-07-31
-2850203 Rathjensdorf Rathjensdorf 54.18333 10.43333 P PPLA4 DE 10 00 01057 01057067 496 60 Europe/Berlin 2011-04-25
-2850213 Rathenow Rathenow Rathenow 52.60659 12.33696 P PPL DE 11 27115 31 Europe/Berlin 2011-11-28
-2850235 Ratekau Ratekau Ratekau 53.95 10.73333 P PPLA4 DE 10 00 01055 01055035 15921 17 Europe/Berlin 2011-04-25
-2850238 Rastow Rastow 53.45709 11.43145 P PPLA4 DE 12 00 13054 13054091 1618 41 Europe/Berlin 2011-04-25
-2850242 Rastorf Rastorf 54.26667 10.28333 P PPLA4 DE 10 00 01057 01057066 879 28 Europe/Berlin 2011-04-25
-2850248 Rastenberg Rastenberg Rastenberg 51.18333 11.41667 P PPL DE 15 2892 268 Europe/Berlin 2012-01-18
-2850253 Rastede Rastede Rastede 53.25 8.2 P PPLA4 DE 06 00 03451 03451005 20046 18 Europe/Berlin 2011-04-25
-2850254 Rastdorf Rastdorf 52.9 7.7 P PPLA4 DE 06 00 03454 03454042 967 32 Europe/Berlin 2011-04-25
-2850257 Rastatt Rastatt Rastatt,rashtat,rashtatt,rashutatto,Раштат,Раштатт,ラシュタット 48.85 8.2 P PPL DE 01 47906 121 Europe/Berlin 2012-01-18
-2850266 Raßnitz Rassnitz 51.39085 12.09406 P PPL DE 14 1097 94 Europe/Berlin 2011-03-30
-2850293 Rasdorf Rasdorf 50.71667 9.9 P PPLA4 DE 05 066 06631 06631022 1833 333 Europe/Berlin 2011-04-25
-2850300 Rascheid Rascheid 49.71667 6.93333 P PPLA4 DE 08 00 07235 07235112 531 435 Europe/Berlin 2011-04-25
-2850303 Raschau Raschau Raschau 50.53333 12.83333 P PPL DE 13 4085 470 Europe/Berlin 2012-01-18
-2850330 Rappin Rappin 54.5 13.38333 P PPLA4 DE 12 00 13061 13061032 407 255 Europe/Berlin 2011-04-25
-2850418 Rantzau Rantzau 54.25 10.51667 P PPLA4 DE 10 00 01057 01057065 313 41 Europe/Berlin 2011-04-25
-2850422 Rantrum Rantrum Rantrum 54.43333 9.11667 P PPLA4 DE 10 00 01054 01054106 1562 253 Europe/Berlin 2011-04-25
-2850424 Ransweiler Ransweiler 49.66667 7.76667 P PPLA4 DE 08 00 07333 07333061 296 318 Europe/Berlin 2011-04-25
-2850425 Ranstadt Ranstadt Ranstadt 50.35 8.98333 P PPLA4 DE 05 064 06440 06440020 5042 188 Europe/Berlin 2011-04-25
-2850432 Ranschbach Ranschbach 49.19583 8.02861 P PPLA4 DE 08 00 07337 07337065 687 252 Europe/Berlin 2011-04-25
-2850446 Rannungen Rannungen 50.16667 10.21667 P PPLA4 DE 02 096 09672 09672143 1209 328 Europe/Berlin 2011-04-25
-2850447 Rannstedt Rannstedt 51.08333 11.55 P PPLA4 DE 15 00 16071 16071077 194 212 Europe/Berlin 2011-04-25
-2850468 Rankwitz Rankwitz 53.95 13.93333 P PPLA4 DE 12 00 13059 13059081 647 2 Europe/Berlin 2011-04-25
-2850484 Ranis Ranis 50.66132 11.56912 P PPL DE 15 2006 383 Europe/Berlin 2010-03-10
-2850490 Rangsdorf Rangsdorf 52.29126 13.41946 P PPLA4 DE 11 00 12072 12072340 9134 42 Europe/Berlin 2011-07-31
-2850496 Rangendingen Rangendingen 48.38168 8.8894 P PPLA4 DE 01 084 08417 08417051 5187 418 Europe/Berlin 2011-04-25
-2850523 Randersacker Randersacker Randersacker 49.75944 9.9825 P PPL DE 02 3459 185 Europe/Berlin 2012-01-18
-2850535 Ramsthal Ramsthal 50.14039 10.06777 P PPLA4 DE 02 096 09672 09672142 1212 258 Europe/Berlin 2011-04-25
-2850536 Ramstein-Miesenbach Ramstein-Miesenbach Ramstein,Ramstein-Miesenbach 49.45 7.55 P PPL DE 08 8078 238 Europe/Berlin 2012-01-18
-2850544 Ramstedt Ramstedt 54.4 9.16667 P PPLA4 DE 10 00 01054 01054105 438 15 Europe/Berlin 2011-04-25
-2850553 Ramsla Ramsla 51.05 11.28333 P PPLA4 DE 15 00 16071 16071076 323 242 Europe/Berlin 2011-04-25
-2850555 Ramsin Ramsin 51.61667 12.23333 P PPL DE 14 1006 78 Europe/Berlin 2006-01-17
-2850566 Ramsen Ramsen 49.53694 8.01333 P PPLA4 DE 08 00 07333 07333060 1863 216 Europe/Berlin 2011-04-25
-2850603 Ramsau Ramsau 48.16667 12.23333 P PPL DE 02 1806 502 Europe/Berlin 2006-01-17
-2850608 Ramsau Ramsau Ramsau,Рамсау 47.61667 12.9 P PPL DE 02 1791 885 Europe/Berlin 2012-01-18
-2850636 Rammingen Rammingen 48.51814 10.17197 P PPLA4 DE 01 084 08425 08425097 1303 509 Europe/Berlin 2011-04-25
-2850648 Rammenau Rammenau Rammenau 51.15 14.13333 P PPLA4 DE 13 146 14625 14625510 1522 303 Europe/Berlin 2011-07-31
-2850663 Rammelsbach Rammelsbach 49.55 7.45 P PPLA4 DE 08 00 07336 07336079 1783 231 Europe/Berlin 2011-04-25
-2850685 Ramin Ramin 53.41311 14.28875 P PPLA4 DE 12 00 13062 13062047 346 24 Europe/Berlin 2011-04-25
-2850686 Ramhusen Ramhusen Ramhusen 53.95 9.08333 P PPLA4 DE 10 00 01051 01051090 155 254 Europe/Berlin 2011-04-25
-2850705 Ramerberg Ramerberg 48.01806 12.14513 P PPLA4 DE 02 091 09187 09187164 1346 477 Europe/Berlin 2011-04-25
-2850718 Rambin Rambin 54.35566 13.20445 P PPLA4 DE 12 00 13061 13061031 1081 7 Europe/Berlin 2011-07-31
-2850722 Ramberg Ramberg 49.26028 8.00833 P PPLA4 DE 08 00 07337 07337064 1018 235 Europe/Berlin 2011-04-25
-2850735 Ralswiek Ralswiek 54.46667 13.45 P PPLA4 DE 12 00 13061 13061030 297 31 Europe/Berlin 2011-04-25
-2850740 Ralingen Ralingen 49.81667 6.5 P PPLA4 DE 08 00 07235 07235111 1997 220 Europe/Berlin 2011-04-25
-2850768 Raitenbuch Raitenbuch 49.01468 11.12486 P PPLA4 DE 02 095 09577 09577163 1176 561 Europe/Berlin 2011-04-25
-2850776 Raisting Raisting 47.91667 11.1 P PPLA4 DE 02 091 09190 09190144 2173 553 Europe/Berlin 2011-04-25
-2850777 Raisdorf Raisdorf Raisdorf 54.28333 10.23333 P PPL DE 10 7611 36 Europe/Berlin 2012-01-18
-2850807 Rain Rain 48.9 12.46667 P PPLA4 DE 02 092 09278 09278177 2642 330 Europe/Berlin 2011-04-25
-2850808 Rain Rain Rain 48.68333 10.9 P PPL DE 02 8438 403 Europe/Berlin 2012-01-18
-2850887 Rahden Rahden Rahden 52.43333 8.61667 P PPL DE 07 16140 45 Europe/Berlin 2012-01-18
-2850894 Raguhn Raguhn Raguhn 51.71667 12.3 P PPL DE 14 3732 70 Europe/Berlin 2012-01-18
-2850942 Raesfeld Raesfeld Raesfeld 51.76667 6.85 P PPLA4 DE 07 055 05554 05554040 11218 62 Europe/Berlin 2011-04-25
-2850954 Radolfzell am Bodensee Radolfzell am Bodensee Radolfzell,Radolfzell am Bodensee 47.73333 8.96667 P PPL DE 01 30096 392 Europe/Berlin 2012-01-18
-2850973 Radis Radis Radis 51.75 12.51667 P PPL DE 14 1342 99 Europe/Berlin 2012-02-02
-2850980 Radibor Radibor Radibor 51.25 14.4 P PPLA4 DE 13 146 14625 14625490 3651 157 Europe/Berlin 2011-04-25
-2850995 Radevormwald Radevormwald Radevormwald 51.2 7.35 P PPL DE 07 24100 357 Europe/Berlin 2012-01-18
-2851042 Rademin Rademin 52.8 11.33333 P PPLA4 DE 14 00 15081 15081425 222 40 Europe/Berlin 2011-04-25
-2851069 Radegast Radegast Radegast 51.65 12.1 P PPL DE 14 1308 76 Europe/Berlin 2012-01-18
-2851074 Radeburg Radeburg 51.21516 13.7281 P PPL DE 13 146 7812 150 Europe/Berlin 2010-11-15
-2851077 Radebeul Radebeul 51.10654 13.66047 P PPL DE 13 146 32643 120 Europe/Berlin 2010-11-15
-2851079 Radeberg Radeberg Radeberg 51.11667 13.91667 P PPL DE 13 18747 231 Europe/Berlin 2012-01-18
-2851087 Rade Rade 54.0009 9.74162 P PPLA4 DE 10 00 01061 01061089 99 16 Europe/Berlin 2011-09-05
-2851096 Raddestorf Raddestorf 52.45 8.96667 P PPLA4 DE 06 00 03256 03256024 2090 37 Europe/Berlin 2011-04-25
-2851100 Radbruch Radbruch 53.31667 10.28333 P PPLA4 DE 06 00 03355 03355028 1899 4 Europe/Berlin 2011-04-25
-2851113 Rackwitz Rackwitz 51.43333 12.38333 P PPLA4 DE 13 147 14730 14730250 3118 118 Europe/Berlin 2011-04-25
-2851114 Racksen Racksen 50.73333 7.7 P PPLA4 DE 08 00 07132 07132092 163 291 Europe/Berlin 2011-04-25
-2851132 Räckelwitz Rackelwitz 51.25 14.23333 P PPLA4 DE 13 146 14625 14625470 1216 154 Europe/Berlin 2011-04-25
-2851158 Räbke Rabke 52.19603 10.8787 P PPLA4 DE 06 00 03154 03154017 679 149 Europe/Berlin 2011-05-03
-2851175 Raben Steinfeld Raben Steinfeld 53.6 11.5 P PPLA4 DE 12 00 13060 13060063 1131 54 Europe/Berlin 2011-04-25
-2851231 Rabenholz Rabenholz Rabenholz 54.71667 9.9 P PPLA4 DE 10 00 01059 01059155 304 18 Europe/Berlin 2011-04-25
-2851262 Rabenau Rabenau Rabenau 50.96667 13.63333 P PPL DE 13 4735 331 Europe/Berlin 2012-01-18
-2851273 Rabel Rabel 54.7 9.95 P PPLA4 DE 10 00 01059 01059154 651 5 Europe/Berlin 2011-04-25
-2851289 Raa-Besenbek Raa-Besenbek Raa-Besenbek 53.76667 9.6 P PPLA4 DE 10 00 01056 01056042 516 253 Europe/Berlin 2011-04-25
-2851310 Quitzdorf Quitzdorf 51.28333 14.76667 P PPL DE 13 1702 159 Europe/Berlin 2006-01-17
-2851320 Quirnheim Quirnheim 49.58444 8.12639 P PPLA4 DE 08 00 07332 07332042 724 251 Europe/Berlin 2011-04-25
-2851321 Quirnbach Quirnbach 50.51667 7.8 P PPLA4 DE 08 00 07143 07143061 503 299 Europe/Berlin 2011-04-25
-2851323 Quirla Quirla Quirla 50.86667 11.76667 P PPLA4 DE 15 00 16074 16074069 546 287 Europe/Berlin 2011-04-25
-2851337 Quierschied Quierschied 49.31667 7.05 P PPLA4 DE 09 00 10041 10041516 14545 256 Europe/Berlin 2011-04-25
-2851338 Quiddelbach Quiddelbach 50.35 6.93333 P PPLA4 DE 08 00 07131 07131066 308 482 Europe/Berlin 2011-04-25
-2851342 Quickborn Quickborn 54.01667 9.2 P PPLA4 DE 10 00 01051 01051089 209 24 Europe/Berlin 2011-04-25
-2851343 Quickborn Quickborn Quickborn 53.73333 9.9 P PPL DE 10 20410 21 Europe/Berlin 2012-01-18
-2851381 Quernheim Quernheim 52.46667 8.4 P PPLA4 DE 06 00 03251 03251029 429 42 Europe/Berlin 2011-04-25
-2851385 Quern Quern Quern 54.75 9.71667 P PPLA4 DE 10 00 01059 01059153 1344 47 Europe/Berlin 2011-04-25
-2851393 Querfurt Querfurt Querfurt 51.38333 11.6 P PPL DE 14 9019 171 Europe/Berlin 2012-01-18
-2851395 Querenhorst Querenhorst 52.33333 10.96667 P PPLA4 DE 06 00 03154 03154016 577 106 Europe/Berlin 2011-04-25
-2851450 Quellendorf Quellendorf Quellendorf 51.75 12.13333 P PPL DE 14 1033 80 Europe/Berlin 2012-01-18
-2851455 Queis Queis 51.48333 12.13333 P PPL DE 14 1518 112 Europe/Berlin 2006-01-17
-2851459 Queidersbach Queidersbach 49.36667 7.63333 P PPLA4 DE 08 00 07335 07335037 2834 397 Europe/Berlin 2011-04-25
-2851465 Quedlinburg Quedlinburg Kvedlinburg,Quedlinburg,Stadt Quedlinburg,keubedeullinbuleukeu,kui de lin bao,Кведлинбург,奎德林堡,크베들린부르크 51.78333 11.15 P PPL DE 14 22814 121 Europe/Berlin 2012-01-18
-2851493 Quaschwitz Quaschwitz Quaschwitz 50.68333 11.7 P PPLA4 DE 15 00 16075 16075087 69 451 Europe/Berlin 2011-04-25
-2851499 Quarnstedt Quarnstedt 53.95485 9.78736 P PPLA4 DE 10 00 01061 01061088 444 16 Europe/Berlin 2011-09-05
-2851502 Quarnbek Quarnbek Quarnbek 54.33333 9.98333 P PPLA4 DE 10 00 01058 01058130 1798 13 Europe/Berlin 2011-04-25
-2851523 Quakenbrück Quakenbruck Quakenbruck,Quakenbrück 52.68333 7.95 P PPL DE 06 12727 24 Europe/Berlin 2012-01-18
-2851543 Pyrbaum Pyrbaum Pyrbaum 49.29861 11.28972 P PPL DE 02 5836 434 Europe/Berlin 2012-01-18
-2851567 Putzbrunn Putzbrunn 48.07579 11.71572 P PPLA4 DE 02 091 09184 09184140 5747 556 Europe/Berlin 2011-04-25
-2851575 Putzar Putzar 53.71667 13.65 P PPLA4 DE 12 00 13059 13059080 219 11 Europe/Berlin 2011-04-25
-2851584 Püttlingen Puttlingen 49.2855 6.88723 P PPL DE 09 21052 227 Europe/Berlin 2010-09-18
-2851611 Putlitz Putlitz 53.24899 12.04179 P PPL DE 11 3100 57 Europe/Berlin 2009-03-30
-2851613 Putgarten Putgarten 54.66667 13.41667 P PPLA4 DE 12 00 13061 13061029 305 17 Europe/Berlin 2011-04-25
-2851615 Putbus Putbus Putbus 54.35 13.48333 P PPL DE 12 4803 23 Europe/Berlin 2012-01-18
-2851631 Puschwitz Puschwitz 51.25 14.3 P PPLA4 DE 13 146 14625 14625460 1049 184 Europe/Berlin 2011-04-25
-2851634 Puschendorf Puschendorf 49.52398 10.83192 P PPLA4 DE 02 095 09573 09573124 2274 368 Europe/Berlin 2011-04-25
-2851664 Pürgen Purgen 48.02472 10.92213 P PPLA4 DE 02 091 09181 09181141 3186 646 Europe/Berlin 2011-07-31
-2851689 Pünderich Punderich 50.03333 7.11667 P PPLA4 DE 08 00 07135 07135073 953 98 Europe/Berlin 2011-04-25
-2851727 Puls Puls Puls 54.08333 9.51667 P PPLA4 DE 10 00 01061 01061087 627 30 Europe/Berlin 2011-04-25
-2851734 Pullenreuth Pullenreuth 49.93333 12 P PPLA4 DE 02 093 09377 09377148 1902 544 Europe/Berlin 2011-04-25
-2851739 Pullach im Isartal Pullach im Isartal Pullach 48.06122 11.52148 P PPL DE 02 091 8589 582 Europe/Berlin 2010-11-15
-2851746 Pulheim Pulheim Pulheim 51 6.8 P PPL DE 07 53762 51 Europe/Berlin 2012-01-18
-2851767 Puderbach Puderbach Puderbach 50.6 7.61667 P PPLA4 DE 08 00 07138 07138057 2259 238 Europe/Berlin 2011-07-31
-2851774 Pudagla Pudagla Pudagla 53.96667 14.06667 P PPLA4 DE 12 00 13059 13059078 443 14 Europe/Berlin 2011-04-25
-2851777 Puchow Puchow 53.53333 13.06667 P PPLA4 DE 12 00 13056 13056055 150 60 Europe/Berlin 2011-04-25
-2851782 Puchheim Puchheim Puchheim 48.15 11.35 P PPLA4 DE 02 091 09179 09179145 19357 527 Europe/Berlin 2011-07-31
-2851784 Püchersreuth Puchersreuth 49.75 12.23333 P PPLA4 DE 02 093 09374 09374150 1667 494 Europe/Berlin 2011-04-25
-2851801 Prutting Prutting 47.89321 12.20238 P PPLA4 DE 02 091 09187 09187163 2325 492 Europe/Berlin 2011-04-25
-2851818 Prümzurlay Prumzurlay 49.86667 6.43333 P PPLA4 DE 08 00 07232 07232108 567 225 Europe/Berlin 2011-04-25
-2851826 Prüm Prum 50.21667 6.41667 P PPL DE 08 5471 505 Europe/Berlin 2006-01-17
-2851841 Pruchten Pruchten 54.37843 12.67436 P PPLA4 DE 12 00 13057 13057070 688 2 Europe/Berlin 2011-04-25
-2851850 Prötzel Protzel 52.63723 13.98783 P PPLA4 DE 11 00 12064 12064393 1204 94 Europe/Berlin 2011-07-31
-2851863 Prosselsheim Prosselsheim 49.86667 10.13333 P PPLA4 DE 02 096 09679 09679174 1213 284 Europe/Berlin 2011-04-25
-2851893 Pronstorf Pronstorf Pronstorf 53.95 10.46667 P PPLA4 DE 10 00 01060 01060067 1690 26 Europe/Berlin 2011-04-25
-2851894 Pronsfeld Pronsfeld Pronsfeld 50.16667 6.33333 P PPLA4 DE 08 00 07232 07232295 962 469 Europe/Berlin 2011-04-25
-2851916 Prohn Prohn 54.36901 13.02369 P PPLA4 DE 12 00 13057 13057069 1970 6 Europe/Berlin 2011-04-25
-2851928 Probstzella Probstzella Probstzella 50.53333 11.38333 P PPLA4 DE 15 00 16073 16073067 3122 378 Europe/Berlin 2011-04-25
-2851946 Probsteierhagen Probsteierhagen Probsteierhagen 54.36667 10.28333 P PPLA4 DE 10 00 01057 01057063 1899 20 Europe/Berlin 2011-04-25
-2851962 Pritzwalk Pritzwalk 53.14945 12.17405 P PPL DE 11 13485 63 Europe/Berlin 2009-04-02
-2851968 Pritzier Pritzier 53.37919 11.07812 P PPLA4 DE 12 00 13054 13054090 517 27 Europe/Berlin 2011-08-28
-2851977 Prittriching Prittriching 48.2 10.91667 P PPLA4 DE 02 091 09181 09181134 2345 535 Europe/Berlin 2011-04-25
-2851980 Prittitz Prittitz Prittitz 51.15 11.93333 P PPLA4 DE 14 00 15084 15084400 1040 168 Europe/Berlin 2011-04-25
-2851992 Prislich Prislich 53.26667 11.61667 P PPLA4 DE 12 00 13054 13054089 627 29 Europe/Berlin 2011-04-25
-2851994 Prisdorf Prisdorf Prisdorf 53.68333 9.75 P PPLA4 DE 10 00 01056 01056040 2283 3 Europe/Berlin 2011-04-25
-2851997 Pripsleben Pripsleben 53.71667 13.18333 P PPLA4 DE 12 00 13052 13052059 286 52 Europe/Berlin 2011-04-25
-2852013 Prinzhöfte Prinzhofte 52.95 8.56667 P PPLA4 DE 06 00 03458 03458012 712 20 Europe/Berlin 2011-04-25
-2852019 Prinzenmoor Prinzenmoor Prinzenmoor 54.21667 9.45 P PPLA4 DE 10 00 01058 01058129 185 254 Europe/Berlin 2011-04-25
-2852054 Priestewitz Priestewitz 51.25 13.51667 P PPLA4 DE 13 146 14627 14627200 3598 139 Europe/Berlin 2011-04-25
-2852082 Priesendorf Priesendorf 49.9 10.71667 P PPLA4 DE 02 094 09471 09471173 1544 286 Europe/Berlin 2011-04-25
-2852097 Priepert Priepert 53.21667 13.03333 P PPLA4 DE 12 00 13055 13055055 276 57 Europe/Berlin 2011-04-25
-2852101 Prien am Chiemsee Prien am Chiemsee Prien,Prien am Chiemsee 47.86667 12.33333 P PPL DE 02 10060 581 Europe/Berlin 2012-01-18
-2852129 Prichsenstadt Prichsenstadt Prichsenstadt 49.81667 10.35 P PPL DE 02 3216 255 Europe/Berlin 2012-01-18
-2852131 Priborn Priborn 53.30565 12.65599 P PPLA4 DE 12 00 13056 13056054 451 72 Europe/Berlin 2011-07-31
-2852135 Prezelle Prezelle 52.96667 11.4 P PPLA4 DE 06 00 03354 03354020 508 37 Europe/Berlin 2011-04-25
-2852144 Preußisch Oldendorf Preussisch Oldendorf Preussisch Oldendorf,Preußisch Oldendorf 52.3 8.5 P PPL DE 07 13447 66 Europe/Berlin 2012-01-18
-2852154 Pretzschendorf Pretzschendorf 50.86667 13.53333 P PPLA4 DE 13 146 14628 14628290 4440 485 Europe/Berlin 2011-04-25
-2852156 Pretzsch Pretzsch Pretzsch 51.71667 12.8 P PPL DE 14 1688 80 Europe/Berlin 2012-02-02
-2852159 Pretzier Pretzier Pretzier 52.83333 11.25 P PPL DE 14 1310 41 Europe/Berlin 2012-02-02
-2852162 Pretzfeld Pretzfeld 49.75454 11.1743 P PPL DE 02 2499 289 Europe/Berlin 2008-10-27
-2852168 Prettin Prettin Prettin 51.66667 12.91667 P PPL DE 14 2128 76 Europe/Berlin 2012-01-18
-2852190 Pressig Pressig Pressig 50.35 11.31667 P PPL DE 02 4277 381 Europe/Berlin 2012-01-18
-2852197 Presseck Presseck Presseck 50.23333 11.55 P PPL DE 02 2159 597 Europe/Berlin 2012-01-18
-2852198 Pressath Pressath Pressath 49.76667 11.93333 P PPL DE 02 4654 425 Europe/Berlin 2012-01-18
-2852218 Prenzlau Prenzlau Prenzlau 53.31667 13.86667 P PPL DE 11 20899 28 Europe/Berlin 2012-01-18
-2852233 Premnitz Premnitz Premnitz 52.53333 12.33333 P PPL DE 11 10105 30 Europe/Berlin 2012-01-18
-2852246 Prem Prem 47.68333 10.8 P PPLA4 DE 02 091 09190 09190143 895 733 Europe/Berlin 2011-04-25
-2852251 Preist Preist 49.91667 6.63333 P PPLA4 DE 08 00 07232 07232107 768 355 Europe/Berlin 2011-04-25
-2852262 Preischeid Preischeid 50.03333 6.15 P PPLA4 DE 08 00 07232 07232294 168 439 Europe/Berlin 2011-04-25
-2852279 Preetz Preetz 54.35017 12.98936 P PPLA4 DE 12 00 13057 13057067 1021 10 Europe/Berlin 2011-04-25
-2852280 Preetz Preetz Preetz 54.23333 10.28333 P PPL DE 10 15768 22 Europe/Berlin 2012-01-18
-2852299 Prebitz Prebitz 49.83333 11.68333 P PPLA4 DE 02 094 09472 09472180 1148 426 Europe/Berlin 2011-04-25
-2852303 Prebberede Prebberede 53.91667 12.48333 P PPLA4 DE 12 00 13053 13053109 487 43 Europe/Berlin 2011-04-25
-2852313 Prath Prath 50.18333 7.68333 P PPLA4 DE 08 00 07141 07141112 327 317 Europe/Berlin 2011-04-25
-2852326 Prasdorf Prasdorf Prasdorf 54.38333 10.3 P PPLA4 DE 10 00 01057 01057060 452 15 Europe/Berlin 2011-04-25
-2852358 Pragsdorf Pragsdorf 53.53333 13.4 P PPLA4 DE 12 00 13055 13055054 548 66 Europe/Berlin 2011-04-25
-2852372 Prackenbach Prackenbach 49.1 12.83333 P PPLA4 DE 02 092 09276 09276135 2688 482 Europe/Berlin 2011-04-25
-2852376 Pracht Pracht 50.75 7.65 P PPLA4 DE 08 00 07132 07132091 1562 238 Europe/Berlin 2011-04-25
-2852388 Poyenberg Poyenberg Poyenberg 54.03333 9.7 P PPLA4 DE 10 00 01061 01061086 407 64 Europe/Berlin 2011-04-25
-2852392 Poxdorf Poxdorf 50.96667 11.75 P PPLA4 DE 15 00 16074 16074068 102 307 Europe/Berlin 2011-04-25
-2852394 Poxdorf Poxdorf 49.93642 11.12211 P PPL DE 02 1528 501 Europe/Berlin 2011-08-10
-2852395 Poxdorf Poxdorf 49.66335 11.07079 P PPLA4 DE 02 094 09474 09474160 0 281 Europe/Berlin 2011-04-25
-2852400 Pouch Pouch 51.62324 12.40133 P PPL DE 14 1675 93 Europe/Berlin 2010-08-31
-2852418 Pottum Pottum 50.6 8 P PPLA4 DE 08 00 07143 07143284 1033 440 Europe/Berlin 2011-04-25
-2852422 Pöttmes Pottmes Pottmes,Pöttmes 48.58333 11.1 P PPL DE 02 6315 406 Europe/Berlin 2012-01-18
-2852428 Pottiga Pottiga Pottiga 50.41667 11.75 P PPLA4 DE 15 00 16075 16075086 0 457 Europe/Berlin 2011-04-25
-2852440 Pottenstein Pottenstein Pottenstein 49.77222 11.40917 P PPL DE 02 5501 370 Europe/Berlin 2012-01-18
-2852458 Potsdam Potsdam Poczdam,Podstupim,Postupim,Potsdam,Potsdamo,Poztupimi,bo ci tan,pocheudam,potsudamu,pwtsdm,Πότσδαμ,Потсдам,פוטסדאם,פוטסדם,ポツダム,波茨坦,포츠담 52.39886 13.06566 P PPLA DE 11 145292 34 Europe/Berlin 2011-01-06
-2852479 Postmünster Postmunster 48.41667 12.9 P PPLA4 DE 02 092 09277 09277139 2405 405 Europe/Berlin 2011-04-25
-2852485 Postlow Postlow 53.83333 13.58333 P PPLA4 DE 12 00 13059 13059077 402 9 Europe/Berlin 2011-04-25
-2852498 Postfeld Postfeld 54.21037 10.21278 P PPLA4 DE 10 00 01057 01057059 502 34 Europe/Berlin 2011-04-25
-2852499 Posterstein Posterstein 50.86667 12.26667 P PPLA4 DE 15 00 16077 16077041 533 242 Europe/Berlin 2011-04-25
-2852509 Postau Postau 48.65 12.33333 P PPLA4 DE 02 092 09274 09274174 1644 380 Europe/Berlin 2011-04-25
-2852512 Pößneck Possneck 50.69358 11.59229 P PPL DE 15 13624 228 Europe/Berlin 2010-03-10
-2852535 Pösing Posing 49.23333 12.55 P PPLA4 DE 02 093 09372 09372147 969 373 Europe/Berlin 2011-04-25
-2852541 Poseritz Poseritz 54.3 13.28333 P PPLA4 DE 12 00 13061 13061027 1156 7 Europe/Berlin 2011-04-25
-2852557 Pöschendorf Poschendorf Poschendorf,Pöschendorf 54.0374 9.48845 P PPLA4 DE 10 00 01061 01061085 258 22 Europe/Berlin 2011-04-25
-2852577 Porta Westfalica Porta Westfalica 52.23779 8.91901 P PPL DE 07 36364 61 Europe/Berlin 2009-12-26
-2852591 Porschdorf Porschdorf 50.9418 14.12687 P PPLA4 DE 13 146 14628 14628280 1317 195 Europe/Berlin 2011-07-31
-2852599 Pörnbach Pornbach 48.61667 11.46667 P PPLA4 DE 02 091 09186 09186144 1969 423 Europe/Berlin 2011-04-25
-2852600 Pörmitz Pormitz Pormitz,Pörmitz 50.61667 11.81667 P PPLA4 DE 15 00 16075 16075084 221 458 Europe/Berlin 2011-04-25
-2852637 Poppenricht Poppenricht Michaels Poppenricht,Poppenricht 49.48333 11.8 P PPLA4 DE 02 093 09371 09371144 3319 430 Europe/Berlin 2011-07-31
-2852656 Poppenhausen Poppenhausen 50.48793 9.86795 P PPL DE 05 066 2685 454 Europe/Berlin 2010-11-15
-2852658 Poppenhausen Poppenhausen 50.09999 10.14244 P PPLA4 DE 02 096 09678 09678168 4119 253 Europe/Berlin 2011-04-25
-2852666 Poppendorf Poppendorf 54.13333 12.28333 P PPLA4 DE 12 00 13051 13051054 0 33 Europe/Berlin 2011-04-25
-2852673 Poppenbüttel Poppenbuettel 53.65917 10.08472 P PPLX DE 04 22375 24 Europe/Berlin 2011-08-21
-2852675 Poppenbüll Poppenbull Poppenbull,Poppenbüll 54.36088 8.7612 P PPLA4 DE 10 00 01054 01054104 195 1 Europe/Berlin 2011-08-25
-2852729 Ponitz Ponitz 50.85 12.43333 P PPLA4 DE 15 00 16077 16077039 1808 258 Europe/Berlin 2011-04-25
-2852745 Pomster Pomster 50.35346 6.84277 P PPLA4 DE 08 00 07131 07131065 195 413 Europe/Berlin 2011-04-25
-2852757 Pommersfelden Pommersfelden 49.76667 10.81667 P PPLA4 DE 02 094 09471 09471172 2874 268 Europe/Berlin 2011-04-25
-2852758 Pommern Pommern 50.16667 7.28333 P PPLA4 DE 08 00 07135 07135072 484 199 Europe/Berlin 2011-04-25
-2852765 Pommerby Pommerby 54.76667 9.95 P PPLA4 DE 10 00 01059 01059152 0 9 Europe/Berlin 2011-04-25
-2852772 Pommelsbrunn Pommelsbrunn 49.50437 11.51101 P PPLA4 DE 02 095 09574 09574147 5432 371 Europe/Berlin 2011-04-25
-2852785 Polzow Polzow 53.49964 14.05855 P PPLA4 DE 12 00 13062 13062046 262 20 Europe/Berlin 2011-04-25
-2852789 Pölzig Polzig Polzig,Pölzig 50.95 12.2 P PPLA4 DE 15 00 16076 16076058 1395 285 Europe/Berlin 2011-04-25
-2852809 Polsingen Polsingen 48.93333 10.71667 P PPLA4 DE 02 095 09577 09577162 2042 461 Europe/Berlin 2011-04-25
-2852840 Polling Polling 48.21667 12.56667 P PPLA4 DE 02 091 09183 09183136 3465 408 Europe/Berlin 2011-04-25
-2852841 Polling Polling 47.81102 11.13241 P PPLA4 DE 02 091 09190 09190142 3228 569 Europe/Berlin 2011-04-25
-2852847 Pollhagen Pollhagen 52.38333 9.2 P PPLA4 DE 06 00 03257 03257030 1242 52 Europe/Berlin 2011-07-31
-2852856 Pollenfeld Pollenfeld 48.95 11.2 P PPLA4 DE 02 091 09176 09176155 0 541 Europe/Berlin 2011-04-25
-2852857 Polleben Polleben 51.58333 11.6 P PPL DE 14 1088 168 Europe/Berlin 2006-01-17
-2852858 Polle Polle Polle 51.9 9.4 P PPL DE 06 1196 109 Europe/Berlin 2012-01-18
-2852877 Pölitz Politz 53.78333 10.38333 P PPLA4 DE 10 00 01062 01062056 1166 25 Europe/Berlin 2011-04-25
-2852882 Pölich Polich 49.8 6.85 P PPLA4 DE 08 00 07235 07235108 379 124 Europe/Berlin 2011-04-25
-2852909 Polch Polch Polch 50.3 7.31667 P PPL DE 08 6590 211 Europe/Berlin 2012-01-18
-2852914 Pokrent Pokrent 53.65 11.15 P PPLA4 DE 12 00 13058 13058082 785 60 Europe/Berlin 2011-04-25
-2852939 Poing Poing 48.17004 11.81863 P PPLA4 DE 02 091 09175 09175135 11592 519 Europe/Berlin 2011-07-31
-2852957 Pohnsdorf Pohnsdorf 54.23955 10.24896 P PPLA4 DE 10 00 01057 01057058 518 25 Europe/Berlin 2011-04-25
-2852978 Pohle Pohle 52.26627 9.34404 P PPLA4 DE 06 00 03257 03257029 956 101 Europe/Berlin 2011-04-25
-2852991 Pöhla Pohla Pohla,Pöhla 50.51667 12.81667 P PPL DE 13 1281 474 Europe/Berlin 2012-01-18
-2852994 Pöhl Pohl 50.55 12.18333 P PPLA4 DE 13 145 14523 14523330 0 370 Europe/Berlin 2011-04-25
-2852995 Pöhl Pohl 50.4 12.33333 P PPL DE 13 2852 717 Europe/Berlin 2006-01-17
-2852996 Pohl Pohl 50.25 7.86667 P PPLA4 DE 08 00 07141 07141111 377 330 Europe/Berlin 2011-04-25
-2853009 Poggensee Poggensee 53.65 10.58333 P PPLA4 DE 10 00 01053 01053099 354 51 Europe/Berlin 2011-04-25
-2853037 Pogeez Pogeez Pogeez 53.75 10.73333 P PPLA4 DE 10 00 01053 01053098 430 1 Europe/Berlin 2011-04-25
-2853052 Podelzig Podelzig Alt Podeizig 52.47175 14.53465 P PPLA4 DE 11 00 12064 12064388 1015 49 Europe/Berlin 2011-04-25
-2853065 Pocking Pocking Pocking 48.4 13.31667 P PPL DE 02 14646 320 Europe/Berlin 2012-01-18
-2853066 Pöcking Pocking Pocking,Pöcking 47.96667 11.3 P PPLA4 DE 02 091 09188 09188137 5734 673 Europe/Berlin 2011-04-25
-2853071 Pockau Pockau 50.7 13.23333 P PPLA4 DE 13 145 14521 14521490 4283 408 Europe/Berlin 2011-07-31
-2853085 Pobershau Pobershau 50.65 13.21667 P PPLA4 DE 13 145 14521 14521480 2031 526 Europe/Berlin 2011-04-25
-2853089 Pluwig Pluwig 49.68976 6.71239 P PPLA4 DE 08 00 07235 07235107 1237 310 Europe/Berlin 2011-04-25
-2853090 Plütscheid Plutscheid 50.08333 6.41667 P PPLA4 DE 08 00 07232 07232293 319 497 Europe/Berlin 2011-04-25
-2853093 Plüschow Pluschow 53.83333 11.26667 P PPLA4 DE 12 00 13058 13058081 541 40 Europe/Berlin 2011-04-25
-2853107 Plüderhausen Pluderhausen 48.79875 9.59587 P PPLA4 DE 01 081 08119 08119055 9559 270 Europe/Berlin 2011-04-25
-2853111 Plöwen Plowen 53.46393 14.26472 P PPLA4 DE 12 00 13062 13062045 292 17 Europe/Berlin 2011-04-25
-2853113 Plötzky Plotzky Plotzky,Plötzky 52.05 11.8 P PPL DE 14 1040 49 Europe/Berlin 2012-01-18
-2853114 Plötzkau Plotzkau 51.75 11.68333 P PPLA4 DE 14 00 15089 15089245 1486 68 Europe/Berlin 2011-04-25
-2853131 Plötz Plotz 51.63333 11.93333 P PPLA4 DE 14 00 15088 15088300 801 93 Europe/Berlin 2011-04-25
-2853136 Plothen Plothen Plothen 50.63333 11.76667 P PPLA4 DE 15 00 16075 16075083 328 484 Europe/Berlin 2011-04-25
-2853141 Plossig Plossig 51.7 12.95 P PPLA4 DE 14 00 15091 15091245 272 74 Europe/Berlin 2011-04-25
-2853146 Plößberg Plossberg 49.91667 11.86667 P PPL DE 02 3531 531 Europe/Berlin 2006-01-17
-2853162 Plön Plon 54.16667 10.41667 P PPL DE 10 13068 27 Europe/Berlin 2006-01-17
-2853180 Plochingen Plochingen 48.71067 9.41949 P PPL DE 01 14465 268 Europe/Berlin 2008-12-20
-2853192 Pliezhausen Pliezhausen 48.55934 9.20749 P PPLA4 DE 01 084 08415 08415060 9618 341 Europe/Berlin 2011-04-25
-2853200 Pliening Pliening 48.19556 11.80069 P PPLA4 DE 02 091 09175 09175133 4812 504 Europe/Berlin 2011-04-25
-2853202 Pleystein Pleystein Bleistein 49.64907 12.40631 P PPL DE 02 2730 523 Europe/Berlin 2010-05-16
-2853209 Plettenberg Plettenberg Plettenberg,Stadt Plettenberg,Плеттенберг 51.21667 7.88333 P PPL DE 07 28206 397 Europe/Berlin 2012-01-18
-2853231 Plessa Plessa Plessa 51.46667 13.61667 P PPLA4 DE 11 00 12062 12062372 3283 100 Europe/Berlin 2011-04-25
-2853242 Pleizenhausen Pleizenhausen 50.01667 7.56667 P PPLA4 DE 08 00 07140 07140118 247 371 Europe/Berlin 2011-04-25
-2853244 Pleitersheim Pleitersheim 49.83333 7.95 P PPLA4 DE 08 00 07133 07133080 361 135 Europe/Berlin 2011-04-25
-2853245 Pleisweiler-Oberhofen Pleisweiler-Oberhofen 49.11806 8.00778 P PPLA4 DE 08 00 07337 07337062 817 186 Europe/Berlin 2011-04-25
-2853253 Pleiskirchen Pleiskirchen 48.3 12.6 P PPLA4 DE 02 091 09171 09171127 2407 437 Europe/Berlin 2011-04-25
-2853260 Pleinfeld Pleinfeld Pleinfeld 49.1 10.98333 P PPL DE 02 7482 373 Europe/Berlin 2012-01-18
-2853261 Plein Plein 50.03333 6.86667 P PPLA4 DE 08 00 07231 07231108 665 292 Europe/Berlin 2011-04-25
-2853266 Pleidelsheim Pleidelsheim 48.96667 9.2 P PPLA4 DE 01 081 08118 08118063 6217 198 Europe/Berlin 2011-04-25
-2853271 Pleckhausen Pleckhausen 50.6 7.53333 P PPLA4 DE 08 00 07132 07132090 785 277 Europe/Berlin 2011-04-25
-2853292 Plauen Plauen Plauen,plauehn,purauen,Плауэн,プラウエン 50.5 12.13333 P PPL DE 13 145 14523 66412 381 Europe/Berlin 2012-01-18
-2853295 Plaue Plaue Plaue 50.78333 10.9 P PPL DE 15 1995 351 Europe/Berlin 2012-01-18
-2853297 Plau Plau 53.45821 12.26246 P PPL DE 12 5883 74 Europe/Berlin 2009-01-27
-2853310 Plattling Plattling Pladling,Plattling 48.78333 12.86667 P PPL DE 02 12390 323 Europe/Berlin 2012-01-18
-2853332 Plattenburg Plattenburg 52.95919 12.02951 P PPLA4 DE 11 00 12070 12070302 4049 33 Europe/Berlin 2011-07-31
-2853350 Platten Platten 49.95 6.96667 P PPLA4 DE 08 00 07231 07231107 894 339 Europe/Berlin 2011-04-25
-2853406 Plate Plate 53.55 11.5 P PPLA4 DE 12 00 13060 13060060 3686 45 Europe/Berlin 2011-04-25
-2853414 Plascheid Plascheid 50.03333 6.28333 P PPLA4 DE 08 00 07232 07232106 67 457 Europe/Berlin 2011-04-25
-2853435 Plankstadt Plankstadt Plankstadt 49.39444 8.59611 P PPLA4 DE 01 082 08226 08226063 9211 103 Europe/Berlin 2011-07-31
-2853442 Plankenfels Plankenfels 49.88333 11.33333 P PPLA4 DE 02 094 09472 09472176 900 394 Europe/Berlin 2011-04-25
-2853463 Planegg Planegg Planeck,Planegg 48.1 11.41667 P PPLA4 DE 02 091 09184 09184138 10510 550 Europe/Berlin 2011-04-25
-2853471 Plaidt Plaidt 50.3926 7.39251 P PPLA4 DE 08 00 07137 07137088 5797 115 Europe/Berlin 2011-08-12
-2853494 Plaaz Plaaz 53.85 12.35 P PPLA4 DE 12 00 13053 13053068 621 46 Europe/Berlin 2011-07-31
-2853527 Pittenhart Pittenhart 47.98333 12.38333 P PPLA4 DE 02 091 09189 09189137 1614 561 Europe/Berlin 2011-04-25
-2853528 Pittenbach Pittenbach 50.18333 6.35 P PPLA4 DE 08 00 07232 07232292 108 411 Europe/Berlin 2011-04-25
-2853571 Pirow Pirow 53.21667 11.9 P PPLA4 DE 11 00 12070 12070300 527 56 Europe/Berlin 2011-04-25
-2853572 Pirna Pirna 50.95843 13.93702 P PPL DE 13 146 40322 119 Europe/Berlin 2010-11-15
-2853574 Pirmasens Pirmasens Pirmasens,Pirmazens,pirumazensu,Пирмазенс,ピルマゼンス 49.20145 7.60529 P PPL DE 08 43582 400 Europe/Berlin 2010-01-29
-2853599 Pirk Pirk Pirk,Purk 49.63333 12.16667 P PPLA4 DE 02 093 09374 09374146 1960 404 Europe/Berlin 2011-04-25
-2853627 Pinzberg Pinzberg 49.7 11.1 P PPLA4 DE 02 094 09474 09474158 1938 269 Europe/Berlin 2011-04-25
-2853628 Pintesfeld Pintesfeld 50.11667 6.36667 P PPLA4 DE 08 00 07232 07232291 41 493 Europe/Berlin 2011-04-25
-2853647 Pinnow Pinnow 53.6 11.55 P PPLA4 DE 12 00 13060 13060059 1706 40 Europe/Berlin 2011-04-25
-2853650 Pinnow Pinnow 53.06195 14.08559 P PPLA4 DE 11 00 12073 12073440 0 41 Europe/Berlin 2011-04-25
-2853658 Pinneberg Pinneberg Pinnbarg,Pinneberg 53.65 9.8 P PPL DE 10 40577 8 Europe/Berlin 2012-01-18
-2853668 Pingelshagen Pingelshagen 53.68314 11.33532 P PPLA4 DE 12 00 13058 13058080 626 54 Europe/Berlin 2011-04-25
-2853691 Pilsting Pilsting Pilsting 48.7 12.65 P PPL DE 02 6194 344 Europe/Berlin 2012-01-18
-2853700 Pilsach Pilsach 49.32137 11.50311 P PPLA4 DE 02 093 09373 09373153 2659 443 Europe/Berlin 2011-04-25
-2853716 Pillingsdorf Pillingsdorf Pillingsdorf 50.78333 11.8 P PPLA4 DE 15 00 16075 16075082 195 325 Europe/Berlin 2011-04-25
-2853722 Pillig Pillig 50.23919 7.31157 P PPLA4 DE 08 00 07137 07137087 501 223 Europe/Berlin 2011-04-25
-2853779 Piesport Piesport 49.88333 6.91667 P PPLA4 DE 08 00 07231 07231105 2001 129 Europe/Berlin 2011-04-25
-2853799 Piesau Piesau Piesau 50.51667 11.21667 P PPLA4 DE 15 00 16073 16073066 891 704 Europe/Berlin 2011-04-25
-2853844 Pielenhofen Pielenhofen 49.07235 11.95699 P PPLA4 DE 02 093 09375 09375184 1315 346 Europe/Berlin 2011-04-25
-2853855 Piding Piding Au,Piding 47.76667 12.91667 P PPLA4 DE 02 091 09172 09172128 5259 449 Europe/Berlin 2011-07-31
-2853889 Picher Picher 53.35 11.35 P PPLA4 DE 12 00 13054 13054087 792 48 Europe/Berlin 2011-04-25
-2853897 Philippsheim Philippsheim Philippsheim,Phillipsheim 49.95 6.63333 P PPLA4 DE 08 00 07232 07232104 117 234 Europe/Berlin 2011-04-25
-2853900 Philippsthal Philippsthal 50.85 10 P PPL DE 05 4570 355 Europe/Berlin 2006-01-17
-2853903 Philippsreut Philippsreut Philippsreut 48.86667 13.68333 P PPLA4 DE 02 092 09272 09272139 754 943 Europe/Berlin 2011-04-25
-2853907 Philippsburg Philippsburg Philippsburg 49.23583 8.45639 P PPL DE 01 12359 100 Europe/Berlin 2012-01-18
-2853924 Pfungstadt Pfungstadt Pfungstadt 49.80639 8.60694 P PPL DE 05 25084 109 Europe/Berlin 2012-01-18
-2853928 Pfullingen Pfullingen 48.46458 9.22796 P PPL DE 01 18269 429 Europe/Berlin 2008-12-23
-2853930 Pfullendorf Pfullendorf Pfullendorf 47.91667 9.25 P PPL DE 01 13258 681 Europe/Berlin 2012-01-18
-2853949 Pfronten Pfronten 47.58197 10.55932 P PPLA4 DE 02 097 09777 09777159 7890 861 Europe/Berlin 2011-04-25
-2853951 Pfronstetten Pfronstetten 48.28333 9.36667 P PPLA4 DE 01 084 08415 08415058 1581 711 Europe/Berlin 2011-04-25
-2853961 Pfreimd Pfreimd Pfreimd,Pfrimbt 49.4925 12.17944 P PPL DE 02 5565 374 Europe/Berlin 2012-01-18
-2853969 Pforzheim Pforzheim Pforcgejm,Pforckhajm,Pforzheim,puforutsuhaimu,Пфорцгейм,Пфорцхајм,プフォルツハイム 48.88333 8.7 P PPL DE 01 119313 278 Europe/Berlin 2012-01-18
-2853971 Pforzen Pforzen 47.93333 10.61667 P PPLA4 DE 02 097 09777 09777158 2130 653 Europe/Berlin 2011-04-25
-2853984 Pfofeld Pfofeld 49.1059 10.83664 P PPLA4 DE 02 095 09577 09577159 1441 451 Europe/Berlin 2011-07-31
-2854058 Pfiffelbach Pfiffelbach 51.06667 11.43333 P PPLA4 DE 15 00 16071 16071074 683 264 Europe/Berlin 2011-04-25
-2854084 Pferdingsleben Pferdingsleben Pferdingsleben 50.96667 10.81667 P PPLA4 DE 15 00 16067 16067055 421 285 Europe/Berlin 2011-04-25
-2854149 Pfeffenhausen Pfeffenhausen Pfaffenhausen,Pfeffenhausen 48.66667 11.96667 P PPL DE 02 4770 436 Europe/Berlin 2012-01-18
-2854151 Pfeffelbach Pfeffelbach 49.53333 7.33333 P PPLA4 DE 08 00 07336 07336077 1001 392 Europe/Berlin 2011-04-25
-2854152 Pfedelbach Pfedelbach Pfedelbach 49.17806 9.505 P PPLA4 DE 01 081 08126 08126069 8879 238 Europe/Berlin 2011-04-25
-2854165 Pfatter Pfatter Pfatter,Pfeter 48.96667 12.38333 P PPLA4 DE 02 093 09375 09375183 3059 324 Europe/Berlin 2011-04-25
-2854167 Pfarrweisach Pfarrweisach 50.15 10.73333 P PPLA4 DE 02 096 09674 09674184 1608 299 Europe/Berlin 2011-04-25
-2854179 Pfarrkirchen Pfarrkirchen 48.43205 12.93812 P PPL DE 02 11894 384 Europe/Berlin 2008-10-22
-2854252 Pfalzgrafenweiler Pfalzgrafenweiler 48.51667 8.56667 P PPLA4 DE 01 082 08237 08237054 7038 580 Europe/Berlin 2011-04-25
-2854253 Pfalzfeld Pfalzfeld 50.11667 7.58333 P PPLA4 DE 08 00 07140 07140117 572 410 Europe/Berlin 2011-07-31
-2854272 Pfakofen Pfakofen 48.86667 12.21667 P PPLA4 DE 02 093 09375 09375182 1531 394 Europe/Berlin 2011-04-25
-2854296 Pfaffschwende Pfaffschwende Pfaffschwende 51.25 10.1 P PPLA4 DE 15 00 16061 16061075 368 351 Europe/Berlin 2011-04-25
-2854298 Pfaffroda Pfaffroda 50.86667 12.51667 P PPL DE 13 3187 277 Europe/Berlin 2006-01-17
-2854299 Pfaffroda Pfaffroda 50.7 13.35 P PPLA4 DE 13 145 14521 14521470 0 542 Europe/Berlin 2011-04-25
-2854310 Pfaffing Pfaffing 48.05456 12.10917 P PPLA4 DE 02 091 09187 09187159 3782 487 Europe/Berlin 2011-04-25
-2854325 Pfaffenweiler Pfaffenweiler Pfaffenweiler 47.93333 7.75 P PPLA4 DE 01 083 08315 08315089 2529 260 Europe/Berlin 2011-04-25
-2854346 Pfaffen-Schwabenheim Pfaffen-Schwabenheim 49.85 7.95 P PPLA4 DE 08 00 07133 07133078 1310 114 Europe/Berlin 2011-04-25
-2854384 Pfaffenhofen an der Roth Pfaffenhofen an der Roth Pfaffenhofen,Pfaffenhofen an der Roth 48.35454 10.16184 P PPL DE 02 7158 488 Europe/Berlin 2010-08-16
-2854386 Pfaffenhofen an der Ilm Pfaffenhofen an der Ilm Pfaffenhofen an der Ilm 48.53333 11.51667 P PPLA4 DE 02 091 09186 09186143 23192 425 Europe/Berlin 2011-07-31
-2854392 Pfaffenhofen Pfaffenhofen 49.06444 8.97639 P PPLA4 DE 01 081 08125 08125081 2342 207 Europe/Berlin 2011-04-25
-2854394 Pfaffenhofen Pfaffenhofen 48.39334 11.20563 P PPL DE 02 091 1717 534 Europe/Berlin 2010-11-15
-2854411 Pfaffenhausen Pfaffenhausen 48.11878 10.45504 P PPL DE 02 2429 564 Europe/Berlin 2010-08-16
-2854518 Peuschen Peuschen 50.65893 11.64482 P PPLA4 DE 15 00 16075 16075081 528 474 Europe/Berlin 2011-04-25
-2854557 Pettstadt Pettstadt 49.82996 10.92839 P PPLA4 DE 02 094 09471 09471169 1886 248 Europe/Berlin 2011-04-25
-2854561 Petting Petting Petting 47.91232 12.81512 P PPLA4 DE 02 091 09189 09189135 2346 446 Europe/Berlin 2012-01-07
-2854574 Pettendorf Pettendorf Petendorf,Pettendorf 49.35 12.36667 P PPL DE 02 3268 377 Europe/Berlin 2012-01-18
-2854575 Pettendorf Pettendorf 49.06065 12.0078 P PPLA4 DE 02 093 09375 09375181 0 449 Europe/Berlin 2011-04-25
-2854586 Petriroda Petriroda Petriroda 50.86667 10.7 P PPLA4 DE 15 00 16067 16067054 350 366 Europe/Berlin 2011-04-25
-2854626 Peterslahr Peterslahr 50.61667 7.46667 P PPLA4 DE 08 00 07132 07132089 331 250 Europe/Berlin 2011-04-25
-2854646 Petershausen Petershausen 48.4 11.46667 P PPLA4 DE 02 091 09174 09174136 5965 456 Europe/Berlin 2011-04-25
-2854653 Petershagen Petershagen 52.51667 13.78333 P PPL DE 11 12931 54 Europe/Berlin 2006-01-17
-2854655 Petershagen Petershagen Petershagen 52.38333 8.96667 P PPL DE 07 27090 39 Europe/Berlin 2012-01-18
-2854676 Petersdorf Petersdorf 53.48333 13.51667 P PPLA4 DE 12 00 13055 13055053 174 90 Europe/Berlin 2011-04-25
-2854685 Petersdorf Petersdorf 48.51667 11.03333 P PPLA4 DE 02 097 09771 09771155 1719 485 Europe/Berlin 2011-04-25
-2854701 Petersberg Petersberg 51.6 11.96667 P PPLA4 DE 14 00 15088 15088295 684 148 Europe/Berlin 2011-04-25
-2854704 Petersberg Petersberg 50.98333 11.83333 P PPLA4 DE 15 00 16074 16074067 303 250 Europe/Berlin 2011-04-25
-2854706 Petersberg Petersberg 50.56187 9.71312 P PPLA4 DE 05 066 06631 06631020 14571 381 Europe/Berlin 2011-07-31
-2854707 Petersberg Petersberg 49.23333 7.56667 P PPLA4 DE 08 00 07340 07340037 0 372 Europe/Berlin 2011-04-25
-2854737 Petersaurach Petersaurach Petersaurach 49.3 10.75 P PPLA4 DE 02 095 09571 09571190 5116 450 Europe/Berlin 2011-04-25
-2854777 Pessin Pessin 52.64244 12.66681 P PPLA4 DE 11 00 12063 12063240 705 34 Europe/Berlin 2011-04-25
-2854813 Perscheid Perscheid 50.06667 7.7 P PPLA4 DE 08 00 07140 07140116 383 344 Europe/Berlin 2011-04-25
-2854835 Perlin Perlin 53.58333 11.18333 P PPLA4 DE 12 00 13058 13058079 414 49 Europe/Berlin 2011-04-25
-2854840 Perlesreut Perlesreut Berlasreut,Perlesreut 48.78333 13.45 P PPL DE 02 2971 456 Europe/Berlin 2012-01-18
-2854848 Perleberg Perleberg Perleberg 53.06667 11.86667 P PPL DE 11 13102 39 Europe/Berlin 2012-01-18
-2854859 Perl Perl 49.47169 6.38134 P PPLA4 DE 09 00 10042 10042115 0 221 Europe/Berlin 2011-04-25
-2854861 Perkam Perkam 48.85 12.43333 P PPLA4 DE 02 092 09278 09278172 1411 363 Europe/Berlin 2011-04-25
-2854890 Perasdorf Perasdorf 48.95 12.8 P PPLA4 DE 02 092 09278 09278171 646 503 Europe/Berlin 2011-04-25
-2854892 Perach Perach 48.26667 12.76667 P PPLA4 DE 02 091 09171 09171126 1225 387 Europe/Berlin 2011-04-25
-2854906 Penzlin Penzlin Penzlin 53.5 13.08333 P PPL DE 12 2532 46 Europe/Berlin 2012-01-18
-2854910 Penzing Penzing 48.07481 10.92745 P PPLA4 DE 02 091 09181 09181132 3707 612 Europe/Berlin 2011-04-25
-2854912 Penzin Penzin 53.91465 11.92617 P PPLA4 DE 12 00 13053 13053067 0 14 Europe/Berlin 2011-04-25
-2854923 Penzberg Penzberg Penzberg 47.75 11.38333 P PPL DE 02 16079 592 Europe/Berlin 2012-01-18
-2854928 Pentling Pentling 48.98343 12.0587 P PPLA4 DE 02 093 09375 09375180 5485 410 Europe/Berlin 2011-04-25
-2854947 Pennigsehl Pennigsehl 52.64181 9.0263 P PPLA4 DE 06 00 03256 03256023 1364 47 Europe/Berlin 2011-04-25
-2854953 Pennewitz Pennewitz Pennewitz 50.66667 11.05 P PPLA4 DE 15 00 16070 16070042 632 458 Europe/Berlin 2011-04-25
-2854957 Penkun Penkun Penkun 53.3 14.25 P PPL DE 12 2082 34 Europe/Berlin 2012-01-18
-2854958 Penkow Penkow 53.45 12.48333 P PPLA4 DE 12 00 13056 13056052 266 85 Europe/Berlin 2011-04-25
-2854967 Penig Penig Penig 50.93333 12.71667 P PPL DE 13 10557 254 Europe/Berlin 2012-01-18
-2854974 Pemfling Pemfling 49.26667 12.61667 P PPLA4 DE 02 093 09372 09372146 2267 430 Europe/Berlin 2011-04-25
-2854992 Pelm Pelm 50.23333 6.68333 P PPLA4 DE 08 00 07233 07233056 1047 434 Europe/Berlin 2011-04-25
-2854996 Pellworm Pellworm Paelweerm,Pelvorm,Pälweerm 54.5161 8.64512 P PPLA4 DE 10 00 01054 01054103 1152 255 Europe/Berlin 2011-07-31
-2854999 Pellingen Pellingen 49.67552 6.67085 P PPLA4 DE 08 00 07235 07235106 1027 442 Europe/Berlin 2011-04-25
-2855024 Peitz Peitz 51.85841 14.41138 P PPL DE 11 5179 64 Europe/Berlin 2011-07-07
-2855025 Peiting Peiting Peiting 47.8 10.93333 P PPL DE 02 12106 709 Europe/Berlin 2012-01-18
-2855029 Peißenberg Peissenberg Peissenberg,Peißenberg 47.8 11.06667 P PPL DE 02 12695 584 Europe/Berlin 2012-01-18
-2855030 Peissen Peissen Peissen 54.01667 9.6 P PPLA4 DE 10 00 01061 01061084 309 35 Europe/Berlin 2011-04-25
-2855031 Peißen Peissen Peissen,Peißen 51.75 11.76667 P PPL DE 14 1271 70 Europe/Berlin 2012-02-02
-2855032 Peißen Peissen 51.50265 12.05737 P PPL DE 14 00 1091 101 Europe/Berlin 2010-11-22
-2855047 Peine Peine Paane,Peine 52.31667 10.23333 P PPL DE 06 00 03157 03157006 49953 71 Europe/Berlin 2012-01-18
-2855065 Pegnitz Pegnitz Pegnitz 49.75639 11.545 P PPL DE 02 14279 422 Europe/Berlin 2012-02-02
-2855066 Pegestorf Pegestorf 51.92775 9.49682 P PPLA4 DE 06 00 03255 03255032 500 86 Europe/Berlin 2011-04-25
-2855068 Pegau Pegau Pegau 51.16667 12.25 P PPL DE 13 4759 135 Europe/Berlin 2012-01-18
-2855069 Peffingen Peffingen 49.9 6.4 P PPLA4 DE 08 00 07232 07232103 212 249 Europe/Berlin 2011-04-25
-2855091 Peenemünde Peenemunde Peenemuende,Peenemunde,Peenemünde,Penemjunde,bynmwnd,pnmyndh,Пенемюнде,פנמינדה,بينموند 54.13333 13.78333 P PPLA4 DE 12 00 13059 13059075 371 255 Europe/Berlin 2011-04-25
-2855104 Peckfitz Peckfitz 52.50922 11.17996 P PPLA4 DE 14 00 15081 15081405 173 60 Europe/Berlin 2011-07-31
-2855145 Pechbrunn Pechbrunn 49.96667 12.16667 P PPLA4 DE 02 093 09377 09377145 1493 591 Europe/Berlin 2011-04-25
-2855151 Päwesin Pawesin 52.51667 12.71667 P PPLA4 DE 11 00 12069 12069460 603 32 Europe/Berlin 2011-04-25
-2855175 Pausa Pausa Pausa 50.58333 11.98333 P PPL DE 13 3924 436 Europe/Berlin 2012-02-02
-2855177 Paunzhausen Paunzhausen 48.48333 11.56667 P PPLA4 DE 02 091 09178 09178150 1533 484 Europe/Berlin 2011-04-25
-2855215 Paulinenaue Paulinenaue 52.67701 12.71067 P PPLA4 DE 11 00 12063 12063228 1327 29 Europe/Berlin 2011-04-25
-2855226 Patzig Patzig 54.46667 13.4 P PPLA4 DE 12 00 13061 13061026 510 25 Europe/Berlin 2011-04-25
-2855243 Pattensen Pattensen 52.26448 9.76436 P PPL DE 06 13883 67 Europe/Berlin 2010-08-19
-2855272 Patersdorf Patersdorf 49.01667 12.98333 P PPLA4 DE 02 092 09276 09276134 1822 523 Europe/Berlin 2011-04-25
-2855274 Patersberg Patersberg 50.15 7.73333 P PPLA4 DE 08 00 07141 07141109 431 253 Europe/Berlin 2011-04-25
-2855293 Pastetten Pastetten 48.19911 11.94368 P PPLA4 DE 02 091 09177 09177135 2281 505 Europe/Berlin 2011-04-25
-2855300 Passow Passow 53.50683 12.05286 P PPLA4 DE 12 00 13060 13060057 814 60 Europe/Berlin 2011-04-25
-2855301 Passow Passow 53.14286 14.11417 P PPLA4 DE 11 00 12073 12073603 0 13 Europe/Berlin 2011-07-31
-2855317 Passee Passee 53.96667 11.76667 P PPLA4 DE 12 00 13058 13058078 190 91 Europe/Berlin 2011-04-25
-2855328 Passau Passau Batavia Bavariae,Pasawa,Pasov,Passaou,Passau,Passavia,passau,Πάσσαου,Пассау,パッサウ 48.57116 13.44898 P PPL DE 02 092 09262 50560 339 Europe/Berlin 2010-11-15
-2855331 Passade Passade Passade 54.36667 10.31667 P PPLA4 DE 10 00 01057 01057056 300 27 Europe/Berlin 2011-04-25
-2855333 Paska Paska 50.61985 11.62903 P PPLA4 DE 15 00 16075 16075079 140 446 Europe/Berlin 2011-04-25
-2855337 Pasewalk Pasewalk 53.50627 13.98997 P PPL DE 12 00 12120 16 Europe/Berlin 2010-11-22
-2855357 Paschel Paschel 49.63333 6.68333 P PPLA4 DE 08 00 07235 07235105 253 409 Europe/Berlin 2011-04-25
-2855370 Partenstein Partenstein Partenstein 50.05 9.51667 P PPLA4 DE 02 096 09677 09677170 2844 237 Europe/Berlin 2011-04-25
-2855373 Partenheim Partenheim 49.88389 8.08222 P PPLA4 DE 08 00 07331 07331056 1581 184 Europe/Berlin 2011-04-25
-2855388 Parsberg Parsberg Parsberg 49.16083 11.72056 P PPL DE 02 6772 556 Europe/Berlin 2012-01-18
-2855390 Parsau Parsau 52.53471 10.8902 P PPLA4 DE 06 00 03151 03151021 1973 62 Europe/Berlin 2011-11-28
-2855414 Parkstetten Parkstetten 48.91667 12.6 P PPLA4 DE 02 092 09278 09278170 2992 320 Europe/Berlin 2011-04-25
-2855416 Parkstein Parkstein Parkstein 49.73333 12.06667 P PPL DE 02 2289 524 Europe/Berlin 2012-01-18
-2855436 Parchtitz Parchtitz 54.43333 13.4 P PPLA4 DE 12 00 13061 13061025 821 21 Europe/Berlin 2011-04-25
-2855441 Parchim Parchim 53.42631 11.84875 P PPL DE 12 19161 52 Europe/Berlin 2009-05-14
-2855466 Pappenheim Pappenheim Kleinschmalkalden,Pappenheim 50.78333 10.45 P PPL DE 15 1514 516 Europe/Berlin 2012-01-18
-2855467 Pappenheim Pappenheim 48.93383 10.97431 P PPL DE 02 4476 412 Europe/Berlin 2009-06-15
-2855504 Papenhusen Papenhusen 53.86667 11.06667 P PPLA4 DE 12 00 13058 13058076 363 14 Europe/Berlin 2011-04-25
-2855515 Papenhagen Papenhagen 54.14705 12.98086 P PPLA4 DE 12 00 13057 13057065 0 17 Europe/Berlin 2011-04-25
-2855518 Papendorf Papendorf 54.03333 12.13333 P PPLA4 DE 12 00 13051 13051051 2514 6 Europe/Berlin 2011-04-25
-2855521 Papendorf Papendorf 53.49642 13.94697 P PPLA4 DE 12 00 13062 13062042 295 20 Europe/Berlin 2011-04-25
-2855525 Papenburg Papenburg Papenburg 53.06667 7.4 P PPL DE 06 34117 3 Europe/Berlin 2012-01-18
-2855556 Panzweiler Panzweiler 50.01667 7.3 P PPLA4 DE 08 00 07135 07135070 256 439 Europe/Berlin 2011-04-25
-2855563 Pantenburg Pantenburg 50.08333 6.83333 P PPLA4 DE 08 00 07231 07231104 253 407 Europe/Berlin 2011-04-25
-2855564 Panten Panten Panten 53.66667 10.61667 P PPLA4 DE 10 00 01053 01053097 747 16 Europe/Berlin 2011-04-25
-2855565 Pantelitz Pantelitz 54.3 12.96667 P PPLA4 DE 12 00 13057 13057064 753 20 Europe/Berlin 2011-04-25
-2855574 Panschwitz-Kuckau Panschwitz-Kuckau Panschwitz-Kuckau 51.23333 14.2 P PPLA4 DE 13 146 14625 14625440 2242 174 Europe/Berlin 2011-04-25
-2855598 Berlin Pankow Berlin Pankow Pankow 52.56926 13.40186 P PPLX DE DE 16 00 356019 47 Europe/Berlin 2010-11-22
-2855602 Panker Panker Panker 54.33333 10.56667 P PPLA4 DE 10 00 01057 01057055 1601 53 Europe/Berlin 2011-04-25
-2855623 Pampow Pampow 53.75 12.6 P PPL DE 12 3037 52 Europe/Berlin 2006-01-17
-2855624 Pampow Pampow 53.56667 11.36667 P PPLA4 DE 12 00 13054 13054084 316 47 Europe/Berlin 2011-04-25
-2855632 Palzem Palzem 49.56667 6.36667 P PPLA4 DE 08 00 07235 07235104 1269 140 Europe/Berlin 2011-04-25
-2855665 Palling Palling Palling 48 12.63333 P PPLA4 DE 02 091 09189 09189134 3416 531 Europe/Berlin 2011-04-25
-2855681 Paitzdorf Paitzdorf 50.85 12.21667 P PPLA4 DE 15 00 16076 16076055 423 296 Europe/Berlin 2011-04-25
-2855683 Painten Painten Painten 49 11.81667 P PPL DE 02 2280 498 Europe/Berlin 2012-01-18
-2855704 Pahlen Pahlen Pahlen 54.26667 9.3 P PPLA4 DE 10 00 01051 01051088 1206 14 Europe/Berlin 2011-04-25
-2855707 Pähl Pahl 47.9 11.18333 P PPLA4 DE 02 091 09190 09190138 2377 582 Europe/Berlin 2011-04-25
-2855737 Padingbüttel Padingbuttel 53.7 8.53333 P PPLA4 DE 06 00 03352 03352047 480 1 Europe/Berlin 2011-04-25
-2855745 Paderborn Paderborn Paderborn,Patterbuorn,padaborun,Падерборн,パーダーボルン 51.71905 8.75439 P PPL DE 07 057 142161 118 Europe/Berlin 2010-11-15
-2855747 Padenstedt Padenstedt Padenstedt 54.05 9.91667 P PPLA4 DE 10 00 01058 01058128 1326 13 Europe/Berlin 2011-04-25
-2855794 Oyten Oyten 53.05 9.01667 P PPLA4 DE 06 00 03361 03361009 15286 24 Europe/Berlin 2011-07-31
-2855820 Owschlag Owschlag Owschlag 54.38333 9.6 P PPLA4 DE 10 00 01058 01058127 3603 12 Europe/Berlin 2011-04-25
-2855823 Owingen Owingen 47.8 9.16667 P PPLA4 DE 01 084 08435 08435047 4207 570 Europe/Berlin 2011-04-25
-2855824 Owen Owen Auen,Owen 48.58333 9.45 P PPL DE 01 3569 393 Europe/Berlin 2012-01-18
-2855834 Oeversee Oeversee Oeversee,Oversee,Översee 54.7 9.43333 P PPLA4 DE 10 00 01059 01059184 1996 29 Europe/Berlin 2011-04-25
-2855859 Overath Overath 50.93275 7.28389 P PPL DE 07 27203 96 Europe/Berlin 2010-02-01
-2855862 Oevenum Oevenum OEoewenem,Ovenum,Övenum,Ööwenem 54.71024 8.53174 P PPLA4 DE 10 00 01054 01054094 518 6 Europe/Berlin 2011-04-25
-2855881 Ovelgönne Ovelgonne 53.34189 8.42179 P PPLA4 DE 06 00 03461 03461008 5756 3 Europe/Berlin 2011-07-31
-2855895 Utscheid Utscheid Outscheid,Utscheid 50 6.35 P PPLA4 DE 08 00 07232 07232102 535 395 Europe/Berlin 2011-04-25
-2855898 Otzweiler Otzweiler 49.71667 7.51667 P PPLA4 DE 08 00 07133 07133077 227 323 Europe/Berlin 2011-04-25
-2855901 Ötzingen Otzingen 50.5 7.83333 P PPLA4 DE 08 00 07143 07143060 1363 323 Europe/Berlin 2011-04-25
-2855902 Otzing Otzing 48.76667 12.81667 P PPLA4 DE 02 092 09271 09271143 1956 328 Europe/Berlin 2011-04-25
-2855917 Ottweiler Ottweiler 49.40133 7.16424 P PPL DE 09 00 15503 254 Europe/Berlin 2010-11-22
-2855923 Ottrau Ottrau 50.8 9.38333 P PPLA4 DE 05 066 06634 06634020 2496 367 Europe/Berlin 2011-04-25
-2855935 Ottobrunn Ottobrunn 48.06489 11.66327 P PPLA4 DE 02 091 09184 09184136 19204 558 Europe/Berlin 2011-04-25
-2855937 Ottobeuren Ottobeuren Ottobeuren 47.93333 10.3 P PPL DE 02 8095 659 Europe/Berlin 2012-01-18
-2855967 Otting Otting Otting 48.88333 10.8 P PPLA4 DE 02 097 09779 09779198 819 495 Europe/Berlin 2011-04-25
-2855982 Otterwisch Otterwisch 51.2 12.61667 P PPLA4 DE 13 147 14729 14729330 1552 154 Europe/Berlin 2011-04-25
-2855984 Ottersweier Ottersweier 48.67022 8.11323 P PPLA4 DE 01 082 08216 08216041 6441 140 Europe/Berlin 2011-07-31
-2855992 Otterstadt Otterstadt 49.37222 8.44778 P PPLA4 DE 08 00 07338 07338021 3282 99 Europe/Berlin 2011-04-25
-2855999 Ottersheim Ottersheim 49.62556 8.10861 P PPLA4 DE 08 00 07333 07333058 379 221 Europe/Berlin 2011-04-25
-2856000 Ottersheim Ottersheim 49.19083 8.23028 P PPL DE 08 1798 127 Europe/Berlin 2006-01-17
-2856014 Ottersberg Ottersberg Ottersberg 53.1 9.15 P PPL DE 06 12205 8 Europe/Berlin 2012-01-18
-2856024 Otterndorf Otterndorf Otterndorf 53.8 8.9 P PPL DE 06 6965 0 Europe/Berlin 2012-01-18
-2856038 Otterfing Otterfing 47.90898 11.67546 P PPLA4 DE 02 091 09182 09182127 4383 677 Europe/Berlin 2011-04-25
-2856042 Otterberg Otterberg 49.5 7.76667 P PPL DE 08 5215 273 Europe/Berlin 2006-01-17
-2856057 Otterbach Otterbach 49.48333 7.75 P PPLA4 DE 08 00 07335 07335034 4087 271 Europe/Berlin 2011-07-31
-2856061 Otter Otter 53.24015 9.74247 P PPLA4 DE 06 00 03353 03353027 1443 56 Europe/Berlin 2011-07-31
-2856070 Ottenstein Ottenstein Ottenstein 51.95 9.4 P PPL DE 06 1296 301 Europe/Berlin 2012-02-02
-2856073 Ottensoos Ottensoos 49.50949 11.34158 P PPLA4 DE 02 095 09574 09574146 2051 336 Europe/Berlin 2011-04-25
-2856083 Ottenhöfen im Schwarzwald Ottenhofen im Schwarzwald Ottenhofen im Schwarzwald,Ottenhöfen im Schwarzwald 48.56667 8.15 P PPLA4 DE 01 083 08317 08317102 0 294 Europe/Berlin 2011-04-25
-2856085 Ottenhofen Ottenhofen 48.21667 11.88333 P PPLA4 DE 02 091 09177 09177134 1720 490 Europe/Berlin 2011-04-25
-2856086 Ottenhofen Ottenhofen 48.73333 8.13333 P PPL DE 01 3311 127 Europe/Berlin 2006-01-17
-2856107 Ottendorf-Okrilla Ottendorf-Okrilla Ottendorf-Okrilla 51.18333 13.83333 P PPLA4 DE 13 146 14625 14625430 10093 176 Europe/Berlin 2011-04-25
-2856110 Ottendorf Ottendorf 54.35 10.05 P PPLA4 DE 10 00 01058 01058126 836 22 Europe/Berlin 2011-04-25
-2856119 Ottendorf Ottendorf 50.83333 11.81667 P PPLA4 DE 15 00 16074 16074066 429 330 Europe/Berlin 2011-04-25
-2856125 Ottenbüttel Ottenbuttel Ottenbuttel,Ottenbüttel 53.97107 9.50416 P PPLA4 DE 10 00 01061 01061083 746 12 Europe/Berlin 2011-04-25
-2856139 Ottenbach Ottenbach 48.73649 9.74844 P PPLA4 DE 01 081 08117 08117037 2459 391 Europe/Berlin 2011-04-25
-2856159 Ötisheim Otisheim 48.96667 8.8 P PPLA4 DE 01 082 08236 08236050 4827 237 Europe/Berlin 2011-04-25
-2856162 Ötigheim Otigheim 48.89085 8.23442 P PPLA4 DE 01 082 08216 08216039 4386 121 Europe/Berlin 2011-04-25
-2856184 Oststeinbek Oststeinbek Oststeinbek 53.55 10.16667 P PPLA4 DE 10 00 01062 01062053 7858 22 Europe/Berlin 2011-04-25
-2856189 Ostseebad Sellin Ostseebad Sellin Zellin,Зеллин 54.37846 13.69394 P PPL DE 12 00 2358 14 Europe/Berlin 2010-11-22
-2856191 Ostseebad Prerow Ostseebad Prerow Ostseebad Prerow am Darss,Ostseebad Prerow am Darß,Prerow 54.44469 12.57677 P PPL DE 12 1728 1 Europe/Berlin 2008-07-27
-2856193 Ostseebad Kühlungsborn Ostseebad Kuhlungsborn Arendsee,Kuhlungsborn,Kühlungsborn,Ostseebad Kuhlungsborn,Ostseebad Kühlungsborn 54.15 11.75 P PPL DE 12 7453 21 Europe/Berlin 2012-01-18
-2856194 Seeheilbad Graal-Müritz Seeheilbad Graal-Muritz Graal-Muritz,Graal-Müritz,Ostseebad Graal-Muritz,Ostseebad Graal-Müritz 54.25124 12.25139 P PPL DE 12 4242 6 Europe/Berlin 2009-01-27
-2856195 Ostseebad Göhren Ostseebad Gohren Gohren,Göhren 54.3414 13.73823 P PPL DE 12 00 1280 36 Europe/Berlin 2010-11-22
-2856196 Ostseebad Dierhagen Ostseebad Dierhagen Dierhagen 54.29243 12.35799 P PPL DE 12 1691 1 Europe/Berlin 2009-01-27
-2856197 Ostseebad Boltenhagen Ostseebad Boltenhagen Boltenhagen 53.98779 11.20193 P PPL DE 12 2574 2 Europe/Berlin 2010-04-30
-2856198 Ostseebad Binz Ostseebad Binz Binc,Binz,Бинц 54.39995 13.61052 P PPL DE 12 00 5531 5 Europe/Berlin 2010-11-22
-2856203 Ostrohe Ostrohe Ostrohe 54.21667 9.15 P PPLA4 DE 10 00 01051 01051087 972 254 Europe/Berlin 2011-04-25
-2856205 Ostritz Ostritz 51.01451 14.93059 P PPL DE 13 2988 211 Europe/Berlin 2010-09-12
-2856207 Östringen Ostringen Ostringen,Östringen 49.22 8.71222 P PPL DE 01 12880 162 Europe/Berlin 2012-01-18
-2856213 Ostrhauderfehn Ostrhauderfehn 53.13333 7.61667 P PPLA4 DE 06 00 03457 03457017 10699 1 Europe/Berlin 2011-04-25
-2856216 Ostrau Ostrau 51.2 13.16667 P PPLA4 DE 13 145 14522 14522450 0 159 Europe/Berlin 2011-04-25
-2856217 Ostrau Ostrau 51.2 12.88333 P PPL DE 13 4390 173 Europe/Berlin 2006-01-17
-2856220 Ostramondra Ostramondra 51.2 11.33333 P PPLA4 DE 15 00 16068 16068041 580 193 Europe/Berlin 2011-04-25
-2856222 Ostrach Ostrach Ostrach 47.95 9.38333 P PPLA4 DE 01 084 08437 08437086 6841 610 Europe/Berlin 2011-04-25
-2856231 Ostochtersum Ostochtersum 53.60605 7.52649 P PPLA4 DE 06 00 03462 03462012 0 2 Europe/Berlin 2011-03-16
-2856278 Osthofen Osthofen Osthofen 49.70778 8.32889 P PPL DE 08 8758 95 Europe/Berlin 2012-01-18
-2856284 Ostheim vor der Rhön Ostheim vor der Rhon Ostheim v.d. Rhoen,Ostheim v.d. Rhön,Ostheim vor der Rhon,Ostheim vor der Rhön 50.46667 10.21667 P PPL DE 02 3729 330 Europe/Berlin 2012-01-18
-2856317 Osterzell Osterzell 47.88333 10.75 P PPLA4 DE 02 097 09777 09777157 688 720 Europe/Berlin 2011-04-25
-2856330 Osterwieck Osterwieck Osterwieck 51.96667 10.71667 P PPL DE 14 3837 119 Europe/Berlin 2012-01-18
-2856374 Osterstedt Osterstedt Osterstedt 54.11667 9.56667 P PPLA4 DE 10 00 01058 01058125 668 16 Europe/Berlin 2011-04-25
-2856377 Osterspai Osterspai Osterspai 50.25 7.61667 P PPLA4 DE 08 00 07141 07141108 1351 69 Europe/Berlin 2011-04-25
-2856390 Osterrönfeld Osterronfeld Osterronfeld,Osterrönfeld 54.28333 9.7 P PPLA4 DE 10 00 01058 01058124 5213 4 Europe/Berlin 2011-04-25
-2856396 Osterrade Osterrade 54.2 9.35 P PPLA4 DE 10 00 01051 01051086 0 15 Europe/Berlin 2011-04-25
-2856398 Oster-Ohrstedt Oster-Ohrstedt Oster-Ohrstedt 54.51514 9.22189 P PPLA4 DE 10 00 01054 01054101 697 29 Europe/Berlin 2011-08-25
-2856413 Osternienburg Osternienburg 51.8 12.03333 P PPL DE 14 2179 70 Europe/Berlin 2006-01-17
-2856493 Osterhorn Osterhorn Osterhorn 53.86667 9.7 P PPLA4 DE 10 00 01056 01056038 441 6 Europe/Berlin 2011-04-25
-2856500 Osterholz-Scharmbeck Osterholz-Scharmbeck Osterholz-Scharmbeck,Stadt Osterholz-Scharmbeck 53.23333 8.8 P PPL DE 06 31405 30 Europe/Berlin 2012-01-18
-2856530 Osterhofen Osterhofen Osterhofen 48.7 13.01667 P PPL DE 02 11870 315 Europe/Berlin 2012-01-18
-2856548 Osterhever Osterhever Osterhever 54.38547 8.766 P PPLA4 DE 10 00 01054 01054100 249 1 Europe/Berlin 2011-08-25
-2856562 Osterhausen Osterhausen Grossosterhausen,Großosterhausen,Osterhausen 51.45 11.5 P PPL DE 14 1087 162 Europe/Berlin 2012-01-18
-2856591 Osterfeld Osterfeld Osterfeld 51.06667 11.93333 P PPL DE 14 1365 225 Europe/Berlin 2012-01-18
-2856611 Ostereistedt Ostereistedt 53.3 9.16667 P PPLA4 DE 06 00 03357 03357036 995 32 Europe/Berlin 2011-04-25
-2856619 Oesterdeichstrich Oesterdeichstrich Oesterdeichstrich,Osterdeichstrich,Österdeichstrich 54.15 8.88333 P PPLA4 DE 10 00 01051 01051084 274 0 Europe/Berlin 2011-04-25
-2856629 Ostercappeln Ostercappeln Ostercappeln 52.35 8.23333 P PPLA4 DE 06 00 03459 03459029 9605 124 Europe/Berlin 2011-04-25
-2856635 Osterby Osterby 54.8 9.21667 P PPLA4 DE 10 00 01059 01059151 0 35 Europe/Berlin 2011-04-25
-2856636 Osterby Osterby 54.45 9.75 P PPLA4 DE 10 00 01058 01058123 906 21 Europe/Berlin 2011-04-25
-2856637 Osterburken Osterburken Osterburken 49.43056 9.42389 P PPL DE 01 6371 252 Europe/Berlin 2012-01-18
-2856639 Osterburg Osterburg 52.78333 11.76667 P PPL DE 14 7231 19 Europe/Berlin 2006-01-17
-2856647 Osterbruch Osterbruch 53.78333 8.95 P PPLA4 DE 06 00 03352 03352045 583 253 Europe/Berlin 2011-04-25
-2856669 Osterberg Osterberg 48.15 10.16667 P PPLA4 DE 02 097 09775 09775142 873 591 Europe/Berlin 2011-04-25
-2856765 Ostenfeld Ostenfeld 54.46667 9.23333 P PPL DE 10 1512 49 Europe/Berlin 2006-01-17
-2856792 Osten Osten Osten 53.7 9.2 P PPLA4 DE 06 00 03352 03352044 2030 252 Europe/Berlin 2011-04-25
-2856798 Ostelsheim Ostelsheim 48.72633 8.84816 P PPLA4 DE 01 082 08235 08235057 2541 460 Europe/Berlin 2011-04-25
-2856801 Osteel Osteel 53.53333 7.26667 P PPLA4 DE 06 00 03452 03452021 2383 3 Europe/Berlin 2011-07-31
-2856816 Ostbevern Ostbevern Ostbevern 52.05 7.85 P PPLA4 DE 07 055 05570 05570032 10644 54 Europe/Berlin 2011-07-31
-2856837 Oßmanstedt Ossmanstedt 51.01667 11.43333 P PPL DE 15 1334 187 Europe/Berlin 2006-01-27
-2856839 Oßling Ossling 51.35999 14.16567 P PPLA4 DE 13 146 14625 14625420 2622 164 Europe/Berlin 2012-01-20
-2856883 Osnabrück Osnabruck Osnabrik,Osnabrjuk,Osnabruck,Osnabrueck,Osnabruga,Osnabrugensis,Osnabrück,Ossenbruegge,Ossenbrügge,ao si na bu lu ke,awsnabrwk,oseunabeulwikeu,osunaburyukku,Оснабрик,Оснабрюк,أوسنابروك,ოსნაბრიუკი,オスナブリュック,奥斯纳布吕克,오스나브뤼크 52.26667 8.05 P PPL DE 06 166462 68 Europe/Berlin 2012-01-18
-2856888 Osloß Osloss 52.46925 10.68011 P PPLA4 DE 06 00 03151 03151020 1990 57 Europe/Berlin 2011-04-25
-2856917 Osdorf Osdorf 54.43333 10.01667 P PPLA4 DE 10 00 01058 01058121 2407 21 Europe/Berlin 2011-04-25
-2856930 Oschersleben Oschersleben 52.03333 11.25 P PPL DE 14 17900 84 Europe/Berlin 2006-01-17
-2856939 Oeschebüttel Oeschebuttel Oeschebuttel,Oeschebüttel,Oschebuttel,Öschebüttel 53.98912 9.72128 P PPLA4 DE 10 00 01061 01061080 224 40 Europe/Berlin 2011-09-05
-2856944 Oschatz Oschatz Oschatz 51.3 13.11667 P PPL DE 13 16000 126 Europe/Berlin 2012-01-18
-2856950 Osburg Osburg 49.71667 6.78333 P PPLA4 DE 08 00 07235 07235103 2327 438 Europe/Berlin 2011-04-25
-2856975 Ortrand Ortrand 51.37505 13.75982 P PPL DE 11 00 2507 107 Europe/Berlin 2010-11-22
-2857011 Ortenburg Ortenburg Ortenburg 48.55 13.23333 P PPL DE 02 7317 421 Europe/Berlin 2012-01-18
-2857012 Ortenberg Ortenberg Ortenberg,Ortenburg 50.35 9.05 P PPL DE 05 9155 195 Europe/Berlin 2012-01-18
-2857013 Ortenberg Ortenberg 48.45158 7.97178 P PPLA4 DE 01 083 08317 08317100 3284 166 Europe/Berlin 2011-04-25
-2857037 Orsingen-Nenzingen Orsingen-Nenzingen 47.83333 8.96667 P PPLA4 DE 01 083 08335 08335099 3093 455 Europe/Berlin 2011-07-31
-2857039 Orsfeld Orsfeld 50.03333 6.61667 P PPLA4 DE 08 00 07232 07232101 161 434 Europe/Berlin 2011-04-25
-2857042 Oersdorf Oersdorf Oersdorf,Orsdorf,Örsdorf 53.83333 9.98333 P PPLA4 DE 10 00 01060 01060066 890 28 Europe/Berlin 2011-04-25
-2857044 Orscholz Orscholz 49.50593 6.52502 P PPL DE 09 00 3609 412 Europe/Berlin 2010-11-22
-2857047 Oersberg Oersberg Oersberg,Orsberg,Örsberg 54.66667 9.85 P PPLA4 DE 10 00 01059 01059067 323 34 Europe/Berlin 2011-04-25
-2857062 Ornbau Ornbau Ornbau 49.16667 10.65 P PPL DE 02 1730 419 Europe/Berlin 2012-01-18
-2857066 Ormont Ormont 50.33333 6.45 P PPLA4 DE 08 00 07233 07233232 378 540 Europe/Berlin 2011-04-25
-2857074 Orlenbach Orlenbach 50.16667 6.38333 P PPLA4 DE 08 00 07232 07232290 225 541 Europe/Berlin 2011-04-25
-2857075 Oerlenbach Oerlenbach Oerlenbach,Orlenbach,Örlenbach 50.15 10.13333 P PPLA4 DE 02 096 09672 09672140 5411 325 Europe/Berlin 2011-04-25
-2857080 Orlamünde Orlamunde Orlamunde,Orlamünde 50.78333 11.51667 P PPL DE 15 1283 299 Europe/Berlin 2012-01-18
-2857094 Orfgen Orfgen 50.66667 7.53333 P PPLA4 DE 08 00 07132 07132088 278 243 Europe/Berlin 2011-04-25
-2857098 Orenhofen Orenhofen 49.9 6.65 P PPLA4 DE 08 00 07232 07232289 1326 341 Europe/Berlin 2011-04-25
-2857105 Oerel Oerel Oerel,Orel,Örel 53.48333 9.05 P PPLA4 DE 06 00 03357 03357035 1854 23 Europe/Berlin 2011-04-25
-2857114 Orbis Orbis 49.7 8 P PPLA4 DE 08 00 07333 07333057 745 319 Europe/Berlin 2011-04-25
-2857129 Oranienburg Oranienburg Oranienburg,Ораниенбург,אורניינבורג 52.75 13.23333 P PPL DE 11 40793 36 Europe/Berlin 2012-01-18
-2857131 Oranienbaum Oranienbaum Oranienbaum 51.8 12.4 P PPL DE 14 3476 71 Europe/Berlin 2012-01-18
-2857134 Oppurg Oppurg 50.71065 11.65289 P PPLA4 DE 15 00 16075 16075077 1325 218 Europe/Berlin 2011-04-25
-2857142 Oppin Oppin Oppin 51.55 12.03333 P PPL DE 14 1563 116 Europe/Berlin 2012-01-18
-2857147 Oppertshausen Oppertshausen 49.95 7.46667 P PPLA4 DE 08 00 07140 07140115 125 374 Europe/Berlin 2011-04-25
-2857151 Oppershausen Oppershausen 51.13333 10.45 P PPLA4 DE 15 00 16064 16064053 369 233 Europe/Berlin 2011-04-25
-2857159 Oppenweiler Oppenweiler 48.9827 9.4585 P PPLA4 DE 01 081 08119 08119053 4295 264 Europe/Berlin 2011-04-25
-2857167 Oppenheim Oppenheim 49.8547 8.35974 P PPL DE 08 6789 88 Europe/Berlin 2008-11-13
-2857172 Oppenau Oppenau Oppenau 48.48333 8.16667 P PPL DE 01 4973 498 Europe/Berlin 2012-01-18
-2857182 Oppach Oppach Oppach 51.06667 14.5 P PPLA4 DE 13 146 14626 14626410 3060 332 Europe/Berlin 2011-04-25
-2857185 Opladen Opladen Opladen,Опладен 51.06667 7.01667 P PPL DE 07 23000 72 Europe/Berlin 2012-01-18
-2857197 Öpfingen Opfingen 48.28636 9.80259 P PPLA4 DE 01 084 08425 08425093 2312 504 Europe/Berlin 2011-04-25
-2857205 Opfenbach Opfenbach 47.63333 9.83333 P PPLA4 DE 02 097 09776 09776122 2260 566 Europe/Berlin 2011-04-25
-2857224 Onsdorf Onsdorf 49.65 6.48333 P PPLA4 DE 08 00 07235 07235101 151 312 Europe/Berlin 2011-04-25
-2857260 Olzheim Olzheim 50.26667 6.46667 P PPLA4 DE 08 00 07232 07232288 533 565 Europe/Berlin 2011-04-25
-2857276 Ölsen Olsen 50.73333 7.6 P PPLA4 DE 08 00 07132 07132087 99 337 Europe/Berlin 2011-04-25
-2857281 Olsdorf Olsdorf 49.95354 6.3822 P PPLA4 DE 08 00 07232 07232100 108 341 Europe/Berlin 2011-04-25
-2857289 Olsbrücken Olsbrucken 49.53333 7.65 P PPLA4 DE 08 00 07335 07335033 1187 324 Europe/Berlin 2011-04-25
-2857291 Olsberg Olsberg Olsberg 51.35 8.5 P PPL DE 07 15814 423 Europe/Berlin 2012-01-18
-2857306 Olpe Olpe Olpe 51.03333 7.85 P PPL DE 07 25686 341 Europe/Berlin 2012-01-18
-2857311 Olmscheid Olmscheid 50.06667 6.21667 P PPLA4 DE 08 00 07232 07232287 163 476 Europe/Berlin 2011-04-25
-2857316 Ollmuth Ollmuth 49.66667 6.71667 P PPLA4 DE 08 00 07235 07235100 162 365 Europe/Berlin 2011-04-25
-2857317 Öllingen Ollingen 48.52868 10.14759 P PPLA4 DE 01 084 08425 08425092 512 521 Europe/Berlin 2011-04-25
-2857328 Ollendorf Ollendorf 51.03333 11.18333 P PPLA4 DE 15 00 16068 16068039 487 201 Europe/Berlin 2011-04-25
-2857347 Oelixdorf Oelixdorf Oelixdorf,Olixdorf,Ölixdorf 53.93333 9.56667 P PPLA4 DE 10 00 01061 01061079 1735 23 Europe/Berlin 2011-04-25
-2857363 Olfen Olfen Olfen 51.7 7.4 P PPL DE 07 12133 50 Europe/Berlin 2012-01-18
-2857388 Oldisleben Oldisleben Oldisleben 51.3 11.16667 P PPLA4 DE 15 00 16065 16065054 2476 176 Europe/Berlin 2011-04-25
-2857399 Olderup Olderup Olderup 54.53333 9.11667 P PPLA4 DE 10 00 01054 01054097 466 13 Europe/Berlin 2011-04-25
-2857407 Oldersbek Oldersbek Oldersbeck,Oldersbek 54.44679 9.16929 P PPLA4 DE 10 00 01054 01054096 626 11 Europe/Berlin 2012-01-05
-2857410 Oldenswort Oldenswort Oldenswort 54.37243 8.93996 P PPLA4 DE 10 00 01054 01054095 1278 4 Europe/Berlin 2011-08-25
-2857416 Oldenhütten Oldenhutten Oldenhutten,Oldenhütten 54.15 9.73333 P PPLA4 DE 10 00 01058 01058120 142 43 Europe/Berlin 2011-04-25
-2857429 Oldendorf Oldendorf 53.95341 9.45858 P PPLA4 DE 10 00 01061 01061082 1210 15 Europe/Berlin 2011-04-25
-2857432 Oldendorf Oldendorf 53.58333 9.25 P PPLA4 DE 06 00 03359 03359036 2834 7 Europe/Berlin 2011-04-25
-2857438 Oldendorf Oldendorf 53.15 10.21667 P PPL DE 06 1019 46 Europe/Berlin 2006-01-17
-2857447 Oldenbüttel Oldenbuttel 54.16667 9.45 P PPLA4 DE 10 00 01058 01058119 320 3 Europe/Berlin 2011-04-25
-2857451 Oldenburg in Holstein Oldenburg in Holstein Oldenburg in Holstein 54.3 10.88333 P PPL DE 10 9940 255 Europe/Berlin 2012-01-18
-2857458 Oldenburg Oldenburg Aldinborg,Ol'denburg,Oldenbourg,Oldenburg,Oldenburgo,Ollnborg,awldnbwrgh,oldenbuleukeu,oldenburgi,orudenburuku,Ольденбург,أولدنبورغ,ოლდენბურგი,オルデンブルク,올덴부르크 53.16667 8.2 P PPL DE 06 159218 10 Europe/Berlin 2012-01-18
-2857464 Oldenborstel Oldenborstel Oldenborstel 54.06667 9.51667 P PPLA4 DE 10 00 01061 01061081 141 25 Europe/Berlin 2011-04-25
-2857472 Olching Olching 48.2 11.33333 P PPLA4 DE 02 091 09179 09179142 23978 509 Europe/Berlin 2011-04-25
-2857479 Olbersleben Olbersleben 51.15 11.33333 P PPLA4 DE 15 00 16068 16068038 785 156 Europe/Berlin 2011-04-25
-2857481 Olbersdorf Olbersdorf 50.88333 14.76667 P PPLA4 DE 13 146 14626 14626400 5948 281 Europe/Berlin 2011-04-25
-2857484 Olbernhau Olbernhau Olbernhau 50.66667 13.33333 P PPL DE 13 11162 493 Europe/Berlin 2012-01-18
-2857547 Ohrum Ohrum 52.12084 10.56284 P PPLA4 DE 06 00 03158 03158023 631 81 Europe/Berlin 2011-07-31
-2857565 Öhringen Ohringen Ohringen,Öhringen 49.20167 9.50389 P PPL DE 01 22765 237 Europe/Berlin 2012-02-28
-2857582 Ohrenbach Ohrenbach 49.46667 10.21667 P PPLA4 DE 02 095 09571 09571188 663 417 Europe/Berlin 2011-04-25
-2857603 Ohorn Ohorn 51.18333 14.05 P PPLA4 DE 13 146 14625 14625410 2500 362 Europe/Berlin 2011-04-25
-2857610 Öhningen Ohningen Ohningen,Öhningen 47.66667 8.9 P PPLA4 DE 01 083 08335 08335061 3761 479 Europe/Berlin 2011-04-25
-2857619 Ohne Ohne 52.26667 7.28333 P PPLA4 DE 06 00 03456 03456016 567 37 Europe/Berlin 2011-04-25
-2857637 Ohmden Ohmden 48.65 9.51667 P PPLA4 DE 01 081 08116 08116053 1733 370 Europe/Berlin 2011-04-25
-2857643 Ohmbach Ohmbach 49.45 7.35 P PPLA4 DE 08 00 07336 07336076 864 260 Europe/Berlin 2011-04-25
-2857646 Ohlweiler Ohlweiler 49.96667 7.5 P PPLA4 DE 08 00 07140 07140113 338 323 Europe/Berlin 2011-04-25
-2857649 Ohlstadt Ohlstadt 47.63333 11.23333 P PPLA4 DE 02 091 09180 09180127 3368 669 Europe/Berlin 2011-04-25
-2857650 Ohlsdorf Ohlsdorf Ohlsdoerp,Ohlsdorf,Ohlsdörp 53.62594 10.03145 P PPLX DE 04 14942 11 Europe/Berlin 2011-08-21
-2857653 Ohlsbach Ohlsbach 48.43222 7.99384 P PPLA4 DE 01 083 08317 08317097 3176 174 Europe/Berlin 2011-04-25
-2857673 Ohlenhard Ohlenhard 50.45 6.76667 P PPLA4 DE 08 00 07131 07131062 162 489 Europe/Berlin 2011-04-25
-2857741 Oggelshausen Oggelshausen 48.06667 9.65 P PPLA4 DE 01 084 08426 08426090 954 581 Europe/Berlin 2011-04-25
-2857752 Oftersheim Oftersheim 49.36528 8.58306 P PPLA4 DE 01 082 08226 08226062 10100 103 Europe/Berlin 2011-04-25
-2857753 Ofterschwang Ofterschwang 47.5 10.23333 P PPLA4 DE 02 097 09780 09780134 2021 910 Europe/Berlin 2011-04-25
-2857756 Ofterdingen Ofterdingen 48.41667 9.03333 P PPLA4 DE 01 084 08416 08416031 4329 429 Europe/Berlin 2011-04-25
-2857765 Offstein Offstein 49.60611 8.23806 P PPLA4 DE 08 00 07331 07331054 1891 127 Europe/Berlin 2011-04-25
-2857770 Offingen Offingen Offingen 48.48333 10.36667 P PPL DE 02 4099 436 Europe/Berlin 2012-01-18
-2857790 Offenheim Offenheim 49.72556 8.03028 P PPLA4 DE 08 00 07331 07331053 602 243 Europe/Berlin 2011-04-25
-2857791 Offenhausen Offenhausen 49.44971 11.41316 P PPLA4 DE 02 095 09574 09574145 1616 389 Europe/Berlin 2011-04-25
-2857797 Offenbüttel Offenbuttel Offenbuttel,Offenbüttel 54.16667 9.35 P PPLA4 DE 10 00 01051 01051085 294 12 Europe/Berlin 2011-04-25
-2857798 Offenburg Offenburg Offenbourg,Offenburg,Оффенбург 48.48333 7.93333 P PPL DE 01 59238 149 Europe/Berlin 2012-01-18
-2857800 Offenberg Offenberg 48.86195 12.86293 P PPLA4 DE 02 092 09271 09271140 3364 316 Europe/Berlin 2011-08-22
-2857803 Offenbach an der Queich Offenbach an der Queich Offenbach,Offenbach an der Queich 49.20222 8.18111 P PPLA4 DE 08 00 07337 07337061 6097 129 Europe/Berlin 2011-04-25
-2857807 Offenbach Offenbach 50.1 8.76667 P PPL DE 05 119192 109 Europe/Berlin 2006-01-17
-2857810 Offenau Offenau Offenau 49.24583 9.16056 P PPLA4 DE 01 081 08125 08125079 2748 150 Europe/Berlin 2011-04-25
-2857845 Oetzen Oetzen 53.01917 10.67571 P PPLA4 DE 06 00 03360 03360015 0 50 Europe/Berlin 2011-04-25
-2857847 Oettingen in Bayern Oettingen in Bayern Oettingen,Oettingen in Bayern 48.95 10.6 P PPL DE 02 5336 417 Europe/Berlin 2012-01-18
-2857850 Oettersdorf Oettersdorf Oettersdorf 50.6 11.81667 P PPLA4 DE 15 00 16075 16075076 877 471 Europe/Berlin 2011-04-25
-2857853 Oettern Oettern 50.92251 11.35806 P PPLA4 DE 15 00 16071 16071071 151 246 Europe/Berlin 2011-04-25
-2857900 Oerlinghausen Oerlinghausen 51.95453 8.6622 P PPL DE 07 057 17403 229 Europe/Berlin 2010-11-15
-2857904 Oer-Erkenschwick Oer-Erkenschwick Oer-Erkenschwick 51.63333 7.25 P PPL DE 07 30409 88 Europe/Berlin 2012-01-18
-2857908 Oepfershausen Oepfershausen Oepfershausen 50.65 10.25 P PPLA4 DE 15 00 16066 16066053 534 449 Europe/Berlin 2011-04-25
-2857918 Oelsnitz Oelsnitz 50.71667 12.7 P PPL DE 13 12268 402 Europe/Berlin 2006-01-17
-2857919 Oelsnitz Oelsnitz 50.4147 12.1695 P PPL DE 13 12686 397 Europe/Berlin 2008-08-28
-2857929 Oelsberg Oelsberg 50.19877 7.83694 P PPLA4 DE 08 00 07141 07141107 524 281 Europe/Berlin 2011-12-29
-2857943 Oelde Oelde Oelde,Ol'de,Stadt Oelde,Ольде 51.81667 8.15 P PPL DE 07 29297 105 Europe/Berlin 2012-01-18
-2857967 Oedheim Oedheim Oedheim 49.24028 9.25333 P PPLA4 DE 01 081 08125 08125078 5921 160 Europe/Berlin 2011-04-25
-2857970 Oederan Oederan Oederan 50.86667 13.16667 P PPL DE 13 7143 411 Europe/Berlin 2012-01-18
-2857983 Oechsen Oechsen 50.75 10.06667 P PPLA4 DE 15 00 16063 16063062 685 418 Europe/Berlin 2011-04-25
-2857985 Oebisfelde Oebisfelde Oebisfelde 52.43333 10.98333 P PPL DE 14 7341 66 Europe/Berlin 2012-01-18
-2858013 Odisheim Odisheim 53.68333 8.93333 P PPLA4 DE 06 00 03352 03352043 617 253 Europe/Berlin 2011-04-25
-2858071 Oederquart Oederquart Oderquart,Oederquart,Öderquart 53.80267 9.2368 P PPLA4 DE 06 00 03359 03359035 1251 255 Europe/Berlin 2011-08-26
-2858073 Odernheim Odernheim 49.76667 7.7 P PPL DE 08 1776 142 Europe/Berlin 2006-01-17
-2858092 Oderberg Oderberg 52.86571 14.04508 P PPL DE 11 2546 6 Europe/Berlin 2009-01-28
-2858103 Odenthal Odenthal Odenthal 51.03333 7.11667 P PPLA4 DE 07 053 05378 05378020 15619 83 Europe/Berlin 2011-04-25
-2858145 Odenbach Odenbach 49.68333 7.65 P PPLA4 DE 08 00 07336 07336074 926 153 Europe/Berlin 2011-04-25
-2858149 Odelzhausen Odelzhausen 48.30889 11.19889 P PPLA4 DE 02 091 09174 09174135 4275 503 Europe/Berlin 2011-07-31
-2858154 Odderade Odderade Odderade 54.13333 9.18333 P PPLA4 DE 10 00 01051 01051083 308 9 Europe/Berlin 2011-04-25
-2858231 Ockholm Ockholm Ockholm 54.66667 8.83333 P PPLA4 DE 10 00 01054 01054093 356 254 Europe/Berlin 2011-04-25
-2858233 Ockfen Ockfen 49.61667 6.58333 P PPLA4 DE 08 00 07235 07235098 655 243 Europe/Berlin 2011-04-25
-2858239 Ockenheim Ockenheim 49.94371 7.97127 P PPLA4 DE 08 00 07339 07339048 2295 117 Europe/Berlin 2011-07-31
-2858241 Ockenfels Ockenfels 50.5761 7.27535 P PPLA4 DE 08 00 07138 07138055 1101 179 Europe/Berlin 2012-02-15
-2858245 Ochtrup Ochtrup Ochtrup 52.21667 7.18333 P PPL DE 07 19441 60 Europe/Berlin 2012-01-18
-2858253 Ochtendung Ochtendung Ochtendung 50.35 7.38333 P PPLA4 DE 08 00 07137 07137086 5207 182 Europe/Berlin 2011-04-25
-2858326 Ochsenhausen Ochsenhausen Ochsenhausen 48.06667 9.95 P PPL DE 01 8950 592 Europe/Berlin 2012-01-18
-2858333 Ochsenfurt Ochsenfurt 49.66429 10.06227 P PPL DE 02 11492 190 Europe/Berlin 2010-06-07
-2858416 Obrigheim Obrigheim Obrigheim 49.59222 8.20444 P PPL DE 08 2809 139 Europe/Berlin 2012-02-02
-2858417 Obrigheim Obrigheim Obrigheim 49.35194 9.09083 P PPLA4 DE 01 082 08225 08225074 5299 150 Europe/Berlin 2011-04-25
-2858424 Obing Obing 48.00049 12.40528 P PPLA4 DE 02 091 09189 09189133 3938 567 Europe/Berlin 2011-07-31
-2858426 Obhausen Obhausen Obhausen 51.4 11.66667 P PPLA4 DE 14 00 15088 15088265 1955 158 Europe/Berlin 2011-04-25
-2858437 Oberzissen Oberzissen 50.45 7.2 P PPLA4 DE 08 00 07131 07131060 1069 291 Europe/Berlin 2011-04-25
-2858476 Oberwörresbach Oberworresbach 49.78333 7.31667 P PPLA4 DE 08 00 07134 07134067 163 442 Europe/Berlin 2011-04-25
-2858484 Oberwolfach Oberwolfach 48.31667 8.21667 P PPLA4 DE 01 083 08317 08317093 2758 288 Europe/Berlin 2011-04-25
-2858539 Oberwiesen Oberwiesen 49.7 7.96667 P PPLA4 DE 08 00 07333 07333056 474 266 Europe/Berlin 2011-04-25
-2858543 Oberwies Oberwies 50.28333 7.78333 P PPLA4 DE 08 00 07141 07141106 188 334 Europe/Berlin 2011-04-25
-2858548 Oberwiera Oberwiera 50.88333 12.5 P PPLA4 DE 13 145 14524 14524240 1227 267 Europe/Berlin 2011-04-25
-2858562 Oberwesel Oberwesel Oberwesel 50.1 7.73333 P PPL DE 08 3128 189 Europe/Berlin 2012-01-18
-2858586 Oberweißbach Oberweissbach Oberweissbach,Oberweißbach 50.58333 11.15 P PPL DE 15 1653 647 Europe/Berlin 2012-01-18
-2858591 Oberweis Oberweis 49.96667 6.41667 P PPLA4 DE 08 00 07232 07232099 578 292 Europe/Berlin 2011-04-25
-2858601 Oberweiler im Tal Oberweiler im Tal 49.58333 7.55 P PPLA4 DE 08 00 07336 07336072 0 217 Europe/Berlin 2011-04-25
-2858602 Oberweiler Oberweiler 50.05 6.45 P PPLA4 DE 08 00 07232 07232098 148 426 Europe/Berlin 2011-04-25
-2858636 Oberweid Oberweid Oberweid 50.6 10.06667 P PPLA4 DE 15 00 16066 16066052 590 478 Europe/Berlin 2011-04-25
-2858658 Oberwambach Oberwambach 50.66667 7.65 P PPLA4 DE 08 00 07132 07132086 445 309 Europe/Berlin 2011-04-25
-2858665 Oberwallmenach Oberwallmenach 50.16667 7.83333 P PPLA4 DE 08 00 07141 07141105 208 398 Europe/Berlin 2011-04-25
-2858729 Oberviechtach Oberviechtach Oberviechtach,Viechtach 49.46667 12.41667 P PPL DE 02 5022 524 Europe/Berlin 2012-01-18
-2858738 Oberursel Oberursel Oberursel 50.2 8.58333 P PPL DE 05 42448 200 Europe/Berlin 2012-01-18
-2858763 Obertshausen Obertshausen Obertshausen 50.08333 8.85 P PPL DE 05 24459 120 Europe/Berlin 2012-01-18
-2858765 Obertrubach Obertrubach Obertrubach 49.7 11.35 P PPLA4 DE 02 094 09474 09474156 2185 504 Europe/Berlin 2011-04-25
-2858773 Obertraubling Obertraubling 48.96667 12.16667 P PPLA4 DE 02 093 09375 09375179 7037 339 Europe/Berlin 2011-04-25
-2858784 Obertiefenbach Obertiefenbach 50.23333 7.88333 P PPLA4 DE 08 00 07141 07141104 382 388 Europe/Berlin 2011-04-25
-2858787 Oberthulba Oberthulba Oberthulba 50.2 9.96667 P PPL DE 02 5151 260 Europe/Berlin 2012-01-18
-2858807 Oberthal Oberthal 49.51667 7.1 P PPLA4 DE 09 00 10046 10046116 6581 341 Europe/Berlin 2011-04-25
-2858811 Oberteuringen Oberteuringen 47.71667 9.46667 P PPLA4 DE 01 084 08435 08435045 4304 445 Europe/Berlin 2011-04-25
-2858827 Obertaufkirchen Obertaufkirchen 48.26667 12.28333 P PPLA4 DE 02 091 09183 09183135 2424 447 Europe/Berlin 2011-04-25
-2858852 Obersüßbach Obersussbach 48.61667 11.95 P PPLA4 DE 02 092 09274 09274165 1682 478 Europe/Berlin 2011-04-25
-2858857 Obersülzen Obersulzen 49.56833 8.21139 P PPLA4 DE 08 00 07332 07332040 520 149 Europe/Berlin 2011-04-25
-2858874 Oberstreu Oberstreu 50.4 10.31667 P PPLA4 DE 02 096 09673 09673151 1689 348 Europe/Berlin 2011-07-31
-2858875 Oberstreit Oberstreit 49.8 7.7 P PPLA4 DE 08 00 07133 07133075 257 247 Europe/Berlin 2011-04-25
-2858906 Oberstenfeld Oberstenfeld 49.02611 9.32083 P PPLA4 DE 01 081 08118 08118060 8046 231 Europe/Berlin 2011-04-25
-2858918 Obersteinebach Obersteinebach 50.58333 7.48333 P PPLA4 DE 08 00 07132 07132085 259 365 Europe/Berlin 2011-04-25
-2858962 Oberstedem Oberstedem 49.93333 6.51667 P PPLA4 DE 08 00 07232 07232097 79 340 Europe/Berlin 2011-04-25
-2858964 Oberstdorf Oberstdorf Oberstdorf 47.4 10.28333 P PPL DE 02 9788 873 Europe/Berlin 2012-01-18
-2858965 Oberstaufenbach Oberstaufenbach 49.51667 7.51667 P PPLA4 DE 08 00 07336 07336071 272 387 Europe/Berlin 2011-04-25
-2858966 Oberstaufen Oberstaufen Oberstaufen 47.55 10.03333 P PPL DE 02 7190 833 Europe/Berlin 2012-01-18
-2858971 Oberstadtfeld Oberstadtfeld 50.18333 6.76667 P PPLA4 DE 08 00 07233 07233055 646 502 Europe/Berlin 2011-04-25
-2858973 Oberstadt Oberstadt Oberstadt 50.55 10.6 P PPLA4 DE 15 00 16069 16069035 417 430 Europe/Berlin 2011-04-25
-2858976 Oberstadion Oberstadion 48.18333 9.68333 P PPLA4 DE 01 084 08425 08425091 1577 540 Europe/Berlin 2011-04-25
-2858999 Obersontheim Obersontheim Obersontheim 49.05667 9.89917 P PPLA4 DE 01 081 08127 08127063 4810 371 Europe/Berlin 2011-04-25
-2859007 Obersöchering Obersochering 47.73333 11.21667 P PPLA4 DE 02 091 09190 09190136 1454 662 Europe/Berlin 2011-04-25
-2859010 Obersinn Obersinn Obersinn 50.21667 9.61667 P PPL DE 02 1048 288 Europe/Berlin 2012-01-18
-2859012 Obersimten Obersimten 49.16667 7.58333 P PPLA4 DE 08 00 07340 07340036 679 415 Europe/Berlin 2011-04-25
-2859068 Oberschweinbach Oberschweinbach 48.23817 11.15571 P PPLA4 DE 02 091 09179 09179140 1480 526 Europe/Berlin 2011-07-31
-2859077 Oberschwarzach Oberschwarzach Oberschwarzach 49.86667 10.41667 P PPL DE 02 1425 285 Europe/Berlin 2012-01-18
-2859105 Oberschönegg Oberschonegg 48.10846 10.29848 P PPLA4 DE 02 097 09778 09778184 985 627 Europe/Berlin 2011-04-25
-2859119 Oberschöna Oberschona Oberschona,Oberschöna 50.9 13.26667 P PPLA4 DE 13 145 14522 14522430 3764 410 Europe/Berlin 2011-04-25
-2859129 Oberschneiding Oberschneiding 48.79573 12.642 P PPLA4 DE 02 092 09278 09278167 2745 359 Europe/Berlin 2011-04-25
-2859146 Oberschlettenbach Oberschlettenbach 49.14612 7.87188 P PPLA4 DE 08 00 07337 07337060 135 256 Europe/Berlin 2011-08-26
-2859147 Oberschleißheim Oberschleissheim Oberschleissheim,Oberschleißheim 48.25 11.56667 P PPLA4 DE 02 091 09184 09184135 11290 488 Europe/Berlin 2011-04-25
-2859173 Oberscheinfeld Oberscheinfeld Oberscheinfeld 49.71667 10.43333 P PPL DE 02 1315 344 Europe/Berlin 2012-01-18
-2859174 Oberscheidweiler Oberscheidweiler 50.08333 6.93333 P PPLA4 DE 08 00 07231 07231101 204 388 Europe/Berlin 2011-04-25
-2859199 Ober-Saulheim Ober-Saulheim 49.86417 8.14111 P PPL DE 08 7325 162 Europe/Berlin 2006-01-17
-2859231 Oberroth Oberroth 48.17582 10.18913 P PPLA4 DE 02 097 09775 09775141 824 535 Europe/Berlin 2011-07-31
-2859234 Oberrot Oberrot Oberrot 49.01444 9.66722 P PPLA4 DE 01 081 08127 08127062 3713 358 Europe/Berlin 2011-04-25
-2859239 Oberroßbach Oberrossbach 50.65 8.03333 P PPLA4 DE 08 00 07143 07143283 381 524 Europe/Berlin 2011-04-25
-2859273 Oberrod Oberrod 50.58333 8.13333 P PPLA4 DE 08 00 07143 07143282 736 454 Europe/Berlin 2011-04-25
-2859277 Oberröblingen Oberroblingen 51.43333 11.31667 P PPL DE 14 1701 125 Europe/Berlin 2006-01-17
-2859285 Oberriexingen Oberriexingen Oberriexingen 48.93333 9.03333 P PPL DE 01 3029 228 Europe/Berlin 2012-01-18
-2859296 Oberrieden Oberrieden 48.08333 10.43333 P PPLA4 DE 02 097 09778 09778183 1247 584 Europe/Berlin 2011-04-25
-2859302 Oberried Oberried 47.93333 7.95 P PPLA4 DE 01 083 08315 08315084 2904 460 Europe/Berlin 2011-04-25
-2859325 Oberreute Oberreute 47.56667 9.95 P PPLA4 DE 02 097 09776 09776121 1566 827 Europe/Berlin 2011-04-25
-2859345 Oberreißen Oberreissen 51.08333 11.41667 P PPLA4 DE 15 00 16071 16071068 199 254 Europe/Berlin 2011-04-25
-2859352 Oberreidenbach Oberreidenbach 49.7 7.46667 P PPLA4 DE 08 00 07134 07134066 640 371 Europe/Berlin 2011-04-25
-2859357 Oberreichenbach Oberreichenbach 49.58946 10.76892 P PPLA4 DE 02 095 09572 09572147 1204 348 Europe/Berlin 2011-04-25
-2859360 Oberreichenbach Oberreichenbach 48.73333 8.66667 P PPLA4 DE 01 082 08235 08235055 2922 617 Europe/Berlin 2011-04-25
-2859380 Ober-Ramstadt Ober-Ramstadt Ober-Ramstadt 49.83361 8.75194 P PPL DE 05 15367 222 Europe/Berlin 2012-01-18
-2859390 Oberraden Oberraden 50.55 7.53333 P PPLA4 DE 08 00 07138 07138054 645 338 Europe/Berlin 2011-04-25
-2859412 Oberpöring Oberporing 48.7 12.83333 P PPLA4 DE 02 092 09271 09271139 1143 347 Europe/Berlin 2011-04-25
-2859423 Oberpleichfeld Oberpleichfeld 49.88333 10.08333 P PPLA4 DE 02 096 09679 09679169 1051 259 Europe/Berlin 2011-04-25
-2859432 Oberpierscheid Oberpierscheid 50.06667 6.36667 P PPLA4 DE 08 00 07232 07232285 385 485 Europe/Berlin 2011-04-25
-2859439 Oberpframmern Oberpframmern 48.02202 11.81331 P PPLA4 DE 02 091 09175 09175131 2188 615 Europe/Berlin 2011-04-25
-2859458 Oberottmarshausen Oberottmarshausen 48.23333 10.85 P PPLA4 DE 02 097 09772 09772186 1648 536 Europe/Berlin 2011-04-25
-2859460 Oberotterbach Oberotterbach 49.07044 7.96955 P PPLA4 DE 08 00 07337 07337059 1275 199 Europe/Berlin 2011-04-25
-2859465 Oberostendorf Oberostendorf 47.93333 10.75 P PPLA4 DE 02 097 09777 09777155 1268 680 Europe/Berlin 2011-04-25
-2859473 Oberoppurg Oberoppurg Oberoppurg 50.7 11.68333 P PPLA4 DE 15 00 16075 16075075 201 331 Europe/Berlin 2011-04-25
-2859481 Ober-Olm Ober-Olm 49.93722 8.18889 P PPLA4 DE 08 00 07339 07339047 4133 221 Europe/Berlin 2011-04-25
-2859490 Oberöfflingen Oberofflingen 50.06667 6.86667 P PPLA4 DE 08 00 07231 07231100 300 408 Europe/Berlin 2011-04-25
-2859511 Obernzenn Obernzenn Obernzenn 49.45 10.46667 P PPL DE 02 2679 373 Europe/Berlin 2012-01-18
-2859512 Obernzell Obernzell 48.55485 13.63729 P PPL DE 02 092 09275 09275137 3843 295 Europe/Berlin 2011-07-11
-2859532 Obernkirchen Obernkirchen Obernkirchen 52.2721 9.12912 P PPL DE 06 10120 121 Europe/Berlin 2011-03-15
-2859543 Obernhof Obernhof 50.31667 7.85 P PPLA4 DE 08 00 07141 07141103 438 101 Europe/Berlin 2011-04-25
-2859545 Obernheim-Kirchenarnbach Obernheim-Kirchenarnbach 49.35 7.58333 P PPLA4 DE 08 00 07340 07340219 1831 422 Europe/Berlin 2011-04-25
-2859547 Obernheim Obernheim 48.15 8.86667 P PPLA4 DE 01 084 08417 08417047 1554 939 Europe/Berlin 2011-04-25
-2859562 Obernfeld Obernfeld 51.55 10.23333 P PPLA4 DE 06 00 03152 03152018 1022 158 Europe/Berlin 2011-04-25
-2859578 Oberneukirchen Oberneukirchen 48.18333 12.51667 P PPLA4 DE 02 091 09183 09183134 810 457 Europe/Berlin 2011-04-25
-2859593 Oberneisen Oberneisen 50.31667 8.08333 P PPLA4 DE 08 00 07141 07141102 0 175 Europe/Berlin 2011-04-25
-2859600 Oberndorf Oberndorf 53.75 9.15 P PPLA4 DE 06 00 03352 03352042 1556 0 Europe/Berlin 2011-04-25
-2859615 Oberndorf Oberndorf 49.71667 7.81667 P PPLA4 DE 08 00 07333 07333055 255 176 Europe/Berlin 2011-04-25
-2859641 Oberndorf Oberndorf 48.66667 10.86667 P PPL DE 02 2355 407 Europe/Berlin 2006-01-17
-2859654 Oberndorf Oberndorf 48.2905 8.57221 P PPL DE 01 14740 510 Europe/Berlin 2008-12-23
-2859675 Obernburg am Main Obernburg am Main Obernburg,Obernburg am Main 49.84 9.14139 P PPL DE 02 8853 177 Europe/Berlin 2012-01-18
-2859678 Obernbreit Obernbreit 49.65863 10.16424 P PPL DE 02 1829 199 Europe/Berlin 2010-06-07
-2859691 Obernau Obernau 50.66667 7.56667 P PPLA4 DE 08 00 07132 07132084 144 206 Europe/Berlin 2011-04-25
-2859733 Obermoschel Obermoschel 49.72797 7.77266 P PPL DE 08 1183 184 Europe/Berlin 2008-09-18
-2859739 Ober-Mörlen Ober-Morlen 50.3735 8.69087 P PPLA4 DE 05 064 06440 06440018 5967 175 Europe/Berlin 2011-07-31
-2859772 Obermichelbach Obermichelbach 49.53117 10.90891 P PPLA4 DE 02 095 09573 09573123 2970 326 Europe/Berlin 2011-04-25
-2859792 Obermeitingen Obermeitingen 48.15 10.8 P PPLA4 DE 02 091 09181 09181131 1600 570 Europe/Berlin 2011-04-25
-2859800 Obermehler Obermehler 51.26667 10.6 P PPLA4 DE 15 00 16064 16064052 1049 262 Europe/Berlin 2011-04-25
-2859815 Obermaßfeld-Grimmenthal Obermassfeld-Grimmenthal Grimmenthal,Obermassfeld-Grimmenthal,Obermaßfeld-Grimmenthal 50.53333 10.43333 P PPLA4 DE 15 00 16066 16066049 1281 315 Europe/Berlin 2011-04-25
-2859826 Obermarchtal Obermarchtal 48.23279 9.57235 P PPLA4 DE 01 084 08425 08425090 1268 535 Europe/Berlin 2011-04-25
-2859832 Obermaiselstein Obermaiselstein 47.45 10.23333 P PPLA4 DE 02 097 09780 09780131 981 877 Europe/Berlin 2011-04-25
-2859843 Oberlungwitz Oberlungwitz Oberlungwitz 50.78333 12.71667 P PPL DE 13 6794 308 Europe/Berlin 2012-01-18
-2859903 Oberlichtenau Oberlichtenau Oberlichtenau 51.21667 14 P PPL DE 13 1538 257 Europe/Berlin 2012-01-18
-2859938 Oberleichtersbach Oberleichtersbach 50.28333 9.8 P PPLA4 DE 02 096 09672 09672138 2077 469 Europe/Berlin 2011-04-25
-2859961 Oberlauch Oberlauch 50.16667 6.41667 P PPLA4 DE 08 00 07232 07232284 67 552 Europe/Berlin 2011-04-25
-2859962 Oberlascheid Oberlascheid 50.25 6.3 P PPLA4 DE 08 00 07232 07232283 140 503 Europe/Berlin 2011-04-25
-2859970 Langfurth Langfurth Langfurth,Oberlangfurth 49.1 10.43333 P PPLA4 DE 02 095 09571 09571170 2211 432 Europe/Berlin 2011-07-31
-2859983 Oberlangen Oberlangen 52.85 7.26667 P PPLA4 DE 06 00 03454 03454040 926 11 Europe/Berlin 2011-04-25
-2859996 Oberlahr Oberlahr 50.623 7.51688 P PPLA4 DE 08 00 07132 07132083 749 195 Europe/Berlin 2011-07-31
-2860021 Oberkotzau Oberkotzau Oberkotzau 50.26667 11.93333 P PPL DE 02 5920 497 Europe/Berlin 2012-01-18
-2860025 Ober Kostenz Ober Kostenz 49.95 7.35 P PPLA4 DE 08 00 07140 07140111 275 402 Europe/Berlin 2011-04-25
-2860049 Oberkochen Oberkochen 48.78379 10.10519 P PPL DE 01 8373 495 Europe/Berlin 2008-12-22
-2860072 Oberkirn Oberkirn 49.88333 7.36667 P PPLA4 DE 08 00 07134 07134065 364 325 Europe/Berlin 2011-04-25
-2860080 Oberkirch Oberkirch 48.53241 8.07864 P PPL DE 01 083 20375 193 Europe/Berlin 2010-11-15
-2860099 Oberkatz Oberkatz 50.6 10.23333 P PPLA4 DE 15 00 16066 16066048 268 560 Europe/Berlin 2011-04-25
-2860122 Oberkail Oberkail 50.03333 6.68333 P PPLA4 DE 08 00 07232 07232282 609 358 Europe/Berlin 2011-04-25
-2860134 Oberjettingen Oberjettingen 48.57468 8.77636 P PPL DE 01 081 3571 583 575 Europe/Berlin 2010-11-15
-2860142 Oberirsen Oberirsen 50.71667 7.58333 P PPLA4 DE 08 00 07132 07132082 754 263 Europe/Berlin 2011-04-25
-2860151 Oberickelsheim Oberickelsheim 49.6 10.13333 P PPLA4 DE 02 095 09575 09575155 713 321 Europe/Berlin 2011-04-25
-2860176 Oberhosenbach Oberhosenbach 49.81667 7.33333 P PPLA4 DE 08 00 07134 07134064 144 444 Europe/Berlin 2011-04-25
-2860282 Oberhof Oberhof Oberhof 50.71667 10.73333 P PPL DE 15 1602 772 Europe/Berlin 2012-01-18
-2860335 Ober-Hilbersheim Ober-Hilbersheim 49.9 8.02889 P PPLA4 DE 08 00 07339 07339046 990 228 Europe/Berlin 2011-04-25
-2860359 Oberheldrungen Oberheldrungen Oberheldrungen 51.28333 11.25 P PPLA4 DE 15 00 16065 16065052 987 151 Europe/Berlin 2011-04-25
-2860372 Oberheimbach Oberheimbach 50.01667 7.78333 P PPLA4 DE 08 00 07339 07339045 705 253 Europe/Berlin 2011-04-25
-2860400 Oberhausen-Rheinhausen Oberhausen-Rheinhausen Oberhausen-Rheinhausen 49.27389 8.47167 P PPLA4 DE 01 082 08215 08215107 9420 96 Europe/Berlin 2011-04-25
-2860404 Oberhausen an der Appel Oberhausen an der Appel 49.71667 7.86667 P PPLA4 DE 08 00 07333 07333053 171 215 Europe/Berlin 2011-04-25
-2860410 Oberhausen Oberhausen Oberhausen,Oberkhauzen,Omperchaouzen,Overhus,awbrhawzn,obahauzen,Ομπερχάουζεν,Оберхаузен,اوبرهاوزن,オーバーハウゼン 51.46667 6.85 P PPL DE 07 219176 38 Europe/Berlin 2012-01-18
-2860419 Oberhausen Oberhausen 49.09694 8.05833 P PPLA4 DE 08 00 07337 07337058 0 165 Europe/Berlin 2011-04-25
-2860422 Oberhausen Oberhausen 48.71667 11.1 P PPLA4 DE 02 091 09185 09185150 2558 420 Europe/Berlin 2011-04-25
-2860430 Oberhausen Oberhausen 47.78333 11.13333 P PPLA4 DE 02 091 09190 09190135 2094 588 Europe/Berlin 2011-04-25
-2860477 Oberharmersbach Oberharmersbach 48.37358 8.12542 P PPLA4 DE 01 083 08317 08317088 2558 299 Europe/Berlin 2011-07-31
-2860488 Oberhambach Oberhambach 49.68333 7.16667 P PPLA4 DE 08 00 07134 07134063 300 425 Europe/Berlin 2011-04-25
-2860505 Oberhain Oberhain Oberhain 50.63333 11.13333 P PPLA4 DE 15 00 16073 16073063 799 551 Europe/Berlin 2011-04-25
-2860509 Oberhaid Oberhaid 50.51667 7.71667 P PPLA4 DE 08 00 07143 07143059 423 230 Europe/Berlin 2011-04-25
-2860510 Oberhaid Oberhaid 50.13333 11.8 P PPL DE 02 4680 639 Europe/Berlin 2006-01-17
-2860511 Oberhaid Oberhaid 49.93247 10.81471 P PPLA4 DE 02 094 09471 09471165 0 240 Europe/Berlin 2011-04-25
-2860525 Oberhaching Oberhaching 48.02455 11.59744 P PPLA4 DE 02 091 09184 09184134 12470 581 Europe/Berlin 2011-04-25
-2860537 Obergurig Obergurig 51.13294 14.40488 P PPLA4 DE 13 146 14625 14625390 2361 248 Europe/Berlin 2011-04-25
-2860540 Obergünzburg Obergunzburg Obergunzburg,Obergünzburg 47.85 10.41667 P PPL DE 02 6424 733 Europe/Berlin 2012-01-18
-2860567 Obergröningen Obergroningen 48.89449 9.90939 P PPLA4 DE 01 081 08136 08136049 459 504 Europe/Berlin 2011-04-25
-2860574 Obergriesbach Obergriesbach 48.41667 11.06667 P PPLA4 DE 02 097 09771 09771149 2050 480 Europe/Berlin 2011-04-25
-2860646 Obergeckler Obergeckler 49.96667 6.3 P PPLA4 DE 08 00 07232 07232096 170 364 Europe/Berlin 2011-04-25
-2860694 Ober-Flörsheim Ober-Florsheim 49.68306 8.15528 P PPLA4 DE 08 00 07331 07331052 1187 266 Europe/Berlin 2011-04-25
-2860701 Oberfischbach Oberfischbach 50.25 7.95 P PPLA4 DE 08 00 07141 07141101 176 397 Europe/Berlin 2011-04-25
-2860716 Oberfell Oberfell 50.26038 7.44461 P PPLA4 DE 08 00 07137 07137220 1165 81 Europe/Berlin 2011-04-25
-2860892 Obererbach Obererbach 50.45 7.96667 P PPLA4 DE 08 00 07143 07143058 550 288 Europe/Berlin 2011-04-25
-2860925 Oberelz Oberelz 50.26667 7.05 P PPLA4 DE 08 00 07233 07233230 176 388 Europe/Berlin 2011-04-25
-2860932 Oberelsbach Oberelsbach Oberelsbach 50.43333 10.13333 P PPL DE 02 2970 372 Europe/Berlin 2012-01-18
-2860948 Oberelbert Oberelbert 50.38333 7.81667 P PPLA4 DE 08 00 07143 07143057 1072 326 Europe/Berlin 2011-04-25
-2861038 Oberdürenbach Oberdurenbach 50.46667 7.16667 P PPLA4 DE 08 00 07131 07131059 628 367 Europe/Berlin 2011-04-25
-2861046 Oberdreis Oberdreis 50.63333 7.66667 P PPLA4 DE 08 00 07138 07138052 917 301 Europe/Berlin 2011-04-25
-2861059 Oberdorla Oberdorla 51.16667 10.41667 P PPLA4 DE 15 00 16064 16064051 2296 246 Europe/Berlin 2011-04-25
-2861091 Oberdolling Oberdolling 48.83333 11.58333 P PPLA4 DE 02 091 09176 09176150 0 385 Europe/Berlin 2011-04-25
-2861094 Oberdischingen Oberdischingen 48.3 9.83333 P PPLA4 DE 01 084 08425 08425088 2006 491 Europe/Berlin 2011-04-25
-2861096 Oberding Oberding 48.31667 11.85 P PPLA4 DE 02 091 09177 09177133 5101 463 Europe/Berlin 2011-04-25
-2861111 Oberdiebach Oberdiebach 50.03333 7.78333 P PPLA4 DE 08 00 07339 07339044 920 246 Europe/Berlin 2011-04-25
-2861116 Oberderdingen Oberderdingen 49.06556 8.80306 P PPLA4 DE 01 082 08215 08215059 10515 185 Europe/Berlin 2011-04-25
-2861131 Oberdachstetten Oberdachstetten 49.41667 10.43333 P PPLA4 DE 02 095 09571 09571183 1720 483 Europe/Berlin 2011-04-25
-2861135 Obercunnersdorf Obercunnersdorf Cunnersdorf,Obercunnersdorf 51.03333 14.68333 P PPLA4 DE DE 13 146 14626 14626380 0 359 Europe/Berlin 2011-04-25
-2861136 Obercunnersdorf Obercunnersdorf 50.91667 13.56667 P PPL DE 13 2249 374 Europe/Berlin 2006-01-17
-2861202 Oberbrombach Oberbrombach 49.7 7.26667 P PPLA4 DE 08 00 07134 07134062 526 437 Europe/Berlin 2011-04-25
-2861227 Oberbösa Oberbosa Oberbosa,Oberbösa 51.28333 11.03333 P PPLA4 DE 15 00 16065 16065051 398 215 Europe/Berlin 2011-04-25
-2861232 Oberboihingen Oberboihingen Oberboihingen 48.65 9.36667 P PPLA4 DE 01 081 08116 08116050 5435 271 Europe/Berlin 2011-04-25
-2861251 Oberbillig Oberbillig 49.71667 6.5 P PPLA4 DE 08 00 07235 07235096 851 143 Europe/Berlin 2011-04-25
-2861271 Oberbettingen Oberbettingen 50.28333 6.63333 P PPLA4 DE 08 00 07233 07233053 717 417 Europe/Berlin 2011-04-25
-2861285 Oberbergkirchen Oberbergkirchen 48.3 12.38333 P PPLA4 DE 02 091 09183 09183132 1629 451 Europe/Berlin 2011-04-25
-2861340 Oberbachheim Oberbachheim 50.25 7.75 P PPLA4 DE 08 00 07141 07141100 228 332 Europe/Berlin 2011-04-25
-2861358 Oberaula Oberaula 50.85 9.46667 P PPLA4 DE 05 066 06634 06634019 3481 333 Europe/Berlin 2011-07-31
-2861374 Oberaudorf Oberaudorf 47.65469 12.17242 P PPLA4 DE 02 091 09187 09187157 4756 492 Europe/Berlin 2011-07-31
-2861384 Oberau Oberau 47.55979 11.13919 P PPLA4 DE 02 091 09180 09180126 0 652 Europe/Berlin 2011-04-25
-2861402 Oberasbach Oberasbach 49.42275 10.95766 P PPL DE 02 17306 316 Europe/Berlin 2009-04-15
-2861407 Oberarnbach Oberarnbach 49.38333 7.58333 P PPLA4 DE 08 00 07335 07335031 440 350 Europe/Berlin 2011-04-25
-2861422 Oberammergau Oberammergau 47.59812 11.06692 P PPLA4 DE 02 091 09180 09180125 5344 840 Europe/Berlin 2011-04-25
-2861432 Altenbuch Altenbuch Altenbuch,Oberaltenbuch,Unteraltenbuch 49.83333 9.4 P PPLA4 DE DE 02 096 09676 09676111 0 312 Europe/Berlin 2011-07-31
-2861448 Oberalben Oberalben 49.58333 7.4 P PPLA4 DE 08 00 07336 07336070 270 306 Europe/Berlin 2011-04-25
-2861469 Oberahr Oberahr 50.5 7.86667 P PPLA4 DE 08 00 07143 07143281 587 325 Europe/Berlin 2011-04-25
-2861537 Nützen Nutzen Nutzen,Nützen 53.86667 9.91667 P PPLA4 DE 10 00 01060 01060064 1167 24 Europe/Berlin 2011-04-25
-2861549 Nutteln Nutteln 53.98778 9.38677 P PPLA4 DE 10 00 01061 01061078 305 5 Europe/Berlin 2011-04-25
-2861569 Nustrow Nustrow 54.01667 12.6 P PPLA4 DE 12 00 13051 13051050 167 37 Europe/Berlin 2011-04-25
-2861579 Nußloch Nussloch Nussloch,Nußloch 49.32389 8.69556 P PPLA4 DE 01 082 08226 08226060 10815 149 Europe/Berlin 2011-04-25
-2861598 Nusse Nusse Nusse 53.66667 10.58333 P PPLA4 DE 10 00 01053 01053096 1017 32 Europe/Berlin 2011-04-25
-2861599 Nußdorf am Inn Nussdorf am Inn Nussdorf a. Inn,Nußdorf a. Inn 47.74232 12.15611 P PPL DE 02 091 2590 482 Europe/Berlin 2010-11-17
-2861603 Nußdorf Nussdorf 47.9 12.6 P PPLA4 DE 02 091 09189 09189130 2475 580 Europe/Berlin 2011-04-25
-2861615 Nußbaum Nussbaum 49.8 7.61667 P PPLA4 DE 08 00 07133 07133072 491 254 Europe/Berlin 2011-04-25
-2861624 Nußbach Nussbach 49.63333 7.7 P PPLA4 DE 08 00 07336 07336069 643 270 Europe/Berlin 2011-04-25
-2861628 Nusplingen Nusplingen 48.13333 8.86667 P PPLA4 DE 01 084 08417 08417045 0 907 Europe/Berlin 2011-04-25
-2861631 Nusbaum Nusbaum 49.91667 6.35 P PPLA4 DE 08 00 07232 07232095 458 346 Europe/Berlin 2011-04-25
-2861632 Nürtingen Nurtingen 48.62565 9.34203 P PPL DE 01 40210 284 Europe/Berlin 2008-12-21
-2861650 Nuremberg Nuremberg NUE,Namberch,Neurenberg,Nirnberg,Nirnberga,Niurnbergas,Njurnberg,Norimberg,Norimberga,Norimberk,Norymberga,Nuernberg,Nuremberg,Nuremberg - Nuernberg,Nuremberg - Nürnberg,Nuremberga,Nurembergo,Nuremburg,Nurenberg,Nurenbergo,Nurenburg,Nurnberg,Nyremberge,Nyremvergi,Nürnberg,niu lun bao,niurnbergi,nurem beirk,nwileunbeleukeu,nyrnbrg,nyurunberuku,Νυρεμβέργη,Νυρεμβεργη,Нирнберг,Нюрнберг,נירנברג,นูเรมเบิร์ก,เนิร์นแบร์ก,ნიურნბერგი,ニュルンベルク,纽伦堡,뉘른베르크 49.44778 11.06833 P PPL DE 02 499237 312 Europe/Berlin 2012-02-08
-2861653 Nürburg Nurburg Nurburg,Nürburg 50.33333 6.95 P PPLA4 DE 08 00 07131 07131058 169 608 Europe/Berlin 2011-04-25
-2861662 Nünschweiler Nunschweiler 49.23333 7.5 P PPLA4 DE 08 00 07340 07340035 827 284 Europe/Berlin 2011-04-25
-2861671 Nünchritz Nunchritz 51.29993 13.38555 P PPLA4 DE 13 146 14627 14627190 6846 100 Europe/Berlin 2011-07-31
-2861677 Nümbrecht Numbrecht Numbrecht,Nümbrecht 50.9 7.55 P PPLA4 DE 07 053 05374 05374032 17427 298 Europe/Berlin 2011-04-25
-2861690 Nufringen Nufringen 48.62253 8.89009 P PPLA4 DE 01 081 08115 08115037 5249 458 Europe/Berlin 2011-04-25
-2861695 Nüdlingen Nudlingen 50.23333 10.1 P PPLA4 DE 02 096 09672 09672136 4273 324 Europe/Berlin 2011-07-31
-2861698 Nudersdorf Nudersdorf 51.93333 12.6 P PPL DE 14 1049 107 Europe/Berlin 2006-01-17
-2861711 Nübel Nubel 54.56667 9.58333 P PPLA4 DE 10 00 01059 01059098 0 33 Europe/Berlin 2011-04-25
-2861714 Nübbel Nubbel Nubbel,Nübbel 54.26667 9.61667 P PPLA4 DE 10 00 01058 01058118 1656 3 Europe/Berlin 2011-04-25
-2861721 Notzingen Notzingen 48.67076 9.45721 P PPLA4 DE 01 081 08116 08116048 3475 314 Europe/Berlin 2011-04-25
-2861733 Nottuln Nottuln 51.93333 7.35 P PPLA4 DE 07 055 05558 05558032 20427 106 Europe/Berlin 2011-04-25
-2861736 Nottleben Nottleben Nottleben 50.96667 10.85 P PPLA4 DE 15 00 16067 16067052 474 287 Europe/Berlin 2011-04-25
-2861739 Nottfeld Nottfeld Nottfeld 54.61667 9.76667 P PPLA4 DE 10 00 01059 01059065 157 31 Europe/Berlin 2011-04-25
-2861743 Nottensdorf Nottensdorf 53.48333 9.6 P PPLA4 DE 06 00 03359 03359034 1423 36 Europe/Berlin 2011-04-25
-2861755 Nothweiler Nothweiler 49.06667 7.8 P PPLA4 DE 08 00 07340 07340034 180 334 Europe/Berlin 2011-04-25
-2861774 Nostorf Nostorf 53.40656 10.65408 P PPLA4 DE 12 00 13054 13054083 1081 13 Europe/Berlin 2011-04-25
-2861784 Nossentiner Hütte Nossentiner Hutte 53.53434 12.42416 P PPLA4 DE 12 00 13056 13056051 737 69 Europe/Berlin 2011-04-25
-2861787 Nossendorf Nossendorf 53.96209 12.95932 P PPLA4 DE 12 00 13052 13052056 921 11 Europe/Berlin 2011-07-31
-2861788 Nossen Nossen Nossen 51.05 13.3 P PPL DE 13 7588 308 Europe/Berlin 2012-01-18
-2861801 Nörvenich Norvenich Norvenich,Nörvenich 50.8 6.65 P PPLA4 DE 07 053 05358 05358052 11481 125 Europe/Berlin 2011-07-31
-2861802 Nortrup Nortrup 52.6 7.88333 P PPLA4 DE 06 00 03459 03459028 2972 34 Europe/Berlin 2011-04-25
-2861804 Nortorf Nortorf Nortorf 54.16667 9.86667 P PPL DE 10 6396 27 Europe/Berlin 2012-01-18
-2861807 Nortmoor Nortmoor 53.23333 7.56667 P PPLA4 DE 06 00 03457 03457016 1685 254 Europe/Berlin 2011-04-25
-2861814 Northeim Northeim Northeim 51.7 10 P PPL DE 06 30894 145 Europe/Berlin 2012-01-18
-2861815 Nörtershausen Nortershausen 50.21667 7.48333 P PPLA4 DE 08 00 07137 07137219 1145 281 Europe/Berlin 2011-04-25
-2861817 Nörten-Hardenberg Norten-Hardenberg 51.62878 9.93593 P PPL DE 06 00 8514 135 Europe/Berlin 2010-11-22
-2861820 Norstedt Norstedt Norstedt 54.58333 9.13333 P PPLA4 DE 10 00 01054 01054092 416 6 Europe/Berlin 2011-04-25
-2861829 Norken Norken 50.68333 7.9 P PPLA4 DE 08 00 07143 07143280 1000 466 Europe/Berlin 2011-04-25
-2861830 Norheim Norheim 49.8 7.81667 P PPLA4 DE 08 00 07133 07133071 1438 224 Europe/Berlin 2011-04-25
-2861847 Nordwalde Nordwalde Nordwalde 52.08333 7.48333 P PPLA4 DE 07 055 05566 05566064 9453 48 Europe/Berlin 2011-04-25
-2861866 Nordstemmen Nordstemmen 52.16196 9.7835 P PPLA4 DE 06 00 03254 03254026 13148 76 Europe/Berlin 2011-04-25
-2861873 Nordsehl Nordsehl 52.35 9.18333 P PPLA4 DE 06 00 03257 03257027 837 59 Europe/Berlin 2011-04-25
-2861881 Nordrach Nordrach 48.4 8.08333 P PPLA4 DE 01 083 08317 08317085 2027 317 Europe/Berlin 2011-04-25
-2861914 Nördlingen Noerdlingen Noerdlingen,Nördlingen 48.85122 10.48868 P PPL DE 02 097 19492 430 437 Europe/Berlin 2010-11-15
-2861919 Nordleda Nordleda 53.76667 8.83333 P PPLA4 DE 06 00 03352 03352041 1184 254 Europe/Berlin 2011-04-25
-2861923 Nordkirchen Nordkirchen 51.73333 7.53333 P PPLA4 DE 07 055 05558 05558028 10231 67 Europe/Berlin 2011-04-25
-2861934 Nordhorn Nordhorn Nordhorn 52.43333 7.08333 P PPL DE 06 52803 21 Europe/Berlin 2012-01-18
-2861939 Nordholz Nordholz 53.78333 8.6 P PPLA4 DE 06 00 03352 03352040 7616 19 Europe/Berlin 2011-07-31
-2861951 Nordhofen Nordhofen 50.51667 7.75 P PPLA4 DE 08 00 07143 07143056 536 284 Europe/Berlin 2011-04-25
-2861971 Nordheim Nordheim 49.85 10.18333 P PPL DE 02 1012 236 Europe/Berlin 2006-01-17
-2861973 Nordheim Nordheim Nordheim 49.10861 9.12778 P PPLA4 DE 01 081 08125 08125074 7440 181 Europe/Berlin 2011-04-25
-2861982 Nordhausen Nordhausen Nordhausen,Nordkhauzen,Нордхаузен 51.51667 10.8 P PPL DE 15 43912 252 Europe/Berlin 2012-01-18
-2861988 Nordhastedt Nordhastedt Nordhastedt 54.16667 9.18333 P PPLA4 DE 10 00 01051 01051082 2764 5 Europe/Berlin 2011-04-25
-2861990 Nordhalben Nordhalben Nordhalben 50.36667 11.5 P PPL DE 02 2077 594 Europe/Berlin 2012-01-18
-2861996 Nordhackstedt Nordhackstedt Nordhackstedt 54.73333 9.16667 P PPLA4 DE 10 00 01059 01059149 516 14 Europe/Berlin 2011-04-25
-2862011 Norderwöhrden Norderwohrden Norderwohrden,Norderwöhrden 54.2 9.01667 P PPLA4 DE 10 00 01051 01051081 286 255 Europe/Berlin 2011-04-25
-2862026 Norderstedt Norderstedt Nordershtedt,Norderstedt,Norderstedt Stadt,Нордерштедт 53.7 10.01667 P PPLX DE 10 71439 32 Europe/Berlin 2010-10-30
-2862027 Norderstapel Norderstapel Norderstapel 54.35 9.25 P PPLA4 DE 10 00 01059 01059064 829 253 Europe/Berlin 2011-04-25
-2862041 Norderney Norderney Norderney 53.7 7.15 P PPL DE 06 5949 2 Europe/Berlin 2012-01-18
-2862065 Norderheistedt Norderheistedt Norderheistedt 54.25 9.15 P PPLA4 DE 10 00 01051 01051080 149 5 Europe/Berlin 2011-04-25
-2862093 Norderbrarup Norderbrarup Norderbrarup 54.65 9.78333 P PPLA4 DE 10 00 01059 01059063 688 20 Europe/Berlin 2011-04-25
-2862104 Nordenham Nordenham Nordenham,Nordenkhame,Stadt Nordenham,Норденхаме 53.5 8.48333 P PPL DE 06 27714 1 Europe/Berlin 2012-01-18
-2862106 Nordendorf Nordendorf 48.6 10.8 P PPLA4 DE 02 097 09772 09772185 2274 448 Europe/Berlin 2011-07-31
-2862118 Norden Norden Norden 53.6 7.2 P PPL DE 06 25093 5 Europe/Berlin 2012-01-18
-2862131 Norddorf Norddorf 54.67969 8.33296 P PPLA4 DE 10 00 01054 01054089 651 10 Europe/Berlin 2011-04-25
-2862135 Norddeich Norddeich 54.21667 8.9 P PPLA4 DE 10 00 01051 01051079 442 1 Europe/Berlin 2011-04-25
-2862136 Norddeich Norddeich 53.61349 7.16043 P PPL DE 06 1759 1 2 Europe/Berlin 2010-07-08
-2862164 Norath Norath 50.13333 7.58333 P PPLA4 DE 08 00 07140 07140110 445 472 Europe/Berlin 2011-04-25
-2862174 Nonnweiler Nonnweiler Nonnweiler 49.61667 6.95 P PPLA4 DE 09 00 10046 10046115 9417 467 Europe/Berlin 2011-04-25
-2862202 Nonnenhorn Nonnenhorn 47.57386 9.61038 P PPLA4 DE 02 097 09776 09776120 1570 404 Europe/Berlin 2011-07-31
-2862249 Nomborn Nomborn 50.43333 7.91667 P PPLA4 DE 08 00 07143 07143055 715 282 Europe/Berlin 2011-04-25
-2862288 Nohra Nohra 51.43333 10.7 P PPLA4 DE 15 00 16062 16062039 934 213 Europe/Berlin 2011-07-31
-2862289 Nohra Nohra Nohra 50.96667 11.23333 P PPLA4 DE 15 00 16071 16071067 1430 303 Europe/Berlin 2011-04-25
-2862292 Nohn Nohn 50.33333 6.78333 P PPLA4 DE 08 00 07233 07233229 449 430 Europe/Berlin 2011-04-25
-2862294 Nohfelden Nohfelden 49.58693 7.14283 P PPLA4 DE 09 00 10046 10046114 10687 351 Europe/Berlin 2011-07-31
-2862295 Nohen Nohen 49.63333 7.25 P PPLA4 DE 08 00 07134 07134061 422 416 Europe/Berlin 2011-04-25
-2862304 Noer Noer Noer 54.46667 10 P PPLA4 DE 10 00 01058 01058116 902 15 Europe/Berlin 2011-04-25
-2862311 Nöda Noda 51.06667 11.01667 P PPLA4 DE 15 00 16068 16068037 845 159 Europe/Berlin 2011-04-25
-2862319 Nochern Nochern 50.16667 7.71667 P PPLA4 DE 08 00 07141 07141099 545 250 Europe/Berlin 2011-04-25
-2862322 Nobitz Nobitz 50.97621 12.48605 P PPLA4 DE 15 00 16077 16077036 3858 182 Europe/Berlin 2011-04-25
-2862326 Nöbdenitz Nobdenitz 50.86667 12.28333 P PPLA4 DE 15 00 16077 16077037 1025 275 Europe/Berlin 2011-07-31
-2862344 Nitz Nitz 50.33333 7.01667 P PPLA4 DE 08 00 07233 07233228 45 432 Europe/Berlin 2011-04-25
-2862347 Nittendorf Nittendorf Nittendorf 49.02528 11.96111 P PPL DE 02 9226 414 Europe/Berlin 2012-01-18
-2862348 Nittenau Nittenau Nittenau 49.19917 12.2725 P PPL DE 02 8478 347 Europe/Berlin 2012-01-18
-2862351 Nittel Nittel 49.65 6.45 P PPLA4 DE 08 00 07235 07235095 1920 196 Europe/Berlin 2011-04-25
-2862355 Nisterberg Nisterberg 50.68333 7.98333 P PPLA4 DE 08 00 07132 07132079 449 537 Europe/Berlin 2011-04-25
-2862357 Nister Nister 50.68333 7.83333 P PPLA4 DE 08 00 07143 07143276 1018 358 Europe/Berlin 2011-04-25
-2862372 Nirmsdorf Nirmsdorf 51.1 11.46667 P PPLA4 DE 15 00 16071 16071066 90 204 Europe/Berlin 2011-04-25
-2862388 Nindorf Nindorf 54.13333 9.7 P PPLA4 DE 10 00 01058 01058115 681 61 Europe/Berlin 2011-04-25
-2862389 Nindorf Nindorf 54.08333 9.11667 P PPLA4 DE 10 00 01051 01051078 1145 16 Europe/Berlin 2011-04-25
-2862402 Nimsreuland Nimsreuland 50.13333 6.45 P PPLA4 DE 08 00 07232 07232280 116 392 Europe/Berlin 2011-04-25
-2862403 Nimshuscheid Nimshuscheid 50.1 6.48333 P PPLA4 DE 08 00 07232 07232279 283 423 Europe/Berlin 2011-04-25
-2862406 Nimritz Nimritz Nimritz 50.7 11.65 P PPLA4 DE 15 00 16075 16075074 341 256 Europe/Berlin 2011-04-25
-2862440 Nievern Nievern 50.33333 7.68333 P PPLA4 DE 08 00 07141 07141098 982 186 Europe/Berlin 2011-04-25
-2862458 Nieste Nieste 51.31667 9.66667 P PPLA4 DE 05 066 06633 06633019 0 268 Europe/Berlin 2011-04-25
-2862460 Niesky Niesky 51.29241 14.82107 P PPL DE 13 146 11111 183 Europe/Berlin 2010-11-15
-2862465 Niesgrau Niesgrau Niesgrau 54.75 9.81667 P PPLA4 DE 10 00 01059 01059148 600 12 Europe/Berlin 2011-04-25
-2862485 Nierstein Nierstein 49.87528 8.34667 P PPLA4 DE 08 00 07339 07339043 7729 83 Europe/Berlin 2011-04-25
-2862494 Niersbach Niersbach 49.93333 6.75 P PPLA4 DE 08 00 07231 07231504 681 274 Europe/Berlin 2011-04-25
-2862525 Niepars Niepars 54.31447 12.92447 P PPLA4 DE 12 00 13057 13057062 2067 28 Europe/Berlin 2011-04-25
-2862541 Nienstädt Nienstadt 52.3 9.16667 P PPLA4 DE 06 00 03257 03257026 4984 86 Europe/Berlin 2011-04-25
-2862571 Nienhagen Nienhagen 54.15 12.18333 P PPL DE 12 1809 4 Europe/Berlin 2006-01-17
-2862576 Nienhagen Nienhagen 52.55705 10.1021 P PPLA4 DE 06 00 03351 03351018 0 41 Europe/Berlin 2011-04-27
-2862601 Niendorf Niendorf 53.81667 10.9 P PPLA4 DE 12 00 13058 13058075 0 27 Europe/Berlin 2011-04-25
-2862615 Nienbüttel Nienbuttel Nienbuttel,Nienbüttel 54.02969 9.41451 P PPLA4 DE 10 00 01061 01061076 144 43 Europe/Berlin 2011-04-25
-2862620 Nienburg Nienburg 52.63333 9.21667 P PPL DE 06 32629 27 Europe/Berlin 2006-01-17
-2862621 Nienburg Nienburg 51.83333 11.75 P PPL DE 14 4527 68 Europe/Berlin 2006-01-17
-2862625 Nienborstel Nienborstel Nienborstel 54.13333 9.61667 P PPLA4 DE 10 00 01058 01058113 623 30 Europe/Berlin 2011-04-25
-2862640 Niemegk Niemegk 52.08333 12.7 P PPL DE 11 2332 77 Europe/Berlin 2006-01-17
-2862643 Niemberg Niemberg Niemberg 51.55 12.08333 P PPL DE 14 1492 102 Europe/Berlin 2012-01-18
-2862674 Niehl Niehl 49.95774 6.35525 P PPLA4 DE 08 00 07232 07232094 66 401 Europe/Berlin 2011-07-31
-2862675 Nieheim Nieheim Nieheim 51.8 9.11667 P PPL DE 07 6961 233 Europe/Berlin 2012-01-18
-2862696 Niederzissen Niederzissen 50.46667 7.23333 P PPLA4 DE 08 00 07131 07131055 2791 246 Europe/Berlin 2011-04-25
-2862697 Niederzimmern Niederzimmern 51 11.18333 P PPLA4 DE 15 00 16071 16071065 1071 204 Europe/Berlin 2011-04-25
-2862698 Niederzier Niederzier Niederzier 50.88333 6.46667 P PPLA4 DE 07 053 05358 05358048 14363 105 Europe/Berlin 2011-07-31
-2862708 Niederwörresbach Niederworresbach 49.76667 7.33333 P PPLA4 DE 08 00 07134 07134060 993 325 Europe/Berlin 2011-04-25
-2862713 Niederwinkling Niederwinkling 48.88333 12.8 P PPLA4 DE 02 092 09278 09278159 2252 319 Europe/Berlin 2011-04-25
-2862723 Nieder-Wiesen Nieder-Wiesen 49.73333 7.98333 P PPLA4 DE 08 00 07331 07331051 653 257 Europe/Berlin 2011-04-25
-2862724 Niederwiesa Niederwiesa Niederwiesa 50.86667 13.01667 P PPLA4 DE 13 145 14522 14522420 5221 303 Europe/Berlin 2011-07-31
-2862731 Niederwerth Niederwerth 50.4 7.61667 P PPLA4 DE 08 00 07137 07137218 1391 75 Europe/Berlin 2011-04-25
-2862733 Niederwerrn Niederwerrn 50.06149 10.1827 P PPLA4 DE 02 096 09678 09678160 7974 246 Europe/Berlin 2011-04-25
-2862741 Niederweis Niederweis Niederweis 49.86997 6.46717 P PPLA4 DE 08 00 07232 07232093 197 215 Europe/Berlin 2011-04-25
-2862743 Niederweiler Niederweiler 50.03333 6.45 P PPLA4 DE 08 00 07232 07232092 0 388 Europe/Berlin 2011-04-25
-2862744 Niederweiler Niederweiler 49.9 7.28333 P PPLA4 DE 08 00 07140 07140109 431 463 Europe/Berlin 2011-04-25
-2862760 Niederwambach Niederwambach 50.63333 7.6 P PPLA4 DE 08 00 07138 07138050 531 218 Europe/Berlin 2011-04-25
-2862763 Niederwallmenach Niederwallmenach 50.16667 7.81667 P PPLA4 DE 08 00 07141 07141097 411 335 Europe/Berlin 2011-04-25
-2862785 Niederviehbach Niederviehbach 48.61667 12.38333 P PPLA4 DE 02 092 09279 09279130 2444 367 Europe/Berlin 2011-04-25
-2862802 Niedertiefenbach Niedertiefenbach 50.26667 7.9 P PPLA4 DE 08 00 07141 07141096 219 352 Europe/Berlin 2011-04-25
-2862809 Niedertaufkirchen Niedertaufkirchen 48.33333 12.55 P PPLA4 DE 02 091 09183 09183131 1333 447 Europe/Berlin 2011-04-25
-2862811 Niedert Niedert 50.13333 7.53333 P PPLA4 DE 08 00 07140 07140108 132 411 Europe/Berlin 2011-04-25
-2862818 Niederstriegis Niederstriegis 51.08333 13.15 P PPLA4 DE 13 145 14522 14522410 1317 186 Europe/Berlin 2011-04-25
-2862825 Niederstotzingen Niederstotzingen 48.54127 10.23505 P PPL DE 01 4920 466 Europe/Berlin 2008-12-24
-2862831 Niederstetten Niederstetten Niederstetten 49.4 9.91944 P PPL DE 01 5496 311 Europe/Berlin 2012-02-28
-2862833 Niedersteinebach Niedersteinebach 50.60018 7.50692 P PPLA4 DE 08 00 07132 07132078 179 221 Europe/Berlin 2011-04-25
-2862842 Niederstedem Niederstedem 49.93333 6.5 P PPLA4 DE 08 00 07232 07232091 219 276 Europe/Berlin 2011-04-25
-2862845 Niederstaufenbach Niederstaufenbach 49.53333 7.51667 P PPLA4 DE 08 00 07336 07336068 290 319 Europe/Berlin 2011-04-25
-2862849 Niederstadtfeld Niederstadtfeld 50.16667 6.76667 P PPLA4 DE 08 00 07233 07233052 498 417 Europe/Berlin 2011-04-25
-2862862 Niedersohren Niedersohren 49.93333 7.33333 P PPLA4 DE 08 00 07140 07140107 440 402 Europe/Berlin 2011-04-25
-2862891 Niederschönenfeld Niederschonenfeld 48.71667 10.93333 P PPLA4 DE 02 097 09779 09779192 1419 394 Europe/Berlin 2011-04-25
-2862893 Niederschöna Niederschona 50.96667 13.41667 P PPL DE 13 2108 350 Europe/Berlin 2006-01-17
-2862899 Niederschlettenbach Niederschlettenbach 49.08333 7.85 P PPLA4 DE 08 00 07340 07340033 376 183 Europe/Berlin 2011-04-25
-2862909 Niederscheidweiler Niederscheidweiler 50.06667 6.95 P PPLA4 DE 08 00 07231 07231096 254 374 Europe/Berlin 2011-04-25
-2862914 Niedersayn Niedersayn 50.53333 7.83333 P PPLA4 DE 08 00 07143 07143275 227 404 Europe/Berlin 2011-04-25
-2862925 Niedersachswerfen Niedersachswerfen 51.56667 10.76667 P PPLA4 DE 15 00 16062 16062038 3301 229 Europe/Berlin 2011-04-25
-2862933 Niederroßla Niederrossla 51.03333 11.48333 P PPLA4 DE 15 00 16071 16071063 1253 181 Europe/Berlin 2011-04-25
-2862935 Niederroßbach Niederrossbach 50.65 8.03333 P PPLA4 DE 08 00 07143 07143274 844 524 Europe/Berlin 2011-07-31
-2862953 Niederrieden Niederrieden 48.0576 10.18321 P PPLA4 DE 02 097 09778 09778177 1340 583 Europe/Berlin 2011-05-31
-2862965 Niederreißen Niederreissen 51.1 11.41667 P PPLA4 DE 15 00 16071 16071062 247 209 Europe/Berlin 2011-04-25
-2862980 Niederraden Niederraden 49.98333 6.31667 P PPLA4 DE 08 00 07232 07232090 44 366 Europe/Berlin 2011-04-25
-2862995 Niederpierscheid Niederpierscheid 50.08333 6.36667 P PPLA4 DE 08 00 07232 07232277 50 368 Europe/Berlin 2011-04-25
-2863005 Niederotterbach Niederotterbach 49.06028 8.04556 P PPLA4 DE 08 00 07337 07337056 312 149 Europe/Berlin 2011-04-25
-2863012 Niederorschel Niederorschel Niederorschel 51.36667 10.43333 P PPLA4 DE 15 00 16061 16061074 3453 293 Europe/Berlin 2011-04-25
-2863014 Nieder-Olm Nieder-Olm 49.91166 8.20533 P PPLA4 DE 08 00 07339 07339042 8511 136 Europe/Berlin 2011-04-25
-2863019 Niederöfflingen Niederofflingen 50.06667 6.88333 P PPLA4 DE 08 00 07231 07231095 471 409 Europe/Berlin 2011-04-25
-2863031 Niedernwöhren Niedernwohren 52.35443 9.13736 P PPLA4 DE 06 00 03257 03257025 2061 61 Europe/Berlin 2011-07-08
-2863046 Niedernhausen Niedernhausen Niedernhausen 50.15 8.31667 P PPLA4 DE 05 064 06439 06439011 14494 338 Europe/Berlin 2011-04-25
-2863049 Niedernhall Niedernhall 49.29516 9.61604 P PPL DE 01 4132 208 Europe/Berlin 2008-12-21
-2863065 Niederneisen Niederneisen 50.33333 8.05 P PPLA4 DE 08 00 07141 07141095 1462 157 Europe/Berlin 2011-04-25
-2863083 Niederndodeleben Niederndodeleben Niederndodeleben 52.13333 11.5 P PPL DE 14 4307 80 Europe/Berlin 2012-01-18
-2863088 Niedernberg Niedernberg Niedernberg 49.91222 9.13694 P PPLA4 DE 02 096 09676 09676144 4793 122 Europe/Berlin 2011-04-25
-2863095 Niedermurach Niedermurach 49.45 12.36667 P PPLA4 DE 02 093 09376 09376148 1356 475 Europe/Berlin 2011-04-25
-2863103 Niedermoschel Niedermoschel 49.73333 7.8 P PPLA4 DE 08 00 07333 07333051 583 156 Europe/Berlin 2011-04-25
-2863111 Niedermohr Niedermohr 49.46667 7.46667 P PPLA4 DE 08 00 07335 07335030 1523 305 Europe/Berlin 2011-04-25
-2863178 Niederlauer Niederlauer 50.28333 10.18333 P PPLA4 DE 02 096 09673 09673146 1801 228 Europe/Berlin 2011-04-25
-2863179 Niederlauch Niederlauch 50.16667 6.43333 P PPLA4 DE 08 00 07232 07232276 53 469 Europe/Berlin 2011-04-25
-2863185 Niederlangen Niederlangen 52.85 7.28333 P PPLA4 DE 06 00 03454 03454039 1200 7 Europe/Berlin 2011-04-25
-2863198 Niederkumbd Niederkumbd 50.01667 7.53333 P PPLA4 DE 08 00 07140 07140106 309 393 Europe/Berlin 2011-04-25
-2863199 Niederkrüchten Niederkruchten Niederkirchen,Niederkruchten,Niederkrüchten 51.2 6.21667 P PPLA4 DE 07 051 05166 05166020 15487 54 Europe/Berlin 2011-07-31
-2863202 Nieder Kostenz Nieder Kostenz 49.95 7.36667 P PPLA4 DE 08 00 07140 07140105 234 383 Europe/Berlin 2011-04-25
-2863213 Niederkirchen bei Deidesheim Niederkirchen bei Deidesheim Niederkirchen,Niederkirchen bei Deidesheim 49.415 8.21 P PPLA4 DE 08 00 07332 07332039 2378 114 Europe/Berlin 2011-04-25
-2863214 Niederkirchen Niederkirchen 49.58333 7.7 P PPLA4 DE 08 00 07335 07335029 2067 341 Europe/Berlin 2011-04-25
-2863223 Niederkassel Niederkassel Niderkassel',Niederkassel,bonn-niederholtdorf,Нидеркассель 50.81667 7.03333 P PPL DE 07 36480 55 Europe/Berlin 2012-01-18
-2863239 Niederirsen Niederirsen 50.75 7.6 P PPLA4 DE 08 00 07132 07132077 106 269 Europe/Berlin 2011-04-25
-2863240 Nieder-Ingelheim Nieder-Ingelheim Ingelheim-Mitte,Nieder-Ingelheim 49.97756 8.07246 P PPL DE 08 24596 135 Europe/Berlin 2011-01-13
-2863254 Niederhosenbach Niederhosenbach 49.8 7.36667 P PPLA4 DE 08 00 07134 07134059 369 431 Europe/Berlin 2011-04-25
-2863259 Niederhorbach Niederhorbach 49.11528 8.03417 P PPLA4 DE 08 00 07337 07337055 526 164 Europe/Berlin 2011-04-25
-2863281 Niederhofen Niederhofen 50.56667 7.6 P PPLA4 DE 08 00 07138 07138048 347 332 Europe/Berlin 2011-04-25
-2863326 Nieder-Hilbersheim Nieder-Hilbersheim 49.91333 8.04194 P PPLA4 DE 08 00 07339 07339041 627 210 Europe/Berlin 2011-04-25
-2863341 Niederheimbach Niederheimbach 50.03333 7.81667 P PPLA4 DE 08 00 07339 07339040 813 87 Europe/Berlin 2011-04-25
-2863355 Niederhausen an der Appel Niederhausen an der Appel Niederhausen,Niederhausen an der Appel 49.75 7.9 P PPLA4 DE DE 08 00 07333 07333050 0 310 Europe/Berlin 2011-04-25
-2863359 Niederhausen Niederhausen 49.8 7.78333 P PPLA4 DE 08 00 07133 07133070 615 122 Europe/Berlin 2011-04-25
-2863371 Niederhambach Niederhambach 49.68333 7.2 P PPLA4 DE 08 00 07134 07134058 292 363 Europe/Berlin 2011-04-25
-2863401 Niedergörsdorf Niedergorsdorf 51.98333 13 P PPLA4 DE 11 00 12072 12072297 7197 97 Europe/Berlin 2011-04-25
-2863419 Niedergeckler Niedergeckler 49.96667 6.3 P PPLA4 DE 08 00 07232 07232089 42 364 Europe/Berlin 2011-04-25
-2863422 Niedergebra Niedergebra 51.41667 10.6 P PPLA4 DE 15 00 16062 16062037 799 267 Europe/Berlin 2011-04-25
-2863428 Niederfüllbach Niederfullbach Niederfullbach,Niederfüllbach 50.21667 10.98333 P PPLA4 DE 02 094 09473 09473153 1672 280 Europe/Berlin 2011-04-25
-2863429 Niederfrohna Niederfrohna 50.9 12.71667 P PPLA4 DE 13 145 14524 14524220 2533 283 Europe/Berlin 2011-04-25
-2863441 Niederfischbach Niederfischbach 50.85 7.86667 P PPLA4 DE 08 00 07132 07132076 5035 296 Europe/Berlin 2011-04-25
-2863442 Niederfinow Niederfinow 52.83368 13.92843 P PPLA4 DE 11 00 12060 12060172 652 6 Europe/Berlin 2011-04-25
-2863444 Niederfell Niederfell 50.28333 7.46667 P PPLA4 DE 08 00 07137 07137217 1091 212 Europe/Berlin 2011-04-25
-2863457 Niedereschach Niedereschach 48.13333 8.53333 P PPLA4 DE 01 083 08326 08326041 6004 659 Europe/Berlin 2011-04-25
-2863470 Niedererbach Niedererbach 50.43333 7.98333 P PPLA4 DE 08 00 07143 07143054 1026 239 Europe/Berlin 2011-07-31
-2863487 Niederelbert Niederelbert 50.41667 7.81667 P PPLA4 DE 08 00 07143 07143053 1642 261 Europe/Berlin 2011-04-25
-2863505 Niederdürenbach Niederdurenbach 50.45 7.18333 P PPLA4 DE 08 00 07131 07131054 1056 302 Europe/Berlin 2011-04-25
-2863508 Niederdreisbach Niederdreisbach 50.75 7.93333 P PPLA4 DE 08 00 07132 07132075 1003 302 Europe/Berlin 2011-04-25
-2863516 Niederdorla Niederdorla 51.15 10.45 P PPLA4 DE 15 00 16064 16064049 1464 216 Europe/Berlin 2011-04-25
-2863517 Niederdorfelden Niederdorfelden 50.19415 8.80005 P PPLA4 DE 05 064 06435 06435022 2925 117 Europe/Berlin 2011-04-25
-2863523 Niederdorf Niederdorf 50.73333 12.78333 P PPLA4 DE 13 145 14521 14521420 1377 392 Europe/Berlin 2011-04-25
-2863545 Niedercunnersdorf Niedercunnersdorf Cunnersdorf,Neider Cunnersdorf,Niedercunnersdorf 51.05 14.66667 P PPLA4 DE 13 146 14626 14626360 1753 312 Europe/Berlin 2011-04-25
-2863555 Niederburg Niederburg 50.11667 7.7 P PPLA4 DE 08 00 07140 07140104 699 285 Europe/Berlin 2011-04-25
-2863569 Niederbrombach Niederbrombach 49.68333 7.25 P PPLA4 DE 08 00 07134 07134057 523 393 Europe/Berlin 2011-04-25
-2863574 Niederbreitbach Niederbreitbach 50.53333 7.41667 P PPLA4 DE 08 00 07138 07138047 1459 184 Europe/Berlin 2011-04-25
-2863580 Niederbösa Niederbosa Niederbosa,Niederbösa 51.26667 11 P PPLA4 DE 15 00 16065 16065048 149 208 Europe/Berlin 2011-04-25
-2863604 Niederbergkirchen Niederbergkirchen 48.31667 12.5 P PPLA4 DE 02 091 09183 09183130 1227 463 Europe/Berlin 2011-04-25
-2863629 Niederbachheim Niederbachheim 50.25 7.76667 P PPLA4 DE 08 00 07141 07141094 273 295 Europe/Berlin 2011-04-25
-2863638 Niederaula Niederaula Niederaula 50.8 9.6 P PPLA4 DE 05 066 06632 06632015 5526 213 Europe/Berlin 2011-04-25
-2863643 Niederau Niederau 51.1773 13.54563 P PPLA4 DE 13 146 14627 14627170 4334 120 Europe/Berlin 2011-07-31
-2863652 Aschau im Chiemgau Aschau im Chiemgau Aschau,Aschau im Chiemgau,Niederaschau,Niederaschau im Chiemgau 47.76667 12.31667 P PPL DE 02 5410 617 Europe/Berlin 2012-01-18
-2863667 Niederalteich Niederalteich 48.76564 13.02412 P PPLA4 DE 02 092 09271 09271138 1895 311 Europe/Berlin 2011-08-22
-2863672 Niederalben Niederalben 49.6 7.46667 P PPLA4 DE 08 00 07336 07336067 356 218 Europe/Berlin 2011-04-25
-2863674 Niederaichbach Niederaichbach 48.6 12.31667 P PPLA4 DE 02 092 09274 09274156 3602 394 Europe/Berlin 2011-04-25
-2863678 Niederahr Niederahr 50.48333 7.85 P PPLA4 DE 08 00 07143 07143273 862 313 Europe/Berlin 2011-04-25
-2863685 Niedenstein Niedenstein Niedenstein,Niederstein 51.23333 9.31667 P PPL DE 05 5702 368 Europe/Berlin 2012-01-18
-2863686 Nieden Nieden 53.43333 13.91667 P PPLA4 DE 12 00 13062 13062040 194 25 Europe/Berlin 2011-04-25
-2863694 Nieby Nieby 54.76667 9.93333 P PPLA4 DE 10 00 01059 01059147 0 9 Europe/Berlin 2011-04-25
-2863696 Niebüll Niebull Naibel,Niebull,Niebüll 54.78663 8.82854 P PPL DE 10 00 8752 4 Europe/Berlin 2010-11-20
-2863698 Nieblum Nieblum 54.69189 8.49089 P PPLA4 DE 10 00 01054 01054087 630 6 Europe/Berlin 2011-04-25
-2863711 Nideggen Nideggen Nideggen 50.7 6.48333 P PPL DE 07 10727 312 Europe/Berlin 2012-01-18
-2863712 Nidderau Nidderau Nidderau 50.25 8.9 P PPL DE 05 20090 119 Europe/Berlin 2012-01-18
-2863716 Nidda Nidda Nidda 50.41667 9 P PPL DE 05 18241 191 Europe/Berlin 2012-01-18
-2863732 Nickenich Nickenich 50.41421 7.32728 P PPLA4 DE 08 00 07137 07137081 3582 218 Europe/Berlin 2011-04-25
-2863753 Ney Ney 50.18333 7.53333 P PPLA4 DE 08 00 07140 07140102 371 371 Europe/Berlin 2011-04-25
-2863756 Newel Newel 49.8124 6.58304 P PPLA4 DE 08 00 07235 07235094 2849 359 Europe/Berlin 2011-04-25
-2863762 Neversdorf Neversdorf Neversdorf 53.86667 10.28333 P PPLA4 DE 10 00 01060 01060062 679 26 Europe/Berlin 2011-04-25
-2863765 Neverin Neverin 53.61667 13.33333 P PPLA4 DE 12 00 13055 13055051 1179 63 Europe/Berlin 2011-04-25
-2863782 Neuzelle Neuzelle 52.09016 14.64804 P PPLA4 DE 11 00 12067 12067357 4539 50 46 Europe/Berlin 2011-07-31
-2863786 Neu Zauche Neu Zauche 51.93333 14.1 P PPLA4 DE 11 00 12061 12061352 1257 58 Europe/Berlin 2011-04-25
-2863795 Neu Wulmstorf Neu Wulmstorf 53.46667 9.8 P PPLA4 DE 06 00 03353 03353026 20150 14 Europe/Berlin 2011-07-31
-2863810 Neuwittenbek Neuwittenbek Neuwittenbek 54.36667 10.01667 P PPLA4 DE 10 00 01058 01058112 1263 20 Europe/Berlin 2011-04-25
-2863818 Winsen (Aller) Winsen (Aller) 52.68367 9.9095 P PPLA4 DE 06 00 03351 03351024 0 32 Europe/Berlin 2011-04-25
-2863840 Neuwied Neuwied Neuweid,Neuwied,Nojvid,Нойвид 50.43333 7.46667 P PPL DE 08 66805 65 Europe/Berlin 2012-01-18
-2863876 Neuweiler Neuweiler Neuweiler 48.66667 8.6 P PPLA4 DE 01 082 08235 08235050 3229 670 Europe/Berlin 2011-04-25
-2863941 Neu-Ulm Neu-Ulm Neu-Ulm,Noj-Ul'm,Nuevo Ulm,Subdistrikto Neu-Ulm,xin wu er mu,Ной-Ульм,新乌尔姆 48.39279 10.01112 P PPL DE 02 51389 474 Europe/Berlin 2010-01-29
-2863950 Neutrebbin Neutrebbin 52.66667 14.23333 P PPLA4 DE 11 00 12064 12064365 1607 1 Europe/Berlin 2011-07-31
-2863953 Neutraubling Neutraubling Neutraubling 48.98333 12.2 P PPL DE 02 12620 330 Europe/Berlin 2012-01-18
-2864005 Neustrelitz Neustrelitz Neustrelitz,Nieg Strelitz,Nojshtrelice,Stadt Neustrelitz,Нойштрелице 53.36667 13.08333 P PPL DE 12 22291 75 Europe/Berlin 2012-01-18
-2864034 Neustadt in Holstein Neustadt in Holstein 54.10707 10.8145 P PPL DE 10 16176 11 Europe/Berlin 2010-04-29
-2864036 Neustadt-Glewe Neustadt-Glewe Neustadt in Mecklenburg 53.37846 11.59264 P PPL DE 12 00 6952 35 Europe/Berlin 2010-11-22
-2864053 Neustadt bei Coburg Neustadt bei Coburg Neustadt,Neustadt bei Coburg 50.31667 11.11667 P PPL DE 02 16715 334 Europe/Berlin 2012-01-18
-2864054 Neustadt an der Weinstraße Neustadt an der Weinstrasse Neustadt,Neustadt an der Haardt,Neustadt an der Weinstrasse,Neustadt an der Weinstraße,Nojshtadt-an-der-Vajnshtrasse,Нойштадт-ан-дер-Вайнштрассе 49.35667 8.13778 P PPL DE 08 53984 153 Europe/Berlin 2012-01-18
-2864055 Neustadt an der Waldnaab Neustadt an der Waldnaab Neustadel,Neustadt,Neustadt an der Waldnaab,Nojshtadt-na-Val'dnabe,Нойштадт-на-Вальднабе 49.73139 12.17333 P PPL DE 02 6153 426 Europe/Berlin 2012-01-18
-2864056 Neustadt an der Donau Neustadt an der Donau Neustadt,Neustadt an der Donau 48.8 11.76667 P PPL DE 02 12899 355 Europe/Berlin 2012-01-18
-2864057 Neustadt an der Aisch Neustadt an der Aisch Neustadt,Neustadt an der Aisch 49.58333 10.6 P PPL DE 02 12448 325 Europe/Berlin 2012-01-18
-2864058 Neustadt am Rübenberge Neustadt am Rubenberge Neustadt,Neustadt am Rubenberge,Neustadt am Rübenberge,Nojshtadt-am-Rjubenberge,Нойштадт-ам-Рюбенберге 52.50462 9.45871 P PPL DE 06 45942 42 Europe/Berlin 2011-04-28
-2864059 Neustadt am Rennsteig Neustadt am Rennsteig Neustadt,Neustadt am Rennsteig 50.58333 10.93333 P PPLA4 DE 15 00 16070 16070038 1111 787 Europe/Berlin 2011-04-25
-2864060 Neustadt am Main Neustadt am Main Neustadt,Neustadt a. Main,Neustadt am Main 49.93083 9.5675 P PPL DE 02 1327 173 Europe/Berlin 2012-01-18
-2864067 Neustadt Neustadt 53.55196 9.98558 P PPLX DE 04 11856 10 Europe/Berlin 2011-08-20
-2864072 Neue Neustadt Neue Neustadt Magdeburg-Neustadt,Neue Neustadt,Nojshtadt,Нойштадт 52.15 11.63333 P PPLX DE 14 226851 51 Europe/Berlin 2010-04-29
-2864086 Neustadt/Harz Neustadt/Harz 51.56667 10.83333 P PPLA4 DE 15 00 16062 16062036 0 283 Europe/Berlin 2011-04-25
-2864088 Neustadt Neustadt Neustadt (Am Ohmberg),Neustadt (Eichsfeld) 51.46667 10.46667 P PPLA4 DE 15 00 16061 16061073 698 310 Europe/Berlin 2011-04-25
-2864089 Neustadt in Sachsen Neustadt in Sachsen Neustadt i. Sa.,Neustadt in Sachsen,Nojshtadt,Нойштадт 51.02844 14.21785 P PPL DE 13 14000 327 Europe/Berlin 2010-11-17
-2864091 Neustadt (Hessen) Neustadt (Hessen) Neustadt in Hessen,Nojshtadt,Нойштадт 50.85 9.11667 P PPL DE 05 9115 243 Europe/Berlin 2010-04-29
-2864098 Neustadt Vogtland Neustadt Vogtland Neustadt Vogtl.,Neustadt/Vogtl.,Neustadt/Vogtland 50.461 12.33224 P PPL DE 13 1274 606 Europe/Berlin 2010-11-17
-2864118 Neuß Neuss Neuss,Neuß,Nojs,Novaesium,Nuess,Nueuess,Nüss,Nüüß,Нойс 51.2 6.68333 P PPL DE 07 152457 41 Europe/Berlin 2012-02-08
-2864131 Neusorg Neusorg 49.93333 11.96667 P PPLA4 DE 02 093 09377 09377143 2061 561 Europe/Berlin 2011-04-25
-2864141 Neusitz Neusitz 49.36667 10.21667 P PPLA4 DE 02 095 09571 09571181 1990 423 Europe/Berlin 2011-04-25
-2864142 Neusiß Neusiss Neusiss,Neusiß 50.75 10.88333 P PPLA4 DE 15 00 16070 16070037 248 397 Europe/Berlin 2011-04-25
-2864216 Neuschönau Neuschonau 48.88419 13.47576 P PPLA4 DE 02 092 09272 09272146 2432 748 Europe/Berlin 2011-08-22
-2864265 Neusalza-Spremberg Neusalza-Spremberg Neusalza,Neusalza-Spremberg 51.03945 14.5356 P PPL DE 13 2489 310 Europe/Berlin 2011-06-30
-2864276 Neuruppin Neuruppin Neuruppin,Neuruppino,Nojrupin,nuo yi lu ping,Нойрупин,诺伊鲁平 52.92815 12.80311 P PPL DE 11 31901 45 Europe/Berlin 2009-01-29
-2864303 Neuried Neuried 48.09322 11.46561 P PPLA4 DE 02 091 09184 09184132 7469 558 Europe/Berlin 2011-04-25
-2864324 Neureichenau Neureichenau 48.74861 13.74699 P PPLA4 DE 02 092 09272 09272136 4480 668 Europe/Berlin 2011-07-15
-2864356 Neupotz Neupotz 49.11778 8.31944 P PPLA4 DE 08 00 07334 07334022 1713 104 Europe/Berlin 2011-04-25
-2864357 Neu Poserin Neu Poserin 53.5529 12.16461 P PPLA4 DE 12 00 13060 13060055 648 79 Europe/Berlin 2011-04-25
-2864377 Neupetershain Neupetershain 51.6 14.16667 P PPLA4 DE 11 00 12066 12066228 0 134 Europe/Berlin 2011-04-25
-2864387 Neuötting Neuotting Neu Oetting,Neuotting,Neuötting 48.23333 12.7 P PPL DE 02 8741 406 Europe/Berlin 2012-01-18
-2864420 Neunkirchen am Sand Neunkirchen am Sand Neunkirchen,Neunkirchen am Sand 49.51667 11.31667 P PPL DE 02 4758 331 Europe/Berlin 2012-01-18
-2864421 Neunkirchen am Potzberg Neunkirchen am Potzberg Neunkirchen,Neunkirchen am Potzberg 49.5 7.48333 P PPLA4 DE 08 00 07336 07336066 489 310 Europe/Berlin 2011-04-25
-2864422 Neunkirchen am Main Neunkirchen am Main Neunkirchen,Neunkirchen am Main 49.91667 11.65 P PPL DE 02 7784 386 Europe/Berlin 2012-01-18
-2864425 Neunkirchen Neunkirchen Neunkirchen 50.8 8 P PPLA4 DE 07 059 05970 05970036 14225 373 Europe/Berlin 2011-07-31
-2864426 Neunkirchen Neunkirchen 50.55 8.1 P PPLA4 DE 08 00 07143 07143271 551 325 Europe/Berlin 2011-04-25
-2864428 Neunkirchen Neunkirchen 49.8 9.4 P PPLA4 DE 02 096 09676 09676143 0 272 Europe/Berlin 2011-07-31
-2864429 Neunkirchen Neunkirchen 49.75 6.95 P PPLA4 DE 08 00 07231 07231093 140 453 Europe/Berlin 2011-04-25
-2864434 Neunkirchen Neunkirchen 49.38694 9.01056 P PPLA4 DE 01 082 08225 08225068 1795 294 Europe/Berlin 2011-04-25
-2864435 Neunkirchen Neunkirchen 49.35 7.18333 P PPL DE 09 49843 255 Europe/Berlin 2006-01-17
-2864437 Neunkhausen Neunkhausen 50.7 7.9 P PPLA4 DE 08 00 07143 07143270 1148 436 Europe/Berlin 2011-04-25
-2864446 Neunheilingen Neunheilingen 51.2 10.66667 P PPLA4 DE 15 00 16064 16064048 527 275 Europe/Berlin 2011-04-25
-2864455 Neundorf Neundorf Neundorf 51.81667 11.56667 P PPL DE 14 2315 73 Europe/Berlin 2012-02-02
-2864468 Neunburg vorm Wald Neunburg vorm Wald Neuburg,Neunburg vorm Wald 49.34667 12.38444 P PPL DE 02 8172 387 Europe/Berlin 2012-01-18
-2864475 Neumünster Neumunster Neumuenster,Neumunster,Neumünster,Niemuenster,Niemünster,Novum Monasterium,noimyunsuta,ノイミュンスター 54.06667 9.98333 P PPL DE 10 78383 21 Europe/Berlin 2012-01-18
-2864502 Neumühle Neumuehle 53.63171 11.37085 P PPLX DE 12 2487 75 Europe/Berlin 2010-03-27
-2864547 Neumarkt-Sankt Veit Neumarkt-Sankt Veit Neumarkt,Neumarkt Sankt Beit,Neumarkt an der Rott,Neumarkt-Sankt Veit,Neumarkt-Sankt Viet 48.36667 12.5 P PPL DE 02 6231 442 Europe/Berlin 2012-01-18
-2864549 Neumarkt in der Oberpfalz Neumarkt in der Oberpfalz Neumarkt,Neumarkt in der Oberpfalz,Nojmarkt,Stadt Neumarkt in der Oberpfalz,Ноймаркт 49.28028 11.46278 P PPLA4 DE 02 093 09373 09373113 39557 431 Europe/Berlin 2011-07-31
-2864558 Neumark Neumark 50.66667 12.35 P PPLA4 DE 13 145 14523 14523280 3281 384 Europe/Berlin 2011-04-25
-2864577 Neulußheim Neulussheim 49.29806 8.51833 P PPLA4 DE 01 082 08226 08226059 6489 101 Europe/Berlin 2011-04-25
-2864613 Neulewin Neulewin 52.72434 14.27922 P PPLA4 DE 11 00 12064 12064349 1079 5 Europe/Berlin 2011-07-31
-2864616 Neuler Neuler 48.92803 10.06888 P PPLA4 DE 01 081 08136 08136046 3016 505 Europe/Berlin 2011-04-25
-2864618 Neuleiningen Neuleiningen 49.54167 8.13889 P PPLA4 DE 08 00 07332 07332038 883 236 Europe/Berlin 2011-04-25
-2864621 Neulehe Neulehe 53 7.4 P PPLA4 DE 06 00 03454 03454038 717 6 Europe/Berlin 2011-04-25
-2864679 Neu Kosenow Neu Kosenow 53.8 13.75 P PPLA4 DE 12 00 13059 13059070 678 2 Europe/Berlin 2011-04-25
-2864705 Neukloster Neukloster Neukloster 53.86667 11.7 P PPL DE 12 4176 43 Europe/Berlin 2012-01-18
-2864723 Neukirchen vorm Wald Neukirchen vorm Wald Neukirchen,Neukirchen vorm Wald 48.68333 13.38333 P PPLA4 DE DE 02 092 09275 09275135 0 462 Europe/Berlin 2011-04-25
-2864730 Neukirchen-Balbini Neukirchen-Balbini Neukirchen,Neukirchen-Balbini 49.3 12.43333 P PPL DE 02 1162 453 Europe/Berlin 2012-01-18
-2864735 Neukirchen Neukirchen 54.86667 8.73333 P PPLA4 DE 10 00 01054 01054086 1363 1 Europe/Berlin 2011-04-25
-2864737 Neukirchen Neukirchen 54.31667 11.01667 P PPLA4 DE 10 00 01055 01055031 0 9 Europe/Berlin 2011-04-25
-2864738 Neukirchen Neukirchen 54.21667 10.55 P PPL DE 10 1140 49 Europe/Berlin 2006-01-17
-2864748 Neukirchen Neukirchen Neukirchen 50.86667 9.33333 P PPL DE 05 7620 282 Europe/Berlin 2012-01-18
-2864749 Neukirchen Neukirchen 50.8 12.36667 P PPL DE 13 4492 270 Europe/Berlin 2006-01-17
-2864750 Neukirchen Neukirchen 50.78333 12.86667 P PPL DE 13 7517 365 Europe/Berlin 2006-01-17
-2864759 Neukirchen Neukirchen 49.25 12.96667 P PPL DE 02 4071 513 Europe/Berlin 2006-01-17
-2864761 Neukirchen Neukirchen Neukirchen-Haggn 48.97506 12.75547 P PPLA4 DE 02 092 09278 09278154 1802 373 Europe/Berlin 2011-04-25
-2864770 Neukirch Neukirch 51.28333 13.98333 P PPLA4 DE 13 146 14625 14625370 1783 175 Europe/Berlin 2011-10-30
-2864771 Neukirch/Lausitz Neukirch/Lausitz 51.09727 14.30789 P PPL DE 13 146 14625 14625380 5567 322 Europe/Berlin 2011-10-30
-2864774 Neukirch Neukirch Neukirch 47.66667 9.7 P PPLA4 DE 01 084 08435 08435042 2612 587 Europe/Berlin 2011-04-25
-2864778 Neukieritzsch Neukieritzsch Neukieritzsch 51.16667 12.43333 P PPLA4 DE 13 147 14729 14729320 3602 132 Europe/Berlin 2011-04-25
-2864804 Neu Kaliß Neu Kaliss 53.17466 11.29446 P PPLA4 DE 12 00 13054 13054079 2128 16 Europe/Berlin 2011-07-31
-2864806 Neukalen Neukalen 53.82275 12.79015 P PPL DE 12 2199 7 Europe/Berlin 2010-06-21
-2864820 Neu Isenburg Neu Isenburg Neu Isenburg,Neulsenburg,Noj-Izenburg,Ной-Изенбург 50.05 8.7 P PPL DE 05 35293 135 Europe/Berlin 2012-01-18
-2864826 Neuhütten Neuhutten 50 9.41667 P PPLA4 DE 02 096 09677 09677165 1252 335 Europe/Berlin 2011-04-25
-2864828 Neuhütten Neuhutten 49.63333 7.01667 P PPLA4 DE 08 00 07235 07235093 831 677 Europe/Berlin 2011-04-25
-2864869 Neuhofen Neuhofen Neuhofen 49.42778 8.42472 P PPLA4 DE 08 00 07338 07338020 7326 97 Europe/Berlin 2011-04-25
-2864882 Neuhof an der Zenn Neuhof an der Zenn Neuhof,Neuhof an der Zenn 49.46667 10.65 P PPL DE 02 2091 348 Europe/Berlin 2012-01-18
-2864900 Heringsdorf Heringsdorf 53.95 14.16667 P PPLA4 DE 12 00 13059 13059112 0 16 Europe/Berlin 2011-07-31
-2864927 Neuhof Neuhof 51.98333 10.05 P PPLA4 DE 06 00 03254 03254025 0 217 Europe/Berlin 2011-04-25
-2864936 Neuhof Neuhof 50.45313 9.6175 P PPLA4 DE 05 066 06631 06631018 11422 275 Europe/Berlin 2011-07-31
-2865036 Neuhemsbach Neuhemsbach 49.51667 7.91667 P PPLA4 DE 08 00 07335 07335028 828 347 Europe/Berlin 2011-04-25
-2865047 Neuheilenbach Neuheilenbach 50.11667 6.56667 P PPLA4 DE 08 00 07232 07232273 253 519 Europe/Berlin 2011-04-25
-2865053 Neuhaus-Schierschnitz Neuhaus-Schierschnitz 50.31522 11.24399 P PPLA4 DE 15 00 16072 16072014 3460 366 Europe/Berlin 2011-04-25
-2865085 Neuhausen ob Eck Neuhausen ob Eck Neuhausen 47.97257 8.92759 P PPLA4 DE DE 01 083 08327 08327038 0 767 Europe/Berlin 2011-04-25
-2865086 Neuhausen auf den Fildern Neuhausen auf den Fildern Neuhausen,Neuhausen auf den Fildern 48.68333 9.28333 P PPLA4 DE 01 081 08116 08116047 11462 321 Europe/Berlin 2011-04-25
-2865098 Neuhausen Neuhausen Neuhausen 50.66667 13.46667 P PPL DE 13 3325 651 Europe/Berlin 2012-01-18
-2865104 Neuhausen Neuhausen 48.8 8.78333 P PPLA4 DE 01 082 08236 08236044 5475 494 Europe/Berlin 2011-04-25
-2865114 Neuhausen Neuhausen 47.83333 8.76667 P PPL DE 01 3838 486 Europe/Berlin 2006-01-17
-2865123 Neuhäusel Neuhausel 50.38333 7.71667 P PPLA4 DE 08 00 07143 07143052 2081 285 Europe/Berlin 2011-04-25
-2865129 Neuhaus an der Pegnitz Neuhaus an der Pegnitz Neuhaus,Neuhaus an der Pegnitz 49.63333 11.55 P PPL DE 02 2974 385 Europe/Berlin 2012-01-18
-2865130 Neuhaus an der Oste Neuhaus an der Oste Neuhaus,Neuhaus an der Oste 53.8 9.03333 P PPL DE 06 1281 1 Europe/Berlin 2012-01-18
-2865155 Neuhaus Neuhaus 50.68333 10.93333 P PPL DE 15 6052 480 Europe/Berlin 2006-01-17
-2865219 Neuharlingersiel Neuharlingersiel 53.69993 7.70288 P PPLX DE 06 00 03462 03462010 1096 2 Europe/Berlin 2011-04-25
-2865223 Neuhardenberg Neuhardenberg Marxwalde 52.59601 14.23768 P PPLA4 DE 11 00 12064 12064340 2957 13 Europe/Berlin 2011-04-25
-2865247 Neu Gülze Neu Gulze 53.36667 10.78333 P PPLA4 DE 12 00 13054 13054078 775 10 Europe/Berlin 2011-04-25
-2865293 Neugersdorf Neugersdorf Neugersdorf 50.96667 14.61667 P PPL DE 13 6260 447 Europe/Berlin 2012-01-18
-2865294 Neugernsdorf Neugernsdorf Neugernsdorf 50.71667 12.13333 P PPLA4 DE 15 00 16076 16076051 165 306 Europe/Berlin 2011-04-25
-2865314 Neu Gaarz Neu Gaarz 53.58333 12.53333 P PPLA4 DE 12 00 13056 13056050 133 71 Europe/Berlin 2011-04-25
-2865325 Neufraunhofen Neufraunhofen 48.4 12.21667 P PPLA4 DE 02 092 09274 09274154 1089 490 Europe/Berlin 2011-04-25
-2865331 Neufra Neufra 48.24774 9.18311 P PPLA4 DE 01 084 08437 08437082 0 681 Europe/Berlin 2011-04-25
-2865332 Neufra Neufra 48.1288 9.47554 P PPL DE 01 1960 542 Europe/Berlin 2008-12-24
-2865341 Neuffen Neuffen 48.5546 9.3755 P PPL DE 01 6365 404 Europe/Berlin 2008-12-22
-2865347 Neufelderkoog Neufelderkoog Neufelderkoog 53.9 8.96667 P PPLA4 DE 10 00 01051 01051077 140 0 Europe/Berlin 2011-04-25
-2865359 Neufeld Neufeld 53.9 9.01667 P PPLA4 DE 10 00 01051 01051076 668 254 Europe/Berlin 2011-04-25
-2865376 Neufahrn bei Freising Neufahrn bei Freising Neufahrn,Neufahrn bei Freising 48.31667 11.66667 P PPL DE 02 18255 462 Europe/Berlin 2012-01-18
-2865378 Neufahrn Neufahrn 48.25 12.43333 P PPL DE 02 3899 417 Europe/Berlin 2006-01-17
-2865472 Neuerkirch Neuerkirch 50.01667 7.48333 P PPLA4 DE 08 00 07140 07140101 285 374 Europe/Berlin 2011-04-25
-2865508 Neuerburg Neuerburg 50 6.95 P PPL DE 08 1545 200 Europe/Berlin 2006-01-17
-2865553 Neuental Neuental 51 9.21667 P PPLA4 DE 05 066 06634 06634016 3420 231 Europe/Berlin 2011-04-25
-2865557 Neuenstein Neuenstein Neuenstein 49.20583 9.57917 P PPL DE 01 6240 280 Europe/Berlin 2012-01-18
-2865560 Neuenstadt am Kocher Neuenstadt am Kocher Burg Neuenstadt,Neuenstadt,Neuenstadt am Kocher 49.23528 9.33028 P PPL DE 01 9312 167 Europe/Berlin 2012-02-28
-2865575 Neuensalz Neuensalz 50.5 12.21667 P PPLA4 DE 13 145 14523 14523270 2400 426 Europe/Berlin 2011-04-25
-2865592 Neuenrade Neuenrade Neuenrade 51.28333 7.78333 P PPL DE 07 12602 330 Europe/Berlin 2012-01-18
-2865603 Neuenmarkt Neuenmarkt 50.1 11.6 P PPLA4 DE 02 094 09477 09477143 3145 360 Europe/Berlin 2011-04-25
-2865627 Neuenkirchen Neuenkirchen 54.55 13.33333 P PPLA4 DE 12 00 13061 13061024 406 0 Europe/Berlin 2011-04-25
-2865628 Neuenkirchen Neuenkirchen 54.23333 8.98333 P PPLA4 DE 10 00 01051 01051075 0 0 Europe/Berlin 2011-04-25
-2865629 Neuenkirchen Neuenkirchen 54.11667 13.38333 P PPLA4 DE 12 00 13059 13059074 0 1 Europe/Berlin 2011-07-31
-2865631 Neuenkirchen Neuenkirchen 53.8 13.56667 P PPLA4 DE 12 00 13059 13059073 341 15 Europe/Berlin 2011-04-25
-2865632 Neuenkirchen Neuenkirchen 53.76667 8.9 P PPLA4 DE 06 00 03352 03352038 0 254 Europe/Berlin 2011-04-25
-2865633 Neuenkirchen Neuenkirchen 53.59729 13.36942 P PPLA4 DE 12 00 13055 13055049 1248 73 Europe/Berlin 2011-04-25
-2865635 Neuenkirchen Neuenkirchen 53.51667 9.6 P PPLA4 DE 06 00 03359 03359033 801 253 Europe/Berlin 2011-04-25
-2865636 Neuenkirchen Neuenkirchen 53.23333 8.5 P PPL DE 06 1572 253 Europe/Berlin 2006-01-17
-2865637 Neuenkirchen Neuenkirchen 53.03259 9.70642 P PPLA4 DE 06 00 03358 03358017 5693 68 Europe/Berlin 2011-07-31
-2865638 Neuenkirchen Neuenkirchen 52.77629 8.75044 P PPLA4 DE 06 00 03251 03251028 1114 55 Europe/Berlin 2011-07-31
-2865640 Neuenkirchen Neuenkirchen 52.41667 7.85 P PPLA4 DE 06 00 03459 03459027 0 55 Europe/Berlin 2011-04-25
-2865641 Neuenkirchen Neuenkirchen 52.24472 7.37183 P PPLA4 DE 07 055 05566 05566060 13953 64 Europe/Berlin 2011-04-25
-2865642 Neuenkirchen Neuenkirchen 52.13333 8.38333 P PPL DE 06 4569 116 Europe/Berlin 2006-01-17
-2865716 Neuenhagen Neuenhagen 52.52985 13.68914 P PPL DE 11 16170 58 Europe/Berlin 2009-01-29
-2865721 Neuengörs Neuengors Neuengors,Neuengörs 53.9 10.38333 P PPLA4 DE 10 00 01060 01060061 916 40 Europe/Berlin 2011-04-25
-2865722 Neuengönna Neuengonna Neuengonna,Neuengönna 50.98333 11.65 P PPLA4 DE 15 00 16074 16074063 698 264 Europe/Berlin 2011-04-25
-2865777 Neuendorf A Neuendorf A Neuendorf,Neuendorf A 53.73333 13.83333 P PPLA4 DE 12 00 13059 13059071 171 4 Europe/Berlin 2011-04-25
-2865794 Neuendorf Neuendorf 50.28333 6.46667 P PPLA4 DE 08 00 07232 07232272 102 552 Europe/Berlin 2011-04-25
-2865795 Neuendorf Neuendorf 50.03333 9.65 P PPLA4 DE 02 096 09677 09677164 917 159 Europe/Berlin 2011-04-25
-2865798 Neuendettelsau Neuendettelsau 49.28333 10.78333 P PPLA4 DE 02 095 09571 09571180 7836 441 Europe/Berlin 2011-04-25
-2865799 Neuendeich Neuendeich Neuendeich 53.68333 9.61667 P PPLA4 DE 10 00 01056 01056037 537 255 Europe/Berlin 2011-04-25
-2865812 Neuenbürg Neuenburg Neuenburg,Neuenbürg 48.83333 8.58333 P PPL DE 01 7780 351 Europe/Berlin 2012-01-18
-2865813 Neuenburg am Rhein Neuenburg am Rhein Neueburg,Neuenburg,Neuenburg am Rhein 47.81431 7.56005 P PPL DE 01 11682 228 Europe/Berlin 2011-02-07
-2865820 Neuenbrook Neuenbrook Altendorf,Neuenbrook 53.86667 9.55 P PPLA4 DE 10 00 01061 01061073 673 251 Europe/Berlin 2011-04-25
-2865904 Neu Duvenstedt Neu Duvenstedt Neu Duvenstedt 54.36667 9.66667 P PPLA4 DE 10 00 01058 01058111 151 11 Europe/Berlin 2011-04-25
-2865906 Neudrossenfeld Neudrossenfeld Neu Dressenfeld,Neudrossenfeld 50.01667 11.5 P PPLA4 DE 02 094 09477 09477142 3895 344 Europe/Berlin 2011-04-25
-2865945 Neudorf-Bornstein Neudorf-Bornstein Neudorf-Bornstein 54.43333 9.95 P PPLA4 DE 10 00 01058 01058110 1042 22 Europe/Berlin 2011-04-25
-2866009 Neudietendorf Neudietendorf Neudietendorf 50.91667 10.91667 P PPL DE 15 3059 245 Europe/Berlin 2012-01-18
-2866022 Neudenau Neudenau Neudenau 49.29361 9.27028 P PPL DE 01 5102 190 Europe/Berlin 2012-01-18
-2866046 Neu Darchau Neu Darchau 53.22901 10.88529 P PPLA4 DE 06 00 03354 03354019 1535 15 Europe/Berlin 2011-08-28
-2866070 Neuburg an der Donau Neuburg an der Donau Neuburg,Neuburg an der Donau,Neuburg-Donau,Nojburg-an-der-Donau,Нойбург-ан-дер-Донау 48.73333 11.18333 P PPL DE 02 28370 383 Europe/Berlin 2012-01-18
-2866072 Neuburg Neuburg 53.40677 11.91742 P PPL DE 12 2162 46 Europe/Berlin 2011-07-08
-2866074 Neuburg Neuburg Neuburg,Neuburg am Rhein 48.98333 8.25 P PPL DE 08 2549 108 Europe/Berlin 2012-01-18
-2866077 Neuburg Neuburg 47.76667 10.35 P PPL DE 02 3209 711 Europe/Berlin 2006-01-17
-2866086 Neubulach Neubulach 48.66092 8.69611 P PPL DE 01 5540 584 Europe/Berlin 2010-07-10
-2866087 Neubukow Neubukow Neubukow 54.03333 11.66667 P PPL DE 12 4276 12 Europe/Berlin 2012-01-18
-2866100 Neubrunn Neubrunn 50.5 10.46667 P PPLA4 DE 15 00 16066 16066045 613 320 Europe/Berlin 2011-04-25
-2866102 Neubrunn Neubrunn Neubrunn 49.72972 9.67111 P PPL DE 02 2311 296 Europe/Berlin 2012-02-02
-2866135 Neubrandenburg Neubrandenburg Neubrandenbourg,Neubrandenburg,Nojbrandenburge,Нойбранденбурге 53.56667 13.26667 P PPL DE 12 68082 16 Europe/Berlin 2012-01-18
-2866150 Neubörger Neuborger 52.95815 7.44839 P PPLA4 DE 06 00 03454 03454037 1568 11 Europe/Berlin 2011-04-25
-2866152 Neu Boltenhagen Neu Boltenhagen Boltenhagen,Neu Boltenhagen 54.06667 13.61667 P PPLA4 DE 12 00 13059 13059069 657 12 Europe/Berlin 2011-04-25
-2866174 Neubiberg Neubiberg 48.0771 11.65812 P PPLA4 DE 02 091 09184 09184146 12717 548 Europe/Berlin 2011-07-31
-2866175 Neubeuern Neubeuern Neupeurn 47.77403 12.13994 P PPL DE 02 091 4234 484 Europe/Berlin 2010-11-15
-2866208 Neuberend Neuberend Neuberend 54.55 9.53333 P PPLA4 DE 10 00 01059 01059062 1142 34 Europe/Berlin 2011-04-25
-2866253 Neu Bartelshagen Neu Bartelshagen Adlig Bartelshagen,Bartelshagen 54.34365 12.86199 P PPLA4 DE 12 00 13057 13057060 426 3 Europe/Berlin 2011-04-25
-2866264 Neu-Bamberg Neu-Bamberg 49.8 7.91667 P PPLA4 DE 08 00 07133 07133069 936 172 Europe/Berlin 2011-04-25
-2866280 Neu-Anspach Neu-Anspach 50.31667 8.5 P PPLA4 DE 05 064 06434 06434007 15276 320 Europe/Berlin 2011-07-31
-2866291 Neualbenreuth Neualbenreuth 49.98037 12.44373 P PPL DE 02 1572 557 Europe/Berlin 2009-10-28
-2866304 Netzschkau Netzschkau Netzschkau 50.61667 12.25 P PPL DE 13 4448 357 Europe/Berlin 2012-01-18
-2866325 Netzbach Netzbach 50.31667 8.1 P PPLA4 DE 08 00 07141 07141093 0 205 Europe/Berlin 2011-04-25
-2866333 Nettetal Nettetal Nettetal 51.31667 6.28333 P PPLA4 DE 07 051 05166 05166016 42417 52 Europe/Berlin 2011-07-31
-2866336 Nettersheim Nettersheim 50.5 6.63333 P PPLA4 DE 07 053 05366 05366032 7901 480 Europe/Berlin 2011-04-25
-2866345 Nettelsee Nettelsee Nettelsee 54.18333 10.18333 P PPLA4 DE 10 00 01057 01057054 394 39 Europe/Berlin 2011-04-25
-2866375 Netphen Netphen Netphen 50.91667 8.1 P PPL DE 07 25163 300 Europe/Berlin 2012-01-18
-2866416 Nesselwang Nesselwang Nesselwang 47.61667 10.5 P PPL DE 02 3498 919 Europe/Berlin 2012-01-18
-2866466 Neschwitz Neschwitz 51.26667 14.33333 P PPLA4 DE 13 146 14625 14625360 2653 153 Europe/Berlin 2011-04-25
-2866472 Nerzweiler Nerzweiler 49.6 7.55 P PPLA4 DE 08 00 07336 07336065 134 233 Europe/Berlin 2011-04-25
-2866473 Nersingen Nersingen 48.42829 10.12356 P PPLA4 DE 02 097 09775 09775134 9177 462 Europe/Berlin 2011-07-31
-2866477 Neroth Neroth 50.19602 6.74689 P PPLA4 DE 08 00 07233 07233050 973 477 Europe/Berlin 2011-07-21
-2866482 Neritz Neritz 53.78333 10.28333 P PPLA4 DE 10 00 01062 01062050 346 17 Europe/Berlin 2011-04-25
-2866486 Neresheim Neresheim 48.75511 10.33041 P PPL DE 01 081 8271 502 Europe/Berlin 2010-11-15
-2866487 Nerenstetten Nerenstetten 48.52888 10.0991 P PPLA4 DE 01 084 08425 08425085 356 512 Europe/Berlin 2011-04-25
-2866488 Nerdlen Nerdlen 50.23333 6.86667 P PPLA4 DE 08 00 07233 07233049 223 466 Europe/Berlin 2011-04-25
-2866492 Nerchau Nerchau 51.27094 12.78912 P PPL DE 13 4073 138 Europe/Berlin 2009-11-03
-2866511 Nentershausen Nentershausen Nentershausen 51.01667 9.93333 P PPLA4 DE 05 066 06632 06632013 3166 287 Europe/Berlin 2011-04-25
-2866512 Nentershausen Nentershausen 50.41667 7.93333 P PPLA4 DE 08 00 07143 07143051 2048 295 Europe/Berlin 2011-04-25
-2866516 Nennslingen Nennslingen 49.04709 11.13052 P PPL DE 02 1465 524 Europe/Berlin 2009-06-15
-2866523 Nennhausen Nennhausen 52.6 12.5 P PPLA4 DE 11 00 12063 12063212 2100 33 Europe/Berlin 2011-04-25
-2866527 Nenndorf Nenndorf 53.58333 7.43333 P PPLA4 DE 06 00 03462 03462009 0 4 Europe/Berlin 2011-04-25
-2866561 Nellingen Nellingen 48.54196 9.79053 P PPLA4 DE 01 084 08425 08425084 1873 691 Europe/Berlin 2011-04-25
-2866576 Neitersen Neitersen 50.68333 7.56667 P PPLA4 DE 08 00 07132 07132074 873 249 Europe/Berlin 2011-07-31
-2866583 Neinstedt Neinstedt Neinstedt 51.75 11.08333 P PPL DE 14 2017 139 Europe/Berlin 2012-01-18
-2866593 Neidlingen Neidlingen 48.57865 9.56454 P PPLA4 DE 01 081 08116 08116043 1943 457 Europe/Berlin 2011-04-25
-2866600 Neidhartshausen Neidhartshausen 50.68333 10.13333 P PPLA4 DE 15 00 16063 16063059 321 433 Europe/Berlin 2011-04-25
-2866606 Neidenstein Neidenstein 49.31667 8.88472 P PPLA4 DE 01 082 08226 08226058 1804 166 Europe/Berlin 2011-04-25
-2866608 Neidenfels Neidenfels 49.38889 8.04639 P PPLA4 DE 08 00 07332 07332037 979 201 Europe/Berlin 2011-04-25
-2866611 Neidenbach Neidenbach 50.1 6.55 P PPLA4 DE 08 00 07232 07232087 917 482 Europe/Berlin 2011-04-25
-2866626 Neichen Neichen 50.26667 6.86667 P PPLA4 DE 08 00 07233 07233048 152 541 Europe/Berlin 2011-04-25
-2866631 Nehren Nehren 50.08333 7.2 P PPLA4 DE 08 00 07135 07135069 102 103 Europe/Berlin 2011-04-25
-2866632 Nehren Nehren 48.43097 9.0699 P PPLA4 DE 01 084 08416 08416026 4159 424 Europe/Berlin 2011-04-25
-2866634 Nehmten Nehmten Nehmten 54.1 10.4 P PPLA4 DE 10 00 01057 01057053 297 18 Europe/Berlin 2011-04-25
-2866637 Nehms Nehms Nehms 54.01667 10.36667 P PPLA4 DE 10 00 01060 01060060 547 54 Europe/Berlin 2011-04-25
-2866657 Negernbötel Negernbotel Negernbotel,Negernbötel 53.98333 10.25 P PPLA4 DE 10 00 01060 01060059 1032 34 Europe/Berlin 2011-04-25
-2866663 Negenharrie Negenharrie Negenharrie 54.15 10.06667 P PPLA4 DE 10 00 01058 01058109 360 36 Europe/Berlin 2011-04-25
-2866665 Negenborn Negenborn 51.88333 9.56667 P PPLA4 DE 06 00 03255 03255030 0 145 Europe/Berlin 2011-04-25
-2866677 Neetzow Neetzow 53.88333 13.41667 P PPLA4 DE 12 00 13059 13059066 588 11 Europe/Berlin 2011-04-25
-2866678 Neetzka Neetzka 53.53333 13.51667 P PPLA4 DE 12 00 13055 13055047 288 86 Europe/Berlin 2011-04-25
-2866682 Neetze Neetze 53.26521 10.62134 P PPLA4 DE 06 00 03355 03355026 0 21 Europe/Berlin 2011-08-28
-2866705 Neenstetten Neenstetten 48.54679 10.01966 P PPLA4 DE 01 084 08425 08425083 809 582 Europe/Berlin 2011-04-25
-2866714 Neef Neef 50.1 7.13333 P PPLA4 DE 08 00 07135 07135068 520 147 Europe/Berlin 2011-04-25
-2866739 Neddemin Neddemin 53.65 13.28333 P PPLA4 DE 12 00 13055 13055046 331 30 Europe/Berlin 2011-04-25
-2866751 Neckarzimmern Neckarzimmern Neckarzimmern 49.31917 9.13278 P PPLA4 DE 01 082 08225 08225067 1629 153 Europe/Berlin 2011-04-25
-2866753 Neckarwestheim Neckarwestheim Neckarwestheim 49.04694 9.19 P PPLA4 DE 01 081 08125 08125066 3568 257 Europe/Berlin 2011-04-25
-2866755 Neckartenzlingen Neckartenzlingen 48.58981 9.23478 P PPLA4 DE 01 081 08116 08116042 6308 294 Europe/Berlin 2011-04-25
-2866757 Neckartailfingen Neckartailfingen 48.61172 9.26371 P PPLA4 DE 01 081 08116 08116041 3862 285 Europe/Berlin 2011-04-25
-2866758 Neckarsulm Neckarsulm Neckarsulm,Nekkarzul'm,Неккарзульм 49.19278 9.22611 P PPL DE 01 27413 163 Europe/Berlin 2012-02-28
-2866759 Neckarsteinach Neckarsteinach Neckarsteinach 49.40861 8.83861 P PPL DE 05 3923 125 Europe/Berlin 2012-01-18
-2866773 Neckargerach Neckargerach 49.4 9.06667 P PPLA4 DE 01 082 08225 08225064 2419 133 Europe/Berlin 2011-04-25
-2866774 Neckargemünd Neckargemund Neckargemund,Neckargemünd 49.39222 8.79417 P PPL DE 01 14335 132 Europe/Berlin 2012-01-18
-2866779 Neckarbischofsheim Neckarbischofsheim Neckar-bischofshein,Neckarbischofsheim 49.29528 8.96333 P PPL DE 01 4091 180 Europe/Berlin 2012-01-18
-2866793 Nebra Nebra Nebra 51.28333 11.56667 P PPL DE 14 2690 152 Europe/Berlin 2012-01-18
-2866810 Nebelschütz Nebelschutz 51.26667 14.16667 P PPLA4 DE 13 146 14625 14625350 1241 188 Europe/Berlin 2011-04-25
-2866826 Nebel Nebel 54.65085 8.35373 P PPLA4 DE 10 00 01054 01054085 952 12 Europe/Berlin 2011-04-25
-2866832 Nazza Nazza Nazza 51.1 10.33333 P PPLA4 DE 15 00 16063 16063058 674 277 Europe/Berlin 2011-04-25
-2866834 Nauwalde Nauwalde 51.41667 13.41667 P PPLA4 DE 13 146 14627 14627160 1119 97 Europe/Berlin 2011-04-25
-2866842 Nausnitz Nausnitz Nausnitz 50.95 11.73333 P PPLA4 DE 15 00 16074 16074061 79 202 Europe/Berlin 2011-04-25
-2866843 Nausitz Nausitz Nausitz 51.31667 11.33333 P PPLA4 DE 15 00 16065 16065047 195 119 Europe/Berlin 2011-04-25
-2866851 Nauroth Nauroth 50.7 7.86667 P PPLA4 DE 08 00 07132 07132073 1183 444 Europe/Berlin 2011-04-25
-2866858 Nauort Nauort 50.46667 7.63333 P PPLA4 DE 08 00 07143 07143050 2299 309 Europe/Berlin 2011-04-25
-2866861 Naunhof Naunhof Naunhof,Neunhof 51.2777 12.58827 P PPL DE 13 8753 133 Europe/Berlin 2011-06-16
-2866865 Naunheim Naunheim 50.25 7.31667 P PPLA4 DE 08 00 07137 07137080 428 236 Europe/Berlin 2011-04-25
-2866885 Naundorf Naundorf 51.25 13.11667 P PPLA4 DE 13 147 14730 14730210 2695 147 Europe/Berlin 2011-07-31
-2866905 Naumburg Naumburg Naumburg 51.24816 9.16569 P PPL DE 05 5563 286 Europe/Berlin 2011-07-11
-2866906 Naumburg Naumburg Naumberg,Naumbourg,Naumburg,Naumburg an der Saale,Naumburg/Saale,Stadt Naumburg,naumuburuku,Наумбург,ナウムブルク 51.15 11.81667 P PPL DE 14 29722 129 Europe/Berlin 2012-01-18
-2866917 Nauheim Nauheim 49.95083 8.46333 P PPLA4 DE 05 064 06433 06433009 0 89 Europe/Berlin 2011-04-25
-2866925 Nauendorf Nauendorf 51.6 11.88333 P PPLA4 DE 14 00 15088 15088240 1832 148 Europe/Berlin 2011-04-25
-2866928 Nauendorf Nauendorf 50.89453 11.18108 P PPLA4 DE 15 00 16071 16071059 0 335 Europe/Berlin 2011-04-25
-2866930 Nauen Nauen 52.60701 12.87374 P PPL DE 11 16600 37 Europe/Berlin 2009-02-27
-2866942 Nattheim Nattheim 48.69963 10.24209 P PPLA4 DE 01 081 08135 08135026 6468 561 Europe/Berlin 2011-04-25
-2866955 Nattenheim Nattenheim 50.01667 6.51667 P PPLA4 DE 08 00 07232 07232086 489 375 Europe/Berlin 2011-04-25
-2866981 Natendorf Natendorf 53.0798 10.47031 P PPLA4 DE 06 00 03360 03360014 869 48 Europe/Berlin 2011-04-25
-2866990 Nastätten Nastatten 50.19883 7.85892 P PPL DE 08 4310 253 Europe/Berlin 2011-12-29
-2867037 Nassau Nassau 50.31667 7.8 P PPL DE 08 5015 114 Europe/Berlin 2006-01-17
-2867050 Nasingen Nasingen 49.96667 6.25 P PPLA4 DE 08 00 07232 07232085 43 394 Europe/Berlin 2011-04-25
-2867066 Narsdorf Narsdorf 51.01667 12.71667 P PPLA4 DE 13 147 14729 14729290 1917 259 Europe/Berlin 2011-04-25
-2867098 Nanzdietschweiler Nanzdietschweiler Nanzdietschweiler,Nanzdiezweiler 49.45 7.45 P PPLA4 DE 08 00 07336 07336064 1276 280 Europe/Berlin 2011-04-25
-2867104 Nannhausen Nannhausen 49.96667 7.48333 P PPLA4 DE 08 00 07140 07140100 515 370 Europe/Berlin 2011-04-25
-2867112 Nandlstadt Nandlstadt Nandelstatt,Nandlstadt 48.53333 11.8 P PPL DE 02 5044 468 Europe/Berlin 2012-01-18
-2867120 Namborn Namborn 49.51667 7.13333 P PPLA4 DE 09 00 10046 10046113 7642 319 Europe/Berlin 2011-04-25
-2867127 Nalbach Nalbach 49.38333 6.78333 P PPLA4 DE 09 00 10044 10044113 9715 238 Europe/Berlin 2011-04-25
-2867138 Naila Naila Naila 50.31667 11.7 P PPL DE 02 8441 571 Europe/Berlin 2012-01-18
-2867146 Nahrendorf Nahrendorf 53.17389 10.81381 P PPLA4 DE 06 00 03355 03355025 1417 72 Europe/Berlin 2011-08-23
-2867160 Nahe Nahe Nahe 53.8 10.13333 P PPLA4 DE 10 00 01060 01060058 2434 31 Europe/Berlin 2011-04-25
-2867164 Nagold Nagold 48.5498 8.72366 P PPL DE 01 082 22912 399 Europe/Berlin 2010-11-15
-2867198 Nagel Nagel 49.98333 11.91667 P PPLA4 DE 02 094 09479 09479138 1941 592 Europe/Berlin 2011-04-25
-2867206 Nadrensee Nadrensee 53.33333 14.35 P PPLA4 DE 12 00 13062 13062039 367 25 Europe/Berlin 2011-04-25
-2867229 Nackenheim Nackenheim 49.91528 8.33889 P PPLA4 DE 08 00 07339 07339039 5054 112 Europe/Berlin 2011-04-25
-2867237 Nack Nack 49.74639 8.00278 P PPLA4 DE 08 00 07331 07331050 621 269 Europe/Berlin 2011-04-25
-2867240 Nachtsheim Nachtsheim 50.31667 7.06667 P PPLA4 DE 08 00 07137 07137079 606 484 Europe/Berlin 2011-04-25
-2867245 Nachterstedt Nachterstedt Nachterstedt 51.80081 11.33489 P PPL DE 14 00 2232 129 Europe/Berlin 2010-11-22
-2867252 Nachrodt-Wiblingwerde Nachrodt-Wiblingwerde 51.31667 7.61667 P PPLA4 DE 07 059 05962 05962044 6860 419 Europe/Berlin 2011-07-31
-2867262 Nabburg Nabburg Nabburg 49.45361 12.17861 P PPL DE 02 5994 388 Europe/Berlin 2012-01-18
-2867274 Mylau Mylau Mylau 50.61667 12.26667 P PPL DE 13 3041 317 Europe/Berlin 2012-01-18
-2867279 Muxerath Muxerath 49.98333 6.26667 P PPLA4 DE 08 00 07232 07232084 52 504 Europe/Berlin 2011-04-25
-2867286 Mutzschen Mutzschen 51.26159 12.89125 P PPL DE 13 2402 189 Europe/Berlin 2009-11-03
-2867297 Mützenich Mutzenich 50.25 6.26667 P PPLA4 DE 08 00 07232 07232271 132 471 Europe/Berlin 2011-04-25
-2867310 Mutterstadt Mutterstadt Mutterstadt 49.44139 8.35611 P PPLA4 DE 08 00 07338 07338019 12383 99 Europe/Berlin 2011-07-31
-2867315 Mutterschied Mutterschied 49.98333 7.56667 P PPLA4 DE 08 00 07140 07140099 442 414 Europe/Berlin 2011-04-25
-2867335 Mutlangen Mutlangen 48.82588 9.79714 P PPLA4 DE 01 081 08136 08136044 6431 452 Europe/Berlin 2011-04-25
-2867341 Musweiler Musweiler 50.01667 6.8 P PPLA4 DE 08 00 07231 07231091 65 331 Europe/Berlin 2011-04-25
-2867345 Mustin Mustin 53.7 11.96667 P PPLA4 DE 12 00 13060 13060054 540 39 Europe/Berlin 2011-04-25
-2867346 Mustin Mustin 53.68333 10.88333 P PPLA4 DE 10 00 01053 01053093 703 47 Europe/Berlin 2011-04-25
-2867361 Müssen Mussen 53.49244 10.56404 P PPLA4 DE 10 00 01053 01053092 956 32 Europe/Berlin 2011-04-25
-2867396 Muschwitz Muschwitz Muschwitz 51.2 12.11667 P PPL DE 14 1176 143 Europe/Berlin 2012-02-02
-2867402 Müschenbach Muschenbach 50.68333 7.78333 P PPLA4 DE 08 00 07143 07143269 1057 318 Europe/Berlin 2011-04-25
-2867412 Müsch Musch 50.38333 6.83333 P PPLA4 DE 08 00 07131 07131052 0 376 Europe/Berlin 2011-04-25
-2867431 Murrhardt Murrhardt 48.98191 9.57047 P PPL DE 01 081 14331 286 Europe/Berlin 2010-11-15
-2867436 Murr Murr 48.96207 9.25924 P PPLA4 DE 01 081 08118 08118054 6063 207 Europe/Berlin 2011-04-25
-2867445 Murnau am Staffelsee Murnau am Staffelsee Murnau 47.68085 11.20125 P PPL DE 02 11958 698 Europe/Berlin 2010-03-09
-2867452 Mürlenbach Murlenbach 50.15 6.6 P PPLA4 DE 08 00 07233 07233227 631 325 Europe/Berlin 2011-04-25
-2867467 Murg Murg 47.55492 8.02182 P PPLA4 DE 01 083 08337 08337076 6821 308 Europe/Berlin 2011-07-31
-2867471 Murchin Murchin 53.9 13.73333 P PPLA4 DE 12 00 13059 13059065 930 23 Europe/Berlin 2011-04-25
-2867492 Münzenberg Munzenberg 50.45346 8.7743 P PPL DE 05 064 5619 189 Europe/Berlin 2010-11-15
-2867511 Münster-Sarmsheim Munster-Sarmsheim 49.95 7.9 P PPLA4 DE 08 00 07339 07339038 2952 84 Europe/Berlin 2011-04-25
-2867514 Münstermaifeld Munstermaifeld Munstermaifeld,Münstermaifeld 50.25 7.36667 P PPL DE 08 3435 266 Europe/Berlin 2012-01-18
-2867520 Münsterhausen Munsterhausen Munsterhausen,Münsterhausen 48.31667 10.45 P PPL DE 02 2067 487 Europe/Berlin 2012-01-18
-2867527 Münsterdorf Munsterdorf Munsterdorf,Münsterdorf 53.90232 9.54123 P PPLA4 DE 10 00 01061 01061072 1924 9 Europe/Berlin 2011-04-25
-2867536 Münsterappel Munsterappel 49.73333 7.88333 P PPLA4 DE 08 00 07333 07333049 535 218 Europe/Berlin 2011-04-25
-2867542 Munster Munster Munster 52.98333 10.08333 P PPL DE 06 17746 83 Europe/Berlin 2012-01-18
-2867543 Münster Muenster Minster,Mjunster,Moenster,Monasterium,Muenster,Munistri,Mönster,Münster,ming si te,mwinseuteo,mwnstr,mynstr,myunsuta,Μίνστερ,Мюнстер,מינסטר,مونستر,ミュンスター,明斯特,뮌스터 51.96236 7.62571 P PPLA2 DE 07 055 270184 64 Europe/Berlin 2010-11-15
-2867548 Münster Munster Munster,Münster 49.92278 8.86778 P PPLA4 DE 05 064 06432 06432015 14018 139 Europe/Berlin 2011-07-31
-2867553 Münster Munster 48.63333 10.9 P PPLA4 DE 02 097 09779 09779187 0 412 Europe/Berlin 2011-07-31
-2867555 Münster Munster 48.23333 10.63333 P PPL DE 02 1078 528 Europe/Berlin 2006-01-17
-2867560 Münsingen Munsingen Muensingen 48.41126 9.49704 P PPL DE 01 14479 714 Europe/Berlin 2008-12-24
-2867561 Münsing Munsing 47.9 11.36667 P PPLA4 DE 02 091 09173 09173137 4047 667 Europe/Berlin 2011-04-25
-2867568 Munningen Munningen 48.91667 10.6 P PPLA4 DE 02 097 09779 09779188 1821 417 Europe/Berlin 2011-04-25
-2867571 Münnerstadt Munnerstadt Munnerstadt,Münnerstadt 50.25 10.18333 P PPL DE 02 7987 272 Europe/Berlin 2012-01-18
-2867582 Munkbrarup Munkbrarup Munkbrarup 54.8 9.56667 P PPLA4 DE 10 00 01059 01059145 1073 48 Europe/Berlin 2011-04-25
-2867583 Münk Munk 50.3 7.03333 P PPLA4 DE 08 00 07137 07137077 272 471 Europe/Berlin 2011-04-25
-2867606 Mündersbach Mundersbach 50.6 7.73333 P PPLA4 DE 08 00 07143 07143268 806 347 Europe/Berlin 2011-04-25
-2867608 Munderkingen Munderkingen 48.23568 9.64398 P PPL DE 01 5156 518 Europe/Berlin 2008-12-24
-2867613 Hannoversch Münden Hannoversch Munden Hann. Muenden,Hann. Münden,Hann.Muenden,Hann.Münden,Hannoverisch-Munden,Hannoverisch-Münden,Hannoversch Muenden,Hannoversch Münden,Muenden,Munden,Münden,Stadt Hann. Muenden,Stadt Hann. Münden,ハン・ミュンデン 51.41505 9.65046 P PPL DE 06 25073 129 Europe/Berlin 2010-01-30
-2867616 Mundelsheim Mundelsheim 49.00083 9.20778 P PPLA4 DE 01 081 08118 08118053 3191 198 Europe/Berlin 2011-04-25
-2867626 Münchweiler an der Rodalbe Munchweiler an der Rodalbe Munchweiler,Munchweiler Rodalb,Munchweiler an der Rodalbe,Münchweiler,Münchweiler Rodalb,Münchweiler an der Rodalbe 49.21667 7.7 P PPL DE 08 3040 270 Europe/Berlin 2012-01-18
-2867627 Münchweiler an der Alsenz Munchweiler an der Alsenz Munchweiler,Munchweiler Alsenz,Munchweiler an der Alsenz,Münchweiler,Münchweiler Alsenz,Münchweiler an der Alsenz 49.55 7.88333 P PPLA4 DE 08 00 07333 07333048 1264 254 Europe/Berlin 2011-04-25
-2867628 Münchweiler am Klingbach Munchweiler am Klingbach Munchweiler,Munchweiler am Klingbach,Münchweiler,Münchweiler am Klingbach 49.15 7.96667 P PPLA4 DE 08 00 07337 07337054 231 208 Europe/Berlin 2011-04-25
-2867631 Münchwald Munchwald 49.9 7.68333 P PPLA4 DE 08 00 07133 07133068 297 339 Europe/Berlin 2011-04-25
-2867633 Münchsteinach Munchsteinach 49.63333 10.6 P PPLA4 DE 02 095 09575 09575150 1463 302 Europe/Berlin 2011-04-25
-2867637 Münchsmünster Munchsmunster Munchsmunster,Münchsmünster 48.76667 11.68333 P PPLA4 DE 02 091 09186 09186139 2938 356 Europe/Berlin 2011-04-25
-2867673 Münchhausen Munchhausen Munchhausen,Münchhausen 50.95 8.71667 P PPLA4 DE 05 065 06534 06534015 3594 257 Europe/Berlin 2011-04-25
-2867707 Münchenbernsdorf Munchenbernsdorf Munchenbernsdorf,Münchenbernsdorf 50.81667 11.93333 P PPL DE 15 3450 343 Europe/Berlin 2012-01-18
-2867714 München Muenchen Lungsod ng Muenchen,Lungsod ng München,MUC,Minga,Minhen,Minhene,Minkhen,Miunchenas,Mjunkhen,Mnichov,Mníchov,Monachium,Monacho,Monaco,Monaco 'e Baviera,Monaco di Baviera,Monacum,Muenchen,Muenih,Munchen,Munic,Munich,Munike,Munique,Munkeno,Myunxen,Múnic,Múnich,München,Münih,mi wnik,miunkheni,miyunik,mu ni hei,mwinhen,mwnykh,mynkn,myunhen,mywnkh,Μόναχο,Минхен,Мюнхен,Մյունխեն,מינכן,مونیخ,ميونخ,ميۇنخېن,மியூனிக்,มิวนิก,მიუნხენი,ミュンヘン,慕尼黑,뮌헨 48.13743 11.57549 P PPLA DE 02 091 1260391 524 Europe/Berlin 2011-09-01
-2867717 Münchehofe Munchehofe 52.15 13.85 P PPLA4 DE 11 00 12061 12061344 556 63 Europe/Berlin 2011-04-25
-2867723 Müncheberg Muncheberg Muencheberg,Muncheberg,Müncheberg 52.5 14.13333 P PPL DE 11 7214 56 Europe/Berlin 2012-01-18
-2867726 Münchberg Munchberg Munchberg,Münchberg 50.2 11.78333 P PPL DE 02 11557 572 Europe/Berlin 2012-01-18
-2867741 Mülverstedt Mulverstedt 51.11667 10.5 P PPLA4 DE 15 00 16064 16064047 703 220 Europe/Berlin 2011-04-25
-2867748 Mulsum Mulsum 53.66667 8.55 P PPLA4 DE 06 00 03352 03352037 490 2 Europe/Berlin 2011-04-25
-2867753 Mülsen Mulsen 50.75 12.56667 P PPLA4 DE 13 145 14524 14524200 12489 318 Europe/Berlin 2011-04-25
-2867763 Müllrose Mullrose Mullrose,Müllrose 52.25 14.41667 P PPL DE 11 4461 43 Europe/Berlin 2012-01-18
-2867770 Müllheim Mullheim Muellheim,Mulheim,Müllheim 47.8082 7.63035 P PPL DE 01 083 18097 268 Europe/Berlin 2010-11-15
-2867816 Müllenbach Mullenbach 50.31667 6.91667 P PPLA4 DE 08 00 07131 07131051 479 488 Europe/Berlin 2011-04-25
-2867817 Müllenbach Mullenbach 50.21667 7.06667 P PPLA4 DE 08 00 07135 07135067 701 424 Europe/Berlin 2011-04-25
-2867838 Mülheim an der Ruhr Muelheim an der Ruhr Milchaim,Mjul'khajm-na-Rure,Moelm,Moeln,Muelheim,Muelheim an der Ruhr,Mulheim,Mulheim-on-Ruhr,Mölm,Möln,Mülheim,Mülheim an der Ruhr,Mülheim-on-Ruhr,Μιλχάιμ,Мюльхайм-на-Руре,מילהיים על הרוהר 51.43333 6.88333 P PPL DE 07 171000 43 Europe/Berlin 2010-03-26
-2867847 Mulfingen Mulfingen Mulfingen 49.34028 9.80083 P PPLA4 DE 01 081 08126 08126056 3874 274 Europe/Berlin 2011-04-25
-2867850 Muldenstein Muldenstein Muldenstein 51.66667 12.33333 P PPL DE 14 2197 74 Europe/Berlin 2012-01-18
-2867856 Muldenhammer Muldenhammer 50.45 12.48333 P PPLA4 DE 13 145 14523 14523245 0 652 Europe/Berlin 2011-04-25
-2867863 Mulda Mulda Mulda,Mulda-Randeck 50.8 13.41667 P PPL DE 13 2936 501 Europe/Berlin 2012-01-18
-2867868 Mülbach Mulbach Muhlbach,Mulbach,Mühlbach,Mülbach 49.96878 6.40469 P PPLA4 DE 08 00 07232 07232083 125 266 Europe/Berlin 2011-04-25
-2867888 Mühltroff Muhltroff Muhltroff,Mühltroff 50.53333 11.93333 P PPL DE 13 1949 502 Europe/Berlin 2012-01-18
-2867929 Mühl Rosin Muhl Rosin 53.76383 12.21388 P PPLA4 DE 12 00 13053 13053062 1168 17 Europe/Berlin 2011-04-25
-2867938 Mühlpfad Muhlpfad 50.11667 7.55 P PPLA4 DE 08 00 07140 07140098 69 450 Europe/Berlin 2011-04-25
-2867953 Mühlingen Muhlingen Muhlingen,Mühlingen 47.91667 9.01667 P PPLA4 DE 01 083 08335 08335057 2370 614 Europe/Berlin 2011-04-25
-2867983 Mühlheim am Bach Muhlheim am Bach 48.37863 8.69735 P PPL DE 01 3476 428 Europe/Berlin 2010-03-26
-2867985 Mühlheim am Main Muehlheim am Main Muehlheim,Mühlheim 50.11667 8.83333 P PPL DE 05 26485 103 Europe/Berlin 2010-03-26
-2867993 Stuttgart Mühlhausen Stuttgart Muehlhausen 48.84232 9.23028 P PPLX DE DE 01 081 08111 26111 214 Europe/Berlin 2010-11-15
-2867996 Mühlhausen Muhlhausen Muehlhausen,Muehlhausen/Thueringen,Muhlhausen,Mühlhausen,Mühlhausen/Thüringen,Thomas-Muntzer-Stadt-Muhlhausen,Thomas-Müntzer-Stadt-Mühlhausen 51.21667 10.45 P PPL DE 15 38108 209 Europe/Berlin 2012-01-18
-2868002 Mühlhausen Muhlhausen 49.75 10.78333 P PPL DE 02 1723 271 Europe/Berlin 2006-01-17
-2868004 Mühlhausen Muhlhausen 49.24861 8.72667 P PPLA4 DE 01 082 08226 08226054 8176 143 Europe/Berlin 2011-04-25
-2868005 Mühlhausen Muhlhausen Muehlhausen 49.16947 11.44664 P PPLA4 DE DE 02 093 09373 09373146 0 399 Europe/Berlin 2011-04-25
-2868010 Mühlhausen Muhlhausen 48.57661 9.65733 P PPL DE 01 081 1049 542 Europe/Berlin 2010-11-15
-2868134 Mühlenrade Muhlenrade Muhlenrade,Mühlenrade 53.6 10.48333 P PPLA4 DE 10 00 01053 01053091 215 35 Europe/Berlin 2011-04-25
-2868222 Mühlen Eichsen Muhlen Eichsen 53.76667 11.25 P PPLA4 DE 12 00 13058 13058071 1083 46 Europe/Berlin 2011-04-25
-2868368 Mühlenbarbek Muhlenbarbek Muhlenbarbek,Mühlenbarbek 53.95778 9.66726 P PPLA4 DE 10 00 01061 01061071 355 6 Europe/Berlin 2011-04-25
-2868457 Mühlenbach Muhlenbach 48.25 8.11667 P PPLA4 DE 01 083 08317 08317078 1698 374 Europe/Berlin 2011-04-25
-2868506 Mühldorf Muhldorf Muhldorf,Muhldorf am Inn,Mühldorf,Mühldorf am Inn 48.25 12.53333 P PPL DE 02 17622 407 Europe/Berlin 2012-01-18
-2868531 Mühlberg Muhlberg Muhlberg,Mühlberg 51.43333 13.21667 P PPL DE 11 4758 92 Europe/Berlin 2012-01-18
-2868782 Mühlau Muhlau 50.9 12.76667 P PPLA4 DE 13 145 14522 14522380 2340 336 Europe/Berlin 2011-04-25
-2868788 Mühlacker Muhlacker Muhlacker,Mühlacker 48.95 8.83333 P PPL DE 01 26375 242 Europe/Berlin 2012-01-18
-2868791 Mühbrook Muhbrook Muhbrook,Mühbrook 54.16667 10 P PPLA4 DE 10 00 01058 01058108 515 41 Europe/Berlin 2011-04-25
-2868807 Muggensturm Muggensturm 48.86667 8.28333 P PPLA4 DE 01 082 08216 08216033 6243 116 Europe/Berlin 2011-04-25
-2868842 Mügeln Mugeln Mugeln,Mügeln 51.23333 13.05 P PPL DE 13 4879 162 Europe/Berlin 2012-01-18
-2868851 Mudershausen Mudershausen 50.28333 8.03333 P PPLA4 DE 08 00 07141 07141089 491 269 Europe/Berlin 2011-04-25
-2868853 Mudersbach Mudersbach 50.81667 7.95 P PPLA4 DE 08 00 07132 07132072 6358 260 Europe/Berlin 2011-04-25
-2868859 Mudenbach Mudenbach 50.66667 7.73333 P PPLA4 DE 08 00 07143 07143267 831 300 Europe/Berlin 2011-04-25
-2868861 Müden Muden Mie'en,Mueden (Aller),Müden (Aller) 52.52771 10.36011 P PPL DE 06 00 03151 03151018 5621 48 Europe/Berlin 2011-03-13
-2868867 Mudau Mudau 49.53444 9.20444 P PPLA4 DE 01 082 08225 08225060 5094 452 Europe/Berlin 2011-04-25
-2868920 Mückeln Muckeln 50.08333 6.91667 P PPLA4 DE 08 00 07233 07233046 222 409 Europe/Berlin 2011-04-25
-2868923 Mücka Mucka Mucka,Mücka 51.31667 14.7 P PPLA4 DE 13 146 14626 14626320 1275 149 Europe/Berlin 2011-04-25
-2868926 Muchow Muchow 53.31667 11.68333 P PPLA4 DE 12 00 13054 13054077 398 42 Europe/Berlin 2011-04-25
-2868931 Mucheln Mucheln 54.25 10.43333 P PPLA4 DE 10 00 01057 01057052 594 42 Europe/Berlin 2011-04-25
-2868933 Mücheln Mucheln Mucheln,Mücheln 51.3 11.81667 P PPL DE 14 6389 163 Europe/Berlin 2012-01-18
-2868936 Much Much Much 50.91667 7.4 P PPLA4 DE 07 053 05382 05382036 15231 217 Europe/Berlin 2011-07-31
-2868941 Mözen Mozen Mozen,Mözen 53.91667 10.25 P PPLA4 DE 10 00 01060 01060057 461 33 Europe/Berlin 2011-04-25
-2868944 Moxa Moxa Moxa 50.65 11.63333 P PPLA4 DE 15 00 16075 16075069 98 468 Europe/Berlin 2011-04-25
-2868967 Mötzingen Motzingen 48.5332 8.77447 P PPLA4 DE 01 081 08115 08115034 3542 531 Europe/Berlin 2011-04-25
-2868968 Mötzing Motzing 48.9 12.36667 P PPLA4 DE 02 093 09375 09375171 1447 336 Europe/Berlin 2011-04-25
-2868986 Möttingen Mottingen 48.80924 10.59022 P PPLA4 DE 02 097 09779 09779185 2558 416 Europe/Berlin 2011-04-25
-2868992 Motten Motten 50.39561 9.77251 P PPLA4 DE 02 096 09672 09672134 1939 413 Europe/Berlin 2011-07-31
-2869019 Mössingen Mossingen 48.40567 9.05419 P PPL DE 01 20010 464 Europe/Berlin 2008-12-23
-2869025 Moßbach Mossbach Mossbach,Moßbach 50.68333 11.81667 P PPLA4 DE 15 00 16075 16075068 445 443 Europe/Berlin 2011-07-31
-2869053 Möser Moser 52.21397 11.79279 P PPLA4 DE 14 00 15086 15086145 2637 70 Europe/Berlin 2011-04-25
-2869076 Moselkern Moselkern 50.19437 7.37084 P PPLA4 DE 08 00 07135 07135065 705 87 Europe/Berlin 2011-04-25
-2869094 Moschheim Moschheim 50.48333 7.83333 P PPLA4 DE 08 00 07143 07143049 732 299 Europe/Berlin 2011-04-25
-2869107 Mosbruch Mosbruch 50.26667 6.95 P PPLA4 DE 08 00 07233 07233226 170 547 Europe/Berlin 2011-04-25
-2869120 Mosbach Mosbach Mosbach,Mosbach in Baden 49.35389 9.14278 P PPL DE 01 25106 157 Europe/Berlin 2012-02-28
-2869147 Morsum Morsum 52.95 9.08333 P PPL DE 06 2912 9 Europe/Berlin 2006-01-17
-2869150 Mörstadt Morstadt 49.66194 8.25472 P PPLA4 DE 08 00 07331 07331047 943 129 Europe/Berlin 2011-04-25
-2869158 Morshausen Morshausen 50.2 7.43333 P PPLA4 DE 08 00 07140 07140205 368 276 Europe/Berlin 2011-04-25
-2869159 Mörsfeld Morsfeld 49.75 7.93333 P PPLA4 DE 08 00 07333 07333046 536 295 Europe/Berlin 2011-04-25
-2869167 Mörsdorf Morsdorf 50.86667 11.81667 P PPLA4 DE 15 00 16074 16074059 426 353 Europe/Berlin 2011-04-25
-2869168 Mörsdorf Morsdorf 50.1 7.35 P PPLA4 DE 08 00 07135 07135063 699 340 Europe/Berlin 2011-04-25
-2869174 Mörschied Morschied 49.78333 7.31667 P PPLA4 DE 08 00 07134 07134056 909 442 Europe/Berlin 2011-04-25
-2869175 Morschheim Morschheim 49.69667 8.02611 P PPLA4 DE 08 00 07333 07333047 756 308 Europe/Berlin 2011-04-25
-2869182 Morscheid Morscheid 49.73333 6.75 P PPLA4 DE 08 00 07235 07235090 891 274 Europe/Berlin 2011-04-25
-2869186 Mörschbach Morschbach 50.01667 7.61667 P PPLA4 DE 08 00 07140 07140096 350 433 Europe/Berlin 2011-04-25
-2869196 Morsbach Morsbach 50.86667 7.75 P PPLA4 DE 07 053 05374 05374028 11630 289 Europe/Berlin 2011-07-31
-2869221 Mörlenbach Morlenbach Morlenbach,Mörlenbach 49.59917 8.73472 P PPLA4 DE 05 064 06431 06431017 10568 164 Europe/Berlin 2011-04-25
-2869222 Mörlen Morlen 50.7 7.88333 P PPLA4 DE 08 00 07143 07143264 588 435 Europe/Berlin 2011-04-25
-2869238 Moritzheim Moritzheim 50.05 7.26667 P PPLA4 DE 08 00 07135 07135064 177 389 Europe/Berlin 2011-04-25
-2869244 Moritzburg Moritzburg 51.15922 13.68021 P PPLA4 DE 13 146 14627 14627150 8085 180 Europe/Berlin 2011-04-25
-2869257 Moringen Moringen Moringen 51.7 9.86667 P PPL DE 06 7513 181 Europe/Berlin 2012-01-18
-2869290 Mörel Morel Morel,Mörel 54.11667 9.73333 P PPLA4 DE 10 00 01058 01058106 267 32 Europe/Berlin 2011-04-25
-2869306 Morbach Morbach Morbach 49.81667 7.11667 P PPLA4 DE 08 00 07231 07231502 11149 454 Europe/Berlin 2011-07-31
-2869325 Moosthenning Moosthenning 48.68333 12.5 P PPLA4 DE 02 092 09279 09279128 4700 392 Europe/Berlin 2011-04-25
-2869361 Moosinning Moosinning 48.27708 11.84446 P PPLA4 DE 02 091 09177 09177130 5166 476 Europe/Berlin 2011-04-25
-2869449 Moosburg Moosburg Moosburg,Moosburg an der Isar,Mosburg 48.46667 11.93333 P PPL DE 02 17363 419 Europe/Berlin 2012-01-18
-2869450 Moosburg Moosburg 48.08333 9.6 P PPLA4 DE 01 084 08426 08426078 196 578 Europe/Berlin 2011-04-25
-2869488 Moosbach Moosbach Moosbach,Mosbach 49.6 12.41667 P PPL DE 02 2598 516 Europe/Berlin 2012-01-18
-2869511 Moosach Moosach 48.03213 11.8751 P PPLA4 DE 02 091 09175 09175128 1333 530 Europe/Berlin 2011-04-25
-2869519 Moos Moos 48.75149 12.96112 P PPLA4 DE 02 092 09271 09271135 0 315 Europe/Berlin 2011-08-22
-2869542 Moos Moos 47.73333 8.93333 P PPLA4 DE 01 083 08335 08335055 3195 396 Europe/Berlin 2011-04-25
-2869592 Moorweg Moorweg 53.63333 7.58333 P PPLA4 DE 06 00 03462 03462008 928 3 Europe/Berlin 2011-07-31
-2869627 Moorrege Moorrege Moorrege 53.66667 9.66667 P PPLA4 DE 10 00 01056 01056036 3988 3 Europe/Berlin 2011-04-25
-2869651 Moorhusen Moorhusen 53.95905 9.38348 P PPLA4 DE 10 00 01061 01061070 0 253 Europe/Berlin 2011-04-25
-2869682 Moorenweis Moorenweis 48.15561 11.07851 P PPLA4 DE 02 091 09179 09179138 3652 567 Europe/Berlin 2011-04-25
-2869694 Moordiek Moordiek Moordiek 53.91405 9.65344 P PPLA4 DE 10 00 01061 01061068 125 1 Europe/Berlin 2011-04-25
-2869732 Monzingen Monzingen 49.8 7.58333 P PPLA4 DE 08 00 07133 07133067 1823 250 Europe/Berlin 2011-04-25
-2869733 Monzernheim Monzernheim 49.72139 8.22833 P PPLA4 DE 08 00 07331 07331049 633 239 Europe/Berlin 2011-04-25
-2869734 Monzelfeld Monzelfeld 49.9 7.06667 P PPLA4 DE 08 00 07231 07231087 1301 415 Europe/Berlin 2011-04-25
-2869741 Möntenich Montenich 50.22129 7.29921 P PPLA4 DE 08 00 07135 07135062 154 226 Europe/Berlin 2011-04-25
-2869746 Montabaur Montabaur Montabaur,Montebaur 50.43333 7.83333 P PPL DE 08 12345 249 Europe/Berlin 2012-01-18
-2869749 Monstab Monstab Monstab 51 12.35 P PPLA4 DE 15 00 16077 16077034 517 190 Europe/Berlin 2011-07-31
-2869751 Monsheim Monsheim Monsheim 49.63722 8.21194 P PPLA4 DE 08 00 07331 07331048 2624 133 Europe/Berlin 2011-04-25
-2869752 Mönsheim Monsheim 48.86667 8.86667 P PPLA4 DE 01 082 08236 08236039 2808 336 Europe/Berlin 2011-04-25
-2869756 Monschau Monschau Monschau,Montjoie 50.55 6.25 P PPL DE 07 12945 509 Europe/Berlin 2012-01-18
-2869762 Monreal Monreal 50.3 7.16667 P PPLA4 DE 08 00 07137 07137074 864 294 Europe/Berlin 2011-04-25
-2869773 Mönkloh Monkloh Monkloh,Mönkloh 53.88333 9.78333 P PPLA4 DE 10 00 01060 01060056 268 38 Europe/Berlin 2011-04-25
-2869775 Mönkhagen Monkhagen Monkhagen,Mönkhagen 53.9 10.55 P PPLA4 DE 10 00 01062 01062048 633 14 Europe/Berlin 2011-04-25
-2869782 Mönkebude Monkebude 53.76667 13.96667 P PPLA4 DE 12 00 13062 13062038 808 1 Europe/Berlin 2011-04-25
-2869783 Mönkeberg Monkeberg 54.35 10.18333 P PPLA4 DE 10 00 01057 01057051 3551 22 Europe/Berlin 2011-04-25
-2869791 Monheim Monheim 51.08333 6.88333 P PPL DE 07 43747 42 Europe/Berlin 2006-01-17
-2869792 Monheim Monheim Monheim,Monkhajm,Monnheim,Монхайм 48.83333 10.83333 P PPL DE 02 4950 503 Europe/Berlin 2012-01-18
-2869808 Mönchweiler Monchweiler 48.1 8.43333 P PPLA4 DE 01 083 08326 08326037 3173 746 Europe/Berlin 2011-04-25
-2869823 Mönchsroth Monchsroth 49.01667 10.36667 P PPLA4 DE 02 095 09571 09571179 1566 449 Europe/Berlin 2011-04-25
-2869847 Mönchsdeggingen Monchsdeggingen Deggingen,Monchsdeggingen,Mönchsdeggingen 48.77605 10.58043 P PPLA4 DE 02 097 09779 09779184 1497 434 Europe/Berlin 2011-04-25
-2869867 Mönchpfiffel-Nikolausrieth Monchpfiffel-Nikolausrieth Monchpfiffel-Nikolausrieth,Mönchpfiffel-Nikolausrieth 51.38333 11.36667 P PPLA4 DE 15 00 16065 16065046 411 121 Europe/Berlin 2011-04-25
-2869882 Mönchhagen Monchhagen 54.15 12.21667 P PPLA4 DE 12 00 13051 13051046 1097 9 Europe/Berlin 2011-07-31
-2869891 Mönchenholzhausen Monchenholzhausen 50.96667 11.15 P PPLA4 DE 15 00 16071 16071057 1652 270 Europe/Berlin 2011-07-31
-2869894 Mönchengladbach Monchengladbach Mjonkhengladbakh,Moenchengladbach,Monchengladbach,Muenchen-Gladbach,Mönchengladbach,dwsldwrf,men xing ge la de ba he,menhyengurattobahha,mwnshghladbakh,Мёнхенгладбах,دوسلدورف,مونشغلادباخ,メンヒェングラットバッハ,门兴格拉德巴赫 51.2 6.43333 P PPL DE 07 261742 74 Europe/Berlin 2012-01-18
-2869908 Mönchberg Monchberg Monchberg,Mönchberg 49.79139 9.26583 P PPL DE 02 2530 252 Europe/Berlin 2012-02-02
-2869931 Mommenheim Mommenheim 49.88028 8.265 P PPLA4 DE 08 00 07339 07339037 3053 152 Europe/Berlin 2011-04-25
-2869934 Mömlingen Momlingen 49.85972 9.08333 P PPLA4 DE 02 096 09676 09676140 5066 148 Europe/Berlin 2011-07-31
-2869936 Mömbris Mombris Mombris,Mömbris 50.06667 9.16667 P PPL DE 02 12287 178 Europe/Berlin 2012-01-18
-2869944 Molzhain Molzhain 50.75 7.85 P PPLA4 DE 08 00 07132 07132071 616 382 Europe/Berlin 2011-04-25
-2869950 Moltzow Moltzow 53.63333 12.58333 P PPLA4 DE 12 00 13056 13056049 359 56 Europe/Berlin 2011-04-25
-2869961 Mölsheim Molsheim 49.64667 8.16944 P PPLA4 DE 08 00 07331 07331046 604 208 Europe/Berlin 2011-04-25
-2869963 Mölschow Molschow 54.08333 13.83333 P PPLA4 DE 12 00 13059 13059063 878 255 Europe/Berlin 2011-04-25
-2869964 Molschleben Molschleben Molschleben 51 10.78333 P PPLA4 DE 15 00 16067 16067047 1162 290 Europe/Berlin 2011-04-25
-2869968 Molsberg Molsberg 50.48333 7.98333 P PPLA4 DE 08 00 07143 07143266 0 293 Europe/Berlin 2011-04-25
-2869994 Mölln Molln Moelln,Molln,Mölln 53.63333 10.68333 P PPL DE 10 18469 19 Europe/Berlin 2012-01-18
-2869995 Mölln Molln 53.6 13.08333 P PPLA4 DE 12 00 13052 13052053 604 40 Europe/Berlin 2011-04-25
-2870025 Möllenhagen Mollenhagen 53.52388 12.92868 P PPLA4 DE 12 00 13056 13056047 1984 89 Europe/Berlin 2011-07-31
-2870043 Möllenbeck Mollenbeck 53.38333 13.35 P PPLA4 DE 12 00 13055 13055045 805 100 Europe/Berlin 2011-04-25
-2870044 Möllenbeck Mollenbeck 53.28333 11.73333 P PPLA4 DE 12 00 13054 13054075 258 37 Europe/Berlin 2011-04-25
-2870079 Molfsee Molfsee Molfsee 54.26667 10.06667 P PPLA4 DE 10 00 01058 01058107 4969 26 Europe/Berlin 2011-04-25
-2870094 Molbergen Molbergen 52.86667 7.93333 P PPLA4 DE 06 00 03453 03453012 7709 43 Europe/Berlin 2011-07-31
-2870110 Moisburg Moisburg 53.4 9.7 P PPLA4 DE 06 00 03353 03353025 1802 12 Europe/Berlin 2011-04-25
-2870143 Möhrendorf Mohrendorf Mohrendorf,Möhrendorf 49.63333 11 P PPLA4 DE 02 095 09572 09572142 4349 272 Europe/Berlin 2011-07-31
-2870147 Möhrenbach Mohrenbach Mohrenbach,Möhrenbach 50.63333 11 P PPLA4 DE 15 00 16070 16070035 737 503 Europe/Berlin 2011-04-25
-2870164 Möhnsen Mohnsen Mohnsen,Möhnsen 53.56667 10.45 P PPLA4 DE 10 00 01053 01053089 516 47 Europe/Berlin 2011-04-25
-2870178 Mohlsdorf Mohlsdorf Mohlsdorf 50.66667 12.26667 P PPLA4 DE 15 00 16076 16076047 3049 344 Europe/Berlin 2011-04-25
-2870190 Möhlau Mohlau 51.73333 12.35 P PPLA4 DE 14 00 15091 15091220 2225 73 Europe/Berlin 2011-04-25
-2870194 Möglingen Moglingen 48.88741 9.12694 P PPLA4 DE 01 081 08118 08118051 10405 291 Europe/Berlin 2011-04-25
-2870202 Mögglingen Mogglingen 48.8232 9.9625 P PPLA4 DE 01 081 08136 08136043 4085 412 Europe/Berlin 2011-04-25
-2870212 Mogendorf Mogendorf Mogendorf 50.5 7.76667 P PPLA4 DE 08 00 07143 07143047 1204 294 Europe/Berlin 2011-07-31
-2870221 Moers Moers Mers,Meurs,Moers,Mors,Mörs,Мерс 51.45 6.65 P PPL DE 07 107816 27 Europe/Berlin 2012-01-18
-2870233 Mödingen Modingen 48.65 10.43333 P PPLA4 DE 02 097 09773 09773147 1353 456 Europe/Berlin 2011-04-25
-2870266 Mockrehna Mockrehna 51.50757 12.81418 P PPLA4 DE 13 147 14730 14730190 5718 104 Europe/Berlin 2011-07-31
-2870269 Möckmühl Mockmuhl Mockmuhl,Möckmühl 49.325 9.35778 P PPL DE 01 8304 179 Europe/Berlin 2012-02-28
-2870278 Möckern Mockern Mockern,Möckern 52.13333 11.95 P PPL DE 14 6154 58 Europe/Berlin 2012-01-18
-2870281 Möckern Mockern 50.85 11.76667 P PPLA4 DE 15 00 16074 16074058 136 291 Europe/Berlin 2011-04-25
-2870304 Mochau Mochau 51.13333 13.18333 P PPLA4 DE 13 145 14522 14522370 2757 212 Europe/Berlin 2011-04-25
-2870312 Mixdorf Mixdorf 52.2 14.4 P PPLA4 DE 11 00 12067 12067324 1035 57 Europe/Berlin 2011-04-25
-2870315 Mitwitz Mitwitz Mitwitz 50.25 11.21667 P PPL DE 02 3076 303 Europe/Berlin 2012-01-18
-2870318 Mittweida Mittweida 50.98333 12.98333 P PPL DE 13 16619 285 Europe/Berlin 2006-01-17
-2870355 Mitterteich Mitterteich Mitterteich 49.94861 12.23833 P PPL DE 02 7252 512 Europe/Berlin 2012-01-18
-2870359 Mitterskirchen Mitterskirchen 48.35 12.73333 P PPLA4 DE 02 092 09277 09277134 2078 432 Europe/Berlin 2011-04-25
-2870435 Mitterfels Mitterfels Milerfels,Mitterfels 48.96667 12.68333 P PPL DE 02 2405 413 Europe/Berlin 2012-01-18
-2870480 Mittenwalde Mittenwalde 53.18333 13.66667 P PPLA4 DE 11 00 12073 12073404 488 74 Europe/Berlin 2011-04-25
-2870481 Mittenwalde Mittenwalde 52.26007 13.53945 P PPL DE 11 8730 38 Europe/Berlin 2010-05-23
-2870482 Mittenwald Mittenwald 47.4422 11.26187 P PPL DE 02 7996 915 Europe/Berlin 2009-06-16
-2870490 Mittenaar Mittenaar Mittenaar 50.7 8.38333 P PPLA4 DE 05 065 06532 06532017 5020 324 Europe/Berlin 2011-07-31
-2870534 Mittelstrimmig Mittelstrimmig Mittelstrimmig 50.08333 7.28333 P PPLA4 DE 08 00 07135 07135061 432 400 Europe/Berlin 2011-04-25
-2870541 Mittelstetten Mittelstetten 48.25 11.1 P PPLA4 DE 02 091 09179 09179137 1630 531 Europe/Berlin 2011-04-25
-2870549 Mittelstenahe Mittelstenahe 53.65 9.03333 P PPLA4 DE 06 00 03352 03352036 634 10 Europe/Berlin 2011-04-25
-2870565 Mittelsömmern Mittelsommern 51.2 10.81667 P PPLA4 DE 15 00 16064 16064045 246 279 Europe/Berlin 2011-04-25
-2870567 Mittelsinn Mittelsinn Mittelsin,Mittelsinn,Mittlesin 50.2 9.61667 P PPLA4 DE 02 096 09677 09677159 940 200 Europe/Berlin 2011-04-25
-2870584 Mittelschöntal Mittelschontal Schontal,Schöntal 48.94615 9.3952 P PPL DE 01 5872 282 Europe/Berlin 2008-12-21
-2870612 Mittelreidenbach Mittelreidenbach 49.73333 7.45 P PPLA4 DE 08 00 07134 07134055 826 321 Europe/Berlin 2011-04-25
-2870618 Mittelpöllnitz Mittelpollnitz Mittelpollnitz,Mittelpöllnitz 50.75 11.91667 P PPLA4 DE 15 00 16075 16075066 311 346 Europe/Berlin 2011-04-25
-2870627 Mittelnkirchen Mittelnkirchen 53.54225 9.62319 P PPLA4 DE 06 00 03359 03359032 956 255 Europe/Berlin 2011-08-26
-2870628 Mittelneufnach Mittelneufnach 48.18333 10.6 P PPLA4 DE 02 097 09772 09772179 1058 545 Europe/Berlin 2011-04-25
-2870673 Mittelhof Mittelhof Mittelhof 50.78333 7.8 P PPLL DE 08 00 07132 07132011 1130 219 Europe/Berlin 2012-02-02
-2870687 Mittelherwigsdorf Mittelherwigsdorf Mittelherwigsdorf 50.91667 14.76667 P PPLA4 DE 13 146 14626 14626310 4334 296 Europe/Berlin 2011-04-25
-2870743 Mitteleschenbach Mitteleschenbach 49.21667 10.78333 P PPLA4 DE 02 095 09571 09571178 1573 430 Europe/Berlin 2011-04-25
-2870780 Mittelbrunn Mittelbrunn 49.36667 7.55 P PPLA4 DE 08 00 07335 07335027 731 322 Europe/Berlin 2011-04-25
-2870795 Mittelbiberach Mittelbiberach 48.08333 9.75 P PPLA4 DE 01 084 08426 08426074 3818 577 Europe/Berlin 2011-04-25
-2870911 Mittegroßefehn Mittegrossefehn Grossefehn,Mittegrossefehn,Mittegroßefehn 53.4 7.55 P PPL DE 06 13314 254 Europe/Berlin 2012-01-18
-2870926 Mistorf Mistorf 53.88451 12.14453 P PPLA4 DE 12 00 13053 13053060 741 36 Europe/Berlin 2011-04-25
-2870936 Mistelgau Mistelgau 49.9126 11.46586 P PPLA4 DE 02 094 09472 09472167 3858 438 Europe/Berlin 2011-04-25
-2870941 Mistelbach Mistelbach 49.9126 11.51264 P PPLA4 DE 02 094 09472 09472166 0 411 Europe/Berlin 2011-04-25
-2870962 Misselwarden Misselwarden 53.67526 8.51646 P PPLA4 DE 06 00 03352 03352035 517 4 Europe/Berlin 2011-07-05
-2870963 Misselberg Misselberg 50.31667 7.76667 P PPLA4 DE 08 00 07141 07141087 100 87 Europe/Berlin 2011-04-25
-2870986 Mirow Mirow 53.5 11.5 P PPL DE 12 3609 44 Europe/Berlin 2006-01-17
-2870996 Mintraching Mintraching 48.95 12.23333 P PPLA4 DE 02 093 09375 09375170 4668 332 Europe/Berlin 2011-04-25
-2871016 Minheim Minheim 49.86667 6.93333 P PPLA4 DE 08 00 07231 07231086 521 145 Europe/Berlin 2011-04-25
-2871020 Minfeld Minfeld 49.07167 8.14528 P PPLA4 DE 08 00 07334 07334020 1637 133 Europe/Berlin 2011-04-25
-2871030 Minderlittgen Minderlittgen 50.01667 6.83333 P PPLA4 DE 08 00 07231 07231085 699 360 Europe/Berlin 2011-04-25
-2871039 Minden Minden Minden,Minn,Минден 52.28333 8.91667 P PPL DE 07 82879 49 Europe/Berlin 2012-01-18
-2871040 Minden Minden 49.83333 6.46667 P PPLA4 DE 08 00 07232 07232082 135 274 Europe/Berlin 2011-04-25
-2871042 Mindelstetten Mindelstetten 48.85 11.65 P PPLA4 DE 02 091 09176 09176147 0 408 Europe/Berlin 2011-04-25
-2871045 Mindelheim Mindelheim Mindelheim 48.05 10.48333 P PPL DE 02 14122 597 Europe/Berlin 2012-01-18
-2871067 Milz Milz Milz 50.38333 10.53333 P PPLA4 DE 15 00 16069 16069032 1091 295 Europe/Berlin 2011-04-25
-2871071 Groß Miltzow Gross Miltzow Gross Miltzow,Groß Miltzow,Miltzow 53.53333 13.6 P PPLA4 DE 12 00 13055 13055083 1285 99 Europe/Berlin 2011-04-25
-2871079 Miltenberg Miltenberg 49.70389 9.26444 P PPL DE 02 9613 141 Europe/Berlin 2006-01-17
-2871082 Miltach Miltach 49.15 12.76667 P PPLA4 DE 02 093 09372 09372143 2359 384 Europe/Berlin 2011-04-25
-2871096 Milow Milow 53.2 11.53333 P PPLA4 DE 12 00 13054 13054074 349 24 Europe/Berlin 2011-04-25
-2871100 Milmersdorf Milmersdorf 53.11185 13.6415 P PPLA4 DE 11 00 12073 12073396 1814 61 Europe/Berlin 2011-04-25
-2871130 Mildstedt Mildstedt Mildstedt 54.46667 9.1 P PPLA4 DE 10 00 01054 01054084 3697 13 Europe/Berlin 2011-04-25
-2871138 Mildenitz Mildenitz 53.46667 13.65 P PPLA4 DE 12 00 13055 13055043 442 107 Europe/Berlin 2011-04-25
-2871142 Mildenau Mildenau 50.6 13.08333 P PPLA4 DE 13 145 14521 14521400 3749 560 Europe/Berlin 2011-04-25
-2871147 Milda Milda 50.85592 11.46355 P PPLA4 DE 15 00 16074 16074057 832 402 Europe/Berlin 2011-04-25
-2871166 Mihla Mihla 51.08333 10.33333 P PPLA4 DE 15 00 16063 16063055 2353 186 Europe/Berlin 2011-04-25
-2871173 Mietingen Mietingen 48.18333 9.9 P PPLA4 DE 01 084 08426 08426073 3986 517 Europe/Berlin 2011-04-25
-2871182 Miesterhorst Miesterhorst 52.46051 11.14117 P PPLA4 DE 14 00 15081 15081360 786 59 Europe/Berlin 2011-07-31
-2871183 Mieste Mieste 52.48226 11.2064 P PPLA4 DE 14 00 15081 15081355 2335 60 Europe/Berlin 2011-07-31
-2871186 Miesitz Miesitz Miesitz 50.73333 11.83333 P PPLA4 DE 15 00 16075 16075065 303 353 Europe/Berlin 2011-04-25
-2871198 Miesbach Miesbach 47.78903 11.83382 P PPL DE 02 091 11354 700 Europe/Berlin 2010-11-15
-2871212 Miellen Miellen 50.33333 7.66667 P PPLA4 DE 08 00 07141 07141086 453 140 Europe/Berlin 2011-04-25
-2871213 Mielkendorf Mielkendorf Mielkendorf 54.28333 10.05 P PPLA4 DE 10 00 01058 01058105 1414 25 Europe/Berlin 2011-04-25
-2871225 Miehlen Miehlen 50.21667 7.83333 P PPLA4 DE 08 00 07141 07141085 2070 225 Europe/Berlin 2011-04-25
-2871243 Midlum Midlum 54.7151 8.52161 P PPLA4 DE 10 00 01054 01054083 345 6 Europe/Berlin 2011-04-25
-2871244 Midlum Midlum 53.73333 8.63333 P PPLA4 DE 06 00 03352 03352034 1933 17 Europe/Berlin 2011-04-25
-2871257 Middelhagen Middelhagen 54.33039 13.70493 P PPLA4 DE 12 00 13061 13061023 0 2 Europe/Berlin 2011-04-25
-2871266 Mickhausen Mickhausen 48.25 10.63333 P PPLA4 DE 02 097 09772 09772178 1367 534 Europe/Berlin 2011-04-25
-2871279 Michendorf Michendorf 52.31352 13.02996 P PPLA4 DE 11 00 12069 12069397 10743 47 Europe/Berlin 2011-07-31
-2871284 Michelstadt Michelstadt Michelstadt 49.67361 9.0025 P PPL DE 05 17279 209 Europe/Berlin 2012-02-28
-2871287 Michelsneukirchen Michelsneukirchen 49.13333 12.55 P PPLA4 DE 02 093 09372 09372142 1806 575 Europe/Berlin 2011-04-25
-2871326 Michelfeld Michelfeld Michelfeld 49.0975 9.67861 P PPLA4 DE 01 081 08127 08127059 3638 362 Europe/Berlin 2011-07-31
-2871342 Michelbach an der Bilz Michelbach an der Bilz Michelbach,Michelbach an der Bilz 49.07028 9.7625 P PPLA4 DE 01 081 08127 08127056 3401 364 Europe/Berlin 2011-04-25
-2871359 Michelbach Michelbach 50.01667 7.45 P PPLA4 DE 08 00 07140 07140095 189 427 Europe/Berlin 2011-04-25
-2871367 Michelau Michelau 50.16233 11.11207 P PPL DE 02 6839 270 Europe/Berlin 2008-08-20
-2871368 Michelau Michelau 49.9 10.43333 P PPL DE 02 1147 304 Europe/Berlin 2006-01-17
-2871394 Meyn Meyn Meyn 54.76667 9.21667 P PPLA4 DE 10 00 01059 01059144 611 20 Europe/Berlin 2011-04-25
-2871421 Meyenburg Meyenburg 53.04524 14.23691 P PPL DE 11 2511 11 Europe/Berlin 2009-01-28
-2871431 Meuspath Meuspath 50.35 6.96667 P PPLA4 DE 08 00 07131 07131050 153 537 Europe/Berlin 2011-04-25
-2871437 Meuselwitz Meuselwitz Meuselwitz 51.05 12.3 P PPL DE 15 9625 176 Europe/Berlin 2012-01-18
-2871441 Meuselbach-Schwarzmühle Meuselbach-Schwarzmuhle Meuselbach,Meuselbach-Schwarzmuhle,Meuselbach-Schwarzmühle 50.56667 11.08333 P PPLA4 DE 15 00 16073 16073056 1373 578 Europe/Berlin 2011-04-25
-2871444 Meusebach Meusebach Meusebach 50.81667 11.73333 P PPLA4 DE 15 00 16074 16074056 94 320 Europe/Berlin 2011-04-25
-2871458 Meura Meura Meura 50.58333 11.2 P PPLA4 DE 15 00 16073 16073055 489 570 Europe/Berlin 2011-04-25
-2871460 Meudt Meudt 50.5 7.9 P PPLA4 DE 08 00 07143 07143263 1783 333 Europe/Berlin 2011-04-25
-2871486 Metzingen Metzingen 48.53695 9.2833 P PPL DE 01 22112 350 Europe/Berlin 2008-12-22
-2871507 Metzenhausen Metzenhausen 49.96667 7.36667 P PPLA4 DE 08 00 07140 07140094 130 439 Europe/Berlin 2011-04-25
-2871516 Metzels Metzels 50.65 10.43333 P PPLA4 DE 15 00 16066 16066044 696 470 Europe/Berlin 2011-04-25
-2871532 Mettweiler Mettweiler 49.58333 7.31667 P PPLA4 DE 08 00 07134 07134054 324 488 Europe/Berlin 2011-04-25
-2871535 Mettmann Mettmann 51.25 6.96667 P PPL DE 07 39550 156 Europe/Berlin 2006-01-17
-2871538 Mettlach Mettlach 49.49355 6.59686 P PPLA4 DE 09 00 10042 10042114 3279 168 Europe/Berlin 2011-04-25
-2871540 Mettingen Mettingen Mettingen 52.31667 7.78333 P PPLA4 DE 07 055 05566 05566056 12532 71 Europe/Berlin 2011-07-31
-2871549 Metterich Metterich 49.98333 6.58333 P PPLA4 DE 08 00 07232 07232081 469 307 Europe/Berlin 2011-04-25
-2871555 Mettenheim Mettenheim 49.74 8.32583 P PPLA4 DE 08 00 07331 07331045 1551 97 Europe/Berlin 2011-04-25
-2871556 Mettenheim Mettenheim 48.26667 12.46667 P PPLA4 DE 02 091 09183 09183127 3307 411 Europe/Berlin 2011-04-25
-2871559 Mettendorf Mettendorf 49.95 6.33333 P PPLA4 DE 08 00 07232 07232080 1119 322 Europe/Berlin 2011-04-25
-2871573 Metten Metten Metten 48.85512 12.91554 P PPL DE 02 4335 317 Europe/Berlin 2011-08-22
-2871589 Metelsdorf Metelsdorf 53.85 11.43333 P PPLA4 DE 12 00 13058 13058069 470 32 Europe/Berlin 2011-04-25
-2871591 Metelen Metelen 52.14434 7.2127 P PPLA4 DE 07 055 05566 05566052 6490 59 Europe/Berlin 2011-04-25
-2871593 Metebach Metebach Metebach 50.96667 10.6 P PPLA4 DE 15 00 16067 16067046 157 336 Europe/Berlin 2011-04-25
-2871596 Mestlin Mestlin 53.58038 11.92729 P PPLA4 DE 12 00 13060 13060053 999 63 Europe/Berlin 2011-04-25
-2871601 Meßstetten Messstetten Messstetten,Messstettin,Meßstetten,Meßstettin 48.18333 8.96667 P PPL DE 01 11132 929 Europe/Berlin 2012-01-18
-2871609 Meßkirch Messkirch Messkirch,Meßkirch,mei si ji xi,mesukiruhi,メスキルヒ,梅斯基希 47.98333 9.11667 P PPL DE 01 8736 614 Europe/Berlin 2012-01-18
-2871613 Messingen Messingen 52.46667 7.46667 P PPLA4 DE 06 00 03454 03454036 1132 41 Europe/Berlin 2011-04-25
-2871621 Messerich Messerich 49.93333 6.48333 P PPLA4 DE 08 00 07232 07232079 494 238 Europe/Berlin 2011-04-25
-2871623 Messenkamp Messenkamp 52.26002 9.38018 P PPLA4 DE 06 00 03257 03257024 858 103 Europe/Berlin 2011-07-31
-2871636 Messel Messel 49.93833 8.74056 P PPLA4 DE 05 064 06432 06432012 3916 177 Europe/Berlin 2011-04-25
-2871648 Mesenich Mesenich 50.1 7.2 P PPLA4 DE 08 00 07135 07135060 355 144 Europe/Berlin 2011-04-25
-2871654 Mesekenhagen Mesekenhagen 54.14846 13.31843 P PPLA4 DE 12 00 13059 13059062 1043 6 Europe/Berlin 2011-04-25
-2871662 Mescherin Mescherin 53.24724 14.43003 P PPLA4 DE 11 00 12073 12073393 791 14 Europe/Berlin 2011-04-25
-2871668 Meschede Meschede Meschede 51.35 8.28333 P PPL DE 07 32224 272 Europe/Berlin 2012-01-18
-2871670 Merzweiler Merzweiler 49.66667 7.53333 P PPLA4 DE 08 00 07336 07336062 212 278 Europe/Berlin 2011-04-25
-2871671 Merzkirchen Merzkirchen 49.58333 6.48333 P PPLA4 DE 08 00 07235 07235154 613 389 Europe/Berlin 2011-04-25
-2871675 Merzig Merzig Mercige,Merzig,Merzig am Saar,Мерциге 49.45 6.63333 P PPL DE 09 31118 174 Europe/Berlin 2012-01-18
-2871680 Merzhausen Merzhausen Merzhausen 47.96667 7.83333 P PPLA4 DE 01 083 08315 08315073 4663 351 Europe/Berlin 2011-04-25
-2871683 Merzenich Merzenich 50.82681 6.52493 P PPLA4 DE 07 053 05358 05358040 0 124 Europe/Berlin 2011-12-21
-2871690 Merzen Merzen 52.48333 7.83333 P PPLA4 DE 06 00 03459 03459026 4078 102 Europe/Berlin 2011-04-25
-2871696 Merzdorf Merzdorf 51.4 13.53333 P PPLA4 DE 11 00 12062 12062336 980 110 Europe/Berlin 2011-04-25
-2871703 Merzalben Merzalben 49.24467 7.73077 P PPLA4 DE 08 00 07340 07340031 1272 288 Europe/Berlin 2011-04-25
-2871707 Merxheim Merxheim 49.78333 7.56667 P PPLA4 DE 08 00 07133 07133066 1514 277 Europe/Berlin 2011-04-25
-2871713 Mertloch Mertloch 50.26948 7.30814 P PPLA4 DE 08 00 07137 07137070 1534 196 Europe/Berlin 2011-04-25
-2871716 Mertingen Mertingen Mertingen 48.65 10.78333 P PPLA4 DE 02 097 09779 09779181 3748 405 Europe/Berlin 2011-04-25
-2871718 Mertesheim Mertesheim 49.57167 8.13556 P PPLA4 DE 08 00 07332 07332036 402 160 Europe/Berlin 2011-04-25
-2871719 Mertesdorf Mertesdorf 49.77212 6.7329 P PPLA4 DE 08 00 07235 07235085 1658 209 Europe/Berlin 2011-04-25
-2871722 Mertendorf Mertendorf 51.11667 11.85 P PPLA4 DE 14 00 15084 15084335 718 121 Europe/Berlin 2011-04-25
-2871723 Mertendorf Mertendorf 51 11.78333 P PPLA4 DE 15 00 16074 16074055 166 319 Europe/Berlin 2011-04-25
-2871736 Merseburg Merseburg Mersebourg,Merseburg,Merseburga,Merzeburg,Мерзебург 51.36667 12 P PPL DE 14 34780 83 Europe/Berlin 2012-01-18
-2871749 Merschbach Merschbach 49.8 7 P PPLA4 DE 08 00 07231 07231083 52 259 Europe/Berlin 2011-04-25
-2871762 Mermuth Mermuth 50.16667 7.48333 P PPLA4 DE 08 00 07140 07140093 313 367 Europe/Berlin 2011-04-25
-2871767 Merlscheid Merlscheid 50.13333 6.35 P PPLA4 DE 08 00 07232 07232270 35 368 Europe/Berlin 2011-04-25
-2871790 Merklingen Merklingen 48.51135 9.75496 P PPLA4 DE 01 084 08425 08425079 1871 709 Europe/Berlin 2011-04-25
-2871800 Merkendorf Merkendorf 50.68999 11.97227 P PPLA4 DE 15 00 16076 16076046 336 380 Europe/Berlin 2011-04-25
-2871803 Merkendorf Merkendorf Merkendorf 49.2 10.7 P PPL DE 02 2898 432 Europe/Berlin 2012-01-18
-2871805 Merkenbach Merkenbach 50.65626 8.29513 P PPL DE 05 065 06532 1600 252 Europe/Berlin 2010-11-15
-2871807 Merkelbach Merkelbach Merkelbach,Merkelbeck 50.65 7.75 P PPLA4 DE 08 00 07143 07143262 381 300 Europe/Berlin 2011-04-25
-2871813 Mering Mering Moringen 48.2656 10.98461 P PPL DE 02 097 12820 511 Europe/Berlin 2010-11-15
-2871829 Merenberg Merenberg Merenberg 50.51667 8.18333 P PPL DE 05 3493 247 Europe/Berlin 2012-01-18
-2871831 Merdingen Merdingen 48.01667 7.68333 P PPLA4 DE 01 083 08315 08315072 2648 193 Europe/Berlin 2011-04-25
-2871832 Merchweiler Merchweiler 49.35 7.05 P PPLA4 DE 09 00 10043 10043113 10863 357 Europe/Berlin 2011-04-25
-2871835 Merching Merching 48.24594 10.9853 P PPLA4 DE 02 097 09771 09771145 3133 529 Europe/Berlin 2011-04-25
-2871845 Meppen Meppen 52.69064 7.29097 P PPL DE 06 34198 15 Europe/Berlin 2011-11-06
-2871864 Menzendorf Menzendorf Menzendorf,Menzendorf-Dorf 53.85 11.01667 P PPLA4 DE 12 00 13058 13058068 274 33 Europe/Berlin 2011-04-25
-2871884 Menteroda Menteroda 51.3 10.55 P PPLA4 DE 15 00 16064 16064072 2494 437 Europe/Berlin 2011-04-25
-2871889 Menslage Menslage Menslage 52.68333 7.81667 P PPLA4 DE 06 00 03459 03459025 2608 22 Europe/Berlin 2011-04-25
-2871915 Menningen Menningen 49.83333 6.48333 P PPLA4 DE 08 00 07232 07232078 187 297 Europe/Berlin 2011-04-25
-2871950 Mengkofen Mengkofen 48.71667 12.45 P PPLA4 DE 02 092 09279 09279127 5695 432 Europe/Berlin 2011-04-25
-2871953 Mengerskirchen Mengerskirchen Mengerskirchen 50.56667 8.16667 P PPL DE 05 6116 476 Europe/Berlin 2012-01-18
-2871958 Mengersgereuth-Hämmern Mengersgereuth-Hammern 50.4 11.11667 P PPLA4 DE 15 00 16072 16072012 2972 502 Europe/Berlin 2011-04-25
-2871960 Mengerschied Mengerschied 49.91667 7.5 P PPLA4 DE 08 00 07140 07140092 800 375 Europe/Berlin 2011-04-25
-2871964 Mengen Mengen 48.04951 9.33005 P PPL DE 01 084 08437 10205 561 562 Europe/Berlin 2010-11-15
-2871979 Mendig Mendig Mendig,Mending 50.36667 7.28333 P PPL DE 08 8813 195 Europe/Berlin 2012-01-18
-2871980 Mendhausen Mendhausen Mendhausen 50.38333 10.46667 P PPLA4 DE 15 00 16069 16069031 357 306 Europe/Berlin 2011-04-25
-2871983 Menden Menden Menden 51.43333 7.8 P PPL DE 07 58451 144 Europe/Berlin 2012-01-18
-2871990 Memmingerberg Memmingerberg 47.98573 10.17703 P PPLA4 DE 02 097 09778 09778171 2579 602 Europe/Berlin 2011-07-12
-2871992 Memmingen Memmingen Memmingen,memingen,メミンゲン 47.98372 10.18527 P PPL DE 02 41135 598 Europe/Berlin 2011-05-31
-2872003 Memmelsdorf Memmelsdorf 49.93012 10.95921 P PPLA4 DE 02 094 09471 09471159 9001 285 Europe/Berlin 2011-04-25
-2872019 Melz Melz 53.3 12.61667 P PPLA4 DE 12 00 13056 13056045 420 68 Europe/Berlin 2011-04-25
-2872028 Melsungen Melsungen Melsungen 51.13333 9.55 P PPL DE 05 14004 197 Europe/Berlin 2012-01-18
-2872031 Melsdorf Melsdorf Melsdorf 54.31667 10.03333 P PPLA4 DE 10 00 01058 01058104 1775 16 Europe/Berlin 2011-04-25
-2872033 Melsbach Melsbach 50.48333 7.48333 P PPLA4 DE 08 00 07138 07138043 2139 181 Europe/Berlin 2011-04-25
-2872036 Melpers Melpers 50.55 10.15 P PPLA4 DE 15 00 16066 16066043 106 592 Europe/Berlin 2011-04-25
-2872047 Mellrichstadt Mellrichstadt Mellrichstadt 50.43333 10.31667 P PPL DE 02 6254 276 Europe/Berlin 2012-01-18
-2872056 Mellinghausen Mellinghausen 52.70697 8.89704 P PPLA4 DE 06 00 03251 03251027 1090 47 Europe/Berlin 2011-04-25
-2872057 Mellingen Mellingen 50.93333 11.4 P PPLA4 DE 15 00 16071 16071056 1234 231 Europe/Berlin 2011-04-25
-2872064 Mellenthin Mellenthin Mellenthin 53.91667 14.01667 P PPLA4 DE 12 00 13059 13059111 264 21 Europe/Berlin 2011-04-25
-2872065 Am Mellensee Am Mellensee Mellen 52.18333 13.4 P PPLA4 DE DE 11 00 12072 12072002 0 38 Europe/Berlin 2011-07-31
-2872073 Mellenbach-Glasbach Mellenbach-Glasbach Mellenbach-Glasbach 50.61667 11.1 P PPLA4 DE 15 00 16073 16073054 1159 600 Europe/Berlin 2011-04-25
-2872079 Melle Melle Melle 52.2 8.35 P PPL DE 06 46514 72 Europe/Berlin 2012-01-18
-2872100 Meldorf Meldorf Meldoerp,Meldorf,Meldörp 54.09182 9.0687 P PPL DE 10 00 7719 4 Europe/Berlin 2012-01-09
-2872102 Melchow Melchow 52.77613 13.70647 P PPLA4 DE 11 00 12060 12060161 1069 62 Europe/Berlin 2011-07-31
-2872117 Melbeck Melbeck 53.18333 10.4 P PPLA4 DE 06 00 03355 03355024 3358 41 Europe/Berlin 2011-07-31
-2872124 Meitzendorf Meitzendorf 52.21308 11.56174 P PPL DE 14 00 1113 53 Europe/Berlin 2010-11-22
-2872126 Meitingen Meitingen Meitingen 48.55 10.85 P PPL DE 02 11201 431 Europe/Berlin 2012-01-18
-2872149 Meißenheim Meissenheim 48.41035 7.77266 P PPLA4 DE 01 083 08317 08317075 3636 147 Europe/Berlin 2011-07-31
-2872155 Meißen Meissen Meissen,Meißen,Mejsen,Misen,Misnia,Miśnia,Míšeň,maisen,Мейсен,マイセン 51.16158 13.4737 P PPL DE 13 28492 109 Europe/Berlin 2010-04-30
-2872173 Meisenheim Meisenheim 49.71667 7.66667 P PPL DE 08 2887 146 Europe/Berlin 2006-01-17
-2872195 Meisburg Meisburg 50.11667 6.68333 P PPLA4 DE 08 00 07233 07233043 259 539 Europe/Berlin 2011-04-25
-2872225 Meiningen Meiningen Majningen,Meiningen,Stadt Meiningen,Майнинген 50.56787 10.41521 P PPL DE 15 21580 292 Europe/Berlin 2010-01-29
-2872231 Meinheim Meinheim 49.03333 10.81667 P PPLA4 DE 02 095 09577 09577150 928 435 Europe/Berlin 2011-04-25
-2872237 Meinerzhagen Meinerzhagen Meinerzhagen 51.11667 7.65 P PPL DE 07 21982 442 Europe/Berlin 2012-01-18
-2872244 Meinersen Meinersen Maansse,Maanssen,Maanße,Maanßen,Mansse,Meinsse,Meinße,Mānße 52.47436 10.35247 P PPLA4 DE 06 00 03151 03151017 8322 54 Europe/Berlin 2011-03-15
-2872255 Meine Meine 52.38493 10.53932 P PPLA4 DE 06 00 03151 03151016 0 79 Europe/Berlin 2011-04-25
-2872261 Meinborn Meinborn 50.5 7.56667 P PPLA4 DE 08 00 07138 07138042 466 308 Europe/Berlin 2011-04-25
-2872305 Meiersberg Meiersberg Meiersberg,Meiersberg-Schlabrendorf 53.7 13.95 P PPLA4 DE 12 00 13062 13062036 479 2 Europe/Berlin 2011-04-25
-2872362 Mehrstetten Mehrstetten 48.37609 9.566 P PPLA4 DE 01 084 08415 08415048 1454 755 Europe/Berlin 2011-04-25
-2872374 Mehringen Mehringen 51.73333 11.51667 P PPL DE 14 1194 124 Europe/Berlin 2006-01-17
-2872375 Mehring Mehring 49.8 6.83333 P PPLA4 DE 08 00 07235 07235083 2171 154 Europe/Berlin 2011-07-31
-2872377 Mehring Mehring 48.18333 12.78333 P PPLA4 DE 02 091 09171 09171124 2242 412 Europe/Berlin 2011-04-25
-2872380 Mehrhoog Mehrhoog 51.73333 6.51667 P PPLL DE 07 051 05170 05170012 6520 21 23 Europe/Berlin 2011-08-26
-2872389 Mehren Mehren Mehren 50.68333 7.5 P PPLA4 DE 08 00 07132 07132069 522 261 Europe/Berlin 2011-04-25
-2872390 Mehren Mehren 50.18333 6.88333 P PPLA4 DE 08 00 07233 07233042 1385 498 Europe/Berlin 2011-04-25
-2872403 Mehna Mehna Mehna 50.96667 12.31667 P PPLA4 DE 15 00 16077 16077031 356 249 Europe/Berlin 2011-04-25
-2872405 Mehmels Mehmels 50.63333 10.33333 P PPLA4 DE 15 00 16066 16066041 416 311 Europe/Berlin 2011-04-25
-2872409 Mehltheuer Mehltheuer 50.55 12.05 P PPLA4 DE 13 145 14523 14523210 1587 509 Europe/Berlin 2011-04-25
-2872417 Mehlmeisel Mehlmeisel 49.96667 11.85 P PPLA4 DE 02 094 09472 09472164 1409 730 Europe/Berlin 2011-04-25
-2872428 Mehlingen Mehlingen Mehlingen 49.5 7.85 P PPLA4 DE 08 00 07335 07335026 3882 304 Europe/Berlin 2011-04-25
-2872447 Mehlbek Mehlbek Mehlbek 54.00456 9.43453 P PPLA4 DE 10 00 01061 01061067 466 22 Europe/Berlin 2011-04-25
-2872449 Mehlbach Mehlbach 49.51667 7.71667 P PPLA4 DE 08 00 07335 07335025 1193 290 Europe/Berlin 2011-04-25
-2872463 Meggerdorf Meggerdorf Meggerdorf 54.35 9.4 P PPLA4 DE 10 00 01059 01059058 701 255 Europe/Berlin 2011-04-25
-2872469 Megesheim Megesheim 48.93333 10.65 P PPLA4 DE 02 097 09779 09779180 900 418 Europe/Berlin 2011-04-25
-2872470 Meezen Meezen Meezen 54.05 9.7 P PPLA4 DE 10 00 01058 01058103 389 45 Europe/Berlin 2011-04-25
-2872475 Meesiger Meesiger 53.81667 12.91667 P PPLA4 DE 12 00 13052 13052051 280 31 Europe/Berlin 2011-04-25
-2872486 Meersburg Meersburg Neersburg 47.69419 9.27113 P PPL DE 01 5528 426 Europe/Berlin 2008-08-02
-2872500 Meerfeld Meerfeld 50.1 6.75 P PPLA4 DE 08 00 07231 07231082 355 390 Europe/Berlin 2011-04-25
-2872504 Meerbusch Meerbusch Meerbusch 51.28333 6.66667 P PPL DE 07 54826 33 Europe/Berlin 2012-02-02
-2872512 Meerbeck Meerbeck 52.33333 9.15 P PPLA4 DE 06 00 03257 03257023 2130 64 Europe/Berlin 2011-07-31
-2872519 Meerane Meerane 50.85 12.46667 P PPL DE 13 17325 256 Europe/Berlin 2006-01-17
-2872527 Meeder Meeder 50.31667 10.91667 P PPLA4 DE 02 094 09473 09473144 4107 323 Europe/Berlin 2011-07-31
-2872529 Medow Medow 53.83896 13.53052 P PPLA4 DE 12 00 13059 13059060 420 9 Europe/Berlin 2011-07-31
-2872553 Medelby Medelby Medelby 54.81667 9.18333 P PPLA4 DE 10 00 01059 01059143 878 31 Europe/Berlin 2011-04-25
-2872557 Medebach Medebach Medebach 51.2 8.71667 P PPL DE 07 8276 389 Europe/Berlin 2012-01-18
-2872558 Meddewade Meddewade Meddewade 53.81667 10.45 P PPLA4 DE 10 00 01062 01062046 756 11 Europe/Berlin 2011-04-25
-2872559 Meddersheim Meddersheim 49.78333 7.61667 P PPLA4 DE 08 00 07133 07133064 1368 151 Europe/Berlin 2011-04-25
-2872562 Medard Medard 49.66667 7.61667 P PPLA4 DE 08 00 07336 07336061 526 157 Europe/Berlin 2011-04-25
-2872571 Mecklenburg Mecklenburg Dorf Mecklenburg,Mecklenburg,Mecklenburg Dorf 53.85 11.46667 P PPL DE 12 3088 19 Europe/Berlin 2012-01-18
-2872580 Meckesheim Meckesheim Meckesheim 49.32167 8.81944 P PPLA4 DE 01 082 08226 08226049 5409 144 Europe/Berlin 2011-04-25
-2872582 Meckenheim Meckenheim Meckenheim 50.63333 7.01667 P PPL DE 07 25515 162 Europe/Berlin 2012-01-18
-2872583 Meckenheim Meckenheim Meckenheim,Meehenheim,Mekkenkhajm,Меккенхайм 49.40444 8.23917 P PPLA4 DE 08 00 07332 07332035 3376 114 Europe/Berlin 2011-04-25
-2872585 Meckenbeuren Meckenbeuren Meckenbeuren 47.7 9.56667 P PPLA4 DE 01 084 08435 08435035 13183 415 Europe/Berlin 2011-07-31
-2872586 Meckenbach Meckenbach 49.78333 7.5 P PPLA4 DE 08 00 07133 07133063 422 320 Europe/Berlin 2011-04-25
-2872587 Meckenbach Meckenbach 49.61667 7.1 P PPLA4 DE 08 00 07134 07134053 0 454 Europe/Berlin 2011-04-25
-2872594 Meckel Meckel 49.88977 6.51712 P PPLA4 DE 08 00 07232 07232077 373 298 Europe/Berlin 2011-07-31
-2872600 Mechterstädt Mechterstadt Mechterstadt,Mechterstädt 50.95 10.53333 P PPLA4 DE 15 00 16067 16067045 1154 331 Europe/Berlin 2011-04-25
-2872602 Mechtersen Mechtersen 53.28333 10.31667 P PPLA4 DE 06 00 03355 03355023 682 17 Europe/Berlin 2011-04-25
-2872606 Mechow Mechow 53.71667 10.8 P PPLA4 DE 10 00 01053 01053088 98 30 Europe/Berlin 2011-04-25
-2872611 Mechernich Mechernich Mechernich 50.6 6.65 P PPL DE 07 27537 332 Europe/Berlin 2012-01-18
-2872617 Mechelroda Mechelroda 50.91126 11.37806 P PPLA4 DE 15 00 16071 16071055 274 345 Europe/Berlin 2011-04-25
-2872621 Mechau Mechau 52.8712 11.34888 P PPLA4 DE 14 00 15081 15081340 265 26 Europe/Berlin 2011-04-25
-2872625 Mayschoß Mayschoss 50.53333 7.01667 P PPLA4 DE 08 00 07131 07131049 971 335 Europe/Berlin 2011-04-25
-2872649 Mayen Mayen Mayen 50.33333 7.21667 P PPL DE 08 19414 257 Europe/Berlin 2012-01-18
-2872659 Maxsain Maxsain 50.55 7.78333 P PPLA4 DE 08 00 07143 07143046 1158 296 Europe/Berlin 2011-04-25
-2872670 Maxhütte-Haidhof Maxhutte-Haidhof Maxhutte,Maxhutte-Haidhof,Maxhütte,Maxhütte-Haidhof 49.2025 12.09806 P PPL DE 02 10674 407 Europe/Berlin 2012-01-18
-2872686 Maxdorf Maxdorf 49.48806 8.29167 P PPLA4 DE 08 00 07338 07338018 6882 95 Europe/Berlin 2011-04-25
-2872697 Mauth Mauth Mauth 48.88972 13.58459 P PPLA4 DE 02 092 09272 09272134 2566 821 Europe/Berlin 2011-08-22
-2872739 Mauschbach Mauschbach 49.18333 7.4 P PPLA4 DE 08 00 07340 07340218 270 250 Europe/Berlin 2011-04-25
-2872775 Maulburg Maulburg 47.64631 7.7821 P PPLA4 DE 01 083 08336 08336057 4099 350 Europe/Berlin 2011-04-25
-2872777 Maulbronn Maulbronn Maul,Maulbronn,mauruburon,マウルブロン 49.00083 8.80778 P PPL DE 01 6817 264 Europe/Berlin 2012-01-18
-2872796 Mauerstetten Mauerstetten 47.88333 10.66667 P PPLA4 DE 02 097 09777 09777152 2922 721 Europe/Berlin 2011-04-25
-2872807 Mauern Mauern Mauern,Mauren 48.51667 11.9 P PPLA4 DE 02 091 09178 09178142 2752 444 Europe/Berlin 2011-04-25
-2872815 Mauer Mauer Mauer 49.34083 8.80028 P PPLA4 DE 01 082 08226 08226048 3498 141 Europe/Berlin 2011-04-25
-2872825 Mauel Mauel 50.06667 6.4 P PPLA4 DE 08 00 07232 07232267 74 306 Europe/Berlin 2011-04-25
-2872827 Mauden Mauden 50.71667 8 P PPLA4 DE 08 00 07132 07132068 116 403 Europe/Berlin 2011-04-25
-2872832 Mauchenheim Mauchenheim 49.71806 8.04611 P PPLA4 DE 08 00 07331 07331044 983 226 Europe/Berlin 2011-04-25
-2872860 Matzerath Matzerath 50.15 6.38333 P PPLA4 DE 08 00 07232 07232266 54 470 Europe/Berlin 2011-04-25
-2872880 Matzenbach Matzenbach 49.5 7.46667 P PPLA4 DE 08 00 07336 07336107 700 298 Europe/Berlin 2011-04-25
-2872892 Mattstedt Mattstedt 51.05 11.51667 P PPLA4 DE 15 00 16071 16071054 545 195 Europe/Berlin 2011-04-25
-2872953 Masthorn Masthorn 50.15 6.3 P PPLA4 DE 08 00 07232 07232265 73 445 Europe/Berlin 2011-04-25
-2872955 Mastershausen Mastershausen 50.06667 7.35 P PPLA4 DE 08 00 07140 07140204 1202 413 Europe/Berlin 2011-04-25
-2872962 Maßweiler Massweiler 49.26667 7.53333 P PPLA4 DE 08 00 07340 07340217 1158 347 Europe/Berlin 2011-04-25
-2872966 Massow Massow 53.31478 12.4221 P PPLA4 DE 12 00 13056 13056044 219 83 Europe/Berlin 2011-04-25
-2872972 Massing Massing Maszing 48.39118 12.60947 P PPL DE 02 4144 429 Europe/Berlin 2008-10-22
-2872980 Masserberg Masserberg Masserberg 50.51667 10.98333 P PPLA4 DE 15 00 16069 16069061 2828 711 Europe/Berlin 2011-04-25
-2872996 Massenbachhausen Massenbachhausen 49.17778 9.04333 P PPLA4 DE 01 081 08125 08125061 3676 210 Europe/Berlin 2011-04-25
-2873011 Maßbach Massbach Massbach,Maßbach 50.18333 10.28333 P PPL DE 02 4819 286 Europe/Berlin 2012-01-18
-2873022 Maselheim Maselheim 48.13333 9.88333 P PPLA4 DE 01 084 08426 08426071 4534 544 Europe/Berlin 2011-04-25
-2873049 Masburg Masburg 50.25 7.11667 P PPLA4 DE 08 00 07135 07135058 1037 441 Europe/Berlin 2011-04-25
-2873056 Marzling Marzling 48.40904 11.79382 P PPLA4 DE 02 091 09178 09178140 2899 442 Europe/Berlin 2011-07-31
-2873061 Marzhausen Marzhausen 50.68333 7.75 P PPLA4 DE 08 00 07143 07143261 258 315 Europe/Berlin 2011-04-25
-2873080 Marxheim Marxheim 48.75 10.95 P PPLA4 DE 02 097 09779 09779178 2574 433 Europe/Berlin 2011-04-25
-2873087 Marxen Marxen 53.31667 10.01667 P PPLA4 DE 06 00 03353 03353024 1251 38 Europe/Berlin 2011-04-25
-2873108 Martinstein Martinstein 49.8 7.53333 P PPLA4 DE 08 00 07133 07133062 329 289 Europe/Berlin 2011-04-25
-2873122 Martinshöhe Martinshohe 49.36667 7.48333 P PPLA4 DE 08 00 07335 07335203 1757 385 Europe/Berlin 2011-04-25
-2873126 Martinsheim Martinsheim 49.6235 10.14879 P PPLA4 DE 02 096 09675 09675150 1062 283 Europe/Berlin 2011-04-25
-2873140 Martinroda Martinroda 50.8 10.06667 P PPLA4 DE 15 00 16063 16063053 297 370 Europe/Berlin 2011-04-25
-2873141 Martinroda Martinroda 50.71667 10.88333 P PPLA4 DE 15 00 16070 16070034 894 475 Europe/Berlin 2011-04-25
-2873144 Martinhagen Martinhagen 51.28688 9.28611 P PPL DE 05 066 1500 380 385 Europe/Berlin 2010-11-15
-2873150 Marth Marth Marth 51.38333 10 P PPLA4 DE 15 00 16061 16061069 358 272 Europe/Berlin 2011-04-25
-2873153 Martfeld Martfeld 52.86667 9.06667 P PPLA4 DE 06 00 03251 03251026 2867 12 Europe/Berlin 2011-04-25
-2873159 Martensrade Martensrade Martensrade 54.28333 10.4 P PPLA4 DE 10 00 01057 01057050 1069 63 Europe/Berlin 2011-04-25
-2873211 Marsberg Marsberg Eresburg,Marsberg 51.46171 8.84949 P PPL DE 07 21914 254 Europe/Berlin 2011-11-06
-2873220 Marquartstein Marquartstein 47.75857 12.46219 P PPLA4 DE 02 091 09189 09189129 3125 544 Europe/Berlin 2011-04-25
-2873224 Marpingen Marpingen 49.45228 7.0582 P PPLA4 DE 09 00 10046 10046112 11358 285 Europe/Berlin 2011-04-25
-2873226 Maroth Maroth 50.58333 7.68333 P PPLA4 DE 08 00 07143 07143045 257 280 Europe/Berlin 2011-04-25
-2873227 Marolterode Marolterode 51.23333 10.68333 P PPLA4 DE 15 00 16064 16064043 364 308 Europe/Berlin 2011-04-25
-2873228 Maroldsweisach Maroldsweisach Maroldsweisach 50.2 10.66667 P PPL DE 02 3788 333 Europe/Berlin 2012-01-18
-2873233 Marnitz Marnitz 53.31667 11.93333 P PPLA4 DE 12 00 13060 13060051 890 87 Europe/Berlin 2011-04-25
-2873234 Marnheim Marnheim 49.63278 8.04 P PPLA4 DE 08 00 07333 07333045 1642 190 Europe/Berlin 2011-04-25
-2873237 Marnerdeich Marnerdeich Marnerdeich 53.95 8.98333 P PPLA4 DE 10 00 01051 01051073 348 255 Europe/Berlin 2011-04-25
-2873250 Marlow Marlow 54.15439 12.57261 P PPL DE 12 4881 29 Europe/Berlin 2009-01-25
-2873251 Marloffstein Marloffstein 49.61794 11.06323 P PPLA4 DE 02 095 09572 09572141 1612 364 Europe/Berlin 2011-04-25
-2873262 Marl Marl 52.48333 8.36667 P PPLA4 DE 06 00 03251 03251025 570 41 Europe/Berlin 2011-04-25
-2873263 Marl Marl Marl 51.65 7.08333 P PPL DE 07 91398 61 Europe/Berlin 2012-01-18
-2873276 Markvippach Markvippach 51.08333 11.16667 P PPLA4 DE 15 00 16068 16068036 569 168 Europe/Berlin 2011-04-25
-2873278 Marktzeuln Marktzeuln 50.16673 11.16692 P PPL DE 02 1803 293 Europe/Berlin 2008-08-20
-2873280 Markt Wald Markt Wald Markt Wald 48.13333 10.58333 P PPL DE 02 2359 614 Europe/Berlin 2012-01-18
-2873283 Marktsteft Marktsteft Marktstett 49.69606 10.13626 P PPL DE 02 1779 192 Europe/Berlin 2010-06-07
-2873285 Markt Schwaben Markt Schwaben Markt Swaben,Schwabe 48.18949 11.8691 P PPL DE 02 10857 512 Europe/Berlin 2009-01-21
-2873286 Marktschorgast Marktschorgast Marktschorgast 50.1 11.65 P PPL DE 02 1660 528 Europe/Berlin 2012-01-18
-2873287 Marktschellenberg Marktschellenberg Marktschellenberg,Schellenberg 47.7 13.03333 P PPL DE 02 1855 642 Europe/Berlin 2012-01-18
-2873288 Markt Rettenbach Markt Rettenbach 47.95 10.4 P PPL DE 02 3688 681 Europe/Berlin 2006-01-17
-2873289 Marktredwitz Marktredwitz Harktrednitz,Marktredwitz,Martredwitz 50.005 12.08111 P PPL DE 02 18204 536 Europe/Berlin 2012-01-18
-2873290 Marktoffingen Marktoffingen 48.93333 10.48333 P PPLA4 DE 02 097 09779 09779177 1382 438 Europe/Berlin 2011-04-25
-2873291 Marktoberdorf Marktoberdorf Marktoberdorf 47.78333 10.61667 P PPL DE 02 18505 729 Europe/Berlin 2012-01-18
-2873292 Markt Nordheim Markt Nordheim Markt Nordheim 49.58333 10.35 P PPL DE 02 1182 337 Europe/Berlin 2012-01-18
-2873295 Marktleuthen Marktleuthen Marktleuthen 50.13333 12 P PPL DE 02 3673 525 Europe/Berlin 2012-01-18
-2873296 Marktleugast Marktleugast Markt Lengast,Marktleugast 50.18333 11.63333 P PPL DE 02 3688 620 Europe/Berlin 2012-01-18
-2873298 Marktl Marktl Markhl,Marktl,Marktl',Марктль 48.25 12.85 P PPL DE 02 2654 361 Europe/Berlin 2012-01-18
-2873300 Markt Indersdorf Markt Indersdorf 48.36058 11.37789 P PPL DE 02 091 9263 469 Europe/Berlin 2010-11-15
-2873301 Marktheidenfeld Marktheidenfeld Marktheidenfeld 49.84417 9.60389 P PPL DE 02 11024 160 Europe/Berlin 2012-02-28
-2873302 Marktgraitz Marktgraitz Marktgraitz 50.18333 11.2 P PPL DE 02 1331 277 Europe/Berlin 2012-01-18
-2873304 Markt Erlbach Markt Erlbach Markt Erlbach 49.48333 10.65 P PPL DE 02 5716 393 Europe/Berlin 2012-01-18
-2873307 Marktbreit Marktbreit 49.66541 10.14811 P PPL DE 02 3700 191 Europe/Berlin 2010-06-07
-2873308 Markt Bibart Markt Bibart Markt Bibart 49.65 10.43333 P PPL DE 02 1978 302 Europe/Berlin 2012-01-18
-2873309 Markt Berolzheim Markt Berolzheim Berolzheim 49.00955 10.84473 P PPL DE 02 1370 422 Europe/Berlin 2009-06-15
-2873310 Marktbergel Marktbergel Marktbergel 49.45 10.36667 P PPL DE 02 1687 356 Europe/Berlin 2012-01-18
-2873318 Marksuhl Marksuhl Marksuhl 50.91667 10.2 P PPLA4 DE 15 00 16063 16063052 3250 251 Europe/Berlin 2011-04-25
-2873331 Markranstädt Markranstadt 51.30146 12.2202 P PPL DE 13 13053 126 Europe/Berlin 2009-08-21
-2873340 Markneukirchen Markneukirchen Markneukirchen 50.31667 12.31667 P PPL DE 13 7095 517 Europe/Berlin 2012-01-18
-2873343 Marklohe Marklohe Lohe,Marklohe 52.66667 9.16667 P PPLA4 DE 06 00 03256 03256021 4396 23 Europe/Berlin 2011-07-31
-2873344 Marklkofen Marklkofen 48.55 12.56667 P PPLA4 DE 02 092 09279 09279126 3818 418 Europe/Berlin 2011-04-25
-2873351 Markkleeberg West Markkleeberg West Markkleeberg,Markkleeberg West 51.28333 12.36667 P PPLX DE 13 23464 117 Europe/Berlin 2012-01-18
-2873369 Markgröningen Markgroningen Markgronningen 48.90493 9.08059 P PPL DE 01 14414 286 Europe/Berlin 2008-12-21
-2873400 Markersdorf Markersdorf 51.13333 14.88333 P PPLA4 DE 13 146 14626 14626300 4408 247 Europe/Berlin 2011-04-25
-2873409 Markersbach Markersbach Markersbach 50.53333 12.86667 P PPL DE 13 1912 499 Europe/Berlin 2012-01-18
-2873427 Markdorf Markdorf Markdorf 47.71667 9.4 P PPL DE 01 12486 432 Europe/Berlin 2012-01-18
-2873459 Marisfeld Marisfeld Marisfeld 50.55 10.56667 P PPLA4 DE 15 00 16069 16069028 452 398 Europe/Berlin 2011-04-25
-2873460 Maring-Noviand Maring-Noviand 49.93333 7 P PPLA4 DE 08 00 07231 07231081 1518 186 Europe/Berlin 2011-04-25
-2873464 Marienwerder Marienwerder 52.84208 13.59927 P PPLA4 DE 11 00 12060 12060154 1728 36 Europe/Berlin 2011-04-25
-2873499 Mariental Mariental Mariental,Marienthal 52.28333 10.98333 P PPLA4 DE 06 00 03154 03154015 1138 139 Europe/Berlin 2011-04-25
-2873513 Marienrachdorf Marienrachdorf 50.55 7.71667 P PPLA4 DE 08 00 07143 07143044 1024 272 Europe/Berlin 2011-04-25
-2873574 Marienheide Marienheide Marienheide 51.08333 7.53333 P PPLA4 DE 07 053 05374 05374024 13759 356 Europe/Berlin 2011-04-25
-2873575 Marienhausen Marienhausen 50.56667 7.68333 P PPLA4 DE 08 00 07138 07138201 491 259 Europe/Berlin 2011-04-25
-2873578 Marienhagen Marienhagen 52.03718 9.68685 P PPLA4 DE 06 00 03254 03254039 919 178 Europe/Berlin 2011-07-31
-2873581 Marienhafe Marienhafe Marienhafe 53.53333 7.26667 P PPL DE 06 2032 3 Europe/Berlin 2012-01-18
-2873588 Marienfels Marienfels 50.23333 7.81667 P PPLA4 DE 08 00 07141 07141084 348 237 Europe/Berlin 2011-04-25
-2873632 Marienberg Marienberg Marienberg 50.65 13.16667 P PPL DE 13 14383 602 Europe/Berlin 2012-02-28
-2873667 Mariaposching Mariaposching 48.83333 12.8 P PPLA4 DE 02 092 09278 09278149 1397 312 Europe/Berlin 2011-04-25
-2873701 Margetshöchheim Margetshochheim 49.8375 9.86389 P PPLA4 DE 02 096 09679 09679161 3256 176 Europe/Berlin 2011-04-25
-2873759 Marburg an der Lahn Marburg an der Lahn Marbourg,Marburg,Marburg an der Lahn,Marburgo,Marmpournk,Μάρμπουργκ,Марбург,マールブルク・アン・デア・ラーン 50.81667 8.76667 P PPL DE 05 78895 232 Europe/Berlin 2012-01-18
-2873776 Marbach am Neckar Marbach am Neckar Marbach 48.93964 9.25995 P PPL DE 01 15604 242 Europe/Berlin 2008-12-21
-2873820 Manubach Manubach 50.03333 7.75 P PPLA4 DE 08 00 07339 07339036 368 299 Europe/Berlin 2011-04-25
-2873841 Mantel Mantel Mantel 49.65 12.05 P PPL DE 02 2951 402 Europe/Berlin 2012-02-02
-2873852 Mansfeld Mansfeld Mansfeld 51.58333 11.46667 P PPL DE 14 3501 254 Europe/Berlin 2012-01-18
-2873854 Manschnow Manschnow 52.5499 14.55332 P PPL DE 11 1200 10 12 Europe/Berlin 2010-12-02
-2873865 Mannstedt Mannstedt 51.13333 11.38333 P PPLA4 DE 15 00 16068 16068035 408 160 Europe/Berlin 2011-04-25
-2873891 Mannheim Mannheim Man'chaim,Mangejm,Manheimas,Mankhajm,Mannheim,manhaim,manhaimi,manhaimu,manhaym,mnhyym,Μάνχαϊμ,Мангейм,Манхайм,Манхајм,מנהיים,مانهایم,მანჰაიმი,マンハイム,만하임 49.48833 8.46472 P PPL DE 01 307960 107 Europe/Berlin 2012-01-18
-2873908 Mannebach Mannebach 50.28333 6.98333 P PPLA4 DE 08 00 07233 07233225 224 515 Europe/Berlin 2011-04-25
-2873910 Mannebach Mannebach 49.63333 6.51667 P PPLA4 DE 08 00 07235 07235082 345 274 Europe/Berlin 2011-04-25
-2873929 Manhagen Manhagen Manhagen 54.2 10.91667 P PPLA4 DE 10 00 01055 01055029 408 34 Europe/Berlin 2011-04-25
-2873970 Manderscheid Manderscheid 50.09672 6.80981 P PPL DE 08 1323 388 Europe/Berlin 2011-10-11
-2873971 Manderscheid Manderscheid 50.1 6.35 P PPLA4 DE 08 00 07232 07232264 47 401 Europe/Berlin 2011-04-25
-2873974 Mandern Mandern 49.6 6.76667 P PPLA4 DE 08 00 07235 07235081 947 468 Europe/Berlin 2011-04-25
-2873980 Mandelshagen Mandelshagen 54.15309 12.36803 P PPLA4 DE 12 00 13051 13051045 297 44 Europe/Berlin 2011-04-25
-2873989 Mandel Mandel 49.85 7.76667 P PPLA4 DE 08 00 07133 07133061 817 222 Europe/Berlin 2011-04-25
-2873992 Manching Manching 48.71656 11.49393 P PPL DE 02 11239 368 Europe/Berlin 2009-06-22
-2874000 Mamming Mamming Mamming,Maniing 48.65 12.6 P PPLA4 DE 02 092 09279 09279125 2948 352 Europe/Berlin 2011-04-25
-2874006 Mammendorf Mammendorf 48.2 11.15 P PPLA4 DE 02 091 09179 09179136 4540 537 Europe/Berlin 2011-07-31
-2874007 Mammelzen Mammelzen 50.7 7.66667 P PPLA4 DE 08 00 07132 07132067 1056 236 Europe/Berlin 2011-04-25
-2874028 Malterdingen Malterdingen 48.16667 7.8 P PPLA4 DE 01 083 08316 08316024 2907 195 Europe/Berlin 2011-04-25
-2874039 Malsfeld Malsfeld Malsfeld 51.08333 9.53333 P PPLA4 DE 05 066 06634 06634013 4301 207 Europe/Berlin 2011-04-25
-2874042 Malschwitz Malschwitz Malschwitz 51.23333 14.51667 P PPLA4 DE 13 146 14625 14625340 3800 150 Europe/Berlin 2011-04-25
-2874047 Malsch Malsch 49.24722 8.68278 P PPLA4 DE 01 082 08226 08226046 3378 181 Europe/Berlin 2011-04-25
-2874048 Malsch Malsch 48.88333 8.33333 P PPLA4 DE 01 082 08215 08215046 14243 127 Europe/Berlin 2011-04-25
-2874070 Malliß Malliss Malliss,Mallisz,Malliß 53.21667 11.31667 P PPLA4 DE 12 00 13054 13054072 1427 50 Europe/Berlin 2011-04-25
-2874076 Mallin Mallin 53.53333 13.13333 P PPLA4 DE 12 00 13056 13056042 443 46 Europe/Berlin 2011-04-25
-2874082 Mallentin Mallentin 53.88333 11.06667 P PPLA4 DE 12 00 13058 13058067 757 28 Europe/Berlin 2011-04-25
-2874104 Malgersdorf Malgersdorf 48.53333 12.75 P PPLA4 DE 02 092 09277 09277131 1198 397 Europe/Berlin 2011-04-25
-2874111 Malente Malente Eutin mit Malente,Malente 54.18333 10.56667 P PPLA4 DE 10 00 01055 01055028 10817 35 Europe/Berlin 2011-07-31
-2874122 Malchow Malchow 53.47477 12.4221 P PPL DE 12 7384 77 Europe/Berlin 2009-01-27
-2874127 Malching Malching 48.31226 13.18746 P PPLA4 DE 02 092 09275 09275132 1285 343 Europe/Berlin 2011-07-31
-2874131 Malchin Malchin Malchin 53.73333 12.78333 P PPL DE 12 8202 6 Europe/Berlin 2012-01-18
-2874137 Malborn Malborn 49.71667 6.98333 P PPLA4 DE 08 00 07231 07231079 1408 477 Europe/Berlin 2011-04-25
-2874139 Malbergweich Malbergweich 50.05 6.55 P PPLA4 DE 08 00 07232 07232076 399 373 Europe/Berlin 2011-04-25
-2874142 Malberg Malberg 50.05 6.58333 P PPLA4 DE 08 00 07232 07232075 625 414 Europe/Berlin 2011-04-25
-2874155 Maitzborn Maitzborn 49.93333 7.43333 P PPLA4 DE 08 00 07140 07140090 147 386 Europe/Berlin 2011-04-25
-2874157 Maitenbeth Maitenbeth 48.15 12.1 P PPLA4 DE 02 091 09183 09183126 1868 608 Europe/Berlin 2011-04-25
-2874193 Maisborn Maisborn 50.08333 7.58333 P PPLA4 DE 08 00 07140 07140089 127 512 Europe/Berlin 2011-04-25
-2874200 Maisach Maisach 48.21667 11.26667 P PPLA4 DE 02 091 09179 09179134 12507 513 Europe/Berlin 2011-04-25
-2874212 Mainzweiler Mainzweiler 49.41667 7.11667 P PPL DE 09 1105 313 Europe/Berlin 2007-04-09
-2874225 Mainz Mainz Magonza,Maguncia,Magúncia,Mainca,Maints,Mainz,Majenco,Majnc,Mayence,Mogontiacum,Moguncja,Moguntiacum,Mohuc,Mohuč,maincheu,maintsi,maintsu,maynz,mei yin ci,myynz,Μάιντς,Майнц,Мајнц,מיינץ,ماينز,მაინცი,マインツ,美因茨,마인츠 50 8.27111 P PPLA DE 08 184997 95 Europe/Berlin 2012-01-18
-2874230 Maintal Maintal Maintal 50.15 8.83333 P PPL DE 05 38313 107 Europe/Berlin 2012-01-18
-2874231 Mainstockheim Mainstockheim 49.78333 10.15 P PPLA4 DE 02 096 09675 09675146 1834 207 Europe/Berlin 2011-04-25
-2874239 Mainleus Mainleus Mainleus 50.1 11.38333 P PPL DE 02 6836 300 Europe/Berlin 2012-01-18
-2874246 Mainhardt Mainhardt Mainhardt 49.07611 9.55639 P PPLA4 DE 01 081 08127 08127052 5680 492 Europe/Berlin 2011-04-25
-2874252 Mainburg Mainburg Mainburg 48.65 11.78333 P PPL DE 02 13959 430 Europe/Berlin 2012-01-18
-2874254 Mainbernheim Mainbernheim 49.70794 10.219 P PPL DE 02 2294 221 Europe/Berlin 2010-06-07
-2874263 Mainaschaff Mainaschaff 49.98167 9.09 P PPLA4 DE 02 096 09671 09671140 8382 119 Europe/Berlin 2011-04-25
-2874282 Maikammer Maikammer 49.30528 8.13167 P PPLA4 DE 08 00 07337 07337052 4066 177 Europe/Berlin 2011-07-31
-2874284 Maihingen Maihingen 48.93333 10.5 P PPLA4 DE 02 097 09779 09779176 1244 433 Europe/Berlin 2011-04-25
-2874319 Maierhöfen Maierhofen Maierhofen,Maierhöfen,Mayerhofen,Mayerhöfen 47.65 10.05 P PPLA4 DE 02 097 09776 09776118 1582 750 Europe/Berlin 2011-04-25
-2874423 Mähring Mahring Mahring,Mähring 49.91667 12.53333 P PPL DE 02 1949 695 Europe/Berlin 2012-01-18
-2874486 Mahlberg Mahlberg Mahlberg 48.28639 7.81411 P PPL DE 01 4421 191 Europe/Berlin 2011-09-08
-2874509 Magstadt Magstadt 48.73333 8.96667 P PPLA4 DE 01 081 08115 08115029 9058 459 Europe/Berlin 2011-04-25
-2874545 Magdeburg Magdeburg Maagdenburg,Magdebourg,Magdebourgo,Magdeburg,Magdeburgas,Magdeburgo,Meideborch,ma ge de bao,magdbwrg,mageudebuleukeu,makudeburuku,Μαγδεβούργο,Магдебург,ماگدبورگ,マクデブルク,马格德堡,마그데부르크 52.16667 11.66667 P PPLA DE 14 229826 44 Europe/Berlin 2012-01-18
-2874556 Magdala Magdala 50.90698 11.44801 P PPL DE 15 2025 275 Europe/Berlin 2009-10-09
-2874611 Mackenrodt Mackenrodt 49.71667 7.25 P PPLA4 DE 08 00 07134 07134052 472 372 Europe/Berlin 2011-04-25
-2874615 Mackenrode Mackenrode 51.3 10.06667 P PPLA4 DE 15 00 16061 16061068 0 357 Europe/Berlin 2011-04-25
-2874621 Mackenbach Mackenbach 49.46667 7.58333 P PPLA4 DE 08 00 07335 07335024 2119 276 Europe/Berlin 2011-04-25
-2874622 Macken Macken 50.18333 7.4 P PPLA4 DE 08 00 07137 07137215 346 248 Europe/Berlin 2011-04-25
-2874642 Machern Machern 51.36667 12.63333 P PPLA4 DE 13 147 14729 14729250 6747 154 Europe/Berlin 2011-07-31
-2874663 Maasholm Maasholm Maasholm 54.68333 9.98333 P PPLA4 DE 10 00 01059 01059142 697 -9999 Europe/Berlin 2011-04-25
-2874665 Maasen Maasen 52.6922 8.88451 P PPLA4 DE 06 00 03251 03251024 544 48 Europe/Berlin 2011-04-25
-2874674 Maasbüll Maasbull 54.78333 9.51667 P PPLA4 DE 10 00 01059 01059141 744 53 Europe/Berlin 2011-04-25
-2874690 Lykershausen Lykershausen 50.2 7.66667 P PPLA4 DE 08 00 07141 07141083 218 348 Europe/Berlin 2011-04-25
-2874695 Lychen Lychen Lychen 53.2 13.3 P PPL DE 11 3917 52 Europe/Berlin 2012-01-18
-2874702 Luxem Luxem 50.33333 7.1 P PPLA4 DE 08 00 07137 07137066 298 507 Europe/Berlin 2011-04-25
-2874710 Lützow Lutzow 53.65 11.18333 P PPLA4 DE 12 00 13058 13058066 1626 60 Europe/Berlin 2011-04-25
-2874716 Lützkampen Lutzkampen 50.15 6.18333 P PPLA4 DE 08 00 07232 07232263 392 530 Europe/Berlin 2011-04-25
-2874719 Lutzingen Lutzingen 48.65 10.55 P PPLA4 DE 02 097 09773 09773146 986 437 Europe/Berlin 2011-04-25
-2874721 Lutzhorn Lutzhorn 53.83333 9.76667 P PPLA4 DE 10 00 01056 01056035 798 14 Europe/Berlin 2011-04-25
-2874728 Lutzerath Lutzerath 50.13333 7 P PPLA4 DE 08 00 07135 07135057 1463 370 Europe/Berlin 2011-04-25
-2874747 Lützen Lutzen 51.25671 12.14164 P PPL DE 14 3664 126 Europe/Berlin 2009-08-21
-2874768 Lützelbach Lutzelbach 49.7425 8.7675 P PPL DE 05 7321 401 Europe/Berlin 2006-01-17
-2874778 Lütz Lutz 50.16667 7.35 P PPLA4 DE 08 00 07135 07135056 386 154 Europe/Berlin 2011-04-25
-2874828 Lutterbek Lutterbek Lutterbek 54.4 10.28333 P PPLA4 DE 10 00 01057 01057049 400 6 Europe/Berlin 2011-04-25
-2874832 Lutter am Barenberge Lutter am Barenberge Lutter,Lutter am Barenberge,Lutter am Barje,Lutter an Barenbarge,Luttere [a. 1270],Lutterun [~ a. 1000] 51.98943 10.2693 P PPLA4 DE 06 00 03153 03153009 2422 160 Europe/Berlin 2011-03-20
-2874842 Lutter Lutter 51.33333 10.11667 P PPLA4 DE 15 00 16061 16061067 766 334 Europe/Berlin 2011-04-25
-2874877 Lütow Lutow Lutov,Lutow,Lütov,Lütow 54.01667 13.88333 P PPLA4 DE 12 00 13059 13059059 358 14 Europe/Berlin 2011-04-25
-2874900 Lütjenwestedt Lutjenwestedt Lutjenwestedt,Lütjenwestedt 54.13333 9.48333 P PPLA4 DE 10 00 01058 01058100 632 17 Europe/Berlin 2011-04-25
-2874902 Lütjensee Lutjensee Lutiensee,Lutjensee,Lütiensee,Lütjensee 53.65 10.36667 P PPLA4 DE 10 00 01062 01062045 3046 53 Europe/Berlin 2011-04-25
-2874911 Lütjenholm Lutjenholm Lutjenholm,Lütjenholm 54.68333 9.01667 P PPLA4 DE 10 00 01054 01054080 331 2 Europe/Berlin 2011-04-25
-2874919 Lütjenburg Lutjenburg 54.29188 10.58945 P PPL DE 10 00 5814 38 Europe/Berlin 2010-11-20
-2874936 Lutheran Lutheran 53.45831 12.00119 P PPLA4 DE 12 00 13060 13060050 337 60 Europe/Berlin 2011-04-25
-2874955 Lütetsburg Lutetsburg Lutetsburg,Lütetsburg 53.6 7.25 P PPLA4 DE 06 00 03452 03452016 803 2 Europe/Berlin 2011-04-25
-2874958 Lütau Lutau Lutau,Lütau 53.43333 10.55 P PPLA4 DE 10 00 01053 01053087 652 31 Europe/Berlin 2011-04-25
-2874978 Lustadt Lustadt 49.25083 8.26944 P PPLA4 DE 08 00 07334 07334018 3291 124 Europe/Berlin 2011-04-25
-2874984 Lüssow Lussow 54.28333 13.03333 P PPLA4 DE 12 00 13057 13057056 943 20 Europe/Berlin 2011-04-25
-2874987 Lüssow Lussow 53.83855 12.14264 P PPLA4 DE 12 00 13053 13053057 997 13 Europe/Berlin 2011-04-25
-2875027 Lürschau Lurschau Lurschau,Lürschau 54.55 9.5 P PPLA4 DE 10 00 01059 01059057 1101 22 Europe/Berlin 2011-04-25
-2875060 Lupburg Lupburg Luppurg 49.1551 11.7564 P PPL DE 02 2336 495 Europe/Berlin 2009-06-24
-2875063 Lunzig Lunzig 50.71325 12.09294 P PPLA4 DE 15 00 16076 16076045 189 358 Europe/Berlin 2011-04-25
-2875067 Lunzenau Lunzenau Lunzenau 50.95 12.76667 P PPL DE 13 5138 233 Europe/Berlin 2012-01-18
-2875102 Lunestedt Lunestedt Lunestedt 53.43333 8.75 P PPLA4 DE 06 00 03352 03352033 2557 6 Europe/Berlin 2011-04-25
-2875107 Lünen Lunen Hliunon,Luenen,Lunen,Lünen,ryunen,リューネン 51.61667 7.51667 P PPL DE 07 91009 53 Europe/Berlin 2012-01-18
-2875115 Lüneburg Luneburg Ljuneburg,Lueneburg,Luneberg,Lunebourg,Luneburg,Lüneburg,lu nei bao,lwnybwrgh,ryuneburuku,Люнебург,لونيبورغ,リューネブルク,吕内堡 53.25 10.4 P PPL DE 06 71260 24 Europe/Berlin 2012-01-18
-2875117 Lünebach Lunebach 50.13333 6.35 P PPLA4 DE 08 00 07232 07232262 573 368 Europe/Berlin 2011-04-25
-2875130 Lunden Lunden 54.33333 9.01667 P PPLA4 DE 10 00 01051 01051071 1652 254 Europe/Berlin 2011-04-25
-2875138 Lumpzig Lumpzig Lumpzig 50.95 12.26667 P PPLA4 DE 15 00 16077 16077029 697 267 Europe/Berlin 2011-04-25
-2875154 Lülsfeld Lulsfeld 49.86667 10.33333 P PPLA4 DE 02 096 09678 09678153 844 245 Europe/Berlin 2011-04-25
-2875183 Luisenthal Luisenthal 50.78333 10.73333 P PPLA4 DE 15 00 16067 16067044 1470 698 Europe/Berlin 2011-04-25
-2875221 Luhnstedt Luhnstedt Luhnstedt 54.16667 9.7 P PPLA4 DE 10 00 01058 01058101 430 23 Europe/Berlin 2011-04-25
-2875233 Lühmannsdorf Luhmannsdorf 54 13.63333 P PPLA4 DE 12 00 13059 13059057 721 39 Europe/Berlin 2011-04-25
-2875246 Luhe-Wildenau Luhe-Wildenau Lue,Luhe,Luhe-Wildenau 49.58333 12.15 P PPL DE 02 3505 399 Europe/Berlin 2012-01-18
-2875250 Luhden Luhden 52.22538 9.09256 P PPLA4 DE 06 00 03257 03257022 1138 110 Europe/Berlin 2011-07-31
-2875251 Lühburg Luhburg 53.98633 12.59608 P PPLA4 DE 12 00 13053 13053056 279 25 Europe/Berlin 2011-04-25
-2875282 Lügde Lugde 51.95828 9.24706 P PPL DE 07 057 11290 106 Europe/Berlin 2010-11-15
-2875286 Lugau Lugau Henneckestadt Lugau,Lugau 50.73333 12.75 P PPL DE 13 7671 410 Europe/Berlin 2012-01-18
-2875292 Lug Lug 49.18333 7.9 P PPLA4 DE 08 00 07340 07340030 637 254 Europe/Berlin 2011-04-25
-2875314 Lüerdissen Luerdissen 51.95273 9.62454 P PPLA4 DE 06 00 03255 03255028 525 142 Europe/Berlin 2011-04-25
-2875321 Ludwigswinkel Ludwigswinkel 49.08333 7.66667 P PPLA4 DE 08 00 07340 07340029 907 242 Europe/Berlin 2011-04-25
-2875330 Ludwigsstadt Ludwigsstadt Ludwigsstadt,Ludwigstadt 50.48333 11.4 P PPL DE 02 3790 477 Europe/Berlin 2012-01-18
-2875343 Ludwigslust Ludwigslust Ludwigslust 53.31667 11.5 P PPL DE 12 12112 40 Europe/Berlin 2012-01-18
-2875357 Ludwigshöhe Ludwigshohe 49.81667 8.34361 P PPLA4 DE 08 00 07339 07339035 0 93 Europe/Berlin 2011-04-25
-2875376 Ludwigshafen am Rhein Ludwigshafen am Rhein Ljudvigskhafen,Ludvigskhafen,Ludwigshafen,Ludwigshafen am Rhein,Ludwigshafen sul Reno,lu de wei xi gang,rutovu~ihhisuhafen,rutovu~ihisuhafen,Лудвигсхафен,Людвигсхафен,ルートヴィッヒスハーフェン,ルートヴィヒスハーフェン,路德维希港 49.48111 8.43528 P PPL DE 08 163196 93 Europe/Berlin 2012-01-18
-2875379 Ludwigsfelde Ludwigsfelde Ludwigsfelde 52.3 13.26667 P PPL DE 11 24164 43 Europe/Berlin 2012-01-18
-2875392 Ludwigsburg Ludwigsburg Ludvigsburg,Ludwigsbourg,Ludwigsburg,Лудвигсбург 48.89731 9.19161 P PPL DE 01 87603 298 Europe/Berlin 2008-12-21
-2875405 Ludorf Ludorf 53.38333 12.66667 P PPLA4 DE 12 00 13056 13056039 498 60 Europe/Berlin 2011-04-25
-2875417 Lüdinghausen Ludinghausen Ljudingkhauzen,Ludinghausen,Lüdinghausen,Людингхаузен 51.76667 7.46667 P PPL DE 07 24094 53 Europe/Berlin 2012-01-18
-2875425 Lüdershagen Ludershagen 54.30413 12.60857 P PPLA4 DE 12 00 13057 13057055 0 17 Europe/Berlin 2011-04-25
-2875427 Lüdersfeld Ludersfeld 52.36667 9.25 P PPLA4 DE 06 00 03257 03257021 1078 52 Europe/Berlin 2011-07-31
-2875430 Lüdersdorf Ludersdorf 53.86667 11.75 P PPL DE 12 4764 67 Europe/Berlin 2006-01-17
-2875431 Lüdersdorf Ludersdorf 53.83165 10.81312 P PPLA4 DE 12 00 13058 13058065 0 13 Europe/Berlin 2011-04-25
-2875438 Lüdersburg Ludersburg 53.32142 10.5742 P PPLA4 DE 06 00 03355 03355021 676 6 Europe/Berlin 2011-09-07
-2875445 Lüderitz Luderitz 52.50912 11.74301 P PPL DE 14 00 1194 44 Europe/Berlin 2010-11-22
-2875456 Lüder Luder 52.80878 10.66609 P PPLA4 DE 06 00 03360 03360013 1293 68 Europe/Berlin 2011-04-25
-2875457 Lüdenscheid Ludenscheid Leudenscheid,Ludenscheid,Luedenscheid,Lüdenscheid 51.21667 7.61667 P PPL DE 07 79386 387 Europe/Berlin 2012-01-18
-2875473 Luckow Luckow 53.7 14.16667 P PPLA4 DE 12 00 13062 13062034 681 2 Europe/Berlin 2011-04-25
-2875484 Luckenwalde Luckenwalde Luckenwalde,Lukkenval'de,Stadt Luckenwalde,Луккенвальде 52.08333 13.16667 P PPL DE 11 21616 48 Europe/Berlin 2012-01-18
-2875494 Lückenburg Luckenburg 49.73333 6.96667 P PPLA4 DE 08 00 07231 07231078 97 433 Europe/Berlin 2011-04-25
-2875497 Luckenbach Luckenbach 50.7 7.83333 P PPLA4 DE 08 00 07143 07143260 636 296 Europe/Berlin 2011-04-25
-2875509 Luckau Luckau Luckau 51.85 13.71667 P PPL DE 11 10471 63 Europe/Berlin 2012-01-18
-2875512 Lucka Lucka Lucka 51.1 12.35 P PPL DE 15 4526 162 Europe/Berlin 2012-01-18
-2875541 Lüchow Luchow 53.68333 10.53333 P PPLA4 DE 10 00 01053 01053086 237 38 Europe/Berlin 2011-04-25
-2875542 Lüchow Luchow Luchow,Lüchow 52.96667 11.15 P PPL DE 06 9678 19 Europe/Berlin 2012-01-18
-2875558 Lübz Lubz 53.46261 12.02917 P PPL DE 12 6355 51 Europe/Berlin 2009-01-27
-2875559 Lübtheen Lubtheen Lubtheen,Lübtheen 53.3 11.08333 P PPL DE 12 3858 16 Europe/Berlin 2012-01-18
-2875561 Lübstorf Lubstorf 53.72561 11.41471 P PPLA4 DE 12 00 13058 13058064 1570 50 Europe/Berlin 2011-04-25
-2875571 Lübs Lubs 53.73333 13.88333 P PPLA4 DE 12 00 13062 13062066 432 14 Europe/Berlin 2011-04-25
-2875577 Lübow Lubow 53.85 11.51667 P PPLA4 DE 12 00 13058 13058063 1418 17 Europe/Berlin 2011-04-25
-2875585 Lubmin Lubmin 54.13509 13.61687 P PPLA4 DE 12 00 13059 13059055 1987 5 Europe/Berlin 2012-03-07
-2875586 Lüblow Lublow 53.41667 11.46667 P PPLA4 DE 12 00 13054 13054066 684 35 Europe/Berlin 2011-04-25
-2875594 Lübesse Lubesse 53.48876 11.46132 P PPLA4 DE 12 00 13054 13054065 789 45 Europe/Berlin 2011-04-25
-2875601 Lübeck Luebeck Limpek,Ljubek,Lubeca,Lubecca,Lubeck Hansestadt,Lubeka,Lubeko,Luebeck,Lyypekki,Lübeck,Lübeck Hansestadt,lu bei ke,lwibekeu,lybq,ryubekku,Λίμπεκ,Любек,ליבק,ლიუბეკი,リューベック,吕贝克,뤼베크 53.86893 10.68729 P PPLA3 DE 10 00 01003 212207 16 Europe/Berlin 2011-04-27
-2875603 Lübbow Lubbow 52.91159 11.18099 P PPLA4 DE 06 00 03354 03354017 846 23 Europe/Berlin 2011-12-09
-2875606 Lübberstorf Lubberstorf 53.86667 11.73333 P PPLA4 DE 12 00 13058 13058062 287 64 Europe/Berlin 2011-04-25
-2875608 Lübberstedt Lubberstedt Lubberstadt,Lubberstedt,Lupperstadt,Lübberstedt 53.33333 8.8 P PPLA4 DE 06 00 03356 03356006 764 21 Europe/Berlin 2011-04-25
-2875623 Lübbenau Lubbenau Lubbenau,Lubnjow,Lübbenau 51.86667 13.96667 P PPL DE 11 17461 52 Europe/Berlin 2012-01-18
-2875625 Lübben Lubben Lubben,Lubin,Luebben,Lübben 51.95 13.9 P PPL DE 11 14713 48 Europe/Berlin 2012-01-18
-2875626 Lübbecke Lubbecke Lubbecke,Lübbecke 52.3 8.61667 P PPL DE 07 26310 116 Europe/Berlin 2012-01-18
-2875645 Loxstedt Loxstedt Loxstedt 53.46667 8.65 P PPLA4 DE 06 00 03352 03352032 16382 7 Europe/Berlin 2011-04-25
-2875656 Löwenstein Lowenstein Lowenstein,Löwenstein 49.09944 9.38139 P PPL DE 01 3070 291 Europe/Berlin 2012-01-18
-2875659 Löwenstedt Lowenstedt Lowenstedt,Löwenstedt 54.61667 9.16667 P PPLA4 DE 10 00 01054 01054079 657 11 Europe/Berlin 2011-04-25
-2875734 Lötzbeuren Lotzbeuren 49.93333 7.21667 P PPLA4 DE 08 00 07231 07231206 484 432 Europe/Berlin 2011-04-25
-2875738 Lottstetten Lottstetten 47.63333 8.56667 P PPLA4 DE 01 083 08337 08337070 2179 495 Europe/Berlin 2011-04-25
-2875742 Lottorf Lottorf Lottorf 54.45 9.56667 P PPLA4 DE 10 00 01059 01059056 201 19 Europe/Berlin 2011-04-25
-2875760 Lotte Lotte 52.28333 7.91667 P PPLA4 DE 07 055 05566 05566048 13580 60 Europe/Berlin 2011-04-25
-2875785 Lostau Lostau 52.20871 11.73795 P PPL DE 14 2014 47 Europe/Berlin 2008-06-06
-2875799 Lößnitz Lossnitz Lossnitz,Lößnitz 50.61667 12.71667 P PPL DE 13 10433 445 Europe/Berlin 2012-01-18
-2875815 Loßburg Lossburg Lossburg,Loßburg 48.4 8.45 P PPLA4 DE 01 082 08237 08237045 6533 655 Europe/Berlin 2011-04-25
-2875824 Lösnich Losnich 49.96667 7.03333 P PPLA4 DE 08 00 07231 07231076 429 249 Europe/Berlin 2011-04-25
-2875831 Losheim Losheim 49.51667 6.75 P PPL DE 09 16660 325 Europe/Berlin 2006-01-17
-2875868 Lörzweiler Lorzweiler 49.89833 8.29472 P PPLA4 DE 08 00 07339 07339034 2085 144 Europe/Berlin 2011-04-25
-2875870 Lorup Lorup 52.92495 7.64339 P PPLA4 DE 06 00 03454 03454033 2986 40 Europe/Berlin 2011-07-31
-2875874 Lorscheid Lorscheid 49.73333 6.85 P PPLA4 DE 08 00 07235 07235080 623 394 Europe/Berlin 2011-04-25
-2875877 Lorsch Lorsch Lorsch,rorushu,ロルシュ 49.65472 8.56861 P PPL DE 05 12744 102 Europe/Berlin 2012-01-18
-2875881 Lörrach Lorrach Loerrach,Lorrach,Lörrach,loerrach,lörrach 47.61497 7.66457 P PPL DE 01 083 47002 308 Europe/Berlin 2010-11-15
-2875909 Lorch Lorch 48.79833 9.6914 P PPL DE 01 11418 288 Europe/Berlin 2008-12-20
-2875918 Löptin Loptin Loptin,Löptin 54.18333 10.21667 P PPLA4 DE 10 00 01057 01057047 292 32 Europe/Berlin 2011-04-25
-2875951 Loose Loose 54.51667 9.88333 P PPLA4 DE 10 00 01058 01058099 841 22 Europe/Berlin 2011-04-25
-2875965 Loop Loop Loop 54.15 9.95 P PPLA4 DE 10 00 01058 01058098 197 26 Europe/Berlin 2011-04-25
-2875968 Looft Looft Looft 54.02873 9.5236 P PPLA4 DE 10 00 01061 01061066 392 10 Europe/Berlin 2011-04-25
-2875977 Lonsheim Lonsheim 49.77861 8.07667 P PPLA4 DE 08 00 07331 07331043 606 173 Europe/Berlin 2011-04-25
-2875978 Lonsee Lonsee 48.5434 9.91999 P PPLA4 DE 01 084 08425 08425075 4759 575 Europe/Berlin 2011-04-25
-2875979 Lonnig Lonnig 50.31667 7.41667 P PPLA4 DE 08 00 07137 07137065 1170 263 Europe/Berlin 2011-04-25
-2875983 Lonnerstadt Lonnerstadt Lonnerstadt 49.7 10.76667 P PPL DE 02 1919 286 Europe/Berlin 2012-01-18
-2875987 Löningen Loningen Loningen,Löningen 52.73333 7.76667 P PPL DE 06 13096 22 Europe/Berlin 2012-01-18
-2875988 Longuich Longuich 49.8 6.78333 P PPLA4 DE 08 00 07235 07235078 1233 128 Europe/Berlin 2011-04-25
-2875989 Longkamp Longkamp 49.88333 7.11667 P PPLA4 DE 08 00 07231 07231077 1182 455 Europe/Berlin 2011-04-25
-2875992 Longen Longen 49.8 6.78333 P PPLA4 DE 08 00 07235 07235077 84 128 Europe/Berlin 2011-04-25
-2876009 Lommatzsch Lommatzsch Lommatzsch 51.2 13.3 P PPL DE 13 5999 150 Europe/Berlin 2012-01-18
-2876018 Lollschied Lollschied 50.26667 7.86667 P PPLA4 DE 08 00 07141 07141082 205 315 Europe/Berlin 2011-04-25
-2876025 Löllbach Lollbach 49.68333 7.58333 P PPLA4 DE 08 00 07133 07133060 243 276 Europe/Berlin 2011-04-25
-2876027 Lollar Lollar 50.64652 8.70495 P PPL DE 05 10143 166 Europe/Berlin 2010-11-02
-2876041 Loitzendorf Loitzendorf 49.08333 12.65 P PPLA4 DE 02 092 09278 09278147 648 419 Europe/Berlin 2011-04-25
-2876044 Loitz Loitz 53.45 13.38333 P PPL DE 12 4236 113 Europe/Berlin 2006-01-17
-2876064 Loit Loit Loit 54.61667 9.7 P PPLA4 DE 10 00 01059 01059055 282 13 Europe/Berlin 2011-04-25
-2876065 Loissin Loissin 54.11667 13.53333 P PPLA4 DE 12 00 13059 13059053 898 6 Europe/Berlin 2011-04-25
-2876092 Loiching Loiching 48.61667 12.43333 P PPLA4 DE 02 092 09279 09279124 3506 439 Europe/Berlin 2011-04-25
-2876117 Lohsa Lohsa Lohsa 51.38333 14.4 P PPLA4 DE 13 146 14625 14625330 4641 127 Europe/Berlin 2011-04-25
-2876127 Lohrheim Lohrheim 50.31667 8.05 P PPLA4 DE 08 00 07141 07141081 581 187 Europe/Berlin 2011-04-25
-2876144 Lohra Lohra Lohra 50.73333 8.63333 P PPLA4 DE 05 065 06534 06534013 5775 206 Europe/Berlin 2011-04-25
-2876147 Lohr Lohr Lohr 49.99361 9.57833 P PPL DE 02 16127 156 Europe/Berlin 2012-02-28
-2876158 Lohnweiler Lohnweiler 49.63333 7.6 P PPLA4 DE 08 00 07336 07336060 500 169 Europe/Berlin 2011-04-25
-2876161 Lohnsfeld Lohnsfeld 49.55 7.85 P PPLA4 DE 08 00 07333 07333042 999 268 Europe/Berlin 2011-04-25
-2876185 Lohne Lohne Lohne 52.66667 8.23333 P PPL DE 06 25111 41 Europe/Berlin 2012-02-02
-2876194 Löhnberg Lohnberg 50.51299 8.27202 P PPLA4 DE 05 065 06533 06533010 4502 147 Europe/Berlin 2011-04-25
-2876211 Lohmen Lohmen 53.68298 12.0944 P PPLA4 DE 12 00 13053 13053054 825 54 Europe/Berlin 2011-04-25
-2876212 Lohmen Lohmen 50.98831 14.00268 P PPLA4 DE 13 146 14628 14628240 3298 206 Europe/Berlin 2011-04-25
-2876215 Lohme Lohme Lohme 54.58333 13.61667 P PPLA4 DE 12 00 13061 13061022 629 53 Europe/Berlin 2011-04-25
-2876218 Lohmar Lohmar Lohmar 50.83333 7.21667 P PPL DE 07 31339 116 Europe/Berlin 2012-01-18
-2876228 Löhma Lohma Lohma,Löhma 50.61667 11.85 P PPLA4 DE 15 00 16075 16075063 0 431 Europe/Berlin 2011-04-25
-2876249 Lohkirchen Lohkirchen 48.31667 12.45 P PPLA4 DE 02 091 09183 09183125 660 473 Europe/Berlin 2011-04-25
-2876282 Lohfelden Lohfelden Crumbach,Krumbach,Lohfelden 51.26667 9.53333 P PPLA4 DE 05 066 06633 06633017 13825 204 Europe/Berlin 2011-07-31
-2876306 Lohe-Föhrden Lohe-Fohrden Lohe-Fohrden,Lohe-Föhrden 54.33333 9.53333 P PPLA4 DE 10 00 01058 01058097 622 3 Europe/Berlin 2011-04-25
-2876357 Lohberg Lohberg 49.17604 13.10549 P PPLA4 DE 02 093 09372 09372178 2151 662 Europe/Berlin 2011-04-25
-2876388 Lohbarbek Lohbarbek Loharbek,Lohbarbek 53.94548 9.63548 P PPLA4 DE 10 00 01061 01061065 765 8 Europe/Berlin 2011-04-25
-2876461 Löffingen Loffingen Loffingen,Löffingen 47.88333 8.35 P PPL DE 01 7939 833 Europe/Berlin 2012-01-18
-2876462 Loffenau Loffenau 48.77214 8.38463 P PPLA4 DE 01 082 08216 08216029 2695 329 Europe/Berlin 2011-11-26
-2876484 Löf Lof 50.23333 7.43333 P PPLA4 DE 08 00 07137 07137214 1519 168 Europe/Berlin 2011-04-25
-2876489 Lödla Lodla Lodla,Lödla 51 12.38333 P PPLA4 DE 15 00 16077 16077027 762 175 Europe/Berlin 2011-04-25
-2876510 Loddin Loddin 54.03333 14.01667 P PPLA4 DE 12 00 13059 13059052 1037 17 Europe/Berlin 2011-04-25
-2876523 Lockwisch Lockwisch Lockwisch,Lockwisch-Hof 53.83333 10.86667 P PPLA4 DE 12 00 13058 13058060 359 12 Europe/Berlin 2011-04-25
-2876529 Lockstedt Lockstedt 54 9.68333 P PPLA4 DE 10 00 01061 01061064 191 23 Europe/Berlin 2011-04-25
-2876538 Löcknitz Locknitz Locknitz,Locknuz,Löcknuz 53.45392 14.21116 P PPLA4 DE DE 12 00 13062 13062033 0 12 Europe/Berlin 2011-07-31
-2876539 Löcknitz Locknitz 53.28333 11.78333 P PPL DE 12 2919 37 Europe/Berlin 2006-01-17
-2876554 Lochum Lochum 50.61667 7.86667 P PPLA4 DE 08 00 07143 07143259 342 440 Europe/Berlin 2011-04-25
-2876604 Löchgau Lochgau Lochgau,Löchgau 49.00361 9.10639 P PPLA4 DE 01 081 08118 08118047 5352 265 Europe/Berlin 2011-04-25
-2876645 Lochau Lochau 51.39738 12.05303 P PPL DE 14 1124 90 Europe/Berlin 2011-03-30
-2876682 Loburg Loburg Loburg 52.11667 12.06667 P PPL DE 14 2467 72 Europe/Berlin 2012-01-18
-2876685 Lobstädt Lobstadt Lobstadt,Lobstädt 51.13333 12.45 P PPL DE 13 2675 143 Europe/Berlin 2012-01-18
-2876697 Löbnitz Lobnitz 54.29537 12.71929 P PPLA4 DE 12 00 13057 13057054 725 6 Europe/Berlin 2011-04-25
-2876698 Löbnitz Lobnitz 51.59238 12.46347 P PPLA4 DE 13 147 14730 14730180 2216 86 Europe/Berlin 2011-07-06
-2876708 Löbichau Lobichau Lobichau,Löbichau 50.9 12.26667 P PPLA4 DE 15 00 16077 16077026 1263 251 Europe/Berlin 2011-07-31
-2876712 Löberschütz Loberschutz Loberschutz,Löberschütz 50.96667 11.7 P PPLA4 DE 15 00 16074 16074054 162 168 Europe/Berlin 2011-04-25
-2876714 Löberitz Loberitz 51.65 12.15 P PPL DE 14 1096 85 Europe/Berlin 2006-01-17
-2876739 Labejum Labejum Labejum,Lobejun,Löbejün 51.63333 11.9 P PPL DE 14 2335 127 Europe/Berlin 2012-01-18
-2876755 Löbau Lobau Lobau,Loebau,Lubij,Löbau 51.1 14.66667 P PPL DE 13 18374 269 Europe/Berlin 2012-01-18
-2876787 Litzendorf Litzendorf 49.91444 11.01028 P PPLA4 DE 02 094 09471 09471155 6101 318 Europe/Berlin 2011-04-25
-2876832 Listerfehrda Listerfehrda 51.81667 12.85 P PPLA4 DE 14 00 15091 15091205 372 69 Europe/Berlin 2011-04-25
-2876837 List List 55.01917 8.43132 P PPLA4 DE 10 00 01054 01054078 2642 1 Europe/Berlin 2011-04-25
-2876842 Lissendorf Lissendorf 50.31667 6.6 P PPLA4 DE 08 00 07233 07233041 1130 472 Europe/Berlin 2011-04-25
-2876865 Lippstadt Lippstadt Lippshtadte,Lippstadt,Липпштадте 51.66667 8.35 P PPL DE 07 67219 78 Europe/Berlin 2012-01-18
-2876870 Lipprechterode Lipprechterode 51.45 10.55 P PPLA4 DE 15 00 16062 16062033 680 281 Europe/Berlin 2011-04-25
-2876873 Lipporn Lipporn 50.13333 7.86667 P PPLA4 DE 08 00 07141 07141080 300 359 Europe/Berlin 2011-04-25
-2876952 Linz am Rhein Linz am Rhein Linz,Linz am Rhein 50.56667 7.28333 P PPL DE 08 6008 83 Europe/Berlin 2012-01-18
-2876963 Lintig Lintig 53.60341 8.87876 P PPLA4 DE 06 00 03352 03352031 1385 10 Europe/Berlin 2011-07-05
-2876965 Linthe Linthe 52.15 12.78333 P PPLA4 DE 11 00 12069 12069345 945 61 Europe/Berlin 2011-07-31
-2877011 Linsburg Linsburg 52.58333 9.3 P PPLA4 DE 06 00 03256 03256020 992 42 Europe/Berlin 2011-07-31
-2877021 Linnich Linnich Linnich 50.98333 6.26667 P PPL DE 07 13827 62 Europe/Berlin 2012-01-18
-2877061 Linkenbach Linkenbach 50.58333 7.55 P PPLA4 DE 08 00 07138 07138040 486 324 Europe/Berlin 2011-04-25
-2877078 Lingerhahn Lingerhahn 50.1 7.56667 P PPLA4 DE 08 00 07140 07140087 501 444 Europe/Berlin 2011-04-25
-2877082 Lingenfeld Lingenfeld 49.25389 8.33861 P PPLA4 DE 08 00 07334 07334017 5433 111 Europe/Berlin 2011-04-25
-2877088 Lingen Lingen Lingen,Линген 52.51667 7.31667 P PPL DE 06 51310 26 Europe/Berlin 2012-01-18
-2877104 Lindwedel Lindwedel 52.60784 9.68737 P PPLA4 DE 06 00 03358 03358015 2418 38 Europe/Berlin 2011-04-25
-2877112 Lindstedt Lindstedt 52.6 11.53333 P PPLA4 DE 14 00 15081 15081330 632 34 Europe/Berlin 2011-04-25
-2877126 Lindow Lindow 52.96689 12.98498 P PPL DE 11 3336 41 Europe/Berlin 2009-01-29
-2877142 Lindlar Lindlar 51.01959 7.37758 P PPLA4 DE 07 053 05374 05374020 22723 231 Europe/Berlin 2011-07-31
-2877158 Lindig Lindig Lindig 50.78333 11.6 P PPLA4 DE 15 00 16074 16074052 299 235 Europe/Berlin 2011-04-25
-2877171 Lindhorst Lindhorst 52.36667 9.28333 P PPLA4 DE 06 00 03257 03257020 4658 54 Europe/Berlin 2011-04-25
-2877204 Lindewitt Lindewitt Lindewitt 54.7 9.2 P PPLA4 DE 10 00 01059 01059179 2114 14 Europe/Berlin 2011-07-31
-2877205 Lindewerra Lindewerra Lindewerra 51.31667 9.95 P PPLA4 DE 15 00 16061 16061066 262 147 Europe/Berlin 2011-04-25
-2877251 Lindenschied Lindenschied 49.9 7.4 P PPLA4 DE 08 00 07140 07140086 238 400 Europe/Berlin 2011-04-25
-2877259 Lindenkreuz Lindenkreuz 50.85 11.91667 P PPLA4 DE 15 00 16076 16076044 511 310 Europe/Berlin 2011-04-25
-2877315 Lindenfels Lindenfels Lindenfels 49.685 8.78306 P PPL DE 05 5456 416 Europe/Berlin 2012-01-18
-2877342 Lindenberg Lindenberg 53.76667 13.01667 P PPLA4 DE 12 00 13052 13052048 268 45 Europe/Berlin 2011-04-25
-2877357 Lindenberg Lindenberg 49.38028 8.09861 P PPLA4 DE 08 00 07332 07332034 1178 214 Europe/Berlin 2011-04-25
-2877425 Lindenau Lindenau 51.4 13.73333 P PPLA4 DE 11 00 12066 12066188 758 99 Europe/Berlin 2011-04-25
-2877441 Linden Linden 54.25 9.18333 P PPLA4 DE 10 00 01051 01051068 859 20 Europe/Berlin 2011-04-25
-2877448 Linden Linden 50.6 7.85 P PPLA4 DE 08 00 07143 07143258 159 449 Europe/Berlin 2011-04-25
-2877455 Linden Linden 49.35 7.65 P PPLA4 DE 08 00 07335 07335023 1230 329 Europe/Berlin 2011-04-25
-2877525 Lindberg Lindberg Lindberg 49.0368 13.25423 P PPLA4 DE 02 092 09276 09276130 2355 670 Europe/Berlin 2011-08-22
-2877545 Lindau Lindau 54.38333 9.9 P PPLA4 DE 10 00 01058 01058096 1378 8 Europe/Berlin 2011-04-25
-2877546 Lindau Lindau Lindau 52.03333 12.1 P PPL DE 14 1207 73 Europe/Berlin 2012-01-18
-2877550 Lindau Lindau Lindau,Lindau Bodensee,Lindau saar,rindau,Линдау,リンダウ 47.55 9.68333 P PPL DE 02 24518 392 Europe/Berlin 2012-01-18
-2877616 Lind Lind 50.5 6.93333 P PPLA4 DE 08 00 07131 07131047 0 424 Europe/Berlin 2011-04-25
-2877617 Lind Lind 50.31667 7.03333 P PPLA4 DE 08 00 07137 07137063 47 477 Europe/Berlin 2011-04-25
-2877624 Linau Linau Linau 53.65 10.46667 P PPLA4 DE 10 00 01053 01053085 1182 57 Europe/Berlin 2011-04-25
-2877647 Limburgerhof Limburgerhof 49.42444 8.39194 P PPLA4 DE 08 00 07338 07338017 10753 99 Europe/Berlin 2011-04-25
-2877648 Limburg an der Lahn Limburg an der Lahn Limburg,Limburg an der Lahn,Limburg-na-Lane,Limburgis ad Lanem,Лимбург-на-Лане 50.38333 8.05 P PPL DE 05 33820 138 Europe/Berlin 2012-01-18
-2877673 Limbach-Oberfrohna Limbach-Oberfrohna Limbach,Limbach-Oberfrohna,Limbakh-Oberfrona,Лимбах-Оберфрона 50.86667 12.75 P PPL DE 13 27056 356 Europe/Berlin 2012-01-18
-2877681 Limbach Limbach 50.7 7.8 P PPLA4 DE 08 00 07143 07143257 379 271 Europe/Berlin 2011-04-25
-2877683 Limbach Limbach 50.58333 12.25 P PPLA4 DE 13 145 14523 14523190 1574 407 Europe/Berlin 2011-04-25
-2877690 Limbach Limbach 49.73333 7.55 P PPLA4 DE 08 00 07133 07133059 361 361 Europe/Berlin 2011-07-31
-2877693 Limbach Limbach 49.46194 9.21111 P PPLA4 DE 01 082 08225 08225052 0 391 Europe/Berlin 2011-04-25
-2877709 Lilienthal Lilienthal Lilienthal 53.13333 8.91667 P PPLA4 DE 06 00 03356 03356005 18293 2 Europe/Berlin 2011-07-31
-2877728 Lietzow Lietzow 54.48171 13.50718 P PPLA4 DE 12 00 13061 13061021 310 2 Europe/Berlin 2011-04-25
-2877732 Lietzen Lietzen 52.46667 14.35 P PPLA4 DE 11 00 12064 12064288 779 44 Europe/Berlin 2011-04-25
-2877747 Lieth Lieth 54.15 9.05 P PPLA4 DE 10 00 01051 01051067 0 255 Europe/Berlin 2011-04-25
-2877759 Ließem Liessem 50.03333 6.48333 P PPLA4 DE 08 00 07232 07232074 97 337 Europe/Berlin 2011-04-25
-2877767 Lieskau Lieskau Lieskau 51.5 11.86667 P PPL DE 14 2711 97 Europe/Berlin 2012-02-02
-2877771 Lieser Lieser 49.91667 7.01667 P PPLA4 DE 08 00 07231 07231075 1185 112 Europe/Berlin 2011-04-25
-2877773 Liesenich Liesenich 50.08333 7.28333 P PPLA4 DE 08 00 07135 07135054 361 400 Europe/Berlin 2011-04-25
-2877786 Lirstal Lirstal Lierstall,Lirstal 50.25 7.03333 P PPLA4 DE 08 00 07233 07233224 262 436 Europe/Berlin 2011-04-25
-2877787 Lierschied Lierschied Lierscheid,Lierschied 50.16667 7.75 P PPLA4 DE 08 00 07141 07141079 508 242 Europe/Berlin 2011-04-25
-2877792 Lierfeld Lierfeld 50.13333 6.36667 P PPLA4 DE 08 00 07232 07232261 77 385 Europe/Berlin 2011-04-25
-2877803 Liepgarten Liepgarten 53.71667 14.01667 P PPLA4 DE 12 00 13062 13062032 895 18 Europe/Berlin 2011-04-25
-2877815 Liepen Liepen 53.88333 13.46667 P PPLA4 DE 12 00 13059 13059051 327 14 Europe/Berlin 2011-04-25
-2877826 Liepe Liepe 52.86213 13.96946 P PPLA4 DE 11 00 12060 12060128 801 19 Europe/Berlin 2011-04-25
-2877843 Lienen Lienen 52.15 7.98333 P PPLA4 DE 07 055 05566 05566044 8797 91 Europe/Berlin 2011-04-25
-2877863 Lieg Lieg 50.13333 7.35 P PPLA4 DE 08 00 07135 07135053 431 324 Europe/Berlin 2011-04-25
-2877889 Liebstedt Liebstedt 51.05 11.4 P PPLA4 DE 15 00 16071 16071052 446 265 Europe/Berlin 2011-04-25
-2877891 Liebstadt Liebstadt Liebstadt 50.86667 13.86667 P PPL DE 13 1367 399 Europe/Berlin 2012-01-18
-2877892 Liebshausen Liebshausen 50.03333 7.63333 P PPLA4 DE 08 00 07140 07140085 514 474 Europe/Berlin 2011-04-25
-2877932 Lieberose Lieberose Lieberose 51.98333 14.3 P PPL DE 11 1638 52 Europe/Berlin 2012-01-18
-2877942 Liebenwalde Liebenwalde 52.87125 13.39465 P PPL DE 11 4649 43 Europe/Berlin 2009-01-29
-2877948 Liebenstein Liebenstein 50.76667 10.85 P PPLA4 DE 15 00 16070 16070033 415 380 Europe/Berlin 2011-04-25
-2877955 Liebenscheid Liebenscheid 50.7 8.1 P PPLA4 DE 08 00 07143 07143256 932 555 Europe/Berlin 2011-04-25
-2877969 Liebenburg Liebenburg 52.02176 10.43169 P PPLA4 DE 06 00 03153 03153008 9492 132 Europe/Berlin 2011-07-31
-2877979 Liebenau Liebenau Laeiwenah,Libenau,Läiwenah,leivənɔː [IPA],leĭvənɔː [IPA],ribenau,Либенау,リーベナウ 52.60362 9.09719 P PPL DE 06 4009 30 Europe/Berlin 2011-11-18
-2877980 Liebenau Liebenau Liebenau 51.49699 9.28207 P PPL DE 05 3606 147 Europe/Berlin 2011-07-11
-2878027 Lichtentanne Lichtentanne 50.7 12.43333 P PPLA4 DE 13 145 14524 14524170 7163 326 Europe/Berlin 2011-04-25
-2878037 Lichtenstein Lichtenstein Callnberg,Lichenstein,Lichtenstein,Lichtenstein-Callnberg 50.75 12.65 P PPL DE 13 13612 406 Europe/Berlin 2012-01-18
-2878074 Lichtenfels Lichtenfels 50.14567 11.05928 P PPL DE 02 21336 263 Europe/Berlin 2008-08-19
-2878093 Lichtenborn Lichtenborn 50.11667 6.3 P PPLA4 DE 08 00 07232 07232260 364 492 Europe/Berlin 2011-04-25
-2878109 Lichtenberg Lichtenberg 51.18333 13.96667 P PPLA4 DE 13 146 14625 14625320 1736 341 Europe/Berlin 2011-04-25
-2878111 Lichtenberg Lichtenberg 50.83333 13.41667 P PPL DE 13 3060 463 Europe/Berlin 2006-01-17
-2878114 Lichtenberg Lichtenberg 50.38335 11.67624 P PPL DE 02 1184 561 Europe/Berlin 2008-11-02
-2878133 Lichtenau Lichtenau Lichtenau 51.61667 8.9 P PPL DE 07 11268 310 Europe/Berlin 2012-01-18
-2878138 Lichtenau Lichtenau 49.16667 10.4 P PPL DE 02 3741 494 Europe/Berlin 2006-01-17
-2878140 Lichtenau Lichtenau Lichtenau 48.73333 8.01667 P PPL DE 01 5023 120 Europe/Berlin 2012-01-18
-2878153 Lichte Lichte Lichte 50.51667 11.18333 P PPLA4 DE 15 00 16073 16073049 1906 652 Europe/Berlin 2011-07-31
-2878166 Lich Lich 50.52085 8.81567 P PPL DE 05 065 13534 181 Europe/Berlin 2010-11-15
-2878204 Lexgaard Lexgaard Lexgaard 54.83333 8.93333 P PPLA4 DE 10 00 01054 01054077 62 7 Europe/Berlin 2011-04-25
-2878234 Leverkusen Leverkusen Laevverkuuse,Leberkouzen,Leverkusen,Leverkuzen,Lävverkuuse,lyfrkwzn,rebakuzen,Λεβερκούζεν,Леверкузен,ليفركوزن,レバークーゼン 51.03333 7 P PPL DE 07 162738 48 Europe/Berlin 2012-01-18
-2878244 Levenhagen Levenhagen 54.08905 13.26891 P PPLA4 DE 12 00 13059 13059050 443 5 Europe/Berlin 2011-04-25
-2878270 Leutkirch im Allgäu Leutkirch im Allgau Leutkirch,Leutkirch im Allgau,Leutkirch im Allgäu 47.825 10.01667 P PPL DE 01 22362 657 Europe/Berlin 2012-01-18
-2878284 Leutesdorf Leutesdorf Leutesdorf 50.45 7.38333 P PPLA4 DE 08 00 07138 07138038 1894 58 Europe/Berlin 2011-04-25
-2878289 Leutershausen Leutershausen Leutershausen 49.3 10.41667 P PPL DE 02 5592 450 Europe/Berlin 2012-01-18
-2878290 Leutersdorf Leutersdorf 50.95 14.65 P PPLA4 DE 13 146 14626 14626280 4284 367 Europe/Berlin 2011-04-25
-2878291 Leutersdorf Leutersdorf 50.51667 10.55 P PPLA4 DE 15 00 16066 16066039 298 379 Europe/Berlin 2011-04-25
-2878295 Leuterod Leuterod 50.48333 7.81667 P PPLA4 DE 08 00 07143 07143042 850 275 Europe/Berlin 2011-04-25
-2878298 Leutenthal Leutenthal 51.05 11.36667 P PPLA4 DE 15 00 16071 16071051 266 239 Europe/Berlin 2011-04-25
-2878308 Leutenberg Leutenberg Leutenberg 50.55 11.45 P PPL DE 15 2521 502 Europe/Berlin 2012-01-18
-2878310 Leutenbach Leutenbach 49.7095 11.17224 P PPLA4 DE 02 094 09474 09474147 1775 339 Europe/Berlin 2011-04-25
-2878313 Leutenbach Leutenbach 48.88791 9.39267 P PPLA4 DE 01 081 08119 08119042 10717 278 Europe/Berlin 2011-04-25
-2878325 Leussow Leussow 53.28333 11.28333 P PPLA4 DE 12 00 13054 13054064 324 25 Europe/Berlin 2011-04-25
-2878342 Leupoldsgrün Leupoldsgrun 50.3 11.8 P PPLA4 DE 02 094 09475 09475145 1382 631 Europe/Berlin 2011-04-25
-2878350 Leuna Leuna Leuna 51.31667 12.01667 P PPL DE 14 6929 101 Europe/Berlin 2012-01-18
-2878351 Leun Leun 50.55129 8.35836 P PPL DE 05 6116 159 Europe/Berlin 2010-08-06
-2878375 Leuchtenberg Leuchtenberg Leuchtenberg 49.6 12.25 P PPL DE 02 1299 492 Europe/Berlin 2012-01-18
-2878382 Leubsdorf Leubsdorf 50.8 13.16667 P PPLA4 DE 13 145 14522 14522320 3981 407 Europe/Berlin 2011-04-25
-2878384 Leubsdorf Leubsdorf 50.55 7.3 P PPLA4 DE 08 00 07138 07138037 1724 133 Europe/Berlin 2011-04-25
-2878387 Leubnitz Leubnitz 50.71667 12.36667 P PPL DE 13 1509 313 Europe/Berlin 2006-01-17
-2878388 Leubnitz Leubnitz 50.51667 12.03333 P PPLA4 DE 13 145 14523 14523180 0 496 Europe/Berlin 2011-04-25
-2878410 Letzlingen Letzlingen 52.43333 11.5 P PPLA4 DE 14 00 15081 15081320 1622 89 Europe/Berlin 2011-04-25
-2878422 Lettweiler Lettweiler 49.73333 7.73333 P PPLA4 DE 08 00 07133 07133058 242 363 Europe/Berlin 2011-04-25
-2878471 Letschin Letschin 52.64379 14.36007 P PPLA4 DE 11 00 12064 12064274 4973 9 Europe/Berlin 2011-07-31
-2878673 Leopoldshöhe Leopoldshohe 52.01246 8.69834 P PPLA4 DE 07 057 05766 05766048 16219 132 Europe/Berlin 2011-04-25
-2878675 Leopoldshagen Leopoldshagen 53.78333 13.9 P PPLA4 DE 12 00 13062 13062031 793 253 Europe/Berlin 2011-04-25
-2878693 Leonberg Leonberg 49.94708 12.2852 P PPLA4 DE 02 093 09377 09377137 1051 539 Europe/Berlin 2011-04-25
-2878695 Leonberg Leonberg Leonberg,Leonsberg,Леонберг 48.8 9.01667 P PPL DE 01 45711 382 Europe/Berlin 2012-01-18
-2878702 Lenzkirch Lenzkirch 47.86832 8.20211 P PPLA4 DE 01 083 08315 08315068 5111 810 Europe/Berlin 2011-04-25
-2878731 Lenzen Lenzen 53.09176 11.47453 P PPL DE 11 2664 21 Europe/Berlin 2010-05-25
-2878751 Lenting Lenting Lenting 48.8 11.46667 P PPLA4 DE 02 091 09176 09176143 0 384 Europe/Berlin 2011-04-25
-2878755 Lentföhrden Lentfohrden Lentfohrden,Lentföhrden 53.86667 9.88333 P PPLA4 DE 10 00 01060 01060054 2332 20 Europe/Berlin 2011-04-25
-2878760 Lenterode Lenterode Lenterode 51.33333 10.06667 P PPLA4 DE 15 00 16061 16061065 311 308 Europe/Berlin 2011-04-25
-2878773 Lensahn Lensahn Lensahn 54.23333 10.88333 P PPLA4 DE 10 00 01055 01055027 5085 4 Europe/Berlin 2011-04-25
-2878784 Lennestadt Lennestadt Lennestadt,Stadt Lennestadt 51.11667 8.06667 P PPL DE 07 28102 271 Europe/Berlin 2012-01-18
-2878795 Lenne Lenne 51.89387 9.68299 P PPLA4 DE 06 00 03255 03255027 752 211 Europe/Berlin 2011-04-25
-2878824 Lenggries Lenggries 47.68333 11.56667 P PPLA4 DE 02 091 09173 09173135 9432 678 Europe/Berlin 2011-04-25
-2878829 Lengfeld Lengfeld 50.53333 10.65 P PPLA4 DE 15 00 16069 16069026 478 418 Europe/Berlin 2011-04-25
-2878838 Lengerich Lengerich Lengerich,Lengerich Dorf,Lengerikhe,Ленгерихе 52.55381 7.53164 P PPLA4 DE 06 00 03454 03454031 2679 34 Europe/Berlin 2011-07-31
-2878840 Lengerich Lengerich Lengerich 52.18333 7.86667 P PPL DE 07 22697 79 Europe/Berlin 2012-01-18
-2878844 Lengenwang Lengenwang 47.7 10.6 P PPLA4 DE 02 097 09777 09777149 1375 803 Europe/Berlin 2011-04-25
-2878852 Lengenfeld Lengenfeld Lengenfeld 50.56667 12.36667 P PPL DE 13 8141 410 Europe/Berlin 2012-01-18
-2878863 Lengenbostel Lengenbostel 53.3 9.51667 P PPLA4 DE 06 00 03357 03357034 427 41 Europe/Berlin 2011-04-25
-2878878 Lengefeld Lengefeld Lengefeld 50.71667 13.2 P PPL DE 13 4834 479 Europe/Berlin 2012-01-18
-2878879 Lengede Lengede 52.20487 10.30775 P PPLA4 DE 06 00 03157 03157005 12993 82 Europe/Berlin 2011-04-25
-2878881 Lengdorf Lengdorf 48.26667 12.05 P PPLA4 DE 02 091 09177 09177127 2648 475 Europe/Berlin 2011-04-25
-2878912 Lemwerder Lemwerder Lemverder,Lemwerder 53.16667 8.61667 P PPLA4 DE 06 00 03461 03461006 7325 6 Europe/Berlin 2011-07-31
-2878918 Lemsahl-Mellingstedt Lemsahl-Mellingstedt 53.68998 10.09648 P PPL DE 04 6554 34 Europe/Berlin 2011-08-21
-2878927 Lemnitz Lemnitz Lemnitz 50.71667 11.83333 P PPLA4 DE 15 00 16075 16075057 408 451 Europe/Berlin 2011-04-25
-2878943 Lemgo Lemgo Lemgo 52.03333 8.9 P PPL DE 07 057 05766 41943 102 Europe/Berlin 2012-01-18
-2878944 Lemförde Lemforde Lemforde,Lemförde 52.46667 8.38333 P PPL DE 06 2936 38 Europe/Berlin 2012-01-18
-2878946 Lembruch Lembruch 52.53333 8.35 P PPLA4 DE 06 00 03251 03251022 996 38 Europe/Berlin 2011-04-25
-2878948 Lemberg Lemberg 49.16667 7.66667 P PPLA4 DE 08 00 07340 07340028 4317 295 Europe/Berlin 2011-04-25
-2878974 Lelkendorf Lelkendorf 53.85 12.73333 P PPLA4 DE 12 00 13053 13053050 620 30 Europe/Berlin 2011-04-25
-2878979 Leizen Leizen 53.36653 12.47463 P PPLA4 DE 12 00 13056 13056037 233 78 Europe/Berlin 2011-04-25
-2878982 Leiwen Leiwen 49.81667 6.88333 P PPLA4 DE 08 00 07235 07235074 1460 141 Europe/Berlin 2011-04-25
-2878983 Leitzweiler Leitzweiler 49.58333 7.21667 P PPLA4 DE 08 00 07134 07134051 127 521 Europe/Berlin 2011-04-25
-2878986 Leitzkau Leitzkau 52.05 11.95 P PPL DE 14 1130 94 Europe/Berlin 2006-01-17
-2879106 Leißling Leissling Leissling,Leißling 51.18333 11.9 P PPL DE 14 1541 99 Europe/Berlin 2012-01-18
-2879109 Leisnig Leisnig Leisnig 51.16667 12.91667 P PPL DE 13 6968 174 Europe/Berlin 2012-01-18
-2879121 Leisel Leisel 49.71667 7.2 P PPLA4 DE 08 00 07134 07134050 590 452 Europe/Berlin 2011-04-25
-2879139 Leipzig Leipzig Lajpcig,Leipciga,Leipcigas,Leipsia,Leipzig,Lejpcig,Lipcse,Lipsca,Lipsia,Lipsk,Lipsko,lai bi xi,laipeuchihi,laybzgh,laypzyg,lip sik,liph sik,lyypzyg,raiputsu~ihi,Λειψία,Лайпциг,Лајпциг,Лейпциг,לייפציג,لايبزغ,لایپزیگ,লাইপ্ৎসিশ,ไลป์ซิก,ไลพ์ซิก,ライプツィヒ,萊比錫,라이프치히 51.33962 12.37129 P PPLA2 DE 13 147 14713 14713000 504971 116 Europe/Berlin 2011-07-06
-2879150 Leipheim Leipheim 48.45004 10.22278 P PPL DE 02 6822 471 Europe/Berlin 2010-08-16
-2879159 Leinzell Leinzell 48.84941 9.8775 P PPLA4 DE 01 081 08136 08136040 2241 404 Europe/Berlin 2011-04-25
-2879162 Leinsweiler Leinsweiler 49.18333 8.01917 P PPLA4 DE 08 00 07337 07337051 403 249 Europe/Berlin 2011-04-25
-2879173 Leiningen Leiningen 50.13333 7.56667 P PPLA4 DE 08 00 07140 07140084 792 425 Europe/Berlin 2011-04-25
-2879185 Leinfelden-Echterdingen Leinfelden-Echterdingen Leinfelden-Echterdingen 48.69406 9.16809 P PPL DE 01 36672 422 Europe/Berlin 2011-11-29
-2879193 Leinefelde Leinefelde 51.38333 10.33333 P PPL DE 15 13740 341 Europe/Berlin 2006-01-17
-2879200 Leinburg Leinburg Leinburg 49.45167 11.31 P PPLA4 DE 02 095 09574 09574139 6446 397 Europe/Berlin 2011-04-25
-2879230 Leimersheim Leimersheim 49.13333 8.35 P PPLA4 DE 08 00 07334 07334016 2624 98 Europe/Berlin 2011-04-25
-2879241 Leimen Leimen Leimen 49.35111 8.68944 P PPL DE 01 27190 115 Europe/Berlin 2012-01-18
-2879242 Leimen Leimen 49.28333 7.76667 P PPLA4 DE 08 00 07340 07340027 993 452 Europe/Berlin 2011-04-25
-2879260 Leimbach Leimbach 50.81667 10.2 P PPLA4 DE 15 00 16063 16063051 1881 238 Europe/Berlin 2011-04-25
-2879262 Leimbach Leimbach 50.40392 6.92774 P PPLA4 DE 08 00 07131 07131044 0 271 Europe/Berlin 2011-04-25
-2879263 Leimbach Leimbach 50.01667 6.25 P PPLA4 DE 08 00 07232 07232073 79 488 Europe/Berlin 2011-04-25
-2879275 Leiferde Leiferde Leiffer 52.43948 10.43461 P PPLA4 DE 06 00 03151 03151015 0 66 Europe/Berlin 2011-03-14
-2879276 Leiferde Leiferde Leifer 52.20445 10.50842 P PPL DE 06 00 03101 03101000 4451 76 Europe/Berlin 2011-03-13
-2879280 Leienkaul Leienkaul 50.21667 7.08333 P PPLA4 DE 08 00 07135 07135502 0 467 Europe/Berlin 2011-04-25
-2879299 Leidersbach Leidersbach 49.90139 9.22167 P PPLA4 DE 02 096 09676 09676136 4997 188 Europe/Berlin 2011-04-25
-2879307 Leidenborn Leidenborn 50.13333 6.21667 P PPLA4 DE 08 00 07232 07232259 167 492 Europe/Berlin 2011-04-25
-2879315 Leichlingen Leichlingen Leichlingen 51.11667 7.01667 P PPL DE 07 27497 106 Europe/Berlin 2012-01-18
-2879326 Leiblfing Leiblfing 48.76667 12.51667 P PPLA4 DE 02 092 09278 09278146 3919 375 Europe/Berlin 2011-04-25
-2879335 Leibertingen Leibertingen 48.05 9.1 P PPLA4 DE 01 084 08437 08437072 2307 727 Europe/Berlin 2011-07-31
-2879360 Lehsen Lehsen 53.48333 11.03333 P PPLA4 DE 12 00 13054 13054063 330 46 Europe/Berlin 2011-04-25
-2879367 Lehrte Lehrte Lehrte 52.38333 9.96667 P PPL DE 06 43920 59 Europe/Berlin 2012-01-18
-2879375 Lehrensteinsfeld Lehrensteinsfeld 49.13111 9.32722 P PPLA4 DE 01 081 08125 08125057 1986 204 Europe/Berlin 2011-04-25
-2879378 Lehre Lehre 52.33333 10.66667 P PPLA4 DE 06 00 03154 03154014 11777 76 Europe/Berlin 2011-07-31
-2879381 Lehrberg Lehrberg Lehrberg 49.33333 10.51667 P PPL DE 02 3104 407 Europe/Berlin 2012-01-18
-2879391 Lehnstedt Lehnstedt 50.93333 11.43333 P PPLA4 DE 15 00 16071 16071049 344 315 Europe/Berlin 2011-04-25
-2879461 Lehmrade Lehmrade Lehmrade 53.6 10.75 P PPLA4 DE 10 00 01053 01053084 460 29 Europe/Berlin 2011-04-25
-2879464 Lehmkuhlen Lehmkuhlen Lehmkuhlen 54.23333 10.36667 P PPLA4 DE 10 00 01057 01057046 1472 26 Europe/Berlin 2011-04-25
-2879498 Lehmen Lehmen 50.28333 7.45 P PPLA4 DE 08 00 07137 07137504 1470 139 Europe/Berlin 2011-04-25
-2879543 Lehesten Lehesten 50.98333 11.58333 P PPLA4 DE 15 00 16074 16074051 2103 258 Europe/Berlin 2011-04-25
-2879620 Lehe Lehe 54.33333 9.01667 P PPLA4 DE 10 00 01051 01051065 1155 254 Europe/Berlin 2011-04-25
-2879621 Lehe Lehe 53 7.33333 P PPLA4 DE 06 00 03454 03454030 943 5 Europe/Berlin 2011-04-25
-2879653 Legden Legden 52.03333 7.1 P PPLA4 DE 07 055 05554 05554036 6725 70 Europe/Berlin 2011-04-25
-2879657 Legau Legau 47.85628 10.12981 P PPL DE 02 3215 670 Europe/Berlin 2010-02-02
-2879666 Leezen Leezen Leezen 53.86667 10.25 P PPLA4 DE 10 00 01060 01060053 1677 29 Europe/Berlin 2011-04-25
-2879667 Leezen Leezen 53.66265 11.49874 P PPLA4 DE 12 00 13060 13060048 2222 66 Europe/Berlin 2011-04-25
-2879668 Leezdorf Leezdorf 53.55 7.3 P PPLA4 DE 06 00 03452 03452015 1950 1 Europe/Berlin 2011-04-25
-2879670 Leetza Leetza 51.88333 12.81667 P PPLA4 DE 14 00 15091 15091200 388 77 Europe/Berlin 2011-04-25
-2879685 Leese Leese 52.5 9.11667 P PPLA4 DE 06 00 03256 03256018 1749 35 Europe/Berlin 2011-04-25
-2879697 Leer Leer Hleri,Leer,Ler,Lera,Lier,lyr,rea,Лер,Лера,ליר,レーア 53.23157 7.461 P PPL DE 06 33886 7 Europe/Berlin 2011-11-07
-2879713 Leegebruch Leegebruch 52.7234 13.19304 P PPLA4 DE 11 00 12065 12065180 6541 34 Europe/Berlin 2011-04-25
-2879728 Lederhose Lederhose 50.8 11.91667 P PPLA4 DE 15 00 16076 16076042 287 344 Europe/Berlin 2011-04-25
-2879758 Leck Leck Leck 54.76667 8.98333 P PPLA4 DE 10 00 01054 01054076 7593 6 Europe/Berlin 2011-04-25
-2879789 Lechbruck Lechbruck 47.70162 10.79493 P PPL DE 02 2442 727 Europe/Berlin 2010-07-12
-2879794 Lebusa Lebusa 51.8 13.43333 P PPLA4 DE 11 00 12062 12062289 910 96 Europe/Berlin 2011-04-25
-2879795 Lebus Lebus 52.41667 14.53333 P PPL DE 11 3447 47 Europe/Berlin 2006-01-17
-2879797 Lebrade Lebrade Lebrade 54.21667 10.41667 P PPLA4 DE 10 00 01057 01057045 640 33 Europe/Berlin 2011-04-25
-2879800 Lebien Lebien 51.71667 12.93333 P PPLA4 DE 14 00 15091 15091195 366 72 Europe/Berlin 2011-04-25
-2879832 Lebach Lebach Lebach 49.4 6.91667 P PPL DE 09 21583 250 Europe/Berlin 2012-01-18
-2879843 Lawitz Lawitz 52.10703 14.64151 P PPLA4 DE 11 00 12067 12067292 680 39 Europe/Berlin 2011-04-25
-2879846 Lawalde Lawalde 51.08333 14.6 P PPLA4 DE 13 146 14626 14626270 2131 334 Europe/Berlin 2011-04-25
-2879861 Lautzenhausen Lautzenhausen 49.93333 7.26667 P PPLA4 DE 08 00 07140 07140082 351 487 Europe/Berlin 2011-04-25
-2879862 Lautzenbrücken Lautzenbrucken 50.68333 7.96667 P PPLA4 DE 08 00 07143 07143255 364 500 Europe/Berlin 2011-04-25
-2879865 Lautrach Lautrach 47.89805 10.11806 P PPLA4 DE 02 097 09778 09778164 1198 635 Europe/Berlin 2011-05-31
-2879870 Lautertal Lautertal 50.58333 9.28333 P PPLA4 DE 05 065 06535 06535012 2638 519 Europe/Berlin 2011-04-25
-2879872 Lautert Lautert 50.16667 7.83333 P PPLA4 DE 08 00 07141 07141078 264 398 Europe/Berlin 2011-04-25
-2879875 Lautersheim Lautersheim 49.58722 8.09833 P PPLA4 DE 08 00 07333 07333041 615 286 Europe/Berlin 2011-04-25
-2879892 Lauterhofen Lauterhofen Lauterhofen 49.3684 11.60294 P PPL DE 02 3773 487 Europe/Berlin 2012-04-01
-2879895 Lauterecken Lauterecken 49.65 7.6 P PPL DE 08 2292 248 Europe/Berlin 2006-01-17
-2879926 Lauterbach Lauterbach 51.06667 10.35 P PPLA4 DE 15 00 16063 16063049 633 216 Europe/Berlin 2011-04-25
-2879929 Lauterbach Lauterbach Lauterbach 50.63333 9.4 P PPL DE 05 14487 304 Europe/Berlin 2012-01-18
-2879944 Lauterbach/Schwarzwald Lauterbach/Schwarzwald Lauterbach 48.22999 8.3424 P PPLA4 DE 01 083 08325 08325036 3193 615 Europe/Berlin 2012-01-01
-2879950 Lauterach Lauterach 48.2562 9.58034 P PPLA4 DE 01 084 08425 08425073 594 517 Europe/Berlin 2011-04-25
-2879964 Lauter Lauter Lauter 50.56667 12.73333 P PPL DE 13 5028 466 Europe/Berlin 2012-02-02
-2879966 Lauter Lauter 49.96667 10.78333 P PPLA4 DE 02 094 09471 09471152 1141 321 Europe/Berlin 2011-04-25
-2879981 Lautenbach Lautenbach 48.48185 8.02732 P PPLL DE 01 083 1945 301 Europe/Berlin 2010-11-15
-2879989 Lautenbach Lautenbach 48.51667 8.1 P PPLA4 DE 01 083 08317 08317067 0 214 Europe/Berlin 2011-04-25
-2880001 Laußnitz Laussnitz 51.25 13.88333 P PPLA4 DE 13 146 14625 14625300 2102 183 Europe/Berlin 2011-04-25
-2880002 Laußig Laussig 51.54676 12.6293 P PPLA4 DE 13 147 14730 14730160 2082 95 Europe/Berlin 2011-04-25
-2880047 Lauschied Lauschied 49.73333 7.61667 P PPLA4 DE 08 00 07133 07133057 613 382 Europe/Berlin 2011-04-25
-2880052 Lauscha Lauscha Lauscha 50.47687 11.15962 P PPL DE 15 4104 635 Europe/Berlin 2011-08-07
-2880073 Laurenburg Laurenburg 50.33333 7.91667 P PPLA4 DE 08 00 07141 07141077 326 201 Europe/Berlin 2011-04-25
-2880077 Laupheim Laupheim Laupheim 48.23333 9.88333 P PPL DE 01 19012 517 Europe/Berlin 2012-01-18
-2880079 Lauperath Lauperath 50.08333 6.33333 P PPLA4 DE 08 00 07232 07232258 118 507 Europe/Berlin 2011-04-25
-2880087 Laumersheim Laumersheim 49.55 8.23333 P PPLA4 DE 08 00 07332 07332033 889 108 Europe/Berlin 2011-04-25
-2880099 Lauingen Lauingen Lauingen,Lavinoen 48.56775 10.42706 P PPL DE 02 11029 440 Europe/Berlin 2010-08-16
-2880102 Laugna Laugna 48.53333 10.7 P PPLA4 DE 02 097 09773 09773143 1583 432 Europe/Berlin 2011-04-25
-2880111 Lauffen am Neckar Lauffen am Neckar Lauffen,Lauffen am Neckar 49.07444 9.14694 P PPL DE 01 11068 182 Europe/Berlin 2012-02-28
-2880113 Laufersweiler Laufersweiler Langersweiler,Laufersweiler 49.9 7.3 P PPLA4 DE 08 00 07140 07140081 847 435 Europe/Berlin 2011-04-25
-2880121 Laufenburg Laufenburg Klein Laufenburg,Laufenburg,Laufenburg in Baden 47.56512 8.06045 P PPL DE 01 8515 341 Europe/Berlin 2010-08-10
-2880129 Laufen Laufen Laufen,Lauffen 47.95 12.93333 P PPL DE 02 6585 430 Europe/Berlin 2012-01-18
-2880132 Laufeld Laufeld 50.08333 6.86667 P PPLA4 DE 08 00 07231 07231074 497 423 Europe/Berlin 2011-04-25
-2880135 Laufdorf Laufdorf 50.51605 8.45982 P PPLX DE 05 1800 235 237 Europe/Berlin 2009-10-26
-2880144 Lauf an der Pegnitz Lauf an der Pegnitz Lauf,Lauf an der Pegnitz 49.51028 11.2775 P PPL DE 02 26403 322 Europe/Berlin 2012-01-18
-2880146 Laufach Laufach Laufach 50.01667 9.3 P PPLA4 DE 02 096 09671 09671139 5354 200 Europe/Berlin 2011-07-31
-2880150 Lauf Lauf 48.65 8.13333 P PPLA4 DE 01 083 08317 08317068 3973 220 Europe/Berlin 2011-04-25
-2880176 Lauenhagen Lauenhagen 52.35 9.21667 P PPLA4 DE 06 00 03257 03257019 1524 58 Europe/Berlin 2011-07-31
-2880181 Lauenburg Lauenburg Lauenberg,Lauenburg 53.37199 10.55654 P PPL DE 10 11814 42 Europe/Berlin 2011-09-07
-2880184 Lauenbrück Lauenbruck 53.2 9.56667 P PPLA4 DE 06 00 03357 03357033 2152 32 Europe/Berlin 2011-04-25
-2880189 Lauenau Lauenau 52.27393 9.36928 P PPL DE 06 4198 87 Europe/Berlin 2011-03-17
-2880196 Laudert Laudert 50.08333 7.6 P PPLA4 DE 08 00 07140 07140080 444 483 Europe/Berlin 2011-04-25
-2880203 Laudenbach Laudenbach 49.74583 9.17611 P PPLA4 DE 02 096 09676 09676135 1399 133 Europe/Berlin 2011-04-25
-2880204 Laudenbach Laudenbach 49.61333 8.65389 P PPLA4 DE 01 082 08226 08226040 6141 121 Europe/Berlin 2011-04-25
-2880211 Lauchröden Lauchroden 50.98333 10.16667 P PPL DE 15 1028 259 Europe/Berlin 2006-01-17
-2880215 Lauchheim Lauchheim 48.87135 10.24222 P PPL DE 01 4609 491 Europe/Berlin 2008-12-22
-2880221 Lauchhammer Lauchhammer Lauchhammer,Lauchhammer East,Stadt Lauchhammer 51.5 13.8 P PPL DE 11 18990 107 Europe/Berlin 2012-01-18
-2880228 Laucha Laucha Laucha,Laucha an der Unstrut 51.21667 11.68333 P PPL DE 14 2517 130 Europe/Berlin 2012-01-18
-2880230 Laucha Laucha 50.93333 10.53333 P PPLA4 DE 15 00 16067 16067042 533 290 Europe/Berlin 2011-07-31
-2880271 Laubenheim Laubenheim 49.91667 7.9 P PPLA4 DE 08 00 07133 07133056 844 88 Europe/Berlin 2011-04-25
-2880280 Lauben Lauben 48.05 10.28333 P PPLA4 DE 02 097 09778 09778163 1361 597 Europe/Berlin 2011-04-25
-2880282 Lauben Lauben 47.78333 10.3 P PPLA4 DE 02 097 09780 09780125 3274 675 Europe/Berlin 2011-04-25
-2880308 Laubach Laubach 50.54196 8.99034 P PPL DE 05 065 10205 209 Europe/Berlin 2010-11-15
-2880310 Laubach Laubach 50.23333 7.08333 P PPLA4 DE 08 00 07135 07135052 1073 555 Europe/Berlin 2011-04-25
-2880311 Laubach Laubach 50.05 7.5 P PPLA4 DE 08 00 07140 07140079 0 422 Europe/Berlin 2011-04-25
-2880351 Lathen Lathen 52.86667 7.31667 P PPLA4 DE 06 00 03454 03454029 5754 9 Europe/Berlin 2011-04-25
-2880355 Latendorf Latendorf Latendorf 54 10.06667 P PPLA4 DE 10 00 01060 01060052 608 33 Europe/Berlin 2011-04-25
-2880357 Lastrup Lastrup 52.78333 7.85 P PPLA4 DE 06 00 03453 03453009 6684 24 Europe/Berlin 2011-07-31
-2880375 Lassan Lassan Lassan 53.95 13.85 P PPL DE 12 1462 1 Europe/Berlin 2012-01-18
-2880388 Lasel Lasel 50.11667 6.46667 P PPLA4 DE 08 00 07232 07232256 355 411 Europe/Berlin 2011-04-25
-2880396 Lascheid Lascheid 50.11667 6.41667 P PPLA4 DE 08 00 07232 07232255 74 542 Europe/Berlin 2011-04-25
-2880400 Lasbek Lasbek Lasbek,Lasbek-Dorf 53.73333 10.36667 P PPLA4 DE 10 00 01062 01062089 1162 45 Europe/Berlin 2011-07-31
-2880404 Lärz Larz Larz,Lärz 53.3 12.75 P PPLA4 DE 12 00 13056 13056036 604 66 Europe/Berlin 2011-04-25
-2880425 Lappersdorf Lappersdorf Lappersdorf 49.05694 12.09 P PPL DE 02 12744 333 Europe/Berlin 2012-01-18
-2880441 Lapitz Lapitz 53.55 13.08333 P PPLA4 DE 12 00 13056 13056035 171 63 Europe/Berlin 2011-04-25
-2880483 Lanze Lanze 53.38713 10.60492 P PPLA4 DE 10 00 01053 01053082 427 8 Europe/Berlin 2011-04-25
-2880485 Lanz Lanz 53.06667 11.6 P PPLA4 DE 11 00 12070 12070236 902 16 Europe/Berlin 2011-04-25
-2880489 Lanstrop Lanstrop 51.57504 7.56752 P PPL DE 07 4176 75 Europe/Berlin 2010-07-27
-2880503 Lankow Lankow 53.64983 11.36913 P PPLX DE 12 10756 51 Europe/Berlin 2010-03-27
-2880515 Lankau Lankau Lankau 53.66667 10.66667 P PPLA4 DE 10 00 01053 01053081 515 49 Europe/Berlin 2011-04-25
-2880528 Langwieden Langwieden 49.38333 7.5 P PPLA4 DE 08 00 07335 07335202 273 379 Europe/Berlin 2011-04-25
-2880536 Langweiler Langweiler 49.78333 7.18333 P PPLA4 DE 08 00 07134 07134502 0 565 Europe/Berlin 2011-04-25
-2880537 Langweiler Langweiler 49.66667 7.51667 P PPLA4 DE 08 00 07336 07336057 279 336 Europe/Berlin 2011-04-25
-2880539 Langweid Langweid 48.48333 10.85 P PPL DE 02 7653 451 Europe/Berlin 2006-01-17
-2880546 Langwedel Langwedel 54.21667 9.93333 P PPLA4 DE 10 00 01058 01058094 1372 21 Europe/Berlin 2011-04-25
-2880547 Langwedel Langwedel Langwedel 52.96667 9.21667 P PPL DE 06 14755 15 Europe/Berlin 2012-01-18
-2880564 Langula Langula 51.15 10.41667 P PPLA4 DE 15 00 16064 16064039 1135 238 Europe/Berlin 2011-04-25
-2880565 Langsur Langsur 49.71667 6.5 P PPLA4 DE 08 00 07235 07235073 1634 143 Europe/Berlin 2011-04-25
-2880573 Langstedt Langstedt Langstedt 54.61667 9.38333 P PPLA4 DE 10 00 01059 01059138 1037 12 Europe/Berlin 2011-04-25
-2880589 Langscheid Langscheid 50.38333 7.11667 P PPLA4 DE 08 00 07137 07137061 95 370 Europe/Berlin 2011-04-25
-2880597 Langquaid Langquaid Langquaid,Langquaidt,Lankwatt 48.81667 12.05 P PPL DE 02 5159 383 Europe/Berlin 2012-01-18
-2880613 Langlingen Langlingen Langeln,Langlingen 52.55 10.28333 P PPL DE 06 00 03351 03351017 2303 44 Europe/Berlin 2012-01-18
-2880666 Langhagen Langhagen 53.68624 12.43627 P PPLA4 DE 12 00 13053 13053049 702 80 Europe/Berlin 2011-04-25
-2880672 Langgöns Langgons Lang Gons,Lang Göns,Langgons,Langgöns 50.5 8.66667 P PPLA4 DE 05 065 06531 06531009 12283 207 Europe/Berlin 2011-07-31
-2880684 Langewiesen Langewiesen Langewiesen 50.66667 10.98333 P PPL DE 15 3793 450 Europe/Berlin 2012-01-18
-2880699 Langewahl Langewahl 52.33333 14.1 P PPLA4 DE 11 00 12067 12067288 855 46 Europe/Berlin 2011-04-25
-2880726 Langerwehe Langerwehe Langerwehe 50.81667 6.35 P PPLA4 DE 07 053 05358 05358032 14027 157 Europe/Berlin 2011-04-25
-2880758 Langerringen Langerringen 48.15 10.76667 P PPLA4 DE 02 097 09772 09772170 3802 571 Europe/Berlin 2011-04-25
-2880861 Langeoog Langeoog Langeoog 53.75 7.48333 P PPLA4 DE 06 00 03462 03462007 1990 3 Europe/Berlin 2011-04-25
-2880862 Langenzenn Langenzenn Langenzenn 49.5 10.8 P PPL DE 02 10629 307 Europe/Berlin 2012-01-18
-2880864 Langenwolschendorf Langenwolschendorf Langenwolschendorf 50.63333 11.96667 P PPLA4 DE 15 00 16076 16076041 949 481 Europe/Berlin 2011-04-25
-2880871 Langenwetzendorf Langenwetzendorf Langenwetzendorf 50.68333 12.11667 P PPLA4 DE 15 00 16076 16076039 3774 416 Europe/Berlin 2011-04-25
-2880886 Langenthal Langenthal 49.83333 7.56667 P PPLA4 DE 08 00 07133 07133055 97 334 Europe/Berlin 2011-04-25
-2880905 Langenstein Langenstein Langenstein 51.85 10.98333 P PPL DE 14 1996 163 Europe/Berlin 2012-02-02
-2880912 Langensendelbach Langensendelbach 49.64051 11.07104 P PPLA4 DE 02 094 09474 09474146 2837 295 Europe/Berlin 2011-07-31
-2880913 Langenselbold Langenselbold 50.17657 9.04003 P PPL DE 05 064 12660 124 Europe/Berlin 2010-11-15
-2880926 Langenscheid Langenscheid 50.35598 7.95166 P PPLA4 DE 08 00 07141 07141076 567 242 Europe/Berlin 2011-04-25
-2880957 Langenpreising Langenpreising 48.43333 11.96667 P PPLA4 DE 02 091 09177 09177126 2496 417 Europe/Berlin 2011-04-25
-2880960 Langenorla Langenorla Langenorla 50.73333 11.58333 P PPLA4 DE 15 00 16075 16075054 1490 237 Europe/Berlin 2011-04-25
-2880965 Langenneufnach Langenneufnach 48.26667 10.6 P PPLA4 DE 02 097 09772 09772168 1751 540 Europe/Berlin 2011-04-25
-2880968 Langenmosen Langenmosen Langenmoosen,Langenmosen 48.6 11.21667 P PPLA4 DE 02 091 09185 09185143 1496 406 Europe/Berlin 2011-04-25
-2880978 Langenlonsheim Langenlonsheim 49.9 7.9 P PPLA4 DE 08 00 07133 07133054 3673 93 Europe/Berlin 2011-04-25
-2880987 Langenleuba-Niederhain Langenleuba-Niederhain Langenleuba-Niederhain,Niederhain 50.96667 12.6 P PPLA4 DE DE 15 00 16077 16077023 0 237 Europe/Berlin 2011-04-25
-2880991 Langenlehsten Langenlehsten Langenlehsen 53.50101 10.74068 P PPLA4 DE 10 00 01053 01053080 164 28 Europe/Berlin 2011-04-25
-2881000 Langen Jarchow Langen Jarchow 53.76667 11.65 P PPLA4 DE 12 00 13060 13060046 320 19 Europe/Berlin 2011-04-25
-2881018 Langenhorn Langenhorn 53.66556 10.00137 P PPLX DE 04 41560 27 Europe/Berlin 2011-08-21
-2881019 Langenhorn Langenhorn 54.66667 8.91667 P PPLA4 DE 10 00 01054 01054075 3126 16 Europe/Berlin 2011-07-31
-2881057 Langenhahn Langenhahn 50.58333 7.91667 P PPLA4 DE 08 00 07143 07143254 1454 457 Europe/Berlin 2011-04-25
-2881062 Langenhagen Langenhagen Langenhagen 52.45 9.75 P PPL DE 06 50439 52 Europe/Berlin 2012-01-18
-2881085 Langenfeld Langenfeld Langenfeld 51.1 6.95 P PPL DE 07 59378 51 Europe/Berlin 2012-01-18
-2881087 Langenfeld Langenfeld 50.38333 7.1 P PPLA4 DE 08 00 07137 07137060 761 546 Europe/Berlin 2011-04-25
-2881088 Langenfeld Langenfeld 49.61667 10.51667 P PPLA4 DE 02 095 09575 09575138 1022 295 Europe/Berlin 2011-04-25
-2881091 Langeneß Langeness Langeness,Langeneß 54.63333 8.63333 P PPLA4 DE 10 00 01054 01054074 128 -9999 Europe/Berlin 2011-04-25
-2881094 Langenenslingen Langenenslingen 48.14851 9.37765 P PPLA4 DE 01 084 08426 08426067 3486 573 Europe/Berlin 2011-04-25
-2881097 Langeneichstädt Langeneichstadt 51.35 11.75 P PPL DE 14 1520 169 Europe/Berlin 2006-01-17
-2881106 Langendorf Langendorf 53.1 11.25 P PPLA4 DE 06 00 03354 03354014 714 21 Europe/Berlin 2011-04-25
-2881107 Langendorf Langendorf Langendorf 51.18333 11.96667 P PPL DE 14 2568 145 Europe/Berlin 2012-02-02
-2881128 Langenburg Langenburg Langenburg 49.25444 9.84583 P PPL DE 01 1817 410 Europe/Berlin 2012-01-18
-2881130 Langen Brütz Langen Brutz 53.65 11.55 P PPLA4 DE 12 00 13060 13060045 498 48 Europe/Berlin 2011-04-25
-2881150 Langenbogen Langenbogen Langenbogen 51.48333 11.78333 P PPL DE 14 1918 84 Europe/Berlin 2012-01-18
-2881154 Langenbernsdorf Langenbernsdorf Langenbernsdorf 50.75 12.3 P PPLA4 DE 13 145 14524 14524140 3968 301 Europe/Berlin 2011-04-25
-2881175 Langenberg Langenberg 51.78333 8.31667 P PPLA4 DE 07 057 05754 05754024 8207 82 Europe/Berlin 2011-04-25
-2881226 Langenbach bei Marienberg Langenbach bei Marienberg Langenbach,Langenbach bei Marienberg 50.63333 7.95 P PPL DE 08 1052 388 Europe/Berlin 2012-01-18
-2881227 Langenbach bei Kirburg Langenbach bei Kirburg Langenbach,Langenbach bei Kirburg 50.7 7.93333 P PPLA4 DE DE 08 00 07143 07143253 0 484 Europe/Berlin 2011-04-25
-2881243 Langenbach Langenbach 49.49355 7.32771 P PPLA4 DE 08 00 07336 07336056 487 303 Europe/Berlin 2011-07-31
-2881244 Langenbach Langenbach 48.43333 11.85 P PPLA4 DE 02 091 09178 09178138 3755 434 Europe/Berlin 2011-04-25
-2881259 Langenau Langenau 48.49616 10.11849 P PPL DE 01 14175 461 Europe/Berlin 2008-12-22
-2881263 Langenargen Langenargen Arguna,Langenargen 47.6 9.55 P PPLA4 DE 01 084 08435 08435030 7513 402 Europe/Berlin 2011-07-31
-2881267 Langenaltheim Langenaltheim 48.9 10.93333 P PPLA4 DE 02 095 09577 09577148 2450 540 Europe/Berlin 2011-04-25
-2881276 Langen Langen 53.60554 8.59509 P PPL DE 03 18863 6 Europe/Berlin 2008-07-28
-2881278 Langen Langen 52.53333 7.46667 P PPLA4 DE 06 00 03454 03454028 1383 38 Europe/Berlin 2011-04-25
-2881279 Langen Langen Langen 49.99333 8.67278 P PPL DE 05 35416 137 Europe/Berlin 2012-02-02
-2881291 Langelsheim Langelsheim Langelheim,Langelsheim 51.93333 10.33333 P PPL DE 06 13169 201 Europe/Berlin 2012-01-18
-2881301 Langeln Langeln 53.8 9.85 P PPLA4 DE 10 00 01056 01056034 491 21 Europe/Berlin 2011-04-25
-2881303 Langeln Langeln Langeln 51.91667 10.78333 P PPL DE 14 1116 182 Europe/Berlin 2012-02-02
-2881377 Langdorf Langdorf 49.01502 13.14651 P PPLA4 DE 02 092 09276 09276129 0 667 Europe/Berlin 2011-08-22
-2881402 Langballig Langballig Langballig 54.8 9.63333 P PPLA4 DE 10 00 01059 01059137 1502 29 Europe/Berlin 2011-04-25
-2881477 Landstuhl Landstuhl 49.41667 7.56667 P PPL DE 08 8989 245 Europe/Berlin 2006-01-17
-2881485 Landshut Landshut Landeshuta,Landshut,Landskhut,rantsufuto,Ландсхут,ランツフート 48.53333 12.15 P PPLA2 DE 02 092 60488 399 Europe/Berlin 2010-11-15
-2881499 Landscheide Landscheide 53.92011 9.25292 P PPLA4 DE 10 00 01061 01061063 0 253 Europe/Berlin 2011-04-25
-2881500 Landscheid Landscheid 49.98333 6.76667 P PPLA4 DE 08 00 07231 07231503 2067 302 Europe/Berlin 2011-04-25
-2881505 Landsberied Landsberied 48.16667 11.16667 P PPLA4 DE 02 091 09179 09179132 1384 556 Europe/Berlin 2011-04-25
-2881508 Landsberg Landsberg Landsberg,Landsberg bei Halle 51.51667 12.16667 P PPL DE 14 4563 102 Europe/Berlin 2012-01-18
-2881509 Landsberg am Lech Landsberg am Lech Landsberg,Landsberg am Lech 48.04819 10.88282 P PPL DE 02 091 27017 637 Europe/Berlin 2010-11-15
-2881519 Landrecht Landrecht Landrecht 53.93333 9.36667 P PPLA4 DE 10 00 01061 01061062 136 251 Europe/Berlin 2011-04-25
-2881526 Landolfshausen Landolfshausen 51.53333 10.1 P PPLA4 DE 06 00 03152 03152015 1188 213 Europe/Berlin 2011-04-25
-2881541 Landkern Landkern 50.2 7.15 P PPLA4 DE 08 00 07135 07135051 853 451 Europe/Berlin 2011-04-25
-2881599 Landesbergen Landesbergen 52.56667 9.13333 P PPLA4 DE 06 00 03256 03256017 2996 29 Europe/Berlin 2011-04-25
-2881622 Landensberg Landensberg 48.43444 10.52422 P PPLA4 DE 02 097 09774 09774151 726 513 Europe/Berlin 2011-04-25
-2881646 Landau in der Pfalz Landau in der Pfalz Landau,Landau in der Pfalz,Ландау,לנדאו 49.2075 8.11333 P PPL DE 08 41612 151 Europe/Berlin 2012-01-18
-2881650 Landau an der Isar Landau an der Isar Landau 48.67249 12.69316 P PPL DE 02 092 12997 344 Europe/Berlin 2010-11-15
-2881654 Lancken-Granitz Lancken-Granitz Dorf Lanken,Lancken-Granitz 54.36667 13.63333 P PPLA4 DE 12 00 13061 13061020 392 7 Europe/Berlin 2011-04-25
-2881659 Lamstedt Lamstedt 53.63333 9.1 P PPLA4 DE 06 00 03352 03352029 3380 22 Europe/Berlin 2011-07-31
-2881661 Lamspringe Lamspringe Lamspringe 51.96667 10.01667 P PPL DE 06 3223 200 Europe/Berlin 2012-01-18
-2881682 Lampertswalde Lampertswalde 51.31667 13.66667 P PPLA4 DE 13 146 14627 14627110 2060 143 Europe/Berlin 2011-04-25
-2881695 Lampertheim Lampertheim Lampertheim 49.60194 8.47194 P PPL DE 05 31635 94 Europe/Berlin 2012-02-02
-2881709 Lampaden Lampaden 49.65 6.7 P PPLA4 DE 08 00 07235 07235072 549 435 Europe/Berlin 2011-04-25
-2881728 Lammershagen Lammershagen Lammershagen 54.28333 10.45 P PPLA4 DE 10 00 01057 01057044 285 52 Europe/Berlin 2011-04-25
-2881764 Lamerdingen Lamerdingen 48.09195 10.73982 P PPLA4 DE 02 097 09777 09777145 1872 597 Europe/Berlin 2011-07-31
-2881767 Lambsheim Lambsheim Lambsheim 49.51361 8.28778 P PPLA4 DE 08 00 07338 07338016 6104 102 Europe/Berlin 2011-04-25
-2881768 Lambsborn Lambsborn 49.36667 7.43333 P PPLA4 DE 08 00 07335 07335201 753 331 Europe/Berlin 2011-04-25
-2881770 Lambrechtshagen Lambrechtshagen 54.1 12.01667 P PPLA4 DE 12 00 13051 13051043 3016 14 Europe/Berlin 2011-04-25
-2881771 Lambrecht Lambrecht 49.37139 8.06833 P PPL DE 08 3991 170 Europe/Berlin 2006-01-17
-2881776 Lambertsberg Lambertsberg 50.08333 6.38333 P PPLA4 DE 08 00 07232 07232254 356 377 Europe/Berlin 2011-04-25
-2881786 Lam Lam Lam 49.19665 13.05051 P PPL DE 02 2884 574 Europe/Berlin 2011-09-08
-2881787 Lalling Lalling 48.84525 13.14008 P PPLA4 DE 02 092 09271 09271130 1589 432 Europe/Berlin 2011-08-20
-2881789 Lalendorf Lalendorf 53.75774 12.38983 P PPLA4 DE 12 00 13053 13053048 2506 36 Europe/Berlin 2011-07-31
-2881857 Laichingen Laichingen 48.48939 9.68612 P PPL DE 01 084 10853 755 757 Europe/Berlin 2010-11-15
-2881882 Lahr Lahr 50.12509 7.36539 P PPLA4 DE 08 00 07135 07135050 181 344 Europe/Berlin 2011-09-09
-2881883 Lahr Lahr 49.93333 6.28333 P PPLA4 DE 08 00 07232 07232072 179 358 Europe/Berlin 2011-04-25
-2881885 Lahr Lahr Lahr,Lahr/Schwarzwald,Lar,Лар 48.35 7.86667 P PPL DE 01 43863 231 Europe/Berlin 2012-01-18
-2881889 Lahnstein Lahnstein Lahnstein 50.3 7.61667 P PPL DE 08 18749 134 Europe/Berlin 2012-01-18
-2881910 Lahn Lahn 52.81667 7.61667 P PPLA4 DE 06 00 03454 03454027 850 37 Europe/Berlin 2011-04-25
-2881921 Lähden Lahden Lahden,Lähden 52.75 7.56667 P PPLA4 DE 06 00 03454 03454026 4429 32 Europe/Berlin 2011-04-25
-2881939 Lägerdorf Lagerdorf Lagerdorf,Lägerdorf 53.88333 9.58333 P PPLA4 DE 10 00 01061 01061061 2790 255 Europe/Berlin 2011-04-25
-2881953 Lage Lage 52.46667 6.96667 P PPLA4 DE 06 00 03456 03456013 1040 18 Europe/Berlin 2011-04-25
-2881956 Lage Lage 51.99223 8.79301 P PPL DE 07 057 36097 103 Europe/Berlin 2010-11-15
-2881972 Bad Laer Bad Laer Bad Laer,Laer 52.1 8.08333 P PPLA4 DE 06 00 03459 03459005 9151 82 Europe/Berlin 2011-04-25
-2881973 Laer Laer 52.05555 7.35775 P PPLA4 DE 07 055 05566 05566036 6325 78 Europe/Berlin 2011-07-31
-2881980 Ladenburg Ladenburg Ladenburg 49.475 8.60694 P PPL DE 01 11479 104 Europe/Berlin 2012-01-18
-2881984 Ladelund Ladelund Ladelund 54.85 9.01667 P PPLA4 DE 10 00 01054 01054073 1500 14 Europe/Berlin 2011-04-25
-2881991 Ladbergen Ladbergen Ladbergen 52.13333 7.75 P PPLA4 DE 07 055 05566 05566032 6414 53 Europe/Berlin 2011-07-31
-2882028 Lachendorf Lachendorf Lachendorf 52.61667 10.25 P PPLA4 DE 06 00 03351 03351016 5805 47 Europe/Berlin 2011-04-25
-2882033 Lachen Lachen 47.9459 10.23943 P PPLA4 DE 02 097 09778 09778162 1390 651 Europe/Berlin 2011-05-31
-2882057 Labrun Labrun 51.66667 12.96667 P PPLA4 DE 14 00 15091 15091190 135 76 Europe/Berlin 2011-04-25
-2882059 Laboe Laboe Labo,Laboe 54.4 10.21667 P PPLA4 DE 10 00 01057 01057043 5315 3 Europe/Berlin 2011-07-31
-2882061 Laberweinting Laberweinting 48.8 12.31667 P PPLA4 DE 02 092 09278 09278144 3463 363 Europe/Berlin 2011-04-25
-2882073 Labenz Labenz Labenz 53.7 10.51667 P PPLA4 DE 10 00 01053 01053079 839 66 Europe/Berlin 2011-04-25
-2882087 Laatzen Laatzen Laatzen 52.31667 9.8 P PPL DE 06 40038 72 Europe/Berlin 2012-01-18
-2882091 Bad Laasphe Bad Laasphe Bad Laasphe,Laasphe 50.93333 8.4 P PPL DE 07 15184 361 Europe/Berlin 2012-01-18
-2882103 Laasdorf Laasdorf 50.86667 11.66667 P PPLA4 DE 15 00 16074 16074049 558 178 Europe/Berlin 2011-04-25
-2882114 Laar Laar 52.61667 6.73333 P PPLA4 DE 06 00 03456 03456012 0 11 Europe/Berlin 2011-04-25
-2882115 Laar Laar 52.35 8.25 P PPL DE 06 2193 51 Europe/Berlin 2006-01-17
-2882141 Laage Laage Laage 53.93333 12.35 P PPL DE 12 4692 27 Europe/Berlin 2012-02-02
-2882161 Kyritz Kyritz Kyritz 52.94212 12.39704 P PPL DE 11 10274 45 Europe/Berlin 2011-11-28
-2882166 Kyllburgweiler Kyllburgweiler 50.05 6.61667 P PPLA4 DE 08 00 07232 07232071 107 415 Europe/Berlin 2011-04-25
-2882167 Kyllburg Kyllburg Killburg,Kyllburg 50.03333 6.58333 P PPL DE 08 1054 338 Europe/Berlin 2012-01-18
-2882184 Kutzleben Kutzleben 51.2 10.75 P PPLA4 DE 15 00 16064 16064038 722 272 Europe/Berlin 2011-04-25
-2882192 Kutzenhausen Kutzenhausen 48.33333 10.7 P PPLA4 DE 02 097 09772 09772167 2482 523 Europe/Berlin 2011-04-25
-2882224 Kutenholz Kutenholz 53.48333 9.33333 P PPLA4 DE 06 00 03359 03359031 4964 26 Europe/Berlin 2011-04-25
-2882237 Kusterdingen Kusterdingen 48.52291 9.11977 P PPLA4 DE 01 084 08416 08416023 8282 409 Europe/Berlin 2011-04-25
-2882243 Küsten Kusten 52.98333 11.06667 P PPLA4 DE 06 00 03354 03354013 1449 21 Europe/Berlin 2011-04-25
-2882260 Kusey Kusey Kusey 52.56667 11.08333 P PPL DE 14 1123 60 Europe/Berlin 2012-02-02
-2882265 Kusel Kusel 49.55 7.4 P PPL DE 08 5134 321 Europe/Berlin 2006-01-17
-2882308 Kurtscheid Kurtscheid 50.53333 7.46667 P PPLA4 DE 08 00 07138 07138036 955 373 Europe/Berlin 2011-04-25
-2882318 Kürten Kurten Kurten,Kürten 51.05 7.26667 P PPLA4 DE 07 053 05378 05378012 20103 181 Europe/Berlin 2011-07-31
-2882329 Seiffen Seiffen Seiffen,Zajfen,Зайфен 50.65 13.45 P PPL DE 13 2600 645 Europe/Berlin 2009-01-18
-2882331 Kurort Oybin Kurort Oybin Kurort Oybin,Oybin 50.85 14.75 P PPL DE 13 1617 388 Europe/Berlin 2012-01-18
-2882332 Kurort Oberwiesenthal Kurort Oberwiesenthal Kurort Oberwiesenthal,Obervizental',Oberwiesenthal,Обервизенталь 50.41667 12.98333 P PPL DE 13 2592 910 Europe/Berlin 2012-01-18
-2882334 Kurort Jonsdorf Kurort Jonsdorf Johnsdorf,Jonsdorf,Kurort Jonsdorf 50.85 14.7 P PPL DE 13 1905 482 Europe/Berlin 2012-01-18
-2882335 Kurort Gohrisch Kurort Gohrisch Gohrisch 50.91234 14.10687 P PPL DE 13 146 2234 258 Europe/Berlin 2010-11-15
-2882342 Kürnbach Kurnbach Kurnbach,Kürnbach 49.0775 8.84556 P PPLA4 DE 01 082 08215 08215040 2440 198 Europe/Berlin 2011-04-25
-2882347 Kürnach Kurnach 49.85 10.03333 P PPLA4 DE 02 096 09679 09679156 4332 266 Europe/Berlin 2011-04-25
-2882366 Kueps Oberfranken Kueps Oberfranken Kueps Oberfranken,Kups,Küps 50.2 11.28333 P PPL DE 02 8282 291 Europe/Berlin 2012-01-18
-2882375 Kuppenheim Kuppenheim Kuppenheim 48.82794 8.25417 P PPL DE 01 7533 128 Europe/Berlin 2011-02-07
-2882399 Kupferzell Kupferzell Kupferzell 49.22778 9.69 P PPLA4 DE 01 081 08126 08126047 5736 333 Europe/Berlin 2011-04-25
-2882417 Kupferberg Kupferberg Kupferberg 50.13333 11.58333 P PPL DE 02 1129 518 Europe/Berlin 2012-01-18
-2882431 Künzing Kunzing 48.66667 13.08333 P PPLA4 DE 02 092 09271 09271128 3262 308 Europe/Berlin 2011-04-25
-2882439 Künzelsau Kunzelsau Kunzelsau,Künzelsau 49.28194 9.68889 P PPL DE 01 15070 216 Europe/Berlin 2012-02-28
-2882440 Künzell Kunzell 50.5442 9.71792 P PPLA4 DE 05 066 06631 06631017 16124 307 Europe/Berlin 2011-04-25
-2882464 Kunreuth Kunreuth 50.23333 11.53333 P PPL DE 02 1411 613 Europe/Berlin 2006-01-17
-2882465 Kunreuth Kunreuth 49.6824 11.14331 P PPLA4 DE 02 094 09474 09474145 0 298 Europe/Berlin 2011-04-25
-2882500 Kundert Kundert 50.71667 7.78333 P PPLA4 DE 08 00 07143 07143252 284 283 Europe/Berlin 2011-04-25
-2882529 Kümmersbruck Kummersbruck 49.41917 11.88833 P PPLA4 DE 02 093 09371 09371136 10365 396 Europe/Berlin 2011-04-25
-2882532 Kummerow Kummerow Cummerow 54.29569 12.88164 P PPLA4 DE DE 12 00 13057 13057051 0 16 Europe/Berlin 2011-04-25
-2882533 Kummerow Kummerow 53.76667 12.83333 P PPLA4 DE 12 00 13052 13052047 734 17 Europe/Berlin 2011-04-25
-2882543 Kummerfeld Kummerfeld 53.68333 9.78333 P PPLA4 DE 10 00 01056 01056032 2012 12 Europe/Berlin 2011-04-25
-2882563 Kumhausen Kumhausen 48.5 12.16667 P PPLA4 DE 02 092 09274 09274146 4812 488 Europe/Berlin 2011-04-25
-2882567 Kümbdchen Kumbdchen 49.98333 7.51667 P PPLA4 DE 08 00 07140 07140077 493 353 Europe/Berlin 2011-04-25
-2882575 Külsheim Kulsheim Kulsheim,Külsheim 49.66972 9.5225 P PPL DE 01 5854 319 Europe/Berlin 2012-02-28
-2882577 Kulpin Kulpin Kulpin 53.70992 10.69502 P PPLA4 DE 10 00 01053 01053078 260 43 Europe/Berlin 2011-07-31
-2882588 Kulmbach Kulmbach Culmbach,Kul'mbakh,Kulmbach,Stadt Kulmbach,kurumubahha,Кульмбах,クルムバッハ 50.1 11.45 P PPL DE 02 27565 327 Europe/Berlin 2012-01-18
-2882589 Kulmain Kulmain Culmain,Kulmain 49.9 11.9 P PPLA4 DE 02 093 09377 09377133 2452 500 Europe/Berlin 2011-04-25
-2882597 Küllstedt Kullstedt Kullstadt,Kullstedt,Küllstedt 51.28333 10.28333 P PPLA4 DE 15 00 16061 16061063 1578 444 Europe/Berlin 2011-04-25
-2882630 Kükels Kukels Kukels,Kükels 53.9 10.23333 P PPLA4 DE 10 00 01060 01060051 409 36 Europe/Berlin 2011-04-25
-2882660 Kuhstorf Kuhstorf 53.38333 11.25 P PPLA4 DE 12 00 13054 13054060 821 19 Europe/Berlin 2011-04-25
-2882670 Kühsen Kuhsen Kuhsen,Kühsen 53.68333 10.61667 P PPLA4 DE 10 00 01053 01053077 356 19 Europe/Berlin 2011-04-25
-2882675 Kuhs Kuhs 53.8581 12.2319 P PPLA4 DE 12 00 13053 13053045 350 31 Europe/Berlin 2011-04-25
-2882681 Kührstedt Kuhrstedt 53.57747 8.80091 P PPLA4 DE 06 00 03352 03352028 1149 10 Europe/Berlin 2011-07-29
-2882692 Kühren Kuhren 54.19878 10.25956 P PPLA4 DE 10 00 01057 01057042 642 26 Europe/Berlin 2011-04-25
-2882708 Kuhnhöfen Kuhnhofen 50.53333 7.86667 P PPLA4 DE 08 00 07143 07143251 156 399 Europe/Berlin 2011-04-25
-2882729 Kühndorf Kuhndorf 50.61667 10.48333 P PPLA4 DE 15 00 16066 16066038 1116 538 Europe/Berlin 2011-04-25
-2882777 Kühlenthal Kuhlenthal 48.56667 10.81667 P PPLA4 DE 02 097 09772 09772166 835 470 Europe/Berlin 2011-04-25
-2882875 Kuhfelde Kuhfelde 52.78333 11.11667 P PPLA4 DE 14 00 15081 15081290 530 44 Europe/Berlin 2011-04-25
-2882879 Kühdorf Kuhdorf 50.70679 12.11062 P PPLA4 DE 15 00 16076 16076038 68 369 Europe/Berlin 2011-04-25
-2883000 Kühbach Kuhbach 48.49101 11.18691 P PPL DE 02 097 3997 457 Europe/Berlin 2010-11-15
-2883005 Kuhardt Kuhardt 49.14583 8.31444 P PPLA4 DE 08 00 07334 07334015 1927 111 Europe/Berlin 2011-07-31
-2883062 Kudensee Kudensee Kudensee 53.93333 9.21667 P PPLA4 DE 10 00 01061 01061060 166 255 Europe/Berlin 2011-04-25
-2883065 Kuden Kuden Kuden 53.96667 9.18333 P PPLA4 DE 10 00 01051 01051064 651 25 Europe/Berlin 2011-04-25
-2883066 Kuddewörde Kuddeworde Kuddeworde,Kuddewörde 53.58333 10.4 P PPLA4 DE 10 00 01053 01053076 1343 32 Europe/Berlin 2011-04-25
-2883151 Kuchen Kuchen 48.63583 9.79989 P PPLA4 DE 01 081 08117 08117033 5790 406 Europe/Berlin 2011-04-25
-2883156 Kuchelmiß Kuchelmiss 53.68227 12.36168 P PPLA4 DE 12 00 13053 13053044 938 43 Europe/Berlin 2011-04-25
-2883170 Kubschütz Kubschutz Kubschutz,Kubschütz 51.16667 14.5 P PPLA4 DE 13 146 14625 14625290 2932 219 Europe/Berlin 2011-07-31
-2883175 Kublank Kublank 53.55 13.5 P PPLA4 DE 12 00 13055 13055039 208 81 Europe/Berlin 2011-04-25
-2883191 Krüzen Kruzen Kruzen,Krüzen 53.4 10.53333 P PPLA4 DE 10 00 01053 01053073 323 30 Europe/Berlin 2011-04-25
-2883211 Krusenhagen Krusenhagen 53.95 11.53333 P PPLA4 DE 12 00 13058 13058059 529 25 Europe/Berlin 2011-04-25
-2883212 Krusenfelde Krusenfelde 53.85 13.4 P PPLA4 DE 12 00 13059 13059048 208 9 Europe/Berlin 2011-04-25
-2883234 Krunkel Krunkel 50.58333 7.5 P PPLA4 DE 08 00 07132 07132065 671 300 Europe/Berlin 2011-04-25
-2883236 Krün Krun Krun,Krunn,Krün,Krünn 47.5 11.28333 P PPLA4 DE 02 091 09180 09180122 2032 867 Europe/Berlin 2011-04-25
-2883238 Krumstedt Krumstedt Krumstedt 54.06667 9.18333 P PPLA4 DE 10 00 01051 01051063 531 0 Europe/Berlin 2011-04-25
-2883246 Krumpa Krumpa Crumpa,Krumpa 51.29724 11.84412 P PPL DE 14 1139 123 Europe/Berlin 2010-10-18
-2883247 Krummwisch Krummwisch Krummwisch 54.33333 9.9 P PPLA4 DE 10 00 01058 01058093 736 20 Europe/Berlin 2011-04-25
-2883260 Krummin Krummin 54.05 13.85 P PPLA4 DE 12 00 13059 13059047 265 4 Europe/Berlin 2011-04-25
-2883270 Krummesse Krummesse Krummesse 53.78333 10.65 P PPLA4 DE 10 00 01053 01053075 1532 10 Europe/Berlin 2011-04-25
-2883317 Krummennaab Krummennaab Krumennaab,Krummennaab 49.83333 12.1 P PPLA4 DE 02 093 09377 09377132 1675 484 Europe/Berlin 2011-04-25
-2883326 Krummendiek Krummendiek 53.94665 9.41655 P PPLA4 DE 10 00 01061 01061059 0 1 Europe/Berlin 2011-04-25
-2883329 Krummendeich Krummendeich 53.83333 9.21667 P PPLA4 DE 06 00 03359 03359030 480 0 Europe/Berlin 2011-04-25
-2883335 Krummenau Krummenau 49.88333 7.26667 P PPLA4 DE 08 00 07134 07134049 141 472 Europe/Berlin 2011-04-25
-2883350 Krümmel Krummel 50.53333 7.71667 P PPLA4 DE 08 00 07143 07143041 394 275 Europe/Berlin 2011-04-25
-2883366 Krummbek Krummbek 54.38333 10.4 P PPLA4 DE 10 00 01057 01057041 320 16 Europe/Berlin 2011-04-25
-2883410 Krumbach Krumbach 48.24182 10.3632 P PPL DE 02 12805 514 Europe/Berlin 2010-08-16
-2883431 Krukow Krukow 53.51667 13.13333 P PPLA4 DE 12 00 13056 13056033 172 70 Europe/Berlin 2011-04-25
-2883432 Krukow Krukow 53.41667 10.48333 P PPLA4 DE 10 00 01053 01053074 198 39 Europe/Berlin 2011-04-25
-2883444 Krugsdorf Krugsdorf 53.52551 14.08464 P PPLA4 DE 12 00 13062 13062029 412 8 Europe/Berlin 2011-04-25
-2883471 Kruft Kruft Kruft 50.38333 7.33333 P PPLA4 DE 08 00 07137 07137057 3854 156 Europe/Berlin 2011-04-25
-2883477 Kruckow Kruckow 53.9 13.23333 P PPLA4 DE 12 00 13052 13052046 505 9 Europe/Berlin 2011-04-25
-2883495 Kruchten Kruchten Cruchten,Kruchten 49.9 6.31667 P PPLA4 DE 08 00 07232 07232069 401 324 Europe/Berlin 2011-04-25
-2883504 Kröv Krov 49.98333 7.08333 P PPLA4 DE 08 00 07231 07231072 2318 177 Europe/Berlin 2011-04-25
-2883544 Krottelbach Krottelbach 49.46667 7.33333 P PPLA4 DE 08 00 07336 07336054 783 273 Europe/Berlin 2011-04-25
-2883552 Krostitz Krostitz Krostitz 51.46208 12.4536 P PPLA4 DE 13 147 14730 14730150 4033 125 Europe/Berlin 2011-04-25
-2883560 Kröslin Kroslin Kroslin,Kröslin 54.11667 13.76667 P PPLA4 DE 12 00 13059 13059046 1873 255 Europe/Berlin 2011-04-25
-2883570 Kropstädt Kropstadt Kropstadt,Kropstädt 51.96667 12.73333 P PPL DE 14 1364 111 Europe/Berlin 2012-02-02
-2883580 Kroppenstedt Kroppenstedt Kroppenstedt 51.93333 11.3 P PPL DE 14 1681 149 Europe/Berlin 2012-01-18
-2883583 Kroppen Kroppen 51.38333 13.8 P PPLA4 DE 11 00 12066 12066168 781 114 Europe/Berlin 2011-04-25
-2883584 Kröppen Kroppen 49.15 7.53333 P PPLA4 DE 08 00 07340 07340026 771 402 Europe/Berlin 2011-04-25
-2883585 Kröppelshagen-Fahrendorf Kroppelshagen-Fahrendorf Kroppelshagen,Kroppelshagen-Fahrendorf,Kroppelshausen,Kröppelshagen,Kröppelshagen-Fahrendorf,Kröppelshausen 53.48333 10.33333 P PPLA4 DE 10 00 01053 01053072 1128 76 Europe/Berlin 2011-04-25
-2883589 Kroppach Kroppach 50.7 7.73333 P PPLA4 DE 08 00 07143 07143250 668 347 Europe/Berlin 2011-04-25
-2883591 Kropp Kropp Kropp 54.41667 9.51667 P PPLA4 DE 10 00 01059 01059053 6320 15 Europe/Berlin 2011-04-25
-2883602 Kröpelin Kropelin Kroeplin,Kropelin,Kröpelin 54.06667 11.8 P PPL DE 12 4044 60 Europe/Berlin 2012-01-18
-2883627 Kronweiler Kronweiler 49.65 7.26667 P PPLA4 DE 08 00 07134 07134048 363 374 Europe/Berlin 2011-04-25
-2883640 Kronsmoor Kronsmoor Kronsmoor 53.90762 9.59389 P PPLA4 DE 10 00 01061 01061058 198 254 Europe/Berlin 2011-04-25
-2883647 Kronshagen Kronshagen Kronshagen 54.33333 10.08333 P PPLA4 DE 10 00 01058 01058092 11856 23 Europe/Berlin 2011-07-31
-2883648 Kronsgaard Kronsgaard Kronsgaard 54.73333 9.98333 P PPLA4 DE 10 00 01059 01059136 252 1 Europe/Berlin 2011-04-25
-2883683 Kronprinzenkoog Kronprinzenkoog Kronprinzenkoog 53.96667 8.96667 P PPLA4 DE 10 00 01051 01051062 985 255 Europe/Berlin 2011-04-25
-2883749 Kronburg Kronburg 47.90432 10.1572 P PPLA4 DE 02 097 09778 09778161 1736 702 Europe/Berlin 2011-05-31
-2883754 Kronberg Kronberg Cronberg in Taunus 50.17745 8.51252 P PPL DE 05 064 17730 243 Europe/Berlin 2010-11-15
-2883777 Kronau Kronau 49.2225 8.63111 P PPLA4 DE 01 082 08215 08215039 5585 109 Europe/Berlin 2011-04-25
-2883784 Kronach Kronach 50.23963 11.33308 P PPL DE 15 18248 313 Europe/Berlin 2008-08-02
-2883791 Krombach Krombach 51.3 10.13333 P PPLA4 DE 15 00 16061 16061062 239 475 Europe/Berlin 2011-04-25
-2883793 Krombach Krombach 50.08333 9.21667 P PPLA4 DE 02 096 09671 09671138 2172 290 Europe/Berlin 2011-04-25
-2883794 Krölpa Krolpa 50.67743 11.53848 P PPLA4 DE 15 00 16075 16075129 3174 248 Europe/Berlin 2011-04-25
-2883801 Krokau Krokau Krokau 54.4 10.35 P PPLA4 DE 10 00 01057 01057040 485 6 Europe/Berlin 2011-04-25
-2883827 Krogaspe Krogaspe Krogaspe 54.13333 9.93333 P PPLA4 DE 10 00 01058 01058091 475 26 Europe/Berlin 2011-04-25
-2883859 Kritzow Kritzow 53.44615 12.13148 P PPLA4 DE 12 00 13060 13060042 0 63 Europe/Berlin 2011-04-25
-2883860 Kritzmow Kritzmow 54.05 12.05 P PPLA4 DE 12 00 13051 13051040 3132 48 Europe/Berlin 2011-04-25
-2883920 Kriftel Kriftel 50.08333 8.48333 P PPLA4 DE 05 064 06436 06436009 10633 110 Europe/Berlin 2011-04-25
-2883927 Kriesow Kriesow 53.73333 13.05 P PPLA4 DE 12 00 13052 13052045 371 71 Europe/Berlin 2011-04-25
-2883942 Krien Krien Crien,Krien 53.83333 13.45 P PPLA4 DE 12 00 13059 13059045 849 5 Europe/Berlin 2011-04-25
-2883961 Kriegsfeld Kriegsfeld 49.71667 7.91667 P PPLA4 DE 08 00 07333 07333040 1111 305 Europe/Berlin 2011-04-25
-2883986 Kriebstein Kriebstein 51.05 13.01667 P PPLA4 DE 13 145 14522 14522300 2710 194 Europe/Berlin 2011-04-25
-2883987 Kriebitzsch Kriebitzsch Kriebitzsch 51.02347 12.33318 P PPLA4 DE 15 00 16077 16077022 1199 203 Europe/Berlin 2011-04-25
-2883994 Krickenbach Krickenbach 49.36667 7.66667 P PPLA4 DE 08 00 07335 07335021 1188 392 Europe/Berlin 2011-04-25
-2884026 Kreuzwertheim Kreuzwertheim Kreuzwertheim 49.76722 9.51833 P PPL DE 02 3862 149 Europe/Berlin 2012-01-18
-2884050 Kreuztal Kreuztal Kreuztal,Kreuzthal 50.96667 7.98333 P PPL DE 07 31772 294 Europe/Berlin 2012-01-18
-2884141 Kreuzebra Kreuzebra Kreuzebra 51.35 10.25 P PPLA4 DE 15 00 16061 16061061 790 479 Europe/Berlin 2011-04-25
-2884245 Kreuzau Kreuzau Kreuzau,Kreuzau uber Duren,Kreuzau über Düren 50.75 6.48333 P PPLA4 DE 07 053 05358 05358028 18400 145 Europe/Berlin 2011-07-31
-2884280 Kreuth Kreuth Kreuth 47.65 11.75 P PPLA4 DE 02 091 09182 09182124 0 840 Europe/Berlin 2011-04-25
-2884296 Kreut Kreut Kreuth 47.79868 11.48312 P PPL DE 02 091 3889 676 Europe/Berlin 2010-11-15
-2884308 Kretzschau Kretzschau Kretzschau 51.05 12.06667 P PPLA4 DE 14 00 15084 15084275 1335 194 Europe/Berlin 2011-04-25
-2884312 Kretz Kretz 50.4 7.36667 P PPLA4 DE 08 00 07137 07137056 783 130 Europe/Berlin 2011-04-25
-2884344 Kressbronn am Bodensee Kressbronn am Bodensee Kressbronn,Kressbronn am Bodensee 47.6 9.6 P PPLA4 DE 01 084 08435 08435029 7834 418 Europe/Berlin 2011-04-25
-2884377 Krempermoor Krempermoor Krempermoor 53.8771 9.48084 P PPLA4 DE 10 00 01061 01061057 552 255 Europe/Berlin 2011-04-25
-2884380 Kremperheide Kremperheide Kremperheide 53.88721 9.47809 P PPLA4 DE 10 00 01061 01061056 2625 4 Europe/Berlin 2011-04-25
-2884391 Krempel Krempel 54.31667 9.03333 P PPLA4 DE 10 00 01051 01051061 669 2 Europe/Berlin 2011-04-25
-2884393 Krempe Krempe Krempe 53.83333 9.48333 P PPL DE 10 2441 0 Europe/Berlin 2012-02-02
-2884396 Kremmin Kremmin 53.25 11.6 P PPLA4 DE 12 00 13054 13054058 322 35 Europe/Berlin 2011-04-25
-2884403 Kremmen Kremmen 52.76216 13.02515 P PPL DE 11 7567 38 Europe/Berlin 2009-01-27
-2884415 Krembz Krembz 53.65 11.06667 P PPLA4 DE 12 00 13058 13058058 943 62 Europe/Berlin 2011-04-25
-2884451 Kreischa Kreischa 50.94534 13.75514 P PPLA4 DE 13 146 14628 14628220 4537 210 Europe/Berlin 2011-07-31
-2884482 Kreiensen Kreiensen Kreiensen,Kreinsen 51.86667 9.96667 P PPLA4 DE 06 00 03155 03155008 7359 159 Europe/Berlin 2011-04-25
-2884490 Kreien Kreien 53.40749 12.05544 P PPLA4 DE 12 00 13060 13060041 454 60 Europe/Berlin 2011-04-25
-2884509 Krefeld Krefeld Crefeld,Krefel'd,Krefeld,Krefeld-Uerdingen,Krefeldas,Krefelde,Krieevel,Krēfelde,Krėfeldas,ke lei fei er de,keulepelteu,krfld,kryfld,kureferuto,Крефелд,Крефельд,كريفلد,کرفلد,クレフェルト,クレーフェルト,克雷费尔德,크레펠트 51.33333 6.56667 P PPL DE 07 237984 44 Europe/Berlin 2012-01-18
-2884597 Krebeck Krebeck 51.58333 10.11667 P PPLA4 DE 06 00 03152 03152014 1135 218 Europe/Berlin 2011-04-25
-2884611 Krautscheid Krautscheid 50.06667 6.33333 P PPLA4 DE 08 00 07232 07232253 264 527 Europe/Berlin 2011-04-25
-2884623 Krautheim Krautheim 51.08333 11.3 P PPLA4 DE 15 00 16071 16071047 489 184 Europe/Berlin 2011-04-25
-2884625 Krautheim Krautheim Krautheim 49.38639 9.63389 P PPL DE 01 4884 268 Europe/Berlin 2012-01-18
-2884628 Krauthausen Krauthausen Krauthausen 51.01667 10.26667 P PPLA4 DE 15 00 16063 16063046 1667 242 Europe/Berlin 2011-07-31
-2884656 Krauschwitz Krauschwitz 51.51667 14.7 P PPLA4 DE 13 146 14626 14626250 3998 151 Europe/Berlin 2011-04-25
-2884657 Krauschwitz Krauschwitz 51.11667 11.96667 P PPLA4 DE 14 00 15084 15084270 626 218 Europe/Berlin 2011-04-25
-2884667 Krauchenwies Krauchenwies 48.03333 9.25 P PPLA4 DE 01 084 08437 08437065 5020 576 Europe/Berlin 2011-04-25
-2884677 Kratzenburg Kratzenburg 50.18333 7.55 P PPLA4 DE 08 00 07140 07140075 412 382 Europe/Berlin 2011-04-25
-2884680 Kratzeburg Kratzeburg 53.42938 12.94138 P PPLA4 DE 12 00 13055 13055037 537 65 Europe/Berlin 2011-04-25
-2884739 Kranzberg Kranzberg Crantsperg 48.40613 11.61246 P PPLA4 DE DE 02 091 09178 09178137 0 450 Europe/Berlin 2011-04-25
-2884761 Kranichfeld Kranichfeld Kranichfeld 50.85 11.2 P PPL DE 15 3779 308 Europe/Berlin 2012-01-18
-2884778 Kranenburg Kranenburg 53.6 9.2 P PPLA4 DE 06 00 03359 03359029 796 1 Europe/Berlin 2011-04-25
-2884779 Kranenburg Kranenburg Cranenburg,Kranenburg 51.78333 6.01667 P PPLA4 DE 07 051 05154 05154040 9797 15 Europe/Berlin 2011-04-25
-2884823 Kramerhof Kramerhof 54.35366 13.05412 P PPLA4 DE 12 00 13057 13057049 1747 5 Europe/Berlin 2011-04-25
-2884850 Krakow am See Krakow am See Krakow,Krakow am See 53.65 12.26667 P PPL DE 12 3450 50 Europe/Berlin 2012-01-18
-2884868 Kraja Kraja 51.45 10.51667 P PPLA4 DE 15 00 16062 16062029 300 282 Europe/Berlin 2011-04-25
-2884878 Krailling Krailling Krailling 48.1 11.4 P PPLA4 DE 02 091 09188 09188127 7528 562 Europe/Berlin 2011-04-25
-2884885 Kraiburg am Inn Kraiburg am Inn Craiburg,Kraiberg,Kraiburg 48.18191 12.43073 P PPL DE 02 4127 410 Europe/Berlin 2009-01-19
-2884940 Krähenberg Krahenberg 49.33333 7.46667 P PPLA4 DE 08 00 07340 07340216 171 358 Europe/Berlin 2011-04-25
-2885016 Kraftsdorf Kraftsdorf Kraftsdorf 50.88333 11.91667 P PPLA4 DE 15 00 16076 16076089 4403 320 Europe/Berlin 2011-04-25
-2885018 Kraftisried Kraftisried 47.78333 10.46667 P PPLA4 DE 02 097 09777 09777144 713 834 Europe/Berlin 2011-04-25
-2885026 Kradenbach Kradenbach 50.25 6.85 P PPLA4 DE 08 00 07233 07233040 146 500 Europe/Berlin 2011-04-25
-2885027 Krackow Krackow 53.35 14.26667 P PPLA4 DE 12 00 13062 13062028 618 25 Europe/Berlin 2011-04-25
-2885050 Kraam Kraam 50.7 7.53333 P PPLA4 DE 08 00 07132 07132064 189 250 Europe/Berlin 2011-04-25
-2885054 Koxhausen Koxhausen 49.98333 6.23333 P PPLA4 DE 08 00 07232 07232068 106 472 Europe/Berlin 2011-04-25
-2885055 Köwerich Kowerich 49.83333 6.88333 P PPLA4 DE 08 00 07235 07235067 325 127 Europe/Berlin 2011-04-25
-2885070 Kötzting Kotzting 49.17694 12.85556 P PPL DE 02 7471 424 Europe/Berlin 2006-01-17
-2885074 Kötzschau Kotzschau Kotzschau,Kötzschau 51.31667 12.13333 P PPL DE 14 2057 107 Europe/Berlin 2012-01-18
-2885092 Kotzenbüll Kotzenbull Kotzenbull,Kotzenbüll 54.33329 8.9045 P PPLA4 DE 10 00 01054 01054072 261 2 Europe/Berlin 2011-08-23
-2885097 Kotzen Kotzen 52.63333 12.51667 P PPLA4 DE 11 00 12063 12063165 641 32 Europe/Berlin 2011-04-25
-2885104 Kottweiler-Schwanden Kottweiler-Schwanden 49.48333 7.53333 P PPLA4 DE 08 00 07335 07335020 1435 281 Europe/Berlin 2011-04-25
-2885155 Kötterichen Kotterichen 50.24007 6.9843 P PPLA4 DE 08 00 07233 07233221 113 497 Europe/Berlin 2011-12-29
-2885165 Kottenheim Kottenheim 50.35 7.25 P PPLA4 DE 08 00 07137 07137055 2780 231 Europe/Berlin 2011-04-25
-2885180 Kottenborn Kottenborn Cottenborn,Kottenborn 50.35 6.9 P PPLA4 DE 08 00 07131 07131042 189 537 Europe/Berlin 2011-04-25
-2885237 Köthen Kothen Cothen,Cöthen,Kjoten,Koethen,Kothen,Köthen,Кётен 51.75 11.96667 P PPL DE 14 28710 86 Europe/Berlin 2012-01-18
-2885302 Chostlarn Chostlarn Chostlarn,Kosslarn,Kößlarn 48.36667 13.11667 P PPL DE 02 1941 427 Europe/Berlin 2012-01-18
-2885326 Kossa Kossa 51.61667 12.68333 P PPL DE 13 2514 120 Europe/Berlin 2006-01-17
-2885327 Kospoda Kospoda Kospoda 50.71667 11.75 P PPLA4 DE 15 00 16075 16075051 450 378 Europe/Berlin 2011-07-31
-2885338 Koserow Koserow Koserow 54.05 14 P PPLA4 DE 12 00 13059 13059044 1763 4 Europe/Berlin 2011-07-31
-2885350 Kosel Kosel 54.5 9.76667 P PPLA4 DE 10 00 01058 01058090 1345 20 Europe/Berlin 2011-04-25
-2885367 Korweiler Korweiler 50.1 7.41667 P PPLA4 DE 08 00 07140 07140073 79 328 Europe/Berlin 2011-04-25
-2885386 Korswandt Korswandt 53.91667 14.16667 P PPLA4 DE 12 00 13059 13059043 534 15 Europe/Berlin 2011-04-25
-2885397 Korschenbroich Korschenbroich 51.19139 6.51352 P PPL DE 07 051 33406 48 Europe/Berlin 2010-11-15
-2885407 Körperich Korperich 49.91667 6.25 P PPLA4 DE 08 00 07232 07232067 1089 281 Europe/Berlin 2011-04-25
-2885408 Kornwestheim Kornwestheim Kornvestkhajm,Kornwestheim,Kornwestheimium,Корнвестхайм 48.86158 9.18569 P PPL DE 01 31040 299 Europe/Berlin 2008-12-21
-2885412 Korntal Korntal 48.83218 9.1214 P PPL DE 01 081 08118 08118080 18081 310 Europe/Berlin 2010-11-15
-2885436 Körner Korner 51.23333 10.6 P PPLA4 DE 15 00 16064 16064037 1923 210 Europe/Berlin 2011-04-25
-2885477 Korlingen Korlingen 49.72714 6.72475 P PPLA4 DE 08 00 07235 07235070 788 293 Europe/Berlin 2011-04-25
-2885479 Körle Korle 51.16667 9.51667 P PPLA4 DE 05 066 06634 06634012 2991 158 Europe/Berlin 2011-07-31
-2885489 Kördorf Kordorf 50.28333 7.91667 P PPLA4 DE 08 00 07141 07141074 635 324 Europe/Berlin 2011-04-25
-2885495 Kordel Kordel 49.83333 6.63333 P PPLA4 DE 08 00 07235 07235069 2205 248 Europe/Berlin 2011-04-25
-2885499 Körchow Korchow 53.45 11.06667 P PPLA4 DE 12 00 13054 13054057 886 60 Europe/Berlin 2011-04-25
-2885504 Körborn Korborn 49.56667 7.36667 P PPLA4 DE 08 00 07336 07336051 351 355 Europe/Berlin 2011-04-25
-2885536 Korbach Korbach 51.27561 8.873 P PPL DE 05 066 24481 371 Europe/Berlin 2010-11-15
-2885540 Korb Korb 48.84303 9.36258 P PPLA4 DE 01 081 08119 08119041 10459 289 Europe/Berlin 2011-04-25
-2885619 Kopp Kopp 50.18333 6.58333 P PPLA4 DE 08 00 07233 07233223 197 484 Europe/Berlin 2011-04-25
-2885657 Berlin Köpenick Berlin Koepenick Berlin-Kopenick,Berlin-Köpenick,Koepenick,Köpenick 52.44254 13.58228 P PPLX DE DE 16 00 59561 35 Europe/Berlin 2010-11-22
-2885671 Konzell Konzell 49.06667 12.71667 P PPLA4 DE 02 092 09278 09278143 1810 536 Europe/Berlin 2011-04-25
-2885672 Konz Konz Conz,Konz 49.7 6.58333 P PPL DE 08 17879 139 Europe/Berlin 2012-01-18
-2885679 Konstanz Konstanz Constanca,Constance,Constanta,Constanza,Constança,Constanţa,Costanza,Konstanc,Konstancja,Konstanz,Kostnice,kang si tan ci,konsutantsu,qwnstnz,Констанц,קונסטנץ,コンスタンツ,康斯坦茨 47.66033 9.17582 P PPL DE 01 81275 402 Europe/Berlin 2010-02-01
-2885688 Konradsreuth Konradsreuth 50.26667 11.85 P PPLA4 DE 02 094 09475 09475142 3540 545 Europe/Berlin 2011-04-25
-2885714 Konradsreuth Konradsreuth Konradsreuth 49.74179 12.29628 P PPL DE 02 093 1946 520 Europe/Berlin 2011-12-11
-2885716 Könnern Konnern Konnern,Könnern 51.66667 11.76667 P PPL DE 14 5339 124 Europe/Berlin 2012-01-18
-2885722 Konken Konken 49.51667 7.35 P PPLA4 DE 08 00 07336 07336052 792 353 Europe/Berlin 2011-07-31
-2885723 Könitz Konitz 50.64979 11.48809 P PPL DE 15 1719 332 Europe/Berlin 2010-03-10
-2885732 Königs Wusterhausen Konigs Wusterhausen Konigs Wusterhausen,Königs Wusterhausen 52.30141 13.633 P PPL DE 11 32513 32 Europe/Berlin 2011-08-18
-2885734 Königswinter Konigswinter Konigswinter,Königswinter 50.68333 7.18333 P PPL DE 07 41164 53 Europe/Berlin 2012-01-18
-2885742 Königswartha Konigswartha Konigswartha,Königswartha 51.31667 14.33333 P PPLA4 DE 13 146 14625 14625280 3767 139 Europe/Berlin 2011-04-25
-2885746 Königswalde Konigswalde 50.55 13.05 P PPLA4 DE 13 145 14521 14521340 2477 562 Europe/Berlin 2011-04-25
-2885760 Königstein im Taunus Konigstein im Taunus Konigstein,Konigstein im Taunus,Königstein,Königstein im Taunus 50.18333 8.46667 P PPL DE 05 15661 373 Europe/Berlin 2012-01-18
-2885764 Königstein Konigstein Koenigstein 50.9157 14.07186 P PPL DE 13 146 3011 127 Europe/Berlin 2010-11-15
-2885765 Königstein Konigstein 49.60854 11.63143 P PPL DE 02 093 1761 495 Europe/Berlin 2010-11-15
-2885797 Königsmoor Konigsmoor 53.22628 9.67964 P PPLA4 DE 06 00 03353 03353022 627 42 Europe/Berlin 2011-07-31
-2885800 Königslutter am Elm Konigslutter am Elm Konigslutter,Konigslutter am Elm,Königslutter,Königslutter am Elm 52.25 10.81667 P PPL DE 06 16419 137 Europe/Berlin 2012-01-18
-2885813 Königshügel Konigshugel Konigshugel,Königshügel 54.33333 9.46667 P PPLA4 DE 10 00 01058 01058089 0 255 Europe/Berlin 2011-04-25
-2885829 Bad Königshofen im Grabfeld Bad Konigshofen im Grabfeld Bad Konigshofen,Bad Konigshofen im Grabfeld,Bad Königshofen,Bad Königshofen im Grabfeld,Konigshofen,Konigshofen im Grabfeld,Königshofen,Königshofen im Grabfeld 50.3 10.48333 P PPL DE 02 7066 277 Europe/Berlin 2012-01-18
-2885850 Königsheim Konigsheim 48.1 8.86667 P PPLA4 DE 01 083 08327 08327029 538 895 Europe/Berlin 2011-04-25
-2885863 Königshain Konigshain 51.18333 14.86667 P PPLA4 DE 13 146 14626 14626240 1283 246 Europe/Berlin 2011-04-25
-2885883 Königsfeld Konigsfeld 51.06667 12.75 P PPLA4 DE 13 145 14522 14522280 1770 234 Europe/Berlin 2011-04-25
-2885884 Königsfeld Konigsfeld 50.5 7.18333 P PPLA4 DE 08 00 07131 07131041 623 289 Europe/Berlin 2011-04-25
-2885885 Königsfeld Konigsfeld 49.94603 11.1652 P PPLA4 DE 02 094 09471 09471151 1372 450 Europe/Berlin 2011-04-25
-2885888 Königsfeld im Schwarzwald Konigsfeld im Schwarzwald Konigsfeld,Königsfeld 48.13814 8.41973 P PPLA4 DE 01 083 08326 08326031 6212 761 Europe/Berlin 2011-04-25
-2885892 Königseggwald Konigseggwald 47.93333 9.41667 P PPLA4 DE 01 084 08436 08436053 637 638 Europe/Berlin 2011-04-25
-2885895 Königsee Konigsee Konigsee,Konigssee,Königsee,Königssee 50.66667 11.1 P PPL DE 15 5666 391 Europe/Berlin 2012-01-18
-2885898 Königsdorf Konigsdorf 47.81546 11.48063 P PPLA4 DE 02 091 09173 09173134 2923 638 Europe/Berlin 2011-04-25
-2885908 Königsbrunn Konigsbrunn Konigsbrunn,Königsbrunn 48.26667 10.88333 P PPL DE 02 27494 516 Europe/Berlin 2012-01-18
-2885910 Königsbrück Konigsbruck Kinspork,Konigsbruck,Königsbrück 51.26667 13.9 P PPL DE 13 146 14625 14625270 4815 171 Europe/Berlin 2012-01-18
-2885912 Königsbronn Konigsbronn 48.74317 10.11193 P PPLA4 DE 01 081 08135 08135025 7420 503 Europe/Berlin 2011-04-25
-2885979 Königsau Konigsau 49.85 7.48333 P PPLA4 DE 08 00 07133 07133203 69 286 Europe/Berlin 2011-04-25
-2885991 Königheim Konigheim Konigheim,Königheim 49.62028 9.59583 P PPLA4 DE 01 081 08128 08128061 3283 262 Europe/Berlin 2011-04-25
-2886006 Köngernheim Kongernheim 49.84583 8.24667 P PPLA4 DE 08 00 07339 07339033 1398 132 Europe/Berlin 2011-04-25
-2886008 Köngen Kongen Kongen,Köngen 48.68333 9.36667 P PPLA4 DE 01 081 08116 08116035 9499 284 Europe/Berlin 2011-04-25
-2886050 Kommen Kommen 49.88333 7.13333 P PPLA4 DE 08 00 07231 07231071 284 429 Europe/Berlin 2011-04-25
-2886059 Kölzin Kolzin 53.96326 13.45001 P PPLA4 DE 12 00 13059 13059042 350 28 Europe/Berlin 2011-04-25
-2886065 Kolverath Kolverath Colverath,Kolverath 50.26667 6.96667 P PPLA4 DE 08 00 07233 07233222 142 550 Europe/Berlin 2011-04-25
-2886242 Köln Koeln Augusta Ubiorum,CGN,Cologna,Cologne,Colonha,Colonia,Colonia Agrippina,Colonia Agrippinensis,Colonia Claudia Ara Agrippinensium,Colònia,Colônia,Cołogna,Culonia,Cwlen,Gorad Kjol'n,K'oln,Kel'n,Keln,Kelnas,Kelne,Kelni,Keulen,Kjol'n,Koelle,Koeln,Kolin nad Rynem,Kolin nad Rynom,Koln,Kolon,Kolonia,Kolonjo,Kolín nad Rýnem,Kolín nad Rýnom,Këlni,Kölle,Köln,Lungsod ng Cologne,Oppidum Ubiorum,kalon,ke long,kerun,kholoy,kln,klwn,koelleun,koln,kolon,kwlwnya,kyolna,qln,Ķelne,Κολωνία,Горад Кёльн,Келн,Кельн,Кьолн,Кёльн,Քյոլն,קלן,קעלן,كولونيا,کلن,کلون,क्योल्न,கோல்ன்,కొలోన్,ಕಲೋನ್,โคโลญ,კელნი,ケルン,科隆,쾰른 50.93333 6.95 P PPLA2 DE 07 053 963395 58 Europe/Berlin 2012-03-16
-2886269 Kollweiler Kollweiler 49.51667 7.58333 P PPLA4 DE 08 00 07335 07335019 405 345 Europe/Berlin 2011-04-25
-2886278 Kollow Kollow Kollow 53.46667 10.46667 P PPLA4 DE 10 00 01053 01053071 661 47 Europe/Berlin 2011-04-25
-2886281 Kölln-Reisiek Kolln-Reisiek Kolln-Reisiek,Kölln-Reisiek 53.75748 9.69772 P PPLA4 DE 10 00 01056 01056031 2541 7 Europe/Berlin 2011-08-24
-2886285 Kollnburg Kollnburg 49.04664 12.86121 P PPLA4 DE 02 092 09276 09276128 2934 649 Europe/Berlin 2011-04-25
-2886292 Kollmoor Kollmoor Kollmoor 53.92023 9.59411 P PPLA4 DE 10 00 01061 01061053 36 255 Europe/Berlin 2011-04-25
-2886303 Kollmar Kollmar Kollmar 53.75 9.5 P PPLA4 DE 10 00 01061 01061118 1793 254 Europe/Berlin 2011-04-25
-2886321 Kollig Kollig 50.26667 7.28333 P PPLA4 DE 08 00 07137 07137053 473 294 Europe/Berlin 2011-04-25
-2886363 Kölleda Kolleda 51.18333 11.23333 P PPL DE 15 5824 141 Europe/Berlin 2006-01-17
-2886382 Kolkwitz Kolkwitz Golkojce,Kolkwitz 51.75 14.25 P PPLA4 DE 11 00 12071 12071244 10225 69 Europe/Berlin 2011-04-25
-2886392 Kolkerheide Kolkerheide Kolkerheide 54.61667 9.13333 P PPLA4 DE 10 00 01054 01054071 68 14 Europe/Berlin 2011-04-25
-2886404 Kolitzheim Kolitzheim 49.91667 10.23333 P PPLA4 DE 02 096 09678 09678150 5602 227 Europe/Berlin 2011-04-25
-2886419 Koldenbüttel Koldenbuttel Koldenbuttel,Koldenbüttel 54.38333 9.06667 P PPLA4 DE 10 00 01054 01054070 930 0 Europe/Berlin 2011-04-25
-2886434 Kölbingen Kolbingen 50.55 7.93333 P PPLA4 DE 08 00 07143 07143249 1129 377 Europe/Berlin 2011-07-31
-2886435 Kolbingen Kolbingen Kolbingen 48.05 8.88333 P PPLA4 DE 01 083 08327 08327030 1332 843 Europe/Berlin 2011-04-25
-2886446 Kolbermoor Kolbermoor Kolbermoor 47.85 12.06667 P PPL DE 02 17941 461 Europe/Berlin 2012-01-18
-2886505 Köhn Kohn Kohn,Köhn 54.35 10.45 P PPLA4 DE 10 00 01057 01057039 870 45 Europe/Berlin 2011-04-25
-2886705 Köhlen Kohlen 53.54107 8.87524 P PPLA4 DE 06 00 03352 03352027 942 9 Europe/Berlin 2011-07-05
-2886730 Kohlberg Kohlberg Kohlberg 49.6 12.01667 P PPL DE 02 1270 470 Europe/Berlin 2012-02-02
-2886731 Kohlberg Kohlberg 48.55845 9.33576 P PPLA4 DE 01 081 08116 08116036 2304 468 Europe/Berlin 2011-04-25
-2886821 Kogel Kogel 53.49752 10.95041 P PPLA4 DE 12 00 13054 13054056 623 34 Europe/Berlin 2011-08-28
-2886832 Köfering Kofering 48.93333 12.2 P PPLA4 DE 02 093 09375 09375161 2329 354 Europe/Berlin 2011-04-25
-2886839 Ködnitz Kodnitz 50.1 11.53333 P PPLA4 DE 02 094 09477 09477127 1694 447 Europe/Berlin 2011-04-25
-2886843 Köditz Koditz 50.33333 11.85 P PPLA4 DE 02 094 09475 09475141 2721 514 Europe/Berlin 2011-04-25
-2886846 Kodersdorf Kodersdorf Kodersdorf 51.23333 14.88333 P PPLA4 DE 13 146 14626 14626230 2728 198 Europe/Berlin 2011-04-25
-2886850 Ködderitzsch Kodderitzsch 51.08333 11.5 P PPLA4 DE 15 00 16071 16071044 128 201 Europe/Berlin 2011-04-25
-2886854 Köckte Kockte 52.52541 11.12881 P PPLA4 DE 14 00 15081 15081285 427 61 Europe/Berlin 2011-04-25
-2886918 Köchelstorf Kochelstorf 53.76667 11.1 P PPLA4 DE 12 00 13058 13058056 393 37 Europe/Berlin 2011-04-25
-2886924 Kochel Kochel 47.65926 11.36827 P PPL DE 02 4172 611 Europe/Berlin 2009-06-16
-2886934 Kobrow Kobrow 53.68333 11.8 P PPLA4 DE 12 00 13060 13060040 469 46 Europe/Berlin 2011-04-25
-2886946 Koblenz Koblenz Coblenca,Coblence,Coblentz,Coblenz,Coblenza,Coblença,Confluentes,Koblenc,Koblencja,Koblenz,ke bu lun ci,koburentsu,qwblnz,Кобленц,קובלנץ,コブレンツ,科布倫茨 50.35 7.6 P PPL DE 08 107319 71 Europe/Berlin 2012-01-18
-2886947 Koblentz Koblentz 53.53092 14.13237 P PPLA4 DE 12 00 13062 13062027 261 9 Europe/Berlin 2011-04-25
-2886971 Koberg Koberg Koberg 53.63333 10.51667 P PPLA4 DE 10 00 01053 01053069 727 46 Europe/Berlin 2011-04-25
-2887051 Knorrendorf Knorrendorf 53.63333 13.06667 P PPLA4 DE 12 00 13052 13052044 718 70 Europe/Berlin 2011-04-25
-2887056 Knöringen Knoringen 49.23778 8.14444 P PPLA4 DE 08 00 07337 07337050 488 157 Europe/Berlin 2011-04-25
-2887061 Knopp-Labach Knopp-Labach 49.33333 7.5 P PPLA4 DE 08 00 07340 07340215 471 370 Europe/Berlin 2011-04-25
-2887140 Knittlingen Knittlingen Knittlingen 49.0275 8.75389 P PPL DE 01 7454 214 Europe/Berlin 2012-01-18
-2887141 Knittelsheim Knittelsheim 49.19167 8.25139 P PPLA4 DE 08 00 07334 07334014 1026 126 Europe/Berlin 2011-04-25
-2887194 Knetzgau Knetzgau Knetzgau 49.98333 10.55 P PPLA4 DE 02 096 09674 09674163 6647 247 Europe/Berlin 2011-04-25
-2887207 Kneitlingen Kneitlingen 52.17477 10.76197 P PPLA4 DE 06 00 03158 03158022 851 169 Europe/Berlin 2011-04-25
-2887247 Knau Knau 50.65033 11.71967 P PPLA4 DE 15 00 16075 16075049 692 461 Europe/Berlin 2011-04-25
-2887290 Klütz Klutz Klutz,Klütz 53.96667 11.16667 P PPL DE 12 3229 17 Europe/Berlin 2012-01-18
-2887302 Klüsserath Klusserath Klusserath,Klüsserath 49.83333 6.85 P PPLA4 DE 08 00 07235 07235063 1099 141 Europe/Berlin 2011-04-25
-2887315 Kluse Kluse 52.93633 7.34093 P PPLA4 DE 06 00 03454 03454025 1466 7 Europe/Berlin 2011-09-11
-2887342 Kluis Kluis 54.46667 13.3 P PPLA4 DE 12 00 13061 13061019 416 7 Europe/Berlin 2011-04-25
-2887355 Kludenbach Kludenbach 49.98333 7.36667 P PPLA4 DE 08 00 07140 07140071 111 408 Europe/Berlin 2011-04-25
-2887380 Klötze Klotze Kloetze,Klotze,Klötze 52.61667 11.16667 P PPL DE 14 5398 77 Europe/Berlin 2012-01-18
-2887385 Klotten Klotten 50.16667 7.2 P PPLA4 DE 08 00 07135 07135049 1401 135 Europe/Berlin 2011-04-25
-2887408 Kloster Veßra Kloster Vessra 50.5 10.65 P PPLA4 DE 15 00 16069 16069025 354 386 Europe/Berlin 2011-04-25
-2887444 Klostermansfeld Klostermansfeld Kloster Mansfield,Klostermansfeld 51.58333 11.5 P PPLA4 DE 14 00 15087 15087260 2824 246 Europe/Berlin 2011-04-25
-2887449 Klosterlechfeld Klosterlechfeld 48.16667 10.83333 P PPLA4 DE 02 097 09772 09772162 2351 558 Europe/Berlin 2011-07-31
-2887453 Klosterkumbd Klosterkumbd 50.03333 7.53333 P PPLA4 DE 08 00 07140 07140070 286 429 Europe/Berlin 2011-04-25
-2887599 Klöden Kloden 51.76178 12.83169 P PPLA4 DE 14 00 15091 15091170 648 76 Europe/Berlin 2011-04-25
-2887601 Klocksin Klocksin 53.63333 12.55 P PPLA4 DE 12 00 13056 13056031 456 76 Europe/Berlin 2011-04-25
-2887629 Klixbüll Klixbull Klixbull,Klixbüll 54.8 8.9 P PPLA4 DE 10 00 01054 01054068 983 4 Europe/Berlin 2011-04-25
-2887637 Klitten Klitten Kletno,Klitten,Klětno 51.35 14.6 P PPL DE 13 1510 131 Europe/Berlin 2012-01-18
-2887645 Klipphausen Klipphausen Klipphausen 51.08333 13.53333 P PPLA4 DE 13 146 14627 14627100 6161 251 Europe/Berlin 2011-04-25
-2887666 Klinkrade Klinkrade Klinkrade 53.71667 10.55 P PPLA4 DE 10 00 01053 01053068 539 55 Europe/Berlin 2011-04-25
-2887686 Klink Klink 53.48333 12.61667 P PPLA4 DE 12 00 13056 13056030 1160 66 Europe/Berlin 2011-04-25
-2887691 Klings Klings 50.65 10.11667 P PPLA4 DE 15 00 16063 16063045 511 485 Europe/Berlin 2011-04-25
-2887713 Klingenthal Klingenthal Klingenthal 50.36667 12.46667 P PPL DE 13 9132 583 Europe/Berlin 2012-01-18
-2887718 Klingenmünster Klingenmunster 49.14056 8.01861 P PPLA4 DE 08 00 07337 07337049 2432 173 Europe/Berlin 2011-04-25
-2887736 Klingenberg am Main Klingenberg am Main Klingenberg,Klingenberg am Main 49.78417 9.18611 P PPL DE 02 6294 162 Europe/Berlin 2012-01-18
-2887766 Klingelbach Klingelbach 50.28333 7.98333 P PPLA4 DE 08 00 07141 07141073 762 334 Europe/Berlin 2011-04-25
-2887805 Klietz Klietz Klietz 52.68333 12.06667 P PPLA4 DE 14 00 15090 15090310 1618 39 Europe/Berlin 2011-04-25
-2887812 Klieken Klieken Klieken 51.88333 12.36667 P PPL DE 14 1111 57 Europe/Berlin 2012-01-18
-2887816 Kliding Kliding 50.11667 7.05 P PPLA4 DE 08 00 07135 07135048 223 412 Europe/Berlin 2011-04-25
-2887833 Kleve Kleve 54.3 9.13333 P PPLA4 DE 10 00 01051 01051060 0 254 Europe/Berlin 2011-04-25
-2887834 Kleve Kleve 53.96667 9.4 P PPLA4 DE 10 00 01061 01061052 634 2 Europe/Berlin 2011-04-25
-2887835 Kleve Kleve Cleeve,Cleve,Cleveris,Cleves,Clèves,Cléveris,Kleef,Kleve,kurefe,Клеве,クレーフェ 51.78333 6.15 P PPL DE 07 49072 15 Europe/Berlin 2012-01-18
-2887843 Kletzin Kletzin 53.93333 13.16667 P PPLA4 DE 12 00 13052 13052095 463 10 Europe/Berlin 2011-04-25
-2887847 Klettstedt Klettstedt 51.15 10.75 P PPLA4 DE 15 00 16064 16064036 249 222 Europe/Berlin 2011-04-25
-2887857 Klettbach Klettbach 50.91667 11.15 P PPLA4 DE 15 00 16071 16071043 1334 392 Europe/Berlin 2011-04-25
-2887858 Kletkamp Kletkamp Kletkamp 54.25 10.63333 P PPLA4 DE 10 00 01057 01057038 155 36 Europe/Berlin 2011-04-25
-2887918 Klempau Klempau Klempau 53.76667 10.66667 P PPLA4 DE 10 00 01053 01053067 607 16 Europe/Berlin 2011-04-25
-2887952 Klein Zecher Klein Zecher Klein Zecher 53.58333 10.86667 P PPLA4 DE 10 00 01053 01053066 241 45 Europe/Berlin 2011-04-25
-2887981 Klein Wittensee Klein Wittensee Klein Wittensee 54.38333 9.73333 P PPLA4 DE 10 00 01058 01058088 221 3 Europe/Berlin 2011-04-25
-2887987 Klein-Winternheim Klein-Winternheim 49.93833 8.21194 P PPLA4 DE 08 00 07339 07339032 3485 156 Europe/Berlin 2011-04-25
-2888007 Klein Wesenberg Klein Wesenberg Klein Wesenberg 53.81667 10.55 P PPLA4 DE 10 00 01062 01062039 771 21 Europe/Berlin 2011-04-25
-2888015 Kleinwenden Kleinwenden Grosslohra-Kleinwenden,Großlohra-Kleinwenden,Kleinwenden 51.41667 10.66667 P PPL DE 15 1043 292 Europe/Berlin 2012-01-18
-2888018 Kleinwelsbach Kleinwelsbach 51.18333 10.66667 P PPLA4 DE 15 00 16064 16064035 135 231 Europe/Berlin 2011-04-25
-2888047 Klein Wanzleben Klein Wanzleben Klein Wanzleben 52.06667 11.36667 P PPL DE 14 2541 121 Europe/Berlin 2012-01-18
-2888053 Kleinwallstadt Kleinwallstadt Kleinwallstadt 49.87194 9.16778 P PPL DE 02 5816 124 Europe/Berlin 2012-01-18
-2888078 Klein Vielen Klein Vielen 53.45249 13.02755 P PPLA4 DE 12 00 13055 13055035 783 74 Europe/Berlin 2011-04-25
-2888097 Klein Upahl Klein Upahl 53.71667 12.06667 P PPLA4 DE 12 00 13053 13053041 281 57 Europe/Berlin 2011-04-25
-2888112 Klein Trebbow Klein Trebbow 53.7 11.38333 P PPLA4 DE 12 00 13058 13058053 810 68 Europe/Berlin 2011-04-25
-2888172 Kleinsteinhausen Kleinsteinhausen 49.2 7.46667 P PPLA4 DE 08 00 07340 07340214 875 299 Europe/Berlin 2011-04-25
-2888210 Kleinsendelbach Kleinsendelbach 49.59558 11.15773 P PPLA4 DE 02 094 09474 09474144 1542 312 Europe/Berlin 2011-04-25
-2888222 Klein Schwülper Klein Schwulper 52.34153 10.42903 P PPL DE 06 6606 66 Europe/Berlin 2011-03-17
-2888240 Kleinschwabhausen Kleinschwabhausen 50.9316 11.46114 P PPLA4 DE 15 00 16071 16071042 264 317 Europe/Berlin 2011-04-25
-2888309 Klein Rönnau Klein Ronnau Klein Ronnau,Klein Rönnau 53.96667 10.31667 P PPLA4 DE 10 00 01060 01060049 1492 24 Europe/Berlin 2011-04-25
-2888316 Klein Rogahn Klein Rogahn 53.60534 11.34579 P PPLA4 DE 12 00 13054 13054054 1268 46 Europe/Berlin 2011-04-25
-2888323 Kleinrinderfeld Kleinrinderfeld 49.70028 9.84472 P PPLA4 DE 02 096 09679 09679155 2094 309 Europe/Berlin 2011-04-25
-2888333 Klein Rheide Klein Rheide Klein Rheide 54.45 9.48333 P PPLA4 DE 10 00 01059 01059051 367 13 Europe/Berlin 2011-04-25
-2888344 Klein Reken Klein Reken 51.78333 7.03333 P PPL DE 07 14306 66 Europe/Berlin 2006-01-17
-2888402 Klein Pampau Klein Pampau 53.51245 10.5891 P PPLA4 DE 10 00 01053 01053064 640 28 Europe/Berlin 2011-04-25
-2888411 Kleinostheim Kleinostheim 50 9.06667 P PPLA4 DE 02 096 09671 09671136 8409 113 Europe/Berlin 2011-04-25
-2888432 Kleinobringen Kleinobringen 51.03333 11.31667 P PPLA4 DE 15 00 16071 16071039 288 284 Europe/Berlin 2011-04-25
-2888436 Klein Nordende Klein Nordende Klein Nordende 53.71667 9.65 P PPLA4 DE 10 00 01056 01056029 3027 8 Europe/Berlin 2011-04-25
-2888441 Kleinniedesheim Kleinniedesheim 49.58694 8.32222 P PPLA4 DE 08 00 07338 07338015 922 97 Europe/Berlin 2011-04-25
-2888450 Kleinneuhausen Kleinneuhausen 51.15 11.28333 P PPLA4 DE 15 00 16068 16068033 444 145 Europe/Berlin 2011-04-25
-2888484 Kleinmölsen Kleinmolsen 51.03333 11.11667 P PPLA4 DE 15 00 16068 16068032 382 200 Europe/Berlin 2011-04-25
-2888511 Klein Meckelsen Klein Meckelsen 53.3 9.45 P PPLA4 DE 06 00 03357 03357032 880 37 Europe/Berlin 2011-04-25
-2888520 Kleinmaischeid Kleinmaischeid 50.51667 7.6 P PPLA4 DE 08 00 07138 07138034 1295 280 Europe/Berlin 2011-04-25
-2888523 Kleinmachnow Kleinmachnow 52.40786 13.22514 P PPLA4 DE 11 00 12069 12069304 17892 47 Europe/Berlin 2011-07-31
-2888527 Klein Lukow Klein Lukow 53.53333 13.03333 P PPLA4 DE 12 00 13056 13056029 278 55 Europe/Berlin 2011-04-25
-2888532 Klein Luckow Klein Luckow 53.56667 13.83333 P PPLA4 DE 12 00 13062 13062026 247 71 Europe/Berlin 2011-04-25
-2888584 Kleinlangheim Kleinlangheim Kleinlangheim 49.76667 10.28333 P PPL DE 02 1691 228 Europe/Berlin 2012-01-18
-2888587 Kleinlangenfeld Kleinlangenfeld 50.26667 6.48333 P PPLA4 DE 08 00 07232 07232250 156 549 Europe/Berlin 2011-04-25
-2888594 Klein Kussewitz Klein Kussewitz 54.13333 12.23333 P PPLA4 DE 12 00 13051 13051037 758 14 Europe/Berlin 2011-04-25
-2888676 Kleinkarlbach Kleinkarlbach 49.53861 8.14972 P PPLA4 DE 08 00 07332 07332031 900 182 Europe/Berlin 2011-04-25
-2888684 Kleinkahl Kleinkahl 50.11667 9.26667 P PPLA4 DE 02 096 09671 09671135 1849 345 Europe/Berlin 2011-04-25
-2888707 Kleinich Kleinich 49.9 7.18333 P PPLA4 DE 08 00 07231 07231070 741 424 Europe/Berlin 2011-04-25
-2888751 Kleinheubach Kleinheubach Kleinheubach 49.72278 9.21472 P PPL DE 02 3436 128 Europe/Berlin 2012-01-18
-2888812 Klein Gusborn Klein Gusborn 53.08333 11.2 P PPL DE 06 1294 15 Europe/Berlin 2006-01-17
-2888853 Klein Gladebrügge Klein Gladebrugge Klein Gladebrugge,Klein Gladebrügge 53.91667 10.31667 P PPLA4 DE 10 00 01060 01060048 600 42 Europe/Berlin 2011-04-25
-2888890 Kleinfurra Kleinfurra 51.4 10.76667 P PPLA4 DE 15 00 16062 16062026 1243 227 Europe/Berlin 2011-04-25
-2888912 Kleinfischlingen Kleinfischlingen 49.26333 8.18694 P PPLA4 DE 08 00 07337 07337048 306 133 Europe/Berlin 2011-04-25
-2888937 Kleineutersdorf Kleineutersdorf Kleineutersdorf 50.78333 11.58333 P PPLA4 DE 15 00 16074 16074048 393 228 Europe/Berlin 2011-04-25
-2889572 Kleinebersdorf Kleinebersdorf Kleinebersdorf 50.81667 11.83333 P PPLA4 DE 15 00 16074 16074047 186 291 Europe/Berlin 2011-04-25
-2889642 Klein Bünzow Klein Bunzow 53.93333 13.63333 P PPLA4 DE 12 00 13059 13059041 904 28 Europe/Berlin 2011-04-25
-2889645 Kleinbundenbach Kleinbundenbach 49.31667 7.43333 P PPLA4 DE 08 00 07340 07340213 441 356 Europe/Berlin 2011-04-25
-2889673 Kleinbrembach Kleinbrembach 51.13333 11.26667 P PPLA4 DE 15 00 16068 16068031 340 175 Europe/Berlin 2011-04-25
-2889701 Kleinbodungen Kleinbodungen 51.46667 10.53333 P PPLA4 DE 15 00 16062 16062025 418 248 Europe/Berlin 2011-04-25
-2889704 Kleinbockedra Kleinbockedra Kleinbockedra 50.85 11.65 P PPLA4 DE 15 00 16074 16074046 46 243 Europe/Berlin 2011-04-25
-2889709 Kleinblittersdorf Kleinblittersdorf 49.1578 7.03734 P PPLA4 DE 09 00 10041 10041514 12948 205 Europe/Berlin 2011-04-25
-2889729 Klein Berßen Klein Berssen 52.76667 7.45 P PPLA4 DE 06 00 03454 03454024 1177 25 Europe/Berlin 2011-04-25
-2889746 Klein Bennebek Klein Bennebek Klein Bennebek 54.4 9.45 P PPLA4 DE 10 00 01059 01059050 583 6 Europe/Berlin 2011-04-25
-2889750 Klein Belitz Klein Belitz 53.9382 11.96617 P PPLA4 DE 12 00 13053 13053039 917 12 Europe/Berlin 2011-04-25
-2889756 Kleinbartloff Kleinbartloff Kleinbartloff 51.35 10.38333 P PPLA4 DE 15 00 16061 16061059 494 337 Europe/Berlin 2011-04-25
-2889766 Klein Barkau Klein Barkau Klein Barkau 54.23333 10.13333 P PPLA4 DE 10 00 01057 01057037 255 46 Europe/Berlin 2011-04-25
-2889814 Kleinaitingen Kleinaitingen 48.21667 10.83333 P PPLA4 DE 02 097 09772 09772160 1428 545 Europe/Berlin 2011-04-25
-2889975 Klausen Klausen 49.9 6.88333 P PPLA4 DE 08 00 07231 07231069 1335 276 Europe/Berlin 2011-04-25
-2889989 Klausdorf Klausdorf Clausdorf 54.40424 13.01331 P PPLA4 DE 12 00 13057 13057047 659 9 Europe/Berlin 2011-04-25
-2889990 Klausdorf Klausdorf 54.30899 10.21372 P PPL DE 10 6047 6 Europe/Berlin 2008-07-18
-2890066 Klappholz Klappholz Klappholz 54.61667 9.55 P PPLA4 DE 10 00 01059 01059049 518 56 Europe/Berlin 2011-04-25
-2890086 Klanxbüll Klanxbull 54.88333 8.68333 P PPLA4 DE 10 00 01054 01054065 969 0 Europe/Berlin 2011-04-25
-2890093 Klamp Klamp Klamp 54.3 10.53333 P PPLA4 DE 10 00 01057 01057035 768 59 Europe/Berlin 2011-04-25
-2890155 Kitzscher Kitzscher Kitzscher 51.16667 12.56667 P PPL DE 13 6152 167 Europe/Berlin 2012-01-18
-2890158 Kitzingen Kitzingen Kitzingen 49.73333 10.16667 P PPL DE 02 21387 188 Europe/Berlin 2012-02-02
-2890168 Kitzen Kitzen 51.21667 12.23333 P PPLA4 DE 13 147 14729 14729210 2036 128 Europe/Berlin 2011-04-25
-2890178 Kittlitz Kittlitz 53.66407 10.91698 P PPLA4 DE 10 00 01053 01053062 286 52 Europe/Berlin 2011-04-25
-2890187 Kittendorf Kittendorf 53.63333 12.9 P PPLA4 DE 12 00 13052 13052042 372 49 Europe/Berlin 2011-04-25
-2890197 Kist Kist 49.74278 9.84389 P PPLA4 DE 02 096 09679 09679154 2547 364 Europe/Berlin 2011-04-25
-2890199 Kißlegg Kisslegg 47.78894 9.88383 P PPLA4 DE 01 084 08436 08436052 8604 652 Europe/Berlin 2011-04-25
-2890202 Kissing Kissing 48.30375 10.97088 P PPLA4 DE 02 097 09771 09771142 11150 501 Europe/Berlin 2011-04-25
-2890204 Kissenbrück Kissenbruck Kissenbruck,Kissenbrück,Kissinbruck,Kissinbrück 52.10956 10.58996 P PPLA4 DE 06 00 03158 03158021 1889 84 Europe/Berlin 2011-04-25
-2890208 Kisselbach Kisselbach 50.05 7.61667 P PPLA4 DE 08 00 07140 07140068 598 419 Europe/Berlin 2011-04-25
-2890218 Kisdorf Kisdorf Kisdorf 53.81667 10.01667 P PPLA4 DE 10 00 01060 01060047 3445 47 Europe/Berlin 2011-04-25
-2890222 Kirtorf Kirtorf Kirthoff,Kirtorf 50.76667 9.11667 P PPL DE 05 3649 293 Europe/Berlin 2012-01-18
-2890226 Kirschweiler Kirschweiler 49.75 7.25 P PPLA4 DE 08 00 07134 07134047 1169 485 Europe/Berlin 2011-04-25
-2890230 Kirschroth Kirschroth 49.76667 7.56667 P PPLA4 DE 08 00 07133 07133053 291 404 Europe/Berlin 2011-04-25
-2890235 Kirschkau Kirschkau Kirschkau 50.6 11.9 P PPLA4 DE 15 00 16075 16075048 241 489 Europe/Berlin 2011-04-25
-2890273 Kirschau Kirschau 51.09317 14.4284 P PPLA4 DE 13 146 14625 14625260 2607 245 Europe/Berlin 2011-07-31
-2890276 Kirsbach Kirsbach 50.33333 7 P PPLA4 DE 08 00 07233 07233220 91 493 Europe/Berlin 2011-04-25
-2890277 Kirrweiler Kirrweiler 49.63333 7.5 P PPLA4 DE 08 00 07336 07336050 206 325 Europe/Berlin 2011-04-25
-2890278 Kirrweiler Kirrweiler Kirrweiler 49.30194 8.16556 P PPL DE 08 2034 142 Europe/Berlin 2012-02-02
-2890314 Kirn Kirn Kirn 49.78333 7.45 P PPL DE 08 8762 270 Europe/Berlin 2012-01-18
-2890322 Kirkel Kirkel Kirkel 49.28333 7.23333 P PPLA4 DE 09 00 10045 10045115 10330 249 Europe/Berlin 2011-04-25
-2890324 Kirf Kirf 49.55 6.48333 P PPLA4 DE 08 00 07235 07235062 728 294 Europe/Berlin 2011-04-25
-2890327 Kirchzell Kirchzell Kirchzell 49.61889 9.17778 P PPL DE 02 2468 212 Europe/Berlin 2012-02-02
-2890328 Kirchzarten Kirchzarten Kirchzarten 47.96667 7.95 P PPLA4 DE 01 083 08315 08315064 9730 376 Europe/Berlin 2011-04-25
-2890329 Kirchworbis Kirchworbis Kirchworbis 51.4 10.4 P PPLA4 DE 15 00 16061 16061058 1491 289 Europe/Berlin 2011-04-25
-2890330 Kirchwistedt Kirchwistedt 53.4235 8.89043 P PPLA4 DE 06 00 03352 03352026 516 15 Europe/Berlin 2011-10-30
-2890335 Kirchweiler Kirchweiler 50.23333 6.75 P PPLA4 DE 08 00 07233 07233039 405 543 Europe/Berlin 2011-04-25
-2890336 Kirchweidach Kirchweidach 48.08333 12.63333 P PPLA4 DE 02 091 09171 09171122 2274 508 Europe/Berlin 2011-07-31
-2890344 Kirchwalsede Kirchwalsede 53.01667 9.4 P PPLA4 DE 06 00 03357 03357031 1334 57 Europe/Berlin 2011-04-25
-2890353 Kirchtimke Kirchtimke 53.25 9.15 P PPLA4 DE 06 00 03357 03357030 1007 42 Europe/Berlin 2011-04-25
-2890381 Kirchseeon Kirchseeon 48.07143 11.88875 P PPL DE 02 9174 564 Europe/Berlin 2009-01-21
-2890382 Kirchseelte Kirchseelte 52.95 8.68333 P PPLA4 DE 06 00 03458 03458011 1257 14 Europe/Berlin 2011-04-25
-2890394 Kirchroth Kirchroth 48.95 12.55 P PPLA4 DE 02 092 09278 09278141 3699 321 Europe/Berlin 2011-04-25
-2890405 Kirchnüchel Kirchnuchel Kirchnuchel,Kirchnüchel 54.2 10.68333 P PPLA4 DE 10 00 01057 01057034 181 110 Europe/Berlin 2011-04-25
-2890407 Kirch Mulsow Kirch Mulsow 53.96667 11.7 P PPLA4 DE 12 00 13051 13051036 369 55 Europe/Berlin 2011-04-25
-2890420 Kirchlinteln Kirchlinteln Kirchlinteln 52.95 9.31667 P PPLA4 DE 06 00 03361 03361005 10487 51 Europe/Berlin 2011-07-31
-2890425 Kirchlengern Kirchlengern 52.2 8.63333 P PPLA4 DE 07 057 05758 05758020 16338 64 Europe/Berlin 2011-04-25
-2890429 Kirchlauter Kirchlauter 50.05 10.71667 P PPLA4 DE 02 096 09674 09674160 1445 384 Europe/Berlin 2011-04-25
-2890439 Kirch Jesar Kirch Jesar 53.43333 11.28333 P PPLA4 DE 12 00 13054 13054052 702 20 Europe/Berlin 2011-04-25
-2890442 Kirchhundem Kirchhundem Kirchhundem,Kirchhunden 51.1 8.1 P PPLA4 DE 07 059 05966 05966016 12966 504 Europe/Berlin 2011-04-25
-2890473 Kirchheim unter Teck Kirchheim unter Teck Kirchheim,Kirkhgajm-unter-Tek,Кирхгайм-унтер-Тек 48.64683 9.45378 P PPL DE 01 40206 316 Europe/Berlin 2010-01-29
-2890478 Kirchheimbolanden Kirchheimbolanden Kircheimbolanden,Kirchheimbolanden 49.6725 8.01889 P PPL DE 08 8006 250 Europe/Berlin 2012-01-18
-2890479 Kirchheim bei München Kirchheim bei Muenchen Kirchheim 48.17656 11.75563 P PPLX DE 02 091 12135 511 Europe/Berlin 2010-11-15
-2890480 Kirchheim an der Weinstraße Kirchheim an der Weinstrasse Kirchheim,Kirchheim an der Eck,Kirchheim an der Weinstrasse,Kirchheim an der Weinstraße 49.53722 8.18083 P PPLA4 DE 08 00 07332 07332030 1734 164 Europe/Berlin 2011-07-31
-2890481 Kirchheim am Ries Kirchheim am Ries Kirchheim 48.87922 10.40028 P PPLA4 DE 01 081 08136 08136037 2113 498 Europe/Berlin 2011-04-25
-2890482 Kirchheim am Neckar Kirchheim am Neckar Kirchheim,Kirchheim am Neckar 49.045 9.14222 P PPLA4 DE 01 081 08118 08118040 5193 186 Europe/Berlin 2011-04-25
-2890484 Kirchheim Kirchheim 50.88333 11.01667 P PPLA4 DE 15 00 16070 16070031 1219 253 Europe/Berlin 2011-04-25
-2890485 Kirchheim Kirchheim Kirchheim 50.83333 9.56667 P PPLA4 DE 05 066 06632 06632011 3913 246 Europe/Berlin 2011-04-25
-2890487 Kirchheim Kirchheim 49.65 9.86667 P PPLA4 DE 02 096 09679 09679153 2176 305 Europe/Berlin 2011-04-25
-2890488 Kirchheim Kirchheim 48.1749 10.47461 P PPL DE 02 2563 579 Europe/Berlin 2010-08-16
-2890490 Kirchheilingen Kirchheilingen Kirchheilingen,Kirchhelingen 51.18333 10.7 P PPLA4 DE 15 00 16064 16064033 882 238 Europe/Berlin 2011-04-25
-2890495 Kirchhaslach Kirchhaslach 48.1504 10.31015 P PPLA4 DE 02 097 09778 09778157 1283 554 Europe/Berlin 2011-07-31
-2890499 Kirchham Kirchham 48.34638 13.26719 P PPLA4 DE 02 092 09275 09275130 2435 333 Europe/Berlin 2011-07-31
-2890504 Kirchhain Kirchhain Kirchhain 50.81667 8.96667 P PPL DE 05 16381 197 Europe/Berlin 2012-01-18
-2890511 Kirchgellersen Kirchgellersen 53.23333 10.3 P PPLA4 DE 06 00 03355 03355020 2122 34 Europe/Berlin 2011-04-25
-2890513 Kirchgandern Kirchgandern Kirchgandern 51.36667 9.95 P PPLA4 DE 15 00 16061 16061057 603 214 Europe/Berlin 2011-04-25
-2890526 Kirchenthumbach Kirchenthumbach Kirchenthumbach,Tumbach 49.75 11.71667 P PPL DE 02 3448 467 Europe/Berlin 2012-01-18
-2890527 Kirchentellinsfurt Kirchentellinsfurt 48.53315 9.14732 P PPLA4 DE 01 084 08416 08416022 5406 367 Europe/Berlin 2011-04-25
-2890532 Kirchensittenbach Kirchensittenbach 49.55601 11.42226 P PPLA4 DE 02 095 09574 09574135 2238 383 Europe/Berlin 2011-04-25
-2890539 Kirchenpingarten Kirchenpingarten 49.93333 11.78333 P PPLA4 DE 02 094 09472 09472156 1405 578 Europe/Berlin 2011-04-25
-2890544 Kirchenlamitz Kirchenlamitz Kirchenlamitz 50.15 11.95 P PPL DE 02 3939 598 Europe/Berlin 2012-01-18
-2890567 Kirchendemenreuth Kirchendemenreuth 49.78333 12.1 P PPLA4 DE 02 093 09374 09374128 950 564 Europe/Berlin 2011-04-25
-2890586 Kirchen Kirchen Kirchen,Kirchen an der Sieg 50.8 7.88333 P PPL DE 08 9342 251 Europe/Berlin 2012-01-18
-2890590 Eiselfing Eiselfing Kircheiselfing 48.04114 12.24272 P PPLA4 DE 02 091 09187 09187126 2956 482 Europe/Berlin 2011-07-31
-2890591 Kircheib Kircheib 50.70921 7.45967 P PPLA4 DE 08 00 07132 07132062 555 314 Europe/Berlin 2011-10-26
-2890592 Kirchehrenbach Kirchehrenbach 49.73333 11.15 P PPLA4 DE 02 094 09474 09474143 2304 285 Europe/Berlin 2011-04-25
-2890599 Kirchdorf im Wald Kirchdorf im Wald Kirchdorf,Kirchdorf im Wald 48.91667 13.26667 P PPL DE 02 2176 717 Europe/Berlin 2012-01-18
-2890602 Kirchdorf am Inn Kirchdorf am Inn Kirchdorf,Kirchdorf am Inn 48.25 12.98333 P PPL DE 02 5366 359 Europe/Berlin 2012-01-18
-2890609 Kirchdorf Kirchdorf Kierchdorf 52.59523 8.8349 P PPLA4 DE 06 00 03251 03251021 2029 41 Europe/Berlin 2011-07-31
-2890613 Kirchdorf Kirchdorf 48.76667 11.91667 P PPLA4 DE 02 092 09273 09273139 0 403 Europe/Berlin 2011-04-25
-2890615 Kirchdorf Kirchdorf 48.46667 11.65 P PPL DE 02 2652 472 Europe/Berlin 2006-01-17
-2890616 Kirchdorf Kirchdorf 48.17542 12.19646 P PPLA4 DE 02 091 09183 09183123 1293 548 Europe/Berlin 2011-04-25
-2890617 Kirchdorf Kirchdorf 48.08333 10.13333 P PPL DE 01 3679 548 Europe/Berlin 2006-01-17
-2890635 Kirchbrak Kirchbrak 51.96585 9.5751 P PPLA4 DE 06 00 03255 03255025 1176 116 Europe/Berlin 2011-04-25
-2890645 Kirchberg an der Murr Kirchberg an der Murr Kirchberg 48.94297 9.34083 P PPLA4 DE 01 081 08119 08119038 3593 284 Europe/Berlin 2011-04-25
-2890646 Kirchberg an der Jagst Kirchberg an der Jagst Kirchberg,Kirchberg an der Jagst 49.20139 9.98139 P PPL DE 01 4476 381 Europe/Berlin 2012-01-18
-2890647 Kirchberg an der Iller Kirchberg an der Iller Kirchberg,Kirchberg an der Iller 48.13333 10.08333 P PPLA4 DE 01 084 08426 08426065 1901 537 Europe/Berlin 2011-04-25
-2890657 Kirchberg Kirchberg Erlbach-Kirchberg,Kirchberg 50.76667 12.76667 P PPL DE 13 1838 402 Europe/Berlin 2012-01-18
-2890659 Kirchberg Kirchberg Kirchberg 50.61667 12.53333 P PPL DE 13 9400 369 Europe/Berlin 2012-01-18
-2890660 Kirchberg Kirchberg Kirchberg 49.95 7.4 P PPL DE 08 3797 399 Europe/Berlin 2012-02-02
-2890662 Kirchberg Kirchberg Kirchberg,Kirchberg im Wald 48.9 13.18333 P PPL DE 02 4279 669 Europe/Berlin 2012-01-18
-2890670 Kirchberg Kirchberg 48.4 12.05 P PPLA4 DE 02 091 09177 09177124 884 519 Europe/Berlin 2011-04-25
-2890762 Kirchbarkau Kirchbarkau Kirchbarkau 54.21667 10.15 P PPLA4 DE 10 00 01057 01057033 781 32 Europe/Berlin 2011-04-25
-2890769 Kirchardt Kirchardt Kirchardt 49.205 8.99167 P PPLA4 DE 01 081 08125 08125049 5592 227 Europe/Berlin 2011-04-25
-2890770 Kirchanschöring Kirchanschoring 47.95303 12.83435 P PPLA4 DE 02 091 09189 09189127 2980 417 Europe/Berlin 2011-07-31
-2890776 Kirburg Kirburg 50.68333 7.93333 P PPLA4 DE 08 00 07143 07143248 628 496 Europe/Berlin 2011-04-25
-2890795 Kippenheim Kippenheim 48.29564 7.8251 P PPLA4 DE 01 083 08317 08317059 5040 169 Europe/Berlin 2011-09-08
-2890827 Kinzenburg Kinzenburg 50.11667 6.35 P PPLA4 DE 08 00 07232 07232249 37 433 Europe/Berlin 2011-04-25
-2890838 Kinsau Kinsau 47.88333 10.91667 P PPLA4 DE 02 091 09181 09181129 999 642 Europe/Berlin 2011-04-25
-2890845 Kinheim Kinheim 49.96667 7.05 P PPLA4 DE 08 00 07231 07231068 828 157 Europe/Berlin 2011-04-25
-2890854 Kindsbach Kindsbach 49.41667 7.61667 P PPLA4 DE 08 00 07335 07335018 2521 255 Europe/Berlin 2011-04-25
-2890873 Kinderbeuern Kinderbeuern 50 7.01667 P PPLA4 DE 08 00 07231 07231067 1119 195 Europe/Berlin 2011-04-25
-2890874 Kindenheim Kindenheim 49.61111 8.16417 P PPLA4 DE 08 00 07332 07332029 1028 224 Europe/Berlin 2011-04-25
-2890880 Kindelbrück Kindelbruck 51.26667 11.08333 P PPL DE 15 1985 136 Europe/Berlin 2006-01-17
-2890919 Kiliansroda Kiliansroda 50.91467 11.37162 P PPLA4 DE 15 00 16071 16071038 222 330 Europe/Berlin 2011-04-25
-2890943 Kieve Kieve 53.27456 12.59377 P PPLA4 DE 12 00 13056 13056028 164 68 Europe/Berlin 2011-07-31
-2890984 Kieselbronn Kieselbronn 48.93333 8.75 P PPLA4 DE 01 082 08236 08236031 2814 370 Europe/Berlin 2011-04-25
-2890996 Kiesby Kiesby Kiesby 54.61667 9.81667 P PPLA4 DE 10 00 01059 01059047 238 18 Europe/Berlin 2011-04-25
-2891014 Kierspe Kierspe Kierspe 51.13333 7.58333 P PPL DE 07 18188 376 Europe/Berlin 2012-01-18
-2891069 Kienberg Kienberg 48.05 12.46667 P PPLA4 DE 02 091 09189 09189126 1320 532 Europe/Berlin 2011-04-25
-2891122 Kiel Kiel Kiel,Kielia,Kielo,Kijlo,Kil,Kil',Kilonia,Kyle,ji er,kil,kiru,kyl,qyl,Κίελο,Кил,Киль,קיל,كيل,キール,基尔,킬 54.32133 10.13489 P PPLA DE 10 232758 7 Europe/Berlin 2008-07-18
-2891175 Kiefersfelden Kiefersfelden 47.61409 12.19096 P PPLA4 DE 02 091 09187 09187148 6912 484 Europe/Berlin 2011-07-31
-2891205 Kiedrich Kiedrich Kiedrich 50.03333 8.08333 P PPLA4 DE 05 064 06439 06439009 3869 175 Europe/Berlin 2011-04-25
-2891212 Kiebitzreihe Kiebitzreihe Kiebitzreihe 53.78333 9.61667 P PPLA4 DE 10 00 01061 01061050 2256 2 Europe/Berlin 2011-04-25
-2891234 Kickeshausen Kickeshausen 50.06667 6.25 P PPLA4 DE 08 00 07232 07232248 36 438 Europe/Berlin 2011-04-25
-2891258 Kevelaer Kevelaer Kevelaer 51.58333 6.25 P PPL DE 07 28064 23 Europe/Berlin 2012-01-18
-2891282 Ketzin Ketzin Ketzin 52.46667 12.85 P PPL DE 11 6500 26 Europe/Berlin 2012-01-18
-2891297 Kettig Kettig 50.4 7.46667 P PPLA4 DE 08 00 07137 07137211 3325 74 Europe/Berlin 2011-04-25
-2891300 Kettershausen Kettershausen 48.18333 10.26667 P PPLA4 DE 02 097 09778 09778221 1753 550 Europe/Berlin 2011-04-25
-2891310 Kettenkamp Kettenkamp 52.58333 7.83333 P PPLA4 DE 06 00 03459 03459023 1760 47 Europe/Berlin 2011-04-25
-2891313 Kettenheim Kettenheim 49.72167 8.11333 P PPLA4 DE 08 00 07331 07331042 273 203 Europe/Berlin 2011-04-25
-2891314 Kettenhausen Kettenhausen 50.71667 7.63333 P PPLA4 DE 08 00 07132 07132061 247 276 Europe/Berlin 2011-04-25
-2891343 Ketsch Ketsch Ketsch 49.36778 8.53111 P PPLA4 DE 01 082 08226 08226037 13124 101 Europe/Berlin 2011-07-31
-2891352 Kestert Kestert 50.18333 7.65 P PPLA4 DE 08 00 07141 07141072 745 146 Europe/Berlin 2011-04-25
-2891355 Kesten Kesten 49.9 6.95 P PPLA4 DE 08 00 07231 07231066 343 248 Europe/Berlin 2011-04-25
-2891368 Kessin Kessin 53.73333 13.31667 P PPL DE 12 1489 38 Europe/Berlin 2006-01-17
-2891404 Kesseling Kesseling 50.48333 7.01667 P PPLA4 DE 08 00 07131 07131039 637 233 Europe/Berlin 2011-04-25
-2891470 Kesfeld Kesfeld 50.15 6.23333 P PPLA4 DE 08 00 07232 07232247 102 506 Europe/Berlin 2011-04-25
-2891476 Kescheid Kescheid 50.66667 7.48333 P PPLA4 DE 08 00 07132 07132060 140 205 Europe/Berlin 2011-04-25
-2891480 Kerzenheim Kerzenheim 49.57639 8.05972 P PPLA4 DE 08 00 07333 07333038 2271 258 Europe/Berlin 2011-04-25
-2891510 Kerschenbach Kerschenbach 50.35 6.5 P PPLA4 DE 08 00 07233 07233219 190 505 Europe/Berlin 2011-04-25
-2891524 Kerpen Kerpen Kerpe,Kerpen,Керпен 50.86667 6.7 P PPL DE 07 64226 82 Europe/Berlin 2012-01-18
-2891582 Kerben Kerben 50.31667 7.36667 P PPLA4 DE 08 00 07137 07137048 418 259 Europe/Berlin 2011-04-25
-2891585 Keppeshausen Keppeshausen 49.96667 6.16667 P PPLA4 DE 08 00 07232 07232066 25 232 Europe/Berlin 2011-04-25
-2891590 Kenzingen Kenzingen Kenzingen 48.1963 7.76974 P PPL DE 01 9095 172 Europe/Berlin 2011-09-08
-2891605 Kenn Kenn 49.8 6.71667 P PPLA4 DE 08 00 07235 07235060 2550 171 Europe/Berlin 2011-04-25
-2891621 Kempten (Allgäu) Kempten (Allgaeu) 47.72674 10.31389 P PPL DE 02 097 61399 681 Europe/Berlin 2010-11-15
-2891629 Kempfeld Kempfeld 49.78991 7.24634 P PPLA4 DE 08 00 07134 07134046 850 520 Europe/Berlin 2011-04-25
-2891640 Kempenich Kempenich 50.41667 7.13333 P PPLA4 DE 08 00 07131 07131502 1903 467 Europe/Berlin 2011-04-25
-2891643 Kempen Kempen Kempen 51.36667 6.41667 P PPL DE 07 36312 38 Europe/Berlin 2012-01-18
-2891653 Kemnitz Kemnitz 54.06667 13.55 P PPLA4 DE 12 00 13059 13059040 1253 15 Europe/Berlin 2011-04-25
-2891668 Kemnath Kemnath Kemmath Stadt,Kemnat,Kemnath 49.86889 11.895 P PPL DE 02 5322 458 Europe/Berlin 2012-01-18
-2891687 Kemmern Kemmern 49.95486 10.87784 P PPLA4 DE 02 094 09471 09471150 2639 237 239 Europe/Berlin 2011-06-03
-2891691 Kemmenau Kemmenau 50.35 7.75 P PPLA4 DE 08 00 07141 07141071 502 433 Europe/Berlin 2011-04-25
-2891718 Kemberg Kemberg 51.78333 12.63333 P PPL DE 14 2616 66 Europe/Berlin 2006-01-17
-2891742 Kelsterbach Kelsterbach Kelsterbach 50.06667 8.53333 P PPL DE 05 13836 111 Europe/Berlin 2012-01-18
-2891749 Kellmünz Kellmunz 48.12159 10.12811 P PPL DE 02 1391 571 Europe/Berlin 2011-05-31
-2891750 Kellinghusen Kellinghusen Kellinghusen 53.95202 9.71959 P PPL DE 10 7921 17 Europe/Berlin 2010-10-13
-2891814 Kellenhusen Kellenhusen Kellenhusen 54.18333 11.06667 P PPL DE 10 1074 -9999 Europe/Berlin 2012-01-18
-2891818 Kellenbach Kellenbach 49.85 7.48333 P PPLA4 DE 08 00 07133 07133202 264 286 Europe/Berlin 2011-04-25
-2891829 Kella Kella Kella 51.23333 10.08333 P PPLA4 DE 15 00 16061 16061056 594 299 Europe/Berlin 2011-04-25
-2891831 Kell Kell 49.63333 6.83333 P PPL DE 08 1953 495 Europe/Berlin 2006-01-17
-2891832 Kelkheim (Taunus) Kelkheim (Taunus) Kelkheim,Kelkheim (Taunus),Stadt Kelkheim (Taunus) 50.13333 8.45 P PPL DE 05 26814 205 Europe/Berlin 2012-01-18
-2891834 Kelheim Kelheim Kelheim 48.91667 11.86667 P PPL DE 02 15723 345 Europe/Berlin 2012-01-18
-2891844 Kelbra Kelbra 51.43528 11.04143 P PPL DE 14 3117 163 Europe/Berlin 2009-03-26
-2891846 Kelberg Kelberg Kehlberg 50.29164 6.9195 P PPLA4 DE 08 00 07233 07233218 2031 481 Europe/Berlin 2011-04-25
-2891887 Keila Keila 50.63738 11.66182 P PPLA4 DE 15 00 16075 16075047 84 459 Europe/Berlin 2011-04-25
-2891889 Keidelheim Keidelheim 49.98333 7.5 P PPLA4 DE 08 00 07140 07140065 303 374 Europe/Berlin 2011-04-25
-2891899 Kehrig Kehrig 50.28333 7.21667 P PPLA4 DE 08 00 07137 07137043 1139 362 Europe/Berlin 2011-04-25
-2891925 Kehmstedt Kehmstedt 51.46667 10.6 P PPLA4 DE 15 00 16062 16062024 546 252 Europe/Berlin 2011-04-25
-2891948 Kehlbach Kehlbach 50.25922 7.75884 P PPLA4 DE 08 00 07141 07141070 157 298 Europe/Berlin 2011-07-31
-2891951 Kehl Kehl Kehl,Kehl am Rhein,Kehl im Hanauerland,Kel',Kiel,Stadt Kehl,keru,Кель,ケール 48.57297 7.81523 P PPL DE 01 34009 138 Europe/Berlin 2011-02-14
-2891968 Kefferhausen Kefferhausen Kefferhausen 51.31667 10.28333 P PPLA4 DE 15 00 16061 16061055 804 393 Europe/Berlin 2011-04-25
-2891973 Kefenrod Kefenrod Kefenrod 50.35 9.2 P PPLA4 DE 05 064 06440 06440013 3101 310 Europe/Berlin 2011-04-25
-2891991 Kayna Kayna Kayna 50.98333 12.23333 P PPL DE 14 1532 259 Europe/Berlin 2012-01-18
-2891993 Kayhude Kayhude Kayhude 53.76667 10.13333 P PPLA4 DE 10 00 01060 01060046 1192 22 Europe/Berlin 2011-04-25
-2892008 Kavelstorf Kavelstorf Kavelsdorf,Kavelstorf 54 12.2 P PPL DE 12 1179 42 Europe/Berlin 2012-01-18
-2892029 Kausen Kausen 50.73333 7.86667 P PPLA4 DE 08 00 07132 07132059 0 430 Europe/Berlin 2011-07-31
-2892052 Kaulsdorf Kaulsdorf 50.63333 11.43333 P PPLA4 DE 15 00 16073 16073038 2980 405 Europe/Berlin 2011-04-25
-2892078 Kaufering Kaufering 48.09121 10.87913 P PPLA4 DE 02 091 09181 09181128 9820 608 Europe/Berlin 2011-07-31
-2892080 Kaufbeuren Kaufbeuren Kaufbeuren 47.88333 10.61667 P PPL DE 02 42505 683 Europe/Berlin 2012-01-18
-2892089 Kauern Kauern 50.71667 12.08333 P PPLA4 DE 15 00 16076 16076034 450 344 Europe/Berlin 2011-04-25
-2892101 Kaub Kaub Kaub 50.08333 7.76667 P PPL DE 08 1024 73 Europe/Berlin 2012-01-18
-2892104 Katzwinkel Katzwinkel 50.25 6.91667 P PPLA4 DE 08 00 07233 07233037 139 490 Europe/Berlin 2011-04-25
-2892106 Katzweiler Katzweiler 49.5 7.7 P PPLA4 DE 08 00 07335 07335017 1727 215 Europe/Berlin 2011-04-25
-2892112 Katzow Katzow 54.05 13.68333 P PPLA4 DE 12 00 13059 13059039 632 21 Europe/Berlin 2011-04-25
-2892118 Katzhütte Katzhutte Katzhutte,Katzhütte 50.55 11.06667 P PPLA4 DE 15 00 16073 16073037 2207 571 Europe/Berlin 2011-04-25
-2892192 Katzenelnbogen Katzenelnbogen Katzenelnbogen,Katzenelnbogn 50.28333 7.95 P PPL DE 08 2227 314 Europe/Berlin 2012-01-18
-2892256 Katzenbach Katzenbach 49.65 7.81667 P PPLA4 DE 08 00 07333 07333037 570 230 Europe/Berlin 2011-04-25
-2892325 Kattendorf Kattendorf Kattendorf 53.85 10.01667 P PPLA4 DE 10 00 01060 01060045 914 45 Europe/Berlin 2011-04-25
-2892406 Katharinenheerd Katharinenheerd Katharinenheerd 54.33333 8.83333 P PPLA4 DE 10 00 01054 01054063 186 255 Europe/Berlin 2011-04-25
-2892409 Katharinenberg Katharinenberg 51.18333 10.26667 P PPLA4 DE 15 00 16064 16064069 3107 419 Europe/Berlin 2011-04-25
-2892448 Kastorf Kastorf 53.75 10.58333 P PPLA4 DE 10 00 01053 01053061 1145 25 Europe/Berlin 2011-04-25
-2892459 Kastl Kastl 49.83333 11.9 P PPLA4 DE 02 093 09377 09377128 1407 477 Europe/Berlin 2011-04-25
-2892460 Kastl Kastl Castel,Kastl 49.36667 11.68333 P PPL DE 02 2701 436 Europe/Berlin 2012-01-18
-2892461 Kastl Kastl 48.2 12.7 P PPLA4 DE 02 091 09171 09171121 2651 438 Europe/Berlin 2011-04-25
-2892484 Kastel-Staadt Kastel-Staadt 49.56667 6.56667 P PPLA4 DE 08 00 07235 07235057 378 346 Europe/Berlin 2011-04-25
-2892485 Kastellaun Kastellaun 50.06667 7.45 P PPL DE 08 5285 439 Europe/Berlin 2006-01-17
-2892498 Kassow Kassow 53.87864 12.07191 P PPLA4 DE 12 00 13051 13051033 419 12 Europe/Berlin 2011-04-25
-2892502 Kassieck Kassieck 52.58333 11.48333 P PPLA4 DE 14 00 15081 15081245 228 48 Europe/Berlin 2011-04-25
-2892518 Kassel Kassel Cassel,Castellum,Chasalla,Kasel,Kaselo,Kassel,Kassel',ka sai er,kasseru,Κάσελ,Касел,Кассель,カッセル,卡塞尔,卡塞爾 51.31667 9.5 P PPLA2 DE 05 066 06611 194501 164 Europe/Berlin 2010-11-21
-2892520 Kasseedorf Kasseedorf Kasseedorf 54.16667 10.71667 P PPLA4 DE 10 00 01055 01055024 1581 46 Europe/Berlin 2011-04-25
-2892521 Kasseburg Kasseburg Kasseburg 53.56667 10.4 P PPLA4 DE 10 00 01053 01053060 554 42 Europe/Berlin 2011-04-25
-2892549 Käshofen Kashofen 49.33333 7.41667 P PPLA4 DE 08 00 07340 07340212 747 372 Europe/Berlin 2011-04-25
-2892563 Kasendorf Kasendorf Kasendorf 50.03333 11.35 P PPL DE 02 2602 416 Europe/Berlin 2012-01-18
-2892570 Kasel-Golzig Kasel-Golzig 51.93333 13.7 P PPLA4 DE 11 00 12061 12061244 772 62 Europe/Berlin 2011-04-25
-2892571 Kasel Kasel 49.7617 6.73222 P PPLA4 DE 08 00 07235 07235056 1219 170 Europe/Berlin 2011-04-25
-2892581 Kasdorf Kasdorf 50.2 7.78333 P PPLA4 DE 08 00 07141 07141067 268 318 Europe/Berlin 2011-04-25
-2892585 Kaschenbach Kaschenbach 49.87605 6.47987 P PPLA4 DE 08 00 07232 07232065 49 281 Europe/Berlin 2011-04-25
-2892612 Karwitz Karwitz 53.08333 11.01667 P PPLA4 DE 06 00 03354 03354012 794 28 Europe/Berlin 2011-04-25
-2892647 Karstädt Karstadt 53.28333 11.48333 P PPLA4 DE 12 00 13054 13054051 657 26 Europe/Berlin 2011-04-25
-2892648 Karstädt Karstadt 53.15 11.75 P PPLA4 DE 11 00 12070 12070173 7189 33 Europe/Berlin 2011-07-31
-2892652 Karsdorf Karsdorf Carsdorf,Karsdorf 51.28333 11.65 P PPLA4 DE 14 00 15084 15084250 2063 113 Europe/Berlin 2011-04-25
-2892658 Karsbach Karsbach 50.05 9.78333 P PPLA4 DE 02 096 09677 09677149 1844 231 Europe/Berlin 2011-04-25
-2892668 Karrenzin Karrenzin 53.33333 11.8 P PPLA4 DE 12 00 13060 13060038 352 44 Europe/Berlin 2011-04-25
-2892709 Karow Karow 53.53766 12.25782 P PPLA4 DE 12 00 13060 13060037 0 71 Europe/Berlin 2011-04-25
-2892711 Karolinenkoog Karolinenkoog Karolinenkoog 54.28333 8.96667 P PPLA4 DE 10 00 01051 01051058 127 1 Europe/Berlin 2011-04-25
-2892748 Karnin Karnin 54.3019 12.79058 P PPLA4 DE 12 00 13057 13057043 261 7 Europe/Berlin 2011-04-25
-2892774 Karlum Karlum Karlum 54.83333 8.96667 P PPLA4 DE 10 00 01054 01054062 211 9 Europe/Berlin 2011-04-25
-2892786 Karlstadt Karlstadt Karlstadt 49.96028 9.77222 P PPL DE 02 15272 172 Europe/Berlin 2012-02-28
-2892794 Karlsruhe Karlsruhe Carlsruhe,Carolsruha,Karlsroue,Karlsrue,Karlsrueh,Karlsruhe,ka er si lu e,kaleulseulue,karlsrwhh,karusurue,Καρλσρούη,Карлсруе,Карлсруэ,קארלסרוהה,كارلسروهه,کارلسروهه,კარლსრუე,カールスルーエ,卡尔斯鲁厄,카를스루에 49.00472 8.38583 P PPLA2 DE 01 082 283799 115 Europe/Berlin 2010-11-21
-2892808 Karlskron Karlskron 48.68333 11.41667 P PPLA4 DE 02 091 09185 09185140 4661 367 Europe/Berlin 2011-04-25
-2892810 Karlshuld Karlshuld 48.68333 11.3 P PPLA4 DE 02 091 09185 09185139 5012 374 Europe/Berlin 2011-04-25
-2892863 Karlshausen Karlshausen Carlshausen,Karlshausen 50.01667 6.23333 P PPLA4 DE 08 00 07232 07232064 353 488 Europe/Berlin 2011-04-25
-2892865 Karlshagen Karlshagen Carlshagen,Karlshagen 54.11667 13.83333 P PPLA4 DE 12 00 13059 13059038 3066 13 Europe/Berlin 2011-04-25
-2892867 Bad Karlshafen Bad Karlshafen Carlshafen,Karlshafen 51.64263 9.45477 P PPL DE 06 00 4097 119 Europe/Berlin 2010-11-22
-2892874 Karlsfeld Karlsfeld Karlsfeld 48.21667 11.46667 P PPLA4 DE 02 091 09174 09174126 17920 498 Europe/Berlin 2011-07-31
-2892879 Karlsdorf Karlsdorf 50.8 11.8 P PPLA4 DE 15 00 16074 16074045 104 285 Europe/Berlin 2011-04-25
-2892887 Karlsburg Karlsburg 53.96667 13.61667 P PPLA4 DE 12 00 13059 13059037 0 36 Europe/Berlin 2011-04-25
-2892940 Karl Karl 50.05 6.8 P PPLA4 DE 08 00 07231 07231065 230 327 Europe/Berlin 2011-04-25
-2892951 Kargow Kargow Kargow 53.5 12.75 P PPLA4 DE 12 00 13056 13056027 744 74 Europe/Berlin 2011-04-25
-2892961 Karenz Karenz 53.23333 11.35 P PPLA4 DE 12 00 13054 13054049 322 37 Europe/Berlin 2011-04-25
-2892974 Karby Karby Karby 54.61667 9.96667 P PPLA4 DE 10 00 01058 01058087 558 6 Europe/Berlin 2011-04-25
-2892980 Karben Karben 50.23019 8.77155 P PPL DE 05 064 21642 118 Europe/Berlin 2010-11-15
-2892986 Karbach Karbach 50.15 7.61667 P PPLA4 DE 08 00 07140 07140063 544 376 Europe/Berlin 2011-04-25
-2892988 Karbach Karbach Karbach 49.8675 9.63889 P PPL DE 02 1403 200 Europe/Berlin 2012-02-02
-2892996 Kapsweyer Kapsweyer 49.04389 8.02167 P PPLA4 DE 08 00 07337 07337046 1021 147 Europe/Berlin 2011-04-25
-2893022 Kappelrodeck Kappelrodeck 48.59182 8.11692 P PPLA4 DE 01 083 08317 08317056 5787 215 Europe/Berlin 2011-04-25
-2893023 Kappeln Kappeln Kapellen,Kappalen 54.66122 9.9313 P PPL DE 10 9677 12 Europe/Berlin 2010-06-13
-2893024 Kappeln Kappeln 49.68333 7.56667 P PPLA4 DE 08 00 07336 07336049 175 334 Europe/Berlin 2011-04-25
-2893054 Kappel Kappel Kappel 50 7.36667 P PPLA4 DE 08 00 07140 07140062 530 478 Europe/Berlin 2011-04-25
-2893112 Kaperich Kaperich 50.25 7.03333 P PPLA4 DE 08 00 07233 07233217 195 436 Europe/Berlin 2011-04-25
-2893132 Kapellen-Drusweiler Kapellen-Drusweiler 49.10167 8.03111 P PPLA4 DE 08 00 07337 07337045 888 166 Europe/Berlin 2011-04-25
-2893133 Kapellendorf Kapellendorf 50.97464 11.4687 P PPLA4 DE 15 00 16071 16071037 458 246 Europe/Berlin 2011-04-25
-2893175 Kanzem Kanzem 49.66667 6.56667 P PPLA4 DE 08 00 07235 07235055 602 162 Europe/Berlin 2011-04-25
-2893186 Kanzach Kanzach 48.07796 9.55888 P PPLA4 DE 01 084 08426 08426064 520 573 Europe/Berlin 2011-09-08
-2893212 Kannawurf Kannawurf Cannawurf,Kannawurf 51.26667 11.13333 P PPLA4 DE 15 00 16068 16068028 1021 130 Europe/Berlin 2011-04-25
-2893214 Kankelau Kankelau Kankelau 53.55 10.56667 P PPLA4 DE 10 00 01053 01053059 209 45 Europe/Berlin 2011-04-25
-2893237 Kandern Kandern Kandern 47.71393 7.66237 P PPL DE 01 8070 387 Europe/Berlin 2012-02-28
-2893244 Kandel Kandel 49.08917 8.18417 P PPL DE 08 8385 128 Europe/Berlin 2006-01-17
-2893255 Kamsdorf Kamsdorf Kamsdorf 50.65 11.43333 P PPLA4 DE 15 00 16073 16073036 2951 295 Europe/Berlin 2011-04-25
-2893264 Kamp-Lintfort Kamp-Lintfort Kamp-Lintfort 51.5 6.53333 P PPL DE 07 39490 26 Europe/Berlin 2012-01-18
-2893307 Kamp-Bornhofen Kamp-Bornhofen 50.21667 7.61667 P PPLA4 DE 08 00 07141 07141066 1632 116 Europe/Berlin 2011-04-25
-2893322 Kamminke Kamminke 53.86667 14.2 P PPLA4 DE 12 00 13059 13059036 299 2 Europe/Berlin 2011-04-25
-2893328 Kammerstein Kammerstein 49.29317 10.97277 P PPLA4 DE 02 095 09576 09576128 2709 422 Europe/Berlin 2011-04-25
-2893378 Kammerforst Kammerforst Cammerforst,Kammerforst 51.13333 10.41667 P PPLA4 DE 15 00 16064 16064032 923 263 Europe/Berlin 2011-04-25
-2893379 Kammerforst Kammerforst 50.45 7.68333 P PPLA4 DE 08 00 07143 07143040 251 301 Europe/Berlin 2011-04-25
-2893430 Kamern Kamern 52.7485 12.11251 P PPLA4 DE 14 00 15090 15090285 750 29 Europe/Berlin 2011-04-25
-2893437 Kamenz Kamenz Kamjenc 51.26798 14.09374 P PPL DE 13 18270 201 Europe/Berlin 2010-06-11
-2893438 Kamen Kamen Kamen 51.6 7.66667 P PPL DE 07 45927 66 Europe/Berlin 2012-01-18
-2893477 Kalübbe Kalubbe 54.11667 10.28333 P PPLA4 DE 10 00 01057 01057032 580 42 Europe/Berlin 2011-04-25
-2893516 Kaltenwestheim Kaltenwestheim Kaltenwestheim 50.6 10.11667 P PPLA4 DE 15 00 16066 16066036 1043 500 Europe/Berlin 2011-04-25
-2893524 Kaltensundheim Kaltensundheim Kaltensundheim 50.61667 10.16667 P PPLA4 DE 15 00 16066 16066035 865 475 Europe/Berlin 2011-04-25
-2893534 Kaltennordheim Kaltennordheim Kaltennordheim 50.63333 10.16667 P PPL DE 15 1896 470 Europe/Berlin 2012-01-18
-2893542 Kaltenlengsfeld Kaltenlengsfeld Kaltenlengsfeld 50.65 10.2 P PPLA4 DE 15 00 16063 16063043 428 607 Europe/Berlin 2011-04-25
-2893544 Kaltenkirchen Kaltenkirchen Kaltenkirchen,Kolenkarken 53.83333 9.96667 P PPL DE 10 19747 33 Europe/Berlin 2012-01-18
-2893546 Kaltenholzhausen Kaltenholzhausen 50.3 8.1 P PPLA4 DE 08 00 07141 07141065 613 242 Europe/Berlin 2011-04-25
-2893572 Kaltenengers Kaltenengers 50.41667 7.55 P PPLA4 DE 08 00 07137 07137209 1932 67 Europe/Berlin 2011-04-25
-2893622 Kaltenborn Kaltenborn 50.4 7.01667 P PPLA4 DE 08 00 07131 07131037 420 537 Europe/Berlin 2011-04-25
-2893693 Kalt Kalt 50.26729 7.39466 P PPLA4 DE 08 00 07137 07137041 516 200 Europe/Berlin 2011-04-25
-2893717 Kallstadt Kallstadt 49.49083 8.17611 P PPLA4 DE 08 00 07332 07332028 1148 146 Europe/Berlin 2011-04-25
-2893721 Kallmünz Kallmunz Kallmunz,Kallmünz,Kalmunz 49.15 11.96667 P PPL DE 02 2895 432 Europe/Berlin 2012-01-18
-2893723 Kallmerode Kallmerode Kallmerode 51.35 10.3 P PPLA4 DE 15 00 16061 16061054 623 432 Europe/Berlin 2011-04-25
-2893762 Kall Kall Kall 50.55 6.55 P PPLA4 DE 07 053 05366 05366024 11903 387 Europe/Berlin 2011-07-31
-2893779 Kalkofen Kalkofen 49.73333 7.83333 P PPLA4 DE 08 00 07333 07333036 189 266 Europe/Berlin 2011-04-25
-2893792 Kalkhorst Kalkhorst 53.97012 11.04469 P PPLA4 DE 12 00 13058 13058113 1328 31 Europe/Berlin 2011-07-31
-2893837 Kalkar Kalkar Calkar,Kalkar 51.73333 6.3 P PPL DE 07 13997 19 Europe/Berlin 2012-01-18
-2893859 Kalenborn Kalenborn 50.55 7 P PPLA4 DE 08 00 07131 07131036 0 361 Europe/Berlin 2011-04-25
-2893860 Kalenborn Kalenborn Calenborn,Kalenborn 50.26667 7.08333 P PPLA4 DE 08 00 07135 07135046 245 501 Europe/Berlin 2011-04-25
-2893868 Kalefeld Kalefeld 51.8 10.03333 P PPLA4 DE 06 00 03155 03155006 7264 129 Europe/Berlin 2011-04-25
-2893881 Kalchreuth Kalchreuth Kalchreuth 49.56667 11.13333 P PPLA4 DE 02 095 09572 09572137 3031 350 Europe/Berlin 2011-04-25
-2893884 Kalbsrieth Kalbsrieth Kalbsrieth 51.35 11.33333 P PPLA4 DE 15 00 16065 16065042 800 118 Europe/Berlin 2011-04-25
-2893938 Kalbe Kalbe 53.3 9.55 P PPLA4 DE 06 00 03357 03357029 576 41 Europe/Berlin 2011-04-25
-2893939 Kalbe Kalbe Calbe,Kalbe 52.65 11.4 P PPL DE 14 2821 28 Europe/Berlin 2012-01-18
-2893954 Kakenstorf Kakenstorf 53.31667 9.76667 P PPLA4 DE 06 00 03353 03353021 1380 46 Europe/Berlin 2011-04-25
-2893963 Kakau Kakau 51.8 12.43333 P PPLA4 DE 14 00 15091 15091155 634 62 Europe/Berlin 2011-04-25
-2893983 Kaisheim Kaisheim Kaisheim,Kaysersheim 48.76667 10.8 P PPL DE 02 4344 473 Europe/Berlin 2012-01-18
-2894003 Kaiserslautern Kaiserslautern Kaiserlautern,Kaiserslantern,Kaiserslautern,Kaizerslauternas,Kajzerslautern,kai sa si lao teng,kaijeoseullauteleun,kaizasurauterun,ki se xrs lea theirn,Кайзерслаутерн,Кајзерслаутерн,קייזרסלאוטרן,کائزرسلائوٹرن,ไกเซอร์สเลาเทิร์น,カイザースラウテルン,凯撒斯劳滕,카이저슬라우테른 49.45 7.75 P PPL DE 08 98732 261 Europe/Berlin 2012-01-18
-2894007 Kaisersesch Kaisersesch Kaisersech,Kaisersesch 50.23333 7.15 P PPL DE 08 3001 450 Europe/Berlin 2012-01-18
-2894014 Kaisersbach Kaisersbach 48.93023 9.63898 P PPLA4 DE 01 081 08119 08119037 2638 569 Europe/Berlin 2011-04-25
-2894048 Kaisborstel Kaisborstel Kaisborstel 54.01367 9.48116 P PPLA4 DE 10 00 01061 01061048 91 16 Europe/Berlin 2011-04-25
-2894081 Kail Kail 50.18333 7.23333 P PPLA4 DE 08 00 07135 07135044 301 285 Europe/Berlin 2011-04-25
-2894085 Kaifenheim Kaifenheim 50.24501 7.22643 P PPLA4 DE 08 00 07135 07135043 833 352 Europe/Berlin 2011-04-25
-2894245 Kahl am Main Kahl am Main Kahl 50.06981 9.00553 P PPL DE 02 096 7198 109 Europe/Berlin 2010-11-15
-2894247 Kahla Kahla Kahla 50.8 11.58333 P PPL DE 15 7422 177 Europe/Berlin 2012-01-18
-2894335 Kadenbach Kadenbach 50.38333 7.73333 P PPLA4 DE 08 00 07143 07143039 1494 248 Europe/Berlin 2011-04-25
-2894338 Kaden Kaden 50.55 7.9 P PPLA4 DE 08 00 07143 07143247 655 400 Europe/Berlin 2011-04-25
-2894366 Kabelhorst Kabelhorst Kabelhorst 54.21667 10.91667 P PPLA4 DE 10 00 01055 01055023 481 14 Europe/Berlin 2011-04-25
-2894375 Kaarst Kaarst Kaarst 51.23333 6.61667 P PPL DE 07 42112 42 Europe/Berlin 2012-01-18
-2894384 Kaaks Kaaks Kaaks 53.99004 9.46962 P PPLA4 DE 10 00 01061 01061047 408 11 Europe/Berlin 2011-04-25
-2894390 Jützenbach Jutzenbach 51.52551 10.37968 P PPLA4 DE 15 00 16061 16061053 556 247 Europe/Berlin 2011-07-31
-2894394 Jüterbog Juterbog Jueterbog,Juterbog,Jüterbog 51.98333 13.08333 P PPL DE 11 13292 74 Europe/Berlin 2012-01-18
-2894409 Jürgenstorf Jurgenstorf 53.66667 12.9 P PPLA4 DE 12 00 13052 13052040 966 48 Europe/Berlin 2011-04-25
-2894415 Jürgenshagen Jurgenshagen 53.95417 11.89665 P PPLA4 DE 12 00 13053 13053037 1220 18 Europe/Berlin 2011-04-25
-2894456 Jünkerath Junkerath Junkerath,Jünkerath 50.33333 6.58333 P PPLA4 DE 08 00 07233 07233035 1799 525 Europe/Berlin 2011-04-25
-2894476 Jungingen Jungingen 48.33333 9.05 P PPLA4 DE 01 084 08417 08417036 1469 676 Europe/Berlin 2011-04-25
-2894545 Juliusburg Juliusburg Juliusburg 53.41667 10.5 P PPLA4 DE 10 00 01053 01053058 194 42 Europe/Berlin 2011-04-25
-2894553 Jülich Julich Julich,Jülich 50.93333 6.36667 P PPL DE 07 33911 100 Europe/Berlin 2012-01-18
-2894566 Julbach Julbach 48.25 12.96667 P PPLA4 DE 02 092 09277 09277127 2317 363 Europe/Berlin 2011-04-25
-2894569 Juist Juist 53.68333 7 P PPLA4 DE 06 00 03452 03452013 1751 4 Europe/Berlin 2011-04-25
-2894576 Jühnde Juhnde 51.46667 9.8 P PPLA4 DE 06 00 03152 03152013 1086 321 Europe/Berlin 2011-04-25
-2894581 Jugenheim Jugenheim 49.895 8.085 P PPL DE 08 1673 161 Europe/Berlin 2006-01-17
-2894617 Judenbach Judenbach 50.4 11.21667 P PPLA4 DE 15 00 16072 16072009 2730 575 Europe/Berlin 2011-04-25
-2894620 Jucken Jucken 50.05 6.23333 P PPLA4 DE 08 00 07232 07232246 178 513 Europe/Berlin 2011-04-25
-2894621 Jückelberg Juckelberg Juckelberg,Jückelberg 50.93333 12.63333 P PPLA4 DE 15 00 16077 16077019 362 262 Europe/Berlin 2011-04-25
-2894625 Jüchsen Juchsen Juchsen,Jüchsen 50.48333 10.48333 P PPL DE 15 1563 396 Europe/Berlin 2012-01-18
-2894637 Jüchen Juchen Juchen,Jüchen 51.1 6.5 P PPLA4 DE 07 051 05162 05162012 22562 75 Europe/Berlin 2011-04-25
-2894644 Jübek Jubek Jubek,Jübek 54.55 9.4 P PPLA4 DE 10 00 01059 01059044 2581 12 Europe/Berlin 2011-04-25
-2894646 Jübar Jubar 52.7 10.91667 P PPLA4 DE 14 00 15081 15081225 690 97 Europe/Berlin 2011-04-25
-2894699 Jörl Jorl Jorl,Jörl 54.6 9.3 P PPLA4 DE 10 00 01059 01059132 883 8 Europe/Berlin 2011-04-25
-2894702 Jork Jork 53.53333 9.68333 P PPLA4 DE 06 00 03359 03359028 12014 255 Europe/Berlin 2011-04-25
-2894707 Jördenstorf Jordenstorf 53.88333 12.61667 P PPLA4 DE 12 00 13053 13053036 1213 43 Europe/Berlin 2011-04-25
-2894724 Jonaswalde Jonaswalde 50.83333 12.3 P PPLA4 DE 15 00 16077 16077018 340 306 Europe/Berlin 2011-07-31
-2894734 Joldelund Joldelund Joldelund 54.65 9.13333 P PPLA4 DE 10 00 01054 01054059 743 20 Europe/Berlin 2011-04-25
-2894737 Jöhstadt Johstadt Johstadt,Jöhstadt 50.51667 13.1 P PPL DE 13 3310 727 Europe/Berlin 2012-01-18
-2894771 Johanniskirchen Johanniskirchen 48.53333 12.95 P PPLA4 DE 02 092 09277 09277126 2470 365 Europe/Berlin 2011-04-25
-2894814 Johanngeorgenstadt Johanngeorgenstadt Johanngeorgenstadt 50.43333 12.73333 P PPL DE 13 5573 691 Europe/Berlin 2012-01-18
-2894833 Johannesberg Johannesberg 50.03333 9.13333 P PPLA4 DE 02 096 09671 09671133 3914 333 Europe/Berlin 2011-04-25
-2894855 Jockgrim Jockgrim 49.09889 8.26778 P PPLA4 DE 08 00 07334 07334012 6970 120 Europe/Berlin 2011-04-25
-2894884 Joachimsthal Joachimsthal 52.97945 13.74493 P PPL DE 11 3459 70 Europe/Berlin 2009-01-28
-2894897 Jever Jever Jever 53.58333 7.9 P PPL DE 06 13937 0 Europe/Berlin 2012-01-18
-2894899 Jevenstedt Jevenstedt Jevenstedt 54.23333 9.66667 P PPLA4 DE 10 00 01058 01058086 3332 4 Europe/Berlin 2011-04-25
-2894907 Jetzendorf Jetzendorf 48.43333 11.41667 P PPLA4 DE 02 091 09186 09186132 2919 484 Europe/Berlin 2011-04-25
-2894924 Jettenbach Jettenbach Jettenbach,Jetterbach 49.53333 7.55 P PPLA4 DE 08 00 07336 07336048 884 336 Europe/Berlin 2011-04-25
-2894926 Jettenbach Jettenbach 48.16667 12.38333 P PPLA4 DE 02 091 09183 09183122 755 431 Europe/Berlin 2011-04-25
-2894944 Jestetten Jestetten 47.65 8.56667 P PPLA4 DE 01 083 08337 08337060 5171 429 Europe/Berlin 2011-04-25
-2894945 Jesteburg Jesteburg 53.3 9.96667 P PPLA4 DE 06 00 03353 03353020 7066 41 Europe/Berlin 2011-04-25
-2894948 Jeßnitz Jessnitz Jessnitz,Jeßnitz 51.68333 12.3 P PPL DE 14 3667 75 Europe/Berlin 2012-02-02
-2894962 Jessen Jessen Jessen 51.78333 12.95 P PPL DE 14 11065 69 Europe/Berlin 2012-01-18
-2894970 Jesewitz Jesewitz 51.42276 12.56312 P PPLA4 DE 13 147 14730 14730140 3174 126 Europe/Berlin 2011-07-31
-2894977 Jesenwang Jesenwang 48.16667 11.13333 P PPLA4 DE 02 091 09179 09179130 1480 562 Europe/Berlin 2011-04-25
-2894979 Jesendorf Jesendorf 53.8 11.6 P PPLA4 DE 12 00 13058 13058051 535 47 Europe/Berlin 2011-04-25
-2894982 Jesberg Jesberg Jesberg 51 9.15 P PPLA4 DE 05 066 06634 06634010 2655 234 Europe/Berlin 2011-07-31
-2894988 Jerxheim Jerxheim 52.08172 10.89844 P PPLA4 DE 06 00 03154 03154012 1279 129 Europe/Berlin 2011-05-03
-2894998 Jersbek Jersbek Jersbek 53.73333 10.21667 P PPLA4 DE 10 00 01062 01062036 1804 28 Europe/Berlin 2011-04-25
-2895000 Jerrishoe Jerrishoe Jerrishoe 54.65 9.36667 P PPLA4 DE 10 00 01059 01059131 1040 21 Europe/Berlin 2011-07-31
-2895008 Jerichow Jerichow Jerichow 52.5 12.03333 P PPL DE 14 2289 35 Europe/Berlin 2012-01-18
-2895015 Jerchel Jerchel 52.46835 11.3209 P PPLA4 DE 14 00 15081 15081215 334 60 Europe/Berlin 2011-04-25
-2895034 Jengen Jengen 47.99934 10.72575 P PPLA4 DE 02 097 09777 09777140 2433 637 Europe/Berlin 2011-04-25
-2895040 Jenalöbnitz Jenalobnitz Jenalobnitz,Jenalöbnitz 50.95 11.7 P PPLA4 DE 15 00 16074 16074043 155 199 Europe/Berlin 2011-04-25
-2895044 Jena Jena Iena,Iéna,Jena,Jéna,i~ena,jena,ye na,yena,Йена,জেনা,イェーナ,耶拿,예나 50.93333 11.58333 P PPL DE 15 104712 175 Europe/Berlin 2012-01-18
-2895051 Jemgum Jemgum Jemgum 53.26667 7.38333 P PPLA4 DE 06 00 03457 03457012 3735 4 Europe/Berlin 2011-04-25
-2895053 Jembke Jembke 52.5 10.76667 P PPLA4 DE 06 00 03151 03151014 1886 63 Europe/Berlin 2011-04-25
-2895056 Jelmstorf Jelmstorf 53.10132 10.52237 P PPLA4 DE 06 00 03360 03360012 853 48 Europe/Berlin 2011-07-31
-2895072 Jeggeleben Jeggeleben 52.76667 11.3 P PPLA4 DE 14 00 15081 15081210 418 54 Europe/Berlin 2011-04-25
-2895074 Jeggau Jeggau 52.53333 11.2 P PPLA4 DE 14 00 15081 15081205 217 64 Europe/Berlin 2011-04-25
-2895106 Jeckenbach Jeckenbach 49.71667 7.6 P PPLA4 DE 08 00 07133 07133051 281 269 Europe/Berlin 2011-04-25
-2895117 Jävenitz Javenitz 52.53333 11.5 P PPLA4 DE 14 00 15081 15081190 1194 74 Europe/Berlin 2011-04-25
-2895131 Jatznick Jatznick 53.6 13.93333 P PPLA4 DE 12 00 13062 13062025 2082 13 Europe/Berlin 2011-07-31
-2895162 Jarmen Jarmen Jarmen 53.92385 13.34032 P PPL DE 12 3238 7 Europe/Berlin 2011-03-29
-2895174 Jardelund Jardelund Jardelund 54.83333 9.2 P PPLA4 DE 10 00 01059 01059129 351 32 Europe/Berlin 2011-04-25
-2895189 Jänschwalde Janschwalde Janschwalde,Jansojce,Janšojce,Jänschwalde 51.86066 14.49813 P PPLA4 DE 11 00 12071 12071193 2031 64 Europe/Berlin 2011-07-07
-2895200 Janneby Janneby Janneby 54.63333 9.3 P PPLA4 DE 10 00 01059 01059128 425 19 Europe/Berlin 2011-04-25
-2895213 Jandelsbrunn Jandelsbrunn 48.73333 13.7 P PPLA4 DE 02 092 09272 09272129 3408 630 Europe/Berlin 2011-04-25
-2895221 Jamlitz Jamlitz 52 14.36667 P PPLA4 DE 11 00 12061 12061224 627 81 Europe/Berlin 2011-04-25
-2895226 Jameln Jameln 53.05 11.08333 P PPLA4 DE 06 00 03354 03354011 1095 29 Europe/Berlin 2011-07-31
-2895234 Jakobsweiler Jakobsweiler 49.61667 7.95 P PPLA4 DE 08 00 07333 07333035 236 348 Europe/Berlin 2011-04-25
-2895246 Jakobsdorf Jakobsdorf 54.23333 12.93333 P PPLA4 DE 12 00 13057 13057041 521 15 Europe/Berlin 2011-04-25
-2895248 Jacobsdorf Jacobsdorf Jacobsdorf,Jakobsdorf 52.33333 14.35 P PPLA4 DE 11 00 12067 12067237 1960 60 Europe/Berlin 2011-07-31
-2895271 Jahrsdorf Jahrsdorf 54.06667 9.63333 P PPLA4 DE 10 00 01058 01058085 233 23 Europe/Berlin 2011-04-25
-2895284 Jahnsdorf Jahnsdorf Jahnsdorf 50.75 12.85 P PPL DE 13 6117 377 Europe/Berlin 2012-02-02
-2895304 Jagstzell Jagstzell 49.03055 10.09751 P PPLA4 DE 01 081 08136 08136035 2470 427 Europe/Berlin 2011-04-25
-2895309 Jagsthausen Jagsthausen Jagsthausen 49.31056 9.46833 P PPLA4 DE 01 081 08125 08125048 1500 218 Europe/Berlin 2011-04-25
-2895445 Jagel Jagel 54.45652 9.53759 P PPLA4 DE 10 00 01059 01059043 969 20 Europe/Berlin 2011-04-25
-2895517 Jachenau Jachenau 47.60574 11.43381 P PPLA4 DE 02 091 09173 09173131 891 778 Europe/Berlin 2011-04-25
-2895524 Jabel Jabel 53.55 12.55 P PPLA4 DE 12 00 13056 13056024 600 68 Europe/Berlin 2011-04-25
-2895545 Ivenack Ivenack 53.71667 12.96667 P PPLA4 DE 12 00 13052 13052038 965 42 Europe/Berlin 2011-04-25
-2895546 Iven Iven 53.8 13.43333 P PPLA4 DE 12 00 13059 13059033 262 14 Europe/Berlin 2011-04-25
-2895552 Itzstedt Itzstedt Itzstedt 53.81667 10.16667 P PPLA4 DE 10 00 01060 01060043 2151 39 Europe/Berlin 2011-07-31
-2895569 Itzehoe Itzehoe 53.92099 9.51529 P PPL DE 10 33047 7 Europe/Berlin 2010-10-13
-2895574 Ittlingen Ittlingen 49.19083 8.93083 P PPLA4 DE 01 081 08125 08125047 2457 197 Europe/Berlin 2011-04-25
-2895582 Itterbeck Itterbeck 52.5 6.8 P PPLA4 DE 06 00 03456 03456011 1821 35 Europe/Berlin 2011-04-25
-2895617 Issum Issum Issum 51.53333 6.43333 P PPLA4 DE 07 051 05154 05154020 12249 25 Europe/Berlin 2011-07-31
-2895619 Issigau Issigau 50.37525 11.7207 P PPLA4 DE 02 094 09475 09475137 0 527 Europe/Berlin 2011-04-25
-2895622 Issersheilingen Issersheilingen 51.2 10.65 P PPLA4 DE 15 00 16064 16064029 129 285 Europe/Berlin 2011-04-25
-2895623 Isseroda Isseroda 50.96667 11.21667 P PPLA4 DE 15 00 16071 16071036 508 307 Europe/Berlin 2011-04-25
-2895630 Isselburg Isselburg Isselburg 51.83333 6.46667 P PPL DE 07 11239 18 Europe/Berlin 2012-01-18
-2895631 Isselbach Isselbach 50.4 7.9 P PPLA4 DE 08 00 07141 07141064 402 258 Europe/Berlin 2011-04-25
-2895636 Ispringen Ispringen 48.91667 8.66667 P PPLA4 DE 01 082 08236 08236030 6007 268 Europe/Berlin 2011-04-25
-2895638 Isny im Allgäu Isny im Allgau Isny,Isny im Allgau,Isny im Allgäu 47.7 10.03333 P PPL DE 01 14424 694 Europe/Berlin 2012-01-18
-2895643 Ismaning Ismaning Ismaning 48.23333 11.68333 P PPLA4 DE 02 091 09184 09184130 14596 488 Europe/Berlin 2011-07-31
-2895659 Isert Isert 50.73333 7.7 P PPLA4 DE 08 00 07132 07132058 204 291 Europe/Berlin 2011-04-25
-2895664 Isernhagen Farster Bauerschaft Isernhagen Farster Bauerschaft 52.46667 9.83333 P PPL DE 06 22601 81 Europe/Berlin 2006-01-17
-2895669 Iserlohn Iserlohn Iserlaun,Iserlohn,Izerlon,Изерлон 51.36667 7.7 P PPL DE 07 97910 327 Europe/Berlin 2012-01-18
-2895688 Isenbüttel Isenbuttel 52.43333 10.58333 P PPLA4 DE 06 00 03151 03151013 6277 60 Europe/Berlin 2011-04-25
-2895689 Isenburg Isenburg 50.48333 7.6 P PPLA4 DE 08 00 07138 07138031 673 238 Europe/Berlin 2011-04-25
-2895702 Isen Isen Isen,Isena,Jarna 48.21203 12.05672 P PPL DE 02 5222 486 519 Europe/Berlin 2009-04-07
-2895731 Irxleben Irxleben Irxleben 52.16667 11.48333 P PPL DE 14 2489 128 Europe/Berlin 2012-01-18
-2895744 Irsee Irsee Irsee 47.9 10.56667 P PPL DE 02 1345 786 Europe/Berlin 2012-01-18
-2895751 Irschenberg Irschenberg Irschenberg 47.83333 11.91667 P PPLA4 DE 02 091 09182 09182123 3079 729 Europe/Berlin 2011-07-31
-2895755 Irsch Irsch 49.7262 6.69806 P PPL DE 08 00 07211 2400 240 230 Europe/Berlin 2010-11-22
-2895756 Irsch Irsch Irisch,Irsch 49.6 6.6 P PPLA4 DE 08 00 07235 07235052 1538 348 Europe/Berlin 2011-04-25
-2895764 Irrhausen Irrhausen 50.06667 6.2 P PPLA4 DE 08 00 07232 07232245 239 361 Europe/Berlin 2011-04-25
-2895768 Irndorf Irndorf Irndorf,Irrendorf 48.06667 8.96667 P PPLA4 DE 01 083 08327 08327027 754 838 Europe/Berlin 2011-04-25
-2895771 Irrel Irrel 49.85 6.46667 P PPLA4 DE 08 00 07232 07232063 1324 258 Europe/Berlin 2011-04-25
-2895785 Irmtraut Irmtraut 50.55 8.06667 P PPLA4 DE 08 00 07143 07143246 797 409 Europe/Berlin 2011-04-25
-2895791 Irmenach Irmenach 49.93333 7.18333 P PPLA4 DE 08 00 07231 07231501 748 405 Europe/Berlin 2011-04-25
-2895823 Irlbach Irlbach 48.85 12.75 P PPLA4 DE 02 092 09278 09278140 1165 320 Europe/Berlin 2011-04-25
-2895854 Irchenrieth Irchenrieth 49.61667 12.23333 P PPLA4 DE 02 093 09374 09374127 1117 461 Europe/Berlin 2011-04-25
-2895863 Ipsheim Ipsheim Ipsheim 49.53333 10.48333 P PPL DE 02 2162 299 Europe/Berlin 2012-01-18
-2895870 Ippesheim Ippesheim 49.60214 10.22552 P PPL DE 02 1125 280 Europe/Berlin 2010-06-07
-2895875 Ippenschied Ippenschied 49.86667 7.63333 P PPLA4 DE 08 00 07133 07133050 150 368 Europe/Berlin 2011-04-25
-2895882 Iphofen Iphofen 49.70239 10.26037 P PPL DE 02 096 4413 256 Europe/Berlin 2010-11-15
-2895886 Inzlingen Inzlingen 47.58333 7.7 P PPLA4 DE 01 083 08336 08336043 2611 432 Europe/Berlin 2011-04-25
-2895891 Inzigkofen Inzigkofen 48.07034 9.17998 P PPLA4 DE 01 084 08437 08437059 2961 625 Europe/Berlin 2011-04-25
-2895898 Inzell Inzell Inzell 47.76667 12.75 P PPLA4 DE 02 091 09189 09189124 4320 691 Europe/Berlin 2011-04-25
-2895908 Insul Insul 50.43333 6.91667 P PPLA4 DE 08 00 07131 07131034 473 301 Europe/Berlin 2011-04-25
-2895910 Insingen Insingen 49.3 10.16667 P PPLA4 DE 02 095 09571 09571169 1144 388 Europe/Berlin 2011-04-25
-2895913 Insheim Insheim 49.15806 8.14722 P PPLA4 DE 08 00 07337 07337044 2203 145 Europe/Berlin 2011-04-25
-2895937 Inning am Holz Inning am Holz Inning,Inning am Holz 48.35 12.08333 P PPL DE 02 1429 491 Europe/Berlin 2012-01-18
-2895938 Inning am Ammersee Inning am Ammersee Inning 48.07636 11.15232 P PPL DE 02 091 4111 553 Europe/Berlin 2010-11-15
-2895946 Innernzell Innernzell 48.8515 13.27539 P PPLA4 DE 02 092 09272 09272128 1722 637 Europe/Berlin 2011-08-22
-2895992 Ingolstadt Ingolstadt Ingol'shtadt,Ingolshhat,Ingolshtat,Ingolstadt,ingorushutatto,Инголштат,Инголщат,Ингольштадт,インゴルシュタット 48.76667 11.43333 P PPL DE 02 120658 375 Europe/Berlin 2012-01-18
-2895993 Ingoldingen Ingoldingen 48.02552 9.74195 P PPLA4 DE 01 084 08426 08426062 2632 560 Europe/Berlin 2011-08-24
-2895995 Ingersleben Ingersleben Ingersleben 50.91667 10.93333 P PPL DE 15 1065 229 Europe/Berlin 2012-01-18
-2896005 Ingenried Ingenried 47.81667 10.78333 P PPLA4 DE 02 091 09190 09190133 812 803 Europe/Berlin 2011-04-25
-2896011 Ingendorf Ingendorf 49.93333 6.45 P PPLA4 DE 08 00 07232 07232062 245 292 Europe/Berlin 2011-04-25
-2896021 Ingelfingen Ingelfingen 49.30103 9.65123 P PPL DE 01 5914 222 Europe/Berlin 2008-12-21
-2896023 Ingeleben Ingeleben 52.10661 10.87337 P PPLA4 DE 06 00 03154 03154011 454 110 Europe/Berlin 2011-05-03
-2896120 Inden Inden Inden 50.86667 6.36667 P PPLA4 DE 07 053 05358 05358020 7683 95 Europe/Berlin 2011-04-25
-2896127 Inchenhofen Inchenhofen Inchenhofen 48.51667 11.11667 P PPL DE 02 2390 450 Europe/Berlin 2012-01-18
-2896156 Imsweiler Imsweiler 49.6 7.8 P PPLA4 DE 08 00 07333 07333034 584 224 Europe/Berlin 2011-04-25
-2896189 Imsbach Imsbach 49.58333 7.88333 P PPLA4 DE 08 00 07333 07333033 1049 294 Europe/Berlin 2011-04-25
-2896208 Impflingen Impflingen 49.16222 8.11306 P PPLA4 DE 08 00 07337 07337043 835 155 Europe/Berlin 2011-04-25
-2896239 Immesheim Immesheim 49.63639 8.10528 P PPLA4 DE 08 00 07333 07333032 150 226 Europe/Berlin 2011-04-25
-2896242 Immert Immert 49.76667 7.01667 P PPLA4 DE 08 00 07231 07231064 185 469 Europe/Berlin 2011-04-25
-2896253 Immerath Immerath 50.13333 6.95 P PPLA4 DE 08 00 07233 07233034 263 436 Europe/Berlin 2011-04-25
-2896259 Immenstedt Immenstedt 54.5383 9.14948 P PPLA4 DE 10 00 01054 01054057 616 14 Europe/Berlin 2011-08-25
-2896260 Immenstedt Immenstedt 54.18333 9.3 P PPLA4 DE 10 00 01051 01051054 109 33 Europe/Berlin 2011-07-31
-2896261 Immenstadt im Allgäu Immenstadt im Allgau Immenstadt,Immenstadt im Allgau,Immenstadt im Allgäu 47.55996 10.21394 P PPL DE 02 14431 733 Europe/Berlin 2011-04-03
-2896263 Immenstaad am Bodensee Immenstaad am Bodensee Immenstaad,Immenstaad am Bodensee 47.66667 9.36667 P PPLA4 DE 01 084 08435 08435024 5946 408 Europe/Berlin 2011-04-25
-2896273 Immenreuth Immenreuth 49.9 11.86667 P PPLA4 DE 02 093 09377 09377127 1901 502 Europe/Berlin 2011-04-25
-2896279 Immenhausen Immenhausen 51.42763 9.48017 P PPL DE 05 066 7348 252 Europe/Berlin 2010-11-15
-2896288 Immendingen Immendingen Immendingen 47.93333 8.73333 P PPLA4 DE 01 083 08327 08327025 5945 660 Europe/Berlin 2011-07-31
-2896299 Immelborn Immelborn 50.8 10.28333 P PPLA4 DE 15 00 16063 16063041 1860 239 Europe/Berlin 2011-04-25
-2896468 Ilvesheim Ilvesheim 49.47404 8.5674 P PPLA4 DE 01 082 08226 08226036 7667 100 Europe/Berlin 2011-04-25
-2896476 Ilshofen Ilshofen Ilshofen 49.17 9.91889 P PPL DE 01 6058 442 Europe/Berlin 2012-01-18
-2896477 Ilsfeld Ilsfeld 49.05548 9.24598 P PPLA4 DE 01 081 08125 08125046 8214 243 Europe/Berlin 2011-04-25
-2896483 Ilsenburg Ilsenburg 51.86667 10.68333 P PPL DE 14 6326 243 Europe/Berlin 2006-01-17
-2896506 Ilmmünster Ilmmunster 48.48333 11.5 P PPLA4 DE 02 091 09186 09186130 2204 470 Europe/Berlin 2011-04-25
-2896514 Ilmenau Ilmenau Il'menau,Ilmenau,Stadt Ilmenau,Илменау,Ильменау 50.68333 10.9 P PPL DE 15 27055 543 Europe/Berlin 2012-01-18
-2896523 Illschwang Illschwang 49.45 11.68333 P PPLA4 DE 02 093 09371 09371131 2091 488 Europe/Berlin 2011-07-31
-2896530 Illmensee Illmensee 47.86667 9.38333 P PPLA4 DE 01 084 08437 08437056 2030 757 Europe/Berlin 2011-04-25
-2896538 Illingen Illingen Illingen 49.36667 7.05 P PPL DE 09 18488 283 Europe/Berlin 2012-01-18
-2896539 Illingen Illingen 48.95 8.91667 P PPLA4 DE 01 082 08236 08236028 7205 249 Europe/Berlin 2011-04-25
-2896543 Illesheim Illesheim 49.46667 10.38333 P PPLA4 DE 02 095 09575 09575133 824 332 Europe/Berlin 2011-04-25
-2896546 Illertissen Illertissen Illertissen 48.22336 10.10347 P PPL DE 02 097 09775 09775129 16522 516 Europe/Berlin 2011-04-13
-2896547 Illerrieden Illerrieden 48.27017 10.05155 P PPLA4 DE 01 084 08425 08425066 3320 500 Europe/Berlin 2011-04-25
-2896548 Illerich Illerich 50.2 7.18333 P PPLA4 DE 08 00 07135 07135042 758 389 Europe/Berlin 2011-04-25
-2896592 Ilfeld Ilfeld Ilfeld,Ilfeld-Wiegersdorf 51.58333 10.78333 P PPLA4 DE 15 00 16062 16062022 3134 279 Europe/Berlin 2011-04-25
-2896599 Ilbesheim Ilbesheim 49.69 8.07528 P PPLA4 DE 08 00 07333 07333031 488 294 Europe/Berlin 2011-04-25
-2896600 Ilbesheim Ilbesheim Ibenstadt,Ilbesheim,Jlbesheim 49.1825 8.055 P PPL DE 08 1234 195 Europe/Berlin 2012-01-18
-2896602 Ilberstedt Ilberstedt Ilberstedt 51.8 11.66667 P PPLA4 DE 14 00 15089 15089185 1207 71 Europe/Berlin 2011-04-25
-2896613 Ihrlerstein Ihrlerstein 48.93333 11.86667 P PPLA4 DE 02 092 09273 09273133 4419 470 Europe/Berlin 2011-07-31
-2896616 Ihringen Ihringen Ihringen 48.05 7.65 P PPLA4 DE 01 083 08315 08315059 5833 233 Europe/Berlin 2011-04-25
-2896643 Ihlow Ihlow 51.88333 13.33333 P PPLA4 DE 11 00 12072 12072157 838 97 Europe/Berlin 2011-04-25
-2896648 Ihlienworth Ihlienworth 53.73333 8.91667 P PPLA4 DE 06 00 03352 03352025 1779 252 Europe/Berlin 2011-04-25
-2896677 Iggingen Iggingen 48.83167 9.87894 P PPLA4 DE 01 081 08136 08136034 2545 465 Europe/Berlin 2011-04-25
-2896679 Iggensbach Iggensbach 48.73333 13.13333 P PPLA4 DE 02 092 09271 09271127 2132 384 Europe/Berlin 2011-04-25
-2896687 Igersheim Igersheim 49.49444 9.81694 P PPLA4 DE 01 081 08128 08128058 5700 220 Europe/Berlin 2011-04-25
-2896689 Igensdorf Igensdorf 49.62322 11.23137 P PPL DE 02 4645 341 Europe/Berlin 2009-06-25
-2896721 Igel Igel Igel 49.71667 6.55 P PPLA4 DE 08 00 07235 07235051 2003 242 Europe/Berlin 2011-04-25
-2896724 Ifta Ifta Ifta 51.06667 10.18333 P PPLA4 DE 15 00 16063 16063039 1309 299 Europe/Berlin 2011-04-25
-2896727 Iffezheim Iffezheim 48.82167 8.1431 P PPLA4 DE 01 082 08216 08216023 4980 124 Europe/Berlin 2011-07-31
-2896731 Iffeldorf Iffeldorf 47.76667 11.31667 P PPLA4 DE 02 091 09190 09190132 2528 608 Europe/Berlin 2011-04-25
-2896736 Idstein Idstein Idstein 50.23333 8.26667 P PPL DE 05 22810 278 Europe/Berlin 2012-01-18
-2896739 Idstedt Idstedt Idstedt 54.58333 9.51667 P PPLA4 DE 10 00 01059 01059042 823 18 Europe/Berlin 2011-04-25
-2896742 Idesheim Idesheim 49.88333 6.56667 P PPLA4 DE 08 00 07232 07232061 390 328 Europe/Berlin 2011-04-25
-2896745 Idenheim Idenheim 49.9 6.56667 P PPLA4 DE 08 00 07232 07232060 444 362 Europe/Berlin 2011-04-25
-2896747 Iden Iden 52.77982 11.91296 P PPLA4 DE 14 00 15090 15090270 991 25 Europe/Berlin 2011-04-25
-2896748 Idelberg Idelberg 50.71667 7.71667 P PPLA4 DE 08 00 07132 07132056 58 260 Europe/Berlin 2011-04-25
-2896753 Idar-Oberstein Idar-Oberstein Idar-Obershtajn,Idar-Oberstein,Идар-Оберштайн 49.7 7.3 P PPL DE 08 31610 296 Europe/Berlin 2012-01-18
-2896761 Icking Icking 47.95 11.43333 P PPLA4 DE 02 091 09173 09173130 3586 654 Europe/Berlin 2011-04-25
-2896768 Ichtershausen Ichtershausen Ichtershausen 50.88333 10.96667 P PPLA4 DE 15 00 16070 16070028 3910 238 Europe/Berlin 2011-07-31
-2896772 Ichstedt Ichstedt Ichstedt 51.38333 11.2 P PPLA4 DE 15 00 16065 16065039 728 145 Europe/Berlin 2011-04-25
-2896776 Ichenhausen Ichenhausen 48.37119 10.30706 P PPL DE 02 8499 492 Europe/Berlin 2010-08-16
-2896817 Ibbenbüren Ibbenburen Ibbenburen,Ibbenbüren 52.26667 7.73333 P PPL DE 07 50577 69 Europe/Berlin 2012-01-18
-2896823 Ibach Ibach 47.73333 8.06667 P PPLA4 DE 01 083 08337 08337059 417 937 Europe/Berlin 2011-04-25
-2896834 Huy-Neinstedt Huy-Neinstedt 51.96667 10.91667 P PPL DE 14 8797 179 Europe/Berlin 2006-01-17
-2896852 Hüven Huven 52.78333 7.51667 P PPLA4 DE 06 00 03454 03454023 567 41 Europe/Berlin 2011-04-25
-2896877 Hüttlingen Huttlingen 48.89266 10.10064 P PPLA4 DE 01 081 08136 08136033 5678 407 Europe/Berlin 2011-04-25
-2896882 Hüttisheim Huttisheim 48.27965 9.94246 P PPLA4 DE 01 084 08425 08425064 1400 510 Europe/Berlin 2011-04-25
-2896898 Hutthurm Hutthurm Hutthurm,Hutthurm Markt 48.66667 13.48333 P PPL DE 02 5950 434 Europe/Berlin 2012-01-18
-2896906 Hütterscheid Hutterscheid 50 6.38333 P PPLA4 DE 08 00 07232 07232057 211 369 Europe/Berlin 2011-04-25
-2896933 Hüttenrode Huttenrode Huttenrode,Hüttenrode 51.76667 10.9 P PPL DE 14 1204 485 Europe/Berlin 2012-01-18
-2897020 Hütten Hutten Hutten,Hütten 54.43333 9.71667 P PPLA4 DE 10 00 01058 01058083 205 1 Europe/Berlin 2011-04-25
-2897028 Hütten Hutten 50.01667 6.25 P PPLA4 DE 08 00 07232 07232056 54 488 Europe/Berlin 2011-04-25
-2897054 Hüttblek Huttblek Huttblek,Hüttblek 53.83333 10.06667 P PPLA4 DE 10 00 01060 01060042 355 52 Europe/Berlin 2011-04-25
-2897063 Hütschenhausen Hutschenhausen 49.41667 7.48333 P PPLA4 DE 08 00 07335 07335016 4039 227 Europe/Berlin 2011-07-31
-2897132 Husum Husum Huesem,Husum,Hüsem,Khuzum,Хузум 54.4858 9.05239 P PPL DE 10 00 20841 12 Europe/Berlin 2010-11-20
-2897136 Husum Husum 52.56667 9.25 P PPLA4 DE 06 00 03256 03256016 2336 42 Europe/Berlin 2011-04-25
-2897200 Husby Husby 54.76667 9.58333 P PPLA4 DE 10 00 01059 01059127 0 47 Europe/Berlin 2011-04-25
-2897201 Hüsby Husby 54.5 9.48333 P PPLA4 DE 10 00 01059 01059041 0 35 Europe/Berlin 2011-04-25
-2897211 Hürup Hurup Hurup,Hürup 54.75 9.53333 P PPLA4 DE 10 00 01059 01059126 1180 44 Europe/Berlin 2011-04-25
-2897216 Hürth Hurth 50.87079 6.86761 P PPL DE 07 54678 91 Europe/Berlin 2010-09-08
-2897219 Hürtgenwald Hurtgenwald Hurtgenwald,Hürtgenwald 50.71667 6.36667 P PPLA4 DE 07 053 05358 05358016 8876 344 Europe/Berlin 2011-04-25
-2897245 Hurlach Hurlach 48.11667 10.81667 P PPLA4 DE 02 091 09181 09181126 1582 575 Europe/Berlin 2011-04-25
-2897263 Hupperath Hupperath 50 6.83333 P PPLA4 DE 08 00 07231 07231062 596 344 Europe/Berlin 2011-04-25
-2897281 Hunzel Hunzel 50.25 7.83333 P PPLA4 DE 08 00 07141 07141063 281 293 Europe/Berlin 2011-04-25
-2897283 Hünxe Hunxe 51.65 6.78333 P PPLA4 DE 07 051 05170 05170016 13732 32 Europe/Berlin 2011-04-25
-2897428 Hungenroth Hungenroth 50.13333 7.6 P PPLA4 DE 08 00 07140 07140060 266 479 Europe/Berlin 2011-04-25
-2897431 Hungen Hungen 50.47368 8.89326 P PPL DE 05 065 4588 150 162 Europe/Berlin 2010-11-15
-2897436 Hünfeld Hunfeld 50.67966 9.76727 P PPL DE 05 066 16323 277 Europe/Berlin 2010-11-15
-2897518 Hundsdorf Hundsdorf 50.46667 7.71667 P PPLA4 DE 08 00 07143 07143038 417 309 Europe/Berlin 2011-04-25
-2897555 Hundsbach Hundsbach 49.71667 7.55 P PPLA4 DE 08 00 07133 07133049 396 341 Europe/Berlin 2011-04-25
-2897557 Hundsangen Hundsangen 50.45 7.98333 P PPLA4 DE 08 00 07143 07143037 2103 263 Europe/Berlin 2011-04-25
-2897564 Hunding Hunding 48.84227 13.17681 P PPLA4 DE 02 092 09271 09271126 1238 467 Europe/Berlin 2011-08-22
-2897572 Hundhaupten Hundhaupten Hundhaupten 50.83333 11.98333 P PPLA4 DE 15 00 16076 16076033 405 318 Europe/Berlin 2011-04-25
-2897583 Hundeshagen Hundeshagen Hundeshagen 51.43333 10.28333 P PPLA4 DE 15 00 16061 16061052 1317 270 Europe/Berlin 2011-04-25
-2897593 Hunderdorf Hunderdorf 48.9 12.66667 P PPLL DE 02 3352 318 Europe/Berlin 2006-01-17
-2897594 Hunderdorf Hunderdorf 48.95 12.73333 P PPLA4 DE 02 092 09278 09278139 0 340 Europe/Berlin 2011-04-25
-2897635 Humptrup Humptrup Humptrup 54.86667 8.86667 P PPLA4 DE 10 00 01054 01054055 779 5 Europe/Berlin 2011-04-25
-2897639 Hümpfershausen Humpfershausen 50.66667 10.23333 P PPLA4 DE 15 00 16066 16066033 457 410 Europe/Berlin 2011-04-25
-2897673 Hummelshain Hummelshain Hummelshain 50.76667 11.63333 P PPLA4 DE 15 00 16074 16074042 639 338 Europe/Berlin 2011-04-25
-2897674 Hummelsbüttel Hummelsbuettel 53.64773 10.04149 P PPLX DE 04 17365 20 Europe/Berlin 2011-08-21
-2897692 Hummelfeld Hummelfeld Hummelfeld 54.46667 9.71667 P PPLA4 DE 10 00 01058 01058084 259 4 Europe/Berlin 2011-04-25
-2897715 Hümmel Hummel 50.46667 6.78333 P PPLA4 DE 08 00 07131 07131033 553 422 Europe/Berlin 2011-04-25
-2897800 Hülsede Hulsede 52.24951 9.36147 P PPLA4 DE 06 00 03257 03257017 1087 109 Europe/Berlin 2011-04-25
-2897801 Hülseburg Hulseburg 53.51303 11.19452 P PPLA4 DE 12 00 13054 13054047 171 45 Europe/Berlin 2011-08-28
-2897844 Hüllhorst Huellhorst 52.28333 8.66667 P PPLA4 DE 07 057 05770 05770016 13776 95 135 Europe/Berlin 2011-04-25
-2897879 Hülben Hulben 48.51982 9.4079 P PPLA4 DE 01 084 08415 08415039 2854 714 Europe/Berlin 2011-04-25
-2897881 Huje Huje Huje 53.97723 9.43441 P PPLA4 DE 10 00 01061 01061045 297 9 Europe/Berlin 2011-04-25
-2897883 Huisheim Huisheim 48.83333 10.7 P PPLA4 DE 02 097 09779 09779167 1663 439 Europe/Berlin 2011-04-25
-2897986 Hugoldsdorf Hugoldsdorf 54.14952 12.75367 P PPLA4 DE 12 00 13057 13057040 152 18 Europe/Berlin 2011-04-25
-2897991 Huglfing Huglfing 47.76667 11.16667 P PPLA4 DE 02 091 09190 09190131 2476 632 Europe/Berlin 2011-04-25
-2898004 Hügelsheim Hugelsheim Hugelsheim,Hügelsheim 48.8 8.11667 P PPLA4 DE 01 082 08216 08216022 4688 122 Europe/Berlin 2011-04-25
-2898028 Hüfingen Hufingen 47.92543 8.48831 P PPL DE 01 083 7747 687 Europe/Berlin 2010-11-15
-2898031 Hüffler Huffler 49.5 7.38333 P PPLA4 DE 08 00 07336 07336047 591 318 Europe/Berlin 2011-04-25
-2898033 Hüffenhardt Huffenhardt Huffenhardt,Huffenhartheim,Hüffenhardt,Hüffenhartheim 49.29194 9.08167 P PPLA4 DE 01 082 08225 08225042 2080 303 Europe/Berlin 2011-04-25
-2898036 Hüffelsheim Huffelsheim 49.81667 7.8 P PPLA4 DE 08 00 07133 07133048 1305 214 Europe/Berlin 2011-04-25
-2898076 Hude Hude 54.38333 9.21667 P PPLA4 DE 10 00 01054 01054054 188 255 Europe/Berlin 2011-04-25
-2898079 Hude Hude Hude 53.11667 8.46667 P PPL DE 06 15567 1 Europe/Berlin 2012-01-18
-2898081 Huede Huede Hude,Huede,Hüde 52.48333 8.35 P PPL DE 06 1070 38 Europe/Berlin 2012-01-18
-2898098 Hückeswagen Huckeswagen Huckeswagen,Hückeswagen 51.15 7.35 P PPL DE 07 16369 291 Europe/Berlin 2012-01-18
-2898111 Hückelhoven Huckelhoven Huckelhoven,Hückelhoven 51.05 6.21667 P PPL DE 07 39828 52 Europe/Berlin 2012-01-18
-2898149 Hüblingen Hublingen 50.56667 8.08333 P PPLA4 DE 08 00 07143 07143245 328 387 Europe/Berlin 2011-04-25
-2898151 Hübingen Hubingen 50.36667 7.83333 P PPLA4 DE 08 00 07143 07143036 552 374 Europe/Berlin 2011-04-25
-2898299 Hoym Hoym 51.78292 11.31244 P PPL DE 14 00 2680 130 Europe/Berlin 2010-11-22
-2898304 Hoyerswerda Hoyerswerda Hojerice,Hojeřice,Hoyerswerda,Hoyerwerda,Khojersverda,Wojerce,Wojerecy,hoierusuvu~eruda,Хойерсверда,ホイエルスヴェルダ 51.43333 14.25 P PPL DE 13 43681 117 Europe/Berlin 2012-01-18
-2898308 Hoyershausen Hoyershausen 52.01886 9.75346 P PPLA4 DE 06 00 03254 03254038 527 142 Europe/Berlin 2011-07-31
-2898312 Hoyerhagen Hoyerhagen 52.83333 9.08333 P PPLA4 DE 06 00 03256 03256015 1000 16 Europe/Berlin 2011-04-25
-2898316 Hoya Hoya Hoya,Hoya an Weser 52.8 9.15 P PPL DE 06 3959 16 Europe/Berlin 2012-01-18
-2898321 Höxter Hoexter Hoexter,Hoxaria,Huscaria,Huxaria,Huxori,Höxter,Khekster,Khjokster,hwkstr,Хекстер,Хёкстер,هوکستر 51.77501 9.38155 P PPLA3 DE 07 057 05762 05762020 32713 100 Europe/Berlin 2011-11-07
-2898364 Hövelhof Hovelhof Hovelhof,Hövelhof 51.81667 8.65 P PPLA4 DE 07 057 05774 05774024 15962 101 Europe/Berlin 2011-07-31
-2898372 Hövede Hovede Hovede,Hövede 54.25 9.3 P PPLA4 DE 10 00 01051 01051052 74 0 Europe/Berlin 2011-04-25
-2898415 Höttingen Hottingen 49.06262 11.0053 P PPLA4 DE 02 095 09577 09577141 1269 427 Europe/Berlin 2011-07-31
-2898424 Hottendorf Hottendorf 52.53333 11.55 P PPLA4 DE 14 00 15081 15081170 292 77 Europe/Berlin 2011-04-25
-2898431 Hottenbach Hottenbach 49.83333 7.3 P PPLA4 DE 08 00 07134 07134044 677 454 Europe/Berlin 2011-04-25
-2898435 Hötensleben Hotensleben Hoetensleben,Hoitenslewwe,Hokinaslofu,Hokinaslouu,Hokinasloŭu,Hokinasluvu,Hokinnesleuo [a. 1016],Hokinnesleŭo [a. 1016],Hoszensleue [a. 1226],Hoszensleŭe [a. 1226],Hottensleve [a. 1311],Hozeneslove [~a. 1150],Hötensleben,Hōkinasluvu,Khetensleben,Khjotensleben,Хетенслебен,Хётенслебен 52.11974 11.02238 P PPLA4 DE 14 00 15083 15083320 2445 107 Europe/Berlin 2011-11-07
-2898448 Hosten Hosten 49.9 6.61667 P PPLA4 DE 08 00 07232 07232055 184 255 Europe/Berlin 2011-04-25
-2898458 Hoßkirch Hosskirch Hooskirch,Hosskirch,Hoßkirch 47.95 9.45 P PPLA4 DE 01 084 08436 08436047 695 686 Europe/Berlin 2011-04-25
-2898471 Höslwang Hoslwang 47.95378 12.32915 P PPLA4 DE 02 091 09187 09187145 1228 594 Europe/Berlin 2011-04-25
-2898483 Hosenfeld Hosenfeld 50.50502 9.47966 P PPLA4 DE 05 066 06631 06631014 4831 377 Europe/Berlin 2011-04-25
-2898494 Hösbach Hosbach Hosbach,Hösbach 50 9.2 P PPL DE 02 13203 140 Europe/Berlin 2012-01-18
-2898512 Hörup Horup Horup,Hörup 54.73333 9.1 P PPLA4 DE 10 00 01059 01059123 638 5 Europe/Berlin 2011-04-25
-2898541 Horstmar Horstmar 52.08098 7.30539 P PPL DE 07 055 6822 104 Europe/Berlin 2010-11-15
-2898591 Hörsten Horsten 54.23333 9.58333 P PPLA4 DE 10 00 01058 01058075 95 254 Europe/Berlin 2011-04-25
-2898603 Hörstel Horstel Horstel,Hörstel 52.31667 7.58333 P PPL DE 07 19894 40 Europe/Berlin 2012-01-18
-2898607 Horstedt Horstedt 54.53333 9.06667 P PPLA4 DE 10 00 01054 01054052 733 1 Europe/Berlin 2011-04-25
-2898608 Horstedt Horstedt 53.18333 9.23333 P PPLA4 DE 06 00 03357 03357028 1381 33 Europe/Berlin 2011-04-25
-2898615 Horstdorf Horstdorf Horstdorf 51.81667 12.43333 P PPLA4 DE 14 00 15091 15091130 672 62 Europe/Berlin 2011-04-25
-2898640 Horst Horst Horst 53.81667 9.61667 P PPL DE 10 5183 8 Europe/Berlin 2012-01-18
-2898697 Hörselgau Horselgau Hoerselgau,Horselgau,Hörselgau 50.91667 10.58333 P PPLA4 DE 15 00 16067 16067038 1311 304 Europe/Berlin 2011-07-31
-2898706 Hörschhausen Horschhausen 50.25 6.93333 P PPLA4 DE 08 00 07233 07233032 177 499 Europe/Berlin 2011-04-25
-2898712 Hörscheid Horscheid 50.21667 6.86667 P PPLA4 DE 08 00 07233 07233031 141 491 Europe/Berlin 2011-04-25
-2898715 Horschbach Horschbach 49.58333 7.53333 P PPLA4 DE 08 00 07336 07336046 285 305 Europe/Berlin 2011-04-25
-2898723 Horrweiler Horrweiler 49.9 7.96667 P PPLA4 DE 08 00 07339 07339029 799 146 Europe/Berlin 2011-04-25
-2898732 Horrenberg Horrenberg 49.2804 8.78087 P PPLX DE 01 082 08226 08226010 1778 156 Europe/Berlin 2010-11-15
-2898744 Horperath Horperath 50.25 6.95 P PPLA4 DE 08 00 07233 07233216 134 497 Europe/Berlin 2011-04-25
-2898763 Hornstorf Hornstorf 53.91667 11.53333 P PPLA4 DE 12 00 13058 13058049 1268 38 Europe/Berlin 2011-04-25
-2898771 Hornsömmern Hornsommern 51.21667 10.81667 P PPLA4 DE 15 00 16064 16064027 151 312 Europe/Berlin 2011-04-25
-2898829 Hornhausen Hornhausen Hornhausen 52.0451 11.17104 P PPL DE 14 00 15083 15083415 1716 85 Europe/Berlin 2011-06-18
-2898847 Horneburg Horneburg 53.50672 9.57546 P PPL DE 06 5547 16 Europe/Berlin 2011-08-26
-2898863 Hornburg Hornburg Hornburg 52.03095 10.6049 P PPL DE 06 2689 92 Europe/Berlin 2011-05-03
-2898876 Hornberg Hornberg Hornberg 48.21667 8.23333 P PPL DE 01 4482 432 Europe/Berlin 2012-01-18
-2898892 Hornbek Hornbek Hornbek 53.56667 10.63333 P PPLA4 DE 10 00 01053 01053056 183 34 Europe/Berlin 2011-04-25
-2898894 Horn-Bad Meinberg Horn-Bad Meinberg Horn-Bad Meinberg,Khorn-Bad Majnberg,Хорн-Бад Майнберг 51.8855 8.96244 P PPLA4 DE 07 057 05766 05766032 0 215 Europe/Berlin 2011-11-07
-2898902 Hornbach Hornbach Hornbach 49.2 7.36667 P PPL DE 08 1717 242 Europe/Berlin 2012-01-18
-2898924 Horn Horn Haeoern,Horn,Horn (Horn-Bad Meinberg),Hornon,Häoern 51.87151 8.9451 P PPLX DE 07 057 05766 05766032 7018 220 Europe/Berlin 2011-11-07
-2898927 Horn Horn 50.05 7.53333 P PPLA4 DE 08 00 07140 07140058 372 463 Europe/Berlin 2011-04-25
-2898960 Hormersdorf Hormersdorf 50.66667 12.88333 P PPLA4 DE 13 145 14521 14521300 1645 580 Europe/Berlin 2011-04-25
-2899012 Horka Horka Horka 51.3 14.9 P PPLA4 DE 13 146 14626 14626200 0 164 Europe/Berlin 2011-04-25
-2899013 Horka Horka 51.26667 14.25 P PPL DE 13 2053 179 Europe/Berlin 2006-01-17
-2899016 Höringen Horingen 49.55 7.8 P PPLA4 DE 08 00 07333 07333030 750 294 Europe/Berlin 2011-04-25
-2899024 Horhausen Horhausen 50.6 7.53333 P PPL DE 08 1908 277 Europe/Berlin 2006-01-17
-2899025 Horhausen Horhausen 50.36667 7.9 P PPLA4 DE 08 00 07141 07141062 322 359 Europe/Berlin 2011-04-25
-2899033 Hörgertshausen Horgertshausen 48.55 11.86667 P PPLA4 DE 02 091 09178 09178132 1944 457 Europe/Berlin 2011-04-25
-2899040 Horgenzell Horgenzell 47.8 9.5 P PPLA4 DE 01 084 08436 08436095 4663 605 Europe/Berlin 2011-04-25
-2899048 Horgau Horgau 48.4 10.68333 P PPLA4 DE 02 097 09772 09772159 2459 492 Europe/Berlin 2011-04-25
-2899058 Hördt Hordt 49.16583 8.32639 P PPLA4 DE 08 00 07334 07334011 2413 111 Europe/Berlin 2011-04-25
-2899066 Hörden Hoerden Huern,Hürn 51.66835 10.28372 P PPLA4 DE 06 00 03156 03156010 1135 202 Europe/Berlin 2011-03-16
-2899081 Horbruch Horbruch 49.88333 7.23333 P PPLA4 DE 08 00 07134 07134043 362 476 Europe/Berlin 2011-04-25
-2899093 Horben Horben Horben 47.93333 7.86667 P PPLA4 DE 01 083 08315 08315056 1065 495 Europe/Berlin 2011-04-25
-2899101 Horb am Neckar Horb am Neckar Horb 48.44423 8.6913 P PPL DE 01 25960 394 Europe/Berlin 2008-12-23
-2899107 Horbach Horbach 50.38333 7.85 P PPLA4 DE 08 00 07143 07143034 720 233 Europe/Berlin 2011-04-25
-2899110 Horbach Horbach 49.81667 7.51667 P PPLA4 DE 08 00 07133 07133047 38 310 Europe/Berlin 2011-04-25
-2899113 Horbach Horbach 49.33333 7.65 P PPLA4 DE 08 00 07340 07340025 567 281 Europe/Berlin 2011-04-25
-2899123 Horath Horath 49.81667 6.98333 P PPLA4 DE 08 00 07231 07231058 476 491 Europe/Berlin 2011-04-25
-2899135 Hopsten Hopsten 52.38333 7.61667 P PPLA4 DE 07 055 05566 05566020 0 41 Europe/Berlin 2011-07-31
-2899138 Hoppstädten Hoppstadten 49.7 7.53333 P PPLA4 DE 08 00 07336 07336045 343 357 Europe/Berlin 2011-04-25
-2899158 Hoppenrade Hoppenrade 53.72785 12.27267 P PPLA4 DE 12 00 13053 13053035 818 19 Europe/Berlin 2011-04-25
-2899172 Hoppegarten Hoppegarten 52.51667 13.66667 P PPLA4 DE 11 00 12064 12064227 0 49 Europe/Berlin 2011-04-25
-2899191 Höpfingen Hopfingen 49.6025 9.42861 P PPLA4 DE 01 082 08225 08225039 3331 383 Europe/Berlin 2011-04-25
-2899194 Hopfgarten Hopfgarten 50.98333 11.26667 P PPLA4 DE 15 00 16071 16071034 696 283 Europe/Berlin 2011-04-25
-2899202 Hopferau Hopferau 47.61667 10.63333 P PPLA4 DE 02 097 09777 09777135 1050 796 Europe/Berlin 2011-04-25
-2899278 Hoort Hoort 53.48333 11.36667 P PPLA4 DE 12 00 13054 13054046 623 39 Europe/Berlin 2011-04-25
-2899291 Hoogstede Hoogstede 52.58333 6.95 P PPLA4 DE 06 00 03456 03456009 2793 14 Europe/Berlin 2011-04-25
-2899304 Hontheim Hontheim 50.06667 6.98333 P PPLA4 DE 08 00 07231 07231057 823 387 Europe/Berlin 2011-04-25
-2899327 Hönningen Honningen 50.46667 6.95 P PPLA4 DE 08 00 07131 07131029 0 210 Europe/Berlin 2011-04-25
-2899352 Honigsee Honigsee Honigsee 54.23333 10.18333 P PPLA4 DE 10 00 01057 01057031 474 39 Europe/Berlin 2011-04-25
-2899384 Honerath Honerath 50.38333 6.9 P PPLA4 DE 08 00 07131 07131032 196 362 Europe/Berlin 2011-04-25
-2899419 Hommerdingen Hommerdingen Homerdingen,Hommerdingen 49.91667 6.31667 P PPLA4 DE 08 00 07232 07232054 61 371 Europe/Berlin 2011-04-25
-2899449 Homburg Homburg Homburg 49.31667 7.33333 P PPL DE 09 44607 228 Europe/Berlin 2012-01-18
-2899478 Homberg Homberg 51.03333 9.4 P PPL DE 05 14903 253 Europe/Berlin 2006-01-17
-2899479 Homberg Homberg Homberg,Homberg an der Ohm 50.73333 9 P PPL DE 05 7863 268 Europe/Berlin 2012-01-18
-2899480 Homberg Homberg 50.65 8.1 P PPLA4 DE 08 00 07143 07143244 0 595 Europe/Berlin 2011-04-25
-2899481 Hömberg Homberg 50.33333 7.78333 P PPLA4 DE 08 00 07141 07141058 327 382 Europe/Berlin 2011-04-25
-2899482 Homberg Homberg 49.65 7.51667 P PPLA4 DE 08 00 07336 07336044 0 367 Europe/Berlin 2011-04-25
-2899538 Holzwickede Holzwickede 51.5 7.63333 P PPLA4 DE 07 059 05978 05978016 17821 135 Europe/Berlin 2011-07-31
-2899539 Holzweißig Holzweissig Holzweiddig,Holzweissig,Holzweisslig,Holzweißig,Holzweißlig 51.6 12.3 P PPL DE 14 3250 83 Europe/Berlin 2012-01-18
-2899560 Holzsußra Holzsussra Holzsussra,Holzsußra 51.28333 10.68333 P PPLA4 DE 15 00 16065 16065038 311 298 Europe/Berlin 2011-04-25
-2899601 Holzminden Holzminden 51.82798 9.4455 P PPL DE 06 20998 91 Europe/Berlin 2011-03-21
-2899620 Holzmaden Holzmaden Holzmaden 48.63333 9.51667 P PPLA4 DE 01 081 08116 08116029 2172 356 Europe/Berlin 2011-04-25
-2899671 Holzkirchen Holzkirchen 49.78139 9.68028 P PPLA4 DE 02 096 09679 09679149 916 213 Europe/Berlin 2011-04-25
-2899676 Holzkirchen Holzkirchen 47.87663 11.70181 P PPL DE 02 091 15199 691 Europe/Berlin 2010-11-15
-2899677 Holzkirch Holzkirch 48.53124 9.9952 P PPLA4 DE 01 084 08425 08425062 284 590 Europe/Berlin 2011-04-25
-2899716 Holzheim Holzheim 50.35 8.05 P PPLA4 DE 08 00 07141 07141061 913 124 Europe/Berlin 2011-04-25
-2899722 Holzheim Holzheim 48.61667 10.95 P PPLA4 DE 02 097 09779 09779163 0 440 Europe/Berlin 2011-07-31
-2899723 Holzheim Holzheim 48.51422 10.53057 P PPLA4 DE 02 097 09773 09773140 3755 431 Europe/Berlin 2011-04-25
-2899724 Holzheim Holzheim 48.38333 10.1 P PPLA4 DE 02 097 09775 09775126 1747 474 Europe/Berlin 2011-04-25
-2899767 Holzhausen an der Haide Holzhausen an der Haide Holzhausen,Holzhausen an der Haide 50.21667 7.91667 P PPLA4 DE 08 00 07141 07141060 1291 390 Europe/Berlin 2011-07-31
-2899870 Holzgünz Holzgunz 48.01667 10.26667 P PPLA4 DE 02 097 09778 09778151 1170 611 Europe/Berlin 2011-04-25
-2899880 Holzgerlingen Holzgerlingen 48.63969 9.01149 P PPL DE 01 11613 478 Europe/Berlin 2008-12-23
-2899913 Holzen Holzen 51.93333 9.66667 P PPLA4 DE 06 00 03255 03255022 671 180 Europe/Berlin 2011-04-25
-2899959 Holzdorf Holzdorf 54.55 9.88333 P PPLA4 DE 10 00 01058 01058082 965 23 Europe/Berlin 2011-04-25
-2899961 Holzdorf Holzdorf Holzdorf 51.76667 13.13333 P PPL DE 14 1324 93 Europe/Berlin 2012-01-18
-2899970 Holzbunge Holzbunge Holzbunge 54.38333 9.7 P PPLA4 DE 10 00 01058 01058081 365 32 Europe/Berlin 2011-04-25
-2900020 Holzbach Holzbach 49.95 7.53333 P PPLA4 DE 08 00 07140 07140056 533 417 Europe/Berlin 2011-04-25
-2900027 Holzappel Holzappel Holzappel 50.35 7.9 P PPLA4 DE 08 00 07141 07141059 1106 302 Europe/Berlin 2011-07-31
-2900066 Holungen Holungen 51.49154 10.39358 P PPLA4 DE 15 00 16061 16061051 960 351 Europe/Berlin 2011-07-31
-2900079 Holtsee Holtsee Holtsee 54.4 9.85 P PPLA4 DE 10 00 01058 01058080 1330 20 Europe/Berlin 2011-04-25
-2900105 Holtland Holtland 53.28333 7.58333 P PPLA4 DE 06 00 03457 03457011 2248 8 Europe/Berlin 2011-04-25
-2900126 Holthusen Holthusen 53.55 11.35 P PPLA4 DE 12 00 13054 13054045 861 44 Europe/Berlin 2011-04-25
-2900176 Holtgast Holtgast 53.63333 7.56667 P PPLA4 DE 06 00 03462 03462006 0 2 Europe/Berlin 2011-04-25
-2900240 Holt Holt 54.81667 9.15 P PPLA4 DE 10 00 01059 01059124 181 19 Europe/Berlin 2011-04-25
-2900245 Holsthum Holsthum 49.89353 6.41275 P PPLA4 DE 08 00 07232 07232053 544 198 Europe/Berlin 2011-04-25
-2900253 Holstenniendorf Holstenniendorf Holstenniendorf 54.04161 9.34808 P PPLA4 DE 10 00 01061 01061043 424 11 Europe/Berlin 2011-04-25
-2900337 Holm Holm 54.83333 8.86667 P PPLA4 DE 10 00 01054 01054048 80 1 Europe/Berlin 2011-04-25
-2900341 Holm Holm 53.61667 9.66667 P PPLA4 DE 10 00 01056 01056028 3094 3 Europe/Berlin 2011-04-25
-2900375 Hollstadt Hollstadt 50.35 10.3 P PPLA4 DE 02 096 09673 09673136 1688 243 Europe/Berlin 2011-04-25
-2900391 Hollnseth Hollnseth 53.58333 9.1 P PPLA4 DE 06 00 03352 03352024 921 255 Europe/Berlin 2011-04-25
-2900393 Hollnich Hollnich 50.06667 7.48333 P PPLA4 DE 08 00 07140 07140055 292 488 Europe/Berlin 2011-04-25
-2900409 Hollingstedt Hollingstedt 54.45 9.35 P PPLA4 DE 10 00 01059 01059039 1021 0 Europe/Berlin 2011-04-25
-2900410 Hollingstedt Hollingstedt 54.3 9.21667 P PPLA4 DE 10 00 01051 01051053 352 254 Europe/Berlin 2011-04-25
-2900453 Hollfeld Hollfeld Hollfeld 49.93861 11.2925 P PPL DE 02 5206 402 Europe/Berlin 2012-01-18
-2900499 Holler Holler 50.41667 7.83333 P PPLA4 DE 08 00 07143 07143033 1191 222 Europe/Berlin 2011-04-25
-2900520 Hollenstedt Hollenstedt Hollenstedt 53.36667 9.71667 P PPLA4 DE 06 00 03353 03353019 3092 24 Europe/Berlin 2011-04-25
-2900579 Hollenbek Hollenbek 53.58333 10.81667 P PPLA4 DE 10 00 01053 01053054 0 40 Europe/Berlin 2011-04-25
-2900590 Hollenbach Hollenbach 48.48333 11.06667 P PPLA4 DE 02 097 09771 09771140 2372 454 Europe/Berlin 2011-04-25
-2900595 Hollen Hollen 53.43333 8.7 P PPLA4 DE 06 00 03352 03352023 858 253 Europe/Berlin 2011-04-25
-2900617 Holleben Holleben 51.43333 11.9 P PPL DE 14 1741 86 Europe/Berlin 2006-01-17
-2900623 Holle Holle 52.08721 10.16012 P PPLA4 DE 06 00 03254 03254022 7349 111 Europe/Berlin 2011-07-31
-2900639 Holldorf Holldorf 53.46667 13.26667 P PPLA4 DE 12 00 13055 13055033 863 93 Europe/Berlin 2011-04-25
-2900732 Holenberg Holenberg 51.91667 9.58333 P PPLA4 DE 06 00 03255 03255021 0 304 Europe/Berlin 2011-04-25
-2900739 Holdorf Holdorf 53.73333 11.06667 P PPLA4 DE 12 00 13058 13058048 0 28 Europe/Berlin 2011-04-25
-2900740 Holdorf Holdorf Holdorf 52.58333 8.11667 P PPLA4 DE 06 00 03460 03460005 6557 37 Europe/Berlin 2011-07-31
-2900787 Hoisdorf Hoisdorf Hoisdorf 53.65 10.31667 P PPLA4 DE 10 00 01062 01062035 3460 51 Europe/Berlin 2011-04-25
-2900799 Höingen Hoeingen 50.7191 8.91961 P PPL DE 07 059 05974 1954 235 351 Europe/Berlin 2012-01-26
-2900825 Höhr-Grenzhausen Hohr-Grenzhausen Grenzhausen,Hohr-Grenzhausen,Höhr-Grenzhausen 50.43333 7.66667 P PPL DE 08 9794 229 Europe/Berlin 2012-01-18
-2900844 Hohnstein Hohnstein 50.97991 14.11408 P PPL DE 13 146 3806 317 Europe/Berlin 2010-11-15
-2900849 Höhnstedt Hohnstedt Hohnstedt,Höhnstedt 51.5 11.73333 P PPL DE 14 1645 164 Europe/Berlin 2012-01-18
-2900865 Hohnhorst Hohnhorst 52.36942 9.37168 P PPLA4 DE 06 00 03257 03257016 2262 62 Europe/Berlin 2011-07-31
-2900881 Hohne Hohne 52.58333 10.36667 P PPLA4 DE 06 00 03351 03351015 0 51 Europe/Berlin 2011-04-25
-2900884 Höhndorf Hohndorf 54.36667 10.36667 P PPLA4 DE 10 00 01057 01057028 347 31 Europe/Berlin 2011-04-25
-2900889 Hohndorf Hohndorf 50.75 12.68333 P PPLA4 DE 13 145 14521 14521290 3976 378 Europe/Berlin 2011-04-25
-2900899 Hohn Hohn 54.3 9.5 P PPLA4 DE 10 00 01058 01058078 2326 8 Europe/Berlin 2011-04-25
-2901006 Höhfröschen Hohfroschen 49.25 7.56667 P PPLA4 DE 08 00 07340 07340024 977 361 Europe/Berlin 2011-04-25
-2901324 Hohenzieritz Hohenzieritz 53.44237 13.09811 P PPLA4 DE 12 00 13055 13055032 564 72 Europe/Berlin 2011-04-25
-2901348 Hohenwestedt Hohenwestedt Hohenwestedt 54.08333 9.66667 P PPLA4 DE 10 00 01058 01058077 5092 53 Europe/Berlin 2011-07-31
-2901358 Hohenwarthe Hohenwarthe Hohenwarthe 52.23333 11.71667 P PPL DE 14 1475 56 Europe/Berlin 2012-01-18
-2901360 Hohenwarth Hohenwarth 49.2 12.93333 P PPLA4 DE 02 093 09372 09372135 2132 532 Europe/Berlin 2011-04-25
-2901364 Hohenwarte Hohenwarte Hohenwarte 50.6 11.48333 P PPLA4 DE 15 00 16073 16073035 158 337 Europe/Berlin 2011-04-25
-2901377 Hohenwarsleben Hohenwarsleben 52.17898 11.49994 P PPL DE 14 00 1550 131 Europe/Berlin 2010-11-22
-2901378 Hohen Wangelin Hohen Wangelin 53.61145 12.42331 P PPLA4 DE 12 00 13056 13056023 747 69 Europe/Berlin 2011-07-31
-2901386 Hohen Viecheln Hohen Viecheln 53.78453 11.5111 P PPLA4 DE 12 00 13058 13058047 677 56 Europe/Berlin 2011-04-25
-2901397 Hohenthurm Hohenthurm Hohenthurm,Hohenturn 51.51667 12.1 P PPL DE 14 2285 103 Europe/Berlin 2012-01-18
-2901398 Hohenthann Hohenthann Hohentan,Hohenthann 48.66667 12.1 P PPLA4 DE 02 092 09274 09274141 3741 459 Europe/Berlin 2011-07-31
-2901405 Hohentengen Hohentengen 48.02946 9.37739 P PPLA4 DE 01 084 08437 08437053 4453 575 Europe/Berlin 2011-04-25
-2901406 Hohentengen Hohentengen 47.56667 8.43333 P PPL DE 01 3556 336 Europe/Berlin 2006-01-17
-2901413 Hohen-Sülzen Hohen-Sulzen 49.61917 8.22556 P PPLA4 DE 08 00 07331 07331041 582 127 Europe/Berlin 2011-04-25
-2901420 Hohenstein-Ernstthal Hohenstein-Ernstthal Hohenstein-Ernstthal 50.8 12.71667 P PPL DE 13 16542 351 Europe/Berlin 2012-01-18
-2901467 Hohenstadt Hohenstadt 48.5444 9.66393 P PPLA4 DE 01 081 08117 08117031 745 814 Europe/Berlin 2011-04-25
-2901471 Hohen Sprenz Hohen Sprenz 53.91121 12.19482 P PPLA4 DE 12 00 13053 13053034 547 35 Europe/Berlin 2011-04-25
-2901514 Hohenroth Hohenroth Hohenroth 50.31667 10.18333 P PPLA4 DE 02 096 09673 09673135 0 296 Europe/Berlin 2011-04-25
-2901564 Hohen Pritz Hohen Pritz 53.63333 11.9 P PPLA4 DE 12 00 13060 13060035 513 64 Europe/Berlin 2011-04-25
-2901568 Hohenpolding Hohenpolding 48.38333 12.13333 P PPLA4 DE 02 091 09177 09177121 1410 495 Europe/Berlin 2011-04-25
-2901572 Hohenpeißenberg Hohenpeissenberg Hohenpeissenberg,Hohenpeißenberg 47.8 11 P PPLA4 DE 02 091 09190 09190130 3924 771 Europe/Berlin 2011-04-25
-2901577 Hohenölsen Hohenolsen Hohenolsen,Hohenölsen 50.73333 12.08333 P PPLA4 DE 15 00 16076 16076031 694 345 Europe/Berlin 2011-04-25
-2901578 Hohenöllen Hohenollen 49.61667 7.63333 P PPLA4 DE 08 00 07336 07336043 372 321 Europe/Berlin 2011-04-25
-2901588 Hohen Neuendorf Hohen Neuendorf Hohen Neuendorf 52.66667 13.28333 P PPL DE 11 21893 53 Europe/Berlin 2012-01-18
-2901601 Hohenmölsen Hohenmolsen Hohenmolsen,Hohenmölsen 51.15 12.08333 P PPL DE 14 9772 152 Europe/Berlin 2012-01-18
-2901602 Hohenmocker Hohenmocker 53.81667 13.18333 P PPLA4 DE 12 00 13052 13052094 347 37 Europe/Berlin 2011-04-25
-2901621 Hohenlockstedt Hohenlockstedt Hohenlockstedt,Lockstedter Lager 53.96667 9.61667 P PPLA4 DE 10 00 01061 01061042 6224 17 Europe/Berlin 2011-04-25
-2901625 Hohenlinden Hohenlinden 48.15612 11.99458 P PPLA4 DE 02 091 09175 09175123 2769 542 Europe/Berlin 2011-04-25
-2901634 Hohenleuben Hohenleuben Hohenleuben 50.71667 12.05 P PPL DE 15 1778 386 Europe/Berlin 2012-01-18
-2901638 Hohenleipisch Hohenleipisch Hohenleipisch 51.5 13.55 P PPLA4 DE 11 00 12062 12062240 2562 137 Europe/Berlin 2011-04-25
-2901640 Hohenleimbach Hohenleimbach Hohenleimbach,Leimbach 50.41667 7.06667 P PPLA4 DE 08 00 07131 07131206 370 569 Europe/Berlin 2011-04-25
-2901653 Hohenkirchen Hohenkirchen 53.91667 11.31667 P PPLA4 DE 12 00 13058 13058116 0 15 Europe/Berlin 2011-04-25
-2901658 Hohenkirchen Hohenkirchen 50.85 10.7 P PPLA4 DE 15 00 16067 16067039 808 354 Europe/Berlin 2011-04-25
-2901670 Hohenkammer Hohenkammer Hohen Cammer,Hohenkamer,Hohenkammer 48.41667 11.53333 P PPLA4 DE 02 091 09178 09178133 2256 510 Europe/Berlin 2011-04-25
-2901691 Hohenhorn Hohenhorn 53.48333 10.36667 P PPLA4 DE 10 00 01053 01053053 443 68 Europe/Berlin 2011-04-25
-2901731 Hohenhameln Hohenhameln 52.25755 10.06416 P PPLA4 DE 06 00 03157 03157002 9815 104 Europe/Berlin 2011-04-25
-2901756 Hohengandern Hohengandern Hohengandern 51.36667 9.95 P PPLA4 DE 15 00 16061 16061048 586 214 Europe/Berlin 2011-04-25
-2901757 Hohenfurch Hohenfurch Hohenfurch,Hohenfurth 47.85 10.9 P PPLA4 DE 02 091 09190 09190129 1512 702 Europe/Berlin 2011-04-25
-2901763 Hohenfinow Hohenfinow 52.8134 13.92491 P PPLA4 DE 11 00 12060 12060092 536 54 Europe/Berlin 2011-04-25
-2901774 Hohenfels Hohenfels 49.20397 11.84841 P PPL DE 02 2156 399 Europe/Berlin 2009-06-24
-2901781 Hohenfelden Hohenfelden 50.87853 11.16056 P PPLA4 DE 15 00 16071 16071032 372 328 328 Europe/Berlin 2011-04-25
-2901783 Hohenfelde Hohenfelde 54.36667 10.5 P PPLA4 DE 10 00 01057 01057029 1104 19 Europe/Berlin 2011-04-25
-2901785 Hohenfelde Hohenfelde 54.08333 11.91667 P PPLA4 DE 12 00 13051 13051028 0 57 Europe/Berlin 2011-07-31
-2901787 Hohenfelde Hohenfelde 53.85 9.61667 P PPLA4 DE 10 00 01061 01061041 937 254 Europe/Berlin 2011-04-25
-2901790 Hohenfelde Hohenfelde 53.63333 10.46667 P PPLA4 DE 10 00 01062 01062033 59 68 Europe/Berlin 2011-04-25
-2901832 Hohendorf Hohendorf 54.01667 13.73333 P PPLA4 DE 12 00 13059 13059032 954 24 Europe/Berlin 2011-04-25
-2901839 Hohendodeleben Hohendodeleben Hohendodeleben 52.1 11.5 P PPL DE 14 1834 125 Europe/Berlin 2012-01-18
-2901842 Hohen Demzin Hohen Demzin 53.7214 12.54381 P PPLA4 DE 12 00 13053 13053033 480 69 Europe/Berlin 2011-04-25
-2901849 Hohenburg Hohenburg 49.29507 11.79906 P PPL DE 02 1725 386 Europe/Berlin 2009-05-03
-2901861 Hohenbucko Hohenbucko 51.76667 13.46667 P PPLA4 DE 11 00 12062 12062237 721 131 Europe/Berlin 2011-04-25
-2901872 Hohenbrunn Hohenbrunn 48.04785 11.70224 P PPLA4 DE 02 091 09184 09184129 8590 571 Europe/Berlin 2011-04-25
-2901885 Hohenbollentin Hohenbollentin 53.78333 13.01667 P PPLA4 DE 12 00 13052 13052035 149 47 Europe/Berlin 2011-04-25
-2901895 Hohenbocka Hohenbocka 51.43333 14 P PPLA4 DE 11 00 12066 12066132 1192 124 Europe/Berlin 2011-04-25
-2901900 Hohenberg-Krusemark Hohenberg-Krusemark Hohenberg,Hohenberg-Krusemark 52.73333 11.96667 P PPLA4 DE 14 00 15090 15090245 669 32 Europe/Berlin 2011-04-25
-2901906 Hohenberg an der Eger Hohenberg an der Eger Hohenberg,Hohenberg an der Eger 50.1 12.23333 P PPL DE 02 1567 474 Europe/Berlin 2012-01-18
-2901984 Hohenaspe Hohenaspe Hohenasbe,Hohenaspe 53.98898 9.52774 P PPLA4 DE 10 00 01061 01061040 2089 21 Europe/Berlin 2011-04-25
-2901986 Hohenaltheim Hohenaltheim 48.78402 10.53486 P PPLA4 DE 02 097 09779 09779162 629 442 Europe/Berlin 2011-04-25
-2902064 Höheischweiler Hoheischweiler 49.23333 7.55 P PPLA4 DE 08 00 07340 07340023 1018 352 Europe/Berlin 2011-04-25
-2902065 Höheinöd Hoheinod 49.28333 7.6 P PPLA4 DE 08 00 07340 07340022 1253 356 Europe/Berlin 2011-04-25
-2902230 Hohburg Hohburg 51.41168 12.80508 P PPLA4 DE 13 147 14729 14729200 3061 127 Europe/Berlin 2011-04-25
-2902235 Hohberg Hohberg 48.31667 7.9 P PPLL DE 01 7809 361 Europe/Berlin 2006-01-17
-2902284 Högsdorf Hogsdorf Hogsdorf,Högsdorf 54.25 10.61667 P PPLA4 DE 10 00 01057 01057027 458 57 Europe/Berlin 2011-04-25
-2902297 Högersdorf Hogersdorf Hogersdorf,Högersdorf 53.91667 10.28333 P PPLA4 DE 10 00 01060 01060041 403 24 Europe/Berlin 2011-04-25
-2902316 Högel Hogel Hogel,Högel 54.65 9.06667 P PPLA4 DE 10 00 01054 01054045 462 7 Europe/Berlin 2011-04-25
-2902370 Hofstetten Hofstetten 48.25 8.06667 P PPLA4 DE 01 083 08317 08317046 1661 398 Europe/Berlin 2011-04-25
-2902371 Hofstetten Hofstetten 48.01667 10.96667 P PPLA4 DE 02 091 09181 09181124 1764 661 Europe/Berlin 2011-04-25
-2902514 Hofkirchen Hofkirchen Hofkirchen 48.68333 13.11667 P PPL DE 02 3712 310 Europe/Berlin 2012-02-02
-2902531 Hofheim in Unterfranken Hofheim in Unterfranken Hofheim,Hofheim in Mainfranken,Hofheim in Unterfranken 50.13333 10.53333 P PPL DE 02 5199 249 Europe/Berlin 2012-01-18
-2902533 Hofheim am Taunus Hofheim am Taunus Hofheim,Hofheim am Taunus,Hofheim in Taunus 50.08333 8.45 P PPL DE 05 37750 124 Europe/Berlin 2012-01-18
-2902559 Hofgeismar Hofgeismar Hofgeismar 51.48333 9.4 P PPL DE 05 16444 159 Europe/Berlin 2012-01-18
-2902587 Hoffeld Hoffeld 54.2 10 P PPLA4 DE 10 00 01058 01058076 162 37 Europe/Berlin 2011-04-25
-2902588 Hoffeld Hoffeld 50.36667 6.81667 P PPLA4 DE 08 00 07131 07131030 338 456 Europe/Berlin 2011-04-25
-2902618 Höfer Hofer 52.68333 10.25 P PPLA4 DE 06 00 03351 03351014 967 55 Europe/Berlin 2011-04-25
-2902628 Höfen an der Enz Hofen an der Enz Hofen,Hofen an der Enz,Höfen,Höfen an der Enz 48.8 8.58333 P PPLA4 DE 01 082 08235 08235035 1726 368 Europe/Berlin 2011-04-25
-2902731 Hofbieber Hofbieber 50.58629 9.83534 P PPLA4 DE 05 066 06631 06631013 6372 380 Europe/Berlin 2011-04-25
-2902767 Hof Hof 50.66667 8.01667 P PPLA4 DE 08 00 07143 07143243 1284 534 Europe/Berlin 2011-04-25
-2902768 Hof Hof Hof,Khof,Хоф 50.31667 11.91667 P PPL DE 02 49239 496 Europe/Berlin 2012-01-18
-2902810 Hodorf Hodorf Hodorf 53.90057 9.42992 P PPLA4 DE 10 00 01061 01061039 239 255 Europe/Berlin 2011-04-25
-2902818 Hodenhagen Hodenhagen 52.75 9.58333 P PPLA4 DE 06 00 03358 03358014 3168 23 Europe/Berlin 2011-04-25
-2902831 Hockweiler Hockweiler 49.70311 6.69213 P PPLA4 DE 08 00 07235 07235048 198 398 Europe/Berlin 2011-04-25
-2902852 Hockenheim Hockenheim Hockenheim 49.32278 8.54583 P PPL DE 01 20614 106 Europe/Berlin 2012-01-18
-2902855 Höckendorf Hockendorf 51.23333 13.91667 P PPL DE 13 3156 217 Europe/Berlin 2006-01-17
-2902858 Höckendorf Hockendorf Hockendorf,Höckendorf 50.91667 13.58333 P PPLA4 DE 13 146 14628 14628180 0 384 Europe/Berlin 2011-04-25
-2902951 Höchst im Odenwald Hochst im Odenwald Hochst,Hochst im Odenwald,Höchst,Höchst im Odenwald 49.79972 8.99944 P PPL DE 05 10010 156 Europe/Berlin 2012-01-18
-2902965 Höchstenbach Hochstenbach 50.63333 7.73333 P PPLA4 DE 08 00 07143 07143241 705 305 Europe/Berlin 2011-04-25
-2902987 Höchstberg Hochstberg 50.25 7 P PPLA4 DE 08 00 07233 07233215 410 463 Europe/Berlin 2011-04-25
-2902996 Hochstätten Hochstatten 49.76667 7.83333 P PPLA4 DE 08 00 07133 07133045 698 136 Europe/Berlin 2011-04-25
-2903011 Höchstädt bei Thiersheim Hochstadt bei Thiersheim Hochstadt,Hochstadt bei Thiersheim,Höchstädt,Höchstädt bei Thiersheim 50.1 12.08333 P PPL DE 02 1225 563 Europe/Berlin 2012-01-18
-2903012 Höchstädt an der Donau Hochstadt an der Donau Hochstadt,Hochstatt,Höchstädt 48.61124 10.56816 P PPL DE 02 6795 418 Europe/Berlin 2009-01-21
-2903013 Hochstadt am Main Hochstadt am Main Hochstadt 50.15009 11.17116 P PPL DE 02 1702 283 Europe/Berlin 2008-08-19
-2903016 Höchstadt an der Aisch Hochstadt an der Aisch Hochstadt,Höchstadt 49.70617 10.81329 P PPL DE 02 13418 274 Europe/Berlin 2010-09-07
-2903026 Hochspeyer Hochspeyer 49.45 7.9 P PPLA4 DE 08 00 07335 07335015 4877 294 Europe/Berlin 2011-04-25
-2903038 Hochscheid Hochscheid 49.88333 7.21667 P PPLA4 DE 08 00 07231 07231056 255 523 Europe/Berlin 2011-04-25
-2903125 Hochkirch Hochkirch 51.15 14.58333 P PPLA4 DE 13 146 14625 14625230 2525 243 Europe/Berlin 2011-04-25
-2903175 Hochheim am Main Hochheim am Main Hochheim,Hochheim am Main 50.01667 8.35 P PPL DE 05 17027 127 Europe/Berlin 2012-01-18
-2903178 Hochheim Hochheim 51.01667 10.66667 P PPLA4 DE 15 00 16067 16067037 0 283 Europe/Berlin 2011-04-25
-2903180 Höchheim Hochheim 50.36667 10.45 P PPLA4 DE 02 096 09673 09673134 1295 312 Europe/Berlin 2011-04-25
-2903256 Höchenschwand Hochenschwand 47.73333 8.16667 P PPLA4 DE 01 083 08337 08337051 2478 994 Europe/Berlin 2011-04-25
-2903290 Hochdorf Hochdorf 48.69283 9.46494 P PPLA4 DE 01 081 08116 08116027 4665 281 Europe/Berlin 2011-04-25
-2903295 Hochdorf Hochdorf 48.03333 9.78333 P PPLA4 DE 01 084 08426 08426058 2069 544 Europe/Berlin 2011-04-25
-2903298 Hochdonn Hochdonn Hochdorn 54.02663 9.27624 P PPLA4 DE 10 00 01051 01051051 1233 1 Europe/Berlin 2011-04-25
-2903327 Höchberg Hochberg Hochberg,Höchberg 49.78333 9.88194 P PPL DE 02 9372 283 Europe/Berlin 2012-02-28
-2903445 Hitzhusen Hitzhusen Hitzhusen 53.93333 9.85 P PPLA4 DE 10 00 01060 01060040 1225 20 Europe/Berlin 2011-04-25
-2903446 Hitzhofen Hitzhofen 48.85 11.31667 P PPLA4 DE 02 091 09176 09176132 0 455 Europe/Berlin 2011-04-25
-2903470 Hitzacker Hitzacker 53.15254 11.04418 P PPL DE 06 5173 28 Europe/Berlin 2008-10-29
-2903480 Hittbergen Hittbergen 53.3445 10.58914 P PPLA4 DE 06 00 03355 03355018 879 8 Europe/Berlin 2011-09-04
-2903489 Hisel Hisel 49.96309 6.37404 P PPLA4 DE 08 00 07232 07232052 16 373 Europe/Berlin 2011-04-25
-2903494 Hirz-Maulsbach Hirz-Maulsbach 50.68333 7.48333 P PPLA4 DE 08 00 07132 07132053 302 274 Europe/Berlin 2011-04-25
-2903504 Hirzenhain Hirzenhain Hirzenhain 50.4 9.13333 P PPLA4 DE 05 064 06440 06440011 3026 294 Europe/Berlin 2011-04-25
-2903540 Hirten Hirten 50.33333 7.1 P PPLA4 DE 08 00 07137 07137036 312 507 Europe/Berlin 2011-04-25
-2903625 Hirschhorn Hirschhorn 49.44806 8.89806 P PPL DE 05 3691 160 Europe/Berlin 2006-01-17
-2903658 Hirschfelde Hirschfelde 50.94437 14.8851 P PPL DE 13 3994 224 Europe/Berlin 2010-09-12
-2903659 Hirschfeld Hirschfeld 51.38333 13.61667 P PPLA4 DE 11 00 12062 12062232 1436 116 Europe/Berlin 2011-04-25
-2903662 Hirschfeld Hirschfeld 50.95 12.18333 P PPLA4 DE 15 00 16076 16076028 135 283 Europe/Berlin 2011-04-25
-2903663 Hirschfeld Hirschfeld 50.63333 12.46667 P PPLA4 DE 13 145 14524 14524110 1287 389 Europe/Berlin 2011-04-25
-2903721 Hirschberg Hirschberg 50.38333 7.93333 P PPLA4 DE 08 00 07141 07141057 402 314 Europe/Berlin 2011-04-25
-2903794 Hirschbach Hirschbach 49.55 11.53333 P PPLA4 DE 02 093 09371 09371128 1299 448 Europe/Berlin 2011-04-25
-2903806 Hirschau Hirschau Hirschau 49.545 11.95083 P PPL DE 02 6258 413 Europe/Berlin 2012-01-18
-2903810 Hirschaid Hirschaid Hirschaid 49.81944 10.99083 P PPL DE 02 11508 250 Europe/Berlin 2012-01-18
-2903817 Hirrlingen Hirrlingen 48.41245 8.88742 P PPLA4 DE 01 084 08416 08416018 2963 429 Europe/Berlin 2011-04-25
-2903841 Hipstedt Hipstedt 53.48333 8.96667 P PPLA4 DE 06 00 03357 03357027 1296 26 Europe/Berlin 2011-04-25
-2903860 Hinzweiler Hinzweiler 49.58333 7.55 P PPLA4 DE 08 00 07336 07336042 426 217 Europe/Berlin 2011-04-25
-2903874 Hinzenburg Hinzenburg 49.66667 6.73333 P PPLA4 DE 08 00 07235 07235046 133 409 Europe/Berlin 2011-04-25
-2903889 Hinterzarten Hinterzarten 47.90276 8.10701 P PPLA4 DE 01 083 08315 08315052 2631 895 Europe/Berlin 2011-04-25
-2903903 Hinterweiler Hinterweiler 50.23333 6.75 P PPLA4 DE 08 00 07233 07233030 229 543 Europe/Berlin 2011-04-25
-2903908 Hinterweidenthal Hinterweidenthal 49.2 7.75 P PPLA4 DE 08 00 07340 07340020 1727 224 Europe/Berlin 2011-07-31
-2903926 Hintertiefenbach Hintertiefenbach 49.73333 7.35 P PPLA4 DE 08 00 07134 07134041 427 430 Europe/Berlin 2011-04-25
-2903975 Hintersee Hintersee 53.63333 14.26667 P PPLA4 DE 12 00 13062 13062024 353 21 Europe/Berlin 2011-04-25
-2903991 Hinterschmiding Hinterschmiding 48.81667 13.6 P PPLA4 DE 02 092 09272 09272126 2578 723 Europe/Berlin 2011-04-25
-2904397 Hinte Hinte 53.41667 7.18333 P PPLA4 DE 06 00 03452 03452011 7264 254 Europe/Berlin 2011-07-31
-2904418 Hinrichshagen Hinrichshagen 53.61667 12.66667 P PPLA4 DE 12 00 13056 13056022 174 62 Europe/Berlin 2011-04-25
-2904448 Hingstheide Hingstheide Hingstheide 53.9 9.75 P PPLA4 DE 10 00 01061 01061038 81 5 Europe/Berlin 2011-04-25
-2904481 Himmighofen Himmighofen 50.21201 7.76553 P PPLA4 DE 08 00 07141 07141055 347 320 Europe/Berlin 2011-12-29
-2904499 Himmelstadt Himmelstadt 49.92389 9.80167 P PPLA4 DE 02 096 09677 09677142 1798 162 Europe/Berlin 2011-04-25
-2904543 Himmelpforten Himmelpforten Himmelpforten 53.61413 9.30516 P PPLA4 DE 06 00 03359 03359025 4820 7 Europe/Berlin 2011-08-26
-2904552 Himmelkron Himmelkron 50.06667 11.6 P PPLA4 DE 02 094 09477 09477121 3531 356 Europe/Berlin 2011-07-31
-2904574 Himbergen Himbergen 53.09418 10.72909 P PPLA4 DE 06 00 03360 03360011 1856 66 Europe/Berlin 2011-04-25
-2904591 Hilzingen Hilzingen Hilzingen 47.76667 8.78333 P PPLA4 DE 01 083 08335 08335035 8258 468 Europe/Berlin 2011-04-25
-2904600 Hiltpoltstein Hiltpoltstein Hiltpoltstein 49.66667 11.31667 P PPL DE 02 1601 520 Europe/Berlin 2012-01-18
-2904607 Hilter Hilter Hilter 52.15 8.15 P PPL DE 06 10173 169 Europe/Berlin 2012-01-18
-2904612 Hiltenfingen Hiltenfingen 48.16667 10.71667 P PPLA4 DE 02 097 09772 09772157 1541 553 Europe/Berlin 2011-04-25
-2904619 Hilst Hilst 49.13333 7.53333 P PPLA4 DE 08 00 07340 07340019 371 315 Europe/Berlin 2011-04-25
-2904625 Hilscheid Hilscheid 49.73333 7 P PPLA4 DE 08 00 07231 07231054 291 430 Europe/Berlin 2011-04-25
-2904638 Hilpoltstein Hilpoltstein Hilpoltstein 49.19 11.18861 P PPL DE 02 13069 381 Europe/Berlin 2012-01-18
-2904667 Hillscheid Hillscheid 50.4 7.7 P PPLA4 DE 08 00 07143 07143031 2691 337 Europe/Berlin 2011-04-25
-2904687 Hillgroven Hillgroven Hillgroven 54.21667 8.88333 P PPLA4 DE 10 00 01051 01051050 78 0 Europe/Berlin 2011-04-25
-2904691 Hillesheim Hillesheim 50.3 6.66667 P PPL DE 08 3210 478 Europe/Berlin 2006-01-17
-2904692 Hillesheim Hillesheim 49.77639 8.25611 P PPLA4 DE 08 00 07339 07339028 588 162 Europe/Berlin 2011-04-25
-2904697 Hillerse Hillerse 52.41667 10.4 P PPLA4 DE 06 00 03151 03151012 0 60 Europe/Berlin 2011-04-25
-2904698 Hillerse Hillerse 51.68333 9.95 P PPL DE 06 2663 137 Europe/Berlin 2006-01-17
-2904725 Hille Hille Hille 52.33333 8.75 P PPLA4 DE 07 057 05770 05770012 16567 58 Europe/Berlin 2011-07-31
-2904735 Hilkenbrook Hilkenbrook 52.98333 7.7 P PPLA4 DE 06 00 03454 03454022 805 7 Europe/Berlin 2011-04-25
-2904741 Hilgertshausen-Tandern Hilgertshausen-Tandern Hilgertshausen,Kilkershausen 48.4296 11.35428 P PPLA4 DE 02 091 09174 09174147 3258 491 Europe/Berlin 2011-07-31
-2904743 Hilgert Hilgert 50.45 7.7 P PPLA4 DE 08 00 07143 07143030 1448 351 Europe/Berlin 2011-04-25
-2904748 Hilgermissen Hilgermissen 52.85 9.16667 P PPLA4 DE 06 00 03256 03256013 2208 12 Europe/Berlin 2011-07-31
-2904752 Hilgenroth Hilgenroth Hilgenroth 50.73333 7.65 P PPLA4 DE 08 00 07132 07132052 312 284 Europe/Berlin 2011-04-25
-2904784 Hildrizhausen Hildrizhausen 48.62423 8.96605 P PPLA4 DE 01 081 08115 08115022 3474 483 Europe/Berlin 2011-04-25
-2904789 Hildesheim Hildesheim Hildesheim,Hilmessen,Khil'deskhajm,Хильдесхайм 52.15077 9.95112 P PPL DE 06 103052 93 92 Europe/Berlin 2011-03-09
-2904791 Hilders Hilders 50.5719 10.00297 P PPLA4 DE 05 066 06631 06631012 4973 450 Europe/Berlin 2011-07-31
-2904795 Hilden Hilden Hilden 51.16667 6.93333 P PPL DE 07 051 56565 55 Europe/Berlin 2012-01-18
-2904798 Hildebrandshausen Hildebrandshausen 51.2 10.21667 P PPLA4 DE 15 00 16064 16064025 424 310 Europe/Berlin 2011-04-25
-2904804 Hildburghausen Hildburghausen 50.42553 10.73184 P PPL DE 15 12171 387 Europe/Berlin 2010-01-26
-2904808 Hilchenbach Hilchenbach Hilchenbach 50.98333 8.1 P PPL DE 07 16467 338 Europe/Berlin 2012-01-18
-2904815 Hilbersdorf Hilbersdorf 50.9 13.4 P PPLA4 DE 13 145 14522 14522270 0 435 Europe/Berlin 2011-04-25
-2904816 Hilbersdorf Hilbersdorf 50.85 12.95 P PPL DE 13 1500 338 Europe/Berlin 2006-01-17
-2904817 Hilbersdorf Hilbersdorf 50.81667 12.15 P PPLA4 DE 15 00 16076 16076027 234 312 Europe/Berlin 2011-04-25
-2904886 Hiddenhausen Hiddenhausen Hiddenhausen 52.16667 8.61667 P PPLA4 DE 07 057 05758 05758016 20771 83 Europe/Berlin 2011-07-31
-2904904 Heygendorf Heygendorf Heygendorf 51.35 11.36667 P PPLA4 DE 15 00 16065 16065035 700 122 Europe/Berlin 2011-04-25
-2904906 Heyersum Heyersum 52.15678 9.81265 P PPL DE 06 00 03254 03254026 1089 96 96 Europe/Berlin 2010-11-22
-2904907 Heyersdorf Heyersdorf 50.85 12.35 P PPLA4 DE 15 00 16077 16077017 143 291 Europe/Berlin 2011-07-31
-2904909 Heyerode Heyerode 51.16667 10.31667 P PPLA4 DE 15 00 16064 16064024 2437 411 Europe/Berlin 2011-04-25
-2904915 Heyen Heyen 52.00951 9.50369 P PPLA4 DE 06 00 03255 03255020 552 97 Europe/Berlin 2011-07-31
-2904962 Heuzert Heuzert 50.69912 7.75978 P PPLA4 DE 08 00 07143 07143240 151 234 Europe/Berlin 2011-04-25
-2904969 Heuweiler Heuweiler 48.05 7.9 P PPLA4 DE 01 083 08315 08315051 990 258 Europe/Berlin 2011-04-25
-2904974 Heuthen Heuthen Heuthen 51.33333 10.23333 P PPLA4 DE 15 00 16061 16061047 764 419 Europe/Berlin 2011-04-25
-2904985 Heusweiler Heusweiler Heusweiler 49.35 6.93333 P PPLA4 DE 09 00 10041 10041513 20006 235 Europe/Berlin 2011-07-31
-2904986 Heustreu Heustreu 50.35 10.25 P PPLA4 DE 02 096 09673 09673133 1287 286 Europe/Berlin 2011-04-25
-2904992 Heusenstamm Heusenstamm Heusenstamm 50.06667 8.8 P PPL DE 05 19012 136 Europe/Berlin 2012-01-18
-2904999 Heupelzen Heupelzen 50.71667 7.61667 P PPLA4 DE 08 00 07132 07132051 312 282 Europe/Berlin 2011-04-25
-2905017 Heukewalde Heukewalde 50.83333 12.26667 P PPLA4 DE 15 00 16077 16077016 251 296 Europe/Berlin 2011-04-25
-2905044 Heuerßen Heuerssen 52.33333 9.28333 P PPLA4 DE 06 00 03257 03257015 1063 94 Europe/Berlin 2011-04-25
-2905058 Heudeber Heudeber Heudeber 51.9 10.85 P PPL DE 14 1252 187 Europe/Berlin 2012-01-18
-2905062 Heuchlingen Heuchlingen 48.85215 9.94391 P PPLA4 DE 01 081 08136 08136029 1925 388 Europe/Berlin 2011-04-25
-2905069 Heuchelheim bei Frankenthal Heuchelheim bei Frankenthal Heuchelheim,Heuchelheim bei Frankenthal,Heuchelheim uber Frankenthal,Heuchelheim über Frankenthal 49.56306 8.29083 P PPLA4 DE 08 00 07338 07338013 1198 101 Europe/Berlin 2011-04-25
-2905070 Heuchelheim Heuchelheim Heuchelheim 50.58333 8.63333 P PPLA4 DE 05 065 06531 06531007 7541 161 Europe/Berlin 2011-04-25
-2905154 Heubach Heubach 48.79267 9.9337 P PPL DE 01 081 10167 452 Europe/Berlin 2010-11-15
-2905164 Hetzles Hetzles 49.63333 11.13333 P PPLA4 DE 02 094 09474 09474137 1286 346 Europe/Berlin 2011-04-25
-2905178 Hetzerath Hetzerath 49.88333 6.81667 P PPLA4 DE 08 00 07231 07231053 2005 171 Europe/Berlin 2011-04-25
-2905206 Hettstedt Hettstedt Hefstedt,Hettstedt 51.65 11.5 P PPL DE 14 15949 193 Europe/Berlin 2012-01-18
-2905208 Hettstadt Hettstadt 49.79944 9.815 P PPLA4 DE 02 096 09679 09679146 3780 285 Europe/Berlin 2011-04-25
-2905215 Hettingen Hettingen 48.21601 9.23169 P PPL DE 01 2059 649 Europe/Berlin 2008-12-23
-2905222 Hettenshausen Hettenshausen 48.5 11.5 P PPLA4 DE 02 091 09186 09186126 1935 440 Europe/Berlin 2011-04-25
-2905225 Hettenrodt Hettenrodt 49.73333 7.25 P PPLA4 DE 08 00 07134 07134040 729 465 Europe/Berlin 2011-04-25
-2905226 Hettenleidelheim Hettenleidelheim 49.53556 8.07361 P PPLA4 DE 08 00 07332 07332027 3049 251 Europe/Berlin 2011-04-25
-2905231 Hettenhausen Hettenhausen 49.33333 7.55 P PPLA4 DE 08 00 07340 07340018 264 275 Europe/Berlin 2011-04-25
-2905239 Hetschburg Hetschburg 50.91288 11.30013 P PPLA4 DE 15 00 16071 16071031 257 260 261 Europe/Berlin 2011-04-25
-2905245 Hetlingen Hetlingen 53.60712 9.63718 P PPLA4 DE 10 00 01056 01056027 1276 4 Europe/Berlin 2011-08-23
-2905251 Hesweiler Hesweiler 50.05 7.28333 P PPLA4 DE 08 00 07135 07135041 151 369 Europe/Berlin 2011-04-25
-2905290 Hessisch Oldendorf Hessisch Oldendorf Hessisch Oldendorf 52.16667 9.25 P PPL DE 06 20129 62 Europe/Berlin 2012-01-18
-2905293 Hessisch Lichtenau Hessisch Lichtenau Hessisch Lichtenau,Lichtenau 51.2 9.71667 P PPL DE 05 13291 382 Europe/Berlin 2012-01-18
-2905298 Hessigheim Hessigheim 48.98333 9.2 P PPLA4 DE 01 081 08118 08118028 2193 276 Europe/Berlin 2011-04-25
-2905299 Heßheim Hessheim 49.54583 8.30778 P PPLA4 DE 08 00 07338 07338012 3044 101 Europe/Berlin 2011-04-25
-2905372 Heßdorf Hessdorf 49.62728 10.91002 P PPLA4 DE 02 095 09572 09572133 3419 290 Europe/Berlin 2011-04-25
-2905394 Hespe Hespe 52.32999 9.10818 P PPLA4 DE 06 00 03257 03257014 2188 60 Europe/Berlin 2011-07-31
-2905421 Hesel Hesel 53.3 7.6 P PPLA4 DE 06 00 03457 03457010 4202 11 Europe/Berlin 2011-04-25
-2905455 Herzogenrath Herzogenrath 50.87067 6.10136 P PPL DE 07 053 05334 47381 143 Europe/Berlin 2010-11-23
-2905457 Herzogenaurach Herzogenaurach Herzogenaurach,Khercogenaurakh,Херцогенаурах 49.56798 10.88565 P PPL DE 02 23319 300 Europe/Berlin 2010-01-29
-2905466 Herzlake Herzlake Herzlake 52.7 7.6 P PPLA4 DE 06 00 03454 03454021 4027 19 Europe/Berlin 2011-04-25
-2905468 Herzhorn Herzhorn Herzhorn 53.78333 9.48333 P PPLA4 DE 10 00 01061 01061037 1059 255 Europe/Berlin 2011-04-25
-2905496 Herzberg am Harz Herzberg am Harz Herzberg,Herzberg am Harz 51.65 10.33333 P PPL DE 06 14948 238 Europe/Berlin 2012-01-18
-2905501 Herzberg Herzberg 53.53072 11.92806 P PPLA4 DE 12 00 13060 13060033 384 64 Europe/Berlin 2011-04-25
-2905504 Herzberg Herzberg 51.68692 13.22016 P PPL DE 11 00 11033 82 Europe/Berlin 2010-11-22
-2905526 Herxheimweyher Herxheimweyher 49.1525 8.255 P PPLA4 DE 08 00 07337 07337039 468 118 Europe/Berlin 2011-04-25
-2905527 Herxheim am Berg Herxheim am Berg Herxheim,Herxheim am Berg 49.50917 8.17917 P PPLA4 DE 08 00 07332 07332026 10424 203 Europe/Berlin 2011-04-25
-2905560 Herten Herten Heritono,Herten,Hėritono 51.6 7.13333 P PPL DE 07 65306 86 Europe/Berlin 2012-01-18
-2905581 Herschweiler-Pettersheim Herschweiler-Pettersheim 49.48333 7.35 P PPLA4 DE 08 00 07336 07336041 1368 284 Europe/Berlin 2011-04-25
-2905587 Herscheid Herscheid 51.17901 7.74355 P PPLA4 DE 07 059 05962 05962020 7658 428 Europe/Berlin 2011-07-31
-2905591 Herschdorf Herschdorf 50.71168 11.53736 P PPL DE 15 1022 307 Europe/Berlin 2010-03-10
-2905592 Herschdorf Herschdorf 50.61667 11.05 P PPLA4 DE 15 00 16070 16070027 0 555 Europe/Berlin 2011-04-25
-2905593 Herschbroich Herschbroich 50.36667 6.96667 P PPLA4 DE 08 00 07131 07131028 290 397 Europe/Berlin 2011-04-25
-2905594 Herschberg Herschberg 49.3 7.55 P PPLA4 DE 08 00 07340 07340017 936 378 Europe/Berlin 2011-04-25
-2905597 Herschbach Herschbach 50.58333 7.73333 P PPLA4 DE 08 00 07143 07143029 0 325 Europe/Berlin 2011-04-25
-2905599 Hersbruck Hersbruck Hersbruck 49.5125 11.43389 P PPL DE 02 12404 352 Europe/Berlin 2012-01-18
-2905601 Herrstein Herrstein 49.78333 7.33333 P PPLA4 DE 08 00 07134 07134039 1000 318 Europe/Berlin 2011-04-25
-2905602 Herrnschwende Herrnschwende Herrnschwende,Herrschwende 51.21667 11 P PPLA4 DE 15 00 16068 16068027 320 146 Europe/Berlin 2011-04-25
-2905604 Herrsching am Ammersee Herrsching am Ammersee Herrschin,Herrsching 47.99888 11.17679 P PPL DE 02 10000 551 Europe/Berlin 2008-10-02
-2905643 Herrnhut Herrnhut Herrnhut 51.01667 14.75 P PPL DE 13 2830 334 Europe/Berlin 2012-01-18
-2905652 Herrngiersdorf Herrngiersdorf 48.8 12.06667 P PPLA4 DE 02 092 09273 09273127 1103 396 Europe/Berlin 2011-04-25
-2905682 Herrmannsacker Herrmannsacker 51.55 10.86667 P PPLA4 DE 15 00 16062 16062018 427 328 Europe/Berlin 2011-04-25
-2905693 Herrischried Herrischried Herrischried 47.66667 8 P PPLA4 DE 01 083 08337 08337049 2750 882 Europe/Berlin 2011-04-25
-2905706 Herrieden Herrieden Herrieden 49.23333 10.51667 P PPL DE 02 7751 420 Europe/Berlin 2012-01-18
-2905721 Herresbach Herresbach 50.36667 7.01667 P PPLA4 DE 08 00 07137 07137035 488 519 Europe/Berlin 2011-04-25
-2905754 Herren-Sulzbach Herren-Sulzbach 49.65 7.53333 P PPLA4 DE 08 00 07336 07336040 174 281 Europe/Berlin 2011-04-25
-2905798 Herrenhof Herrenhof 50.83333 10.68333 P PPLA4 DE 15 00 16067 16067036 808 369 Europe/Berlin 2011-04-25
-2905826 Herrenberg Herrenberg 48.59523 8.86648 P PPL DE 01 081 31338 431 Europe/Berlin 2010-11-15
-2905857 Herpf Herpf Herpf 50.58333 10.33333 P PPLA4 DE 15 00 16066 16066031 957 340 Europe/Berlin 2011-04-25
-2905878 Heroldsberg Heroldsberg Heroldsberg 49.53389 11.15556 P PPL DE 02 7429 355 Europe/Berlin 2012-01-18
-2905881 Heroldsbach Heroldsbach 49.69342 10.99882 P PPLA4 DE 02 094 09474 09474135 5058 283 Europe/Berlin 2011-04-25
-2905882 Heroldishausen Heroldishausen 51.13333 10.51667 P PPLA4 DE 15 00 16064 16064023 209 211 Europe/Berlin 2011-04-25
-2905886 Herold Herold 50.26667 7.93333 P PPLA4 DE 08 00 07141 07141054 499 284 Europe/Berlin 2011-04-25
-2905891 Herne Herne Herne,Kherne,herune,Херне,ヘルネ 51.55 7.21667 P PPL DE 07 172108 57 Europe/Berlin 2012-01-18
-2905905 Hermsdorf Hermsdorf 52.1874 11.47556 P PPL DE 14 00 1638 131 Europe/Berlin 2010-11-22
-2905907 Hermsdorf Hermsdorf 51.40547 13.89367 P PPLA4 DE 11 00 12066 12066124 0 112 Europe/Berlin 2011-07-31
-2905915 Hermsdorf Hermsdorf 50.92338 13.7348 P PPL DE 13 146 1034 379 Europe/Berlin 2010-11-15
-2905916 Hermsdorf Hermsdorf Hermsdorf 50.9 11.86667 P PPL DE 15 8624 336 Europe/Berlin 2012-01-18
-2905929 Hermeskeil Hermeskeil 49.65 6.95 P PPL DE 08 5710 575 Europe/Berlin 2006-01-17
-2905946 Hermersberg Hermersberg 49.31667 7.63333 P PPLA4 DE 08 00 07340 07340016 1738 408 Europe/Berlin 2011-04-25
-2905954 Hermaringen Hermaringen 48.59544 10.26065 P PPLA4 DE 01 081 08135 08135021 2281 452 Europe/Berlin 2011-04-25
-2906015 Hermannsburg Hermannsburg Hermannsburg 52.83254 10.08957 P PPLA4 DE 06 00 03351 03351013 8634 55 Europe/Berlin 2011-04-25
-2906050 Herleshausen Herleshausen Herleshausen 51.01667 10.16667 P PPLA4 DE 05 066 06636 06636005 3189 336 Europe/Berlin 2011-07-31
-2906059 Herl Herl 49.73333 6.81667 P PPLA4 DE 08 00 07235 07235044 261 464 Europe/Berlin 2011-04-25
-2906078 Heringsdorf Heringsdorf 54.3 11.01667 P PPLA4 DE 10 00 01055 01055022 1103 13 Europe/Berlin 2011-04-25
-2906087 Heringen Heringen 51.44705 10.87612 P PPL DE 15 2411 167 Europe/Berlin 2009-03-26
-2906088 Heringen Heringen 50.88798 10.00717 P PPL DE 05 7993 229 Europe/Berlin 2009-03-26
-2906098 Hergisdorf Hergisdorf Hergisdorf 51.53333 11.48333 P PPLA4 DE 14 00 15087 15087210 1777 189 Europe/Berlin 2011-04-25
-2906104 Hergersweiler Hergersweiler 49.09639 8.09167 P PPLA4 DE 08 00 07337 07337037 212 142 Europe/Berlin 2011-04-25
-2906110 Hergensweiler Hergensweiler 47.61667 9.78333 P PPLA4 DE 02 097 09776 09776115 1723 531 Europe/Berlin 2011-07-31
-2906112 Hergenroth Hergenroth 50.58333 7.96667 P PPLA4 DE 08 00 07143 07143238 434 411 Europe/Berlin 2011-04-25
-2906113 Hergenfeld Hergenfeld 49.9 7.76667 P PPLA4 DE 08 00 07133 07133044 454 283 Europe/Berlin 2011-04-25
-2906115 Hergatz Hergatz 47.65 9.83333 P PPLA4 DE 02 097 09776 09776131 0 555 Europe/Berlin 2011-04-25
-2906119 Herforst Herforst 49.95 6.7 P PPLA4 DE 08 00 07232 07232050 1009 314 Europe/Berlin 2011-07-31
-2906121 Herford Herford Herford,Hiarwede,Kherford,Херфорд 52.13333 8.68333 P PPL DE 07 64879 83 Europe/Berlin 2012-01-18
-2906130 Heretsried Heretsried 48.46667 10.73333 P PPLA4 DE 02 097 09772 09772156 1047 506 Europe/Berlin 2011-04-25
-2906143 Herdorf Herdorf Herdorf 50.76667 7.95 P PPL DE 08 7239 332 Europe/Berlin 2012-01-18
-2906152 Herdecke Herdecke Herdecke 51.4 7.43333 P PPL DE 07 25618 105 Europe/Berlin 2012-01-18
-2906155 Herchweiler Herchweiler 49.51401 7.29346 P PPLA4 DE 08 00 07336 07336039 517 343 Europe/Berlin 2011-09-25
-2906171 Herbstmühle Herbstmuhle 50 6.21667 P PPLA4 DE 08 00 07232 07232049 29 456 Europe/Berlin 2011-04-25
-2906175 Herbstein Herbstein Herbstein 50.55 9.35 P PPL DE 05 5198 441 Europe/Berlin 2012-01-18
-2906184 Herbstadt Herbstadt 50.33333 10.5 P PPLA4 DE 02 096 09673 09673131 652 316 Europe/Berlin 2011-04-25
-2906185 Herbsleben Herbsleben 51.11667 10.83333 P PPLA4 DE 15 00 16064 16064022 3140 175 Europe/Berlin 2011-04-25
-2906194 Herbrechtingen Herbrechtingen 48.62173 10.176 P PPL DE 01 081 13110 469 Europe/Berlin 2010-11-15
-2906199 Herborn Herborn Herborn,Kherborn,Херборн 50.68333 8.31667 P PPL DE 05 21133 337 Europe/Berlin 2012-01-18
-2906200 Herborn Herborn 49.76667 7.3 P PPLA4 DE 08 00 07134 07134038 530 450 Europe/Berlin 2011-04-25
-2906205 Herbolzheim Herbolzheim Herbolzheim 48.21884 7.77746 P PPL DE 01 9632 178 Europe/Berlin 2011-09-08
-2906222 Herbertingen Herbertingen 48.06667 9.43333 P PPLA4 DE 01 084 08437 08437044 4856 546 Europe/Berlin 2011-04-25
-2906256 Hepstedt Hepstedt 53.25874 9.08209 P PPLA4 DE 06 00 03357 03357026 1046 23 Europe/Berlin 2011-07-29
-2906268 Heppenheim an der Bergstrasse Heppenheim an der Bergstrasse Heppenheim,Heppenheim an der Bergstrasse 49.64083 8.63722 P PPL DE 05 25442 106 Europe/Berlin 2012-01-18
-2906278 Hepberg Hepberg 48.81667 11.46667 P PPLA4 DE 02 091 09176 09176131 0 400 Europe/Berlin 2011-04-25
-2906285 Hentern Hentern 49.61667 6.7 P PPLA4 DE 08 00 07235 07235043 399 359 Europe/Berlin 2011-04-25
-2906297 Henschleben Henschleben 51.13333 10.96667 P PPLA4 DE 15 00 16068 16068026 368 168 Europe/Berlin 2011-04-25
-2906312 Hennweiler Hennweiler 49.81667 7.43333 P PPLA4 DE 08 00 07133 07133043 1324 358 Europe/Berlin 2011-04-25
-2906316 Hennstedt Hennstedt Hennstedt 54.28333 9.16667 P PPLA4 DE 10 00 01051 01051049 1852 11 Europe/Berlin 2011-04-25
-2906317 Hennstedt Hennstedt 54.03333 9.71667 P PPLA4 DE 10 00 01061 01061036 623 69 Europe/Berlin 2011-04-25
-2906331 Hennigsdorf Hennigsdorf Stadt Hennigsdorf 52.63598 13.20419 P PPL DE 11 00 26122 33 Europe/Berlin 2010-11-22
-2906376 Hennef Hennef Hennef 50.77555 7.28308 P PPLA4 DE 07 053 05382 05382020 45409 70 Europe/Berlin 2011-10-26
-2906379 Henneberg Henneberg 50.5 10.35 P PPLA4 DE 15 00 16066 16066028 691 380 Europe/Berlin 2011-04-25
-2906464 Hengersberg Hengersberg Hengersberg 48.78333 13.05 P PPL DE 02 7551 318 Europe/Berlin 2012-01-18
-2906488 Henfstädt Henfstadt Henfstadt,Henfstädt 50.51632 10.58739 P PPLA4 DE 15 00 16069 16069021 361 327 Europe/Berlin 2011-04-25
-2906489 Henfenfeld Henfenfeld 49.49846 11.39059 P PPLA4 DE 02 095 09574 09574131 1926 341 Europe/Berlin 2011-04-25
-2906490 Hendungen Hendungen 50.4 10.35 P PPLA4 DE 02 096 09673 09673130 1015 328 Europe/Berlin 2011-04-25
-2906494 Henau Henau 49.86667 7.5 P PPLA4 DE 08 00 07140 07140050 170 346 Europe/Berlin 2011-04-25
-2906499 Hemsloh Hemsloh 52.60044 8.50891 P PPLA4 DE 06 00 03251 03251019 629 48 Europe/Berlin 2011-04-25
-2906500 Hemslingen Hemslingen 53.08333 9.6 P PPLA4 DE 06 00 03357 03357025 1578 38 Europe/Berlin 2011-04-25
-2906510 Hemsbünde Hemsbunde 53.1 9.46667 P PPLA4 DE 06 00 03357 03357024 1253 27 Europe/Berlin 2011-04-25
-2906514 Hemsbach Hemsbach Hemsbach 49.59167 8.64639 P PPL DE 01 082 08215 12247 102 Europe/Berlin 2012-01-18
-2906524 Hemmoor Hemmoor 53.7 9.11667 P PPL DE 06 8817 10 Europe/Berlin 2006-01-17
-2906527 Hemmingstedt Hemmingstedt Hemmingstedt 54.15 9.06667 P PPLA4 DE 10 00 01051 01051048 2986 0 Europe/Berlin 2011-04-25
-2906530 Hemmingen Hemmingen 52.31425 9.72359 P PPL DE 06 00 18470 57 Europe/Berlin 2010-11-22
-2906531 Hemmingen Hemmingen Hemmigen,Hemmingen 48.86667 9.03333 P PPLA4 DE 01 081 08118 08118027 7670 323 Europe/Berlin 2011-04-25
-2906536 Hemmersheim Hemmersheim 49.56286 10.09644 P PPLA4 DE 02 095 09575 09575130 697 295 Europe/Berlin 2011-04-25
-2906560 Hemmelzen Hemmelzen 50.69341 7.58151 P PPLA4 DE 08 00 07132 07132049 219 233 Europe/Berlin 2011-04-25
-2906572 Hemme Hemme Hemme 54.28333 9.01667 P PPLA4 DE 10 00 01051 01051047 544 255 Europe/Berlin 2011-04-25
-2906578 Hemleben Hemleben Hemleben 51.25 11.21667 P PPLA4 DE 15 00 16065 16065034 253 156 Europe/Berlin 2011-04-25
-2906583 Hemhofen Hemhofen 49.68333 10.93333 P PPLA4 DE 02 095 09572 09572130 5322 317 Europe/Berlin 2011-04-25
-2906595 Hemer Hemer Hadamare,Hemer,Khemer,Хемер,เหแมร์ 51.38333 7.76667 P PPL DE 07 37502 212 Europe/Berlin 2012-01-18
-2906605 Hemdingen Hemdingen Hemdingen 53.76667 9.83333 P PPLA4 DE 10 00 01056 01056026 1700 17 Europe/Berlin 2011-04-25
-2906625 Hemau Hemau Hemau,Hemman 49.05333 11.78222 P PPL DE 02 8627 511 Europe/Berlin 2012-01-18
-2906629 Helvesiek Helvesiek 53.21606 9.4915 P PPLA4 DE 06 00 03357 03357023 866 37 Europe/Berlin 2011-04-25
-2906634 Heltersberg Heltersberg 49.31667 7.71667 P PPLA4 DE 08 00 07340 07340015 2214 418 Europe/Berlin 2011-04-25
-2906650 Helse Helse Helse 53.96667 9.01667 P PPLA4 DE 10 00 01051 01051046 990 254 Europe/Berlin 2011-07-31
-2906654 Helsa Helsa Helsa 51.26667 9.68333 P PPLA4 DE 05 066 06633 06633012 5882 316 Europe/Berlin 2011-07-31
-2906659 Helpt Helpt 53.5 13.6 P PPLA4 DE 12 00 13055 13055084 435 109 Europe/Berlin 2011-04-25
-2906660 Helpsen Helpsen 52.31131 9.11676 P PPLA4 DE 06 00 03257 03257013 2005 58 Europe/Berlin 2011-07-31
-2906670 Helmstorf Helmstorf 54.28333 10.6 P PPLA4 DE 10 00 01057 01057026 335 23 Europe/Berlin 2011-04-25
-2906676 Helmstedt Helmstedt Helmestee,Helmestidde,Helmonstede [a. 952],Helmstadium,Helmstedt,Helmstidde,Khel'mshtedt,Khelmshhet,Khelmshtet,Stadt Helmstedt,hlmstdt,ˈhɛlmˌʃtɛt,Хелмштет,Хелмщет,Хельмштедт,הלמשטדט 52.2279 11.00985 P PPLA3 DE 06 00 03154 03154010 25515 136 Europe/Berlin 2011-05-03
-2906680 Helmstadt Helmstadt Helmstadt 49.76111 9.71 P PPL DE 02 2579 295 Europe/Berlin 2012-01-18
-2906693 Helmsdorf Helmsdorf 51.3 10.35 P PPLA4 DE 15 00 16061 16061046 569 304 Europe/Berlin 2011-04-25
-2906730 Helmeroth Helmeroth 50.73333 7.73333 P PPLA4 DE 08 00 07132 07132048 224 195 Europe/Berlin 2011-04-25
-2906738 Helmenzen Helmenzen 50.7 7.61667 P PPLA4 DE 08 00 07132 07132047 788 269 Europe/Berlin 2011-04-25
-2906744 Helmbrechts Helmbrechts 50.23557 11.71589 P PPL DE 02 094 9493 621 Europe/Berlin 2010-11-15
-2906759 Hellwege Hellwege 53.06667 9.23333 P PPLA4 DE 06 00 03357 03357022 1083 40 Europe/Berlin 2011-04-25
-2906766 Hellschen-Heringsand-Unterschaar Hellschen-Heringsand-Unterschaar Hellschen-Heringsand-Unterschaar 54.2 8.85 P PPLA4 DE 10 00 01051 01051045 175 0 Europe/Berlin 2011-04-25
-2906790 Hellingen Hellingen 50.25 10.68333 P PPLA4 DE 15 00 16069 16069019 1128 300 Europe/Berlin 2011-04-25
-2906803 Hellertshausen Hellertshausen 49.81667 7.28333 P PPLA4 DE 08 00 07134 07134037 193 428 Europe/Berlin 2011-04-25
-2906843 Hellenthal Hellenthal Hellenthal 50.48333 6.43333 P PPLA4 DE 07 053 05366 05366020 8582 416 Europe/Berlin 2011-07-31
-2906851 Hellenhahn-Schellenberg Hellenhahn-Schellenberg 50.6 8.01667 P PPLA4 DE 08 00 07143 07143237 1315 464 Europe/Berlin 2011-04-25
-2906957 Helferskirchen Helferskirchen 50.51667 7.81667 P PPLA4 DE 08 00 07143 07143028 1174 320 Europe/Berlin 2011-04-25
-2906990 Heldrungen Heldrungen Heldrungen 51.3 11.21667 P PPL DE 15 2297 130 Europe/Berlin 2012-01-18
-2907018 Helbra Helbra Helbra 51.55 11.5 P PPLA4 DE 14 00 15087 15087205 4723 251 Europe/Berlin 2011-04-25
-2907068 Heitersheim Heitersheim 47.87468 7.65721 P PPL DE 01 083 5739 236 Europe/Berlin 2010-11-15
-2907110 Heistenbach Heistenbach 50.36667 8 P PPLA4 DE 08 00 07141 07141053 1145 108 Europe/Berlin 2011-04-25
-2907111 Heist Heist Heist 53.65 9.65 P PPLA4 DE 10 00 01056 01056024 2675 6 Europe/Berlin 2011-04-25
-2907153 Heisdorf Heisdorf 50.13333 6.43333 P PPLA4 DE 08 00 07232 07232238 109 494 Europe/Berlin 2011-04-25
-2907175 Heinzenhausen Heinzenhausen 49.63333 7.6 P PPLA4 DE 08 00 07336 07336038 298 169 Europe/Berlin 2011-04-25
-2907177 Heinzenberg Heinzenberg 49.81667 7.48333 P PPLA4 DE 08 00 07133 07133042 31 293 Europe/Berlin 2011-04-25
-2907181 Heinzenbach Heinzenbach Heinzenbach,Heinzenberg 49.96667 7.41667 P PPLA4 DE 08 00 07140 07140049 432 413 Europe/Berlin 2011-04-25
-2907195 Heinsen Heinsen 52.06257 9.66316 P PPL DE 06 1002 149 Europe/Berlin 2010-08-18
-2907196 Heinsen Heinsen 51.88333 9.43333 P PPLA4 DE 06 00 03255 03255019 0 91 Europe/Berlin 2011-04-25
-2907201 Heinsberg Heinsberg Heinsberg,Heinsburg,Khajnsberg,Хайнсберг 51.06667 6.08333 P PPL DE 07 41505 38 Europe/Berlin 2012-01-18
-2907207 Heinrichswalde Heinrichswalde 53.61667 13.76667 P PPLA4 DE 12 00 13062 13062023 564 9 Europe/Berlin 2011-04-25
-2907211 Heinrichsthal Heinrichsthal 50.06667 9.35 P PPLA4 DE 02 096 09671 09671128 918 465 Europe/Berlin 2011-04-25
-2907213 Heinrichsruh Heinrichsruh 53.65 13.91667 P PPLA4 DE 12 00 13062 13062022 305 4 Europe/Berlin 2011-04-25
-2907270 Heinkenborstel Heinkenborstel Heinkenborstel 54.13333 9.75 P PPLA4 DE 10 00 01058 01058074 153 52 Europe/Berlin 2011-04-25
-2907278 Heiningen Heiningen 52.06667 10.56667 P PPLA4 DE 06 00 03158 03158019 749 81 Europe/Berlin 2011-04-25
-2907280 Heiningen Heiningen 48.66177 9.64977 P PPLA4 DE 01 081 08117 08117030 5532 387 Europe/Berlin 2011-04-25
-2907292 Heinersreuth Heinersreuth 49.96667 11.53333 P PPLA4 DE 02 094 09472 09472150 0 336 Europe/Berlin 2011-04-25
-2907309 Heinersbrück Heinersbruck Heinersbruck,Heinersbrück,Most 51.81986 14.5074 P PPLA4 DE 11 00 12071 12071176 692 63 Europe/Berlin 2011-07-07
-2907343 Heinböckel Heinbockel Heinbockel,Heinböckel 53.58333 9.33333 P PPL DE 06 1568 12 Europe/Berlin 2012-02-02
-2907349 Heinade Heinade 51.83333 9.63333 P PPLA4 DE 06 00 03255 03255018 1024 277 Europe/Berlin 2011-04-25
-2907359 Heimsheim Heimsheim Heimsheim 48.8 8.85 P PPL DE 01 5234 414 Europe/Berlin 2012-01-18
-2907388 Heimertingen Heimertingen 48.03333 10.15 P PPLA4 DE 02 097 09778 09778150 1758 565 Europe/Berlin 2011-04-25
-2907399 Heimenkirch Heimenkirch Heimenkirch 47.61667 9.91667 P PPL DE 02 3723 730 Europe/Berlin 2012-01-18
-2907416 Heimbuchenthal Heimbuchenthal 49.88917 9.29556 P PPLA4 DE 02 096 09671 09671127 2219 230 Europe/Berlin 2011-04-25
-2907459 Heimbach Heimbach Heimbach 50.63333 6.48333 P PPL DE 07 4658 239 Europe/Berlin 2012-01-18
-2907460 Heimbach Heimbach 50.45 7.53333 P PPLX DE 08 1241 88 Europe/Berlin 2006-01-17
-2907464 Heimbach Heimbach 49.61667 7.25 P PPLA4 DE 08 00 07134 07134036 0 418 Europe/Berlin 2011-04-25
-2907486 Heilshoop Heilshoop Heilshoop 53.88333 10.53333 P PPLA4 DE 10 00 01062 01062032 598 18 Europe/Berlin 2011-04-25
-2907488 Heilsbronn Heilsbronn Heilsbronn 49.33333 10.8 P PPL DE 02 9374 422 Europe/Berlin 2012-01-18
-2907501 Heiligkreuzsteinach Heiligkreuzsteinach Heiligkreuzsteinach 49.48333 8.795 P PPLA4 DE 01 082 08226 08226029 3164 254 Europe/Berlin 2011-04-25
-2907541 Heiligenstedtenerkamp Heiligenstedtenerkamp Heiligenstedtenerkamp 53.89959 9.46814 P PPLA4 DE 10 00 01061 01061035 752 2 Europe/Berlin 2011-04-25
-2907542 Heiligenstedten Heiligenstedten Heiligenstedten 53.93264 9.47462 P PPLA4 DE 10 00 01061 01061034 1724 0 Europe/Berlin 2011-04-25
-2907545 Heilbad Heiligenstadt Heilbad Heiligenstadt Heilbad Heiligenstadt,Heiligenstadt 51.38333 10.13333 P PPL DE 15 17230 279 Europe/Berlin 2012-01-18
-2907546 Heiligenstadt Heiligenstadt Heiligenstadt 49.86667 11.16667 P PPL DE 02 3690 359 Europe/Berlin 2012-01-18
-2907554 Heiligenroth Heiligenroth 50.45 7.86667 P PPLA4 DE 08 00 07143 07143027 1435 225 Europe/Berlin 2011-07-31
-2907561 Heiligenmoschel Heiligenmoschel 49.55 7.76667 P PPLA4 DE 08 00 07335 07335013 666 358 Europe/Berlin 2011-04-25
-2907585 Heiligenhaus Heiligenhaus Heiligenhaus,Stadt Heiligenhaus 51.32662 6.97106 P PPL DE 07 27700 180 Europe/Berlin 2011-08-06
-2907589 Heiligenhafen Heiligenhafen Heiligenhafen 54.36667 10.98333 P PPL DE 10 9308 27 Europe/Berlin 2012-01-18
-2907594 Heiligengrabe Heiligengrabe 53.14461 12.36254 P PPLA4 DE 11 00 12068 12068181 4581 79 Europe/Berlin 2011-07-31
-2907616 Heiligenberg Heiligenberg 47.81667 9.31667 P PPLA4 DE 01 084 08435 08435020 2911 748 Europe/Berlin 2011-04-25
-2907665 Heilenbach Heilenbach 50.06667 6.46667 P PPLA4 DE 08 00 07232 07232048 131 391 Europe/Berlin 2011-04-25
-2907669 Heilbronn Heilbronn Chailmpron,Hajlbrono,Heilbronn,Heilbronn Neckar,Khajl'bronn,Khajlbron,hairuburon,haylbrwn,Χαϊλμπρόν,Хайльбронн,Хајлброн,هايلبرون,هایلبرون,ハイルブロン 49.14028 9.22 P PPL DE 01 120733 170 Europe/Berlin 2012-02-28
-2907670 Heilberscheid Heilberscheid 50.41667 7.88333 P PPLA4 DE 08 00 07143 07143026 687 305 Europe/Berlin 2011-04-25
-2907676 Heilbach Heilbach 50.05 6.28333 P PPLA4 DE 08 00 07232 07232047 129 493 Europe/Berlin 2011-04-25
-2907685 Heikendorf Heikendorf 54.36667 10.2 P PPLA4 DE 10 00 01057 01057025 8056 3 Europe/Berlin 2011-04-25
-2907697 Heigenbrücken Heigenbrucken 50.03333 9.38333 P PPLA4 DE 02 096 09671 09671126 2417 379 Europe/Berlin 2011-04-25
-2907703 Heidweiler Heidweiler 49.91667 6.75 P PPLA4 DE 08 00 07231 07231051 190 319 Europe/Berlin 2011-04-25
-2907722 Heidmühlen Heidmuhlen 53.96667 10.08333 P PPLA4 DE 10 00 01060 01060038 672 27 Europe/Berlin 2011-04-25
-2907780 Heidgraben Heidgraben Heidgraben 53.71667 9.65 P PPLA4 DE 10 00 01056 01056023 2241 8 Europe/Berlin 2011-07-31
-2907790 Heidesheim Heidesheim 49.58056 8.19611 P PPL DE 08 6976 148 Europe/Berlin 2006-01-17
-2907794 Heidersdorf Heidersdorf 50.68333 13.4 P PPLA4 DE 13 145 14521 14521280 954 640 Europe/Berlin 2011-04-25
-2907851 Heidenheim an der Brenz Heidenheim an der Brenz Heidenheim,Heidenheim an der Brenz,Heidenheim in Wurttemberg,Heidenheim in Württemberg,Hoana 48.67798 10.15162 P PPL DE 01 081 50067 494 Europe/Berlin 2010-11-15
-2907852 Heidenheim Heidenheim Heidenheim 49.01667 10.75 P PPL DE 02 2589 593 Europe/Berlin 2012-01-18
-2907864 Heidenburg Heidenburg 49.8 6.91667 P PPLA4 DE 08 00 07231 07231204 724 398 Europe/Berlin 2011-04-25
-2907886 Heidenau Heidenau 53.31667 9.66667 P PPLA4 DE 06 00 03353 03353018 2081 50 Europe/Berlin 2011-04-25
-2907887 Heidenau Heidenau 50.97221 13.86741 P PPL DE 13 146 14628 16756 120 Europe/Berlin 2011-12-26
-2907889 Heiden Heiden 51.83333 6.93333 P PPLA4 DE 07 055 05554 05554028 8147 70 Europe/Berlin 2011-07-31
-2907911 Heidelberg Heidelberg Gejdel'berg,Hajdelbergo,Heidelberg,Heidelburg,Khajdelberg,hai de bao,haidelbergi,haideruberuku,haydlbrg,haydlbrgh,hyydlbrg,Гайдельберґ,Гейдельберг,Хайделберг,Хајделберг,היידלברג,هايدلبرغ,هایدلبرگ,ჰაიდელბერგი,ハイデルベルク,海德堡 49.40768 8.69079 P PPL DE 01 143345 115 Europe/Berlin 2008-12-26
-2907962 Heidekamp Heidekamp 53.85 10.5 P PPLA4 DE 10 00 01062 01062031 489 13 Europe/Berlin 2011-04-25
-2907983 Heideck Heideck Heideck,Heydeck 49.13365 11.12726 P PPL DE 02 5011 408 Europe/Berlin 2012-03-19
-2908032 Heide Heide Heide 54.2 9.1 P PPL DE 10 20599 12 Europe/Berlin 2012-01-18
-2908149 Heichelheim Heichelheim 51.05 11.31667 P PPLA4 DE 15 00 16071 16071028 308 245 Europe/Berlin 2011-04-25
-2908165 Hehlen Hehlen 51.98858 9.47004 P PPLA4 DE 06 00 03255 03255017 2193 73 Europe/Berlin 2011-04-25
-2908259 Hefersweiler Hefersweiler 49.6 7.68333 P PPLA4 DE 08 00 07336 07336036 501 318 Europe/Berlin 2011-04-25
-2908268 Heeßen Heessen 52.23211 9.09642 P PPLA4 DE 06 00 03257 03257012 1576 99 Europe/Berlin 2011-07-31
-2908273 Heeslingen Heeslingen 53.31667 9.33333 P PPLA4 DE 06 00 03357 03357021 4803 20 Europe/Berlin 2011-04-25
-2908292 Heerstedt Heerstedt 53.46516 8.75851 P PPLA4 DE 06 00 03352 03352021 509 10 Europe/Berlin 2011-07-29
-2908324 Heemsen Heemsen Heemsen 52.7 9.26667 P PPLA4 DE 06 00 03256 03256012 1686 24 Europe/Berlin 2011-04-25
-2908330 Heek Heek Hek,Hêk 52.11667 7.1 P PPLA4 DE 07 055 05554 05554024 8272 52 Europe/Berlin 2011-11-07
-2908349 Heede Heede 53.78333 9.8 P PPLA4 DE 10 00 01056 01056022 694 14 Europe/Berlin 2011-04-25
-2908350 Heede Heede 53 7.3 P PPLA4 DE 06 00 03454 03454020 2221 1 Europe/Berlin 2011-04-25
-2908365 Hedwigenkoog Hedwigenkoog 54.18333 8.85 P PPLA4 DE 10 00 01051 01051043 267 0 Europe/Berlin 2011-04-25
-2908373 Hedersleben Hedersleben 51.85943 11.25 P PPLA4 DE 14 00 15085 15085160 1757 106 Europe/Berlin 2011-07-31
-2908374 Hedersleben Hedersleben Hedersleben 51.55 11.65 P PPL DE 14 1003 177 Europe/Berlin 2012-02-02
-2908379 Hedeper Hedeper 52.06667 10.68333 P PPLA4 DE 06 00 03158 03158017 588 115 Europe/Berlin 2011-04-25
-2908398 Heddesheim Heddesheim Heddesheim 49.50556 8.60361 P PPLA4 DE 01 082 08226 08226028 11544 102 Europe/Berlin 2011-04-25
-2908400 Heddesbach Heddesbach 49.48028 8.82806 P PPLA4 DE 01 082 08226 08226027 518 199 Europe/Berlin 2011-04-25
-2908401 Heddert Heddert 49.65 6.75 P PPLA4 DE 08 00 07235 07235040 271 409 Europe/Berlin 2011-04-25
-2908411 Hecklingen Hecklingen Hecklingen 51.85 11.53333 P PPL DE 14 3969 74 Europe/Berlin 2012-01-18
-2908421 Heckhuscheid Heckhuscheid 50.17877 6.22264 P PPLA4 DE 08 00 07232 07232236 153 563 Europe/Berlin 2011-04-25
-2908439 Heckenmünster Heckenmunster 49.9 6.78333 P PPLA4 DE 08 00 07231 07231050 131 372 Europe/Berlin 2011-04-25
-2908460 Hecken Hecken 49.91667 7.4 P PPLA4 DE 08 00 07140 07140048 140 404 Europe/Berlin 2011-04-25
-2908486 Hechthausen Hechthausen Hechthausen 53.64041 9.23942 P PPLA4 DE 06 00 03352 03352020 3623 9 Europe/Berlin 2011-07-05
-2908495 Hechingen Hechingen 48.35149 8.96317 P PPL DE 01 19400 531 Europe/Berlin 2008-12-23
-2908529 Hebertshausen Hebertshausen 48.28959 11.46526 P PPLA4 DE 02 091 09174 09174122 5121 480 Europe/Berlin 2011-04-25
-2908531 Hebertsfelden Hebertsfelden 48.4 12.81667 P PPLA4 DE 02 092 09277 09277124 3756 446 Europe/Berlin 2011-04-25
-2908565 Haynrode Haynrode 51.43333 10.48333 P PPLA4 DE 15 00 16061 16061044 751 377 Europe/Berlin 2011-04-25
-2908575 Hayingen Hayingen Havingen 48.27531 9.4776 P PPL DE 01 2224 664 Europe/Berlin 2008-12-24
-2908595 Hawangen Hawangen 47.96667 10.26667 P PPLA4 DE 02 097 09778 09778149 1237 641 Europe/Berlin 2011-04-25
-2908597 Havixbeck Havixbeck 51.98333 7.41667 P PPLA4 DE 07 055 05558 05558020 12034 78 Europe/Berlin 2011-04-25
-2908602 Havetoftloit Havetoftloit Havetoftloit 54.66667 9.56667 P PPLA4 DE 10 00 01059 01059038 957 41 Europe/Berlin 2011-04-25
-2908604 Havetoft Havetoft Havetoft 54.65 9.51667 P PPLA4 DE 10 00 01059 01059037 913 32 Europe/Berlin 2011-04-25
-2908614 Haverlah Haverlah 52.06667 10.16667 P PPL DE 06 1741 129 Europe/Berlin 2006-01-17
-2908644 Havelberg Havelberg 52.83088 12.07552 P PPL DE 14 7078 44 Europe/Berlin 2009-01-30
-2908649 Havekost Havekost 53.55 10.46667 P PPLA4 DE 10 00 01053 01053052 135 42 Europe/Berlin 2011-04-25
-2908661 Hauzenberg Hauzenberg Hauzenberg 48.65 13.63333 P PPL DE 02 12522 475 Europe/Berlin 2012-02-02
-2908669 Hauteroda Hauteroda Hauteroda 51.26667 11.28333 P PPLA4 DE 15 00 16065 16065031 617 216 Europe/Berlin 2011-04-25
-2908676 Hausweiler Hausweiler 49.65 7.56667 P PPLA4 DE 08 00 07336 07336035 65 236 Europe/Berlin 2011-04-25
-2908678 Hauswalde Hauswalde Bretnig-Hauswalde,Hauswalde 51.15 14.1 P PPL DE 13 3265 331 Europe/Berlin 2012-01-18
-2908688 Hausten Hausten 50.4 7.11667 P PPLA4 DE 08 00 07137 07137034 329 424 Europe/Berlin 2011-04-25
-2908696 Haussömmern Haussommern 51.18333 10.81667 P PPLA4 DE 15 00 16064 16064021 255 258 Europe/Berlin 2011-04-25
-2908783 Hausham Hausham 47.7466 11.84069 P PPLA4 DE 02 091 09182 09182119 8177 771 Europe/Berlin 2011-07-31
-2908796 Häusern Hausern 47.75 8.16667 P PPLA4 DE 01 083 08337 08337045 1340 886 Europe/Berlin 2011-04-25
-2908835 Hausen ob Verena Hausen ob Verena Hausen,Hausen ob Verena 48.05 8.71667 P PPLA4 DE DE 01 083 08327 08327023 0 810 Europe/Berlin 2011-04-25
-2908858 Hausen am Tann Hausen am Tann 48.19833 8.83631 P PPLA4 DE 01 084 08417 08417029 0 728 Europe/Berlin 2011-04-25
-2908859 Hausen am Bussen Hausen am Bussen Hausen 48.21192 9.62514 P PPLA4 DE DE 01 084 08425 08425055 0 539 Europe/Berlin 2011-04-25
-2908863 Hausen Hausen 51.38333 10.36667 P PPLA4 DE 15 00 16061 16061043 456 337 Europe/Berlin 2011-04-25
-2908873 Hausen Hausen 50.55 7.41667 P PPL DE 08 2009 114 Europe/Berlin 2006-01-17
-2908875 Hausen Hausen Hausen,Hausen Roth 50.5 10.11667 P PPLA4 DE 02 096 09673 09673129 0 561 Europe/Berlin 2011-07-31
-2908886 Hausen Hausen 49.86972 9.21028 P PPLA4 DE 02 096 09676 09676128 2033 185 Europe/Berlin 2011-04-25
-2908887 Hausen Hausen 49.86667 7.36667 P PPLA4 DE 08 00 07134 07134035 192 384 Europe/Berlin 2011-04-25
-2908888 Hausen Hausen 49.68333 11.03333 P PPLA4 DE 02 094 09474 09474134 3625 273 Europe/Berlin 2011-04-25
-2908896 Hausen Hausen 48.85 12 P PPLA4 DE 02 092 09273 09273125 2068 392 Europe/Berlin 2011-04-25
-2908913 Hausen Hausen 47.68128 7.83986 P PPL DE 01 083 2410 406 Europe/Berlin 2010-11-15
-2908967 Hausbay Hausbay 50.1 7.55 P PPLA4 DE 08 00 07140 07140047 211 453 Europe/Berlin 2011-04-25
-2908974 Hausach Hausach Hausach 48.28333 8.16667 P PPL DE 01 5748 260 Europe/Berlin 2012-01-18
-2908992 Hauroth Hauroth 50.25 7.1 P PPLA4 DE 08 00 07135 07135040 283 532 Europe/Berlin 2011-04-25
-2908999 Hauptstuhl Hauptstuhl 49.4 7.48333 P PPLA4 DE 08 00 07335 07335012 1325 235 Europe/Berlin 2011-04-25
-2909057 Haunsheim Haunsheim 48.59977 10.37401 P PPLA4 DE 02 097 09773 09773137 1599 448 Europe/Berlin 2011-04-25
-2909087 Haundorf Haundorf 49.17598 10.77124 P PPLA4 DE 02 095 09577 09577138 2751 444 Europe/Berlin 2011-04-25
-2909129 Hauenstein Hauenstein Hauenstein,Hauenstein Kreis Pirmasens 49.19211 7.85492 P PPLA4 DE 08 00 07340 07340014 4148 229 Europe/Berlin 2011-08-07
-2909194 Hatzfeld Hatzfeld Hatzfeld 51 8.55 P PPL DE 05 3409 443 Europe/Berlin 2012-01-18
-2909201 Hatzenport Hatzenport 50.23333 7.41667 P PPLA4 DE 08 00 07137 07137208 673 249 Europe/Berlin 2011-04-25
-2909204 Hatzenbühl Hatzenbuhl 49.11111 8.24528 P PPLA4 DE 08 00 07334 07334009 2693 117 Europe/Berlin 2011-04-25
-2909220 Hattstedtermarsch Hattstedtermarsch Hattstedtermarsch 54.55 9 P PPLA4 DE 10 00 01054 01054043 294 255 Europe/Berlin 2011-04-25
-2909222 Hattstedt Hattstedt Hattstedt 54.53333 9.03333 P PPLA4 DE 10 00 01054 01054042 2416 0 Europe/Berlin 2011-04-25
-2909226 Hattorf Hattorf Hattoerp,Hattorp,Hattorpp [a. 952],Hattörp 51.65035 10.23681 P PPLA4 DE 06 00 03156 03156008 4456 179 Europe/Berlin 2011-03-16
-2909230 Hattingen Hattingen Hattingen 51.4 7.16667 P PPL DE 07 56866 68 Europe/Berlin 2012-01-18
-2909235 Hattgenstein Hattgenstein 49.7 7.15 P PPLA4 DE 08 00 07134 07134034 266 580 Europe/Berlin 2011-04-25
-2909240 Hattersheim Hattersheim 50.06667 8.46667 P PPL DE 05 25035 116 Europe/Berlin 2006-01-17
-2909252 Hattenhofen Hattenhofen 48.66648 9.57456 P PPLA4 DE 01 081 08117 08117029 2964 355 Europe/Berlin 2011-04-25
-2909253 Hattenhofen Hattenhofen 48.21667 11.11667 P PPLA4 DE 02 091 09179 09179128 1415 540 Europe/Berlin 2011-04-25
-2909268 Hatten Hatten 53.05 8.38333 P PPLA4 DE 06 00 03458 03458009 13499 29 Europe/Berlin 2011-07-31
-2909296 Haste Haste 52.38105 9.3928 P PPLA4 DE 06 00 03257 03257011 2800 53 Europe/Berlin 2011-04-25
-2909304 Haßmoor Hassmoor 54.3 9.81667 P PPLA4 DE 10 00 01058 01058073 288 18 Europe/Berlin 2011-04-25
-2909308 Haßmersheim Hassmersheim Hassmersheim,Hassnerheim,Haßmersheim,Haßnerheim 49.3 9.15 P PPLA4 DE 01 082 08225 08225033 4892 151 Europe/Berlin 2011-04-25
-2909313 Haßloch Hassloch Hafsloch,Hassloch,Haßloch 49.36278 8.25806 P PPLA4 DE 08 00 07332 07332025 20779 113 Europe/Berlin 2011-04-25
-2909325 Haßleben Hassleben Hassleben,Haßleben 51.11667 11 P PPLA4 DE 15 00 16068 16068025 1066 150 Europe/Berlin 2011-04-25
-2909335 Haßfurt Hassfurt Hassfurt,Haszfurt,Haszfurth,Haßfurt 50.03333 10.5 P PPL DE 02 13562 232 Europe/Berlin 2012-01-18
-2909350 Hassendorf Hassendorf 53.11667 9.26667 P PPLA4 DE 06 00 03357 03357020 1156 29 Europe/Berlin 2011-04-25
-2909386 Hasselfelde Hasselfelde Hasselfelde 51.68333 10.85 P PPL DE 14 3159 482 Europe/Berlin 2012-01-18
-2909418 Hasselberg Hasselberg 54.71667 9.98333 P PPLA4 DE 10 00 01059 01059121 0 254 Europe/Berlin 2011-04-25
-2909430 Hasselbach Hasselbach 50.71667 7.51667 P PPLA4 DE 08 00 07132 07132046 297 302 Europe/Berlin 2011-04-25
-2909433 Hasselbach Hasselbach 50.03333 7.45 P PPLA4 DE 08 00 07140 07140046 180 403 Europe/Berlin 2011-04-25
-2909444 Hassel Hassel 52.69688 8.83198 P PPL DE 06 1933 56 Europe/Berlin 2009-01-28
-2909445 Hassel Hassel 52.63952 11.92635 P PPLA4 DE 14 00 15090 15090220 849 33 Europe/Berlin 2011-04-25
-2909460 Haßbergen Hassbergen 52.73333 9.23333 P PPLA4 DE 06 00 03256 03256011 1563 23 Europe/Berlin 2011-04-25
-2909489 Hasloh Hasloh Hasloh 53.68333 9.9 P PPLA4 DE 10 00 01056 01056021 3460 15 Europe/Berlin 2011-04-25
-2909491 Hasloch Hasloch 49.79194 9.49361 P PPLA4 DE 02 096 09677 09677137 1414 137 Europe/Berlin 2011-04-25
-2909544 Haslach Haslach 48.56531 8.05658 P PPL DE 01 083 6874 178 Europe/Berlin 2010-11-15
-2909587 Haserich Haserich 50.03333 7.33333 P PPLA4 DE 08 00 07135 07135039 224 480 Europe/Berlin 2011-04-25
-2909615 Hasenmoor Hasenmoor Hasenmoor 53.9 9.98333 P PPLA4 DE 10 00 01060 01060036 731 23 Europe/Berlin 2011-04-25
-2909623 Hasenkrug Hasenkrug 53.98333 9.85 P PPLA4 DE 10 00 01060 01060035 360 9 Europe/Berlin 2011-04-25
-2909761 Haselünne Haselunne Haselunne,Haselünne 52.66667 7.48333 P PPL DE 06 12562 16 Europe/Berlin 2012-01-18
-2909762 Haselund Haselund Haselund 54.6 9.18333 P PPLA4 DE 10 00 01054 01054041 875 19 Europe/Berlin 2011-04-25
-2909821 Haseldorf Haseldorf Haseldorf 53.61667 9.6 P PPLA4 DE 10 00 01056 01056020 1743 0 Europe/Berlin 2011-04-25
-2909865 Haselbach Haselbach 51.06667 12.43333 P PPLA4 DE 15 00 16077 16077015 0 164 Europe/Berlin 2011-04-25
-2909873 Haselbach Haselbach 49.00353 12.69183 P PPLA4 DE 02 092 09278 09278134 0 425 Europe/Berlin 2011-04-25
-2909877 Haselbach Haselbach 48.65 13.4 P PPL DE 02 1683 415 Europe/Berlin 2006-01-17
-2909886 Haselau Haselau Haselau 53.66181 9.6201 P PPLA4 DE 10 00 01056 01056019 1125 1 Europe/Berlin 2011-08-29
-2909892 Hasel Hasel 47.65342 7.8972 P PPLA4 DE 01 083 08336 08336034 1115 401 Europe/Berlin 2011-04-25
-2909908 Haschbach am Remigiusberg Haschbach am Remigiusberg Haschbach,Haschbach am Remigiusberg 49.53333 7.43333 P PPLA4 DE 08 00 07336 07336034 731 295 Europe/Berlin 2011-04-25
-2909912 Hasborn Hasborn 50.05 6.91667 P PPLA4 DE 08 00 07231 07231049 571 369 Europe/Berlin 2011-04-25
-2909915 Hasbergen Hasbergen 52.23333 7.93333 P PPLA4 DE 06 00 03459 03459021 11032 73 Europe/Berlin 2011-04-25
-2909926 Harzungen Harzungen 51.55 10.8 P PPLA4 DE 15 00 16062 16062016 226 228 Europe/Berlin 2011-04-25
-2909944 Harzgerode Harzgerode Harzgerode 51.63333 11.15 P PPL DE 14 4428 407 Europe/Berlin 2012-01-18
-2909968 Harxheim Harxheim 49.90528 8.26417 P PPLA4 DE 08 00 07339 07339026 2025 159 Europe/Berlin 2011-04-25
-2910047 Hartmannsdorf Hartmannsdorf 50.96667 11.98333 P PPLA4 DE 15 00 16074 16074038 853 172 Europe/Berlin 2011-04-25
-2910048 Hartmannsdorf Hartmannsdorf 50.9 12.8 P PPLA4 DE 13 145 14522 14522260 4732 304 Europe/Berlin 2011-04-25
-2910049 Hartmannsdorf Hartmannsdorf 50.9 12 P PPLA4 DE 15 00 16076 16076026 0 297 Europe/Berlin 2011-04-25
-2910051 Hartmannsdorf Hartmannsdorf 50.76667 12.43333 P PPL DE 13 1462 356 Europe/Berlin 2006-01-17
-2910068 Härtlingen Hartlingen 50.53333 7.9 P PPLA4 DE 08 00 07143 07143230 464 426 Europe/Berlin 2011-04-25
-2910108 Hartheim Hartheim 47.93333 7.63333 P PPLA4 DE 01 083 08315 08315048 4538 201 Europe/Berlin 2011-04-25
-2910121 Harthausen Harthausen 49.29417 8.345 P PPLA4 DE 08 00 07338 07338011 3061 110 Europe/Berlin 2011-04-25
-2910140 Hartha Hartha Hartha 51.1 12.96667 P PPL DE 13 7227 279 Europe/Berlin 2012-01-18
-2910167 Hartenstein Hartenstein Hartenstein 50.66667 12.68333 P PPL DE 13 5043 384 Europe/Berlin 2012-01-18
-2910168 Hartenstein Hartenstein 49.6 11.51667 P PPLA4 DE 02 095 09574 09574129 1534 451 Europe/Berlin 2011-04-25
-2910178 Hartenholm Hartenholm Hartenholm 53.9 10.08333 P PPLA4 DE 10 00 01060 01060034 1808 43 Europe/Berlin 2011-04-25
-2910181 Hartenfels Hartenfels 50.58333 7.78333 P PPLA4 DE 08 00 07143 07143025 871 420 Europe/Berlin 2011-04-25
-2910269 Harsum Harsum 52.21045 9.96486 P PPLA4 DE 06 00 03254 03254020 12331 81 Europe/Berlin 2011-04-25
-2910273 Harspelt Harspelt 50.13333 6.16667 P PPLA4 DE 08 00 07232 07232234 84 499 Europe/Berlin 2011-04-25
-2910275 Harsleben Harsleben Harsleben 51.86667 11.1 P PPLA4 DE 14 00 15085 15085140 2395 117 Europe/Berlin 2011-04-25
-2910278 Harsewinkel Harsewinkel Harsewinkel,Haswinkil,Hoswinkil 51.96667 8.23333 P PPL DE 07 24207 65 Europe/Berlin 2012-01-18
-2910280 Harsefeld Harsefeld 53.45 9.5 P PPL DE 06 12350 34 Europe/Berlin 2006-01-17
-2910283 Harsdorf Harsdorf 50.03333 11.56667 P PPLA4 DE 02 094 09477 09477119 1076 398 Europe/Berlin 2011-04-25
-2910289 Harscheid Harscheid 50.4598 6.89203 P PPLA4 DE 08 00 07131 07131026 160 423 Europe/Berlin 2011-07-31
-2910292 Harschbach Harschbach 50.58333 7.6 P PPLA4 DE 08 00 07138 07138027 446 300 Europe/Berlin 2011-04-25
-2910302 Harrislee Harrislee Harrislee 54.8 9.38333 P PPLA4 DE 10 00 01059 01059120 11596 48 Europe/Berlin 2011-04-25
-2910342 Harra Harra Harra 50.41667 11.68333 P PPLA4 DE 15 00 16075 16075042 0 465 Europe/Berlin 2011-04-25
-2910344 Harpstedt Harpstedt 52.9 8.58333 P PPL DE 06 4558 42 Europe/Berlin 2006-01-17
-2910384 Harmstorf Harmstorf 53.35 9.98333 P PPLA4 DE 06 00 03353 03353017 913 32 Europe/Berlin 2011-04-25
-2910390 Harmsdorf Harmsdorf 54.25 10.83333 P PPLA4 DE 10 00 01055 01055020 735 38 Europe/Berlin 2011-04-25
-2910391 Harmsdorf Harmsdorf 53.7 10.71667 P PPLA4 DE 10 00 01053 01053051 207 31 Europe/Berlin 2011-04-25
-2910488 Hargesheim Hargesheim 49.86667 7.83333 P PPLA4 DE 08 00 07133 07133040 2991 160 Europe/Berlin 2011-04-25
-2910493 Hargarten Hargarten 50.1 6.4 P PPLA4 DE 08 00 07232 07232233 92 495 Europe/Berlin 2011-04-25
-2910514 Haren Haren Haren 52.78333 7.23333 P PPL DE 06 22545 8 Europe/Berlin 2012-02-02
-2910560 Hardt Hardt 50.63333 7.91667 P PPLA4 DE 08 00 07143 07143234 0 420 Europe/Berlin 2011-04-25
-2910575 Hardt Hardt Hardt 48.18333 8.41667 P PPLA4 DE 01 083 08325 08325024 2598 773 Europe/Berlin 2011-04-25
-2910624 Hardisleben Hardisleben 51.16667 11.41667 P PPLA4 DE 15 00 16068 16068024 615 187 Europe/Berlin 2011-04-25
-2910633 Hardheim Hardheim 49.61194 9.47194 P PPLA4 DE 01 082 08225 08225032 7513 294 Europe/Berlin 2011-04-25
-2910638 Hardert Hardert 50.51667 7.51667 P PPLA4 DE 08 00 07138 07138026 843 311 Europe/Berlin 2011-04-25
-2910663 Hardegsen Hardegsen Hardegsen 51.65 9.83333 P PPL DE 06 8621 180 Europe/Berlin 2012-01-18
-2910667 Hardebek Hardebek Hardebek 53.9885 9.86813 P PPLA4 DE 10 00 01060 01060033 514 12 Europe/Berlin 2011-08-24
-2910685 Harburg Harburg Hamburg-Harburg,Harburg,Harburg an Elbe,Horborg 53.46667 9.98333 P PPLX DE DE 04 202571 2 Europe/Berlin 2012-01-18
-2910686 Harburg Harburg 48.78674 10.68927 P PPL DE 02 097 5694 411 Europe/Berlin 2010-11-15
-2910694 Harbke Harbke Harbke 52.18877 11.04624 P PPLA4 DE 14 00 15083 15083275 1935 125 Europe/Berlin 2011-05-03
-2910709 Harbarnsen Harbarnsen 51.98333 9.96667 P PPLA4 DE 06 00 03254 03254019 680 177 Europe/Berlin 2011-04-25
-2910711 Harbach Harbach 50.85 7.83333 P PPLA4 DE 08 00 07132 07132045 578 330 Europe/Berlin 2011-04-25
-2910720 Happurg Happurg 49.49372 11.47119 P PPLA4 DE 02 095 09574 09574128 3779 354 Europe/Berlin 2011-04-25
-2910760 Hanstedt Eins Hanstedt Eins Hanstedt 53.0463 10.3756 P PPL DE 06 00 1004 66 Europe/Berlin 2010-11-22
-2910762 Hanstedt Hanstedt 53.26667 10.01667 P PPLA4 DE 06 00 03353 03353016 4574 32 Europe/Berlin 2011-04-25
-2910776 Hanshagen Hanshagen 54.05 13.53333 P PPLA4 DE 12 00 13059 13059029 910 45 Europe/Berlin 2011-04-25
-2910777 Hanshagen Hanshagen 53.8 11.15 P PPLA4 DE 12 00 13058 13058045 0 48 Europe/Berlin 2011-04-25
-2910814 Hanroth Hanroth 50.58333 7.65 P PPLA4 DE 08 00 07138 07138025 685 328 Europe/Berlin 2011-04-25
-2910831 Hannover Hannover Annobero,Gannover,HAJ,Hannauver,Hannober,Hannover,Hannovere,Hannoveria,Hannower,Hannóver,Hanover,Hanoveris,Hanovra,Hanovre,Hanovro,Hanower,Hanóver,Hanôver,Honovere,Khanover,han no wexr,han nuo wei,hanobeo,hanofa,hanoveri,hanwfr,hanwwr,hnwbr,Αννόβερο,Ганновер,Хановер,הנובר,هانوفر,هانوور,ฮันโนเวอร์,ჰანოვერი,ハノーファー,漢諾威,하노버 52.37052 9.73322 P PPLA DE 06 00 515140 57 Europe/Berlin 2011-06-16
-2910863 Hankensbüttel Hankensbuttel Hankensbuttel,Hankensbüttel 52.73333 10.6 P PPLA4 DE 06 00 03151 03151011 4487 94 Europe/Berlin 2011-07-31
-2910875 Hänigsen Haenigsen 'Kasperland',Haehnsen,Henighusen [a. 1226],Hähnsen,Uetze-Haenigsen,Uetze-Hänigsen 52.48333 10.1 P PPL DE 06 00 03241 03241018 6033 55 47 Europe/Berlin 2011-02-16
-2910881 Hanhofen Hanhofen 49.31667 8.34083 P PPLA4 DE 08 00 07338 07338010 2304 107 Europe/Berlin 2011-04-25
-2910898 Hangen-Weisheim Hangen-Weisheim 49.71028 8.18361 P PPLA4 DE 08 00 07331 07331039 513 224 Europe/Berlin 2011-04-25
-2910935 Hangard Hangard 49.3826 7.21046 P PPL DE 09 00 1970 255 Europe/Berlin 2010-11-22
-2910949 Hanerau-Hademarschen Hanerau-Hademarschen Hanerau-Hademarschen 54.13333 9.41667 P PPLA4 DE 10 00 01058 01058072 3074 33 Europe/Berlin 2011-04-25
-2910971 Handrup Handrup Handrup 52.56456 7.57679 P PPLA4 DE 06 00 03454 03454017 900 26 Europe/Berlin 2011-04-25
-2910973 Handorf Handorf 53.35 10.35 P PPLA4 DE 06 00 03355 03355017 2063 1 Europe/Berlin 2011-04-25
-2910986 Handewitt Handewitt Handewitt 54.76667 9.33333 P PPLA4 DE 10 00 01059 01059183 6152 40 Europe/Berlin 2011-07-31
-2910992 Handeloh Handeloh 53.24563 9.83923 P PPLA4 DE 06 00 03353 03353015 2508 56 Europe/Berlin 2011-08-30
-2911007 Hanau am Main Hanau am Main Chanaou,Hanau,Hanau am Main,Khanau,hanau,Χάναου,Ханау,ハーナウ 50.13333 8.91667 P PPL DE 05 88648 109 Europe/Berlin 2012-01-18
-2911010 Hamweddel Hamweddel Hamweddel 54.18333 9.61667 P PPLA4 DE 10 00 01058 01058071 501 6 Europe/Berlin 2011-04-25
-2911013 Hamwarde Hamwarde Hamwarde 53.45 10.41667 P PPLA4 DE 10 00 01053 01053050 749 52 Europe/Berlin 2011-04-25
-2911044 Hammoor Hammoor Hammoor 53.71378 10.322 P PPLA4 DE 10 00 01062 01062027 1121 40 Europe/Berlin 2011-08-10
-2911051 Hamminkeln Hamminkeln Hamminkeln 51.73333 6.58333 P PPL DE 07 27433 22 Europe/Berlin 2012-01-18
-2911073 Hammerstein Hammerstein Hammerstein 50.48333 7.35 P PPLA4 DE 08 00 07138 07138024 355 215 Europe/Berlin 2011-04-25
-2911077 Hammerstedt Hammerstedt 50.95421 11.45428 P PPLA4 DE 15 00 16071 16071027 166 280 Europe/Berlin 2011-04-25
-2911099 Hammersbach Hammersbach Hammersbach 50.21667 8.98333 P PPLA4 DE 05 064 06435 06435013 4772 135 Europe/Berlin 2011-07-31
-2911145 Hammerbrücke Hammerbrucke Hammerbrucke,Hammerbrücke,Hammerburg 50.43333 12.41667 P PPL DE 13 1395 683 Europe/Berlin 2012-01-18
-2911214 Hammelburg Hammelburg Hammelburg 50.11667 9.9 P PPL DE 02 12004 199 Europe/Berlin 2012-01-18
-2911230 Hammah Hammah 53.61667 9.36667 P PPLA4 DE 06 00 03359 03359022 2859 10 Europe/Berlin 2011-04-25
-2911233 Hamma Hamma 51.41667 10.88333 P PPLA4 DE 15 00 16062 16062015 296 332 Europe/Berlin 2011-04-25
-2911240 Hamm Hamm Hamm,Hammona,Khamm,hamu,Хамм,ハム 51.68033 7.82089 P PPL DE 07 059 05915 05915000 185327 66 Europe/Berlin 2011-03-27
-2911242 Hamm Hamm Hamm 50.76667 7.66667 P PPL DE 08 3406 193 Europe/Berlin 2012-02-02
-2911243 Hamm Hamm 50.01667 6.41667 P PPLA4 DE 08 00 07232 07232046 0 278 Europe/Berlin 2011-04-25
-2911260 Hamersen Hamersen 53.25592 9.48034 P PPLA4 DE 06 00 03357 03357019 483 40 Europe/Berlin 2011-04-25
-2911271 Hameln Hameln Hamelen,Hamelin,Hameln,Hamelín,hamerun,ハーメルン 52.10397 9.35623 P PPL DE 06 58666 74 Europe/Berlin 2011-03-20
-2911275 Hämelhausen Hamelhausen 52.78086 9.28293 P PPLA4 DE 06 00 03256 03256009 608 22 Europe/Berlin 2011-04-25
-2911282 Hamdorf Hamdorf 54.23333 9.53333 P PPLA4 DE 10 00 01058 01058070 1316 6 Europe/Berlin 2011-04-25
-2911285 Wandsbek Wandsbek Hamburg-Wandsbek,Wandsbek 53.56667 10.1 P PPLX DE 04 411422 18 Europe/Berlin 2010-10-31
-2911287 Marienthal Marienthal Hamburg-Marienthal 53.56667 10.08333 P PPLX DE 04 287101 16 Europe/Berlin 2010-10-31
-2911293 Eimsbüttel Eimsbuettel Eimsbuettel,Eimsbüttel,Hamburg-Eimsbuettel,Hamburg-Eimsbüttel 53.56667 9.98333 P PPLX DE 04 251907 15 Europe/Berlin 2010-10-31
-2911296 Altona Altona Altona,Hamburg-Altona 53.55 9.93333 P PPLX DE 04 250192 34 Europe/Berlin 2010-10-31
-2911298 Hamburg Hamburg Amborg,Ambourgo,Amburgo,Ciutat d'Hamburg,Estat d'Hamburg,Gamburg,HAM,Hamborg,Hambourg,Hamburg,Hamburga,Hamburgas,Hamburgo,Hamburgu,Hamburgum,Hamburk,Hampuri,Hanburgo,Khamburg,ham bur k,hambuleukeu,hamburgi,hambwrg,hambwrgh,han bao,han bao shi,hanburuku,hmbwrg,Αμβούργο,Гамбург,Гамбурґ,Хамбург,Համբուրգ,המבורג,هامبورغ,هامبورگ,ܗܡܒܘܪܓ,ฮัมบูร์ก,ჰამბურგი,ハンブルク,汉堡,汉堡市,함부르크 53.55 10 P PPLA DE 04 1739117 24 Europe/Berlin 2012-02-23
-2911300 Hambühren Hambuhren 52.63333 9.98333 P PPLA4 DE 06 00 03351 03351012 10259 35 Europe/Berlin 2011-04-25
-2911306 Hambuch Hambuch 50.23333 7.18333 P PPLA4 DE 08 00 07135 07135038 683 430 Europe/Berlin 2011-04-25
-2911308 Hambrücken Hambrucken 49.19 8.54056 P PPLA4 DE 01 082 08215 08215029 5302 107 Europe/Berlin 2011-04-25
-2911322 Hambergen Hambergen 53.31667 8.83333 P PPLA4 DE 06 00 03356 03356003 5472 23 Europe/Berlin 2011-04-25
-2911325 Hamberge Hamberge 53.83333 10.58333 P PPLA4 DE 10 00 01062 01062025 1357 15 Europe/Berlin 2011-04-25
-2911362 Hambach Hambach 50.4 7.98333 P PPLA4 DE 08 00 07141 07141052 527 194 Europe/Berlin 2011-04-25
-2911379 Halvesbostel Halvesbostel 53.35 9.6 P PPLA4 DE 06 00 03353 03353014 730 47 Europe/Berlin 2011-04-25
-2911384 Halver Halver Halvara,Halver 51.18612 7.49817 P PPL DE 07 17650 414 Europe/Berlin 2011-11-06
-2911395 Haltern Haltern Halahtron,Halostrun,Haltern,Haltern in Westfalen,Khal'terne,Хальтерне 51.74297 7.18163 P PPL DE 07 37788 45 Europe/Berlin 2011-11-06
-2911408 Halstenbek Halstenbek 53.63333 9.85 P PPLA4 DE 10 00 01056 01056018 16212 15 Europe/Berlin 2011-07-31
-2911419 Halsenbach Halsenbach 50.16667 7.55 P PPLA4 DE 08 00 07140 07140045 1301 425 Europe/Berlin 2011-04-25
-2911423 Halsdorf Halsdorf 49.93333 6.36667 P PPLA4 DE 08 00 07232 07232045 83 356 Europe/Berlin 2011-04-25
-2911426 Halsbrücke Halsbrucke Halsbrucke,Halsbrücke 50.95 13.35 P PPLA4 DE 13 145 14522 14522240 3619 357 Europe/Berlin 2011-04-25
-2911443 Halsbach Halsbach 48.13333 12.68333 P PPLA4 DE 02 091 09171 09171119 830 485 Europe/Berlin 2011-07-31
-2911461 Hallungen Hallungen 51.13333 10.33333 P PPLA4 DE 15 00 16063 16063037 242 268 Europe/Berlin 2011-04-25
-2911463 Hallstadt Hallstadt 49.92901 10.87539 P PPL DE 02 094 8485 242 Europe/Berlin 2010-11-15
-2911464 Hallschlag Hallschlag 50.35 6.43333 P PPLA4 DE 08 00 07233 07233214 597 550 Europe/Berlin 2011-04-25
-2911483 Hallgarten Hallgarten 49.76667 7.78333 P PPLA4 DE 08 00 07133 07133039 727 235 Europe/Berlin 2011-04-25
-2911491 Hallerndorf Hallerndorf 49.75909 10.97946 P PPLA4 DE 02 094 09474 09474133 3928 269 Europe/Berlin 2011-04-25
-2911514 Hallenberg Hallenberg Hallenberg,Hallenburg 51.11667 8.63333 P PPL DE 07 4694 450 Europe/Berlin 2012-01-18
-2911520 Halle Halle Galle,Halle,Галле 52.06667 8.36667 P PPL DE 07 21071 156 Europe/Berlin 2012-01-18
-2911521 Halle Halle 51.99122 9.56532 P PPLA4 DE 06 00 03255 03255016 1779 96 Europe/Berlin 2011-04-25
-2911522 Halle Halle Galle,Halle,Halle (Saale),Halle an der Saale,Halle sul Saale,Halle-on-the-Saale,Khale,hale,hare,Галле,Хале,ჰალე,ハレ 51.5 12 P PPL DE DE 14 234107 109 Europe/Berlin 2012-01-18
-2911530 Hallbergmoos Hallbergmoos Hallbergmoos 48.32747 11.75142 P PPLA4 DE 02 091 09178 09178130 8074 456 Europe/Berlin 2011-07-31
-2911556 Halfing Halfing Halfing bei Endorff 47.95197 12.27525 P PPLA4 DE 02 091 09187 09187139 2754 502 Europe/Berlin 2011-04-25
-2911579 Haldenwang Haldenwang 48.43763 10.44817 P PPLA4 DE 02 097 09774 09774140 1855 474 Europe/Berlin 2011-04-25
-2911580 Haldenwang Haldenwang 47.8 10.35 P PPLA4 DE 02 097 09780 09780122 3634 766 Europe/Berlin 2011-04-25
-2911584 Haldensleben Haldensleben Haldensleben,Khal'densleben,Neuhaldensleben,Хальденслебен 52.28906 11.40982 P PPL DE 14 20294 54 Europe/Berlin 2011-03-17
-2911641 Halbs Halbs 50.58333 7.96667 P PPLA4 DE 08 00 07143 07143233 361 411 Europe/Berlin 2011-04-25
-2911648 Halblech Halblech 47.62422 10.81398 P PPLA4 DE 02 097 09777 09777173 3521 820 Europe/Berlin 2011-07-31
-2911665 Halberstadt Halberstadt Halberstadt 51.9 11.05 P PPL DE 14 39729 116 Europe/Berlin 2012-01-18
-2911683 Halbemond Halbemond 53.56667 7.28333 P PPLA4 DE 06 00 03452 03452010 1041 255 Europe/Berlin 2011-04-25
-2911691 Halbe Halbe Halbe 52.11667 13.7 P PPLA4 DE 11 00 12061 12061216 2209 50 Europe/Berlin 2011-04-25
-2911739 Haiterbach Haiterbach Haiterbach 48.53333 8.65 P PPL DE 01 5820 563 Europe/Berlin 2012-01-18
-2911767 Hainspitz Hainspitz Hainspitz 50.95 11.83333 P PPLA4 DE 15 00 16074 16074037 741 303 Europe/Berlin 2011-04-25
-2911769 Hainsfarth Hainsfarth 48.96667 10.61667 P PPLA4 DE 02 097 09779 09779154 1486 422 Europe/Berlin 2011-04-25
-2911794 Hainichen Hainichen 51 11.61667 P PPLA4 DE 15 00 16074 16074036 198 305 Europe/Berlin 2011-04-25
-2911795 Hainichen Hainichen Hainichen,Hainkschen 50.96667 13.11667 P PPL DE 13 9511 322 Europe/Berlin 2012-01-18
-2911825 Hain-Gründau Hain-Grundau Hain-Grundau,Hain-Gründau 50.25 9.15 P PPL DE 05 14723 226 Europe/Berlin 2012-02-02
-2911831 Hainfeld Hainfeld 49.2575 8.10111 P PPLA4 DE 08 00 07337 07337036 686 184 Europe/Berlin 2011-04-25
-2911833 Hainewalde Hainewalde Hainewalde 50.91667 14.7 P PPLA4 DE 13 146 14626 14626170 1826 334 Europe/Berlin 2011-04-25
-2911909 Haina Haina Haina 51.03333 8.96667 P PPL DE 05 3662 373 Europe/Berlin 2012-01-18
-2911910 Haina Haina 50.98333 10.53333 P PPLA4 DE 15 00 16067 16067035 1079 296 Europe/Berlin 2011-04-25
-2911911 Haina Haina 50.41667 10.53333 P PPLA4 DE 15 00 16069 16069018 0 309 Europe/Berlin 2011-07-31
-2911916 Hain Hain 50.70749 12.08333 P PPLA4 DE 15 00 16076 16076024 0 334 Europe/Berlin 2011-04-25
-2911938 Haiming Haiming 48.21667 12.9 P PPLA4 DE 02 091 09171 09171118 2516 353 Europe/Berlin 2011-04-25
-2911940 Haimhausen Haimhausen 48.31545 11.55453 P PPLA4 DE 02 091 09174 09174121 4680 474 Europe/Berlin 2011-04-25
-2911960 Haigerloch Haigerloch 48.36614 8.80357 P PPL DE 01 10828 443 Europe/Berlin 2008-12-23
-2911964 Haiger Haiger Haiger 50.75 8.21667 P PPL DE 05 20218 312 Europe/Berlin 2012-01-18
-2911983 Haidmühle Haidmuhle 48.83333 13.76667 P PPLA4 DE 02 092 09272 09272122 1488 824 Europe/Berlin 2011-04-25
-2912158 Haibach Haibach 48.53333 13 P PPLL DE 02 2161 455 Europe/Berlin 2006-01-17
-2912159 Haibach Haibach 49.96444 9.20722 P PPLA4 DE 02 096 09671 09671124 8600 279 Europe/Berlin 2011-04-25
-2912160 Haibach Haibach 49.02405 12.71552 P PPLA4 DE 02 092 09278 09278129 0 452 Europe/Berlin 2011-04-25
-2912167 Hahnweiler Hahnweiler 49.56667 7.21667 P PPLA4 DE 08 00 07134 07134033 236 502 Europe/Berlin 2011-04-25
-2912168 Hahnstätten Hahnstatten 50.3 8.06667 P PPLA4 DE 08 00 07141 07141051 2900 146 Europe/Berlin 2011-07-31
-2912184 Hähnichen Hahnichen 51.3654 14.86098 P PPLA4 DE 13 146 14626 14626160 1528 153 Europe/Berlin 2011-04-25
-2912195 Hahnheim Hahnheim 49.86083 8.23694 P PPLA4 DE 08 00 07339 07339025 1619 125 Europe/Berlin 2011-04-25
-2912309 Hahnenbach Hahnenbach 49.81667 7.41667 P PPLA4 DE 08 00 07133 07133038 653 374 Europe/Berlin 2011-04-25
-2912347 Hahn bei Marienberg Hahn bei Marienberg Hahn,Hahn bei Marienberg 50.63333 7.93333 P PPLA4 DE DE 08 00 07143 07143231 0 365 Europe/Berlin 2011-04-25
-2912351 Hahnbach Hahnbach 49.53389 11.80302 P PPL DE 02 093 5257 387 Europe/Berlin 2010-11-15
-2912368 Hahn Hahn 49.96667 7.26667 P PPLA4 DE 08 00 07140 07140044 542 423 Europe/Berlin 2011-04-25
-2912392 Hahausen Hahausen 51.95 10.21667 P PPLA4 DE 06 00 03153 03153006 953 207 Europe/Berlin 2011-04-25
-2912417 Hagnau Hagnau 47.67666 9.31787 P PPL DE 01 084 1342 416 Europe/Berlin 2010-11-15
-2912448 Hagermarsch Hagermarsch 53.65 7.3 P PPLA4 DE 06 00 03452 03452009 450 253 Europe/Berlin 2011-04-25
-2912481 Hagenow Hagenow Hagenow 53.43333 11.18333 P PPL DE 12 12128 30 Europe/Berlin 2012-01-18
-2912496 Hagen im Bremischen Hagen im Bremischen Hagen,Hagen im Bremischen 53.36667 8.65 P PPLA4 DE 06 00 03352 03352019 3928 10 Europe/Berlin 2011-04-25
-2912534 Hagenburg Hagenburg Hagenborch [a. 1378],Hagenburg 52.43367 9.32473 P PPL DE 06 00 03257 03257010 4569 42 Europe/Berlin 2011-03-19
-2912539 Hagenbüchach Hagenbuchach 49.53333 10.76667 P PPLA4 DE 02 095 09575 09575129 1251 389 Europe/Berlin 2011-04-25
-2912577 Hagenbach Hagenbach 49.02611 8.2375 P PPLA4 DE 08 00 07334 07334008 5495 113 Europe/Berlin 2011-07-31
-2912605 Hagen Hagen 53.94652 9.82659 P PPLA4 DE 10 00 01060 01060031 381 24 Europe/Berlin 2011-09-05
-2912618 Hagen am Teuteburger Wald Hagen am Teuteburger Wald Biekero'e,Bikirothon [a. 1088],Hagen a.T.W.,Hagen am Teutoburger Wald,Hagen, Osnabrueck,Hagen, Osnabrück,Hagen-Beckerode,Khagen,Khagen am Teutoburger Vald,Khagen-am-Tojtoburger-Val'd,Хаген,Хаген ам Теутобургер Валд,Хаген-ам-Тойтобургер-Вальд 52.2 7.98333 P PPL DE 06 14187 118 Europe/Berlin 2011-03-19
-2912621 Hagen Hagen Hagen,Khagen,hagen,hageni,Хаген,ჰაგენი,ハーゲン 51.35 7.46667 P PPL DE 07 198972 238 Europe/Berlin 2012-01-18
-2912646 Hagelstadt Hagelstadt 48.9 12.21667 P PPLA4 DE 02 093 09375 09375143 1852 361 Europe/Berlin 2011-04-25
-2912681 Hage Hage 53.61667 7.26667 P PPL DE 06 5848 3 Europe/Berlin 2006-01-17
-2912753 Hafenlohr Hafenlohr 49.86944 9.60222 P PPLA4 DE 02 096 09677 09677135 1846 154 Europe/Berlin 2011-04-25
-2912782 Hadmersleben Hadmersleben Hadmersleben 51.98333 11.3 P PPL DE 14 1953 85 Europe/Berlin 2012-01-18
-2912810 Hadenfeld Hadenfeld Hadenfeld 54.0341 9.45575 P PPLA4 DE 10 00 01061 01061033 105 19 Europe/Berlin 2011-04-25
-2912811 Hademstorf Hademstorf 52.71373 9.6314 P PPLA4 DE 06 00 03358 03358012 924 29 Europe/Berlin 2011-04-25
-2912863 Hackenheim Hackenheim 49.81667 7.9 P PPLA4 DE 08 00 07133 07133037 2037 197 Europe/Berlin 2011-04-25
-2912921 Hachenburg Hachenburg 50.65 7.83333 P PPL DE 08 5690 428 Europe/Berlin 2006-01-17
-2912932 Hachelbich Hachelbich Hachelbich 51.33333 10.96667 P PPLA4 DE 15 00 16065 16065029 630 315 Europe/Berlin 2011-04-25
-2912943 Haby Haby Haby 54.4 9.81667 P PPLA4 DE 10 00 01058 01058069 608 29 Europe/Berlin 2011-04-25
-2912948 Habscheid Habscheid 50.18333 6.26667 P PPLA4 DE 08 00 07232 07232231 569 457 Europe/Berlin 2011-04-25
-2912966 Habighorst Habighorst 52.70864 10.22741 P PPLA4 DE 06 00 03351 03351011 0 68 Europe/Berlin 2011-07-31
-2913069 Habach Habach 47.73333 11.28333 P PPLA4 DE 02 091 09190 09190126 1116 646 Europe/Berlin 2011-04-25
-2913177 Haarbach Haarbach 48.5 13.15 P PPLA4 DE 02 092 09275 09275125 2604 374 Europe/Berlin 2011-04-25
-2913192 Haar Haar Khar,Хар 48.10881 11.72653 P PPL DE 02 091 09184 09184123 17560 545 Europe/Berlin 2011-02-09
-2913195 Haan Haan Haan,Khaan,Stadt Haan,Хаан 51.2 7 P PPL DE 07 29431 162 Europe/Berlin 2012-01-18
-2913200 Haale Haale Haale 54.18333 9.55 P PPLA4 DE 10 00 01058 01058068 514 255 Europe/Berlin 2011-04-25
-2913210 Haag in Oberbayern Haag in Oberbayern Haag,Haag in Oberbayern 48.16667 12.18333 P PPL DE 02 6218 528 Europe/Berlin 2012-01-18
-2913224 Haag an der Amper Haag an der Amper Haag,Haag an der Amper 48.46667 11.83333 P PPL DE 02 2909 466 Europe/Berlin 2012-01-18
-2913229 Haag Haag 49.86997 11.56071 P PPLA4 DE 02 094 09472 09472146 0 492 Europe/Berlin 2011-04-25
-2913280 Gyhum Gyhum 53.21667 9.31667 P PPLA4 DE 06 00 03357 03357018 2454 31 Europe/Berlin 2011-04-25
-2913286 Guxhagen Guxhagen Guxhagen 51.2 9.48333 P PPLA4 DE 05 066 06634 06634008 5433 172 Europe/Berlin 2011-04-25
-2913290 Gützkow Gutzkow 53.73333 13.1 P PPL DE 12 2582 82 Europe/Berlin 2006-01-17
-2913297 Gutweiler Gutweiler 49.71667 6.73333 P PPLA4 DE 08 00 07235 07235038 679 198 Europe/Berlin 2011-04-25
-2913328 Guttau Guttau 51.25 14.56667 P PPLA4 DE 13 146 14625 14625210 1736 145 Europe/Berlin 2011-04-25
-2913335 Gutow Gutow 53.75998 12.13543 P PPLA4 DE 12 00 13053 13053032 734 21 Europe/Berlin 2011-04-25
-2913357 Guthmannshausen Guthmannshausen 51.13333 11.36667 P PPLA4 DE 15 00 16068 16068023 926 162 Europe/Berlin 2011-04-25
-2913366 Gütersloh Gutersloh Gjuterslo,Guetersloh,Gutersloh,Gütersloh,ju te si luo,Гютерсло,居特斯洛 51.9 8.38333 P PPL DE 07 96180 76 Europe/Berlin 2012-01-18
-2913385 Gutenstetten Gutenstetten 49.61667 10.63333 P PPLA4 DE 02 095 09575 09575128 1393 285 Europe/Berlin 2011-04-25
-2913394 Guteneck Guteneck 49.45 12.28333 P PPLA4 DE 02 093 09376 09376133 905 430 Europe/Berlin 2011-04-25
-2913405 Gutenberg Gutenberg 51.55 11.96667 P PPL DE 14 1246 121 Europe/Berlin 2006-01-17
-2913406 Gutenberg Gutenberg 49.88333 7.8 P PPLA4 DE 08 00 07133 07133036 1001 238 Europe/Berlin 2011-04-25
-2913414 Gütenbach Gutenbach Gutenbach,Gütenbach 48.05 8.15 P PPLA4 DE 01 083 08326 08326020 1322 952 Europe/Berlin 2011-04-25
-2913417 Gutenacker Gutenacker 50.31667 7.91667 P PPLA4 DE 08 00 07141 07141050 415 259 Europe/Berlin 2011-04-25
-2913421 Guteborn Guteborn 51.41667 13.93333 P PPLA4 DE 11 00 12066 12066120 645 139 Europe/Berlin 2011-04-25
-2913425 Gutach im Breisgau Gutach im Breisgau 48.11667 7.98333 P PPLA4 DE 01 083 08316 08316014 4429 399 Europe/Berlin 2011-04-25
-2913428 Gutach Gutach 48.25 8.21667 P PPL DE 01 2202 331 Europe/Berlin 2006-01-17
-2913433 Güstrow Gustrow 53.7972 12.17337 P PPL DE 12 31217 9 Europe/Berlin 2010-12-03
-2913437 Gustow Gustow 54.3 13.21667 P PPLA4 DE 12 00 13061 13061016 0 13 Europe/Berlin 2011-04-25
-2913445 Gusterath Gusterath 49.7 6.71667 P PPLA4 DE 08 00 07235 07235037 1909 335 Europe/Berlin 2011-04-25
-2913446 Güster Guster Guster,Güster 53.55 10.68333 P PPLA4 DE 10 00 01053 01053048 1216 17 Europe/Berlin 2011-04-25
-2913449 Güsten Gusten Gusten,Güsten 51.78333 11.6 P PPL DE 14 4218 82 Europe/Berlin 2012-01-18
-2913478 Gusenburg Gusenburg 49.63333 6.9 P PPLA4 DE 08 00 07235 07235036 1187 490 Europe/Berlin 2011-04-25
-2913537 Gunzenhausen Gunzenhausen Gunzenhausen 49.1 10.75 P PPL DE 02 16477 414 Europe/Berlin 2012-01-18
-2913555 Günzburg Gunzburg Gunzburg,Günzburg 48.45 10.26667 P PPL DE 02 19737 448 Europe/Berlin 2012-01-18
-2913558 Günzach Gunzach 47.81667 10.45 P PPLA4 DE 02 097 09777 09777138 1522 841 Europe/Berlin 2011-04-25
-2913571 Günthersdorf Gunthersdorf Gunthersdorf,Günthersdorf 51.35 12.16667 P PPL DE 14 1179 104 Europe/Berlin 2012-02-02
-2913587 Güntersleben Guntersleben 49.86972 9.905 P PPLA4 DE 02 096 09679 09679142 4472 267 Europe/Berlin 2011-04-25
-2913598 Guntersblum Guntersblum 49.7975 8.34556 P PPLA4 DE 08 00 07339 07339024 3702 94 Europe/Berlin 2011-04-25
-2913625 Günstedt Gunstedt 51.21667 11.06667 P PPLA4 DE 15 00 16068 16068022 823 136 Europe/Berlin 2011-04-25
-2913627 Günserode Gunserode Gunserode,Günserode 51.3 11.05 P PPLA4 DE 15 00 16065 16065027 190 261 Europe/Berlin 2011-04-25
-2913631 Gunningen Gunningen 48.05 8.7 P PPLA4 DE 01 083 08327 08327020 673 739 Europe/Berlin 2011-04-25
-2913657 Gundremmingen Gundremmingen 48.5 10.4 P PPLA4 DE 02 097 09774 09774136 1502 435 Europe/Berlin 2011-04-25
-2913675 Gundheim Gundheim 49.67583 8.23778 P PPLA4 DE 08 00 07331 07331037 985 141 Europe/Berlin 2011-04-25
-2913677 Gundersweiler Gundersweiler 49.6 7.78333 P PPLA4 DE 08 00 07333 07333028 568 244 Europe/Berlin 2011-04-25
-2913681 Gundersheim Gundersheim 49.69611 8.2025 P PPLA4 DE 08 00 07331 07331036 1668 148 Europe/Berlin 2011-04-25
-2913687 Gunderath Gunderath 50.25511 6.97838 P PPLA4 DE 08 00 07233 07233213 111 461 Europe/Berlin 2011-12-29
-2913692 Gundelsheim Gundelsheim 49.93708 10.9199 P PPLA4 DE 02 094 09471 09471137 3292 250 Europe/Berlin 2011-04-25
-2913693 Gundelsheim Gundelsheim Gundelsheim 49.28444 9.16194 P PPL DE 01 7551 159 Europe/Berlin 2012-01-18
-2913711 Gundelfingen Gundelfingen 48.55 10.36667 P PPL DE 02 7889 432 Europe/Berlin 2006-01-17
-2913713 Gundelfingen Gundelfingen 48.05 7.86667 P PPLA4 DE 01 083 08315 08315047 11563 226 Europe/Berlin 2011-04-25
-2913721 Gumtow Gumtow 52.98333 12.25 P PPLA4 DE 11 00 12070 12070149 4093 58 Europe/Berlin 2011-04-25
-2913743 Gumperda Gumperda Gumperda 50.80957 11.5238 P PPLA4 DE 15 00 16074 16074034 395 217 Europe/Berlin 2011-07-31
-2913761 Gummersbach Gummersbach Gummersbach 51.03333 7.55 P PPL DE 07 53131 296 Europe/Berlin 2012-01-18
-2913773 Gumbsheim Gumbsheim 49.81667 7.98333 P PPLA4 DE 08 00 07331 07331035 540 142 Europe/Berlin 2011-04-25
-2913782 Gülzow Gulzow 53.7 12.85 P PPLA4 DE 12 00 13052 13052034 481 55 Europe/Berlin 2011-04-25
-2913783 Gülzow Gulzow Gulzow,Gülzow 53.45 10.5 P PPLA4 DE 10 00 01053 01053047 1289 42 Europe/Berlin 2011-04-25
-2913788 Gültz Gultz 53.75 13.18333 P PPLA4 DE 12 00 13052 13052033 669 59 Europe/Berlin 2011-04-25
-2913797 Güllesheim Gullesheim 50.59784 7.52855 P PPLA4 DE 08 00 07132 07132043 670 312 Europe/Berlin 2011-07-31
-2913825 Guhrow Guhrow Gory,Guhrow 51.81204 14.22935 P PPLA4 DE 11 00 12071 12071164 583 59 Europe/Berlin 2011-07-15
-2913838 Güglingen Guglingen Guglingen,Güglingen 49.06972 8.99444 P PPL DE 01 6198 217 Europe/Berlin 2012-01-18
-2913847 Guggenhausen Guggenhausen 47.9 9.45 P PPLA4 DE 01 084 08436 08436040 205 622 Europe/Berlin 2011-04-25
-2913880 Gudow Gudow 53.55556 10.77021 P PPLA4 DE 10 00 01053 01053046 1668 31 Europe/Berlin 2011-08-23
-2913888 Guderhandviertel Guderhandviertel 53.54919 9.6096 P PPLA4 DE 06 00 03359 03359021 1239 2 Europe/Berlin 2011-08-26
-2913890 Gudensberg Gudensberg Gudensberg 51.18333 9.36667 P PPL DE 05 9032 226 Europe/Berlin 2012-01-18
-2913892 Gudendorf Gudendorf 54.03333 9.1 P PPLA4 DE 10 00 01051 01051039 443 11 Europe/Berlin 2011-04-25
-2913905 Gückingen Guckingen 50.4 8.01667 P PPLA4 DE 08 00 07141 07141049 1041 169 Europe/Berlin 2011-04-25
-2913906 Guckheim Guckheim 50.53333 7.95 P PPLA4 DE 08 00 07143 07143228 895 339 Europe/Berlin 2011-04-25
-2913913 Güby Guby Guby,Güby 54.48333 9.66667 P PPLA4 DE 10 00 01058 01058067 861 46 Europe/Berlin 2011-04-25
-2913922 Guben Guben Guben,Gubin,Губен 51.94987 14.71447 P PPL DE 11 21608 47 Europe/Berlin 2010-09-10
-2913942 Gstadt am Chiemsee Gstadt am Chiemsee Gstadt,Gstadt am Chiemsee 47.88333 12.41667 P PPL DE 02 1355 527 Europe/Berlin 2012-01-18
-2913972 Gschwend Gschwend 48.93333 9.74436 P PPLA4 DE 01 081 08136 08136027 5092 473 Europe/Berlin 2011-04-25
-2914064 Grünwald Grunwald Grienewald 48.03947 11.5232 P PPLA4 DE 02 091 09184 09184122 10836 595 Europe/Berlin 2011-07-31
-2914101 Grünstadt Grunstadt Gruenspadt,Gruenstadt,Grunstadt,Grünstadt 49.56917 8.16806 P PPL DE 08 13424 173 Europe/Berlin 2012-01-18
-2914105 Grünsfeld Grunsfeld Grunsfeld,Grünsfeld 49.60833 9.74389 P PPL DE 01 3799 217 Europe/Berlin 2012-01-18
-2914121 Grünow Grunow 53.35 13.31667 P PPLA4 DE 12 00 13055 13055029 347 102 Europe/Berlin 2011-04-25
-2914122 Grünow Grunow 53.31667 13.95 P PPLA4 DE 11 00 12073 12073261 0 61 Europe/Berlin 2011-04-25
-2914137 Grünkraut Grunkraut Grunkraut,Grünkraut 47.75 9.65 P PPLA4 DE 01 084 08436 08436039 3078 598 Europe/Berlin 2011-04-25
-2914177 Grünheide Grunheide 52.41667 13.81667 P PPL DE 11 7599 48 Europe/Berlin 2006-01-17
-2914186 Grünhainichen Grunhainichen Grunhainichen,Grünhainichen 50.76667 13.16667 P PPLA4 DE 13 145 14521 14521270 1383 390 Europe/Berlin 2011-04-25
-2914188 Grünhain Grunhain 50.58333 12.81667 P PPL DE 13 2602 647 Europe/Berlin 2006-01-17
-2914215 Grünewald Grunewald 51.4 14 P PPLA4 DE 11 00 12066 12066116 645 133 Europe/Berlin 2011-04-25
-2914263 Grünendeich Grunendeich 53.56952 9.61218 P PPLA4 DE 06 00 03359 03359020 2061 2 Europe/Berlin 2011-08-26
-2914279 Grünenbach Grunenbach 47.61667 10.01667 P PPLA4 DE 02 097 09776 09776113 1364 906 Europe/Berlin 2011-04-25
-2914309 Grünebach Grunebach 50.78333 7.9 P PPLA4 DE 08 00 07132 07132042 574 311 Europe/Berlin 2011-04-25
-2914316 Grundsheim Grundsheim 48.16667 9.66667 P PPLA4 DE 01 084 08425 08425052 207 557 Europe/Berlin 2011-04-25
-2914347 Grundhof Grundhof 54.78333 9.65 P PPLA4 DE 10 00 01059 01059118 981 37 Europe/Berlin 2011-04-25
-2914432 Grünberg Grunberg Grunberg,Grunberg in Hessen,Grünberg,Grünberg in Hessen 50.59403 8.95866 P PPL DE 05 065 14233 269 Europe/Berlin 2010-11-15
-2914457 Grünbach Grunbach Grunbach,Grünbach 50.45 12.36667 P PPL DE 13 1927 691 Europe/Berlin 2012-02-02
-2914543 Grumbach Grumbach 49.65 7.56667 P PPLA4 DE 08 00 07336 07336033 539 236 Europe/Berlin 2011-04-25
-2914548 Gruibingen Gruibingen 48.59483 9.64389 P PPLA4 DE 01 081 08117 08117028 2266 566 Europe/Berlin 2011-04-25
-2914642 Grube Grube Grube 54.23333 11.03333 P PPLA4 DE 10 00 01055 01055018 1007 255 Europe/Berlin 2011-04-25
-2914660 Grub Grub 50.55 10.63333 P PPLA4 DE 15 00 16069 16069017 214 443 Europe/Berlin 2011-07-31
-2914661 Grub Grub 50.1 11.93333 P PPL DE 02 3129 608 Europe/Berlin 2006-01-17
-2914741 Groven Groven Groven 54.3 8.98333 P PPLA4 DE 10 00 01051 01051038 121 255 Europe/Berlin 2011-04-25
-2914746 Grove Grove 53.53333 10.48333 P PPLA4 DE 10 00 01053 01053045 244 42 Europe/Berlin 2011-04-25
-2914769 Grothusenkoog Grothusenkoog Grothusenkoog 54.30128 8.75891 P PPLA4 DE 10 00 01054 01054040 29 1 Europe/Berlin 2011-08-23
-2914801 Groß-Zimmern Gross-Zimmern 49.87583 8.83444 P PPLA4 DE 05 064 06432 06432011 13870 150 Europe/Berlin 2011-04-25
-2914816 Groß Wüstenfelde Gross Wustenfelde 53.88333 12.55 P PPLA4 DE 12 00 13053 13053029 669 41 Europe/Berlin 2011-04-25
-2914828 Großwoltersdorf Grosswoltersdorf 53.06667 13.1 P PPLA4 DE 11 00 12065 12065117 1003 61 Europe/Berlin 2011-04-25
-2914833 Groß Wokern Gross Wokern 53.75135 12.49249 P PPLA4 DE 12 00 13053 13053028 1163 47 Europe/Berlin 2011-04-25
-2914836 Groß Wittensee Gross Wittensee Gross Wittensee,Groß Wittensee 54.4 9.76667 P PPLA4 DE 10 00 01058 01058066 1007 8 Europe/Berlin 2011-04-25
-2914872 Großweitzschen Grossweitzschen 51.16667 13.05 P PPLA4 DE 13 145 14522 14522220 3405 241 Europe/Berlin 2011-04-25
-2914876 Großweil Grossweil 47.68333 11.3 P PPLA4 DE 02 091 09180 09180119 1409 616 Europe/Berlin 2011-04-25
-2914890 Großwallstadt Grosswallstadt 49.88333 9.16667 P PPLA4 DE 02 096 09676 09676126 4081 117 Europe/Berlin 2011-04-25
-2914902 Groß Vollstedt Gross Vollstedt Gross Vollstedt,Groß Vollstedt 54.23333 9.86667 P PPLA4 DE 10 00 01058 01058065 990 22 Europe/Berlin 2011-04-25
-2914923 Großvargula Grossvargula 51.11667 10.78333 P PPLA4 DE 15 00 16064 16064019 803 164 Europe/Berlin 2011-04-25
-2914929 Groß-Umstadt Gross-Umstadt Gross-Umstadt,Groß-Umstadt 49.86778 8.93389 P PPL DE 05 21758 176 Europe/Berlin 2012-01-18
-2914932 Groß Twülpstedt Gross Twulpstedt 52.37361 10.91929 P PPLA4 DE 06 00 03154 03154009 2729 101 Europe/Berlin 2011-07-29
-2914935 Trebel Trebel Gross Trebel,Groß Trebel,Trebel 53 11.31667 P PPLA4 DE 06 00 03354 03354023 974 20 Europe/Berlin 2011-04-25
-2914950 Großthiemig Grossthiemig 51.38333 13.66667 P PPLA4 DE 11 00 12062 12062208 1282 100 Europe/Berlin 2011-04-25
-2914974 Groß Teetzleben Gross Teetzleben Gross Teetzleben,Gross Tetzleben,Groß Teetzleben,Groß Tetzleben 53.65 13.23333 P PPLA4 DE 12 00 13052 13052032 815 19 Europe/Berlin 2011-04-25
-2914999 Groß Stieten Gross Stieten 53.81667 11.45 P PPLA4 DE 12 00 13058 13058042 628 49 Europe/Berlin 2011-04-25
-2915004 Großsteinhausen Grosssteinhausen 49.18333 7.45 P PPLA4 DE 08 00 07340 07340210 644 280 Europe/Berlin 2011-04-25
-2915028 Großsolt Grosssolt Grosssolt,Großsolt 54.7 9.51667 P PPLA4 DE 10 00 01059 01059116 1870 41 Europe/Berlin 2011-04-25
-2915032 Groß Siemz Gross Siemz 53.81667 10.93333 P PPLA4 DE 12 00 13058 13058041 333 17 Europe/Berlin 2011-04-25
-2915035 Großseifen Grossseifen 50.63333 7.96667 P PPLA4 DE 08 00 07143 07143227 577 455 Europe/Berlin 2011-04-25
-2915045 Groß Schwiesow Gross Schwiesow 53.84605 12.0956 P PPLA4 DE 12 00 13053 13053027 360 35 Europe/Berlin 2011-04-25
-2915046 Großschweidnitz Grossschweidnitz 51.06667 14.63333 P PPLA4 DE 13 146 14626 14626150 1377 306 Europe/Berlin 2011-04-25
-2915055 Großschwabhausen Grossschwabhausen 50.93333 11.48333 P PPLA4 DE 15 00 16071 16071025 875 349 Europe/Berlin 2011-04-25
-2915067 Großschönau Grossschonau Grossschoenau,Grossschonau,Grossschönau,Großschönau 50.9 14.68333 P PPLA4 DE 13 146 14626 14626140 6571 322 Europe/Berlin 2011-04-25
-2915076 Großschirma Grossschirma Grossschirma,Großschirma 50.96667 13.28333 P PPL DE 13 6179 374 Europe/Berlin 2012-01-18
-2915081 Groß Schenkenberg Gross Schenkenberg Gross Schenkenberg,Groß Schenkenberg 53.8 10.56667 P PPLA4 DE 10 00 01053 01053044 568 7 Europe/Berlin 2011-04-25
-2915094 Groß Sarau Gross Sarau Gross Sarau,Groß Sarau 53.76667 10.73333 P PPLA4 DE 10 00 01053 01053043 919 14 Europe/Berlin 2011-04-25
-2915095 Groß Santersleben Gross Santersleben Gross Santersleben,Groß Santersleben 52.18333 11.45 P PPL DE 14 1126 121 Europe/Berlin 2012-01-18
-2915107 Großrudestedt Grossrudestedt 51.08333 11.1 P PPLA4 DE 15 00 16068 16068021 2089 162 Europe/Berlin 2011-04-25
-2915111 Großrückerswalde Grossruckerswalde Grossruckerswalde,Großrückerswalde,Luckenwalden 50.63333 13.11667 P PPLA4 DE 13 145 14521 14521250 4005 615 Europe/Berlin 2011-04-25
-2915116 Großrosseln Grossrosseln 49.20296 6.84148 P PPLA4 DE 09 00 10041 10041512 9215 218 Europe/Berlin 2011-09-25
-2915118 Groß Rosenburg Gross Rosenburg 51.91696 11.89184 P PPL DE 14 1811 53 Europe/Berlin 2009-05-04
-2915121 Groß Rönnau Gross Ronnau Gross Ronnau,Groß Rönnau 53.96667 10.31667 P PPLA4 DE 10 00 01060 01060030 548 24 Europe/Berlin 2011-04-25
-2915124 Großröhrsdorf Grossrohrsdorf Grossrohrsdorf,Großröhrsdorf 51.15 14.01667 P PPL DE 13 7306 278 Europe/Berlin 2012-01-18
-2915128 Groß-Rohrheim Gross-Rohrheim 49.72111 8.48278 P PPLA4 DE 05 064 06431 06431010 3822 91 Europe/Berlin 2011-04-25
-2915129 Groß Roge Gross Roge 53.78333 12.5 P PPLA4 DE 12 00 13053 13053026 713 32 Europe/Berlin 2011-04-25
-2915131 Groß Rodensleben Gross Rodensleben Gross Rodensleben,Groß Rodensleben 52.11667 11.38333 P PPL DE 14 1089 127 Europe/Berlin 2012-01-18
-2915134 Großröda Grossroda Grossroda,Großröda 51 12.31667 P PPLA4 DE 15 00 16077 16077013 270 228 Europe/Berlin 2011-04-25
-2915137 Großrinderfeld Grossrinderfeld 49.65 9.75 P PPLA4 DE 01 081 08128 08128045 4179 274 Europe/Berlin 2011-04-25
-2915143 Groß Rheide Gross Rheide Gross Rheide,Groß Rheide 54.45 9.43333 P PPLA4 DE 10 00 01059 01059035 1056 6 Europe/Berlin 2011-04-25
-2915157 Großräschen Grossraschen Grosseraeschen,Grossraschen,Großeraeschen,Großräschen 51.58333 14 P PPL DE 11 11523 119 Europe/Berlin 2012-01-18
-2915164 Groß Quenstedt Gross Quenstedt Gross Quenstedt,Groß Quenstedt 51.93333 11.11667 P PPLA4 DE 14 00 15085 15085125 1064 101 Europe/Berlin 2011-04-25
-2915166 Großpürschütz Grosspurschutz Grosspurschutz,Großpürschütz 50.81667 11.6 P PPLA4 DE 15 00 16074 16074033 415 217 Europe/Berlin 2011-04-25
-2915172 Großpostwitz Grosspostwitz Grosspostwitz,Großpostwitz 51.11667 14.45 P PPL DE 13 3116 253 Europe/Berlin 2012-01-18
-2915173 Großpösna Grossposna Grosspoessnitz,Grossposna,Großpoeßnitz,Großpösna 51.26667 12.5 P PPLA4 DE 13 147 14729 14729190 5608 150 Europe/Berlin 2011-04-25
-2915176 Groß Polzin Gross Polzin 53.89412 13.59318 P PPLA4 DE 12 00 13059 13059027 511 21 Europe/Berlin 2011-04-25
-2915178 Groß Plasten Gross Plasten 53.55 12.85 P PPLA4 DE 12 00 13056 13056019 804 59 Europe/Berlin 2011-04-25
-2915191 Groß Pankow Gross Pankow Gross Pankow,Groß Pankow 53.11667 12.05 P PPL DE 11 4661 62 Europe/Berlin 2012-02-02
-2915192 Groß Pampau Gross Pampau 53.52225 10.56198 P PPLA4 DE 10 00 01053 01053042 127 30 Europe/Berlin 2011-07-31
-2915196 Großostheim Grossostheim Grossostheim,Großostheim 49.92111 9.08139 P PPL DE 02 16346 131 Europe/Berlin 2012-01-18
-2915201 Großörner Grossorner 51.61667 11.5 P PPL DE 14 2092 161 Europe/Berlin 2006-01-17
-2915209 Großolbersdorf Grossolbersdorf Grossolbersdorf,Großolbersdorf 50.7 13.08333 P PPLA4 DE 13 145 14521 14521240 3234 504 Europe/Berlin 2011-04-25
-2915212 Groß Oesingen Gross Oesingen Gross Oesingen,Gross Osingen,Groß Oesingen,Groß Ösingen 52.65 10.48333 P PPLA4 DE 06 00 03151 03151010 2017 75 Europe/Berlin 2011-04-25
-2915213 Großobringen Grossobringen 51.03333 11.33333 P PPLA4 DE 15 00 16071 16071023 860 289 Europe/Berlin 2011-04-25
-2915219 Groß Nordende Gross Nordende Gross Nordende,Groß Nordende 53.7 9.65 P PPLA4 DE 10 00 01056 01056016 685 5 Europe/Berlin 2011-04-25
-2915223 Groß Niendorf Gross Niendorf 53.85 10.25 P PPLA4 DE 10 00 01060 01060029 621 28 Europe/Berlin 2011-04-25
-2915224 Groß Niendorf Gross Niendorf 53.58333 11.85 P PPLA4 DE 12 00 13060 13060032 246 63 Europe/Berlin 2011-04-25
-2915226 Großniedesheim Grossniedesheim 49.57528 8.31222 P PPLA4 DE 08 00 07338 07338009 1392 99 Europe/Berlin 2011-04-25
-2915231 Großneuhausen Grossneuhausen 51.15 11.28333 P PPLA4 DE 15 00 16068 16068019 814 145 Europe/Berlin 2011-07-31
-2915236 Groß Nemerow Gross Nemerow 53.46667 13.23333 P PPLA4 DE 12 00 13055 13055028 1355 71 Europe/Berlin 2011-04-25
-2915238 Großnaundorf Grossnaundorf 51.2 13.93333 P PPLA4 DE 13 146 14625 14625180 1103 221 Europe/Berlin 2011-04-25
-2915241 Groß Munzel Gross Munzel Munuslo [a. 965] 52.36554 9.47828 P PPL DE 06 00 03241 03241002 1162 55 59 Europe/Berlin 2011-02-16
-2915252 Großmonra Grossmonra 51.21667 11.3 P PPLA4 DE 15 00 16068 16068018 1037 205 Europe/Berlin 2011-04-25
-2915254 Groß Molzahn Gross Molzahn 53.73333 10.86667 P PPLA4 DE 12 00 13058 13058038 343 45 Europe/Berlin 2011-04-25
-2915255 Großmölsen Grossmolsen 51.03333 11.13333 P PPLA4 DE 15 00 16068 16068017 281 191 Europe/Berlin 2011-04-25
-2915256 Groß Mohrdorf Gross Mohrdorf 54.388 12.9485 P PPLA4 DE 12 00 13057 13057038 825 14 Europe/Berlin 2011-04-25
-2915277 Großmehring Grossmehring Grossmehring,Großmehring,Mehring 48.76667 11.53333 P PPLA4 DE DE 02 091 09176 09176129 0 378 Europe/Berlin 2011-04-25
-2915283 Groß Meckelsen Gross Meckelsen 53.28333 9.45 P PPLA4 DE 06 00 03357 03357017 503 35 Europe/Berlin 2011-04-25
-2915294 Großmaischeid Grossmaischeid 50.5 7.63333 P PPLA4 DE 08 00 07138 07138023 2503 312 Europe/Berlin 2011-04-25
-2915306 Groß Luckow Gross Luckow 53.53333 13.83333 P PPLA4 DE 12 00 13062 13062019 238 43 Europe/Berlin 2011-04-25
-2915317 Großlöbichau Grosslobichau Grosslobichau,Großlöbichau 50.93333 11.68333 P PPLA4 DE 15 00 16074 16074032 824 276 Europe/Berlin 2011-04-25
-2915318 Großlittgen Grosslittgen 50.02787 6.79865 P PPLA4 DE 08 00 07231 07231046 1033 310 Europe/Berlin 2011-04-25
-2915321 Groß Lindow Gross Lindow Gross Lindow,Groß Lindow,Lindow 52.23333 14.53333 P PPLA4 DE 11 00 12067 12067180 1841 40 42 Europe/Berlin 2011-04-25
-2915343 Großlehna Grosslehna 51.3 12.16667 P PPL DE 13 2487 114 Europe/Berlin 2006-01-17
-2915349 Großlangheim Grosslangheim Grosslangheim,Großlangheim 49.75 10.23333 P PPL DE 02 1536 220 Europe/Berlin 2012-01-18
-2915353 Großlangenfeld Grosslangenfeld 50.21667 6.25 P PPLA4 DE 08 00 07232 07232230 150 499 Europe/Berlin 2011-04-25
-2915357 Groß Laasch Gross Laasch 53.35 11.55 P PPLA4 DE 12 00 13054 13054042 1096 37 Europe/Berlin 2011-04-25
-2915362 Groß Kummerfeld Gross Kummerfeld Gross Kummerfeld,Groß Kummerfeld 54.05 10.08333 P PPLA4 DE 10 00 01060 01060028 1958 28 Europe/Berlin 2011-04-25
-2915367 Großkugel Grosskugel 51.41667 12.15 P PPL DE 14 2272 124 Europe/Berlin 2006-01-17
-2915372 Großkrotzenburg Grosskrotzenburg 50.08333 8.98333 P PPLA4 DE 05 064 06435 06435011 7196 109 Europe/Berlin 2011-04-25
-2915375 Groß Kreutz Gross Kreutz Gross Kreutz,Gross Kreuz,Groß Kreutz,Groß Kreuz 52.4 12.78333 P PPL DE 11 8453 37 Europe/Berlin 2012-01-18
-2915382 Groß Krams Gross Krams 53.33333 11.26667 P PPLA4 DE 12 00 13054 13054041 212 31 Europe/Berlin 2011-04-25
-2915388 Groß Köris Gross Koris 52.16667 13.66667 P PPLA4 DE 11 00 12061 12061192 2205 33 Europe/Berlin 2011-04-25
-2915391 Groß Kordshagen Gross Kordshagen 54.33179 12.84302 P PPLA4 DE 12 00 13057 13057037 420 4 Europe/Berlin 2011-04-25
-2915392 Großkorbetha Grosskorbetha Gross Corbetha,Grosskorbetha,Groß Corbetha,Großkorbetha 51.25 12.05 P PPL DE 14 2083 109 Europe/Berlin 2012-01-18
-2915410 Großkmehlen Grosskmehlen 51.37901 13.72501 P PPLA4 DE 11 00 12066 12066104 1298 110 Europe/Berlin 2011-04-25
-2915427 Groß Kiesow Gross Kiesow Kiesow 54.01261 13.47851 P PPLA4 DE 12 00 13059 13059025 1585 32 Europe/Berlin 2011-04-25
-2915432 Groß Kelle Gross Kelle 53.40493 12.54536 P PPLA4 DE 12 00 13056 13056018 142 76 Europe/Berlin 2011-04-25
-2915434 Großkayna Grosskayna 51.28333 11.93333 P PPL DE 14 1091 92 Europe/Berlin 2006-01-17
-2915438 Großkarolinenfeld Grosskarolinenfeld 47.89102 12.08101 P PPLA4 DE 02 091 09187 09187137 6865 468 Europe/Berlin 2011-04-25
-2915439 Großkarlbach Grosskarlbach 49.53833 8.22472 P PPLA4 DE 08 00 07332 07332023 1157 122 Europe/Berlin 2011-04-25
-2915443 Großkampenberg Grosskampenberg 50.15 6.2 P PPLA4 DE 08 00 07232 07232229 161 512 Europe/Berlin 2011-04-25
-2915459 Groß Ippener Gross Ippener 52.96667 8.61667 P PPLA4 DE 06 00 03458 03458006 1143 18 Europe/Berlin 2011-04-25
-2915499 Großholbach Grossholbach 50.45 7.88333 P PPLA4 DE 08 00 07143 07143024 1008 313 Europe/Berlin 2011-04-25
-2915511 Großheubach Grossheubach Grossheubach,Großheubach 49.72722 9.22528 P PPL DE 02 5126 132 Europe/Berlin 2012-02-02
-2915520 Großheringen Grossheringen 51.1 11.66667 P PPLA4 DE 15 00 16071 16071022 685 151 Europe/Berlin 2011-04-25
-2915523 Großhennersdorf Grosshennersdorf 50.98333 14.78333 P PPLA4 DE 13 146 14626 14626130 1539 317 Europe/Berlin 2011-07-31
-2915529 Großheirath Grossheirath 50.18333 10.95 P PPLA4 DE 02 094 09473 09473132 2640 268 Europe/Berlin 2011-04-25
-2915550 Großhartmannsdorf Grosshartmannsdorf 50.8 13.33333 P PPLA4 DE 13 145 14522 14522200 2921 506 Europe/Berlin 2011-04-25
-2915552 Großharthau Grossharthau 51.11667 14.1 P PPLA4 DE 13 146 14625 14625170 3415 289 Europe/Berlin 2011-04-25
-2915554 Großharrie Grossharrie Grossharrie,Großharrie 54.11667 10.05 P PPLA4 DE 10 00 01057 01057024 565 30 Europe/Berlin 2011-04-25
-2915556 Großhansdorf Grosshansdorf Groothansdoerp,Groothansdörp,Grosshansdorf,Großhansdorf 53.66667 10.28333 P PPLA4 DE 10 00 01062 01062023 9009 47 Europe/Berlin 2011-07-31
-2915563 Großhabersdorf Grosshabersdorf Grosshabersdorf,Großhabersdorf 49.4 10.78333 P PPLA4 DE 02 095 09573 09573115 4274 330 Europe/Berlin 2011-07-31
-2915574 Groß Grönau Gross Gronau Gross Gronau,Groß Grönau 53.8 10.75 P PPLA4 DE 10 00 01053 01053041 3502 8 Europe/Berlin 2011-04-25
-2915592 Großgoltern Grossgoltern Golturne [a. 1181],Groten-Goltern 52.33261 9.50111 P PPL DE 06 00 03241 03241002 1317 57 60 Europe/Berlin 2011-02-16
-2915595 Groß Godems Gross Godems 53.36346 11.79726 P PPLA4 DE 12 00 13060 13060030 385 69 Europe/Berlin 2011-04-25
-2915604 Groß Gievitz Gross Gievitz 53.58333 12.78333 P PPLA4 DE 12 00 13056 13056017 557 37 Europe/Berlin 2011-04-25
-2915613 Groß-Gerau Gross-Gerau 49.92389 8.49361 P PPL DE 05 23641 90 Europe/Berlin 2006-01-17
-2915641 Großfischlingen Grossfischlingen 49.26889 8.17639 P PPLA4 DE 08 00 07337 07337035 691 134 Europe/Berlin 2011-04-25
-2915653 Großfahner Grossfahner Grossfahner,Großfahner 51.06667 10.83333 P PPLA4 DE 15 00 16067 16067033 908 175 Europe/Berlin 2011-04-25
-2915673 Großeutersdorf Grosseutersdorf Grosseutersdorf,Großeutersdorf 50.78333 11.56667 P PPLA4 DE 15 00 16074 16074031 297 165 Europe/Berlin 2011-04-25
-2916224 Großerlach Grosserlach 49.05368 9.51356 P PPLA4 DE 01 081 08119 08119024 2636 522 Europe/Berlin 2011-04-25
-2916567 Großenwörden Grossenworden 53.68333 9.26667 P PPLA4 DE 06 00 03359 03359019 485 252 Europe/Berlin 2011-04-25
-2916570 Großenwiehe Grossenwiehe Grossenwiehe,Großenwiehe 54.7 9.25 P PPLA4 DE 10 00 01059 01059115 2829 17 Europe/Berlin 2011-04-25
-2916581 Großenstein Grossenstein Grossenstein,Großenstein 50.9 12.2 P PPLA4 DE 15 00 16076 16076023 1441 273 Europe/Berlin 2011-04-25
-2916584 Großenseebach Grossenseebach Grosenseebach 49.63251 10.87483 P PPLA4 DE 02 095 09572 09572127 2378 294 Europe/Berlin 2011-04-25
-2916585 Großensee Grossensee 53.61667 10.35 P PPLA4 DE 10 00 01062 01062022 1684 54 Europe/Berlin 2011-04-25
-2916586 Großensee Grossensee 50.93333 9.96667 P PPLA4 DE 15 00 16063 16063036 397 233 Europe/Berlin 2011-04-25
-2916596 Großenrade Grossenrade Grossenrade,Großenrade 54.03333 9.23333 P PPLA4 DE 10 00 01051 01051037 551 15 Europe/Berlin 2011-04-25
-2916606 Großenlüder Grossenluder 50.5925 9.54231 P PPLA4 DE 05 066 06631 06631011 8768 257 Europe/Berlin 2011-07-31
-2916611 Großenkneten Grossenkneten Grossenkneten,Großenkneten 52.95 8.26667 P PPLA4 DE 06 00 03458 03458007 13698 38 Europe/Berlin 2011-07-31
-2916630 Großenhain Grossenhain Grossenhain,Großenhain 51.28333 13.55 P PPL DE 13 16573 143 Europe/Berlin 2012-01-18
-2916636 Großengottern Grossengottern 51.15 10.58333 P PPLA4 DE 15 00 16064 16064018 2344 177 Europe/Berlin 2011-04-25
-2916643 Großenehrich Grossenehrich Grossenehrich,Großenehrich 51.25 10.83333 P PPL DE 15 2985 239 Europe/Berlin 2012-01-18
-2916655 Grossenbrode Grossenbrode Grossenbrode,Großenbrode 54.38333 11.08333 P PPL DE 10 2190 253 Europe/Berlin 2010-12-03
-2916676 Großenaspe Grossenaspe 53.98333 9.96667 P PPLA4 DE 10 00 01060 01060027 2849 37 Europe/Berlin 2011-04-25
-2916696 Grosselfingen Grosselfingen 48.33229 8.88704 P PPLA4 DE 01 084 08417 08417023 2158 520 Europe/Berlin 2011-04-25
-2916731 Großeibstadt Grosseibstadt 50.3 10.41667 P PPLA4 DE 02 096 09673 09673127 1199 266 Europe/Berlin 2011-04-25
-2916839 Großdubrau Grossdubrau Grossdubrau,Großdubrau 51.25 14.46667 P PPLA4 DE 13 146 14625 14625160 4793 196 Europe/Berlin 2011-04-25
-2916840 Groß Düben Gross Duben Dzewin,Džěwin,Gross Duben,Groß Düben 51.56667 14.56667 P PPLA4 DE 13 146 14626 14626120 1310 133 Europe/Berlin 2011-04-25
-2916846 Groß Dratow Gross Dratow 53.51667 12.83333 P PPLA4 DE 12 00 13056 13056015 398 59 Europe/Berlin 2011-04-25
-2916861 Groß Disnack Gross Disnack Gross Disnack,Groß Disnack 53.75 10.68333 P PPLA4 DE 10 00 01053 01053040 93 33 Europe/Berlin 2011-04-25
-2916864 Großderschau Grossderschau 52.79057 12.3682 P PPLA4 DE 11 00 12063 12063112 535 26 Europe/Berlin 2011-07-31
-2916896 Großbundenbach Grossbundenbach 49.3 7.41667 P PPLA4 DE 08 00 07340 07340209 399 322 Europe/Berlin 2011-04-25
-2916903 Groß Buchwald Gross Buchwald Gross Buchwald,Groß Buchwald 54.16667 10.08333 P PPLA4 DE 10 00 01058 01058064 361 24 Europe/Berlin 2011-04-25
-2916923 Großbrembach Grossbrembach 51.11667 11.31667 P PPLA4 DE 15 00 16068 16068016 831 160 Europe/Berlin 2011-04-25
-2916926 Großbreitenbach Grossbreitenbach 50.58333 11.03333 P PPL DE 15 2965 540 Europe/Berlin 2006-01-17
-2916936 Großbottwar Grossbottwar Grossbottwar,Großbottwar 49.0025 9.2925 P PPL DE 01 8294 222 Europe/Berlin 2012-01-18
-2916937 Großbothen Grossbothen 51.18784 12.75101 P PPLA4 DE 13 147 14729 14729180 3602 143 Europe/Berlin 2011-06-16
-2916942 Groß Börnecke Gross Bornecke 51.88333 11.48333 P PPL DE 14 1763 78 Europe/Berlin 2006-01-17
-2916949 Großbodungen Grossbodungen Grossbodungen (Am Ohmberg),Großbodungen (Am Ohmberg) 51.47572 10.48104 P PPLA4 DE 15 00 16061 1514 270 272 Europe/Berlin 2011-04-22
-2916950 Groß Boden Gross Boden Gross Boden,Groß Boden 53.75 10.45 P PPLA4 DE 10 00 01053 01053039 211 38 Europe/Berlin 2011-04-25
-2916954 Großbockedra Grossbockedra Grossbockedra,Großbockedra 50.85 11.65 P PPLA4 DE 15 00 16074 16074029 198 243 Europe/Berlin 2011-04-25
-2916966 Groß-Bieberau Gross-Bieberau Gross-Bieberau,Groß-Bieberau 49.80056 8.83 P PPL DE 05 4593 160 Europe/Berlin 2012-01-18
-2916972 Großbettlingen Grossbettlingen 48.59052 9.30782 P PPLA4 DE 01 081 08116 08116022 4047 344 Europe/Berlin 2011-04-25
-2916974 Groß Berßen Gross Berssen Gross Berssen,Gross Bersssen,Groß Berßen,Groß Berßsen 52.76667 7.5 P PPLA4 DE 06 00 03454 03454016 652 40 Europe/Berlin 2011-04-25
-2916996 Großbeeren Grossbeeren Grossbeeren,Großbeeren 52.36667 13.33333 P PPLA4 DE 11 00 12072 12072120 6835 42 Europe/Berlin 2011-04-25
-2917002 Großbartloff Grossbartloff Grossbartloff,Großbartloff 51.25 10.21667 P PPLA4 DE 15 00 16061 16061041 1021 281 Europe/Berlin 2011-04-25
-2917011 Großbarkau Grossbarkau Grossbarkau,Großbarkau 54.23333 10.16667 P PPLA4 DE 10 00 01057 01057023 198 41 Europe/Berlin 2011-04-25
-2917013 Großbardorf Grossbardorf 50.26667 10.36667 P PPLA4 DE 02 096 09673 09673126 1006 289 Europe/Berlin 2011-04-25
-2917014 Großbardau Grossbardau 51.20419 12.69848 P PPL DE 13 1787 161 Europe/Berlin 2011-06-16
-2917046 Groß Ammensleben Gross Ammensleben 52.23333 11.51667 P PPL DE 14 1400 67 Europe/Berlin 2006-01-17
-2917053 Großalmerode Grossalmerode Grossalmerode,Großalmerode 51.26667 9.78333 P PPL DE 05 7393 512 Europe/Berlin 2012-01-18
-2917060 Großaitingen Grossaitingen 48.23333 10.78333 P PPLA4 DE 02 097 09772 09772151 4747 528 Europe/Berlin 2011-04-25
-2917098 Grönwohld Gronwohld Gronwohld,Grönwohld 53.65 10.4 P PPLA4 DE 10 00 01062 01062021 1311 47 Europe/Berlin 2011-04-25
-2917107 Gröningen Groeningen Groinich,Groningen,Gröningen 51.93744 11.21601 P PPLA4 DE 14 00 15083 15083245 4166 92 Europe/Berlin 2011-03-14
-2917138 Gronau Gronau Gronau 52.2 7.03333 P PPL DE 07 46161 40 Europe/Berlin 2012-01-18
-2917139 Gronau Gronau 52.08333 9.78333 P PPL DE 06 5444 81 Europe/Berlin 2006-01-17
-2917150 Grömitz Gromitz Gromitz,Grömitz 54.15 10.96667 P PPLA4 DE 10 00 01055 01055016 7847 2 Europe/Berlin 2011-07-31
-2917154 Grömbach Grombach 48.58333 8.55 P PPLA4 DE 01 082 08237 08237032 0 617 Europe/Berlin 2011-04-25
-2917157 Grolsheim Grolsheim 49.9 7.91667 P PPLA4 DE 08 00 07339 07339022 1080 94 Europe/Berlin 2011-04-25
-2917169 Groitzsch Groitzsch 51.21667 12.61667 P PPL DE 13 8598 148 Europe/Berlin 2006-01-17
-2917190 Grödersby Grodersby Grodersby,Grödersby 54.63333 9.91667 P PPLA4 DE 10 00 01059 01059034 257 6 Europe/Berlin 2011-04-25
-2917194 Gröden Groden Groden,Gröden 51.4 13.56667 P PPLA4 DE 11 00 12062 12062196 1636 122 Europe/Berlin 2011-04-25
-2917198 Gröde Grode Grode,Gröde 54.63333 8.71667 P PPLA4 DE 10 00 01054 01054039 15 254 Europe/Berlin 2011-04-25
-2917206 Gröbzig Grobzig Grobzig,Gröbzig 51.68333 11.86667 P PPL DE 14 2747 74 Europe/Berlin 2012-01-18
-2917216 Gröbitz Grobitz 51.13333 11.93333 P PPLA4 DE 14 00 15084 15084190 527 215 Europe/Berlin 2011-04-25
-2917217 Gröbers Grobers 51.43333 12.11667 P PPL DE 14 2460 108 Europe/Berlin 2006-01-17
-2917221 Gröbenzell Grobenzell 48.2 11.36667 P PPLA4 DE 02 091 09179 09179126 19110 507 Europe/Berlin 2011-07-31
-2917226 Grobengereuth Grobengereuth 50.66916 11.66937 P PPLA4 DE 15 00 16075 16075039 248 471 Europe/Berlin 2011-04-25
-2917230 Gröben Groben 51.11667 12.03333 P PPLA4 DE 14 00 15084 15084185 733 195 Europe/Berlin 2011-04-25
-2917265 Grischow Grischow 53.7 13.35 P PPLA4 DE 12 00 13052 13052030 0 22 Europe/Berlin 2011-04-25
-2917287 Grinau Grinau Grinau 53.78333 10.55 P PPLA4 DE 10 00 01053 01053038 294 18 Europe/Berlin 2011-04-25
-2917309 Grimmen Grimmen 54.11215 13.04051 P PPL DE 12 10671 8 Europe/Berlin 2009-01-25
-2917312 Grimmelshausen Grimmelshausen 50.48333 10.63333 P PPLA4 DE 15 00 16069 16069016 208 339 Europe/Berlin 2011-04-25
-2917325 Grimma Grimma Grimma 51.23333 12.71667 P PPL DE 13 17991 150 Europe/Berlin 2012-01-18
-2917337 Grimburg Grimburg 49.61667 6.88333 P PPLA4 DE 08 00 07235 07235035 522 436 Europe/Berlin 2011-04-25
-2917380 Griesstätt Griesstatt 47.99403 12.17727 P PPLA4 DE 02 091 09187 09187134 2485 492 Europe/Berlin 2011-04-25
-2917404 Griesingen Griesingen 48.26667 9.78333 P PPLA4 DE 01 084 08425 08425050 999 505 Europe/Berlin 2011-04-25
-2917412 Griesheim Griesheim Griesheim 49.86278 8.57528 P PPL DE 05 25287 103 Europe/Berlin 2012-01-18
-2917431 Griesen Griesen 51.83333 12.41667 P PPLA4 DE 14 00 15091 15091120 351 62 Europe/Berlin 2011-04-25
-2917461 Bad Griesbach Bad Griesbach Bad Griesbach im Rottal,Griesbach im Rott 48.45181 13.19329 P PPL DE DE 02 8431 454 Europe/Berlin 2008-10-21
-2917466 Gries Gries 49.41667 7.4 P PPLA4 DE 08 00 07336 07336032 1044 259 Europe/Berlin 2011-04-25
-2917484 Griefstedt Griefstedt 51.23333 11.13333 P PPLA4 DE 15 00 16068 16068015 326 132 Europe/Berlin 2011-04-25
-2917485 Griefstedt Griefstedt 51.23333 11.11667 P PPLA4 DE 15 00 16068 16068015 0 130 Europe/Berlin 2011-07-31
-2917502 Grieben Grieben 53.83333 11.05 P PPLA4 DE 12 00 13058 13058035 160 20 Europe/Berlin 2011-04-25
-2917505 Griebelschied Griebelschied 49.8 7.4 P PPLA4 DE 08 00 07134 07134032 201 380 Europe/Berlin 2011-04-25
-2917509 Gribow Gribow 53.94841 13.48932 P PPLA4 DE 12 00 13059 13059023 267 22 Europe/Berlin 2011-04-25
-2917510 Gribbohm Gribbohm Gribbohm 54.02821 9.34739 P PPLA4 DE 10 00 01061 01061031 503 6 Europe/Berlin 2011-04-25
-2917520 Grevesmühlen Grevesmuhlen Grevesmuehlen,Grevesmuhlen,Grevesmühlen 53.86667 11.18333 P PPL DE 12 10975 33 Europe/Berlin 2012-01-18
-2917530 Grevenkrug Grevenkrug Grevenkrug 54.21667 10.01667 P PPLA4 DE 10 00 01058 01058063 305 39 Europe/Berlin 2011-04-25
-2917532 Grevenkop Grevenkop Grevenkop,Grevenkopp 53.85 9.53333 P PPLA4 DE 10 00 01061 01061030 355 253 Europe/Berlin 2011-04-25
-2917540 Grevenbroich Grevenbroich Grevenbroich 51.09102 6.5827 P PPL DE 07 051 05162 64779 52 Europe/Berlin 2010-11-15
-2917542 Greven Greven 53.48333 10.8 P PPLA4 DE 12 00 13054 13054040 0 22 Europe/Berlin 2011-04-25
-2917544 Greven Greven Grevaon,Greven,Grēvaon,Гревен 52.09364 7.59396 P PPL DE 07 055 35080 45 Europe/Berlin 2011-11-06
-2917578 Greußenheim Greussenheim 49.81667 9.76667 P PPLA4 DE 02 096 09679 09679141 1628 268 Europe/Berlin 2011-04-25
-2917579 Greußen Greussen 51.21667 10.95 P PPL DE 15 3962 177 Europe/Berlin 2006-01-17
-2917586 Grettstadt Grettstadt 49.98333 10.31667 P PPLA4 DE 02 096 09678 09678138 4106 237 Europe/Berlin 2011-04-25
-2917596 Grethem Grethem 52.72714 9.57253 P PPLA4 DE 06 00 03358 03358011 677 26 Europe/Berlin 2011-07-31
-2917618 Gresse Gresse 53.43333 10.75 P PPLA4 DE 12 00 13054 13054039 680 19 Europe/Berlin 2011-04-25
-2917626 Greppin Greppin Greppin 51.65 12.3 P PPL DE 14 2840 75 Europe/Berlin 2012-01-18
-2917698 Grenzach-Wyhlen Grenzach-Wyhlen Grenzach,Grenzach-Wyhlen 47.55 7.68333 P PPLA4 DE 01 083 08336 08336105 13776 269 Europe/Berlin 2011-04-25
-2917706 Grenderich Grenderich 50.06667 7.23333 P PPLA4 DE 08 00 07135 07135037 431 379 Europe/Berlin 2011-04-25
-2917714 Gremsdorf Gremsdorf 49.69506 10.83218 P PPLA4 DE 02 095 09572 09572126 1541 275 Europe/Berlin 2011-04-25
-2917724 Gremersdorf Gremersdorf 54.33333 10.93333 P PPLA4 DE 10 00 01055 01055015 1502 23 Europe/Berlin 2011-04-25
-2917726 Gremberghoven Gremberghoven Grembergkhofen,Kjol'n/Porc-Grembergkhofen,Грембергхофен,Кёльн/Порц-Грембергхофен 50.90152 7.06129 P PPL DE 07 053 2932 51 Europe/Berlin 2010-11-15
-2917737 Greiz Greiz Grajc,Greiz,Грайц 50.65 12.2 P PPL DE 15 24147 260 Europe/Berlin 2012-01-18
-2917774 Greimersburg Greimersburg 50.18333 7.13333 P PPLA4 DE 08 00 07135 07135036 739 408 Europe/Berlin 2011-04-25
-2917775 Greimerath Greimerath 50.03333 6.9 P PPLA4 DE 08 00 07231 07231044 210 422 Europe/Berlin 2011-04-25
-2917776 Greimerath Greimerath 49.56667 6.68333 P PPLA4 DE 08 00 07235 07235033 1019 471 Europe/Berlin 2011-07-31
-2917782 Greiling Greiling 47.76667 11.61667 P PPLA4 DE 02 091 09173 09173127 1369 719 Europe/Berlin 2011-04-25
-2917788 Greifswald Greifswald Grajfsval'd,Greifswald,Griefswald,Griepswohld,guraifusuvu~aruto,Грайфсвальд,グライフスヴァルト 54.1 13.38333 P PPL DE 12 52731 0 Europe/Berlin 2012-01-18
-2917793 Greifenstein Greifenstein Greifenstein 50.61667 8.3 P PPLA4 DE 05 065 06532 06532010 7507 351 Europe/Berlin 2011-04-25
-2917803 Greifenberg Greifenberg 48.07062 11.08349 P PPLA4 DE 02 091 09181 09181123 2024 583 Europe/Berlin 2011-04-25
-2917816 Grefrath Grefrath 51.3363 6.34072 P PPLA4 DE 07 051 05166 05166008 16016 38 Europe/Berlin 2011-04-25
-2917833 Greding Greding Greding 49.04833 11.36139 P PPL DE 02 7238 436 Europe/Berlin 2012-02-02
-2917846 Grebin Grebin Greben,Grebin 54.2 10.5 P PPLA4 DE 10 00 01057 01057022 1054 35 Europe/Berlin 2011-04-25
-2917848 Grebenstein Grebenstein Grebenstein 51.45 9.41667 P PPL DE 05 6238 182 Europe/Berlin 2012-01-18
-2917850 Grebenhain Grebenhain 50.48924 9.33855 P PPLA4 DE 05 065 06535 06535007 5207 435 Europe/Berlin 2011-04-25
-2917858 Grebenau Grebenau Grebenau 50.75 9.46667 P PPL DE 05 2728 277 Europe/Berlin 2012-01-18
-2917860 Grebbin Grebbin 53.515 11.86335 P PPLA4 DE 12 00 13060 13060029 558 66 Europe/Berlin 2011-04-25
-2917868 Grävenwiesbach Gravenwiesbach 50.39024 8.4569 P PPLA4 DE 05 064 06434 06434004 5245 296 Europe/Berlin 2011-07-31
-2917936 Grauel Grauel Grauel 54.06667 9.66667 P PPLA4 DE 10 00 01058 01058062 250 34 Europe/Berlin 2011-04-25
-2917951 Grattersdorf Grattersdorf 48.80364 13.15372 P PPLA4 DE 02 092 09271 09271123 1424 478 Europe/Berlin 2011-08-22
-2917978 Grassau Grassau Grassau 47.78333 12.45 P PPL DE 02 6323 534 Europe/Berlin 2012-02-02
-2917991 Grasleben Grasleben Grasleben,Graslehen,Groslehen 52.30638 11.01465 P PPLA4 DE 06 00 03154 03154008 2667 101 Europe/Berlin 2011-07-29
-2918037 Grasbrunn Grasbrunn 48.07905 11.74361 P PPLA4 DE 02 091 09184 09184121 5737 555 Europe/Berlin 2011-04-25
-2918041 Grasberg Grasberg 53.18333 8.98333 P PPLA4 DE 06 00 03356 03356002 7697 6 Europe/Berlin 2011-07-31
-2918057 Grapzow Grapzow 53.7 13.3 P PPLA4 DE 12 00 13052 13052029 480 36 Europe/Berlin 2011-04-25
-2918072 Granzin Granzin 53.50306 11.94317 P PPLA4 DE 12 00 13060 13060028 559 66 Europe/Berlin 2011-04-25
-2918088 Gransee Gransee 53.00704 13.1575 P PPL DE 11 6544 55 Europe/Berlin 2009-01-29
-2918090 Gransebieth Gransebieth 54.06478 12.88267 P PPLA4 DE 12 00 13057 13057032 704 10 Europe/Berlin 2011-04-25
-2918091 Gransdorf Gransdorf 50.01667 6.68333 P PPLA4 DE 08 00 07232 07232228 324 361 Europe/Berlin 2011-04-25
-2918092 Granschütz Granschutz Granschutz,Granschütz 51.18333 12.05 P PPL DE 14 1229 153 Europe/Berlin 2012-01-18
-2918121 Grande Grande 53.58333 10.38333 P PPLA4 DE 10 00 01062 01062020 656 34 Europe/Berlin 2011-04-25
-2918133 Gramzow Gramzow 53.21246 14.00748 P PPLA4 DE 11 00 12073 12073225 2113 63 Europe/Berlin 2011-04-25
-2918149 Grammow Grammow 54.0473 12.62956 P PPLA4 DE 12 00 13051 13051023 185 28 Europe/Berlin 2011-04-25
-2918159 Grammentin Grammentin 53.75 12.9 P PPLA4 DE 12 00 13052 13052028 287 47 Europe/Berlin 2011-04-25
-2918160 Grammendorf Grammendorf 54.03565 12.87409 P PPLA4 DE 12 00 13057 13057031 670 9 Europe/Berlin 2011-04-25
-2918168 Gramkow Gramkow 53.91667 11.31667 P PPL DE 12 1129 15 Europe/Berlin 2006-01-17
-2918179 Grambow Grambow 53.62174 11.27498 P PPLA4 DE 12 00 13058 13058032 0 59 Europe/Berlin 2011-04-25
-2918181 Grambow Grambow 53.41414 14.3351 P PPLA4 DE 12 00 13062 13062018 957 38 Europe/Berlin 2011-04-25
-2918183 Grambin Grambin 53.76667 14.01667 P PPLA4 DE 12 00 13062 13062017 479 -9999 Europe/Berlin 2011-04-25
-2918188 Grambek Grambek Grambek 53.57387 10.68081 P PPLA4 DE 10 00 01053 01053037 389 29 Europe/Berlin 2011-08-23
-2918200 Grainet Grainet Grainet 48.8 13.65 P PPLA4 DE 02 092 09272 09272121 2425 694 Europe/Berlin 2011-04-25
-2918204 Grainau Grainau 47.47614 11.02405 P PPLA4 DE 02 091 09180 09180118 3674 749 Europe/Berlin 2012-01-03
-2918232 Grafrath Grafrath 48.11667 11.16667 P PPLA4 DE 02 091 09179 09179125 3630 562 Europe/Berlin 2011-04-25
-2918234 Grafling Grafling 48.89491 12.97511 P PPLA4 DE 02 092 09271 09271122 0 432 Europe/Berlin 2011-08-22
-2918241 Grafing bei München Grafing bei Munchen Grafing,Markt Grafing 48.04596 11.96797 P PPL DE 02 091 12497 519 Europe/Berlin 2010-11-15
-2918253 Grafhorst Grafhorst 52.44482 10.94513 P PPLA4 DE 06 00 03154 03154007 1046 61 Europe/Berlin 2011-04-28
-2918258 Grafenwöhr Grafenwohr Grafenwohr,Grafenwöhr,Gravenwerth 49.71889 11.90667 P PPL DE 02 6790 413 Europe/Berlin 2012-01-18
-2918260 Grafenwiesen Grafenwiesen 49.2 12.88333 P PPLA4 DE 02 093 09372 09372130 1622 443 Europe/Berlin 2011-04-25
-2918271 Gräfenthal Grafenthal Grafenthal,Gräfenthal 50.53333 11.3 P PPL DE 15 2746 531 Europe/Berlin 2012-01-18
-2918282 Gräfenroda Grafenroda Grafenroda,Gräfenroda 50.75 10.8 P PPLA4 DE 15 00 16070 16070024 3615 429 Europe/Berlin 2011-04-25
-2918288 Grafenrheinfeld Grafenrheinfeld 50 10.2 P PPLA4 DE 02 096 09678 09678136 3342 208 Europe/Berlin 2011-04-25
-2918316 Grafenhausen Grafenhausen Grafenhausen,Grafenhaussen 48.28333 7.76667 P PPLX DE 01 2296 163 Europe/Berlin 2012-01-18
-2918317 Grafenhausen Grafenhausen Grafenhausen 47.76667 8.26667 P PPLA4 DE 01 083 08337 08337039 0 926 Europe/Berlin 2011-04-25
-2918321 Gräfenhainichen Grafenhainichen Grafenhainchen,Grafenhainichen,Gräfenhainchen,Gräfenhainichen 51.73333 12.45 P PPL DE 14 7833 90 Europe/Berlin 2012-01-18
-2918323 Gräfenhain Grafenhain 50.81667 10.7 P PPLA4 DE 15 00 16067 16067032 1472 418 Europe/Berlin 2011-04-25
-2918324 Grafengehaig Grafengehaig Grafengehaig,Grafengelhaig 50.2 11.58333 P PPL DE 02 1026 562 Europe/Berlin 2012-01-18
-2918338 Gräfendorf Grafendorf 50.11667 9.75 P PPLA4 DE 02 096 09677 09677133 1459 333 Europe/Berlin 2011-04-25
-2918342 Gräfendhron Grafendhron 49.8 7 P PPLA4 DE 08 00 07231 07231042 109 259 Europe/Berlin 2011-04-25
-2918350 Gräfenberg Grafenberg 49.6454 11.24983 P PPL DE 02 4105 440 Europe/Berlin 2008-07-24
-2918365 Grafenau Grafenau Grafenau,Gravenau 48.85768 13.3974 P PPL DE 02 8870 604 Europe/Berlin 2011-08-22
-2918368 Gräfelfing Grafelfing 48.11878 11.42939 P PPLA4 DE 02 091 09184 09184120 12978 543 Europe/Berlin 2011-07-31
-2918393 Grabsleben Grabsleben Grabsleben 50.93333 10.83333 P PPL DE 15 1069 287 Europe/Berlin 2012-01-18
-2918398 Grabowhöfe Grabowhofe 53.56667 12.6 P PPLA4 DE 12 00 13056 13056014 1046 70 Europe/Berlin 2011-04-25
-2918405 Grabow Grabow Grabow 53.28333 11.56667 P PPL DE 12 6268 34 Europe/Berlin 2012-02-02
-2918431 Grabenstetten Grabenstetten 48.52397 9.46155 P PPLA4 DE 01 084 08415 08415028 1562 714 Europe/Berlin 2011-04-25
-2918434 Grabenstätt Grabenstatt 47.85 12.55 P PPLA4 DE 02 091 09189 09189119 4152 526 Europe/Berlin 2011-04-25
-2918463 Gräben Graben 52.23333 12.43333 P PPLA4 DE 11 00 12069 12069232 842 66 Europe/Berlin 2011-04-25
-2918468 Graben Graben 48.2 10.81667 P PPLA4 DE 02 097 09772 09772149 3250 552 Europe/Berlin 2011-04-25
-2918497 Grabau Grabau 53.8 10.28333 P PPLA4 DE 10 00 01062 01062019 820 32 Europe/Berlin 2011-04-25
-2918498 Grabau Grabau 53.51357 10.52001 P PPLA4 DE 10 00 01053 01053036 285 38 Europe/Berlin 2011-04-25
-2918612 Gottmadingen Gottmadingen 47.73511 8.77687 P PPLA4 DE 01 083 08335 08335028 10452 428 Europe/Berlin 2011-04-25
-2918632 Göttingen Gottingen G'otingen,Getynga,Gjottingen,Goettinga,Goettingen,Gottinga,Gottingen,Göttingen,ge ting gen,gettingen,goeting-gen,gtyngn,Гьотинген,Гёттинген,גטינגן,გეტინგენი,ゲッティンゲン,哥廷根,괴팅겐 51.53333 9.93333 P PPL DE 06 122149 155 Europe/Berlin 2012-01-18
-2918642 Göttin Gottin 53.53333 10.7 P PPLA4 DE 10 00 01053 01053035 52 17 Europe/Berlin 2011-04-25
-2918646 Gotthun Gotthun 53.41667 12.6 P PPLA4 DE 12 00 13056 13056012 314 74 Europe/Berlin 2011-04-25
-2918659 Gottfrieding Gottfrieding Gottfrieding,Gottfriedinger Schwaig 48.65 12.53333 P PPLA4 DE 02 092 09279 09279116 2160 353 Europe/Berlin 2011-04-25
-2918661 Gotteszell Gotteszell 48.96667 12.96667 P PPLA4 DE 02 092 09276 09276123 1267 552 Europe/Berlin 2011-04-25
-2918679 Gottesgabe Gottesgabe 53.6311 11.24897 P PPLA4 DE 12 00 13058 13058031 828 55 Europe/Berlin 2011-04-25
-2918707 Gottenheim Gottenheim 48.05 7.73333 P PPLA4 DE 01 083 08315 08315043 2456 191 Europe/Berlin 2011-04-25
-2918752 Gotha Gotha Gota,Gotha,ge da,Гота,哥達 50.94823 10.70193 P PPL DE 15 46615 305 Europe/Berlin 2011-06-25
-2918766 Goßwitz Gosswitz 50.63536 11.47737 P PPL DE 15 1379 422 Europe/Berlin 2010-04-06
-2918767 Gößweinstein Gossweinstein Gossweinstein,Gößweinstein 49.76667 11.33333 P PPL DE 02 4147 443 Europe/Berlin 2012-01-18
-2918770 Gößnitz Gossnitz Gossnitz,Gößnitz 50.9 12.43333 P PPL DE 15 4104 206 Europe/Berlin 2012-01-18
-2918787 Gössitz Gossitz 50.62202 11.58648 P PPLA4 DE 15 00 16075 16075035 351 488 Europe/Berlin 2011-04-25
-2918804 Gössenheim Gossenheim 50.01667 9.78333 P PPLA4 DE 02 096 09677 09677132 1319 172 Europe/Berlin 2011-04-25
-2918818 Gossel Gossel Gossel 50.8 10.85 P PPLA4 DE 15 00 16070 16070023 524 490 Europe/Berlin 2011-04-25
-2918840 Goslar Goslar Goslar,Goslaria,ge si la er,gwslr,Гослар,גוסלר,戈斯拉尔 51.90425 10.42766 P PPL DE 06 43560 270 Europe/Berlin 2010-03-29
-2918844 Gosheim Gosheim 48.1343 8.75426 P PPLA4 DE 01 083 08327 08327019 3872 849 Europe/Berlin 2011-04-25
-2918850 Gösenroth Gosenroth 49.88333 7.33333 P PPLA4 DE 08 00 07134 07134030 301 417 Europe/Berlin 2011-04-25
-2918858 Gösen Gosen 51 11.88333 P PPLA4 DE 15 00 16074 16074025 238 323 Europe/Berlin 2011-04-25
-2918868 Goseck Goseck 51.2 11.86667 P PPLA4 DE 14 00 15084 15084170 1149 155 Europe/Berlin 2011-04-25
-2918884 Göschitz Goschitz Goschitz,Göschitz 50.63333 11.86667 P PPLA4 DE 15 00 16075 16075034 287 414 Europe/Berlin 2011-04-25
-2918896 Görzke Gorzke 52.16667 12.36667 P PPLA4 DE 11 00 12069 12069224 1526 98 Europe/Berlin 2011-04-25
-2918899 Görzig Gorzig Gorzig,Görzig 51.66667 12 P PPL DE 14 1295 82 Europe/Berlin 2012-02-02
-2918911 Görwihl Gorwihl Gohrwil,Gorwihl,Göhrwil,Görwihl 47.65 8.08333 P PPLA4 DE 01 083 08337 08337038 4587 659 Europe/Berlin 2011-04-25
-2918926 Gorsleben Gorsleben Gersleben,Gorsleben 51.26667 11.18333 P PPLA4 DE 15 00 16065 16065022 622 132 Europe/Berlin 2011-04-25
-2918942 Görsbach Gorsbach 51.46224 10.93706 P PPLA4 DE 15 00 16062 16062008 1175 164 Europe/Berlin 2011-07-31
-2918951 Gornsdorf Gornsdorf 50.7 12.88333 P PPLA4 DE 13 145 14521 14521230 2266 461 Europe/Berlin 2011-04-25
-2918964 Gornhausen Gornhausen 49.86667 7.05 P PPLA4 DE 08 00 07231 07231040 209 496 Europe/Berlin 2011-04-25
-2918970 Gornau Gornau Gornau 50.76667 13.01667 P PPL DE 13 4101 532 Europe/Berlin 2012-01-18
-2918974 Görmin Gormin 53.99092 13.27054 P PPLA4 DE 12 00 13052 13052026 1012 25 Europe/Berlin 2011-04-25
-2918981 Gorlosen Gorlosen 53.18333 11.46667 P PPLA4 DE 12 00 13054 13054035 445 26 Europe/Berlin 2011-04-25
-2918987 Görlitz Gorlitz Gjorlic,Goerlitz,Gorlicium,Gorlitz,Görlitz,Zhorelec,Zhořelec,ge er li ci,gerurittsu,Гёрлиц,ゲルリッツ,格尔利茨 51.15518 14.98853 P PPL DE 13 57751 210 Europe/Berlin 2011-12-04
-2918989 Gorleben Gorleben 53.04844 11.35729 P PPLA4 DE 06 00 03354 03354007 631 22 Europe/Berlin 2011-07-31
-2918990 Görkwitz Gorkwitz Gorkwitz,Görkwitz 50.58333 11.78333 P PPLA4 DE 15 00 16075 16075033 332 432 Europe/Berlin 2011-04-25
-2919000 Göritz Goritz 53.41667 13.91667 P PPLA4 DE 11 00 12073 12073216 861 29 Europe/Berlin 2011-04-25
-2919008 Görisried Gorisried 47.7 10.5 P PPLA4 DE 02 097 09777 09777131 1269 823 Europe/Berlin 2011-04-25
-2919024 Görgeshausen Gorgeshausen 50.41667 7.95 P PPLA4 DE 08 00 07143 07143023 821 253 Europe/Berlin 2011-04-25
-2919054 Göppingen Goppingen Gjoppingen,Goeppingen,Göppingen,Гёппинген 48.7028 9.65488 P PPL DE 01 081 58040 323 Europe/Berlin 2010-11-15
-2919073 Göpfersdorf Gopfersdorf Gopfersdorf,Göpfersdorf 50.91667 12.6 P PPLA4 DE 15 00 16077 16077011 237 275 Europe/Berlin 2011-04-25
-2919081 Goosefeld Goosefeld Goosefeld 54.43333 9.81667 P PPLA4 DE 10 00 01058 01058102 794 22 Europe/Berlin 2011-04-25
-2919101 Gönnheim Gonnheim 49.44806 8.23861 P PPLA4 DE 08 00 07332 07332022 1478 119 Europe/Berlin 2011-04-25
-2919103 Gönnersdorf Gonnersdorf 50.48333 7.26667 P PPLA4 DE 08 00 07131 07131025 650 124 Europe/Berlin 2011-04-25
-2919105 Gönnersdorf Gonnersdorf 50.33333 6.6 P PPLA4 DE 08 00 07233 07233028 549 426 Europe/Berlin 2011-04-25
-2919112 Gönnebek Gonnebek Gonnebek,Gönnebek 54.05 10.16667 P PPLA4 DE 10 00 01060 01060026 484 36 Europe/Berlin 2011-04-25
-2919119 Gondorf Gondorf 49.96667 6.61667 P PPLA4 DE 08 00 07232 07232044 301 290 Europe/Berlin 2011-04-25
-2919120 Gondenbrett Gondenbrett 50.23333 6.41667 P PPLA4 DE 08 00 07232 07232227 503 499 Europe/Berlin 2011-04-25
-2919123 Gondelsheim Gondelsheim 49.05917 8.65833 P PPLA4 DE 01 082 08215 08215025 3183 157 Europe/Berlin 2011-04-25
-2919125 Gonbach Gonbach 49.55 7.9 P PPLA4 DE 08 00 07333 07333027 519 291 Europe/Berlin 2011-04-25
-2919129 Gompertshausen Gompertshausen Gompertshausen 50.3 10.63333 P PPLA4 DE 15 00 16069 16069015 601 306 Europe/Berlin 2011-04-25
-2919135 Gommersheim Gommersheim 49.29111 8.26583 P PPLA4 DE 08 00 07337 07337032 1313 115 Europe/Berlin 2011-04-25
-2919138 Gommern Gommern Gommern 52.06667 11.83333 P PPL DE 14 5992 49 Europe/Berlin 2012-01-18
-2919146 Gomaringen Gomaringen 48.45349 9.09582 P PPLA4 DE 01 084 08416 08416015 8400 430 Europe/Berlin 2011-04-25
-2919147 Gomadingen Gomadingen 48.3998 9.39065 P PPLA4 DE 01 084 08415 08415027 2196 664 Europe/Berlin 2011-04-25
-2919155 Golzow Golzow 52.574 14.49303 P PPLA4 DE 11 00 12064 12064172 942 10 10 Europe/Berlin 2011-04-25
-2919156 Golzow Golzow 52.26667 12.61667 P PPLA4 DE 11 00 12069 12069216 1409 39 Europe/Berlin 2011-04-25
-2919170 Goltoft Goltoft Goltoft 54.55 9.71667 P PPLA4 DE 10 00 01059 01059033 238 20 Europe/Berlin 2011-04-25
-2919177 Golßen Golssen Golssen,Golßen 51.96667 13.6 P PPL DE 11 2813 57 Europe/Berlin 2012-01-18
-2919189 Golmsdorf Golmsdorf Golmsdorf 50.96667 11.66667 P PPLA4 DE 15 00 16074 16074026 713 203 Europe/Berlin 2011-04-25
-2919197 Golmbach Golmbach 51.9 9.55 P PPLA4 DE 06 00 03255 03255015 1042 138 Europe/Berlin 2011-04-25
-2919210 Göllnitz Gollnitz 50.95 12.31667 P PPLA4 DE 15 00 16077 16077009 391 246 Europe/Berlin 2011-04-25
-2919223 Göllingen Gollingen 51.35 11.01667 P PPLA4 DE 15 00 16065 16065021 828 166 Europe/Berlin 2011-04-25
-2919230 Gollhofen Gollhofen 49.56667 10.2 P PPLA4 DE 02 095 09575 09575127 870 315 Europe/Berlin 2011-07-31
-2919232 Göllheim Gollheim Goellheim,Gollheim,Göllheim 49.595 8.05083 P PPLA4 DE 08 00 07333 07333026 3773 247 Europe/Berlin 2011-04-25
-2919246 Gollenberg Gollenberg 49.66667 7.16667 P PPLA4 DE 08 00 07134 07134031 129 465 Europe/Berlin 2011-04-25
-2919270 Gölenkamp Golenkamp 52.51667 6.91667 P PPLA4 DE 06 00 03456 03456007 647 27 Europe/Berlin 2011-04-25
-2919290 Goldkronach Goldkronach Goldkronach 50.01667 11.68333 P PPL DE 02 3711 485 Europe/Berlin 2012-01-18
-2919292 Goldisthal Goldisthal 50.51667 11 P PPLA4 DE 15 00 16072 16072006 434 557 Europe/Berlin 2011-04-25
-2919310 Goldenstedt Goldenstedt 52.78833 8.43201 P PPLA4 DE 06 00 03460 03460004 9110 36 Europe/Berlin 2011-04-25
-2919321 Göldenitz Goldenitz 53.71667 10.63333 P PPLA4 DE 10 00 01053 01053034 203 16 Europe/Berlin 2011-04-25
-2919343 Goldelund Goldelund Goldelund 54.68333 9.1 P PPLA4 DE 10 00 01054 01054038 399 12 Europe/Berlin 2011-04-25
-2919347 Goldebek Goldebek Goldebeck,Goldebek 54.68333 9.15 P PPLA4 DE 10 00 01054 01054037 364 8 Europe/Berlin 2011-04-25
-2919366 Goldberg Goldberg Goldberg 53.58333 12.08333 P PPL DE 12 3767 47 Europe/Berlin 2012-01-18
-2919415 Goldbeck Goldbeck 52.71695 11.8606 P PPLA4 DE 14 00 15090 15090180 1318 28 Europe/Berlin 2011-04-25
-2919436 Goldbach Goldbach 51.05 11.43333 P PPL DE 15 1846 245 Europe/Berlin 2006-01-17
-2919437 Goldbach Goldbach 51 10.65 P PPLA4 DE 15 00 16067 16067027 0 257 Europe/Berlin 2011-04-25
-2919438 Goldbach Goldbach Goldbach 49.98889 9.18639 P PPL DE 02 10044 163 Europe/Berlin 2012-02-02
-2919452 Golchen Golchen 53.8 13.28333 P PPLA4 DE 12 00 13052 13052025 323 2 Europe/Berlin 2011-04-25
-2919460 Gokels Gokels Gokels 54.11667 9.46667 P PPLA4 DE 10 00 01058 01058061 592 23 Europe/Berlin 2011-04-25
-2919470 Göhren-Lebbin Gohren-Lebbin Gohren,Göhren 53.47936 12.51102 P PPLA4 DE 12 00 13056 13056011 600 87 Europe/Berlin 2011-07-31
-2919473 Göhren-Döhlen Gohren-Dohlen Dohlen,Döhlen,Gohren,Gohren-Dohlen,Göhren,Göhren-Döhlen 50.71667 12.01667 P PPLA4 DE 15 00 16076 16076021 132 297 Europe/Berlin 2011-04-25
-2919474 Göhren Gohren 53.53333 11.6 P PPLA4 DE 12 00 13060 13060025 418 50 Europe/Berlin 2011-04-25
-2919480 Göhren Gohren 50.96667 12.36667 P PPLA4 DE 15 00 16077 16077008 524 227 Europe/Berlin 2011-04-25
-2919489 Göhrde Gohrde Gohrde,Göhrde 53.15 10.88333 P PPLA4 DE 06 00 03354 03354006 0 52 Europe/Berlin 2011-07-31
-2919491 Gohrau Gohrau Gohrau 51.81667 12.48333 P PPLA4 DE 14 00 15091 15091105 453 67 Europe/Berlin 2011-04-25
-2919508 Göhlen Gohlen 53.3 11.36667 P PPLA4 DE 12 00 13054 13054034 423 22 Europe/Berlin 2011-04-25
-2919514 Goel Goel Goel,Gohl,Göhl 54.28333 10.95 P PPL DE 10 1202 10 Europe/Berlin 2012-01-18
-2919524 Göggingen Goggingen 48.86123 9.88398 P PPLA4 DE 01 081 08136 08136024 2496 491 Europe/Berlin 2011-04-25
-2919565 Godern Godern 53.61876 11.5432 P PPLA4 DE 12 00 13060 13060024 339 39 Europe/Berlin 2011-04-25
-2919569 Gödenstorf Godenstorf 53.22855 10.12349 P PPLA4 DE 06 00 03353 03353013 959 50 Europe/Berlin 2011-09-02
-2919579 Gödenroth Godenroth 50.08333 7.48333 P PPLA4 DE 08 00 07140 07140042 502 425 Europe/Berlin 2011-04-25
-2919582 Godendorf Godendorf 53.26667 13.15 P PPLA4 DE 12 00 13055 13055023 241 66 Europe/Berlin 2011-04-25
-2919598 Goddert Goddert 50.55 7.73333 P PPLA4 DE 08 00 07143 07143022 433 271 Europe/Berlin 2011-04-25
-2919609 Göda Goda 51.18333 14.31667 P PPLA4 DE 13 146 14625 14625150 3476 208 Europe/Berlin 2011-04-25
-2919610 Göcklingen Gocklingen 49.16194 8.04139 P PPLA4 DE 08 00 07337 07337031 972 180 Europe/Berlin 2011-04-25
-2919620 Gochsheim Gochsheim Gochsheim 50.01667 10.28333 P PPLA4 DE 02 096 09678 09678135 6495 236 Europe/Berlin 2011-04-25
-2919625 Goch Goch Goch 51.66667 6.16667 P PPL DE 07 33706 18 Europe/Berlin 2012-01-18
-2919648 Gnutz Gnutz Gnutz 54.13333 9.81667 P PPLA4 DE 10 00 01058 01058059 1165 20 Europe/Berlin 2011-04-25
-2919657 Gnoien Gnoien 53.9687 12.71099 P PPL DE 12 3362 18 Europe/Berlin 2010-03-29
-2919667 Gnewitz Gnewitz 54.07938 12.51085 P PPLA4 DE 12 00 13051 13051021 234 40 Europe/Berlin 2011-04-25
-2919672 Gnevkow Gnevkow 53.78333 13.16667 P PPLA4 DE 12 00 13052 13052024 426 56 Europe/Berlin 2011-04-25
-2919677 Gneven Gneven 53.63333 11.56667 P PPLA4 DE 12 00 13060 13060022 439 36 Europe/Berlin 2011-04-25
-2919692 Gnarrenburg Gnarrenburg Gnarrenburg 53.38333 9 P PPLA4 DE 06 00 03357 03357016 9504 10 Europe/Berlin 2011-04-25
-2919717 Gmund am Tegernsee Gmund am Tegernsee Gmund,Gmund am Tegernsee 47.75 11.73333 P PPL DE 02 6086 750 Europe/Berlin 2012-01-18
-2919750 Glüsing Glusing 54.28333 9.21667 P PPLA4 DE 10 00 01051 01051036 0 2 Europe/Berlin 2011-04-25
-2919763 Glückstadt Gluckstadt Gluckstadt,Glückstadt 53.78333 9.41667 P PPL DE 10 12121 0 Europe/Berlin 2012-01-18
-2919765 Glücksburg Glucksburg Glucksburg,Gluecksburg,Glücksburg,Lyksborg 54.83333 9.55 P PPL DE 10 5946 21 Europe/Berlin 2012-01-18
-2919782 Glowe Glowe 54.56667 13.48333 P PPLA4 DE 12 00 13061 13061013 1015 13 Europe/Berlin 2011-04-25
-2919792 Glött Glott 48.5 10.48333 P PPLA4 DE 02 097 09773 09773133 1135 437 Europe/Berlin 2011-04-25
-2919794 Glöthe Glothe 51.9 11.66667 P PPL DE 14 1082 68 Europe/Berlin 2006-01-17
-2919812 Glonn Glonn 47.98751 11.86721 P PPL DE 02 091 4317 535 Europe/Berlin 2010-11-15
-2919877 Glindenberg Glindenberg Glindenberg 52.23333 11.68333 P PPL DE 14 1347 43 Europe/Berlin 2012-01-18
-2919880 Glinde Glinde Glinde,Glinn 53.55 10.2 P PPL DE 10 16210 43 Europe/Berlin 2012-01-18
-2919899 Glienke Glienke 53.6 13.43333 P PPLA4 DE 12 00 13055 13055022 134 16 Europe/Berlin 2011-04-25
-2919908 Glienicke Glienicke 52.63353 13.32564 P PPL DE 11 9144 53 Europe/Berlin 2007-10-07
-2919926 Glewitz Glewitz 54.02033 12.92456 P PPLA4 DE 12 00 13057 13057030 648 5 Europe/Berlin 2011-04-25
-2919954 Gleiszellen-Gleishorbach Gleiszellen-Gleishorbach 49.12611 8.00583 P PPLA4 DE 08 00 07337 07337029 847 206 Europe/Berlin 2011-04-25
-2919956 Gleisweiler Gleisweiler 49.24222 8.06944 P PPLA4 DE 08 00 07337 07337028 530 260 Europe/Berlin 2011-04-25
-2919961 Gleißenberg Gleissenberg 49.31667 12.73333 P PPLA4 DE 02 093 09372 09372128 955 443 Europe/Berlin 2011-04-25
-2919977 Gleiritsch Gleiritsch 49.5 12.33333 P PPLA4 DE 02 093 09376 09376131 687 550 Europe/Berlin 2011-04-25
-2919979 Gleina Gleina 51.26667 11.73333 P PPLA4 DE 14 00 15084 15084150 906 205 Europe/Berlin 2011-04-25
-2920002 Gleichamberg Gleichamberg 50.38333 10.6 P PPLA4 DE 15 00 16069 16069014 2997 454 Europe/Berlin 2011-04-25
-2920009 Glees Glees 50.43333 7.25 P PPLA4 DE 08 00 07131 07131205 564 288 Europe/Berlin 2011-04-25
-2920020 Glauchau Glauchau Glauchau,Glaukhau,Stadt Glauchau,Глаухау 50.81667 12.53333 P PPL DE 13 26473 237 Europe/Berlin 2012-01-18
-2920024 Glauburg Glauburg Glauburg 50.31667 9 P PPLA4 DE 05 064 06440 06440010 3147 131 Europe/Berlin 2011-07-31
-2920027 Glaubitz Glaubitz 51.32498 13.37817 P PPLA4 DE 13 146 14627 14627040 1962 99 Europe/Berlin 2011-04-25
-2920041 Glatten Glatten 48.43333 8.51667 P PPLA4 DE 01 082 08237 08237030 2331 506 Europe/Berlin 2011-04-25
-2920043 Glattbach Glattbach Glattbach 50 9.15 P PPLA4 DE 02 096 09671 09671120 3506 197 Europe/Berlin 2011-04-25
-2920063 Glasow Glasow 53.38333 14.26667 P PPLA4 DE 12 00 13062 13062016 179 20 Europe/Berlin 2011-04-25
-2920074 Glasin Glasin 53.91667 11.73333 P PPLA4 DE 12 00 13058 13058030 912 72 Europe/Berlin 2011-04-25
-2920085 Glashütten Glashutten Glashutten,Glashütten 50.21667 8.4 P PPLA4 DE 05 064 06434 06434003 5382 489 Europe/Berlin 2011-04-25
-2920086 Glashütten Glashutten 49.88739 11.4487 P PPLA4 DE 02 094 09472 09472141 1569 423 Europe/Berlin 2011-04-25
-2920104 Glashütte Glashutte 50.85196 13.77977 P PPL DE 13 146 4601 325 Europe/Berlin 2010-11-15
-2920138 Glasewitz Glasewitz 53.81667 12.28333 P PPLA4 DE 12 00 13053 13053021 467 17 Europe/Berlin 2011-04-25
-2920161 Glasehausen Glasehausen 51.44224 10.15205 P PPLA4 DE 15 00 16061 16061039 187 280 Europe/Berlin 2011-07-31
-2920187 Glasau Glasau Glasau 54.05 10.51667 P PPLA4 DE 10 00 01060 01060025 977 30 Europe/Berlin 2011-04-25
-2920197 Glan-Münchweiler Glan-Munchweiler Glan-Munchweiler,Glan-Münchweiler,Munchweiler,Münchweiler 49.46667 7.43333 P PPLA4 DE 08 00 07336 07336031 1200 321 Europe/Berlin 2011-04-25
-2920205 Glandorf Glandorf Glandorf 52.08333 8.01667 P PPLA4 DE 06 00 03459 03459034 6867 67 Europe/Berlin 2011-07-31
-2920229 Gladenbach Gladenbach Gladenbach 50.76667 8.56667 P PPL DE 05 12482 265 Europe/Berlin 2012-01-18
-2920236 Gladbeck Gladbeck Gladbeck,Gladbeki,Gladbėki 51.56667 6.98333 P PPL DE 07 76940 63 Europe/Berlin 2012-01-18
-2920242 Gladbach Gladbach 49.93333 6.76667 P PPLA4 DE 08 00 07231 07231037 336 264 Europe/Berlin 2011-04-25
-2920268 Gittelde Gittelde 51.7984 10.1878 P PPL DE 06 2087 196 Europe/Berlin 2010-07-13
-2920285 Gischow Gischow 53.43715 12.01115 P PPLA4 DE 12 00 13060 13060021 322 56 Europe/Berlin 2011-04-25
-2920291 Girod Girod 50.45 7.91667 P PPLA4 DE 08 00 07143 07143021 1262 256 Europe/Berlin 2011-04-25
-2920299 Girkenroth Girkenroth 50.51667 7.96667 P PPLA4 DE 08 00 07143 07143226 637 348 Europe/Berlin 2011-04-25
-2920312 Gipperath Gipperath 50.03333 6.86667 P PPLA4 DE 08 00 07231 07231036 263 292 Europe/Berlin 2011-04-25
-2920325 Ginsweiler Ginsweiler 49.65 7.65 P PPLA4 DE 08 00 07336 07336029 338 204 Europe/Berlin 2011-04-25
-2920329 Ginsheim-Gustavsburg Ginsheim-Gustavsburg 49.98583 8.3425 P PPLA4 DE 05 064 06433 06433005 16043 84 Europe/Berlin 2011-04-25
-2920342 Gingst Gingst Gingst 54.45 13.25 P PPLA4 DE 12 00 13061 13061012 1554 8 Europe/Berlin 2011-04-25
-2920348 Gingen an der Fils Gingen an der Fils Gingen 48.65979 9.78092 P PPLA4 DE 01 081 08117 08117025 4365 379 Europe/Berlin 2011-04-25
-2920350 Gindorf Gindorf 50.01667 6.65 P PPLA4 DE 08 00 07232 07232043 308 356 Europe/Berlin 2011-04-25
-2920362 Gimritz Gimritz 51.56667 11.86667 P PPLA4 DE 14 00 15088 15088120 0 124 Europe/Berlin 2011-04-25
-2920375 Gimbweiler Gimbweiler 49.58333 7.2 P PPLA4 DE 08 00 07134 07134029 448 479 Europe/Berlin 2011-04-25
-2920377 Gimbsheim Gimbsheim 49.77778 8.375 P PPLA4 DE 08 00 07331 07331034 3066 89 Europe/Berlin 2011-04-25
-2920381 Gilzem Gilzem 49.86667 6.51667 P PPLA4 DE 08 00 07232 07232225 405 349 Europe/Berlin 2011-04-25
-2920386 Gilten Gilten 52.7 9.58333 P PPLA4 DE 06 00 03358 03358010 1132 21 Europe/Berlin 2011-04-25
-2920389 Gilserberg Gilserberg Gilserberg 50.95 9.06667 P PPLA4 DE 05 066 06634 06634006 3470 346 Europe/Berlin 2011-04-25
-2920410 Gillersdorf Gillersdorf Gillersdorf 50.61667 11.01667 P PPLA4 DE 15 00 16070 16070022 321 800 Europe/Berlin 2011-04-25
-2920413 Gillenfeld Gillenfeld 50.11667 6.9 P PPLA4 DE 08 00 07233 07233027 1493 411 Europe/Berlin 2011-04-25
-2920414 Gillenbeuren Gillenbeuren 50.15515 7.0186 P PPLA4 DE 08 00 07135 07135035 247 407 Europe/Berlin 2011-04-25
-2920433 Gilching Gilching Gilching 48.11667 11.3 P PPLA4 DE 02 091 09188 09188121 16859 566 Europe/Berlin 2011-07-31
-2920478 Gifhorn Gifhorn 52.48333 10.55 P PPL DE 06 43000 54 Europe/Berlin 2006-01-17
-2920512 Gießen Giessen Gieben,Giessen,Gießen,Gissen,Гиссен 50.58333 8.65 P PPLA2 DE 05 065 74411 158 Europe/Berlin 2010-11-21
-2920538 Giesensdorf Giesensdorf 53.68333 10.7 P PPLA4 DE 10 00 01053 01053033 93 39 Europe/Berlin 2011-04-25
-2920545 Giesenhausen Giesenhausen 50.7 7.71667 P PPLA4 DE 08 00 07143 07143225 334 306 Europe/Berlin 2011-04-25
-2920572 Giesdorf Giesdorf 50.18333 6.45 P PPLA4 DE 08 00 07232 07232224 136 431 Europe/Berlin 2011-04-25
-2920581 Gierstädt Gierstadt Gierstadt,Gierstädt 51.05 10.83333 P PPLA4 DE 15 00 16067 16067026 821 210 Europe/Berlin 2011-07-31
-2920582 Giersleben Giersleben Giersleben 51.76667 11.56667 P PPLA4 DE 14 00 15089 15089130 1187 86 Europe/Berlin 2011-04-25
-2920588 Giershausen Giershausen 50.68333 7.55 P PPLA4 DE 08 00 07132 07132041 0 301 Europe/Berlin 2011-04-25
-2920595 Gierschnach Gierschnach 50.26667 7.35 P PPLA4 DE 08 00 07137 07137030 302 184 Europe/Berlin 2011-04-25
-2920620 Giengen an der Brenz Giengen an der Brenz Giengen 48.62219 10.24312 P PPL DE 01 081 20201 473 Europe/Berlin 2010-11-15
-2920628 Gielow Gielow 53.7 12.75 P PPLA4 DE 12 00 13052 13052022 1506 13 Europe/Berlin 2011-04-25
-2920630 Gielert Gielert 49.76667 7 P PPLA4 DE 08 00 07231 07231035 159 525 Europe/Berlin 2011-04-25
-2920631 Gieleroth Gieleroth 50.66667 7.68333 P PPLA4 DE 08 00 07132 07132040 709 310 Europe/Berlin 2011-04-25
-2920632 Gielde Gielde 52.03623 10.49366 P PPLA4 DE 06 00 03158 03158015 847 93 Europe/Berlin 2011-05-03
-2920634 Giekau Giekau Giekau 54.31667 10.51667 P PPLA4 DE 10 00 01057 01057021 1129 46 Europe/Berlin 2011-04-25
-2920645 Gieboldehausen Gieboldehausen 51.61667 10.21667 P PPL DE 06 4120 161 Europe/Berlin 2006-01-17
-2920652 Giebelstadt Giebelstadt Geibelstadte,Giebelstadt 49.65417 9.94778 P PPL DE 02 4379 302 Europe/Berlin 2012-01-18
-2920728 Geyer Geyer Geyer 50.63333 12.93333 P PPL DE 13 4118 691 Europe/Berlin 2012-01-18
-2920744 Geversdorf Geversdorf 53.8 9.08333 P PPLA4 DE 06 00 03352 03352018 774 0 Europe/Berlin 2011-04-25
-2920747 Gevensleben Gevensleben Gevenleben,Gevensleben 52.07655 10.82222 P PPLA4 DE 06 00 03154 03154006 746 101 Europe/Berlin 2011-05-03
-2920749 Gevenich Gevenich 50.15 7.08333 P PPLA4 DE 08 00 07135 07135034 709 385 Europe/Berlin 2011-04-25
-2920757 Gevelsberg Gevelsberg Gevelsberg 51.31667 7.33333 P PPL DE 07 32664 187 Europe/Berlin 2012-01-18
-2920768 Geusa Geusa Geusa 51.33333 11.93333 P PPL DE 14 1519 96 Europe/Berlin 2012-01-18
-2920776 Gettorf Gettorf Gettorf 54.4 9.98333 P PPLA4 DE 10 00 01058 01058058 6297 21 Europe/Berlin 2011-04-25
-2920786 Getelo Getelo 52.46667 6.85 P PPLA4 DE 06 00 03456 03456006 677 53 Europe/Berlin 2011-04-25
-2920796 Gestratz Gestratz 47.65 9.98333 P PPLA4 DE 02 097 09776 09776112 1248 662 Europe/Berlin 2011-04-25
-2920812 Gessertshausen Gessertshausen 48.33333 10.73333 P PPLA4 DE 02 097 09772 09772148 4424 477 Europe/Berlin 2011-04-25
-2920830 Geslau Geslau 49.36667 10.3 P PPLA4 DE 02 095 09571 09571155 1424 437 Europe/Berlin 2011-04-25
-2920834 Geseke Geseke Gesecke,Geseke,Gesiki,Gezeke,Gisiki,Gêsiki,Gīsiki,Гезеке 51.65 8.51667 P PPL DE 07 20602 97 Europe/Berlin 2012-01-18
-2920835 Gesees Gesees 50.03333 11.66667 P PPL DE 02 1244 476 Europe/Berlin 2006-01-17
-2920836 Gesees Gesees 49.9 11.53333 P PPLA4 DE 02 094 09472 09472140 0 409 Europe/Berlin 2011-04-25
-2920837 Geschwenda Geschwenda Geschwenda 50.73333 10.83333 P PPLA4 DE 15 00 16070 16070021 2255 451 Europe/Berlin 2011-04-25
-2920842 Gescher Gescher Gascheri,Gasgeri,Gescher,Gāscheri,Gāsgeri 51.954 7.00481 P PPL DE 07 17115 62 Europe/Berlin 2011-11-06
-2920843 Geschendorf Geschendorf Geschendorf 53.91667 10.45 P PPLA4 DE 10 00 01060 01060024 493 49 Europe/Berlin 2011-04-25
-2920849 Gerzen Gerzen 48.51667 12.41667 P PPLA4 DE 02 092 09274 09274135 1864 444 Europe/Berlin 2011-07-31
-2920850 Gerwisch Gerwisch Gerwisch 52.16667 11.75 P PPL DE 14 2791 43 Europe/Berlin 2012-01-18
-2920872 Gertewitz Gertewitz Gertewitz 50.68333 11.65 P PPLA4 DE 15 00 16075 16075031 170 328 Europe/Berlin 2011-04-25
-2920873 Gerterode Gerterode Gerterode 51.38333 10.48333 P PPLA4 DE 15 00 16061 16061038 427 304 Europe/Berlin 2011-04-25
-2920881 Gerswalde Gerswalde 53.16988 13.74853 P PPLA4 DE 11 00 12073 12073201 1854 51 Europe/Berlin 2011-07-31
-2920883 Gerstungen Gerstungen Gerstungen 50.96667 10.06667 P PPLA4 DE 15 00 16063 16063097 3865 218 Europe/Berlin 2011-04-25
-2920891 Gersthofen Gersthofen Gersthofen 48.41667 10.88333 P PPL DE 02 20254 464 Europe/Berlin 2012-01-18
-2920896 Gerstetten Gerstetten 48.63333 10.03333 P PPLA4 DE 01 081 08135 08135015 12086 615 Europe/Berlin 2011-07-31
-2920908 Gerstenberg Gerstenberg Gerstenberg 51.03333 12.43333 P PPLA4 DE 15 00 16077 16077007 585 169 Europe/Berlin 2011-04-25
-2920914 Gersten Gersten 52.58333 7.51667 P PPLA4 DE 06 00 03454 03454015 1212 22 Europe/Berlin 2011-04-25
-2920921 Gersheim Gersheim Gersheim 49.15 7.2 P PPLA4 DE 09 00 10045 10045113 7264 255 Europe/Berlin 2011-07-31
-2920926 Gersfeld Gersfeld 50.45138 9.91422 P PPL DE 05 066 6351 486 Europe/Berlin 2010-11-15
-2920934 Gersdorf Gersdorf 51.11667 12.93333 P PPL DE 13 1307 272 Europe/Berlin 2006-01-17
-2920939 Gersdorf Gersdorf 50.75 12.71667 P PPLA4 DE 13 145 14524 14524070 4637 329 Europe/Berlin 2011-04-25
-2920959 Gerolzhofen Gerolzhofen Gerolzhofen 49.9 10.35 P PPL DE 02 6781 242 Europe/Berlin 2012-01-18
-2920963 Gerolstein Gerolstein 50.22224 6.65984 P PPL DE 08 7664 363 Europe/Berlin 2011-07-28
-2920964 Gerolsheim Gerolsheim 49.54778 8.26389 P PPLA4 DE 08 00 07332 07332021 1684 106 Europe/Berlin 2011-04-25
-2920967 Gerolsbach Gerolsbach 48.49283 11.36149 P PPLA4 DE 02 091 09186 09186125 3244 462 Europe/Berlin 2011-04-25
-2920969 Gerolfingen Gerolfingen 49.05 10.51667 P PPLA4 DE 02 095 09571 09571154 1066 427 Europe/Berlin 2011-04-25
-2920977 Geroldshausen Geroldshausen 49.68361 9.90222 P PPLA4 DE 02 096 09679 09679137 1246 316 Europe/Berlin 2011-04-25
-2920979 Geroldsgrün Geroldsgrun 50.33333 11.6 P PPLA4 DE 02 094 09475 09475128 3189 618 Europe/Berlin 2011-04-25
-2920988 Geroda Geroda 50.76667 11.9 P PPLA4 DE 15 00 16075 16075029 274 353 Europe/Berlin 2011-04-25
-2920994 Gernsheim Gernsheim Gernsheim 49.76 8.49583 P PPL DE 05 9377 93 Europe/Berlin 2012-01-18
-2920997 Gernsbach Gernsbach Gernsbach 48.76667 8.33333 P PPL DE 01 14649 172 Europe/Berlin 2012-01-18
-2920999 Gernrode Gernrode Bad Gernrode 51.72575 11.13876 P PPL DE 14 3947 211 Europe/Berlin 2009-03-15
-2921000 Gernrode Gernrode 51.4 10.4 P PPLA4 DE 15 00 16061 16061037 1680 289 Europe/Berlin 2011-04-25
-2921034 Germersheim Germersheim Gemersheim,Germersheim,Germerskhajm,Гермерсхайм 49.22306 8.36389 P PPL DE 08 20972 99 Europe/Berlin 2012-01-18
-2921039 Germering Germering Germering 48.13333 11.36667 P PPL DE 02 36834 538 Europe/Berlin 2012-01-18
-2921061 Gerlingen Gerlingen 48.79954 9.06316 P PPL DE 01 19050 341 Europe/Berlin 2008-12-21
-2921089 Geringswalde Geringswalde Geringswalde 51.08333 12.91667 P PPL DE 13 5125 278 Europe/Berlin 2012-01-18
-2921093 Gering Gering 50.28333 7.26667 P PPLA4 DE 08 00 07137 07137029 380 339 Europe/Berlin 2011-04-25
-2921119 Gerhardshofen Gerhardshofen 49.63123 10.69133 P PPLA4 DE 02 095 09575 09575125 2510 289 Europe/Berlin 2011-07-31
-2921123 Gerhardsbrunn Gerhardsbrunn 49.35 7.51667 P PPLA4 DE 08 00 07335 07335011 170 384 Europe/Berlin 2011-04-25
-2921139 Geretsried Geretsried 47.85775 11.48054 P PPL DE 02 091 23364 607 Europe/Berlin 2010-11-15
-2921152 Gerdshagen Gerdshagen 53.25 12.2 P PPLA4 DE 11 00 12070 12070096 639 95 Europe/Berlin 2011-04-25
-2921162 Gerdau Gerdau 52.96667 10.41667 P PPLA4 DE 06 00 03360 03360009 1614 49 Europe/Berlin 2011-04-25
-2921164 Gerbstedt Gerbstedt Gerbstedt 51.63333 11.61667 P PPL DE 14 3139 179 Europe/Berlin 2012-01-18
-2921165 Gerbrunn Gerbrunn Gerbrun 49.77528 9.99361 P PPLA4 DE 02 096 09679 09679136 6149 236 Europe/Berlin 2011-04-25
-2921179 Gerbershausen Gerbershausen Gerbershausen 51.33333 9.98333 P PPLA4 DE 15 00 16061 16061036 688 295 Europe/Berlin 2011-04-25
-2921188 Gerbach Gerbach 49.66667 7.86667 P PPLA4 DE 08 00 07333 07333025 577 269 Europe/Berlin 2011-04-25
-2921200 Geratskirchen Geratskirchen 48.33333 12.66667 P PPLA4 DE 02 092 09277 09277122 825 433 Europe/Berlin 2011-04-25
-2921223 Gerach Gerach 50.03333 10.8 P PPLA4 DE 02 094 09471 09471133 1020 283 Europe/Berlin 2011-04-25
-2921224 Gerach Gerach 49.75 7.33333 P PPLA4 DE 08 00 07134 07134028 244 368 Europe/Berlin 2011-04-25
-2921226 Gerabronn Gerabronn 48.97071 9.91986 P PPL DE 01 4527 454 Europe/Berlin 2008-12-22
-2921228 Geraberg Geraberg Gera,Geraberg 50.73333 10.85 P PPLA4 DE 15 00 16070 16070019 2591 473 Europe/Berlin 2011-04-25
-2921232 Gera Gera Gera,ge la,gera,Гера,ゲーラ,格拉 50.88029 12.08187 P PPL DE 15 104659 203 Europe/Berlin 2010-05-23
-2921242 Georgsmarienhütte Georgsmarienhutte Georgsmarienhutte,Georgsmarienhütte 52.2 8.05 P PPL DE 06 32580 111 Europe/Berlin 2012-01-18
-2921252 Georgsdorf Georgsdorf 52.56667 7.08333 P PPLA4 DE 06 00 03456 03456005 1312 16 Europe/Berlin 2011-04-25
-2921261 Georgenthal Georgenthal Georgenthal 50.81667 10.66667 P PPL DE 15 2649 485 Europe/Berlin 2012-01-18
-2921267 Georgensgmünd Georgensgmund Georgensgmund,Georgensgmünd 49.18972 11.01667 P PPLA4 DE 02 095 09576 09576121 6582 359 Europe/Berlin 2011-07-31
-2921288 Georgenberg Georgenberg 49.70297 12.42082 P PPLA4 DE 02 093 09374 09374123 1507 601 Europe/Berlin 2011-04-25
-2921305 Genzkow Genzkow Gentzkow,Genzkow 53.63333 13.5 P PPLA4 DE 12 00 13055 13055021 176 33 Europe/Berlin 2011-04-25
-2921307 Gentingen Gentingen 49.9 6.23333 P PPLA4 DE 08 00 07232 07232042 61 205 Europe/Berlin 2011-04-25
-2921309 Genthin Genthin Genthin 52.4 12.16667 P PPL DE 14 14059 34 Europe/Berlin 2012-01-18
-2921314 Gensingen Gensingen 49.9 7.93333 P PPLA4 DE 08 00 07339 07339021 3355 105 Europe/Berlin 2011-04-25
-2921355 Gengenbach Gengenbach Gengenbach 48.4 8.01667 P PPL DE 05 11234 173 Europe/Berlin 2012-01-18
-2921371 Genderkingen Genderkingen 48.7 10.88333 P PPLA4 DE 02 097 09779 09779149 1147 398 Europe/Berlin 2011-04-25
-2921375 Gemünden an der Wohra Gemunden an der Wohra Gemunden,Gemunden an der Wohra,Gemünden,Gemünden an der Wohra 50.96667 8.96667 P PPL DE 05 4100 254 Europe/Berlin 2012-01-18
-2921376 Gemünden Gemunden 50.55 8.01667 P PPLA4 DE 08 00 07143 07143224 0 270 Europe/Berlin 2011-04-25
-2921379 Gemünden Gemunden 50.05 9.7 P PPL DE 02 11375 160 Europe/Berlin 2006-01-17
-2921380 Gemünden Gemunden 49.9 7.46667 P PPLA4 DE 08 00 07140 07140041 1323 319 Europe/Berlin 2011-04-25
-2921384 Gemünd Gemund 49.98333 6.16667 P PPLA4 DE 08 00 07232 07232041 24 287 Europe/Berlin 2011-04-25
-2921388 Gemmrigheim Gemmrigheim 49.02833 9.15556 P PPLA4 DE 01 081 08118 08118018 4071 190 Europe/Berlin 2011-04-25
-2921389 Gemmingen Gemmingen Gemmingen 49.15639 8.98194 P PPLA4 DE 01 081 08125 08125034 4998 212 Europe/Berlin 2011-04-25
-2921393 Gemmerich Gemmerich 50.22788 7.75858 P PPLA4 DE 08 00 07141 07141047 580 337 Europe/Berlin 2011-12-29
-2921437 Geltorf Geltorf Geltorf 54.46667 9.61667 P PPLA4 DE 10 00 01059 01059032 431 24 Europe/Berlin 2011-04-25
-2921444 Gelting Gelting Gelting 54.75 9.9 P PPLA4 DE 10 00 01059 01059112 1867 3 Europe/Berlin 2011-04-25
-2921449 Geltendorf Geltendorf 48.13333 11.03333 P PPLA4 DE 02 091 09181 09181122 5490 614 Europe/Berlin 2011-04-25
-2921466 Gelsenkirchen Gelsenkirchen Chaesekerken,Chäsekerken,Gel'zenkirkhen,Gelsenkirchen,Gelsenkirhene,Gelzenkirchenas,Gelzenkirkhen,Gelzenkirxen,Nkelzen'kirchen,gai er sen ji xing,geljenkileuhen,geruzenkiruhyen,ghylznkyrshn,glznqyrsn,kel sen kheiyr sen,Γκελζενκίρχεν,Гелзенкирхен,Гельзенкирхен,גלזנקירשן,غيلزنكيرشن,گلزنکیرشن,เกลเซนเคียร์เซน,ゲルゼンキルヒェン,盖尔森基兴,겔젠키르헨 51.51667 7.05 P PPL DE 07 270028 39 Europe/Berlin 2012-01-18
-2921473 Gelnhausen Gelnhausen Gelnhausen 50.2 9.18333 P PPL DE 05 21881 131 Europe/Berlin 2012-02-02
-2921520 Gelenberg Gelenberg 50.3 6.86667 P PPLA4 DE 08 00 07233 07233212 89 540 Europe/Berlin 2011-04-25
-2921522 Gelenau Gelenau Gelenau 50.7 12.98333 P PPL DE 13 4869 473 Europe/Berlin 2012-02-02
-2921525 Geldersheim Geldersheim Geldersheim,Geltersheim 50.05 10.15 P PPLA4 DE 02 096 09678 09678132 2598 240 Europe/Berlin 2011-04-25
-2921528 Geldern Geldern Geldern 51.51667 6.33333 P PPL DE 07 34013 27 Europe/Berlin 2012-01-18
-2921547 Gelbensande Gelbensande 54.20272 12.30168 P PPLA4 DE 12 00 13051 13051020 1774 14 Europe/Berlin 2011-04-25
-2921566 Geithain Geithain Geithain 51.05 12.71667 P PPL DE 13 6459 262 Europe/Berlin 2012-01-18
-2921642 Geismar Geismar 51.23169 10.16548 P PPLA4 DE 15 00 16061 16061035 1285 212 Europe/Berlin 2011-04-25
-2921653 Geislingen an der Steige Geislingen an der Steige Geislingen,Stadt Geislingen an der Steige 48.62423 9.82736 P PPL DE 01 081 27962 426 Europe/Berlin 2010-11-15
-2921656 Geislingen Geislingen 48.28768 8.81241 P PPL DE 01 5951 564 Europe/Berlin 2008-12-23
-2921664 Geisleden Geisleden Geisleden,Geissleden,Geißleden 51.35 10.2 P PPLA4 DE 15 00 16061 16061034 1167 328 Europe/Berlin 2011-04-25
-2921682 Geisingen Geisingen Geisingen 47.91667 8.63333 P PPL DE 01 6048 673 Europe/Berlin 2012-01-18
-2921684 Geising Geising 50.76252 13.78561 P PPL DE 13 146 3283 592 Europe/Berlin 2010-11-15
-2921685 Geisig Geisig 50.25 7.8 P PPLA4 DE 08 00 07141 07141046 377 226 Europe/Berlin 2011-04-25
-2921695 Geisfeld Geisfeld 49.71667 6.95 P PPLA4 DE 08 00 07235 07235030 563 375 Europe/Berlin 2011-04-25
-2921707 Geisenheim Geisenheim Geisenheim 49.98333 7.96667 P PPL DE 05 11949 94 Europe/Berlin 2012-01-18
-2921709 Geisenhausen Geisenhausen Geisenhausen 48.46667 12.25 P PPL DE 02 6367 465 Europe/Berlin 2012-01-18
-2921711 Geisenhain Geisenhain Geisenhain 50.83333 11.71667 P PPLA4 DE 15 00 16074 16074022 208 224 Europe/Berlin 2011-04-25
-2921713 Geisenfeld Geisenfeld Geisenfeld 48.68333 11.61667 P PPL DE 02 9769 373 Europe/Berlin 2012-01-18
-2921724 Geiselwind Geiselwind Geiselwind 49.76667 10.46667 P PPL DE 02 2412 372 Europe/Berlin 2012-01-18
-2921736 Geiselhöring Geiselhoring Geiselhoring,Geiselhöring,Geisselhoving 48.83333 12.38333 P PPL DE 02 6872 353 Europe/Berlin 2012-01-18
-2921746 Geiselberg Geiselberg 49.33333 7.7 P PPLA4 DE 08 00 07340 07340012 868 357 Europe/Berlin 2011-04-25
-2921755 Geiselbach Geiselbach 50.11667 9.2 P PPLA4 DE 02 096 09671 09671119 2135 288 Europe/Berlin 2011-04-25
-2921816 Geisa Geisa Geisa 50.71667 9.96667 P PPL DE 15 3561 318 Europe/Berlin 2012-01-18
-2921831 Geilnau Geilnau 50.35 7.93333 P PPLA4 DE 08 00 07141 07141045 382 171 Europe/Berlin 2011-04-25
-2921837 Geilenkirchen Geilenkirchen Geilenkirchen,Gejlenkirkhen,Гейленкирхен 50.96667 6.11667 P PPL DE 07 28334 95 Europe/Berlin 2012-01-18
-2921886 Geiersthal Geiersthal 49.05 12.98333 P PPLA4 DE 02 092 09276 09276122 2236 540 Europe/Berlin 2011-04-25
-2921948 Geichlingen Geichlingen 49.95 6.26667 P PPLA4 DE 08 00 07232 07232040 360 342 Europe/Berlin 2011-04-25
-2921957 Gehrweiler Gehrweiler 49.58333 7.76667 P PPLA4 DE 08 00 07333 07333024 333 279 Europe/Berlin 2011-04-25
-2921996 Gehren Gehren Gehren 50.65 11 P PPL DE 15 3703 487 Europe/Berlin 2012-01-18
-2922008 Gehrden Gehrden 52.31362 9.60033 P PPL DE 06 00 14955 78 Europe/Berlin 2010-11-22
-2922012 Gehrde Gehrde 52.56667 8.01667 P PPLA4 DE 06 00 03459 03459018 2391 38 Europe/Berlin 2011-04-25
-2922014 Gehofen Gehofen Gehofen 51.31667 11.31667 P PPLA4 DE 15 00 16065 16065019 782 136 Europe/Berlin 2011-04-25
-2922022 Gehlweiler Gehlweiler 49.88333 7.46667 P PPLA4 DE 08 00 07140 07140040 254 295 Europe/Berlin 2011-04-25
-2922028 Gehlert Gehlert 50.65 7.83333 P PPLA4 DE 08 00 07143 07143223 559 428 Europe/Berlin 2011-04-25
-2922039 Gehlberg Gehlberg Gehlberg 50.68333 10.8 P PPLA4 DE 15 00 16070 16070017 763 563 Europe/Berlin 2011-04-25
-2922085 Gefrees Gefrees Gefrees 50.1 11.75 P PPL DE 02 4876 538 Europe/Berlin 2012-01-18
-2922091 Gefell Gefell 50.23333 6.91667 P PPLA4 DE 08 00 07233 07233025 93 495 Europe/Berlin 2011-04-25
-2922102 Geesthacht Geesthacht Geesthacht,Stadt Geesthacht 53.43333 10.36667 P PPL DE 10 29487 11 Europe/Berlin 2012-01-18
-2922112 Geeste Geeste 52.6 7.26667 P PPLA4 DE 06 00 03454 03454014 11281 23 Europe/Berlin 2011-04-25
-2922124 Gedern Gedern Gedern 50.43333 9.2 P PPL DE 05 7879 354 Europe/Berlin 2012-01-18
-2922136 Gechingen Gechingen 48.69527 8.82915 P PPLA4 DE 01 082 08235 08235029 4111 481 Europe/Berlin 2011-04-25
-2922140 Gebstedt Gebstedt 51.1 11.5 P PPLA4 DE 15 00 16071 16071021 311 176 Europe/Berlin 2011-04-25
-2922141 Gebsattel Gebsattel 49.35 10.2 P PPLA4 DE 02 095 09571 09571152 1826 369 Europe/Berlin 2011-04-25
-2922143 Gebroth Gebroth 49.88333 7.65 P PPLA4 DE 08 00 07133 07133033 171 386 Europe/Berlin 2011-04-25
-2922174 Gebhardshain Gebhardshain 50.75 7.81667 P PPLA4 DE 08 00 07132 07132039 1869 377 Europe/Berlin 2011-04-25
-2922177 Gebesee Gebesee Gebesee 51.11667 10.93333 P PPL DE 15 2287 154 Europe/Berlin 2012-01-18
-2922207 Gebenbach Gebenbach 49.53333 11.88333 P PPLA4 DE 02 093 09371 09371123 923 446 Europe/Berlin 2011-04-25
-2922227 Gau-Weinheim Gau-Weinheim 49.84639 8.04778 P PPLA4 DE 08 00 07331 07331033 683 140 Europe/Berlin 2011-04-25
-2922230 Gauting Gauting 48.06919 11.37703 P PPLA4 DE 02 091 09188 09188120 19216 583 Europe/Berlin 2011-04-25
-2922237 Gaushorn Gaushorn Gaushorn 54.2 9.23333 P PPLA4 DE 10 00 01051 01051035 212 61 Europe/Berlin 2011-04-25
-2922245 Gau-Odernheim Gau-Odernheim Gau-Odernheim 49.78472 8.19417 P PPLA4 DE 08 00 07331 07331032 3740 145 Europe/Berlin 2011-04-25
-2922271 Gaukönigshofen Gaukonigshofen 49.63333 10 P PPLA4 DE 02 096 09679 09679134 2335 268 Europe/Berlin 2011-04-25
-2922276 Gau-Heppenheim Gau-Heppenheim 49.74222 8.17333 P PPLA4 DE 08 00 07331 07331031 558 191 Europe/Berlin 2011-04-25
-2922278 Gaugrehweiler Gaugrehweiler 49.7 7.86667 P PPLA4 DE 08 00 07333 07333023 558 266 Europe/Berlin 2011-04-25
-2922282 Gauersheim Gauersheim 49.65972 8.07194 P PPLA4 DE 08 00 07333 07333022 651 205 Europe/Berlin 2011-04-25
-2922284 Gauern Gauern Gauern 50.78333 12.2 P PPLA4 DE 15 00 16076 16076019 156 343 Europe/Berlin 2011-04-25
-2922304 Gau-Bischofsheim Gau-Bischofsheim 49.91583 8.27278 P PPLA4 DE 08 00 07339 07339020 1977 170 Europe/Berlin 2011-04-25
-2922305 Gau-Bickelheim Gau-Bickelheim 49.83528 8.02056 P PPLA4 DE 08 00 07331 07331030 2122 128 Europe/Berlin 2011-04-25
-2922309 Gau-Algesheim Gau-Algesheim 49.95669 8.01569 P PPL DE 08 6553 107 Europe/Berlin 2011-01-13
-2922342 Gatersleben Gatersleben 51.82215 11.28661 P PPL DE 14 00 2589 111 Europe/Berlin 2010-11-22
-2922419 Garz Garz 54.31667 13.35 P PPL DE 12 1977 14 Europe/Berlin 2006-01-17
-2922420 Garz Garz 53.88333 14.16667 P PPLA4 DE 12 00 13059 13059022 208 16 Europe/Berlin 2011-04-25
-2922432 Gartz Gartz Gardziec,Gartz an der Oder 53.20829 14.39226 P PPL DE 11 2638 11 Europe/Berlin 2009-01-28
-2922436 Gärtringen Gartringen 48.64176 8.90073 P PPLA4 DE 01 081 08115 08115015 11760 471 Europe/Berlin 2011-04-25
-2922438 Gartow Gartow 53.0247 11.462 P PPL DE 06 1389 20 Europe/Berlin 2010-05-25
-2922484 Garstedt Garstedt 53.28467 10.16137 P PPLA4 DE 06 00 03353 03353012 1459 34 Europe/Berlin 2011-09-02
-2922502 Gars Gars Gars 48.15 12.28333 P PPL DE 02 3802 419 Europe/Berlin 2012-01-18
-2922511 Garrel Garrel 52.95 8.01667 P PPLA4 DE 06 00 03453 03453008 12273 20 Europe/Berlin 2011-04-25
-2922530 Garmisch-Partenkirchen Garmisch-Partenkirchen Garmisch-Partenkirchen,Garmish-Partenkirkhen,Markt Garmisch-Partenkirchen,garumisshu=parutenkiruhyen,Гармиш-Партенкирхен,ガルミッシュ=パルテンキルヒェン 47.49209 11.09576 P PPL DE 02 091 26022 705 Europe/Berlin 2010-11-15
-2922539 Garlstorf Garlstorf 53.23728 10.10137 P PPLA4 DE 06 00 03353 03353011 1073 53 Europe/Berlin 2011-09-02
-2922571 Garding Garding 54.33056 8.78056 P PPLA4 DE 10 00 01054 01054036 3065 6 Europe/Berlin 2011-08-23
-2922580 Gardelegen Gardelegen Gardelengen 52.5252 11.39523 P PPL DE 14 11868 49 Europe/Berlin 2010-07-13
-2922582 Garching bei München Garching bei Munchen Arching,Garching,Garching bei Munchen,Garching bei München 48.25 11.65 P PPL DE 02 15303 484 Europe/Berlin 2012-01-18
-2922583 Garching an der Alz Garching an der Alz Garching,Garching an der Alz 48.13333 12.6 P PPL DE 02 8796 439 Europe/Berlin 2012-01-18
-2922586 Garbsen Garbsen Garbsen 52.41667 9.6 P PPL DE 06 63355 51 Europe/Berlin 2012-01-18
-2922604 Gappenach Gappenach 50.27299 7.34505 P PPLA4 DE 08 00 07137 07137027 368 165 Europe/Berlin 2011-04-25
-2922610 Ganzlin Ganzlin 53.38333 12.25 P PPLA4 DE 12 00 13060 13060020 598 85 Europe/Berlin 2011-04-25
-2922711 Gangloffsömmern Gangloffsommern 51.18333 10.93333 P PPLA4 DE 15 00 16068 16068013 1217 183 Europe/Berlin 2011-04-25
-2922716 Gangkofen Gangkofen Ganghofen,Gangkofen,Gankfoken 48.43333 12.56667 P PPL DE 02 6638 440 Europe/Berlin 2012-01-18
-2922722 Gangelt Gangelt 50.99247 5.99802 P PPLA4 DE 07 053 05370 05370008 11484 77 Europe/Berlin 2011-04-25
-2922728 Gandesbergen Gandesbergen 52.76667 9.23333 P PPLA4 DE 06 00 03256 03256008 478 17 Europe/Berlin 2011-07-31
-2922731 Ganderkesee Ganderkesee Ganderkesee 53.03333 8.53333 P PPLA4 DE 06 00 03458 03458005 31141 34 Europe/Berlin 2011-07-31
-2922747 Gammertingen Gammertingen Gammertingen 48.25 9.21667 P PPL DE 01 6790 669 Europe/Berlin 2012-01-18
-2922753 Gammelshausen Gammelshausen 48.64023 9.65072 P PPLA4 DE 01 081 08117 08117023 1426 441 Europe/Berlin 2011-04-25
-2922754 Gammelsdorf Gammelsdorf Gamelsdorf,Gammelsdorf 48.55 11.95 P PPLA4 DE 02 091 09178 09178125 1471 493 Europe/Berlin 2011-04-25
-2922761 Gammelin Gammelin 53.51667 11.23333 P PPLA4 DE 12 00 13054 13054031 485 43 Europe/Berlin 2011-04-25
-2922768 Gammelby Gammelby 54.5 9.8 P PPLA4 DE 10 00 01058 01058057 554 14 Europe/Berlin 2011-04-25
-2922770 Gamlen Gamlen 50.23333 7.2 P PPLA4 DE 08 00 07135 07135033 558 377 Europe/Berlin 2011-04-25
-2922805 Gallmersgarten Gallmersgarten 49.45 10.26667 P PPLA4 DE 02 095 09575 09575124 805 376 Europe/Berlin 2011-04-25
-2922816 Gallin Gallin 53.49353 10.83317 P PPLA4 DE 12 00 13054 13054030 0 39 Europe/Berlin 2011-08-28
-2923234 Galenberg Galenberg 50.43333 7.2 P PPLA4 DE 08 00 07131 07131204 221 426 Europe/Berlin 2011-04-25
-2923237 Galenbeck Galenbeck 53.65 13 P PPLA4 DE 12 00 13055 13055089 0 71 Europe/Berlin 2011-04-25
-2923253 Gaißach Gaissach 47.75 11.58333 P PPLA4 DE 02 091 09173 09173124 3028 731 Europe/Berlin 2011-04-25
-2923305 Gaimersheim Gaimersheim Goamascham 48.80705 11.36801 P PPL DE 02 091 10840 384 Europe/Berlin 2010-11-15
-2923315 Gailingen Gailingen 47.69711 8.75567 P PPL DE 01 083 3008 463 Europe/Berlin 2010-11-15
-2923325 Gaildorf Gaildorf 49.00027 9.76953 P PPL DE 01 12571 337 Europe/Berlin 2008-12-22
-2923333 Gaienhofen Gaienhofen 47.68333 8.98333 P PPLA4 DE 01 083 08335 08335025 3157 426 Europe/Berlin 2011-04-25
-2923334 Gaiberg Gaiberg 49.36639 8.74972 P PPLA4 DE 01 082 08226 08226022 2437 291 Europe/Berlin 2011-04-25
-2923362 Gaggenau Gaggenau Gaggenau 48.8 8.33333 P PPL DE 01 29496 186 Europe/Berlin 2012-01-18
-2923369 Gager Gager 54.30966 13.68433 P PPLA4 DE 12 00 13061 13061010 415 1 Europe/Berlin 2011-04-25
-2923370 Gägelow Gagelow 53.9 11.38333 P PPLA4 DE 12 00 13058 13058029 0 27 Europe/Berlin 2011-04-25
-2923371 Gägelow Gagelow 53.68558 11.89639 P PPL DE 12 2676 45 Europe/Berlin 2010-05-28
-2923386 Gädheim Gadheim 50.03333 10.35 P PPLA4 DE 02 096 09674 09674139 0 316 Europe/Berlin 2011-04-25
-2923387 Gadheim Gadheim 49.85 9.91667 P PPL DE 02 1255 261 Europe/Berlin 2006-01-17
-2923408 Gadegast Gadegast 51.88333 12.9 P PPLA4 DE 14 00 15091 15091095 216 75 Europe/Berlin 2011-04-25
-2923410 Gadebusch Gadebusch Gadebusch 53.7 11.11667 P PPL DE 12 6030 29 Europe/Berlin 2012-02-02
-2923418 Gackenbach Gackenbach 50.36667 7.86667 P PPLA4 DE 08 00 07143 07143020 572 292 Europe/Berlin 2011-04-25
-2923426 Gachenbach Gachenbach 48.5 11.23333 P PPLA4 DE 02 091 09185 09185131 2320 458 Europe/Berlin 2011-04-25
-2923428 Gabsheim Gabsheim 49.82778 8.17611 P PPLA4 DE 08 00 07331 07331029 776 165 Europe/Berlin 2011-04-25
-2923439 Gablingen Gablingen 48.45 10.81667 P PPLA4 DE 02 097 09772 09772145 4707 466 Europe/Berlin 2011-04-25
-2923444 Gablenz Gablenz Gablenz,Jabtonc,Jabtońc 51.53333 14.66667 P PPLA4 DE 13 146 14626 14626100 1950 142 Europe/Berlin 2011-04-25
-2923500 Bad Füssing Bad Fussing Bad Fussing,Bad Füssing,Fussing,Füssing 48.351 13.312 P PPL DE 02 092 09275 09275116 6701 325 Europe/Berlin 2011-07-01
-2923503 Fußgönheim Fussgonheim 49.46111 8.29222 P PPLA4 DE 08 00 07338 07338008 2436 102 Europe/Berlin 2011-04-25
-2923507 Füssen Fussen Fuessen,Füssen,fu~yussen,フュッセン 47.57143 10.70171 P PPL DE 02 097 13893 800 Europe/Berlin 2010-11-15
-2923521 Furtwangen Furtwangen Furtwangen,Furtwangen im Schwarzwald,furutovu~angen,فورتوانگن,フルトヴァンゲン 48.05 8.2 P PPL DE 01 9655 892 Europe/Berlin 2012-01-18
-2923529 Furth im Wald Furth im Wald Brod nad Lesy,Furt,Furth,Furth im Wald 49.30972 12.84 P PPL DE 02 9480 405 Europe/Berlin 2012-01-18
-2923534 Fürthen Furthen 50.78333 7.66667 P PPLA4 DE 08 00 07132 07132038 1276 139 Europe/Berlin 2011-04-25
-2923543 Fürth Furth 49.65083 8.78472 P PPLA4 DE 05 064 06431 06431007 11181 198 Europe/Berlin 2011-04-25
-2923544 Fürth Furth Firt,Fjurt,Fuerth,Fürth,fei er te,fu~yuruto,Фирт,Фюрт,フュルト,菲尔特 49.47593 10.98856 P PPL DE 02 112025 302 Europe/Berlin 2008-10-07
-2923549 Furth Furth 48.6 12.03333 P PPLA4 DE 02 092 09274 09274132 0 473 Europe/Berlin 2011-04-25
-2923553 Furth Furth 48.4 12.38333 P PPL DE 02 3236 477 Europe/Berlin 2006-01-17
-2923584 Fürstenzell Furstenzell Furstenzell,Fürstenzell 48.53333 13.31667 P PPL DE 02 7719 389 Europe/Berlin 2012-01-18
-2923588 Fürstenwalde Furstenwalde Furstenwalde,Fürstenwalde 52.36667 14.06667 P PPL DE 11 33539 43 Europe/Berlin 2012-01-18
-2923595 Fürstenstein Furstenstein 48.71667 13.33333 P PPLA4 DE 02 092 09275 09275121 3459 499 Europe/Berlin 2011-04-25
-2923625 Fürstenfeldbruck Fuerstenfeldbruck Bruck,Fuerstenfeldbruck,Fuerstenfeldburg,Furstenfeld,Fürstenfeldbruck,fjurstenfel'dbruk,Фюрстенфельдбрук 48.17904 11.2547 P PPL DE 02 091 33533 517 519 Europe/Berlin 2012-03-26
-2923626 Fürsteneck Fursteneck 48.71667 13.46667 P PPLA4 DE 02 092 09272 09272119 1058 354 Europe/Berlin 2011-04-25
-2923637 Fürstenberg Furstenberg 53.18333 13.15 P PPL DE 11 6774 51 Europe/Berlin 2006-01-17
-2923638 Fürstenberg Furstenberg 51.73333 9.4 P PPLA4 DE 06 00 03255 03255014 1323 181 Europe/Berlin 2011-04-25
-2923658 Fürstenau Furstenau 52.51667 7.71667 P PPL DE 06 9946 70 Europe/Berlin 2006-01-17
-2923706 Fürfeld Furfeld 49.78333 7.9 P PPLA4 DE 08 00 07133 07133032 1553 323 Europe/Berlin 2011-04-25
-2923753 Fünfstetten Funfstetten 48.81667 10.76667 P PPLA4 DE 02 097 09779 09779148 1373 495 Europe/Berlin 2011-04-25
-2923815 Fuldatal Fuldatal Fuldatal 51.38333 9.56667 P PPLA4 DE 05 066 06633 06633009 12186 172 Europe/Berlin 2011-07-31
-2923820 Fuldabrück Fuldabruck 51.26667 9.48333 P PPLA4 DE 05 066 06633 06633008 0 196 Europe/Berlin 2011-04-25
-2923822 Fulda Fulda Ful'da,Fulda,furuda,Фульда,フルダ 50.55162 9.67518 P PPL DE 05 066 63760 265 Europe/Berlin 2010-11-15
-2923850 Fuhlsbüttel Fuhlsbuettel Fuhlsbuttel,Fuhlsbüttel 53.63459 10.01608 P PPLX DE 04 11995 21 Europe/Berlin 2011-08-21
-2923860 Fuhlenhagen Fuhlenhagen Fuhlenhagen 53.56667 10.51667 P PPLA4 DE 10 00 01053 01053031 291 56 Europe/Berlin 2011-04-25
-2923861 Fuhlendorf Fuhlendorf 54.36048 12.60188 P PPLA4 DE 12 00 13057 13057029 997 1 Europe/Berlin 2011-04-25
-2923862 Fuhlendorf Fuhlendorf 53.94366 9.88684 P PPLA4 DE 10 00 01060 01060023 381 29 Europe/Berlin 2011-09-05
-2923900 Fuchsstadt Fuchsstadt 50.10825 9.9337 P PPLA4 DE 02 096 09672 09672124 1819 209 Europe/Berlin 2011-04-25
-2923907 Fuchsmühl Fuchsmuhl Fuchsmuehl,Fuchsmuhl,Fuchsmühl 49.91667 12.15 P PPL DE 02 1774 549 Europe/Berlin 2012-01-18
-2923936 Fuchshofen Fuchshofen 50.42832 6.85101 P PPLA4 DE 08 00 07131 07131022 108 278 Europe/Berlin 2011-04-25
-2924125 Frücht Frucht 50.31667 7.68333 P PPLA4 DE 08 00 07141 07141044 609 242 Europe/Berlin 2011-04-25
-2924128 Fröttstädt Frottstadt 50.93333 10.58333 P PPLA4 DE 15 00 16067 16067023 424 307 Europe/Berlin 2011-04-25
-2924138 Frose Frose Frose 51.8 11.38333 P PPL DE 14 1549 102 Europe/Berlin 2012-01-18
-2924186 Frontenhausen Frontenhausen Frontenhausen 48.55 12.53333 P PPL DE 02 4430 407 Europe/Berlin 2012-01-18
-2924195 Fronhofen Fronhofen 49.98333 7.46667 P PPLA4 DE 08 00 07140 07140039 213 377 Europe/Berlin 2011-04-25
-2924201 Fronhausen Fronhausen 50.7 8.7 P PPLA4 DE 05 065 06534 06534009 4116 167 Europe/Berlin 2011-07-31
-2924206 Fröndenberg Frondenberg Frondenberg,Fröndenberg 51.46667 7.76667 P PPL DE 07 22964 124 Europe/Berlin 2012-01-18
-2924214 Frömmstedt Frommstedt 51.25 11.03333 P PPLA4 DE 15 00 16068 16068012 614 209 Europe/Berlin 2011-04-25
-2924242 Frohnsdorf Frohnsdorf 50.93333 12.58333 P PPLA4 DE 15 00 16077 16077006 334 231 Europe/Berlin 2011-04-25
-2924258 Frohnhofen Frohnhofen 49.45384 7.29939 P PPLA4 DE 08 00 07336 07336027 600 330 Europe/Berlin 2011-04-25
-2924313 Frohburg Frohburg Frohburg 51.05 12.55 P PPL DE 13 7983 177 Europe/Berlin 2012-01-18
-2924326 Fritzlar Fritzlar Fritzlar 51.13333 9.28333 P PPL DE 05 14814 195 Europe/Berlin 2012-01-18
-2924335 Frittlingen Frittlingen 48.12709 8.70774 P PPLA4 DE 01 083 08327 08327017 2108 647 Europe/Berlin 2011-04-25
-2924347 Friolzheim Friolzheim 48.83333 8.83333 P PPLA4 DE 01 082 08236 08236019 3575 447 Europe/Berlin 2011-04-25
-2924360 Friesoythe Friesoythe Friesoythe 53.01667 7.85 P PPL DE 06 20311 5 Europe/Berlin 2012-01-18
-2924371 Friesenried Friesenried 47.86667 10.53333 P PPLA4 DE 02 097 09777 09777128 1523 756 Europe/Berlin 2011-04-25
-2924381 Friesenheim Friesenheim 49.83639 8.25694 P PPLA4 DE 08 00 07339 07339018 647 132 Europe/Berlin 2011-04-25
-2924382 Friesenheim Friesenheim 48.36667 7.88333 P PPLA4 DE 01 083 08317 08317031 0 191 Europe/Berlin 2011-04-25
-2924388 Friesenhagen Friesenhagen 50.9 7.8 P PPLA4 DE 08 00 07132 07132037 1692 347 Europe/Berlin 2011-04-25
-2924406 Friesack Friesack 52.73764 12.57969 P PPL DE 11 2814 34 Europe/Berlin 2009-01-29
-2924412 Friemar Friemar Friemar 50.98333 10.78333 P PPLA4 DE 15 00 16067 16067022 1213 284 Europe/Berlin 2011-04-25
-2924428 Frielendorf Frielendorf Freilendorf,Frielendorf 50.98333 9.33333 P PPLA4 DE 05 066 06634 06634004 8239 234 Europe/Berlin 2011-04-25
-2924434 Friedrich-Wilhelm-Lübke-Koog Friedrich-Wilhelm-Lubke-Koog Friedrich-Wilhelm-Lubke-Koog,Friedrich-Wilhelm-Lübke-Koog 54.86667 8.63333 P PPLA4 DE 10 00 01054 01054034 173 0 Europe/Berlin 2011-04-25
-2924437 Friedrichswerth Friedrichswerth Friedrichswerth 51 10.55 P PPLA4 DE 15 00 16067 16067021 572 267 Europe/Berlin 2011-04-25
-2924443 Friedrichswalde Friedrichswalde 53.02919 13.70682 P PPLA4 DE 11 00 12060 12060068 938 74 Europe/Berlin 2011-07-31
-2924461 Friedrichsthal Friedrichsthal Friedrichsthal 49.31667 7.1 P PPL DE 09 11440 324 Europe/Berlin 2012-01-18
-2924466 Friedrichsthal Friedrichsthal 51.48333 10.58333 P PPLA4 DE 15 00 16062 16062007 286 254 Europe/Berlin 2011-04-25
-2924477 Friedrichstadt Friedrichstadt 54.37566 9.08672 P PPL DE 10 00 2548 3 Europe/Berlin 2010-11-20
-2924483 Friedrichsruhe Friedrichsruhe 53.52766 11.75125 P PPLA4 DE 12 00 13060 13060017 759 49 Europe/Berlin 2011-07-31
-2924505 Friedrichskoog Friedrichskoog Friedrichskoog,Konig Friedfricks VII Koog 54.01667 8.91667 P PPLA4 DE 10 00 01051 01051034 2437 254 Europe/Berlin 2011-04-25
-2924515 Friedrichsholm Friedrichsholm Friedrichsholm 54.3 9.43333 P PPLA4 DE 10 00 01058 01058056 473 10 Europe/Berlin 2011-04-25
-2924585 Friedrichshafen Friedrichshafen Fridrikhskhafen,Friedrichshafen,fei te lie gang,furidorihisuhafen,Фридрихсхафен,フリードリヒスハーフェン,腓特烈港 47.65 9.48333 P PPL DE 01 58403 396 Europe/Berlin 2012-01-18
-2924593 Friedrichsgraben Friedrichsgraben Friedrichsgraben 54.26667 9.41667 P PPLA4 DE 10 00 01058 01058055 67 254 Europe/Berlin 2011-04-25
-2924595 Friedrichsgabekoog Friedrichsgabekoog Friedrichsgabekoog 54.15 8.95 P PPLA4 DE 10 00 01051 01051033 70 0 Europe/Berlin 2011-04-25
-2924625 Friedrichsdorf Friedrichsdorf 50.24962 8.64281 P PPL DE 05 064 24435 202 Europe/Berlin 2010-11-15
-2924628 Friedrichsbrunn Friedrichsbrunn Friedrichsbrunn 51.7 11.05 P PPL DE 14 1083 552 Europe/Berlin 2012-01-18
-2924656 Friedrichroda Friedrichroda 50.85754 10.56507 P PPL DE 15 5492 428 Europe/Berlin 2010-09-01
-2924679 Friedland Friedland Friedland 53.68333 13.55 P PPL DE 12 6966 12 Europe/Berlin 2012-02-02
-2924680 Friedland Friedland Friedland 52.1 14.26667 P PPL DE 11 3597 57 Europe/Berlin 2012-01-18
-2924681 Friedland Friedland 51.41667 9.93333 P PPLA4 DE 06 00 03152 03152009 10568 255 Europe/Berlin 2011-04-25
-2924703 Friedewald Friedewald Freidewald,Friedewald 50.88333 9.86667 P PPLA4 DE 05 066 06632 06632006 2435 392 Europe/Berlin 2011-04-25
-2924704 Friedewald Friedewald 50.71667 7.96667 P PPLA4 DE 08 00 07132 07132036 1198 441 Europe/Berlin 2011-04-25
-2924716 Friedersdorf Friedersdorf Friedersdorf 51.65 12.36667 P PPL DE 14 2028 84 Europe/Berlin 2012-01-18
-2924722 Friedersdorf Friedersdorf Friedersdorf 51.03333 14.56667 P PPL DE 13 1512 354 Europe/Berlin 2012-02-02
-2924724 Friedersdorf Friedersdorf 50.61667 11.03333 P PPLA4 DE 15 00 16070 16070016 227 648 Europe/Berlin 2011-04-25
-2924738 Friedenweiler Friedenweiler 47.91778 8.25627 P PPLA4 DE 01 083 08315 08315039 2247 904 Europe/Berlin 2011-04-25
-2924766 Friedenfels Friedenfels 49.88333 12.11667 P PPLA4 DE 02 093 09377 09377118 1352 542 Europe/Berlin 2011-04-25
-2924774 Friedelsheim Friedelsheim 49.44694 8.22306 P PPLA4 DE 08 00 07332 07332020 1499 123 Europe/Berlin 2011-04-25
-2924775 Friedelshausen Friedelshausen Friedelshausen 50.66667 10.23333 P PPLA4 DE 15 00 16066 16066025 353 410 Europe/Berlin 2011-04-25
-2924788 Friedeburg Friedeburg Friedeburg 53.45 7.83333 P PPLA4 DE 06 00 03462 03462005 10607 10 Europe/Berlin 2011-04-25
-2924802 Friedberg Friedberg Fridberg,Friedberg,Friedberg in Hessen,Friedburg,Фридберг 50.35 8.76667 P PPL DE 05 27484 142 Europe/Berlin 2012-01-18
-2924803 Friedberg Friedberg Fridberg,Friedberg bei Augsburg,Фридберг 48.35693 10.98461 P PPL DE 02 097 09771 29189 514 517 Europe/Berlin 2010-11-15
-2924819 Fridolfing Fridolfing Friedolfing 47.99773 12.82628 P PPLA4 DE 02 091 09189 09189118 4133 390 Europe/Berlin 2011-04-25
-2924820 Fridingen an der Donau Fridingen an der Donau Fridingen 48.02196 8.93223 P PPL DE 01 083 3276 626 Europe/Berlin 2010-11-15
-2924826 Frickingen Frickingen Frickengen,Frickingen 47.81667 9.26667 P PPLA4 DE 01 084 08435 08435015 2660 466 Europe/Berlin 2011-04-25
-2924836 Frickenhausen Frickenhausen 49.66667 10.08333 P PPL DE 02 1289 184 Europe/Berlin 2006-01-17
-2924837 Frickenhausen Frickenhausen 48.59353 9.36005 P PPLA4 DE 01 081 08116 08116020 8841 322 Europe/Berlin 2011-04-25
-2924850 Freyung Freyung Frejung,Freyung,Фрейунг 48.8 13.55 P PPL DE 02 6987 624 Europe/Berlin 2012-01-18
-2924854 Freystadt Freystadt Feyenstadt,Freystadt 49.20056 11.32944 P PPL DE 02 8555 409 Europe/Berlin 2012-01-18
-2924862 Freyburg Freyburg Freyburg 51.2 11.76667 P PPL DE 14 4451 137 Europe/Berlin 2012-01-18
-2924888 Freudental Freudental Freudental 49.00972 9.05917 P PPLA4 DE 01 081 08118 08118016 2333 293 Europe/Berlin 2011-04-25
-2924894 Freudenstadt Freudenstadt 48.43333 8.41667 P PPL DE 01 23868 804 Europe/Berlin 2006-01-17
-2924910 Freudenburg Freudenburg 49.54348 6.53292 P PPLA4 DE 08 00 07235 07235028 1512 371 Europe/Berlin 2011-04-25
-2924915 Freudenberg Freudenberg Freudenberg 50.9 7.86667 P PPL DE 07 18601 318 Europe/Berlin 2012-01-18
-2924916 Freudenberg Freudenberg Freudenberg 49.745 9.32917 P PPL DE 01 4089 248 Europe/Berlin 2012-01-18
-2924917 Freudenberg Freudenberg Freudenberg 49.48333 11.98333 P PPLA4 DE 02 093 09371 09371122 4268 479 Europe/Berlin 2011-04-25
-2924936 Fretterode Fretterode Fretterode 51.31667 10 P PPLA4 DE 15 00 16061 16061033 190 330 Europe/Berlin 2011-04-25
-2924941 Frettenheim Frettenheim 49.75972 8.24472 P PPLA4 DE 08 00 07331 07331028 334 168 Europe/Berlin 2011-04-25
-2924947 Frestedt Frestedt Frestedt 54.03333 9.18333 P PPLA4 DE 10 00 01051 01051032 385 3 Europe/Berlin 2011-04-25
-2924956 Fresendelf Fresendelf Fresendelf 54.39375 9.24688 P PPLA4 DE 10 00 01054 01054032 99 8 Europe/Berlin 2012-01-05
-2924958 Fresenburg Fresenburg 52.88333 7.3 P PPLA4 DE 06 00 03454 03454013 908 9 Europe/Berlin 2011-04-25
-2924967 Freren Freren Freren 52.48333 7.55 P PPL DE 06 5150 36 Europe/Berlin 2012-01-18
-2924983 Frensdorf Frensdorf 49.81667 10.86667 P PPLA4 DE 02 094 09471 09471131 4827 257 Europe/Berlin 2011-04-25
-2924999 Fremdingen Fremdingen 48.96667 10.46667 P PPLA4 DE 02 097 09779 09779147 2192 444 Europe/Berlin 2011-04-25
-2925001 Frelsdorf Frelsdorf Frelsdorf 53.49131 8.8991 P PPLA4 DE 06 00 03352 03352017 709 14 Europe/Berlin 2011-10-30
-2925003 Frellstedt Frellstedt 52.20571 10.91543 P PPLA4 DE 06 00 03154 03154005 862 120 Europe/Berlin 2011-05-03
-2925017 Freital Freital Frajtal',Freital,Freithal,Фрайталь 51.00166 13.6488 P PPL DE 13 39027 171 Europe/Berlin 2010-10-15
-2925027 Freistatt Freistatt 52.62296 8.65225 P PPLA4 DE 06 00 03251 03251018 905 42 Europe/Berlin 2011-04-25
-2925034 Freising Freising Frajzing,Freising,Freysing,Frisinga,Fryzynga,fu lai xin,Фрайзинг,弗赖辛 48.40351 11.74876 P PPL DE 02 42570 448 Europe/Berlin 2010-11-19
-2925038 Freisen Freisen 49.55 7.25 P PPLA4 DE 09 00 10046 10046111 8778 460 Europe/Berlin 2011-04-25
-2925047 Freisbach Freisbach 49.27167 8.27194 P PPLA4 DE 08 00 07334 07334006 1040 117 Europe/Berlin 2011-04-25
-2925051 Freirachdorf Freirachdorf 50.58333 7.71667 P PPLA4 DE 08 00 07143 07143019 679 272 Europe/Berlin 2011-04-25
-2925053 Freinsheim Freinsheim 49.51389 8.21 P PPL DE 08 4989 114 Europe/Berlin 2006-01-17
-2925062 Freimersheim Freimersheim 49.70833 8.08917 P PPLA4 DE 08 00 07331 07331027 603 243 Europe/Berlin 2011-04-25
-2925069 Freilingen Freilingen 50.56667 7.83333 P PPLA4 DE 08 00 07143 07143018 725 437 Europe/Berlin 2011-04-25
-2925079 Frei-Laubersheim Frei-Laubersheim 49.8 7.9 P PPLA4 DE 08 00 07133 07133031 1039 178 Europe/Berlin 2011-04-25
-2925080 Freilassing Freilassing Freilassing 47.85 12.98333 P PPL DE 02 15909 417 Europe/Berlin 2012-01-18
-2925086 Freihung Freihung Freihung 49.61667 11.91667 P PPL DE 02 2610 417 Europe/Berlin 2012-01-18
-2925134 Freienwill Freienwill Freienwill 54.73333 9.5 P PPLA4 DE 10 00 01059 01059182 1486 47 Europe/Berlin 2011-04-25
-2925141 Freiensteinau Freiensteinau 50.42509 9.40267 P PPLA4 DE 05 065 06535 06535004 3416 432 Europe/Berlin 2011-04-25
-2925147 Freienorla Freienorla Freienorla 50.76667 11.55 P PPLA4 DE 15 00 16074 16074021 350 218 Europe/Berlin 2011-04-25
-2925153 Freienhagen Freienhagen 51.41667 10.05 P PPLA4 DE 15 00 16061 16061032 318 319 Europe/Berlin 2011-04-25
-2925162 Freienbessingen Freienbessingen Freienbessingen 51.23333 10.76667 P PPLA4 DE 15 00 16065 16065018 1050 295 Europe/Berlin 2011-04-25
-2925177 Freiburg Freiburg Frajburg,Freiburg,Freiburg im Breisgau,Fribourg-en-Brisgau,Friburg de Brisgovia,Friburg de Brisgòvia,Friburgo de Brisgovia,Friburgo in Brisgovia,Fryburg Bryzgowijski,Phraimpournk,fraybwrg,fu lai bao,furaiburuku,Φράιμπουργκ,Фрайбург,Фрајбург,فرایبورگ,フライブルク,弗莱堡 47.9959 7.85222 P PPLA2 DE 01 083 215966 278 279 Europe/Berlin 2010-11-21
-2925181 Freiburg Freiburg Frajburg,Freiburg,Freiburg an der Elbe,Фрайбург 53.83333 9.28333 P PPL DE 06 1890 255 Europe/Berlin 2012-01-18
-2925189 Freiberg am Neckar Freiberg am Neckar Freiberg 48.93196 9.2024 P PPL DE 01 15235 256 Europe/Berlin 2008-12-21
-2925192 Freiberg Freiberg Frajberg,Freiberg,Freiburg,furaiberuku,Фрайберг,フライベルク 50.91667 13.36667 P PPL DE 13 43670 402 Europe/Berlin 2012-01-18
-2925226 Fredesdorf Fredesdorf Fredesdorf 53.88333 10.2 P PPLA4 DE 10 00 01060 01060022 363 49 Europe/Berlin 2011-04-25
-2925234 Freden Freden Freden 51.93333 9.9 P PPL DE 06 3428 114 Europe/Berlin 2012-02-02
-2925239 Fredeburg Fredeburg 53.66667 10.71667 P PPLA4 DE 10 00 01053 01053030 39 46 Europe/Berlin 2011-04-25
-2925240 Bad Fredeburg Bad Fredeburg Fredeburg 51.1893 8.30978 P PPL DE 07 3995 818 460 Europe/Berlin 2011-12-21
-2925249 Freckenfeld Freckenfeld 49.065 8.11389 P PPLA4 DE 08 00 07334 07334005 1597 135 Europe/Berlin 2011-04-25
-2925259 Frechen Frechen Frechen 50.91667 6.81667 P PPL DE 07 053 05362 48733 67 Europe/Berlin 2012-01-18
-2925267 Fraureuth Fraureuth Frauenreuth,Fraureuth 50.7 12.35 P PPLA4 DE 13 145 14524 14524060 5841 309 Europe/Berlin 2011-04-25
-2925274 Fraunberg Fraunberg 48.36667 12 P PPLA4 DE 02 091 09177 09177120 3236 449 Europe/Berlin 2011-04-25
-2925286 Frauenwald Frauenwald Frauenwald 50.58333 10.85 P PPLA4 DE 15 00 16070 16070015 1131 735 Europe/Berlin 2011-04-25
-2925306 Frauenstein Frauenstein 50.80279 13.5379 P PPL DE 13 145 3364 650 Europe/Berlin 2010-11-15
-2925313 Frauensee Frauensee 50.88333 10.13333 P PPLA4 DE 15 00 16063 16063029 952 370 Europe/Berlin 2011-04-25
-2925326 Frauenprießnitz Frauenpriessnitz Frauenpriessnitz,Frauenprießnitz 51.01667 11.73333 P PPLA4 DE 15 00 16074 16074019 1166 318 Europe/Berlin 2011-04-25
-2925383 Fraueneuharting Fraueneuharting 48.03873 12.0478 P PPL DE 02 091 1416 527 Europe/Berlin 2010-11-15
-2925411 Frauenberg Frauenberg 49.66667 7.28333 P PPLA4 DE 08 00 07134 07134027 473 276 Europe/Berlin 2011-04-25
-2925440 Frauenau Frauenau Frauenau 48.98895 13.30067 P PPLA4 DE 02 092 09276 09276121 2966 621 Europe/Berlin 2011-08-22
-2925458 Frasdorf Frasdorf 47.80376 12.28512 P PPLA4 DE 02 091 09187 09187132 3005 602 Europe/Berlin 2011-07-31
-2925483 Franzenheim Franzenheim 49.68333 6.68333 P PPLA4 DE 08 00 07235 07235027 331 333 Europe/Berlin 2011-04-25
-2925488 Franzburg Franzburg Franzburg 54.18333 12.88333 P PPL DE 12 1754 16 Europe/Berlin 2012-01-18
-2925494 Frankweiler Frankweiler 49.22778 8.05806 P PPLA4 DE 08 00 07337 07337026 931 240 Europe/Berlin 2011-04-25
-2925499 Frankleben Frankleben 51.31667 11.93333 P PPL DE 14 1650 107 Europe/Berlin 2006-01-17
-2925507 Fränkisch-Crumbach Frankisch-Crumbach 49.74611 8.85861 P PPLA4 DE 05 064 06437 06437007 3353 192 Europe/Berlin 2011-04-25
-2925533 Frankfurt am Main Frankfurt am Main FRA,Francfort,Francfort - Frankfurt am Main,Francfort d'o Meno,Francfort del Meno,Francfort sul Main,Francfort-sur-le-Main,Francfòrt sul Main,Francoforte,Francoforte sul Meno,Francofurtum ad Moenum,Francuforti supro Menu,Francuforti suprô Menu,Frankford-on-Main,Frankfort,Frankfort an'n Main,Frankfort an’n Main,Frankfort on the Main,Frankfurt,Frankfurt am Main,Frankfurt del Main,Frankfurt na Majn,Frankfurt na Majni,Frankfurt nad Menem,Frankfurt nad Mohanem,Frankfurt nad Mohanom,Frankfurt-na-Majne,Frankfurt/Main,Frankfurtas prie Maino,Frankfurte pie Mainas,Frankfurto ce Majno,Frankfurto ĉe Majno,Fráncfort,Fráncfort - Frankfurt am Main,Fráncfort d'o Meno,Fráncfort del Meno,Phran'kphourte,fa lan ke fu,frankfwrt,peulangkeupuleuteu,prnqpwrt,Φρανκφούρτη,Франкфурт на Майн,Франкфурт на Мајни,Франкфурт-на-Майне,פרנקפורט,فرانكفورت,فرانکفورت,แฟรงค์เฟิร์ต,ფრანკფურტ-ამ-მაინი,フランクフルト・アム・マイン,法兰克福,프랑크푸르트 50.11667 8.68333 P PPL DE 05 064 06412 650000 109 Europe/Berlin 2012-02-20
-2925535 Frankfurt (Oder) Frankfurt (Oder) Francfort,Francfort del Oder,Francfort del Odra,Francfort-sur-l'Oder,Francoforte sull'Oder,Frankfort an de Oder,Frankfort on the Oder,Frankfurt,Frankfurt (Oder),Frankfurt Oderi aeaeres,Frankfurt Oderi ääres,Frankfurt an der Oder,Frankfurt de l'Oder,Frankfurt na Oder,Frankfurt na Odri,Frankfurt nad Odra,Frankfurt nad Odrą,Frankfurt-na-Odere,Frankfurtas prie Oderio,Frankfurto ce Odro,Frankfurto ĉe Odro,Fráncfort,Fráncfort del Odra,Fráncfort del Óder,Франкфурт на Одер,Франкфурт-на-Одере,פרנקפורט על האודר,ფრანკფურტ-ან-დერ-ოდერი,フランクフルト・アン・デア・オーダー 52.34714 14.55062 P PPL DE 11 51691 28 Europe/Berlin 2009-03-09
-2925542 Frankenwinheim Frankenwinheim 49.88733 10.31432 P PPLA4 DE 02 096 09678 09678130 1025 230 Europe/Berlin 2011-04-25
-2925548 Frankenthal Frankenthal 51.13333 14.11667 P PPLA4 DE 13 146 14625 14625140 1071 305 Europe/Berlin 2011-04-25
-2925550 Frankenthal Frankenthal Frankental',Frankenthal,Франкенталь 49.53722 8.355 P PPL DE 08 47438 98 Europe/Berlin 2012-01-18
-2925557 Frankenstein Frankenstein 50.9 13.21667 P PPLA4 DE 13 145 14522 14522160 1226 378 Europe/Berlin 2011-04-25
-2925558 Frankenstein Frankenstein Frankenstein 49.43333 7.98333 P PPLA4 DE 08 00 07335 07335010 1108 272 Europe/Berlin 2011-04-25
-2925561 Frankenroda Frankenroda 51.1 10.28333 P PPLA4 DE 15 00 16063 16063028 373 179 Europe/Berlin 2011-04-25
-2925589 Frankenheim Frankenheim Frankenheim 50.53333 10.08333 P PPL DE 15 1287 672 Europe/Berlin 2012-02-02
-2925600 Frankenhain Frankenhain 50.75 10.78333 P PPLA4 DE 15 00 16070 16070014 850 496 Europe/Berlin 2011-04-25
-2925611 Frankenfeld Frankenfeld 52.7684 9.42987 P PPLA4 DE 06 00 03358 03358009 563 21 Europe/Berlin 2011-07-31
-2925614 Frankeneck Frankeneck 49.37639 8.04861 P PPLA4 DE 08 00 07332 07332018 879 231 Europe/Berlin 2011-04-25
-2925617 Frankendorf Frankendorf 50.96667 11.45 P PPLA4 DE 15 00 16071 16071019 183 274 Europe/Berlin 2011-04-25
-2925629 Frankenberg Frankenberg Frankenberg 51.06667 8.8 P PPL DE 05 19276 303 Europe/Berlin 2012-01-18
-2925630 Frankenberg Frankenberg Frankenberg 50.91667 13.03333 P PPL DE 13 16850 250 Europe/Berlin 2012-01-18
-2925651 Frankenau Frankenau Frankenau 51.1 8.93333 P PPL DE 05 3572 400 Europe/Berlin 2012-01-18
-2925658 Frankelbach Frankelbach 49.53333 7.63333 P PPLA4 DE 08 00 07335 07335009 321 249 Europe/Berlin 2011-04-25
-2925665 Frammersbach Frammersbach Frammersbach 50.06667 9.46667 P PPL DE 02 4737 235 Europe/Berlin 2012-01-18
-2925668 Framersheim Framersheim 49.75806 8.17417 P PPLA4 DE 08 00 07331 07331026 1682 159 Europe/Berlin 2011-04-25
-2925720 Forstmehren Forstmehren 50.7 7.53333 P PPLA4 DE 08 00 07132 07132035 163 250 Europe/Berlin 2011-04-25
-2925729 Forstinning Forstinning 48.16866 11.91244 P PPLA4 DE 02 091 09175 09175118 3473 515 Europe/Berlin 2011-04-25
-2925774 Forstern Forstern 48.18343 11.97716 P PPLA4 DE 02 091 09177 09177119 0 522 Europe/Berlin 2011-04-25
-2925832 Forst Forst Barsac,Barsc,Baršć,Forst,Forst/Lausitz,Stadt Forst (Lausitz),Форст 51.73333 14.63333 P PPL DE 11 22843 79 Europe/Berlin 2012-01-18
-2925835 Forst Forst 50.8 7.68333 P PPLA4 DE 08 00 07132 07132034 634 257 Europe/Berlin 2011-04-25
-2925848 Forst Forst 49.15861 8.58083 P PPLA4 DE 01 082 08215 08215021 7539 112 Europe/Berlin 2011-04-25
-2925890 Föritz Foritz 50.34174 11.2318 P PPL DE 02 3693 411 Europe/Berlin 2008-08-02
-2925891 Forheim Forheim 48.76667 10.45 P PPLA4 DE 02 097 09779 09779146 603 571 Europe/Berlin 2011-04-25
-2925902 Förderstedt Forderstedt Forderstedt,Förderstedt 51.9 11.63333 P PPL DE 14 2045 80 Europe/Berlin 2012-01-18
-2925905 Forchtenberg Forchtenberg Forchtenberg 49.28833 9.56278 P PPL DE 01 5105 221 Europe/Berlin 2012-01-18
-2925910 Forchheim Forchheim Forchheim 49.71754 11.05877 P PPL DE 02 30442 261 Europe/Berlin 2008-10-30
-2925914 Forchheim Forchheim 48.16667 7.7 P PPLA4 DE 01 083 08316 08316013 1268 173 Europe/Berlin 2011-04-25
-2925924 Forbach Forbach 48.68333 8.35 P PPLA4 DE 01 082 08216 08216013 5477 384 Europe/Berlin 2011-04-25
-2925965 Fohren-Linden Fohren-Linden 49.58333 7.28333 P PPLA4 DE 08 00 07134 07134026 344 436 Europe/Berlin 2011-04-25
-2925977 Föhren Fohren 49.85 6.76667 P PPLA4 DE 08 00 07235 07235026 2649 175 Europe/Berlin 2011-04-25
-2925980 Föhrden-Barl Fohrden-Barl Fohrden-Barl,Forden-Barl,Föhrden-Barl,Förden-Barl 53.92803 9.78702 P PPLA4 DE 10 00 01060 01060021 291 4 Europe/Berlin 2011-08-24
-2926009 Fockendorf Fockendorf 51.05 12.46667 P PPLA4 DE 15 00 16077 16077005 931 169 Europe/Berlin 2011-04-25
-2926013 Föckelberg Fockelberg 49.53333 7.48333 P PPLA4 DE 08 00 07336 07336025 400 449 Europe/Berlin 2011-04-25
-2926017 Fockbek Fockbek Fockbek 54.3 9.6 P PPLA4 DE 10 00 01058 01058054 6380 7 Europe/Berlin 2011-04-25
-2926030 Fluterschen Fluterschen 50.66667 7.61667 P PPLA4 DE 08 00 07132 07132033 755 237 Europe/Berlin 2011-04-25
-2926036 Flußbach Flussbach 50.01667 6.93333 P PPLA4 DE 08 00 07231 07231033 475 290 Europe/Berlin 2011-04-25
-2926037 Flurstedt Flurstedt 51.06667 11.55 P PPLA4 DE 15 00 16071 16071018 263 165 Europe/Berlin 2011-04-25
-2926107 Flossenbürg Flossenburg Campo di concentramento di Flossenbuerg,Campo di concentramento di Flossenbürg,Flossenbuerg,Flossenbuerg concentration camp,Flossenbuerg konsentrasjonsleir,Flossenburg,Flossenbürg,Flossenbürg concentration camp,Flossenbürg konsentrasjonsleir,KZ Flossenbuerg,KZ Flossenbürg,Stratopedo synkentroses Phlosenmpernk,plwsnbwrg,Στρατόπεδο συγκέντρωσης Φλόσενμπεργκ,פלוסנבורג 49.73333 12.35 P PPLA4 DE 02 093 09374 09374122 1747 644 Europe/Berlin 2011-04-25
-2926119 Floß Floss Flosz 49.72395 12.27593 P PPL DE 02 093 3534 479 Europe/Berlin 2010-11-15
-2926120 Flörsheim Florsheim Florsheim,Florsheim am Main,Flörsheim,Flörsheim am Main 50.01667 8.43333 P PPL DE 05 20023 98 Europe/Berlin 2012-01-18
-2926135 Flonheim Flonheim 49.785 8.04 P PPLA4 DE 08 00 07331 07331025 2618 154 Europe/Berlin 2011-04-25
-2926137 Flomborn Flomborn 49.69056 8.14917 P PPLA4 DE 08 00 07331 07331024 1045 251 Europe/Berlin 2011-04-25
-2926147 Flöha Floha Floeha 50.85613 13.07407 P PPL DE 13 11143 273 Europe/Berlin 2008-12-26
-2926154 Flögeln Flogeln 53.66667 8.81667 P PPLA4 DE 06 00 03352 03352016 670 253 Europe/Berlin 2011-04-25
-2926170 Flintsbach Flintsbach 47.72576 12.12419 P PPL DE 02 2870 475 Europe/Berlin 2008-08-26
-2926178 Flintbek Flintbek Flintbek,Gross Flintbek,Groß Flintbek 54.25 10.06667 P PPLA4 DE 10 00 01058 01058053 7276 10 Europe/Berlin 2011-04-25
-2926202 Fließem Fliessem Fliessem,Fliessen,Fließem,Fließen 50.01667 6.53333 P PPLA4 DE 08 00 07232 07232039 684 410 Europe/Berlin 2011-04-25
-2926226 Flieden Flieden 50.42389 9.5666 P PPLA4 DE 05 066 06631 06631008 8843 299 Europe/Berlin 2011-04-25
-2926252 Flessau Flessau Flessau 52.76667 11.66667 P PPL DE 14 1048 28 Europe/Berlin 2012-01-18
-2926261 Fleringen Fleringen 50.21667 6.5 P PPLA4 DE 08 00 07232 07232223 334 558 Europe/Berlin 2011-04-25
-2926271 Flensburg Flensburg Flensborg,Flensbourg,Flensburg,furensuburuku,Фленсбург,フレンスブルク 54.78333 9.43333 P PPL DE 10 85838 36 Europe/Berlin 2012-01-18
-2926283 Flemlingen Flemlingen 49.24278 8.095 P PPLA4 DE 08 00 07337 07337025 437 199 Europe/Berlin 2011-04-25
-2926290 Fleischwangen Fleischwangen 47.88333 9.48333 P PPLA4 DE 01 084 08436 08436032 602 634 Europe/Berlin 2011-04-25
-2926304 Flein Flein Flein 49.10306 9.21083 P PPLA4 DE 01 081 08125 08125030 6558 191 Europe/Berlin 2011-04-25
-2926317 Fleetmark Fleetmark Fleetmark,Fleetmark Altmark 52.8 11.38333 P PPLA4 DE 14 00 15081 15081130 764 32 Europe/Berlin 2011-04-25
-2926339 Fleckeby Fleckeby Fleckeby 54.48333 9.7 P PPLA4 DE 10 00 01058 01058052 1751 5 Europe/Berlin 2011-04-25
-2926351 Flechtingen Flechtingen 52.33083 11.24176 P PPLA4 DE 14 00 15083 15083230 1766 101 Europe/Berlin 2011-05-03
-2926371 Flarchheim Flarchheim 51.13333 10.48333 P PPLA4 DE 15 00 16064 16064017 472 224 Europe/Berlin 2011-04-25
-2926385 Flammersfeld Flammersfeld 50.63333 7.55 P PPLA4 DE 08 00 07132 07132032 1068 199 Europe/Berlin 2011-07-31
-2926402 Fladungen Fladungen Fladungen 50.51667 10.16667 P PPL DE 02 2337 437 Europe/Berlin 2012-01-18
-2926419 Flacht Flacht 50.35 8.05 P PPLA4 DE 08 00 07141 07141043 1189 124 Europe/Berlin 2011-04-25
-2926426 Flachslanden Flachslanden Flachslanden 49.4 10.51667 P PPL DE 02 2559 471 Europe/Berlin 2012-01-18
-2926447 Fitzen Fitzen 53.49489 10.64661 P PPLA4 DE 10 00 01053 01053029 345 22 Europe/Berlin 2011-04-25
-2926448 Fitzbek Fitzbek Fitzbek 54 9.76667 P PPLA4 DE 10 00 01061 01061028 368 5 Europe/Berlin 2011-04-25
-2926486 Fischingen Fischingen Fischingen 47.65 7.6 P PPLA4 DE 01 083 08336 08336024 730 274 Europe/Berlin 2011-04-25
-2926557 Fischerbach Fischerbach 48.31667 8.11667 P PPLA4 DE 01 083 08317 08317029 1639 442 Europe/Berlin 2011-07-31
-2926586 Fischbachau Fischbachau 47.71952 11.95081 P PPLA4 DE 02 091 09182 09182114 5471 774 Europe/Berlin 2011-04-25
-2926631 Fischbach Fischbach 49.73333 7.4 P PPLA4 DE 08 00 07134 07134025 916 249 Europe/Berlin 2011-04-25
-2926632 Fischbach Fischbach 49.45 7.91667 P PPLA4 DE 08 00 07335 07335007 880 324 Europe/Berlin 2011-04-25
-2926638 Fischbach Fischbach Fischbach,Fischbach bei Dahn 49.08333 7.71667 P PPL DE 08 1672 220 Europe/Berlin 2012-01-18
-2926654 Fischach Fischach 48.29047 10.65592 P PPL DE 02 097 4733 497 Europe/Berlin 2010-11-15
-2926655 Fisch Fisch 49.61667 6.48333 P PPLA4 DE 08 00 07235 07235025 318 383 Europe/Berlin 2011-04-25
-2926658 Firrel Firrel 53.33333 7.66667 P PPLA4 DE 06 00 03457 03457009 817 6 Europe/Berlin 2011-04-25
-2926667 Fintel Fintel 53.17188 9.66969 P PPLA4 DE 06 00 03357 03357015 2975 45 Europe/Berlin 2011-07-31
-2926670 Finsterwalde Finsterwalde Finsterwalde 51.63333 13.71667 P PPL DE 11 18922 109 Europe/Berlin 2012-01-18
-2926688 Finsterbergen Finsterbergen Finsterbergen 50.83333 10.58333 P PPL DE 15 1457 508 Europe/Berlin 2012-01-18
-2926703 Finsing Finsing 48.21615 11.82412 P PPLA4 DE 02 091 09177 09177118 4068 509 Europe/Berlin 2011-07-31
-2926716 Finnentrop Finnentrop Finnentrop,Neubrucke,Neubrücke 51.16667 7.96667 P PPLA4 DE 07 059 05966 05966012 18427 245 Europe/Berlin 2011-04-25
-2926737 Finkenthal Finkenthal 53.93959 12.78103 P PPLA4 DE 12 00 13053 13053020 348 31 Europe/Berlin 2011-12-30
-2926804 Finkenbach-Gersweiler Finkenbach-Gersweiler 49.68333 7.75 P PPLA4 DE 08 00 07333 07333021 328 310 Europe/Berlin 2011-04-25
-2926834 Fincken Fincken 53.35475 12.44133 P PPLA4 DE 12 00 13056 13056010 465 73 Europe/Berlin 2011-04-25
-2926855 Filz Filz Fils,Filz 50.16667 6.98333 P PPLA4 DE 08 00 07135 07135030 91 403 Europe/Berlin 2011-04-25
-2926858 Filsum Filsum 53.23333 7.63333 P PPLA4 DE 06 00 03457 03457008 2134 255 Europe/Berlin 2011-04-25
-2926861 Filsen Filsen 50.23333 7.58333 P PPLA4 DE 08 00 07141 07141042 602 72 Europe/Berlin 2011-04-25
-2926891 Fiersbach Fiersbach 50.7 7.5 P PPLA4 DE 08 00 07132 07132031 270 293 Europe/Berlin 2011-04-25
-2926912 Fiefbergen Fiefbergen Fiefbergen 54.38333 10.35 P PPLA4 DE 10 00 01057 01057020 598 20 Europe/Berlin 2011-04-25
-2926941 Fichtenwalde Fichtenwalde Beelitz (Mark) OT Fichtenwalde,Beelitz Ortsteil Fichtenwalde,Fichtenwalde,Kolonie Fichtenwalde 52.28038 12.88349 P PPL DE DE 11 00 3000 78 75 Europe/Berlin 2010-11-22
-2926960 Fichtenberg Fichtenberg 48.98601 9.71199 P PPLA4 DE 01 081 08127 08127023 2894 345 Europe/Berlin 2011-04-25
-2926981 Fichtelberg Fichtelberg Fichtelberg 50.01667 11.85 P PPLA4 DE 02 094 09472 09472138 2111 780 Europe/Berlin 2011-04-25
-2926998 Feusdorf Feusdorf 50.35 6.61667 P PPLA4 DE 08 00 07233 07233023 600 516 Europe/Berlin 2011-04-25
-2927016 Feuerscheid Feuerscheid 50.1 6.45 P PPLA4 DE 08 00 07232 07232222 349 461 Europe/Berlin 2011-04-25
-2927043 Stuttgart Feuerbach Stuttgart Feuerbach Feuerbach 48.80867 9.15719 P PPLX DE 01 081 08111 28046 286 Europe/Berlin 2010-11-15
-2927048 Feuchtwangen Feuchtwangen Feuchtwangen,Feuchtwanger 49.16667 10.33333 P PPL DE 02 12267 454 Europe/Berlin 2012-01-18
-2927054 Feucht Feucht Feucht 49.37667 11.21389 P PPL DE 02 13482 360 Europe/Berlin 2012-01-18
-2927083 Ferschweiler Ferschweiler 49.86667 6.4 P PPLA4 DE 08 00 07232 07232037 851 357 Europe/Berlin 2011-04-25
-2927125 Ferna Ferna Ferna 51.45 10.3 P PPLA4 DE 15 00 16061 16061031 601 293 Europe/Berlin 2011-04-25
-2927142 Ferdinandshof Ferdinandshof Ferdinandshof 53.66667 13.88333 P PPLA4 DE 12 00 13062 13062014 3165 7 Europe/Berlin 2011-04-25
-2927175 Fensdorf Fensdorf 50.73333 7.76667 P PPLA4 DE 08 00 07132 07132030 442 346 Europe/Berlin 2011-04-25
-2927226 Felsberg Felsberg Felsberg 51.13333 9.41667 P PPL DE 05 11219 157 Europe/Berlin 2012-01-18
-2927236 Felm Felm Felm 54.41667 10.05 P PPLA4 DE 10 00 01058 01058051 1144 18 Europe/Berlin 2011-04-25
-2927249 Fellheim Fellheim 48.08333 10.15 P PPLA4 DE 02 097 09778 09778139 1197 552 Europe/Berlin 2011-04-25
-2927264 Fellen Fellen 50.15 9.58333 P PPLA4 DE 02 096 09677 09677128 928 244 Europe/Berlin 2011-04-25
-2927268 Fellbach Fellbach 48.80912 9.27697 P PPL DE 01 43935 287 Europe/Berlin 2008-12-21
-2927273 Fell Fell 49.76667 6.78333 P PPLA4 DE 08 00 07235 07235022 2342 195 Europe/Berlin 2011-04-25
-2927339 Feldkirchen-Westerham Feldkirchen-Westerham 47.90748 11.84266 P PPLA4 DE 02 091 09187 09187130 10399 553 Europe/Berlin 2011-07-31
-2927340 Feldkirchen Feldkirchen 48.83828 12.52785 P PPLA4 DE 02 092 09278 09278121 0 344 Europe/Berlin 2011-04-25
-2927347 Feldkirchen Feldkirchen 48.14811 11.731 P PPLA4 DE 02 091 09184 09184118 5573 525 Europe/Berlin 2011-07-31
-2927430 Felde Felde 54.3 9.93333 P PPLA4 DE 10 00 01058 01058050 2159 16 Europe/Berlin 2011-04-25
-2927443 Feldberg Feldberg 47.77435 7.64142 P PPL DE 01 083 1866 381 Europe/Berlin 2010-11-15
-2927464 Feldafing Feldafing Feldafing 47.95 11.3 P PPLA4 DE 02 091 09188 09188118 4293 641 Europe/Berlin 2011-04-25
-2927507 Feilsdorf Feilsdorf 49.98333 6.41667 P PPLA4 DE 08 00 07232 07232036 36 353 Europe/Berlin 2011-04-25
-2927510 Feilitzsch Feilitzsch 50.36667 11.93333 P PPLA4 DE 02 094 09475 09475123 2932 515 Europe/Berlin 2011-04-25
-2927514 Feilbingert Feilbingert 49.76667 7.8 P PPLA4 DE 08 00 07133 07133030 1739 304 Europe/Berlin 2011-04-25
-2927564 Fehrbellin Fehrbellin 52.8135 12.7644 P PPLA4 DE 11 00 12068 12068117 9413 39 Europe/Berlin 2011-07-31
-2927581 Fehl-Ritzhausen Fehl-Ritzhausen 50.65 8 P PPLA4 DE 08 00 07143 07143222 862 529 Europe/Berlin 2011-04-25
-2927621 Fedderwarden Fedderwarden *Fathrwurth-,*Faþrwurþ-,Fatruwerde [a. 1155],Fedderwarn,Ffedderwurden in Frisia [a. 1420] 53.56142 8.04371 P PPL DE 06 00 03405 03405000 2000 1 Europe/Berlin 2011-03-09
-2927628 Fedderingen Fedderingen Fedderingen 54.28333 9.13333 P PPLA4 DE 10 00 01051 01051030 259 6 Europe/Berlin 2011-04-25
-2927692 Faulenrost Faulenrost 53.63333 12.78333 P PPLA4 DE 12 00 13052 13052021 761 32 Europe/Berlin 2011-04-25
-2927726 Faulbach Faulbach 49.78528 9.44417 P PPLA4 DE 02 096 09676 09676124 2784 140 Europe/Berlin 2011-04-25
-2927750 Faßberg Fassberg Fassberg,Faßberg 52.9 10.16667 P PPLA4 DE 06 00 03351 03351010 7299 67 Europe/Berlin 2011-04-25
-2927777 Farven Farven 53.43333 9.31667 P PPLA4 DE 06 00 03357 03357014 733 27 Europe/Berlin 2011-04-25
-2927782 Farschweiler Farschweiler 49.71667 6.81667 P PPLA4 DE 08 00 07235 07235021 745 509 Europe/Berlin 2011-04-25
-2927798 Farnstädt Farnstadt Farnstadt,Farnstädt 51.43333 11.56667 P PPLA4 DE 14 00 15088 15088100 1233 185 Europe/Berlin 2011-04-25
-2927828 Farchant Farchant 47.53036 11.11151 P PPLA4 DE 02 091 09180 09180116 3722 671 Europe/Berlin 2011-04-25
-2927850 Fambach Fambach Fambach 50.73333 10.36667 P PPLA4 DE 15 00 16066 16066022 1995 266 Europe/Berlin 2011-07-31
-2927871 Fallingbostel Fallingbostel Bad Fallingbostel,Fallingbostel 52.86667 9.7 P PPL DE 06 13473 48 Europe/Berlin 2012-01-18
-2927913 Falkenstein Falkenstein 50.47788 12.37129 P PPL DE 13 9528 567 Europe/Berlin 2008-08-28
-2927916 Falkenstein Falkenstein 49.6 7.88333 P PPLA4 DE 08 00 07333 07333020 236 494 Europe/Berlin 2011-04-25
-2927917 Falkenstein Falkenstein Falkenstein 49.1 12.48333 P PPL DE 02 3354 608 Europe/Berlin 2012-02-02
-2927930 Falkensee Falkensee Falkensee 52.56667 13.08333 P PPL DE 11 37468 32 Europe/Berlin 2012-01-18
-2927959 Falkenhain Falkenhain 51.39888 12.87083 P PPLA4 DE 13 147 14729 14729130 3987 135 Europe/Berlin 2011-07-31
-2927978 Falkenhagen Falkenhagen 52.43333 14.31667 P PPLA4 DE 11 00 12064 12064128 742 63 Europe/Berlin 2011-04-25
-2927984 Falkenfels Falkenfels 49.00415 12.5948 P PPLA4 DE 02 092 09278 09278120 1001 484 Europe/Berlin 2011-04-25
-2928006 Falkenberg Falkenberg 52.8051 13.95804 P PPLA4 DE 11 00 12064 12064125 2462 6 Europe/Berlin 2011-07-31
-2928011 Falkenberg Falkenberg Falkenberg,Falkenburg 51.58333 13.25 P PPL DE 11 7830 87 Europe/Berlin 2012-01-18
-2928017 Falkenberg Falkenberg 48.46154 12.73049 P PPLA4 DE 02 092 09277 09277119 3956 478 Europe/Berlin 2011-07-01
-2928047 Falkenau Falkenau 50.85 13.11667 P PPLA4 DE 13 145 14522 14522130 2119 300 Europe/Berlin 2011-04-25
-2928084 Faid Faid 50.15 7.11667 P PPLA4 DE 08 00 07135 07135029 1143 409 Europe/Berlin 2011-04-25
-2928116 Fahrenzhausen Fahrenzhausen 48.35317 11.55521 P PPLA4 DE 02 091 09178 09178123 4466 458 Europe/Berlin 2011-04-25
-2928118 Fahrenwalde Fahrenwalde Fahrenwalde 53.43333 14.06667 P PPLA4 DE 12 00 13062 13062013 394 67 Europe/Berlin 2011-04-25
-2928120 Fahrenkrug Fahrenkrug Fahrenkrug 53.95 10.25 P PPLA4 DE 10 00 01060 01060020 1697 60 Europe/Berlin 2011-04-25
-2928163 Fahrenbach Fahrenbach 49.43139 9.15056 P PPLA4 DE 01 082 08225 08225024 2898 367 Europe/Berlin 2011-04-25
-2928165 Fahren Fahren 54.35 10.33333 P PPLA4 DE 10 00 01057 01057018 157 18 Europe/Berlin 2011-04-25
-2928170 Fahrdorf Fahrdorf 54.5 9.6 P PPLA4 DE 10 00 01059 01059026 2453 26 Europe/Berlin 2011-04-25
-2928227 Fachbach Fachbach 50.33333 7.68333 P PPLA4 DE 08 00 07141 07141041 1332 186 Europe/Berlin 2011-04-25
-2928239 Eystrup Eystrup 52.77935 9.21315 P PPLA4 DE 06 00 03256 03256007 3394 22 Europe/Berlin 2011-04-25
-2928258 Eyendorf Eyendorf 53.2 10.15 P PPLA4 DE 06 00 03353 03353010 1239 67 Europe/Berlin 2011-04-25
-2928261 Eydelstedt Eydelstedt 52.69241 8.54668 P PPLA4 DE 06 00 03251 03251017 1945 35 Europe/Berlin 2011-04-25
-2928300 Ewighausen Ewighausen 50.53333 7.83333 P PPLA4 DE 08 00 07143 07143221 244 404 Europe/Berlin 2011-04-25
-2928315 Evessen Evessen 52.18888 10.71081 P PPLA4 DE 06 00 03158 03158013 1422 146 Europe/Berlin 2011-04-25
-2928320 Everswinkel Everswinkel Everswinkel 51.93333 7.85 P PPLA4 DE 07 055 05570 05570024 9576 65 Europe/Berlin 2011-04-25
-2928344 Everode Everode 51.95 9.91667 P PPLA4 DE 06 00 03254 03254015 532 164 Europe/Berlin 2011-04-25
-2928379 Eutingen Eutingen Entingen,Eutingen,Eutingen an der Enz 48.91667 8.75 P PPL DE 01 5583 298 Europe/Berlin 2012-01-18
-2928381 Eutin Eutin Eutin,Eutin mit Malente 54.13333 10.61667 P PPL DE 10 16984 32 Europe/Berlin 2012-01-18
-2928392 Eußerthal Eusserthal 49.25 7.96667 P PPLA4 DE 08 00 07337 07337024 926 300 Europe/Berlin 2011-04-25
-2928394 Eußenheim Eussenheim 49.98333 9.81667 P PPLA4 DE 02 096 09677 09677127 3302 178 Europe/Berlin 2011-04-25
-2928396 Euskirchen Euskirchen Euskirchen 50.66667 6.78333 P PPL DE 07 54889 164 Europe/Berlin 2012-01-18
-2928399 Euscheid Euscheid 50.13333 6.3 P PPLA4 DE 08 00 07232 07232221 162 487 Europe/Berlin 2011-04-25
-2928407 Eurasburg Eurasburg Eurasberg,Eurasburg 48.33333 11.08333 P PPLA4 DE 02 097 09771 09771129 1657 491 Europe/Berlin 2011-04-25
-2928408 Eurasburg Eurasburg 47.85389 11.40587 P PPLA4 DE 02 091 09173 09173123 4397 586 Europe/Berlin 2011-04-25
-2928422 Eulgem Eulgem 50.23333 7.16667 P PPLA4 DE 08 00 07135 07135028 223 461 Europe/Berlin 2011-04-25
-2928464 Eulenbis Eulenbis 49.5 7.63333 P PPLA4 DE 08 00 07335 07335006 514 354 Europe/Berlin 2011-04-25
-2928469 Eulenberg Eulenberg 50.60607 7.47577 P PPLA4 DE 08 00 07132 07132029 62 226 Europe/Berlin 2011-07-31
-2928518 Euerdorf Euerdorf 50.14853 10.02331 P PPL DE 02 096 1632 199 Europe/Berlin 2010-11-15
-2928520 Euerbach Euerbach 50.06199 10.13695 P PPLA4 DE 02 096 09678 09678128 3158 241 Europe/Berlin 2011-04-25
-2928553 Etzleben Etzleben Etzleben 51.26667 11.16667 P PPLA4 DE 15 00 16065 16065016 331 129 Europe/Berlin 2011-04-25
-2928564 Etzenricht Etzenricht 49.63333 12.1 P PPLA4 DE 02 093 09374 09374119 1672 409 Europe/Berlin 2011-04-25
-2928583 Etzelwang Etzelwang 49.53333 11.58333 P PPLA4 DE 02 093 09371 09371140 1562 520 Europe/Berlin 2011-04-25
-2928584 Etzelsrode Etzelsrode 51.5 10.61667 P PPLA4 DE 15 00 16062 16062006 111 246 Europe/Berlin 2011-04-25
-2928600 Etzbach Etzbach 50.78333 7.68333 P PPLA4 DE 08 00 07132 07132028 1289 191 Europe/Berlin 2011-04-25
-2928605 Ettringen Ettringen 50.35 7.21667 P PPLA4 DE 08 00 07137 07137025 2851 388 Europe/Berlin 2011-04-25
-2928615 Ettlingen Ettlingen Ettlingen 48.94094 8.40763 P PPL DE 01 38942 139 Europe/Berlin 2011-02-07
-2928626 Ettinghausen Ettinghausen 50.51564 7.87252 P PPLA4 DE 08 00 07143 07143220 329 405 Europe/Berlin 2011-04-25
-2928642 Ettersburg Ettersburg 51.05 11.28333 P PPLA4 DE 15 00 16071 16071017 598 242 Europe/Berlin 2011-04-25
-2928647 Ettenstatt Ettenstatt Ettenstadt 49.07752 11.05538 P PPLA4 DE 02 095 09577 09577127 842 445 Europe/Berlin 2011-04-25
-2928659 Ettenheim Ettenheim Ettenheim 48.25 7.81667 P PPL DE 01 11995 198 Europe/Berlin 2012-01-18
-2928681 Etteldorf Etteldorf 50.03333 6.56667 P PPLA4 DE 08 00 07232 07232035 31 385 Europe/Berlin 2011-04-25
-2928684 Ettal Ettal Ettal 47.56667 11.1 P PPLA4 DE 02 091 09180 09180115 814 903 Europe/Berlin 2011-04-25
-2928692 Etschberg Etschberg 49.51667 7.43333 P PPLA4 DE 08 00 07336 07336024 0 254 Europe/Berlin 2011-04-25
-2928698 Etgert Etgert 49.78333 7.01667 P PPLA4 DE 08 00 07231 07231032 62 442 Europe/Berlin 2011-04-25
-2928711 Estorf Estorf 53.58333 9.2 P PPLA4 DE 06 00 03359 03359016 1484 10 Europe/Berlin 2011-04-25
-2928712 Estorf Estorf 52.58333 9.15 P PPLA4 DE 06 00 03256 03256006 1709 29 Europe/Berlin 2011-04-25
-2928715 Esthal Esthal 49.38333 7.98333 P PPLA4 DE 08 00 07332 07332016 1567 453 Europe/Berlin 2011-04-25
-2928717 Esterwegen Esterwegen 52.99288 7.63327 P PPLA4 DE 06 00 03454 03454011 5208 16 Europe/Berlin 2011-07-31
-2928738 Estenfeld Estenfeld 49.83333 10.01667 P PPLA4 DE 02 096 09679 09679130 4907 250 Europe/Berlin 2011-07-31
-2928740 Estedt Estedt 52.58333 11.36667 P PPLA4 DE 14 00 15081 15081125 411 40 Europe/Berlin 2011-04-25
-2928743 Eßweiler Essweiler Essweiler,Eßweiler 49.55 7.56667 P PPLA4 DE 08 00 07336 07336023 460 390 Europe/Berlin 2011-04-25
-2928751 Esslingen Esslingen Ehslingen,Eslinga,Eslingen,Esslingen,Esslingen am Neckar,Eszlingen,Eszlingen am Neckar,Еслинген,Эслинген 48.73961 9.30473 P PPL DE 01 92390 241 Europe/Berlin 2008-12-20
-2928760 Essingen Essingen 49.23583 8.17472 P PPLA4 DE 08 00 07337 07337023 2043 145 Europe/Berlin 2011-04-25
-2928761 Essingen Essingen 48.80859 10.02773 P PPLA4 DE 01 081 08136 08136021 6383 503 Europe/Berlin 2011-07-31
-2928764 Essing Essing Essing 48.93333 11.78333 P PPL DE 02 1002 466 Europe/Berlin 2012-01-18
-2928793 Essenheim Essenheim 49.93056 8.15556 P PPLA4 DE 08 00 07339 07339017 3161 219 Europe/Berlin 2011-04-25
-2928804 Essenbach Essenbach Essenbach 48.61667 12.21667 P PPL DE 02 11070 395 Europe/Berlin 2012-01-18
-2928809 Essen Essen Essen 52.7 7.91667 P PPL DE 06 8185 22 Europe/Berlin 2012-01-18
-2928810 Essen Essen Asnithi,Assindia,Ehssen,Esen,Esenas,Esene,Essen,ai sen,asn,essen,xes sen,Έσσεν,Есен,Эссен,אסן,إسن,เอสเซ่น,エッセン,埃森 51.45 7.01667 P PPL DE 07 593085 86 Europe/Berlin 2012-01-18
-2928816 Esselborn Esselborn 49.71528 8.11861 P PPLA4 DE 08 00 07331 07331022 339 229 Europe/Berlin 2011-04-25
-2928819 Esselbach Esselbach 49.85528 9.52583 P PPLA4 DE 02 096 09677 09677126 2018 308 Europe/Berlin 2011-04-25
-2928821 Essel Essel 52.68333 9.65 P PPLA4 DE 06 00 03358 03358007 1095 26 Europe/Berlin 2011-04-25
-2928836 Eßbach Essbach Essbach,Eßbach 50.58333 11.68333 P PPLA4 DE 15 00 16075 16075023 256 389 Europe/Berlin 2011-04-25
-2928862 Espenhain Espenhain Espenhain 51.18333 12.46667 P PPLA4 DE 13 147 14729 14729110 2843 157 Europe/Berlin 2011-04-25
-2928868 Espenau Espenau 51.39664 9.47021 P PPLA4 DE 05 066 06633 06633007 4876 256 Europe/Berlin 2011-07-31
-2928874 Espelkamp Espelkamp Espelkamp 52.38333 8.61667 P PPL DE 07 26378 55 Europe/Berlin 2012-01-18
-2928890 Eslohe Eslohe Eslohe 51.25 8.16667 P PPL DE 07 9304 316 Europe/Berlin 2012-01-18
-2928894 Eslarn Eslarn Eslarn,Eszlarn 49.58333 12.53333 P PPL DE 02 3117 535 Europe/Berlin 2012-01-18
-2928905 Esgrus Esgrus Esgrus 54.71667 9.78333 P PPLA4 DE 10 00 01059 01059109 870 38 Europe/Berlin 2011-04-25
-2928911 Esens Esens 53.64866 7.61267 P PPL DE 06 6856 6 Europe/Berlin 2010-07-07
-2928963 Eschweiler Eschweiler Aischwiele,Eschweiler 50.81667 6.28333 P PPL DE 07 55778 131 Europe/Berlin 2012-01-18
-2928967 Eschwege Eschwege Escevegia,Eschwege 51.18333 10.06667 P PPL DE 05 21191 173 Europe/Berlin 2012-01-18
-2928979 Eschlkam Eschlkam Eschlkam 49.3 12.91667 P PPL DE 02 3575 467 Europe/Berlin 2012-01-18
-2929002 Eschfeld Eschfeld 50.11667 6.2 P PPLA4 DE 08 00 07232 07232220 175 517 Europe/Berlin 2011-04-25
-2929008 Eschershausen Eschershausen Raabestadt Eschershausen 51.92664 9.64282 P PPLA4 DE 06 00 03255 03255013 3794 199 155 Europe/Berlin 2011-04-25
-2929038 Eschenlohe Eschenlohe 48.01731 12.03012 P PPL DE 02 091 1647 543 Europe/Berlin 2010-11-15
-2929039 Eschenlohe Eschenlohe Eschenlohe 47.6 11.18333 P PPLA4 DE 02 091 09180 09180114 0 637 Europe/Berlin 2011-04-25
-2929063 Eschenbergen Eschenbergen Eschenbergen 51.03333 10.75 P PPLA4 DE 15 00 16067 16067016 779 320 Europe/Berlin 2011-04-25
-2929091 Eschenbach Eschenbach 48.65264 9.67037 P PPLA4 DE 01 081 08117 08117020 2316 410 Europe/Berlin 2011-04-25
-2929112 Eschelbronn Eschelbronn Ehshel'bronn,Eschelbronn,Eselmpron,Έσελμπρον,Эшельбронн 49.31944 8.86528 P PPLA4 DE 01 082 08226 08226020 2572 160 Europe/Berlin 2011-04-25
-2929122 Eschede Eschede Askithi 52.73494 10.2354 P PPLA4 DE 06 00 03351 03351009 3894 76 Europe/Berlin 2011-11-06
-2929123 Escheburg Escheburg Escheburg 53.46667 10.31667 P PPLA4 DE 10 00 01053 01053028 2988 48 Europe/Berlin 2011-04-25
-2929131 Esche Esche 52.53333 6.96667 P PPLA4 DE 06 00 03456 03456004 557 16 Europe/Berlin 2011-04-25
-2929134 Eschborn Eschborn Eschborn 50.13333 8.55 P PPL DE 05 20383 132 Europe/Berlin 2012-01-18
-2929156 Eschbach Eschbach 50.21393 7.72717 P PPLA4 DE 08 00 07141 07141040 198 359 Europe/Berlin 2011-12-29
-2929157 Eschbach Eschbach 49.17444 8.01917 P PPLA4 DE 08 00 07337 07337022 707 231 Europe/Berlin 2011-04-25
-2929158 Eschbach Eschbach 47.89102 7.65541 P PPLA4 DE 01 083 08315 08315033 0 220 Europe/Berlin 2011-04-25
-2929165 Eschau Eschau Eschau 49.82 9.2575 P PPL DE 02 4129 171 Europe/Berlin 2012-02-02
-2929177 Eschach Eschach 48.88832 9.86999 P PPLA4 DE 01 081 08136 08136020 1874 493 Europe/Berlin 2011-04-25
-2929190 Esch Esch 50.36667 6.61667 P PPLA4 DE 08 00 07233 07233022 561 519 Europe/Berlin 2011-04-25
-2929192 Esch Esch 49.9 6.85 P PPLA4 DE 08 00 07231 07231031 407 151 Europe/Berlin 2011-04-25
-2929224 Erzhausen Erzhausen 49.95528 8.6475 P PPLA4 DE 05 064 06432 06432006 7297 119 Europe/Berlin 2011-04-25
-2929227 Erzenhausen Erzenhausen 49.5 7.61667 P PPLA4 DE 08 00 07335 07335005 740 254 Europe/Berlin 2011-04-25
-2929245 Erxleben Erxleben 52.21812 11.24245 P PPLA4 DE 14 00 15083 15083205 1329 141 Europe/Berlin 2011-05-03
-2929247 Erwitte Erwitte Arwitti,Eritonon,Erwitte,Ėritonon 51.61667 8.35 P PPL DE 07 16081 105 Europe/Berlin 2012-01-18
-2929252 Ertingen Ertingen Ertingen 48.1 9.46667 P PPLA4 DE 01 084 08426 08426045 5516 572 Europe/Berlin 2011-04-25
-2929264 Ersingen Ersingen 48.2926 9.8551 P PPL DE 01 1200 485 485 Europe/Berlin 2012-03-03
-2929267 Ershausen Ershausen Erhausen,Erschuesen,Erschüsen 51.25708 10.16132 P PPLA4 DE DE 15 00 16061 16061113 0 227 Europe/Berlin 2011-03-15
-2929269 Ersfeld Ersfeld Ersfeld,Ersfelt,Ersfield 50.7 7.51667 P PPLA4 DE 08 00 07132 07132027 55 257 Europe/Berlin 2011-04-25
-2929279 Erpolzheim Erpolzheim 49.48917 8.22472 P PPLA4 DE 08 00 07332 07332015 1208 109 Europe/Berlin 2011-04-25
-2929302 Erpel Erpel Erpel 50.58333 7.23333 P PPLA4 DE 08 00 07138 07138019 2635 61 Europe/Berlin 2011-04-25
-2929305 Erolzheim Erolzheim Erolzheim 48.09001 10.073 P PPLA4 DE 01 084 08426 08426044 3140 552 Europe/Berlin 2011-05-31
-2929307 Ernzen Ernzen 49.85 6.41667 P PPLA4 DE 08 00 07232 07232033 435 354 Europe/Berlin 2011-04-25
-2929314 Ernstroda Ernstroda Ernstroda 50.86667 10.61667 P PPL DE 15 1044 365 Europe/Berlin 2012-01-18
-2929350 Ernst Ernst 50.15 7.23333 P PPLA4 DE 08 00 07135 07135027 625 305 Europe/Berlin 2011-04-25
-2929353 Ernsgaden Ernsgaden 48.73333 11.58333 P PPLA4 DE 02 091 09186 09186116 1445 362 Europe/Berlin 2011-07-31
-2929370 Erndtebrück Erndtebruck Ernatebruck,Erndtebruck,Erndtebrück 50.98333 8.26667 P PPLA4 DE 07 059 05970 05970012 7685 550 Europe/Berlin 2011-04-25
-2929383 Ermlitz Ermlitz 51.39182 12.15946 P PPL DE 14 1468 112 Europe/Berlin 2011-03-30
-2929393 Ermershausen Ermershausen 50.21667 10.61667 P PPLA4 DE 02 096 09674 09674223 621 371 Europe/Berlin 2011-04-25
-2929429 Erligheim Erligheim 49.0225 9.09722 P PPLA4 DE 01 081 08118 08118015 2697 246 Europe/Berlin 2011-04-25
-2929451 Erlensee Erlensee 50.16304 8.97823 P PPLA4 DE 05 064 06435 06435007 12663 114 Europe/Berlin 2011-07-31
-2929452 Erlenmoos Erlenmoos 48.06667 9.98333 P PPLA4 DE 01 084 08426 08426043 1650 611 Europe/Berlin 2011-04-25
-2929484 Erlenbach am Main Erlenbach am Main Erlenbach,Erlenbach am Main,Erlenbach uber Klingenberg,Erlenbach über Klingenberg 49.80389 9.16389 P PPL DE 02 10208 140 Europe/Berlin 2012-02-28
-2929499 Erlenbach Erlenbach 49.98333 9.63333 P PPL DE 02 2381 297 Europe/Berlin 2006-01-17
-2929506 Erlenbach Erlenbach Erlenbach 49.1725 9.26833 P PPLA4 DE 01 081 08125 08125027 4853 184 Europe/Berlin 2011-04-25
-2929541 Erlbach Erlbach Erlbach,Markt Erlbach 50.31667 12.36667 P PPLA4 DE 13 145 14523 14523110 1895 567 Europe/Berlin 2011-04-25
-2929549 Erlbach Erlbach 48.3 12.78333 P PPLA4 DE 02 091 09171 09171115 1239 473 Europe/Berlin 2011-04-25
-2929557 Erlau Erlau 51.01667 12.93333 P PPLA4 DE 13 145 14522 14522120 3638 294 Europe/Berlin 2011-04-25
-2929567 Erlangen Erlangen Ehrlangen,Erlangen,ai er lan gen,ai er lang gen,earangen,Ерланген,Эрланген,エアランゲン,埃尔朗根,埃爾蘭根 49.58972 11.00389 P PPL DE 02 102675 284 Europe/Berlin 2012-01-18
-2929594 Erlabrunn Erlabrunn 49.85972 9.84417 P PPLA4 DE 02 096 09679 09679128 1584 170 Europe/Berlin 2011-04-25
-2929600 Erkrath Erkrath Ehrkrat,Erkrath,Эркрат 51.21667 6.9 P PPL DE 07 47815 69 Europe/Berlin 2012-01-18
-2929602 Erkner Erkner Erkner 52.41667 13.75 P PPL DE 11 11741 37 Europe/Berlin 2012-01-18
-2929605 Erkheim Erkheim Erkheim 48.05 10.35 P PPL DE 02 3046 603 Europe/Berlin 2012-01-18
-2929610 Erkerode Erkerode Erkerode 52.21667 10.71667 P PPLA4 DE 06 00 03158 03158012 1073 222 Europe/Berlin 2011-04-25
-2929614 Erkenbrechtsweiler Erkenbrechtsweiler 48.55656 9.43211 P PPLA4 DE 01 081 08116 08116018 2139 702 Europe/Berlin 2011-04-25
-2929622 Erkelenz Erkelenz Erkelenz 51.08333 6.31667 P PPL DE 07 44650 94 Europe/Berlin 2012-01-18
-2929626 Eriskirch Eriskirch 47.63333 9.53333 P PPLA4 DE 01 084 08435 08435013 4319 396 Europe/Berlin 2011-04-25
-2929631 Ering Ering Ering,Fring 48.29921 13.15029 P PPLA4 DE 02 092 09277 09277118 1885 343 Europe/Berlin 2011-06-17
-2929642 Erharting Erharting 48.28333 12.58333 P PPLA4 DE 02 091 09183 09183116 932 450 Europe/Berlin 2011-04-25
-2929649 Ergoldsbach Ergoldsbach Erblsbach,Ergoldsbach 48.68333 12.2 P PPL DE 02 7482 431 Europe/Berlin 2012-01-18
-2929650 Ergolding Ergolding Ergolding 48.58333 12.16667 P PPL DE 02 11438 394 Europe/Berlin 2012-01-18
-2929655 Ergeshausen Ergeshausen 50.26667 7.93333 P PPLA4 DE 08 00 07141 07141039 148 284 Europe/Berlin 2011-04-25
-2929658 Ergersheim Ergersheim 49.51667 10.33333 P PPLA4 DE 02 095 09575 09575122 1169 336 Europe/Berlin 2011-04-25
-2929665 Erfweiler Erfweiler 49.15712 7.81231 P PPLA4 DE 08 00 07340 07340009 1250 230 Europe/Berlin 2011-08-07
-2929670 Erfurt Erfurt Ehrfurt,Erfurt,Erfurtas,Erfurto,Erfurtum,Erphourte,ai er fu te,eafuruto,eleupuleuteu,Érfurt,Ερφούρτη,Ерфурт,Эрфурт,ארפורט,エアフルト,艾尔福特,에르푸르트 50.98333 11.03333 P PPLA DE 15 203254 191 Europe/Berlin 2012-01-18
-2929671 Erftstadt Erftstadt Erftstadt 50.81667 6.76667 P PPL DE 07 51207 95 Europe/Berlin 2012-01-18
-2929685 Erfde Erfde Erfde 54.3 9.31667 P PPLA4 DE 10 00 01059 01059024 2118 14 Europe/Berlin 2011-04-25
-2929689 Eresing Eresing 48.087 11.02388 P PPLA4 DE 02 091 09181 09181118 1709 593 Europe/Berlin 2012-03-26
-2929692 Erdweg Erdweg 48.3318 11.30339 P PPLA4 DE 02 091 09174 09174118 5629 480 Europe/Berlin 2011-04-25
-2929708 Erdmannhausen Erdmannhausen 48.93333 9.3 P PPLA4 DE 01 081 08118 08118014 4848 283 Europe/Berlin 2011-04-25
-2929715 Erding Erding Aerding,Ehrding,Erding As,Эрдинг 48.30603 11.90686 P PPL DE DE 02 091 33519 466 Europe/Berlin 2010-11-15
-2929720 Erdesbach Erdesbach 49.56667 7.45 P PPLA4 DE 08 00 07336 07336022 664 241 Europe/Berlin 2011-04-25
-2929724 Erden Erden 49.98333 7.01667 P PPLA4 DE 08 00 07231 07231030 379 213 Europe/Berlin 2011-04-25
-2929769 Erbes-Büdesheim Erbes-Budesheim Erbes-Budesheim,Erbes-Büdesheim 49.75444 8.03139 P PPLA4 DE 08 00 07331 07331021 1385 262 Europe/Berlin 2011-04-25
-2929781 Erbenhausen Erbenhausen 50.56667 10.15 P PPLA4 DE 15 00 16066 16066019 625 527 Europe/Berlin 2011-04-25
-2929783 Erbendorf Erbendorf Erbendorf 49.84028 12.04472 P PPL DE 02 5364 498 Europe/Berlin 2012-01-18
-2929800 Erbach Erbach 50.03333 7.68333 P PPLA4 DE 08 00 07140 07140037 236 441 Europe/Berlin 2011-04-25
-2929802 Erbach Erbach Erbach 49.65611 8.99639 P PPL DE 05 13771 226 Europe/Berlin 2012-01-18
-2929804 Erbach Erbach 48.32841 9.88752 P PPL DE 01 13331 484 Europe/Berlin 2010-08-16
-2929817 Eppstein Eppstein Eppstein 50.13333 8.4 P PPL DE 05 13374 229 Europe/Berlin 2012-01-18
-2929827 Eppishausen Eppishausen 48.16667 10.51667 P PPLA4 DE 02 097 09778 09778134 1822 553 Europe/Berlin 2011-04-25
-2929831 Eppingen Eppingen Eppingen 49.13694 8.91028 P PPL DE 01 21179 195 Europe/Berlin 2012-01-18
-2929837 Eppertshausen Eppertshausen Eppertshausen 49.95056 8.85389 P PPLA4 DE 05 064 06432 06432005 5838 138 Europe/Berlin 2011-04-25
-2929840 Eppenschlag Eppenschlag 48.88938 13.29989 P PPLA4 DE 02 092 09272 09272116 952 610 Europe/Berlin 2011-08-22
-2929841 Eppenrod Eppenrod 50.41667 7.93333 P PPLA4 DE 08 00 07141 07141038 713 295 Europe/Berlin 2011-04-25
-2929855 Eppendorf Eppendorf 50.8 13.23333 P PPLA4 DE 13 145 14522 14522110 4863 452 Europe/Berlin 2011-07-31
-2929858 Eppenbrunn Eppenbrunn 49.11667 7.56667 P PPLA4 DE 08 00 07340 07340008 1530 307 Europe/Berlin 2011-04-25
-2929859 Eppenberg Eppenberg 50.25 7.06667 P PPLA4 DE 08 00 07135 07135026 244 472 Europe/Berlin 2011-04-25
-2929862 Eppelsheim Eppelsheim 49.70556 8.16528 P PPLA4 DE 08 00 07331 07331020 1265 194 Europe/Berlin 2011-04-25
-2929863 Eppelheim Eppelheim Eppelheim 49.4025 8.63306 P PPL DE 01 14190 112 Europe/Berlin 2012-01-18
-2929865 Eppelborn Eppelborn Eppelborn 49.4 6.96667 P PPLA4 DE 09 00 10043 10043111 18079 244 Europe/Berlin 2011-04-25
-2929871 Epfendorf Epfendorf 48.25 8.6 P PPLA4 DE 01 083 08325 08325015 3566 482 Europe/Berlin 2011-04-25
-2929872 Epfenbach Epfenbach Epfenbach 49.33917 8.90778 P PPLA4 DE 01 082 08226 08226017 2502 216 Europe/Berlin 2011-07-31
-2929877 Epenwöhrden Epenwohrden Epenwohrden,Epenwöhrden 54.11667 9.05 P PPLA4 DE 10 00 01051 01051028 790 0 Europe/Berlin 2011-04-25
-2929892 Enzklösterle Enzklosterle Enzklostelte,Enzklosterle,Enzklösterle 48.66667 8.48333 P PPLA4 DE 01 082 08235 08235025 1286 778 Europe/Berlin 2011-04-25
-2929920 Enzen Enzen 49.91667 6.36667 P PPLA4 DE 08 00 07232 07232032 49 282 Europe/Berlin 2011-04-25
-2929997 Enspel Enspel 50.61667 7.88333 P PPLA4 DE 08 00 07143 07143219 277 386 Europe/Berlin 2011-04-25
-2930006 Ensheim Ensheim Ensheim 49.80639 8.11556 P PPLA4 DE 08 00 07331 07331019 430 214 Europe/Berlin 2011-04-25
-2930018 Ensdorf Ensdorf 49.34062 11.93587 P PPLA4 DE 02 093 09371 09371120 2275 373 Europe/Berlin 2011-04-25
-2930019 Ensdorf Ensdorf 49.3 6.78333 P PPLA4 DE 09 00 10044 10044123 6631 198 Europe/Berlin 2011-04-25
-2930021 Ensch Ensch 49.83333 6.83333 P PPLA4 DE 08 00 07235 07235019 457 115 Europe/Berlin 2011-04-25
-2930030 Ennigerloh Ennigerloh Aningeroloh,Aningerolôh,Ennigerloh 51.83333 8.01667 P PPL DE 07 055 20713 100 Europe/Berlin 2012-01-18
-2930035 Ennetach Ennetach 48.05238 9.3201 P PPL DE 01 084 08437 1600 560 560 Europe/Berlin 2010-11-15
-2930043 Ennepetal Ennepetal 51.29848 7.3629 P PPL DE 07 32607 197 Europe/Berlin 2010-03-26
-2930053 Enkirch Enkirch 49.98333 7.11667 P PPLA4 DE 08 00 07231 07231029 1662 155 Europe/Berlin 2011-04-25
-2930071 Enkenbach-Alsenborn Enkenbach-Alsenborn 49.48333 7.9 P PPLA4 DE 08 00 07335 07335004 7189 298 Europe/Berlin 2011-04-25
-2930080 Eningen unter Achalm Eningen unter Achalm Eningen 48.48686 9.25946 P PPLA4 DE 01 084 08415 08415019 10715 464 Europe/Berlin 2011-04-25
-2930109 Sankt Englmar Sankt Englmar Englmar,Sankt Englmar 49 12.81667 P PPLA4 DE 02 092 09278 09278184 1568 851 Europe/Berlin 2011-04-25
-2930182 Enger Enger Angeri,Angėri,Enger,Engeri,Ėngėri 52.13333 8.56667 P PPL DE 07 19852 109 Europe/Berlin 2012-01-18
-2930201 Engen Engen Engen 47.85 8.76667 P PPL DE 01 10190 546 Europe/Berlin 2012-01-18
-2930205 Engelthal Engelthal 49.47181 11.39943 P PPLA4 DE 02 095 09574 09574120 1093 373 Europe/Berlin 2011-04-25
-2930210 Engelstadt Engelstadt 49.90417 8.06528 P PPLA4 DE 08 00 07339 07339016 730 204 Europe/Berlin 2011-04-25
-2930216 Engelskirchen Engelskirchen Engelskirchen 50.98333 7.4 P PPLA4 DE 07 053 05374 05374008 20786 209 Europe/Berlin 2011-04-25
-2930237 Engelschoff Engelschoff 53.66667 9.33333 P PPLA4 DE 06 00 03359 03359015 717 252 Europe/Berlin 2011-04-25
-2930248 Engelsbrand Engelsbrand 48.83333 8.65 P PPLA4 DE 01 082 08236 08236013 4361 576 Europe/Berlin 2011-04-25
-2930252 Engelsberg Engelsberg 48.11667 12.55 P PPLA4 DE 02 091 09189 09189115 2801 497 Europe/Berlin 2011-04-25
-2930278 Engeln Engeln 52.79363 8.91815 P PPLA4 DE 06 00 03251 03251016 1170 58 Europe/Berlin 2011-08-12
-2930338 Engden Engden 52.4 7.18333 P PPLA4 DE 06 00 03456 03456003 456 38 Europe/Berlin 2011-04-25
-2930361 Endschütz Endschutz 50.78333 12.13333 P PPLA4 DE 15 00 16076 16076017 388 271 Europe/Berlin 2011-04-25
-2930367 Bad Endorf Bad Endorf Bad Endorf in Oberbayern,Endorf,Endorf in Oberbayern 47.90901 12.29795 P PPL DE 02 091 7465 519 Europe/Berlin 2010-11-15
-2930375 Endlichhofen Endlichhofen 50.20185 7.81815 P PPLA4 DE 08 00 07141 07141037 142 324 Europe/Berlin 2011-12-29
-2930383 Endingen Endingen 48.14221 7.70049 P PPL DE 01 9034 192 Europe/Berlin 2012-02-28
-2930408 Bad Endbach Bad Endbach Bad Endbach,Endbach 50.75 8.5 P PPLA4 DE 05 065 06534 06534003 8734 359 Europe/Berlin 2011-04-25
-2930416 Emtmannsberg Emtmannsberg 49.9 11.65 P PPLA4 DE 02 094 09472 09472133 1146 429 Europe/Berlin 2011-04-25
-2930417 Emtinghausen Emtinghausen 52.93333 8.96667 P PPLA4 DE 06 00 03361 03361004 1684 10 Europe/Berlin 2011-04-25
-2930426 Emstek Emstek Emstek 52.83333 8.15 P PPLA4 DE 06 00 03453 03453005 11257 55 Europe/Berlin 2011-07-31
-2930432 Emskirchen Emskirchen Emskirchen 49.55 10.71667 P PPL DE 02 6197 324 Europe/Berlin 2012-01-18
-2930449 Emsdetten Emsdetten Emsdetten 52.18333 7.53333 P PPL DE 07 35582 38 Europe/Berlin 2012-01-18
-2930454 Emsbüren Emsburen Emsburen,Emsbüren 52.4 7.3 P PPLA4 DE 06 00 03454 03454010 9623 28 Europe/Berlin 2011-04-25
-2930461 Empfingen Empfingen 48.39258 8.71036 P PPLA4 DE 01 082 08237 08237024 4123 493 Europe/Berlin 2011-04-25
-2930463 Empfertshausen Empfertshausen Empfertshausen 50.66667 10.1 P PPLA4 DE 15 00 16063 16063023 663 445 Europe/Berlin 2011-04-25
-2930480 Emmerzhausen Emmerzhausen 50.71667 8.03333 P PPLA4 DE 08 00 07132 07132026 779 530 Europe/Berlin 2011-04-25
-2930500 Emmering Emmering 48.18333 11.28333 P PPLA4 DE 02 091 09179 09179119 6081 515 Europe/Berlin 2011-04-25
-2930502 Emmering Emmering 47.99762 12.05642 P PPLA4 DE 02 091 09175 09175136 1427 484 Europe/Berlin 2011-04-25
-2930509 Emmerich Emmerich Ehmmerikh,Emmerich,Stadt Emmerich,Эммерих 51.83333 6.25 P PPL DE 07 29289 18 Europe/Berlin 2012-01-18
-2930521 Emmendorf Emmendorf 53.01667 10.56667 P PPLA4 DE 06 00 03360 03360008 788 28 Europe/Berlin 2011-04-25
-2930523 Emmendingen Emmendingen 48.12096 7.85359 P PPL DE 01 083 26222 207 Europe/Berlin 2010-11-15
-2930528 Emmelshausen Emmelshausen 50.15 7.56667 P PPLA4 DE 08 00 07140 07140036 4889 485 Europe/Berlin 2011-04-25
-2930539 Emmelbaum Emmelbaum 50.05 6.26667 P PPLA4 DE 08 00 07232 07232031 67 453 Europe/Berlin 2011-04-25
-2930546 Emlichheim Emlichheim 52.61667 6.85 P PPLA4 DE 06 00 03456 03456002 6820 18 Europe/Berlin 2011-04-25
-2930547 Emleben Emleben Emleben 50.9 10.7 P PPLA4 DE 15 00 16067 16067013 807 346 Europe/Berlin 2011-04-25
-2930550 Emkendorf Emkendorf 54.26667 9.85 P PPLA4 DE 10 00 01058 01058049 1548 13 Europe/Berlin 2011-04-25
-2930575 Emersacker Emersacker 48.5 10.66667 P PPLA4 DE 02 097 09772 09772137 1435 507 Europe/Berlin 2011-04-25
-2930579 Emerkingen Emerkingen 48.21192 9.65647 P PPLA4 DE 01 084 08425 08425036 829 532 Europe/Berlin 2011-04-25
-2930581 Emeringen Emeringen 48.23388 9.51781 P PPLA4 DE 01 084 08425 08425035 132 565 Europe/Berlin 2011-04-25
-2930596 Emden Emden Amuthon,Emden,ai mu deng,amdn,emuden,Āmūthon,Емден,אמדן,إمدن,エムデン,埃姆登 53.36667 7.21667 P PPL DE 06 51526 4 Europe/Berlin 2012-01-18
-2930599 Embühren Embuhren Embuhren,Embühren 54.16667 9.58333 P PPLA4 DE 10 00 01058 01058048 231 21 Europe/Berlin 2011-04-25
-2930602 Embsen Embsen Embden,Embsen 53.18333 10.35 P PPLA4 DE 06 00 03355 03355016 2496 41 Europe/Berlin 2011-04-25
-2930613 Elzweiler Elzweiler 49.58333 7.51667 P PPLA4 DE 08 00 07336 07336021 162 240 Europe/Berlin 2011-04-25
-2930622 Elze Elze Elze (Wedemark),Wedemark-Elze 52.58157 9.73492 P PPL DE 06 00 03241 03241019 2904 43 39 Europe/Berlin 2011-04-25
-2930623 Elze Elze 52.12263 9.73595 P PPLA4 DE 06 00 03254 03254014 9582 93 Europe/Berlin 2011-04-25
-2930626 Elzach Elzach Elzach 48.18333 8.06667 P PPL DE 01 7088 458 Europe/Berlin 2012-01-18
-2930628 Elz Elz Elz 50.41667 8.03333 P PPLA4 DE 05 065 06533 06533006 7972 159 Europe/Berlin 2011-07-31
-2930630 Elxleben Elxleben 51.05 10.95 P PPLA4 DE 15 00 16068 16068009 2405 162 Europe/Berlin 2011-04-25
-2930631 Elxleben Elxleben 50.86667 11.05 P PPLA4 DE 15 00 16070 16070013 626 280 Europe/Berlin 2011-04-25
-2930646 Eltville Eltville Eltville 50.03333 8.11667 P PPL DE 05 16845 109 Europe/Berlin 2012-01-18
-2930650 Eltmann Eltmann Eltmann 49.96667 10.66667 P PPL DE 02 5614 245 Europe/Berlin 2012-01-18
-2930662 Elterlein Elterlein Elterlein 50.58333 12.86667 P PPL DE 13 3282 617 Europe/Berlin 2012-01-18
-2930672 Elstra Elstra Elstra,Halstrow,Halštrow 51.21667 14.15 P PPL DE 13 3176 210 Europe/Berlin 2012-01-18
-2930680 Elsterwerda Elsterwerda Elsterwerda,Esterwerda 51.45 13.53333 P PPL DE 11 9694 92 Europe/Berlin 2012-01-18
-2930682 Elstertrebnitz Elstertrebnitz Elstertrebnitz 51.15 12.23333 P PPLA4 DE 13 147 14729 14729100 1549 132 Europe/Berlin 2011-04-25
-2930687 Elsterberg Elsterberg 50.60841 12.16787 P PPL DE 13 5153 290 Europe/Berlin 2010-05-20
-2930695 Elster Elster 51.83333 12.83333 P PPL DE 14 2638 71 Europe/Berlin 2006-01-17
-2930708 Elsnig Elsnig 51.61024 12.92833 P PPLA4 DE 13 147 14730 14730120 1687 84 Europe/Berlin 2011-07-31
-2930715 Elskop Elskop Elskop 53.81667 9.48333 P PPLA4 DE 10 00 01061 01061026 157 253 Europe/Berlin 2011-04-25
-2930726 Elsfleth Elsfleth 53.23748 8.45664 P PPL DE 06 00 9310 3 Europe/Berlin 2010-11-22
-2930747 Elsenfeld Elsenfeld Elsenfeld 49.84167 9.16222 P PPL DE 02 8727 126 Europe/Berlin 2012-01-18
-2930750 Elsendorf Elsendorf 48.7 11.81667 P PPLA4 DE 02 092 09273 09273163 2073 439 Europe/Berlin 2011-04-25
-2930771 Elsdorf-Westermühlen Elsdorf-Westermuhlen Elsdorf-Westermuhlen,Elsdorf-Westermühlen 54.26667 9.51667 P PPLA4 DE 10 00 01058 01058047 1766 6 Europe/Berlin 2011-04-25
-2930776 Elsdorf Elsdorf 53.23333 9.35 P PPLA4 DE 06 00 03357 03357013 2083 30 Europe/Berlin 2011-04-25
-2930778 Elsdorf Elsdorf 50.93739 6.56828 P PPLA4 DE 07 053 05362 05362016 21967 78 Europe/Berlin 2011-07-31
-2930811 Elpersbüttel Elpersbuttel Elpersbuttel,Elpersbüttel 54.07248 9.04673 P PPLA4 DE 10 00 01051 01051027 907 1 Europe/Berlin 2011-09-23
-2930820 Elmstein Elmstein Elmstein 49.36667 7.93333 P PPLA4 DE 08 00 07332 07332014 2786 390 Europe/Berlin 2011-04-25
-2930821 Elmshorn Elmshorn Elmshorn 53.75 9.65 P PPL DE 10 48703 1 Europe/Berlin 2012-01-18
-2930832 Elmlohe Elmlohe 53.5867 8.74254 P PPLA4 DE 06 00 03352 03352015 887 5 Europe/Berlin 2011-07-05
-2930850 Elmenhorst Elmenhorst 54.15 12 P PPL DE 12 4273 11 Europe/Berlin 2006-01-17
-2930852 Elmenhorst Elmenhorst 53.76667 10.26667 P PPLA4 DE 10 00 01062 01062016 2244 38 Europe/Berlin 2011-04-25
-2930853 Elmenhorst Elmenhorst 53.54561 10.5352 P PPLA4 DE 10 00 01053 01053027 879 47 Europe/Berlin 2011-04-25
-2930855 Elmenhorst Elmenhorst 54.21667 13.06667 P PPLA4 DE 12 00 13057 13057027 824 26 Europe/Berlin 2011-04-25
-2930881 Ellzee Ellzee 48.33971 10.31891 P PPLA4 DE 02 097 09774 09774133 1167 492 Europe/Berlin 2011-04-25
-2930887 Ellweiler Ellweiler 49.61667 7.15 P PPLA4 DE 08 00 07134 07134024 289 381 Europe/Berlin 2011-04-25
-2930889 Ellwangen Ellwangen 48.96164 10.13173 P PPL DE 01 25276 443 Europe/Berlin 2008-10-30
-2930895 Ellscheid Ellscheid 50.15 6.91667 P PPLA4 DE 08 00 07233 07233021 268 445 Europe/Berlin 2011-04-25
-2930900 Ellrich Ellrich 51.58656 10.66326 P PPL DE 15 00 6423 255 Europe/Berlin 2010-11-22
-2930914 Ellingstedt Ellingstedt Ellingstedt 54.48333 9.4 P PPLA4 DE 10 00 01059 01059023 842 9 Europe/Berlin 2011-04-25
-2930916 Ellingshausen Ellingshausen 50.55 10.46667 P PPLA4 DE 15 00 16066 16066018 279 346 Europe/Berlin 2011-04-25
-2930934 Ellingen Ellingen 49.06076 10.96783 P PPL DE 02 3738 397 Europe/Berlin 2009-06-15
-2930946 Ellhöft Ellhoft Ellhoft,Ellhöft 54.88333 8.95 P PPLA4 DE 10 00 01054 01054027 141 4 Europe/Berlin 2011-04-25
-2930948 Ellhofen Ellhofen Ellhofen 49.14667 9.32194 P PPLA4 DE 01 081 08125 08125024 3321 184 Europe/Berlin 2011-07-31
-2930952 Ellgau Ellgau 48.6 10.86667 P PPLA4 DE 02 097 09772 09772136 1004 420 Europe/Berlin 2011-04-25
-2930965 Ellerstadt Ellerstadt 49.46167 8.25944 P PPLA4 DE 08 00 07332 07332013 2304 114 Europe/Berlin 2011-04-25
-2930968 Ellersleben Ellersleben 51.15 11.31667 P PPLA4 DE 15 00 16068 16068008 307 153 Europe/Berlin 2011-04-25
-2931000 Ellerhoop Ellerhoop Ellerhoop 53.73333 9.76667 P PPLA4 DE 10 00 01056 01056014 1304 9 Europe/Berlin 2011-04-25
-2931008 Ellerdorf Ellerdorf Ellerdorf 54.2 9.85 P PPLA4 DE 10 00 01058 01058046 577 23 Europe/Berlin 2011-04-25
-2931024 Ellerbek Ellerbek Ellerbek 53.65 9.86667 P PPLA4 DE 10 00 01056 01056013 4326 10 Europe/Berlin 2011-04-25
-2931038 Ellerau Ellerau Ellerau 53.75 9.91667 P PPLA4 DE 10 00 01060 01060019 5500 24 Europe/Berlin 2011-04-25
-2931060 Ellenhausen Ellenhausen 50.51667 7.71667 P PPLA4 DE 08 00 07143 07143015 317 230 Europe/Berlin 2011-04-25
-2931079 Ellenberg Ellenberg 49.65 7.15 P PPLA4 DE 08 00 07134 07134023 109 391 Europe/Berlin 2011-04-25
-2931080 Ellenberg Ellenberg 49.01667 10.21667 P PPLA4 DE 01 081 08136 08136018 1693 576 Europe/Berlin 2011-04-25
-2931097 Ellefeld Ellefeld 50.48367 12.3888 P PPLA4 DE 13 145 14523 14523090 3077 504 Europe/Berlin 2011-07-31
-2931098 Elleben Elleben Elleben 50.86667 11.08333 P PPLA4 DE 15 00 16070 16070012 949 307 Europe/Berlin 2011-04-25
-2931125 Elkenroth Elkenroth 50.73333 7.88333 P PPLA4 DE 08 00 07132 07132025 1900 459 Europe/Berlin 2011-04-25
-2931152 Elisabeth-Sophien-Koog Elisabeth-Sophien-Koog Elisabeth-Sophien-Koog 54.51667 8.88333 P PPLA4 DE 10 00 01054 01054026 46 255 Europe/Berlin 2011-04-25
-2931171 Elgersburg Elgersburg Elgersburg 50.7 10.85 P PPLA4 DE 15 00 16070 16070011 1234 631 Europe/Berlin 2011-04-25
-2931182 Elfershausen Elfershausen 50.14743 9.96151 P PPL DE 02 096 3005 198 Europe/Berlin 2010-11-15
-2931210 Eldingen Eldingen Eldingen 52.68333 10.33333 P PPLA4 DE 06 00 03351 03351008 2318 65 Europe/Berlin 2011-04-25
-2931217 Eldena Eldena 53.23333 11.41667 P PPLA4 DE 12 00 13054 13054028 1432 24 Europe/Berlin 2011-04-25
-2931223 Elchweiler Elchweiler 49.66667 7.2 P PPLA4 DE 08 00 07134 07134022 96 394 Europe/Berlin 2011-04-25
-2931245 Elbingerode Elbingerode Elbingerode 51.76667 10.8 P PPL DE 14 4112 485 Europe/Berlin 2012-01-18
-2931246 Elbingerode Elbingerode 51.65925 10.27771 P PPLA4 DE 06 00 03156 03156006 491 206 Europe/Berlin 2011-07-31
-2931288 Elben Elben 50.75 7.83333 P PPLA4 DE 08 00 07132 07132024 0 291 Europe/Berlin 2011-04-25
-2931314 Ekenis Ekenis Ekenis 54.63333 9.85 P PPLA4 DE 10 00 01059 01059022 234 34 Europe/Berlin 2011-04-25
-2931333 Eixen Eixen 54.16143 12.72384 P PPLA4 DE 12 00 13057 13057026 893 19 Europe/Berlin 2011-04-25
-2931357 Eitting Eitting Eitting,Euting 48.36667 11.9 P PPLA4 DE 02 091 09177 09177116 2238 437 Europe/Berlin 2011-04-25
-2931361 Eitorf Eitorf Eitdorf,Eitorf 50.76667 7.45 P PPLA4 DE 07 053 05382 05382016 19761 102 Europe/Berlin 2011-07-31
-2931372 Eiterfeld Eiterfeld Eiterfeld 50.76667 9.8 P PPLA4 DE 05 066 06631 06631007 7613 343 Europe/Berlin 2011-07-31
-2931378 Eitensheim Eitensheim 48.81667 11.31667 P PPLA4 DE 02 091 09176 09176124 0 406 Europe/Berlin 2011-04-25
-2931385 Eitelborn Eitelborn 50.36667 7.71667 P PPLA4 DE 08 00 07143 07143013 2558 343 Europe/Berlin 2011-04-25
-2931414 Eislingen Eislingen Eislingen-Fils 48.69515 9.70676 P PPL DE 01 081 20585 338 Europe/Berlin 2010-11-15
-2931423 Eisingen Eisingen 49.75972 9.83111 P PPLA4 DE 02 096 09679 09679126 3539 316 Europe/Berlin 2011-04-25
-2931424 Eisingen Eisingen 48.95 8.66667 P PPLA4 DE 01 082 08236 08236011 4393 259 Europe/Berlin 2011-04-25
-2931425 Eisighofen Eisighofen 50.23333 8.01667 P PPLA4 DE 08 00 07141 07141036 245 349 Europe/Berlin 2011-04-25
-2931433 Eisfeld Eisfeld Eisfeld 50.41667 10.91667 P PPL DE 15 5855 458 Europe/Berlin 2012-01-18
-2931467 Eisenschmitt Eisenschmitt 50.05 6.71667 P PPLA4 DE 08 00 07231 07231026 333 355 Europe/Berlin 2011-04-25
-2931481 Eisenhüttenstadt Eisenhuettenstadt Ajzenkhjuttenshtadt,Eisenhuettenstadt,Eisenhüttenstadt,Fuerstenberg,Айзенхюттенштадт 52.15 14.65 P PPLA4 DE 11 00 12067 12067120 32052 45 41 Europe/Berlin 2011-07-31
-2931497 Eisendorf Eisendorf 54.2 9.86667 P PPLA4 DE 10 00 01058 01058045 294 25 Europe/Berlin 2011-04-25
-2931521 Eisenberg Eisenberg Eisenberg 50.96667 11.9 P PPL DE 15 11438 291 Europe/Berlin 2012-01-18
-2931522 Eisenberg Eisenberg 49.56583 8.07 P PPL DE 08 10006 221 Europe/Berlin 2006-01-17
-2931550 Eisenberg Eisenberg 47.61201 10.60524 P PPLA4 DE 02 097 09777 09777125 0 835 Europe/Berlin 2011-07-31
-2931569 Eisenbach Eisenbach Eisenbach 47.96667 8.26667 P PPL DE 01 2254 1033 Europe/Berlin 2012-01-18
-2931574 Eisenach Eisenach Ajzenakh,ESA,Ehjzenakh,Eisenach,aizenaha,Айзенах,Эйзенах,アイゼナハ 50.98333 10.31667 P PPL DE 15 43846 215 Europe/Berlin 2012-01-18
-2931575 Eisenach Eisenach 49.85 6.51667 P PPLA4 DE 08 00 07232 07232218 283 358 Europe/Berlin 2011-04-25
-2931594 Eisdorf am Harz Eisdorf am Harz Eisdorf,Eisdorf uber Herzberg,Eisdorf über Herzberg,Eisdorp 51.76152 10.17591 P PPLA4 DE 06 00 03156 03156005 1824 164 Europe/Berlin 2011-03-16
-2931691 Einselthum Einselthum 49.65167 8.12472 P PPLA4 DE 08 00 07333 07333018 864 206 Europe/Berlin 2011-04-25
-2931703 Einöllen Einollen 49.61667 7.63333 P PPLA4 DE 08 00 07336 07336019 502 321 Europe/Berlin 2011-04-25
-2931742 Einig Einig 50.28333 7.28333 P PPLA4 DE 08 00 07137 07137023 147 297 Europe/Berlin 2011-04-25
-2931752 Einhausen Einhausen 50.53333 10.46667 P PPLA4 DE 15 00 16066 16066017 500 306 Europe/Berlin 2011-04-25
-2931753 Einhausen Einhausen 49.67667 8.54833 P PPLA4 DE 05 064 06431 06431006 5933 93 Europe/Berlin 2011-04-25
-2931759 Einhaus Einhaus 53.71667 10.73333 P PPLA4 DE 10 00 01053 01053026 390 31 Europe/Berlin 2011-04-25
-2931784 Markt Einersheim Markt Einersheim Einersheim,Markt Einersheim 49.68333 10.3 P PPL DE 02 1190 276 Europe/Berlin 2012-01-18
-2931795 Eineborn Eineborn Eineborn 50.83333 11.86667 P PPLA4 DE 15 00 16074 16074017 355 341 Europe/Berlin 2011-04-25
-2931804 Einbeck Einbeck Ajnbek,Einbeck,Stadt Einbeck,Айнбек 51.81667 9.86667 P PPL DE 06 27931 117 Europe/Berlin 2012-01-18
-2931815 Eimsheim Eimsheim 49.79583 8.28944 P PPLA4 DE 08 00 07339 07339015 620 199 Europe/Berlin 2011-04-25
-2931818 Eimke Eimke 52.96601 10.31324 P PPLA4 DE 06 00 03360 03360007 1023 66 Europe/Berlin 2011-04-25
-2931825 Eimen Eimen 51.88333 9.78333 P PPLA4 DE 06 00 03255 03255012 1162 216 Europe/Berlin 2011-04-25
-2931827 Eimeldingen Eimeldingen 47.63333 7.6 P PPLA4 DE 01 083 08336 08336019 2194 264 Europe/Berlin 2011-04-25
-2931828 Eime Eime 52.07449 9.72118 P PPL DE 06 2888 93 Europe/Berlin 2010-08-18
-2931838 Eilsleben Eilsleben Eilsleben,Eisleben 52.14708 11.21035 P PPLA4 DE 14 00 15083 15083190 2282 134 Europe/Berlin 2011-05-03
-2931843 Eilscheid Eilscheid 50.13333 6.38333 P PPLA4 DE 08 00 07232 07232217 41 485 Europe/Berlin 2011-04-25
-2931871 Eilenburg Eilenburg Eilenburg 51.45984 12.63338 P PPL DE 13 147 14730 14730110 17609 103 Europe/Berlin 2011-03-16
-2931881 Eil Eil 50.9 7.08333 P PPL DE 07 8849 51 Europe/Berlin 2009-11-19
-2931911 Eigeltingen Eigeltingen Eigeltingen 47.86667 8.9 P PPLA4 DE 01 083 08335 08335021 3444 526 Europe/Berlin 2011-04-25
-2931985 Eicklingen Eicklingen Eicklingen 52.55 10.18333 P PPL DE 06 00 03351 03351007 3292 43 Europe/Berlin 2012-01-18
-2932012 Eickendorf Eickendorf Eickendorf (Boerdeland),Eickendorf (Bördeland),Eickendorf (Landkreis Schoenebeck),Eickendorf (Landkreis Schönebeck),Eikendorf 51.94765 11.67538 P PPL DE 14 00 15089 15089042 1208 79 81 Europe/Berlin 2011-04-27
-2932024 Eickeloh Eickeloh 52.72922 9.60686 P PPLA4 DE 06 00 03358 03358006 805 29 Europe/Berlin 2011-04-25
-2932040 Eichwalde Eichwalde 52.36667 13.61667 P PPLA4 DE 11 00 12061 12061112 5849 36 Europe/Berlin 2011-04-25
-2932061 Eichstruth Eichstruth Eichstruth 51.3 10.08333 P PPLA4 DE 15 00 16061 16061028 85 337 Europe/Berlin 2011-04-25
-2932063 Eichstetten Eichstetten 48.09427 7.74244 P PPL DE 01 3184 193 Europe/Berlin 2012-02-28
-2932066 Eichstegen Eichstegen 47.93333 9.5 P PPLA4 DE 01 084 08436 08436027 520 609 Europe/Berlin 2011-04-25
-2932069 Eichstätt Eichstatt Eichstatt,Eichstätt 48.88333 11.18333 P PPL DE 02 13125 501 Europe/Berlin 2012-01-18
-2932119 Eichigt Eichigt Eichigt 50.35 12.16667 P PPLA4 DE 13 145 14523 14523080 1354 555 Europe/Berlin 2011-04-25
-2932131 Eichhorst Eichhorst 53.6 13.5 P PPLA4 DE 12 00 13055 13055085 568 53 Europe/Berlin 2011-04-25
-2932266 Eichenzell Eichenzell 50.49536 9.69672 P PPLA4 DE 05 066 06631 06631006 11042 290 Europe/Berlin 2011-04-25
-2932286 Eichenried Eichenried Eichenried bei Erding 48.27748 11.78206 P PPL DE DE 02 2035 473 Europe/Berlin 2009-03-14
-2932321 Eichendorf Eichendorf Eichendorf,Euchendorf 48.63333 12.85 P PPL DE 02 6617 355 Europe/Berlin 2012-01-18
-2932329 Eichenbühl Eichenbuhl 49.70556 9.32917 P PPLA4 DE 02 096 09676 09676119 2756 179 Europe/Berlin 2011-04-25
-2932343 Eichenberg Eichenberg 50.8 11.53333 P PPLA4 DE 15 00 16074 16074016 456 269 Europe/Berlin 2011-04-25
-2932344 Eichenberg Eichenberg 50.55 10.66667 P PPLA4 DE 15 00 16069 16069011 183 478 Europe/Berlin 2011-04-25
-2932376 Eichenbarleben Eichenbarleben Eichenbarleben 52.16667 11.4 P PPL DE 14 1163 112 Europe/Berlin 2012-01-18
-2932379 Eichenbach Eichenbach 50.43333 6.81667 P PPLA4 DE 08 00 07131 07131021 63 375 Europe/Berlin 2011-04-25
-2932382 Eichenau Eichenau Eichenau 48.16667 11.31667 P PPLA4 DE 02 091 09179 09179118 11637 527 Europe/Berlin 2011-04-25
-2932390 Eichen Eichen 50.63333 7.53333 P PPLA4 DE 08 00 07132 07132023 616 274 Europe/Berlin 2011-04-25
-2932440 Eichelhardt Eichelhardt 50.71667 7.7 P PPLA4 DE 08 00 07132 07132022 496 299 Europe/Berlin 2011-04-25
-2932715 Eich Eich 49.75 8.39889 P PPLA4 DE 08 00 07331 07331018 0 92 Europe/Berlin 2011-04-25
-2932738 Eibenstock Eibenstock Eibenstock 50.51667 12.6 P PPL DE 13 6706 609 Europe/Berlin 2012-01-18
-2932748 Eibelstadt Eibelstadt 49.72392 9.99962 P PPL DE 02 2907 183 Europe/Berlin 2010-06-07
-2932756 Eibau Eibau 50.98333 14.66667 P PPLA4 DE 13 146 14626 14626090 5103 366 Europe/Berlin 2011-04-25
-2932764 Ehweiler Ehweiler 49.51667 7.36667 P PPLA4 DE 08 00 07336 07336018 206 313 Europe/Berlin 2011-04-25
-2932788 Ehringshausen Ehringshausen 50.6 8.38333 P PPLA4 DE 05 065 06532 06532008 9505 175 Europe/Berlin 2011-04-25
-2932828 Ehrenfriedersdorf Ehrenfriedersdorf Ehrenfriedersdorf 50.65 12.95 P PPL DE 13 5360 638 Europe/Berlin 2012-01-18
-2932841 Ehrenburg Ehrenburg 52.75 8.7 P PPLA4 DE 06 00 03251 03251015 1686 44 Europe/Berlin 2011-04-25
-2932849 Ehrenberg Ehrenberg 50.48333 10.65 P PPLA4 DE 15 00 16069 16069009 0 399 Europe/Berlin 2011-04-25
-2932877 Ehr Ehr 50.23787 7.78467 P PPLA4 DE 08 00 07141 07141035 80 263 Europe/Berlin 2011-12-29
-2932882 Ehningen Ehningen 48.65882 8.94124 P PPLA4 DE 01 081 08115 08115013 7652 447 Europe/Berlin 2011-04-25
-2932887 Ehndorf Ehndorf Ehndorf 54.05 9.9 P PPLA4 DE 10 00 01058 01058044 628 11 Europe/Berlin 2011-04-25
-2932893 Ehlscheid Ehlscheid 50.51667 7.45 P PPLA4 DE 08 00 07138 07138015 1237 350 Europe/Berlin 2011-04-25
-2932904 Ehlenz Ehlenz 50.05 6.46667 P PPLA4 DE 08 00 07232 07232030 451 378 Europe/Berlin 2011-04-25
-2932921 Ehingen Ehingen 49.08333 10.53333 P PPLA4 DE 02 095 09571 09571141 815 465 Europe/Berlin 2011-04-25
-2932922 Ehingen Ehingen 48.6 10.8 P PPLA4 DE 02 097 09772 09772134 1022 448 Europe/Berlin 2011-04-25
-2932924 Ehingen Ehingen Ehingen Donau,Ehingen an der Donau,Ehkhingen,Эхинген 48.28259 9.72749 P PPL DE 01 26097 518 Europe/Berlin 2010-01-29
-2932938 Ehekirchen Ehekirchen 48.63333 11.1 P PPLA4 DE 02 091 09185 09185127 3782 417 Europe/Berlin 2011-04-25
-2932952 Egweil Egweil 48.78333 11.23333 P PPLA4 DE 02 091 09176 09176122 0 391 Europe/Berlin 2011-04-25
-2932960 Egmating Egmating 48.00405 11.79528 P PPLA4 DE 02 091 09175 09175116 2008 612 Europe/Berlin 2011-04-25
-2932987 Egloffstein Egloffstein Egloffstein 49.7 11.25 P PPL DE 02 2105 419 Europe/Berlin 2012-01-18
-2932991 Egling Egling 48.18333 10.98333 P PPL DE 02 2278 551 Europe/Berlin 2006-01-17
-2932992 Egling Egling 47.92316 11.50517 P PPLA4 DE 02 091 09173 09173120 5061 611 Europe/Berlin 2011-07-31
-2933009 Eging Eging 48.46667 12.2 P PPL DE 02 3876 497 Europe/Berlin 2006-01-17
-2933017 Eggstedt Eggstedt Eggstedt 54.05 9.26667 P PPLA4 DE 10 00 01051 01051026 858 1 Europe/Berlin 2011-04-25
-2933018 Eggstätt Eggstatt 47.92698 12.37919 P PPLA4 DE 02 091 09187 09187125 2809 538 Europe/Berlin 2011-04-25
-2933019 Eggolsheim Eggolsheim Eggolsheim 49.77111 11.05806 P PPL DE 02 6313 267 Europe/Berlin 2012-01-18
-2933025 Egglkofen Egglkofen 48.4 12.45 P PPLA4 DE 02 091 09183 09183115 1279 459 Europe/Berlin 2011-04-25
-2933029 Egglham Egglham 48.53333 13.06667 P PPLA4 DE 02 092 09277 09277117 2439 376 Europe/Berlin 2011-04-25
-2933042 Eggesin Eggesin Eggesin 53.68333 14.08333 P PPL DE 12 5598 1 Europe/Berlin 2012-01-18
-2933064 Eggersdorf Eggersdorf 51.97621 11.70971 P PPL DE 14 1224 55 Europe/Berlin 2011-04-27
-2933099 Eggenthal Eggenthal 47.91667 10.51667 P PPLA4 DE 02 097 09777 09777124 1299 703 Europe/Berlin 2011-04-25
-2933101 Eggenstein-Leopoldshafen Eggenstein-Leopoldshafen Eggenstein-Leopoldshafen,Leopoldshafen 49.09006 8.39879 P PPLA4 DE 01 082 08215 08215102 15189 110 Europe/Berlin 2011-04-25
-2933115 Eggenfelden Eggenfelden 48.40539 12.76264 P PPL DE 02 12860 417 Europe/Berlin 2008-10-22
-2933150 Eggebek Eggebek Eggebek 54.61667 9.36667 P PPLA4 DE 10 00 01059 01059107 2622 14 Europe/Berlin 2011-04-25
-2933168 Egg an der Günz Egg an der Gunz Egg,Egg an der Gunz,Egg an der Günz 48.08333 10.28333 P PPL DE 02 1167 586 Europe/Berlin 2012-01-18
-2933187 Egestorf Egestorf Egestorf,Egestorf am Suentel,Egestorf am Suntel,Egestorf am Süntel 53.193 10.063 P PPLA4 DE 06 00 03353 03353009 2451 102 Europe/Berlin 2011-08-30
-2933188 Egestorf Egestorf Egestoerp,Egestorf,Egestorf (Deister),Egestörp,Esedesthorp [a. 1231],Estoerp,Estoerpe,Estörp,Estörpe 52.28333 9.51667 P PPL DE 06 00 03241 03241002 7959 84 93 Europe/Berlin 2012-01-18
-2933190 Egesheim Egesheim 48.11667 8.86667 P PPLA4 DE 01 083 08327 08327013 632 860 Europe/Berlin 2011-04-25
-2933212 Egenhofen Egenhofen 48.28333 11.16667 P PPLA4 DE 02 091 09179 09179117 3252 509 Europe/Berlin 2011-04-25
-2933216 Egenhausen Egenhausen 48.56667 8.61667 P PPLA4 DE 01 082 08235 08235022 2025 549 Europe/Berlin 2011-04-25
-2933246 Egelsbach Egelsbach 49.97111 8.67028 P PPLA4 DE 05 064 06438 06438003 9645 128 Europe/Berlin 2011-04-25
-2933256 Egeln Egeln AEjeln,Egeln,Äjeln 51.94384 11.43265 P PPLA4 DE 14 00 15089 15089075 4119 70 74 Europe/Berlin 2011-05-04
-2933274 Efringen-Kirchen Efringen-Kirchen Efringen-Kirchen 47.65 7.56667 P PPLA4 DE 01 083 08336 08336014 8235 248 Europe/Berlin 2011-04-25
-2933287 Effeltrich Effeltrich 49.65929 11.09319 P PPLA4 DE 02 094 09474 09474122 2771 301 Europe/Berlin 2011-04-25
-2933297 Effelder Effelder 51.23333 10.25 P PPLA4 DE 15 00 16061 16061027 1360 464 Europe/Berlin 2011-04-25
-2933333 Edling Edling 48.05611 12.1647 P PPLA4 DE 02 091 09187 09187124 0 478 Europe/Berlin 2011-07-31
-2933345 Edingen-Neckarhausen Edingen-Neckarhausen 49.45722 8.60639 P PPLA4 DE 01 082 08226 08226105 14009 105 Europe/Berlin 2011-04-25
-2933364 Edewecht Edewecht Edewecht 53.13333 7.98333 P PPL DE 06 20658 5 Europe/Berlin 2012-01-18
-2933367 Edesheim Edesheim 49.26333 8.135 P PPLA4 DE 08 00 07337 07337021 2294 154 Europe/Berlin 2011-04-25
-2933372 Edersleben Edersleben 51.41667 11.28333 P PPLA4 DE 14 00 15087 15087125 1173 143 Europe/Berlin 2011-04-25
-2933385 Ederheim Ederheim 48.81667 10.46667 P PPLA4 DE 02 097 09779 09779136 1146 501 Europe/Berlin 2011-04-25
-2933410 Edenkoben Edenkoben 49.28393 8.12714 P PPL DE 08 00 6668 171 Europe/Berlin 2010-11-22
-2933442 Edemissen Edemissen Emisse 52.38702 10.2614 P PPLA4 DE 06 00 03157 03157001 3600 77 Europe/Berlin 2011-02-16
-2933452 Edelsfeld Edelsfeld 49.57644 11.69589 P PPLA4 DE 02 093 09371 09371119 2012 531 Europe/Berlin 2011-07-31
-2933485 Edderitz Edderitz Edderitz 51.68333 11.93333 P PPL DE 14 1250 87 Europe/Berlin 2012-02-02
-2933488 Eddelak Eddelak Eddelak 53.95 9.15 P PPLA4 DE 10 00 01051 01051024 1455 255 Europe/Berlin 2011-04-25
-2933524 Eckstedt Eckstedt 51.06667 11.13333 P PPLA4 DE 15 00 16068 16068007 615 165 Europe/Berlin 2011-04-25
-2933543 Ecklingerode Ecklingerode Ecklingerode 51.5 10.31667 P PPLA4 DE 15 00 16061 16061026 839 208 Europe/Berlin 2011-04-25
-2933550 Ecklak Ecklak Ecklak 53.95 9.26667 P PPLA4 DE 10 00 01061 01061025 339 253 Europe/Berlin 2011-04-25
-2933587 Eckfeld Eckfeld 50.11667 6.85 P PPLA4 DE 08 00 07231 07231025 359 452 Europe/Berlin 2011-04-25
-2933599 Eckersweiler Eckersweiler 49.56667 7.28333 P PPLA4 DE 08 00 07134 07134021 159 500 Europe/Berlin 2011-04-25
-2933607 Eckersdorf Eckersdorf 50.03333 11.4 P PPL DE 02 5071 341 Europe/Berlin 2006-01-17
-2933608 Eckersdorf Eckersdorf 49.9348 11.49621 P PPLA4 DE 02 094 09472 09472131 0 428 Europe/Berlin 2011-04-25
-2933627 Eckernförde Eckernforde Eckernfoeoer,Eckernfoerde,Eckernforde,Eckernförde,Eckernföör,Egernforde,Egernførde 54.46667 9.83333 P PPL DE 10 23383 0 Europe/Berlin 2012-01-18
-2933643 Eckenroth Eckenroth 49.91667 7.78333 P PPLA4 DE 08 00 07133 07133028 233 232 Europe/Berlin 2011-04-25
-2933669 Eckelsheim Eckelsheim 49.8 7.98333 P PPLA4 DE 08 00 07331 07331017 547 137 Europe/Berlin 2011-04-25
-2933720 Eckartsberga Eckartsberga Eckartsberga 51.11667 11.55 P PPL DE 14 1865 201 Europe/Berlin 2012-01-18
-2933772 Echzell Echzell Echzell 50.4 8.9 P PPLA4 DE 05 064 06440 06440006 5951 125 Europe/Berlin 2011-04-25
-2933781 Echtershausen Echtershausen 50.01667 6.41667 P PPLA4 DE 08 00 07232 07232029 115 278 Europe/Berlin 2011-04-25
-2933787 Echternacherbrück Echternacherbruck 49.81667 6.43333 P PPLA4 DE 08 00 07232 07232028 546 181 Europe/Berlin 2011-04-25
-2933798 Eching Eching 48.5 12.06667 P PPLA4 DE 02 092 09274 09274124 3516 427 Europe/Berlin 2011-04-25
-2933799 Eching Eching 48.3 11.61667 P PPLA4 DE 02 091 09178 09178120 12804 467 Europe/Berlin 2011-07-31
-2933801 Eching Eching 48.07991 11.11336 P PPL DE 02 091 1630 541 Europe/Berlin 2010-11-15
-2933808 Echem Echem 53.33333 10.53333 P PPLA4 DE 06 00 03355 03355015 1021 3 Europe/Berlin 2011-04-25
-2933817 Ebstorf Ebstorf Ebsdorf 53.02785 10.41839 P PPL DE 06 00 5471 71 Europe/Berlin 2010-11-22
-2933821 Ebringen Ebringen 47.9578 7.77652 P PPLA4 DE 01 083 08315 08315028 2747 268 Europe/Berlin 2011-07-31
-2933840 Ebnath Ebnath Ebnath,Ebriat 49.95 11.93333 P PPLA4 DE 02 093 09377 09377115 1374 569 Europe/Berlin 2011-04-25
-2933857 Ebhausen Ebhausen Ebhausen,Ebhausen uber Wollhausen,Ebhausen über Wollhausen 48.58333 8.68333 P PPLA4 DE 01 082 08235 08235020 4744 462 Europe/Berlin 2011-04-25
-2933863 Ebertsheim Ebertsheim 49.56833 8.10861 P PPLA4 DE 08 00 07332 07332012 1423 173 Europe/Berlin 2011-04-25
-2933865 Ebertshausen Ebertshausen 50.28333 7.98333 P PPLA4 DE 08 00 07141 07141034 135 334 Europe/Berlin 2011-04-25
-2933882 Eberswalde Eberswalde Eberswalde,Ehbersval'de,eberusuvu~arude,Эберсвальде,エーベルスヴァルデ 52.83492 13.81951 P PPLX DE 11 41980 14 Europe/Berlin 2009-01-28
-2933889 Eberstedt Eberstedt 51.06667 11.58333 P PPLA4 DE 15 00 16071 16071015 222 151 Europe/Berlin 2011-04-25
-2933897 Eberstadt Eberstadt 49.18028 9.32111 P PPLA4 DE 01 081 08125 08125021 3336 193 Europe/Berlin 2011-04-25
-2933909 Ebershausen Ebershausen 48.20546 10.31565 P PPLA4 DE 02 097 09774 09774129 618 517 Europe/Berlin 2011-04-25
-2933916 Ebersdorf Ebersdorf 53.51667 9.06667 P PPLA4 DE 06 00 03357 03357012 1153 5 Europe/Berlin 2011-04-25
-2933922 Ebersdorf Ebersdorf 50.33333 11.15 P PPL DE 02 6378 353 Europe/Berlin 2006-01-17
-2933945 Ebersberg Ebersberg 48.0771 11.97063 P PPL DE 02 091 11041 563 Europe/Berlin 2010-11-15
-2933959 Ebersbach an der Fils Ebersbach an der Fils Ebersbach,Ebersbachander Fils 48.716 9.5236 P PPL DE 01 15919 280 Europe/Berlin 2008-12-21
-2933963 Ebersbach Ebersbach 51.1 13.1 P PPLA4 DE 13 145 14522 14522100 1161 265 Europe/Berlin 2011-04-25
-2933965 Ebersbach Ebersbach Ebersbach,Habrachcicy,Habrachćicy 51.01667 14.58333 P PPL DE 13 8952 356 Europe/Berlin 2012-01-18
-2933981 Ebernhahn Ebernhahn 50.46667 7.76667 P PPLA4 DE 08 00 07143 07143012 1266 356 Europe/Berlin 2011-04-25
-2933986 Ebermannstadt Ebermannstadt Ebermannstadt 49.78222 11.18111 P PPL DE 02 6864 301 Europe/Berlin 2012-01-18
-2933987 Ebermannsdorf Ebermannsdorf 49.4 11.95 P PPLA4 DE 02 093 09371 09371118 2524 405 Europe/Berlin 2011-04-25
-2933994 Eberholzen Eberholzen 52.05 9.85 P PPLA4 DE 06 00 03254 03254012 633 210 Europe/Berlin 2011-04-25
-2934000 Eberhardzell Eberhardzell 48 9.81667 P PPLA4 DE 01 084 08426 08426038 4026 635 Europe/Berlin 2011-04-25
-2934009 Ebergötzen Ebergotzen 51.56667 10.11667 P PPLA4 DE 06 00 03152 03152008 1886 229 Europe/Berlin 2011-04-25
-2934014 Eberdingen Eberdingen Eberdingen 48.88333 8.96667 P PPLA4 DE 01 081 08118 08118012 6518 305 Europe/Berlin 2011-07-31
-2934020 Eberbach Eberbach Eberbach 49.46944 8.99278 P PPL DE 01 15624 164 Europe/Berlin 2012-01-18
-2934023 Ebenweiler Ebenweiler 47.9 9.51667 P PPLA4 DE 01 084 08436 08436024 1116 595 Europe/Berlin 2011-04-25
-2934032 Ebenshausen Ebenshausen 51.08333 10.3 P PPLA4 DE 15 00 16063 16063019 325 276 Europe/Berlin 2011-04-25
-2934033 Ebensfeld Ebensfeld 50.0664 10.95835 P PPL DE 02 5721 259 Europe/Berlin 2008-08-17
-2934056 Ebenheim Ebenheim Ebenheim 50.98333 10.51667 P PPLA4 DE 15 00 16067 16067012 265 286 Europe/Berlin 2011-04-25
-2934073 Ebendorf Ebendorf 52.18551 11.57478 P PPL DE 14 00 2096 57 Europe/Berlin 2010-11-22
-2934094 Ebelsbach Ebelsbach Ebelsbach 49.98333 10.68333 P PPLA4 DE 02 096 09674 09674129 3946 339 Europe/Berlin 2011-07-31
-2934097 Ebeleben Ebeleben Ebeleben,Elsleben 51.28333 10.73333 P PPL DE 15 3155 241 Europe/Berlin 2012-01-18
-2934158 Düvier Duvier 54.01549 13.06858 P PPLA4 DE 12 00 13052 13052020 564 15 Europe/Berlin 2011-04-25
-2934163 Duvenstedt Duvenstedt 53.70806 10.10444 P PPL DE 04 6022 25 Europe/Berlin 2011-08-21
-2934167 Duvensee Duvensee Duvensee 53.7 10.56667 P PPLA4 DE 10 00 01053 01053025 501 40 Europe/Berlin 2011-04-25
-2934235 Dußlingen Dusslingen 48.45357 9.05552 P PPLA4 DE 01 084 08416 08416011 5286 379 Europe/Berlin 2011-04-25
-2934246 Düsseldorf Dusseldorf DUS,Diseldorf,Diseldorfa,Diuseldorfas,Djuseldorf,Djussel'dorf,Duesseldoerp,Duesseldorf,Duseldorfo,Dusseldoerp,Dusseldorf,Dusseldorpium,Dusseldörp,Düsseldorf,Düsseldörp,Ntiselntorph,de~yusserudorufu,du sai er duo fu,dwiseldoleupeu,dwsldwrf,dysldwrp,Ντίσελντορφ,Диселдорф,Дюселдорф,Дюссельдорф,דיסלדורף,دوسلدورف,デュッセルドルフ,杜塞尔多夫,뒤셀도르프 51.22172 6.77616 P PPLA DE 07 051 573057 45 Europe/Berlin 2011-06-16
-2934281 Dürrwangen Durrwangen Durrwangen,Dürrwangen 49.11667 10.38333 P PPL DE 02 2673 437 Europe/Berlin 2012-01-18
-2934286 Dürrröhrsdorf Durrrohrsdorf Durrohrsdorf,Durrrohrsdorf-Dittersbach,Dürrröhrsdorf-Dittersbach,Dürröhrsdorf 51.03395 13.99718 P PPL DE 13 4829 223 Europe/Berlin 2010-04-17
-2934317 Dürrlauingen Durrlauingen 48.46666 10.4286 P PPLA4 DE 02 097 09774 09774127 1710 485 Europe/Berlin 2011-04-25
-2934324 Dürrhennersdorf Durrhennersdorf 51.05 14.61667 P PPLA4 DE 13 146 14626 14626070 1213 354 Europe/Berlin 2011-04-25
-2934452 Dürnau Durnau 48.64079 9.63544 P PPLA4 DE 01 081 08117 08117017 2102 429 Europe/Berlin 2011-04-25
-2934453 Dürnau Durnau 48.06667 9.56667 P PPLA4 DE 01 084 08426 08426036 468 578 Europe/Berlin 2011-04-25
-2934462 Durmersheim Durmersheim Durmersheim,Ntyrmerschaim,Ντύρμερσχαϊμ 48.93333 8.26667 P PPLA4 DE 01 082 08216 08216009 11675 107 Europe/Berlin 2011-04-25
-2934464 Dürmentingen Durmentingen 48.11667 9.53333 P PPLA4 DE 01 084 08426 08426035 2609 556 Europe/Berlin 2011-04-25
-2934466 Durlangen Durlangen 48.85632 9.79654 P PPLA4 DE 01 081 08136 08136015 3000 489 Europe/Berlin 2011-04-25
-2934486 Düren Duren Djuren,Dueren,Duren,Düren,Дюрен 50.8 6.48333 P PPL DE 07 93440 130 Europe/Berlin 2012-01-18
-2934495 Durchhausen Durchhausen Durchhausen 48.03333 8.68333 P PPLA4 DE 01 083 08327 08327012 863 754 Europe/Berlin 2011-04-25
-2934499 Dürbheim Durbheim 48.05 8.78333 P PPLA4 DE 01 083 08327 08327011 1694 675 Europe/Berlin 2011-04-25
-2934505 Durbach Durbach 48.49352 8.01736 P PPLA4 DE 01 083 08317 08317021 3880 214 Europe/Berlin 2011-07-31
-2934509 Durach Durach 47.7 10.35 P PPLA4 DE 02 097 09780 09780120 6675 715 Europe/Berlin 2011-04-25
-2934519 Duppach Duppach 50.26667 6.56667 P PPLA4 DE 08 00 07233 07233211 300 493 Europe/Berlin 2011-04-25
-2934529 Dunzweiler Dunzweiler 49.41586 7.30548 P PPLA4 DE 08 00 07336 07336017 949 355 Europe/Berlin 2011-04-25
-2934541 Dunum Dunum 53.6 7.65 P PPLA4 DE 06 00 03462 03462002 1111 2 Europe/Berlin 2011-04-25
-2934543 Dunsum Dunsum 54.73126 8.42488 P PPLA4 DE 10 00 01054 01054025 94 3 Europe/Berlin 2011-04-25
-2934548 Dünsen Dunsen 52.91667 8.63333 P PPLA4 DE 06 00 03458 03458004 1250 40 Europe/Berlin 2011-04-25
-2934560 Dunningen Dunningen 48.21242 8.50619 P PPLA4 DE 01 083 08325 08325014 6032 659 Europe/Berlin 2011-04-25
-2934594 Düngenheim Dungenheim 50.26667 7.16667 P PPLA4 DE 08 00 07135 07135023 1362 464 Europe/Berlin 2011-04-25
-2934599 Dünfus Dunfus 50.21667 7.23333 P PPLA4 DE 08 00 07135 07135022 294 335 Europe/Berlin 2011-04-25
-2934624 Dümpelfeld Dumpelfeld 50.43333 6.95 P PPLA4 DE 08 00 07131 07131501 694 462 Europe/Berlin 2011-04-25
-2934635 Dummerstorf Dummerstorf Dummerstorf 54.01667 12.23333 P PPLA4 DE 12 00 13051 13051089 2666 44 Europe/Berlin 2011-04-25
-2934643 Dümmer Dummer 53.58333 11.2 P PPLA4 DE 12 00 13054 13054027 1419 54 Europe/Berlin 2011-04-25
-2934662 Dülmen Dulmen Duelmen,Dulmen,Dulmenni,Dulmėnni,Dülmen 51.83333 7.3 P PPL DE 07 47495 76 Europe/Berlin 2012-01-18
-2934691 Duisburg Duisburg Disburga,Duisborg,Duisbourg,Duisburch,Duisburg,Duisburg and Hamborn,Duisburg-Hamborn,Duisburgo,Duizburg,Dujsburg,Dīsburga,Ntouismpournk,Thuiscoburgum,de~yusuburuku,du yi si bao,dwsbwrgh,dysbwrg,Ντούισμπουργκ,Дуизбург,Дуйсбург,דיסבורג,دوسبورغ,デュースブルク,杜伊斯堡 51.43333 6.75 P PPL DE 07 504358 30 Europe/Berlin 2012-01-18
-2934697 Duingen Duingen 52.00449 9.69578 P PPL DE 06 3116 204 Europe/Berlin 2010-08-18
-2934707 Duggendorf Duggendorf 49.11667 11.91667 P PPLA4 DE 02 093 09375 09375131 1605 472 Europe/Berlin 2011-04-25
-2934728 Duderstadt Duderstadt 51.51312 10.25951 P PPL DE 06 00 22910 186 Europe/Berlin 2010-11-22
-2934737 Dudenhofen Dudenhofen 49.31861 8.38861 P PPLA4 DE 08 00 07338 07338007 5709 105 Europe/Berlin 2011-04-25
-2934740 Düdenbüttel Dudenbuttel 53.58333 9.35 P PPLA4 DE 06 00 03359 03359014 877 14 Europe/Berlin 2011-04-25
-2934747 Dudeldorf Dudeldorf 49.98333 6.63333 P PPLA4 DE 08 00 07232 07232027 1065 325 Europe/Berlin 2011-04-25
-2934756 Duckow Duckow 53.7 12.8 P PPLA4 DE 12 00 13052 13052019 277 49 Europe/Berlin 2011-04-25
-2934764 Duchroth Duchroth 49.78333 7.73333 P PPLA4 DE 08 00 07133 07133027 584 232 Europe/Berlin 2011-07-31
-2934766 Ducherow Ducherow Ducherow 53.76667 13.78333 P PPLA4 DE 12 00 13059 13059021 2246 7 Europe/Berlin 2011-07-31
-2934767 Düchelsdorf Duchelsdorf Duchelsdorf,Düchelsdorf 53.73333 10.56667 P PPLA4 DE 10 00 01053 01053024 144 60 Europe/Berlin 2011-04-25
-2934831 Drübeck Drubeck Drubeck,Drübeck 51.85 10.71667 P PPL DE 14 1557 290 Europe/Berlin 2012-01-18
-2934835 Droyßig Droyssig 51.05 12.03333 P PPLA4 DE 14 00 15084 15084115 1907 249 Europe/Berlin 2011-04-25
-2934886 Drolshagen Drolshagen Drolshagen 51.01667 7.76667 P PPL DE 07 12310 438 Europe/Berlin 2012-01-18
-2934895 Drognitz Drognitz 50.58792 11.57229 P PPLA4 DE 15 00 16073 16073107 712 501 Europe/Berlin 2011-04-25
-2934907 Drogen Drogen 50.91667 12.31667 P PPLA4 DE 15 00 16077 16077004 161 264 Europe/Berlin 2011-04-25
-2934915 Drochtersen Drochtersen Drochtersen 53.71015 9.38463 P PPLA4 DE 06 00 03359 03359013 12364 2 Europe/Berlin 2011-08-26
-2934921 Dröbischau Drobischau Drobischau,Dröbischau 50.63333 11.06667 P PPLA4 DE 15 00 16073 16073021 518 628 Europe/Berlin 2011-04-25
-2934945 Driftsethe Driftsethe 53.38333 8.61667 P PPLA4 DE 06 00 03352 03352014 673 7 Europe/Berlin 2011-04-25
-2934965 Driedorf Driedorf Driedorf 50.63333 8.18333 P PPLA4 DE 05 065 06532 06532007 5213 485 Europe/Berlin 2011-04-25
-2935006 Drestedt Drestedt 53.33333 9.76667 P PPLA4 DE 06 00 03353 03353008 758 48 Europe/Berlin 2011-04-25
-2935022 Dresden Dresden Drazdany,Drazgany,Dresda,Dresde,Dresden,Dresdeno,Drezda,Drezden,Drezdenas,Drezdene,Drezno,Drážďany,Drēzdene,de lei si dun,deuleseuden,doresuden,dresadana,drezdeni,drsdn,drysdn,drzdn,Δρέσδη,Дрезден,דרזדן,درسدن,دريسدن,ड्रेसडन,დრეზდენი,ドレスデン,德累斯顿,드레스덴 51.05089 13.73832 P PPLA DE 13 146 486854 116 Europe/Berlin 2010-11-15
-2935023 Dreschvitz Dreschvitz 54.40315 13.29414 P PPLA4 DE 12 00 13061 13061009 796 9 Europe/Berlin 2011-07-31
-2935041 Drentwede Drentwede 52.74388 8.56504 P PPLA4 DE 06 00 03251 03251014 1050 46 Europe/Berlin 2011-07-31
-2935042 Drensteinfurt Drensteinfurt 51.79535 7.73815 P PPL DE 07 055 15260 64 Europe/Berlin 2010-11-15
-2935056 Drelsdorf Drelsdorf Drelsdorf,Troelstrup,Trölstrup 54.65 9.05 P PPLA4 DE 10 00 01054 01054024 1295 5 Europe/Berlin 2011-04-25
-2935063 Dreitzsch Dreitzsch Dreitzsch 50.73333 11.8 P PPLA4 DE 15 00 16075 16075019 471 347 Europe/Berlin 2011-04-25
-2935095 Dreisen Dreisen 49.60333 8.01056 P PPLA4 DE 08 00 07333 07333017 1027 230 Europe/Berlin 2011-04-25
-2935109 Dreisbach Dreisbach 50.61667 7.93333 P PPLA4 DE 08 00 07143 07143216 606 460 Europe/Berlin 2011-04-25
-2935117 Dreis Dreis 49.93333 6.81667 P PPLA4 DE 08 00 07231 07231024 1355 194 Europe/Berlin 2011-04-25
-2935201 Dreifelden Dreifelden 50.6 7.83333 P PPLA4 DE 08 00 07143 07143215 314 439 Europe/Berlin 2011-04-25
-2935209 Dreierwalde Dreierwalde 52.29074 7.48246 P PPL DE 07 055 2700 39 Europe/Berlin 2010-11-15
-2935220 Dreieich Dreieich Dreieich 50 8.7 P PPL DE 05 40367 174 Europe/Berlin 2012-01-18
-2935248 Drehnow Drehnow Drehnow,Drjenow 51.86667 14.36667 P PPLA4 DE 11 00 12071 12071060 628 60 Europe/Berlin 2011-04-25
-2935261 Dreggers Dreggers Dreggers 53.88333 10.35 P PPLA4 DE 10 00 01060 01060018 56 34 Europe/Berlin 2011-04-25
-2935265 Dreetz Dreetz 53.78333 11.96667 P PPLA4 DE 12 00 13053 13053019 245 34 Europe/Berlin 2011-04-25
-2935266 Dreetz Dreetz 52.80297 12.45961 P PPLA4 DE 11 00 12068 12068109 1251 29 Europe/Berlin 2011-04-25
-2935272 Drees Drees 50.35 7 P PPLA4 DE 08 00 07233 07233210 162 476 Europe/Berlin 2011-04-25
-2935293 Drechow Drechow 54.14042 12.79984 P PPLA4 DE 12 00 13057 13057024 254 14 Europe/Berlin 2011-04-25
-2935298 Drebkau Drebkau Drebkau 51.65 14.21667 P PPL DE 11 6336 89 Europe/Berlin 2012-01-18
-2935303 Drebach Drebach Drebach 50.66667 13.03333 P PPLA4 DE 13 145 14521 14521150 2574 503 Europe/Berlin 2011-07-31
-2935305 Dreba Dreba Dreba 50.66667 11.75 P PPLA4 DE 15 00 16075 16075018 292 468 Europe/Berlin 2011-04-25
-2935325 Dranske Dranske 54.63333 13.23333 P PPLA4 DE 12 00 13061 13061008 1527 4 Europe/Berlin 2011-04-25
-2935326 Dransfeld Dransfeld 51.5 9.76667 P PPL DE 06 4422 317 Europe/Berlin 2006-01-17
-2935334 Drangstedt Drangstedt 53.61359 8.75576 P PPLA4 DE 06 00 03352 03352013 1467 13 Europe/Berlin 2011-07-31
-2935341 Drakenburg Drakenburg 52.68689 9.21083 P PPL DE 06 1712 26 Europe/Berlin 2009-03-24
-2935361 Drahnsdorf Drahnsdorf 51.91667 13.58333 P PPLA4 DE 11 00 12061 12061097 666 65 Europe/Berlin 2011-04-25
-2935365 Dragun Dragun 53.7 11.21667 P PPLA4 DE 12 00 13058 13058026 866 68 Europe/Berlin 2011-04-25
-2935369 Dragensdorf Dragensdorf Dragensdorf 50.65 11.83333 P PPLA4 DE 15 00 16075 16075017 70 476 Europe/Berlin 2011-04-25
-2935373 Drage Drage 54.36667 9.16667 P PPLA4 DE 10 00 01054 01054023 612 3 Europe/Berlin 2011-04-25
-2935374 Drage Drage 54.00404 9.51927 P PPLA4 DE 10 00 01061 01061024 263 14 Europe/Berlin 2011-04-25
-2935375 Drage Drage 53.41667 10.26667 P PPLA4 DE 06 00 03353 03353007 3623 3 Europe/Berlin 2011-04-25
-2935384 Drachselsried Drachselsried 49.10759 13.01185 P PPLA4 DE 02 092 09276 09276120 2358 532 Europe/Berlin 2011-08-07
-2935386 Drachhausen Drachhausen 51.9 14.31667 P PPLA4 DE 11 00 12071 12071052 836 66 Europe/Berlin 2011-04-25
-2935424 Döttesfeld Dottesfeld 50.62317 7.54881 P PPLA4 DE 08 00 07138 07138013 708 206 Europe/Berlin 2011-07-31
-2935425 Dotternhausen Dotternhausen 48.22848 8.79228 P PPLA4 DE 01 084 08417 08417016 1784 650 Europe/Berlin 2011-04-25
-2935441 Dötlingen Dotlingen Dotlingen,Dötlingen 52.93333 8.38333 P PPLA4 DE 06 00 03458 03458003 6122 31 Europe/Berlin 2011-04-25
-2935453 Dossenheim Dossenheim Dossenheim 49.45028 8.67472 P PPLA4 DE 01 082 08226 08226012 11612 133 Europe/Berlin 2011-04-25
-2935485 Döschnitz Doschnitz Doschnitz,Döschnitz 50.61667 11.23333 P PPLA4 DE 15 00 16073 16073017 310 472 Europe/Berlin 2011-04-25
-2935488 Dörzbach Dorzbach Dorzbach Ober Franken,Dörzbach Ober Franken 49.38355 9.70732 P PPLA4 DE 01 081 08126 08126020 2465 244 Europe/Berlin 2011-04-25
-2935491 Dörverden Dorverden Doerverden,Dorverden,Dörverden 52.85 9.23333 P PPLA4 DE 06 00 03361 03361003 9710 19 Europe/Berlin 2011-07-31
-2935494 Dorum Dorum 53.68333 8.56667 P PPLA4 DE 06 00 03352 03352012 3658 0 Europe/Berlin 2011-04-25
-2935517 Dortmund Dortmund Dortmund,Dortmundas,Dortmunde,Dortmundi,Dueoerpm,Düörpm,Ntortmount,Throtmenni,Tremonia,d xr thmund,doleuteumunteu,dorutomunto,duo te meng de,dwrtmwnd,Ντόρτμουντ,Дортмунд,דורטמונד,دورتموند,ดอร์ทมุนด์,ドルトムント,多特蒙德,도르트문트 51.51667 7.45 P PPL DE 07 588462 83 Europe/Berlin 2012-01-18
-2935519 Dörth Dorth 50.15 7.58333 P PPLA4 DE 08 00 07140 07140031 526 460 Europe/Berlin 2011-04-25
-2935530 Dorsten Dorsten Dorsten,Дорстен 51.66667 6.96667 P PPL DE 07 79981 31 Europe/Berlin 2012-01-18
-2935532 Dorstadt Dorstadt 52.1 10.56667 P PPLA4 DE 06 00 03158 03158010 703 83 Europe/Berlin 2011-04-25
-2935535 Dorsheim Dorsheim 49.91667 7.86667 P PPLA4 DE 08 00 07133 07133026 690 256 Europe/Berlin 2011-04-25
-2935538 Dorsel Dorsel 50.38333 6.8 P PPLA4 DE 08 00 07131 07131018 212 382 Europe/Berlin 2011-04-25
-2935539 Dörsdorf Dorsdorf 50.25 8 P PPLA4 DE 08 00 07141 07141032 409 343 Europe/Berlin 2011-04-25
-2935546 Dörscheid Dorscheid 50.1 7.75 P PPLA4 DE 08 00 07141 07141031 455 172 Europe/Berlin 2011-04-25
-2935553 Dörrmoschel Dorrmoschel 49.61667 7.75 P PPLA4 DE 08 00 07333 07333016 173 386 Europe/Berlin 2011-04-25
-2935573 Dörrenbach Dorrenbach 49.08972 7.9614 P PPLA4 DE 08 00 07337 07337019 1002 295 Europe/Berlin 2011-04-25
-2935578 Dörrebach Dorrebach 49.95 7.71667 P PPLA4 DE 08 00 07133 07133025 754 378 Europe/Berlin 2011-04-25
-2935586 Dörpstedt Dorpstedt 54.43333 9.36667 P PPLA4 DE 10 00 01059 01059020 0 5 Europe/Berlin 2011-04-25
-2935590 Dörpling Dorpling Dorpling,Dörpling 54.26667 9.3 P PPLA4 DE 10 00 01051 01051023 604 14 Europe/Berlin 2011-04-25
-2935594 Dörphof Dorphof Dorphof,Dörphof 54.61667 9.96667 P PPLA4 DE 10 00 01058 01058042 757 6 Europe/Berlin 2011-04-25
-2935597 Dörpen Dorpen Dorpen,Dörpen 52.96469 7.32273 P PPLA4 DE 06 00 03454 03454008 4933 9 Europe/Berlin 2011-09-11
-2935633 Dornum Dornum Dornum 53.65 7.41667 P PPLA4 DE 06 00 03452 03452027 4796 255 Europe/Berlin 2011-07-31
-2935642 Dornstetten Dornstetten Dornstetten 48.45 8.5 P PPL DE 01 8215 540 Europe/Berlin 2012-01-18
-2935647 Dornstadt Dornstadt 48.46697 9.94434 P PPLA4 DE 01 084 08425 08425031 8502 594 Europe/Berlin 2011-04-25
-2935672 Dörnick Dornick Dornick,Dörnick 54.16667 10.36667 P PPLA4 DE 10 00 01057 01057017 282 20 Europe/Berlin 2011-04-25
-2935677 Dornholzhausen Dornholzhausen 50.27031 7.78982 P PPLA4 DE 08 00 07141 07141033 214 305 Europe/Berlin 2011-04-25
-2935693 Dornheim Dornheim 50.83333 10.98333 P PPLA4 DE 15 00 16070 16070008 565 286 Europe/Berlin 2011-04-25
-2935702 Dornhan Dornhan Dornhan 48.35 8.5 P PPL DE 01 6157 654 Europe/Berlin 2012-01-18
-2935725 Dorn-Dürkheim Dorn-Durkheim 49.76861 8.26972 P PPLA4 DE 08 00 07339 07339201 919 179 Europe/Berlin 2011-04-25
-2935729 Dorndorf Dorndorf 50.85 10.1 P PPLA4 DE 15 00 16063 16063018 3045 262 Europe/Berlin 2011-07-31
-2935749 Dörnberg Dornberg 50.33333 7.88333 P PPLA4 DE 08 00 07141 07141030 600 291 Europe/Berlin 2011-04-25
-2935816 Dormitz Dormitz 49.59786 11.11765 P PPLA4 DE 02 094 09474 09474119 1966 308 Europe/Berlin 2011-04-25
-2935817 Dormettingen Dormettingen 48.23688 8.77327 P PPLA4 DE 01 084 08417 08417015 1101 651 Europe/Berlin 2011-04-25
-2935825 Dormagen Dormagen Dormagen,Дормаген 51.1 6.83333 P PPL DE 07 63582 44 Europe/Berlin 2012-01-18
-2936040 Dorfprozelten Dorfprozelten 49.78056 9.38028 P PPLA4 DE 02 096 09676 09676118 1911 145 Europe/Berlin 2011-04-25
-2936089 Dorfhain Dorfhain 50.93333 13.56667 P PPLA4 DE 13 146 14628 14628090 1255 341 Europe/Berlin 2011-04-25
-2936103 Dorfen Dorfen Dorfen 48.26667 12.15 P PPL DE 02 091 09177 13487 445 Europe/Berlin 2012-01-18
-2936119 Dorfchemnitz Dorfchemnitz 50.76667 13.45 P PPLA4 DE 13 145 14522 14522090 0 547 Europe/Berlin 2011-04-25
-2936120 Dorfchemnitz Dorfchemnitz 50.66667 12.83333 P PPL DE 13 1803 488 Europe/Berlin 2006-01-17
-2936153 Dörentrup Dorentrup 52.04109 9.00278 P PPLA4 DE 07 057 05766 05766024 8713 156 Europe/Berlin 2011-04-25
-2936186 Donzdorf Donzdorf 48.68544 9.81053 P PPL DE 01 081 11051 409 Europe/Berlin 2010-11-15
-2936189 Donsieders Donsieders 49.26667 7.6 P PPLA4 DE 08 00 07340 07340007 994 255 Europe/Berlin 2011-07-31
-2936210 Donnersdorf Donnersdorf 49.96667 10.41667 P PPLA4 DE 02 096 09678 09678124 1938 252 Europe/Berlin 2011-04-25
-2936233 Donndorf Donndorf 51.3 11.36667 P PPLA4 DE 15 00 16065 16065013 836 117 Europe/Berlin 2011-04-25
-2936253 Donauwörth Donauworth Donauwerth,Donauwoerth,Donauworth,Donauwörth,donauvu~eruto,ドナウヴェルト 48.7 10.8 P PPL DE 02 18364 403 Europe/Berlin 2012-01-18
-2936259 Donaustauf Donaustauf Donaustauf 49.03333 12.21667 P PPL DE 02 3745 357 Europe/Berlin 2012-01-18
-2936267 Donaueschingen Donaueschingen Donauehshingen,Donaueschingen,donauesshingen,Донауэшинген,ドナウエッシンゲン 47.95 8.5 P PPL DE 01 21604 681 Europe/Berlin 2012-01-18
-2936271 Domsühl Domsuhl 53.48723 11.77099 P PPLA4 DE 12 00 13060 13060016 1194 58 Europe/Berlin 2011-04-25
-2936278 Domnitz Domnitz Domnitz 51.63333 11.83333 P PPLA4 DE 14 00 15088 15088080 777 136 Europe/Berlin 2011-04-25
-2936280 Dommitzsch Dommitzsch Dommitzsch 51.65 12.88333 P PPL DE 13 3163 80 Europe/Berlin 2012-01-18
-2936281 Dommershausen Dommershausen 50.15 7.4 P PPLA4 DE 08 00 07140 07140202 1155 330 Europe/Berlin 2011-04-25
-2936292 Dömitz Domitz Doemitz 53.1408 11.25017 P PPL DE 12 2522 18 Europe/Berlin 2010-05-25
-2936298 Domersleben Domersleben Domersleben 52.08333 11.43333 P PPL DE 14 1192 98 Europe/Berlin 2012-01-18
-2936302 Dombühl Dombuhl Dombuhl,Dombühl 49.25 10.28333 P PPL DE 02 1660 467 Europe/Berlin 2012-01-18
-2936331 Döllstädt Dollstadt Dollstadt,Döllstädt 51.08333 10.81667 P PPLA4 DE 15 00 16067 16067011 1246 204 Europe/Berlin 2011-04-25
-2936335 Dollrottfeld Dollrottfeld Dollrottfeld 54.63333 9.81667 P PPLA4 DE 10 00 01059 01059021 243 22 Europe/Berlin 2011-04-25
-2936343 Döllnitz Dollnitz 51.40777 12.02831 P PPL DE 14 1383 84 Europe/Berlin 2011-03-30
-2936366 Dollerup Dollerup Dollerup 54.78333 9.68333 P PPLA4 DE 10 00 01059 01059106 1035 30 Europe/Berlin 2011-04-25
-2936369 Dollern Dollern 53.53333 9.55 P PPLA4 DE 06 00 03359 03359012 1728 31 Europe/Berlin 2011-04-25
-2936385 Dollbergen Dollbergen Dolberge [a. 1226],Dollbarge,Dollbargen,Dolle 52.40671 10.18098 P PPL DE 06 00 03241 03241018 2331 60 64 Europe/Berlin 2011-02-18
-2936403 Dolgesheim Dolgesheim 49.79444 8.25694 P PPLA4 DE 08 00 07339 07339013 967 196 Europe/Berlin 2011-04-25
-2936431 Dölbau Dolbau 51.46667 12.06667 P PPL DE 14 1209 94 Europe/Berlin 2006-01-17
-2936454 Dohren Dohren 53.3 9.7 P PPLA4 DE 06 00 03353 03353006 972 44 Europe/Berlin 2011-04-25
-2936462 Dohr Dohr 50.13333 7.11667 P PPLA4 DE 08 00 07135 07135021 688 382 Europe/Berlin 2011-04-25
-2936470 Dohna Dohna 50.95621 13.85839 P PPL DE 13 146 6140 164 Europe/Berlin 2010-11-15
-2936471 Dohm-Lammersdorf Dohm-Lammersdorf 50.26667 6.66667 P PPLA4 DE 08 00 07233 07233019 185 409 Europe/Berlin 2011-04-25
-2936473 Dohma Dohma 50.91667 13.93333 P PPLA4 DE 13 146 14628 14628070 2190 215 Europe/Berlin 2011-04-25
-2936497 Döhlau Dohlau 50.28333 11.95 P PPLA4 DE 02 094 09475 09475120 4235 523 Europe/Berlin 2011-04-25
-2936503 Dogern Dogern 47.61667 8.16667 P PPLA4 DE 01 083 08337 08337032 2337 401 Europe/Berlin 2011-07-31
-2936521 Dodenburg Dodenburg 49.91667 6.78333 P PPLA4 DE 08 00 07231 07231023 99 349 Europe/Berlin 2011-04-25
-2936528 Dockweiler Dockweiler 50.25 6.78333 P PPLA4 DE 08 00 07233 07233018 642 532 Europe/Berlin 2011-04-25
-2936536 Dockendorf Dockendorf 49.91667 6.46667 P PPLA4 DE 08 00 07232 07232026 197 222 Europe/Berlin 2011-04-25
-2936550 Döbritz Dobritz 50.7 11.65 P PPLA4 DE 15 00 16075 16075016 190 256 Europe/Berlin 2011-04-25
-2936552 Döbritschen Dobritschen 50.91921 11.47599 P PPLA4 DE 15 00 16071 16071013 236 357 Europe/Berlin 2011-04-25
-2936574 Döblitz Doblitz 51.55 11.83333 P PPLA4 DE 14 00 15088 15088075 189 93 Europe/Berlin 2011-04-25
-2936600 Dobitschen Dobitschen 50.95 12.28333 P PPLA4 DE 15 00 16077 16077003 579 263 Europe/Berlin 2011-04-25
-2936613 Dobersdorf Dobersdorf 54.31893 10.28011 P PPLA4 DE 10 00 01057 01057016 1259 32 Europe/Berlin 2011-04-25
-2936616 Doberschütz Doberschutz 51.4987 12.74792 P PPLA4 DE 13 147 14730 14730080 4612 106 Europe/Berlin 2011-07-31
-2936623 Döbernitz Dobernitz 51.51667 12.35 P PPL DE 13 2896 94 Europe/Berlin 2006-01-17
-2936631 Doberlug-Kirchhain Doberlug-Kirchhain Doberlug-Kirchhain,Dobrilugk-Kirchhain 51.61667 13.56667 P PPL DE 11 10151 94 Europe/Berlin 2012-01-18
-2936658 Döbeln Dobeln Debel'n,Dobeln,Doebeln,Doeberln,Döbeln,Stadt Dobeln,Stadt Döbeln,Дебельн 51.11667 13.11667 P PPL DE 13 145 21338 189 Europe/Berlin 2012-01-18
-2936667 Dobel Dobel 48.8 8.5 P PPLA4 DE 01 082 08235 08235018 2252 707 Europe/Berlin 2011-04-25
-2936683 Dobbertin Dobbertin 53.62306 12.07466 P PPLA4 DE 12 00 13060 13060015 1264 51 Europe/Berlin 2011-07-31
-2936705 Ditzingen Ditzingen 48.82672 9.06703 P PPL DE 01 24149 300 Europe/Berlin 2008-12-21
-2936706 Dittweiler Dittweiler 49.43029 7.33561 P PPLA4 DE 08 00 07336 07336016 929 268 Europe/Berlin 2011-04-25
-2936738 Dittersdorf Dittersdorf 50.65 11.81667 P PPLA4 DE 15 00 16075 16075014 238 501 Europe/Berlin 2011-04-25
-2936750 Dittenheim Dittenheim 49.05 10.8 P PPLA4 DE 02 095 09577 09577122 1786 431 Europe/Berlin 2011-04-25
-2936759 Dittelbrunn Dittelbrunn Dittelbrunn 50.08333 10.21667 P PPLA4 DE 02 096 09678 09678123 7620 265 Europe/Berlin 2011-07-31
-2936762 Ditscheid Ditscheid 50.3 7.06667 P PPLA4 DE 08 00 07137 07137019 251 424 Europe/Berlin 2011-04-25
-2936766 Ditfurt Ditfurt 51.83333 11.2 P PPLA4 DE 14 00 15085 15085090 1846 123 Europe/Berlin 2011-04-25
-2936787 Dissen Dissen Dissen 52.11667 8.2 P PPL DE 06 9265 107 Europe/Berlin 2012-01-18
-2936796 Dischingen Dischingen Dischingen 48.7 10.36667 P PPLA4 DE 01 081 08135 08135010 4552 469 Europe/Berlin 2011-04-25
-2936822 Dirmstein Dirmstein Dirmstein 49.56333 8.24472 P PPLA4 DE 08 00 07332 07332010 3080 106 Europe/Berlin 2011-07-31
-2936827 Dirlewang Dirlewang Dirlewang 48 10.5 P PPL DE 02 2148 633 Europe/Berlin 2012-01-18
-2936842 Dippoldiswalde Dippoldiswalde 50.89621 13.66905 P PPL DE 13 146 10959 365 Europe/Berlin 2010-11-15
-2936845 Dipperz Dipperz 50.54333 9.79586 P PPLA4 DE 05 066 06631 06631003 3405 360 Europe/Berlin 2011-07-31
-2936857 Dippach Dippach 50.91959 10.04236 P PPLA4 DE 15 00 16063 16063017 1136 218 Europe/Berlin 2011-04-25
-2936866 Dintesheim Dintesheim 49.7075 8.14333 P PPLA4 DE 08 00 07331 07331014 152 222 Europe/Berlin 2011-04-25
-2936871 Dinslaken Dinslaken Dinslaken,Dinslakena,Ntinslaken,Ντίνσλακεν,Динслакена 51.56667 6.73333 P PPL DE 07 70573 30 Europe/Berlin 2012-01-18
-2936881 Dinklage Dinklage Dinklage 52.65 8.11667 P PPL DE 06 12626 26 Europe/Berlin 2012-01-18
-2936885 Dinkelscherben Dinkelscherben 48.34826 10.58893 P PPL DE 02 6742 465 Europe/Berlin 2010-08-16
-2936886 Dinkelsbühl Dinkelsbuhl Dinkelsbuehl,Dinkelsbühl 49.06942 10.31985 P PPL DE 02 11724 447 Europe/Berlin 2008-10-30
-2936904 Dingsleben Dingsleben Dingsleben 50.43333 10.6 P PPLA4 DE 15 00 16069 16069008 266 428 Europe/Berlin 2011-04-25
-2936908 Dingolshausen Dingolshausen Dingolshausen 49.9 10.4 P PPLA4 DE 02 096 09678 09678122 1256 285 Europe/Berlin 2011-04-25
-2936909 Dingolfing Dingolfing Dingelfing,Dingolfing 48.63333 12.5 P PPL DE 02 18805 356 Europe/Berlin 2012-01-18
-2936930 Dingen Dingen 53.96667 9.11667 P PPLA4 DE 10 00 01051 01051022 679 254 Europe/Berlin 2011-04-25
-2936933 Dingelstädt Dingelstadt Dingelstadt,Dingelstädt 51.31667 10.31667 P PPL DE 15 4878 337 Europe/Berlin 2012-01-18
-2936940 Dingdorf Dingdorf 50.15 6.43333 P PPLA4 DE 08 00 07232 07232216 94 412 Europe/Berlin 2011-04-25
-2936955 Dimbach Dimbach 49.16667 7.9 P PPLA4 DE 08 00 07340 07340006 187 260 Europe/Berlin 2011-04-25
-2936966 Dillstädt Dillstadt 50.58333 10.53333 P PPLA4 DE 15 00 16066 16066016 879 375 Europe/Berlin 2011-04-25
-2936974 Dillingen an der Donau Dillingen an der Donau Dillingen,Dillingen an der Donau,Dillingen-na-Dunae,Диллинген-на-Дунае 48.56667 10.48333 P PPL DE 02 18734 427 Europe/Berlin 2012-01-18
-2936977 Dillingen Dillingen Dillengen,Dillingen 49.35 6.73333 P PPL DE 09 21526 182 Europe/Berlin 2012-01-18
-2936981 Dillendorf Dillendorf 49.91667 7.38333 P PPLA4 DE 08 00 07140 07140030 604 345 Europe/Berlin 2011-04-25
-2936985 Dillenburg Dillenburg Dillenberg,Dillenburg,Дилленбург 50.73333 8.28333 P PPL DE 05 24461 263 Europe/Berlin 2012-01-18
-2937001 Dill Dill 49.91667 7.35 P PPLA4 DE 08 00 07140 07140029 214 367 Europe/Berlin 2011-04-25
-2937018 Diez Diez Dietz,Diez,Diez an der Lahn 50.36667 8.01667 P PPL DE 08 10822 129 Europe/Berlin 2012-01-18
-2937040 Dietzenbach Dietzenbach Dietzenbach,Stadt Dietzenbach 50.01667 8.78333 P PPL DE 05 33256 145 Europe/Berlin 2012-01-18
-2937064 Dietrichsdorf Dietrichsdorf 51.86667 12.78333 P PPLA4 DE 14 00 15091 15091070 275 76 Europe/Berlin 2011-04-25
-2937071 Dietrichingen Dietrichingen 49.18333 7.41667 P PPLA4 DE 08 00 07340 07340208 357 298 Europe/Berlin 2011-04-25
-2937073 Dietramszell Dietramszell 47.84871 11.5953 P PPLA4 DE 02 091 09173 09173118 5252 688 Europe/Berlin 2011-04-25
-2937077 Dietmannsried Dietmannsried Dietmannsried 47.8 10.28333 P PPL DE 02 8044 666 Europe/Berlin 2012-01-18
-2937096 Dietingen Dietingen 48.2048 8.64864 P PPLA4 DE 01 083 08325 08325011 3953 574 Europe/Berlin 2011-04-25
-2937106 Diethardt Diethardt 50.16667 7.86667 P PPLA4 DE 08 00 07141 07141502 311 306 Europe/Berlin 2011-04-25
-2937110 Dietfurt Dietfurt Diefurt,Dietfurt 49.0375 11.58389 P PPL DE 02 6161 380 Europe/Berlin 2012-01-18
-2937115 Dieterskirchen Dieterskirchen 49.41667 12.41667 P PPLA4 DE 02 093 09376 09376122 1082 500 Europe/Berlin 2011-04-25
-2937124 Dietersheim Dietersheim 49.56667 10.53333 P PPLA4 DE 02 095 09575 09575119 2138 300 Europe/Berlin 2011-04-25
-2937142 Dietersburg Dietersburg 48.5 12.91667 P PPLA4 DE 02 092 09277 09277114 3132 428 Europe/Berlin 2011-04-25
-2937155 Dieterode Dieterode Dieterode 51.3 10.1 P PPLA4 DE 15 00 16061 16061023 103 402 Europe/Berlin 2011-04-25
-2937160 Dietenhofen Dietenhofen Dietenhofen 49.4 10.68333 P PPL DE 02 5709 343 Europe/Berlin 2012-01-18
-2937164 Dietenheim Dietenheim Dietenheim 48.21072 10.07163 P PPL DE 01 6630 513 Europe/Berlin 2011-04-13
-2937201 Diestelow Diestelow 53.5502 12.06676 P PPLA4 DE 12 00 13060 13060014 543 59 Europe/Berlin 2011-07-31
-2937217 Dießen am Ammersee Diessen am Ammersee Diessen,Diessen am Ammersee,Dießen,Dießen am Ammersee,Markt Diessen am Ammersee,Markt Dießen am Ammersee 47.95 11.1 P PPL DE 02 10050 559 Europe/Berlin 2012-01-18
-2937223 Diespeck Diespeck 49.6 10.63333 P PPLA4 DE 02 095 09575 09575118 3690 300 Europe/Berlin 2011-04-25
-2937228 Dieskau Dieskau 51.43333 12.03333 P PPL DE 14 3133 86 Europe/Berlin 2006-01-17
-2937239 Diesdorf Diesdorf Diesdorf,Magdeburg-Diesdorf 52.13075 11.56483 P PPLX DE 14 2051 65 Europe/Berlin 2011-04-27
-2937263 Dierscheid Dierscheid 49.9 6.75 P PPLA4 DE 08 00 07231 07231022 166 356 Europe/Berlin 2011-04-25
-2937275 Dierfeld Dierfeld 50.08333 6.88333 P PPLA4 DE 08 00 07231 07231021 7 412 Europe/Berlin 2011-04-25
-2937280 Dierdorf Dierdorf 50.55 7.66667 P PPL DE 08 6023 269 Europe/Berlin 2006-01-17
-2937285 Dierbach Dierbach 49.08083 8.06722 P PPLA4 DE 08 00 07337 07337018 572 152 Europe/Berlin 2011-04-25
-2937317 Diepholz Diepholz Diepholz 52.6 8.36667 P PPL DE 06 16783 38 Europe/Berlin 2012-01-18
-2937337 Dienstweiler Dienstweiler 49.63333 7.18333 P PPLA4 DE 08 00 07134 07134020 326 412 Europe/Berlin 2011-04-25
-2937344 Diensdorf-Radlow Diensdorf-Radlow 52.25 14.05 P PPLA4 DE 11 00 12067 12067112 570 42 Europe/Berlin 2011-04-25
-2937349 Dienheim Dienheim 49.83722 8.34972 P PPLA4 DE 08 00 07339 07339012 1981 94 Europe/Berlin 2011-04-25
-2937353 Dienethal Dienethal 50.3 7.78333 P PPLA4 DE 08 00 07141 07141027 278 196 Europe/Berlin 2011-04-25
-2937399 Dielmissen Dielmissen 51.97061 9.60669 P PPLA4 DE 06 00 03255 03255010 866 141 Europe/Berlin 2011-07-31
-2937401 Dielkirchen Dielkirchen 49.66667 7.81667 P PPLA4 DE 08 00 07333 07333014 594 186 Europe/Berlin 2011-04-25
-2937407 Dielheim Dielheim Dielheim 49.28417 8.73806 P PPLA4 DE 01 082 08226 08226010 8999 151 Europe/Berlin 2011-04-25
-2937449 Diekholzen Diekholzen 52.09617 9.91945 P PPLA4 DE 06 00 03254 03254011 6941 122 Europe/Berlin 2011-07-31
-2937451 Diekhof Diekhof 53.86667 12.4 P PPLA4 DE 12 00 13053 13053017 756 57 Europe/Berlin 2011-04-25
-2937532 Diefenbach Diefenbach 50.03333 6.95 P PPLA4 DE 08 00 07231 07231020 83 248 Europe/Berlin 2011-04-25
-2937547 Diedrichshagen Diedrichshagen 54.05 13.48333 P PPLA4 DE 12 00 13059 13059019 425 45 Europe/Berlin 2011-04-25
-2937553 Diedorf Diedorf Diedorf 48.35 10.76667 P PPL DE 02 10006 468 Europe/Berlin 2012-02-02
-2937591 Dieburg Dieburg Dieburg 49.89889 8.84444 P PPL DE 05 15168 150 Europe/Berlin 2012-01-18
-2937607 Dieblich Dieblich 50.31667 7.46667 P PPLA4 DE 08 00 07137 07137207 2481 71 Europe/Berlin 2011-04-25
-2937632 Diebach Diebach 49.3 10.18333 P PPLA4 DE 02 095 09571 09571134 1171 396 Europe/Berlin 2011-04-25
-2937641 Didderse Didderse 52.38333 10.4 P PPLA4 DE 06 00 03151 03151041 1350 60 Europe/Berlin 2011-04-25
-2937663 Dickesbach Dickesbach 49.71667 7.41667 P PPLA4 DE 08 00 07134 07134019 463 375 Europe/Berlin 2011-04-25
-2937686 Dickenschied Dickenschied 49.9 7.41667 P PPLA4 DE 08 00 07140 07140028 678 402 Europe/Berlin 2011-04-25
-2937694 Dickendorf Dickendorf 50.73333 7.85 P PPLA4 DE 08 00 07132 07132020 375 363 Europe/Berlin 2011-04-25
-2937714 Dickel Dickel 52.64494 8.47166 P PPLA4 DE 06 00 03251 03251011 522 38 Europe/Berlin 2011-07-31
-2937734 Dichtelbach Dichtelbach 50 7.7 P PPLA4 DE 08 00 07140 07140027 715 403 438 Europe/Berlin 2011-04-25
-2937756 Dhronecken Dhronecken 49.71667 6.98333 P PPLA4 DE 08 00 07231 07231019 145 477 Europe/Berlin 2011-04-25
-2937764 Deyelsdorf Deyelsdorf 54.04442 12.82182 P PPLA4 DE 12 00 13057 13057021 623 7 Europe/Berlin 2011-07-31
-2937768 Dexheim Dexheim 49.84722 8.31667 P PPLA4 DE 08 00 07339 07339011 1547 154 Europe/Berlin 2011-04-25
-2937789 Deutzen Deutzen 51.11667 12.45 P PPLA4 DE 13 147 14729 14729090 2176 135 Europe/Berlin 2011-04-25
-2937797 Deutschneudorf Deutschneudorf Deutschneudorf 50.61667 13.46667 P PPLA4 DE 13 145 14521 14521140 0 715 Europe/Berlin 2011-04-25
-2937809 Deutsch Evern Deutsch Evern 53.2 10.43333 P PPLA4 DE 06 00 03355 03355014 3727 26 Europe/Berlin 2011-04-25
-2937857 Deuselbach Deuselbach 49.75 7.05 P PPLA4 DE 08 00 07231 07231018 288 475 Europe/Berlin 2011-04-25
-2937860 Deuna Deuna Deuna 51.3545 10.47439 P PPLA4 DE 15 00 16061 16061022 1114 343 Europe/Berlin 2011-04-25
-2937865 Deuerling Deuerling 49.03333 11.9 P PPLA4 DE 02 093 09375 09375127 2124 430 Europe/Berlin 2011-04-25
-2937868 Deudesfeld Deudesfeld 50.1 6.73333 P PPLA4 DE 08 00 07233 07233017 396 457 Europe/Berlin 2011-04-25
-2937873 Deuben Deuben 51.11667 12.06667 P PPLA4 DE 14 00 15084 15084095 1236 177 Europe/Berlin 2011-04-25
-2937883 Detzem Detzem 49.81667 6.85 P PPLA4 DE 08 00 07235 07235015 530 169 Europe/Berlin 2011-04-25
-2937889 Dettum Dettum 52.17246 10.66807 P PPLA4 DE 06 00 03158 03158009 1359 94 Europe/Berlin 2011-07-31
-2937894 Dettmannsdorf Dettmannsdorf 54.11165 12.52871 P PPLA4 DE 12 00 13057 13057020 0 39 Europe/Berlin 2011-07-31
-2937896 Dettingen unter Teck Dettingen unter Teck Dettingen,Dettingen unter Teck 48.61667 9.45 P PPLA4 DE 01 081 08116 08116016 5567 352 Europe/Berlin 2011-04-25
-2937897 Dettingen an der Iller Dettingen an der Iller Dettingen,Dettingen an der Iller 48.1 10.11667 P PPLA4 DE DE 01 084 08426 08426031 0 542 Europe/Berlin 2011-04-25
-2937898 Dettingen an der Erms Dettingen an der Erms Dettingen 48.53077 9.34458 P PPLA4 DE 01 084 08415 08415014 9271 396 Europe/Berlin 2011-04-25
-2937904 Dettingen Dettingen 48.26246 9.72161 P PPL DE 01 2240 503 Europe/Berlin 2008-12-24
-2937906 Dettighofen Dettighofen 47.61667 8.48333 P PPLA4 DE 01 083 08337 08337030 1044 458 Europe/Berlin 2011-04-25
-2937919 Dettenhausen Dettenhausen 48.60758 9.10041 P PPLA4 DE 01 084 08416 08416009 5390 395 Europe/Berlin 2011-04-25
-2937932 Dettelbach Dettelbach Dettelbach 49.8 10.18333 P PPL DE 02 6888 183 Europe/Berlin 2012-01-18
-2937936 Detmold Detmold Detmol'd,Detmold,Detmoldas,deteumolteu,Детмольд,데트몰트 51.93855 8.87318 P PPLA2 DE 07 057 73680 135 Europe/Berlin 2010-11-15
-2937944 Detern Detern Detern,Lehe Kol 53.21667 7.68333 P PPL DE 06 2687 253 Europe/Berlin 2012-01-18
-2937953 Dessighofen Dessighofen Dessighoven 50.25802 7.77197 P PPLA4 DE 08 00 07141 07141026 182 242 Europe/Berlin 2011-07-31
-2937959 Dessau Dessau Desau,Dessau,dessau,Десау,Дессау,דסאו,デッサウ 51.83864 12.24555 P PPL DE 14 77315 63 Europe/Berlin 2010-06-22
-2937963 Desloch Desloch 49.71667 7.63333 P PPLA4 DE 08 00 07133 07133024 409 309 Europe/Berlin 2011-04-25
-2938004 Dersum Dersum 52.96667 7.28333 P PPLA4 DE 06 00 03454 03454007 1490 1 Europe/Berlin 2011-04-25
-2938018 Dersenow Dersenow 53.38333 10.88333 P PPLA4 DE 12 00 13054 13054022 499 26 Europe/Berlin 2011-04-25
-2938019 Dersekow Dersekow 54.04583 13.29243 P PPLA4 DE 12 00 13059 13059018 1132 33 Europe/Berlin 2011-04-25
-2938030 Derschen Derschen 50.71667 7.98333 P PPLA4 DE 08 00 07132 07132019 1086 432 Europe/Berlin 2011-04-25
-2938033 Dersau Dersau Dersau 54.11667 10.35 P PPLA4 DE 10 00 01057 01057015 936 29 Europe/Berlin 2011-04-25
-2938064 Dernbach Dernbach 50.55 7.6 P PPLA4 DE 08 00 07138 07138011 1011 322 Europe/Berlin 2011-04-25
-2938065 Dernbach Dernbach 50.46667 7.78333 P PPL DE 08 2537 292 Europe/Berlin 2006-01-17
-2938066 Dernbach Dernbach 49.24722 8.00528 P PPLA4 DE 08 00 07337 07337017 494 222 Europe/Berlin 2011-04-25
-2938068 Dernau Dernau Dernau 50.53333 7.05 P PPLA4 DE 08 00 07131 07131017 1907 121 Europe/Berlin 2011-04-25
-2938075 Dermbach Dermbach 50.71667 10.13333 P PPLA4 DE 15 00 16063 16063015 3254 331 Europe/Berlin 2011-04-25
-2938132 Derental Derental 51.7 9.43333 P PPLA4 DE 06 00 03255 03255009 749 292 Europe/Berlin 2011-04-25
-2938136 Derenburg Derenburg Derenburg 51.86667 10.9 P PPL DE 14 2716 159 Europe/Berlin 2012-01-18
-2938190 Denzlingen Denzlingen Denzlingen 48.06667 7.88333 P PPLA4 DE 01 083 08316 08316009 13511 232 Europe/Berlin 2011-04-25
-2938197 Dentlein am Forst Dentlein am Forst Dentlein,Dentlein a. Forst,Dentlein am Forst 49.15 10.43333 P PPL DE 02 2520 473 Europe/Berlin 2012-01-18
-2938208 Densborn Densborn 50.13333 6.6 P PPLA4 DE 08 00 07233 07233209 601 311 Europe/Berlin 2011-04-25
-2938212 Dennweiler-Frohnbach Dennweiler-Frohnbach 49.58333 7.38333 P PPLA4 DE 08 00 07336 07336015 293 368 Europe/Berlin 2011-04-25
-2938223 Dennheritz Dennheritz 50.81667 12.45 P PPLA4 DE 13 145 14524 14524050 1460 305 Europe/Berlin 2011-04-25
-2938241 Denklingen Denklingen Denklingen 47.91667 10.85 P PPLA4 DE 02 091 09181 09181113 2461 684 Europe/Berlin 2011-04-25
-2938245 Denkingen Denkingen 48.1 8.73333 P PPLA4 DE 01 083 08327 08327010 2530 688 Europe/Berlin 2011-04-25
-2938252 Denkendorf Denkendorf Denkendorf 48.93333 11.45 P PPLA4 DE 02 091 09176 09176120 0 530 Europe/Berlin 2011-07-31
-2938253 Denkendorf Denkendorf Denkendorf Kr.Esslingen 48.69555 9.31675 P PPLA4 DE 01 081 08116 08116015 10357 316 Europe/Berlin 2011-04-25
-2938284 Demmin Demmin Demmin,Dymin,Деммин 53.90762 13.03142 P PPL DE 12 12495 9 Europe/Berlin 2010-01-29
-2938295 Demitz-Thumitz Demitz-Thumitz Demitz-Thumitz 51.13333 14.25 P PPLA4 DE 13 146 14625 14625100 3128 393 Europe/Berlin 2011-04-25
-2938301 Demerath Demerath 50.18333 6.95 P PPLA4 DE 08 00 07233 07233016 318 447 Europe/Berlin 2011-04-25
-2938304 Demen Demen Demen 53.63333 11.76667 P PPLA4 DE 12 00 13060 13060013 1301 44 Europe/Berlin 2011-04-25
-2938315 Delve Delve Delvunda 54.3 9.25 P PPLA4 DE 10 00 01051 01051020 705 9 Europe/Berlin 2011-11-06
-2938323 Delmenhorst Delmenhorst Del'menkhorst,Delmenhorst,Demost,derumenhorusuto,Дельменхорст,デルメンホルスト 53.05 8.61667 P PPL DE 06 75893 12 Europe/Berlin 2012-01-18
-2938332 Dellstedt Dellstedt Dellstedt 54.23333 9.36667 P PPLA4 DE 10 00 01051 01051019 792 7 Europe/Berlin 2011-04-25
-2938344 Delligsen Delligsen 51.9412 9.80272 P PPL DE 06 8986 124 Europe/Berlin 2010-08-18
-2938351 Dellfeld Dellfeld 49.23333 7.48333 P PPLA4 DE 08 00 07340 07340207 1472 301 Europe/Berlin 2011-04-25
-2938376 Delitzsch Delitzsch Delich,Delitzsch,Stadt Delitzsch,Делич 51.53333 12.35 P PPL DE 13 24998 95 Europe/Berlin 2012-01-18
-2938379 Delingsdorf Delingsdorf Delingsdorf 53.7 10.25 P PPLA4 DE 10 00 01062 01062014 2002 39 Europe/Berlin 2011-07-31
-2938389 Delbrück Delbruck Delbruck,Delbrück 51.76667 8.56667 P PPL DE 07 29884 105 Europe/Berlin 2012-01-18
-2938391 Deizisau Deizisau 48.7122 9.3861 P PPLA4 DE 01 081 08116 08116014 6608 251 Europe/Berlin 2011-04-25
-2938403 Deißlingen Deisslingen 48.1123 8.60736 P PPLA4 DE 01 083 08325 08325072 6129 601 Europe/Berlin 2011-04-25
-2938415 Deisenhausen Deisenhausen 48.25554 10.32698 P PPLA4 DE 02 097 09774 09774124 1533 517 Europe/Berlin 2011-04-25
-2938429 Deinstedt Deinstedt 53.41667 9.23333 P PPLA4 DE 06 00 03357 03357011 678 14 Europe/Berlin 2011-04-25
-2938430 Deinste Deinste 53.53333 9.43333 P PPLA4 DE 06 00 03359 03359011 2258 21 Europe/Berlin 2011-04-25
-2938439 Deiningen Deiningen 48.86667 10.56667 P PPLA4 DE 02 097 09779 09779130 2070 421 Europe/Berlin 2011-04-25
-2938441 Deining Deining 49.22556 11.53968 P PPLA4 DE 02 093 09373 09373119 4289 472 Europe/Berlin 2011-04-25
-2938457 Deimberg Deimberg 49.63333 7.51667 P PPLA4 DE 08 00 07336 07336014 99 338 Europe/Berlin 2011-04-25
-2938460 Deilingen Deilingen 48.1741 8.78533 P PPLA4 DE 01 083 08327 08327009 1676 826 Europe/Berlin 2011-04-25
-2938465 Deidesheim Deidesheim 49.40917 8.18778 P PPL DE 08 3779 123 Europe/Berlin 2006-01-17
-2938538 Deggingen Deggingen 48.5971 9.71891 P PPLA4 DE 01 081 08117 08117014 5623 490 Europe/Berlin 2011-04-25
-2938540 Deggendorf Deggendorf Deckendorf,Degendorf,Deggendorf,Дегендорф 48.83333 12.96667 P PPL DE 02 31081 319 Europe/Berlin 2012-01-18
-2938589 Deesen Deesen 50.51667 7.7 P PPLA4 DE 08 00 07143 07143009 672 259 Europe/Berlin 2011-04-25
-2938593 Deesbach Deesbach Deesbach 50.56667 11.15 P PPLA4 DE 15 00 16073 16073014 498 646 Europe/Berlin 2011-04-25
-2938598 Deensen Deensen 51.86667 9.58333 P PPLA4 DE 06 00 03255 03255007 1570 232 Europe/Berlin 2011-04-25
-2938618 Dedenbach Dedenbach 50.48333 7.18333 P PPLA4 DE 08 00 07131 07131016 426 251 Europe/Berlin 2011-04-25
-2938619 Dedelstorf Dedelstorf 52.7 10.5 P PPLA4 DE 06 00 03151 03151007 1515 93 Europe/Berlin 2011-04-25
-2938633 Deckenpfronn Deckenpfronn 48.65128 8.82417 P PPLA4 DE 01 081 08115 08115010 2874 569 Europe/Berlin 2011-04-25
-2938646 Dechow Dechow 53.71667 10.91667 P PPLA4 DE 12 00 13058 13058023 376 40 Europe/Berlin 2011-04-25
-2938673 Daxweiler Daxweiler 49.96667 7.75 P PPLA4 DE 08 00 07133 07133023 868 379 Europe/Berlin 2011-04-25
-2938697 Dauwelshausen Dauwelshausen Dauvelshausen,Dauwelshausen 50 6.18333 P PPLA4 DE 08 00 07232 07232025 89 489 Europe/Berlin 2011-04-25
-2938702 Dautmergen Dautmergen 48.242 8.74143 P PPLA4 DE 01 084 08417 08417014 414 602 Europe/Berlin 2011-04-25
-2938711 Dausenau Dausenau 50.33333 7.76667 P PPLA4 DE 08 00 07141 07141025 1353 240 Europe/Berlin 2011-04-25
-2938714 Daun Daun Daun 50.2 6.83333 P PPL DE 08 8523 401 Europe/Berlin 2012-01-18
-2938740 Dauchingen Dauchingen 48.08993 8.55011 P PPLA4 DE 01 083 08326 08326010 3665 731 Europe/Berlin 2011-04-25
-2938760 Daubach Daubach 50.4 7.85 P PPLA4 DE 08 00 07143 07143008 481 348 Europe/Berlin 2011-04-25
-2938761 Daubach Daubach 49.85 7.63333 P PPLA4 DE 08 00 07133 07133022 245 376 Europe/Berlin 2011-04-25
-2938764 Datzeroth Datzeroth 50.51667 7.41667 P PPLA4 DE 08 00 07138 07138010 230 195 Europe/Berlin 2011-04-25
-2938780 Dattenberg Dattenberg 50.55362 7.29393 P PPLA4 DE 08 00 07138 07138009 1579 206 Europe/Berlin 2012-02-15
-2938784 Datteln Datteln Datteln 51.66667 7.38333 P PPL DE 07 36338 46 Europe/Berlin 2012-01-18
-2938787 Dätgen Datgen Datgen,Dätgen 54.18333 9.93333 P PPLA4 DE 10 00 01058 01058038 572 21 Europe/Berlin 2011-04-25
-2938798 Dassow Dassow 53.91096 10.97551 P PPL DE 12 00 3242 14 Europe/Berlin 2010-11-22
-2938805 Dassendorf Dassendorf Dassendorf 53.5 10.38333 P PPLA4 DE 10 00 01053 01053023 3148 45 Europe/Berlin 2011-04-25
-2938813 Dassel Dassel 51.80325 9.6884 P PPL DE 06 00 11287 169 Europe/Berlin 2010-11-22
-2938837 Dasing Dasing 48.38482 11.04667 P PPLA4 DE 02 097 09771 09771122 5321 480 Europe/Berlin 2011-07-31
-2938859 Dasburg Dasburg Dasburg 50.05 6.13333 P PPLA4 DE 08 00 07232 07232214 273 364 Europe/Berlin 2011-04-25
-2938880 Darstein Darstein 49.15 7.88333 P PPLA4 DE 08 00 07340 07340005 224 272 Europe/Berlin 2011-04-25
-2938894 Darscheid Darscheid 50.21667 6.88333 P PPLA4 DE 08 00 07233 07233014 865 505 Europe/Berlin 2011-04-25
-2938913 Darmstadt Darmstadt Darmshhat,Darmshtadt,Darmstadt,Darmundestadt,daleumsyutateu,darmshtadt,darumushutatto,Дармштадт,Дармщат,دارمشتادت,ダルムシュタット,다름슈타트 49.87056 8.64944 P PPLA2 DE 05 064 140385 145 Europe/Berlin 2010-11-21
-2938918 Darlingerode Darlingerode Darlingerode 51.83333 10.71667 P PPL DE 14 2321 412 Europe/Berlin 2012-01-18
-2938924 Dargun Dargun 53.9009 12.85014 P PPL DE 12 3570 19 Europe/Berlin 2010-03-29
-2938931 Dargen Dargen 53.88333 14.06667 P PPLA4 DE 12 00 13059 13059017 555 254 Europe/Berlin 2011-04-25
-2938933 Dargelin Dargelin 54.01402 13.3568 P PPLA4 DE 12 00 13059 13059016 435 34 Europe/Berlin 2011-04-25
-2938976 Dannewerk Dannewerk Dannewerk 54.48333 9.5 P PPLA4 DE 10 00 01059 01059019 1075 26 Europe/Berlin 2011-04-25
-2938985 Dannenfels Dannenfels 49.63333 7.95 P PPLA4 DE 08 00 07333 07333013 971 314 Europe/Berlin 2011-04-25
-2938991 Dannenberg Dannenberg 53.0967 11.09001 P PPL DE 06 8413 16 Europe/Berlin 2011-01-31
-2938996 Dannefeld Dannefeld 52.50609 11.14014 P PPLA4 DE 14 00 15081 15081100 418 59 Europe/Berlin 2011-11-28
-2939000 Danndorf Danndorf 52.42472 10.91286 P PPLA4 DE 06 00 03154 03154004 2239 69 Europe/Berlin 2011-04-28
-2939004 Dannau Dannau 54.25 10.53333 P PPLA4 DE 10 00 01057 01057013 682 51 Europe/Berlin 2011-04-25
-2939009 Dankmarshausen Dankmarshausen 50.93333 10.01667 P PPLA4 DE 15 00 16063 16063014 1147 218 Europe/Berlin 2011-04-25
-2939019 Dankerath Dankerath 50.33333 6.81667 P PPLA4 DE 08 00 07131 07131015 105 513 Europe/Berlin 2011-04-25
-2939032 Dänischenhagen Danischenhagen Danischenhagen,Dänischenhagen 54.43333 10.13333 P PPLA4 DE 10 00 01058 01058037 3402 16 Europe/Berlin 2011-04-25
-2939074 Damshagen Damshagen 53.93333 11.15 P PPLA4 DE 12 00 13058 13058118 944 21 Europe/Berlin 2011-04-25
-2939079 Damsdorf Damsdorf 54.06667 10.31667 P PPLA4 DE 10 00 01060 01060017 259 57 Europe/Berlin 2011-04-25
-2939083 Damscheid Damscheid 50.1 7.68333 P PPLA4 DE 08 00 07140 07140025 692 336 Europe/Berlin 2011-04-25
-2939088 Damp Damp Damp 54.58333 9.98333 P PPLA4 DE 10 00 01058 01058040 1743 25 Europe/Berlin 2011-04-25
-2939093 Damnatz Damnatz 53.13647 11.17687 P PPLA4 DE 06 00 03354 03354003 345 16 Europe/Berlin 2011-04-25
-2939134 Dammfleth Dammfleth Dammfleth 53.90881 9.37312 P PPLA4 DE 10 00 01061 01061023 328 254 Europe/Berlin 2011-04-25
-2939167 Damme Damme Damme,Дамме 52.51667 8.2 P PPL DE 06 16024 59 Europe/Berlin 2012-01-18
-2939195 Damm Damm 53.43333 11.75 P PPLA4 DE 12 00 13060 13060012 532 40 Europe/Berlin 2011-04-25
-2939208 Damlos Damlos Damlos 54.25 10.9 P PPLA4 DE 10 00 01055 01055011 625 17 Europe/Berlin 2011-04-25
-2939214 Damflos Damflos 49.66667 6.98333 P PPLA4 DE 08 00 07235 07235014 695 569 Europe/Berlin 2011-04-25
-2939224 Damerow Damerow 53.45 13.98333 P PPLA4 DE 12 00 13062 13062011 168 46 Europe/Berlin 2011-04-25
-2939230 Damendorf Damendorf Damendorf 54.41667 9.73333 P PPLA4 DE 10 00 01058 01058039 456 21 Europe/Berlin 2011-04-25
-2939248 Dambeck Dambeck 53.25 11.76667 P PPLA4 DE 12 00 13054 13054021 0 32 Europe/Berlin 2011-04-25
-2939255 Dambach Dambach 49.63333 7.13333 P PPLA4 DE 08 00 07134 07134018 156 432 Europe/Berlin 2011-04-25
-2939293 Dalldorf Dalldorf 53.435 10.61185 P PPLA4 DE 10 00 01053 01053022 355 15 Europe/Berlin 2011-04-25
-2939307 Dalkendorf Dalkendorf 53.81667 12.5 P PPLA4 DE 12 00 13053 13053016 341 50 Europe/Berlin 2011-04-25
-2939321 Dalheim Dalheim 49.82667 8.29528 P PPLA4 DE 08 00 07339 07339010 1007 146 Europe/Berlin 2011-04-25
-2939326 Daleiden Daleiden 50.06667 6.16667 P PPLA4 DE 08 00 07232 07232213 885 438 Europe/Berlin 2011-04-25
-2939330 Daldorf Daldorf Daldorf 54.01667 10.25 P PPLA4 DE 10 00 01060 01060016 752 42 Europe/Berlin 2011-04-25
-2939337 Dalberg Dalberg 49.9 7.73333 P PPLA4 DE 08 00 07133 07133021 249 317 Europe/Berlin 2011-04-25
-2939343 Daiting Daiting 48.8 10.9 P PPLA4 DE 02 097 09779 09779129 807 468 Europe/Berlin 2011-04-25
-2939345 Daisendorf Daisendorf 47.71265 9.26783 P PPLA4 DE 01 084 08435 08435010 1514 514 Europe/Berlin 2011-04-25
-2939365 Dähre Dahre 52.8 10.9 P PPLA4 DE 14 00 15081 15081095 917 44 Europe/Berlin 2011-04-25
-2939369 Dahnen Dahnen 50.06667 6.15 P PPLA4 DE 08 00 07232 07232212 358 435 Europe/Berlin 2011-04-25
-2939370 Dahn Dahn Dahn 49.15098 7.77843 P PPL DE 08 4994 209 Europe/Berlin 2011-08-07
-2939375 Dahmker Dahmker Dahmker 53.58333 10.45 P PPLA4 DE 10 00 01053 01053021 156 39 Europe/Berlin 2011-04-25
-2939385 Dahmen Dahmen 53.66092 12.58141 P PPLA4 DE 12 00 13053 13053015 621 13 Europe/Berlin 2011-07-31
-2939387 Dahme Dahme 54.21667 11.08333 P PPLA4 DE 10 00 01055 01055010 1117 2 Europe/Berlin 2011-04-25
-2939388 Dahme Dahme Dahme 51.86667 13.43333 P PPL DE 11 5924 87 Europe/Berlin 2012-01-18
-2939405 Dahlheim Dahlheim Dahlheim,Dalheim 50.2 7.7 P PPLA4 DE 08 00 07141 07141024 935 238 Europe/Berlin 2011-04-25
-2939420 Dahlenwarsleben Dahlenwarsleben 52.19519 11.53736 P PPL DE 14 00 1424 64 Europe/Berlin 2010-11-22
-2939426 Dahlenburg Dahlenburg Dahlenburg 53.18333 10.75 P PPL DE 06 3465 37 Europe/Berlin 2012-02-02
-2939434 Dahlen Dahlen Dahlen 51.36667 13 P PPL DE 13 5211 139 Europe/Berlin 2012-01-18
-2939441 Dahlem Dahlem 53.2 10.75 P PPLA4 DE 06 00 03355 03355012 543 46 Europe/Berlin 2011-04-25
-2939442 Dahlem Dahlem 50.38333 6.55 P PPLA4 DE 07 053 05366 05366012 4221 524 Europe/Berlin 2011-04-25
-2939444 Dahlem Dahlem 49.91667 6.6 P PPLA4 DE 08 00 07232 07232024 235 315 Europe/Berlin 2011-04-25
-2939482 Dägeling Dageling Dageling,Dägeling 53.88333 9.53333 P PPLA4 DE 10 00 01061 01061022 1048 18 Europe/Berlin 2011-04-25
-2939489 Dagebüll Dagebull 54.72928 8.70083 P PPLA4 DE 10 00 01054 01054022 948 1 Europe/Berlin 2011-07-31
-2939505 Dackscheid Dackscheid 50.11667 6.38333 P PPLA4 DE 08 00 07232 07232211 160 490 Europe/Berlin 2011-04-25
-2939508 Dackenheim Dackenheim 49.52111 8.18722 P PPLA4 DE 08 00 07332 07332008 411 177 Europe/Berlin 2011-04-25
-2939510 Dachwig Dachwig Dachwig 51.06667 10.85 P PPLA4 DE 15 00 16067 16067009 1594 184 Europe/Berlin 2011-04-25
-2939532 Dachsenhausen Dachsenhausen 50.25 7.73333 P PPLA4 DE 08 00 07141 07141023 1059 398 Europe/Berlin 2011-07-31
-2939623 Dachau Dachau Dachau,Dakhau,KZ Dachau,Дахау,דכאו 48.26 11.43402 P PPL DE 02 39740 502 Europe/Berlin 2011-10-17
-2939634 Daberkow Daberkow 53.83333 13.3 P PPLA4 DE 12 00 13052 13052016 436 12 Europe/Berlin 2011-04-25
-2939635 Dabergotz Dabergotz 52.9031 12.72466 P PPLA4 DE 11 00 12068 12068072 594 41 Europe/Berlin 2011-04-25
-2939645 Dabel Dabel 53.66112 11.90025 P PPLA4 DE 12 00 13060 13060011 1419 42 Europe/Berlin 2011-04-25
-2939650 Daaden Daaden 50.73333 7.96667 P PPLA4 DE 08 00 07132 07132018 4499 355 Europe/Berlin 2011-07-31
-2939658 Cuxhaven Cuxhaven Cuxhaven,Kukskhafen,Куксхафен 53.87176 8.69087 P PPL DE 06 00 52677 5 Europe/Berlin 2010-11-22
-2939665 Cursdorf Cursdorf 50.56667 11.13333 P PPLA4 DE 15 00 16073 16073013 767 740 Europe/Berlin 2011-04-25
-2939687 Cunewalde Cunewalde Cunewalde 51.1 14.51667 P PPLA4 DE 13 146 14625 14625090 5601 290 Europe/Berlin 2011-04-25
-2939693 Cumlosen Cumlosen Cumlosen,Kumlosen 53.03333 11.66667 P PPLA4 DE 11 00 12070 12070060 910 27 Europe/Berlin 2011-04-25
-2939710 Crottendorf Crottendorf Crottendorf 50.51667 12.95 P PPLA4 DE 13 145 14521 14521130 4705 643 Europe/Berlin 2011-04-25
-2939714 Crostwitz Crostwitz Chroscicy,Chrósćicy,Crostwitz 51.23333 14.25 P PPLA4 DE 13 146 14625 14625080 1201 178 Europe/Berlin 2011-04-25
-2939717 Crostau Crostau 51.08333 14.45 P PPLA4 DE 13 146 14625 14625070 1786 325 Europe/Berlin 2011-04-25
-2939731 Cronenberg Cronenberg 49.65 7.61667 P PPLA4 DE 08 00 07336 07336013 172 207 Europe/Berlin 2011-04-25
-2939739 Crivitz Crivitz Crivitz 53.58333 11.65 P PPL DE 12 4970 53 Europe/Berlin 2012-02-02
-2939742 Crispendorf Crispendorf Crispendorf 50.6 11.73333 P PPLA4 DE 15 00 16075 16075013 453 473 Europe/Berlin 2011-04-25
-2939745 Crinitz Crinitz 51.73333 13.76667 P PPLA4 DE 11 00 12062 12062088 1504 129 Europe/Berlin 2011-04-25
-2939747 Crimmitschau Crimmitschau Crimmitschau,Crimmitshau,Krimmichau,Stadt Crimmitschau,Криммичау 50.81667 12.38333 P PPL DE 13 22442 248 Europe/Berlin 2012-01-18
-2939748 Crimla Crimla Crimla 50.8 12.05 P PPLA4 DE 15 00 16076 16076014 358 292 Europe/Berlin 2011-04-25
-2939754 Creuzburg Creuzburg 51.05 10.25 P PPL DE 15 2658 195 Europe/Berlin 2006-01-17
-2939756 Creußen Creussen Creussen,Creuszen,Creußen 49.85 11.61667 P PPL DE 02 4871 450 Europe/Berlin 2012-01-18
-2939763 Cremlingen Cremlingen Cremlingen 52.25 10.65 P PPLA4 DE 06 00 03158 03158006 12808 113 Europe/Berlin 2011-04-25
-2939767 Creglingen Creglingen Creglingen,Kreglingen 49.46667 10.03333 P PPL DE 01 4828 314 Europe/Berlin 2012-01-18
-2939770 Crawinkel Crawinkel Crawinkel 50.78333 10.78333 P PPLA4 DE 15 00 16067 16067008 1640 465 Europe/Berlin 2011-04-25
-2939782 Cramonshagen Cramonshagen 53.7 11.28333 P PPLA4 DE 12 00 13058 13058019 556 48 Europe/Berlin 2011-04-25
-2939788 Cramme Cramme 52.11331 10.44671 P PPLA4 DE 06 00 03158 03158005 959 104 Europe/Berlin 2011-04-25
-2939789 Cramberg Cramberg Kramberg 50.34168 7.94269 P PPLA4 DE 08 00 07141 07141022 500 202 Europe/Berlin 2011-04-25
-2939797 Crailsheim Crailsheim Krajl'skhajm,Stadt Crailsheim,Крайльсхайм 49.13444 10.07193 P PPL DE 01 32262 409 Europe/Berlin 2010-01-29
-2939811 Cottbus Cottbus Chocebuz,Chociebuz,Chociebuż,Chosebuz,Choćebuz,Chośebuz,Cottbus,Kotbus,Kottbus,ke te bu si,koteubuseu,kotobusu,Котбус,Коттбус,コトブス,科特布斯,코트부스 51.76667 14.33333 P PPL DE 11 84754 70 Europe/Berlin 2012-01-18
-2939819 Coswig Coswig 51.88333 12.45 P PPL DE 14 8495 72 Europe/Berlin 2006-01-17
-2939820 Coswig Coswig Coswig 51.13333 13.58333 P PPL DE 13 22304 117 Europe/Berlin 2012-01-18
-2939847 Cornberg Cornberg Cornberg,Dorf Kornberg,Kornberg 51.05 9.86667 P PPLA4 DE 05 066 06632 06632005 1621 304 Europe/Berlin 2011-04-25
-2939860 Coppengrave Coppengrave 51.98333 9.73333 P PPLA4 DE 06 00 03254 03254036 683 157 Europe/Berlin 2011-04-25
-2939862 Coppenbrügge Coppenbrugge Coppenbrugge,Coppenbrügge,Koppenbrugge,Koppenbrügge 52.11667 9.55 P PPL DE 06 7901 131 Europe/Berlin 2012-01-18
-2939870 Contwig Contwig 49.25 7.43333 P PPLA4 DE 08 00 07340 07340206 5029 256 Europe/Berlin 2011-04-25
-2939896 Cölpin Colpin 53.51667 13.43333 P PPLA4 DE 12 00 13055 13055012 806 81 Europe/Berlin 2011-04-25
-2939900 Colnrade Colnrade 52.83333 8.48333 P PPLA4 DE 06 00 03458 03458002 855 22 Europe/Berlin 2011-04-25
-2939907 Colmberg Colmberg Colmberg 49.36667 10.41667 P PPL DE 02 2142 508 Europe/Berlin 2012-01-18
-2939927 Colditz Colditz Colditz,ke er di ci,科尔迪茨 51.13333 12.81667 P PPL DE 13 5173 211 Europe/Berlin 2012-01-18
-2939940 Colbitz Colbitz Kolbitz 52.31708 11.60534 P PPLA4 DE 14 00 15083 15083130 3443 58 Europe/Berlin 2011-07-31
-2939942 Cölbe Colbe Colbe,Cölbe 50.85 8.8 P PPLA4 DE 05 065 06534 06534006 7083 300 Europe/Berlin 2011-04-25
-2939945 Coesfeld Coesfeld Coesfeld,Koesfeld,Kosfel'd,Косфельд 51.93333 7.15 P PPL DE 07 36631 81 Europe/Berlin 2012-01-18
-2939946 Cochstedt Cochstedt Cochstedt,Kochstedt 51.88333 11.41667 P PPL DE 14 1311 106 Europe/Berlin 2012-01-18
-2939949 Cochem Cochem Cochem,Kochem 50.13333 7.15 P PPL DE 08 5215 353 Europe/Berlin 2012-01-18
-2939951 Coburg Coburg Coburg,Coburgo,Koburg,Landkreis Coburg,Powiat Coburg,Subdistrikto Coburg,koburuku jun,Кобург,コーブルク郡 50.26667 10.96667 P PPL DE 02 094 09473 41901 293 Europe/Berlin 2012-02-22
-2939969 Cloppenburg Cloppenburg Cloppenburg,Kloppenburg,Клоппенбург 52.85 8.03333 P PPL DE 06 31177 42 Europe/Berlin 2012-01-18
-2939972 Clingen Clingen Clingen 51.21667 10.93333 P PPL DE 15 1103 174 Europe/Berlin 2012-01-18
-2939983 Clenze Clenze Clenze,Klenze 52.93333 10.95 P PPL DE 06 2448 28 Europe/Berlin 2012-01-18
-2939990 Cleebronn Cleebronn 49.045 9.03694 P PPLA4 DE 01 081 08125 08125017 2762 240 Europe/Berlin 2011-04-25
-2939995 Clausthal-Zellerfeld Clausthal-Zellerfeld Bergstadt-Clausthal-Zellerfeld,Clausthal-Zellerfeld 51.8 10.33333 P PPL DE 06 15345 589 Europe/Berlin 2012-01-18
-2939997 Claußnitz Claussnitz 50.93333 12.88333 P PPLA4 DE 13 145 14522 14522070 3505 287 Europe/Berlin 2011-04-25
-2940003 Clausen Clausen 49.26075 7.6773 P PPLA4 DE 08 00 07340 07340003 1626 402 Europe/Berlin 2011-04-25
-2940033 Chursdorf Chursdorf 50.66667 11.85 P PPLA4 DE 15 00 16075 16075012 236 432 Europe/Berlin 2011-07-31
-2940049 Christinenthal Christinenthal Christinental,Christinenthal 54.05 9.53333 P PPLA4 DE DE 10 00 01061 01061021 0 16 Europe/Berlin 2011-04-25
-2940068 Christiansholm Christiansholm Christiansholm 54.31667 9.41667 P PPLA4 DE 10 00 01058 01058036 295 1 Europe/Berlin 2011-04-25
-2940097 Christes Christes Christes 50.66667 10.48333 P PPLA4 DE 15 00 16066 16066015 703 478 Europe/Berlin 2011-04-25
-2940119 Chorin Chorin 52.90197 13.87153 P PPLA4 DE 11 00 12060 12060045 2609 56 Europe/Berlin 2011-07-31
-2940126 Chiemsee Chiemsee 47.86667 12.41667 P PPLA4 DE 02 091 09187 09187123 311 515 Europe/Berlin 2011-04-25
-2940127 Chieming Chieming 47.89258 12.54012 P PPLA4 DE 02 091 09189 09189114 4503 532 Europe/Berlin 2011-04-25
-2940132 Chemnitz Chemnitz Chemnicium,Chemnitz,Karl-Marx-Stadt,Kemnic,Kemnits,Khemnic,Saska Kamenice,Saská Kamenice,kai mu ni ci,kemunittsu,qmnyz,Κέμνιτς,Кемниц,Хемниц,קמניץ,ケムニッツ,开姆尼茨 50.83333 12.91667 P PPLA2 DE 13 145 14511 14511000 247220 300 Europe/Berlin 2011-04-24
-2940190 Charlottenberg Charlottenberg 50.35 7.88333 P PPLA4 DE 08 00 07141 07141021 161 313 Europe/Berlin 2011-04-25
-2940201 Chamerau Chamerau 49.2 12.75 P PPLA4 DE 02 093 09372 09372117 2667 373 Europe/Berlin 2011-04-25
-2940204 Cham Cham Cham,Cham Regen 49.22556 12.66361 P PPL DE 02 17314 422 Europe/Berlin 2012-01-18
-2940213 Celle Celle Celle,Целле 52.62264 10.08047 P PPL DE 06 71010 45 Europe/Berlin 2011-04-28
-2940218 Cavertitz Cavertitz 51.38333 13.13333 P PPLA4 DE 13 147 14730 14730050 2584 101 Europe/Berlin 2011-04-25
-2940231 Castrop-Rauxel Castrop-Rauxel Castrop-Rauxel,Stadt Castrop-Rauxel 51.55 7.31667 P PPL DE 07 77924 114 Europe/Berlin 2012-01-18
-2940235 Castell Castell Castell 49.75 10.35 P PPLA4 DE 02 096 09675 09675116 820 273 Europe/Berlin 2011-04-25
-2940246 Casekow Casekow Kasekow 53.21117 14.20824 P PPLA4 DE 11 00 12073 12073097 2388 22 Europe/Berlin 2011-07-31
-2940259 Carpin Carpin 53.35 13.25 P PPLA4 DE 12 00 13055 13055011 1025 97 Europe/Berlin 2011-04-25
-2940309 Carlsberg Carlsberg 49.50389 8.04167 P PPLA4 DE 08 00 07332 07332007 3536 330 Europe/Berlin 2011-04-25
-2940311 Carlow Carlow 53.76667 10.93333 P PPLA4 DE 12 00 13058 13058018 1268 26 Europe/Berlin 2011-04-25
-2940317 Cappeln Cappeln Cappeln 52.81667 8.11667 P PPL DE 06 6274 43 Europe/Berlin 2012-02-02
-2940322 Cappel Cappel Cappel,Kappel 53.73333 8.58333 P PPLA4 DE 06 00 03352 03352010 776 0 Europe/Berlin 2011-04-25
-2940363 Cammin Cammin 53.99041 12.35928 P PPLA4 DE 12 00 13051 13051016 858 40 Europe/Berlin 2011-07-31
-2940364 Cammin Cammin 53.43333 13.3 P PPLA4 DE 12 00 13055 13055010 337 71 Europe/Berlin 2011-04-25
-2940377 Camburg Camburg Camburg 51.05 11.7 P PPL DE 15 2958 150 Europe/Berlin 2012-01-18
-2940379 Cambs Cambs 53.69716 11.52715 P PPLA4 DE 12 00 13060 13060009 733 38 Europe/Berlin 2011-04-25
-2940381 Bad Camberg Bad Camberg Bad Camberg,Camberg,Kamberg 50.3 8.26667 P PPL DE 05 14195 211 Europe/Berlin 2012-01-18
-2940383 Calw Calw Calw,Kalv,karufu,Калв,カルフ 48.71419 8.74031 P PPL DE 01 23740 339 Europe/Berlin 2010-07-10
-2940386 Calvörde Calvorde Calvorde,Calvörde 52.39551 11.29463 P PPLA4 DE 14 00 15083 15083125 1742 59 Europe/Berlin 2011-04-25
-2940397 Callenberg Callenberg 50.85 12.63333 P PPLA4 DE 13 145 14524 14524020 5763 328 Europe/Berlin 2011-04-25
-2940402 Callbach Callbach 49.7 7.7 P PPLA4 DE 08 00 07133 07133020 395 220 Europe/Berlin 2011-04-25
-2940412 Calden Calden Kalden 51.40943 9.40189 P PPLA4 DE 05 066 06633 06633005 7752 238 Europe/Berlin 2011-04-25
-2940416 Calberlah Calberlah Kalberlah 52.42074 10.62326 P PPLA4 DE 06 00 03151 03151006 5248 66 Europe/Berlin 2011-04-25
-2940419 Calbe Calbe Calbe,Calbe an der Saale,Kalbe 51.9 11.76667 P PPL DE 14 11322 71 Europe/Berlin 2012-01-18
-2940424 Calau Calau Calau,Kalawa 51.75 13.93333 P PPL DE 11 9299 91 Europe/Berlin 2012-01-18
-2940428 Cadolzburg Cadolzburg 49.4573 10.85329 P PPL DE 02 10164 381 Europe/Berlin 2009-04-15
-2940430 Cadenberge Cadenberge Kadenberge 53.76926 9.06269 P PPLA4 DE 06 00 03352 03352009 3421 9 Europe/Berlin 2011-04-25
-2940436 Caaschwitz Caaschwitz Caaschwitz,Gaaschwitz 50.95 12 P PPLA4 DE 15 00 16076 16076012 742 173 Europe/Berlin 2011-04-25
-2940451 Buxtehude Buxtehude Buxtehude 53.45 9.7 P PPL DE 06 38192 33 Europe/Berlin 2012-01-18
-2940456 Buxheim Buxheim 48.8 11.3 P PPLA4 DE 02 091 09176 09176118 0 384 Europe/Berlin 2011-04-25
-2940457 Buxheim Buxheim 48 10.13333 P PPLA4 DE 02 097 09778 09778123 3060 587 Europe/Berlin 2011-04-25
-2940476 Bützow Butzow Butzow,Bützow 53.85 11.98333 P PPL DE 12 8146 5 Europe/Berlin 2012-01-18
-2940477 Butzow Butzow 53.8349 13.64639 P PPLA4 DE 12 00 13059 13059015 486 7 Europe/Berlin 2011-04-25
-2940512 Butzbach Butzbach 50.43395 8.67122 P PPL DE 05 064 25156 206 Europe/Berlin 2010-11-15
-2940516 Büttstedt Buttstedt Buttstedt,Büttstedt 51.25 10.3 P PPLA4 DE 15 00 16061 16061018 1012 412 Europe/Berlin 2011-04-25
-2940518 Buttstädt Buttstadt Buttstadt,Buttstaedt,Buttstädt 51.11667 11.41667 P PPL DE 15 2622 184 Europe/Berlin 2012-01-18
-2940529 Buttlar Buttlar 50.75 9.95 P PPLA4 DE 15 00 16063 16063011 1437 261 Europe/Berlin 2011-04-25
-2940534 Bütthard Butthard Butthar,Butthard,Butthart,Bütthar,Bütthard,Bütthart 49.6 9.88333 P PPL DE 02 1300 296 Europe/Berlin 2012-01-18
-2940611 Buttenwiesen Buttenwiesen 48.6 10.71667 P PPLA4 DE 02 097 09773 09773122 5750 409 Europe/Berlin 2011-04-25
-2940613 Buttenheim Buttenheim 49.80365 11.03002 P PPL DE 02 3242 270 Europe/Berlin 2008-10-30
-2940622 Buttelstedt Buttelstedt Buttelstedt 51.06667 11.35 P PPL DE 15 1411 215 Europe/Berlin 2012-01-18
-2940633 Büttelborn Buttelborn 49.90333 8.52333 P PPLA4 DE 05 064 06433 06433003 13338 95 Europe/Berlin 2011-04-25
-2940636 Büttel Buttel 53.9 9.23333 P PPLA4 DE 10 00 01061 01061020 48 253 Europe/Berlin 2011-04-25
-2940649 Bütow Butow 53.34553 12.48407 P PPLA4 DE 12 00 13056 13056009 518 82 Europe/Berlin 2011-04-25
-2940668 Büsumer Deichhausen Busumer Deichhausen 54.13333 8.88333 P PPLA4 DE 10 00 01051 01051014 348 0 Europe/Berlin 2011-04-25
-2940669 Büsum Busum 54.13333 8.85 P PPLA4 DE 10 00 01051 01051013 4904 3 Europe/Berlin 2011-07-31
-2940715 Büsingen Busingen Buesingen,Buesingen am Hochrhein,Büsingen,Büsingen am Hochrhein 47.69638 8.68759 P PPL DE 01 1473 396 Europe/Berlin 2007-07-30
-2940721 Busenwurth Busenwurth Busenwurth 54.03333 9.03333 P PPLA4 DE 10 00 01051 01051017 361 255 Europe/Berlin 2011-04-25
-2940724 Busenhausen Busenhausen 50.71667 7.63333 P PPLA4 DE 08 00 07132 07132017 351 276 Europe/Berlin 2011-04-25
-2940733 Busenberg Busenberg 49.13024 7.8293 P PPLA4 DE 08 00 07340 07340002 1418 241 Europe/Berlin 2011-08-07
-2940742 Busdorf Busdorf 54.5 9.55 P PPLA4 DE 10 00 01059 01059018 0 4 Europe/Berlin 2011-04-25
-2940743 Busdorf Busdorf 54.1 10.08333 P PPL DE 10 2149 34 Europe/Berlin 2006-01-17
-2940747 Buschvitz Buschvitz 54.42998 13.47121 P PPLA4 DE 12 00 13061 13061007 220 8 Europe/Berlin 2011-04-25
-2940920 Burweg Burweg 53.62475 9.26635 P PPLA4 DE 06 00 03359 03359009 989 2 Europe/Berlin 2011-08-26
-2940926 Burtscheid Burtscheid 49.73333 6.95 P PPLA4 DE 08 00 07231 07231017 121 395 Europe/Berlin 2011-04-25
-2940929 Burtenbach Burtenbach 48.34051 10.4528 P PPL DE 02 3323 512 Europe/Berlin 2010-08-16
-2940938 Bürstadt Burstadt Burstadt,Bürstadt 49.64361 8.46 P PPL DE 05 15348 94 Europe/Berlin 2012-01-18
-2940942 Burscheid Burscheid Burscheid,Burshajd,Буршайд 51.1 7.11667 P PPL DE 07 19215 192 Europe/Berlin 2012-01-18
-2940947 Burrweiler Burrweiler 49.24778 8.07833 P PPLA4 DE 08 00 07337 07337015 898 242 Europe/Berlin 2011-04-25
-2940959 Burow Burow 53.78333 13.26667 P PPLA4 DE 12 00 13052 13052015 1258 50 Europe/Berlin 2011-04-25
-2940977 Burladingen Burladingen Burladingen 48.28333 9.11667 P PPL DE 01 13131 846 Europe/Berlin 2012-01-18
-2940993 Burkhardtsdorf Burkhardtsdorf 50.73333 12.91667 P PPLA4 DE 13 145 14521 14521120 7067 405 Europe/Berlin 2011-04-25
-2941028 Burkau Burkau 51.18333 14.18333 P PPLA4 DE 13 146 14625 14625060 3000 237 Europe/Berlin 2011-04-25
-2941034 Burkardroth Burkardroth Burkardroth 50.26667 10 P PPL DE 02 7893 358 Europe/Berlin 2012-01-18
-2941038 Burk Burk 49.13333 10.46667 P PPLA4 DE 02 095 09571 09571128 1241 492 Europe/Berlin 2011-04-25
-2941052 Burgwindheim Burgwindheim Burgwindheim 49.83333 10.6 P PPL DE 02 1465 331 Europe/Berlin 2012-01-18
-2941053 Burgwerben Burgwerben Burgwerben 51.21667 11.98333 P PPL DE 14 1062 96 Europe/Berlin 2012-01-18
-2941078 Burgwalde Burgwalde Burgwalde 51.38333 10.05 P PPLA4 DE 15 00 16061 16061021 255 251 Europe/Berlin 2011-04-25
-2941090 Burgthann Burgthann 49.35202 11.31154 P PPLA4 DE 02 095 09574 09574117 11567 431 Europe/Berlin 2011-04-25
-2941107 Burg Stargard Burg Stargard Burg Stargard 53.5 13.31667 P PPL DE 12 4780 73 Europe/Berlin 2012-01-18
-2941116 Burgstall Burgstall 52.40849 11.69666 P PPLA4 DE 14 00 15083 15083120 660 49 Europe/Berlin 2011-04-25
-2941150 Burgstädt Burgstadt Burgstadt,Burgstädt 50.91667 12.81667 P PPL DE 13 12477 312 Europe/Berlin 2012-01-18
-2941151 Bürgstadt Burgstadt Burgstadt,Bürgstadt 49.71361 9.27139 P PPL DE 02 4342 141 Europe/Berlin 2012-01-18
-2941155 Burgsponheim Burgsponheim 49.83333 7.71667 P PPLA4 DE 08 00 07133 07133019 217 225 Europe/Berlin 2011-04-25
-2941159 Burgsinn Burgsinn Burgsinn 50.15 9.65 P PPL DE 02 2709 203 Europe/Berlin 2012-01-18
-2941166 Burgschwalbach Burgschwalbach 50.28333 8.08333 P PPLA4 DE 08 00 07141 07141020 1142 190 Europe/Berlin 2011-04-25
-2941172 Burgsalach Burgsalach Burgsalack 49.03316 11.09766 P PPLA4 DE 02 095 09577 09577120 1262 584 Europe/Berlin 2011-04-25
-2941173 Burgrieden Burgrieden 48.23333 9.93333 P PPLA4 DE 01 084 08426 08426028 3573 503 Europe/Berlin 2011-04-25
-2941178 Burgpreppach Burgpreppach Burgpreppach 50.13333 10.65 P PPL DE 02 1480 346 Europe/Berlin 2012-01-18
-2941179 Burgoberbach Burgoberbach 49.23333 10.58333 P PPLA4 DE 02 095 09571 09571127 3391 467 Europe/Berlin 2011-04-25
-2941190 Burglengenfeld Burglengenfeld Burglegenfeld,Burglengenfeld 49.20556 12.04139 P PPL DE 02 12095 366 Europe/Berlin 2012-01-18
-2941204 Burglauer Burglauer 50.26667 10.18333 P PPLA4 DE 02 096 09673 09673186 1658 241 Europe/Berlin 2011-04-25
-2941206 Burglahr Burglahr 50.61778 7.49688 P PPLA4 DE 08 00 07132 07132016 538 166 Europe/Berlin 2011-07-31
-2941207 Burgkunstadt Burgkunstadt Burgkundstadt 50.14093 11.25205 P PPL DE 02 6991 304 Europe/Berlin 2008-08-19
-2941216 Burgkirchen an der Alz Burgkirchen an der Alz Burgkirchen,Burgkirchen an der Alz 48.16667 12.73333 P PPL DE 02 10756 443 Europe/Berlin 2012-01-18
-2941226 Burgk Burgk 50.56667 11.71667 P PPLA4 DE 15 00 16075 16075009 102 438 Europe/Berlin 2011-07-31
-2941271 Burgheim Burgheim Burgheim,Burkheim 48.7 11.01667 P PPL DE 02 4616 401 Europe/Berlin 2012-01-18
-2941279 Burghausen Burghausen Burghausen,Burkhausen 48.16667 12.83333 P PPL DE 02 18263 422 Europe/Berlin 2012-01-18
-2941283 Burghaun Burghaun 50.69684 9.72453 P PPLA4 DE 05 066 06631 06631002 6713 252 Europe/Berlin 2011-07-31
-2941285 Burghaslach Burghaslach Burghaslach 49.73333 10.6 P PPL DE 02 2514 300 Europe/Berlin 2012-01-18
-2941319 Burggen Burggen 47.78333 10.81667 P PPLA4 DE 02 091 09190 09190118 1686 756 Europe/Berlin 2011-04-25
-2941392 Burgen Burgen 50.21127 7.38959 P PPLA4 DE 08 00 07137 07137206 828 81 Europe/Berlin 2011-04-25
-2941393 Burgen Burgen 49.88333 7 P PPLA4 DE 08 00 07231 07231016 580 176 Europe/Berlin 2011-04-25
-2941401 Bürgel Burgel Burgel,Bürgel 50.95 11.75 P PPL DE 15 3351 239 Europe/Berlin 2012-01-18
-2941403 Burgebrach Burgebrach Burgebrach 49.83333 10.75 P PPL DE 02 6412 269 Europe/Berlin 2012-01-18
-2941405 Burgdorf Burgdorf Borchdoerp,Borchdörp,Bortaerpe,Bortoerp,Bortärpe,Bortörp 52.44628 10.0064 P PPL DE 06 00 03241 03241003 30218 55 Europe/Berlin 2011-02-16
-2941406 Burgdorf Burgdorf 52.14434 10.21763 P PPLA4 DE 06 00 03158 03158004 0 112 Europe/Berlin 2011-04-25
-2941413 Burgbrohl Burgbrohl 50.45 7.28333 P PPLA4 DE 08 00 07131 07131202 3332 247 Europe/Berlin 2011-04-25
-2941416 Burgbernheim Burgbernheim Burgbernheim 49.45 10.31667 P PPL DE 02 3055 353 Europe/Berlin 2012-01-18
-2941422 Burgberg Burgberg 47.53333 10.28333 P PPL DE 02 3124 742 Europe/Berlin 2006-01-17
-2941485 Burgau Burgau Burgau,Burgau Kreis Gunzburg,Burgau Kreis Günzburg 48.43159 10.40989 P PPL DE 02 9576 454 Europe/Berlin 2010-08-16
-2941496 Burg auf Fehmarn Burg auf Fehmarn Burg,Burg am Fehmarn,Burg auf Fehmarn,Бург 54.43333 11.2 P PPLX DE DE 10 6000 9 Europe/Berlin 2011-10-22
-2941497 Burg Burg 54 9.26667 P PPL DE 10 4321 7 Europe/Berlin 2006-01-17
-2941501 Burg bei Magdeburg Burg bei Magdeburg Burg,Stadt Burg bei Magdeburg 52.27152 11.85493 P PPL DE 14 24958 44 Europe/Berlin 2009-03-15
-2941502 Burg Burg Borkowy,Burg,Burg-Dorf 51.83333 14.15 P PPL DE 11 4549 60 Europe/Berlin 2012-01-18
-2941513 Burg Burg 49.96667 6.35 P PPLA4 DE 08 00 07232 07232022 26 378 Europe/Berlin 2011-04-25
-2941570 Büren Buren Bueren,Buren,Burion,Büren,Būrion 51.55 8.56667 P PPL DE 07 22263 226 Europe/Berlin 2012-01-18
-2941575 Bürdenbach Burdenbach 50.60438 7.51637 P PPLA4 DE 08 00 07132 07132015 577 266 Europe/Berlin 2011-04-25
-2941595 Burbach Burbach Burbach 50.75 8.08333 P PPLA4 DE 07 059 05970 05970008 14942 414 Europe/Berlin 2011-07-31
-2941597 Burbach Burbach 50.1 6.51667 P PPLA4 DE 08 00 07232 07232210 620 486 Europe/Berlin 2011-04-25
-2941628 Bunsoh Bunsoh Bunsoh 54.16667 9.33333 P PPLA4 DE 10 00 01051 01051015 915 18 Europe/Berlin 2011-04-25
-2941629 Bünsdorf Bunsdorf Bunsdorf,Bünsdorf 54.36667 9.75 P PPLA4 DE 10 00 01058 01058035 591 7 Europe/Berlin 2011-04-25
-2941676 Bundorf Bundorf 50.21667 10.51667 P PPLA4 DE 02 096 09674 09674120 972 325 Europe/Berlin 2011-04-25
-2941690 Bundenthal Bundenthal 49.09549 7.80839 P PPLA4 DE 08 00 07340 07340502 1137 202 Europe/Berlin 2011-08-07
-2941692 Bundenbach Bundenbach 49.83333 7.41667 P PPLA4 DE 08 00 07134 07134017 1012 476 Europe/Berlin 2011-04-25
-2941693 Bunde Bunde Bunde 53.18333 7.26667 P PPLA4 DE 06 00 03457 03457024 7588 6 Europe/Berlin 2011-04-25
-2941694 Bünde Buende Buginithi 52.2 8.58333 P PPL DE 07 45403 67 Europe/Berlin 2011-11-06
-2941744 Bülstringen Bulstringen Bulstringen,Bülstringen 52.31667 11.35 P PPLA4 DE 14 00 15083 15083115 823 58 Europe/Berlin 2011-04-25
-2941758 Bülow Bulow 53.58333 11.76667 P PPLA4 DE 12 00 13060 13060008 387 42 Europe/Berlin 2011-04-25
-2941789 Bullenkuhlen Bullenkuhlen Bullenkuhlen 53.76667 9.75 P PPLA4 DE 10 00 01056 01056011 367 6 Europe/Berlin 2011-04-25
-2941826 Bullay Bullay 50.06667 7.13333 P PPLA4 DE 08 00 07135 07135019 1531 118 Europe/Berlin 2011-04-25
-2941831 Bülkau Bulkau Bulkau,Bülkau 53.75 8.96667 P PPLA4 DE 06 00 03352 03352008 923 254 Europe/Berlin 2011-04-25
-2941877 Bühren Buehren 52.80629 8.2188 P PPL DE 06 1300 54 Europe/Berlin 2010-01-09
-2941880 Bühren Buhren 51.48333 9.68333 P PPLA4 DE 06 00 03152 03152005 551 276 Europe/Berlin 2011-04-25
-2941885 Bühnsdorf Buhnsdorf Buhnsdorf,Bühnsdorf 53.88333 10.38333 P PPLA4 DE 10 00 01060 01060015 336 43 Europe/Berlin 2011-04-25
-2941923 Bühlerzell Buhlerzell 49.00333 9.92056 P PPLA4 DE 01 081 08127 08127013 2044 396 Europe/Berlin 2011-04-25
-2941926 Bühlertann Buhlertann Buhlertann,Bühlertann 49.04167 9.90861 P PPLA4 DE 01 081 08127 08127012 3123 377 Europe/Berlin 2011-04-25
-2941928 Bühlertal Buhlertal Buhlertal,Bühlertal 48.68333 8.18333 P PPLA4 DE 01 082 08216 08216008 8144 305 Europe/Berlin 2011-04-25
-2941943 Buhlenberg Buhlenberg 49.65 7.11667 P PPLA4 DE 08 00 07134 07134016 535 476 Europe/Berlin 2011-04-25
-2941965 Buhla Buhla Buhla 51.43333 10.43333 P PPLA4 DE 15 00 16061 16061019 617 423 Europe/Berlin 2011-04-25
-2941976 Bühl Buhl Buhl,Bühl 48.7 8.15 P PPL DE 01 29193 162 Europe/Berlin 2012-01-18
-2942017 Buggingen Buggingen Buggingen 47.8475 7.63799 P PPLA4 DE 01 083 08315 08315022 3816 225 Europe/Berlin 2011-04-25
-2942022 Buggenhagen Buggenhagen 53.91667 13.86667 P PPLA4 DE 12 00 13059 13059014 294 6 Europe/Berlin 2011-04-25
-2942024 Bugewitz Bugewitz 53.8 13.83333 P PPLA4 DE 12 00 13059 13059013 335 250 Europe/Berlin 2011-04-25
-2942048 Bufleben Bufleben Bufleben 51 10.73333 P PPLA4 DE 15 00 16067 16067006 1081 281 Europe/Berlin 2011-04-25
-2942069 Büdlich Budlich 49.78333 6.9 P PPLA4 DE 08 00 07231 07231203 198 340 Europe/Berlin 2011-04-25
-2942073 Büdingen Budingen Budingen,Büdingen 50.3 9.11667 P PPL DE 05 21579 253 Europe/Berlin 2012-01-18
-2942078 Büdesheim Budesheim 50.21667 6.55 P PPLA4 DE 08 00 07232 07232209 638 465 Europe/Berlin 2011-04-25
-2942087 Budenheim Budenheim Budenheim 50.01667 8.16667 P PPLA4 DE 08 00 07339 07339009 8598 105 Europe/Berlin 2011-04-25
-2942089 Budenbach Budenbach 50.03333 7.56667 P PPLA4 DE 08 00 07140 07140023 193 394 Europe/Berlin 2011-04-25
-2942093 Büdelsdorf Budelsdorf Budelsdorf,Büdelsdorf 54.31667 9.68333 P PPL DE 10 10144 17 Europe/Berlin 2012-01-18
-2942095 Buddenhagen Buddenhagen 54 13.7 P PPLA4 DE 12 00 13059 13059012 408 20 Europe/Berlin 2011-04-25
-2942126 Buckow Buckow Buckow 52.56667 14.08333 P PPL DE 11 1619 54 Europe/Berlin 2012-02-02
-2942147 Buckenhof Buckenhof 49.59324 11.05044 P PPLA4 DE 02 095 09572 09572120 3296 289 Europe/Berlin 2011-04-25
-2942154 Bücken Bucken Bucken,Bücken 52.78333 9.13333 P PPL DE 06 2238 19 Europe/Berlin 2012-01-18
-2942159 Bückeburg Buckeburg Buckeburg,Bückeburg 52.26065 9.04939 P PPL DE 06 20700 68 Europe/Berlin 2011-03-15
-2942281 Buchloe Buchloe Buchloe 48.03333 10.73333 P PPL DE 02 11978 630 Europe/Berlin 2012-01-18
-2942290 Büchlberg Buchlberg 48.66667 13.5 P PPLA4 DE 02 092 09275 09275119 3984 451 Europe/Berlin 2011-07-31
-2942305 Buchhorst Buchhorst 53.38596 10.5655 P PPLA4 DE 10 00 01053 01053019 163 18 Europe/Berlin 2011-04-25
-2942323 Buchholz in der Nordheide Buchholz in der Nordheide Buchholz,Buchholz in der Nordheide,Bukhgol'c-in-der-Nordkhajde,Бухгольц-ин-дер-Нордхайде 53.33333 9.86667 P PPL DE 06 37404 72 Europe/Berlin 2012-01-18
-2942345 Buchholz Buchholz 53.98829 9.22362 P PPLA4 DE 10 00 01051 01051012 1128 34 Europe/Berlin 2011-07-12
-2942349 Buchholz Buchholz 53.73333 10.75 P PPLA4 DE 10 00 01053 01053018 227 6 Europe/Berlin 2011-04-25
-2942353 Buchholz Buchholz 53.27435 12.64406 P PPLA4 DE 12 00 13056 13056008 0 68 Europe/Berlin 2011-04-25
-2942358 Buchholz Buchholz 53 9.56667 P PPL DE 06 2023 42 Europe/Berlin 2006-01-17
-2942367 Buchholz Buchholz 52.23333 9.11667 P PPLA4 DE 06 00 03257 03257008 753 126 Europe/Berlin 2011-07-31
-2942372 Buchholz Buchholz 51.53333 10.86667 P PPLA4 DE 15 00 16062 16062004 0 271 Europe/Berlin 2011-04-25
-2942420 Buchhofen Buchhofen 48.7 12.91667 P PPLA4 DE 02 092 09271 09271118 971 330 Europe/Berlin 2011-04-25
-2942451 Buchheim Buchheim 48.01037 8.98596 P PPLA4 DE 01 083 08327 08327008 0 791 Europe/Berlin 2011-04-25
-2942476 Buchfart Buchfart 50.92103 11.33248 P PPLA4 DE 15 00 16071 16071009 183 258 252 Europe/Berlin 2011-04-25
-2942481 Buchet Buchet 50.23333 6.31667 P PPLA4 DE 08 00 07232 07232208 264 544 Europe/Berlin 2011-04-25
-2942559 Büchenbeuren Buchenbeuren 49.91667 7.26667 P PPLA4 DE 08 00 07140 07140024 1647 444 Europe/Berlin 2011-04-25
-2942566 Buchenberg Buchenberg Buchenberg 47.7 10.23333 P PPL DE 02 3898 884 Europe/Berlin 2012-01-18
-2942612 Büchenbach Buchenbach 49.26778 11.05889 P PPLA4 DE 02 095 09576 09576117 5255 362 Europe/Berlin 2011-04-25
-2942614 Buchenbach Buchenbach Buchenbach 47.96667 8.01667 P PPLA4 DE 01 083 08315 08315020 3364 590 Europe/Berlin 2011-04-25
-2942627 Büchen Buchen 53.48008 10.6176 P PPLA4 DE 10 00 01053 01053020 5442 17 Europe/Berlin 2011-04-25
-2942634 Buchen Buchen Buchen,Buchen in Odenwald 49.52389 9.32306 P PPL DE 01 18890 344 Europe/Berlin 2012-02-28
-2942680 Büchel Buchel 51.25 11.15 P PPLA4 DE 15 00 16068 16068005 253 128 Europe/Berlin 2011-04-25
-2942688 Büchel Buchel 50.16667 7.08333 P PPLA4 DE 08 00 07135 07135018 1143 430 Europe/Berlin 2011-04-25
-2942702 Buchdorf Buchdorf 48.78333 10.83333 P PPLA4 DE 02 097 09779 09779126 1619 539 Europe/Berlin 2011-04-25
-2942706 Buchbrunn Buchbrunn Buchbrunn 49.76667 10.13333 P PPLA4 DE 02 096 09675 09675114 1061 270 Europe/Berlin 2011-07-31
-2942795 Buchbach Buchbach Buchbach 48.31667 12.28333 P PPL DE 02 3128 468 Europe/Berlin 2012-02-02
-2942810 Buch am Buchrain Buch am Buchrain Buch,Buch am Buchrain 48.21667 12 P PPL DE 02 1355 538 Europe/Berlin 2012-01-18
-2942811 Buch am Ahorn Buch am Ahorn Buch,Buch am Ahorn 49.53333 9.55 P PPL DE 01 2372 372 Europe/Berlin 2012-01-18
-2942819 Bucha Bucha 50.88333 11.51667 P PPLA4 DE 15 00 16074 16074008 1211 361 Europe/Berlin 2011-04-25
-2942820 Bucha Bucha 50.63333 11.7 P PPLA4 DE 15 00 16075 16075008 103 438 Europe/Berlin 2011-04-25
-2942834 Buch Buch 50.2 7.86667 P PPLA4 DE 08 00 07141 07141019 606 277 Europe/Berlin 2011-04-25
-2942837 Buch Buch 50.08333 7.38333 P PPLA4 DE 08 00 07140 07140021 943 380 Europe/Berlin 2011-04-25
-2942858 Buch Buch 48.65 12.16667 P PPL DE 02 3405 448 Europe/Berlin 2006-01-17
-2942866 Buch Buch 48.22479 10.18055 P PPL DE 02 3709 545 Europe/Berlin 2010-08-16
-2942913 Bubsheim Bubsheim 48.11667 8.83333 P PPLA4 DE 01 083 08327 08327007 1030 913 Europe/Berlin 2011-04-25
-2942914 Buborn Buborn 49.63333 7.55 P PPLA4 DE 08 00 07336 07336012 164 296 Europe/Berlin 2011-04-25
-2942922 Bubesheim Bubesheim 48.43333 10.25 P PPLA4 DE 02 097 09774 09774118 1414 467 Europe/Berlin 2011-04-25
-2942930 Bubenreuth Bubenreuth 49.63333 11.01667 P PPLA4 DE 02 095 09572 09572119 4516 271 Europe/Berlin 2011-04-25
-2942938 Bubenheim Bubenheim 49.92167 8.07972 P PPLA4 DE 08 00 07339 07339008 841 136 Europe/Berlin 2011-04-25
-2942939 Bubenheim Bubenheim 49.62806 8.11778 P PPLA4 DE 08 00 07333 07333012 463 194 Europe/Berlin 2011-04-25
-2942960 Bubach Bubach 50.06667 7.55 P PPLA4 DE 08 00 07140 07140020 295 423 Europe/Berlin 2011-04-25
-2942986 Brüssow Brussow 53.39971 14.12533 P PPL DE 11 2338 57 Europe/Berlin 2009-01-28
-2942992 Brüsewitz Brusewitz 53.68333 11.25 P PPLA4 DE 12 00 13058 13058016 2466 55 Europe/Berlin 2011-04-25
-2942999 Bruschied Bruschied 49.83333 7.4 P PPLA4 DE 08 00 07133 07133201 308 374 Europe/Berlin 2011-04-25
-2943001 Brünzow Brunzow 54.1 13.56667 P PPLA4 DE 12 00 13059 13059011 708 17 Europe/Berlin 2011-04-25
-2943008 Brunstorf Brunstorf 53.5 10.43333 P PPLA4 DE 10 00 01053 01053017 586 42 Europe/Berlin 2011-04-25
-2943027 Brunsmark Brunsmark Brunsmark 53.61667 10.73333 P PPLA4 DE 10 00 01053 01053016 143 62 Europe/Berlin 2011-04-25
-2943049 Brunsbüttel Brunsbuttel Brunsbuttel,Brunsbüttel 53.9 9.15 P PPL DE 10 13950 254 Europe/Berlin 2012-01-18
-2943064 Brunow Brunow 53.26667 11.8 P PPLA4 DE 12 00 13054 13054018 402 37 Europe/Berlin 2011-04-25
-2943074 Brunnthal Brunnthal 48.00652 11.68405 P PPLA4 DE 02 091 09184 09184114 4628 593 Europe/Berlin 2011-07-31
-2943162 Brunnen Brunnen 48.63333 11.3 P PPLA4 DE 02 091 09185 09185123 0 383 Europe/Berlin 2011-04-25
-2943163 Brunnen Brunnen 48.23333 10.96667 P PPL DE 02 1609 533 Europe/Berlin 2006-01-17
-2943203 Brunn Brunn 53.66667 13.36667 P PPLA4 DE 12 00 13055 13055008 1261 40 Europe/Berlin 2011-04-25
-2943217 Brunn Brunn 49.23632 12.19156 P PPL DE 02 1311 463 Europe/Berlin 2009-03-19
-2943220 Brunn Brunn 49.1 11.9 P PPLA4 DE 02 093 09375 09375122 0 469 Europe/Berlin 2011-04-25
-2943292 Brumby Brumby 51.9 11.71667 P PPL DE 14 1046 71 Europe/Berlin 2006-01-17
-2943320 Brühl Bruhl 50.82928 6.90499 P PPL DE 07 44137 68 Europe/Berlin 2010-09-08
-2943321 Brühl Bruhl Brjul',Bruehl,Bruhl,Brühl,Брюль 49.39722 8.53361 P PPLA4 DE 01 082 08226 08226009 14262 100 Europe/Berlin 2011-04-25
-2943322 Brüheim Bruheim Bruheim,Brüheim 51 10.58333 P PPLA4 DE 15 00 16067 16067005 537 263 Europe/Berlin 2011-04-25
-2943335 Brüggen Bruggen 52.05 9.78333 P PPLA4 DE 06 00 03254 03254009 1007 94 Europe/Berlin 2011-07-31
-2943336 Brüggen Bruggen 51.24053 6.18376 P PPLA4 DE 07 051 05166 05166004 16105 44 Europe/Berlin 2011-04-25
-2943350 Brügge Brugge 54.18333 10.06667 P PPLA4 DE 10 00 01058 01058033 1019 19 Europe/Berlin 2011-04-25
-2943362 Brüel Bruel Bruel,Brüel 53.73333 11.71667 P PPL DE 12 3140 37 Europe/Berlin 2012-01-18
-2943408 Bruckmühl Bruckmuhl Bruckmuhl,Bruckmühl 47.88333 11.91667 P PPL DE 02 15851 513 Europe/Berlin 2012-01-18
-2943425 Bruck in der Oberpfalz Bruck in der Oberpfalz Bruck,Bruck bei Nittenau,Bruck i.d. OPf.,Bruck in der Oberpfalz,Bruck in der Oberptalz 49.25 12.3 P PPL DE 02 4510 382 Europe/Berlin 2012-01-18
-2943487 Brücken Brucken 49.63333 7.11667 P PPLA4 DE 08 00 07134 07134015 1283 391 Europe/Berlin 2011-04-25
-2943488 Brücken Brucken 49.43174 7.35998 P PPL DE 08 00 2422 251 Europe/Berlin 2010-11-22
-2943500 Bruckberg Bruckberg 49.35 10.7 P PPLA4 DE 02 095 09571 09571122 1394 413 Europe/Berlin 2011-04-25
-2943501 Bruckberg Bruckberg 48.53333 12 P PPLA4 DE 02 092 09274 09274194 5071 485 Europe/Berlin 2011-07-31
-2943516 Brück Bruck Bruck,Brück 52.2 12.76667 P PPL DE 11 4018 43 Europe/Berlin 2012-02-02
-2943521 Brücktal Brucktal Bruck,Brucktal,Brück,Brücktal 50.31667 6.98333 P PPLA4 DE 08 00 07233 07233208 95 485 Europe/Berlin 2011-04-25
-2943531 Bruck Bruck 48.02116 11.90781 P PPLA4 DE 02 091 09175 09175114 1213 510 Europe/Berlin 2011-04-25
-2943546 Bruchweiler-Bärenbach Bruchweiler-Barenbach 49.11667 7.8 P PPLA4 DE 08 00 07340 07340501 1767 199 Europe/Berlin 2011-04-25
-2943547 Bruchweiler Bruchweiler 49.79833 7.22557 P PPLA4 DE 08 00 07134 07134014 550 544 Europe/Berlin 2011-04-25
-2943558 Bruchstedt Bruchstedt 51.18333 10.78333 P PPLA4 DE 15 00 16064 16064009 310 217 Europe/Berlin 2011-04-25
-2943560 Bruchsal Bruchsal Bruchsal,Bruchsalia,Brukhzal',Брухзаль 49.12426 8.59804 P PPL DE 01 42785 135 Europe/Berlin 2012-02-25
-2943573 Bruchköbel Bruchkobel Bruchkobel,Bruchköbel 50.18333 8.91667 P PPL DE 05 20892 123 Europe/Berlin 2012-01-18
-2943587 Bruchhausen-Vilsen Bruchhausen-Vilsen Bruchhausen,Bruchhausen-Vilsen 52.83333 9 P PPL DE 06 6205 14 Europe/Berlin 2012-01-18
-2943621 Bruchertseifen Bruchertseifen 50.75 7.71667 P PPLA4 DE 08 00 07132 07132014 766 247 Europe/Berlin 2011-04-25
-2943668 Bruch Bruch 49.95 6.78333 P PPLA4 DE 08 00 07231 07231013 506 250 Europe/Berlin 2011-04-25
-2943697 Brotterode Brotterode Brotterode 50.83333 10.43333 P PPL DE 15 3052 640 Europe/Berlin 2012-01-18
-2943700 Bröthen Brothen 53.47947 10.66755 P PPLA4 DE 10 00 01053 01053015 280 20 Europe/Berlin 2011-04-25
-2943779 Bronkow Bronkow Bronkow 51.66667 13.91667 P PPLA4 DE 11 00 12066 12066041 691 128 Europe/Berlin 2011-04-25
-2943783 Bromskirchen Bromskirchen Bromskirchen 51.08333 8.61667 P PPLA4 DE 05 066 06635 06635005 1917 498 Europe/Berlin 2011-04-25
-2943795 Brome Brome 52.6 10.95 P PPL DE 06 3428 66 Europe/Berlin 2006-01-17
-2943829 Brokstedt Brokstedt Brokstedt 53.98333 9.81667 P PPLA4 DE 10 00 01061 01061019 2224 9 Europe/Berlin 2011-04-25
-2943851 Brokdorf Brokdorf Brokdorf 53.86667 9.33333 P PPLA4 DE 10 00 01061 01061018 1082 253 Europe/Berlin 2011-04-25
-2943897 Brohl Brohl 50.21909 7.27947 P PPLA4 DE 08 00 07135 07135016 0 249 Europe/Berlin 2011-04-25
-2943919 Broderstorf Broderstorf 54.08333 12.26667 P PPLA4 DE 12 00 13051 13051015 2948 35 Europe/Berlin 2011-07-31
-2943921 Brodersdorf Brodersdorf Brodersdorf 54.38333 10.25 P PPLA4 DE 10 00 01057 01057012 452 24 Europe/Berlin 2011-04-25
-2943922 Brodersby Brodersby 54.63333 9.98333 P PPLA4 DE 10 00 01058 01058032 0 20 Europe/Berlin 2011-04-25
-2943923 Brodersby Brodersby 54.53333 9.71667 P PPLA4 DE 10 00 01059 01059016 727 7 Europe/Berlin 2011-04-25
-2943928 Brodenbach Brodenbach 50.23333 7.45 P PPLA4 DE 08 00 07137 07137205 698 199 Europe/Berlin 2011-04-25
-2943945 Brockum Brockum 52.46667 8.41667 P PPLA4 DE 06 00 03251 03251009 1109 50 Europe/Berlin 2011-04-25
-2943949 Brockscheid Brockscheid Brockscheid,Brockscheidt 50.13333 6.85 P PPLA4 DE 08 00 07233 07233011 216 463 Europe/Berlin 2011-04-25
-2943997 Brockel Brockel 53.1 9.51667 P PPLA4 DE 06 00 03357 03357009 1394 34 Europe/Berlin 2011-04-25
-2943998 Bröckel Broeckel Braeukel,Breukel,Brockelde [a. 1215],Bräukel 52.51627 10.21505 P PPLA4 DE 06 00 03351 03351005 0 45 Europe/Berlin 2011-02-18
-2944024 Bröbberow Brobberow 53.96667 12.05 P PPLA4 DE 12 00 13051 13051014 486 9 Europe/Berlin 2011-04-25
-2944028 Britz Britz 52.88726 13.81119 P PPLA4 DE 11 00 12060 12060036 2327 54 Europe/Berlin 2011-07-31
-2944031 Britten Britten 49.52061 6.67651 P PPL DE 09 00 1400 370 367 Europe/Berlin 2010-11-22
-2944038 Brinkum Brinkum 53.26667 7.56667 P PPLA4 DE 06 00 03457 03457003 689 7 Europe/Berlin 2011-04-25
-2944071 Brinjahe Brinjahe Brinjahe 54.16667 9.63333 P PPLA4 DE 10 00 01058 01058031 133 16 Europe/Berlin 2011-04-25
-2944076 Brimingen Brimingen 49.96972 6.36366 P PPLA4 DE 08 00 07232 07232021 74 386 Europe/Berlin 2011-04-25
-2944079 Brilon Brilon Brilon 51.4 8.58333 P PPL DE 07 27030 415 Europe/Berlin 2012-01-18
-2944087 Briggow Briggow 53.61667 12.98333 P PPLA4 DE 12 00 13052 13052013 373 46 Europe/Berlin 2011-04-25
-2944093 Brietlingen Brietlingen 53.33333 10.45 P PPLA4 DE 06 00 03355 03355011 3150 5 Europe/Berlin 2011-04-25
-2944103 Brieskow-Finkenheerd Brieskow-Finkenheerd Brieskow,Finkenheerd 52.25387 14.57285 P PPLA4 DE 11 00 12067 12067076 2518 35 37 Europe/Berlin 2011-04-25
-2944121 Briesen Briesen 52.33333 14.28333 P PPL DE 11 2374 40 Europe/Berlin 2006-01-17
-2944123 Briesen Briesen Briesen,Brjazyna 51.81554 14.2442 P PPLA4 DE 11 00 12071 12071028 842 59 Europe/Berlin 2011-07-15
-2944126 Brieselang Brieselang 52.58333 13 P PPLA4 DE 11 00 12063 12063036 10379 30 Europe/Berlin 2011-04-25
-2944142 Briedern Briedern 50.1 7.2 P PPLA4 DE 08 00 07135 07135015 360 144 Europe/Berlin 2011-04-25
-2944143 Brieden Brieden 50.18333 7.26667 P PPLA4 DE 08 00 07135 07135014 135 274 Europe/Berlin 2011-04-25
-2944146 Briedel Briedel 50.01667 7.15 P PPLA4 DE 08 00 07135 07135013 1058 256 Europe/Berlin 2011-04-25
-2944149 Brickeln Brickeln Brickeln 54.01667 9.23333 P PPLA4 DE 10 00 01051 01051010 211 0 Europe/Berlin 2011-04-25
-2944155 Brey Brey 50.26667 7.63333 P PPLA4 DE 08 00 07137 07137204 1596 109 Europe/Berlin 2011-04-25
-2944159 Brevörde Brevorde 51.91667 9.41667 P PPLA4 DE 06 00 03255 03255005 790 151 Europe/Berlin 2011-04-25
-2944166 Breunigweiler Breunigweiler 49.56667 7.96667 P PPLA4 DE 08 00 07333 07333011 422 283 Europe/Berlin 2011-04-25
-2944169 Breuna Breuna 51.41575 9.185 P PPLA4 DE 05 066 06633 06633004 3866 290 Europe/Berlin 2011-04-25
-2944178 Bretzfeld Bretzfeld Bretzfeld 49.17944 9.43833 P PPLA4 DE 01 081 08126 08126011 12162 211 Europe/Berlin 2011-04-25
-2944181 Bretzenheim Bretzenheim 49.86667 7.9 P PPLA4 DE 08 00 07133 07133018 2455 97 Europe/Berlin 2011-04-25
-2944195 Bretthausen Bretthausen 50.66667 8.06667 P PPLA4 DE 08 00 07143 07143214 0 568 Europe/Berlin 2011-04-25
-2944200 Bretten Bretten Bretten 49.03917 8.70278 P PPL DE 01 28144 176 Europe/Berlin 2012-01-18
-2944208 Bretleben Bretleben Bretleben 51.33333 11.23333 P PPLA4 DE 15 00 16065 16065011 653 152 Europe/Berlin 2011-04-25
-2944213 Brest Brest 53.45 9.38333 P PPLA4 DE 06 00 03359 03359008 827 30 Europe/Berlin 2011-04-25
-2944237 Brenz Brenz 53.38333 11.66667 P PPLA4 DE 12 00 13054 13054015 561 45 Europe/Berlin 2011-04-25
-2944254 Brensbach Brensbach 49.77389 8.88444 P PPLA4 DE 05 064 06437 06437003 5438 187 Europe/Berlin 2011-07-31
-2944288 Brennberg Brennberg 49.06667 12.4 P PPLA4 DE 02 093 09375 09375120 1834 553 Europe/Berlin 2011-04-25
-2944300 Brenk Brenk 50.43333 7.18333 P PPLA4 DE 08 00 07131 07131201 204 402 Europe/Berlin 2011-04-25
-2944323 Bremsnitz Bremsnitz Bremsnitz 50.8 11.76667 P PPLA4 DE 15 00 16074 16074007 153 292 Europe/Berlin 2011-04-25
-2944335 Bremm Bremm 50.1 7.11667 P PPLA4 DE 08 00 07135 07135012 853 107 Europe/Berlin 2011-04-25
-2944354 Bremervörde Bremervorde Bremervorde,Bremervörde 53.48333 9.13333 P PPL DE 06 19268 4 Europe/Berlin 2012-01-18
-2944368 Bremerhaven Bremerhaven Bremerhaven,Bremerhoben,Bremerkhafen,beulemeohapen,buremahafen,Бремерхафен,ブレーマーハーフェン,브레머하펜 53.55 8.58333 P PPL DE 03 117446 2 Europe/Berlin 2012-01-18
-2944388 Bremen Bremen Brehmehn,Brema,Breme,Bremen,Bremen hiria,Bremenas,Bremene,Bremeni,Bremeno,Bremy,Brèma,Bréma,Brémy,Brémén,Brême,Brēmene,Brėmenas,Byen Bremen,Gorad Brehmen,ber mein,beulemen,bremena,bremeni,brmn,brymn,bu lai mei,buremen,mdynt brymn,Βρέμη,Бремен,Брэмэн,Горад Брэмен,ברמן,برمن,بريمن,مدينة بريمن,ब्रेमेन,เบรเมิน,ბრემენი,ブレーメン,不来梅,브레멘 53.07516 8.80777 P PPLA DE 03 00 546501 18 Europe/Berlin 2010-11-22
-2944403 Bremberg Bremberg 50.31667 7.91667 P PPLA4 DE 08 00 07141 07141018 290 259 Europe/Berlin 2011-04-25
-2944426 Breklum Breklum Braeaeklem,Breklum,Brääklem 54.6 8.98333 P PPLA4 DE 10 00 01054 01054020 2365 8 Europe/Berlin 2011-04-25
-2944431 Brekendorf Brekendorf Brekendorf 54.41667 9.63333 P PPLA4 DE 10 00 01058 01058030 1067 26 Europe/Berlin 2011-04-25
-2944440 Breitungen Breitungen Altenbreitungen,Breitungen 50.76667 10.33333 P PPL DE 15 5281 265 Europe/Berlin 2012-01-18
-2944443 Breitscheidt Breitscheidt Breitscheid,Breitscheidt 50.75 7.65 P PPLA4 DE 08 00 07132 07132013 1041 238 Europe/Berlin 2011-04-25
-2944445 Breitscheid Breitscheid Breitscheid 50.68333 8.2 P PPLA4 DE 05 065 06532 06532004 5000 458 Europe/Berlin 2011-04-25
-2944447 Breitscheid Breitscheid 50.58333 7.43333 P PPLA4 DE 08 00 07138 07138006 0 319 Europe/Berlin 2011-04-25
-2944448 Breitscheid Breitscheid 50.05 7.7 P PPLA4 DE 08 00 07339 07339007 155 453 Europe/Berlin 2011-04-25
-2944455 Breitnau Breitnau Breitnau 47.93333 8.08333 P PPLA4 DE 01 083 08315 08315016 1903 968 Europe/Berlin 2011-07-31
-2944465 Breitingen Breitingen 48.51726 9.99228 P PPLA4 DE 01 084 08425 08425024 262 533 Europe/Berlin 2011-04-25
-2944516 Breitenworbis Breitenworbis Breitenworbis 51.4 10.41667 P PPLA4 DE 15 00 16061 16061017 2296 285 Europe/Berlin 2011-07-31
-2944526 Breitenthal Breitenthal Breitenthal 49.8 7.33333 P PPLA4 DE 08 00 07134 07134013 328 427 Europe/Berlin 2011-04-25
-2944529 Breitenthal Breitenthal 48.23782 10.29951 P PPLA4 DE 02 097 09774 09774117 1293 519 Europe/Berlin 2011-04-25
-2944588 Breitenheim Breitenheim 49.7 7.63333 P PPLA4 DE 08 00 07133 07133017 443 202 Europe/Berlin 2011-04-25
-2944596 Breitenhain Breitenhain 50.76667 11.73333 P PPLA4 DE 15 00 16075 16075007 162 368 Europe/Berlin 2011-07-31
-2944599 Breitengüßbach Breitengussbach 49.97209 10.88591 P PPLA4 DE 02 094 09471 09471119 4643 247 Europe/Berlin 2011-07-31
-2944608 Breitenfelde Breitenfelde Breitenfelde 53.6 10.63333 P PPLA4 DE 10 00 01053 01053014 1792 35 Europe/Berlin 2011-04-25
-2944611 Breitenfeld Breitenfeld 52.56667 11.25 P PPLA4 DE 14 00 15081 15081080 167 74 Europe/Berlin 2011-04-25
-2944627 Breitenburg Breitenburg Breitenburg 53.90572 9.57041 P PPLA4 DE 10 00 01061 01061017 1049 1 Europe/Berlin 2011-04-25
-2944630 Breitenbrunn Breitenbrunn Breitenbrunn 50.46667 12.76667 P PPL DE 13 3741 657 Europe/Berlin 2012-01-18
-2944636 Breitenbrunn Breitenbrunn 49.36667 12.01667 P PPL DE 02 3506 430 Europe/Berlin 2006-01-17
-2944638 Breitenbrunn Breitenbrunn 48.13333 10.4 P PPLA4 DE 02 097 09778 09778121 2300 556 Europe/Berlin 2011-04-25
-2944654 Breitenberg Breitenberg 53.92413 9.63514 P PPLA4 DE 10 00 01061 01061016 410 3 Europe/Berlin 2011-04-25
-2944657 Breitenberg Breitenberg Breitenberg,Breitenburg 48.70439 13.79333 P PPLA4 DE 02 092 09275 09275118 2163 690 Europe/Berlin 2011-07-15
-2944707 Breitenbach Breitenbach 50.95655 9.78285 P PPL DE 05 1955 200 Europe/Berlin 2011-09-11
-2944710 Breitenbach Breitenbach 50.68333 10.5 P PPL DE 15 1041 454 Europe/Berlin 2006-01-17
-2944716 Breitenbach Breitenbach 49.43333 7.26667 P PPLA4 DE 08 00 07336 07336010 0 354 Europe/Berlin 2011-04-25
-2944730 Breitenau Breitenau 50.5 7.68333 P PPLA4 DE 08 00 07143 07143006 732 239 Europe/Berlin 2011-04-25
-2944781 Breitbrunn Breitbrunn 50.01667 10.7 P PPLA4 DE 02 096 09674 09674118 1108 294 Europe/Berlin 2011-04-25
-2944782 Breitbrunn Breitbrunn 48.0432 12.15431 P PPL DE 02 091 1423 472 Europe/Berlin 2010-11-15
-2944793 Breit Breit 49.78333 6.9 P PPLA4 DE 08 00 07231 07231202 270 340 Europe/Berlin 2011-04-25
-2944800 Breisach am Rhein Breisach am Rhein Alt-Breisach,Breisach,Breisach am Rhein,Vieux-Brisach 48.03279 7.58294 P PPL DE 01 14367 189 Europe/Berlin 2012-02-28
-2944812 Breiholz Breiholz Breiholz 54.2 9.53333 P PPLA4 DE 10 00 01058 01058029 1535 2 Europe/Berlin 2011-04-25
-2944820 Breidenbach Breidenbach 50.88333 8.46667 P PPLA4 DE 05 065 06534 06534005 6866 413 Europe/Berlin 2011-04-25
-2944828 Brehna Brehna Brehna 51.55 12.21667 P PPL DE 14 3014 92 Europe/Berlin 2012-02-02
-2944834 Brehme Brehme 51.49421 10.35908 P PPLA4 DE 15 00 16061 16061015 1174 274 Europe/Berlin 2011-04-25
-2944852 Breest Breest 53.78333 13.33333 P PPLA4 DE 12 00 13052 13052012 184 6 Europe/Berlin 2011-04-25
-2944858 Breesen Breesen 53.63333 13.16667 P PPLA4 DE 12 00 13052 13052011 590 63 Europe/Berlin 2011-04-25
-2944865 Breese Breese 53 11.8 P PPLA4 DE 11 00 12070 12070052 1703 21 Europe/Berlin 2011-04-25
-2944869 Breege Breege 54.61458 13.36264 P PPLA4 DE 12 00 13061 13061006 779 2 Europe/Berlin 2011-12-09
-2944879 Bredstedt Bredstedt Braeist,Bredstedt,Bräist 54.61667 8.98333 P PPL DE 10 5146 15 Europe/Berlin 2012-01-18
-2944898 Bredenfelde Bredenfelde 53.6 12.95 P PPLA4 DE 12 00 13052 13052010 187 44 Europe/Berlin 2011-04-25
-2944915 Bredenbek Bredenbek 54.31667 9.86667 P PPLA4 DE 10 00 01058 01058028 1319 11 Europe/Berlin 2011-04-25
-2944944 Breddorf Breddorf 53.29262 9.08089 P PPLA4 DE 06 00 03357 03357007 1235 17 Europe/Berlin 2011-04-25
-2944945 Breddin Breddin 52.8856 12.22366 P PPLA4 DE 11 00 12068 12068052 1046 44 Europe/Berlin 2011-04-25
-2944948 Breddenberg Breddenberg 52.95464 7.61129 P PPLA4 DE 06 00 03454 03454006 790 17 Europe/Berlin 2011-07-31
-2944955 Breckerfeld Breckerfeld Breckerfeld 51.26667 7.46667 P PPL DE 07 9217 353 Europe/Berlin 2012-01-18
-2944963 Brecht Brecht 49.98333 6.43333 P PPLA4 DE 08 00 07232 07232020 256 243 Europe/Berlin 2011-04-25
-2944975 Brebel Brebel Brebel 54.63333 9.75 P PPLA4 DE 10 00 01059 01059014 410 20 Europe/Berlin 2011-04-25
-2944982 Brauweiler Brauweiler 49.81667 7.5 P PPLA4 DE 08 00 07133 07133016 70 328 Europe/Berlin 2011-04-25
-2944993 Braunweiler Braunweiler 49.86667 7.75 P PPLA4 DE 08 00 07133 07133015 611 247 Europe/Berlin 2011-04-25
-2945004 Braunshorn Braunshorn 50.08333 7.51667 P PPLA4 DE 08 00 07140 07140018 604 459 Europe/Berlin 2011-04-25
-2945020 Braunsdorf Braunsdorf 50.73333 11.91667 P PPLA4 DE 15 00 16076 16076011 269 405 Europe/Berlin 2011-04-25
-2945024 Braunschweig Braunschweig Braunschweig,Braunshvejg,Bronswiek,Brunsvicum,Brunsvik,Brunswick,Brunswyck,Brunszwik,Brúnsvík,beulaunsyubaikeu,braunshvaigi,brawnshfaygh,bu lun rui ke,buraunshuvu~aiku,Брауншвейг,براونشفايغ,ბრაუნშვაიგი,ブラウンシュヴァイク,不伦瑞克,브라운슈바이크 52.26667 10.53333 P PPL DE 06 244715 77 Europe/Berlin 2012-01-18
-2945041 Braunsbedra Braunsbedra Braunsbedra,Braunsdorf 51.28602 11.88987 P PPL DE 14 6599 118 Europe/Berlin 2011-12-16
-2945043 Braunsbach Braunsbach Braunsbach 49.19917 9.79056 P PPLA4 DE 01 081 08127 08127009 2382 248 Europe/Berlin 2011-04-25
-2945051 Bräunlingen Braunlingen Braunlingen,Bräunlingen 47.93333 8.45 P PPL DE 01 6141 693 Europe/Berlin 2012-01-18
-2945055 Braunlage Braunlage Braunlage 51.72651 10.6109 P PPL DE 06 5159 590 Europe/Berlin 2012-03-19
-2945060 Braunichswalde Braunichswalde Braunichswalde 50.8 12.21667 P PPLA4 DE 15 00 16076 16076009 704 308 Europe/Berlin 2011-04-25
-2945073 Braunfels Braunfels 50.51545 8.38918 P PPL DE 05 11510 235 Europe/Berlin 2009-10-26
-2945103 Brauneberg Brauneberg Brauneberg 49.91667 6.98333 P PPLA4 DE 08 00 07231 07231012 1173 187 Europe/Berlin 2011-04-25
-2945136 Braubach Braubach 50.28333 7.66667 P PPL DE 08 3192 263 Europe/Berlin 2006-01-17
-2945151 Braschwitz Braschwitz Braschwitz 51.51667 12.06667 P PPL DE 14 1251 100 Europe/Berlin 2012-01-18
-2945165 Brannenburg Brannenburg 47.73996 12.09166 P PPLA4 DE 02 091 09187 09187120 5646 507 Europe/Berlin 2011-07-31
-2945209 Brandshagen Brandshagen 54.23945 13.16917 P PPL DE 12 1315 21 Europe/Berlin 2009-01-25
-2945215 Brandscheid Brandscheid 50.56667 7.91667 P PPLA4 DE 08 00 07143 07143213 519 437 Europe/Berlin 2011-04-25
-2945216 Brandscheid Brandscheid 50.21667 6.31667 P PPLA4 DE 08 00 07232 07232207 346 513 Europe/Berlin 2011-04-25
-2945270 Brandis Brandis 51.33597 12.61024 P PPL DE 13 9728 149 Europe/Berlin 2011-06-16
-2945285 Brandhorst Brandhorst Brandhorst 51.81667 12.41667 P PPLA4 DE 14 00 15091 15091035 108 60 Europe/Berlin 2011-04-25
-2945341 Brand-Erbisdorf Brand-Erbisdorf Brand-Erbisdorf,Erbisdorf 50.86667 13.33333 P PPL DE 13 11284 500 Europe/Berlin 2012-01-18
-2945358 Brandenburg an der Havel Brandenburg an der Havel Brandebourg-sur-la-Havel,Brandeburgas,Brandeburgo,Brandeburgo sull'Havel,Brandenburg,Brandenburg un der Havel,Brandenburgas,Brannenborg an de Havel,brandenburgi,Бранденбург,ברנדנבורג על נהר האבל,ბრანდენბურგი,ブランデンブルク・アン・デア・ハーフェル 52.41667 12.55 P PPL DE 11 59826 57 Europe/Berlin 2010-07-16
-2945382 Brande-Hörnerkirchen Brande-Hornerkirchen Brande-Hornerkirchen,Brande-Hörnerkirchen 53.85 9.71667 P PPLA4 DE 10 00 01056 01056010 1606 7 Europe/Berlin 2011-04-25
-2945429 Brand Brand 49.95972 11.91072 P PPLA4 DE 02 093 09377 09377113 1206 590 Europe/Berlin 2011-07-31
-2945465 Bramstedtlund Bramstedtlund Bramstedtlund 54.85 9.06667 P PPLA4 DE 10 00 01054 01054018 258 11 Europe/Berlin 2011-04-25
-2945469 Bramstedt Bramstedt 53.36667 8.7 P PPLA4 DE 06 00 03352 03352007 1857 11 Europe/Berlin 2011-07-31
-2945474 Bramsche Bramsche Bramsche,Bramshe,Брамше 52.4 7.98333 P PPL DE 06 31394 49 Europe/Berlin 2012-01-18
-2945487 Brammer Brammer 54.2 9.76667 P PPLA4 DE 10 00 01058 01058027 452 22 Europe/Berlin 2011-04-25
-2945542 Brakel Brakel Brakal,Brakel 51.71667 9.18333 P PPL DE 07 17808 143 Europe/Berlin 2012-01-18
-2945545 Brake (Unterweser) Brake (Unterweser) Brake 53.33333 8.48333 P PPL DE 06 16150 0 Europe/Berlin 2010-03-03
-2945561 Brahmenau Brahmenau Brahmenau 50.91667 12.16667 P PPLA4 DE 15 00 16076 16076008 1070 259 Europe/Berlin 2011-04-25
-2945566 Brahlstorf Brahlstorf 53.36438 10.95165 P PPLA4 DE 12 00 13054 13054014 0 14 Europe/Berlin 2011-07-31
-2945581 Braderup Braderup Braderup,Braeaederep,Braeaegerep,Brääderep,Brääđerep 54.8354 8.89043 P PPLA4 DE 10 00 01054 01054017 654 8 Europe/Berlin 2011-04-25
-2945591 Brackenheim Brackenheim Brackenheim 49.07972 9.065 P PPL DE 01 15083 201 Europe/Berlin 2012-01-18
-2945600 Brackel Brackel 53.3 10.03333 P PPLA4 DE 06 00 03353 03353004 1653 43 Europe/Berlin 2011-04-25
-2945606 Brachwitz Brachwitz 51.53333 11.86667 P PPLA4 DE 14 00 15088 15088055 991 71 Europe/Berlin 2011-04-25
-2945615 Brachtendorf Brachtendorf 50.23333 7.23333 P PPLA4 DE 08 00 07135 07135011 271 309 Europe/Berlin 2011-04-25
-2945647 Brachbach Brachbach Brachbach,Brachback 50.81667 7.93333 P PPLA4 DE 08 00 07132 07132012 2458 224 Europe/Berlin 2011-04-25
-2945668 Braak Braak 53.61667 10.25 P PPLA4 DE 10 00 01062 01062011 755 49 Europe/Berlin 2011-04-25
-2945683 Böxlund Boxlund Boxlund,Böxlund 54.85 9.18333 P PPLA4 DE 10 00 01059 01059105 0 22 Europe/Berlin 2011-04-25
-2945698 Boxberg Boxberg Boxberg 51.4 14.56667 P PPL DE 13 3093 128 Europe/Berlin 2012-01-18
-2945702 Boxberg Boxberg 50.26667 6.88333 P PPLA4 DE 08 00 07233 07233010 190 490 Europe/Berlin 2011-04-25
-2945703 Boxberg Boxberg Boxberg,Boxberg Stadt 49.48139 9.64028 P PPL DE 01 7209 256 Europe/Berlin 2012-02-28
-2945726 Bovenden Bovenden Bovenden 51.58333 9.93333 P PPL DE 06 13964 181 Europe/Berlin 2012-01-18
-2945729 Bovenau Bovenau 54.33333 9.83333 P PPLA4 DE 10 00 01058 01058026 1025 19 Europe/Berlin 2011-04-25
-2945730 Bous Bous Bous,Buss,Buß 49.28333 6.8 P PPLA4 DE 09 00 10044 10044122 7605 198 Europe/Berlin 2011-07-31
-2945740 Bötzingen Botzingen 48.07642 7.72485 P PPLA4 DE 01 083 08315 08315013 5239 192 Europe/Berlin 2011-07-31
-2945756 Bottrop Bottrop Botrop,Bottrop,botoroppu,Ботроп,ボトロップ 51.51667 6.91667 P PPL DE 07 119909 80 Europe/Berlin 2012-01-18
-2945762 Böttingen Bottingen 48.1 8.8 P PPLA4 DE 01 083 08327 08327006 1525 942 Europe/Berlin 2011-04-25
-2945787 Bottenbach Bottenbach 49.18333 7.5 P PPLA4 DE 08 00 07340 07340205 746 368 Europe/Berlin 2011-04-25
-2945797 Bothkamp Bothkamp Bothkamp 54.2 10.13333 P PPLA4 DE 10 00 01057 01057011 313 38 Europe/Berlin 2011-04-25
-2945800 Bothenheilingen Bothenheilingen 51.18333 10.61667 P PPLA4 DE 15 00 16064 16064008 494 234 Europe/Berlin 2011-04-25
-2945802 Bothel Bothel 53.06667 9.5 P PPLA4 DE 06 00 03357 03357006 2455 29 Europe/Berlin 2011-04-25
-2945807 Bötersen Botersen 53.13333 9.31667 P PPLA4 DE 06 00 03357 03357005 1055 33 Europe/Berlin 2011-04-25
-2945857 Bösleben-Wüllersleben Bosleben-Wullersleben Bosleben-Wullersleben,Bösleben-Wüllersleben 50.83333 11.06667 P PPLA4 DE 15 00 16070 16070006 683 354 Europe/Berlin 2011-04-25
-2945866 Bösingen Bosingen 48.23333 8.55 P PPLA4 DE 01 083 08325 08325009 3501 658 Europe/Berlin 2011-04-25
-2945891 Bösenbrunn Bosenbrunn 50.39703 12.09998 P PPLA4 DE 13 145 14523 14523060 1460 430 Europe/Berlin 2011-04-25
-2945902 Bosenbach Bosenbach 49.53333 7.53333 P PPLA4 DE 08 00 07336 07336009 846 301 Europe/Berlin 2011-04-25
-2945907 Bösel Bosel Boesel,Bosel,Bösel 53 7.95 P PPLA4 DE 06 00 03453 03453002 7511 18 Europe/Berlin 2011-04-25
-2945911 Bösdorf Bosdorf 54.15 10.48333 P PPLA4 DE 10 00 01057 01057009 1629 28 Europe/Berlin 2011-04-25
-2945942 Bosbüll Bosbull Bosbull,Bosbüll 54.81667 8.86667 P PPLA4 DE 10 00 01054 01054016 211 255 Europe/Berlin 2011-04-25
-2945945 Bosau Bosau Bosau 54.11667 10.43333 P PPLA4 DE 10 00 01055 01055007 3611 21 Europe/Berlin 2011-07-31
-2945948 Börzow Borzow 53.85 11.11667 P PPLA4 DE 12 00 13058 13058015 778 8 Europe/Berlin 2011-04-25
-2945952 Borxleben Borxleben Borxleben 51.4 11.23333 P PPLA4 DE 15 00 16065 16065008 362 139 Europe/Berlin 2011-04-25
-2945957 Börtlingen Bortlingen 48.75376 9.63181 P PPLA4 DE 01 081 08117 08117011 1816 450 Europe/Berlin 2011-04-25
-2945973 Borstorf Borstorf Borstorf 53.61667 10.56667 P PPLA4 DE 10 00 01053 01053013 292 46 Europe/Berlin 2011-04-25
-2945980 Borstendorf Borstendorf 50.78333 13.16667 P PPLA4 DE 13 145 14521 14521100 1363 430 Europe/Berlin 2011-04-25
-2945982 Borstel-Hohenraden Borstel-Hohenraden Borstel,Borstel-Hohenraden 53.68333 9.81667 P PPLA4 DE 10 00 01056 01056009 2064 5 Europe/Berlin 2011-04-25
-2945988 Borstel Borstel 53.9675 9.79963 P PPLA4 DE 10 00 01060 01060013 0 15 Europe/Berlin 2011-08-24
-2945995 Borstel Borstel 52.67034 8.96896 P PPLA4 DE 06 00 03251 03251008 1427 45 Europe/Berlin 2011-07-31
-2946007 Börßum Borssum 52.06667 10.58333 P PPLA4 DE 06 00 03158 03158003 2291 83 Europe/Berlin 2011-04-25
-2946008 Börslingen Borslingen 48.53891 10.06313 P PPLA4 DE 01 084 08425 08425022 180 566 Europe/Berlin 2011-04-25
-2946015 Borsfleth Borsfleth Borsfleth 53.83333 9.43333 P PPLA4 DE 10 00 01061 01061015 842 255 Europe/Berlin 2011-04-25
-2946016 Borsdorf Borsdorf 51.35 12.53333 P PPLA4 DE 13 147 14729 14729060 8489 125 Europe/Berlin 2011-07-31
-2946025 Börsborn Borsborn 49.43333 7.4 P PPLA4 DE 08 00 07336 07336008 388 299 Europe/Berlin 2011-04-25
-2946031 Börrstadt Borrstadt 49.58333 7.95 P PPLA4 DE 08 00 07333 07333009 964 242 Europe/Berlin 2011-04-25
-2946034 Borrentin Borrentin 53.81667 12.96667 P PPLA4 DE 12 00 13052 13052093 1089 39 Europe/Berlin 2011-04-25
-2946038 Borod Borod 50.66667 7.7 P PPLA4 DE 08 00 07143 07143212 591 304 Europe/Berlin 2011-04-25
-2946056 Bornstedt Bornstedt 51.48333 11.48333 P PPLA4 DE 14 00 15087 15087075 992 196 Europe/Berlin 2011-04-25
-2946060 Börnsen Bornsen 53.48333 10.28333 P PPLA4 DE 10 00 01053 01053012 3810 51 Europe/Berlin 2011-04-25
-2946097 Börnichen Bornichen Bornichen,Börnichen 50.75 13.13333 P PPL DE 13 1116 546 Europe/Berlin 2012-02-02
-2946098 Bornich Bornich 50.13333 7.76667 P PPLA4 DE 08 00 07141 07141016 1093 254 Europe/Berlin 2011-04-25
-2946100 Bornhöved Bornhoved Bornhoved,Bornhöved 54.06667 10.23333 P PPLA4 DE 10 00 01060 01060012 3537 42 Europe/Berlin 2011-04-25
-2946111 Bornheim Bornheim Bornheim 50.76667 7 P PPL DE 07 48523 56 Europe/Berlin 2012-01-18
-2946112 Bornheim Bornheim 49.78306 8.06028 P PPLA4 DE 08 00 07331 07331012 700 151 Europe/Berlin 2011-04-25
-2946113 Bornheim Bornheim 49.2225 8.16333 P PPLA4 DE 08 00 07337 07337014 1302 141 Europe/Berlin 2011-04-25
-2946117 Bornhagen Bornhagen Bornhagen 51.33333 9.95 P PPLA4 DE 15 00 16061 16061014 350 474 Europe/Berlin 2011-04-25
-2946137 Borne Borne 51.94881 11.55865 P PPLA4 DE 14 00 15089 15089045 1415 91 Europe/Berlin 2011-04-27
-2946172 Borna Borna Borna 51.11667 12.5 P PPL DE 13 18806 139 Europe/Berlin 2012-01-18
-2946176 Born Born Born am Darss,Born am Darß,Born uber Barth,Born über Barth 54.38536 12.53051 P PPL DE 12 1143 3 Europe/Berlin 2009-01-27
-2946192 Börm Borm Borm,Börm 54.4 9.38333 P PPLA4 DE 10 00 01059 01059009 751 1 Europe/Berlin 2011-04-25
-2946198 Borler Borler 50.31667 6.83333 P PPLA4 DE 08 00 07233 07233207 91 482 Europe/Berlin 2011-04-25
-2946203 Borkwalde Borkwalde 52.25 12.83333 P PPLA4 DE 11 00 12069 12069056 1432 67 Europe/Berlin 2011-04-25
-2946206 Borkum Borkum Boarkum,Borkum,bwrqwm,Боркум,בורקום 53.58094 6.69153 P PPL DE 06 5186 3 Europe/Berlin 2010-07-27
-2946210 Borkow Borkow 53.66356 11.94969 P PPLA4 DE 12 00 13060 13060005 548 39 Europe/Berlin 2011-07-31
-2946214 Borkheide Borkheide Bork,Borkheide,Kolonie Bork 52.21667 12.85 P PPLA4 DE 11 00 12069 12069052 1821 69 Europe/Berlin 2011-04-25
-2946228 Borken Borken Borken 51.85 6.86667 P PPL DE 07 40876 49 Europe/Berlin 2012-02-02
-2946230 Borken Borken Borken 51.05 9.28333 P PPL DE 05 13531 194 Europe/Berlin 2012-01-18
-2946238 Borgwedel Borgwedel Borgwedel 54.5 9.66667 P PPLA4 DE 10 00 01059 01059012 717 15 Europe/Berlin 2011-04-25
-2946244 Borgsum Borgsum 54.70062 8.45741 P PPLA4 DE 10 00 01054 01054015 342 3 Europe/Berlin 2011-04-25
-2946247 Borgstedt Borgstedt 54.33333 9.71667 P PPLA4 DE 10 00 01058 01058024 1446 0 Europe/Berlin 2011-04-25
-2946270 Borgholzhausen Borgholzhausen Borgholzhausen 52.1 8.3 P PPL DE 07 8754 131 Europe/Berlin 2012-01-18
-2946281 Borgfelde Borgfelde 53.55475 10.03447 P PPLX DE 04 7099 10 Europe/Berlin 2011-08-20
-2946290 Börger Borger 52.91211 7.53576 P PPLA4 DE 06 00 03454 03454005 2816 40 Europe/Berlin 2011-07-31
-2946291 Borgentreich Borgentreich Borgentreich 51.56917 9.24113 P PPL DE 07 9713 205 Europe/Berlin 2011-08-08
-2946296 Borgdorf-Seedorf Borgdorf-Seedorf Borgdorf-Seedorf 54.16667 9.88333 P PPLA4 DE 10 00 01058 01058023 410 21 Europe/Berlin 2011-04-25
-2946311 Börfink Borfink 49.68333 7.08333 P PPLA4 DE 08 00 07134 07134011 216 497 Europe/Berlin 2011-07-31
-2946316 Boren Boren 54.61667 9.81667 P PPLA4 DE 10 00 01059 01059011 834 18 Europe/Berlin 2011-04-25
-2946321 Bordesholm Bordesholm Bordesholm 54.18333 10.01667 P PPLA4 DE 10 00 01058 01058022 7709 29 Europe/Berlin 2011-07-31
-2946366 Boppard Boppard Boppard,Боппард 50.23085 7.58992 P PPL DE 08 16215 80 Europe/Berlin 2010-06-23
-2946368 Bopfingen Bopfingen Bopfingen 48.85 10.35 P PPL DE 01 12606 566 Europe/Berlin 2012-02-02
-2946373 Boostedt Boostedt Boostedt 54.01667 10.03333 P PPLA4 DE 10 00 01060 01060011 4630 43 Europe/Berlin 2011-07-31
-2946377 Boos Boos 50.31667 7.01667 P PPLA4 DE 08 00 07137 07137014 643 506 Europe/Berlin 2011-04-25
-2946378 Boos Boos 49.8 7.71667 P PPLA4 DE 08 00 07133 07133014 428 204 Europe/Berlin 2011-04-25
-2946379 Boos Boos 48.07521 10.19523 P PPLA4 DE 02 097 09778 09778120 1946 570 Europe/Berlin 2011-05-31
-2946396 Boock Boock Book 53.49131 14.24532 P PPLA4 DE 12 00 13062 13062009 655 19 Europe/Berlin 2011-07-31
-2946409 Bonstetten Bonstetten 48.44002 10.70532 P PPLA4 DE 02 097 09772 09772126 1225 508 Europe/Berlin 2011-04-25
-2946421 Bönningstedt Bonningstedt Bonningstedt,Bönningstedt 53.66667 9.91667 P PPLA4 DE 10 00 01056 01056005 3903 13 Europe/Berlin 2011-07-31
-2946428 Bönnigheim Bonnigheim Bonnigheim,Bönnigheim 49.04056 9.09278 P PPL DE 01 7477 225 Europe/Berlin 2012-01-18
-2946445 Bonndorf im Schwarzwald Bonndorf im Schwarzwald Bonndorf,Bonndorf im Schwarzwald 47.81667 8.35 P PPL DE 01 6875 895 Europe/Berlin 2012-01-18
-2946447 Bonn Bonn Bon,Bona,Boni,Bonn,Bonna,Gorad Bon,Vonni,bn,bo en,bon,bona,boni,bwn,bxnn,Βόννη,Бон,Бонн,Горад Бон,באן,בון,بن,بون,बॉन,บอนน์,བྷོ་ཨིན།,ბონი,ボン,波恩,본 50.73333 7.1 P PPL DE 07 313125 67 Europe/Berlin 2012-01-18
-2946469 Bongard Bongard 50.3 6.83333 P PPLA4 DE 08 00 07233 07233206 273 473 Europe/Berlin 2011-04-25
-2946478 Bönen Bonen Bonen,Bönen 51.6 7.76667 P PPLA4 DE 07 059 05978 05978008 19393 73 Europe/Berlin 2011-07-31
-2946481 Bonefeld Bonefeld 50.53333 7.5 P PPLA4 DE 08 00 07138 07138005 1052 393 Europe/Berlin 2011-04-25
-2946482 Bönebüttel Bonebuttel Bonebuttel,Bönebüttel 54.08333 10.06667 P PPLA4 DE 10 00 01057 01057008 2049 26 Europe/Berlin 2011-04-25
-2946485 Bondorf Bondorf 48.52064 8.83704 P PPLA4 DE 01 081 08115 08115004 5730 464 Europe/Berlin 2011-04-25
-2946488 Bondelum Bondelum Bondelum 54.56667 9.26667 P PPLA4 DE 10 00 01054 01054013 208 9 Europe/Berlin 2011-04-25
-2946507 Boms Boms 47.96667 9.51667 P PPLA4 DE 01 084 08436 08436019 597 615 Europe/Berlin 2011-04-25
-2946524 Bomlitz Bomlitz 52.9 9.65 P PPLA4 DE 06 00 03358 03358004 7287 68 Europe/Berlin 2011-07-31
-2946583 Bolsterlang Bolsterlang 47.46667 10.23333 P PPLA4 DE 02 097 09780 09780116 1048 881 Europe/Berlin 2011-04-25
-2946591 Bölsberg Bolsberg 50.66667 7.91667 P PPLA4 DE 08 00 07143 07143211 300 492 Europe/Berlin 2011-04-25
-2946599 Bollschweil Bollschweil 47.92143 7.78986 P PPLA4 DE 01 083 08315 08315014 2247 327 Europe/Berlin 2011-04-25
-2946610 Bollingstedt Bollingstedt Bolingsted,Bollingstedt 54.6 9.41667 P PPLA4 DE 10 00 01059 01059010 1445 17 Europe/Berlin 2011-04-25
-2946630 Bollewick Bollewick 53.35383 12.57729 P PPLA4 DE 12 00 13056 13056007 429 73 Europe/Berlin 2011-04-25
-2946657 Bollendorf Bollendorf Bollendorf,Bottendorf 49.85 6.36667 P PPLA4 DE 08 00 07232 07232019 1552 174 Europe/Berlin 2011-04-25
-2946660 Böllenborn Bollenborn 49.1 7.93333 P PPLA4 DE 08 00 07337 07337013 296 303 Europe/Berlin 2011-04-25
-2946674 Bollenbach Bollenbach 49.83333 7.35 P PPLA4 DE 08 00 07134 07134012 155 448 Europe/Berlin 2011-04-25
-2946679 Böllen Bollen 47.8 7.8413 P PPLA4 DE 01 083 08336 08336010 93 720 Europe/Berlin 2011-04-25
-2946686 Bollberg Bollberg Bollberg 50.88333 11.8 P PPLA4 DE 15 00 16074 16074006 300 307 Europe/Berlin 2011-04-25
-2946696 Boll Boll 48.64357 9.61295 P PPLA4 DE 01 081 08117 08117012 5296 416 Europe/Berlin 2011-04-25
-2946713 Bolheim Bolheim Bola 48.63141 10.14995 P PPL DE 01 081 3180 483 Europe/Berlin 2010-11-15
-2946727 Boldekow Boldekow 53.73333 13.6 P PPLA4 DE 12 00 13059 13059009 648 33 Europe/Berlin 2011-04-25
-2946733 Bolanden Bolanden Bolanden,Boulanden 49.63917 8.01194 P PPLA4 DE 08 00 07333 07333010 2412 224 Europe/Berlin 2011-04-25
-2946740 Boksee Boksee Boksee 54.23333 10.13333 P PPLA4 DE 10 00 01057 01057010 466 46 Europe/Berlin 2011-04-25
-2946745 Böklund Boklund Boklund,Böklund 54.6 9.58333 P PPLA4 DE 10 00 01059 01059008 0 37 Europe/Berlin 2011-04-25
-2946752 Bokhorst Bokhorst 54.06667 9.4 P PPLA4 DE 10 00 01061 01061014 0 33 Europe/Berlin 2011-04-25
-2946753 Bokholt-Hanredder Bokholt-Hanredder Bokholt-Hanredder 53.78808 9.73586 P PPLA4 DE 10 00 01056 01056008 1188 13 Europe/Berlin 2011-08-24
-2946765 Bokensdorf Bokensdorf 52.5 10.71667 P PPLA4 DE 06 00 03151 03151004 957 76 Europe/Berlin 2011-04-25
-2946782 Bokelrehm Bokelrehm Bokelrehm 54.03815 9.38606 P PPLA4 DE 10 00 01061 01061013 151 17 Europe/Berlin 2011-04-25
-2946798 Bokel Bokel 54.21399 9.7953 P PPLA4 DE 10 00 01058 01058021 675 16 Europe/Berlin 2011-04-25
-2946799 Bokel Bokel 53.86667 9.73333 P PPLA4 DE 10 00 01056 01056006 670 8 Europe/Berlin 2011-04-25
-2946801 Bokel Bokel 53.39326 8.76803 P PPLA4 DE 06 00 03352 03352006 2680 13 Europe/Berlin 2011-07-31
-2946821 Boizenburg Boizenburg Boizenberg,Boizenburg 53.38333 10.71667 P PPL DE 12 10783 34 Europe/Berlin 2012-01-18
-2946830 Boitze Boitze 53.15 10.75 P PPLA4 DE 06 00 03355 03355010 410 52 Europe/Berlin 2011-04-25
-2946852 Boiensdorf Boiensdorf 54.01715 11.56105 P PPLA4 DE 12 00 13058 13058012 515 19 Europe/Berlin 2011-04-25
-2946891 Böhnhusen Bohnhusen Bohnhusen,Böhnhusen 54.21667 10.06667 P PPLA4 DE 10 00 01058 01058019 352 36 Europe/Berlin 2011-04-25
-2946923 Bohmte Bohmte Bohmte 52.36667 8.31667 P PPLA4 DE 06 00 03459 03459013 13153 66 Europe/Berlin 2011-07-31
-2946926 Bohmstedt Bohmstedt Bohmstedt 54.58333 9.05 P PPLA4 DE 10 00 01054 01054012 791 12 Europe/Berlin 2011-04-25
-2946939 Böhmfeld Bohmfeld 48.86667 11.36667 P PPLA4 DE 02 091 09176 09176116 0 458 Europe/Berlin 2011-04-25
-2946950 Böhmenkirch Bohmenkirch Bohmenkirch,Böhmenkirch 48.68333 9.93333 P PPLA4 DE 01 081 08117 08117010 5774 693 Europe/Berlin 2011-04-25
-2946952 Böhme Bohme 52.78333 9.46667 P PPLA4 DE 06 00 03358 03358003 949 17 Europe/Berlin 2011-04-25
-2946980 Böhlen Bohlen Boehlen,Bohlen,Böhlen 51.2 12.38333 P PPL DE 13 6982 137 Europe/Berlin 2012-01-18
-2946982 Böhlen Bohlen Bohlen,Böhlen 50.6 11.05 P PPLA4 DE 15 00 16070 16070005 721 633 Europe/Berlin 2011-04-25
-2947001 Böhen Bohen 47.88333 10.3 P PPLA4 DE 02 097 09778 09778119 681 768 Europe/Berlin 2011-04-25
-2947026 Bogen Bogen 48.91122 12.68955 P PPL DE 02 10259 320 Europe/Berlin 2009-10-04
-2947030 Bogel Bogel 50.18943 7.79978 P PPLA4 DE 08 00 07141 07141015 792 345 Europe/Berlin 2011-12-29
-2947038 Boffzen Boffzen 51.75 9.38333 P PPLA4 DE 06 00 03255 03255004 2941 89 Europe/Berlin 2011-04-25
-2947051 Böel Boel Boel,Böel 54.65 9.71667 P PPLA4 DE 10 00 01059 01059006 772 25 Europe/Berlin 2011-04-25
-2947067 Bodolz Bodolz 47.56667 9.66667 P PPLA4 DE 02 097 09776 09776111 3086 423 Europe/Berlin 2011-04-25
-2947069 Bodnegg Bodnegg Bodnegg 47.71667 9.68333 P PPLA4 DE 01 084 08436 08436018 3136 597 Europe/Berlin 2011-04-25
-2947090 Bodenwöhr Bodenwohr 49.26667 12.31667 P PPLA4 DE 02 093 09376 09376116 4025 405 Europe/Berlin 2011-04-25
-2947092 Bodenwerder Bodenwerder 51.97156 9.51931 P PPL DE 06 00 6187 95 Europe/Berlin 2010-11-22
-2947100 Bodenteich Bodenteich Bad Bodenteich,Bodenteich [< a. 1998],Bonndiek 52.83077 10.6818 P PPLA4 DE 06 00 03360 03360005 0 66 Europe/Berlin 2011-03-25
-2947110 Bodensee Bodensee 51.6 10.13333 P PPLA4 DE 06 00 03152 03152003 798 184 Europe/Berlin 2011-04-25
-2947120 Bodenmais Bodenmais Bodenmais 49.06667 13.1 P PPL DE 02 3362 690 Europe/Berlin 2012-01-18
-2947125 Bodenkirchen Bodenkirchen Bodenkirchen 48.38333 12.38333 P PPLA4 DE 02 092 09274 09274120 5442 480 Europe/Berlin 2011-04-25
-2947133 Bodenheim Bodenheim 49.93528 8.32 P PPLA4 DE 08 00 07339 07339006 6907 86 Europe/Berlin 2011-07-31
-2947139 Bodenfelde Bodenfelde Bodenfelde 51.63333 9.56667 P PPL DE 06 3588 123 Europe/Berlin 2012-01-18
-2947155 Bodenbach Bodenbach 50.31667 6.85 P PPLA4 DE 08 00 07233 07233205 244 457 Europe/Berlin 2011-04-25
-2947161 Boden Boden 50.46667 7.85 P PPLA4 DE 08 00 07143 07143005 575 279 Europe/Berlin 2011-07-31
-2947168 Bodelwitz Bodelwitz Bodelwitz 50.68333 11.61667 P PPLA4 DE 15 00 16075 16075006 625 293 Europe/Berlin 2011-04-25
-2947172 Bodelshausen Bodelshausen 48.38886 8.97703 P PPLA4 DE 01 084 08416 08416006 5929 495 Europe/Berlin 2011-04-25
-2947185 Boddin Boddin 53.9374 12.64681 P PPLA4 DE 12 00 13053 13053008 386 29 Europe/Berlin 2011-04-25
-2947226 Bockstadt Bockstadt Bockstadt 50.4 10.88333 P PPLA4 DE 15 00 16069 16069005 308 489 Europe/Berlin 2011-07-31
-2947299 Bockhorst Bockhorst 53.03296 7.57576 P PPLA4 DE 06 00 03454 03454004 1037 6 Europe/Berlin 2011-04-25
-2947312 Bockhorn Bockhorn Bockhorn 53.4 8.01667 P PPLA4 DE 06 00 03455 03455025 8924 5 Europe/Berlin 2011-07-31
-2947316 Bockhorn Bockhorn 48.31471 11.98694 P PPLA4 DE 02 091 09177 09177113 3425 461 Europe/Berlin 2011-04-25
-2947355 Bockenheim Bockenheim Bockenheim,Bockenheim an der Weinstrasse,Bockenheim an der Weinstraße 49.60639 8.18194 P PPL DE 08 2251 164 Europe/Berlin 2012-01-18
-2947359 Bockenem Bockenem Bokeln,Bukeneim [a. 1132] 52.00993 10.13197 P PPLA4 DE 06 00 03254 03254008 11177 122 Europe/Berlin 2011-03-24
-2947370 Bockenau Bockenau 49.83333 7.68333 P PPLA4 DE 08 00 07133 07133013 1209 238 Europe/Berlin 2011-04-25
-2947372 Bockelwitz Bockelwitz 51.2 12.96667 P PPLA4 DE 13 145 14522 14522040 2794 239 Europe/Berlin 2011-04-25
-2947380 Bockelnhagen Bockelnhagen Bockelnhagen 51.56667 10.41667 P PPLA4 DE 15 00 16061 16061011 460 277 Europe/Berlin 2011-04-25
-2947403 Bockau Bockau Bockau 50.55 12.7 P PPLA4 DE 13 145 14521 14521080 2599 618 Europe/Berlin 2011-04-25
-2947416 Bochum Bochum Baukem,Bochum,Bohuma,Bokhem,Bokhum,Bōkhêm,bo hong,bofumu,bwkhwm,bwkwm,Бохум,בוכום,بوخوم,ボーフム,波鸿 51.48333 7.21667 P PPL DE 07 385729 94 Europe/Berlin 2012-01-18
-2947421 Bocholt Bocholt Bocholt,Bokelt,Bokholt,Bōkholt 51.83333 6.6 P PPL DE 07 73943 23 Europe/Berlin 2012-01-18
-2947424 Böchingen Bochingen 49.23694 8.09333 P PPLA4 DE 08 00 07337 07337012 771 203 Europe/Berlin 2011-04-25
-2947431 Bobzin Bobzin 53.47899 11.14706 P PPLA4 DE 12 00 13054 13054011 0 52 Europe/Berlin 2011-08-28
-2947438 Böbrach Bobrach 49.06667 13.03333 P PPLA4 DE 02 092 09276 09276118 0 774 Europe/Berlin 2011-04-25
-2947439 Böbrach Bobrach 48.93333 12.88333 P PPL DE 02 1622 464 Europe/Berlin 2006-01-17
-2947444 Böblingen Boblingen B'oblingen,Boblingen,Boeblingen,Böblingen,Бьоблинген 48.68333 9.01667 P PPL DE 01 46282 446 Europe/Berlin 2012-01-18
-2947447 Bobitz Bobitz 53.8 11.35 P PPLA4 DE 12 00 13058 13058114 1274 53 Europe/Berlin 2011-04-25
-2947448 Böbingen Bobingen 49.28444 8.23667 P PPLA4 DE 08 00 07337 07337011 669 120 Europe/Berlin 2011-04-25
-2947449 Bobingen Bobingen Bobingen 48.26667 10.83333 P PPL DE 02 16682 523 Europe/Berlin 2012-01-18
-2947450 Böbing Bobing 47.75 10.98333 P PPLA4 DE 02 091 09190 09190117 1694 750 Europe/Berlin 2011-04-25
-2947463 Bobenthal Bobenthal 49.06667 7.86667 P PPLA4 DE 08 00 07340 07340001 330 311 Europe/Berlin 2011-04-25
-2947465 Bobenheim-Roxheim Bobenheim-Roxheim Bobenheim,Bobenheim am Rhein,Bobenheim-Roxheim 49.5875 8.35778 P PPLA4 DE 08 00 07338 07338004 10106 95 Europe/Berlin 2011-04-25
-2947466 Bobenheim am Berg Bobenheim am Berg Bobenheim,Bobenheim am Berg 49.52417 8.15111 P PPLA4 DE 08 00 07332 07332005 848 210 Europe/Berlin 2011-04-25
-2947471 Bobeck Bobeck 50.9 11.8 P PPLA4 DE 15 00 16074 16074005 331 340 Europe/Berlin 2011-04-25
-2947477 Bobbau Bobbau Bobbau 51.68333 12.26667 P PPL DE 14 1697 92 Europe/Berlin 2012-01-18
-2947490 Blunk Blunk Blunk 54.01667 10.31667 P PPLA4 DE 10 00 01060 01060010 598 48 Europe/Berlin 2011-04-25
-2947513 Blumenthal Blumenthal 54.23333 10 P PPLA4 DE 10 00 01058 01058018 671 56 Europe/Berlin 2011-04-25
-2947541 Blumenholz Blumenholz 53.41667 13.11667 P PPLA4 DE 12 00 13055 13055005 855 68 Europe/Berlin 2011-04-25
-2947552 Blumenhagen Blumenhagen 53.53333 13.88333 P PPLA4 DE 12 00 13062 13062008 378 43 Europe/Berlin 2011-04-25
-2947584 Blumberg Blumberg 47.84058 8.53329 P PPL DE 01 10500 699 Europe/Berlin 2008-08-15
-2947604 Blowatz Blowatz 53.98333 11.53333 P PPLA4 DE 12 00 13058 13058010 1233 11 Europe/Berlin 2011-04-25
-2947636 Blomesche Wildnis Blomesche Wildnis Blomesche Wildnis 53.8 9.41667 P PPLA4 DE 10 00 01061 01061012 700 0 Europe/Berlin 2011-04-25
-2947641 Blomberg Blomberg 51.94331 9.09067 P PPL DE 07 057 17183 184 Europe/Berlin 2010-11-15
-2947646 Blomberg Blomberg 53.56667 7.55 P PPLA4 DE 06 00 03462 03462001 1498 4 Europe/Berlin 2011-07-31
-2947713 Blindheim Blindheim 48.63333 10.63333 P PPLA4 DE 02 097 09773 09773119 1693 413 Europe/Berlin 2011-04-25
-2947733 Blievenstorf Blievenstorf 53.36192 11.66559 P PPLA4 DE 12 00 13054 13054010 509 43 Europe/Berlin 2011-04-25
-2947735 Bliestorf Bliestorf Bliestorf 53.76667 10.6 P PPLA4 DE 10 00 01053 01053011 699 18 Europe/Berlin 2011-04-25
-2947739 Blieskastel Blieskastel 49.23724 7.25617 P PPL DE 09 00 23212 242 Europe/Berlin 2010-11-22
-2947751 Bliesdorf Bliesdorf 52.69298 14.15949 P PPLA4 DE 11 00 12064 12064061 1213 6 Europe/Berlin 2011-07-31
-2947769 Bliedersdorf Bliedersdorf 53.48333 9.56667 P PPLA4 DE 06 00 03359 03359007 1689 23 Europe/Berlin 2011-04-25
-2947802 Blesewitz Blesewitz 53.82416 13.61515 P PPLA4 DE 12 00 13059 13059008 279 10 Europe/Berlin 2011-04-25
-2947810 Blender Blender 52.91667 9.13333 P PPLA4 DE 06 00 03361 03361002 2954 11 Europe/Berlin 2011-07-31
-2947813 Blekendorf Blekendorf 54.28211 10.6582 P PPLA4 DE 10 00 01057 01057007 1859 16 Europe/Berlin 2011-04-25
-2947837 Bleicherode Bleicherode 51.44026 10.57202 P PPL DE 15 6456 270 Europe/Berlin 2009-03-15
-2947874 Bleialf Bleialf 50.23333 6.28333 P PPLA4 DE 08 00 07232 07232206 1179 450 Europe/Berlin 2011-04-25
-2947887 Bleckhausen Bleckhausen 50.13333 6.78333 P PPLA4 DE 08 00 07233 07233008 331 458 Europe/Berlin 2011-04-25
-2947894 Bleckede Bleckede Bleckede 53.3 10.73333 P PPL DE 06 9793 7 Europe/Berlin 2012-01-18
-2947919 Blaufelden Blaufelden Blaufelden 49.29778 9.97389 P PPLA4 DE 01 081 08127 08127008 5348 462 Europe/Berlin 2011-04-25
-2947949 Blaubeuren Blaubeuren 48.41215 9.78427 P PPL DE 01 11797 520 Europe/Berlin 2008-12-24
-2947958 Blaubach Blaubach 49.56667 7.4 P PPLA4 DE 08 00 07336 07336006 463 343 Europe/Berlin 2011-04-25
-2948033 Blankenstein Blankenstein 50.4 11.7 P PPLA4 DE 15 00 16075 16075004 0 435 Europe/Berlin 2011-04-25
-2948037 Blankensee Blankensee 53.51245 14.30626 P PPLA4 DE 12 00 13062 13062007 299 21 Europe/Berlin 2011-07-31
-2948038 Blankensee Blankensee 53.41667 13.26667 P PPLA4 DE 12 00 13055 13055004 1720 60 Europe/Berlin 2011-04-25
-2948046 Blankenrath Blankenrath Blankenrath 50.03333 7.31667 P PPLA4 DE 08 00 07135 07135010 1812 434 Europe/Berlin 2011-04-25
-2948052 Blankenhof Blankenhof 53.58333 13.13333 P PPLA4 DE 12 00 13055 13055003 748 82 Europe/Berlin 2011-04-25
-2948054 Blankenheim Blankenheim 51.51667 11.41667 P PPLA4 DE 14 00 15087 15087070 1436 318 Europe/Berlin 2011-04-25
-2948056 Blankenheim Blankenheim Blankenheim 50.43333 6.65 P PPLA4 DE 07 053 05366 05366008 8770 518 Europe/Berlin 2011-04-25
-2948058 Blankenhain Blankenhain 50.85993 11.3439 P PPL DE 15 6920 356 Europe/Berlin 2010-09-22
-2948061 Blankenhagen Blankenhagen 54.16796 12.34391 P PPLA4 DE 12 00 13051 13051011 898 34 Europe/Berlin 2011-04-25
-2948071 Blankenburg Blankenburg 51.78333 10.95 P PPL DE 14 15963 350 Europe/Berlin 2006-01-17
-2948072 Blankenburg Blankenburg 51.2 10.75 P PPLA4 DE 15 00 16064 16064007 172 272 Europe/Berlin 2011-04-25
-2948079 Blankenberg Blankenberg 53.76667 11.71667 P PPLA4 DE 12 00 13060 13060004 465 14 Europe/Berlin 2011-04-25
-2948081 Blankenberg Blankenberg Blankenberg 50.4 11.71667 P PPLA4 DE 15 00 16075 16075003 0 452 Europe/Berlin 2011-04-25
-2948114 Blaichach Blaichach 47.53333 10.26667 P PPLA4 DE 02 097 09780 09780115 5625 729 Europe/Berlin 2011-04-25
-2948115 Blaibach Blaibach 49.16667 12.81667 P PPLA4 DE 02 093 09372 09372115 2127 420 Europe/Berlin 2011-04-25
-2948140 Bitzen Bitzen 50.8 7.68333 P PPLA4 DE 08 00 07132 07132010 829 257 Europe/Berlin 2011-04-25
-2948147 Bitz Bitz 48.244 9.09144 P PPLA4 DE 01 084 08417 08417010 3792 883 Europe/Berlin 2011-04-25
-2948164 Bitterfeld Bitterfeld Bitterfel'd,Bitterfeld,Bitterfelde,Биттерфельд 51.61667 12.31667 P PPL DE 13 15608 78 Europe/Berlin 2012-01-18
-2948184 Bitburg Bitburg Beibreg,Bitburg,Béibreg 49.96667 6.53333 P PPL DE 08 12908 325 Europe/Berlin 2012-01-18
-2948190 Bisterschied Bisterschied 49.65 7.75 P PPLA4 DE 08 00 07333 07333008 283 319 Europe/Berlin 2011-04-25
-2948202 Bissingen an der Teck Bissingen an der Teck Bissingen 48.59915 9.49146 P PPLA4 DE 01 081 08116 08116012 3687 418 Europe/Berlin 2011-04-25
-2948204 Bissingen Bissingen Bissingen 48.71667 10.61667 P PPL DE 02 3605 440 Europe/Berlin 2012-02-02
-2948206 Bissersheim Bissersheim 49.53583 8.20417 P PPLA4 DE 08 00 07332 07332004 465 141 Europe/Berlin 2011-04-25
-2948212 Bissendorf Bissendorf Bissendorf 52.23333 8.16667 P PPLA4 DE 06 00 03459 03459012 14402 89 Europe/Berlin 2011-04-25
-2948219 Bissee Bissee Bissee 54.18333 10.11667 P PPLA4 DE 10 00 01058 01058016 185 32 Europe/Berlin 2011-04-25
-2948222 Bispingen Bispingen Bispingen 53.08312 9.99772 P PPLA4 DE 06 00 03358 03358002 6284 78 Europe/Berlin 2011-08-30
-2948229 Bismark Bismark Bismark 52.66667 11.56667 P PPL DE 14 3313 50 Europe/Berlin 2012-01-18
-2948246 Bisingen Bisingen 48.31012 8.91738 P PPLA4 DE 01 084 08417 08417008 9321 552 Europe/Berlin 2011-04-25
-2948261 Bischweier Bischweier 48.83766 8.28412 P PPLA4 DE 01 082 08216 08216006 3167 136 Europe/Berlin 2011-04-25
-2948265 Bischofswiesen Bischofswiesen Bischofswiesen 47.65 12.95 P PPLA4 DE 02 091 09172 09172117 7535 782 Europe/Berlin 2011-04-25
-2948267 Bischofswerda Bischofswerda 51.12771 14.17974 P PPL DE 13 146 13085 293 Europe/Berlin 2010-11-15
-2948282 Bischofsmais Bischofsmais 48.91796 13.08184 P PPLA4 DE 02 092 09276 09276116 3240 680 Europe/Berlin 2011-08-22
-2948287 Bischofsheim an der Rhön Bischofsheim an der Rhon Bischofsheim 50.40239 10.00751 P PPL DE 02 096 5181 451 Europe/Berlin 2010-11-15
-2948290 Bischofsheim Bischofsheim Bischofsheim,Gau-Bischofsheim 49.99389 8.36722 P PPLA4 DE 05 064 06433 06433002 12075 86 Europe/Berlin 2011-07-31
-2948292 Bischofsgrün Bischofsgrun 50.05 11.78333 P PPLA4 DE 02 094 09472 09472121 2072 674 Europe/Berlin 2011-04-25
-2948300 Bischofroda Bischofroda 51.05 10.36667 P PPLA4 DE 15 00 16063 16063008 703 255 Europe/Berlin 2011-04-25
-2948301 Bischofrod Bischofrod Bischofrod 50.55 10.65 P PPLA4 DE 15 00 16069 16069004 187 459 Europe/Berlin 2011-04-25
-2948305 Bischofferode Bischofferode Bischofferode (Am Ohmberg) 51.49656 10.44396 P PPLA4 DE 15 00 16061 16061009 2085 295 299 Europe/Berlin 2011-04-25
-2948307 Bischoffen Bischoffen Bischoffen 50.7 8.45 P PPLA4 DE 05 065 06532 06532002 3478 282 Europe/Berlin 2011-04-25
-2948326 Bischheim Bischheim 49.67 8.0325 P PPLA4 DE 08 00 07333 07333007 747 235 Europe/Berlin 2011-04-25
-2948337 Bischbrunn Bischbrunn 49.87028 9.48917 P PPLA4 DE 02 096 09677 09677120 1880 405 Europe/Berlin 2011-04-25
-2948339 Bischberg Bischberg 49.91087 10.83212 P PPLA4 DE 02 094 09471 09471117 5819 241 Europe/Berlin 2011-04-25
-2948345 Birx Birx Birx 50.53333 10.05 P PPLA4 DE 15 00 16066 16066012 187 757 Europe/Berlin 2011-04-25
-2948346 Birtlingen Birtlingen 49.95 6.48333 P PPLA4 DE 08 00 07232 07232017 82 279 Europe/Berlin 2011-04-25
-2948351 Birstein Birstein 50.35 9.3 P PPLA4 DE 05 064 06435 06435004 6581 319 Europe/Berlin 2011-07-31
-2948355 Birresborn Birresborn Birresborn,Birreses Born 50.18333 6.63333 P PPLA4 DE 08 00 07233 07233204 1299 341 Europe/Berlin 2011-04-25
-2948383 Birnbach Birnbach 50.7 7.58333 P PPLA4 DE 08 00 07132 07132009 642 261 Europe/Berlin 2011-04-25
-2948384 Bad Birnbach Bad Birnbach 48.44489 13.09103 P PPL DE 02 5533 376 360 Europe/Berlin 2008-10-22
-2948396 Birlenbach Birlenbach 50.36667 8 P PPLA4 DE 08 00 07141 07141014 1587 108 Europe/Berlin 2011-04-25
-2948399 Birkweiler Birkweiler 49.20333 8.03833 P PPLA4 DE 08 00 07337 07337009 729 201 Europe/Berlin 2011-04-25
-2948477 Birkheim Birkheim 50.11667 7.61667 P PPLA4 DE 08 00 07140 07140016 129 452 Europe/Berlin 2011-04-25
-2948503 Birkenwerder Birkenwerder 52.68333 13.28333 P PPLA4 DE 11 00 12065 12065036 7122 47 Europe/Berlin 2011-04-25
-2948551 Birkenhügel Birkenhugel Birkenhugel,Birkenhügel 50.43333 11.75 P PPLA4 DE 15 00 16075 16075002 0 566 Europe/Berlin 2011-04-25
-2948552 Birkenhördt Birkenhordt 49.11667 7.93333 P PPLA4 DE 08 00 07337 07337008 653 257 Europe/Berlin 2011-04-25
-2948570 Birkenheide Birkenheide 49.48139 8.26194 P PPLA4 DE 08 00 07338 07338003 3309 101 Europe/Berlin 2011-04-25
-2948588 Birkenfelde Birkenfelde Birkenfelde 51.35 10.01667 P PPLA4 DE 15 00 16061 16061007 582 293 Europe/Berlin 2011-04-25
-2948594 Birkenfeld Birkenfeld 49.85861 9.69556 P PPLA4 DE 02 096 09677 09677119 2153 210 Europe/Berlin 2011-04-25
-2948595 Birkenfeld Birkenfeld Birkenfeld,Birkenfell 49.65 7.18333 P PPL DE 08 6947 473 Europe/Berlin 2012-01-18
-2948598 Birkenfeld Birkenfeld 48.86667 8.63333 P PPLA4 DE 01 082 08236 08236004 10609 382 Europe/Berlin 2011-07-31
-2948616 Birkenbeul Birkenbeul 50.73333 7.61667 P PPLA4 DE 08 00 07132 07132007 492 355 Europe/Berlin 2011-04-25
-2948652 Birkenau Birkenau Birkenau 49.5625 8.70694 P PPLA4 DE 05 064 06431 06431004 10318 150 Europe/Berlin 2011-04-25
-2948717 Birgte Birgte Birgithi 52.2479 7.64833 P PPL DE 07 055 2000 48 48 Europe/Berlin 2011-11-06
-2948725 Birgel Birgel 50.31667 6.61667 P PPLA4 DE 08 00 07233 07233007 510 414 Europe/Berlin 2011-04-25
-2948727 Birenbach Birenbach 48.74732 9.66115 P PPLA4 DE 01 081 08117 08117009 1941 367 Europe/Berlin 2011-04-25
-2948733 Bippen Bippen 52.58333 7.73333 P PPLA4 DE 06 00 03459 03459011 3015 61 Europe/Berlin 2011-04-25
-2948746 Binzen Binzen 47.63333 7.61667 P PPLA4 DE 01 083 08336 08336008 2661 282 Europe/Berlin 2011-04-25
-2948750 Binswangen Binswangen 48.55798 10.64249 P PPLA4 DE 02 097 09773 09773116 1326 421 Europe/Berlin 2011-07-31
-2948759 Binsfeld Binsfeld 49.96667 6.71667 P PPLA4 DE 08 00 07231 07231010 1110 323 Europe/Berlin 2011-04-25
-2948782 Binningen Binningen 50.2 7.25 P PPLA4 DE 08 00 07135 07135009 691 285 Europe/Berlin 2011-04-25
-2948810 Binnen Binnen 52.61667 9.13333 P PPLA4 DE 06 00 03256 03256002 1051 60 Europe/Berlin 2011-04-25
-2948825 Bingen am Rhein Bingen am Rhein Bingen,Bingen am Rhein,Bingen na Rejn,Bingen-Am-Rhein,Бинген на Рейн,ビンゲン・アム・ライン 49.96667 7.9 P PPL DE 08 24657 118 Europe/Berlin 2012-01-18
-2948826 Bingen Bingen 48.11127 9.27238 P PPLA4 DE 01 084 08437 08437008 3017 610 Europe/Berlin 2011-04-25
-2948840 Bindlach Bindlach Bindlach 49.98167 11.61389 P PPLA4 DE 02 094 09472 09472119 7229 360 Europe/Berlin 2011-07-31
-2948861 Binau Binau 49.36833 9.05806 P PPLA4 DE 01 082 08225 08225010 1311 169 Europe/Berlin 2011-04-25
-2948866 Bimöhlen Bimohlen Bimohlen,Bimöhlen 53.93333 9.95 P PPLA4 DE 10 00 01060 01060009 967 22 Europe/Berlin 2011-04-25
-2948874 Bilzingsleben Bilzingsleben 51.28333 11.06667 P PPLA4 DE 15 00 16068 16068004 795 147 Europe/Berlin 2011-04-25
-2948895 Bilshausen Bilshausen 51.61667 10.16667 P PPLA4 DE 06 00 03152 03152002 2428 169 Europe/Berlin 2011-04-25
-2948902 Bilsen Bilsen Bilsen 53.76667 9.88333 P PPLA4 DE 10 00 01056 01056004 720 23 Europe/Berlin 2011-04-25
-2948934 Billigheim Billigheim Billigheim 49.34861 9.25389 P PPLA4 DE 01 082 08225 08225009 5899 251 Europe/Berlin 2011-04-25
-2948944 Billerbeck Billerbeck Billerbeck,Billurbeki,Billurbėki 51.96667 7.3 P PPL DE 07 11699 135 Europe/Berlin 2012-01-18
-2948963 Bilkheim Bilkheim 50.5 7.95 P PPLA4 DE 08 00 07143 07143210 472 287 Europe/Berlin 2011-04-25
-2949012 Bietigheim-Bissingen Bietigheim-Bissingen Bietigheim-Bissingen 48.96667 9.13333 P PPL DE 01 41769 246 Europe/Berlin 2012-01-18
-2949014 Bietigheim Bietigheim 48.90919 8.25202 P PPLA4 DE 01 082 08216 08216005 6026 119 Europe/Berlin 2011-04-25
-2949032 Biessenhofen Biessenhofen 47.83333 10.63333 P PPLA4 DE 02 097 09777 09777112 4006 754 Europe/Berlin 2011-04-25
-2949046 Biesenthal Biesenthal 52.76616 13.64416 P PPL DE 11 5512 53 Europe/Berlin 2009-01-29
-2949075 Biesdorf Biesdorf 49.88333 6.3 P PPLA4 DE 08 00 07232 07232016 268 269 Europe/Berlin 2011-04-25
-2949103 Biere Biere Biere 51.97431 11.65443 P PPL DE 14 2442 93 Europe/Berlin 2011-04-27
-2949130 Bienstädt Bienstadt Bienstadt,Bienstädt 51.01667 10.85 P PPLA4 DE 15 00 16067 16067004 766 350 Europe/Berlin 2011-04-25
-2949150 Bienenbüttel Bienenbuttel 53.14157 10.48679 P PPLA4 DE 06 00 03360 03360004 6775 25 Europe/Berlin 2011-04-25
-2949160 Biendorf Biendorf 54.08333 11.7 P PPLA4 DE 12 00 13051 13051010 1051 45 Europe/Berlin 2011-07-31
-2949186 Bielefeld Bielefeld Bielefeld,Bilefel'd,Bilefelde,Bilifeld,Builefeld,Bīlefelde,Bīlifeld,Mpilephelnt,bi lei fei er de,bireferuto,bylyfyld,Μπίλεφελντ,Билефельд,بيليفيلد,ビーレフェルト,比勒费尔德 52.03333 8.53333 P PPLA4 DE 07 057 05711 05711000 331906 111 Europe/Berlin 2011-11-06
-2949216 Biedesheim Biedesheim 49.605 8.10722 P PPLA4 DE 08 00 07333 07333006 649 263 Europe/Berlin 2011-04-25
-2949217 Biedershausen Biedershausen 49.31667 7.48333 P PPLA4 DE 08 00 07340 07340204 283 363 Europe/Berlin 2011-04-25
-2949221 Biederitz Biederitz Biederitz 52.15 11.71667 P PPLA4 DE 14 00 15086 15086005 4545 43 Europe/Berlin 2011-07-31
-2949229 Biedenkopf Biedenkopf Biedenkopf 50.91667 8.53333 P PPL DE 05 13788 415 Europe/Berlin 2012-01-18
-2949236 Biebrich Biebrich 50.31667 7.95 P PPLA4 DE 08 00 07141 07141013 372 165 Europe/Berlin 2011-04-25
-2949240 Biebesheim Biebesheim 49.78361 8.47444 P PPL DE 05 6626 90 Europe/Berlin 2006-01-17
-2949249 Biebern Biebern 49.98333 7.45 P PPLA4 DE 08 00 07140 07140015 343 419 Europe/Berlin 2011-04-25
-2949255 Bieberehren Bieberehren 49.51667 10 P PPLA4 DE 02 096 09679 09679118 1000 259 Europe/Berlin 2011-04-25
-2949275 Biebelsheim Biebelsheim 49.86667 7.93333 P PPLA4 DE 08 00 07133 07133012 576 182 Europe/Berlin 2011-04-25
-2949276 Biebelried Biebelried 49.76667 10.08333 P PPLA4 DE 02 096 09675 09675113 1183 276 Europe/Berlin 2011-04-25
-2949277 Biebelnheim Biebelnheim 49.79667 8.17056 P PPLA4 DE 08 00 07331 07331010 704 153 Europe/Berlin 2011-04-25
-2949279 Bidingen Bidingen 47.83333 10.73333 P PPLA4 DE 02 097 09777 09777118 1738 765 Europe/Berlin 2011-04-25
-2949292 Bickendorf Bickendorf 50.03333 6.5 P PPLA4 DE 08 00 07232 07232014 524 300 Europe/Berlin 2011-04-25
-2949295 Bickenbach Bickenbach Bicherbach,Bickenbach 50.11667 7.53333 P PPLA4 DE 08 00 07140 07140014 341 464 Europe/Berlin 2011-04-25
-2949296 Bickenbach Bickenbach 49.75917 8.6175 P PPLA4 DE 05 064 06432 06432003 5338 124 Europe/Berlin 2011-07-31
-2949324 Bichl Bichl 47.7201 11.41231 P PPLA4 DE 02 091 09173 09173115 2007 625 Europe/Berlin 2011-04-25
-2949353 Biburg Biburg 48.8 11.86667 P PPLA4 DE 02 092 09273 09273119 1297 368 Europe/Berlin 2011-04-25
-2949363 Bibra Bibra 50.80387 11.54706 P PPLA4 DE 15 00 16074 16074004 267 200 Europe/Berlin 2011-04-25
-2949366 Bibow Bibow 53.78333 11.63333 P PPLA4 DE 12 00 13058 13058009 313 29 Europe/Berlin 2011-04-25
-2949367 Biblis Biblis 49.69167 8.45861 P PPLA4 DE 05 064 06431 06431003 8953 91 Europe/Berlin 2011-04-25
-2949415 Biberbach Biberbach Biberbach 48.51667 10.81667 P PPL DE 02 3492 449 Europe/Berlin 2012-02-02
-2949423 Biberach an der Riß Biberach an der Riss Biberach,Biberach an der Riss,Biberach an der Riß,Biberakh-na-Rise,Биберах-на-Рисе 48.09345 9.79053 P PPL DE 01 32333 535 Europe/Berlin 2010-02-09
-2949426 Biberach Biberach 48.6 8.28333 P PPL DE 01 3257 959 Europe/Berlin 2006-01-17
-2949427 Biberach Biberach Biberach 48.33333 8.03333 P PPLA4 DE 01 083 08317 08317011 0 195 Europe/Berlin 2011-04-25
-2949470 Bexbach Bexbach 49.34615 7.25527 P PPL DE 09 00 19115 250 Europe/Berlin 2010-11-22
-2949475 Beverungen Beverungen Beverungen 51.66667 9.36667 P PPL DE 07 15266 132 Europe/Berlin 2012-01-18
-2949482 Beverstedt, Flecken Beverstedt, Flecken 53.43413 8.81915 P PPL DE 06 00 03352 03352005 4423 12 Europe/Berlin 2011-10-13
-2949486 Bevern Bevern 53.75592 9.77088 P PPLA4 DE 10 00 01056 01056003 577 12 Europe/Berlin 2011-08-24
-2949489 Bevern Bevern Bevarnon 51.85826 9.49408 P PPL DE 06 00 4363 100 Europe/Berlin 2011-11-06
-2949511 Bad Bevensen Bad Bevensen Bad Bevensen,Bevensen 53.08333 10.58333 P PPL DE 06 8700 28 Europe/Berlin 2012-01-18
-2949538 Beutelsbach Beutelsbach 48.55 13.11667 P PPLA4 DE 02 092 09275 09275117 1088 357 Europe/Berlin 2011-04-25
-2949551 Beuron Beuron 48.05 8.96667 P PPLA4 DE 01 084 08437 08437005 703 609 Europe/Berlin 2011-04-25
-2949562 Beuren Beuren 50.1 7.08333 P PPLA4 DE 08 00 07135 07135008 0 419 Europe/Berlin 2011-04-25
-2949569 Beuren Beuren 48.56927 9.40406 P PPLA4 DE 01 081 08116 08116011 3492 435 Europe/Berlin 2011-04-25
-2949582 Beuna Beuna Beuna 51.31667 11.95 P PPL DE 14 1032 104 Europe/Berlin 2012-01-18
-2949589 Beulich Beulich 50.18333 7.45 P PPLA4 DE 08 00 07140 07140201 528 284 Europe/Berlin 2011-04-25
-2949646 Betzigau Betzigau 47.73333 10.38333 P PPLA4 DE 02 097 09780 09780114 2848 737 Europe/Berlin 2011-04-25
-2949653 Betzenweiler Betzenweiler 48.11667 9.56667 P PPLA4 DE 01 084 08426 08426020 755 565 Europe/Berlin 2011-04-25
-2949661 Betzendorf Betzendorf 53.1375 10.31273 P PPLA4 DE 06 00 03355 03355008 1141 90 Europe/Berlin 2011-04-25
-2949669 Betzdorf Betzdorf 50.78333 7.88333 P PPL DE 08 10560 233 Europe/Berlin 2006-01-17
-2949697 Bettingen Bettingen Nieder Bettingen 49.94211 6.4016 P PPLA4 DE 08 00 07232 07232013 1013 213 Europe/Berlin 2011-04-25
-2949726 Bettenfeld Bettenfeld Beppenfield,Bettenfeld 50.08333 6.76667 P PPLA4 DE 08 00 07231 07231009 741 443 Europe/Berlin 2011-04-25
-2949729 Bettendorf Bettendorf 50.23333 7.86667 P PPLA4 DE 08 00 07141 07141012 379 329 Europe/Berlin 2011-04-25
-2949750 Betteldorf Betteldorf 50.25 6.75 P PPLA4 DE 08 00 07233 07233006 310 552 Europe/Berlin 2011-04-25
-2949762 Bethenhausen Bethenhausen Bethenhausen 50.93333 12.2 P PPLA4 DE 15 00 16076 16076006 270 292 Europe/Berlin 2011-04-25
-2949765 Betheln Betheln 52.11431 9.79397 P PPLA4 DE 06 00 03254 03254007 1093 105 Europe/Berlin 2011-04-25
-2949767 Bethau Bethau 51.66667 13 P PPLA4 DE 14 00 15091 15091025 199 77 Europe/Berlin 2011-04-25
-2949773 Bestwig Bestwig 51.36667 8.4 P PPLA4 DE 07 059 05958 05958008 11764 346 Europe/Berlin 2011-07-31
-2949777 Bestensee Bestensee Bestensee 52.25 13.65 P PPLA4 DE 11 00 12061 12061020 6265 32 Europe/Berlin 2011-04-25
-2949802 Besitz Besitz 53.34297 10.85913 P PPLA4 DE 12 00 13054 13054009 527 10 Europe/Berlin 2011-07-31
-2949803 Besigheim Besigheim Besigheim 48.98333 9.13333 P PPL DE 01 11883 279 Europe/Berlin 2012-01-18
-2949806 Beseritz Beseritz 53.70169 13.45705 P PPLA4 DE 12 00 13055 13055002 163 32 Europe/Berlin 2011-04-25
-2949808 Besenthal Besenthal Besenthal 53.53333 10.73333 P PPLA4 DE 10 00 01053 01053010 74 29 Europe/Berlin 2011-04-25
-2949823 Besdorf Besdorf Besdorf 54.05007 9.36003 P PPLA4 DE 10 00 01061 01061011 234 11 Europe/Berlin 2011-04-25
-2949827 Beschendorf Beschendorf Beschendorf 54.18333 10.86667 P PPLA4 DE 10 00 01055 01055006 536 20 Europe/Berlin 2011-04-25
-2949829 Bescheid Bescheid 49.75 6.88333 P PPLA4 DE 08 00 07235 07235005 407 393 Europe/Berlin 2011-04-25
-2949836 Berzhausen Berzhausen 50.66667 7.56667 P PPLA4 DE 08 00 07132 07132005 193 206 Europe/Berlin 2011-04-25
-2949837 Berzhahn Berzhahn 50.53333 8 P PPLA4 DE 08 00 07143 07143209 495 432 Europe/Berlin 2011-04-25
-2949855 Berumbur Berumbur 53.6 7.31667 P PPLA4 DE 06 00 03452 03452003 2559 4 Europe/Berlin 2011-07-31
-2949880 Berthelsdorf Berthelsdorf 51.04679 14.22197 P PPL DE 13 146 1813 336 Europe/Berlin 2010-11-15
-2949881 Berthelsdorf Berthelsdorf 51.01667 14.75 P PPLA4 DE 13 146 14626 14626040 0 334 Europe/Berlin 2011-07-31
-2949906 Bersenbrück Bersenbruck 52.55 7.93333 P PPL DE 06 7958 42 Europe/Berlin 2006-01-17
-2949915 Berscheid Berscheid 49.98333 6.23333 P PPLA4 DE 08 00 07232 07232012 61 472 Europe/Berlin 2011-04-25
-2949927 Berod bei Wallmerod Berod bei Wallmerod Berod,Berod bei Wallmerod 50.48333 7.93333 P PPLA4 DE 08 00 07143 07143208 541 292 Europe/Berlin 2011-04-25
-2949941 Bernstorf Bernstorf 53.83333 11.11667 P PPLA4 DE 12 00 13058 13058008 350 14 Europe/Berlin 2011-04-25
-2949949 Bernstadt Bernstadt 51.05 14.85 P PPL DE 13 4046 219 Europe/Berlin 2006-01-17
-2949950 Bernstadt Bernstadt 48.49957 10.02575 P PPLA4 DE 01 084 08425 08425019 2004 561 Europe/Berlin 2011-04-25
-2949961 Bernsdorf Bernsdorf 51.36667 14.06667 P PPL DE 13 5871 150 Europe/Berlin 2006-01-17
-2949967 Bernsdorf Bernsdorf 50.76667 12.66667 P PPLA4 DE 13 145 14524 14524010 2594 318 Europe/Berlin 2011-04-25
-2949970 Bernsbach Bernsbach 50.58333 12.76667 P PPLA4 DE 13 145 14521 14521070 4676 652 Europe/Berlin 2011-04-25
-2949975 Bernried Bernried 48.91667 12.88333 P PPLA4 DE 02 092 09271 09271116 4972 382 Europe/Berlin 2011-04-25
-2949976 Bernried Bernried Bernried am Starnberger See 47.86604 11.29386 P PPLA4 DE 02 091 09190 09190115 0 600 Europe/Berlin 2011-04-25
-2949998 Bernkastel-Kues Bernkastel-Kues Bern Kastel,Bernkastel-Cues,Bernkastel-Kues 49.91667 7.06667 P PPL DE 08 6880 125 Europe/Berlin 2012-01-18
-2950003 Bernitt Bernitt 53.90403 11.88669 P PPLA4 DE 12 00 13053 13053007 1890 51 Europe/Berlin 2011-07-31
-2950019 Bernhardswald Bernhardswald 49.1 12.25 P PPLA4 DE 02 093 09375 09375119 5596 457 Europe/Berlin 2011-04-25
-2950037 Berngau Berngau 49.25 11.4 P PPLA4 DE 02 093 09373 09373114 2338 431 Europe/Berlin 2011-04-25
-2950055 Berndroth Berndroth 50.23333 7.96667 P PPLA4 DE 08 00 07141 07141011 411 392 Europe/Berlin 2011-04-25
-2950061 Berndorf Berndorf 50.3 6.7 P PPLA4 DE 08 00 07233 07233005 547 493 Europe/Berlin 2011-04-25
-2950073 Bernburg Bernburg Bernburg,Бернбург 51.8 11.73333 P PPL DE 14 32113 60 Europe/Berlin 2012-01-18
-2950078 Bernbeuren Bernbeuren 47.73333 10.78333 P PPLA4 DE 02 091 09190 09190114 2240 764 Europe/Berlin 2011-04-25
-2950095 Bernau am Chiemsee Bernau am Chiemsee Bernau,Bernau am Chiemsee 47.81667 12.36667 P PPL DE 02 6645 525 Europe/Berlin 2012-01-18
-2950096 Bernau bei Berlin Bernau bei Berlin Bernau,Бернау 52.67982 13.58708 P PPL DE 11 34866 72 Europe/Berlin 2010-01-29
-2950099 Bernau Bernau 47.80018 8.0383 P PPL DE 01 083 1993 916 Europe/Berlin 2010-11-15
-2950115 Bermersheim Bermersheim 49.68194 8.22361 P PPLA4 DE 08 00 07331 07331009 0 178 Europe/Berlin 2011-04-25
-2950121 Bermel Bermel 50.28333 7.08333 P PPLA4 DE 08 00 07137 07137011 419 408 Europe/Berlin 2011-04-25
-2950126 Bermbach Bermbach 50.68333 10.61667 P PPLA4 DE 15 00 16066 16066008 609 602 Europe/Berlin 2011-04-25
-2950130 Bermatingen Bermatingen 47.73333 9.35 P PPLA4 DE 01 084 08435 08435005 3711 471 Europe/Berlin 2011-04-25
-2950132 Berlstedt Berlstedt 51.06667 11.25 P PPLA4 DE 15 00 16071 16071007 1718 211 Europe/Berlin 2011-04-25
-2950139 Berlingerode Berlingerode Berlingerode 51.45775 10.2384 P PPLA4 DE 15 00 16061 16061003 1248 226 Europe/Berlin 2011-07-31
-2950140 Berlingen Berlingen 50.23333 6.71667 P PPLA4 DE 08 00 07233 07233004 0 497 Europe/Berlin 2011-04-25
-2950159 Berlin Berlin BER,Beirlin,Beirlín,Berleno,Berlien,Berliin,Berliini,Berlijn,Berlim,Berlin,Berline,Berlini,Berlino,Berlyn,Berlynas,Berlëno,Berlín,Berlîn,Berlīne,Berolino,Berolinum,Birlinu,Bèrlîn,Estat de Berlin,Estat de Berlín,bai lin,barlina,beleullin,berlini,berurin,bexrlin,brlyn,perlin,Βερολίνο,Берлин,Берлін,Бэрлін,Բերլին,בערלין,ברלין,برلين,برلین,بېرلىن,ܒܪܠܝܢ,बर्लिन,বার্লিন,பெர்லின்,เบอร์ลิน,ბერლინი,ベルリン,柏林,베를린 52.52437 13.41053 P PPLC DE 16 3426354 74 43 Europe/Berlin 2011-12-03
-2950177 Berkoth Berkoth 50.04416 6.33991 P PPLA4 DE 08 00 07232 07232011 97 516 Europe/Berlin 2011-07-31
-2950187 Berkheim Berkheim 48.04263 10.08227 P PPLA4 DE 01 084 08426 08426019 2657 568 Europe/Berlin 2011-05-31
-2950189 Berkenthin Berkenthin Berkenthin,Berkinthin 53.73333 10.65 P PPLA4 DE 10 00 01053 01053009 2033 9 Europe/Berlin 2011-04-25
-2950196 Berkenbrück Berkenbruck 52.35 14.15 P PPLA4 DE 11 00 12067 12067040 1024 41 Europe/Berlin 2011-04-25
-2950214 Beringstedt Beringstedt Beringstedt 54.11667 9.53333 P PPLA4 DE 10 00 01058 01058015 749 22 Europe/Berlin 2011-04-25
-2950228 Bergwitz Bergwitz 51.8 12.58333 P PPL DE 14 1679 65 Europe/Berlin 2006-01-17
-2950233 Bergweiler Bergweiler 49.96667 6.81667 P PPLA4 DE 08 00 07231 07231007 880 325 Europe/Berlin 2011-04-25
-2950249 Bergtheim Bergtheim 49.9 10.06667 P PPLA4 DE 02 096 09679 09679117 3460 281 Europe/Berlin 2011-04-25
-2950265 Bergstedt Bergstedt 53.67111 10.12694 P PPLX DE 04 9845 34 Europe/Berlin 2011-08-21
-2950287 Bergrheinfeld Bergrheinfeld Bergrhemfeld 50.01028 10.18089 P PPLA4 DE 02 096 09678 09678115 4971 213 Europe/Berlin 2011-04-25
-2950294 Bergneustadt Bergneustadt Bergneustadt 51.03333 7.65 P PPL DE 07 20567 355 Europe/Berlin 2012-01-18
-2950314 Berglicht Berglicht 49.78333 6.96667 P PPLA4 DE 08 00 07231 07231006 498 419 Europe/Berlin 2011-04-25
-2950318 Berglern Berglern 48.38333 11.93333 P PPLA4 DE 02 091 09177 09177112 2423 434 Europe/Berlin 2011-04-25
-2950330 Berglangenbach Berglangenbach 49.6 7.25 P PPLA4 DE 08 00 07134 07134007 488 404 Europe/Berlin 2011-04-25
-2950340 Bergkirchen Bergkirchen 48.25671 11.36488 P PPLA4 DE 02 091 09174 09174113 6955 509 Europe/Berlin 2011-04-25
-2950344 Bergkamen Bergkamen Bergkamen 51.63333 7.63333 P PPL DE 07 52329 67 Europe/Berlin 2012-01-18
-2950349 Bergisch Gladbach Bergisch Gladbach Bergisch Gladbach,Bergish Gladbakh,Jlaebbisch,Jläbbisch,Бергиш Гладбах 50.98333 7.13333 P PPL DE 07 106184 94 Europe/Berlin 2012-01-18
-2950358 Berg im Gau Berg im Gau Berg,Berg im Gau 48.63333 11.25 P PPLA4 DE 02 091 09185 09185116 1195 394 Europe/Berlin 2011-04-25
-2950361 Berghülen Berghulen 48.46399 9.7611 P PPLA4 DE 01 084 08425 08425017 2031 693 Europe/Berlin 2011-04-25
-2950365 Bergholz Bergholz 53.44277 14.16824 P PPLA4 DE 12 00 13062 13062005 413 34 Europe/Berlin 2011-04-25
-2950438 Bergheim Bergheim Bergem,Bergheim an der Erft,Бергем 50.95572 6.63986 P PPL DE 07 053 63558 67 Europe/Berlin 2010-11-15
-2950444 Bergheim Bergheim Bergheim 48.7606 11.25738 P PPLA4 DE 02 091 09185 09185118 0 386 Europe/Berlin 2012-03-20
-2950475 Berghausen Berghausen 50.26667 8 P PPLA4 DE 08 00 07141 07141010 328 328 Europe/Berlin 2011-04-25
-2950492 Berghaupten Berghaupten 48.4 7.98333 P PPLA4 DE 01 083 08317 08317009 2372 193 Europe/Berlin 2011-04-25
-2950556 Bergfeld Bergfeld 52.544 10.84505 P PPLA4 DE 06 00 03151 03151003 956 68 Europe/Berlin 2011-11-28
-2950564 Bergewöhrden Bergewohrden Bergewohrden,Bergewöhrden 54.31667 9.21667 P PPLA4 DE 10 00 01051 01051008 36 253 Europe/Berlin 2011-04-25
-2950607 Bergenhusen Bergenhusen Bergenhusen 54.38333 9.31667 P PPLA4 DE 10 00 01059 01059005 700 0 Europe/Berlin 2011-04-25
-2950610 Bergenhausen Bergenhausen 50.01667 7.56667 P PPLA4 DE 08 00 07140 07140012 128 371 Europe/Berlin 2011-04-25
-2950620 Bergen auf Rügen Bergen auf Ruegen Bergen Rugen,Bergen Rügen,Bergen auf Rugen,Bergen auf Rügen 54.41823 13.43349 P PPL DE 12 14771 73 Europe/Berlin 2011-12-15
-2950621 Bergen an der Dumme Bergen an der Dumme Bergen,Bergen Dumme 52.89109 10.95629 P PPL DE 06 00 1558 33 Europe/Berlin 2010-11-22
-2950622 Bergen Bergen Bergen 52.80837 9.96374 P PPL DE 06 13609 70 Europe/Berlin 2011-04-19
-2950626 Bergen Bergen 50.471 12.27448 P PPLA4 DE 13 145 14523 14523050 1102 464 Europe/Berlin 2011-04-25
-2950628 Bergen Bergen 49.78333 7.41667 P PPLA4 DE 08 00 07134 07134006 489 411 Europe/Berlin 2011-04-25
-2950630 Bergen Bergen 49.07347 11.114 P PPLA4 DE 02 095 09577 09577115 1061 540 Europe/Berlin 2011-07-31
-2950635 Bergen Bergen 47.80837 12.58982 P PPLA4 DE 02 091 09189 09189113 4731 548 Europe/Berlin 2011-04-25
-2950657 Berge Berge 53.23333 11.86667 P PPLA4 DE 11 00 12070 12070028 943 53 Europe/Berlin 2011-04-25
-2950660 Berge Berge 52.61667 7.71667 P PPLA4 DE 06 00 03459 03459009 3772 90 Europe/Berlin 2011-07-31
-2950686 Bergatreute Bergatreute 47.85 9.75 P PPLA4 DE 01 084 08436 08436014 3093 603 Europe/Berlin 2011-04-25
-2950696 Berga Berga 51.45561 11.0071 P PPLA4 DE 14 00 15087 15087055 1920 160 Europe/Berlin 2011-04-25
-2950697 Berga Berga Berga,Berga an der Elster 50.75 12.16667 P PPL DE 15 3869 262 Europe/Berlin 2012-01-18
-2950721 Berg Berg 50.55 6.95 P PPLA4 DE 08 00 07131 07131011 1527 339 Europe/Berlin 2011-04-25
-2950722 Berg Berg 50.38333 11.78333 P PPLA4 DE 02 094 09475 09475113 2544 606 Europe/Berlin 2011-04-25
-2950723 Berg Berg 50.25 7.81667 P PPLA4 DE 08 00 07141 07141009 252 241 Europe/Berlin 2011-04-25
-2950725 Berg Berg 49.81417 12.14161 P PPL DE 02 7472 493 Europe/Berlin 2009-03-19
-2950731 Berg Berg 48.98333 8.2 P PPL DE 08 2104 122 Europe/Berlin 2006-01-17
-2950767 Berg Berg Berg am See 47.96737 11.35446 P PPLA4 DE DE 02 091 09188 09188113 0 642 Europe/Berlin 2011-07-31
-2950772 Berg Berg 47.86667 11.38333 P PPLA4 DE 02 091 09188 09188113 0 720 Europe/Berlin 2011-07-31
-2950775 Berg Berg 47.82589 11.49814 P PPL DE 02 091 8168 658 Europe/Berlin 2010-11-15
-2950777 Berg Berg Berg 47.81667 9.6 P PPLA4 DE 01 084 08436 08436013 0 456 Europe/Berlin 2011-04-25
-2950858 Berenbach Berenbach 50.23333 6.95 P PPLA4 DE 08 00 07233 07233203 180 446 Europe/Berlin 2011-04-25
-2950861 Bereborn Bereborn 50.28333 6.96667 P PPLA4 DE 08 00 07233 07233202 124 515 Europe/Berlin 2011-04-25
-2950881 Berchtesgaden Berchtesgaden Berchtesgaden,Berchtolsgaden,Berchtsgan,Berchtsgån,beruhitesugaden,ベルヒテスガーデン 47.63333 13 P PPL DE 02 7655 605 Europe/Berlin 2007-02-17
-2950882 Berching Berching Berching 49.10444 11.44222 P PPL DE 02 8696 387 Europe/Berlin 2012-01-18
-2950898 Beratzhausen Beratzhausen Beratzhausen 49.09667 11.80833 P PPL DE 02 5583 415 Europe/Berlin 2012-01-18
-2950901 Benzweiler Benzweiler 50.01667 7.6 P PPLA4 DE 08 00 07140 07140011 228 394 Europe/Berlin 2011-04-25
-2950930 Benz Benz 53.93333 14.06667 P PPLA4 DE 12 00 13059 13059007 606 23 Europe/Berlin 2011-04-25
-2950931 Benz Benz 53.91667 11.58333 P PPLA4 DE 12 00 13058 13058007 656 35 Europe/Berlin 2011-04-25
-2950933 Bentzin Bentzin 53.94608 13.2732 P PPLA4 DE 12 00 13052 13052008 1031 12 Europe/Berlin 2011-07-31
-2950934 Bentwisch Bentwisch 54.11667 12.2 P PPLA4 DE 12 00 13051 13051009 2549 18 Europe/Berlin 2011-04-25
-2950978 Bensheim Bensheim Bensheim 49.68028 8.61611 P PPL DE 05 39439 101 Europe/Berlin 2012-01-18
-2950979 Benshausen Benshausen Benshausen 50.65 10.6 P PPLA4 DE 15 00 16066 16066006 2736 411 Europe/Berlin 2011-04-25
-2950998 Bennungen Bennungen 51.46085 11.11816 P PPL DE 14 1004 148 Europe/Berlin 2009-03-26
-2950999 Bennstedt Bennstedt Bennstedt 51.48333 11.83333 P PPL DE 14 1514 93 Europe/Berlin 2012-01-18
-2951013 Benningen am Neckar Benningen am Neckar Benningen 48.94672 9.24212 P PPLA4 DE 01 081 08118 08118006 5481 209 Europe/Berlin 2011-04-25
-2951014 Benningen Benningen 47.96667 10.21667 P PPLA4 DE 02 097 09778 09778118 2118 607 Europe/Berlin 2011-04-25
-2951024 Bennhausen Bennhausen 49.61667 7.98333 P PPLA4 DE 08 00 07333 07333005 138 248 Europe/Berlin 2011-04-25
-2951026 Bennewitz Bennewitz 51.36074 12.71376 P PPLX DE 13 147 14729 14729030 5211 114 Europe/Berlin 2011-04-25
-2951040 Benneckenstein Benneckenstein Benneckenstein 51.66667 10.71667 P PPL DE 14 2256 508 Europe/Berlin 2012-02-02
-2951046 Benndorf Benndorf 51.56667 11.48333 P PPLA4 DE 14 00 15087 15087045 2491 229 Europe/Berlin 2011-04-25
-2951081 Benitz Benitz 53.98333 12.1 P PPLA4 DE 12 00 13051 13051008 428 23 Europe/Berlin 2011-04-25
-2951095 Bengel Bengel 50.01667 7.06667 P PPLA4 DE 08 00 07231 07231005 891 149 Europe/Berlin 2011-04-25
-2951104 Benediktbeuern Benediktbeuern Benedict Beyrn 47.70624 11.41522 P PPLA4 DE 02 091 09173 09173113 3437 639 Europe/Berlin 2011-07-31
-2951110 Bendorf Bendorf 54.08333 9.38333 P PPLA4 DE 10 00 01058 01058014 506 17 Europe/Berlin 2011-04-25
-2951111 Bendorf Bendorf Bendorf 50.43333 7.56667 P PPL DE 08 17495 74 Europe/Berlin 2012-01-18
-2951114 Bendfeld Bendfeld Bendfeld 54.36667 10.41667 P PPLA4 DE 10 00 01057 01057006 260 40 Europe/Berlin 2011-04-25
-2951115 Bendestorf Bendestorf 53.35 9.96667 P PPLA4 DE 06 00 03353 03353003 2250 73 Europe/Berlin 2011-07-31
-2951120 Bendeleben Bendeleben Bendeleben 51.36667 11 P PPLA4 DE 15 00 16065 16065006 757 183 Europe/Berlin 2011-04-25
-2951124 Bempflingen Bempflingen 48.57178 9.26834 P PPLA4 DE 01 081 08116 08116008 3390 316 Europe/Berlin 2011-04-25
-2951134 Belzig Belzig 52.13333 12.6 P PPL DE 11 11999 107 Europe/Berlin 2006-01-17
-2951147 Belum Belum 53.81667 9 P PPLA4 DE 06 00 03352 03352004 878 255 Europe/Berlin 2011-04-25
-2951151 Beltheim Beltheim Beltheim 50.1 7.45 P PPLA4 DE 08 00 07140 07140010 2075 413 Europe/Berlin 2011-04-25
-2951164 Belsch Belsch 53.33333 11.2 P PPLA4 DE 12 00 13054 13054007 265 16 Europe/Berlin 2011-04-25
-2951165 Belrieth Belrieth Belrieth 50.53333 10.5 P PPLA4 DE 15 00 16066 16066005 396 314 Europe/Berlin 2011-04-25
-2951175 Belm Belm Belm 52.3 8.13333 P PPLA4 DE 06 00 03459 03459008 13897 90 Europe/Berlin 2011-04-25
-2951177 Bellstedt Bellstedt Bellstedt 51.26667 10.78333 P PPLA4 DE 15 00 16065 16065005 202 259 Europe/Berlin 2011-04-25
-2951198 Bellingen Bellingen 50.6 7.9 P PPLA4 DE 08 00 07143 07143207 570 429 Europe/Berlin 2011-04-25
-2951206 Bellheim Bellheim 49.19833 8.27944 P PPLA4 DE 08 00 07334 07334001 8494 117 Europe/Berlin 2011-04-25
-2951232 Bellenberg Bellenberg 48.25726 10.09094 P PPLA4 DE 02 097 09775 09775115 4607 504 Europe/Berlin 2011-07-31
-2951236 Belleben Belleben 51.66667 11.63333 P PPL DE 14 1004 157 Europe/Berlin 2006-01-17
-2951239 Bell Bell 50.38333 7.23333 P PPLA4 DE 08 00 07137 07137008 1534 382 Europe/Berlin 2011-04-25
-2951240 Bell Bell 50.06667 7.41667 P PPL DE 08 1526 456 Europe/Berlin 2006-01-17
-2951252 Belgweiler Belgweiler 49.95 7.48333 P PPLA4 DE 08 00 07140 07140008 205 332 Europe/Berlin 2011-04-25
-2951254 Belgershain Belgershain 51.23333 12.55 P PPLA4 DE 13 147 14729 14729020 3503 151 Europe/Berlin 2011-04-25
-2951258 Belgern Belgern Belgern 51.48333 13.13333 P PPL DE 13 5148 83 Europe/Berlin 2012-01-18
-2951261 Belg Belg 49.98333 7.3 P PPLA4 DE 08 00 07140 07140007 167 424 Europe/Berlin 2011-04-25
-2951266 Beldorf Beldorf Beldorf 54.13333 9.35 P PPLA4 DE 10 00 01058 01058013 285 9 Europe/Berlin 2011-04-25
-2951270 Belau Belau 54.1 10.26667 P PPLA4 DE 10 00 01057 01057005 331 45 Europe/Berlin 2011-04-25
-2951275 Bekond Bekond 49.85 6.8 P PPLA4 DE 08 00 07235 07235004 829 216 Europe/Berlin 2011-04-25
-2951276 Bekmünde Bekmunde Bekmunde,Bekmünde 53.92502 9.44626 P PPLA4 DE 10 00 01061 01061010 168 0 Europe/Berlin 2011-04-25
-2951290 Bekdorf Bekdorf Bekdorf 53.93938 9.42268 P PPLA4 DE 10 00 01061 01061008 100 252 Europe/Berlin 2011-04-25
-2951321 Beinhausen Beinhausen 50.26667 6.88333 P PPLA4 DE 08 00 07233 07233003 83 490 Europe/Berlin 2011-04-25
-2951325 Beinerstadt Beinerstadt Beinerstadt 50.46667 10.6 P PPLA4 DE 15 00 16069 16069003 390 483 Europe/Berlin 2011-04-25
-2951327 Beindersheim Beindersheim 49.56056 8.31944 P PPLA4 DE 08 00 07338 07338002 2923 95 Europe/Berlin 2011-04-25
-2951340 Beimerstetten Beimerstetten 48.48333 9.98333 P PPLA4 DE 01 084 08425 08425014 2508 586 Europe/Berlin 2011-04-25
-2951345 Beilstein Beilstein Beilstein 50.11667 7.25 P PPLA4 DE 08 00 07135 07135007 160 326 Europe/Berlin 2011-04-25
-2951346 Beilstein Beilstein Beilstein 49.03944 9.315 P PPL DE 01 6103 249 Europe/Berlin 2012-01-18
-2951352 Beilrode Beilrode 51.56667 13.06667 P PPLA4 DE 13 147 14730 14730030 2666 81 Europe/Berlin 2011-04-25
-2951355 Beilingen Beilingen 49.95 6.66667 P PPLA4 DE 08 00 07232 07232010 375 314 Europe/Berlin 2011-04-25
-2951387 Beierstedt Beierstedt 52.07413 10.8581 P PPLA4 DE 06 00 03154 03154002 472 95 Europe/Berlin 2011-05-03
-2951397 Beiersdorf Beiersdorf 51.06667 14.53333 P PPLA4 DE 13 146 14626 14626020 1369 398 Europe/Berlin 2011-04-25
-2951404 Beierfeld Beierfeld 50.56667 12.8 P PPL DE 13 4069 612 Europe/Berlin 2006-01-17
-2951428 Bei der Höhne Bei der Hohne 53.51667 9.13333 P PPL DE 06 1823 5 Europe/Berlin 2006-01-17
-2951435 Beidenfleth Beidenfleth Beidenfleth 53.87942 9.41315 P PPLA4 DE 10 00 01061 01061007 951 1 Europe/Berlin 2011-04-25
-2951441 Beichlingen Beichlingen 51.23333 11.25 P PPLA4 DE 15 00 16068 16068003 563 196 Europe/Berlin 2011-04-25
-2951454 Behringen Behringen 50.78333 11.01667 P PPL DE 15 3358 347 Europe/Berlin 2006-01-17
-2951468 Behren-Lübchin Behren-Lubchin 54.0289 12.66483 P PPLA4 DE 12 00 13053 13053005 673 27 Europe/Berlin 2011-04-25
-2951469 Behrenhoff Behrenhoff 54.00545 13.39027 P PPLA4 DE 12 00 13059 13059006 631 41 Europe/Berlin 2011-07-31
-2951472 Behrendorf Behrendorf 54.56667 9.21667 P PPLA4 DE 10 00 01054 01054011 609 30 Europe/Berlin 2011-04-25
-2951500 Behlendorf Behlendorf 53.7 10.66667 P PPLA4 DE 10 00 01053 01053008 393 54 Europe/Berlin 2011-04-25
-2951510 Beggerow Beggerow 53.83333 13.05 P PPLA4 DE 12 00 13052 13052007 632 34 Europe/Berlin 2011-04-25
-2951522 Beetzendorf Beetzendorf Beetzendorf 52.7 11.1 P PPLA4 DE 14 00 15081 15081045 1942 36 Europe/Berlin 2011-04-25
-2951526 Beesten Beesten 52.43333 7.5 P PPLA4 DE 06 00 03454 03454003 1707 33 Europe/Berlin 2011-04-25
-2951528 Beeskow Beeskow Beeskow 52.16667 14.25 P PPL DE 11 8468 38 Europe/Berlin 2012-01-18
-2951531 Beesenstedt Beesenstedt Beesenstedt 51.56667 11.73333 P PPL DE 14 1287 177 Europe/Berlin 2012-01-18
-2951532 Beesenlaublingen Beesenlaublingen 51.71667 11.7 P PPL DE 14 1586 63 Europe/Berlin 2006-01-17
-2951556 Beerfelden Beerfelden Beerfelden 49.56694 8.97472 P PPL DE 05 6942 421 Europe/Berlin 2012-01-18
-2951588 Beendorf Beendorf 52.24273 11.08727 P PPLA4 DE 14 00 15083 15083060 878 119 Europe/Berlin 2011-05-03
-2951595 Beelitz Beelitz Beelitz 52.23333 12.96667 P PPL DE 11 12475 36 Europe/Berlin 2012-01-18
-2951596 Beelen Beelen 51.93333 8.13333 P PPLA4 DE 07 055 05570 05570012 6344 60 Europe/Berlin 2011-04-25
-2951616 Beedenbostel Beedenbostel 52.65 10.25 P PPLA4 DE 06 00 03351 03351003 1005 54 Europe/Berlin 2011-04-25
-2951632 Bedesbach Bedesbach 49.56667 7.46667 P PPLA4 DE 08 00 07336 07336106 764 270 Europe/Berlin 2011-04-25
-2951648 Bedburg Bedburg 50.99258 6.57128 P PPL DE 07 053 24937 62 Europe/Berlin 2010-11-15
-2951654 Beckum Beckum Beckum 51.75 8.03333 P PPL DE 07 37814 114 Europe/Berlin 2012-01-18
-2951679 Beckingen Beckingen 49.4 6.7 P PPLA4 DE 09 00 10042 10042111 15983 216 Europe/Berlin 2011-04-25
-2951711 Beckeln Beckeln 52.86667 8.58333 P PPLA4 DE 06 00 03458 03458001 852 32 Europe/Berlin 2011-04-25
-2951717 Beckedorf Beckedorf 52.35 9.31667 P PPLA4 DE 06 00 03257 03257007 1553 59 Europe/Berlin 2011-04-25
-2951725 Beckdorf Beckdorf Beckdorf 53.41667 9.61667 P PPLA4 DE 06 00 03359 03359006 2532 42 Europe/Berlin 2011-04-25
-2951732 Bechtsrieth Bechtsrieth 49.64487 12.20997 P PPLA4 DE 02 093 09374 09374170 1096 447 Europe/Berlin 2011-04-25
-2951736 Bechtolsheim Bechtolsheim Bechtolsheim 49.80417 8.19389 P PPLA4 DE 08 00 07331 07331007 1489 144 Europe/Berlin 2011-04-25
-2951741 Bechtheim Bechtheim 49.72778 8.29222 P PPLA4 DE 08 00 07331 07331006 1876 138 Europe/Berlin 2011-04-25
-2951753 Bechstedtstraß Bechstedtstrass 50.95 11.2 P PPLA4 DE 15 00 16071 16071006 295 383 Europe/Berlin 2011-04-25
-2951754 Bechstedt Bechstedt Bechstedt 50.66667 11.16667 P PPLA4 DE 15 00 16073 16073006 182 347 Europe/Berlin 2011-04-25
-2951763 Bechhofen Bechhofen 49.35 7.4 P PPLA4 DE 08 00 07340 07340203 2306 315 Europe/Berlin 2011-04-25
-2951780 Becherbach Becherbach 49.65 7.68333 P PPLA4 DE 08 00 07133 07133011 0 396 Europe/Berlin 2011-04-25
-2951783 Bechenheim Bechenheim 49.72861 8.00333 P PPLA4 DE 08 00 07331 07331005 456 306 Europe/Berlin 2011-04-25
-2951788 Becheln Becheln 50.3 7.71667 P PPLA4 DE 08 00 07141 07141008 658 396 Europe/Berlin 2011-04-25
-2951793 Bebra Bebra Bebra 50.96667 9.8 P PPL DE 05 14839 202 Europe/Berlin 2012-01-18
-2951809 Bebensee Bebensee Bebensee 53.88333 10.3 P PPLA4 DE 10 00 01060 01060008 596 42 Europe/Berlin 2011-04-25
-2951824 Bayrischzell Bayrischzell 47.6744 12.01449 P PPLA4 DE 02 091 09182 09182112 1601 803 Europe/Berlin 2011-04-25
-2951825 Bayreuth Bayreuth Bajrojt,Bayreuth,bairoito,bayrwyt,Байройт,بایرویت,バイロイト 49.94806 11.57833 P PPLA2 DE 02 094 75061 341 Europe/Berlin 2010-11-21
-2951843 Bayerisch Gmain Bayerisch Gmain 47.71667 12.9 P PPLA4 DE 02 091 09172 09172115 2940 553 Europe/Berlin 2011-04-25
-2951849 Bayerisch Eisenstein Bayerisch Eisenstein 49.11667 13.2 P PPLA4 DE 02 092 09276 09276115 1318 789 Europe/Berlin 2011-04-25
-2951853 Bayerfeld-Steckweiler Bayerfeld-Steckweiler 49.68333 7.8 P PPLA4 DE 08 00 07333 07333004 446 172 Europe/Berlin 2011-04-25
-2951856 Bayerbach Bayerbach Bayerbach 48.7 12.3 P PPL DE 02 1733 415 Europe/Berlin 2012-01-18
-2951857 Bayerbach Bayerbach 48.41017 13.14411 P PPLA4 DE 02 092 09277 09277112 1651 357 Europe/Berlin 2011-07-01
-2951863 Bawinkel Bawinkel Bawinkel 52.6 7.4 P PPLA4 DE 06 00 03454 03454002 2343 21 Europe/Berlin 2011-04-25
-2951881 Bautzen Bautzen Baucen,Bautzen,Budysin,Budyšin,Budyšín,Budziszyn,bautsu~en,Бауцен,バウツェン 51.18333 14.43333 P PPL DE 13 41972 215 Europe/Berlin 2012-01-18
-2951887 Baustert Baustert 49.978 6.38984 P PPLA4 DE 08 00 07232 07232009 540 293 Europe/Berlin 2011-04-25
-2951894 Bausendorf Bausendorf 50.01667 7 P PPLA4 DE 08 00 07231 07231004 1339 224 Europe/Berlin 2011-04-25
-2951923 Baunatal Baunatal Baunatal 51.25182 9.40747 P PPL DE 05 28173 216 Europe/Berlin 2011-08-15
-2951926 Baunach Baunach 49.98592 10.85179 P PPL DE 02 094 3998 247 Europe/Berlin 2010-11-15
-2951950 Baumholder Baumholder 49.61667 7.33333 P PPL DE 08 4106 456 Europe/Berlin 2006-01-17
-2951970 Baumgarten Baumgarten 53.81251 11.87828 P PPLA4 DE 12 00 13053 13053004 0 46 Europe/Berlin 2011-07-31
-2952049 Bauler Bauler 50.33333 6.88333 P PPLA4 DE 08 00 07131 07131009 45 494 Europe/Berlin 2011-04-25
-2952050 Bauler Bauler 49.96667 6.2 P PPLA4 DE 08 00 07232 07232008 0 352 Europe/Berlin 2011-04-25
-2952161 Bauerbach Bauerbach 50.5 10.4 P PPLA4 DE 15 00 16066 16066003 278 364 Europe/Berlin 2011-04-25
-2952174 Baudenbach Baudenbach Baudenbach 49.61667 10.53333 P PPL DE 02 1195 300 Europe/Berlin 2012-02-02
-2952202 Battweiler Battweiler 49.28333 7.46667 P PPLA4 DE 08 00 07340 07340202 781 326 Europe/Berlin 2011-04-25
-2952213 Battenberg Battenberg Battenberg 51.01667 8.65 P PPL DE 05 5703 324 Europe/Berlin 2012-01-18
-2952235 Bastorf Bastorf 54.13333 11.7 P PPLA4 DE 12 00 13051 13051007 1128 51 Europe/Berlin 2011-04-25
-2952237 Basthorst Basthorst 53.58333 10.46667 P PPLA4 DE 10 00 01053 01053007 384 36 Europe/Berlin 2011-04-25
-2952238 Bastheim Bastheim 50.4 10.2 P PPLA4 DE 02 096 09673 09673116 2689 285 Europe/Berlin 2011-04-25
-2952252 Bassum Bassum Bassum 52.85 8.73333 P PPL DE 06 16191 47 Europe/Berlin 2012-01-18
-2952261 Bassenheim Bassenheim 50.36667 7.46667 P PPLA4 DE 08 00 07137 07137202 2787 195 Europe/Berlin 2011-04-25
-2952295 Basedow Basedow 53.7 12.68333 P PPLA4 DE 12 00 13052 13052005 811 9 Europe/Berlin 2011-04-25
-2952296 Basedow Basedow 53.41667 10.58333 P PPLA4 DE 10 00 01053 01053006 684 32 Europe/Berlin 2011-04-25
-2952304 Basdahl Basdahl 53.44502 9.00025 P PPLA4 DE 06 00 03357 03357004 1539 24 Europe/Berlin 2011-10-13
-2952311 Basberg Basberg 50.3 6.6 P PPLA4 DE 08 00 07233 07233002 68 469 Europe/Berlin 2011-04-25
-2952322 Barweiler Barweiler 50.36667 6.86667 P PPLA4 DE 08 00 07131 07131008 484 440 Europe/Berlin 2011-04-25
-2952323 Bärweiler Barweiler 49.73333 7.6 P PPLA4 DE 08 00 07133 07133009 284 374 Europe/Berlin 2011-04-25
-2952324 Barwedel Barwedel 52.51667 10.78333 P PPLA4 DE 06 00 03151 03151002 1099 70 Europe/Berlin 2011-04-25
-2952330 Barver Barver 52.62066 8.59251 P PPLA4 DE 06 00 03251 03251006 1080 36 Europe/Berlin 2011-04-25
-2952335 Baruth Baruth Baruth 52.05 13.5 P PPL DE 11 4505 55 Europe/Berlin 2012-01-18
-2952339 Barum Barum 53.35 10.4 P PPLA4 DE 06 00 03355 03355007 1782 2 Europe/Berlin 2011-04-25
-2952340 Barum Barum 53.05 10.51667 P PPLA4 DE 06 00 03360 03360003 834 60 Europe/Berlin 2011-04-25
-2952345 Bartow Bartow 53.81667 13.35 P PPLA4 DE 12 00 13052 13052004 600 29 Europe/Berlin 2011-04-25
-2952359 Bartholomä Bartholoma 48.7535 9.98752 P PPLA4 DE 01 081 08136 08136007 2189 646 Europe/Berlin 2011-04-25
-2952372 Barth Barth 54.36346 12.72491 P PPL DE 12 00 9298 1 Europe/Berlin 2010-11-22
-2952398 Barßel Barssel 53.16667 7.73333 P PPLA4 DE 06 00 03453 03453001 12475 4 Europe/Berlin 2011-07-31
-2952406 Barsinghausen Barsinghausen Basche,Baschehusen,Berkingehusen [a. 1193] 52.3 9.45 P PPLA4 DE 06 00 03241 03241002 14200 142 182 Europe/Berlin 2011-02-16
-2952415 Barsbüttel Barsbuettel Barsbuttel,Barsbüttel 53.56667 10.16667 P PPLA4 DE 10 00 01062 01062009 12363 29 Europe/Berlin 2011-08-21
-2952419 Barsbek Barsbek Barsbek 54.4 10.31667 P PPLA4 DE 10 00 01057 01057003 637 5 Europe/Berlin 2011-04-25
-2952444 Barntrup Barntrup 51.99038 9.11642 P PPL DE 07 057 9513 196 Europe/Berlin 2010-11-15
-2952452 Barnstorf Barnstorf 52.71009 8.50256 P PPL DE 06 6050 33 Europe/Berlin 2009-01-28
-2952458 Barnstedt Barnstedt Barnstedt 53.13333 10.36667 P PPLA4 DE 06 00 03355 03355006 806 53 Europe/Berlin 2011-04-25
-2952461 Barnstädt Barnstadt Barnstadt,Barnstädt 51.35 11.65 P PPLA4 DE 14 00 15088 15088030 1230 196 Europe/Berlin 2011-04-25
-2952485 Barnin Barnin 53.6 11.7 P PPLA4 DE 12 00 13060 13060003 492 34 Europe/Berlin 2011-04-25
-2952511 Barnekow Barnekow 53.86667 11.36667 P PPLA4 DE 12 00 13058 13058005 680 36 Europe/Berlin 2011-04-25
-2952527 Bärnau Barnau Bernau 49.81079 12.43318 P PPL DE 02 093 3475 608 Europe/Berlin 2010-11-15
-2952531 Barmstedt Barmstedt Barmstedt 53.78333 9.76667 P PPL DE 10 9521 8 Europe/Berlin 2012-01-18
-2952535 Barmissen Barmissen Barmissen 54.2 10.18333 P PPLA4 DE 10 00 01057 01057002 173 43 Europe/Berlin 2011-04-25
-2952552 Barlt Barlt Barlt 54.01667 9.05 P PPLA4 DE 10 00 01051 01051006 834 255 Europe/Berlin 2011-04-25
-2952564 Barleben Barleben 52.20193 11.6177 P PPLA4 DE 14 00 15083 15083040 5895 46 Europe/Berlin 2011-04-25
-2952601 Barkenholm Barkenholm Barkenholm 54.23333 9.18333 P PPLA4 DE 10 00 01051 01051005 195 1 Europe/Berlin 2011-04-25
-2952605 Barkelsby Barkelsby Barkelsby 54.5 9.83333 P PPLA4 DE 10 00 01058 01058012 1564 22 Europe/Berlin 2011-04-25
-2952611 Bark Bark Bark 53.91667 10.18333 P PPLA4 DE 10 00 01060 01060007 1017 37 Europe/Berlin 2011-04-25
-2952630 Bargum Bargum Bargum 54.7 8.95 P PPLA4 DE 10 00 01054 01054010 603 255 Europe/Berlin 2011-04-25
-2952633 Bargteheide Bargteheide Bargteheide 53.73333 10.26667 P PPL DE 10 13640 51 Europe/Berlin 2012-01-18
-2952636 Bargstedt Bargstedt 54.16667 9.76667 P PPLA4 DE 10 00 01058 01058011 777 19 Europe/Berlin 2011-04-25
-2952637 Bargstedt Bargstedt 53.46667 9.45 P PPLA4 DE 06 00 03359 03359005 2117 28 Europe/Berlin 2011-04-25
-2952639 Bargstall Bargstall Bargstall 54.26667 9.46667 P PPLA4 DE 10 00 01058 01058010 184 6 Europe/Berlin 2011-04-25
-2952644 Bargischow Bargischow 53.83333 13.75 P PPLA4 DE 12 00 13059 13059005 426 5 Europe/Berlin 2011-04-25
-2952651 Bargfeld-Stegen Bargfeld-Stegen Bargfeld-Stegen 53.76778 10.1875 P PPLA4 DE 10 00 01062 01062005 2917 34 Europe/Berlin 2011-08-21
-2952664 Bargenstedt Bargenstedt Bargenstedt 54.1 9.15 P PPLA4 DE 10 00 01051 01051004 891 15 Europe/Berlin 2011-04-25
-2952692 Bärenthal Barenthal 48.06667 8.93333 P PPLA4 DE 01 083 08327 08327004 422 778 Europe/Berlin 2011-04-25
-2952702 Bärenstein Barenstein 50.8 13.8 P PPL DE 13 1064 485 Europe/Berlin 2006-01-17
-2952703 Bärenstein Barenstein 50.5 13.03333 P PPLA4 DE 13 145 14521 14521060 2804 715 Europe/Berlin 2011-04-25
-2952762 Barendorf Barendorf 53.22896 10.52158 P PPLA4 DE 06 00 03355 03355005 2173 75 Europe/Berlin 2011-09-07
-2952767 Barenburg Barenburg Barenburg 52.61667 8.8 P PPL DE 06 1277 32 Europe/Berlin 2012-01-18
-2952802 Bärenbach Barenbach 49.95 7.3 P PPLA4 DE 08 00 07140 07140006 546 452 Europe/Berlin 2011-04-25
-2952803 Bärenbach Barenbach 49.75 7.45 P PPLA4 DE 08 00 07133 07133008 476 287 Europe/Berlin 2011-04-25
-2952814 Bardowick Bardowick Bardowick,Bardowiek 53.3 10.38333 P PPL DE 06 6026 5 Europe/Berlin 2012-01-18
-2952833 Barchfeld Barchfeld 50.83333 11.18333 P PPL DE 15 3397 329 Europe/Berlin 2006-01-17
-2952834 Barchfeld Barchfeld 50.8 10.3 P PPLA4 DE 15 00 16063 16063004 0 250 Europe/Berlin 2011-04-25
-2952842 Barbing Barbing Barbing,Perbing 49 12.2 P PPLA4 DE 02 093 09375 09375117 4776 329 Europe/Berlin 2011-04-25
-2952844 Barbelroth Barbelroth 49.09889 8.06917 P PPLA4 DE 08 00 07337 07337006 598 142 Europe/Berlin 2011-04-25
-2952857 Banzkow Banzkow 53.53333 11.51667 P PPLA4 DE 12 00 13060 13060001 2249 37 Europe/Berlin 2011-04-25
-2952884 Banteln Banteln 52.06667 9.75 P PPLA4 DE 06 00 03254 03254006 1674 92 Europe/Berlin 2011-04-25
-2952916 Bannewitz Bannewitz 50.99291 13.71712 P PPLA4 DE 13 146 14628 14628050 10851 280 Europe/Berlin 2011-04-25
-2952931 Bannberscheid Bannberscheid 50.46667 7.83333 P PPLA4 DE 08 00 07143 07143003 636 256 Europe/Berlin 2011-04-25
-2952934 Bann Bann 49.38333 7.61667 P PPLA4 DE 08 00 07335 07335002 2390 376 Europe/Berlin 2011-04-25
-2952964 Bandelin Bandelin 53.96386 13.37414 P PPLA4 DE 12 00 13059 13059003 660 24 Europe/Berlin 2011-04-25
-2952973 Bammental Bammental Bammemtal,Bammental,Bammenthal 49.35611 8.77944 P PPLA4 DE 01 082 08226 08226006 6493 128 Europe/Berlin 2011-04-25
-2952984 Bamberg Bamberg Bamberg,Bamberga,ban bao,ban bei ke,banberuku,Бамберг,バンベルク,班堡,班貝克 49.87948 10.88634 P PPL DE 02 70047 312 Europe/Berlin 2010-09-04
-2952991 Balzhausen Balzhausen 48.24228 10.49366 P PPLA4 DE 02 097 09774 09774115 1262 521 Europe/Berlin 2011-07-31
-2952993 Balzfeld Balzfeld 49.26892 8.78919 P PPL DE 01 082 08226 08226010 1012 171 Europe/Berlin 2010-11-15
-2953003 Balve Balve Ballova,Balve 51.33333 7.86667 P PPL DE 07 12281 237 Europe/Berlin 2012-01-18
-2953006 Baltrum Baltrum 53.73333 7.36667 P PPLA4 DE 06 00 03452 03452002 465 -9999 Europe/Berlin 2011-04-25
-2953008 Baltmannsweiler Baltmannsweiler 48.74215 9.4494 P PPLA4 DE 01 081 08116 08116007 5584 456 Europe/Berlin 2011-04-25
-2953028 Balow Balow 53.26667 11.71667 P PPLA4 DE 12 00 13054 13054003 363 34 Europe/Berlin 2011-04-25
-2953037 Ballstedt Ballstedt 51.05 11.21667 P PPLA4 DE 15 00 16071 16071005 331 258 Europe/Berlin 2011-04-25
-2953038 Ballstädt Ballstadt Ballstadt,Ballstädt 51.03333 10.71667 P PPLA4 DE 15 00 16067 16067003 736 275 Europe/Berlin 2011-04-25
-2953060 Ballenstedt Ballenstedt Ballenstedt 51.71667 11.23333 P PPL DE 14 8064 234 Europe/Berlin 2012-01-18
-2953064 Ballendorf Ballendorf 48.55417 10.07695 P PPLA4 DE 01 084 08425 08425013 651 546 Europe/Berlin 2011-04-25
-2953088 Balje Balje 53.83333 9.13333 P PPLA4 DE 06 00 03359 03359004 1109 0 Europe/Berlin 2011-04-25
-2953089 Balingen Balingen 48.27525 8.85464 P PPL DE 01 34414 512 Europe/Berlin 2008-12-23
-2953093 Balgstädt Balgstadt Balgstadt,Balgstädt 51.21667 11.73333 P PPLA4 DE 14 00 15084 15084025 666 171 Europe/Berlin 2011-04-25
-2953097 Balgheim Balgheim 48.06667 8.76667 P PPLA4 DE 01 083 08327 08327005 981 697 Europe/Berlin 2011-04-25
-2953100 Balge Balge 52.71667 9.16667 P PPLA4 DE 06 00 03256 03256001 1909 23 Europe/Berlin 2011-07-31
-2953104 Balesfeld Balesfeld 50.1 6.53333 P PPLA4 DE 08 00 07232 07232203 214 472 Europe/Berlin 2011-04-25
-2953108 Balduinstein Balduinstein 50.35 7.96667 P PPLA4 DE 08 00 07141 07141503 578 132 Europe/Berlin 2011-04-25
-2953109 Baldringen Baldringen 49.61667 6.68333 P PPLA4 DE 08 00 07235 07235003 243 441 Europe/Berlin 2011-04-25
-2953116 Balderschwang Balderschwang 47.46667 10.1 P PPLA4 DE 02 097 09780 09780113 206 1084 Europe/Berlin 2011-04-25
-2953134 Bälau Balau Balau,Bälau 53.61667 10.61667 P PPLA4 DE 10 00 01053 01053005 242 33 Europe/Berlin 2011-04-25
-2953136 Bakum Bakum 52.74118 8.19546 P PPLA4 DE 06 00 03460 03460001 5678 34 Europe/Berlin 2011-07-31
-2953163 Bäk Bak Bak,Bäk 53.71667 10.78333 P PPLA4 DE 10 00 01053 01053004 826 39 Europe/Berlin 2011-04-25
-2953168 Baisweil Baisweil 47.95 10.55 P PPLA4 DE 02 097 09777 09777114 1352 672 Europe/Berlin 2011-04-25
-2953178 Baindt Baindt 47.85 9.66667 P PPLA4 DE 01 084 08436 08436012 4561 513 Europe/Berlin 2011-04-25
-2953194 Baiersdorf Baiersdorf 49.65807 11.03594 P PPL DE 02 095 7071 267 Europe/Berlin 2010-11-15
-2953197 Baiersbronn Baiersbronn Baiersbronn 48.5 8.38333 P PPLA4 DE 01 082 08237 08237004 16248 748 Europe/Berlin 2011-07-31
-2953213 Baierbrunn Baierbrunn Baierbrun 48.0203 11.48689 P PPLA4 DE 02 091 09184 09184113 2755 619 Europe/Berlin 2011-04-25
-2953217 Baierbach Baierbach 48.41667 12.2 P PPLA4 DE 02 092 09274 09274118 774 457 Europe/Berlin 2011-04-25
-2953222 Baienfurt Baienfurt 47.81667 9.65 P PPLA4 DE 01 084 08436 08436011 7342 488 Europe/Berlin 2011-04-25
-2953232 Bahrenhof Bahrenhof Bahrenhof 53.88333 10.38333 P PPLA4 DE 10 00 01060 01060006 196 43 Europe/Berlin 2011-04-25
-2953234 Bahrenfleth Bahrenfleth Bahrenfleth,Barenfleth 53.87133 9.43964 P PPLA4 DE 10 00 01061 01061006 602 0 Europe/Berlin 2011-04-25
-2953240 Bahrenborstel Bahrenborstel Bahrenbostel 52.57009 8.80863 P PPLA4 DE 06 00 03251 03251003 1253 50 Europe/Berlin 2011-04-25
-2953247 Bahrdorf Bahrdorf Bahrdorp,Bardorp,Bardorp [a. 973],Bardorpe [~ a. 1250],Bårdorp 52.38587 11.0004 P PPLA4 DE 06 00 03154 03154001 2087 76 Europe/Berlin 2011-03-15
-2953269 Bahnhof Löhne Bahnhof Lohne Bahnhof Lohne,Bahnhof Löhne 52.2 8.71667 P PPL DE 07 41677 54 Europe/Berlin 2012-01-18
-2953276 Bahlingen Bahlingen Bahlingen 48.12064 7.73982 P PPL DE 01 3709 194 Europe/Berlin 2012-02-28
-2953302 Baesweiler Baesweiler Basweilen,Basweiler,Besvajler,Bäsweiler,Бесвайлер 50.90964 6.18874 P PPL DE 07 27834 117 Europe/Berlin 2010-01-29
-2953310 Bad Zwischenahn Bad Zwischenahn Bad Zwischenahn 53.18333 8 P PPLA4 DE 06 00 03451 03451002 27550 9 Europe/Berlin 2011-07-31
-2953312 Bad Wurzach Bad Wurzach Bad Wurzach 47.9 9.9 P PPL DE 01 14323 660 Europe/Berlin 2012-01-18
-2953313 Bad Wörishofen Bad Worishofen Bad Worishofen,Bad Wörishofen 48.01667 10.6 P PPL DE 02 14028 618 Europe/Berlin 2012-01-18
-2953314 Bad Windsheim Bad Windsheim Bad Windsheim 49.5 10.41667 P PPL DE 02 12022 315 Europe/Berlin 2012-01-18
-2953315 Bad Wimpfen Bad Wimpfen Bad Wimpfen 49.22722 9.15972 P PPL DE 01 6968 203 Europe/Berlin 2012-02-28
-2953316 Bad Wilsnack Bad Wilsnack Bad Wilsnack 52.95 11.95 P PPL DE 11 2941 38 Europe/Berlin 2012-01-18
-2953317 Bad Wildungen Bad Wildungen 51.11963 9.12475 P PPL DE 05 066 18037 276 Europe/Berlin 2010-11-15
-2953318 Bad Wiessee Bad Wiessee 47.71667 11.71667 P PPLA4 DE 02 091 09182 09182111 4293 751 Europe/Berlin 2011-04-25
-2953320 Bad Waldsee Bad Waldsee Bad Waldsee 47.91667 9.76667 P PPL DE 01 19840 607 Europe/Berlin 2012-01-18
-2953321 Bad Vilbel Bad Vilbel 50.17866 8.73756 P PPL DE 05 064 30736 117 Europe/Berlin 2010-11-15
-2953322 Bad Überkingen Bad Uberkingen 48.59991 9.79586 P PPLA4 DE 01 081 08117 08117007 3987 442 Europe/Berlin 2011-04-25
-2953324 Bad Tölz Bad Tolz Bad Toelz,Tolz 47.76111 11.5589 P PPL DE 02 091 17434 662 Europe/Berlin 2010-11-15
-2953325 Bad Tennstedt Bad Tennstedt 51.15 10.83333 P PPL DE 15 2710 197 Europe/Berlin 2006-01-17
-2953327 Bad Sülze Bad Sulze 54.11084 12.66054 P PPL DE 12 1938 8 Europe/Berlin 2009-01-25
-2953330 Bad Sulza Bad Sulza 51.08929 11.62474 P PPL DE 15 3027 134 Europe/Berlin 2008-08-05
-2953331 Bad Suderode Bad Suderode 51.73333 11.11667 P PPLA4 DE 14 00 15085 15085035 1791 213 Europe/Berlin 2011-04-25
-2953334 Bad Steben Bad Steben Bad Steben,Badsteban 50.36667 11.65 P PPL DE 02 3640 580 Europe/Berlin 2012-01-18
-2953336 Bad Sooden-Allendorf Bad Sooden-Allendorf Allendorf,Bad Sooden,Bad Sooden-Allendorf 51.28333 9.98333 P PPL DE 05 8915 202 Europe/Berlin 2012-01-18
-2953338 Bad Soden-Salmünster Bad Soden-Salmunster 50.27574 9.36705 P PPL DE 05 064 13953 153 Europe/Berlin 2010-11-15
-2953339 Bad Soden am Taunus Bad Soden am Taunus Bad Soden,Bad Soden in Taunus 50.1408 8.50449 P PPL DE 05 21357 139 Europe/Berlin 2009-10-11
-2953341 Bad Segeberg Bad Segeberg Bad Segeberg 53.93333 10.31667 P PPL DE 10 16052 58 Europe/Berlin 2012-01-18
-2953347 Bad Schwartau Bad Schwartau Bad Schwartau 53.91887 10.69691 P PPL DE 10 19722 11 Europe/Berlin 2011-02-16
-2953348 Bad Schwalbach Bad Schwalbach Bad Schwalbach 50.13333 8.06667 P PPL DE 05 11112 399 Europe/Berlin 2012-01-18
-2953350 Bad Schmiedeberg Bad Schmiedeberg Bad Schmiedeberg 51.68333 12.73333 P PPL DE 14 4241 102 Europe/Berlin 2012-01-18
-2953352 Bad Schandau Bad Schandau 50.91743 14.15494 P PPL DE 13 146 3078 127 Europe/Berlin 2010-11-15
-2953355 Bad Sassendorf Bad Sassendorf Bad Sassendorf 51.58333 8.16667 P PPLA4 DE 07 059 05974 05974008 11659 93 Europe/Berlin 2011-04-25
-2953357 Bad Salzungen Bad Salzungen Bad Salzungen 50.81667 10.23333 P PPL DE 15 16410 240 Europe/Berlin 2012-01-18
-2953358 Bad Salzuflen Bad Salzuflen 52.0862 8.74434 P PPL DE 07 057 54899 82 Europe/Berlin 2010-11-15
-2953359 Bad Salzschlirf Bad Salzschlirf 50.62388 9.50815 P PPLA4 DE 05 066 06631 06631001 3204 251 Europe/Berlin 2011-07-31
-2953362 Bad Salzdetfurth Bad Salzdetfurth Bad Salzdetfurth,Bad Salzendetkuith 52.05777 10.0058 P PPL DE 06 14349 110 Europe/Berlin 2011-03-17
-2953363 Bad Säckingen Bad Sackingen Sackingen,Säckingen 47.55371 7.94612 P PPL DE 01 083 16549 290 Europe/Berlin 2010-11-15
-2953364 Bad Sachsa Bad Sachsa 51.59499 10.55546 P PPL DE 06 00 8244 315 Europe/Berlin 2010-11-22
-2953366 Bad Saarow Bad Saarow Bad Saarow 52.28333 14.06667 P PPLA4 DE 11 00 12067 12067024 4594 52 Europe/Berlin 2011-07-31
-2953367 Bad Rothenfelde Bad Rothenfelde Bad Rotenfel'de,Bad Rothenfelde,Бад Ротенфельде 52.11667 8.16667 P PPLA4 DE 06 00 03459 03459006 7299 100 Europe/Berlin 2011-04-25
-2953371 Bad Reichenhall Bad Reichenhall Bad Reichenhall,Datreiche Hall,Reichenhall 47.73333 12.88333 P PPL DE 02 16910 466 Europe/Berlin 2012-01-18
-2953374 Bad Rappenau Bad Rappenau Bad Rappenau 49.24056 9.1025 P PPL DE 01 20581 238 Europe/Berlin 2012-02-28
-2953377 Badra Badra Badra 51.4 10.96667 P PPLA4 DE 15 00 16065 16065004 625 243 Europe/Berlin 2011-04-25
-2953379 Bad Pyrmont Bad Pyrmont Bad Pyrmont 51.98333 9.25 P PPL DE 06 21629 105 Europe/Berlin 2012-01-18
-2953384 Bad Orb Bad Orb 50.22788 9.34782 P PPL DE 05 064 10186 171 Europe/Berlin 2010-11-15
-2953385 Bad Oldesloe Bad Oldesloe Bad Oldesloe 53.81167 10.37417 P PPL DE 10 24322 10 Europe/Berlin 2011-08-21
-2953386 Bad Oeynhausen Bad Oeynhausen Bad Oeyhausen,Bad Oeynhausen 52.2 8.8 P PPL DE 07 49513 73 Europe/Berlin 2012-01-18
-2953389 Bad Neustadt an der Saale Bad Neustadt an der Saale Bad Neustadt,Bad Neustadt an der Saale,Neustadt,Neustadt an der Saale 50.33333 10.21667 P PPL DE 02 16064 241 Europe/Berlin 2012-01-18
-2953391 Bad Neuenahr-Ahrweiler Bad Neuenahr-Ahrweiler Bad Neuenahr-Ahrweiler,Stadt Bad Neuenahr-Ahrweiler 50.55 7.1 P PPL DE 08 27823 193 Europe/Berlin 2012-01-18
-2953394 Bad Nenndorf Bad Nenndorf Bad Nenndorf,Bad Neundorf 52.33333 9.36667 P PPL DE 06 10255 73 Europe/Berlin 2012-01-18
-2953395 Bad Nauheim Bad Nauheim Stadt Bad Nauheim 50.36463 8.73859 P PPL DE 05 064 30291 157 Europe/Berlin 2010-11-15
-2953397 Bad Muskau Bad Muskau Bad Muskau,Hora,Muskau,Muskau Bad,Muzakow,Muzaków,Mužakow 51.55 14.71667 P PPL DE 13 4027 123 Europe/Berlin 2012-01-18
-2953398 Bad Münstereifel Bad Munstereifel Bad Munstereifel,Bad Münstereifel,Munstereifel,Münstereifel 50.55 6.76667 P PPL DE 07 19051 392 Europe/Berlin 2012-01-18
-2953399 Bad Münster am Stein-Ebernburg Bad Munster am Stein-Ebernburg Bad Munster,Bad Munster am Stein-Ebernburg,Bad Munster-Ebernburg,Bad Münster,Bad Münster am Stein-Ebernburg,Bad Münster-Ebernburg,Ebernburg 49.81667 7.85 P PPL DE 08 3940 111 Europe/Berlin 2012-01-18
-2953400 Bad Münder am Deister Bad Munder am Deister Bad Munder,Bad Munder am Deister,Bad Münder,Bad Münder am Deister,Munder am Deister,Münder am Deister 52.19551 9.46421 P PPL DE 06 18726 118 Europe/Berlin 2010-08-18
-2953402 Bad Mergentheim Bad Mergentheim Bad Mergentheim 49.4925 9.77361 P PPL DE 01 22472 211 Europe/Berlin 2012-02-28
-2953403 Bad Meinberg Bad Meinberg curia Meginbergen [a. 978] 51.89588 8.98313 P PPLX DE 07 057 05766 05766032 4636 211 Europe/Berlin 2011-11-07
-2953404 Bad Marienberg Bad Marienberg Bad Marienberg,Marienberg 50.65 7.95 P PPL DE 08 5838 448 Europe/Berlin 2012-01-18
-2953405 Bad Lippspringe Bad Lippspringe Bad Lippspringe,Lippspringe 51.78333 8.81667 P PPL DE 07 15175 144 Europe/Berlin 2012-01-18
-2953407 Bad Liebenzell Bad Liebenzell Bad Liebenzell 48.76667 8.73333 P PPL DE 01 9616 413 Europe/Berlin 2012-01-18
-2953408 Bad Liebenwerda Bad Liebenwerda Bad Liebenwerda,Liebenwerda 51.51667 13.4 P PPL DE 11 10890 92 Europe/Berlin 2012-01-18
-2953409 Bad Liebenstein Bad Liebenstein Bad Liebenstein 50.81667 10.36667 P PPL DE 15 4094 446 Europe/Berlin 2012-01-18
-2953410 Bad Lauterberg im Harz Bad Lauterberg im Harz Bad Lauterberg,Bad Lauterberg im Harz,Lauterberg 51.63272 10.47031 P PPL DE 06 00 11784 304 Europe/Berlin 2011-04-25
-2953411 Bad Lausick Bad Lausick 51.14584 12.6272 P PPL DE 13 147 9026 155 Europe/Berlin 2010-11-15
-2953412 Bad Lauchstädt Bad Lauchstadt Bad Lauchstadt,Bad Lauchstedt,Bad Lauchstädt,Lauchstadt,Lauchstaedt 51.38333 11.85 P PPL DE 14 5018 129 Europe/Berlin 2012-01-18
-2953413 Bad Langensalza Bad Langensalza Bad Langensalza,Langensalza 51.1 10.65 P PPL DE 15 18183 206 Europe/Berlin 2012-01-18
-2953414 Bad Krozingen Bad Krozingen 47.91667 7.7 P PPLA4 DE 01 083 08315 08315006 0 230 Europe/Berlin 2011-04-25
-2953416 Bad Kreuznach Bad Kreuznach Bad Kreuznach,Kreuznach 49.83333 7.86667 P PPL DE 08 43213 133 Europe/Berlin 2012-01-18
-2953417 Bad Köstritz Bad Kostritz Bad Kostritz,Bad Köstritz,Kostritz,Köstritz 50.93333 12.01667 P PPL DE 15 3924 176 Europe/Berlin 2012-01-18
-2953418 Bad Kösen Bad Kosen Bad Kosen,Bad Kösen,Kosen,Kösen 51.13333 11.71667 P PPL DE 14 5522 116 Europe/Berlin 2012-01-18
-2953419 Bad König Bad Konig Bad Konig,Bad König,Konig,König 49.74306 9.00861 P PPL DE 05 9687 188 Europe/Berlin 2012-02-28
-2953420 Bad Kohlgrub Bad Kohlgrub 47.66667 11.05 P PPLA4 DE 02 091 09180 09180112 2416 828 Europe/Berlin 2011-04-25
-2953421 Bad Klosterlausnitz Bad Klosterlausnitz Bad Klosterlausnitz,Klosterlausnitz 50.91667 11.86667 P PPLA4 DE 15 00 16074 16074003 3521 322 Europe/Berlin 2011-04-25
-2953422 Bad Kleinen Bad Kleinen Bad Kleinen,Kleinen 53.76667 11.46667 P PPLA4 DE 12 00 13058 13058003 3787 50 Europe/Berlin 2011-04-25
-2953424 Bad Kissingen Bad Kissingen Bad Kissingen 50.2 10.08333 P PPL DE 02 21328 222 Europe/Berlin 2012-01-18
-2953430 Bad Iburg Bad Iburg 52.1549 8.04216 P PPL DE 06 00 11554 119 Europe/Berlin 2010-11-22
-2953434 Bad Hönningen Bad Honningen Bad Honningen,Bad Hönningen,Honningen,Hönningen 50.51667 7.31667 P PPL DE 08 5772 73 Europe/Berlin 2012-01-18
-2953435 Bad Honnef Bad Honnef Bad Honnef,Bad Honnef am Rhein,Honnef 50.64336 7.2278 P PPL DE 07 053 05382 05382008 25348 73 Europe/Berlin 2011-04-25
-2953436 Bad Homburg vor der Höhe Bad Homburg vor der Hohe Bad Homburg,Bad Homburg v.d. Hoehe,Bad Homburg v.d. Höhe,Bad Homburg vor der Hoehe,Bad Homburg vor der Höhe,Homburg vor der Hohe,Homburg vor der Höhe,Mpant Chommpournk,Μπαντ Χόμμπουργκ 50.22667 8.61963 P PPL DE 05 064 51859 182 Europe/Berlin 2010-11-15
-2953439 Bad Hersfeld Bad Hersfeld Bad Hersfeld,Bad-Khersfel'd,Hersfeld,Бад-Херсфельд 50.86667 9.7 P PPL DE 05 30725 216 Europe/Berlin 2012-01-18
-2953440 Bad Herrenalb Bad Herrenalb Bad Herrenalb,Herrenalb 48.79787 8.43617 P PPL DE 01 7521 365 Europe/Berlin 2011-02-07
-2953443 Bad Heilbrunn Bad Heilbrunn 47.74671 11.45934 P PPLA4 DE 02 091 09173 09173111 3697 681 Europe/Berlin 2011-04-25
-2953449 Bad Harzburg Bad Harzburg Bad Harzburg,Bad-Kharcburge,Stadt Bad Harzburg,Бад-Харцбурге 51.88333 10.56667 P PPL DE 06 22954 268 Europe/Berlin 2012-01-18
-2953451 Bad Grund Bad Grund 51.81021 10.23694 P PPL DE 06 2393 295 308 Europe/Berlin 2010-07-12
-2953456 Bad Gandersheim Bad Gandersheim Bad Gandersheim,Gandersheim 51.86667 10.03333 P PPL DE 06 11099 142 Europe/Berlin 2012-01-18
-2953458 Bad Freienwalde Bad Freienwalde Freienwalde 52.7873 14.0304 P PPL DE 11 13075 14 Europe/Berlin 2009-01-28
-2953459 Bad Frankenhausen Bad Frankenhausen Bad Frankenhausen,Frankenhausen 51.35 11.1 P PPL DE 15 8824 131 Europe/Berlin 2012-01-18
-2953460 Bad Feilnbach Bad Feilnbach Feilnbach 47.77331 12.00973 P PPLA4 DE 02 091 09187 09187129 7203 520 Europe/Berlin 2011-07-31
-2953464 Bad Essen Bad Essen Bad Essen 52.31667 8.33333 P PPLA4 DE 06 00 03459 03459003 15732 132 Europe/Berlin 2011-07-31
-2953482 Badenweiler Badenweiler Badwyler 47.80203 7.67601 P PPLA4 DE 01 083 08315 08315007 3829 456 Europe/Berlin 2011-04-25
-2953492 Badenheim Badenheim 49.83333 7.96667 P PPLA4 DE 08 00 07339 07339004 544 148 Europe/Berlin 2011-04-25
-2953493 Badenhausen Badenhausen 51.76996 10.20493 P PPLA4 DE 06 00 03156 03156004 1996 176 Europe/Berlin 2011-07-31
-2953494 Badenhard Badenhard 50.11667 7.63333 P PPLA4 DE 08 00 07140 07140005 164 427 Europe/Berlin 2011-04-25
-2953498 Badendorf Badendorf 53.86667 10.56667 P PPLA4 DE 10 00 01062 01062003 779 22 Europe/Berlin 2011-04-25
-2953504 Baden-Baden Baden-Baden Aquae Aureliae,Baden,Baden-Baden,b+b,ba deng ba deng,badn badn,Баден-Баден,באדן-באדן,بادن بادن,バーデン・バーデン,巴登巴登 48.75 8.25 P PPL DE 01 54239 179 Europe/Berlin 2012-01-18
-2953507 Bad Ems Bad Ems Bad Ems,Ems,バート・エムス 50.33333 7.71667 P PPL DE 08 9735 85 Europe/Berlin 2012-01-18
-2953508 Badem Badem 50 6.61667 P PPLA4 DE 08 00 07232 07232007 1135 355 Europe/Berlin 2011-04-25
-2953509 Bad Elster Bad Elster Bad Elster 50.28333 12.23333 P PPL DE 13 4021 493 Europe/Berlin 2012-01-18
-2953513 Badel Badel Badel,Badel uber Kalbe,Badel uber Salzwedel,Badel über Kalbe,Badel über Salzwedel 52.73333 11.31667 P PPLA4 DE 14 00 15081 15081035 487 41 Europe/Berlin 2011-04-25
-2953516 Bad Eilsen Bad Eilsen Bad Eilsen,Eilsen 52.24215 9.09822 P PPLA4 DE 06 00 03257 03257005 2288 106 Europe/Berlin 2011-04-25
-2953520 Bad Dürrheim Bad Durrheim Bad Durrheim,Bad Dürrheim,Durrheim,Dürrheim 48.01667 8.53333 P PPL DE 01 12829 700 Europe/Berlin 2012-01-18
-2953521 Bad Dürrenberg Bad Durrenberg Bad Durrenberg,Bad Dürrenberg,Durrenberg,Dürrenberg 51.3 12.06667 P PPL DE 14 11479 99 Europe/Berlin 2012-01-18
-2953522 Bad Dürkheim Bad Durkheim Bad Durkheim,Bad Dürkheim,Durkheim,Dürkheim 49.46861 8.16639 P PPL DE 08 18698 131 Europe/Berlin 2012-01-18
-2953524 Bad Düben Bad Duben Bad Duben,Bad Düben,Duben,Düben 51.59174 12.58492 P PPL DE 13 8998 91 Europe/Berlin 2011-03-30
-2953525 Bad Driburg Bad Driburg Bad Driburg 51.73333 9.01667 P PPL DE 07 19553 227 Europe/Berlin 2012-01-18
-2953528 Bad Doberan Bad Doberan Bad Doberan,Bad-Doberan,Doberan,Бад-Доберан 54.10712 11.90051 P PPL DE 12 00 11559 13 Europe/Berlin 2010-11-22
-2953529 Bad Ditzenbach Bad Ditzenbach 48.5883 9.70393 P PPLA4 DE 01 081 08117 08117006 3704 504 Europe/Berlin 2011-04-25
-2953531 Baddeckenstedt Baddeckenstedt 52.08333 10.23333 P PPLA4 DE 06 00 03158 03158002 3278 110 Europe/Berlin 2011-04-25
-2953534 Bad Buchau Bad Buchau Bad Buchau,Buchau,Buchau am Federsee 48.06667 9.61667 P PPL DE 01 4040 578 Europe/Berlin 2012-01-18
-2953535 Bad Brückenau Bad Bruckenau Bruckenau,Brückenau 50.30853 9.78985 P PPL DE 02 096 7304 315 Europe/Berlin 2010-11-15
-2953536 Bad Breisig Bad Breisig Bad Breisig,Bad Breissig 50.51667 7.26667 P PPL DE 08 8959 212 Europe/Berlin 2012-01-18
-2953537 Bad Bramstedt Bad Bramstedt Bad Bramstedt 53.91667 9.88333 P PPL DE 10 13177 9 Europe/Berlin 2012-01-18
-2953538 Bad Brambach Bad Brambach Bad Brambach,Brambach 50.21667 12.31667 P PPLA4 DE 13 145 14523 14523030 2284 579 Europe/Berlin 2011-04-25
-2953540 Bad Bocklet Bad Bocklet Bad Bocklet 50.26667 10.08333 P PPL DE 02 4642 271 Europe/Berlin 2012-01-18
-2953541 Bad Blankenburg Bad Blankenburg Bad Blankenburg 50.68333 11.26667 P PPL DE 15 7625 225 Europe/Berlin 2012-01-18
-2953542 Bad Bibra Bad Bibra Bad Bibra 51.2 11.58333 P PPL DE 14 2192 172 Europe/Berlin 2012-01-18
-2953543 Bad Bertrich Bad Bertrich 50.06667 7.03333 P PPLA4 DE 08 00 07135 07135501 960 301 Europe/Berlin 2011-04-25
-2953544 Bad Berneck im Fichtelgebirge Bad Berneck im Fichtelgebirge Bad Berneck,Bad Berneck im Fichtelgebirge,Berneck 50.05 11.66667 P PPL DE 02 4723 534 Europe/Berlin 2012-01-18
-2953545 Bad Berleburg Bad Berleburg Bad Berleburg,Berleberg,Berleburg 51.05 8.4 P PPL DE 07 20757 492 Europe/Berlin 2012-01-18
-2953548 Bad Berka Bad Berka Bad Berka 50.9 11.28333 P PPL DE 15 7744 274 Europe/Berlin 2012-01-18
-2953549 Bad Bergzabern Bad Bergzabern Bad Bergzabern,Bergzabern 49.10245 8.00092 P PPL DE 08 7995 172 Europe/Berlin 2010-11-10
-2953550 Badbergen Badbergen Badbergen 52.63333 7.98333 P PPLA4 DE 06 00 03459 03459007 4507 29 Europe/Berlin 2011-04-25
-2953552 Bad Bentheim Bad Bentheim Bad Bentheim 52.31667 7.16667 P PPL DE 06 15508 58 Europe/Berlin 2012-01-18
-2953553 Bad Bellingen Bad Bellingen Bad Bellingen,Bellingen 47.73147 7.55756 P PPLA4 DE 01 083 08336 08336006 3759 250 Europe/Berlin 2011-04-25
-2953558 Bad Aibling Bad Aibling Aibling,Albling 47.8638 12.01055 P PPL DE 02 091 17672 482 Europe/Berlin 2010-11-15
-2953559 Bad Abbach Bad Abbach Abach,Abacum,Abbach,Bad Abbach 48.93333 12.05 P PPL DE 02 10882 362 Europe/Berlin 2012-01-18
-2953568 Backnang Backnang Backnang 48.95 9.43333 P PPL DE 01 35778 260 Europe/Berlin 2012-01-18
-2953636 Bächingen an der Brenz Bachingen an der Brenz Bachingen,Bächingen 48.54627 10.31281 P PPL DE 02 1320 443 Europe/Berlin 2008-12-24
-2953662 Bachhagel Bachhagel 48.63217 10.32045 P PPLA4 DE 02 097 09773 09773112 2459 470 Europe/Berlin 2011-04-25
-2953666 Bachfeld Bachfeld 50.41667 10.98333 P PPLA4 DE 15 00 16072 16072001 520 443 Europe/Berlin 2011-04-25
-2953682 Bachenberg Bachenberg 50.71667 7.65 P PPLA4 DE 08 00 07132 07132004 127 297 Europe/Berlin 2011-04-25
-2953702 Bacharach Bacharach Bacharach 50.06667 7.76667 P PPL DE 08 2105 205 Europe/Berlin 2012-01-18
-2953712 Bach Bach 49.4 12.38333 P PPL DE 02 1759 479 Europe/Berlin 2006-01-17
-2953768 Babensham Babensham 48.08333 12.26667 P PPLA4 DE 02 091 09187 09187116 2892 488 Europe/Berlin 2011-04-25
-2953770 Babenhausen Babenhausen Babenhausen 49.96667 8.95778 P PPL DE 05 16575 125 Europe/Berlin 2012-01-18
-2953771 Babenhausen Babenhausen Babenhausen 48.15 10.25 P PPL DE 02 5342 561 Europe/Berlin 2012-02-02
-2953810 Baalberge Baalberge Baalberge 51.76667 11.8 P PPL DE 14 1479 67 Europe/Berlin 2012-01-18
-2953825 Aystetten Aystetten 48.4 10.76667 P PPLA4 DE 02 097 09772 09772117 3026 513 Europe/Berlin 2011-04-25
-2953828 Ayl Ayl 49.63333 6.55 P PPLA4 DE 08 00 07235 07235002 1479 173 Europe/Berlin 2011-04-25
-2953829 Aying Aying 47.9701 11.77752 P PPLA4 DE 02 091 09184 09184137 4040 612 Europe/Berlin 2011-04-25
-2953840 Axstedt Axstedt 53.35 8.76667 P PPLA4 DE 06 00 03356 03356001 1182 24 Europe/Berlin 2011-04-25
-2953841 Axien Axien 51.7 12.88333 P PPLA4 DE 14 00 15091 15091015 611 74 Europe/Berlin 2011-04-25
-2953852 Averlak Averlak Averlak 53.95 9.18333 P PPLA4 DE 10 00 01051 01051003 666 253 Europe/Berlin 2011-04-25
-2953866 Aventoft Aventoft Aventoft 54.9 8.81667 P PPLA4 DE 10 00 01054 01054009 523 4 Europe/Berlin 2011-07-31
-2953897 Auufer Auufer Auufer 53.92416 9.68302 P PPLA4 DE 10 00 01061 01061005 136 3 Europe/Berlin 2011-09-05
-2953932 Außernzell Aussernzell 48.71667 13.2 P PPLA4 DE 02 092 09271 09271114 1423 368 Europe/Berlin 2011-04-25
-2953970 Ausleben Ausleben Ausleben 52.08333 11.11667 P PPLA4 DE 14 00 15083 15083035 2023 107 Europe/Berlin 2011-04-25
-2953989 Ausacker Ausacker Ausacker 54.73333 9.56667 P PPLA4 DE 10 00 01059 01059103 523 40 Europe/Berlin 2011-04-25
-2954006 Aurich Aurich Auerk,Aurich 53.46667 7.48333 P PPL DE 06 40319 7 Europe/Berlin 2012-01-18
-2954012 Aura im Sinngrund Aura im Sinngrund Aura,Aura im Sinngrund 50.18333 9.56667 P PPL DE 02 1063 308 Europe/Berlin 2012-01-18
-2954022 Aurach Aurach 49.25 10.41667 P PPLA4 DE 02 095 09571 09571114 0 437 Europe/Berlin 2011-04-25
-2954039 Aumühle Aumuhle Aumuhle,Aumühle 53.53333 10.31667 P PPLA4 DE 10 00 01053 01053003 3016 39 Europe/Berlin 2011-04-25
-2954048 Auma Auma Auma 50.7 11.93333 P PPL DE 15 3235 393 Europe/Berlin 2012-01-18
-2954054 Aull Aull 50.4 8 P PPLA4 DE 08 00 07141 07141005 477 230 Europe/Berlin 2011-04-25
-2954065 Aulendorf Aulendorf Aulendorf 47.95 9.63333 P PPL DE 01 10063 577 Europe/Berlin 2012-01-18
-2954069 Auleben Auleben 51.4264 10.92968 P PPLA4 DE 15 00 16062 16062001 1089 172 Europe/Berlin 2011-04-25
-2954088 Au in der Hallertau Au in der Hallertau Au,Au bei Ambs,Au in der Hallertau 48.55 11.75 P PPL DE 02 5427 470 Europe/Berlin 2012-01-18
-2954120 Auhausen Auhausen 49.01667 10.63333 P PPLA4 DE 02 097 09779 09779117 1107 424 Europe/Berlin 2011-04-25
-2954123 Auhagen Auhagen 52.39828 9.29194 P PPLA4 DE 06 00 03257 03257004 1321 52 Europe/Berlin 2011-04-25
-2954127 Augustusburg Augustusburg Augustusburg 50.81667 13.1 P PPL DE 13 5202 460 Europe/Berlin 2012-01-18
-2954164 Augustdorf Augustdorf 51.90944 8.73173 P PPLA4 DE 07 057 05766 05766004 9889 169 Europe/Berlin 2011-07-31
-2954172 Augsburg Augsburg Aounksmpournk,Augsberg,Augsbourg,Augsburg,Augsburgas,Augsburgo,Augusta,Augusta Vindelicorum,ao ge si bao,augusuburuku,aukusuburuku,awghsbwrgh,Άουγκσμπουργκ,Аугсбург,آوغسبورغ,アウクスブルク,アウグスブルク,奥格斯堡 48.36667 10.88333 P PPLA2 DE 02 097 259196 485 Europe/Berlin 2010-11-15
-2954197 Auggen Auggen 47.78333 7.6 P PPLA4 DE 01 083 08315 08315004 2404 283 Europe/Berlin 2011-04-25
-2954213 Aufseß Aufsess 49.9 11.21667 P PPLA4 DE 02 094 09472 09472115 1410 433 Europe/Berlin 2011-04-25
-2954244 Aufhausen Aufhausen 48.86667 12.28333 P PPLA4 DE 02 093 09375 09375115 1767 348 Europe/Berlin 2011-04-25
-2954539 Auerstedt Auerstedt 51.1 11.58333 P PPLA4 DE 15 00 16071 16071002 492 151 Europe/Berlin 2011-04-25
-2954601 Auerbach Auerbach 50.68333 12.91667 P PPLA4 DE 13 145 14521 14521040 0 564 Europe/Berlin 2011-04-25
-2954602 Auerbach Auerbach Auerbach 50.51667 12.4 P PPL DE 13 21358 461 Europe/Berlin 2012-01-18
-2954603 Auerbach Auerbach Auehrbakh,Auerbach,Auerbach in der Oberpfalz,Aurbach,Ауэрбах 49.6925 11.6325 P PPL DE 02 9089 436 Europe/Berlin 2012-01-18
-2954608 Auerbach Auerbach 48.80353 13.09952 P PPLA4 DE 02 092 09271 09271113 2183 328 Europe/Berlin 2011-08-22
-2954641 Auen Auen 49.83333 7.6 P PPLA4 DE 08 00 07133 07133005 245 283 Europe/Berlin 2011-04-25
-2954651 Auel Auel 50.16667 7.76667 P PPLA4 DE 08 00 07141 07141004 233 284 Europe/Berlin 2011-04-25
-2954695 Aue Aue Aue,Aue-Auerhammer,Aueh,Stadt Aue,Ауэ 50.58333 12.7 P PPL DE 13 18554 355 Europe/Berlin 2012-01-18
-2954704 Auderath Auderath Anderath,Auderath 50.18333 7 P PPLA4 DE 08 00 07135 07135005 632 453 Europe/Berlin 2011-04-25
-2954723 Aubstadt Aubstadt 50.33333 10.43333 P PPLA4 DE 02 096 09673 09673113 781 326 Europe/Berlin 2011-04-25
-2954774 Aub Aub Aub 49.55 10.06667 P PPL DE 02 1637 313 Europe/Berlin 2012-01-18
-2954775 Au am Rhein Au am Rhein Au,Au am Rhein 48.95 8.23333 P PPLA4 DE 01 082 08216 08216002 3365 107 Europe/Berlin 2011-07-31
-2954803 Au Au 47.95 7.83333 P PPLA4 DE 01 083 08315 08315003 1312 367 Europe/Berlin 2011-04-25
-2954874 Atzendorf Atzendorf Atzendorf,Atzendorf (Stassfurt),Atzendorf (Staßfurt) 51.91667 11.6 P PPL DE 14 00 15089 15089310 1586 82 Europe/Berlin 2012-01-18
-2954884 Atzelgift Atzelgift 50.7 7.83333 P PPLA4 DE 08 00 07143 07143205 638 296 Europe/Berlin 2011-04-25
-2954897 Atting Atting 48.9 12.48333 P PPLA4 DE 02 092 09278 09278117 1716 324 Europe/Berlin 2011-04-25
-2954906 Attenweiler Attenweiler 48.13333 9.7 P PPLA4 DE 01 084 08426 08426011 1696 605 Europe/Berlin 2011-04-25
-2954910 Attenkirchen Attenkirchen 48.5 11.76667 P PPLA4 DE 02 091 09178 09178115 2585 510 Europe/Berlin 2011-04-25
-2954916 Attenhofen Attenhofen 48.65072 11.8485 P PPLA4 DE 02 092 09273 09273115 1352 458 Europe/Berlin 2011-04-25
-2954921 Attenhausen Attenhausen 50.3 7.88333 P PPLA4 DE 08 00 07141 07141003 403 311 Europe/Berlin 2011-04-25
-2954932 Attendorn Attendorn Attandara 51.12645 7.90333 P PPL DE 07 059 24773 260 Europe/Berlin 2011-11-06
-2954979 Astert Astert 50.7 7.78333 P PPLA4 DE 08 00 07143 07143204 259 274 Europe/Berlin 2011-04-25
-2955007 Aßling Assling 47.99297 12.00643 P PPLA4 DE 02 091 09175 09175112 4288 488 Europe/Berlin 2011-04-25
-2955009 Aßlar Asslar Asslar,Aßlar 50.59163 8.46273 P PPL DE 05 13772 166 Europe/Berlin 2011-07-15
-2955025 Asselfingen Asselfingen 48.52959 10.19166 P PPLA4 DE 01 084 08425 08425011 1075 497 Europe/Berlin 2011-04-25
-2955050 Assamstadt Assamstadt Assamstadt,Assumstadt 49.42806 9.68611 P PPLA4 DE 01 081 08128 08128006 2098 331 Europe/Berlin 2011-04-25
-2955053 Aspisheim Aspisheim 49.9 7.98333 P PPLA4 DE 08 00 07339 07339002 973 223 Europe/Berlin 2011-04-25
-2955068 Asperg Asperg 48.90525 9.13502 P PPL DE 01 12870 275 Europe/Berlin 2008-12-21
-2955095 Aspach Aspach 50.95 10.6 P PPLA4 DE 15 00 16067 16067002 480 314 Europe/Berlin 2011-04-25
-2955126 Asendorf Asendorf 53.28333 9.98333 P PPLA4 DE 06 00 03353 03353002 1809 36 Europe/Berlin 2011-04-25
-2955127 Asendorf Asendorf 52.76667 9 P PPLA4 DE 06 00 03251 03251002 3108 49 Europe/Berlin 2011-04-25
-2955159 Aschheim Aschheim 48.17112 11.71675 P PPLA4 DE 02 091 09184 09184112 6531 515 Europe/Berlin 2011-04-25
-2955168 Aschersleben Aschersleben Aschersleben,Ashersleben,Ашерслебен 51.75 11.46667 P PPL DE 14 24892 106 Europe/Berlin 2012-01-18
-2955194 Aschenhausen Aschenhausen Aschenhausen 50.6 10.2 P PPLA4 DE 15 00 16066 16066002 200 529 Europe/Berlin 2011-04-25
-2955222 Ascheffel Ascheffel Ascheffel 54.43333 9.7 P PPLA4 DE 10 00 01058 01058008 966 39 Europe/Berlin 2011-04-25
-2955223 Ascheberg Ascheberg 54.15027 10.34552 P PPL DE 10 00 3178 40 Europe/Berlin 2010-11-20
-2955224 Ascheberg Ascheberg Ascheberg 51.78333 7.61667 P PPLA4 DE 07 055 05558 05558004 15184 68 Europe/Berlin 2011-04-25
-2955250 Aschbach Aschbach 49.6 7.58333 P PPLA4 DE 08 00 07336 07336005 0 339 Europe/Berlin 2011-04-25
-2955259 Aschau am Inn Aschau am Inn Aschau,Aschau am Inn,Aschau bei Kraiburg 48.2 12.35 P PPL DE 02 2907 462 Europe/Berlin 2012-01-18
-2955272 Aschaffenburg Aschaffenburg Asafenburga,Aschaffenbourg,Aschaffenburg,Ashaffenburg,Auscheffenburg,Ašafenburga,ashaffenburuku,Ашаффенбург,アシャッフェンブルク 49.97389 9.14917 P PPL DE 02 096 09661 68551 135 Europe/Berlin 2012-02-28
-2955282 Ascha Ascha 49 12.63333 P PPLA4 DE 02 092 09278 09278116 1517 336 Europe/Berlin 2011-04-25
-2955315 Asbach Asbach 50.66667 7.41667 P PPLA4 DE 08 00 07138 07138003 7060 249 Europe/Berlin 2011-04-25
-2955316 Asbach Asbach 49.81667 7.28333 P PPLA4 DE 08 00 07134 07134004 191 428 Europe/Berlin 2011-04-25
-2955363 Arzfeld Arzfeld 50.08333 6.26667 P PPLA4 DE 08 00 07232 07232201 1276 488 Europe/Berlin 2011-04-25
-2955367 Arzberg Arzberg 51.53333 13.13333 P PPLA4 DE 13 147 14730 14730010 2304 87 Europe/Berlin 2011-04-25
-2955368 Arzberg Arzberg Arzberg 50.06667 12.2 P PPL DE 02 6075 478 Europe/Berlin 2012-01-18
-2955376 Arzbach Arzbach 50.36667 7.75 P PPLA4 DE 08 00 07141 07141201 1874 306 Europe/Berlin 2011-04-25
-2955389 Artlenburg Artlenburg 53.37182 10.48793 P PPL DE 06 1640 6 Europe/Berlin 2011-09-04
-2955394 Artern Artern Artern 51.36667 11.3 P PPL DE 15 6270 166 Europe/Berlin 2012-01-18
-2955410 Arrach Arrach 49.2 13 P PPLA4 DE 02 093 09372 09372113 2769 476 Europe/Berlin 2011-04-25
-2955415 Arpsdorf Arpsdorf Arpsdorf 54.03333 9.86667 P PPLA4 DE 10 00 01058 01058007 245 11 Europe/Berlin 2011-04-25
-2955416 Arpke Arpke Arebeke [a. 1166],Orpke 52.38597 10.10047 P PPL DE 06 00 03241 03241011 2962 67 Europe/Berlin 2011-02-16
-2955421 Bad Arolsen Bad Arolsen Bad Arolsen 51.37982 9.01445 P PPL DE 05 066 16854 292 Europe/Berlin 2010-11-15
-2955429 Arnstorf Arnstorf Armstorf,Arnstorf 48.56667 12.81667 P PPL DE 02 6570 373 Europe/Berlin 2012-01-18
-2955431 Arnstein Arnstein Arnstein 49.97972 9.96694 P PPL DE 02 8409 207 Europe/Berlin 2012-02-28
-2955439 Arnstadt Arnstadt Arnshtadte,Arnstadt,Арнштадте 50.83333 10.95 P PPL DE 15 25678 282 Europe/Berlin 2012-01-18
-2955443 Arnshöfen Arnshofen 50.55 7.86667 P PPLA4 DE 08 00 07143 07143203 154 430 Europe/Berlin 2011-04-25
-2955451 Arnsgereuth Arnsgereuth Arnsgereuth 50.61667 11.31667 P PPLA4 DE 15 00 16073 16073004 253 525 Europe/Berlin 2011-04-25
-2955459 Arnsdorf Arnsdorf 51.1 13.98333 P PPLA4 DE 13 146 14625 14625010 0 265 Europe/Berlin 2011-04-25
-2955464 Arnschwang Arnschwang 49.26667 12.81667 P PPLA4 DE 02 093 09372 09372112 2058 390 Europe/Berlin 2011-04-25
-2955471 Arnsberg Arnsberg Arnsberg,Arnsberga,Arnsberge,Арнсберге 51.38333 8.08333 P PPLA2 DE 07 059 76612 295 Europe/Berlin 2010-11-21
-2955519 Arneburg Arneburg 52.67565 12.00514 P PPL DE 14 00 1754 56 Europe/Berlin 2010-11-22
-2955527 Arnbruck Arnbruck 49.13012 12.9982 P PPLA4 DE 02 092 09276 09276113 2048 571 Europe/Berlin 2011-08-07
-2955538 Armstorf Armstorf 53.6 9.06667 P PPLA4 DE 06 00 03352 03352002 645 20 Europe/Berlin 2011-04-25
-2955541 Armstedt Armstedt Armstedt 53.97133 9.8471 P PPLA4 DE 10 00 01060 01060003 413 22 Europe/Berlin 2011-08-24
-2955542 Armsheim Armsheim 49.80972 8.05667 P PPLA4 DE 08 00 07331 07331004 2645 141 Europe/Berlin 2011-04-25
-2955570 Arlewatt Arlewatt Arlewatt 54.53333 9.08333 P PPLA4 DE 10 00 01054 01054007 327 7 Europe/Berlin 2011-04-25
-2955592 Arkebek Arkebek Arkebek 54.16667 9.25 P PPLA4 DE 10 00 01051 01051002 251 73 Europe/Berlin 2011-04-25
-2955598 Arholzen Arholzen 51.86667 9.56667 P PPLA4 DE 06 00 03255 03255001 417 215 Europe/Berlin 2011-04-25
-2955605 Argenthal Argenthal 49.96667 7.6 P PPLA4 DE 08 00 07140 07140003 1645 485 Europe/Berlin 2011-04-25
-2955610 Argenschwang Argenschwang 49.88333 7.7 P PPLA4 DE 08 00 07133 07133004 385 291 Europe/Berlin 2011-04-25
-2955619 Arft Arft 50.38333 7.08333 P PPLA4 DE 08 00 07137 07137006 295 532 Europe/Berlin 2011-04-25
-2955626 Aresing Aresing 48.53333 11.3 P PPLA4 DE 02 091 09185 09185113 0 429 Europe/Berlin 2011-04-25
-2955627 Aresing Aresing 48.28333 12.6 P PPL DE 02 2741 444 Europe/Berlin 2006-01-17
-2955633 Arenshausen Arenshausen Ahrenshausen,Arenshausen 51.38333 9.96667 P PPLA4 DE 15 00 16061 16061001 1014 222 Europe/Berlin 2011-04-25
-2955645 Arenrath Arenrath 49.95 6.73333 P PPLA4 DE 08 00 07231 07231003 354 294 Europe/Berlin 2011-04-25
-2955651 Luftkurort Arendsee Luftkurort Arendsee Arendsee 52.88073 11.48621 P PPL DE 14 00 2962 32 Europe/Berlin 2010-11-22
-2955662 Aremberg Aremberg 50.41667 6.8 P PPLA4 DE 08 00 07131 07131005 254 489 Europe/Berlin 2011-04-25
-2955697 Arberg Arberg 49.15 10.61667 P PPL DE 02 2247 427 Europe/Berlin 2006-01-17
-2955701 Arbach Arbach 50.28333 7.05 P PPLA4 DE 08 00 07233 07233201 156 374 Europe/Berlin 2011-04-25
-2955722 Appenweier Appenweier Appenweier,Appenweir 48.53333 7.98333 P PPLA4 DE DE 01 083 08317 08317005 0 158 Europe/Berlin 2011-04-25
-2955732 Appenheim Appenheim 49.93 8.03333 P PPLA4 DE 08 00 07339 07339001 1393 175 Europe/Berlin 2011-04-25
-2955745 Appen Appen Appen 53.65 9.73333 P PPLA4 DE 10 00 01056 01056001 5838 0 Europe/Berlin 2011-04-25
-2955751 Appeln Appeln 53.45218 8.89635 P PPLA4 DE 06 00 03352 03352001 467 22 Europe/Berlin 2011-10-30
-2955762 Appel Appel 53.38333 9.75 P PPLA4 DE 06 00 03353 03353001 1930 42 Europe/Berlin 2011-04-25
-2955770 Apolda Apolda Apol'de,Apolda,Stadt Apolda,Апольде 51.01667 11.5 P PPL DE 15 24793 189 Europe/Berlin 2012-01-18
-2955780 Apfeltrach Apfeltrach 48.01667 10.5 P PPLA4 DE 02 097 09778 09778113 951 625 Europe/Berlin 2011-04-25
-2955787 Apfelstädt Apfelstadt 50.90157 10.88977 P PPL DE 15 00 1504 251 Europe/Berlin 2010-11-22
-2955815 Apensen Apensen 53.43333 9.61667 P PPLA4 DE 06 00 03359 03359003 2987 43 Europe/Berlin 2011-04-25
-2955817 Apen Apen Apen 53.21667 7.8 P PPLA4 DE 06 00 03451 03451001 10992 0 Europe/Berlin 2011-07-31
-2955822 Apelern Apelern Aop'larn 52.28979 9.3358 P PPLA4 DE 06 00 03257 03257002 2673 95 Europe/Berlin 2011-03-14
-2955835 Anzing Anzing 48.15171 11.8533 P PPLA4 DE 02 091 09175 09175111 3531 518 Europe/Berlin 2011-04-25
-2955868 Antweiler Antweiler 50.4 6.83333 P PPLA4 DE 08 00 07131 07131004 573 302 Europe/Berlin 2011-04-25
-2955914 Antdorf Antdorf 47.75 11.3 P PPLA4 DE 02 091 09190 09190113 1106 622 Europe/Berlin 2011-04-25
-2955931 Anschau Anschau 50.3 7.1 P PPLA4 DE 08 00 07137 07137004 284 429 Europe/Berlin 2011-04-25
-2955936 Ansbach Ansbach Ansbach,Ansbakh,Ансбах 49.3 10.58333 P PPLA2 DE 02 095 31839 405 Europe/Berlin 2010-11-15
-2955939 Anrode Anrode 51.26667 10.33333 P PPLA4 DE 15 00 16064 16064073 3562 367 Europe/Berlin 2011-04-25
-2955940 Anröchte Anrochte 51.56667 8.33333 P PPLA4 DE 07 059 05974 05974004 10847 186 Europe/Berlin 2011-04-25
-2955951 Annweiler am Trifels Annweiler am Trifels Annweiler,Annweiler am Trifels 49.2 7.96667 P PPL DE 08 7316 199 Europe/Berlin 2012-01-18
-2955999 Annaburg Annaburg Annaburg 51.73333 13.03333 P PPL DE 14 3512 73 Europe/Berlin 2012-01-18
-2956005 Annaberg-Buchholz Annaberg-Buchholz Annaberg,Annaberg-Bukhkhol'c,Buchholz,Stadt Annaberg-Buchholz,Аннаберг-Буххольц 50.57953 13.00627 P PPL DE 13 23092 627 Europe/Berlin 2010-01-29
-2956014 Ankum Ankum Ankum 52.55 7.88333 P PPLA4 DE 06 00 03459 03459002 7186 58 Europe/Berlin 2011-07-31
-2956018 Anklam Anklam Anklam,Анклам 53.85637 13.68965 P PPL DE 12 14694 8 Europe/Berlin 2010-01-29
-2956019 Ankershagen Ankershagen 53.47987 12.96696 P PPLA4 DE 12 00 13056 13056006 716 59 Europe/Berlin 2011-04-25
-2956044 Anhausen Anhausen 50.5 7.55 P PPLA4 DE 08 00 07138 07138002 1324 305 Europe/Berlin 2011-04-25
-2956081 Angersdorf Angersdorf Angersdorf 51.46667 11.91667 P PPL DE 14 1237 83 Europe/Berlin 2012-01-18
-2956090 Angern Angern Angern 52.35 11.73333 P PPLA4 DE 14 00 15083 15083030 1380 43 Europe/Berlin 2011-04-25
-2956093 Angermünde Angermunde 53.01499 13.99924 P PPL DE 11 15453 47 Europe/Berlin 2009-01-28
-2956119 Anger Anger 47.80186 12.85808 P PPLA4 DE 02 091 09172 09172112 0 538 Europe/Berlin 2011-04-25
-2956143 Angelroda Angelroda Angelroda 50.75 10.86667 P PPLA4 DE 15 00 16070 16070003 445 464 Europe/Berlin 2011-04-25
-2956179 Andisleben Andisleben 51.08333 10.91667 P PPLA4 DE 15 00 16068 16068002 608 153 Europe/Berlin 2011-04-25
-2956206 Andernach Andernach Andernach,Andernakh,Stadt Andernach,Андернах 50.43333 7.4 P PPL DE 08 29599 84 Europe/Berlin 2012-01-18
-2956212 Anderlingen Anderlingen 53.36667 9.3 P PPLA4 DE 06 00 03357 03357003 937 26 Europe/Berlin 2011-04-25
-2956239 Andenhausen Andenhausen 50.66667 10.06667 P PPLA4 DE 15 00 16063 16063001 238 578 Europe/Berlin 2011-04-25
-2956253 Andechs Andechs Abbaye d'Andechs,Andechs,Andeks,Kloster Andechs,Андекс 47.97464 11.18279 P PPLA4 DE 02 091 09188 09188117 3181 703 Europe/Berlin 2011-04-25
-2956277 Amtzell Amtzell Amtzell 47.7 9.75 P PPLA4 DE 01 084 08436 08436006 3530 559 Europe/Berlin 2011-07-31
-2956310 Amstetten Amstetten 48.57876 9.87388 P PPLA4 DE 01 084 08425 08425008 3999 589 Europe/Berlin 2011-04-25
-2956378 Ampfing Ampfing 48.254 12.41515 P PPLA4 DE 02 091 09183 09183112 6188 418 Europe/Berlin 2011-04-25
-2956404 Amöneburg Amoneburg 50.79595 8.9233 P PPL DE 05 5390 323 Europe/Berlin 2010-10-27
-2956434 Ammerndorf Ammerndorf Ammerndorf 49.4 10.86667 P PPL DE 02 2099 363 Europe/Berlin 2012-01-18
-2956564 Amerdingen Amerdingen 48.73333 10.48333 P PPLA4 DE 02 097 09779 09779112 861 532 Europe/Berlin 2011-04-25
-2956570 Amerang Amerang 47.99139 12.30795 P PPLA4 DE 02 091 09187 09187113 3574 538 Europe/Berlin 2011-04-25
-2956584 Amelinghausen Amelinghausen 53.12397 10.21274 P PPLA4 DE 06 00 03355 03355002 3915 66 Europe/Berlin 2011-08-30
-2956656 Amberg Amberg Amberg,Gebenbach,amberg,Амберг 49.44139 11.86222 P PPL DE 02 44737 377 Europe/Berlin 2012-01-18
-2956657 Amberg Amberg 48.06667 10.68333 P PPLA4 DE 02 097 09778 09778111 1323 599 Europe/Berlin 2011-04-25
-2956710 Alzey Alzey Alzey 49.75167 8.11611 P PPL DE 08 18241 179 Europe/Berlin 2012-01-18
-2956715 Alzenau in Unterfranken Alzenau in Unterfranken Alzenau,Alzenau in Unterfranken 50.08333 9.06667 P PPL DE 02 18932 139 Europe/Berlin 2012-01-18
-2956729 Alveslohe Alveslohe Alveslohe 53.78333 9.91667 P PPLA4 DE 10 00 01060 01060002 2449 20 Europe/Berlin 2011-04-25
-2956747 Alt Zachun Alt Zachun 53.48333 11.33333 P PPLA4 DE 12 00 13054 13054002 422 34 Europe/Berlin 2011-04-25
-2956757 Altwigshagen Altwigshagen 53.7 13.83333 P PPLA4 DE 12 00 13062 13062003 431 4 Europe/Berlin 2011-04-25
-2956772 Altweidelbach Altweidelbach 49.98333 7.56667 P PPLA4 DE 08 00 07140 07140002 248 414 Europe/Berlin 2011-04-25
-2956778 Altwarp Altwarp 53.75 14.28333 P PPLA4 DE 12 00 13062 13062002 622 -9999 Europe/Berlin 2011-04-25
-2956781 Alt Wallmoden Alt Wallmoden Alt Wallmoden (Wallmoden),Alt-Wallmoden,Walmonthem [a. 1016] 52.01933 10.30294 P PPL DE 06 00 03153 03153014 1095 136 Europe/Berlin 2011-03-20
-2956787 Altusried Altusried Altusried 47.8 10.21667 P PPL DE 02 9950 681 Europe/Berlin 2012-01-18
-2956789 Alt Tucheband Alt Tucheband 52.53732 14.51225 P PPLA4 DE 11 00 12064 12064009 1019 11 Europe/Berlin 2011-07-31
-2956801 Alt Tellin Alt Tellin 53.85 13.25 P PPLA4 DE 12 00 13052 13052001 509 16 Europe/Berlin 2011-04-25
-2956808 Alt Sührkow Alt Suhrkow 53.8 12.65 P PPLA4 DE 12 00 13053 13053002 471 10 Europe/Berlin 2011-04-25
-2956809 Altstrimmig Altstrimmig 50.1 7.3 P PPLA4 DE 08 00 07135 07135004 348 349 Europe/Berlin 2011-04-25
-2956829 Altstadt Altstadt 53.55 10 P PPLX DE 04 1661 24 Europe/Berlin 2011-08-20
-2956847 Altshausen Altshausen 47.93333 9.53333 P PPLA4 DE 01 084 08436 08436005 4832 586 Europe/Berlin 2011-07-31
-2956853 Alt Schwerin Alt Schwerin 53.51255 12.3464 P PPLA4 DE 12 00 13056 13056004 590 69 Europe/Berlin 2011-07-31
-2956875 Altscheid Altscheid 50.01667 6.4 P PPLA4 DE 08 00 07232 07232003 102 383 Europe/Berlin 2011-04-25
-2956891 Altrip Altrip Altrip 49.43556 8.49472 P PPLA4 DE 08 00 07338 07338001 7802 97 Europe/Berlin 2011-07-31
-2956893 Altrich Altrich 49.95 6.91667 P PPLA4 DE 08 00 07231 07231001 1579 157 Europe/Berlin 2011-04-25
-2956940 Altötting Altotting 48.23333 12.68333 P PPL DE 02 12902 405 Europe/Berlin 2006-01-17
-2956951 Altomünster Altomunster Altmunster 48.38767 11.25691 P PPL DE 02 091 7275 510 Europe/Berlin 2010-11-15
-2956985 Alt Mölln Alt Molln Alt Molln,Alt Mölln 53.61667 10.65 P PPLA4 DE 10 00 01053 01053002 860 35 Europe/Berlin 2011-04-25
-2956987 Altmittweida Altmittweida 50.96667 12.95 P PPLA4 DE 13 145 14522 14522010 2132 298 Europe/Berlin 2011-04-25
-2956988 Alt Meteln Alt Meteln 53.75 11.35 P PPLA4 DE 12 00 13058 13058001 1179 48 Europe/Berlin 2011-04-25
-2957021 Altlußheim Altlussheim Altlussheim,Altlußheim 49.30167 8.49917 P PPLA4 DE 01 082 08226 08226003 5289 102 Europe/Berlin 2011-04-25
-2957040 Altleiningen Altleiningen Altleiningen 49.5075 8.07333 P PPLA4 DE 08 00 07332 07332001 1950 241 Europe/Berlin 2011-04-25
-2957043 Altlay Altlay 49.98333 7.26667 P PPLA4 DE 08 00 07135 07135003 515 372 Europe/Berlin 2011-04-25
-2957051 Altlandsberg Altlandsberg Altlandsberg 52.56667 13.73333 P PPL DE 11 8804 59 Europe/Berlin 2012-01-18
-2957061 Alt Krenzlin Alt Krenzlin 53.31667 11.3 P PPLA4 DE 12 00 13054 13054001 806 48 Europe/Berlin 2011-04-25
-2957073 Altkirchen Altkirchen 50.93333 12.35 P PPLA4 DE 15 00 16077 16077002 1168 224 Europe/Berlin 2011-04-25
-2957087 Altkalen Altkalen 53.89888 12.73959 P PPLA4 DE 12 00 13053 13053003 934 47 Europe/Berlin 2011-04-25
-2957103 Althüttendorf Althuttendorf 52.96229 13.80724 P PPLA4 DE 11 00 12060 12060012 731 75 Europe/Berlin 2011-04-25
-2957108 Althütte Althutte 48.91565 9.56984 P PPLA4 DE 01 081 08119 08119004 4263 497 Europe/Berlin 2011-04-25
-2957113 Althornbach Althornbach 49.2 7.36667 P PPLA4 DE 08 00 07340 07340201 789 242 Europe/Berlin 2011-04-25
-2957133 Althengstett Althengstett 48.72325 8.79434 P PPLA4 DE 01 082 08235 08235007 8201 506 Europe/Berlin 2011-04-25
-2957145 Altheim Altheim 48.32801 9.77041 P PPLA4 DE 01 084 08425 08425004 0 596 Europe/Berlin 2011-04-25
-2957148 Altheim Altheim 48.14527 9.44738 P PPLA4 DE 01 084 08426 08426008 0 541 Europe/Berlin 2011-04-25
-2957153 Althegnenberg Althegnenberg 48.23333 11.06667 P PPLA4 DE 02 091 09179 09179114 1843 535 Europe/Berlin 2011-04-25
-2957207 Altfraunhofen Altfraunhofen 48.45 12.16667 P PPLA4 DE 02 092 09274 09274114 2057 460 Europe/Berlin 2011-04-25
-2957327 Altersbach Altersbach Altersbach 50.7 10.53333 P PPLA4 DE 15 00 16066 16066001 569 445 Europe/Berlin 2011-04-25
-2957351 Alterkülz Alterkulz 50.03333 7.46667 P PPLA4 DE 08 00 07140 07140001 446 391 Europe/Berlin 2011-04-25
-2957437 Altentreptow Altentreptow Altentreptow 53.68333 13.25 P PPL DE 12 6486 16 Europe/Berlin 2012-01-18
-2957439 Altenthann Altenthann 49.1 12.3 P PPLA4 DE 02 093 09375 09375114 1607 498 Europe/Berlin 2011-04-25
-2957459 Altensteig Altensteig Altensteig 48.58333 8.6 P PPL DE 01 11266 510 Europe/Berlin 2012-01-18
-2957463 Altenstadt Altenstadt Altenstadt 50.28333 8.95 P PPLA4 DE 05 064 06440 06440001 12258 120 Europe/Berlin 2011-04-25
-2957468 Altenstadt Altenstadt 48.1603 10.11437 P PPL DE 02 4790 528 Europe/Berlin 2011-04-13
-2957469 Altenstadt Altenstadt 47.81667 10.86667 P PPLA4 DE 02 091 09190 09190111 3282 716 Europe/Berlin 2011-04-25
-2957499 Altenriet Altenriet 48.5914 9.22186 P PPLA4 DE 01 081 08116 08116006 1820 407 Europe/Berlin 2011-04-25
-2957516 Altenpleen Altenpleen 54.35456 12.9564 P PPLA4 DE 12 00 13057 13057005 1022 2 Europe/Berlin 2011-07-31
-2957528 Altenmünster Altenmunster 48.46495 10.59065 P PPLA4 DE 02 097 09772 09772115 3846 435 Europe/Berlin 2011-04-25
-2957532 Altenmoor Altenmoor Altenmoor 53.76667 9.56667 P PPLA4 DE 10 00 01061 01061004 275 252 Europe/Berlin 2011-04-25
-2957538 Altenmedingen Altenmedingen 53.1305 10.60163 P PPLA4 DE 06 00 03360 03360001 1585 52 Europe/Berlin 2011-04-25
-2957543 Altenmarkt Altenmarkt 47.7796 12.1356 P PPL DE 02 091 4219 453 Europe/Berlin 2010-11-15
-2957555 Altenkunstadt Altenkunstadt 50.12504 11.2503 P PPLA4 DE 02 094 09478 09478111 5608 289 Europe/Berlin 2011-04-25
-2957557 Altenkrempe Altenkrempe Altenkrempe 54.13333 10.83333 P PPLA4 DE 10 00 01055 01055002 1145 253 Europe/Berlin 2011-04-25
-2957566 Altenkirchen Altenkirchen 54.63624 13.34332 P PPLA4 DE 12 00 13061 13061002 1138 9 Europe/Berlin 2011-12-09
-2957567 Altenkirchen Altenkirchen 50.7 7.65 P PPL DE 08 6385 262 Europe/Berlin 2006-01-17
-2957570 Altenkirchen Altenkirchen 49.44313 7.32084 P PPLA4 DE 08 00 07336 07336004 1410 294 Europe/Berlin 2011-04-25
-2957588 Altenholz Altenholz Altenholz 54.4 10.13333 P PPLA4 DE 10 00 01058 01058005 9737 23 Europe/Berlin 2011-07-31
-2957599 Altenhof Altenhof 54.43333 9.86667 P PPLA4 DE 10 00 01058 01058004 304 3 Europe/Berlin 2011-04-25
-2957600 Altenhof Altenhof 53.3545 12.35662 P PPLA4 DE 12 00 13056 13056005 403 92 Europe/Berlin 2011-04-25
-2957631 Altenhausen Altenhausen 52.26196 11.25429 P PPLA4 DE 14 00 15083 15083020 383 144 Europe/Berlin 2011-07-31
-2957658 Altenhagen Altenhagen 53.76667 13.11667 P PPLA4 DE 12 00 13052 13052002 368 84 Europe/Berlin 2011-04-25
-2957678 Altengottern Altengottern 51.16667 10.56667 P PPLA4 DE 15 00 16064 16064001 1149 178 Europe/Berlin 2011-04-25
-2957681 Altenglan Altenglan 49.55 7.46667 P PPLA4 DE 08 00 07336 07336003 3048 201 Europe/Berlin 2011-07-31
-2957701 Altenfeld Altenfeld 50.56667 10.96667 P PPLA4 DE 15 00 16070 16070002 1116 644 Europe/Berlin 2011-04-25
-2957733 Altendorf Altendorf 50.08424 11.16786 P PPL DE 02 2017 461 Europe/Berlin 2008-08-19
-2957735 Altendorf Altendorf 49.4055 12.28151 P PPLA4 DE 02 093 09376 09376112 927 378 Europe/Berlin 2011-04-25
-2957742 Altendiez Altendiez 50.36667 7.98333 P PPLA4 DE 08 00 07141 07141002 2332 156 Europe/Berlin 2011-04-25
-2957761 Alten Buseck Alten Buseck 50.61667 8.75 P PPL DE 05 13351 197 Europe/Berlin 2006-01-17
-2957773 Altenburg Altenburg Al'tenburg,Altenbourg,Altenburg,Альтенбург 50.98333 12.45 P PPL DE 15 38568 227 Europe/Berlin 2012-01-18
-2957823 Altenbeuthen Altenbeuthen 50.5919 11.60062 P PPLA4 DE 15 00 16073 16073002 265 496 Europe/Berlin 2011-04-25
-2957829 Altenberge Altenberge Altenberge 52.05 7.46667 P PPLA4 DE 07 055 05566 05566004 9796 108 Europe/Berlin 2011-04-25
-2957830 Altenberga Altenberga Altenberga 50.83333 11.53333 P PPLA4 DE 15 00 16074 16074002 749 247 Europe/Berlin 2011-04-25
-2957834 Altenberg Altenberg 50.76556 13.75334 P PPL DE 13 146 5167 753 Europe/Berlin 2010-11-15
-2957864 Altenbeken Altenbeken 51.76455 8.94201 P PPLA4 DE 07 057 05774 05774004 9716 247 Europe/Berlin 2011-04-25
-2957869 Altenbamberg Altenbamberg 49.78333 7.83333 P PPLA4 DE 08 00 07133 07133003 753 148 Europe/Berlin 2011-04-25
-2957880 Altenau Altenau Altenau 51.8 10.45 P PPL DE 06 2045 494 Europe/Berlin 2012-01-18
-2957883 Altenahr Altenahr 50.51694 6.99206 P PPLA4 DE 08 00 07131 07131003 1707 169 Europe/Berlin 2011-04-25
-2957886 Altena Altena Altena 51.3 7.66667 P PPL DE 07 20862 277 Europe/Berlin 2012-01-18
-2957938 Alteglofsheim Alteglofsheim Alteglofsheim,Eglofsheim 48.91667 12.2 P PPLA4 DE 02 093 09375 09375113 3187 372 Europe/Berlin 2011-04-25
-2957949 Altefähr Altefahr 54.32994 13.12643 P PPLA4 DE 12 00 13061 13061001 1301 14 Europe/Berlin 2011-07-31
-2958016 Alt Duvenstedt Alt Duvenstedt Alt Duvenstedt 54.36667 9.65 P PPLA4 DE 10 00 01058 01058003 1875 6 Europe/Berlin 2011-07-31
-2958024 Altdorf Altdorf 49.3875 11.35722 P PPL DE 02 15312 437 Europe/Berlin 2006-01-17
-2958026 Altdorf Altdorf 49.28722 8.21611 P PPLA4 DE 08 00 07337 07337002 745 122 Europe/Berlin 2011-04-25
-2958028 Altdorf Altdorf 48.63112 8.99626 P PPLA4 DE 01 081 08115 08115002 4426 479 Europe/Berlin 2011-04-25
-2958029 Altdorf Altdorf 48.59421 9.27165 P PPLA4 DE 01 081 08116 08116005 1407 355 Europe/Berlin 2011-04-25
-2958032 Altdorf Altdorf 48.15 12.18333 P PPL DE 02 11355 504 Europe/Berlin 2006-01-17
-2958036 Altdöbern Altdobern 51.65 14.03333 P PPLA4 DE 11 00 12066 12066008 3067 88 Europe/Berlin 2011-04-25
-2958048 Alt Bukow Alt Bukow 53.99758 11.60706 P PPLA4 DE 12 00 13051 13051002 558 35 Europe/Berlin 2011-04-25
-2958066 Alt Bennebek Alt Bennebek 54.38333 9.43333 P PPLA4 DE 10 00 01059 01059001 346 3 Europe/Berlin 2011-04-25
-2958085 Altbach Altbach 48.72268 9.38078 P PPLA4 DE 01 081 08116 08116004 5793 248 Europe/Berlin 2011-04-25
-2958092 Ammerthal Ammerthal Altammerthal 49.44123 11.76181 P PPLA4 DE 02 093 09371 09371111 2017 443 Europe/Berlin 2011-04-25
-2958105 Alsterdorf Alsterdorf 53.61083 10.01306 P PPLX DE 04 13271 13 Europe/Berlin 2011-08-21
-2958121 Alsleben Alsleben Alsleben 51.7 11.66667 P PPL DE 14 2786 103 Europe/Berlin 2012-01-18
-2958126 Alsheim Alsheim 49.76806 8.34028 P PPLA4 DE 08 00 07331 07331002 2691 92 Europe/Berlin 2011-04-25
-2958128 Alsfeld Alsfeld Alsfeld 50.75 9.26667 P PPL DE 05 17771 272 Europe/Berlin 2012-01-18
-2958134 Alsenz Alsenz 49.71667 7.81667 P PPLA4 DE 08 00 07333 07333003 1815 176 Europe/Berlin 2011-04-25
-2958141 Alsdorf Alsdorf Alsdorf 50.88333 6.16667 P PPL DE 07 46340 158 Europe/Berlin 2012-01-18
-2958142 Alsdorf Alsdorf 50.76667 7.86667 P PPLA4 DE 08 00 07132 07132002 1765 307 Europe/Berlin 2011-04-25
-2958143 Alsdorf Alsdorf 49.88833 6.4682 P PPLA4 DE 08 00 07232 07232002 388 225 Europe/Berlin 2011-04-25
-2958154 Alsbach Alsbach 50.46667 7.66667 P PPLA4 DE 08 00 07143 07143001 582 315 Europe/Berlin 2011-04-25
-2958173 Alpirsbach Alpirsbach 48.34507 8.40197 P PPL DE 01 7011 434 Europe/Berlin 2010-01-05
-2958180 Alperstedt Alperstedt 51.1 11.05 P PPLA4 DE 15 00 16068 16068001 743 157 Europe/Berlin 2011-04-25
-2958186 Alpenrod Alpenrod 50.63333 7.86667 P PPLA4 DE 08 00 07143 07143202 1664 431 Europe/Berlin 2011-04-25
-2958188 Alpen Alpen 51.58333 6.51667 P PPLA4 DE 07 051 05170 05170004 12908 22 Europe/Berlin 2011-04-25
-2958211 Almstedt Almstedt 52.03243 9.96151 P PPLA4 DE 06 00 03254 03254004 992 132 Europe/Berlin 2011-07-31
-2958235 Almersbach Almersbach 50.68333 7.63333 P PPLA4 DE 08 00 07132 07132001 448 219 Europe/Berlin 2011-04-25
-2958251 Almdorf Almdorf Almdorf 54.58333 9.01667 P PPLA4 DE 10 00 01054 01054006 548 9 Europe/Berlin 2011-04-25
-2958266 Allstedt Allstedt Allstedt 51.4 11.38333 P PPL DE 14 3153 131 Europe/Berlin 2012-01-18
-2958288 Allmersbach im Tal Allmersbach im Tal Allmersbach 48.90659 9.46815 P PPLA4 DE 01 081 08119 08119003 4908 287 Europe/Berlin 2011-04-25
-2958296 Allmendingen Allmendingen 48.33052 9.72419 P PPLA4 DE 01 084 08425 08425002 4556 518 Europe/Berlin 2011-04-25
-2958305 Allmannsweiler Allmannsweiler 48.02853 9.59361 P PPLA4 DE 01 084 08426 08426006 333 624 Europe/Berlin 2011-08-24
-2958309 Allmannshofen Allmannshofen 48.61667 10.8 P PPLA4 DE 02 097 09772 09772114 828 451 Europe/Berlin 2011-04-25
-2958331 Alling Alling 48.15 11.3 P PPLA4 DE 02 091 09179 09179113 3286 546 Europe/Berlin 2011-04-25
-2958355 Alleshausen Alleshausen 48.1 9.61667 P PPLA4 DE 01 084 08426 08426005 494 585 Europe/Berlin 2011-04-25
-2958376 Allershausen Allershausen 48.43333 11.6 P PPLA4 DE 02 091 09178 09178113 4734 444 Europe/Berlin 2011-07-31
-2958391 Allersberg Allersberg 49.25132 11.23659 P PPL DE 02 8054 387 Europe/Berlin 2008-10-29
-2958429 Allensbach Allensbach Allensbach 47.71536 9.07145 P PPLA4 DE 01 083 08335 08335002 7053 403 Europe/Berlin 2011-09-25
-2958431 Allenfeld Allenfeld 49.86667 7.66667 P PPLA4 DE 08 00 07133 07133002 205 366 Europe/Berlin 2011-04-25
-2958436 Allendorf an der Lahn Allendorf an der Lahn Allendorf,Allendorf an der Lahn 50.55 8.61667 P PPL DE 05 4170 162 Europe/Berlin 2012-01-18
-2958438 Allendorf Allendorf Allendorf,Allendorf-Eder 51.03333 8.66667 P PPL DE 05 5719 310 Europe/Berlin 2012-01-18
-2958443 Allendorf Allendorf 50.65 11.16667 P PPLA4 DE 15 00 16073 16073001 388 445 Europe/Berlin 2011-04-25
-2958446 Allendorf Allendorf 50.26667 8 P PPLA4 DE 08 00 07141 07141001 694 328 Europe/Berlin 2011-04-25
-2958457 Allenbach Allenbach 49.75 7.16667 P PPLA4 DE 08 00 07134 07134003 711 502 Europe/Berlin 2011-04-25
-2958479 Alkersum Alkersum 54.70796 8.50925 P PPLA4 DE 10 00 01054 01054005 412 5 Europe/Berlin 2011-07-31
-2958480 Alkersleben Alkersleben 50.85 11.03333 P PPLA4 DE 15 00 16070 16070001 352 312 Europe/Berlin 2011-04-25
-2958486 Alken Alken 50.25 7.45 P PPLA4 DE 08 00 07137 07137201 687 126 Europe/Berlin 2011-04-25
-2958494 Alheim Alheim Alheim 51.03333 9.66667 P PPLA4 DE 05 066 06632 06632001 5292 179 Europe/Berlin 2011-07-31
-2958509 Algermissen Algermissen 52.25332 9.96915 P PPLA4 DE 06 00 03254 03254003 8280 79 Europe/Berlin 2011-04-28
-2958516 Alfter Alfter Alfter 50.73333 7.01667 P PPLA4 DE 07 053 05382 05382004 21814 85 Europe/Berlin 2011-04-25
-2958518 Alfstedt Alfstedt 53.55 9.06667 P PPLA4 DE 06 00 03357 03357002 879 16 Europe/Berlin 2011-04-25
-2958522 Alflen Alflen Aflen,Alflen 50.18333 7.03333 P PPLA4 DE 08 00 07135 07135002 850 439 Europe/Berlin 2011-04-25
-2958523 Alfhausen Alfhausen Alfhausen 52.5 7.95 P PPLA4 DE 06 00 03459 03459001 3904 43 Europe/Berlin 2011-04-25
-2958533 Alfeld Alfeld 51.98382 9.81989 P PPL DE 06 21270 91 Europe/Berlin 2010-08-18
-2958534 Alfeld Alfeld 49.43333 11.55 P PPLA4 DE 02 095 09574 09574111 1168 481 Europe/Berlin 2011-04-25
-2958535 Alfdorf Alfdorf 48.84385 9.71857 P PPLA4 DE 01 081 08119 08119001 7187 488 Europe/Berlin 2011-04-25
-2958539 Alf Alf 50.05 7.11667 P PPLA4 DE 08 00 07135 07135001 923 218 Europe/Berlin 2011-04-25
-2958545 Bad Alexandersbad Bad Alexandersbad Alexandersbad,Bad Alexandersbad 50.01667 12.01667 P PPLA4 DE 02 094 09479 09479111 1188 580 Europe/Berlin 2011-04-25
-2958555 Aletshausen Aletshausen 48.19859 10.38877 P PPLA4 DE 02 097 09774 09774111 1140 531 Europe/Berlin 2011-04-25
-2958557 Alesheim Alesheim 49.04648 10.86496 P PPLA4 DE 02 095 09577 09577113 1003 430 Europe/Berlin 2011-04-25
-2958560 Alerheim Alerheim 48.85 10.61667 P PPLA4 DE 02 097 09779 09779111 1708 413 Europe/Berlin 2011-04-25
-2958575 Aldingen Aldingen 48.1 8.7 P PPLA4 DE 01 083 08327 08327002 7589 644 Europe/Berlin 2011-04-25
-2958577 Aldersbach Aldersbach Aldersbach,Allersbach 48.6 13.08333 P PPLA4 DE 02 092 09275 09275114 4293 318 Europe/Berlin 2011-04-25
-2958580 Aldenhoven Aldenhoven Aldenhoffen,Aldenhoven 50.9 6.28333 P PPLA4 DE 07 053 05358 05358004 14549 111 Europe/Berlin 2011-07-31
-2958595 Albstadt Albstadt Albstadt 48.21644 9.02596 P PPL DE 01 46664 733 Europe/Berlin 2011-09-12
-2958603 Albsfelde Albsfelde Albsfelde 53.68333 10.7 P PPLA4 DE 10 00 01053 01053001 44 39 Europe/Berlin 2011-04-25
-2958631 Albisheim Albisheim Albisheim 49.64944 8.09667 P PPL DE 08 1717 172 Europe/Berlin 2012-02-02
-2958638 Albig Albig 49.77361 8.12139 P PPLA4 DE 08 00 07331 07331001 1672 178 Europe/Berlin 2011-04-25
-2958641 Albessen Albessen 49.51667 7.33333 P PPLA4 DE 08 00 07336 07336002 130 355 Europe/Berlin 2011-04-25
-2958653 Albertshofen Albertshofen 49.76667 10.16667 P PPLA4 DE 02 096 09675 09675112 2094 193 Europe/Berlin 2011-04-25
-2958696 Albersweiler Albersweiler 49.21917 8.03 P PPLA4 DE 08 00 07337 07337001 1929 169 Europe/Berlin 2011-04-25
-2958707 Albershausen Albershausen 48.69136 9.56493 P PPLA4 DE 01 081 08117 08117003 4286 318 Europe/Berlin 2011-04-25
-2958710 Albersdorf Albersdorf 54.15 9.28333 P PPLA4 DE 10 00 01051 01051001 3514 28 Europe/Berlin 2011-04-25
-2958713 Albersdorf Albersdorf 50.9 11.76667 P PPLA4 DE 15 00 16074 16074001 236 349 Europe/Berlin 2011-04-25
-2958744 Albbruck Albbruck Albbruck-Dogern 47.59077 8.12954 P PPLA4 DE 01 083 08337 08337002 7372 315 Europe/Berlin 2011-04-25
-2958756 Albaching Albaching 48.11667 12.11667 P PPLA4 DE 02 091 09187 09187186 1558 507 Europe/Berlin 2011-07-31
-2958781 Aken Aken Aken 51.85 12.05 P PPL DE 14 9240 53 Europe/Berlin 2012-01-18
-2958795 Aitrang Aitrang 47.81667 10.53333 P PPLA4 DE 02 097 09777 09777111 2012 745 Europe/Berlin 2011-04-25
-2958798 Aitrach Aitrach Aitrach 47.93333 10.08333 P PPLA4 DE 01 084 08436 08436004 2580 603 Europe/Berlin 2011-04-25
-2958801 Aitern Aitern 47.8 7.9 P PPLA4 DE 01 083 08336 08336004 570 610 Europe/Berlin 2011-04-25
-2958802 Alterhofen Alterhofen 48.84659 12.62012 P PPL DE 02 092 3454 331 Europe/Berlin 2010-11-15
-2958813 Aislingen Aislingen 48.50648 10.45778 P PPL DE 02 1455 441 Europe/Berlin 2010-08-16
-2958831 Ainring Ainring Ainring 47.81667 12.95 P PPLA4 DE 02 091 09172 09172111 10028 430 Europe/Berlin 2011-07-31
-2958835 Aindling Aindling Aindling,Ainling 48.51667 10.95 P PPL DE 02 4451 475 Europe/Berlin 2012-01-18
-2958846 Ailertchen Ailertchen 50.6 7.93333 P PPLA4 DE 08 00 07143 07143200 653 479 Europe/Berlin 2011-04-25
-2958887 Aiglsbach Aiglsbach 48.7 11.71667 P PPLA4 DE 02 092 09273 09273113 1677 434 Europe/Berlin 2011-04-25
-2958904 Aidlingen Aidlingen 48.67849 8.89524 P PPLA4 DE 01 081 08115 08115001 9285 428 Europe/Berlin 2011-04-25
-2958906 Aidhausen Aidhausen Aidhausen 50.15 10.43333 P PPLA4 DE 02 096 09674 09674111 1934 305 Europe/Berlin 2011-04-25
-2958908 Aidenbach Aidenbach Aidenbach,Aitenbach 48.56667 13.1 P PPL DE 02 3038 370 Europe/Berlin 2012-01-18
-2958917 Aichstetten Aichstetten 47.89295 10.07837 P PPLA4 DE 01 084 08436 08436003 2757 616 Europe/Berlin 2011-07-31
-2958937 Aichhalden Aichhalden Aichhalden,Gemeinde Aichhalden 48.26667 8.41667 P PPLA4 DE 01 083 08325 08325001 4184 684 Europe/Berlin 2011-04-25
-2958951 Aichen Aichen 48.23333 10.55 P PPLA4 DE 02 097 09774 09774166 1171 611 Europe/Berlin 2011-04-25
-2958956 Aichelberg Aichelberg Aichelburg 48.63557 9.56373 P PPLA4 DE 01 081 08117 08117002 1245 434 Europe/Berlin 2011-04-25
-2958970 Aicha vorm Wald Aicha vorm Wald Aicha,Aicha vorm Wald 48.68333 13.3 P PPLA4 DE DE 02 092 09275 09275111 0 413 Europe/Berlin 2011-04-25
-2958975 Aichach Aichach Aicha 48.45755 11.13413 P PPL DE 02 097 21042 453 Europe/Berlin 2010-11-15
-2959043 Ahsen-Oetzen Ahsen-Oetzen Ahsen-Oetz,Ahsen-Oetzen,Oetzen 52.96667 9.08333 P PPL DE 06 1384 9 Europe/Berlin 2012-01-18
-2959053 Ahrenviöl Ahrenviol 54.53131 9.20683 P PPLA4 DE 10 00 01054 01054003 527 35 Europe/Berlin 2011-08-25
-2959072 Ahrensfelde Ahrensfelde 52.57656 13.5797 P PPLA4 DE 11 00 12060 12060005 0 55 Europe/Berlin 2011-04-25
-2959083 Ahrensburg Ahrensburg Ahrensburg,Stadt Ahrensburg 53.68333 10.25 P PPL DE 10 30103 46 Europe/Berlin 2012-01-18
-2959084 Ahrensbök Ahrensbok Ahrensbock,Ahrensbok,Ahrensbök 54.00862 10.57434 P PPLA4 DE 10 00 01055 01055001 8643 62 Europe/Berlin 2011-04-26
-2959140 Ahorn Ahorn Ahorn 50.23333 10.95 P PPLA4 DE 02 094 09473 09473112 4624 335 Europe/Berlin 2011-07-31
-2959142 Aholming Aholming 48.73333 12.91667 P PPLA4 DE 02 092 09271 09271111 2234 327 Europe/Berlin 2011-04-25
-2959143 Aholfing Aholfing 48.95 12.46667 P PPLA4 DE 02 092 09278 09278112 1735 319 Europe/Berlin 2011-04-25
-2959146 Ahnsen Ahnsen Aohnsen 52.25466 9.10089 P PPLA4 DE 06 00 03257 03257001 1233 75 Europe/Berlin 2011-03-15
-2959150 Ahnsbeck Ahnsbeck 52.61667 10.3 P PPLA4 DE 06 00 03351 03351002 1667 57 Europe/Berlin 2011-04-25
-2959153 Ahneby Ahneby Ahneby,Aneby,Åneby 54.71667 9.73333 P PPLA4 DE 10 00 01059 01059102 244 45 Europe/Berlin 2011-04-25
-2959174 Ahlstädt Ahlstadt Ahlstadt,Ahlstädt 50.53333 10.68333 P PPLA4 DE 15 00 16069 16069001 141 474 Europe/Berlin 2011-04-25
-2959181 Ahlsdorf Ahlsdorf 51.54543 11.46655 P PPLA4 DE 14 00 15087 15087010 1912 223 Europe/Berlin 2011-04-25
-2959205 Ahlerstedt Ahlerstedt 53.4 9.45 P PPLA4 DE 06 00 03359 03359002 5063 35 Europe/Berlin 2011-04-25
-2959223 Ahlen Ahlen Ahlen,Alen,Alena,Alna,Alnon,Aulen,aren,Ālena,Ālna,Ālnon,Ален,アーレン 51.76338 7.8887 P PPL DE 07 55280 82 Europe/Berlin 2011-11-06
-2959237 Ahlden Ahlden 52.76667 9.55 P PPL DE 06 1573 21 Europe/Berlin 2006-01-17
-2959244 Ahlbeck Ahlbeck 53.66667 14.2 P PPLA4 DE 12 00 13062 13062001 3444 1 Europe/Berlin 2011-04-25
-2959272 Ahausen Ahausen Ahausen 53.06667 9.31667 P PPLA4 DE 06 00 03357 03357001 1769 17 Europe/Berlin 2011-04-25
-2959279 Ahaus Ahaus Ahaus 52.06667 7 P PPL DE 07 38165 53 Europe/Berlin 2012-01-18
-2959282 Aham Aham 48.53333 12.46667 P PPLA4 DE 02 092 09274 09274112 0 432 Europe/Berlin 2011-04-25
-2959283 Aham Aham 48.35 12.16667 P PPL DE 02 1957 475 Europe/Berlin 2006-01-17
-2959296 Aglasterhausen Aglasterhausen 49.35694 8.98694 P PPLA4 DE 01 082 08225 08225002 4983 205 Europe/Berlin 2011-04-25
-2959308 Agethorst Agethorst Agethorst 54.01947 9.4359 P PPLA4 DE 10 00 01061 01061003 208 17 Europe/Berlin 2011-04-25
-2959318 Agathenburg Agathenburg 53.56065 9.5318 P PPLA4 DE 06 00 03359 03359001 1120 23 Europe/Berlin 2011-08-26
-2959340 Affler Affler 50.01667 6.15 P PPLA4 DE 08 00 07232 07232001 30 435 Europe/Berlin 2011-04-25
-2959341 Affinghausen Affinghausen 52.78333 8.88333 P PPLA4 DE 06 00 03251 03251001 927 52 Europe/Berlin 2011-04-25
-2959343 Affing Affing Affing 48.46667 10.98333 P PPLA4 DE 02 097 09771 09771112 5171 476 Europe/Berlin 2011-04-25
-2959368 Affalterbach Affalterbach 48.92267 9.32362 P PPLA4 DE 01 081 08118 08118001 4623 312 Europe/Berlin 2011-04-25
-2959374 Aerzen Aerzen Arzen,Ärzen 52.04953 9.25856 P PPL DE 06 00 11801 105 Europe/Berlin 2010-11-22
-2959390 Adorf Adorf Adorf 50.31667 12.26667 P PPL DE 13 5806 461 Europe/Berlin 2012-01-18
-2959422 Adlkofen Adlkofen 48.55 12.26667 P PPLA4 DE 02 092 09274 09274111 3934 498 Europe/Berlin 2011-04-25
-2959475 Adenstedt Adenstedt Ahnstie,Oahnstie 51.99852 9.93516 P PPLA4 DE 06 00 03254 03254001 1098 205 Europe/Berlin 2011-03-15
-2959479 Adendorf Adendorf 53.28189 10.43787 P PPLA4 DE 06 00 03355 03355001 9865 28 Europe/Berlin 2011-07-31
-2959482 Adenbüttel Adenbuttel 52.38333 10.45 P PPLA4 DE 06 00 03151 03151001 1754 73 Europe/Berlin 2011-04-25
-2959486 Adenbach Adenbach 49.66667 7.65 P PPLA4 DE 08 00 07336 07336001 191 194 Europe/Berlin 2011-04-25
-2959489 Adenau Adenau 50.38333 6.93333 P PPL DE 08 2995 320 Europe/Berlin 2006-01-17
-2959492 Adelzhausen Adelzhausen 48.35671 11.13851 P PPLA4 DE 02 097 09771 09771111 1498 483 Europe/Berlin 2011-04-25
-2959498 Adelsried Adelsried 48.41667 10.71667 P PPLA4 DE 02 097 09772 09772111 2240 507 Europe/Berlin 2011-04-25
-2959502 Adelshofen Adelshofen 49.43333 10.16667 P PPLA4 DE 02 095 09571 09571111 952 423 Europe/Berlin 2011-04-25
-2959504 Adelshofen Adelshofen 48.18333 11.11667 P PPLA4 DE 02 091 09179 09179111 1568 564 Europe/Berlin 2011-04-25
-2959508 Adelsheim Adelsheim Adelsheim 49.40361 9.39333 P PPL DE 01 5536 232 Europe/Berlin 2012-02-28
-2959513 Adelsdorf Adelsdorf 49.71216 10.895 P PPLA4 DE 02 095 09572 09572111 0 265 Europe/Berlin 2011-04-25
-2959514 Adelsdorf Adelsdorf 49.48333 10.68333 P PPL DE 02 7245 373 Europe/Berlin 2006-01-17
-2959516 Adelschlag Adelschlag Adelschlag 48.83333 11.21667 P PPLA4 DE 02 091 09176 09176111 0 451 Europe/Berlin 2011-04-25
-2959530 Adelmannsfelden Adelmannsfelden 48.95476 10.00466 P PPLA4 DE 01 081 08136 08136003 1871 476 Europe/Berlin 2011-04-25
-2959538 Adelheidsdorf Adelheidsdorf 52.56404 10.06039 P PPLA4 DE 06 00 03351 03351001 2489 41 Europe/Berlin 2011-04-27
-2959548 Adelebsen Adelebsen Adelebsen 51.58333 9.75 P PPL DE 06 6968 228 Europe/Berlin 2012-01-18
-2959553 Adelberg Adelberg Adelberg-Dorf,Dorf-Adelberg 48.76227 9.59991 P PPLA4 DE 01 081 08117 08117001 2065 477 Europe/Berlin 2011-04-25
-2959621 Achtrup Achtrup 54.78333 9.03333 P PPLA4 DE 10 00 01054 01054001 1557 11 Europe/Berlin 2011-04-25
-2959628 Achterwehr Achterwehr 54.31318 9.9661 P PPLA4 DE 10 00 01058 01058001 931 22 Europe/Berlin 2011-04-25
-2959655 Achtelsbach Achtelsbach 49.61667 7.08333 P PPLA4 DE 08 00 07134 07134002 525 469 Europe/Berlin 2011-04-25
-2959658 Acht Acht 50.36667 7.06667 P PPLA4 DE 08 00 07137 07137001 106 493 Europe/Berlin 2011-04-25
-2959659 Achstetten Achstetten 48.25886 9.89748 P PPLA4 DE 01 084 08426 08426001 3978 494 Europe/Berlin 2012-03-02
-2959660 Achslach Achslach 48.97171 12.93511 P PPLA4 DE 02 092 09276 09276111 1089 595 Europe/Berlin 2011-04-25
-2959681 Achim Achim 53.01416 9.0263 P PPL DE 06 00 03361 03361001 30013 14 Europe/Berlin 2011-03-15
-2959682 Achim Achim Achen 52.0593 10.61073 P PPLA4 DE 06 00 03158 03158001 820 91 Europe/Berlin 2011-03-15
-2959686 Achern Achern Achara,Achern,Akhern,Ахерн 48.63115 8.07607 P PPL DE 01 083 24478 145 Europe/Berlin 2010-11-15
-2959747 Abtweiler Abtweiler Abtweiler,Apweiler 49.75 7.65 P PPLA4 DE 08 00 07133 07133001 256 284 Europe/Berlin 2011-04-25
-2959766 Abtsgmünd Abtsgmund Abtsgmuend 48.89503 10.00172 P PPLA4 DE 01 081 08136 08136002 7381 374 Europe/Berlin 2011-10-23
-2959771 Abtsdorf Abtsdorf 51.88984 12.72526 P PPL DE 14 1457 103 Europe/Berlin 2010-06-22
-2959773 Abtsbessingen Abtsbessingen Abtsbessingen 51.25 10.76667 P PPLA4 DE 15 00 16065 16065001 569 290 Europe/Berlin 2011-04-25
-2959779 Aebtissinwisch Aebtissinwisch Abtissinwisch,Aebtissinwisch,Äbtissinwisch 53.96667 9.28333 P PPLA4 DE 10 00 01061 01061002 72 251 Europe/Berlin 2011-04-25
-2959793 Abstatt Abstatt 49.0682 9.2907 P PPLA4 DE 01 081 08125 08125001 4456 239 Europe/Berlin 2011-04-25
-2959803 Absberg Absberg 49.14438 10.88101 P PPL DE 02 1336 467 Europe/Berlin 2009-04-15
-2959841 Abentheuer Abentheuer 49.65 7.1 P PPLA4 DE 08 00 07134 07134001 465 423 Europe/Berlin 2011-04-25
-2959842 Abensberg Abensberg Abensberg,Abensperg,Абенсберг 48.81667 11.85 P PPL DE 02 12570 371 Europe/Berlin 2012-01-18
-2959855 Abenberg Abenberg 49.24282 10.96401 P PPL DE 02 5484 416 Europe/Berlin 2009-06-23
-2959908 Aasbüttel Aasbuttel Aasbuttel,Aasbüttel 54.06667 9.43333 P PPLA4 DE 10 00 01061 01061001 94 42 Europe/Berlin 2011-04-25
-2959927 Aalen Aalen Aalen,Alene,Ālene,Аален 48.83777 10.0933 P PPL DE 01 67085 433 Europe/Berlin 2010-01-29
-2959944 Aach Aach 49.78333 6.6 P PPLA4 DE 08 00 07235 07235001 1151 226 Europe/Berlin 2011-04-25
-2959946 Aach Aach Aach 47.85 8.85 P PPL DE 01 2248 520 Europe/Berlin 2012-01-18
-3204947 Eggermühlen Eggermuhlen 52.56667 7.81667 P PPLA4 DE 06 00 03459 03459016 1792 60 Europe/Berlin 2011-04-25
-3204961 Thalfang Thalfang 49.75 7 P PPLA4 DE 08 00 07231 07231123 1779 416 Europe/Berlin 2011-07-31
-3204963 Quendorf Quendorf 52.33333 7.18333 P PPLA4 DE 06 00 03456 03456018 581 33 Europe/Berlin 2011-04-25
-3204977 Nienwohld Nienwohld Nienwohld 53.78694 10.19444 P PPLA4 DE 10 00 01062 01062051 459 36 Europe/Berlin 2011-08-21
-3204980 Traventhal Traventhal Traventhal 53.9 10.31667 P PPLA4 DE 10 00 01060 01060091 551 42 Europe/Berlin 2011-04-25
-3204998 Erdeborn Erdeborn Erdeborn 51.48333 11.63333 P PPL DE 14 1117 133 Europe/Berlin 2012-01-19
-3205000 Barby Barby Barby 51.96667 11.88333 P PPL DE 14 4646 54 Europe/Berlin 2012-01-19
-3205010 Hohenau Hohenau 48.84983 13.48825 P PPLA4 DE 02 092 09272 09272127 3536 808 Europe/Berlin 2011-08-22
-3205437 Apfeldorf Apfeldorf 47.9 10.93333 P PPLA4 DE 02 091 09181 09181111 1056 665 Europe/Berlin 2011-04-25
-3205523 Eglfing Eglfing 47.73333 11.18333 P PPLA4 DE 02 091 09190 09190121 933 662 Europe/Berlin 2011-04-25
-3205535 Höhenkirchen-Siegertsbrunn Hohenkirchen-Siegertsbrunn 48.01932 11.71906 P PPLA4 DE 02 091 09184 09184127 9465 587 Europe/Berlin 2011-07-31
-3205552 Missen-Wilhams Missen-Wilhams 47.6 10.11667 P PPLA4 DE 02 097 09780 09780127 1441 839 Europe/Berlin 2011-04-25
-3205561 Oy-Mittelberg Oy-Mittelberg 47.63333 10.43333 P PPLA4 DE 02 097 09780 09780128 4544 977 Europe/Berlin 2011-04-25
-3205570 Straßlach-Dingharting Strasslach-Dingharting Strasslach,Straßlach 48.00491 11.5141 P PPLA4 DE 02 091 09184 09184144 2899 634 Europe/Berlin 2011-04-25
-3205596 Sankt Leonhard am Wonneberg Sankt Leonhard am Wonneberg Sankt Leonhard am Wonneberg 47.91667 12.71667 P PPL DE 02 1443 578 Europe/Berlin 2012-02-02
-3205634 Seeon-Seebruck Seeon-Seebruck Seeon-Seebruck,Seon-Seebruck 47.96667 12.46667 P PPLA4 DE 02 091 09189 09189143 4513 574 Europe/Berlin 2011-04-25
-3205641 Weiler-Simmerberg Weiler-Simmerberg Weiler-Simmerberg 47.58333 9.93333 P PPL DE 02 6510 703 Europe/Berlin 2012-01-19
-3205645 Bodman-Ludwigshafen Bodman-Ludwigshafen 47.81667 9.06667 P PPLA4 DE 01 083 08335 08335098 4272 465 Europe/Berlin 2011-04-25
-3205651 Eggingen Eggingen 47.7 8.4 P PPLA4 DE 01 083 08337 08337124 1774 434 Europe/Berlin 2011-04-25
-3205653 Emmingen-Liptingen Emmingen-Liptingen 47.93333 8.88333 P PPLA4 DE 01 083 08327 08327057 4580 742 Europe/Berlin 2011-04-25
-3205658 Herdwangen-Schönach Herdwangen-Schonach Herdwangen-Schonach,Herdwangen-Schönach 47.85 9.2 P PPLA4 DE 01 084 08437 08437124 3240 606 Europe/Berlin 2011-04-25
-3205666 Lauchringen Lauchringen 47.62699 8.31442 P PPLA4 DE 01 083 08337 08337065 7416 349 Europe/Berlin 2011-07-18
-3205682 Mühlhausen-Ehingen Muhlhausen-Ehingen 47.81667 8.81667 P PPLA4 DE 01 083 08335 08335097 3669 471 Europe/Berlin 2011-04-25
-3205690 Uhldingen-Mühlhofen Uhldingen-Muhlhofen Uhldingen-Muhlhofen,Uhldingen-Mühlhofen 47.73333 9.25 P PPLA4 DE 01 084 08435 08435066 8013 418 Europe/Berlin 2011-04-25
-3205691 Ühlingen-Birkendorf Uhlingen-Birkendorf 47.71667 8.31667 P PPLA4 DE 01 083 08337 08337128 5269 637 Europe/Berlin 2011-04-25
-3206149 Altes Lager Altes Lager Al'tes Lager,Altes Lager,Альтес Лагер 48.41667 9.55 P PPL DE 01 14092 793 Europe/Berlin 2012-01-19
-3206150 Aspach Aspach Aspach 48.96667 9.4 P PPLA4 DE 01 081 08119 08119087 8131 280 Europe/Berlin 2011-04-25
-3206151 Bad Peterstal-Griesbach Bad Peterstal-Griesbach 48.43333 8.21667 P PPLA4 DE 01 083 08317 08317008 3006 446 Europe/Berlin 2011-04-25
-3206152 Bad Rippoldsau-Schapbach Bad Rippoldsau-Schapbach 48.4 8.33333 P PPLA4 DE 01 082 08237 08237075 2326 857 Europe/Berlin 2011-04-25
-3206153 Bad Teinach-Zavelstein Bad Teinach-Zavelstein 48.68918 8.69044 P PPL DE 01 3053 395 Europe/Berlin 2010-07-10
-3206154 Böbingen an der Rems Bobingen an der Rems 48.81955 9.9213 P PPLA4 DE 01 081 08136 08136009 4655 396 Europe/Berlin 2011-04-25
-3206164 Burgstetten Burgstetten 48.92805 9.37239 P PPLA4 DE 01 081 08119 08119018 3515 255 Europe/Berlin 2011-04-25
-3206180 Gutenzell-Hürbel Gutenzell-Hurbel Gutenzell-Hurbel,Gutenzell-Hürbel 48.11667 9.98333 P PPLA4 DE 01 084 08426 08426135 1922 571 Europe/Berlin 2011-04-25
-3206188 Königsbach-Stein Konigsbach-Stein Konigsbach-Stein,Königsbach-Stein 48.96667 8.61667 P PPLA4 DE 01 082 08236 08236076 9906 187 Europe/Berlin 2011-04-25
-3206254 Niefern-Öschelbronn Niefern-Oschelbronn Niefern-Oschelbronn,Niefern-Öschelbronn 48.91667 8.78333 P PPLA4 DE 01 082 08236 08236046 12341 241 Europe/Berlin 2011-04-25
-3206256 Ölbronn-Dürrn Olbronn-Durrn 48.96667 8.75 P PPLA4 DE 01 082 08236 08236075 3627 260 Europe/Berlin 2011-04-25
-3206259 Rietheim-Weilheim Rietheim-Weilheim 48.01667 8.76667 P PPLA4 DE 01 083 08327 08327056 2649 760 Europe/Berlin 2011-04-25
-3206269 Seitingen-Oberflacht Seitingen-Oberflacht 48.01667 8.71667 P PPLA4 DE 01 083 08327 08327055 2298 715 Europe/Berlin 2011-04-25
-3206285 Urbach Urbach 48.8168 9.5769 P PPLA4 DE 01 081 08119 08119076 8593 271 Europe/Berlin 2011-04-25
-3206402 Giesen Giesen 52.19716 9.8989 P PPLA4 DE 06 00 03254 03254017 9909 81 Europe/Berlin 2011-05-07
-3206408 Häuslingen Hauslingen 52.80992 9.39228 P PPLA4 DE 06 00 03358 03358013 858 21 Europe/Berlin 2011-07-31
-3206682 Mallersdorf-Pfaffenberg Mallersdorf-Pfaffenberg Mallersdorf-Pfaffenberg 48.76667 12.23333 P PPL DE 02 6742 381 Europe/Berlin 2012-01-19
-3206785 Altendorf Altendorf 49.8 11.01667 P PPLA4 DE 02 094 09471 09471111 0 257 Europe/Berlin 2011-04-25
-3206926 Muhr am See Muhr am See Muhr,Muhr am See 49.15 10.7 P PPL DE 02 2155 413 Europe/Berlin 2012-01-19
-3206934 Postbauer-Heng Postbauer-Heng Postbauer-Heng 49.30528 11.35722 P PPLA4 DE 02 093 09373 09373155 7358 460 Europe/Berlin 2011-04-25
-3207000 Viereth-Trunstadt Viereth-Trunstadt 49.92327 10.76197 P PPLA4 DE 02 094 09471 09471207 3684 263 Europe/Berlin 2011-04-25
-3207003 Weilersbach Weilersbach 49.75 11.11667 P PPLA4 DE 02 094 09474 09474171 1985 369 Europe/Berlin 2011-04-25
-3207077 Katlenburg-Lindau Katlenburg-Lindau 51.68333 10.1 P PPLA4 DE 06 00 03155 03155007 7581 137 Europe/Berlin 2011-04-25
-3207078 Schulenberg im Oberharz Schulenberg im Oberharz 51.83333 10.43333 P PPLA4 DE 06 00 03153 03153011 0 482 Europe/Berlin 2011-04-25
-3207089 Nemsdorf-Göhrendorf Nemsdorf-Gohrendorf Nemsdorf-Gohrendorf,Nemsdorf-Göhrendorf 51.35 11.65 P PPLA4 DE 14 00 15088 15088250 971 196 Europe/Berlin 2011-04-25
-3207091 Neutz-Lettewitz Neutz-Lettewitz Neutz-Lettewitz 51.6 11.88333 P PPLA4 DE 14 00 15088 15088255 964 148 Europe/Berlin 2011-04-25
-3207130 Kromsdorf Kromsdorf 51 11.36667 P PPLA4 DE 15 00 16071 16071048 1577 207 Europe/Berlin 2011-04-25
-3207136 Schönstedt Schonstedt 51.11667 10.56667 P PPLA4 DE 15 00 16064 16064058 1479 189 Europe/Berlin 2011-04-25
-3207140 Topfstedt Topfstedt Topfstedt 51.26667 10.96667 P PPLA4 DE 15 00 16065 16065074 679 235 Europe/Berlin 2011-04-25
-3207142 Urleben Urleben 51.15 10.78333 P PPLA4 DE 15 00 16064 16064064 472 204 Europe/Berlin 2011-04-25
-3207197 Vellmar Vellmar 51.35806 9.47974 P PPL DE 05 066 18623 178 Europe/Berlin 2010-11-15
-3207220 Scheden Scheden Scheden 51.45 9.73333 P PPLA4 DE 06 00 03152 03152023 2132 236 Europe/Berlin 2011-04-25
-3207377 Möhnesee Mohnesee Mohnesee,Möhnesee 51.5 8.13333 P PPLA4 DE 07 059 05974 05974032 11559 253 Europe/Berlin 2011-07-31
-3207383 Schieder-Schwalenberg Schieder-Schwalenberg 51.87713 9.19538 P PPL DE 07 057 9443 218 Europe/Berlin 2010-11-15
-3207384 Schloß Holte-Stukenbrock Schloss Holte-Stukenbrock Schloss Holte-Stukenbrock,Schloß Holte-Stukenbrock 51.9 8.61667 P PPL DE 07 25770 118 Europe/Berlin 2012-01-19
-3207405 Lautertal Lautertal 50.33333 10.96667 P PPLA4 DE 02 094 09473 09473141 4150 433 Europe/Berlin 2011-04-25
-3207410 Rödental Rodental Rodental,Rödental 50.28333 11.06667 P PPL DE 02 13712 412 Europe/Berlin 2012-01-19
-3207412 Röslau Roslau 50.08333 11.98333 P PPLA4 DE 02 094 09479 09479145 2402 563 Europe/Berlin 2011-04-25
-3207454 Bocka Bocka 50.81667 11.96667 P PPLA4 DE 15 00 16076 16076007 562 356 Europe/Berlin 2011-07-31
-3207470 Gneus Gneus Gneus 50.81667 11.68333 P PPLA4 DE 15 00 16074 16074024 163 316 Europe/Berlin 2011-04-25
-3207488 Oberbodnitz Oberbodnitz Oberbodnitz 50.8 11.66667 P PPLA4 DE 15 00 16074 16074064 286 363 Europe/Berlin 2011-04-25
-3207489 Osthausen-Wülfershausen Osthausen-Wulfershausen 50.85 11.08333 P PPLA4 DE 15 00 16070 16070041 571 346 Europe/Berlin 2011-04-25
-3207490 Ruttersdorf-Lotschen Ruttersdorf-Lotschen Ruttersdorf-Lotschen 50.88333 11.73333 P PPLA4 DE 15 00 16074 16074081 332 253 Europe/Berlin 2011-04-25
-3207491 Saara Saara 50.85 11.96667 P PPLA4 DE 15 00 16076 16076064 679 296 Europe/Berlin 2011-04-25
-3207512 Bruchmühlbach-Miesau Bruchmuhlbach-Miesau 49.38333 7.43333 P PPLA4 DE 08 00 07335 07335003 7800 232 Europe/Berlin 2011-04-25
-3207519 Gossersweiler-Stein Gossersweiler-Stein 49.15 7.93333 P PPLA4 DE 08 00 07337 07337033 1445 271 Europe/Berlin 2011-04-25
-3207523 Hinzert-Pölert Hinzert-Polert 49.7 6.9 P PPLA4 DE 08 00 07235 07235047 277 503 Europe/Berlin 2011-04-25
-3207524 Hirschthal Hirschthal 49.03333 7.75 P PPLA4 DE 08 00 07340 07340021 114 232 Europe/Berlin 2011-04-25
-3207525 Hochstetten-Dhaun Hochstetten-Dhaun 49.8 7.5 P PPLA4 DE 08 00 07133 07133046 1648 250 Europe/Berlin 2011-04-25
-3207526 Hoppstädten-Weiersbach Hoppstadten-Weiersbach 49.61667 7.2 P PPLA4 DE 08 00 07134 07134042 2749 336 Europe/Berlin 2011-04-25
-3207528 Kreimbach-Kaulbach Kreimbach-Kaulbach 49.55 7.63333 P PPLA4 DE 08 00 07336 07336053 971 226 Europe/Berlin 2011-04-25
-3207531 Mannweiler-Cölln Mannweiler-Colln 49.68333 7.78333 P PPLA4 DE 08 00 07333 07333043 438 300 Europe/Berlin 2011-04-25
-3207532 Neumagen-Dhron Neumagen-Dhron 49.85 6.88333 P PPLA4 DE 08 00 07231 07231092 2355 278 Europe/Berlin 2011-04-25
-3207533 Oberweiler-Tiefenbach Oberweiler-Tiefenbach 49.6 7.61667 P PPLA4 DE 08 00 07336 07336073 298 224 Europe/Berlin 2011-04-25
-3207534 Oestrich-Winkel Oestrich-Winkel Oestrich-Winkel 50 8 P PPL DE 08 11917 106 Europe/Berlin 2012-01-19
-3207535 Offenbach-Hundheim Offenbach-Hundheim 49.61667 7.55 P PPLA4 DE 08 00 07336 07336075 1310 193 Europe/Berlin 2011-04-25
-3207536 Osann-Monzel Osann-Monzel 49.91667 6.95 P PPLA4 DE 08 00 07231 07231103 1655 175 Europe/Berlin 2011-04-25
-3207537 Rieschweiler-Mühlbach Rieschweiler-Muhlbach 49.23333 7.5 P PPLA4 DE 08 00 07340 07340222 2201 284 Europe/Berlin 2011-04-25
-3207539 Salmtal Salmtal 49.93333 6.85 P PPLA4 DE 08 00 07231 07231113 2316 184 Europe/Berlin 2011-04-25
-3207540 Schönenberg-Kübelberg Schonenberg-Kubelberg 49.4 7.36667 P PPLA4 DE 08 00 07336 07336092 5957 257 Europe/Berlin 2011-04-25
-3207541 Schweigen-Rechtenbach Schweigen-Rechtenbach 49.05314 7.95638 P PPLA4 DE 08 00 07337 07337071 1472 217 Europe/Berlin 2011-04-25
-3207548 Wilzenberg-Hußweiler Wilzenberg-Hussweiler 49.7 7.21667 P PPLA4 DE 08 00 07134 07134094 308 434 Europe/Berlin 2011-04-25
-3207549 Zeltingen-Rachtig Zeltingen-Rachtig Zeltingen-Rachtig 49.95 7.01667 P PPLA4 DE 08 00 07231 07231136 2321 106 Europe/Berlin 2011-04-25
-3207567 Rehlingen-Siersburg Rehlingen-Siersburg 49.36667 6.68333 P PPLA4 DE 09 00 10044 10044114 15871 182 Europe/Berlin 2011-04-25
-3207679 Ahrbrück Ahrbruck 50.48515 6.97254 P PPLA4 DE 08 00 07131 07131002 1228 189 Europe/Berlin 2011-04-25
-3207685 Birken-Honigsessen Birken-Honigsessen 50.81667 7.73333 P PPLA4 DE 08 00 07132 07132008 2678 237 Europe/Berlin 2011-04-25
-3207690 Bruttig-Fankel Bruttig-Fankel 50.13333 7.23333 P PPLA4 DE 08 00 07135 07135017 1208 96 Europe/Berlin 2011-04-25
-3207692 Caan Caan 50.46667 7.61667 P PPLA4 DE 08 00 07143 07143007 717 312 Europe/Berlin 2011-04-25
-3207697 Dreikirchen Dreikirchen 50.43333 7.95 P PPLA4 DE 08 00 07143 07143011 1044 254 Europe/Berlin 2011-04-25
-3207698 Dreis-Brück Dreis-Bruck 50.26603 6.7923 P PPLA4 DE 08 00 07233 07233020 925 480 Europe/Berlin 2011-04-25
-3207699 Ediger-Eller Ediger-Eller Ediger-Eller 50.11667 7.15 P PPLA4 DE 08 00 07135 07135024 1079 344 Europe/Berlin 2011-04-25
-3207703 Ellenz-Poltersdorf Ellenz-Poltersdorf 50.1 7.23333 P PPLA4 DE 08 00 07135 07135025 857 259 Europe/Berlin 2011-04-25
-3207706 Fischbach-Oberraden Fischbach-Oberraden 50 6.33333 P PPLA4 DE 08 00 07232 07232038 58 334 Europe/Berlin 2011-04-25
-3207709 Gondershausen Gondershausen 50.15 7.5 P PPLA4 DE 08 00 07140 07140043 1332 400 Europe/Berlin 2011-04-25
-3207731 Hainau Hainau 50.22288 7.78235 P PPLA4 DE 08 00 07141 07141110 189 279 Europe/Berlin 2011-12-29
-3207732 Hattert Hattert 50.66667 7.76667 P PPLA4 DE 08 00 07143 07143235 1767 281 Europe/Berlin 2011-04-25
-3207733 Heckenbach Heckenbach 50.46667 7.05 P PPLA4 DE 08 00 07131 07131027 247 494 Europe/Berlin 2011-04-25
-3207740 Herzfeld Herzfeld 50.13333 6.21667 P PPLA4 DE 08 00 07232 07232240 42 492 Europe/Berlin 2011-04-25
-3207741 Hohenfels-Essingen Hohenfels-Essingen 50.25 6.73333 P PPLA4 DE 08 00 07233 07233033 381 480 Europe/Berlin 2011-04-25
-3207742 Höhn Hohn 50.61667 7.98333 P PPLA4 DE 08 00 07143 07143242 3238 507 Europe/Berlin 2011-04-25
-3207746 Ingelbach Ingelbach 50.68333 7.7 P PPLA4 DE 08 00 07132 07132057 591 281 Europe/Berlin 2011-04-25
-3207747 Kalenborn-Scheuern Kalenborn-Scheuern 50.25 6.6 P PPLA4 DE 08 00 07233 07233036 490 503 Europe/Berlin 2011-04-25
-3207750 Kasbach-Ohlenberg Kasbach-Ohlenberg 50.58333 7.26667 P PPLA4 DE 08 00 07138 07138501 1406 168 Europe/Berlin 2011-04-25
-3207752 Katzwinkel Katzwinkel Katzwinkel 50.81667 7.81667 P PPL DE 08 2005 332 Europe/Berlin 2012-01-19
-3207753 Kirchwald Kirchwald 50.36667 7.15 P PPLA4 DE 08 00 07137 07137049 1043 508 Europe/Berlin 2011-04-25
-3207786 Kobern-Gondorf Kobern-Gondorf Kobern-Gondorf 50.3 7.45 P PPLA4 DE 08 00 07137 07137212 3306 195 Europe/Berlin 2011-04-25
-3207803 Mittelfischbach Mittelfischbach 50.25 7.95 P PPLA4 DE 08 00 07141 07141088 131 397 Europe/Berlin 2011-04-25
-3207804 Mörsbach Morsbach 50.71667 7.76667 P PPLA4 DE 08 00 07143 07143265 502 304 Europe/Berlin 2011-04-25
-3207806 Mülheim-Kärlich Mulheim-Karlich Mulheim-Karlich,Mülheim-Kärlich 50.38333 7.5 P PPL DE 08 10451 103 Europe/Berlin 2012-01-19
-3207885 Oberehe-Stroheich Oberehe-Stroheich 50.28333 6.76667 P PPLA4 DE 08 00 07233 07233054 358 487 Europe/Berlin 2011-04-25
-3207891 Oberhonnefeld-Gierend Oberhonnefeld-Gierend 50.55 7.5 P PPLA4 DE 08 00 07138 07138053 999 339 Europe/Berlin 2011-04-25
-3207894 Ruppach-Goldhausen Ruppach-Goldhausen 50.46667 7.88333 P PPLA4 DE 08 00 07143 07143065 1155 301 Europe/Berlin 2011-04-25
-3207895 Sankt Katharinen Sankt Katharinen Sankt Katharinen 50.58333 7.38333 P PPL DE 08 3534 298 Europe/Berlin 2012-01-19
-3207904 Spay Spay Spay 50.25 7.65 P PPLA4 DE 08 00 07137 07137223 2056 66 Europe/Berlin 2011-04-25
-3207906 Stockum-Püschen Stockum-Puschen 50.6 7.9 P PPLA4 DE 08 00 07143 07143298 722 429 Europe/Berlin 2011-04-25
-3207947 Wied Wied 50.63333 7.75 P PPLA4 DE 08 00 07143 07143310 509 298 Europe/Berlin 2011-04-25
-3207992 Blankenbach Blankenbach 50.06667 9.23333 P PPLA4 DE 02 096 09671 09671113 1683 191 Europe/Berlin 2011-04-25
-3208006 Riedenberg Riedenberg 50.31993 9.861 P PPLA4 DE 02 096 09672 09672145 1090 393 Europe/Berlin 2011-07-31
-3208010 Sailauf Sailauf 50.01667 9.25 P PPLA4 DE 02 096 09671 09671150 3811 169 Europe/Berlin 2011-04-25
-3208053 Florstadt Florstadt Florstadt 50.31667 8.86667 P PPLA4 DE 05 064 06440 06440007 8905 136 Europe/Berlin 2011-07-31
-3208086 Liederbach Liederbach 50.11667 8.5 P PPL DE 05 8602 137 Europe/Berlin 2006-01-17
-3208118 Schöffengrund Schoeffengrund 50.48744 8.48162 P PPLA4 DE 05 065 06532 06532018 6316 285 288 Europe/Berlin 2011-04-25
-3208129 Waldbrunn Waldbrunn Waldbrunn 50.51667 8.11667 P PPL DE 05 6124 300 Europe/Berlin 2012-01-19
-3208130 Waldems Waldems Waldems 50.25 8.33333 P PPLA4 DE 05 064 06439 06439016 5782 356 Europe/Berlin 2011-04-25
-3208134 Walluf Walluf Walluf 50.05 8.15 P PPLA4 DE 05 064 06439 06439017 5698 165 Europe/Berlin 2011-04-25
-3208294 Diekhusen-Fahrstedt Diekhusen-Fahrstedt Diekhusen-Fahrstedt 53.93333 9.01667 P PPLA4 DE 10 00 01051 01051021 690 0 Europe/Berlin 2011-04-25
-3208297 Groß Offenseth-Aspern Gross Offenseth-Aspern Gross Offenseth-Aspern,Groß Offenseth-Aspern 53.81667 9.73333 P PPLA4 DE 10 00 01056 01056017 424 14 Europe/Berlin 2011-04-25
-3208299 Heidmoor Heidmoor Heidmoor 53.83333 9.85 P PPLA4 DE 10 00 01060 01060037 330 28 Europe/Berlin 2011-04-25
-3208303 Klein Offenseth-Sparrieshoop Klein Offenseth-Sparrieshoop Klein Offenseth-Sparrieshoop 53.8 9.7 P PPLA4 DE 10 00 01056 01056030 2687 6 Europe/Berlin 2011-04-25
-3208304 Krempdorf Krempdorf Krempdorf 53.83333 9.46667 P PPLA4 DE 10 00 01061 01061054 254 253 Europe/Berlin 2011-04-25
-3208324 Asbach-Bäumenheim Asbach-Baumenheim 48.68333 10.81667 P PPLA4 DE 02 097 09779 09779115 4346 405 Europe/Berlin 2011-04-25
-3208325 Baar-Ebenhausen Baar-Ebenhausen 48.66667 11.45 P PPLA4 DE 02 091 09186 09186113 4862 369 Europe/Berlin 2011-04-25
-3208331 Ettringen Ettringen 48.1 10.65 P PPLA4 DE 02 097 09778 09778137 3372 583 Europe/Berlin 2011-04-25
-3208334 Finningen Finningen 48.65 10.5 P PPLA4 DE 02 097 09773 09773150 1681 458 Europe/Berlin 2011-04-25
-3208350 Kottgeisering Kottgeisering 48.11667 11.13333 P PPLA4 DE 02 091 09179 09179131 1488 539 Europe/Berlin 2011-04-25
-3208353 Medlingen Medlingen 48.57027 10.31608 P PPLA4 DE 02 097 09773 09773153 1007 448 Europe/Berlin 2011-04-25
-3208367 Schondorf am Ammersee Schondorf am Ammersee Schondorf 48.05296 11.09138 P PPL DE 02 3877 555 Europe/Berlin 2009-06-15
-3208380 Wörth Worth 48.24531 11.90214 P PPLA4 DE 02 091 09177 09177144 4559 493 Europe/Berlin 2011-07-31
-3208422 Dohren Dohren 52.65 7.58333 P PPLA4 DE 06 00 03454 03454009 1127 24 Europe/Berlin 2011-04-25
-3208432 Isterberg Isterberg 52.35 7.15 P PPLA4 DE 06 00 03456 03456010 605 43 Europe/Berlin 2011-04-25
-3208438 Lünne Lunne 52.43333 7.43333 P PPLA4 DE 06 00 03454 03454034 1835 27 Europe/Berlin 2011-04-25
-3208505 Neukamperfehn Neukamperfehn 53.33333 7.55 P PPLA4 DE 06 00 03457 03457015 1587 255 Europe/Berlin 2011-04-25
-3208535 Ahrenshöft Ahrenshoft 54.55 9.06667 P PPLA4 DE 10 00 01054 01054002 517 254 Europe/Berlin 2011-04-25
-3208536 Aukrug Aukrug Aukrug 54.08333 9.78333 P PPLA4 DE 10 00 01058 01058009 3846 14 Europe/Berlin 2011-04-25
-3208539 Bordelum Bordelum Bordelum 54.63333 8.93333 P PPLA4 DE 10 00 01054 01054014 2053 4 Europe/Berlin 2011-04-25
-3208540 Bornholt Bornholt Bornholt 54.1 9.33333 P PPLA4 DE 10 00 01058 01058025 224 15 Europe/Berlin 2011-07-31
-3208543 Emmelsbüll-Horsbüll Emmelsbull-Horsbull Emmelsbull-Horsbull,Emmelsbüll-Horsbüll 54.81667 8.7 P PPLA4 DE 10 00 01054 01054166 1038 255 Europe/Berlin 2011-04-25
-3208545 Galmsbüll Galmsbull Galmsbull,Galmsbüll 54.75 8.75 P PPLA4 DE 10 00 01054 01054165 677 255 Europe/Berlin 2011-04-25
-3208547 Helgoland Helgoland Helgoland,Khel'goland,Хельголанд 54.18143 7.8863 P PPLA4 DE 10 00 01056 01056025 1333 37 Europe/Berlin 2011-07-31
-3208549 Hooge Hooge 54.56667 8.55 P PPLA4 DE 10 00 01054 01054050 91 1 Europe/Berlin 2011-04-25
-3208552 Jarplund-Weding Jarplund-Weding Jarplund-Weding 54.73333 9.41667 P PPL DE 10 4429 32 Europe/Berlin 2012-01-19
-3208554 Lohe-Rickelshof Lohe-Rickelshof Lohe-Rickelshof 54.2 9.06667 P PPLA4 DE 10 00 01051 01051069 1985 6 Europe/Berlin 2011-04-25
-3208557 Mohrkirch Mohrkirch Mohrkirch 54.66667 9.71667 P PPLA4 DE 10 00 01059 01059060 1037 27 Europe/Berlin 2011-04-25
-3208559 Oesterwurth Oesterwurth Oesterwurth 54.21667 8.98333 P PPLA4 DE 10 00 01051 01051140 266 255 Europe/Berlin 2011-04-25
-3208561 Oldsum Oldsum 54.73106 8.44471 P PPLA4 DE 10 00 01054 01054098 566 4 Europe/Berlin 2011-04-25
-3208562 Rabenkirchen-Faulück Rabenkirchen-Fauluck Rabenkirchen-Fauluck,Rabenkirchen-Faulück 54.63333 9.85 P PPLA4 DE 10 00 01059 01059068 683 34 Europe/Berlin 2011-04-25
-3208565 Risum-Lindholm Risum-Lindholm 54.75802 8.86906 P PPLA4 DE 10 00 01054 01054109 3581 2 Europe/Berlin 2011-07-31
-3208567 Schnarup-Thumby Schnarup-Thumby Schnarup-Thumby 54.65 9.65 P PPLA4 DE 10 00 01059 01059076 598 33 Europe/Berlin 2011-04-25
-3208569 Süderdorf Suderdorf Suderdorf,Süderdorf 54.21667 9.35 P PPLA4 DE 10 00 01051 01051139 399 12 Europe/Berlin 2011-04-25
-3208571 Sylt-Ost Sylt-Ost Sylt,Sylt-Ost 54.88333 8.35 P PPL DE 10 5806 1 Europe/Berlin 2012-02-28
-3208572 Tensbüttel-Röst Tensbuttel-Rost Tensbuttel-Rost,Tensbüttel-Röst 54.1 9.23333 P PPLA4 DE 10 00 01051 01051138 716 13 Europe/Berlin 2011-04-25
-3208594 Büddenstedt Bueddenstedt Boeenste'e,Boeenstidde,Boeoenstidde,Böenste'e,Böenstidde,Böönstidde,boənsteə,boənstiddə,bȫənstēə,bǫ̈̄ənstiddə 52.17035 11.01877 P PPLA4 DE 06 00 03154 03154003 3051 137 Europe/Berlin 2011-03-14
-3208595 Dahlum Dahlum 52.13333 10.85 P PPLA4 DE 06 00 03158 03158007 775 150 Europe/Berlin 2011-04-25
-3208598 Elbe Elbe 52.08333 10.28333 P PPLA4 DE 06 00 03158 03158011 1853 111 Europe/Berlin 2011-04-25
-3208599 Flöthe Flothe 52.08333 10.48333 P PPLA4 DE 06 00 03158 03158014 1236 118 Europe/Berlin 2011-04-25
-3208605 Heere Heere 52.06667 10.25 P PPLA4 DE 06 00 03158 03158018 1221 113 Europe/Berlin 2011-04-25
-3208606 Ilsede Ilsede 52.26667 10.2 P PPLA4 DE 06 00 03157 03157003 12241 72 Europe/Berlin 2011-07-31
-3208615 Obernholz Obernholz 52.76642 10.59709 P PPLA4 DE 06 00 03151 03151019 944 96 Europe/Berlin 2011-07-31
-3208618 Sassenburg Sassenburg Sassenburg 52.51667 10.63333 P PPLA4 DE 06 00 03151 03151025 10982 67 Europe/Berlin 2011-07-31
-3208619 Schwienau Schwienau 53.00564 10.44542 P PPLA4 DE 06 00 03360 03360019 742 71 Europe/Berlin 2011-04-25
-3208620 Sickte Sickte 52.21847 10.6424 P PPLA4 DE 06 00 03158 03158030 5755 110 Europe/Berlin 2011-04-25
-3208627 Vahlberg Vahlberg 52.13333 10.71667 P PPLA4 DE 06 00 03158 03158032 855 126 Europe/Berlin 2011-04-25
-3208736 Bensdorf Bensdorf 52.41667 12.33333 P PPLA4 DE 11 00 12069 12069028 1334 29 Europe/Berlin 2011-04-25
-3209001 Ebersbach Ebersbach 51.23333 13.65 P PPLA4 DE 13 146 14627 14627030 5077 160 Europe/Berlin 2011-04-25
-3209055 Mühlanger Muhlanger 51.85 12.75 P PPLA4 DE 14 00 15091 15091230 1467 70 Europe/Berlin 2011-04-25
-3209056 Nessa Nessa 51.15 12.01667 P PPLA4 DE 14 00 15084 15084365 1016 170 Europe/Berlin 2011-04-25
-3209070 Marschacht Marschacht 53.4152 10.37524 P PPLA4 DE 06 00 03353 03353023 3635 4 Europe/Berlin 2011-09-04
-3209083 Henstedt-Ulzburg Henstedt-Ulzburg 53.79132 9.97979 P PPLA4 DE 10 00 01060 01060039 26083 41 Europe/Berlin 2011-07-31
-3209092 Wesenberg Wesenberg 53.83333 10.55 P PPLA4 DE 10 00 01062 01062094 968 13 Europe/Berlin 2011-04-25
-3209100 Moraas Moraas 53.41667 11.3 P PPLA4 DE 12 00 13054 13054076 546 25 Europe/Berlin 2011-04-25
-3209156 Fargau-Pratjau Fargau-Pratjau Fargau-Pratjau 54.33333 10.41667 P PPLA4 DE 10 00 01057 01057090 815 37 Europe/Berlin 2011-04-25
-3209174 Admannshagen-Bargeshagen Admannshagen-Bargeshagen 54.13038 11.99915 P PPLA4 DE 12 00 13051 13051001 2855 6 Europe/Berlin 2011-09-11
-3209175 Bartenshagen-Parkentin Bartenshagen-Parkentin Bartenshagen-Parkenthin,Bartenshagen-Parkentin 54.08333 11.96667 P PPLA4 DE 12 00 13051 13051006 1279 21 Europe/Berlin 2011-04-25
-3209176 Börgerende-Rethwisch Borgerende-Rethwisch 54.13333 11.91667 P PPLA4 DE 12 00 13051 13051013 1744 254 Europe/Berlin 2011-04-25
-3209181 Gattendorf Gattendorf 50.32207 11.99776 P PPLA4 DE 02 094 09475 09475127 1217 557 Europe/Berlin 2011-07-31
-3209193 Rossau Rossau 51 13.06667 P PPLA4 DE 13 145 14522 14522500 3925 309 Europe/Berlin 2011-04-25
-3209257 Kappel-Grafenhausen Kappel-Grafenhausen Kappel-Grafenhausen 48.28333 7.75 P PPLA4 DE 01 083 08317 08317152 4876 161 Europe/Berlin 2011-04-25
-3209281 Hiddensee Hiddensee Hiddensee 54.56667 13.1 P PPL DE 12 1094 252 Europe/Berlin 2012-01-19
-3209294 Diensdorf-Radlow Diensdorf-Radlow 52.23333 14.05 P PPLA4 DE 11 00 12067 12067112 0 40 Europe/Berlin 2011-04-25
-3209310 Bruchhausen Bruchhausen 50.6 7.25 P PPLA4 DE 08 00 07138 07138008 929 190 Europe/Berlin 2011-04-25
-3209313 Ebersbach-Musbach Ebersbach-Musbach Ebersbach-Musbach 47.96667 9.58333 P PPLA4 DE 01 084 08436 08436093 1815 599 Europe/Berlin 2011-04-25
-3209418 Reichenau Reichenau 47.68885 9.06355 P PPLA4 DE 01 083 08335 08335066 5144 409 Europe/Berlin 2011-04-25
-3209420 Vogtsburg Vogtsburg Vogtsburg 48.09272 7.68453 P PPL DE 01 5686 443 Europe/Berlin 2012-02-28
-3209903 Brohl-Lützing Brohl-Lutzing 50.48296 7.32908 P PPLA4 DE 08 00 07131 07131014 2654 63 Europe/Berlin 2011-07-28
-3209911 Burg Hohenstein Burg Hohenstein 50.18333 8.05 P PPL DE 05 6256 378 Europe/Berlin 2006-01-17
-3210390 Marktrodach Marktrodach Marktrodach 50.25 11.38333 P PPL DE 02 4007 347 Europe/Berlin 2012-01-19
-3210420 Triebel Triebel 50.37153 12.12118 P PPL DE 13 1705 467 Europe/Berlin 2008-08-28
-3213222 Schmedeswurth Schmedeswurth Schmedeswurth 53.91667 9.05 P PPLA4 DE 10 00 01051 01051103 202 255 Europe/Berlin 2011-04-25
-3213673 Barnitz Barnitz 53.8 10.5 P PPLA4 DE 10 00 01062 01062008 0 24 Europe/Berlin 2011-04-25
-3225056 Peterswald-Löffelscheid Peterswald-Loffelscheid 50 7.3 P PPLA4 DE 08 00 07135 07135071 810 438 Europe/Berlin 2011-04-25
-3225108 Ransbach-Baumbach Ransbach-Baumbach 50.46667 7.73333 P PPL DE 08 7327 299 Europe/Berlin 2006-01-17
-3247449 Aachen Aachen Aachen,Aakhen,Achenas,Ahene,Aix-la-Chapelle,Aken,Akhen,Akisgran,Akwizgran,Aoke,Aquae Grani,Aquisgra,Aquisgran,Aquisgrana,Aquisgrano,Aquisgranum,Aquisgrà,Aquisgrán,Axen,Axhe,Cachy,Cáchy,Gorad Akhen,Kreisfreie Stadt Aachen,Lungsod ng Aachen,Oche,Oochen,aakheni,ahen,ahkan,akhana,akhn,xa khein,ya chen,Åxhe,Āhene,Άαχεν,Аахен,Ахен,Горад Ахен,אאכן,آخن,आखन,ஆஃகன்,อาเคิน,აახენი,アーヘン,亚琛,아헨 50.77664 6.08342 P PPLA3 DE 07 053 05334 05334002 265208 266 178 Europe/Berlin 2010-11-23
-3272450 Ubstadt-Weiher Ubstadt-Weiher 49.17083 8.61889 P PPLA4 DE 01 082 08215 08215084 12730 111 Europe/Berlin 2011-04-25
-3272454 Stadecken-Elsheim Stadecken-Elsheim 49.91222 8.12528 P PPLA4 DE 08 00 07339 07339057 4438 110 Europe/Berlin 2011-04-25
-3272455 Dannstadt-Schauernheim Dannstadt-Schauernheim 49.44028 8.30861 P PPLA4 DE 08 00 07338 07338006 7228 97 Europe/Berlin 2011-04-25
-3272456 Sankt Leon-Rot Sankt Leon-Rot Sankt Leon-Rot,St. Leon-Rot 49.26639 8.61667 P PPL DE 01 12192 110 Europe/Berlin 2012-01-19
-3272457 Rödersheim-Gronau Rodersheim-Gronau 49.43 8.26139 P PPLA4 DE 08 00 07338 07338022 2903 107 Europe/Berlin 2011-04-25
-3272458 Karlsdorf-Neuthard Karlsdorf-Neuthard 49.13472 8.53028 P PPLA4 DE 01 082 08215 08215103 9329 110 Europe/Berlin 2011-04-25
-3272459 Graben-Neudorf Graben-Neudorf 49.16695 8.49243 P PPLA4 DE 01 082 08215 08215099 11697 109 Europe/Berlin 2011-04-25
-3272460 Mörfelden-Walldorf Morfelden-Walldorf Morfelden-Walldorf,Mörfelden-Walldorf 49.99472 8.58361 P PPL DE 05 32753 109 Europe/Berlin 2012-02-02
-3272461 Linkenheim-Hochstetten Linkenheim-Hochstetten 49.13197 8.41244 P PPLA4 DE 01 082 08215 08215105 11599 106 Europe/Berlin 2011-04-25
-3272462 Billigheim-Ingenheim Billigheim-Ingenheim 49.13667 8.09056 P PPLA4 DE 08 00 07337 07337007 4038 140 Europe/Berlin 2011-04-25
-3272463 Böhl-Iggelheim Bohl-Iggelheim Bohl-Iggelheim,Böhl-Iggelheim 49.38056 8.30389 P PPLA4 DE 08 00 07338 07338005 10797 108 Europe/Berlin 2011-04-25
-3272464 Hochdorf-Assenheim Hochdorf-Assenheim 49.41944 8.28167 P PPLA4 DE 08 00 07338 07338014 3041 111 Europe/Berlin 2011-04-25
-3272934 Alsbach-Hähnlein Alsbach-Hahnlein 49.73861 8.59583 P PPLA4 DE 05 064 06432 06432001 9300 98 Europe/Berlin 2011-04-25
-3272935 Dittelsheim-Heßloch Dittelsheim-Hessloch 49.74389 8.23694 P PPLA4 DE 08 00 07331 07331015 2171 169 Europe/Berlin 2011-04-25
-3272941 Riedstadt Riedstadt 49.83411 8.49621 P PPL DE 05 064 21362 93 Europe/Berlin 2010-11-15
-3272957 Hochstadt Hochstadt Hochstadt 49.2475 8.20889 P PPL DE 08 2461 137 Europe/Berlin 2012-01-19
-3272963 Hochborn Hochborn 49.72389 8.20083 P PPLA4 DE 08 00 07331 07331011 447 273 Europe/Berlin 2011-04-25
-3274259 Leingarten Leingarten Leingarten 49.14639 9.11694 P PPLA4 DE 01 081 08125 08125058 10579 171 Europe/Berlin 2011-04-25
-3274966 Lauda-Königshofen Lauda-Konigshofen Lauda-Konigshofen,Lauda-Königshofen 49.56528 9.70417 P PPL DE 01 15278 198 Europe/Berlin 2012-02-28
-3274969 Hesseneck Hesseneck 49.56987 9.06286 P PPLA4 DE 05 064 06437 06437008 692 322 Europe/Berlin 2011-04-25
-3274976 Neunkirchen Neunkirchen 49.70722 9.4025 P PPLA4 DE 02 096 09676 09676143 0 327 Europe/Berlin 2011-04-25
-3274987 Altenbuch Altenbuch 49.82861 9.40139 P PPLA4 DE 02 096 09676 09676111 1311 254 Europe/Berlin 2011-04-25
-3274989 Mespelbrunn Mespelbrunn 49.91444 9.29194 P PPLA4 DE 02 096 09671 09671141 2307 278 Europe/Berlin 2011-07-31
-3278304 Lützelbach Lutzelbach Lutzelbach,Lützelbach 49.78833 9.07528 P PPLA4 DE 05 064 06437 06437010 0 248 Europe/Berlin 2011-04-25
-3290055 Heuchelheim-Klingen Heuchelheim-Klingen 49.14528 8.055 P PPLA4 DE 08 00 07337 07337040 913 162 Europe/Berlin 2011-04-25
-3336891 Filderstadt Filderstadt 48.65698 9.22049 P PPLA4 DE 01 081 08116 08116077 43550 393 Europe/Berlin 2011-07-31
-3336892 Ostfildern Ostfildern 48.72704 9.24954 P PPLA4 DE 01 081 08116 08116080 33598 409 Europe/Berlin 2011-04-25
-3336893 Rodgau Rodgau 50.02627 8.88588 P PPLA4 DE 05 064 06438 06438011 43315 129 Europe/Berlin 2011-04-25
-3336894 Butjadingen Butjadingen Butjadingen 53.54722 8.335 P PPLA4 DE 06 00 03461 03461003 6597 254 Europe/Berlin 2011-07-31
-3336895 Kaufungen Kaufungen Kaufungen 51.28111 9.61861 P PPLA4 DE 05 066 06633 06633015 12683 212 Europe/Berlin 2011-07-31
-3336896 Jettingen-Scheppach Jettingen-Scheppach Jettingen-Scheppach 48.39722 10.43889 P PPL DE 02 6865 465 Europe/Berlin 2012-01-19
-3337504 Seeheim-Jugenheim Seeheim-Jugenheim 49.765 8.65194 P PPLA4 DE 05 064 06432 06432022 16395 170 Europe/Berlin 2011-04-25
-6269602 Lauben Lauben 47.77879 10.30071 P PPLA4 DE 02 097 09780 09780125 3200 669 Europe/Berlin 2011-04-25
-6544447 Kalbach Kalbach 50.40447 9.68256 P PPLA4 DE 05 066 06631 06631016 0 424 Europe/Berlin 2011-07-31
-6545310 Berlin Mitte Berlin Mitte Mitte 52.52003 13.40489 P PPLX DE 16 00 329078 48 Europe/Berlin 2010-11-22
-6547590 Dallgow-Döberitz Dallgow-Doeberitz 52.54269 13.05837 P PPL DE 11 00 12063 12063056 7439 35 Europe/Berlin 2010-11-22
-6547667 Borkwalde Borkwalde 52.25 12.8333 P PPL DE 11 00 12069 12069056 1472 67 Europe/Berlin 2010-11-22
-6548670 Bertsdorf-Hörnitz Bertsdorf-Hoernitz 50.88593 14.73696 P PPL DE 13 146 14626 14626050 2616 299 Europe/Berlin 2011-07-30
-6550659 Spremberg Spremberg 51.56971 14.37355 P PPL DE 11 00 12071 12071372 26348 100 Europe/Berlin 2010-11-16
-6558039 Rheinstetten Rheinstetten 48.9685 8.30704 P PPL DE 01 082 08215 08215108 20378 114 Europe/Berlin 2010-11-15
-6559224 Münstertal/Schwarzwald Muenstertal/Schwarzwald 47.85 7.78333 P PPL DE 01 083 08315 08315130 5199 477 Europe/Berlin 2010-11-15
-6619303 Glottertal Glottertal 48.05078 7.96337 P PPLA4 DE 01 083 08315 08315041 0 403 Europe/Berlin 2011-07-31
-6639586 Salem Salem 47.76667 9.29583 P PPLA4 DE 01 084 08435 08435052 0 434 Europe/Berlin 2011-07-31
-6694210 Neunkirchen am Brand Neunkirchen am Brand 49.61204 11.12967 P PPL DE 02 8243 317 316 Europe/Berlin 2008-07-03
-6694704 Rothenburgsort Rothenburgsort 53.535 10.04082 P PPLX DE 04 8938 5 Europe/Berlin 2011-08-20
-6930414 Stuttgart-Ost Stuttgart-Ost S-Ost,Stgt-Ost 48.78363 9.21032 P PPL DE 01 081 08111 47500 300 259 Europe/Berlin 2010-11-15
-6941055 Bochum-Hordel Bochum-Hordel 51.50168 7.1756 P PPLX DE 07 380000 51 57 Europe/Berlin 2009-05-03
-6944296 St. Pauli St. Pauli 53.557 9.964 P PPLX DE 04 27612 17 Europe/Berlin 2011-08-20
-6947478 Köln-Chorweiler Koeln-Chorweiler Chorweiler 51.0287 6.89475 P PPLX DE 07 13418 46 Europe/Berlin 2010-05-14
-6947480 Köln-Kalk Koeln-Kalk Kalk 50.9426 7.00678 P PPLX DE 07 21769 51 Europe/Berlin 2010-05-14
-6947481 Köln-Lindenthal Koeln-Lindenthal Lindenthal 50.9263 6.91012 P PPLX DE 07 28811 53 Europe/Berlin 2010-05-14
-6947482 Köln-Mülheim Koeln-Muelheim Muelheim,Mülheim 50.9631 7.00488 P PPLX DE 07 144625 51 Europe/Berlin 2010-05-14
-6947483 Köln-Nippes Koeln-Nippes Nippes 50.963 6.9541 P PPLX DE 07 110140 52 Europe/Berlin 2010-05-14
-6949638 Siegbach Siegbach 50.73895 8.41793 P PPLA4 DE 05 065 06532 06532019 0 339 Europe/Berlin 2011-04-25
-7117230 Schwanau Schwanau Shvanau,Шванау 48.36669 7.76244 P PPLA4 DE 01 083 08317 08317150 6858 151 Europe/Berlin 2011-07-31
-7144088 Kell am See Kell am See 49.63306 6.82217 P PPLA4 DE 08 00 07235 07235058 0 466 Europe/Berlin 2011-07-31
-7144169 Holzerath Holzerath 49.67951 6.76071 P PPLA4 DE 08 00 07235 07235050 0 437 Europe/Berlin 2011-04-25
-7274677 Eidelstedt Eidelstedt Eidelstedt,Hamburg-Eidelstedt 53.60697 9.90538 P PPLX DE 04 00 02000 30100 21 Europe/Berlin 2010-11-22
-7284134 Schelfstadt Schelfstadt 53.63382 11.41711 P PPLX DE 12 4308 42 Europe/Berlin 2010-03-27
-7284135 Werdervorstadt Werdervorstadt 53.63909 11.42767 P PPLX DE 12 4148 42 Europe/Berlin 2010-03-27
-7284137 Altstadt Altstadt 53.62805 11.41582 P PPLX DE 12 3202 47 Europe/Berlin 2010-03-27
-7284138 Feldstadt Feldstadt 53.62331 11.40673 P PPLX DE 12 4160 47 Europe/Berlin 2010-03-27
-7284168 Paulsstadt Paulsstadt 53.63283 11.40372 P PPLX DE 12 8299 59 Europe/Berlin 2010-03-27
-7284171 Weststadt Weststadt 53.63472 11.39565 P PPLX DE 12 12141 65 Europe/Berlin 2010-03-27
-7284172 Lewenberg Lewenberg 53.64591 11.40767 P PPLX DE 12 2106 53 Europe/Berlin 2010-03-27
-7289614 Halle Neustadt Halle Neustadt Halle-Neustadt 51.47924 11.91605 P PPL DE 14 240000 85 Europe/Berlin 2010-11-17
-7290243 Bergedorf Bergedorf Bardoerp,Bardörp,Bergedorf,Hamburg-Bergedorf 53.48462 10.22904 P PPLX DE 04 119665 17 Europe/Berlin 2010-10-31
-7290245 Berlin Steglitz Zehlendorf Berlin Steglitz Zehlendorf Berlin Steglitz,Berlin Zehlendorf,Steglitz,Zehlendorf 52.43485 13.24183 P PPLX DE 16 290506 45 Europe/Berlin 2010-05-14
-7290251 Berlin Wilmersdorf Berlin Wilmersdorf Wilmersdorf 52.50097 13.29097 P PPLX DE 16 317190 42 Europe/Berlin 2010-05-14
-7290252 Berlin Spandau Berlin Spandau Spandau 52.5511 13.19921 P PPLX DE 16 223862 35 Europe/Berlin 2010-05-14
-7290253 Berlin Tempelhof Berlin Tempelhof Tempelhof 52.47693 13.41027 P PPLX DE 16 54629 50 Europe/Berlin 2010-05-14
-7290254 Berlin Schöneberg Berlin Schoeneberg Schoeneberg,Schöneberg 52.47457 13.34839 P PPLX DE 16 116286 40 Europe/Berlin 2010-05-14
-7290255 Berlin Treptow Berlin Treptow Treptow 52.49376 13.44469 P PPLX DE 16 50000 32 Europe/Berlin 2010-05-14
-7290401 Niederrad Niederrad Frankfurt Niederrad,Niederrad 50.08309 8.62852 P PPLX DE 05 22370 99 Europe/Berlin 2011-08-23
-7302786 Haselbachtal Haselbachtal 51.2357 14.02576 P PPLG DE 13 0 224 Europe/Berlin 2010-06-16
-7576812 Rabenau Rabenau 50.67753 8.86425 P PPLA4 DE 05 065 06531 06531015 5239 250 236 Europe/Berlin 2011-04-25
-7576935 Ebsdorfergrund Ebsdorfergrund 50.72602 8.85704 P PPLA4 DE 05 065 06534 06534008 0 254 Europe/Berlin 2011-07-31
-7580311 Dachsberg Dachsberg 47.72945 8.10001 P PPLA4 DE 01 083 08337 08337027 0 912 Europe/Berlin 2011-07-31
-7732633 Garbsen-Mitte Garbsen-Mitte 52.42659 9.60383 P PPLX DE 06 7500 52 52 Europe/Berlin 2011-03-31
-7909809 Selfkant Selfkant 51.02212 5.92978 P PPLA4 DE 07 053 05370 05370024 0 48 Europe/Berlin 2011-07-31
-7932342 Barmbek-Nord Barmbek-Nord 53.6052 10.03988 P PPLX DE 04 40261 20 Europe/Berlin 2011-08-21
-7932378 Hammerbrook Hammerbrook 53.54527 10.03042 P PPLX DE 04 1649 5 Europe/Berlin 2011-08-20
-7932386 Farmsen-Berne Farmsen-Berne 53.60639 10.11972 P PPLX DE 04 33315 22 Europe/Berlin 2011-08-21
-7932486 Kleiner Grasbrook Kleiner Grasbrook 53.53111 9.99361 P PPLX DE 04 1250 6 Europe/Berlin 2011-08-23
-8051091 Fehmarn Fehmarn 54.4378 11.19352 P PPL DE 10 12942 10 5 Europe/Berlin 2011-10-22
-220782 Tadjoura Tadjoura Tadjoura,Tadjura,Tadzhura,Tadzura,Tadżura,Tagiura,Tajura,Таджура 11.78528 42.88444 P PPLA DJ 05 22193 7 Africa/Djibouti 2012-01-18
-221527 Obock Obock Hayyou,Obock,Obok 11.96306 43.29056 P PPLA DJ 04 17776 7 Africa/Djibouti 2012-01-18
-221915 Loyada Loyada La-waada,Loya Ada,Loyada,Loyi Ada 11.46111 43.25278 P PPL DJ 07 1646 7 Africa/Djibouti 2012-01-18
-222596 Holhol Holhol Hol Holl,Holhol,Holl-Holl 11.31028 42.92944 P PPL DJ 01 3519 440 Africa/Djibouti 2012-01-18
-223773 Dorra Dorra 12.14944 42.4775 P PPL DJ 05 1873 293 Africa/Djibouti 2006-01-17
-223817 Djibouti Djibouti Cibuti,Djibouti,Djibuti,Dschibuti,Dzhibuti,Dzibuti,Dzibutis,Dżibuti,Džibuti,Džibutis,Gibuti,Gibuto,Jibouti,Jibuti,Tzimpouti,Yibuti,g'ybwty,ji bu de,jibuchi shi,jibuti,jybwty,Ĝibuto,Τζιμπουτί,Джибути,ג'יבוטי,جبوتی سٹی,جیبوتی,ジブチ市,吉布地,지부티 11.58767 43.14468 P PPLC DJ 07 623891 5 Africa/Djibouti 2010-05-30
-223890 Dikhil Dikhil Dicchil,Dikhil,Dikil,Dikkil 11.10861 42.37389 P PPLA DJ 06 12043 497 Africa/Djibouti 2012-01-18
-225037 ‘Arta `Arta Arta,`Arta,‘Arta 11.52222 42.84194 P PPLA DJ 08 6025 719 Africa/Djibouti 2012-01-18
-225284 ‘Ali Sabieh `Ali Sabieh Ali Sabie,Ali Sabiet,Ali Sabih,Ali Sabiè,Ali-Sabie,`Ali Sabieh,`Ali Sabih,Али-Сабие,‘Ali Sabieh,‘Ali Sabîẖ 11.15583 42.7125 P PPLA DJ 01 40074 699 Africa/Djibouti 2012-01-18
-400462 Alaïli Ḏaḏḏa‘ Alaili Dadda` Alaili Dadda`,Alayli Dadda`,Alayli Ḏaḏḏa‘,Alaïli Ḏaḏḏa‘ 12.42167 42.89556 P PPL DJ 04 1456 357 Africa/Djibouti 2012-01-19
-408698 Gâlâfi Galafi 11.71583 41.83611 P PPL DJ 06 1849 151 Africa/Djibouti 2006-01-17
-2609990 Vrå Vra Vra,Vraa,Vrå 57.34763 9.95154 P PPL DK 19 860 2273 29 Europe/Copenhagen 2012-01-17
-2610020 Vordingborg Vordingborg Vordingborg,Вордингборг 55.00801 11.91057 P PPLA2 DK 20 390 9131 15 Europe/Copenhagen 2011-03-01
-2610075 Vojens Vojens Vojens 55.24639 9.30604 P PPL DK 21 510 8019 42 Europe/Copenhagen 2012-01-17
-2610095 Vodskov Vodskov 57.10854 10.02215 P PPL DK 19 851 4406 13 Europe/Copenhagen 2011-12-20
-2610140 Vissenbjerg Vissenbjerg Vissenbjerg,Vissenbjerg Kirke 55.38482 10.13784 P PPL DK 21 420 3055 114 Europe/Copenhagen 2012-01-17
-2610159 Virklund Virklund 56.13218 9.55582 P PPL DK 18 740 3113 54 Europe/Copenhagen 2011-12-20
-2610162 Vipperød Vipperod 55.66768 11.73967 P PPL DK 20 316 2345 32 Europe/Copenhagen 2011-12-20
-2610189 Vindinge Vindinge 55.62298 12.1387 P PPL DK 20 265 2045 54 Europe/Copenhagen 2011-12-20
-2610196 Vinderup Vinderup Vinderup,Vinderup Garde,Vinderup Gårde 56.47515 8.79081 P PPL DK 18 661 2991 13 Europe/Copenhagen 2012-01-17
-2610207 Vindeby Vindeby 55.04489 10.61309 P PPL DK 21 479 2144 15 Europe/Copenhagen 2011-12-20
-2610259 Vildbjerg Vildbjerg Vilbjaerg,Vilbjerg,Vilbjærg,Vildbjerg 56.2 8.76667 P PPL DK 18 657 3773 54 Europe/Copenhagen 2012-01-17
-2610307 Videbæk Videbaek Videbaek,Videbäk,Videbæk 56.0876 8.62852 P PPL DK 18 760 4052 36 Europe/Copenhagen 2012-01-17
-2610311 Viby Viby 55.54872 12.02391 P PPL DK 20 265 4505 41 Europe/Copenhagen 2011-12-20
-2610319 Viborg Viborg Viborg,Wibergis,Виборг 56.45319 9.40201 P PPLA DK 18 791 34831 50 Europe/Copenhagen 2010-01-29
-2610437 Vester Hassing Vester Hassing Vester Hasing,Vester Hassing 57.06767 10.12558 P PPL DK 19 851 2298 16 Europe/Copenhagen 2012-01-17
-2610499 Vestbjerg Vestbjerg Vestbjaerg,Vestbjerg,Vestbjærg 57.13166 9.95942 P PPL DK 19 851 2251 24 Europe/Copenhagen 2012-01-17
-2610566 Veksø Vekso Vekso,Veksø,Vikso,Viksø 55.75473 12.23837 P PPL DK 17 240 1921 31 Europe/Copenhagen 2012-01-17
-2610613 Vejle Vejle Vajle,Vejle,Вайле 55.70927 9.5357 P PPLA DK 21 630 51177 5 Europe/Copenhagen 2010-01-29
-2610634 Vejen Vejen Vejen 55.48333 9.15 P PPLA2 DK 21 575 8525 36 Europe/Copenhagen 2011-03-01
-2610726 Varde Varde Varde,Варде 55.62112 8.48069 P PPLA2 DK 21 573 12735 11 Europe/Copenhagen 2011-03-01
-2610760 Vamdrup Vamdrup Vamdrup 55.42764 9.28435 P PPL DK 21 621 4685 37 Europe/Copenhagen 2012-01-17
-2610789 Vallensbæk Vallensbaek Vallensbaek,Vallensbæk 55.63333 12.36667 P PPLA2 DK 17 187 13500 5 Europe/Copenhagen 2011-03-01
-2610823 Vadum Vadum 57.1179 9.857 P PPLL DK 19 851 1978 10 Europe/Copenhagen 2011-12-20
-2610908 Ulstrup Ulstrup Ulstrup,Ulstrupbro 56.38994 9.79354 P PPL DK 18 710 1963 12 Europe/Copenhagen 2012-01-17
-2610942 Ullerslev Ullerslev 55.36172 10.6519 P PPL DK 21 450 2962 14 Europe/Copenhagen 2011-12-20
-2610959 Ulfborg Ulfborg Ulborg,Ulfborg,Ulfkaer,Ulfkær,Ulvborg Stationsby 56.26725 8.32167 P PPL DK 18 661 1994 18 Europe/Copenhagen 2012-01-17
-2611132 Tune Tune Tune 55.59528 12.18319 P PPL DK 20 253 5168 40 Europe/Copenhagen 2012-01-17
-2611189 Trørød Trorod 55.83946 12.54432 P PPL DK 17 230 8576 21 Europe/Copenhagen 2011-12-20
-2611256 Trige Trige 56.25291 10.1484 P PPL DK 18 751 2475 76 Europe/Copenhagen 2011-12-20
-2611311 Tranebjerg Tranebjerg Tranebierg,Tranebjaerg,Tranebjerg,Tranebjærg 55.8326 10.59723 P PPLA2 DK 18 741 0 17 Europe/Copenhagen 2011-12-20
-2611316 Tranbjerg Tranbjerg Tranbjaerg,Tranbjerg,Tranbjærg 56.0901 10.11937 P PPL DK 18 751 7307 71 Europe/Copenhagen 2012-01-17
-2611486 Tørring Torring Nye Torring,Nye Törring,Torring,Torring Stationsby,Tørring,Tørring Stationsby 55.85 9.48333 P PPL DK 18 766 2370 58 Europe/Copenhagen 2012-01-17
-2611497 Tønder Tonder Tonder,Tondern,Tuner,Tynne,Tønder 54.93306 8.86674 P PPLA2 DK 21 550 7841 3 Europe/Copenhagen 2011-03-01
-2611509 Tølløse Tollose Tollose,Tollose Stationsby,Töllöse Stationsby,Tølløse 55.6125 11.77034 P PPL DK 20 316 3457 47 Europe/Copenhagen 2012-01-17
-2611520 Tommerup Tommerup Tommerup 55.31952 10.20659 P PPL DK 21 420 2072 52 Europe/Copenhagen 2012-02-01
-2611565 Toftlund Toftlund 55.18858 9.06925 P PPL DK 21 550 3438 44 Europe/Copenhagen 2011-12-20
-2611610 Tjæreborg Tjaereborg 55.46457 8.57968 P PPL DK 21 561 2146 12 Europe/Copenhagen 2011-12-20
-2611684 Tinglev Tinglev Tinglev 54.93099 9.25243 P PPL DK 21 580 2829 22 Europe/Copenhagen 2012-01-17
-2611738 Thyborøn Thyboron Thyboron,Thyborøn,Tyboron,Tyboron By,Tyborøn,Tyborøn By 56.69846 8.21238 P PPL DK 18 665 2587 2 Europe/Copenhagen 2012-01-17
-2611742 Thurø By Thuro By Thuro,Thuro By,Thurø,Thurø By,Turo By,Turö By 55.0474 10.66385 P PPL DK 21 479 3350 21 Europe/Copenhagen 2012-01-17
-2611755 Thisted Thisted Thystad,Tisted 56.95523 8.69491 P PPLA2 DK 19 787 13020 4 Europe/Copenhagen 2011-03-01
-2611817 Taulov Taulov Tavlov,Tavlov Nebel 55.54582 9.61553 P PPL DK 21 607 2898 30 Europe/Copenhagen 2011-12-20
-2611828 Taastrup Taastrup Taastrup,Tastrup,Tåstrup,Тааструп 55.65173 12.29216 P PPLA2 DK 17 169 30977 19 Europe/Copenhagen 2011-12-20
-2611852 Tårs Tars Taars,Tars,Tors,Tårs 57.38333 10.11667 P PPL DK 19 860 1856 54 Europe/Copenhagen 2012-01-17
-2611862 Tårnby Tarnby Taarnby,Tarnby,Tårnby 55.6303 12.60035 P PPLA2 DK DK 17 185 10000 2 Europe/Copenhagen 2011-03-01
-2611865 Tarm Tarm 55.90862 8.53041 P PPL DK 18 760 4080 8 Europe/Copenhagen 2011-12-20
-2611982 Svogerslev Svogerslev 55.63423 12.01465 P PPL DK 20 265 4355 39 Europe/Copenhagen 2011-12-20
-2611999 Svinninge Svinninge 55.72111 11.46547 P PPL DK 20 316 2376 9 Europe/Copenhagen 2011-12-20
-2612021 Svenstrup Svenstrup 56.9723 9.84806 P PPL DK 19 851 4550 15 Europe/Copenhagen 2011-12-20
-2612045 Svendborg Svendborg Svenborg,Svendborg,Svennborge,Свеннборге 55.05982 10.60677 P PPLA2 DK 21 479 27553 14 Europe/Copenhagen 2011-03-01
-2612053 Svejbæk Svejbaek 56.13255 9.63289 P PPL DK 18 740 3743 32 Europe/Copenhagen 2011-12-20
-2612057 Svebølle Svebolle Svebolle,Svebolle Stationsby,Svebølle,Svebølle Stationsby 55.65183 11.28658 P PPL DK 20 326 2186 14 Europe/Copenhagen 2012-01-17
-2612107 Sunds Sunds Sunde,Sunds 56.20417 9.01266 P PPL DK 18 657 3525 45 Europe/Copenhagen 2012-01-17
-2612121 Sundby Sundby Stadager,Sundby 54.864 11.79302 P PPL DK 20 376 2922 12 Europe/Copenhagen 2012-01-17
-2612192 Stubbekøbing Stubbekobing Stubbekiobing,Stubbekiöbing,Stubbekjobing,Stubbekjöbing,Stubbekobing,Stubbekøbing 54.88875 12.04102 P PPL DK 20 376 2301 8 Europe/Copenhagen 2011-12-20
-2612204 Struer Struer Struehr,Struer,Струэр 56.49122 8.58376 P PPLA2 DK 18 671 11317 12 Europe/Copenhagen 2011-03-01
-2612211 Strøby Egede Stroby Egede 55.41382 12.24502 P PPL DK 20 336 2700 5 Europe/Copenhagen 2011-12-20
-2612224 Strib Strib Strib,Стриб 55.54021 9.76748 P PPL DK 21 410 4339 13 Europe/Copenhagen 2012-01-17
-2612274 Strandby Strandby 57.4915 10.49608 P PPL DK 19 813 2518 5 Europe/Copenhagen 2011-12-20
-2612301 Storvorde Storvorde Storevorde,Storvorde 57.00392 10.10125 P PPL DK 19 851 2796 8 Europe/Copenhagen 2012-01-17
-2612411 Store Heddinge Store Heddinge Store Hedinge 55.30965 12.38885 P PPLA2 DK 20 336 3679 30 Europe/Copenhagen 2011-12-20
-2612500 Støvring Stovring 56.88536 9.83839 P PPLA2 DK 19 840 6239 18 Europe/Copenhagen 2012-02-08
-2612529 Stoholm Stoholm 56.48454 9.14617 P PPL DK 18 791 2202 23 Europe/Copenhagen 2011-12-20
-2612541 Stilling Stilling 56.06224 9.98822 P PPL DK 18 746 3655 68 Europe/Copenhagen 2011-12-20
-2612552 Stige Stige 55.43941 10.4094 P PPL DK 21 461 2182 5 Europe/Copenhagen 2011-12-20
-2612629 Stenløse Stenlose 55.76828 12.19723 P PPLA2 DK 17 240 19998 14 Europe/Copenhagen 2011-12-20
-2612633 Stenlille Stenlille Stenlille 55.54022 11.59146 P PPL DK 20 340 1905 35 Europe/Copenhagen 2012-01-17
-2612689 Stege Stege Stege 54.98704 12.28461 P PPL DK 20 390 3881 6 Europe/Copenhagen 2012-02-01
-2612695 Stavtrup Stavtrup Stautrup,Stavtrup 56.13124 10.11987 P PPL DK 18 751 3519 35 Europe/Copenhagen 2012-01-17
-2612710 Stavnsholt Stavnsholt 55.81479 12.40545 P PPL DK 17 190 5658 35 Europe/Copenhagen 2011-12-20
-2612730 Starup Starup 55.24097 9.53503 P PPL DK 21 510 2091 21 Europe/Copenhagen 2011-12-20
-2612823 Spentrup Spentrup 56.53703 10.03792 P PPL DK 18 730 2155 45 Europe/Copenhagen 2011-12-20
-2612862 Sorø Soro 55.43184 11.55547 P PPLA DK 20 340 7167 43 Europe/Copenhagen 2011-12-20
-2612955 Søndersø Sonderso Sonderse,Sonderso,Sönderse,Søndersø 55.48526 10.2554 P PPL DK 21 480 2850 30 Europe/Copenhagen 2012-01-17
-2613102 Sønderborg Sonderborg Sjonnenborg,Sonderborg,Sonderburg,Synneborre,Sønderborg,Сённенборг 54.90926 9.80737 P PPLA2 DK 21 540 27033 17 Europe/Copenhagen 2011-03-01
-2613106 Sønder Bjert Sonder Bjert Bjaert,Bjært,Sonder Bjert,Sønder Bjert 55.45272 9.56741 P PPL DK 21 621 1815 24 Europe/Copenhagen 2012-01-17
-2613172 Søften Soften Soften,Søften 56.23801 10.0851 P PPL DK 18 710 2030 41 Europe/Copenhagen 2012-01-17
-2613233 Solrød Strand Solrod Strand 55.53285 12.22227 P PPLX DK 20 269 14845 2 Europe/Copenhagen 2011-12-20
-2613234 Solrød Solrod 55.53628 12.1827 P PPLA2 DK 20 269 2000 17 Europe/Copenhagen 2011-03-01
-2613254 Solbjerg Solbjerg Solbjaerg,Solbjærg 56.04271 10.08631 P PPL DK 18 751 2964 59 Europe/Copenhagen 2009-10-21
-2613293 Snoghøj Snoghoj Snoghoj,Snoghøj 55.52253 9.72125 P PPL DK 21 607 2371 17 Europe/Copenhagen 2012-01-17
-2613322 Snejbjerg Snejbjerg Snejbjaerg,Snejbjerg,Snejbjærg 56.13875 8.89896 P PPL DK 18 657 3513 64 Europe/Copenhagen 2012-01-17
-2613345 Smørumnedre Smorumnedre Smorumnedre,Smørumnedre 55.74232 12.30276 P PPL DK 17 240 8968 31 Europe/Copenhagen 2012-01-17
-2613451 Slangerup Slangerup Gmina Slangerup,Slangerup 55.85 12.18333 P PPL DK 17 250 6829 29 Europe/Copenhagen 2012-01-17
-2613460 Slagelse Slagelse Slagel'se,Slagelse,Слагельсе 55.40276 11.35459 P PPLA2 DK 20 330 31896 51 Europe/Copenhagen 2011-03-01
-2613539 Sherrebek Sherrebek Sherrebek,Skaerbaek,Skærbæk 55.15735 8.76901 P PPL DK 21 550 3174 16 Europe/Copenhagen 2012-01-17
-2613621 Skovby Skovby Skovby,Skovby Ostj,Skovby Østj 56.1534 9.95695 P PPL DK 18 746 2489 42 Europe/Copenhagen 2012-01-17
-2613672 Skørping Skorping Gmina Skorping,Gmina Skørping,Skoerping,Skorping,Skorping Stationsby,Skörping,Skörping Stationsby,Skørping 56.83626 9.89255 P PPL DK 19 840 2722 66 Europe/Copenhagen 2012-01-17
-2613694 Skælskør Skaelskor Skaelskor,Skjelskor,Skjelskör,Skælskør 55.25058 11.29352 P PPL DK 20 330 6455 4 Europe/Copenhagen 2012-01-17
-2613715 Skjern Skjern Gmina Skjern,Skern,Skerne,Skjern 55.95 8.5 P PPL DK 18 760 7145 9 Europe/Copenhagen 2012-01-17
-2613731 Skive Skive Skive,Скиве 56.56667 9.03333 P PPLA2 DK 18 779 20815 4 Europe/Copenhagen 2011-03-01
-2613766 Skibby Skibby Skibby,Skiby 55.75122 11.96083 P PPL DK 17 250 2661 31 Europe/Copenhagen 2012-01-17
-2613887 Skanderborg Skanderborg Skanderborg 56.03991 9.9272 P PPLA2 DK 18 746 13543 36 Europe/Copenhagen 2011-03-01
-2613939 Skagen Skagen Skagen,Скаген 57.72093 10.58394 P PPL DK 19 813 9747 3 Europe/Copenhagen 2011-12-20
-2614010 Sindal Sindal Gmina Sindal,Sindal 57.47117 10.20312 P PPL DK 19 860 2898 25 Europe/Copenhagen 2010-05-08
-2614030 Silkeborg Silkeborg Sil'keborg,Silkeborg,Силькеборг 56.1697 9.54508 P PPLA2 DK 18 740 41674 19 Europe/Copenhagen 2011-03-01
-2614135 Seden Seden 55.42648 10.44265 P PPL DK 21 461 3350 3 Europe/Copenhagen 2011-12-20
-2614172 Sæby Saeby Saeby,Sæby 57.33188 10.52251 P PPL DK 19 813 8435 8 Europe/Copenhagen 2012-01-17
-2614328 Sakskøbing Sakskobing Gmina Sakskobing,Gmina Sakskøbing,Sakskobing,Sakskøbing,Saxkiobing,Saxkiöbing,Saxkjobing,Saxkjöbing 54.7997 11.62599 P PPL DK 20 376 4928 3 Europe/Copenhagen 2011-03-15
-2614343 Sabro Sabro 56.21333 10.03441 P PPL DK 18 751 1977 95 Europe/Copenhagen 2011-12-20
-2614353 Ryomgård Ryomgard Ryomgaard,Ryomgard,Ryomgård,Ryumgaard,Ryumgard,Ryumgård 56.3843 10.50295 P PPL DK 18 706 1952 29 Europe/Copenhagen 2012-01-17
-2614387 Ry Ry Ry,Rye,Rye Stationsby 56.09038 9.76505 P PPL DK 18 746 4909 38 Europe/Copenhagen 2012-01-17
-2614432 Rudkøbing Rudkobing Rudkiobing,Rudkjobing,Rudkjöbing,Rudkobing,Rudkøbing 54.93639 10.71019 P PPLA2 DK 21 482 4666 10 Europe/Copenhagen 2011-12-20
-2614481 Roskilde Roskilde Hroarskelda,Hróarskelda,Roskilde,Roskille,luo si ji lei,rosukire,Роскилле,ロスキレ,罗斯基勒 55.64152 12.08035 P PPLA2 DK 20 265 44285 41 Europe/Copenhagen 2011-03-01
-2614547 Rønnede Ronnede Gmina Ronnede,Gmina Rønnede,Ronnede,Rønnede 55.2571 12.02124 P PPL DK 20 320 2395 66 Europe/Copenhagen 2012-01-17
-2614553 Rønne Ronne Ronne,Rønne 55.10091 14.70664 P PPLA2 DK 17 400 13890 22 Europe/Copenhagen 2011-12-20
-2614565 Rønde Ronde Ronde,Rønde 56.30145 10.47506 P PPLA2 DK 18 706 2213 46 Europe/Copenhagen 2012-02-07
-2614600 Rødovre Rodovre Rodovre,Rødovre 55.68062 12.45373 P PPLA2 DK 17 175 30000 20 Europe/Copenhagen 2011-03-01
-2614611 Rødekro Rodekro Gmina Rodekro,Gmina Rødekro,Rodekro,Rødekro 55.07016 9.31641 P PPL DK 21 580 5452 42 Europe/Copenhagen 2012-01-17
-2614623 Rødding Rodding Rodding,Rødding 55.36569 9.06316 P PPL DK 21 575 2769 35 Europe/Copenhagen 2012-02-01
-2614624 Rødbyhavn Rodbyhavn Rodby Havn,Rodbyhavn,Roedby-havn,Rødbyhavn 54.65442 11.35203 P PPL DK 20 360 2145 0 Europe/Copenhagen 2012-01-17
-2614626 Rødby Rodby Gmina Rodby,Gmina Rødby,Rodby,Rødby 54.69495 11.38885 P PPL DK 20 360 2379 2 Europe/Copenhagen 2012-01-17
-2614764 Ringsted Ringsted Ringsted,Рингстед 55.4426 11.79011 P PPLA2 DK 20 329 20188 54 Europe/Copenhagen 2011-03-01
-2614776 Ringkøbing Ringkobing Ringkjobing,Ringkjöbing,Ringkobing,Ringkøbing 56.09006 8.24402 P PPLA2 DK 18 760 9315 8 Europe/Copenhagen 2011-12-20
-2614790 Ringe Ringe Ringe 55.24506 10.47065 P PPL DK 21 430 4849 75 Europe/Copenhagen 2012-02-01
-2614813 Ribe Ribe Ribe,Рибе 55.33051 8.76966 P PPL DK 21 561 7983 5 Europe/Copenhagen 2010-07-21
-2615006 Randers Randers Randers,Рандерс 56.46667 10.05 P PPLA2 DK 18 730 55780 25 Europe/Copenhagen 2011-03-01
-2615089 Præstø Praesto Gmina Praesto,Gmina Præstø,Praesto,Præstø 55.11777 12.05727 P PPL DK 20 390 3695 12 Europe/Copenhagen 2012-01-17
-2615222 Pandrup Pandrup Gmina Pandrup,Panderup,Pandrup 57.22147 9.67569 P PPL DK 19 849 2942 10 Europe/Copenhagen 2010-05-08
-2615242 Padborg Padborg Padborg,Падборг 54.82657 9.36247 P PPL DK 21 580 4684 47 Europe/Copenhagen 2012-01-17
-2615351 Otterup Otterup Otterup 55.51527 10.39756 P PPL DK 21 480 4522 9 Europe/Copenhagen 2012-01-17
-2615359 Osted Osted Osted,Ousted 55.56228 11.95786 P PPL DK 20 350 2122 42 Europe/Copenhagen 2012-01-17
-2615666 Ørslev Orslev 55.04356 11.96792 P PPL DK 20 390 1801 40 Europe/Copenhagen 2011-12-20
-2615730 Ølstykke Olstykke Olstykke,Ølstykke 55.79567 12.15509 P PPL DK 17 240 5348 22 Europe/Copenhagen 2012-02-01
-2615749 Ølgod Olgod Gmina Olgod,Gmina Ølgod,OElgod,Olgod,Ölgod,Ølgod 55.80682 8.62859 P PPL DK 21 573 3891 39 Europe/Copenhagen 2012-01-17
-2615859 Oksbøl Oksbol Oksbol,Oksbøl,Oxbol,Oxbøl,Oxsbol,Oxsböl 55.6268 8.28757 P PPL DK 21 573 2845 16 Europe/Copenhagen 2012-01-17
-2615876 Odense Odense Odense,Odenze,awdnsh,odense,ou deng sai,Одензе,Оденсе,אודנזה,أودنسه,オーデンセ,欧登塞,오덴세 55.39594 10.38831 P PPLA2 DK 21 461 145931 17 Europe/Copenhagen 2011-03-01
-2615886 Odder Odder Odder,Оддер 55.97313 10.153 P PPLA2 DK 18 727 11009 11 Europe/Copenhagen 2011-03-01
-2615932 Nyråd Nyrad Nyraad,Nyrad,Nyråd 55.00511 11.9606 P PPL DK 20 390 2224 39 Europe/Copenhagen 2012-01-17
-2615961 Nykøbing Falster Nykobing Falster Nykjobing 54.76906 11.87425 P PPLA2 DK 20 376 16807 2 Europe/Copenhagen 2011-12-20
-2615962 Nykøbing Sjælland Nykobing Sjaelland Nykiobing,Nykiöbing,Nykjobing,Nykjöbing 55.92491 11.67109 P PPLA2 DK 20 306 5596 15 Europe/Copenhagen 2011-12-20
-2615964 Nykøbing Mors Nykobing Mors Nykjobing,Nykjöbing,Nykobing,Nykøbing 56.79334 8.85282 P PPLA2 DK 19 773 9326 5 Europe/Copenhagen 2011-12-20
-2616015 Nyborg Nyborg Nyborg 55.31274 10.78964 P PPLA2 DK 21 450 15826 7 Europe/Copenhagen 2011-03-01
-2616038 Næstved Naestved Nestved,Нествед 55.22992 11.76092 P PPLA2 DK 20 370 40660 16 Europe/Copenhagen 2011-03-01
-2616172 Nordby Nordby Nordby,Odden 55.44603 8.39786 P PPLA2 DK 21 563 2512 4 Europe/Copenhagen 2011-12-20
-2616176 Nordborg Nordborg Gmina Nordborg,Nordborg,Nordburg 55.05732 9.7408 P PPL DK 21 540 7406 15 Europe/Copenhagen 2012-01-17
-2616308 Nørre Hvalsø Norre Hvalso 55.60493 11.85733 P PPL DK 20 350 3930 67 Europe/Copenhagen 2011-12-20
-2616365 Nørre Alslev Norre Alslev Gmina Norre Alslev,Gmina Nørre Alslev,Norre Alslev,Nørre Alslev 54.89784 11.88414 P PPL DK 20 376 2128 31 Europe/Copenhagen 2012-01-17
-2616368 Nørre Åby Norre Aby Norre Aaby,Norre Aby,Nørre Aaby,Nørre Åby 55.46107 9.8794 P PPL DK 21 410 2678 23 Europe/Copenhagen 2012-01-17
-2616423 Nødebo Nodebo 55.97877 12.34685 P PPL DK 17 219 1875 26 Europe/Copenhagen 2011-12-20
-2616450 Nivå Niva Niva,Nivaa,Nivå 55.93405 12.50485 P PPL DK 17 210 8035 8 Europe/Copenhagen 2012-01-17
-2616483 Nibe Nibe Nibe,Нибе 56.9815 9.63917 P PPL DK 19 851 4376 10 Europe/Copenhagen 2012-01-17
-2616504 Nexø Nexo Nekso,Neksø 55.06067 15.13058 P PPL DK 17 400 3841 4 Europe/Copenhagen 2010-07-01
-2616518 Neder Vindinge Neder Vindinge 55.03211 11.88356 P PPL DK 20 390 1900 8 Europe/Copenhagen 2011-12-20
-2616540 Neder Holluf Neder Holluf 55.36451 10.44824 P PPL DK 21 461 5612 17 Europe/Copenhagen 2011-12-20
-2616599 Nakskov Nakskov Nakskov,Naskov,Наксков 54.83734 11.12839 P PPL DK 20 360 14081 0 Europe/Copenhagen 2012-01-17
-2616672 Munkebo Munkebo Munkebo 55.46184 10.55577 P PPL DK 21 440 5225 16 Europe/Copenhagen 2012-01-17
-2616933 Middelfart Middelfart Middel'fart,Миддельфарт 55.50591 9.73054 P PPLA2 DK 21 410 13596 4 Europe/Copenhagen 2011-03-01
-2617030 Marstal Marstal Marstal,Marstal',Марсталь 54.8562 10.51726 P PPL DK 21 492 2265 11 Europe/Copenhagen 2012-01-17
-2617034 Mårslet Marslet Maarslet,Marslet,Mårslet 56.0636 10.1623 P PPL DK 18 751 2698 50 Europe/Copenhagen 2012-01-17
-2617072 Maribo Maribo Maribo,Марибо 54.77662 11.50017 P PPLA2 DK 20 360 5349 13 Europe/Copenhagen 2011-12-20
-2617076 Mariager Mariager Gmina Mariager,Mariager,Мариагер 56.64985 9.97515 P PPL DK 19 846 2433 25 Europe/Copenhagen 2012-01-17
-2617112 Måløv Malov Maalov,Maaløv,Malov,Måløv 55.75528 12.32327 P PPL DK 17 151 8513 36 Europe/Copenhagen 2012-01-17
-2617114 Malling Malling 56.03632 10.19632 P PPL DK 18 751 3339 57 Europe/Copenhagen 2011-12-20
-2617176 Lystrup Lystrup Lystrup 56.2375 10.23778 P PPL DK 18 751 9107 48 Europe/Copenhagen 2012-01-17
-2617220 Lynge Lynge 55.83941 12.27725 P PPL DK 17 201 4284 56 Europe/Copenhagen 2011-12-20
-2617312 Lunderskov Lunderskov 55.48375 9.29917 P PPL DK 21 621 2687 38 Europe/Copenhagen 2011-12-20
-2617450 Løjt Kirkeby Lojt Kirkeby Loitkirkeby,Lojt,Lojt Kirkeby,Löjt,Løjt Kirkeby 55.08333 9.46667 P PPL DK 21 580 1975 65 Europe/Copenhagen 2012-01-17
-2617457 Løgumkloster Logumkloster Gmina Logumkloster,Gmina Løgumkloster,Loegumkloster,Logumkloster,Logumkloster Sogn,Lögumkloster,Løgumkloster,Løgumkloster Sogn 55.05941 8.95508 P PPL DK 21 550 3056 16 Europe/Copenhagen 2012-01-17
-2617463 Løgten Logten 56.27459 10.31181 P PPL DK 18 751 5048 69 Europe/Copenhagen 2011-12-20
-2617467 Løgstør Logstor Gmina Logstor,Gmina Løgstør,Loegstoer,Logstor,Lögstör,Løgstør 56.96245 9.2583 P PPL DK 19 820 4469 21 Europe/Copenhagen 2012-01-17
-2617538 Liseleje Liseleje 56.00531 11.94827 P PPL DK 17 260 2906 15 Europe/Copenhagen 2011-12-20
-2617619 Lind Lind 56.1 8.98333 P PPL DK 18 657 3777 65 Europe/Copenhagen 2011-12-20
-2617626 Værløse Vaerlose Lille Vaerlose,Lille Værløse,Vaerlose,Værløse 55.78251 12.36856 P PPL DK 17 190 12842 47 Europe/Copenhagen 2012-01-17
-2617658 Lillerød Lillerod 55.87496 12.34579 P PPLA2 DK 17 201 15359 45 Europe/Copenhagen 2011-12-20
-2617812 Lemvig Lemvig Lemvig,Лемвиг 56.54856 8.31019 P PPLA2 DK 18 665 7330 5 Europe/Copenhagen 2011-03-01
-2617832 Lejre Lejre 55.60461 11.97477 P PPL DK 20 350 2036 17 Europe/Copenhagen 2011-12-21
-2617936 Langeskov Langeskov Langeskov 55.35655 10.58447 P PPL DK 21 440 3713 19 Europe/Copenhagen 2012-01-17
-2617981 Langå Langa Langa,Langaa,Langå 56.39026 9.89486 P PPL DK 18 730 2710 16 Europe/Copenhagen 2012-01-17
-2618148 Kruså Krusa Krusa,Krusaa,Kruså 54.85097 9.40129 P PPL DK 21 580 1694 36 Europe/Copenhagen 2012-01-17
-2618361 Korsør Korsor Korsor,Korsør 55.32993 11.13857 P PPL DK 20 330 15029 2 Europe/Copenhagen 2011-12-20
-2618415 Køge Koge Kege,Kjoge,Koge,Køge,kyuge,Кеге,キューゲ 55.45802 12.18214 P PPLA2 DK 20 259 33885 4 Europe/Copenhagen 2011-03-01
-2618425 Copenhagen Copenhagen CPH,Cobanhavan,Copenaga,Copenaghen,Copenaguen,Copenhaga,Copenhagen,Copenhague,Copenhaguen,Copenhaguen - Kobenhavn,Copenhaguen - København,Cóbanhávan,Hafnia,Kapehngagen,Kaupmannahoefn,Kaupmannahöfn,Keypmannahavn,Kjobenhavn,Kjopenhamn,Kjøpenhamn,Kobenhamman,Kobenhaven,Kobenhavn,Kodan,Kodaň,Koebenhavn,Koeoepenhamina,Koepenhamn,Kopenage,Kopenchage,Kopengagen,Kopenhaagen,Kopenhag,Kopenhaga,Kopenhage,Kopenhagen,Kopenhagena,Kopenhago,Kopenhāgena,Kopenkhagen,Koppenhaga,Koppenhága,Kòpenhaga,Köbenhavn,Köpenhamn,Kööpenhamina,København,Københámman,ge ben ha gen,khopenheken,kopanahagana,kopenahagena,kopenahegena,kopenhagen,kwbnhaghn,kwpnhgn,qwpnhgn,Κοπεγχάγη,Капэнгаген,Копенгаген,Копенхаген,Կոպենհագեն,קופנהאגן,קופנהגן,كوبنهاغن,كوپېنھاگېن,ܟܘܦܢܗܓܢ,कोपनहागन,কোপেনহাগেন,কোপেনহেগেন,โคเปนเฮเกน,ཀའོ་པེན་ཧ་ཀེན,კოპენჰაგენი,ኮፐንሀገን,ኮፕንሀግ,コペンハーゲン,哥本哈根,코펜하겐 55.67594 12.56553 P PPLC DK 17 101 1153615 14 Europe/Copenhagen 2011-06-16
-2618468 Kongens Lyngby Kongens Lyngby Konigs Lyngby,Lyngby 55.77044 12.50378 P PPLA2 DK DK 17 173 10600 25 Europe/Copenhagen 2011-12-20
-2618489 Kolt Kolt 56.10845 10.06986 P PPL DK 18 751 5061 75 Europe/Copenhagen 2011-12-20
-2618528 Kolding Kolding Kolding,Koldingo,Kolinga,Колдинг 55.4904 9.47216 P PPLA2 DK 21 621 55363 8 Europe/Copenhagen 2011-03-01
-2618545 Kokkedal Kokkedal 55.91179 12.49952 P PPLA2 DK 17 210 0 4 Europe/Copenhagen 2011-12-21
-2618787 Klarup Klarup 57.01194 10.05617 P PPL DK 19 851 3352 16 Europe/Copenhagen 2011-12-20
-2618814 Kjellerup Kjellerup Kellerup,Kjellerup 56.28581 9.43528 P PPL DK 18 740 4514 63 Europe/Copenhagen 2012-01-17
-2618872 Kirke Hvalsø Kirke Hvalso Hvalso,Hvalsø 55.5917 11.86253 P PPLA2 DK DK 20 350 0 56 Europe/Copenhagen 2011-12-20
-2618931 Kibæk Kibaek Kibaek,Kibæk 56.0317 8.85697 P PPL DK 18 657 2656 40 Europe/Copenhagen 2012-01-17
-2618944 Kerteminde Kerteminde Kierteminde,Kjerteminde 55.44903 10.65769 P PPLA2 DK 21 440 5748 5 Europe/Copenhagen 2011-03-01
-2619061 Kås Kas Kaas,Kas,Kås 57.19774 9.67173 P PPL DK 19 849 1990 12 Europe/Copenhagen 2012-01-17
-2619068 Karup Karup 56.30673 9.16835 P PPL DK 18 791 2176 39 Europe/Copenhagen 2011-12-20
-2619154 Kalundborg Kalundborg Kallundborg,Kalundborg 55.67954 11.08864 P PPLA2 DK 20 326 15939 3 Europe/Copenhagen 2011-03-01
-2619216 Jyllinge Jyllinge Jyllinge 55.75843 12.11227 P PPL DK 20 265 9981 18 Europe/Copenhagen 2012-01-17
-2619221 Jyderup Jyderup Jyderup 55.66399 11.42029 P PPL DK 20 316 3984 28 Europe/Copenhagen 2012-02-01
-2619251 Juelsminde Juelsminde 55.70876 10.01668 P PPL DK 18 766 3667 2 Europe/Copenhagen 2011-12-20
-2619287 Jægerspris Jaegerspris Gmina Jaegerspris,Gmina Jægerspris,Jaegerspris,Jægerspris 55.85544 11.96786 P PPL DK 17 250 3805 13 Europe/Copenhagen 2012-01-17
-2619340 Jelling Jelling Elling,Gravhoegarna,Gravhögarna,Jelling,Еллинг 55.75588 9.4258 P PPL DK 21 630 3059 110 Europe/Copenhagen 2012-01-17
-2619377 Ishøj Ishoj Ishoj,Ishøj 55.61543 12.35182 P PPLA2 DK 17 183 19453 4 Europe/Copenhagen 2011-03-01
-2619426 Ikast Ikast 56.13883 9.15768 P PPLA2 DK 18 756 14692 81 Europe/Copenhagen 2011-12-20
-2619528 Hvidovre Hvidovre Hvidovre,Khvidovre,Хвидовре 55.65719 12.47364 P PPLA2 DK 17 167 49380 9 Europe/Copenhagen 2011-03-01
-2619537 Hvide Sande Hvide Sande 56.00452 8.12937 P PPL DK 18 760 3291 2 Europe/Copenhagen 2010-08-15
-2619624 Hurup Hurup Hurup,Thy 56.74944 8.41952 P PPL DK 19 787 2769 43 Europe/Copenhagen 2012-01-17
-2619650 Hundested Hundested Gmina Hundested,Hundested 55.96667 11.86667 P PPL DK 17 260 8615 16 Europe/Copenhagen 2012-01-17
-2619669 Humlebæk Humlebaek 55.9618 12.5341 P PPL DK 17 210 8965 15 Europe/Copenhagen 2011-12-21
-2619771 Horsens Horsens Horsens,Khorsens,huo er sen si,Хорсенс,霍尔森斯 55.86066 9.85034 P PPLA2 DK 18 615 50074 4 Europe/Copenhagen 2011-03-01
-2619787 Hornslet Hornslet Hornslet 56.3155 10.32041 P PPL DK 18 706 4906 28 Europe/Copenhagen 2012-01-17
-2619807 Hornbæk Hornbaek Hornbaek,Hornbæk 56.08541 12.45048 P PPL DK 17 217 3223 13 Europe/Copenhagen 2012-01-17
-2619844 Hørve Horve Horv,Horve,Hørv,Hørve 55.75292 11.45298 P PPL DK 20 306 2382 13 Europe/Copenhagen 2012-01-17
-2619845 Høruphav Horuphav 54.91017 9.89872 P PPL DK 21 540 2514 18 Europe/Copenhagen 2011-12-20
-2619856 Hørsholm Horsholm Horsholm,Hørsholm,Kherskhol'm,Херсхольм 55.88333 12.5 P PPLA2 DK 17 223 36670 33 Europe/Copenhagen 2011-03-01
-2619860 Hørning Horning 56.08701 10.03716 P PPL DK 18 746 6085 68 Europe/Copenhagen 2011-12-20
-2619882 Høng Hong Gmina Hong,Gmina Høng,Hong,Høng 55.51165 11.29032 P PPL DK 20 326 3789 26 Europe/Copenhagen 2010-05-08
-2619908 Højslev Hojslev Hoislev,Hojslev,Höislev,Højslev 56.58565 9.13637 P PPL DK 18 779 1857 13 Europe/Copenhagen 2012-01-17
-2619967 Højby Hojby 55.34218 10.43684 P PPL DK 21 461 4406 29 Europe/Copenhagen 2011-12-20
-2620042 Holsted Holsted Holsted 55.51086 8.91872 P PPL DK 21 575 3096 26 Europe/Copenhagen 2012-01-17
-2620046 Holstebro Holstebro Holstebro,Khol'stebro,Хольстебро 56.36009 8.61607 P PPLA2 DK 18 661 32072 16 Europe/Copenhagen 2011-03-01
-2620134 Holeby Holeby Gmina Holeby,Holeby 54.71148 11.46416 P PPL DK 20 360 1844 5 Europe/Copenhagen 2012-01-17
-2620147 Holbæk Holbaek Holbaek,Holbæk,Hollbaek,Hollbæk,Khol'bek,Хольбек 55.71667 11.71667 P PPLA2 DK 20 316 24544 10 Europe/Copenhagen 2011-03-01
-2620167 Hobro Hobro Hobro,Khobro,Хобро 56.64306 9.79029 P PPLA2 DK 19 846 11064 12 Europe/Copenhagen 2012-02-08
-2620186 Hjortshøj Hjortshoj Hjortshoj,Hjortshøj 56.24811 10.26532 P PPL DK 18 751 2515 50 Europe/Copenhagen 2012-01-17
-2620214 Hjørring Hjorring Hjoerring,Hjorring,Hjörring,Hjørring 57.46417 9.98229 P PPLA2 DK 19 860 24634 51 Europe/Copenhagen 2011-03-01
-2620275 Hjallerup Hjallerup 57.16466 10.14571 P PPL DK 19 810 3320 19 Europe/Copenhagen 2011-12-20
-2620279 Hirtshals Hirtshals Hirtshals,Khirtskhal's,Lilleheden Hornsnaes,Lilleheden Hornsnæs,Хиртсхальс 57.58812 9.95922 P PPL DK 19 860 6653 16 Europe/Copenhagen 2011-12-20
-2620288 Hinnerup Hinnerup Gmina Hinnerup,Hinnerup,Hinnerup-Broby,Khinnerup,Хиннеруп 56.26608 10.06299 P PPLA2 DK 18 710 7055 30 Europe/Copenhagen 2012-02-08
-2620320 Hillerød Hillerod Hillerod,Hillerød,Khillerod,hylrwd,Хиллерод,הילרוד 55.92667 12.31091 P PPLA DK 17 219 28313 35 Europe/Copenhagen 2010-01-29
-2620425 Herning Herning Herning,Kherning,Хернинг 56.13932 8.97378 P PPLA2 DK 18 657 44763 58 Europe/Copenhagen 2011-03-01
-2620431 Herlev Herlev Herlev 55.72366 12.43998 P PPLA2 DK 17 163 0 24 Europe/Copenhagen 2011-03-01
-2620473 Helsingør Helsingor Elseneur,Elsinor,Elsinore,Helsingor,Helsingør,Khel'singjor,Хельсингёр 56.03606 12.6136 P PPLA2 DK 17 217 35048 8 Europe/Copenhagen 2011-03-01
-2620476 Helsinge Helsinge Khel'singe,Хельсинге 56.02283 12.19752 P PPLA2 DK 17 270 7354 31 Europe/Copenhagen 2011-12-20
-2620528 Hellebæk Hellebaek Hellebaek,Hellebæk 56.06823 12.55782 P PPL DK 17 217 5243 13 Europe/Copenhagen 2012-01-17
-2620583 Hedensted Hedensted 55.77043 9.7011 P PPLA2 DK 18 766 10048 65 Europe/Copenhagen 2011-03-01
-2620664 Havdrup Havdrup 55.54481 12.12392 P PPL DK 20 269 3828 23 Europe/Copenhagen 2011-12-20
-2620712 Haslev Haslev Khaslev,Хаслев 55.32346 11.96389 P PPLA2 DK 20 320 10588 51 Europe/Copenhagen 2011-12-20
-2620751 Hårlev Harlev Haarlev,Harlev,Hårlev 55.34936 12.23382 P PPL DK 20 336 2423 13 Europe/Copenhagen 2012-01-17
-2620765 Hårby Harby Haarby,Harby,Hårby 55.21502 10.12262 P PPL DK 21 420 2400 11 Europe/Copenhagen 2012-01-17
-2620767 Harboøre Harboore Harboor,Harboør 56.61752 8.18069 P PPL DK 18 665 1745 2 Europe/Copenhagen 2011-12-20
-2620786 Hanstholm Hanstholm Gmina Hanstholm,Hanstholm 57.11667 8.61667 P PPL DK 19 787 2418 43 Europe/Copenhagen 2012-01-17
-2620814 Hammerum Hammerum Hammerum,Hamrum 56.13361 9.06121 P PPL DK 18 657 3025 60 Europe/Copenhagen 2012-01-17
-2620835 Hammel Hammel Gmina Hammel,Hammel,funmeru ren xing,フンメル人形 56.25762 9.86316 P PPL DK 18 710 6138 66 Europe/Copenhagen 2012-01-17
-2620871 Hals Hals 56.99609 10.30807 P PPL DK 19 851 2388 6 Europe/Copenhagen 2011-12-20
-2620952 Hadsund Hadsund Gmina Hadsund,Hadsund 56.71482 10.11682 P PPL DK 19 846 5066 3 Europe/Copenhagen 2011-08-01
-2620956 Hadsten Hadsten Hadsten Stationsby,Khadsten,Хадстен 56.32819 10.04931 P PPL DK 18 710 7020 30 Europe/Copenhagen 2012-02-07
-2620964 Haderslev Haderslev Hadersleben,Haderslev,Haderslevo,Khaderslev,Хадерслев 55.25377 9.48982 P PPLA2 DK 21 510 20825 14 Europe/Copenhagen 2011-03-01
-2620997 Gundsømagle Gundsomagle 55.73565 12.15158 P PPL DK 20 265 2149 12 Europe/Copenhagen 2011-12-20
-2621072 Guderup Guderup 54.98978 9.87174 P PPL DK 21 540 2424 29 Europe/Copenhagen 2011-12-20
-2621101 Græsted Graested 56.06558 12.28512 P PPL DK 17 270 3310 34 Europe/Copenhagen 2011-12-20
-2621193 Grindsted Grindsted 55.754 8.91231 P PPL DK 21 530 9414 41 Europe/Copenhagen 2011-12-20
-2621215 Greve Greve 55.58333 12.3 P PPLA2 DK 20 253 47671 3 Europe/Copenhagen 2011-03-01
-2621230 Grenaa Grenaa Grena,Grenaa,Grenå 56.41578 10.87825 P PPLA2 DK 18 707 14317 5 Europe/Copenhagen 2011-12-20
-2621258 Gråsten Grasten Gmina Grasten,Gmina Gråsten,Graasten,Grasten,Gravenstein,Gråsten 54.91918 9.59523 P PPL DK 21 540 4022 1 Europe/Copenhagen 2012-01-17
-2621279 Gram Gram 55.28948 9.04913 P PPL DK 21 510 2548 36 Europe/Copenhagen 2009-10-21
-2621304 Gørlev Gorlev Giorley,Gjorlev,Gjörlev,Gmina Gorlev,Gmina Gørlev,Gorlev,Gørlev 55.53926 11.22708 P PPL DK 20 326 2269 6 Europe/Copenhagen 2010-05-08
-2621356 Glostrup Glostrup Glostrup 55.66667 12.4 P PPLA2 DK 17 161 20673 19 Europe/Copenhagen 2011-03-01
-2621393 Glamsbjerg Glamsbjerg Glamsbjaerg,Glamsbjerg,Glamsbjærg,Gmina Glamsbjerg 55.27237 10.10483 P PPL DK 21 420 3099 55 Europe/Copenhagen 2012-01-17
-2621434 Gjellerup Kirkeby Gjellerup Kirkeby Gjellerup,Gjellerup Kirkeby,Kirkeby 56.14341 9.04988 P PPL DK 18 657 3627 65 Europe/Copenhagen 2012-01-17
-2621448 Give Give Give 55.83977 9.24998 P PPL DK 21 630 4240 98 Europe/Copenhagen 2012-01-17
-2621449 Gistrup Gistrup 56.9943 9.99085 P PPL DK 19 851 3622 15 Europe/Copenhagen 2011-12-20
-2621471 Gilleleje Gilleleje Gilleje,Gilleleje 56.12196 12.31056 P PPL DK 17 270 5799 14 Europe/Copenhagen 2012-01-17
-2621614 Ganløse Ganlose 55.79124 12.26421 P PPL DK 17 240 2843 37 Europe/Copenhagen 2011-12-20
-2621710 Galten Galten Galten,Sonder Galten 56.15902 9.91691 P PPL DK 18 746 4895 45 Europe/Copenhagen 2012-01-17
-2621805 Fuglebjerg Fuglebjerg Fuglebaerg,Fuglebjerg,Fuglebærg,Gmina Fuglebjerg 55.30604 11.54766 P PPL DK 20 370 1985 51 Europe/Copenhagen 2010-09-29
-2621896 Frejlev Frejlev Freilev,Frejlev 57.00623 9.81711 P PPL DK 19 851 2286 34 Europe/Copenhagen 2012-01-17
-2621910 Frederiksværk Frederiksvaerk Frederiksvaerk,Frederiksværk 55.97073 12.0225 P PPLA2 DK 17 260 12176 10 Europe/Copenhagen 2011-12-20
-2621912 Frederikssund Frederikssund Frederikssund,Frederiksund 55.83956 12.06896 P PPLA2 DK 17 250 14564 17 Europe/Copenhagen 2011-03-01
-2621927 Frederikshavn Frederikshavn Fladstrand,Frederikskhavn,Фредериксхавн 57.44073 10.53661 P PPLA2 DK 19 813 24103 8 Europe/Copenhagen 2011-03-01
-2621942 Frederiksberg Frederiksberg Frederiksberg,Фредериксберг 55.67938 12.53463 P PPLA2 DK 17 147 95029 15 Europe/Copenhagen 2011-03-01
-2621945 Frederiksberg Frederiksberg 55.41618 11.56934 P PPL DK 20 340 3142 46 Europe/Copenhagen 2011-12-20
-2621951 Fredericia Fredericia Fredericia,Frederisija,Фредерисия 55.56568 9.75257 P PPLA2 DK 21 607 36946 16 Europe/Copenhagen 2011-03-01
-2621956 Fredensborg Fredensborg 55.97558 12.40314 P PPL DK 17 210 8249 31 Europe/Copenhagen 2011-12-21
-2621967 Framlev Framlev 56.15664 10.01318 P PPL DK 18 751 3067 39 Europe/Copenhagen 2011-12-20
-2622002 Forlev Forlev 55.38333 11.28333 P PPL DK 20 330 2058 5 Europe/Copenhagen 2011-12-20
-2622061 Fløng Flong Flong,Fløng 55.66212 12.18698 P PPL DK 17 169 11108 27 Europe/Copenhagen 2012-01-17
-2622139 Fjerritslev Fjerritslev Fjerreslev,Fjerritslev,Gmina Fjerritslev 57.08134 9.26643 P PPL DK 19 849 3441 13 Europe/Copenhagen 2012-01-17
-2622226 Fensmark Fensmark 55.27919 11.80382 P PPL DK 20 370 4203 67 Europe/Copenhagen 2010-09-29
-2622306 Farum Farum Farum,Фарум 55.80858 12.36066 P PPLA2 DK 17 190 18376 33 Europe/Copenhagen 2011-12-20
-2622310 Farsø Farso Farso,Farsoe,Farsö,Farsø,Gmina Farso,Gmina Farsø 56.77276 9.33926 P PPL DK 19 820 3271 32 Europe/Copenhagen 2012-01-17
-2622369 Fakse Ladeplads Fakse Ladeplads Fakse Ladeplads,Faxe Havn 55.2198 12.17013 P PPL DK 20 320 2837 9 Europe/Copenhagen 2012-01-17
-2622372 Fakse Fakse Fakse,Faxe,Gmina Fakse,Факсе 55.24686 12.11764 P PPL DK 20 320 3747 33 Europe/Copenhagen 2012-01-17
-2622383 Faaborg Faaborg Fabberg,Faborg,Fåborg 55.0951 10.24226 P PPLA2 DK 21 430 7239 7 Europe/Copenhagen 2011-12-20
-2622418 Espergærde Espergaerde Espergaerde,Espergjaerde,Espergjærde,Espergærde 56 12.56667 P PPL DK 17 217 11358 19 Europe/Copenhagen 2012-01-17
-2622447 Esbjerg Esbjerg Ehsberg,Esbjaerg,Esbjerg,Esbjerga,Esbjærg,Эсберг 55.46667 8.45 P PPLA2 DK 21 561 72205 18 Europe/Copenhagen 2011-03-01
-2622664 Ejby Ejby 55.68923 11.84725 P PPL DK 20 350 1987 25 Europe/Copenhagen 2011-12-20
-2622665 Ejby Ejby 55.4858 12.08171 P PPL DK 20 259 2692 30 Europe/Copenhagen 2011-04-18
-2622666 Ejby Ejby Egby,Ejby,Gammel Ejby 55.4301 9.92973 P PPL DK 21 410 1996 25 Europe/Copenhagen 2012-01-17
-2622686 Egtved Egtved Egtved,Gmina Egtved 55.61796 9.30102 P PPL DK 21 630 2151 69 Europe/Copenhagen 2012-01-17
-2622793 Ebeltoft Ebeltoft AEbeltoft,Ehbel'toft,Æbeltoft,Эбельтофт 56.19442 10.6821 P PPL DK 18 706 7501 28 Europe/Copenhagen 2012-02-06
-2622854 Dybbøl Dybbol Dybbol,Dybbøl 54.91079 9.73601 P PPL DK 21 540 2303 36 Europe/Copenhagen 2012-02-01
-2622888 Dronninglund Dronninglund Dronninglund,Gmina Dronninglund 57.16035 10.29287 P PPL DK 19 810 3084 23 Europe/Copenhagen 2012-01-17
-2622937 Dragør Dragor Dragoer,Dragor,Dragör,Dragør 55.59455 12.66638 P PPLA2 DK 17 155 11045 3 Europe/Copenhagen 2011-03-01
-2623028 Dianalund Dianalund 55.53133 11.4925 P PPL DK 20 340 3605 28 Europe/Copenhagen 2011-12-20
-2623183 Christiansfeld Christiansfeld Christiansfeld,Gmina Christiansfeld 55.35817 9.48701 P PPL DK 21 621 2709 28 Europe/Copenhagen 2012-01-17
-2623188 Charlottenlund Charlottenlund 55.75367 12.59181 P PPLA2 DK 17 157 40000 11 Europe/Copenhagen 2011-12-20
-2623199 Byrum Byrum 57.25679 10.99738 P PPLA2 DK 19 825 0 11 Europe/Copenhagen 2011-12-20
-2623247 Bullerup Bullerup 55.42686 10.47137 P PPL DK 21 461 2982 3 Europe/Copenhagen 2011-12-20
-2623267 Buddinge Buddinge 55.75769 12.48899 P PPLA2 DK 17 159 0 33 Europe/Copenhagen 2011-12-20
-2623306 Brovst Brovst Brovst,Gmina Brovst 57.09562 9.52801 P PPL DK 19 849 2710 10 Europe/Copenhagen 2012-01-17
-2623321 Brørup Brorup Brorup,Brørup 55.48194 9.01756 P PPL DK 21 575 4233 60 Europe/Copenhagen 2012-01-17
-2623337 Brønderslev Bronderslev Bronderslev,Brønderslev 57.27021 9.94102 P PPLA2 DK 19 810 11671 15 Europe/Copenhagen 2011-03-01
-2623340 Brøndbyvester Brondbyvester Brondby,Brondbyvester,Brøndby,Brøndbyvester,West Brondby,West Bröndby 55.65029 12.40996 P PPLA2 DK 17 153 0 15 Europe/Copenhagen 2011-12-20
-2623394 Broager Broager Broacker,Broager,Broager Sogn,Gmina Broager 54.88736 9.68096 P PPL DK 21 540 3376 34 Europe/Copenhagen 2012-01-17
-2623441 Brejning Brejning Bregning,Brejning 55.6613 9.67703 P PPL DK 21 630 2220 43 Europe/Copenhagen 2012-01-17
-2623516 Brædstrup Braedstrup Braedstrup,Bredstrup,Brædstrup 55.97079 9.60855 P PPL DK 18 615 3130 108 Europe/Copenhagen 2012-01-17
-2623554 Brande Brande Brande,Gmina Brande 55.93814 9.12178 P PPL DK 18 756 6357 53 Europe/Copenhagen 2012-01-17
-2623570 Bramming Bramming Bramming,Bramminge,Bramminge Stationsby,Gmina Bramming 55.46946 8.70007 P PPL DK 21 561 6726 15 Europe/Copenhagen 2012-01-17
-2623628 Borup Borup 55.49472 11.97584 P PPL DK 20 259 3120 44 Europe/Copenhagen 2011-12-20
-2623694 Bording Kirkeby Bording Kirkeby Bording,Bording Kirkeby,Borring 56.16871 9.24384 P PPL DK 18 756 2104 87 Europe/Copenhagen 2012-01-17
-2623736 Børkop Borkop Borkop,Børkop 55.63794 9.64822 P PPL DK 21 630 3561 37 Europe/Copenhagen 2012-01-17
-2623857 Bogense Bogense Bogense,Богенсе 55.56691 10.08863 P PPLA2 DK 21 480 3410 10 Europe/Copenhagen 2011-12-20
-2623905 Blovstrød Blovstrod 55.87038 12.3864 P PPL DK 17 201 2137 53 Europe/Copenhagen 2011-12-20
-2623978 Bjæverskov Bjaeverskov Bjaeverskov,Bjeverskov,Bjæverskov 55.45756 12.03651 P PPL DK 20 259 2618 30 Europe/Copenhagen 2012-01-17
-2624019 Bjerringbro Bjerringbro 56.37797 9.66065 P PPL DK 18 791 7390 14 Europe/Copenhagen 2011-12-20
-2624112 Birkerød Birkerod Birkerod,Birkerød 55.84759 12.42791 P PPLA2 DK 17 230 18901 53 Europe/Copenhagen 2011-12-20
-2624144 Billund Billund Billund,Gmina Billund 55.73349 9.10785 P PPLA2 DK 21 530 6160 58 Europe/Copenhagen 2011-03-01
-2624193 Bellinge Bellinge Bellinge 55.33535 10.32045 P PPL DK 21 461 4129 27 Europe/Copenhagen 2012-01-17
-2624212 Beder Beder Beder,Бедер 56.06025 10.21179 P PPL DK 18 751 4214 46 Europe/Copenhagen 2011-12-20
-2624341 Ballerup Ballerup Balleru,Ballerup 55.73165 12.36328 P PPLA2 DK 17 151 40000 34 Europe/Copenhagen 2011-03-01
-2624419 Avlum Avlum Aulum,Avlum 56.26539 8.79256 P PPL DK 18 657 2875 47 Europe/Copenhagen 2012-01-17
-2624435 Auning Auning Auning,Avning 56.43079 10.37818 P PPL DK 18 707 2509 11 Europe/Copenhagen 2012-01-17
-2624439 Augustenborg Augustenborg Augustenborg,Gmina Augustenborg,Аугустенборг 54.95201 9.87216 P PPL DK 21 540 3132 8 Europe/Copenhagen 2012-01-17
-2624499 Assentoft Assentoft Assentoft 56.4421 10.1517 P PPL DK 18 730 2432 41 Europe/Copenhagen 2012-01-17
-2624502 Assens Assens Assens,Ассенс 55.27023 9.90081 P PPLA2 DK 21 420 6053 14 Europe/Copenhagen 2011-03-01
-2624521 Asnæs Asnaes 55.81229 11.50129 P PPL DK 20 306 2441 9 Europe/Copenhagen 2011-12-20
-2624587 Årup Arup Aarup,Arup,Årup 55.37315 10.04131 P PPL DK 21 420 2592 63 Europe/Copenhagen 2012-01-17
-2624595 Årslev Arslev Aarslev,Arslev,Årslev 55.30353 10.46428 P PPL DK 21 430 3228 49 Europe/Copenhagen 2012-01-17
-2624602 Aars Aars Aars,Ars,Gmina Aars,Års 56.80399 9.51441 P PPLA2 DK 19 820 7771 36 Europe/Copenhagen 2011-12-20
-2624652 Århus Arhus Aarhus,Aarhusium,Arhus,Arhuzo,Arkhus,Arosar,Orhusa,Orhūsa,Orkhus,ao hu si,ofusu,Árósar,Århus,Архус,Орхус,אורהוס,オーフス,奥胡斯 56.15674 10.21076 P PPLA2 DK 18 751 237551 10 Europe/Copenhagen 2011-03-01
-2624660 Arden Arden Arden,Arden Stationsby 56.76899 9.86184 P PPL DK 19 846 2516 73 Europe/Copenhagen 2012-01-17
-2624819 Allingåbro Allingabro Allingaabro,Allingabro,Allingåbro 56.46495 10.33409 P PPL DK 18 707 1842 3 Europe/Copenhagen 2012-01-17
-2624864 Ålestrup Alestrup Aalestrup,Alestrup,Ålestrup 56.6947 9.49336 P PPL DK 19 820 2787 26 Europe/Copenhagen 2012-01-17
-2624886 Aalborg Aalborg Aalborg,Alaborg,Alborg,Ol'borg,Olborg,Olborga,orubo,Álaborg,Ålborg,Олборг,Ольборг,オールボー 57.048 9.9187 P PPLA DK 19 851 122219 10 Europe/Copenhagen 2010-07-09
-2624906 Albertslund Albertslund Al'bertslunn,Albertslund,Gmina Albertslund,Альбертслунн 55.65691 12.36381 P PPLA2 DK 17 165 30000 12 Europe/Copenhagen 2011-03-01
-2624929 Åkirkeby Akirkeby Aakirkeby 55.0708 14.91978 P PPL DK 17 400 2195 88 Europe/Copenhagen 2011-12-20
-2625001 Ærøskøbing AEroskobing AEroskiobing,AEroskjobing,AEroskobing,Æroskiobing,Æröskjöbing,Ærøskøbing 54.88803 10.41117 P PPLA2 DK DK 21 492 951 10 Europe/Copenhagen 2011-12-20
-2625037 Åbybro Abybro Aabybro,Abybro,Gmina Aabybro,Åbybro 57.15836 9.73672 P PPLA2 DK 19 849 4849 5 Europe/Copenhagen 2011-12-20
-2625070 Aabenraa Aabenraa Aabenraa,Abenra,Abenrá,Abrenra,Apenrade,Åbenrå,Åbrenrå 55.04434 9.41741 P PPLA2 DK 21 580 16344 16 Europe/Copenhagen 2010-07-21
-8198686 Christiansø Christianso 55.32006 15.18662 P PPLA2 DK 17 411 0 8 Europe/Copenhagen 2012-02-03
-3575565 Woodford Hill Woodford Hill 15.56667 -61.33333 P PPL DM 02 1063 107 America/Dominica 2006-01-17
-3575568 Wesley Wesley La Soie,Wesley 15.56667 -61.31667 P PPL DM 02 1933 90 America/Dominica 2012-01-18
-3575602 Soufrière Soufriere 15.23333 -61.36667 P PPL DM 08 1005 -9999 America/Dominica 2006-01-17
-3575612 Salisbury Salisbury Baroui,Barroui,Salisbury 15.43333 -61.45 P PPL DM 06 1413 -9999 America/Dominica 2012-01-18
-3575624 Saint Joseph Saint Joseph 15.4 -61.43333 P PPL DM 06 2184 1 America/Dominica 2006-01-17
-3575635 Roseau Roseau Charlotte Town,Roseau,Rozo,lojo,luo suo,rozo,rwsw,Ροζό,רוסאו,روسو,ሮዞ,ロゾー,羅索,로조 15.30174 -61.38808 P PPLC DM 04 16571 11 America/Dominica 2010-08-16
-3575654 Portsmouth Portsmouth Grand-Anse,Portsmouth 15.58333 -61.46667 P PPL DM 05 3633 -9999 America/Dominica 2012-01-18
-3575660 Pointe Michel Pointe Michel La Pointe,Pointe Michel 15.25 -61.38333 P PPLA DM 07 1202 1 America/Dominica 2012-01-14
-3575721 Marigot Marigot Marigot,Petit Marigot 15.53333 -61.3 P PPL DM 02 2669 157 America/Dominica 2012-01-18
-3575733 Mahaut Mahaut 15.35 -61.4 P PPL DM 10 2369 1 America/Dominica 2006-01-17
-3575755 La Plaine La Plaine La Plaine 15.33333 -61.25 P PPL DM 09 1332 51 America/Dominica 2012-01-18
-3575870 Castle Bruce Castle Bruce Castle Bruce 15.43333 -61.26667 P PPL DM 03 1387 73 America/Dominica 2012-01-18
-3575882 Calibishie Calibishie Calibishi,Calibishie 15.58333 -61.35 P PPL DM 02 1020 85 America/Dominica 2012-01-18
-3575899 Berekua Berekua Berekua,Grand Baie,Grand Bay 15.23333 -61.31667 P PPL DM 09 2608 288 America/Dominica 2012-01-18
-3491736 Yayas de Viajama Yayas de Viajama Las Yayas,Las Yayas de Viajama,Yayas de Viajama 18.6071 -70.92753 P PPL DO 01 5669 317 America/Santo_Domingo 2012-01-16
-3491796 Yamasá Yamasa Villa de Yamasa,Villa de Yamasá,Yamasa,Yamasá 18.77014 -70.02508 P PPL DO 32 11595 84 America/Santo_Domingo 2012-01-16
-3491807 Yaguate Yaguate Villa de Yaguate,Yaguate 18.3353 -70.18113 P PPL DO 33 5610 52 America/Santo_Domingo 2012-01-16
-3491905 Villa Vásquez Villa Vasquez Lucas Evangelista de Pena,Lucas Evangelista de Peña,Villa Isabel,Villa Vasquez,Villa Vazquez,Villa Vásquez,Villa Vázquez 19.7411 -71.4464 P PPL DO 15 11642 32 America/Santo_Domingo 2012-01-16
-3491908 Villa Tapia Villa Tapia 19.30084 -70.42199 P PPL DO 19 3113 107 America/Santo_Domingo 2006-01-17
-3491914 Villarpando Villarpando Villarpando 18.6586 -71.03916 P PPL DO 01 3016 287 America/Santo_Domingo 2012-01-16
-3491916 Villa Riva Villa Riva Riva,Rivas,Villa Riva,Villa Rivas 19.18068 -69.91319 P PPL DO 06 5700 29 America/Santo_Domingo 2012-01-16
-3491927 Villa Jaragua Villa Jaragua Jaragua,Jose Trujillo Valdez,José Trujillo Valdéz,Villa Jaragua,Villa Jose Trujillo Valdez,Villa José Trujillo Valdéz 18.49077 -71.48377 P PPL DO 02 9248 12 America/Santo_Domingo 2012-01-16
-3491929 Villa Isabela Villa Isabela La Isabela,Villa Isabela 19.82288 -71.05641 P PPL DO 18 3887 33 America/Santo_Domingo 2012-01-16
-3491937 Villa González Villa Gonzalez Las Lagunas,Villa Gonzalez,Villa González 19.54057 -70.78853 P PPL DO 25 10177 164 America/Santo_Domingo 2012-01-16
-3491943 Villa Elisa Villa Elisa Villa Elisa 19.6856 -71.27007 P PPL DO 15 1143 68 America/Santo_Domingo 2012-01-16
-3491948 Villa Bisonó Villa Bisono Bisono,Bisonó,Jose E. Bisono,Jose Elias Bisono,José E. Bisonó,José Eliás Bisonó,Villa Bisono,Villa Bisonó 19.56378 -70.87582 P PPL DO 25 33137 131 America/Santo_Domingo 2012-01-16
-3491952 Villa Altagracia Villa Altagracia Vil'ja-Al'tagrasija,Villa Altagracia,Вилья-Альтаграсия 18.67297 -70.17095 P PPL DO 33 40027 178 America/Santo_Domingo 2012-01-16
-3492030 Vicente Noble Vicente Noble Vicente Noble,Villa de Vicente Noble 18.38443 -71.1801 P PPL DO 03 11060 36 America/Santo_Domingo 2012-01-16
-3492073 Veragua Arriba Veragua Arriba Veragua,Veragua Arriba 19.58333 -70.33333 P PPL DO 08 5858 108 America/Santo_Domingo 2010-08-09
-3492123 Vallejuelo Vallejuelo Vallejuelo 18.65354 -71.33431 P PPL DO 23 5217 675 America/Santo_Domingo 2012-01-16
-3492367 Tireo Arriba Tireo Arriba 18.93537 -70.6885 P PPL DO 30 3816 1242 America/Santo_Domingo 2011-04-18
-3492477 Tenares Tenares Tenares,Villa Tenares,Villa de Tenares 19.37439 -70.35087 P PPL DO 19 7390 173 America/Santo_Domingo 2012-01-16
-3492517 Tamboril Tamboril Pena,Peña,Tamboril 19.48538 -70.61104 P PPL DO 25 23304 266 America/Santo_Domingo 2012-01-16
-3492520 Tamayo Tamayo 18.3947 -71.2029 P PPL DO 02 6429 32 America/Santo_Domingo 2006-01-17
-3492557 Tábara Arriba Tabara Arriba Tabara Arriba,Tábara Arriba,Villa Tabara Arriba,Villa Tábara Arriba 18.57 -70.87978 P PPL DO 01 3736 296 America/Santo_Domingo 2012-01-16
-3492627 Sosúa Sosua 19.76667 -70.51667 P PPL DO 18 9482 15 America/Santo_Domingo 2009-06-08
-3492897 San Víctor Arriba San Victor Arriba San Victor,San Victor Arriba,San Víctor Arriba 19.47741 -70.53585 P PPL DO 08 5624 530 America/Santo_Domingo 2012-01-16
-3492908 Santo Domingo Santo Domingo Ciudad Trujillo,Saint Domingue,Santa Domingo,Santo Domingo,Santo Domingo City,Santo Domingo de Guzman,Santo Domingo de Guzmán,Santo Ntomin'nko,Santo-Domingo,Σάντο Ντομίνγκο,Санто-Доминго 18.50012 -69.98857 P PPLC DO 34 2201941 55 America/Santo_Domingo 2010-05-30
-3492914 Santiago de los Caballeros Santiago de los Caballeros Sant'jago-de-los-Kabal'eros,Santiago,Santiago de los Caballeros,Сантьяго-де-лос-Кабальерос 19.45 -70.7 P PPLA DO 25 1200000 187 America/Santo_Domingo 2010-07-19
-3492984 Santa Cruz de El Seibo Santa Cruz de El Seibo El Seibo,Santa Cruz de El Seibo,Santa Cruz del Seibo,Santa Cruz del Seybo,Seibo,Seybo 18.76559 -69.03886 P PPL DO 28 23547 106 America/Santo_Domingo 2012-01-16
-3492985 Santa Cruz de Barahona Santa Cruz de Barahona Barahona,Santa Cruz de Barahona,Santa-Krus-de-Baraona,Санта-Крус-де-Бараона 18.20854 -71.10077 P PPLA DO 03 77160 39 America/Santo_Domingo 2012-01-14
-3492997 Santa Bárbara de Samaná Santa Barbara de Samana Samana,Samaná,Santa Barbara de Samana,Santa Bárbara de Samaná 19.20561 -69.33685 P PPL DO 20 11432 15 America/Santo_Domingo 2012-01-16
-3493022 San Rafael del Yuma San Rafael del Yuma San Rafael de Yuma,San Rafael del Yuma,Yuma 18.42993 -68.6739 P PPL DO 10 5285 49 America/Santo_Domingo 2012-01-16
-3493032 San Pedro de Macorís San Pedro de Macoris San Pedro Macoris,San Pedro de Macoris,San Pedro de Macorís 18.46156 -69.29718 P PPLA DO 24 217899 8 America/Santo_Domingo 2012-01-14
-3493081 San Juan de la Maguana San Juan de la Maguana San Juan,San Juan de la Maguana 18.80588 -71.22991 P PPLA DO 23 72950 418 America/Santo_Domingo 2012-01-14
-3493100 San José de Ocoa San Jose de Ocoa 18.55 -70.5 P PPL DO 35 21148 430 America/Santo_Domingo 2006-01-17
-3493103 San José de Las Matas San Jose de Las Matas San Jose de Las Matas,San Jose de los Matas,San José de Las Matas,San José de los Matas 19.33915 -70.93819 P PPL DO 25 9853 524 America/Santo_Domingo 2012-01-16
-3493143 San Gregorio de Nigua San Gregorio de Nigua San Gregorio de Nigua 18.38333 -70.08333 P PPL DO 33 11542 81 America/Santo_Domingo 2012-01-16
-3493146 San Francisco de Macorís San Francisco de Macoris San Francisco de Macoris,San Francisco de Macorís 19.29518 -70.25543 P PPLA DO 06 124763 114 America/Santo_Domingo 2012-01-14
-3493174 San Fernando de Monte Cristi San Fernando de Monte Cristi Monte Cristi,Monte Cristy,Monte-Christi,San Fernando de Monte Cristi 19.86667 -71.65 P PPL DO 15 17001 3 America/Santo_Domingo 2012-01-16
-3493175 Puerto Plata Puerto Plata Port Plata,Puerto Plata,San Felipe de Puerto Plata 19.79344 -70.6884 P PPLA DO 18 3494269 146000 34 America/Santo_Domingo 2011-09-06
-3493198 Sánchez Sanchez Sanchez,Sánchez 19.2281 -69.6137 P PPL DO 20 11365 25 America/Santo_Domingo 2012-02-01
-3493240 Salvaleón de Higüey Salvaleon de Higuey Higueey,Higuey,Higüey,Salvaleon de Higueey,Salvaleón de Higüey 18.61501 -68.70798 P PPLA DO 10 123787 95 America/Santo_Domingo 2012-01-14
-3493271 Salsipuedes Salsipuedes 19.40552 -70.37985 P PPL DO 19 11675 252 America/Santo_Domingo 2006-01-17
-3493383 Sabaneta Sabaneta Sabaneta,San Ignacio de Sabaneta,Santiago Rodriguez,Santiago Rodríguez 19.47793 -71.34125 P PPLA DO 26 16380 127 America/Santo_Domingo 2012-01-14
-3493410 Sabana Yegua Sabana Yegua Sabana Yegua,Sabaneta Yegua 18.71667 -71.01667 P PPL DO 01 10624 393 America/Santo_Domingo 2012-01-16
-3493478 Sabana Iglesia Sabana Iglesia Sabana Iglesia 19.32114 -70.75992 P PPL DO 25 5135 291 America/Santo_Domingo 2012-01-16
-3493480 Sabana Grande de Palenque Sabana Grande de Palenque Sabana Grande,Sabana Grande Palenque,Sabana Grande de Palenque,Villa de Sabana Grande de Palenque 18.26256 -70.14822 P PPL DO 33 4809 34 America/Santo_Domingo 2012-01-16
-3493482 Sabana Grande de Boyá Sabana Grande de Boya Sabana Grande,Sabana Grande Boya,Sabana Grande Boyá,Sabana Grande de Boya,Sabana Grande de Boyá,Villa de Sabana Grande de Boya,Villa de Sabana Grande de Boyá 18.94498 -69.79331 P PPL DO 32 16834 291 America/Santo_Domingo 2012-01-16
-3493537 Sabana del Puerto Sabana del Puerto Sabana del Puerto 19.06667 -70.41667 P PPL DO 31 1223 118 America/Santo_Domingo 2012-01-16
-3493568 Sabana de La Mar Sabana de La Mar Sabana de La Mar,Sabana la Mar,Savana la Mar 19.05934 -69.38843 P PPL DO 29 13977 9 America/Santo_Domingo 2012-01-16
-3493601 Sabana Buey Sabana Buey 18.26667 -70.53333 P PPL DO 35 2265 66 America/Santo_Domingo 2006-01-17
-3493732 Río Verde Arriba Rio Verde Arriba Rio Verde Arriba,Río Verde Arriba 19.31583 -70.56643 P PPL DO 30 3613 169 America/Santo_Domingo 2012-01-16
-3493743 Río San Juan Rio San Juan Laguna Grigri,Rio San Juan,Río San Juan 19.64385 -70.07635 P PPL DO 14 8983 6 America/Santo_Domingo 2012-01-16
-3493756 Río Limpio Rio Limpio Colonia Rio Limpio,Colonia Río Limpio,Rio Limpio,Río Limpio 19.24513 -71.53077 P PPL DO 11 1376 771 America/Santo_Domingo 2012-01-16
-3493873 Rincón Rincon 19.11938 -70.40632 P PPL DO 30 5909 88 America/Santo_Domingo 2006-01-17
-3493887 Restauración Restauracion Restauracion,Restauración 19.31532 -71.69239 P PPL DO 04 2031 583 America/Santo_Domingo 2012-01-16
-3494064 Ramón Santana Ramon Santana Ramon Santana,Ramón Santana 18.54224 -69.17979 P PPL DO 24 2175 15 America/Santo_Domingo 2012-01-16
-3494121 Quisqueya Quisqueya Ingenio Quisquella,Quisqueya 18.55542 -69.40814 P PPL DO 24 17694 30 America/Santo_Domingo 2012-01-16
-3494242 Punta Cana Punta Cana Punta Cana,Punta Kana,Пунта Кана 18.58182 -68.40431 P PPL DO 23 100023 28 America/Santo_Domingo 2011-06-07
-3494329 Pueblo Viejo Pueblo Viejo Pueblo Viejo 18.4 -70.76765 P PPL DO 01 4192 24 America/Santo_Domingo 2012-02-01
-3494509 Postrer Río Postrer Rio Postrer Rio,Postrer Rios,Postrer Río,Postrer Ríos 18.54374 -71.63561 P PPL DO 09 3078 16 America/Santo_Domingo 2012-01-16
-3494584 Polo Polo Polo 18.07873 -71.28723 P PPL DO 03 2121 735 America/Santo_Domingo 2012-01-16
-3494655 Pizarrete Pizarrete 18.3 -70.21667 P PPL DO 35 2695 35 America/Santo_Domingo 2006-01-17
-3494768 Pimentel Pimentel Pimental,Pimentel 19.18416 -70.10884 P PPL DO 06 9550 42 America/Santo_Domingo 2012-01-16
-3494863 Piedra Blanca Piedra Blanca Piedra Blanca 18.84431 -70.31688 P PPL DO 31 8531 180 America/Santo_Domingo 2012-02-01
-3494979 Pescadería Pescaderia Pescaderia,Pescadería 18.26766 -71.16612 P PPL DO 03 2116 10 America/Santo_Domingo 2012-01-16
-3495020 Peralta Peralta Peralta,Pinar de Peralta 18.58164 -70.77029 P PPL DO 01 7236 482 America/Santo_Domingo 2012-01-16
-3495024 Pepillo Salcedo Pepillo Salcedo Manzanillo,Pepillo Salcedo,Puerto Alto 19.69841 -71.74513 P PPL DO 15 3866 7 America/Santo_Domingo 2012-01-16
-3495098 Pedro Santana Pedro Santana Pedro Santana 19.10515 -71.69498 P PPL DO 11 1170 293 America/Santo_Domingo 2012-01-16
-3495102 Pedro Sánchez Pedro Sanchez Pedro Sanches,Pedro Sanchez,Pedro Sánchez 18.86375 -69.10868 P PPL DO 28 1621 155 America/Santo_Domingo 2012-01-16
-3495111 Pedro García Pedro Garcia Padre Garcia,Padre García,Pedro Garcia,Pedro García 19.59202 -70.65256 P PPL DO 25 1457 454 America/Santo_Domingo 2012-01-16
-3495115 Pedro Corto Pedro Corto Pedro Corto 18.84856 -71.41041 P PPL DO 23 2067 502 America/Santo_Domingo 2012-01-16
-3495137 Pedernales Pedernales Anse a Pitre,Anse à Pitre,Pedernales,Puerto de Pedernales 18.03838 -71.74403 P PPL DO 16 11072 22 America/Santo_Domingo 2012-01-16
-3495159 Paya Paya 18.25 -70.3 P PPL DO 35 6916 27 America/Santo_Domingo 2006-01-17
-3495256 Partido Partido 19.48403 -71.5473 P PPL DO 04 2170 200 America/Santo_Domingo 2006-01-17
-3495272 Paraíso Paraiso 17.99172 -71.16526 P PPL DO 03 6490 28 America/Santo_Domingo 2006-01-17
-3495546 Palmar de Ocoa Palmar de Ocoa Palmar de Ocoa 18.29656 -70.58635 P PPL DO 01 1997 -9999 America/Santo_Domingo 2012-01-16
-3495555 Palmar Arriba Palmar Arriba Palmar Arriba 19.53957 -70.73826 P PPL DO 25 3700 177 America/Santo_Domingo 2012-01-16
-3495664 Padre Las Casas Padre Las Casas Padre Las Casas,Padre de las Casas,Villa de Padre Las Casas 18.73172 -70.93916 P PPL DO 01 8485 518 America/Santo_Domingo 2012-01-16
-3495684 Oviedo Oviedo Oviedo,Trujin 17.80136 -71.401 P PPL DO 16 2671 33 America/Santo_Domingo 2012-01-16
-3495694 Otra Banda Otra Banda Otra Banda 18.65016 -68.66281 P PPL DO 10 6071 113 America/Santo_Domingo 2012-01-16
-3495811 Nizao Nizao Hizao,Villa de Nizao 18.25 -70.2 P PPL DO 35 6530 21 America/Santo_Domingo 2006-01-17
-3495857 Neiba Neiba Neiba,Neyba 18.48138 -71.41965 P PPLA DO 02 3495858 18670 25 America/Santo_Domingo 2012-02-03
-3496021 Nagua Nagua Ciudad de Nagua,Julia Molina,Nagua,Villa Julia Molina,callejon a,Нагуа 19.3832 -69.8474 P PPLA DO 14 33862 9 America/Santo_Domingo 2012-01-14
-3496134 Monte Plata Monte Plata Monte Plata,San Antonio de Monte Plata,Монте Плата 18.807 -69.78399 P PPL DO 32 15532 55 America/Santo_Domingo 2012-01-16
-3496284 Monción Moncion Benito Moncion,Benito Monción,Moncion,Monción,Villa de Moncion,Villa de Monción 19.41084 -71.15257 P PPL DO 26 6625 372 America/Santo_Domingo 2012-01-16
-3496331 Moca Moca Moca 19.39352 -70.52598 P PPL DO 08 3496332 61834 191 America/Santo_Domingo 2012-03-06
-3496396 Miches Miches El Jovero,Jovero,Miches 18.98364 -69.0476 P PPL DO 28 9273 6 America/Santo_Domingo 2012-01-16
-3496446 Mella Mella Los Yesos,Mella 18.35871 -71.41716 P PPL DO 09 2024 9 America/Santo_Domingo 2012-01-16
-3496574 Matayaya Matayaya Matayaya 18.89036 -71.59459 P PPL DO 23 1001 418 America/Santo_Domingo 2012-01-16
-3496601 Matanzas Matanzas Matanza 18.23333 -70.41667 P PPL DO 35 4124 27 America/Santo_Domingo 2006-01-17
-3496831 Mao Mao Mao,Valverde,Мао 19.55186 -71.07813 P PPL DO 27 48297 85 America/Santo_Domingo 2012-01-16
-3497176 Majagual Majagual Majagual 19.04134 -69.83616 P PPL DO 32 1430 226 America/Santo_Domingo 2012-01-16
-3497204 Maizal Maizal Maizal 19.63655 -71.02734 P PPL DO 27 3384 82 America/Santo_Domingo 2012-01-16
-3497350 Luperón Luperon Blanco,Luperon,Luperón,Puerto de Luperon 19.89132 -70.96204 P PPL DO 18 4393 11 America/Santo_Domingo 2012-01-16
-3497564 Los Ríos Los Rios 18.52131 -71.59106 P PPL DO 02 4440 34 America/Santo_Domingo 2006-01-17
-3498191 Los Llanos Los Llanos Los Llanos,San Jose de Los Llanos,San José de Los Llanos 18.62035 -69.49581 P PPL DO 24 5529 45 America/Santo_Domingo 2012-01-16
-3498418 Los Hidalgos Los Hidalgos Los Hidalagos,Los Hidalgos 19.73333 -71.03333 P PPL DO 18 2805 195 America/Santo_Domingo 2012-01-16
-3499230 Los Botados Los Botados El Centro,Los Botados 18.73226 -69.99536 P PPL DO 32 4054 59 America/Santo_Domingo 2012-01-16
-3499602 Loma de Cabrera Loma de Cabrera Loma de Cabrera,Villa de Loma de Cabrera 19.43333 -71.6 P PPL DO 04 6679 303 America/Santo_Domingo 2012-01-16
-3499748 Licey al Medio Licey al Medio 19.43333 -70.6 P PPL DO 25 6435 199 America/Santo_Domingo 2006-01-17
-3500013 La Uvilla La Uvilla La Uvilla,Ubilla,Uvilla 18.36186 -71.21046 P PPL DO 02 2178 26 America/Santo_Domingo 2012-01-16
-3500243 Las Terrenas Las Terrenas La Terenas,Las Terenas,Las Terrenas,Las Terreras,Laterriena,Terrenas 19.31102 -69.5428 P PPL DO 20 7713 17 America/Santo_Domingo 2012-01-16
-3500261 Las Salinas Las Salinas La Salina,Las Salinas 18.27485 -71.31596 P PPL DO 03 4513 31 America/Santo_Domingo 2012-01-16
-3500367 Las Matas de Santa Cruz Las Matas de Santa Cruz La Mata de Santa Cruz,Las Matas de Santa Cruz,Matas de Santa Cruz 19.67119 -71.50471 P PPL DO 15 10218 34 America/Santo_Domingo 2012-01-16
-3500370 Las Matas de Farfán Las Matas de Farfan Las Matas,Las Matas de Farfan,Las Matas de Farfán,Las-Matas-de-Farfan,Matas de Farfan,Лас-Матас-де-Фарфан 18.87309 -71.51656 P PPL DO 23 21802 451 America/Santo_Domingo 2012-01-16
-3500518 Las Guáranas Las Guaranas Las Guaranas,Las Guáranas 19.1931 -70.20835 P PPL DO 06 9586 48 America/Santo_Domingo 2012-02-01
-3500641 Las Charcas Las Charcas Las Charcas 18.45026 -70.61724 P PPL DO 01 4720 68 America/Santo_Domingo 2012-01-16
-3500957 La Romana La Romana La Romana,La-Romana,Romana,Ла-Романа 18.42734 -68.97285 P PPL DO 12 208437 30 America/Santo_Domingo 2012-01-16
-3502373 Laguna Salada Laguna Salada Laguna Salada,Villa de Laguna Salada 19.64827 -71.09446 P PPL DO 27 7601 70 America/Santo_Domingo 2012-01-16
-3502745 La Entrada La Entrada 19.55367 -69.90762 P PPL DO 14 1112 10 America/Santo_Domingo 2006-01-17
-3502786 La Descubierta La Descubierta Descubierta,La Descubierta 18.57053 -71.72967 P PPL DO 09 5521 31 America/Santo_Domingo 2012-01-16
-3503100 La Ciénaga La Cienaga La Cienaga,La Cienega,La Ciénaga,La Ciénega 18.06858 -71.10651 P PPL DO 03 2875 30 America/Santo_Domingo 2012-01-16
-3503256 La Caya La Caya La Caya 19.69981 -71.12084 P PPL DO 27 1005 173 America/Santo_Domingo 2012-01-16
-3503338 La Canela La Canela Canela,La Canela 19.47341 -70.81629 P PPL DO 25 4026 182 America/Santo_Domingo 2012-01-16
-3503782 Juncalito Abajo Juncalito Abajo Juncalito,Juncalito Abajo 19.2199 -70.81905 P PPL DO 25 1229 969 America/Santo_Domingo 2012-01-16
-3503811 Juan Santiago Juan Santiago 18.70342 -71.58971 P PPL DO 11 1549 807 America/Santo_Domingo 2006-01-17
-3503845 Juan López Abajo Juan Lopez Abajo 19.43333 -70.5 P PPL DO 08 1535 254 America/Santo_Domingo 2006-01-17
-3503900 Juan de Herrera Juan de Herrera Juan de Herrera 18.87402 -71.2383 P PPL DO 23 5543 477 America/Santo_Domingo 2012-02-01
-3503910 Juancho Juancho Juana,Juancho 17.85782 -71.29311 P PPL DO 16 1623 12 America/Santo_Domingo 2012-01-16
-3503950 Juan Adrián Juan Adrian Juan Adrian,Juan Adrián,Juan Aldian,Juan Aldián 18.76365 -70.33732 P PPL DO 31 1371 356 America/Santo_Domingo 2012-01-16
-3504033 Joba Arriba Joba Arriba Joba Arriba,Jobo Arriba 19.56667 -70.26667 P PPL DO 08 1471 103 America/Santo_Domingo 2012-01-16
-3504077 Jimaní Jimani Jimani,Jimaní,San Jose de Jimani,San José de Jimaní 18.49169 -71.85022 P PPLA DO 09 6567 48 America/Santo_Domingo 2012-01-14
-3504080 Jima Abajo Jima Abajo Jima,Jima Abajo 19.13292 -70.37607 P PPL DO 30 6299 69 America/Santo_Domingo 2012-01-16
-3504097 Jicomé Jicome Jicome,Jicomé 19.64956 -70.94927 P PPL DO 27 1725 416 America/Santo_Domingo 2012-01-16
-3504158 Jarabacoa Jarabacoa Jarabacoa,Kharabakoa,Харабакоа 19.12178 -70.64218 P PPL DO 30 29983 532 America/Santo_Domingo 2012-01-16
-3504160 Jaquimeyes Jaquimeyes Jaquimelles,Jaquimeyes,Las Jaquimelles,Los Jaquimelles,Los Jaquimeyes 18.31173 -71.16145 P PPL DO 03 3038 12 America/Santo_Domingo 2012-01-16
-3504175 Jamao al Norte Jamao al Norte Jamao,Jamao Norte,Jamao al Morte,Jamao al Norte 19.63552 -70.44664 P PPL DO 08 2216 51 America/Santo_Domingo 2012-01-16
-3504193 Jaibón Jaibon Jaibar,Jaibon,Jaibón 19.61169 -71.14847 P PPL DO 27 4853 51 America/Santo_Domingo 2012-01-16
-3504332 Imbert Imbert Bajabonico,Imbert 19.75371 -70.82906 P PPL DO 18 8024 121 America/Santo_Domingo 2012-01-16
-3504438 Hostos Hostos Hostos,Villa de Hostos 19.18043 -70.02046 P PPL DO 06 1813 48 America/Santo_Domingo 2012-01-16
-3504466 Hondo Valle Hondo Valle Hondo Valle 18.71599 -71.69511 P PPL DO 11 3713 899 America/Santo_Domingo 2012-02-01
-3504765 Hato Mayor del Rey Hato Mayor del Rey Hato Mayor,Hato Mayor del Rey 18.76278 -69.25681 P PPL DO 29 35999 106 America/Santo_Domingo 2012-01-16
-3504793 Hatillo Palma Hatillo Palma Hatillo Palma 19.66256 -71.19406 P PPL DO 15 3574 74 America/Santo_Domingo 2012-01-16
-3504951 Guaymate Guaymate Guaimate,Guaymate 18.58793 -68.97867 P PPL DO 12 6224 88 America/Santo_Domingo 2012-01-16
-3504983 Guayabo Dulce Guayabo Dulce Guajabo Dulce,Guayabo Dulce 18.65 -69.28333 P PPL DO 29 3897 47 America/Santo_Domingo 2012-01-16
-3505029 Guayabal Guayabal Guayabal 18.5981 -71.64184 P PPL DO 09 1504 253 America/Santo_Domingo 2012-01-16
-3505034 Guatapanal Guatapanal Guatapanal 19.50704 -70.91713 P PPL DO 27 1657 150 America/Santo_Domingo 2012-01-16
-3505128 Guananico Guananico Guananico 19.72693 -70.92294 P PPL DO 18 2620 155 America/Santo_Domingo 2012-01-16
-3505432 Gonzalo Gonzalo Batey Gonzalo,Gonzalo 18.95147 -69.75114 P PPL DO 32 2027 286 America/Santo_Domingo 2012-01-16
-3505488 Gaspar Hernández Gaspar Hernandez Gaspar Hernandez,Gaspar Hernández,Jaspar Hernandez 19.6289 -70.28112 P PPL DO 08 6506 26 America/Santo_Domingo 2012-01-16
-3505517 Galván Galvan Galvah,Galvan,Galváh,Galván 18.50228 -71.34271 P PPL DO 02 6027 42 America/Santo_Domingo 2012-01-16
-3505612 Fundación Fundacion 18.28668 -71.18147 P PPL DO 03 2511 16 America/Santo_Domingo 2006-01-17
-3505778 Fantino Fantino Fantino,Villa de Fantino 19.12148 -70.29972 P PPL DO 21 10024 56 America/Santo_Domingo 2012-01-16
-3505819 Estero Hondo Estero Hondo Estero Hondo 19.82712 -71.17411 P PPL DO 18 1649 13 America/Santo_Domingo 2012-01-16
-3505825 Estebanía Estebania Estebania,Estebanía 18.4577 -70.6435 P PPL DO 01 5591 61 America/Santo_Domingo 2012-01-16
-3505855 Esperanza Esperanza Esperanza 19.5847 -70.98489 P PPL DO 27 42169 113 America/Santo_Domingo 2012-02-01
-3505861 Esperalvillo Esperalvillo El Centro,El Esperalvillo,Esperalvilla,Esperalvillo,Peraldillo,Peralvillo 18.81509 -70.03557 P PPL DO 32 5445 148 America/Santo_Domingo 2012-01-16
-3505947 Enriquillo Enriquillo Enriquilla,Enriquillo,Petit Trou 17.9 -71.23333 P PPL DO 03 5423 51 America/Santo_Domingo 2012-01-16
-3506034 El Valle El Valle El Valle,Villa Trujillo 18.97567 -69.37827 P PPL DO 29 5666 42 America/Santo_Domingo 2012-01-16
-3506415 El Puerto El Puerto 18.78333 -69.46667 P PPL DO 24 3278 122 America/Santo_Domingo 2006-01-17
-3506541 El Pino El Pino 19.43536 -71.4754 P PPL DO 04 1529 216 America/Santo_Domingo 2006-01-17
-3506630 El Peñón El Penon El Penon,El Peñón,Penon,Peñón 18.29643 -71.1841 P PPL DO 03 4088 14 America/Santo_Domingo 2012-01-16
-3506719 El Palmar El Palmar El Palmar,Palmar 18.41139 -71.24558 P PPL DO 02 2445 14 America/Santo_Domingo 2012-01-16
-3507117 El Llano El Llano El Llano 18.81667 -71.63333 P PPL DO 11 2438 544 America/Santo_Domingo 2012-02-01
-3507461 El Guayabal El Guayabal El Guayabal,Guayabal 18.7496 -70.8369 P PPL DO 01 2835 727 America/Santo_Domingo 2012-01-16
-3507628 El Factor El Factor El Factor 19.31834 -69.88827 P PPL DO 14 7014 20 America/Santo_Domingo 2012-01-16
-3508083 El Carril El Carril El Carril,El Corral 18.44905 -70.02785 P PPL DO 33 2643 60 America/Santo_Domingo 2012-01-16
-3508286 El Cacao El Cacao El Cacao,Los Cacaos 18.52719 -70.29585 P PPL DO 33 1997 403 America/Santo_Domingo 2012-01-16
-3508694 Duvergé Duverge Duverge,Duvergé,Las Damas 18.37839 -71.52469 P PPL DO 09 13405 9 America/Santo_Domingo 2012-01-16
-3508761 Don Juan Don Juan Don Juan 18.82774 -69.94629 P PPL DO 32 2396 59 America/Santo_Domingo 2012-01-16
-3508952 Dajabón Dajabon Dajabon,Dajabón 19.54878 -71.70829 P PPL DO 04 16398 38 America/Santo_Domingo 2012-02-01
-3509191 Cristóbal Cristobal Cristobal,Cristóbal,San Cristobal,San Cristóbal 18.29405 -71.29298 P PPL DO 09 2735 14 America/Santo_Domingo 2012-01-16
-3509207 Cotuí Cotui Cotui,Cotuy,Cotuí 19.05272 -70.14939 P PPLA DO 21 41641 67 America/Santo_Domingo 2012-01-14
-3509363 Constanza Constanza Constanza,Costanza,Konstancija,Villa de Constanza,Констанция 18.90919 -70.74499 P PPL DO 30 29481 1177 America/Santo_Domingo 2012-01-16
-3509382 Concepción de La Vega Concepcion de La Vega Concepcion de La Vega,Concepcion de la Vega,Concepción de La Vega,Concepción de la Vega,La Vega 19.22207 -70.52956 P PPL DO 30 102426 101 America/Santo_Domingo 2012-01-16
-3509386 Comendador Comendador Comendado,Comendador,Elias Pena,Elias Peña,Elias Pina,Elías Piña 18.8775 -71.70278 P PPL DO 11 12070 394 America/Santo_Domingo 2012-01-16
-3509823 Cevicos Cevicos Cevicos,Villa de Cevicos 19.00449 -69.97896 P PPL DO 21 4064 95 America/Santo_Domingo 2012-01-16
-3509882 Cercado Abajo Cercado Abajo Cercado Abajo,El Cercado Abajo,El Sercado 18.72681 -71.51742 P PPL DO 23 5316 740 America/Santo_Domingo 2012-01-16
-3509989 Cayetano Germosén Cayetano Germosen Cayetano Bermosen,Cayetano Germosen,Cayetano Germosén,Gayetano Germosen,Villa de Cayetano Germosen,Villa de Cayetano Germosén 19.34413 -70.48342 P PPL DO 08 2526 150 America/Santo_Domingo 2012-01-16
-3510065 Castillo Castillo Cachanes,Castillo,Villa de Castillo 19.20824 -70.02726 P PPL DO 06 6328 80 America/Santo_Domingo 2012-01-16
-3510083 Castañuelas Castanuelas Castanuela,Castanuelas,Castañuela,Castañuelas 19.71387 -71.49876 P PPL DO 15 4209 23 America/Santo_Domingo 2012-01-16
-3510363 Canoa Canoa Canoa,La Canoa 18.35499 -71.1585 P PPL DO 03 2371 22 America/Santo_Domingo 2012-01-16
-3510553 Cana Chapetón Cana Chapeton Cana Chapeton,Cana Chapetón 19.60703 -71.25734 P PPL DO 15 1758 63 America/Santo_Domingo 2012-01-16
-3510637 Cambita Garabitos Cambita Garabitos Cambita,Cambita Garabitas,Cambita Garabito,Cambita Garabitos 18.4533 -70.1978 P PPL DO 33 13382 174 America/Santo_Domingo 2012-01-16
-3510822 Cachón Cachon Cachon,Cachón,El Cachon,El Cachón 18.24833 -71.18912 P PPL DO 03 1903 22 America/Santo_Domingo 2012-01-16
-3510874 Cabrera Cabrera Cabrar,Cabrera 19.6426 -69.9049 P PPL DO 14 4947 22 America/Santo_Domingo 2012-01-16
-3510885 Cabral Cabral Cabral,Rincon,Rincon Nuevo 18.25 -71.21667 P PPL DO 03 12303 21 America/Santo_Domingo 2012-01-16
-3510969 Cabarete Cabarete Cabarete,Kabarete,Кабарете 19.74982 -70.40829 P PPL DO 18 4094 12 America/Santo_Domingo 2010-07-29
-3511233 Bonao Bonao Banao,Bonao,Monsenor Nouel,Monseñor Nouel,Бонао 18.93687 -70.40923 P PPL DO 31 73269 177 America/Santo_Domingo 2012-01-16
-3511262 Bohechío Bohechio Boechio,Boechío,Bohechio,Bohechío 18.77515 -70.98889 P PPL DO 23 2281 455 America/Santo_Domingo 2012-01-16
-3511277 Boca de Yuma Boca de Yuma Boca de Yuma,Boca del Yuma,Yuma 18.37825 -68.609 P PPL DO 10 1991 8 America/Santo_Domingo 2012-01-16
-3511540 San Cristóbal San Cristobal Benemerita de San Cristobal,Benemérita de San Cristóbal,San Cristobal,San Cristóbal 18.41667 -70.1 P PPL DO 33 154040 33 America/Santo_Domingo 2011-02-04
-3511626 Bayaguana Bayaguana Bayaguana,San Juan Bautista de Bayaguana,San Juan de Bayaguana 18.75639 -69.63616 P PPL DO 32 21055 57 America/Santo_Domingo 2012-01-16
-3512064 Bánica Banica Banica,Bánica 19.08239 -71.7054 P PPL DO 11 1443 277 America/Santo_Domingo 2012-02-01
-3512067 Baní Bani Ban,Bani,Banti,Baní,Бан 18.28333 -70.33333 P PPLA DO 35 66709 71 America/Santo_Domingo 2012-01-14
-3512128 Bajos de Haina Bajos de Haina Bajos de Haina,Bajos de Jaina 18.41538 -70.03317 P PPL DO 33 66784 36 America/Santo_Domingo 2012-01-16
-3512166 Baitoa Baitoa Baitoa 19.32512 -70.70357 P PPL DO 25 2013 250 America/Santo_Domingo 2012-01-16
-3512208 Azua de Compostela Azua de Compostela Asua-de-Kompostela,Azua,Azua de Compostela,Compostela de Azua,Асуа-де-Компостела 18.45319 -70.7349 P PPLA DO 01 59139 86 America/Santo_Domingo 2012-01-14
-3512332 Arroyo Salado Arroyo Salado Arroyo Salado,Paso del Rio,Paso del Río 19.5 -69.9 P PPL DO 14 1990 6 America/Santo_Domingo 2012-01-16
-3512573 Arenoso Arenoso Arenoso,Majagual 19.18732 -69.85918 P PPL DO 06 2897 18 America/Santo_Domingo 2012-01-16
-3512720 Amina Amina 19.54814 -70.99599 P PPL DO 27 1910 80 America/Santo_Domingo 2006-01-17
-3512795 Altamira Altamira Altamira 19.6773 -70.84428 P PPL DO 18 4563 317 America/Santo_Domingo 2012-02-01
-3512902 Agua Santa del Yuna Agua Santa del Yuna Agua Santa del Yuna,Trujillo del Yuna 19.15282 -69.77977 P PPL DO 06 1830 12 America/Santo_Domingo 2012-01-16
-2474141 Boumerdas Boumerdas Bou-Merdes,Boumerdas,Bumerdes,Cite de Boumerdes,Cité de Boumerdes,Le Rocher Noir,Roche Noire,Rocher Noir,Бумердес 36.76639 3.47717 P PPLA DZ 40 786499 5 Africa/Algiers 2012-01-14
-2474506 Zeribet el Oued Zeribet el Oued Zeribet el Oued,Zribet el Oued 34.68284 6.51109 P PPL DZ 19 23187 47 Africa/Algiers 2012-01-19
-2474583 Zeralda Zeralda 36.71169 2.84244 P PPL DZ 55 17563 30 Africa/Algiers 2011-03-07
-2474638 Zemoura Zemoura Zemmora,Zemoura 35.72251 0.75509 P PPL DZ 51 21770 288 Africa/Algiers 2012-01-19
-2475475 Touggourt Touggourt Touggourt,Tougourt,Tuggurt 33.10527 6.05796 P PPL DZ 50 49044 72 Africa/Algiers 2012-01-19
-2475612 Tolga Tolga Tolga,Толга 34.72224 5.37845 P PPL DZ 19 68246 161 Africa/Algiers 2012-01-19
-2475687 Tlemcen Tlemcen Tilimsan,Tlemcen,Tlemecen,Tlemecén,Tlemsen,te lai mu sen,tlmsan,toremusen,Тлемсен,تلمسان,トレムセン,特莱姆森 34.87833 -1.315 P PPLA DZ 15 132341 811 Africa/Algiers 2012-01-19
-2475740 Tizi Rached Tizi Rached Tizi Rached 36.67176 4.19176 P PPL DZ 14 17872 405 Africa/Algiers 2012-01-19
-2475744 Tizi Ouzou Tizi Ouzou Tizi Ouzou,Tizi Uzu,Tizi-Ouzou,tyzy wzw,Тизи Узу,تيزي وزو 36.71182 4.04591 P PPLA DZ 14 0 206 Africa/Algiers 2012-01-19
-2475752 Tizi-n-Tleta Tizi-n-Tleta 36.54569 4.05712 P PPL DZ 14 22404 483 Africa/Algiers 2011-04-19
-2475764 Tizi Gheniff Tizi Gheniff Tizi Ghenif,Tizi Gheniff,Tizi R'Nif,Tizi Renif,Tizi Rniff,Tizi R’Nif,Tizi-Reniff 36.58839 3.77445 P PPL DZ 40 27974 370 Africa/Algiers 2012-01-19
-2475860 Tissemsilt Tissemsilt Tissemsil,Tissemsilt,Vialar 35.60722 1.81081 P PPLA DZ 56 0 866 Africa/Algiers 2012-01-19
-2475921 Tirmitine Tirmitine Tirmitine 36.65393 3.98143 P PPL DZ 14 26261 532 Africa/Algiers 2012-01-19
-2476028 Tipasa Tipasa Tipasa,Tipaza,tybazt,تيبازة 36.58972 2.4475 P PPLA DZ 55 0 32 Africa/Algiers 2012-01-19
-2476301 Tindouf Tindouf Provinsi Tindouf,Tindouf,Tinduf,wlayt tndwf,ولاية تندوف 27.67111 -8.14744 P PPLA DZ 54 0 402 Africa/Algiers 2012-01-19
-2476396 Timizart Timizart Timizart 36.8 4.26667 P PPL DZ 14 41158 312 Africa/Algiers 2012-01-19
-2476403 Timimoun Timimoun Timimoun,Timmoun 29.26388 0.23098 P PPL DZ 34 49237 279 Africa/Algiers 2012-01-19
-2476412 el hed el hed El Maten,Il Maten,Il Matene,Il Matten,Timezrit Il Maten 36.65 4.77361 P PPL DZ 18 31890 94 Africa/Algiers 2007-03-25
-2476897 Tiaret Tiaret Tiaret,Тиарет 35.37103 1.31699 P PPLA DZ 13 0 1031 Africa/Algiers 2012-01-19
-2476915 Theniet el Had Theniet el Had Teniet el Haad,Teniet el Had,Teniet-el-Ha,Theniet el Had 35.87111 2.02806 P PPL DZ 35 27687 1129 Africa/Algiers 2012-01-19
-2476917 Thenia Thenia Menerville,Ménerville,Thenia,Theniet Beni Aicha,Theniet Béni Aicha 36.72544 3.55665 P PPL DZ 40 16180 148 Africa/Algiers 2012-01-19
-2477255 Telerghma Telerghma Telerghma,Telergma 36.11653 6.35434 P PPL DZ 48 51708 748 Africa/Algiers 2012-01-19
-2477461 Tébessa Tebessa Tebessa,Theveste,Tibissa,Tébessa,wlayt tbst,ولاية تبسة 35.40417 8.12417 P PPLA DZ 33 0 867 Africa/Algiers 2012-01-19
-2477462 Tebesbest Tebesbest Tebesbest 33.11667 6.08333 P PPL DZ 50 41091 70 Africa/Algiers 2012-01-19
-2477528 Tazoult-Lambese Tazoult-Lambese Lambese,Lambèse,Tazoult,Tazoult-Lambese 35.48171 6.26074 P PPL DZ 03 41636 1205 Africa/Algiers 2012-01-19
-2478216 Tamanrasset Tamanrasset Fort Laperine,Fort Laperrine,Tamahrasset,Tamanghasset,Tamanrasset,Tamanrassete,tmnrast,Таманрассете,تمنراست 22.785 5.52278 P PPLA DZ 53 73128 1372 Africa/Algiers 2012-01-19
-2478226 Tamalous Tamalous Tamalous 36.83763 6.64018 P PPL DZ 31 32579 65 Africa/Algiers 2012-01-19
-2478831 Tadmaït Tadmait Camp du Marechal,Camp du Maréchal,Tadmait,Tadmaït 36.74413 3.90045 P PPL DZ 40 20952 52 Africa/Algiers 2012-01-19
-2479161 Sour el Ghozlane Sour el Ghozlane Aumale,Aumale-d'Algerie,Aumale-d’Algérie,Aumate,Sour el Ghozlane 36.14766 3.69123 P PPL DZ 21 50204 884 Africa/Algiers 2012-01-19
-2479183 Souma Souma 36.51833 2.90528 P PPL DZ 20 40745 151 Africa/Algiers 2006-01-27
-2479215 Souk Ahras Souk Ahras Souk Ahras,Soukaras,Suk Aras 36.28639 7.95111 P PPLA DZ 52 0 697 Africa/Algiers 2012-01-19
-2479247 Sougueur Sougueur Nadhora,Nador,Sougueur,Trezel,Trézel 35.18568 1.49612 P PPL DZ 13 68654 1133 Africa/Algiers 2012-01-19
-2479536 Skikda Skikda Philippeville,Phillippville,Skikda,wlayt skykdt,Скикда,ولاية سعيدة,ولاية سكيكدة 36.87617 6.90921 P PPLA DZ 31 162702 24 Africa/Algiers 2012-01-19
-2479609 Sig Sig Saint-Denis-du-Sig,Sig 35.52832 -0.19369 P PPL DZ 26 58877 62 Africa/Algiers 2012-01-19
-2479916 Sidi Okba Sidi Okba Sidi Okba 34.74512 5.89833 P PPL DZ 19 34985 53 Africa/Algiers 2012-01-19
-2479966 Sidi Moussa Sidi Moussa Sidi Moussa 36.60637 3.08783 P PPL DZ 20 57928 46 Africa/Algiers 2012-01-19
-2480198 Sidi Mérouane Sidi Merouane Sidi Merouan,Sidi Merouane,Sidi Mérouane 36.52056 6.26111 P PPL DZ 48 25129 289 Africa/Algiers 2012-01-19
-2480368 Sidi Khaled Sidi Khaled Sidi Khaled,Sidi Kraled 34.387 4.98785 P PPL DZ 19 64476 204 Africa/Algiers 2012-01-19
-2480618 Sidi ech Chahmi Sidi ech Chahmi Sidi Chami,Sidi Chamy,Sidi ech Chahmi 35.65903 -0.52168 P PPL DZ 09 35512 92 Africa/Algiers 2012-01-19
-2481007 Sidi Bel Abbès Sidi Bel Abbes Sid Bel Abbes,Sid Bel Abbès,Sidi Bel Abbes,Sidi Bel Abbès,Sidi Bel Abes,Sidi bel Abbes,Sidi bel Abbès,Sidi-Bal-Abbes,Sidi-Bal-Abbès,Sidi-Bel-Abbes,Sidi-Bel-Abbès,Sidi-bel-Abbes,Sidi-bel-Abbès,Сиди Бел Абес,سيدي بلعباس,ولاية سيدي بلعباس 35.18994 -0.63085 P PPLA DZ 30 191769 476 Africa/Algiers 2012-01-19
-2481058 Sidi Amrane Sidi Amrane Sidi Amrane 33.49885 6.00803 P PPL DZ 50 29734 45 Africa/Algiers 2012-01-19
-2481207 Sidi Akkacha Sidi Akkacha Montenotte,Sidi Akacha,Sidi Akkacha 36.46472 1.30258 P PPL DZ 41 26558 120 Africa/Algiers 2012-01-19
-2481246 Sidi Aïssa Sidi Aissa Sid Aissa,Sid Aïssa,Sidi Aissa,Sidi Aïssa,Sidi-Aissa,Сиди-Аисса 35.88548 3.77236 P PPL DZ 27 69740 662 Africa/Algiers 2012-01-19
-2481389 Sidi Abdelli Sidi Abdelli Les Abdellys,Les Abdelys,Sidi Abdelli 35.06937 -1.13706 P PPL DZ 15 23543 465 Africa/Algiers 2012-01-19
-2481639 Sfizef Sfizef Mercier-Lacombe,Sfisef,Sfissef,Sfizef 35.23464 -0.24435 P PPL DZ 30 31081 551 Africa/Algiers 2012-01-19
-2481700 Sétif Setif Satif,Setif,Sétif,styf,wlayt styf,Сетиф,سطيف,ولاية سطيف 36.19112 5.41373 P PPLA DZ 12 0 1096 Africa/Algiers 2012-01-19
-2482090 Sedrata Sedrata Sedrata 36.12868 7.53376 P PPL DZ 52 53318 794 Africa/Algiers 2012-01-19
-2482159 Seddouk Seddouk Seddouk 36.54722 4.68611 P PPL DZ 18 19884 353 Africa/Algiers 2012-01-19
-2482211 Sebdou Sebdou Sebdou 34.63703 -1.33143 P PPL DZ 15 41146 920 Africa/Algiers 2012-01-19
-2482390 Saoula Saoula Saoula 36.70456 3.02462 P PPL DZ 55 16812 105 Africa/Algiers 2012-01-19
-2482447 Salah Bey Salah Bey Dzeira,Pascal,Salah Bey 35.8545 5.29053 P PPL DZ 12 23339 976 Africa/Algiers 2012-01-19
-2482572 Saïda Saida Saida,Sajda,Saïda,Сайда 34.83034 0.15171 P PPLA DZ 10 127497 840 Africa/Algiers 2012-01-19
-2482886 Rouissat Rouissat Rouissat 31.92427 5.35018 P PPL DZ 50 80784 138 Africa/Algiers 2012-01-19
-2482908 Rouiba Rouiba Rouiba 36.73829 3.28079 P PPL DZ 01 20742 16 Africa/Algiers 2012-01-19
-2482939 Rouached Rouached 36.45774 6.04267 P PPL DZ 48 40263 543 Africa/Algiers 2011-04-19
-2483000 Robbah Robbah Robbah 33.27966 6.90984 P PPL DZ 43 30446 90 Africa/Algiers 2012-01-19
-2483649 Remchi Remchi Montagnac,Remchi 35.06196 -1.43362 P PPL DZ 15 51224 209 Africa/Algiers 2012-01-19
-2483668 Relizane Relizane Ighil Izane,Prowincja Relizane,Relizan,Relizane,ghlyzan,wlayt ghlyzan,غلیزان,ولاية غليزان 35.73734 0.55599 P PPLA DZ 51 0 98 Africa/Algiers 2012-01-19
-2483746 Reguiba Reguiba Reguiba 33.56391 6.70326 P PPL DZ 43 62185 58 Africa/Algiers 2012-01-19
-2483757 Reghaïa Reghaia La Reghaia,La Reghaïa,La Reghia-Alma,Reghaia,Reghaïa 36.73587 3.34018 P PPL DZ 40 54962 14 Africa/Algiers 2012-01-19
-2483761 Reggane Reggane Reggan,Reggane,Zaouiet Reggan,Zaouiet Reggane 26.71576 0.1714 P PPL DZ 34 32974 210 Africa/Algiers 2012-01-19
-2483936 Râs el Oued Ras el Oued Ras el Oued,Ras-ehl'-Uehd,Rass el Oued,Râs el Oued,Tocqueville,Рас-эль-Уэд 35.9441 5.03107 P PPL DZ 39 56726 1102 Africa/Algiers 2012-01-19
-2483968 Râs el Aïoun Ras el Aioun Ras el Aioun,Ras el Ayoun,Rass el Aioun,Rass el Aïoun,Râs el Aïoun 35.67384 5.6453 P PPL DZ 03 34167 862 Africa/Algiers 2012-01-19
-2484620 Oum el Bouaghi Oum el Bouaghi Canrobert,Oum el Bouaghi,Oum-el-Bouachi 35.87541 7.11353 P PPLA DZ 29 100821 925 Africa/Algiers 2012-01-19
-2484738 Oumache Oumache Oumach,Oumache,Umash 34.69292 5.68092 P PPL DZ 19 10424 54 Africa/Algiers 2012-01-19
-2484835 Ouled Moussa Ouled Moussa Ouled Moussa,Saint Pierre,Saint-Pierre-Saint-Paul 36.68394 3.36661 P PPL DZ 40 13474 115 Africa/Algiers 2012-01-19
-2484846 Ouled Mimoun Ouled Mimoun Lamariciere,Lamaricière,Lamoriciere,Lamoricière,Lemoriciere,Ouled Mimoun 34.90472 -1.03394 P PPL DZ 15 33888 700 Africa/Algiers 2012-01-19
-2485572 Oued Sly Oued Sly Malakoff,Malakoft,Oued Sli,Oued Sly 36.10124 1.19949 P PPL DZ 41 30504 90 Africa/Algiers 2012-01-19
-2485582 Oued Rhiou Oued Rhiou Inkermann,Oued Rhiou,Oued Riou 35.96124 0.91896 P PPL DZ 51 59864 97 Africa/Algiers 2012-01-19
-2485618 Oued Fodda Oued Fodda Oued Fodda 36.18503 1.53299 P PPL DZ 41 44523 168 Africa/Algiers 2012-01-19
-2485633 Oued el Alleug Oued el Alleug Oued Alleug,Oued el Alleng,Oued el Alleug 36.55528 2.79028 P PPL DZ 55 21146 47 Africa/Algiers 2012-01-19
-2485636 Oued el Abtal Oued el Abtal Oued el Abtal,Torki-le-Djuk,Uzes-le-Duc,Uzes-le-Due,Uzès-le-Duc,Uzès-le-Due,Торки-ле-Дюк 35.45595 0.68778 P PPL DZ 26 22819 259 Africa/Algiers 2012-01-19
-2485801 Ouargla Ouargla Ouargla,Quargla,Warkala,Warqla,wrqlt,ورقلة 31.94932 5.32502 P PPLA DZ 50 129402 138 Africa/Algiers 2010-08-03
-2485926 Oran Oran Ora,Oran,Orà,Orán,Ouahran,Wahran,Wahrān,whran,wlayt whran,Оран,אוראן,ولاية وهران,وهران 35.69111 -0.64167 P PPLA DZ 09 645984 109 Africa/Algiers 2012-01-19
-2486284 Nedroma Nedroma Nedroma 35.01361 -1.74799 P PPL DZ 15 36995 355 Africa/Algiers 2012-01-19
-2486505 Naciria Naciria Azib Zamoun,Haussonviller,Haussonvillers,Naciria 36.74625 3.83163 P PPL DZ 40 15387 169 Africa/Algiers 2012-01-19
-2486523 Naama Naama 33.26667 -0.31667 P PPLA DZ 49 8390 1169 Africa/Algiers 2006-01-27
-2486690 M’Sila M'Sila M'Sila,M’Sila 35.70583 4.54194 P PPLA DZ 27 0 477 Africa/Algiers 2012-01-19
-2486825 Mouzaïa Mouzaia Mouzaia,Mouzaiaville,Mouzaïa,Mouzaïaville 36.46695 2.68991 P PPL DZ 55 32981 121 Africa/Algiers 2012-01-19
-2487134 Mostaganem Mostaganem Mastaganeam,Mostaganem,Mustaghanam,Mustaghanim,Мостаганем 35.93115 0.08918 P PPLA DZ 07 130000 102 Africa/Algiers 2012-01-19
-2487452 Mila Mila Mila 36.45028 6.26444 P PPLA DZ 48 68831 470 Africa/Algiers 2012-01-19
-2487620 Metlili Chaamba Metlili Chaamba Metlili,Metlili Chaamba,Metlili-les Chaamba,Mettlili Chaamba 32.26667 3.63333 P PPL DZ 45 50117 542 Africa/Algiers 2012-01-19
-2487772 Messaad Messaad Messaad,Messad,Мессад 34.15429 3.50309 P PPL DZ 22 99485 777 Africa/Algiers 2012-01-19
-2487805 Meskiana Meskiana La Meskiana,Meskiana 35.63058 7.66606 P PPL DZ 29 30071 850 Africa/Algiers 2012-01-19
-2487852 Mers el Kebir Mers el Kebir Mers el Kabir,Mers el Kebir,Mers-ehl'-Kebir,Мерс-эль-Кебир 35.7279 -0.7081 P PPL DZ 09 20178 22 Africa/Algiers 2012-01-19
-2487882 Merouana Merouana Corneille,Merouana 35.63106 5.91186 P PPL DZ 03 47646 992 Africa/Algiers 2012-01-19
-2488202 Melouza Melouza Melouda,Melouza,Ouan Ougha,Souk el Tleta 35.97999 4.18665 P PPL DZ 39 25701 936 Africa/Algiers 2012-01-19
-2488500 Mekla Mekla Mekla 36.68178 4.26378 P PPL DZ 14 29560 325 Africa/Algiers 2012-01-19
-2488616 Mehdia Mehdia Burdeau,Mahdia,Makhdija,Mehdia,Махдия 35.43058 1.75714 P PPL DZ 13 39271 909 Africa/Algiers 2012-01-19
-2488716 Megarine Megarine Megarine,Meggarine 33.19195 6.08695 P PPL DZ 50 31711 68 Africa/Algiers 2012-01-19
-2488722 Meftah Meftah Meftah,Meftakh,Rivet,Мефтах 36.6204 3.22248 P PPL DZ 20 59990 78 Africa/Algiers 2012-01-19
-2488835 Médéa Medea Lambdia,Medea,Medeah,Medeja,Médéa,Медея 36.26417 2.75393 P PPLA DZ 06 147707 910 Africa/Algiers 2012-01-19
-2489987 Mazouna Mazouna Mazouna 36.12232 0.89865 P PPL DZ 51 22366 342 Africa/Algiers 2012-01-19
-2490098 Mascara Mascara Mascara,Maskara 35.39664 0.14027 P PPLA DZ 26 0 590 Africa/Algiers 2012-01-19
-2490180 Mansourah Mansourah Mansoura,Mansourah,Mansur,Мансур 36.08725 4.45192 P PPL DZ 39 22117 667 Africa/Algiers 2012-01-19
-2490183 Mansoûra Mansoura Mansoura,Mansourah,Mansoûra,Mansura,Мансура 34.86158 -1.33935 P PPL DZ 15 52285 894 Africa/Algiers 2012-01-19
-2490297 Makouda Makouda Macouda,Makouda 36.78567 4.06273 P PPL DZ 40 34515 310 Africa/Algiers 2012-01-19
-2491042 L’Arbaa Naït Irathen L'Arbaa Nait Irathen Fort National,L'Arbaa Irathen Nait,L'Arbaa Nait Irathen,Larbaa Nath Iraten,L’Arbaa Irathen Naït,L’Arbaa Naït Irathen 36.63112 4.19864 P PPL DZ 14 30609 710 Africa/Algiers 2012-01-19
-2491050 L’Arba L'Arba Arba,El-Arba,L'Arba,Larba,L’Arba,Ларба 36.56471 3.15434 P PPL DZ 20 69298 100 Africa/Algiers 2012-01-19
-2491134 Lakhdaria Lakhdaria Lakhdaria,Palestro 36.56463 3.5933 P PPL DZ 21 56719 171 Africa/Algiers 2012-01-19
-2491191 Laghouat Laghouat Laghouat,Laguat,Larhouat,Prowincja Laghouat,wlayt alaghwat,Лагуат,ولاية الأغواط 33.8 2.86514 P PPLA DZ 25 113872 764 Africa/Algiers 2012-01-19
-2491323 Ksar el Boukhari Ksar el Boukhari Boghari,Borhari,Ksar el Boukhari 35.88889 2.74905 P PPL DZ 06 77166 621 Africa/Algiers 2012-01-19
-2491335 Ksar Chellala Ksar Chellala Chellala,Chellala-Reibell,Ksar Chellala,Reibel,Reibell,Reïbell,Shelala 35.21222 2.31889 P PPL DZ 13 58478 842 Africa/Algiers 2012-01-19
-2491578 Kolea Kolea Kolea 36.63888 2.76845 P PPL DZ 55 31816 137 Africa/Algiers 2012-01-19
-2491889 Khenchela Khenchela Khenchela,Krenchela 35.43583 7.14333 P PPLA DZ 47 0 1128 Africa/Algiers 2012-01-19
-2491911 Khemis Miliana Khemis Miliana Affreville,El Khemis,El Khemis Miliana,Khemis Miliana 36.26104 2.22015 P PPL DZ 35 75865 299 Africa/Algiers 2012-01-19
-2491913 Khemis el Khechna Khemis el Khechna Fondouk,Khemis El Khechma,Khemis el Khechna,Le Fondouk 36.64997 3.3308 P PPL DZ 40 49757 91 Africa/Algiers 2012-01-19
-2492345 Kerkera Kerkera El Achra,Kerkera 36.92917 6.58556 P PPL DZ 31 46747 39 Africa/Algiers 2012-01-19
-2492913 Jijel Jijel Djedjelli,Djidjelli,Giger,Gíger,Jijelli 36.82055 5.76671 P PPLA DZ DZ 24 0 9 Africa/Algiers 2012-01-14
-2492920 Djidiouia Djidiouia Djidioua,Djidiouia,Djidjiouia,Jdiouia,Saint-Aime,Saint-Aimé 35.92989 0.82871 P PPL DZ 51 31996 70 Africa/Algiers 2012-01-19
-2492991 Isser Isser Isser,Isserville 36.71859 3.66924 P PPL DZ 40 17953 66 Africa/Algiers 2012-01-19
-2493222 I-n-Salah I-n-Salah Ain Salah,Aïn Salah,I-n-Salah 27.19351 2.46069 P PPL DZ 53 49223 273 Africa/Algiers 2012-01-19
-2493456 Illizi Illizi Fort Polignac,Fort de Polignac,Illizi,Polignac 26.48333 8.46667 P PPLA DZ 46 6629 556 Africa/Algiers 2012-01-19
-2493605 Ighram Ighram Ighram,Irhram 36.46295 4.50532 P PPL DZ 14 15030 334 Africa/Algiers 2012-01-19
-2493918 Hennaya Hennaya Eugene Etienne,Eugene-Etienne Hennaya,Eugène Étienne,Eugéne-Étienne Hennaya,Hennaya 34.95139 -1.36806 P PPL DZ 15 41959 430 Africa/Algiers 2012-01-19
-2493956 Héliopolis Heliopolis Heliopolis,Héliopolis 36.50361 7.44278 P PPL DZ 23 40139 268 Africa/Algiers 2012-01-19
-2494029 Hassi Messaoud Hassi Messaoud Hassi Messaoud,Khassi-Messaud,Хасси-Мессауд 31.68041 6.07286 P PPL DZ 50 53000 152 Africa/Algiers 2010-10-07
-2494548 Hammamet Hammamet Gidjel,Hammamet,Khammamet,Youks-les-Bains,Youks-les-Banins,Хаммамет 35.44862 7.95184 P PPL DZ 33 28536 878 Africa/Algiers 2012-01-19
-2494554 Hammam Bou Hadjar Hammam Bou Hadjar Hammam Bou Hadjar,Hamman Bou Habjar,Hommam Bou Hadjar 35.37889 -0.96778 P PPL DZ 36 35896 148 Africa/Algiers 2012-01-19
-2494610 Hamma Bouziane Hamma Bouziane Hamma,Hamma Bouniane,Hamma Bouziane,Hamma-Plaisance,Le Hamma,Le Hamma-Plaisance 36.41205 6.59603 P PPL DZ 04 63012 479 Africa/Algiers 2012-01-19
-2494962 Hadjout Hadjout Hadjout,Marengo 36.51257 2.41382 P PPL DZ 55 27549 88 Africa/Algiers 2012-01-19
-2495662 Guelma Guelma Guelma,qalmt,قالمة 36.46214 7.42608 P PPLA DZ 23 123590 305 Africa/Algiers 2012-01-19
-2496232 Frenda Frenda Frenda 35.06544 1.04945 P PPL DZ 13 63319 1058 Africa/Algiers 2012-01-19
-2496241 Freha Freha Freda,Freha 36.75234 4.3155 P PPL DZ 14 31068 170 Africa/Algiers 2012-01-19
-2496573 Feraoun Feraoun Feraoun 36.5604 4.85454 P PPL DZ 18 21700 652 Africa/Algiers 2012-01-19
-2497060 Es Senia Es Senia Es Senia,La Senia,La Sénia 35.64779 -0.62397 P PPL DZ 09 68084 88 Africa/Algiers 2012-01-19
-2497323 El Tarf El Tarf El Tarf,Le Tarf 36.7672 8.31377 P PPLA DZ 44 0 24 Africa/Algiers 2012-01-19
-2497411 El Oued El Oued El Oued,El Qued 33.35608 6.86319 P PPLA DZ 43 0 84 Africa/Algiers 2012-01-19
-2497714 El Malah El Malah El Malah,El Melah,Rio Salado,Zfissaf 35.39138 -1.09238 P PPL DZ 36 19415 84 Africa/Algiers 2012-01-19
-2497796 El Kseur El Kseur El Kseur 36.67942 4.8555 P PPL DZ 18 26050 84 Africa/Algiers 2012-01-19
-2497849 El Khroub El Khroub El Khroub,El-Kroub,Kroubs,Le Khroub,Le Kroub 36.26333 6.69361 P PPL DZ 04 83746 630 Africa/Algiers 2012-01-19
-2497988 El Kala El Kala Ehl'-Kaly,El Kala,La Calle,Port de la Calle,Эль-Калы 36.89556 8.44333 P PPL DZ 44 35449 21 Africa/Algiers 2012-01-19
-2498000 El Idrissia El Idrissia El Idrissia,Zenina 34.44542 2.52749 P PPL DZ 22 38714 1070 Africa/Algiers 2012-01-19
-2498172 El Hadjira El Hadjira El Hadjira 32.61336 5.51259 P PPL DZ 50 39744 130 Africa/Algiers 2012-01-19
-2498183 El Hadjar El Hadjar Duzerville,El Hadjar 36.80377 7.73684 P PPL DZ 37 46656 13 Africa/Algiers 2012-01-19
-2498392 El Eulma El Eulma El Eulma,Saint-Arnaud 36.15281 5.69016 P PPL DZ 12 128351 959 Africa/Algiers 2012-01-19
-2498543 El Bayadh El Bayadh El Bayadh,El-Bayadh,Geryville,Géryville,Prowincja El Bayadh,Wilaya de El Bayadh,alblydh,wlayt albyd,البلیده,ولاية البيض 33.68318 1.01927 P PPLA DZ 42 0 1310 Africa/Algiers 2012-01-19
-2498590 El Attaf El Attaf Ehl'-Attafom,El Attaf,Les Attafs,Les Attats,Les Attefs,Эль-Аттафом 36.22393 1.67187 P PPL DZ 35 43837 158 Africa/Algiers 2012-01-19
-2498611 Chlef Chlef Chlef,Ech Chlef,El Asnam,Orleansville,Orléansville 36.16525 1.33452 P PPLA DZ 41 0 116 Africa/Algiers 2012-01-19
-2498667 El Aouinet El Aouinet Aouinet-ed-Dieb,Aouinet-el-Dieb,Aouïnet-ed-Dieb,Clairefontaine,Clairfontaine,El Aouinet 35.86691 7.88672 P PPL DZ 29 32971 653 Africa/Algiers 2012-01-19
-2498704 El Amria El Amria El Amiria,El Amria,Lourmel,Lurmel 35.52439 -1.01577 P PPL DZ 36 26407 101 Africa/Algiers 2012-01-19
-2498752 El Affroun El Affroun El Affroun,El Afroun,El Alfroun 36.4701 2.62528 P PPL DZ 55 42627 96 Africa/Algiers 2012-01-19
-2498766 El Achir El Achir El Achir 36.06386 4.62744 P PPL DZ 39 158333 998 Africa/Algiers 2012-01-19
-2498775 El Abiodh Sidi Cheikh El Abiodh Sidi Cheikh El Abiod Sidi Cheikh,El Abiod Sidi Cheiki,El Abiod Sidi Cheikr,El Abiod Sidi Cheïkr,El Abiodh,El Abiodh Sidi Cheikh,El Abrod Sidi Cheikr,El-Abiod-Sidi-Cheik,Sidi Cheikh 32.893 0.54839 P PPL DZ 42 39283 903 Africa/Algiers 2012-01-19
-2498782 El Abadia El Abadia Al Abadia,Carnot,El Abadia 36.26951 1.68609 P PPL DZ 35 28724 177 Africa/Algiers 2012-01-19
-2498954 Ech Chettia Ech Chettia Ech Chetia,Ech Chettia,Ech Chettiâ,Ech Chétia 36.19591 1.25538 P PPL DZ 41 167955 140 Africa/Algiers 2012-01-19
-2499055 Drean Drean Drean,Mondovi 36.68482 7.75111 P PPL DZ 37 55147 24 Africa/Algiers 2012-01-19
-2499104 Draa el Mizan Draa el Mizan Dra el Mizan,Dra el Mizane,Dra-ehl'-Mizan,Draa el Mizan,Дра-эль-Мизан 36.53628 3.8334 P PPL DZ 21 41263 410 Africa/Algiers 2012-01-19
-2499116 Draa Ben Khedda Draa Ben Khedda Dra Ben Khedda,Draa Ben Kheda,Draa Ben Khedda,Draa Ben Kredda,Mirabeau 36.73436 3.96223 P PPL DZ 40 37443 43 Africa/Algiers 2012-01-19
-2499193 Douera Douera Douera 36.67 2.94444 P PPL DZ 55 26926 178 Africa/Algiers 2012-01-19
-2500017 Djelfa Djelfa Djelfa,Dzilfa,Dżilfa,Jelfa,jlfh,wlayt aljlft,جلفه,ولاية الجلفة 34.67279 3.263 P PPLA DZ 22 0 1138 Africa/Algiers 2012-01-19
-2500282 Djamaa Djamaa Djama,Djamaa,Djemaa,Djemâa 33.53388 5.99306 P PPL DZ 50 52882 40 Africa/Algiers 2012-01-19
-2500401 Didouche Mourad Didouche Mourad Bizot,Didouche Mourad 36.4525 6.63639 P PPL DZ 04 25764 537 Africa/Algiers 2012-01-19
-2500583 Dellys Dellys Delis,Dellys 36.91716 3.91311 P PPL DZ 40 26384 63 Africa/Algiers 2012-01-19
-2500737 Debila Debila Debila 33.51667 6.95 P PPL DZ 43 36834 52 Africa/Algiers 2012-01-19
-2500889 Dar el Beïda Dar el Beida Dar El Baida,Dar el Beida,Dar el Beïda,Dar-ehl'-Bejda,La Maison Blanche,Maison Blanche,Дар-эль-Бейда 36.71333 3.2125 P PPL DZ 01 37311 17 Africa/Algiers 2012-01-19
-2500904 Dar Chioukh Dar Chioukh Dar Chioukh,Diar el Chioukh 34.89638 3.48543 P PPL DZ 22 54022 1094 Africa/Algiers 2012-01-19
-2501152 Constantine Constantine Cirta,Constantine 36.365 6.61472 P PPLA DZ 04 450097 574 Africa/Algiers 2012-01-19
-2501289 Chorfa Chorfa Cheurfa,Chorfa,Чорфа 36.36505 4.32636 P PPL DZ 21 20556 342 Africa/Algiers 2012-01-19
-2501323 Chiffa Chiffa Chiffa,La Chiffa 36.46293 2.73873 P PPL DZ 20 23218 110 Africa/Algiers 2012-01-19
-2501362 Chetouane Chetouane Chetouane,Negrier,Négrier 34.92129 -1.29512 P PPL DZ 15 39913 578 Africa/Algiers 2012-01-19
-2501404 Cheria Cheria Cheria 35.27306 7.75194 P PPL DZ 33 72095 1094 Africa/Algiers 2012-01-19
-2501465 Cheraga Cheraga Cheraga,Cheragas 36.76775 2.95924 P PPL DZ 55 27835 171 Africa/Algiers 2012-01-19
-2501508 Chemini Chemini Azerou Ait Chemini,Azerou Aït Chemini,Azrou-n-Ait Chemini,Azrou-n-Aït Chemini,Chemini 36.6 4.61667 P PPL DZ 14 21585 852 Africa/Algiers 2012-01-19
-2501541 Chelghoum el Aïd Chelghoum el Aid Chateaudun,Chateaudun de Rhumel,Chateaudun-du Rummel,Chateaudun-du-Rhumel,Chateaudun-du-Rhummel,Chelghoum el Aid,Chelghoum el Aïd,Châteaudun,Châteaudun de Rhumel,Châteaudun-du Rummel,Châteaudun-du-Rhumel,Châteaudun-du-Rhummel,Ghelghoum Elaid,Ghelghoum Elaïd,Ghelgoum Elaid,Ghelgoum Elaïd 36.16286 6.16651 P PPL DZ 48 71660 766 Africa/Algiers 2012-01-19
-2501680 Chebli Chebli Chebli 36.57722 3.00917 P PPL DZ 20 19901 56 Africa/Algiers 2012-01-19
-2501767 Charef Charef Charef,Charet 34.62098 2.79503 P PPL DZ 22 27700 1157 Africa/Algiers 2012-01-19
-2501873 Chabet el Ameur Chabet el Ameur Chabet -el -Ameuro,Chabet el Ameur 36.63709 3.69474 P PPL DZ 40 19522 245 Africa/Algiers 2012-01-19
-2502034 Brezina Brezina Brexina,Brezina 33.09892 1.26082 P PPL DZ 42 19084 855 Africa/Algiers 2012-01-19
-2502239 Bou Tlelis Bou Tlelis 35.57272 -0.8996 P PPL DZ 09 26144 103 Africa/Algiers 2006-01-27
-2502686 Boumahra Ahmed Boumahra Ahmed Boumahra Ahmed,Petit 36.45833 7.51389 P PPL DZ 23 23022 208 Africa/Algiers 2012-01-19
-2502924 Boukadir Boukadir Bou Kadir,Boukadir,Bu-Kadir,Charon,Charron,Oued Ben Kader,Бу-Кадир 36.06629 1.12602 P PPL DZ 41 26662 79 Africa/Algiers 2012-01-19
-2502939 Bou Ismaïl Bou Ismail Bou Ismael,Bou Ismail,Bou Ismaël,Bou Ismaïl,Bu-Ismail,Castiglione,Бу-Исмаил 36.64262 2.69007 P PPL DZ 55 22411 29 Africa/Algiers 2012-01-19
-2502958 Bouira Bouira 36.37489 3.902 P PPLA DZ 21 0 519 Africa/Algiers 1999-07-09
-2502962 Bouinan Bouinan Bouinan,Bouinane,Bouïnane 36.53167 2.99194 P PPL DZ 20 30271 92 Africa/Algiers 2012-01-19
-2503033 Bou Hanifia el Hamamat Bou Hanifia el Hamamat Bou Hanifia,Bou Hanifia el Hamamat,Bou Hanifia el Hammamet,Bou Hanifia-les Thermes,Sidi Bou Hanifia 35.31473 -0.05037 P PPL DZ 26 27576 232 Africa/Algiers 2012-01-19
-2503147 Bougara Bougara Bougara,Bouguera,Bouguerra,Rovigo 36.54178 3.081 P PPL DZ 20 63155 110 Africa/Algiers 2012-01-19
-2503156 Bougaa Bougaa Bougaa,Lafayette 36.33293 5.08843 P PPL DZ 12 38597 859 Africa/Algiers 2012-01-19
-2503181 Boufarik Boufarik Boufarik 36.57412 2.91214 P PPL DZ 20 59742 49 Africa/Algiers 2012-01-19
-2503229 Boudouaou Boudouaou Alma,Boudouaou,L'Alma,L’Alma 36.72735 3.40995 P PPL DZ 40 45153 17 Africa/Algiers 2012-01-19
-2503237 Boudjima Boudjima Boudjima 36.80218 4.15187 P PPL DZ 14 20557 295 Africa/Algiers 2012-01-19
-2503468 Boû Arfa Bou Arfa 36.46298 2.81464 P PPL DZ 20 44143 241 Africa/Algiers 2011-03-07
-2503620 Bordj Zemoura Bordj Zemoura Bordj Zemoura,Zemmoura,Zemmours,Zemoura,Zemours 36.27462 4.85668 P PPL DZ 39 19782 1043 Africa/Algiers 2012-01-19
-2503654 Bordj Ghdir Bordj Ghdir Bordj Ghdir,Bordj R'dir,Bordj Redir,Bordj Rhedir,Bordj Rédir,Bordj R’dir 35.90111 4.89806 P PPL DZ 39 34136 1088 Africa/Algiers 2012-01-19
-2503661 Bordj el Kiffan Bordj el Kiffan Bordj El Kifan,Bordj el Kiffan,Fort de l'Eau,Fort de l’Eau 36.74871 3.19248 P PPL DZ 01 123246 11 Africa/Algiers 2012-01-19
-2503701 Bordj Bou Arreridj Bordj Bou Arreridj Bordj Bou Arerridj,Bordj Bou Arreridj,Bordj-Bou-Arreridj,Borj Bu Arrerij,Burdz Bu Urajridz,Burdż Bu Urajridż 36.07322 4.76108 P PPLA DZ 39 0 906 Africa/Algiers 2012-01-19
-2503755 Boghni Boghni Boghari,Boghni,Borhni 36.54222 3.95306 P PPL DZ 14 54666 249 Africa/Algiers 2012-01-19
-2503769 Blida Blida Al-Bulaydah,Blida,Dilida,blydt,Блида,بليدة 36.47004 2.8277 P PPLA DZ 20 0 256 Africa/Algiers 2012-01-19
-2503826 Biskra Biskra Biskra,Briskra,bskrh,bskrt,wlayt bskrt,Бискра,بسكرة,بسکره,ولاية بسكرة 34.85038 5.72805 P PPLA DZ 19 0 115 Africa/Algiers 2012-01-19
-2503847 Birkhadem Birkhadem Birkadem,Birkhadem 36.71499 3.05002 P PPL DZ 01 71722 94 Africa/Algiers 2012-01-19
-2503852 Birine Birine Birin,Birine 35.635 3.225 P PPL DZ 22 51209 736 Africa/Algiers 2012-01-19
-2503874 Bir el Djir Bir el Djir Arcole,Bir el Djir 35.72 -0.545 P PPL DZ 09 68032 162 Africa/Algiers 2012-01-19
-2503878 Bir el Ater Bir el Ater 34.74488 8.06024 P PPL DZ 33 68703 889 Africa/Algiers 2011-04-19
-2504072 Besbes Besbes Besbes,Randon 36.70222 7.84722 P PPL DZ 44 66287 20 Africa/Algiers 2012-01-19
-2504099 Berrouaghia Berrouaghia Berrouaghia,Berrouarhia 36.13516 2.91085 P PPL DZ 06 80573 946 Africa/Algiers 2012-01-19
-2504110 Berriane Berriane Berrian,Berriane 32.82648 3.7669 P PPL DZ 45 44580 536 Africa/Algiers 2012-01-19
-2504136 Berrahal Berrahal Ain Mokra,Aine Mokra,Aïn Mokra,Aïne Mokra,Berrahal 36.83528 7.45333 P PPL DZ 37 19294 30 Africa/Algiers 2012-01-19
-2504385 Bensekrane Bensekrane Ben Sokrane,Bensekrane,Pont de l'Isser,Pont de l’Isser 35.07465 -1.22431 P PPL DZ 15 21283 244 Africa/Algiers 2012-01-19
-2504486 Ben Mehidi Ben Mehidi Ben Mehidi,Morris 36.76967 7.9064 P PPL DZ 44 28398 8 Africa/Algiers 2012-01-19
-2504581 Beni Saf Beni Saf Beni Saf,Beni Sat 35.30099 -1.38226 P PPL DZ 36 46382 35 Africa/Algiers 2012-01-19
-2504616 Beni Mester Beni Mester Beni Mester 34.87045 -1.42319 P PPL DZ 15 19808 683 Africa/Algiers 2012-01-19
-2504622 Beni Mered Beni Mered Beni Mered 36.52389 2.86131 P PPL DZ 20 92749 136 Africa/Algiers 2012-01-19
-2504703 Beni Douala Beni Douala Beni Douala,Beni Doula 36.61954 4.08282 P PPL DZ 14 33611 804 Africa/Algiers 2012-01-19
-2504739 Beni Amrane Beni Amrane Beni Amran,Beni Amrane 36.66774 3.59115 P PPL DZ 40 18414 129 Africa/Algiers 2012-01-19
-2505329 Bejaïa Bejaia Bedzaja,Bejaia,Bejaïa,Bougie,Bugia,Bugía,Béjaïa,bjayt,Беџаја,بجاية 36.75587 5.08433 P PPLA DZ 18 164103 86 Africa/Algiers 2012-01-19
-2505530 Béchar Bechar Bechar,Beshare,Béchar,Colomb-Bechar,Colomb-Béchar,Wilaya de Beshar,wlayt bshar,Бешаре,ولاية بشار 31.61667 -2.21667 P PPLA DZ 38 143382 780 Africa/Algiers 2012-01-19
-2505572 Batna Batna Batna,Batna City,Wilaya de Batna,batnh,batnt,wlayt batnt,Батна,باتنة,باتنه,ولاية باتنة 35.55597 6.17414 P PPL DZ 03 280798 1037 Africa/Algiers 2010-01-29
-2505629 Barika Barika Barika,Барика 35.38901 5.36584 P PPL DZ 03 98846 476 Africa/Algiers 2012-01-19
-2505651 Barbacha Barbacha Barbacha,Souk et Tleta,Souk et Tléta 36.56667 4.96667 P PPL DZ 18 31983 571 Africa/Algiers 2012-01-19
-2505653 Baraki Baraki Baraki 36.66655 3.09606 P PPL DZ 55 105402 22 Africa/Algiers 2012-01-19
-2505854 Bab Ezzouar Bab Ezzouar Bab Ezzouar,Le Retour de la Chasse 36.72615 3.18291 P PPL DZ 01 275630 20 Africa/Algiers 2012-01-19
-2505915 Azzaba Azzaba Azzaba,Jemmapes 36.73944 7.10528 P PPL DZ 31 75317 99 Africa/Algiers 2012-01-19
-2506043 Azazga Azazga Agagza,Agazza,Azazga 36.74472 4.37222 P PPL DZ 14 40623 435 Africa/Algiers 2012-01-19
-2506404 Arris Arris 35.25881 6.34706 P PPL DZ 03 36641 1205 Africa/Algiers 2006-01-27
-2506519 Arhribs Arhribs Aghribs,Arhribs 36.79361 4.31158 P PPL DZ 14 23958 375 Africa/Algiers 2012-01-19
-2506623 Arbatache Arbatache Arbatach,Arbatache,L'Arbatach,L'Arbetache,L’Arbatach,L’Arbetache,Marechal Foch,Maréchal Foch 36.63773 3.37127 P PPL DZ 40 17481 150 Africa/Algiers 2012-01-19
-2506795 Aoulef Aoulef Aoulef,Aoulef el Arab 26.96667 1.08333 P PPL DZ 00 24812 285 Africa/Algiers 2010-08-10
-2506999 Annaba Annaba Anaba,Annaba,Annaba - syaht,Annaba - سياحة,Bona,Bone,Bône,an na ba,Анаба,عنابة,安纳巴 36.9 7.76667 P PPLA DZ 37 206570 5 Africa/Algiers 2012-01-19
-2507155 Ammi Moussa Ammi Moussa Ammi Moussa 35.86781 1.11143 P PPL DZ 51 23001 157 Africa/Algiers 2012-01-19
-2507169 Amizour Amizour Amizour,Colmar,Oued Amizour 36.64022 4.90131 P PPL DZ 18 25825 96 Africa/Algiers 2012-01-19
-2507480 Algiers Algiers Al Jazair,Al-jezair,Algeirsborg,Alger,Algeri,Algeria,Algero,Algier,Algiers,Aljer,Alzhir,Alziir,Alzir,Alzyras,Alĝero,Alžiir,Alžir,Alžyras,Alžír,Argel,Arjel,Caesair,Cäsair,a er ji er,alje,aljiyarsa,aruje,wlayt aljzayr,Αλγέρι,Алжир,אלג'יר,ولاية الجزائر,अल्जीयर्स,አልጀርስ,アルジェ,阿爾及爾,알제 36.7525 3.04197 P PPLC DZ 01 1977663 186 Africa/Algiers 2010-05-28
-2507646 Akbou Akbou Akbou,Metz 36.4575 4.53494 P PPL DZ 18 66654 215 Africa/Algiers 2012-01-19
-2507877 Aïn Touta Ain Touta Ain Touta,Aïn Touta,Mac Mahon 35.37675 5.90001 P PPL DZ 03 72280 925 Africa/Algiers 2012-01-19
-2507901 ’Aïn Temouchent 'Ain Temouchent 'Ain Temouchent,Ain Temonchent,Ain Temoucheni,Ain Temushent,Aine Temouchent,Aïn Témoucheni,Aïne Temouchent,’Aïn Temouchent 35.29749 -1.14037 P PPLA DZ 36 57354 240 Africa/Algiers 2012-01-19
-2507912 Aïn Taya Ain Taya Ain Taya,Aine Taya,Aïn Taya,Aïne Taya 36.79333 3.28694 P PPL DZ 01 21815 26 Africa/Algiers 2012-01-19
-2507926 Aïn Smara Ain Smara Ain Smara,Aine Smara,Aïn Smara,Aïne Smara 36.2674 6.50135 P PPL DZ 04 28968 627 Africa/Algiers 2012-01-19
-2507943 Aïn Sefra Ain Sefra Ain Sefra,Aine Sefra,Aïn Sefra,Aïne Sefra 32.75 -0.58333 P PPL DZ 49 63420 1078 Africa/Algiers 2012-01-19
-2507972 Aïn Oussera Ain Oussera Ain Oussera,Aïn Oussera,El Oussera,Paul Cazelles 35.45139 2.90583 P PPL DZ 22 118687 685 Africa/Algiers 2012-01-19
-2508010 ’Aïn Merane 'Ain Merane 'Ain Merane,Aine Merane,Aïne Merane,Rabelais,’Aïn Merane 36.16277 0.97037 P PPL DZ 51 34413 504 Africa/Algiers 2012-01-19
-2508059 Aïn Kercha Ain Kercha Ain Kercha,Ain Kercka,Aine Kercha,Aïn Kercha,Aïn Kercka,Aïne Kercha 35.92472 6.69528 P PPL DZ 29 32497 819 Africa/Algiers 2012-01-19
-2508102 Aïn Fakroun Ain Fakroun Ain Fakroun,Aine Fakroun,Aïn Fakroun,Aïne Fakroun 35.97108 6.87374 P PPL DZ 29 68433 953 Africa/Algiers 2012-01-19
-2508119 ’Aïn el Turk 'Ain el Turk 'Ain el Turk,Ain-et-Turk,Aine et Turk,Ajn-ehl'-Terk,Aïn-et-Turk,Aïne et Turk,Айн-эль-Терк,’Aïn el Turk 35.74381 -0.7693 P PPL DZ 09 45323 31 Africa/Algiers 2012-01-19
-2508130 ’Aïn el Melh 'Ain el Melh 'Ain el Melh,Ain Melah,Ain Melh,Ain Mellah,Aine Melah,Ajn-ehl'-Mel'kh,Aïn Melah,Aïn Melh,Aïne Melah,Айн-эль-Мельх,’Aïn el Melh 34.84146 4.16383 P PPL DZ 27 39798 930 Africa/Algiers 2012-01-19
-2508152 ’Aïn el Hammam 'Ain el Hammam 'Ain el Hammam,Ain El Hamman,Ain-el-Hamam,Aine el Hammam,Ajn-ehl'-Khammam,Aïn El Hamman,Aïn-el-Hamam,Aïne el Hammam,Michelet,Айн-эль-Хаммам,’Aïn el Hammam 36.56471 4.30619 P PPL DZ 14 28029 841 Africa/Algiers 2012-01-19
-2508157 ‘Aïn el Hadjel `Ain el Hadjel Ain el Hadjel,Aine el Hadjel,Aïne el Hadjel,Selamate,`Ain el Hadjel,‘Aïn el Hadjel 35.67003 3.88153 P PPL DZ 27 42527 544 Africa/Algiers 2012-01-19
-2508162 ’Aïn el Hadjar 'Ain el Hadjar 'Ain el Hadjar,Aine el Hadjar,Aïne el Hadjar,’Aïn el Hadjar 34.75846 0.14528 P PPL DZ 10 12996 1024 Africa/Algiers 2012-01-19
-2508174 Aïn el Bya Ain el Bya 'Ain el Bia,Ain el Bya,Aïn el Bya,Damesme,’Aïn el Bia 35.80389 -0.30178 P PPL DZ 09 37241 63 Africa/Algiers 2012-01-19
-2508180 ’Aïn el Berd 'Ain el Berd 'Ain el Berd,Oued Imbert,’Aïn el Berd 35.36395 -0.51278 P PPL DZ 30 16548 483 Africa/Algiers 2012-01-19
-2508184 ’Aïn el Bell 'Ain el Bell 'Ain el Bell,Ain el Ibel,Ajn-ehl'-Bella,Aïn el Ibel,Fontaine des Chameaux,Айн-эль-Белла,’Aïn el Bell 34.3438 3.22475 P PPL DZ 22 31916 1008 Africa/Algiers 2012-01-19
-2508225 ’Aïn Deheb 'Ain Deheb 'Ain Deheb,El Ousseukh,El Ousseukhr,El Ousseukr,La Fontaine,’Aïn Deheb 34.84218 1.54698 P PPL DZ 13 36146 1081 Africa/Algiers 2012-01-19
-2508228 Aïn Defla Ain Defla Ain Defla,Aïn Defla,Duperre,Duperré 36.26406 1.9679 P PPLA DZ 35 0 264 Africa/Algiers 2012-01-19
-2508262 ’Aïn Boucif 'Ain Boucif 'Ain Boucif,Aine Boucif,Aïne Boucif,Bordj Ain Boucif,Bordj Aïn Boucif,’Aïn Boucif 35.89123 3.1585 P PPL DZ 06 11989 1123 Africa/Algiers 2012-01-19
-2508268 Aïn Bessem Ain Bessem 36.29333 3.67319 P PPL DZ 21 29461 677 Africa/Algiers 2011-03-07
-2508275 ’Aïn Benian 'Ain Benian 'Ain Benian,Ain Berrian,Bou Ismail,Castiglione,Cuyotville,Guyotville,’Aïn Benian 36.80277 2.92185 P PPL DZ 55 31102 30 Africa/Algiers 2012-01-19
-2508287 Aïn Beïda Ain Beida Ain Beida,Aine Beida,Aïn Beïda,Aïne Beïda 35.79639 7.39278 P PPL DZ 29 105765 1008 Africa/Algiers 2012-01-19
-2508297 ’Aïn Arnat 'Ain Arnat 'Ain Arnat,Aine Arnat,Arnat,Aïne Arnat,’Aïn Arnat 36.18683 5.31347 P PPL DZ 12 35088 1022 Africa/Algiers 2012-01-19
-2508309 ’Aïn Abid 'Ain Abid 'Ain Abid,Aine Abid,Aïne Abid,’Aïn Abid 36.23194 6.94333 P PPL DZ 04 29486 868 Africa/Algiers 2012-01-19
-2508737 Aflou Aflou Aflou,Aflu 34.1128 2.10228 P PPL DZ 25 84683 1392 Africa/Algiers 2012-01-19
-2509031 Abou el Hassan Abou el Hassan Abou el Hassan,Abou el Hassen,Beni Madoun,Bordj Abou el Hassen,Cavaignac 36.41657 1.19616 P PPL DZ 41 24022 189 Africa/Algiers 2012-01-19
-6698360 BABOR - VILLE BABOR - VILLE 36.48994 5.5393 P PPL DZ 12 33000 1000 944 Africa/Algiers 2008-12-12
-7115828 Smala Smala 35.71652 0.75437 P PPL DZ 51 4000 220 323 Africa/Algiers 2009-12-30
-7838650 Djebilet Rosfa Djebilet Rosfa 34.86375 0.83496 P PPLL DZ 13 4930 905 Africa/Algiers 2011-05-21
-3649914 Zaruma Zaruma -3.68333 -79.61667 P PPL EC 08 12505 1279 America/Guayaquil 2006-01-17
-3649959 Zamora Zamora -4.06917 -78.95667 P PPL EC 20 15276 941 America/Guayaquil 2006-01-17
-3650053 Yantzaza Yantzaza -3.82778 -78.75944 P PPL EC 20 9970 813 America/Guayaquil 2006-01-17
-3650121 Yaguachi Yaguachi Yaguachi,Yaguachi Nuevo -2.11667 -79.68333 P PPL EC 10 27947 5 America/Guayaquil 2012-01-18
-3650186 Vinces Vinces Vinces -1.55 -79.73333 P PPL EC 13 32497 16 America/Guayaquil 2012-01-18
-3650267 Ventanas Ventanas Ventanas -1.45 -79.46667 P PPL EC 13 46708 24 America/Guayaquil 2012-01-18
-3650273 Velasco Ibarra Velasco Ibarra El Empalme,Empalme,Velasco Ibarra -1.05 -79.61667 P PPL EC 10 48754 64 America/Guayaquil 2012-01-18
-3650312 Valdez Valdez Limones,Valdes,Valdez,Valdés 1.24917 -78.98306 P PPL EC 09 11441 7 America/Guayaquil 2012-01-18
-3650472 Tulcán Tulcan Tulcan,Tulcán 0.8 -77.71667 P PPLA EC 05 0 2916 America/Guayaquil 2012-01-14
-3650554 Tosagua Tosagua Tosagua -0.78333 -80.25 P PPL EC 14 14680 30 America/Guayaquil 2012-01-18
-3650721 Tena Tena Napo,San Juan de Tena,Tena -0.98333 -77.81667 P PPL EC 23 17172 521 America/Guayaquil 2012-01-18
-3650956 Sucúa Sucua Sucua,Sucúa -2.46667 -78.16667 P PPL EC 15 7413 819 America/Guayaquil 2012-01-18
-3650960 Sucre Sucre Sucre -1.26667 -80.43333 P PPL EC 14 15286 242 America/Guayaquil 2012-01-18
-3651251 Saquisilí Saquisili Saquisili,Saquisilí -0.83333 -78.66667 P PPL EC 07 3778 2926 America/Guayaquil 2012-01-18
-3651297 Santo Domingo de los Colorados Santo Domingo de los Colorados Santo Domingo,Santo Domingo de los Colorados,Santo-Domingo-de-los-Kolorados,Санто-Доминго-де-лос-Колорадос -0.25 -79.15 P PPL EC 18 200421 577 America/Guayaquil 2012-01-18
-3651356 Santa Rosa Santa Rosa Santa Rosa -3.45 -79.96667 P PPL EC 08 41816 6 America/Guayaquil 2012-02-02
-3651411 Santa Lucía Santa Lucia -2.18333 -80 P PPL EC 10 12523 15 America/Guayaquil 2006-01-17
-3651438 Santa Elena Santa Elena -2.23333 -80.85 P PPL EC 25 3651436 42214 41 America/Guayaquil 2009-12-14
-3651495 Santa Ana Santa Ana -1.21667 -80.38333 P PPL EC 14 12833 126 America/Guayaquil 2006-01-17
-3651613 San Miguel de Salcedo San Miguel de Salcedo Salcedo,San Miguel,San Miguel de Salcedo -1.03333 -78.56667 P PPL EC 07 10838 2697 America/Guayaquil 2012-01-18
-3651639 San Miguel San Miguel San Miguel,San Miguel de Chimbo -1.7 -79.03333 P PPL EC 03 12575 2417 America/Guayaquil 2012-01-18
-3651694 San Lorenzo de Esmeraldas San Lorenzo de Esmeraldas Puerto San Lorenzo,San Lorenzo,San Lorenzo de Esmeraldas 1.28833 -78.83694 P PPL EC 09 20209 12 America/Guayaquil 2012-01-18
-3651857 Sangolquí Sangolqui -0.33405 -78.45217 P PPL EC 18 5114 2513 America/Guayaquil 2008-01-21
-3651868 San Gabriel San Gabriel Montufar,Montúfar,San Gabriel 0.6 -77.81667 P PPL EC 05 15112 2874 America/Guayaquil 2012-01-18
-3651949 San Cristóbal San Cristobal -0.9045 -89.61744 P PPL EC 01 6164 14 Pacific/Galapagos 2006-01-17
-3652065 Samborondón Samborondon Samborondon,Samborondón,Samrondon,Samrondón,Zamborondon,Zamborondón -1.95 -79.73333 P PPL EC 10 24118 4 America/Guayaquil 2012-01-18
-3652100 Salinas Salinas Salinas,Салинас -2.21667 -80.96667 P PPL EC 10 43862 7 America/Guayaquil 2012-01-18
-3652257 Rosa Zárate Rosa Zarate Quininde,Rosa Zarate,Rosa Zárate 0.33333 -79.46667 P PPL EC 09 42121 81 America/Guayaquil 2012-01-18
-3652315 Rocafuerte Rocafuerte Rocafuerte -0.91667 -80.43333 P PPL EC 14 10274 21 America/Guayaquil 2012-01-18
-3652350 Riobamba Riobamba Riobamba -1.66667 -78.63333 P PPLA EC 06 124478 2756 America/Guayaquil 2012-01-14
-3652462 Quito Quito Kita,Kitas,Kito,Kitu,Quito,San Francisco de Quito,ji duo,ki to,kito,kytw,qytw,Κίτο,Кито,Кіта,Кіто,Կիտո,קיטו,كيتو,กีโต,ኪቶ,キト,基多,키토 -0.22985 -78.52495 P PPLC EC 18 1399814 2854 America/Guayaquil 2010-05-30
-3652567 Quevedo Quevedo Quevedo -1.03333 -79.45 P PPL EC 13 119436 49 America/Guayaquil 2012-02-02
-3652584 Puyo Puyo El Puyo,Pujo,Puyo,Пуйо -1.46667 -77.98333 P PPLA EC 17 24881 954 America/Guayaquil 2012-01-14
-3652684 Pujilí Pujili Pajili,Pujili,Pujilí -0.95 -78.68333 P PPL EC 07 16168 2927 America/Guayaquil 2012-01-18
-3652694 Puerto Villamil Puerto Villamil Puerto Villamil,Villamil -0.95542 -90.96654 P PPL EC 01 2200 8 Pacific/Galapagos 2011-02-27
-3652743 Puerto Francisco de Orellana Puerto Francisco de Orellana Coca,Francisco de Orellana,La Coca,Puerto Francisco de Orellana -0.46667 -76.96667 P PPLA EC EC 24 0 245 America/Guayaquil 2012-01-14
-3652757 Puerto Bolívar Puerto Bolivar Ponto Bolivar,Puerto Bolivar,Puerto Bolívar,Пуерто Боливар -3.26667 -79.98333 P PPL EC EC 08 8300 9 America/Guayaquil 2012-01-18
-3652758 Puerto Baquerizo Moreno Puerto Baquerizo Moreno Baquerizo Moreno,Puerto Baquerizo,Puerto Baquerizo Moreno,Puerto Chico -0.9 -89.6 P PPLA EC 01 4214 63 Pacific/Galapagos 2012-01-14
-3652764 Puerto Ayora Puerto Ayora Puerto Ayora -0.73931 -90.35176 P PPL EC 01 8996 56 Pacific/Galapagos 2012-01-18
-3652881 Propicia Propicia 0.93333 -79.68333 P PPL EC 09 95630 24 America/Guayaquil 2006-01-17
-3652941 Portoviejo Portoviejo Portov'ekho,Portoviejo,Портовьехо -1.05 -80.45 P PPLA EC 14 170326 42 America/Guayaquil 2012-01-14
-3652943 Portovelo Portovelo Portobelo,Portovelo,Portoviejo -3.71667 -79.61667 P PPL EC 08 9708 634 America/Guayaquil 2012-01-18
-3653015 Playas Playas General Villamil,Playas,Villamil -2.63333 -80.38333 P PPL EC 10 30564 8 America/Guayaquil 2012-01-18
-3653130 Piñas Pinas Pinas,Piñas -3.66667 -79.65 P PPL EC 08 16981 991 America/Guayaquil 2012-01-18
-3653146 Pimampiro Pimampiro Pimampiro,Pimanpiro 0.4 -77.96667 P PPL EC 11 7408 1965 America/Guayaquil 2012-01-18
-3653159 Píllaro Pillaro Pillaro,Píllaro -1.16667 -78.53333 P PPL EC 19 7462 2855 America/Guayaquil 2012-01-18
-3653287 Pelileo Pelileo -1.31667 -78.53333 P PPL EC 19 16572 2587 America/Guayaquil 2006-01-17
-3653295 Pedro Carbo Pedro Carbo Pedro Carbo -1.83333 -80.23333 P PPL EC 10 23372 52 America/Guayaquil 2012-02-02
-3653307 Pedernales Pedernales 0.08333 -80.05 P PPL EC 14 5983 21 America/Guayaquil 2006-01-17
-3653403 Pasaje Pasaje Pasaje -3.33333 -79.81667 P PPL EC 08 44860 26 America/Guayaquil 2012-01-18
-3653523 Palora Palora Metzera,Palora -1.7 -77.93333 P PPL EC 15 6472 880 America/Guayaquil 2012-01-18
-3653581 Palestina Palestina -1.93333 -79.73333 P PPL EC 10 9364 6 America/Guayaquil 2006-01-17
-3653587 Palenque Palenque -1.45 -79.73333 P PPL EC 13 9083 24 America/Guayaquil 2006-01-17
-3653609 Paján Pajan Pajan,Paján -1.56667 -80.41667 P PPL EC 14 9183 111 America/Guayaquil 2012-01-18
-3653693 Otavalo Otavalo Otavalo,Otovalo,Отавало 0.23333 -78.26667 P PPL EC 11 32330 2537 America/Guayaquil 2012-01-18
-3653873 Naranjito Naranjito -2.21667 -79.48333 P PPL EC 10 34206 33 America/Guayaquil 2006-01-17
-3653882 Naranjal Naranjal -2.66667 -79.61667 P PPL EC 10 32045 27 America/Guayaquil 2006-01-17
-3653967 Muisne Muisne Muisne 0.6 -80.03333 P PPL EC 09 13393 1 America/Guayaquil 2012-02-02
-3654055 Montecristi Montecristi -1.05 -80.66667 P PPL EC 14 18351 275 America/Guayaquil 2006-01-17
-3654064 Montalvo Montalvo -1.8 -79.33333 P PPL EC 13 15547 19 America/Guayaquil 2006-01-17
-3654410 Manta Manta Manta,Manta Ecuador,Puerto de Manta,Манта -0.95 -80.73333 P PPL EC 14 183166 42 America/Guayaquil 2012-01-18
-3654533 Machala Machala Machala,machala,Мачала,ماچالا -3.26667 -79.96667 P PPLA EC 08 198123 4 America/Guayaquil 2012-01-14
-3654536 Machachi Machachi Ciudad de Machachi,Machache,Machachi -0.5 -78.56667 P PPL EC 18 25742 2907 America/Guayaquil 2012-01-18
-3654541 Macas Macas Macas -2.31667 -78.11667 P PPLA EC 15 23687 974 America/Guayaquil 2012-01-14
-3654545 Macará Macara Macara,Macará -4.38333 -79.95 P PPL EC 12 13035 448 America/Guayaquil 2012-01-18
-3654650 Lomas de Sargentillo Lomas de Sargentillo -1.88333 -80.08333 P PPL EC 10 7542 21 America/Guayaquil 2006-01-17
-3654667 Loja Loja Loja,Lokha,Лоха -3.99313 -79.20422 P PPL EC 12 117796 2060 America/Guayaquil 2010-01-29
-3654853 La Troncal La Troncal -2.4 -79.33333 P PPL EC 04 36353 64 America/Guayaquil 2006-01-17
-3654870 Latacunga Latacunga Latacunga -0.93333 -78.61667 P PPLA EC 07 51717 2773 America/Guayaquil 2012-02-19
-3655117 La Maná La Mana -0.93333 -79.21667 P PPL EC 07 16450 232 America/Guayaquil 2006-01-17
-3655131 La Libertad La Libertad La Libertad -2.23333 -80.9 P PPL EC 10 75881 34 America/Guayaquil 2012-01-18
-3655185 Nueva Loja Nueva Loja Lago Agrio,Nuehva-Lokha,Nueva Loja,Нуэва-Лоха 0.08472 -76.88278 P PPLA EC 22 24211 299 America/Guayaquil 2012-01-14
-3655385 Junín Junin -0.93333 -80.21667 P PPL EC 14 9128 76 America/Guayaquil 2006-01-17
-3655446 Jipijapa Jipijapa -1.33333 -80.58333 P PPL EC 14 35901 392 America/Guayaquil 2006-01-17
-3655673 Ibarra Ibarra Ibarra,Ибарра 0.35 -78.11667 P PPL EC 11 108666 2214 America/Guayaquil 2012-01-18
-3655720 Huaquillas Huaquillas -3.48333 -80.23333 P PPL EC 08 39757 8 America/Guayaquil 2006-01-17
-3657509 Guayaquil Guayaquil Gouagiakil,Guajakil',Guayaquil,Gvajakil,Gvajakila,Gvajakilis,Wayakil,ghwayakyl,guayakiru,Γουαγιακίλ,Гвајакил,Гуаякиль,Ґуаякіль,غواياكيل,グアヤキル -2.16667 -79.9 P PPLA EC 10 1952029 6 America/Guayaquil 2012-01-14
-3657571 Guaranda Guaranda Guaranda,Гуаранда -1.6 -79 P PPLA EC 03 22199 2591 America/Guayaquil 2012-01-14
-3657594 Guano Guano -1.58333 -78.63333 P PPL EC 06 12659 2979 America/Guayaquil 2006-01-17
-3657661 Gualaquiza Gualaquiza Gualaquiza,Gualiquiza,Santiago -3.4 -78.55 P PPL EC 15 4611 1261 America/Guayaquil 2012-01-18
-3657670 Gualaceo Gualaceo Gualaceo -2.9 -78.78333 P PPL EC 02 17122 2286 America/Guayaquil 2012-01-18
-3658053 El Triunfo El Triunfo -1.93333 -79.96667 P PPL EC 10 32282 6 America/Guayaquil 2006-01-17
-3658192 Durán Duran Alfaro,Duran,Durán,Eloy alfaro -2.2 -79.83333 P PPL EC 10 167784 3 America/Guayaquil 2012-01-18
-3658379 El Ángel El Angel El Angel,El Ángel,Espejo 0.61667 -77.93333 P PPL EC 05 3983 3190 America/Guayaquil 2012-01-18
-3658666 Cuenca Cuenca Cuenca,Kuehnka,Куэнка -2.88333 -78.98333 P PPL EC 02 276964 2519 America/Guayaquil 2012-01-18
-3658781 Cotacachi Cotacachi Cotacachi 0.3 -78.26667 P PPL EC 11 8238 2448 America/Guayaquil 2012-01-18
-3658822 Coronel Marcelino Maridueña Coronel Marcelino Mariduena Coronel Marcelino Mariduena,Coronel Marcelino Maridueña,Coronel Mariduena,Coronel Maridueña,Mariduena,Maridueña -2.2 -79.41667 P PPL EC 10 7303 43 America/Guayaquil 2012-01-18
-3658948 Colimes Colimes -1.55 -80.01667 P PPL EC 10 9384 20 America/Guayaquil 2006-01-17
-3659139 Chone Chone Chone -0.68333 -80.1 P PPL EC 14 44751 27 America/Guayaquil 2012-01-18
-3659544 Celica Celica -4.11667 -79.95 P PPL EC 12 5499 1675 America/Guayaquil 2006-01-17
-3659578 Cayambe Cayambe Cayambe,Kajambe,Каямбе 0.05 -78.13333 P PPL EC 18 26582 2896 America/Guayaquil 2012-01-18
-3659592 Catarama Catarama Catarama,Urdaneta -1.58333 -79.46667 P PPL EC 13 9723 15 America/Guayaquil 2012-01-18
-3659599 Catamayo Catamayo Catamayo,La Toma -3.98333 -79.35 P PPL EC 12 18565 1373 America/Guayaquil 2012-01-18
-3659602 Catacocha Catacocha Catacocha -4.06667 -79.63333 P PPL EC 12 10872 1909 America/Guayaquil 2012-01-18
-3659711 Cariamanga Cariamanga Calvas,Cariamanga -4.33333 -79.55 P PPL EC 12 16862 2096 America/Guayaquil 2012-01-18
-3659852 Cañar Canar -2.55 -78.93333 P PPL EC 04 9900 3052 America/Guayaquil 2006-01-17
-3659926 Calceta Calceta Bolivar,Bolívar,Calceta -0.85 -80.16667 P PPL EC 14 17286 29 America/Guayaquil 2012-01-18
-3660152 Boca Suno Boca Suno Boca Suno,Suno -0.71667 -77.13333 P PPL EC 24 20313 289 America/Guayaquil 2012-01-18
-3660346 Baños Banos Banos,Baños -1.4 -78.41667 P PPL EC 19 9501 1973 America/Guayaquil 2012-01-18
-3660361 Balzar Balzar -1.36667 -79.9 P PPL EC 10 40115 38 America/Guayaquil 2006-01-17
-3660387 Baláo Balao Balao,Baláo -2.91667 -79.81667 P PPL EC 10 12205 4 America/Guayaquil 2012-01-18
-3660401 Bahía de Caráquez Bahia de Caraquez Bahia,Bahia de Caraques,Bahia de Caraquez,Bahia de Caráques,Bahía,Bahía de Caráquez,Caracas,Sucre -0.6 -80.41667 P PPL EC 14 37056 -9999 America/Guayaquil 2012-01-18
-3660418 Babahoyo Babahoyo Babahoya,Babahoyo -1.81667 -79.51667 P PPLA EC 13 76279 6 America/Guayaquil 2012-01-14
-3660434 Azogues Azogues Azogues,Azoguez -2.73333 -78.83333 P PPLA EC 04 34877 2698 America/Guayaquil 2012-01-14
-3660478 Atuntaqui Atuntaqui 0.33333 -78.21667 P PPL EC 11 17456 2401 America/Guayaquil 2006-01-17
-3660573 Archidona Archidona -0.91667 -77.8 P PPL EC 23 7309 584 America/Guayaquil 2006-01-17
-3660689 Ambato Ambato Ambato,San Juan de Ambato,Амбато -1.24908 -78.61675 P PPL EC 19 154369 2597 America/Guayaquil 2010-01-29
-3660773 Alfredo Baquerizo Moreno Alfredo Baquerizo Moreno Alfredo Baquerizo Moreno,Jujan,Juján -1.91667 -79.51667 P PPL EC 10 12617 9 America/Guayaquil 2012-01-18
-3660798 Alausí Alausi Alausi,Alausí -2.2 -78.83333 P PPL EC 06 14294 2774 America/Guayaquil 2012-01-18
-587440 Vändra Vandra Alt-Fennern,Fennern,Staryy Fennern',Staryy Fennern’,VJANDRA,Vaendra,Vana Vendre,Vana-Vandra,Vana-Vendra,Vana-Vyandra,Vana-Vändra,Vandra,Vendra,Vyandra,Vändra,Vėndra,ВЯНДРА 58.64806 25.03611 P PPL EE 11 0931 2544 42 Europe/Tallinn 2012-01-17
-587450 Võru Voru VYRU,Verava,Veri,Verro,Veru,Voru,Voru vald,Vyru,Võru,Võru vald,Werro,Woru,Wöru,ВЫРУ 57.83389 27.01944 P PPLA EE 21 0919 14631 76 Europe/Tallinn 2012-01-17
-587491 Voka Voka Voka 59.39972 27.58167 P PPL EE 03 0802 1046 37 Europe/Tallinn 2012-01-17
-587517 Võhma Vohma Myasto Vykhma,VYKHMA,Vechma,Vekhma,Vohma,Võhma,Wochma,Wohma,Wöchma,Wöhma,ВЫХМА 58.62833 25.54833 P PPL EE 20 0912 1551 57 Europe/Tallinn 2012-01-17
-587571 Vinni Vinni Myza Vinni,Vinni,Vinni Asundus 59.29583 26.43222 P PPL EE 08 0900 1032 95 Europe/Tallinn 2012-01-17
-587577 Viljandi Viljandi Felin,Fellin,VIL'JANDI,Vil'jandi,Vil'yandi,Vilande,Viljandi,Viljandis,Vil’yandi,Vylande,Vylandė,Vīlande,Wiljandi,ВИЛЬЯНДИ,Вильянди,ויליאנדי 58.36389 25.59 P PPLA EE 20 0897 20309 82 Europe/Tallinn 2012-01-17
-587620 Viiratsi Viiratsi Myza Viratsi,Viiratsi 58.36 25.63722 P PPL EE 20 0892 1338 65 Europe/Tallinn 2012-01-17
-587629 Viimsi Viimsi Myza Viymsi,Viimsi 59.49667 24.84222 P PPL EE 01 0890 1740 36 Europe/Tallinn 2012-01-17
-587826 Vana-Antsla Vana-Antsla 57.86611 26.53222 P PPL EE 21 0143 1468 86 Europe/Tallinn 2010-10-29
-587876 Valga Valga VALGA,VALKA,Valga,Valk,Valka,Walga,Walk,wlgh,ВАЛГА,ВАЛКА,Валга,ולגה 57.77781 26.0473 P PPLA EE 19 0854 13945 64 Europe/Tallinn 2010-10-29
-587923 Väike-Maarja Vaike-Maarja Klein-Marien,Klein-Sankt-Marien,Kleyn Mariyen,Sankt-Marien,Vaeike-Maarja,Vaike-Maaja,Vaike-Maarja,Vjajke-Maar'ja,Väike-Maaja,Väike-Maarja,Вяйке-Маарья 59.12639 26.25 P PPL EE 08 0926 2155 121 Europe/Tallinn 2012-01-17
-587938 Vaida Vaida Vaida,Vajda,Vayda,Вайда 59.29056 24.96583 P PPL EE 01 0653 1016 46 Europe/Tallinn 2012-01-17
-588015 Uuemõisa Uuemoisa Myza Uemyyza,Uuemoisa,Uuemõisa 58.93944 23.58944 P PPL EE 07 0674 1068 8 Europe/Tallinn 2012-01-17
-588092 Ülenurme Ulenurme Ilenurme,Julenurme,UElenurme,Ülenurme,Юленурме 58.3162 26.72517 P PPL EE 18 0949 1047 52 Europe/Tallinn 2010-10-29
-588153 Türi Tueri TJURI,Thurgel,Tiri,Tueri,Turgel,Turi,Tyuri,Türi,ТЮРИ 58.80861 25.4325 P PPL EE 04 0835 6138 67 Europe/Tallinn 2012-03-16
-588157 Turba Turba Turba,Турба 59.08306 24.225 P PPL EE 01 0518 1096 51 Europe/Tallinn 2012-01-17
-588204 Tõrva Torva Helmut,Khel'met,Khel’met,TYRVA,Terva,Torrwa,Torva,Torwa,Tyrva,Tõrva,Törrwa,Törwa,ТЫРВА 58.00278 25.935 P PPL EE 19 0823 3112 63 Europe/Tallinn 2012-01-17
-588223 Tootsi Tootsi TOOTSI,Tootsi,Totsi,ТООТСИ 58.57806 24.7925 P PPL EE 11 0805 1010 33 Europe/Tallinn 2012-01-17
-588264 Toila Toila Toila,Tojla,Toyla,Тойла 59.42361 27.5025 P PPL EE 03 0802 2304 48 Europe/Tallinn 2012-01-17
-588335 Tartu Tartu Derpt,Dorpat,TARTU,Tarbatum,Tartto,Tartu,Terbata,Tērbata,Yur'yev,Yurev,taleutu,taruto~u,trtw,ТАРТУ,Тарту,טרטו,ტარტუ,タルトゥ,타르투 58.38062 26.72509 P PPLA EE 18 0795 101092 39 Europe/Tallinn 2012-01-18
-588348 Tapa Tapa TAPA,Tapa,Taps,ТАПА 59.26056 25.95861 P PPL EE 08 0790 6551 103 Europe/Tallinn 2012-01-17
-588365 Tamsalu Tamsalu TAMSALU,Tamsal,Tamsalu,ТАМСАЛУ 59.15861 26.11528 P PPL EE 08 0786 2594 126 Europe/Tallinn 2012-01-17
-588409 Tallinn Tallinn Castrum Danorum,Kallinn,Kolyvan,QUF,Raeaeveli,Reval,Revel',Rääveli,Talin,Talin - Tallinn,Talinas,Talino,Tallin,Tallina,Tallinn,Tallinna,Talín - Tallinn,Tàllin,ta lin,tallin,talyn,tarin,thallin n,Ταλίν,Ταλιν,Ταλλίν,Талин,Таллин,Таллін,Талін,Տալլին,טאלין,تالين,ทาลลินน์,ტალინი,ታሊን,タリン,塔林,탈린 59.43696 24.75353 P PPLC EE 01 0784 394024 12 Europe/Tallinn 2012-01-18
-588454 Tabasalu Tabasalu Tabasalu,Tabasalyu 59.43028 24.53306 P PPL EE 01 0198 2166 34 Europe/Tallinn 2012-01-17
-588532 Suure-Jaani Suure-Jaani Gros Iogannis,Gross-Sankt-Johannis,Sur-Yani,Suure-Jaani,Suure-Yani,Сууре-Яани 58.53611 25.47056 P PPL EE 20 0758 1254 78 Europe/Tallinn 2012-01-17
-588673 Sindi Sindi SINDI,Sindi,Tsintengof,Zinten,Zintenhof,СИНДИ 58.40056 24.6675 P PPL EE 11 0741 4036 14 Europe/Tallinn 2012-01-17
-588686 Sillamäe Sillamae SILLAMJAEH,Silameje,Silamejė,Silamiaje,Silamiajė,Sillamae,Sillamaee,Sillamagi,Sillame,Sillamyae,Sillamäe,Sillamē,Suvilad,sillamjae,sillamjaeh,СИЛЛАМЯЭ,Силламяе,Силламяэ 59.39972 27.75472 P PPL EE 03 0735 16672 19 Europe/Tallinn 2012-01-17
-588774 Sauga Sauga Myza Sauga,Sauga 58.4272 24.49496 P PPL EE 11 0730 1062 16 Europe/Tallinn 2010-12-18
-588780 Saue Saue Myza Saue,SAUEH,Saue,САУЭ 59.32028 24.5525 P PPL EE 01 0728 5022 43 Europe/Tallinn 2012-01-17
-588792 Särevere Sarevere Myza Syarevere,Saerevere,Sarevere,Sarevere Asundus,Sjarevere,Särevere,Särevere Asundus,Сяревере 58.79 25.42806 P PPL EE 04 0835 1035 62 Europe/Tallinn 2012-01-17
-588831 Saku Saku Saku,Саку 59.30222 24.65778 P PPL EE 01 0718 4548 45 Europe/Tallinn 2012-01-17
-588922 Rummu Rummu 59.53528 24.79972 P PPLX EE 01 0890 3488 9 Europe/Tallinn 2010-10-29
-589024 Riisipere Riisipere Riesenberg,Riisipere,Rijzipere,Risipere,Riyzipere,Rizipere,Rozenberg',Rozenberg’,Рийзипере 59.11417 24.31056 P PPL EE 01 0518 1058 54 Europe/Tallinn 2012-01-17
-589116 Rapla Rapla Odenkam,RAPLA,Rapla,Rapla-kyulya,Raplakula,Raplaküla,Rappel,РАПЛА 59.00722 24.79278 P PPLA EE 13 0669 5684 67 Europe/Tallinn 2012-01-17
-589117 Räpina Rapina Raepina,Rapin,Rapina,Rapino,Rjapina,Ryapina,Räpina,Ряпина 58.09806 27.46361 P PPL EE 12 0707 2901 43 Europe/Tallinn 2012-01-17
-589165 Rakvere Rakvere RAKVERE,Rakvere,Rakvere_vald,Rakwere,Vezenberg,Wesenberg,РАКВЕРЕ 59.34639 26.35583 P PPLA EE 08 0663 16736 84 Europe/Tallinn 2012-01-17
-589166 Rakke Rakke Racke,Rake,Rakke,Ракке 58.98167 26.25444 P PPL EE 08 0660 1045 104 Europe/Tallinn 2012-01-17
-589223 Raasiku Raasiku Harju Jani,Harju Jãni,Harju-Jaani,Raasiku,Raaziku,Rasik,Rasiku,Razik',Razik’,Sankt-Johannis,Раазику 59.36639 25.18306 P PPL EE 01 0651 1317 48 Europe/Tallinn 2012-01-17
-589253 Püssi Pussi Neu-Isenhof,PJUSSI,Pisi,Piusis,Pjujssi,Puessi,Pussi,Pyussi,Püssi,ПЮССИ,Пюйсси 59.36 27.04972 P PPL EE 03 0645 1840 47 Europe/Tallinn 2012-01-17
-589307 Puhja Puhja Kawelecht,Puhja,Pukh"ja,Pukh'ya,Pukhiya,Pukh’ya,Пухъя 58.34194 26.31472 P PPL EE 18 0605 1072 59 Europe/Tallinn 2012-01-17
-589375 Põlva Polva PYLVA,Pel've,Pelva,Pel’ve,Polva,Polva Alevik,Polwa,Polwe,Pyl'va,Pyl’va,Põlva,Põlva Alevik,Pölwa,Pölwe,ПЫЛВА 58.06028 27.06944 P PPLA EE 12 0620 6504 63 Europe/Tallinn 2012-01-17
-589379 Põltsamaa Poltsamaa Ober"-Palen",Oberpahlen,Ober”-Palen”,PYLTSAMAA,Peltsama,Peltsamā,Poltsamaa,Poltsamaa_vald,Pyltsama,Pyltsamaa,Põltsamaa,Põltsamaa_vald,ПЫЛТСАМАА 58.6525 25.97056 P PPL EE 05 0617 4764 69 Europe/Tallinn 2012-01-17
-589578 Pärnu-Jaagupi Parnu-Jaagupi Jaagupi,Jakobi,Paernu-Jaagupi,Parnu-Jaagupi,Parnu-Jakobi,Pjarnu-Jaagupi,Pyarnu-Yaagupi,Pyarnu-Yagupi,Pärnu-Jaagupi,Pärnu-Jakobi,Sankt-Jakobi,Sankt-Jakoby,Svyatogo Iakova,Yakobi,Пярну-Яагупи 58.61052 24.50689 P PPL EE 11 0188 1341 31 Europe/Tallinn 2010-12-18
-589580 Pärnu Parnu PJARNU,Paernu,Parnawa,Parnu,Pernau,Pernava,Pernavia,Pernov,Piarnu,Pjarnu,Pyaonu,Pyarnu,Pärnu,Pērnava,ПЯРНУ,Пярну,პიარნუ 58.38588 24.49711 P PPLA EE 11 0625 44192 6 Europe/Tallinn 2010-12-18
-589663 Paldiski Paldiski Baltiiskii Port,Baltijas Ports,Baltischport,Baltiski,Baltiysk Port,Baltiyskiy Port,PALDISKI,Paldiski,Paldiskis,Paltiski,Port Baltic,Port Baltique,Ragervik,Rogervik,Rogowik,Rågervik,ПАЛДИСКИ,Палдиски 59.35667 24.05306 P PPL EE 01 0580 4202 22 Europe/Tallinn 2012-01-17
-589703 Paikuse Paikuse 58.37917 24.63444 P PPL EE 11 0568 1996 11 Europe/Tallinn 2010-10-29
-589709 Paide Paide PAJDE,Paide,Paide_vald,Payde,Veisenshtein,Veisenshteyn,Veysenshteyn,Weissenstein,ПАЙДЕ 58.88556 25.55722 P PPLA EE 04 0566 9735 66 Europe/Tallinn 2012-01-17
-589796 Orissaare Orissaare Orisaara,Orisaare,Orisar,Orisare,Orissaar,Orissare,Orrisar,Orrissaar,Orrissar 58.55917 23.08262 P PPL EE 14 0550 1065 7 Europe/Tallinn 2010-10-29
-589922 Karksi-Nuia Karksi-Nuia KARKSI-NUAJ,Karksi,Karksi-Nuia,Karksi-Nuya,Karkus,Nuia,Nuiya,Nuya,Nuyya,КАРКСИ-НУАЙ,Каркси 58.10333 25.56278 P PPL EE 20 0600 1986 72 Europe/Tallinn 2012-01-17
-589933 Nõo Noo Neo,Niggen',Niggen’,Noo,Nueggen,Nuggen,Nyo,Nõo,Nüggen,Ныо 58.27556 26.5375 P PPL EE 18 0528 1476 61 Europe/Tallinn 2012-01-17
-590030 Narva-Jõesuu Narva-Joesuu Gungerburg,Hungerburg,NARVA-JYEHSUU,Naroova-Joesuu,Naroova-Jõesuu,Narva Ioesu,Narva Jeesu,Narva Jeesū,Narva Joesu,Narva-Iyesu,Narva-Iyesuu,Narva-Jesu,Narva-Joesuu,Narva-Jyehsuu,Narva-Jyesuu,Narva-Jõesuu,Narva-Jēsū,Narva-Yodsu,Narva-Yyesu,Narva-Yyesuu,Narwa Joesuu,Narwa Jõesuu,НАРВА-ЙЫЭСУУ,Нарва-Йыесуу,Нарва-Йыэсуу 59.45889 28.04083 P PPL EE 03 0513 2802 14 Europe/Tallinn 2012-01-17
-590031 Narva Narva NARVA,Narva,Narwa,na er wa,narva,НАРВА,Нарва,ნარვა,纳尔瓦 59.37722 28.19028 P PPL EE 03 0511 66980 30 Europe/Tallinn 2012-01-17
-590067 Mustvee Mustvee Chernii,Chernoe,Chernyy,MUSTVEEH,Mustve,Mustvee,Mustwee,Tschorna,МУСТВЕЭ 58.84861 26.93972 P PPL EE 05 0485 1662 39 Europe/Tallinn 2012-01-17
-590186 Mõisaküla Moisakula MYJZAKJULA,Moisakila,Moisakuela,Moisakula,Moisakull,Moisaküll,Moisekuell,Moisekull,Moiseküll,Moizekyul',Moizekyul’,Myysakyula,Myyzakyuilya,Myyzakyula,Mõisaküla,МЫЙЗАКЮЛА 58.09222 25.18639 P PPL EE 20 0490 1090 77 Europe/Tallinn 2012-01-17
-590322 Märjamaa Marjamaa MJAR'JAMAA,Maerjamaa,Mar'yama,Marjamaa,Mar’yama,Mer'yama,Merjama,Merjamā,Mer’yama,Myar'yama,Myar'yamaa,Myar’yama,Myar’yamaa,Märjamaa,МЯРЬЯМАА 58.90389 24.43056 P PPL EE 13 0504 3063 46 Europe/Tallinn 2012-01-17
-590447 Maardu Maardu Maardu,Mardu,Mārdu,Маарду 59.47667 25.025 P PPL EE 01 0446 16630 43 Europe/Tallinn 2012-01-17
-590537 Loo Loo 59.43639 24.94833 P PPL EE 01 0245 2175 38 Europe/Tallinn 2010-10-29
-590552 Loksa Loksa LOKSA,Loksa,Loxa,ЛОКСА 59.57639 25.72139 P PPL EE 01 0424 3463 11 Europe/Tallinn 2012-01-17
-590657 Lihula Lihula Gmina Lihula,Leal,Ligulya,Lihula,Lihula vald,Likhula,Лихула 58.68139 23.84528 P PPL EE 07 0411 1457 19 Europe/Tallinn 2012-01-17
-590888 Kuusalu Kuusalu Kusal,Kusalu,Kuusalu,Kuzal',Kuzal’,Куусалу 59.44389 25.44139 P PPL EE 01 0353 1238 46 Europe/Tallinn 2012-01-17
-590939 Kuressaare Kuressaare Arensburg,Arensburga,Kingisepp,Kingissepa,Kingissepp,Kuresaar,Kuresaare,Kuresaari,Kuresare,Kuresarė,Kuressaare,Kuressaari,Kuresāre,Курессааре,קורסארה 58.24806 22.50389 P PPLA EE 14 0349 14921 6 Europe/Tallinn 2012-01-17
-590976 Kunda Kunda 59.48417 26.56111 P PPLX EE 08 0902 3764 57 Europe/Tallinn 2010-10-29
-591076 Kose Kose Kose,Koze 59.45806 24.87833 P PPLX EE 01 0784 2232 32 Europe/Tallinn 2012-01-17
-591260 Kohtla-Järve Kohtla-Jarve Jarve,KOKHTLA-JARVE,Kochtel,Kohtla Jerve,Kohtla Jervė,Kohtla-Jaerve,Kohtla-Jaervi,Kohtla-Jarve,Kohtla-Jerve,Kohtla-Järve,Kohtla-Järvi,Kokhtla,Kokhtla-Jarve,Kokhtla-Yarve,Kotayarvi,Turpsal,Tyurpsal',Tyurpsal’,Türpsal,КОХТЛА-ЯРВЕ,Кохтла-Ярве,კოხტლა-იარვე 59.39861 27.27306 P PPL EE 03 0322 46060 66 Europe/Tallinn 2012-01-17
-591264 Kohtla-Nõmme Kohtla-Nomme Kohtla,Kohtla Asundus,Kohtla-Nomme,Kohtla-Nõmme,Myza Kokhtla 59.35167 27.175 P PPL EE 03 0323 1075 55 Europe/Tallinn 2012-01-17
-591265 Kohila Kohila KOKHILA,Kohila,Koil,Kokhil',Kokhila,Kokhil’,Koyl',Koyl’,КОХИЛА 59.16806 24.7575 P PPL EE 13 0317 3355 58 Europe/Tallinn 2012-01-17
-591276 Koeru Koeru Keras,Koehru,Koeru,Koyero,Koyeru,Kėras,Maria Magdaliny,Marien-Magdalenen,Myza Koyeru,Sankt-Marien-Magdalenen,Коэру 58.96306 26.03083 P PPL EE 04 0314 1300 102 Europe/Tallinn 2012-01-17
-591313 Kiviõli Kivioli KIVIYLI,Kivieli,Kivielis,Kivioli,Kiviyli,Kiviõli,КИВИЫЛИ,Кивиыли 59.35306 26.97111 P PPL EE 03 0309 6953 53 Europe/Tallinn 2012-01-17
-591381 Kilingi-Nõmme Kilingi-Nomme Kilingi-Nemme,Kilingi-Nomme,Kilingi-Nymme,Kilingi-Nõmme,Kilingi-nymme,Killingi-Nymme,Kurkund,Nemme,Nomme,Nõmme,Saara,Saarde,Tegnits,Килинги-нымме 58.15028 24.96417 P PPL EE 11 0710 2175 63 Europe/Tallinn 2012-01-17
-591472 Keila Keila KEJLA,Kegel,Keila,Keyla,КЕЙЛА 59.30361 24.41306 P PPL EE 01 0296 9411 41 Europe/Tallinn 2012-01-17
-591475 Kehtna Kehtna Kehtna,Kehtna Asundus,Kekhna,Kekhtna,Кехтна 58.93028 24.87806 P PPL EE 13 0292 1579 65 Europe/Tallinn 2012-01-17
-591476 Kehra Kehra KEKHRA,Kedder,Kehra,Kekhra,Kekra,КЕХРА 59.33611 25.32111 P PPL EE 01 0140 3183 58 Europe/Tallinn 2012-01-17
-591632 Kärdla Kardla Kaerrdal,Kardla,Kartla,Kerdla,Kerdlya,Kerhl,Kertel,Kjardla,Kyardla,Kärdla,Kärrdal,Kärtla,Myasto Kyardla,Кярдла 58.99778 22.74917 P PPLA EE 02 0371 3763 9 Europe/Tallinn 2012-01-17
-591703 Kallaste Kallaste KALLASTE,Kallaste,Krasnaja Gora,Krasnaya Gora,Krasnogar,Krasnogor,Krasnyye Gory,КАЛЛАСТЕ 58.655 27.15917 P PPL EE 18 0126 1171 45 Europe/Tallinn 2012-01-17
-591783 Kadrina Kadrina Kadrina,Katharinen,Katrinen',Katrinen’,Sankt-Katharinen,Кадрина 59.33472 26.145 P PPL EE 08 0272 2406 93 Europe/Tallinn 2012-01-17
-591876 Jüri Jueri Jueri,Juri,Jüri,Yuri,Юри 59.35417 24.89417 P PPL EE 01 0653 2581 55 Europe/Tallinn 2012-03-16
-591893 Jõhvi Johvi Ievve,Iohvi,Iyeve,Iyevve,Iykhvi,Jechvi,Jehvi,Jehvis,Jeve,Jewe,Johvi,Johwi,Johyl,Jykhvi,Jõhvi,Jöhwi,Levve,Yokhvi,Yykhvi,Йыхви 59.35917 27.42111 P PPLA EE 03 0251 11469 61 Europe/Tallinn 2012-01-17
-591902 Jõgeva Jogeva Iyegeva,Iygeva,Jegeva,Jogeva,Jygeva,Jõgeva,Laisholm,Laysgol'm,Laysgol’m,Yogeva,Yygeva,ywgbh,Йыгева,יוגבה 58.74667 26.39389 P PPLA EE 05 0249 6396 79 Europe/Tallinn 2012-01-17
-591965 Järvakandi Jarvakandi JARVAKANDI,Jaervakandi,Jarvakandi,Jarvakandi Klaasivabrik,Jarvakandi Tehasid,Jarwakandi Klaasi Wabrik,Järvakandi,Järvakandi Klaasivabrik,Järvakandi Tehasid,Järwakandi Klaasi Wabrik,Stekol'nyy Zavod Yarvakandi,Stekol’nyy Zavod Yarvakandi,ЯРВАКАНДИ 58.77889 24.82583 P PPL EE 13 0260 1471 65 Europe/Tallinn 2012-01-17
-591968 Järva-Jaani Jarva-Jaani J. Jaani,Jaani,Jaerva-Jaani,Jarva-Jaani,Jarvi-Jaani,Jerve Jani,Jerve Jāni,Järva-Jaani,Järvi-Jaani,Sankt-Johannis,Svyatogo Ioanna,Yarva-Yani,Yyarva-Yani,Ярва-Яани 59.03861 25.88639 P PPL EE 04 0257 1051 103 Europe/Tallinn 2012-01-17
-592200 Haljala Haljala Haljala,Haljall,Khal'jala,Khal'yal',Khal'yala,Khal’yala,Khal’yal’,Хальяла 59.43361 26.26139 P PPL EE 08 0190 1233 80 Europe/Tallinn 2012-01-17
-592225 Haapsalu Haapsalu Gaapsalu,Gapsal',Gapsal’,Haapsalu,Haapsula,Hapsal,Hapsalu,Hāpsalu,Khaapsalu,Khaapsalyu,Khapsalu,Хаапсалу 58.94306 23.54139 P PPLA EE 07 0183 11805 11 Europe/Tallinn 2012-01-17
-592233 Haabneeme Haabneeme Haabneeme,Khaabneehme,Khaabneeme,Хаабнеэме 59.51139 24.82111 P PPL EE 01 0890 2077 13 Europe/Tallinn 2012-01-17
-592279 Elva Elva EHLVA,Elva,Elwa,ЭЛВА 58.2225 26.42111 P PPL EE 18 0170 5819 51 Europe/Tallinn 2012-01-17
-592351 Audru Audru Audru,Аудру 58.40861 24.37389 P PPL EE 11 0159 1430 9 Europe/Tallinn 2012-01-17
-592379 Aseri Aseri Asari,Aseri,Aseri Mois,Aseri Mõis,Asserien,Asserin,Azeri,Azern,Азерн 59.45056 26.8675 P PPL EE 03 0154 1831 35 Europe/Tallinn 2012-01-17
-592396 Aruküla Arukula Arukula,Arukyula,Aruküla 59.36444 25.07722 P PPL EE 01 0651 1829 50 Europe/Tallinn 2012-01-17
-592626 Abja-Paluoja Abja-Paluoja Ab'ja-Paluoja,Ab'ya,Ab'ya-Paluoya,Abbia,Abia,Abja-Paluoja,Ab’ya,Ab’ya-Paluoya,Paluoja,Paluoya,Абья-Палуоя 58.12528 25.34972 P PPL EE 20 0105 1372 71 Europe/Tallinn 2012-01-17
-793457 Sõmeru Someru Someru,Sõmeru 59.36111 26.4375 P PPL EE 08 0770 1350 75 Europe/Tallinn 2012-01-19
-793956 Tabivere Tabivere Tabivere,Табивере 58.55417 26.59556 P PPL EE 05 0773 1062 68 Europe/Tallinn 2012-01-19
-794964 Laagri Laagri 59.35083 24.61418 P PPL EE 01 0727 4135 40 Europe/Tallinn 2010-12-18
-8181718 Soosepailm Soosepailm 59.50086 24.86254 P PPL EE 01 0890 1500 40 41 Europe/Tallinn 2012-01-30
-346030 Ziftá Zifta Zifta,Ziftá,zfty,Зифта,زفتى 30.7142 31.24425 P PPL EG 05 92667 16 Africa/Cairo 2012-02-28
-347236 Toukh Toukh Toukh,Tukh,Tukh al Malaq,Tukh el-Malaq,Tûkh,Tûkh el-Malaq,twkh,Ţūkh,Ţūkh al Malaq,Тух,طوخ 30.35394 31.20071 P PPL EG 12 67599 20 Africa/Cairo 2012-01-19
-347497 Tanda Tanda Tanda,Tanta,tnta,tnth,Ţanţā,Танта,טנטא,טנטה,طنطا,Ṭanṭa 30.78847 31.00192 P PPLA EG 05 404901 18 Africa/Cairo 2012-01-19
-347542 Ţāmiyah Tamiyah Tamiya,Tamiyah,Tumyah,Tāmīya,Ţāmiyah 29.47639 30.96119 P PPL EG 04 46866 250 Africa/Cairo 2012-01-19
-347591 Ṭalkha Talkha Talha,Talkha,Ṭalkha 31.0539 31.37787 P PPL EG 01 157737 7 Africa/Cairo 2012-01-19
-347612 Talā Tala Tala,Tale,Talla,Talā,Тале 30.68025 30.94292 P PPL EG 09 51498 16 Africa/Cairo 2012-01-19
-347634 Ţahţā Tahta Tahta,Takhta,Ţahţā,Тахта 26.7693 31.50214 P PPL EG 24 90591 66 Africa/Cairo 2012-01-19
-347749 Sumusţā as Sulţānī Sumusta as Sultani Sumusta as Sultani,Sumusta el Sultani,Sumusţā as Sulţānī,Sumusṭa el Sulṭâni 28.91667 30.85 P PPL EG 18 37260 28 Africa/Cairo 2012-01-19
-347796 Sūhāj Suhaj Sawhaj,Sawhāj,Sohag,Sohāg,Souhag,Suhag,Suhaj,Suwhaj,Sūhāg,Sūhāj,swhaj,سوهاج 26.55695 31.69478 P PPLA EG 24 209419 67 Africa/Cairo 2012-01-19
-347863 Sīwah Siwah Siuah,Siva,Siwa,Siwe,Сива 29.20409 25.51952 P PPL EG EG 22 7000 241 Africa/Cairo 2010-07-10
-348112 Sīdī Sālim Sidi Salim 31.27105 30.78665 P PPL EG 21 47998 6 Africa/Cairo 2011-04-19
-349114 Shirbîn Shirbin Sharbin,Sharbīn,Sherbin,Shirbin,Shirbîn 31.19544 31.52127 P PPL EG 01 54676 13 Africa/Cairo 2012-01-19
-349156 Shibīn al Qanāţir Shibin al Qanatir Shabin al Qanatir,Shabir al-Kanatir,Shabīn al Qanātir,Shibin al Qanatir,Shibin el-Qanatir,Shibîn el-Qanâṭir,Shibīn al Qanāţir 30.31269 31.32018 P PPL EG 12 56872 20 Africa/Cairo 2012-01-19
-349158 Shibīn al Kawm Shibin al Kawm Shabin al-Kum,Shebin al-Kom,Shibin al Kawm,Shibin el-Kom,Shibîn el-Kôm,Shibīn al Kawm,shbyn alkwm,شبين الكوم 30.55258 31.00904 P PPLA EG 09 0 23 Africa/Cairo 2012-01-19
-349340 Sharm ash Shaykh Sharm ash Shaykh Awfir,Awfīr,Cherm,Ofira,Ophira,Ras Muhammad,Ras Umm Sidd,Sharm al Shaikh,Sharm ash Shaykh,Sharm ehl' Shejkh,Sharm el Sheikh,Sharm el-Sheij,Sharm el-Sheikh,Sharm esh Sheikh,Sharm-ehl'-Shejkh,Sherm el Sheik,Sherm el Sheikh,Sherm el Shekh,shrm alshykh,Шарм эль Шейх,Шарм-эль-Шейх,شرم الشيخ 27.85183 34.30499 P PPL EG 26 12000 35 Africa/Cairo 2012-01-19
-349715 Samannūd Samannud Samannud,Samannûd,Samannūd,Samnud,Samnūd,Sebennytos 30.96033 31.24332 P PPL EG 05 54980 18 Africa/Cairo 2012-01-19
-349717 Samālūţ Samalut Samalut,Samālūţ 28.31214 30.71007 P PPL EG 10 90465 41 Africa/Cairo 2012-01-19
-350203 Rosetta Rosetta Bolbitine,Er-Rashid,Rachid,Rashid,Rashîd,Rashīd,Rosetta,Rosette,mdynt rshyd,مدينة رشيد 31.40444 30.41639 P PPL EG 03 64481 10 Africa/Cairo 2012-01-19
-350370 Quwaysinā Quwaysina Kuesnah,Quwaysina,Quwaysinā,Quweisna,qwysna,قويسنا 30.56482 31.15777 P PPL EG 09 42708 15 Africa/Cairo 2012-02-28
-350376 Quţūr Qutur Kotur,Kotûr,Qotur,Qutur,Quţūr,Quṭûr 30.97225 30.95614 P PPL EG 05 23842 9 Africa/Cairo 2012-01-19
-350422 Kousa Kousa Apollinopolis Parva,Apollonopolis Parva,Kousa,Qus,Qūş 25.91407 32.76362 P PPL EG 23 60181 81 Africa/Cairo 2012-01-19
-350550 Qinā Qina Caene,Kena,Keneh,Qana,Qanā,Qena,Qina,Qinā,astan qna,qna,استان قنا,قنا 26.16418 32.72671 P PPLA EG 23 235362 80 Africa/Cairo 2012-01-19
-350661 Qaşr al Farāfirah Qasr al Farafirah Al Farafirah,Al Farāfirah,Farafra,Qasr Farafra,Qasr al Farafirah,Qaşr al Farāfirah,Фарафра 27.0568 27.96979 P PPL EG 13 5000 76 Africa/Cairo 2012-01-19
-350789 Qalyūb Qalyub Kal'jub,Kalyub,Kalyûb,Qaliub,Qalyub,Qalyūb,qlywb,Кальюб,قليوب 30.17922 31.2056 P PPL EG 12 100495 22 Africa/Cairo 2012-01-19
-350893 Nuwaybi‘a Nuwaybi`a Nueiba,Nuvejba,Nuwaiba`,Nuwaiba‘,Nuwaybi`a,Nuwaybi‘a,Nuweiba,Nuweibeh,Nuweibá,Нувейба 29.04681 34.6634 P PPL EG 26 5000 11 Africa/Cairo 2012-01-19
-351434 Naj‘ Ḩammādī Naj` Hammadi Gebel el Hagif,Nag Hamadi,Nag Hamady,Nag Hammadi,Nag Hammadi-geschriften,Nag Hammádí,Nag Hammâdi,Nag-Hamado,Nag` Hammadi,Naga Hamadi,Nag‘ Hammādi,Naj` Hammadi,Naj` al Hammadi,Naj‘ al Ḩammādī,Naj‘ Ḩammādī,na ge ma di,ナグ・ハマディ写本,拿戈瑪第 26.04949 32.24142 P PPL EG 23 41184 78 Africa/Cairo 2012-01-19
-352344 Minyat an Naşr Minyat an Nasr Minyat an Nasr,Minyat an Naşr,Minyet el-Nasr,Minyet el-Naṣr 31.12294 31.6399 P PPL EG 01 56951 7 Africa/Cairo 2012-01-19
-352354 Minūf Minuf Manuf,Manūf,Menouf,Menoufis,Menuf,Minuf,Minūf 30.46579 30.93164 P PPL EG 09 83651 20 Africa/Cairo 2012-01-19
-352628 Maţāy Matay Matai,Matay,Matâi,Maţāy,Muttay 28.41899 30.77924 P PPL EG 10 45215 40 Africa/Cairo 2012-01-19
-352679 Mashtūl as Sūq Mashtul as Suq Mashtul as Suq,Mashtul el-Suq,Mashtûl el-Sûq,Mashtūl as Sūq 30.36056 31.3776 P PPL EG 14 45798 15 Africa/Cairo 2012-01-19
-352733 Marsá Maţrūḩ Marsa Matruh Madara,Marsa Matruh,Marsa-Matrukh,Marsá Maţrūḩ,Matruh,Maţrūḩ,Mersa Matrouh,Mersa Matruh,Mersa Maṭrûḥ,Mhadara,Paraetonium,mrsy mtrwh,mtrwh,Марса-Матрух,مرسى مطروح,مطروح 31.35254 27.24528 P PPLA EG 22 62042 9 Africa/Cairo 2012-01-19
-352736 Marsa Alam Marsa Alam Marsa Alam,Marsa al `Alam,Marsá al `Alam,mrsy ʿlm,Марса Алам,مرسى علم 25.07573 34.89181 P PPL EG EG 02 10000 3 Africa/Cairo 2011-12-28
-352913 Manfalūţ Manfalut Manfalut,Manfalūţ,Monfalut 27.3104 30.97004 P PPL EG 17 78744 53 Africa/Cairo 2012-01-19
-352951 Mallawī Mallawi Mallauri,Mallavi,Mallawi,Mallawī,Маллави 27.7314 30.84165 P PPL EG 10 142504 52 Africa/Cairo 2012-01-19
-353219 Madīnat Sittah Uktūbar Madinat Sittah Uktubar 6 October City,Madinat Sittah Uktubar,Madīnat Sittah Uktūbar,October 6 29.81667 31.05 P PPL EG 08 41930 126 Africa/Cairo 2011-04-19
-353802 Kawm Umbū Kawm Umbu Kawm Ombo,Kawm Umbu,Kawm Umbū,Kom Ombo,Kom Ombo - kwm ambw,Kom Ombo - كوم أمبو,Kum Ombu,Kôm Ombo,Omboi,Ombos,kom-ombo,Ком-Омбо,コム・オンボ 24.47669 32.94626 P PPL EG 16 59787 108 Africa/Cairo 2012-01-19
-353828 Kawm Ḩamādah Kawm Hamadah Kawm Hamadah,Kawm Ḩamādah,Kom Hamada,Kôm Ḥamâda 30.76096 30.69733 P PPL EG 03 36751 9 Africa/Cairo 2012-01-19
-354105 Kafr Şaqr Kafr Saqr Kafr Saqr,Kafr Şaqr,Kafr Ṣaqr,kfr sqr,كفر صقر 30.79336 31.62575 P PPL EG 14 34967 11 Africa/Cairo 2012-01-19
-354365 Kafr az Zayyāt Kafr az Zayyat Kafr az Zayat,Kafr az Zayyat,Kafr az Zayyāt,Kafr az Zayāt,Kafr el-Zaiyat,Kafr el-Zaiyât,Kafr el-Zayat,Kafr ez Zaiyat,Kafraz Zayyt 30.8248 30.81805 P PPL EG 05 73725 18 Africa/Cairo 2012-01-19
-354502 Kafr ash Shaykh Kafr ash Shaykh Kafr al-Sheikh,Kafr ash Shaykh,Kafr el-Sheikh,Kafr-Sheikh,kfr alshykh,كفر الشيخ 31.1143 30.94012 P PPLA EG 21 143970 14 Africa/Cairo 2012-01-19
-354775 Kafr ad Dawwār Kafr ad Dawwar Kafr ad Dawwar,Kafr ad Dawwār,Kafr al-Dawar,Kafr ed-Dauwar,Kafr ed-Dauwâr,Kafr el Dawdar,Kafr el-Dauwar,Kafr el-Dauwâr 31.13385 30.12843 P PPL EG 03 267370 0 Africa/Cairo 2012-01-19
-354981 Juhaynah Juhaynah Giheina,Jihaynah,Juhaynah 26.67319 31.4976 P PPL EG 24 47821 64 Africa/Cairo 2012-01-19
-355026 Jirjā Jirja Girga,Jirja,Jirjā 26.33826 31.89161 P PPL EG 24 128250 70 Africa/Cairo 2012-01-19
-355392 ‘Izbat al Burj `Izbat al Burj Ezbet el-Burg,`Ezbet el-Burg,`Izbat al Burj,‘Ezbet el-Burg,‘Izbat al Burj 31.5084 31.84106 P PPL EG 01 37953 8 Africa/Cairo 2012-01-19
-355420 Iţsā Itsa 29.2376 30.78944 P PPL EG 04 45269 20 Africa/Cairo 2011-04-19
-355449 Isnā Isna Asna,Asnā,Ehsna,Esna,Esneh,Isna,Isnā,Latonpolis,Latopolia,Latopolis,Latónpolis,asna,Эсна,איסנא,אסנא,إسنا 25.29336 32.55402 P PPL EG 23 69335 86 Africa/Cairo 2012-01-19
-355628 Idkū Idku Edkou,Idku,Idkū,Идку 31.30782 30.29901 P PPL EG 03 105599 7 Africa/Cairo 2012-01-19
-355648 Ibshawāy Ibshaway Ibshawai,Ibshaway,Ibshawāy 29.35804 30.68142 P PPL EG 04 51173 2 Africa/Cairo 2012-01-19
-355795 Ḩalwān Halwan Halwan,Helouan,Helouan-les-Bains,Helwan,Helwan Les Bains,Hilwan,Hulwan,Hélouan-les-Bains,Kheluan,hlwan,Хелуан,حلوان,Ḥelwân,Ḩalwān,Ḩulwān 29.84144 31.30084 P PPL EG 11 230000 28 Africa/Cairo 2012-01-19
-355939 Hihyā Hihya Hehia,Hihya,Hihyā,Rehia,hhya,ههيا 30.6713 31.58801 P PPL EG 14 43432 14 Africa/Cairo 2012-01-19
-356000 Ḩawsh ‘Īsá Hawsh `Isa Haush `Isa,Haush ‘Isá,Hawsh `Isa,Hosh `Isa,Ḥôsh ‘Îsa,Ḩawsh ‘Īsá 30.9128 30.29018 P PPL EG 03 85352 6 Africa/Cairo 2012-01-19
-356806 Fuwah Fuwah Fouah,Fowa,Fuwa,Fuwah 31.20291 30.55018 P PPL EG 21 63310 14 Africa/Cairo 2012-01-19
-356933 Farshūţ Farshut Farshut,Farshuut,Farshūţ 26.05494 32.16329 P PPL EG 23 53851 78 Africa/Cairo 2012-01-19
-356945 Fāraskūr Faraskur Faraskur,Faraskûr,Fariskur,Fâriskûr,Fāraskūr,Fāriskūr,farskwr,فارسكور 31.32977 31.71507 P PPL EG 20 58284 15 Africa/Cairo 2012-01-19
-356989 Fāqūs Faqus Fakous,Fakus,Faqus,Fāqūs 30.73006 31.80182 P PPL EG 14 62821 13 Africa/Cairo 2012-01-19
-358048 Damietta Damietta Damiata,Damietta,Damiette,Dimyat,Dimyāṭ,Dum'jat,Dumiat,Dumqat,Dumyat,Dumyâṭ,Dumyāţ,dmyat,Думьят,دمياط 31.41648 31.81332 P PPLA EG 20 76839 16 Africa/Cairo 2012-01-19
-358095 Diyarb Najm Diyarb Najm Diarb Negm,Diyarb Najm,Diyarb Nigm,Diyarb Nijm,dyrb njm,ديرب نجم 30.75422 31.43925 P PPL EG 14 51841 11 Africa/Cairo 2012-01-19
-358108 Disūq Disuq Dasuq,Dasūq,Dessouk,Disuk,Disuq,Disūq,Дисук 31.13305 30.64649 P PPL EG 21 102037 9 Africa/Cairo 2012-01-19
-358115 Dishnā Dishna Dashna,Dashnā,Dechna,Deshna,Dishna,Dishnā 26.12467 32.47598 P PPL EG 23 54197 75 Africa/Cairo 2012-01-19
-358172 Dikirnis Dikirnis Dekernes,Dikinis,Dikirnis,Дикирнис 31.08871 31.59427 P PPL EG 01 137542 15 Africa/Cairo 2012-01-19
-358245 Dhahab Dhahab Dahab,Dahabas,Dakhab,Dhahab,dhb,Дахаб,דהב,دهب 28.50098 34.51338 P PPL EG EG 26 8000 21 Africa/Cairo 2010-10-16
-358269 Dayrūţ Dayrut Dairut,Dairut el Mahatta,Dairût,Dairût el Maḥaṭṭa,Dayrut,Dayrut al Mahattah,Dayrūţ,Dayrūţ al Maḩaţţah,Deirout,Deirut 27.55602 30.80764 P PPL EG 17 67788 52 Africa/Cairo 2012-01-19
-358274 Dayr Mawās Dayr Mawas Dayr Mawas,Dayr Mawās,Deir Mawas,Deir Mawās 27.64176 30.84662 P PPL EG 10 40609 48 Africa/Cairo 2012-01-19
-358448 Damanhūr Damanhur Bandar Damanhur,Bandar Damanhūr,Damanhour,Damanhur,Damanhûr,Damanhūr,Damankhur,Hermopolis Parva,Hermupolis Parva,dmnhwr,Даманхур,دمنهور 31.03917 30.46914 P PPLA EG 03 227943 9 Africa/Cairo 2012-01-19
-358600 Būsh Bush 29.14816 31.12733 P PPL EG 18 86608 31 Africa/Cairo 2011-04-19
-358619 Port Said Port Said Bor Sa`id,Bor Sa‘īd,Bur Sa`id,Bursaid,Būr Sa‘īd,Madinat Bur Sa`id,Madinet Port Said,Madînat Būr Sa‘īd,Madînet Port Said,Port Said,Port Saidas,Port Saíd,Port-Said,Port-Saïd,Porto Said,Puerto Said,Puerto Saíd,sai de gang,Порт-Саид,פורט סעיד,بور سعيد,بورسعيد,塞德港 31.25654 32.28412 P PPLA EG 19 538378 6 Africa/Cairo 2012-01-19
-358620 Būr Safājah Bur Safajah Bur Safajah,Būr Safājah,Port Safaga,Port Safâga,Safaga,sfaja,Сафага,سفاجا 26.72918 33.93651 P PPL EG 02 32944 23 Africa/Cairo 2012-01-19
-358821 Bilqās Qism Awwal Bilqas Qism Awwal Balqas,Balqās,Bilqas,Bilqas Qism Auwal,Bilqas Qism Awwal,Bilqâs,Bilqâs Qism Auwal,Bilqās Qism Awwal 31.21452 31.35798 P PPL EG 01 103596 13 Africa/Cairo 2012-01-19
-358840 Bilbays Bilbays Belbeis,Bilbays,Bilbeis,Bilbes,Bilbês,blbys,بلبيس 30.42039 31.56223 P PPL EG 14 129211 17 Africa/Cairo 2012-01-19
-358970 Basyūn Basyun Basyun,Basyûn,Basyūn 30.93976 30.81338 P PPL EG 05 55523 12 Africa/Cairo 2012-01-19
-359173 Banī Suwayf Bani Suwayf Bani Suwayf,Banī Suwayf,Beni Souef,Beni Sue,Beni Suef,Beni Suweif,bny swyf,بني سويف 29.07441 31.09785 P PPLA EG 18 189624 33 Africa/Cairo 2012-01-19
-359212 Banī Mazār Bani Mazar Bani Mazar,Banī Mazār,Beni Mazar,Beni Mazâr 28.5036 30.8004 P PPL EG 10 58153 43 Africa/Cairo 2012-01-19
-359280 Banhā Banha Athribis,Bandar Banha,Bandar Banhā,Banha,Banhā,Bankha,Benha,Benna,bnha,Банха,بنها 30.45906 31.17858 P PPLA EG 12 167029 17 Africa/Cairo 2012-01-19
-359493 Az Zaqāzīq Az Zaqaziq As Zaqaziq,As Zaqāzīq,Az Zagazig,Az Zagāzīg,Az Zaqaziq,Az Zaqāzīq,Es Zaqiziq,Ez Zaqaziq,Ez Zaqāzīq,Zagazig,Zaqaziq,Zaqazîq,alzqazyq,الزقازيق 30.58768 31.502 P PPLA EG 14 285097 16 Africa/Cairo 2012-01-19
-359576 Awsīm Awsim Ausim,Ausîm,Awsim,Awsīm,Letopolis,Letous Polis,Usiim,awsym,أوسيم 30.12303 31.13571 P PPL EG 08 63862 25 Africa/Cairo 2012-01-19
-359678 Tor Tor Al-Tur,At Tur,Aţ Ţūr,El-Tor,El-Tur,El-Tûr,Et Tor,Thur,Tor,altwr,الطور 28.23638 33.6254 P PPLA EG 26 14972 14 Africa/Cairo 2012-01-19
-359710 At Tall al Kabīr At Tall al Kabir At Tall al Kabir,At Tall al Kabīr,At Tell al Kebir,At Tell al Kebīr,El-Tell el-Kebir,El-Tell el-Kebîr,Et Tell el Kebir,Et Tell el Kebīr,Tel el Kebir,Tell el- Kebir,Tell el- Kebîr 30.54448 31.78525 P PPL EG 07 51569 11 Africa/Cairo 2012-01-19
-359783 Asyūţ Asyut As'jut,Assiout,Assiut,Assuit,Asyut,Asyūţ,Licopolis,Likupulis,Lycopolis,Līkūpūlīs,Siut,asywt,Асьют,أسيوط 27.18096 31.18368 P PPLA EG 17 420585 56 Africa/Cairo 2012-01-19
-359792 Aswān Aswan Assouan,Assuan,Assuao,Assuão,Asuan,Asuan - aswan,Asuanas,Asuano,Asuán,Asuán - أسوان,Aswan,Aswân,Aswān,Asŭano,Es-Suan,Syena,Syene,Syeue,asuwan,aswan,Асуан,אסואן,أسوان,アスワン 24.09343 32.90704 P PPLA EG 16 241261 102 Africa/Cairo 2012-01-19
-359796 Suez Suez Al Qulzum,As Suways,Clysma,El Seweis,El Suweis,El-Qulzum,Es Suweis,Klysma,Souez,Suecas,Suehc,Suehckij,Sues,Suess,Sueveys,Suez,Suës,Súes,Süveyş,alswys,suejeu,suezu,swys,Σουέζ,Суэц,Суэцкий,السويس,سويس,スエズ,수에즈 29.97371 32.52627 P PPLA EG 15 488125 11 Africa/Cairo 2012-01-19
-359900 Aş Şaff As Saff As Saff,Aş Şaff,El-Saff,Es Saff 29.56472 31.28111 P PPL EG 08 38213 27 Africa/Cairo 2012-01-19
-359953 Ash Shuhadā’ Ash Shuhada' Ash Shuhada',Ash Shuhadā’,El Shohada,El-Shuhada,Esh-Shuhada 30.59618 30.89875 P PPL EG 09 48060 12 Africa/Cairo 2012-01-19
-360048 Ashmūn Ashmun 30.29857 30.97635 P PPL EG 09 82507 17 Africa/Cairo 2011-04-19
-360464 Al Wāsiţah Al Wasitah Al Wasitah,Al Wāsiţah,El Wasta,El Wāsta,Wasta 29.33778 31.20556 P PPL EG 04 37453 33 Africa/Cairo 2012-01-19
-360502 Luxor Luxor Al Uqsur,Al Uqşur,El Aqsur,El Kusur,El Qusur,El Uqsor,El-Aksur,Louksor,Louxor,Loxor,Loxòr,Luksor,Luksoras,Luksoro,Luqsor,Luxor,Luxor- alaqsr,Luxor- الأقصر,alaqsr,aqsr,le shu,luksori,Луксор,اقصر,الأقصر,الاقصر,ლუქსორი,樂蜀 25.69893 32.6421 P PPLA EG 28 422407 89 Africa/Cairo 2011-04-06
-360526 Al Qūşīyah Al Qusiyah Al Qusiyah,Al Qūşīyah,Cusae,El Qusiya,El Qūsīya 27.4402 30.81841 P PPL EG 17 68394 54 Africa/Cairo 2012-01-19
-360531 Al Quşayr Al Qusayr Al Qusayr,Al Quşayr,Al'-Kusajra,El Quseir,Koseir,Leucus Limen,Qosier,Qosseir,Quseir,Аль-Кусайра 26.10426 34.27793 P PPL EG 02 24653 21 Africa/Cairo 2012-01-19
-360542 Al Qurayn Al Qurayn Al Qurayn,Al Qurayn wa Tawahin al Haysamiyah,Al Qurayn wa Ţawāḩīn al Ḩayşamīyah,Al'-Ehl'-Kurajn,El Qurein and Tawahin el Heisamiya,El Qurein and Tawaḥîn el Heiṣamîya,El-Qurein,El-Qurein wa Tawahir,El-Qurein wa Ṭawâḥîr,alqryn,Аль-Эль-Курайн,القرين 30.61618 31.73514 P PPL EG 14 61730 12 Africa/Cairo 2012-01-19
-360612 Al Qanāyāt Al Qanayat Al Qanayat,Al Qanāyāt,El-Qanayat,El-Qanâyât,alqnayat,القنايات 30.6188 31.46099 P PPL EG 14 42912 14 Africa/Cairo 2012-01-19
-360615 Al Qanāţir al Khayrīyah Al Qanatir al Khayriyah Al Qanatir al Khayriyah,Al Qanāţir al Khayrīyah,Barrage,Delta Barrage,Delta Barrage Station,Delta-Barrage,El-Qanatir el-Khairiya,El-Qanâtir el-Khairîya,El-Qanâṭir el-Khairîya,Muhammed `Ali Barrage,Muhammed ‘Ali Barrage,`Ezbet Shalaqan,`Izbat Shalqan,alqnatr alkhyryt,القناطر الخيرية,‘Ezbet Shalaqân,‘Izbat Shalqān 30.19327 31.13703 P PPL EG 12 56302 20 Africa/Cairo 2012-01-19
-360630 Cairo Cairo Al Qahirah,Al Qāhirah,Caire,Cairo,Cairo - alqahrt,Cairo - القاهرة,Cairu,Cairus,Caïro,El Caire,El Cairo,El Kahira,El Kahirah,El-Qahira,El-Qâhira,Il Cairo,Kaherah,Kahira,Kahirae,Kahire,Kahirä,Kair,Kaira,Kairas,Kairo,Kairó,Kajro,Kaíró,Kaïro,Káhira,Le Caire,Lo Cayiro,Lungsod ng Cairo,Masr,Misr,Qahirə,alqahrt,kai luo,kailo,kairo,keyro,khiro,qahrh,qhyr,Ël Cairo,Ël Càiro,Κάιρο,Каир,Каиро,Кайро,Каїр,קהיר,القاهرة,قاهره,قاھىرە,قاہرہ,கெய்ரோ,ไคโร,ཁ་ཡི་རོ,ქაირო,ካይሮ,カイロ,开罗,카이로 30.06263 31.24967 P PPLC EG 11 7734614 23 Africa/Cairo 2010-05-30
-360686 Al Minyā Al Minya Al Minya,Al Minyā,Ehl'-Min'ja,El Minia,El-Minya,Minia,Minieh,Minya,almnya,Эль-Минья,المنيا 28.10988 30.7503 P PPLA EG 10 227150 49 Africa/Cairo 2012-01-19
-360716 Al Maţarīyah Al Matariyah Al Matariyah,Al Maţarīyah,El Mataria,El-Matariya,El-Maṭarîya,Matarieh 31.18287 32.03108 P PPL EG 01 99357 10 Africa/Cairo 2012-01-19
-360754 Al Manzilah Al Manzilah Al Manzalah,Al Manzilah,El-Manzala 31.15815 31.937 P PPL EG 01 67486 10 Africa/Cairo 2012-01-19
-360761 Al Manşūrah Al Mansurah Al Mansurah,Al Manşūrah,Al-Mansura,Al-Mansurah,El Mansura,El-Mansura,El-Manṣûra,El-Masura,El-Masûra,Manoura,Mansoura,Mansourah,Mansura,Mansurah,Mansûra,almnswrt,mnswrh,mnswrt,المنصورة,منصورة,منصوره 31.03637 31.38069 P PPLA EG 01 420195 15 Africa/Cairo 2012-01-19
-360773 Al Manshāh Al Manshah Al Manshah,Al Manshāh,El Manshah,El Manshāh,Ptolemais Hernnon,Ptolemaîs Hernnon 26.47686 31.8035 P PPL EG 24 61134 72 Africa/Cairo 2012-01-19
-360829 Al Maḩallah al Kubrá Al Mahallah al Kubra Al Mahallah al Kubra,Al Maḩallah al Kubrá,El Mahalla,El Mahalla el Kubra,El Mehalla el Kubra,El-Mahalla el-Kubra,El-Maḥalla el-Kubra,Mahalla el Kubra,Mehalla el Kobra,almhlt alkbry,المحلة الكبرى 30.9745 31.16499 P PPL EG 05 431052 19 Africa/Cairo 2012-01-19
-360923 Al Khārijah Al Kharijah Al Kharijah,Al Khārijah,Al-Kharga,El Kharga,El Khârga,El-Charge,Kharga,alkharjt,الخارجة 25.4514 30.54635 P PPLA EG 13 0 81 Africa/Cairo 2012-01-19
-360928 Al Khānkah Al Khankah Al Khankah,Al Khānkah,El-Khanka,El-Khankah,El-Khânka,El-Khânkâh,Khanka 30.21035 31.36812 P PPL EG 12 62434 19 Africa/Cairo 2012-01-19
-360995 Al Jīzah Al Jizah Al Jizah,Al Jīzah,El Gizeh,El-Giza,El-Gîza,Ghizeh,Giza,Gizah,Gizeh,Gizo,Guize,Guizé,Gíza,Gîza,aljyzt,giza,jyzh,Гиза,الجيزة,جیزه,ギーザ 30.00808 31.21093 P PPLA EG 08 2443203 30 Africa/Cairo 2012-01-19
-361029 Al Jamālīyah Al Jamaliyah Al Jamaliyah,Al Jamālīyah,El-Gamaliya,El-Gamalîya 31.18086 31.86518 P PPL EG 01 68381 11 Africa/Cairo 2012-01-19
-361055 Ismailia Ismailia Al Isma`iliya,Al Isma`iliyah,Al Ismā‘īlīya,Al Ismā‘īlīyah,Ismailia,Ismailieh,Ismailija,Ismailiya,Ismailiyah,Ismailîya,Ismaïlia,Исмаилия,الإسماعيلية,مدينة الإسماعيلية 30.60427 32.27225 P PPLA EG 07 284813 14 Africa/Cairo 2012-01-19
-361058 Alexandria Alexandria Al Iskandariyah,Al Iskandarīyah,Alegsandiri,Alegsàndiri,Alehandriya,Alejandria,Alejandría,Aleksandri,Aleksandria,Aleksandrija,Aleksandrio,Aleksandrje,Aleksandryjo,Alesandria d'Egito,Alessandria,Alessandria d'Eggittu,Alessandria d'Egitto,Alexandreia,Alexandria,Alexandria Magna,Alexandrie,Alexandrië,Alexandría,Alexàndria,Ałesandria d'Egito,Cathair Alastair,El Iskandariya,El Iskandarīya,Gorad Aleksandryja,Iskandariah,Iskandariya,Iskandariyah,Iskenderiye,Iskindiriya,Iskindirîya,Ol'oksandrija,alaksantriya,alaskndryt,alecanturiya,alegjandriya,alekajandriya,alekjendriya,alekjhandriya,aleksandria,aleksandriya,allegsandeulia,arekusandoria,askndryh,elekjhandriya,x lek san de riy,ya li shan da gang,ya li shan zhuo,İsgəndəriyyə,İskenderiye,Αλεξάνδρεια,Александри,Александрия,Александрија,Александрія,Горад Александрыя,Ӧльӧксандрия,Ալեքսանդրիա,אלכסנדריה,אלעקסאנדריע,ئەسکەندەرییە,اسكندريه,اسکندریه,اسکندریہ,الإسكندرية,ܐܠܟܣܢܕܪܝܐ,अलेक्जेंड्रिया,अलेक्झांड्रिया,আলেকজান্দ্রিয়া,আলেক্সান্ড্রিয়া,એલેક્ઝાન્ડ્રિયા,ஆலேசாந்துரியா,అలెగ్జాండ్రియా,ಅಲೆಕ್ಸಾಂಡ್ರಿಯ,അലക്സാണ്ട്രിയ,อเล็กซานเดรีย,ཡ་ལི་ཧྲན་ད,ალექსანდრია,アレクサンドリア,亚历山大港,亞歷山卓,알렉산드리아 31.21564 29.95527 P PPLA EG 06 3811516 255 Africa/Cairo 2012-01-19
-361103 Al Ibrāhīmīyah Al Ibrahimiyah Al Ibrahimiyah,Al Ibrāhīmīyah,El-Ibrahimiya,El-Ibrâhîmîya,Ibrahimiya,Ibrahimiyyah,Ibrâhîmîya,alabrahymyt,الإبراهيمية 30.71877 31.56299 P PPL EG 14 34638 14 Africa/Cairo 2012-01-19
-361179 Al Ḩawāmidīyah Al Hawamidiyah Al Hawamidiyah,Al Ḩawāmidīyah,El-Hawamdiya,El-Ḥawâmdîya,Hawamidyah 29.9 31.25 P PPL EG 08 106841 23 Africa/Cairo 2012-01-19
-361213 Al Ḩāmūl Al Hamul Al Hamul,Al Ḩāmūl,El-Hamul,El-Ḥâmûl,alhamwl,الحامول 31.31146 31.14766 P PPL EG 21 45798 5 Africa/Cairo 2012-01-19
-361291 Al Ghardaqah Al Ghardaqah Al Ghardaqah,Al-Ghardaqa,El-Ghardaqa,Hurgada,Hurghada,Khurgada,Urgada,alghrdqt,ghrdqh,hong jia da,Хургада,الغردقة,غردقه,洪加達 27.25738 33.81291 P PPLA EG 02 95622 11 Africa/Cairo 2010-08-03
-361320 Al Fayyūm Al Fayyum Al Fayyum,Al Fayyūm,Al'-Fajum,Al-Fayyum,Arsinoe,Arsinoë,Crocodilopolis,El Faiyum,El Faiyûm,El-Fayum,Faijum,Faium,Fajum,Fayoom,Fayoum,Fayum,Fayyoum,Fayyum,Madinat al-Fayyum,Madinet el Faiyum,Madīnet el Faiyūm,Medinat Fayum,Medinat el-Fayoum,Médinat el-Fayoum,Shedit,alfywm,astan fywm,mhafzt alfywm,Аль-Фаюм,استان فیوم,الفيوم,محافظة الفيوم 29.30995 30.8418 P PPLA EG 04 306393 29 Africa/Cairo 2012-01-19
-361329 Al Fashn Al Fashn Al Fashn,El Fashn,Fashn 28.82431 30.89948 P PPL EG 18 63793 37 Africa/Cairo 2012-01-19
-361394 Al Bawīţī Al Bawiti Al Bawiti,Al Bawīţī,Baviti,Bawiti,Bawīti,El Bawiti,El Bawîti,Бавити 28.34919 28.86591 P PPL EG 08 20000 130 Africa/Cairo 2012-01-19
-361435 Al Balyanā Al Balyana Al Balyana,Al Balyanā,Balyana,El Balyana 26.23568 32.00347 P PPL EG 24 48801 75 Africa/Cairo 2012-01-19
-361457 Al Bājūr Al Bajur Al Bajur,Al Bājūr,El Baqur,El-Bagur,El-Bâgûr,albajwr,الباجور 30.43026 31.03681 P PPL EG 09 36633 15 Africa/Cairo 2012-01-19
-361478 Al Badārī Al Badari Al Badari,Al Badārī,El Badari,El Badâri 26.99257 31.41554 P PPL EG 17 44132 63 Africa/Cairo 2012-01-19
-361495 Al ‘Ayyāţ Al `Ayyat Al `Ayyat,Al ‘Ayyāţ,Ayat,El `Ayyat,El ‘Ayyat,El-`Aiyat,El-‘Aiyaṭ 29.61972 31.2575 P PPL EG 08 34796 25 Africa/Cairo 2012-01-19
-361546 Al ‘Arīsh Al `Arish Al `Arish,Al ‘Arīsh,City of Cut Noses,El-`Arish,El-‘Arîsh,Rhinocolorum,Rhinocolura,Rhinocorura,Rhinokorura,العريش 31.13159 33.79844 P PPLA EG 27 128855 15 Africa/Cairo 2012-01-19
-361612 Al ‘Alamayn Al `Alamayn Al `Alamayn,Al ‘Alamayn,Alamein,Alamejn,Ehl'-Alamejn,El Alamein,El Alamejn,El `Alamein,El ‘Alamein,El-Alamein,El-`Alamen,El-‘Alamên,a lai man,Аламейн,Ел Аламејн,Эль-Аламейн,علمين,阿莱曼 30.83007 28.95502 P PPL EG 22 7400 7 Africa/Cairo 2012-01-19
-361661 Akhmīm Akhmim Akhmim,Akhmun,Akhmûn,Akhmīm,Ekhmin,Khemmis,Paloupolis,Panopolis,Panospolis,Ахмим 26.56217 31.74503 P PPL EG 24 99446 85 Africa/Cairo 2012-01-19
-361702 Ajā Aja Aga,Aja,Ajā,Айа 30.94154 31.29151 P PPL EG 01 34692 11 Africa/Cairo 2012-01-19
-361827 Ad Dilinjāt Ad Dilinjat Ad Dilinjat,Ad Dilinjāt,Delingat,Ed Dilingat,Ed Dilingāt,El-Dilingat,El-Dilingât,Tayyibat al Ism,Ţayyibat al Ism 30.82791 30.53633 P PPL EG 03 40386 5 Africa/Cairo 2012-01-19
-362004 Abū Tīj Abu Tij Abu Tig,Abu Tij,Abu Tîg,Abū Tīj 27.04411 31.31897 P PPL EG 17 71257 65 Africa/Cairo 2012-01-19
-362041 Abū Sunbul Abu Sunbul Abou Simbel,Abu Simbel,Abu Simbil,Abu Sinbil,Abu Sumbul,Abu Sunbul,Abu-Simbel,Abū Sunbul,Абу-Симбел 22.3457 31.61624 P PPL EG 16 5000 189 Africa/Cairo 2012-01-19
-362277 Abū Qurqāş Abu Qurqas Abu Gurgas,Abu Kerkae,Abu Kirkas,Abu Qurqas,Abu-Qirqas,Abū Qurqāş 27.9312 30.83841 P PPL EG 10 61182 54 Africa/Cairo 2012-01-19
-362485 Abū Kabīr Abu Kabir Abu Kabir,Abu Kebir,Abu Kebîr,Abu Kibir,Abū Kabīr,Abū Kibīr,Kafr Abu Kabir,Kafr Abu Kebir,Kafr Abu Kebîr,Kafr Abū Kabīr,abw kbyr,أبو كبير 30.72508 31.67148 P PPL EG 14 100684 17 Africa/Cairo 2012-01-19
-362882 Abū al Maţāmīr Abu al Matamir Abu `elwet-Matamir,Abu al Matamir,Abu el Matamir,Abu el Matāmīr,Abû ‘elwet-Maṭâmîr,Abū al Maţāmīr 30.91018 30.17438 P PPL EG 03 41302 0 Africa/Cairo 2012-01-19
-362973 Abnūb Abnub Abnub,Abnūb 27.2696 31.15105 P PPL EG 17 68749 57 Africa/Cairo 2012-01-19
-411165 Idfu Idfu 24.98028 32.87472 P PPL EG 16 166102 88 Africa/Cairo 2006-01-27
-419435 Az Zarqā Az Zarqa 31.20829 31.63554 P PPL EG 20 40010 4 Africa/Cairo 2011-04-19
-6692512 El Gouna El Gouna Ehl'-Guna,Эль-Гуна 27.39417 33.67825 P PPL EG 02 15000 8 Africa/Cairo 2009-07-28
-6692518 Makadi Bay Makadi Bay Makadi,Makady,Макади 26.99123 33.89952 P PPL EG 02 4000 5 Africa/Cairo 2012-02-13
-7521348 Ain Sukhna Ain Sukhna Ajn-Sukhna,Айн-Сухна 29.60018 32.31671 P PPL EG 15 45552 30 Africa/Cairo 2010-08-16
-7910966 Beheira Beheira 30.51478 30.34355 P PPLA2 EG 03 0 23 Africa/Cairo 2011-08-03
-2461874 Smara Smara Esmara,Semara,Smar,Smara 26.73841 -11.67194 P PPL EH EH 00 42056 188 Africa/El_Aaiun 2011-02-28
-2462881 Laâyoune / El Aaiún Laayoune / El Aaiun Aaium,Aaiun,Aaiún,Aiun,Ajuno,Al Ayoun,Al-Aaiun,Al-Ayun,Al-Ujun,Ehl'-Ajun,Ejbei Uad el Aabd,El Aaiun,El Aaiún,El Aium,El Aiun,El Aiún,El Ajun,El Ayun,El-Aaiun,El-Aaiún,La'Youn,Laayoune,Laâyoune,La’Youn,O Aiún - العيون,a you en,aiun,el-ayun,Ел Ајун,Эль-Аюн,العيون,العیون,アイウン,阿尤恩,엘아윤 27.16224 -13.20315 P PPLC EH 00 188084 35 Africa/El_Aaiun 2011-03-04
-2463447 Ad Dakhla Ad Dakhla Ad - Dakhla,Ad Dakhla,Dakhla,Dakhlah,Factoria Villa Cisneros,Villa Cisneras,Villa Cisneros,Дахла 23.68477 -15.95798 P PPLA EH CE 75000 6 Africa/El_Aaiun 2010-11-13
-327651 Teseney Teseney Tehsehnehj,Tesene,Tesenei,Tessenei,Тэсэнэй 15.11 36.6575 P PPLX ER 00 3753 594 Africa/Asmara 2010-01-29
-330546 Massawa Massawa Masava,Masawa,Massaoua,Massau,Massaua,Massawa,Massawah,Massowa,Massowah,Mesewa,Mits'iwa,Mitsewa,Mits’iwa,massawa,מסוע,ምጽዋ,マッサワ 15.60972 39.45 P PPLA ER 06 23100 7 Africa/Asmara 2012-01-19
-333287 Keren Keren Cheren,Hamelmalo,Kehrehn,Keren,Кэрэн,ከረን 15.77778 38.45806 P PPLA ER 01 74800 1384 Africa/Asmara 2012-01-19
-338345 Eid Eid Ed,Edd,Eid,`Idi,Ēd,ዕዲ,‘Idī 13.92972 41.6925 P PPL ER 03 11259 5 Africa/Asmara 2012-01-19
-339537 Dek’emhare Dek'emhare Decamere,Dek'emhare,Dekamere,Dekemehare,Dekemehre,Dek’emhare,ደቀምሓረ 15.07 39.0475 P PPL ER 02 10959 2019 Africa/Asmara 2012-01-19
-342711 Barentu Barentu Barehntu,Barentu,Mai Tsada,Барэнту,ባረንቱ 15.11389 37.59278 P PPLA ER 04 15891 1006 Africa/Asmara 2012-01-19
-343300 Asmara Asmara Asmara,Asmehra,Asmera,Aszmara,a si ma la,aseumala,asmrt,asumara,Ασμάρα,Асмара,Асмэра,Ասմարա,אסמרה,أسمرة,አስመራ,ኣሥመራ,ኣስመራ,アスマラ,阿斯瑪拉,阿斯馬拉,아스마라 15.33333 38.93333 P PPLC ER 05 563930 2336 Africa/Asmara 2012-01-19
-343386 Assab Assab Aseb,Assab,Baia di Assab,`Aseb,a sa bu,عصب,ዓስብ,‘Aseb,阿萨布 13.00917 42.73944 P PPLA ER 03 21300 22 Africa/Asmara 2012-01-19
-344426 Ak’ordat Ak'ordat Agordat,Ak' Wirdet,Ak'irdat,Ak'ordat,Ak'urdet,Ak’ordat,Figordat,Āk’ Wirdet,Āk’irdat,Āk’urdet,ኣቁርደት,ኣቆርዳት 15.54861 37.88667 P PPL ER 04 8857 619 Africa/Asmara 2012-01-19
-344901 Mendefera Mendefera Addi Ugri,Adi Ugri,Mehndehfehra,Mendefera,`Adi Wegri,Ādī Ugrī,Мэндэфэра,መንደፈራ,‘Adī Wegrī 14.88722 38.81528 P PPLA ER 02 17781 1977 Africa/Asmara 2012-01-19
-345046 Adi Keyh Adi Keyh Addi Caieh,Addi Kaye,Addicaie,Addicaiè,Adi Caieh,Adi K'eyih,Adi Keih,Adi Keyeh,Adi Keyh,Ādī K’eyih 14.84444 39.37722 P PPL ER 00 13061 2391 Africa/Asmara 2012-01-19
-2509293 Zurgena Zurgena 37.34218 -2.03985 P PPLA3 ES 51 AL 04103 2317 244 Europe/Madrid 2012-03-04
-2509300 Zújar Zujar Zujar,Zújar 37.54285 -2.84197 P PPL ES 51 GR 18023 2699 780 Europe/Madrid 2012-01-19
-2509302 Zuheros Zuheros Zuheres,Zuhéres 37.54332 -4.31531 P PPLA3 ES 51 CO 14075 827 665 Europe/Madrid 2012-03-04
-2509304 Zufre Zufre Zufre 37.83333 -6.33333 P PPLA3 ES 51 H 21079 0 361 Europe/Madrid 2012-03-04
-2509305 Zubia Zubia La Zubia,Zubia 37.11906 -3.584 P PPL ES 51 GR 18084 17803 755 Europe/Madrid 2012-01-19
-2509311 Zorita Zorita Zorita 39.28522 -5.69973 P PPLA3 ES 57 CC 10219 1779 428 Europe/Madrid 2012-03-04
-2509325 Zarza la Mayor Zarza la Mayor Zarza la Mayor 39.87692 -6.86211 P PPLA3 ES 57 CC 10218 1481 305 Europe/Madrid 2012-03-04
-2509328 Zarza de Montánchez Zarza de Montanchez Zarza,Zarza de Montanchez,Zarza de Montánchez 39.25756 -6.03248 P PPLA3 ES 57 CC 10217 608 450 Europe/Madrid 2012-03-04
-2509329 Zarza de Alange Zarza de Alange Zarza,Zarza de Alange,Zarza de San Alanje,Zarza de junto Alange,Zarza junto Alange 38.81814 -6.21756 P PPL ES 57 BA 06083 3580 286 Europe/Madrid 2012-01-19
-2509341 Zarra Zarra Zarra 39.09175 -1.07532 P PPLA3 ES 60 V 46263 442 573 Europe/Madrid 2012-03-04
-2509364 Zalamea la Real Zalamea la Real Zalamea,Zalamea la Real 37.68012 -6.65978 P PPLA3 ES 51 H 21078 3506 411 Europe/Madrid 2012-03-04
-2509365 Zalamea de la Serena Zalamea de la Serena Zalamea de la Serena 38.65131 -5.66063 P PPLA3 ES 57 BA 06160 4273 478 Europe/Madrid 2012-03-04
-2509368 Zahinos Zahinos Zahinos,Zahínos 38.33135 -6.95533 P PPL ES 57 BA 06159 2934 330 Europe/Madrid 2012-01-19
-2509369 Zahara de los Atunes Zahara de los Atunes Saara-de-los-Atunes,Zahara,Zahara de los Atunes,Саара-де-лос-Атунес 36.1369 -5.84592 P PPL ES 51 CA 11007 1307 4 Europe/Madrid 2012-01-19
-2509371 Zahara Zahara 36.84055 -5.39128 P PPLA3 ES 51 CA 11042 1571 491 Europe/Madrid 2012-03-04
-2509374 Zagra Zagra 37.25561 -4.16905 P PPLA3 ES 51 GR 18913 1092 677 Europe/Madrid 2012-03-04
-2509375 Zafra de Záncara Zafra de Zancara Zafra de Zancara,Zafra de Záncara 39.89203 -2.55786 P PPLA3 ES 54 CU 16277 169 922 Europe/Madrid 2012-03-04
-2509377 Zafra Zafra Zafra 38.41667 -6.41667 P PPLA3 ES 57 BA 06158 16424 505 Europe/Madrid 2012-03-04
-2509379 Zafarraya Zafarraya 36.97554 -4.14442 P PPLA3 ES 51 GR 18192 2181 893 Europe/Madrid 2012-03-04
-2509382 Yunquera Yunquera Yunquera 36.73252 -4.92122 P PPLA3 ES 51 MA 29100 3298 682 Europe/Madrid 2012-03-04
-2509386 Yeste Yeste Yeste,Zoste 38.36852 -2.31756 P PPLA3 ES 54 AB 02086 3580 912 Europe/Madrid 2012-03-04
-2509389 Yepes Yepes Yepes 39.90198 -3.62517 P PPLA3 ES 54 TO 45202 4752 703 Europe/Madrid 2012-03-04
-2509390 Yémeda Yemeda Yemeda,Yémeda 39.76667 -1.71667 P PPLA3 ES 54 CU 16276 26 922 Europe/Madrid 2012-03-04
-2509402 Yecla Yecla Ekla,Iecla,Yecla,Екла 38.61365 -1.11468 P PPLA3 ES 31 MU 30043 35025 620 Europe/Madrid 2012-03-04
-2509406 Yátova Yatova Iatova,Iàtova,Yatova,Yátova 39.38333 -0.8 P PPLA3 ES 60 V 46261 1982 408 Europe/Madrid 2012-03-04
-2509408 Yaiza Yaiza Yaiza 28.95678 -13.76535 P PPLA3 ES 53 GC 35034 8777 168 Atlantic/Canary 2012-03-04
-2509414 Víznar Viznar 37.23149 -3.55382 P PPLA3 ES 51 GR 18189 776 1083 Europe/Madrid 2012-03-04
-2509419 Viveros Viveros Viveros 38.7726 -2.57449 P PPLA3 ES 54 AB 02085 475 1005 Europe/Madrid 2012-03-04
-2509420 Viver Viver Viver 39.91667 -0.6 P PPLA3 ES 60 CS 12140 1442 542 Europe/Madrid 2012-03-04
-2509437 Viso del Marqués Viso del Marques El Viso del Marques,El Viso del Marqués,Viso del Marques,Viso del Marqués 38.52208 -3.56348 P PPLA3 ES 54 CR 13098 2946 783 Europe/Madrid 2012-03-04
-2509451 Viñuela Vinuela 36.86307 -4.14124 P PPLA3 ES 51 MA 29099 1591 166 Europe/Madrid 2012-03-04
-2509457 Vinalesa Vinalesa Vinalesa 39.53333 -0.36667 P PPLA3 ES 60 V 46260 2576 23 Europe/Madrid 2012-03-04
-2509463 Villena Villena Vil'ena,Villena,Вильена 38.6373 -0.86568 P PPLA3 ES 60 A 03140 35222 525 Europe/Madrid 2012-03-04
-2509465 Villavieja Villavieja La Vila Vella,Villavieja 39.85 -0.18333 P PPL ES 60 CS 12126 3352 33 Europe/Madrid 2012-01-19
-2509466 Villaviciosa de Córdoba Villaviciosa de Cordoba Villaviciosa,Villaviciosa de Cordoba,Villaviciosa de Córdoba 38.08333 -5.01667 P PPL ES 51 CO 14026 3647 692 Europe/Madrid 2012-01-19
-2509467 Villaverde y Pasaconsol Villaverde y Pasaconsol Villaverde y Pasaconsol 39.77099 -2.26552 P PPLA3 ES 54 CU 16273 413 861 Europe/Madrid 2012-03-04
-2509468 Villaverde del Río Villaverde del Rio Villaverde del Rio,Villaverde del Río 37.58919 -5.87443 P PPLA3 ES 51 SE 41101 6703 19 Europe/Madrid 2012-03-04
-2509469 Villaverde de Guadalimar Villaverde de Guadalimar Villaverde de Guadalimar 38.45525 -2.51782 P PPLA3 ES 54 AB 02084 408 796 Europe/Madrid 2012-03-04
-2509472 Villavaliente Villavaliente Villavaliente 39.12646 -1.45712 P PPLA3 ES 54 AB 02083 264 728 Europe/Madrid 2012-03-04
-2509473 Villatoya Villatoya 39.33333 -1.3 P PPLA3 ES 54 AB 02082 197 395 Europe/Madrid 2011-07-31
-2509475 Villatobas Villatobas Villatobas 39.90187 -3.32386 P PPLA3 ES 54 TO 45198 2356 736 Europe/Madrid 2012-03-04
-2509477 Villasequilla de Yepes Villasequilla de Yepes Villasequilla,Villasequilla de Yepes 39.87582 -3.7311 P PPL ES 54 TO 45202 2531 519 Europe/Madrid 2012-01-19
-2509479 Villaseca de la Sagra Villaseca de la Sagra Villaseca,Villaseca de la Sagra 39.96185 -3.88291 P PPLA3 ES 54 TO 45196 1602 488 Europe/Madrid 2012-03-04
-2509480 Villarta de San Juan Villarta de San Juan Villarta de San Juan 39.23785 -3.42332 P PPLA3 ES 54 CR 13097 3073 631 Europe/Madrid 2012-03-04
-2509481 Villarta de los Montes Villarta de los Montes Villarta de los Montes 39.21386 -4.79227 P PPLA3 ES 57 BA 06157 0 550 Europe/Madrid 2012-03-04
-2509484 Villarta Villarta Villarta 39.45 -1.65 P PPLA3 ES 54 CU 16271 831 776 Europe/Madrid 2012-03-04
-2509485 Villarrubio Villarrubio Villarrubio 39.94511 -2.89431 P PPLA3 ES 54 CU 16270 254 829 Europe/Madrid 2012-03-04
-2509486 Villarrubia de Santiago Villarrubia de Santiago Villarrubia de Santiago 39.98555 -3.36898 P PPLA3 ES 54 TO 45195 2852 758 Europe/Madrid 2012-03-04
-2509487 Villarrubia de los Ojos Villarrubia de los Ojos Villarrubia de los Ojos,Villarrubia los Ojos 39.22085 -3.60802 P PPLA3 ES 54 CR 13096 11191 629 Europe/Madrid 2012-03-04
-2509488 Villarrubia Villarrubia Villariba,Villarrubia,Виллариба 37.85 -4.9 P PPL ES 51 CO 14021 2893 93 Europe/Madrid 2012-01-19
-2509491 Villarrobledo Villarrobledo Billarrobledo,Vil'jarrobledo,Villa Robletum,Villarrobledo,biryaroburedo,Βιλλαρροβλέδο,Вильярробледо,ビリャロブレド 39.26992 -2.60118 P PPLA3 ES 54 AB 02081 26642 729 Europe/Madrid 2012-03-04
-2509494 Villarrasa Villarrasa Villarrasa 37.38956 -6.60584 P PPLA3 ES 51 H 21077 2142 67 Europe/Madrid 2012-03-04
-2509496 Villargordo del Cabriel Villargordo del Cabriel Villagordo,Villargordo,Villargordo del Cabriel 39.53333 -1.43333 P PPLA3 ES 60 V 46259 719 856 Europe/Madrid 2012-03-04
-2509499 Villares del Saz Villares del Saz Villares del Saz 39.84109 -2.50428 P PPLA3 ES 54 CU 16269 630 873 Europe/Madrid 2012-03-04
-2509505 Villarejo-Periesteban Villarejo-Periesteban Villarejo-Periesteban 39.87231 -2.44145 P PPLA3 ES 54 CU 16266 511 920 Europe/Madrid 2012-03-04
-2509506 Villarejo de Montalbán Villarejo de Montalban Villarejo de Montalban,Villarejo de Montalbán 39.76913 -4.57314 P PPLA3 ES 54 TO 45194 76 534 Europe/Madrid 2012-03-04
-2509507 Villarejo de Fuentes Villarejo de Fuentes 39.78809 -2.6968 P PPLA3 ES 54 CU 16264 736 862 Europe/Madrid 2012-03-04
-2509509 Vila-real Vila-real Vila-Real,Vila-real,Villareal,Villarreal,Вила-Реал 39.93333 -0.1 P PPL ES 60 CS 12032 51205 40 Europe/Madrid 2010-04-22
-2509510 Villardompardo Villardompardo Villardompardo 37.83735 -4.00051 P PPLA3 ES 51 J 23098 1157 436 Europe/Madrid 2012-03-04
-2509513 Villar de Rena Villar de Rena 39.07651 -5.81074 P PPLA3 ES 57 BA 06156 1540 269 Europe/Madrid 2012-03-04
-2509516 Villar del Rey Villar del Rey Villar del Rey 39.1331 -6.84762 P PPLA3 ES 57 BA 06155 2279 247 Europe/Madrid 2012-03-04
-2509517 Villar del Pozo Villar del Pozo Villar del Pozo 38.8501 -3.96405 P PPLA3 ES 54 CR 13095 121 639 Europe/Madrid 2012-03-04
-2509518 Villar del Pedroso Villar del Pedroso Villar del Pedroso 39.70631 -5.19583 P PPLA3 ES 57 CC 10213 747 495 Europe/Madrid 2012-03-04
-2509519 Villar del Humo Villar del Humo Villar del Humo 39.86667 -1.63333 P PPLA3 ES 54 CU 16258 354 975 Europe/Madrid 2012-03-04
-2509520 Villar del Arzobispo Villar del Arzobispo El Villar,Villar del Arzobispo,Villora del Arzobispo 39.73333 -0.81667 P PPLA3 ES 60 V 46258 3626 486 Europe/Madrid 2012-03-04
-2509522 Villar de la Encina Villar de la Encina Villar de la Encima,Villar de la Encina 39.63725 -2.52155 P PPLA3 ES 54 CU 16255 217 841 Europe/Madrid 2012-03-04
-2509526 Villar de Cañas Villar de Canas 39.7786 -2.56428 P PPLA3 ES 54 CU 16253 481 818 Europe/Madrid 2012-03-04
-2509528 Villaralto Villaralto Villaralto 38.45 -4.98333 P PPLA3 ES 51 CO 14072 1398 577 Europe/Madrid 2012-03-04
-2509537 Villapalacios Villapalacios Villapalacios 38.575 -2.63384 P PPLA3 ES 54 AB 02080 770 842 Europe/Madrid 2012-03-04
-2509538 Villanueva de Tapia Villanueva de Tapia Villanueva de Tapia 37.18276 -4.33383 P PPLA3 ES 51 MA 29098 1695 649 Europe/Madrid 2012-03-04
-2509539 Villanueva de San Juan Villanueva de San Juan Villanueva de San Juan 37.04954 -5.1754 P PPLA3 ES 51 SE 41100 1450 468 Europe/Madrid 2012-03-04
-2509540 Villanueva de San Carlos Villanueva de San Carlos Villanueva de San Carlos 38.62173 -3.90903 P PPLA3 ES 54 CR 13094 414 656 Europe/Madrid 2012-03-04
-2509543 Villanueva del Trabuco Villanueva del Trabuco 37.02832 -4.33891 P PPLA3 ES 51 MA 29097 5067 686 Europe/Madrid 2012-03-04
-2509544 Villanueva del Rosario Villanueva del Rosario 36.99679 -4.36535 P PPLA3 ES 51 MA 29096 3356 693 Europe/Madrid 2012-03-04
-2509545 Villanueva del Río y Minas Villanueva del Rio y Minas Minas de la Reunion,Villanueva de las Minas,Villanueva del Rio y Minas,Villanueva del Río y Minas 37.65502 -5.71369 P PPLA3 ES 51 SE 41099 5213 67 Europe/Madrid 2012-03-04
-2509549 Villanueva de los Castillejos Villanueva de los Castillejos Villanueva de los Castillejos 37.4994 -7.29118 P PPLA3 ES 51 H 21076 827 210 Europe/Madrid 2012-03-04
-2509550 Villanueva del Fresno Villanueva del Fresno Villanueva del Fresno 38.376 -7.16753 P PPLA3 ES 57 BA 06154 3582 256 Europe/Madrid 2012-03-04
-2509551 Villanueva del Duque Villanueva del Duque Villanueva del Duque 38.38333 -5 P PPLA3 ES 51 CO 14070 1669 588 Europe/Madrid 2012-03-04
-2509552 Villanueva de las Torres Villanueva de las Torres Villanueva de las Torres 37.55719 -3.08868 P PPLA3 ES 51 GR 18187 752 637 Europe/Madrid 2012-03-04
-2509553 Villanueva de la Serena Villanueva de la Serena Vil'januehva-de-la-Serena,Villanueva de la Serena,Вильянуэва-де-ла-Серена 38.97655 -5.7974 P PPLA3 ES 57 BA 06153 25838 290 Europe/Madrid 2012-03-04
-2509554 Villanueva de las Cruces Villanueva de las Cruces Villanueva de las Cruces 37.62783 -7.02359 P PPLA3 ES 51 H 21075 417 122 Europe/Madrid 2012-03-04
-2509555 Villanueva del Arzobispo Villanueva del Arzobispo Villanueva del Arzobispo 38.16842 -3.00742 P PPLA3 ES 51 J 23097 8716 683 Europe/Madrid 2012-03-04
-2509556 Villanueva del Ariscal Villanueva del Ariscal Villanueva del Ariscal 37.39623 -6.14077 P PPLA3 ES 51 SE 41098 5471 153 Europe/Madrid 2012-03-04
-2509557 Villanueva de la Reina Villanueva de la Reina Villanueva de la Reina 38.00432 -3.91603 P PPL ES 51 J 23027 3373 223 Europe/Madrid 2012-01-19
-2509558 Villanueva de la Jara Villanueva de la Jara Villanueva de la Jara 39.43333 -1.93333 P PPLA3 ES 54 CU 16251 2166 800 Europe/Madrid 2012-03-04
-2509560 Villanueva de la Fuente Villanueva de la Fuente Villanueva de la Fuente 38.69463 -2.69637 P PPLA3 ES 54 CR 13092 2602 1006 Europe/Madrid 2012-03-04
-2509562 Villanueva de Córdoba Villanueva de Cordoba Villanueva de Cordoba,Villanueva de Cordova,Villanueva de Córdoba,Villanueva de Córdova 38.32277 -4.62872 P PPLA3 ES 51 CO 14069 10057 729 Europe/Madrid 2012-03-04
-2509564 Villanueva de Castellón Villanueva de Castellon Castello de la Ribera,Castelló de la Ribera,Villanueva de Castellan,Villanueva de Castellon,Villanueva de Castellán,Villanueva de Castellón 39.07741 -0.51167 P PPL ES 60 V 46257 7239 41 Europe/Madrid 2012-01-19
-2509565 Villanueva de Bogas Villanueva de Bogas Villanueva de Bogas 39.72347 -3.65743 P PPLA3 ES 54 TO 45193 816 657 Europe/Madrid 2012-03-04
-2509566 Villanueva de Algaidas Villanueva de Algaidas 37.1835 -4.45032 P PPLA3 ES 51 MA 29095 4421 551 Europe/Madrid 2012-03-04
-2509567 Villanueva de Alcardete Villanueva de Alcardete Villanueva de Alcardete,Villanueva del Cardete 39.6732 -3.01445 P PPLA3 ES 54 TO 45192 3658 729 Europe/Madrid 2012-03-04
-2509569 Villamuelas Villamuelas Villamuelas 39.81784 -3.73461 P PPLA3 ES 54 TO 45191 729 591 Europe/Madrid 2012-03-04
-2509570 Villaminaya Villaminaya Villaminaya 39.71197 -3.87055 P PPLA3 ES 54 TO 45190 589 728 Europe/Madrid 2012-03-04
-2509571 Villamiel de Toledo Villamiel de Toledo Villamiel de Toledo 39.96482 -4.12628 P PPLA3 ES 54 TO 45189 725 483 Europe/Madrid 2012-03-04
-2509572 Villamesías Villamesias Villamesias,Villamesías 39.24568 -5.87307 P PPLA3 ES 57 CC 10209 348 369 Europe/Madrid 2012-03-04
-2509573 Villamayor de Santiago Villamayor de Santiago Villamayor de Santiago 39.73072 -2.92357 P PPLA3 ES 54 CU 16249 2766 781 Europe/Madrid 2012-03-04
-2509574 Villamayor de Calatrava Villamayor de Calatrava Villamayor de Calatrava 38.78763 -4.13774 P PPLA3 ES 54 CR 13091 618 661 Europe/Madrid 2012-03-04
-2509575 Villamartín Villamartin Villamartin,Villamartín 36.85979 -5.64485 P PPLA3 ES 51 CA 11041 12526 149 Europe/Madrid 2012-03-04
-2509576 Vilamarxant Vilamarxant Vilamarxant,Villamarchante 39.56667 -0.61667 P PPLA3 ES 60 V 46256 6730 102 Europe/Madrid 2012-03-04
-2509577 Villamanrique de la Condesa Villamanrique de la Condesa Villamanrique,Villamanrique de la Condesa 37.24481 -6.30665 P PPLA3 ES 51 SE 41097 3779 32 Europe/Madrid 2012-03-04
-2509578 Villamanrique Villamanrique Villamanrique 38.54636 -2.99729 P PPLA3 ES 54 CR 13090 1506 855 Europe/Madrid 2012-03-04
-2509579 Villamalur Villamalur Villamalur,Villamaluz 39.96667 -0.4 P PPLA3 ES 60 CS 12131 105 554 Europe/Madrid 2012-03-04
-2509580 Villamalea Villamalea Villamalea 39.36667 -1.58333 P PPLA3 ES 54 AB 02079 3955 737 Europe/Madrid 2012-03-04
-2509581 Villaluenga del Rosario Villaluenga del Rosario Villaluenga del Rosario 36.69644 -5.38601 P PPLA3 ES 51 CA 11040 495 870 Europe/Madrid 2012-03-04
-2509582 Villalpardo Villalpardo Villalpardo 39.46667 -1.63333 P PPLA3 ES 54 CU 16248 1153 763 Europe/Madrid 2012-03-04
-2509583 Villalonga Villalonga Vilallonga,Villalonga 38.88566 -0.20795 P PPLA3 ES 60 V 46255 3996 107 Europe/Madrid 2012-03-04
-2509585 Villalgordo del Marquesado Villalgordo del Marquesado Villalgordo del Marquesado 39.68245 -2.50885 P PPLA3 ES 54 CU 16247 114 869 Europe/Madrid 2012-03-04
-2509586 Villalba de los Barros Villalba de los Barros Villalba de los Barros 38.61294 -6.50914 P PPLA3 ES 57 BA 06152 1691 310 Europe/Madrid 2012-03-04
-2509587 Villalba del Alcor Villalba del Alcor Villalba del Alcor 37.39731 -6.47461 P PPLA3 ES 51 H 21074 3406 161 Europe/Madrid 2012-03-04
-2509588 Villajoyosa Villajoyosa La Vila Joiosa,Villajoyosa 38.50754 -0.23346 P PPLA3 ES 60 A 03139 33797 39 Europe/Madrid 2012-03-04
-2509589 Villahermosa Villahermosa Villahermosa 38.75023 -2.87066 P PPL ES 54 CR 13010 2422 959 Europe/Madrid 2012-01-19
-2509590 Villaharta Villaharta Villaharta 38.13333 -4.9 P PPLA3 ES 51 CO 14068 606 536 Europe/Madrid 2012-03-04
-2509592 Villagonzalo Villagonzalo Villagonzalo 38.86329 -6.19665 P PPLA3 ES 57 BA 06151 1344 237 Europe/Madrid 2012-03-04
-2509593 Villagarcía del Llano Villagarcia del Llano Villagarcia,Villagarcia del Llano,Villagarcía,Villagarcía del Llano 39.31667 -1.83333 P PPLA3 ES 54 CU 16244 939 719 Europe/Madrid 2012-03-04
-2509594 Villagarcía de la Torre Villagarcia de la Torre Villagarcia,Villagarcia de la Torre,Villagarcía de la Torre 38.3 -6.08333 P PPLA3 ES 57 BA 06150 1011 582 Europe/Madrid 2012-03-04
-2509597 Villafranca de los Caballeros Villafranca de los Caballeros 39.42824 -3.36079 P PPLA3 ES 54 TO 45187 5181 645 Europe/Madrid 2012-03-04
-2509598 Villafranca de los Barros Villafranca de los Barros Villafranca de los Barros 38.56144 -6.3381 P PPLA3 ES 57 BA 06149 13356 422 Europe/Madrid 2012-03-04
-2509599 Villafranca de Córdoba Villafranca de Cordoba Villafranca de Cordoba,Villafranca de Córdoba 37.96257 -4.54547 P PPLA3 ES 51 CO 14067 3799 143 Europe/Madrid 2012-03-04
-2509600 Vilafranca de Bonany Vilafranca de Bonany Vilafranca de Bonany,Villafranca 39.56894 3.08815 P PPLA3 ES 07 PM 07065 2521 101 Europe/Madrid 2012-03-04
-2509602 Villa de Ves Villa de Ves Villa de Ves 39.2 -1.23333 P PPLA3 ES 54 AB 02077 78 674 Europe/Madrid 2012-03-04
-2509603 Villa del Río Villa del Rio Villa del Rio,Villa del Río 37.98108 -4.29003 P PPLA3 ES 51 CO 14066 7407 168 Europe/Madrid 2012-03-04
-2509604 Villa del Rey Villa del Rey Villa del Rey 39.65956 -6.82122 P PPLA3 ES 57 CC 10208 139 340 Europe/Madrid 2012-03-04
-2509605 Villa de Don Fadrique Villa de Don Fadrique La Villa de Don Fadrique,Villa de Don Fabrique,Villa de Don Fadrique 39.61505 -3.21915 P PPL ES 54 TO 45186 4200 672 Europe/Madrid 2012-01-19
-2509606 Villacarrillo Villacarrillo Villacarillo,Villacarrillo 38.1156 -3.0848 P PPLA3 ES 51 J 23095 11294 799 Europe/Madrid 2012-03-04
-2509607 Es Castell Es Castell Es Castell,Vilacarlos,Villacarlos 39.8776 4.2899 P PPLA3 ES 07 PM 07064 7440 19 Europe/Madrid 2012-03-04
-2509608 Villacañas Villacanas 39.62367 -3.33813 P PPLA3 ES 54 TO 45185 10645 677 Europe/Madrid 2012-03-04
-2509609 Villablanca Villablanca Villablanca 37.30239 -7.34413 P PPLA3 ES 51 H 21073 2286 87 Europe/Madrid 2012-03-04
-2509615 Vilches Vilches Vilches 38.20695 -3.51025 P PPLA3 ES 51 J 23094 4929 525 Europe/Madrid 2012-03-04
-2509617 Vilaflor Vilaflor Vilaflor,Villaflor 28.15623 -16.63592 P PPLA3 ES 53 TF 38052 1981 1364 Atlantic/Canary 2012-03-04
-2509650 Vícar Vicar 36.83155 -2.64273 P PPLA3 ES 51 AL 04102 22853 278 Europe/Madrid 2012-03-04
-2509660 Viator Viator 36.89006 -2.42695 P PPLA3 ES 51 AL 04101 3945 75 Europe/Madrid 2012-03-04
-2509669 Vergel Vergel El Verger,Vergel,el verger 38.84709 0.01034 P PPL ES 60 A 03063 4372 23 Europe/Madrid 2006-04-02
-2509693 Vera Vera 37.24345 -1.85905 P PPLA3 ES 51 AL 04100 13985 75 Europe/Madrid 2012-03-04
-2509710 Ventas de Huelma Ventas de Huelma Ventas de Huelma 37.0684 -3.81983 P PPLA3 ES 51 GR 18185 659 858 Europe/Madrid 2012-03-04
-2509713 Ventas con Peña Aguilera Ventas con Pena Aguilera Ventas con Pena Aguilera,Ventas con Peña Aguilera 39.61033 -4.23128 P PPL ES 54 TO 45182 1386 794 Europe/Madrid 2012-01-19
-2509728 Venta del Moro Venta del Moro Venta del Moro 39.48333 -1.35 P PPLA3 ES 60 V 46254 1493 754 Europe/Madrid 2012-03-04
-2509768 Vélez Rubio Velez Rubio Velez Rubio,Velez-Rubio,Vélez Rubio,Vélez-Rubio 37.64844 -2.07686 P PPL ES 51 AL 04098 7045 828 Europe/Madrid 2012-01-19
-2509769 Vélez-Málaga Velez-Malaga Veles-Malaga,Velez-Malaga,Vélez-Màlaga,Vélez-Málaga,Велес-Малага 36.77262 -4.10045 P PPLA3 ES 51 MA 29094 74190 39 Europe/Madrid 2012-03-04
-2509771 Vélez de Benaudalla Velez de Benaudalla Velez Benahudalla,Velez Benandalla,Velez de Benaudalla,Velez de Benaudilla,Vélez Benandalla,Vélez de Benaudalla 36.83244 -3.51539 P PPLA3 ES 51 GR 18184 2618 181 Europe/Madrid 2012-03-04
-2509772 Vélez Blanco Velez Blanco Velez Blanco,Velez-Blanco,Vélez Blanco 37.69178 -2.09587 P PPL ES 51 AL 04098 2044 1073 Europe/Madrid 2012-01-19
-2509779 Velefique Velefique Velefique 37.19407 -2.40155 P PPLA3 ES 51 AL 04097 246 916 Europe/Madrid 2012-03-04
-2509781 Velada Velada Velada 39.97687 -4.97641 P PPLA3 ES 54 TO 45181 2429 434 Europe/Madrid 2012-03-04
-2509783 Vejer de la Frontera Vejer de la Frontera Vejer de la Frontera 36.24456 -5.96953 P PPLA3 ES 51 CA 11039 12973 164 Europe/Madrid 2012-03-04
-2509799 Vega de San Mateo Vega de San Mateo San Mateo,Vega de San Mateo 28.00892 -15.5333 P PPLA3 ES 53 GC 35033 7687 848 Atlantic/Canary 2012-03-04
-2509819 Vara de Rey Vara de Rey Vara de Rey 39.42595 -2.29404 P PPLA3 ES 54 CU 16238 629 820 Europe/Madrid 2012-03-04
-2509831 Valverdejo Valverdejo Valverdejo 39.61667 -2.01667 P PPLA3 ES 54 CU 16237 124 897 Europe/Madrid 2012-03-04
-2509832 Valverde de Mérida Valverde de Merida Valverde de Merida,Valverde de Mérida 38.91122 -6.21999 P PPLA3 ES 57 BA 06145 1123 268 Europe/Madrid 2012-03-04
-2509833 Valverde de Llerena Valverde de Llerena Valverde de Llerena 38.21667 -5.81667 P PPLA3 ES 57 BA 06144 770 601 Europe/Madrid 2012-03-04
-2509834 Valverde de Leganés Valverde de Leganes Valverde de Leganes,Valverde de Leganés 38.67059 -6.98036 P PPLA3 ES 57 BA 06143 3876 295 Europe/Madrid 2012-03-04
-2509835 Valverde del Camino Valverde del Camino Valverde del Camino 37.57511 -6.75432 P PPLA3 ES 51 H 21072 12780 286 Europe/Madrid 2012-03-04
-2509836 Valverde de Júcar Valverde de Jucar Valverde de Jucar,Valverde de Júcar,Valverde del Jucar,Valverde del Júcar 39.71866 -2.22135 P PPLA3 ES 54 CU 16236 1372 845 Europe/Madrid 2012-03-04
-2509837 Valverde de Burguillos Valverde de Burguillos Valverde de Burguillos 38.3271 -6.53648 P PPLA3 ES 57 BA 06142 325 415 Europe/Madrid 2012-03-04
-2509841 Valverde Valverde Val'verde,Вальверде 27.80628 -17.91578 P PPLA3 ES 53 TF 38048 5000 603 Atlantic/Canary 2012-03-04
-2509846 Valsequillo de Gran Canaria Valsequillo de Gran Canaria Valsequillo,Valsequillo de Gran Canaria 27.98562 -15.49725 P PPLA3 ES 53 GC 35031 8635 601 Atlantic/Canary 2012-03-04
-2509853 Válor Valor 36.99618 -3.08287 P PPLA3 ES 51 GR 18183 743 896 Europe/Madrid 2012-03-04
-2509864 Valleseco Valleseco Valleseco 28.0433 -15.57623 P PPLA3 ES 53 GC 35032 4116 1067 Atlantic/Canary 2012-03-04
-2509869 Vallés Valles Valles,Vallès,Vallés 38.98518 -0.55696 P PPLA3 ES 60 V 46253 95 121 Europe/Madrid 2012-03-04
-2509887 Vallehermosa Vallehermosa Vallehermosa,Vallehermoso 28.17944 -17.26664 P PPL ES 53 TF 38050 3303 187 Atlantic/Canary 2012-01-19
-2509891 Valle de Santa Ana Valle de Santa Ana Valle de Santa Ana 38.36637 -6.7886 P PPLA3 ES 57 BA 06148 1200 503 Europe/Madrid 2012-03-04
-2509894 Valle de Matamoros Valle de Matamoros Valle de Matamoros 38.37889 -6.80371 P PPLA3 ES 57 BA 06147 446 602 Europe/Madrid 2012-03-04
-2509902 Valle de la Serena Valle de la Serena Valle de la Serena 38.7101 -5.79846 P PPLA3 ES 57 BA 06146 1472 437 Europe/Madrid 2012-03-04
-2509929 Valldemossa Valldemossa Valldemosa,Valldemossa,fa de mo sa,法德摩薩 39.71042 2.6223 P PPLA3 ES 07 PM 07063 1910 412 Europe/Madrid 2012-03-04
-2509930 Vall de Ebo Vall de Ebo Vall d'Ebo,Vall de Ebo 38.80561 -0.1589 P PPLA3 ES 60 A 03135 346 396 Europe/Madrid 2012-03-04
-2509932 Vall de Almonacid Vall de Almonacid La Vall d'Almonesir,Vall de Almonacid 39.9 -0.45 P PPLA3 ES 60 CS 12125 261 467 Europe/Madrid 2012-03-04
-2509934 Vallada Vallada Vallada 38.89575 -0.69104 P PPLA3 ES 60 V 46251 3339 291 Europe/Madrid 2012-03-04
-2509937 Valhermoso de la Fuente Valhermoso de la Fuente Valhermoso,Valhermoso de la Fuente 39.56667 -2.01667 P PPLA3 ES 54 CU 16231 44 829 Europe/Madrid 2012-03-04
-2509942 Valenzuela de Calatrava Valenzuela de Calatrava Valenzuela de Calatrava 38.85254 -3.7721 P PPLA3 ES 54 CR 13088 788 659 Europe/Madrid 2012-03-04
-2509944 Valenzuela Valenzuela 37.7756 -4.22038 P PPLA3 ES 51 CO 14063 1387 327 Europe/Madrid 2011-07-31
-2509946 Valencina de la Concepción Valencina de la Concepcion Valencina,Valencina de la Concepcion,Valencina de la Concepción,Valencina del Alcor 37.41618 -6.07422 P PPLA3 ES 51 SE 41096 7343 151 Europe/Madrid 2012-03-04
-2509947 Valencia del Ventoso Valencia del Ventoso Valencia de Ventoso,Valencia del Barrial,Valencia del Mentoso,Valencia del Ventoso 38.26667 -6.46667 P PPLA3 ES 57 BA 06141 2235 522 Europe/Madrid 2012-03-04
-2509948 Valencia del Mombuey Valencia del Mombuey Valencia del Mombuey,Valencita 38.24243 -7.11965 P PPLA3 ES 57 BA 06140 808 295 Europe/Madrid 2012-03-04
-2509949 Valencia de las Torres Valencia de las Torres Valencia de las Torres 38.40518 -6.00403 P PPLA3 ES 57 BA 06139 711 512 Europe/Madrid 2012-03-04
-2509950 Valencia de Alcántara Valencia de Alcantara Valencia de Alcantara,Valencia de Alcántara,Valencia del Alcantara 39.41148 -7.24435 P PPLA3 ES 57 CC 10203 6129 465 Europe/Madrid 2012-03-04
-2509954 Valencia Valencia Balenzia,Lungsod ng Valencia,Lungsod ng València,VLC,Valence,Valencia,Valencia - Valencia,Valencia - València,Valencija,Valencio,Valensia,Valensija,Valensiya,Valentia,Valentzia,Valenza,València,Valéncia,Valência,Walencja,ba lun xi ya,barenshia,blnsyt,valensia,wlnsyh,Валенсия,ולנסיה,بلنسية,ვალენსია,バレンシア,巴倫西亞 39.46975 -0.37739 P PPLA ES 60 V 46250 814208 15 23 Europe/Madrid 2011-06-16
-2509961 Valdeverdeja Valdeverdeja Valdeverdeja,Valdeverja,Valle la Verja,Valverdeja 39.79635 -5.24544 P PPLA3 ES 54 TO 45179 721 475 Europe/Madrid 2012-03-04
-2509964 Valdetorres Valdetorres Valdetorres 38.91542 -6.06765 P PPLA3 ES 57 BA 06138 1301 243 Europe/Madrid 2012-03-04
-2509974 Valdés Valdes 36.75835 -4.24235 P PPL ES 51 MA 29094 13529 293 Europe/Madrid 2010-04-22
-2509980 Valdepeñas de Jaén Valdepenas de Jaen Valdepenas,Valdepenas de Jaen,Valdepeñas,Valdepeñas de Jaén 37.58903 -3.8145 P PPLA3 ES 51 J 23093 4331 963 Europe/Madrid 2012-03-04
-2509982 Valdepeñas Valdepenas Val'depen'jase,Valdepenas,Valdepeñas,Yaldepenas,Вальдепеньясе 38.76211 -3.38483 P PPLA3 ES 54 CR 13087 31147 714 Europe/Madrid 2012-03-04
-2509986 Valdemorales Valdemorales Valdemorales 39.20588 -6.06622 P PPLA3 ES 57 CC 10201 239 433 Europe/Madrid 2012-03-04
-2509991 Valdemanco del Esteras Valdemanco del Esteras Valdemanco del Esteras 38.93858 -4.8292 P PPLA3 ES 54 CR 13086 0 551 Europe/Madrid 2012-03-04
-2510000 Valdelarco Valdelarco Valdelarco 37.94877 -6.68202 P PPLA3 ES 51 H 21071 0 624 Europe/Madrid 2012-03-04
-2510007 Valdelacasa de Tajo Valdelacasa de Tajo Valdelacasa de Tajo 39.72588 -5.28296 P PPLA3 ES 57 CC 10200 500 459 Europe/Madrid 2012-03-04
-2510015 Valdehúncar Valdehuncar Valdehuncar,Valdehúncar 39.83659 -5.52307 P PPLA3 ES 57 CC 10199 207 372 Europe/Madrid 2012-03-04
-2510028 Valdeganga Valdeganga Valdeganga 39.13514 -1.67703 P PPLA3 ES 54 AB 02075 1871 667 Europe/Madrid 2012-03-04
-2510031 Valdefuentes Valdefuentes Valdefuentes 39.27433 -6.12183 P PPLA3 ES 57 CC 10198 1572 485 Europe/Madrid 2012-03-04
-2510038 Valdecañas de Tajo Valdecanas de Tajo Valdecanas de Tajo,Valdecañas de Tajo 39.75919 -5.61952 P PPLA3 ES 57 CC 10197 205 371 Europe/Madrid 2012-03-04
-2510045 Valdecaballeros Valdecaballeros Valdecaballero,Valdecaballeros 39.24289 -5.19 P PPLA3 ES 57 BA 06137 1251 406 Europe/Madrid 2012-03-04
-2510073 Utrera Utrera Utrera,Утрера 37.18516 -5.78093 P PPLA3 ES 51 SE 41095 50665 52 Europe/Madrid 2012-03-04
-2510075 Utiel Utiel Utiel 39.56667 -1.2 P PPLA3 ES 60 V 46249 12420 738 Europe/Madrid 2012-03-04
-2510079 Usagre Usagre Usagre 38.35 -6.16667 P PPLA3 ES 57 BA 06136 1992 567 Europe/Madrid 2012-03-04
-2510081 Urrácal Urracal Urracal 37.3974 -2.36485 P PPLA3 ES 51 AL 04096 365 749 Europe/Madrid 2012-03-04
-2510083 Urda Urda Urda 39.4118 -3.71493 P PPLA3 ES 54 TO 45177 3123 770 Europe/Madrid 2012-03-04
-2510098 Umbrete Umbrete Umbrete 37.36881 -6.15847 P PPLA3 ES 51 SE 41094 5527 122 Europe/Madrid 2012-03-04
-2510100 Uleila del Campo Uleila del Campo Uleila,Uleila de Campo,Uleila del Campo 37.1846 -2.20491 P PPLA3 ES 51 AL 04095 953 618 Europe/Madrid 2012-03-04
-2510102 Ulea Ulea Ulea 38.14045 -1.33007 P PPLA3 ES 31 MU 30040 983 132 Europe/Madrid 2012-03-04
-2510103 Ugíjar Ugijar 36.96087 -3.05523 P PPLA3 ES 51 GR 18182 2546 548 Europe/Madrid 2012-03-04
-2510106 Uclés Ucles Ucles,Uclés 39.97938 -2.86143 P PPLA3 ES 54 CU 16218 276 846 Europe/Madrid 2012-03-04
-2510112 Ubrique Ubrique Ubrique 36.67778 -5.446 P PPLA3 ES 51 CA 11038 16979 325 Europe/Madrid 2012-03-04
-2510116 Úbeda Ubeda Ubeda,ubeda,Úbeda,ウベダ 38.01328 -3.3705 P PPLA3 ES 51 J 23092 35649 766 Europe/Madrid 2012-03-04
-2510123 Turrillas Turrillas Turrillas 37.02948 -2.26607 P PPLA3 ES 51 AL 04094 247 845 Europe/Madrid 2012-03-04
-2510124 Turre Turre 37.15224 -1.89497 P PPLA3 ES 51 AL 04093 2746 50 Europe/Madrid 2012-03-04
-2510127 Turleque Turleque Torleque,Turleque 39.60138 -3.61404 P PPLA3 ES 54 TO 45175 921 694 Europe/Madrid 2012-03-04
-2510128 Turís Turis Toris,Torís,Turis,Turís 39.38333 -0.7 P PPLA3 ES 60 V 46248 5305 252 Europe/Madrid 2012-03-04
-2510137 Tuineje Tuineje Tuineje 28.32372 -14.04722 P PPLA3 ES 53 GC 35030 13632 185 Atlantic/Canary 2012-03-04
-2510140 Tuéjar Tuejar Toixa,Tuejar,Tuéjar 39.76667 -1.03333 P PPLA3 ES 60 V 46247 1212 681 Europe/Madrid 2012-03-04
-2510145 Trujillo Trujillo Trujillo,toruhiryo,トルヒーリョ 39.45786 -5.88203 P PPLA3 ES 57 CC 10195 9317 520 Europe/Madrid 2012-03-04
-2510147 Trujillanos Trujillanos Trujillanos 38.95233 -6.25759 P PPLA3 ES 57 BA 06135 1347 255 Europe/Madrid 2012-03-04
-2510165 Trigueros Trigueros Trigueros 37.38606 -6.8268 P PPLA3 ES 51 H 21070 7221 75 Europe/Madrid 2012-03-04
-2510168 Tribaldos Tribaldos Tribaldos 39.97264 -2.89809 P PPLA3 ES 54 CU 16217 124 830 Europe/Madrid 2012-03-04
-2510175 Trevélez Trevelez Trevelez,Trevélez 37.00037 -3.26544 P PPLA3 ES 51 GR 18180 839 1468 Europe/Madrid 2012-03-04
-2510180 Tresjuncos Tresjuncos Tresjuncos 39.70087 -2.75502 P PPLA3 ES 54 CU 16216 438 814 Europe/Madrid 2012-03-04
-2510186 Trebujena Trebujena Trebujena 36.87075 -6.17586 P PPLA3 ES 51 CA 11037 6806 73 Europe/Madrid 2012-03-04
-2510202 Trasierra Trasierra Trasierra 38.18333 -6 P PPLA3 ES 57 BA 06134 0 638 Europe/Madrid 2012-03-04
-2510221 Tous Tous Tous 39.13951 -0.58777 P PPLA3 ES 60 V 46246 1114 98 Europe/Madrid 2012-03-04
-2510223 Totanés Totanes Totanes,Totanés 39.71057 -4.22655 P PPLA3 ES 54 TO 45174 398 726 Europe/Madrid 2012-03-04
-2510224 Totana Totana Totana,Тотана 37.7688 -1.50229 P PPLA3 ES 31 MU 30039 29211 262 Europe/Madrid 2012-03-04
-2510240 Torrubia del Castillo Torrubia del Castillo Torrubia del Castillo 39.65852 -2.31172 P PPLA3 ES 54 CU 16213 39 849 Europe/Madrid 2012-03-04
-2510241 Torrubia del Campo Torrubia del Campo Torrubia del Campo 39.89749 -2.96133 P PPLA3 ES 54 CU 16212 338 805 Europe/Madrid 2012-03-04
-2510245 Torrox Torrox 36.75793 -3.95233 P PPLA3 ES 51 MA 29091 16890 147 Europe/Madrid 2012-03-04
-2510249 Torrijos Torrijos Torrijas,Torrijos 39.98194 -4.28349 P PPLA3 ES 54 TO 45173 13117 531 Europe/Madrid 2012-03-04
-2510251 Torrico Torrico Torrico 39.82918 -5.22581 P PPLA3 ES 54 TO 45172 843 441 Europe/Madrid 2012-03-04
-2510253 Torrevieja Torrevieja Torrev'ekha,Torrevella,Torrevella de la Mata,Torrevieja,Торревьеха 37.97872 -0.68222 P PPLA3 ES 60 A 03133 101792 14 Europe/Madrid 2012-03-04
-2510266 Torres Torres 37.78537 -3.50902 P PPLA3 ES 51 J 23090 1749 885 Europe/Madrid 2012-03-04
-2510268 Torrequemada Torrequemada Torrequemada 39.36664 -6.22052 P PPLA3 ES 57 CC 10194 611 440 Europe/Madrid 2012-03-04
-2510270 Torreperogil Torreperogil Torreperogil 38.0354 -3.28998 P PPLA3 ES 51 J 23088 6786 756 Europe/Madrid 2012-03-04
-2510271 Torre-Pacheco Torre-Pacheco Torre-Pacheco,Torre-Pacheko,Торре-Пачеко 37.74293 -0.95396 P PPL ES 31 MU 30030 31495 43 Europe/Madrid 2012-01-19
-2510272 Torreorgaz Torreorgaz Torreorgaz 39.3831 -6.24941 P PPLA3 ES 57 CC 10193 1683 427 Europe/Madrid 2012-03-04
-2510274 Torrenueva Torrenueva 38.6396 -3.36259 P PPLA3 ES 54 CR 13085 3075 734 Europe/Madrid 2012-03-04
-2510279 Torrent Torrent Torrent,Torrente 39.43705 -0.46546 P PPLA3 ES 60 V 46244 78543 51 Europe/Madrid 2012-03-04
-2510281 Torremolinos Torremolinos Toremolinos-Malaga,Toremolinos-Málaga,Torremolinos,Torremolinos-Malaga,Torremolinos-Málaga,Торремолинос 36.62035 -4.49976 P PPLA3 ES 51 MA 29901 65448 47 Europe/Madrid 2012-03-04
-2510283 Torremocha Torremocha Torremocha 39.34565 -6.17334 P PPLA3 ES 57 CC 10192 1135 445 Europe/Madrid 2012-03-04
-2510287 Torremayor Torremayor Torremayor 38.9014 -6.53858 P PPLA3 ES 57 BA 06132 992 196 Europe/Madrid 2012-03-04
-2510290 Torrella Torrella Torrella 38.98446 -0.56727 P PPLA3 ES 60 V 46243 166 128 Europe/Madrid 2012-03-04
-2510293 Torrejón el Rubio Torrejon el Rubio Torrejon,Torrejon el Rubio,Torrejón,Torrejón el Rubio 39.77068 -6.0126 P PPLA3 ES 57 CC 10190 589 306 Europe/Madrid 2012-03-04
-2510294 Torrejoncillo del Rey Torrejoncillo del Rey Torrejoncillo del Rey 40.0084 -2.57107 P PPLA3 ES 54 CU 16211 646 936 Europe/Madrid 2012-03-04
-2510295 Torrejoncillo Torrejoncillo Torrejoncillo 39.89675 -6.46712 P PPLA3 ES 57 CC 10189 3331 336 Europe/Madrid 2012-03-04
-2510301 Torredonjimeno Torredonjimeno Torredongimeno,Torredonjimeno 37.76748 -3.95776 P PPLA3 ES 51 J 23087 14181 596 Europe/Madrid 2012-03-04
-2510303 Torre de Santa María Torre de Santa Maria Torre de Santa Maria,Torre de Santa María 39.25441 -6.1161 P PPLA3 ES 57 CC 10188 666 490 Europe/Madrid 2012-03-04
-2510306 Torre de Miguel Sesmero Torre de Miguel Sesmero Torre de Miguel Sesmero 38.61914 -6.7958 P PPLA3 ES 57 BA 06131 1197 322 Europe/Madrid 2012-03-04
-2510310 Torre del Campo Torre del Campo Torre del Compo 37.77051 -3.89731 P PPLA3 ES 51 J 23086 14627 645 Europe/Madrid 2012-03-04
-2510314 Torre de Juan Abad Torre de Juan Abad Torre de Juan Abad 38.58417 -3.05994 P PPLA3 ES 54 CR 13084 1332 829 Europe/Madrid 2012-03-04
-2510319 Torrecillas de la Tiesa Torrecillas de la Tiesa Torrecilla de la Tiesa,Torrecillas de la Tiesa 39.56837 -5.74238 P PPLA3 ES 57 CC 10186 1185 503 Europe/Madrid 2012-03-04
-2510320 Torrecilla de la Jara Torrecilla de la Jara Torrecilla,Torrecilla de la Jara 39.70425 -4.77186 P PPLA3 ES 54 TO 45170 317 642 Europe/Madrid 2012-03-04
-2510328 Torre-Cardela Torre-Cardela 37.50456 -3.35609 P PPLA3 ES 51 GR 18178 1107 1218 Europe/Madrid 2012-03-04
-2510329 Torrecampo Torrecampo Torrecampo 38.46667 -4.66667 P PPLA3 ES 51 CO 14062 1384 601 Europe/Madrid 2011-07-31
-2510330 Torreblascopedro Torreblascopedro Torreblascopedro 37.9975 -3.6378 P PPLA3 ES 51 J 23085 2713 333 Europe/Madrid 2012-03-04
-2510336 Torre Alháquime Torre Alhaquime Torre Alhaquime,Torre Alháquime 36.91588 -5.23381 P PPLA3 ES 51 CA 11036 875 469 Europe/Madrid 2012-03-04
-2510347 Torralba de Oropesa Torralba de Oropesa Torralba de Oropesa 39.93384 -5.15404 P PPLA3 ES 54 TO 45169 267 371 Europe/Madrid 2012-03-04
-2510348 Torralba del Pinar Torralba del Pinar Torralba del Pinar 39.98333 -0.43333 P PPLA3 ES 60 CS 12116 62 805 Europe/Madrid 2012-03-04
-2510349 Torralba de Calatrava Torralba de Calatrava Torralba,Torralba de Calatrava 39.01785 -3.75105 P PPL ES 54 CR 13039 2993 622 Europe/Madrid 2012-01-19
-2510364 Tormos Tormos Tormos 38.80143 -0.0716 P PPLA3 ES 60 A 03131 307 127 Europe/Madrid 2012-03-04
-2510370 Toril Toril 39.89749 -5.7795 P PPLA3 ES 57 CC 10182 231 258 Europe/Madrid 2012-03-04
-2510379 Torás Toras Toras,Torás 39.91667 -0.68333 P PPLA3 ES 60 CS 12114 280 727 Europe/Madrid 2012-03-04
-2510392 Tomelloso Tomelloso Tomel'oso,Томельосо 39.15218 -3.02431 P PPL ES 54 CR 13019 38095 668 Europe/Madrid 2010-04-22
-2510394 Tomares Tomares Tomares 37.37281 -6.04589 P PPLA3 ES 51 SE 41093 22772 76 Europe/Madrid 2012-03-04
-2510398 Tolox Tolox Tolox 36.68721 -4.90511 P PPLA3 ES 51 MA 29090 2261 313 Europe/Madrid 2012-03-04
-2510404 Tollos Tollos Tollos 38.75629 -0.27466 P PPLA3 ES 60 A 03130 31 769 Europe/Madrid 2012-03-04
-2510409 Toledo Toledo Tolede,Toledo,Toletum,Tolède,tlytlt,toredo,tuo lai duo,twldw,Толедо,טולדו,طليطلة,トレド,托萊多 39.8581 -4.02263 P PPLA ES 54 TO 45168 82291 533 Europe/Madrid 2011-07-26
-2510419 Tocina Tocina Tocina 37.60904 -5.73403 P PPLA3 ES 51 SE 41092 9067 29 Europe/Madrid 2012-03-04
-2510426 Tobarra Tobarra Tobarra 38.59213 -1.69191 P PPLA3 ES 54 AB 02074 7884 650 Europe/Madrid 2012-03-04
-2510430 Titaguas Titaguas Titaguas,Titaguees,Titagües 39.86667 -1.08333 P PPLA3 ES 60 V 46241 544 838 Europe/Madrid 2012-03-04
-2510455 Tinajo Tinajo Tinajo 29.06326 -13.67647 P PPLA3 ES 53 GC 35029 5228 217 Atlantic/Canary 2012-03-04
-2510463 Tíjola Tijola Tijola,Tíjola 37.34606 -2.43326 P PPL ES 51 AL 04018 3724 689 Europe/Madrid 2012-01-19
-2510468 Tijarafe Tijarafe Tijarafe,Tirajafe 28.7 -17.95 P PPLA3 ES 53 TF 38047 2648 623 Atlantic/Canary 2011-07-31
-2510484 Tibi Tibi Maigmo,Tibi 38.53072 -0.57776 P PPLA3 ES 60 A 03129 1518 534 Europe/Madrid 2012-03-04
-2510485 Tías Tias Tias,Tías 28.96108 -13.64502 P PPLA3 ES 53 GC 35028 19849 177 Atlantic/Canary 2012-03-04
-2510488 Teulada Teulada Teulada 38.7294 0.10383 P PPLA3 ES 60 A 03128 14620 186 Europe/Madrid 2012-03-04
-2510497 Terrinches Terrinches Terrinches 38.61057 -2.84216 P PPLA3 ES 54 CR 13081 1031 949 Europe/Madrid 2012-03-04
-2510506 Terrateig Terrateig Terrateig 38.89453 -0.31993 P PPLA3 ES 60 V 46240 393 264 Europe/Madrid 2012-03-04
-2510507 Terque Terque Terque 36.98393 -2.59679 P PPLA3 ES 51 AL 04091 447 293 Europe/Madrid 2012-03-04
-2510508 Teror Teror Teror 28.06062 -15.54909 P PPLA3 ES 53 GC 35027 12926 634 Atlantic/Canary 2012-03-04
-2510540 Tembleque Tembleque Tembleque 39.69541 -3.50429 P PPLA3 ES 54 TO 45166 2202 640 Europe/Madrid 2012-03-04
-2510542 Telde Telde Tel'de,Telde,Тельде 27.99242 -15.41915 P PPLA3 ES 53 GC 35026 100015 160 Atlantic/Canary 2012-03-04
-2510558 Tejeda Tejeda Tejada 27.99508 -15.61543 P PPL ES 53 GC 35005 2338 1046 Atlantic/Canary 2008-12-23
-2510573 Teguise Teguise Teguise 29.06049 -13.56398 P PPLA3 ES 53 GC 35024 19418 286 Atlantic/Canary 2012-03-04
-2510574 Tegueste Tegueste Tegueste 28.51667 -16.31667 P PPLA3 ES 53 TF 38046 10666 511 Atlantic/Canary 2012-03-04
-2510579 Tébar Tebar Tebar,Tébar 39.5 -2.16667 P PPLA3 ES 54 CU 16204 406 881 Europe/Madrid 2012-03-04
-2510580 Teba Teba Teba 36.98358 -4.91913 P PPLA3 ES 51 MA 29089 4304 547 Europe/Madrid 2012-03-04
-2510582 Tazacorte Tazacorte Tazacorte 28.64186 -17.93394 P PPLA3 ES 53 TF 38045 5670 111 Atlantic/Canary 2012-03-04
-2510599 Tarifa Tarifa Tarifa,Тарифа 36.01393 -5.60695 P PPLA3 ES 51 CA 11035 17793 22 Europe/Madrid 2012-03-04
-2510602 Tarazona de la Mancha Tarazona de la Mancha Tarazona,Tarazona de la Mancha 39.25 -1.91667 P PPLA3 ES 54 AB 02073 6514 722 Europe/Madrid 2012-03-04
-2510621 Tanque Tanque 28.36667 -16.83333 P PPL ES 53 TF 38010 3068 141 Atlantic/Canary 2006-01-27
-2510623 Tamurejo Tamurejo Tamurejo 38.98333 -4.93333 P PPLA3 ES 57 BA 06130 266 570 Europe/Madrid 2011-07-31
-2510685 Táliga Taliga Taliga,Táliga 38.52861 -7.01713 P PPLA3 ES 57 BA 06129 705 305 Europe/Madrid 2012-03-04
-2510686 Tales Tales Tales 39.93333 -0.3 P PPLA3 ES 60 CS 12109 770 381 Europe/Madrid 2012-03-04
-2510687 Talayuelas Talayuelas Talayuelas 39.85 -1.28333 P PPLA3 ES 54 CU 16202 0 990 Europe/Madrid 2012-03-04
-2510689 Talayuela Talayuela Talayuela 39.98701 -5.60982 P PPL ES 57 CC 10131 10189 290 Europe/Madrid 2012-01-19
-2510692 Talavera La Real Talavera La Real Talavera La Real 38.87794 -6.76856 P PPL ES 57 BA 06128 5204 188 Europe/Madrid 2012-02-02
-2510693 Talavera de la Reina Talavera de la Reina Aebura,Ebora,Talavera de la Reina,Talavera del Tajo 39.96348 -4.83076 P PPLA3 ES 54 TO 45165 88856 380 Europe/Madrid 2012-03-29
-2510699 Talaván Talavan Talaban,Talabán,Talavan,Talaván 39.71715 -6.28146 P PPLA3 ES 57 CC 10178 926 375 Europe/Madrid 2012-03-04
-2510700 Talarrubias Talarrubias Talarrubia,Talarrubias 39.03697 -5.23422 P PPLA3 ES 57 BA 06127 3599 440 Europe/Madrid 2012-03-04
-2510716 Tahal Tahal Tahal 37.22797 -2.2847 P PPLA3 ES 51 AL 04090 393 1010 Europe/Madrid 2012-03-04
-2510725 Tacoronte Tacoronte Tacoronte 28.47688 -16.41016 P PPLA3 ES 53 TF 38043 23562 569 Atlantic/Canary 2012-03-04
-2510743 Tavernes de la Valldigna Tavernes de la Valldigna Tabernas,Tabernes de Valldigna,Tavernes de la Valldigna 39.06667 -0.26667 P PPLA3 ES 60 V 46238 18195 14 Europe/Madrid 2012-03-04
-2510744 Tavernes Blanques Tavernes Blanques Tabernes,Tabernes Blanques,Tavernes Blanques 39.5 -0.36667 P PPLA3 ES 60 V 46237 9033 9 Europe/Madrid 2012-03-04
-2510746 Tabernas Tabernas Tabernas 37.04992 -2.39084 P PPLA3 ES 51 AL 04088 3241 404 Europe/Madrid 2012-03-04
-2510758 Sumacàrcer Sumacarcer Sumacarcel,Sumacarcer,Sumacàrcer,Sumacárcel 39.1 -0.63333 P PPLA3 ES 60 V 46236 1308 43 Europe/Madrid 2012-03-04
-2510762 Suflí Sufli Sufli,Suflí 37.33866 -2.38817 P PPLA3 ES 51 AL 04087 228 640 Europe/Madrid 2012-03-04
-2510764 Sueca Sueca Sueca 39.2026 -0.31114 P PPLA3 ES 60 V 46235 28908 14 Europe/Madrid 2012-03-04
-2510780 Sot de Ferrer Sot de Ferrer Sot de Ferrer 39.8 -0.4 P PPLA3 ES 60 CS 12107 504 236 Europe/Madrid 2012-03-04
-2510781 Sot de Chera Sot de Chera Sot de Chera,Sot de Xera 39.63333 -0.9 P PPLA3 ES 60 V 46234 381 430 Europe/Madrid 2012-03-04
-2510785 Sorvilán Sorvilan Sorvilan,Sorvilán 36.79505 -3.26769 P PPLA3 ES 51 GR 18177 746 790 Europe/Madrid 2012-03-04
-2510787 Sorihuela del Guadalimar Sorihuela del Guadalimar Sorihuela del Guadalimar 38.24062 -3.0536 P PPLA3 ES 51 J 23084 1232 650 Europe/Madrid 2012-03-04
-2510793 Sorbas Sorbas Sorbas 37.09761 -2.12349 P PPLA3 ES 51 AL 04086 2679 399 Europe/Madrid 2012-03-04
-2510794 Soportújar Soportujar 36.92863 -3.40542 P PPLA3 ES 51 GR 18176 273 950 Europe/Madrid 2012-03-04
-2510799 Son Servera Son Servera Son Servera 39.62073 3.36008 P PPLA3 ES 07 PM 07062 12215 82 Europe/Madrid 2012-03-04
-2510801 Sonseca Sonseca Sonseca con Casalgordo 39.67747 -3.97448 P PPL ES 54 TO 45124 11265 755 Europe/Madrid 2010-05-23
-2510809 Soneja Soneja Soneixa,Soneja 39.81667 -0.41667 P PPLA3 ES 60 CS 12106 1347 251 Europe/Madrid 2012-03-04
-2510815 Somontín Somontin Somolin,Somolín,Somontin,Somontín 37.39176 -2.38828 P PPLA3 ES 51 AL 04085 552 821 Europe/Madrid 2012-03-04
-2510821 Sóller Soller Soller,Sóller 39.76623 2.71521 P PPLA3 ES 07 PM 07061 13942 45 Europe/Madrid 2012-03-04
-2510822 Sollana Sollana Sollana 39.28333 -0.36667 P PPLA3 ES 60 V 46233 4515 0 Europe/Madrid 2012-03-04
-2510839 Solana de los Barros Solana de los Barros Solana,Solana de los Barros 38.72527 -6.539 P PPLA3 ES 57 BA 06126 2608 264 Europe/Madrid 2012-03-04
-2510852 Socuéllamos Socuellamos Socuellamos,Socuéllamos 39.28581 -2.79206 P PPLA3 ES 54 CR 13078 13163 682 Europe/Madrid 2012-03-04
-2510853 Socovos Socovos 38.33232 -1.98485 P PPLA3 ES 54 AB 02072 1909 741 Europe/Madrid 2012-03-04
-2510861 Sisante Sisante Sisante 39.40849 -2.20173 P PPLA3 ES 54 CU 16198 1775 743 Europe/Madrid 2012-03-04
-2510864 Siruela Siruela Siruela 38.97718 -5.04969 P PPLA3 ES 57 BA 06125 2218 519 520 Europe/Madrid 2012-03-04
-2510868 Sineu Sineu Sineu 39.64254 3.01034 P PPLA3 ES 07 PM 07060 3053 147 Europe/Madrid 2012-03-04
-2510869 Sinarcas Sinarcas Sinarcas,Sinarques 39.73333 -1.23333 P PPLA3 ES 60 V 46232 1238 882 Europe/Madrid 2012-03-04
-2510870 Simat de la Valldigna Simat de la Valldigna Simat de Valldigna,Simat de la Valldigna 39.03333 -0.31667 P PPLA3 ES 60 V 46231 3291 449 Europe/Madrid 2012-03-04
-2510880 Silla Silla Silla 39.36667 -0.41667 P PPLA3 ES 60 V 46230 18979 10 Europe/Madrid 2012-03-04
-2510883 Siles Siles Siles 38.38983 -2.5819 P PPLA3 ES 51 J 23082 0 840 Europe/Madrid 2012-03-04
-2510889 Siete Aguas Siete Aguas Setaiguees,Setaigües,Siete Aguas 39.46667 -0.91667 P PPLA3 ES 60 V 46229 1232 689 Europe/Madrid 2012-03-04
-2510891 Sierro Sierro Sierro 37.32237 -2.39844 P PPLA3 ES 51 AL 04084 452 726 Europe/Madrid 2012-03-04
-2510895 Sierra de Yeguas Sierra de Yeguas Sierra de Yeguas 37.1242 -4.86773 P PPLA3 ES 51 MA 29088 3311 454 Europe/Madrid 2012-03-04
-2510896 Sierra de Fuentes Sierra de Fuentes Sierra de Fuentes 39.43997 -6.27242 P PPL ES 57 CC 10037 1895 421 Europe/Madrid 2012-01-19
-2510906 Sevilleja de la Jara Sevilleja de la Jara Sevilleja de la Jara 39.57488 -4.96387 P PPLA3 ES 54 TO 45162 953 664 Europe/Madrid 2012-03-04
-2510911 Sevilla Sevilla Hispalis,Lungsod ng Sevilla,SVQ,Sebilla,Sebille,Sevil'ja,Sevila,Sevilha,Sevilia,Sevilija,Sevilja,Sevilla,Seville,Sevilo,Seviya,Seviļa,Sewilla,Siviglia,Séville,ashbylyt,sai wei li ya,sbylyh,se will,sebirya,sebirya shi,sebiya,sevilia,Σεβίλλη,Севилья,Севиля,Севиља,Сэвільля,סביליה,إشبيلية,اشبیلیہ,เซวิลล์,სევილია,セビリャ,セビリャ市,塞維利亞,세비야 37.38241 -5.97613 P PPLA ES 51 SE 41091 703206 14 Europe/Madrid 2012-01-19
-2510915 Setenil de las Bodegas Setenil de las Bodegas Setenil 36.86397 -5.18177 P PPL ES 51 MA 29084 3016 555 Europe/Madrid 2008-11-29
-2510919 Ses Salines Ses Salines Ses Salines,les Salines,ses Salines 39.33831 3.05274 P PPLA3 ES 07 PM 07059 4290 43 Europe/Madrid 2012-03-04
-2510923 Serrejón Serrejon Serrejon,Serrejón 39.81735 -5.80263 P PPLA3 ES 57 CC 10176 490 340 Europe/Madrid 2012-03-04
-2510936 Serradilla Serradilla Serradilla 39.8292 -6.14034 P PPLA3 ES 57 CC 10175 1816 356 413 Europe/Madrid 2012-03-04
-2510940 Serra Serra Serra 39.68333 -0.43333 P PPLA3 ES 60 V 46228 2335 341 Europe/Madrid 2012-03-04
-2510944 Serón Seron Seron,Serón 37.34485 -2.50913 P PPLA3 ES 51 AL 04083 2432 793 Europe/Madrid 2012-03-04
-2510956 Senija Senija Senija 38.72804 0.04176 P PPLA3 ES 60 A 03125 588 238 Europe/Madrid 2012-03-04
-2510957 Senyera Senyera Senera,Senyera,Señera 39.06667 -0.5 P PPLA3 ES 60 V 46227 1038 43 Europe/Madrid 2012-03-04
-2510959 Sempere Sempere Sant Pere,Sempere 38.92014 -0.4814 P PPLA3 ES 60 V 46226 34 168 Europe/Madrid 2012-03-04
-2510961 Selva Selva Selva 39.75504 2.90069 P PPLA3 ES 07 PM 07058 3205 198 Europe/Madrid 2012-03-04
-2510963 Sellent Sellent Sellent 39.03221 -0.58784 P PPLA3 ES 60 V 46225 468 88 Europe/Madrid 2012-03-04
-2510965 Sella Sella Sella 38.60926 -0.27305 P PPLA3 ES 60 A 03124 643 426 Europe/Madrid 2012-03-04
-2510967 Segura de León Segura de Leon Segura de Leon,Segura de León 38.11667 -6.51667 P PPL ES 57 BA 06055 2189 668 Europe/Madrid 2012-01-19
-2510968 Segura de la Sierra Segura de la Sierra Segura de la Sierra 38.29777 -2.65229 P PPL ES 51 J 23065 1773 1071 Europe/Madrid 2012-01-19
-2510972 Segorbe Segorbe Segorbe,Sogorb 39.85 -0.48333 P PPLA3 ES 60 CS 12104 8371 340 Europe/Madrid 2012-03-04
-2510974 Segart Segart Segart,Segart de Albalat 39.68333 -0.36667 P PPLA3 ES 60 V 46224 158 256 Europe/Madrid 2012-03-04
-2510975 Sedaví Sedavi Sedavi,Sedaví 39.43333 -0.38333 P PPLA3 ES 60 V 46223 8778 8 Europe/Madrid 2012-03-04
-2511009 Sayalonga Sayalonga Sayalonga 36.79819 -4.01325 P PPLA3 ES 51 MA 29086 1366 347 Europe/Madrid 2012-03-04
-2511010 Sax Sax Sax 38.53729 -0.81779 P PPLA3 ES 60 A 03123 10054 480 Europe/Madrid 2012-03-04
-2511012 Sauzal Sauzal El Sauzal,Sauzal 28.46667 -16.41667 P PPL ES 53 TF 38041 8172 681 Atlantic/Canary 2012-01-19
-2511014 Saucedilla Saucedilla Saucedilla 39.85284 -5.67781 P PPLA3 ES 57 CC 10173 743 261 Europe/Madrid 2012-03-04
-2511032 San Vicent del Raspeig San Vicent del Raspeig San Vicente,San Vicente del Raspeig,Sant Vicent del Raspeig 38.3964 -0.5255 P PPL ES 60 A 03014 53126 113 Europe/Madrid 2011-02-05
-2511033 San Vicente de Alcántara San Vicente de Alcantara 39.36132 -7.13766 P PPLA3 ES 57 BA 06123 0 504 Europe/Madrid 2012-03-04
-2511038 Santo Tomé Santo Tome Santo Tome,Santo Tomé 38.02861 -3.10092 P PPLA3 ES 51 J 23080 2273 454 Europe/Madrid 2012-03-04
-2511050 Santomera Santomera 38.06147 -1.04877 P PPLA3 ES 31 MU 30901 15319 38 Europe/Madrid 2012-03-04
-2511063 Santisteban del Puerto Santisteban del Puerto Santisteban del Puerto 38.24829 -3.20762 P PPLA3 ES 51 J 23079 4756 707 Europe/Madrid 2012-03-04
-2511064 Santiponce Santiponce Santiponce 37.43553 -6.04106 P PPLA3 ES 51 SE 41089 7561 12 Europe/Madrid 2012-03-04
-2511070 Santiago del Teide Santiago del Teide Santiago,Santiago del Teide,Santiago del Teyde 28.294 -16.81618 P PPLA3 ES 53 TF 38040 12050 922 Atlantic/Canary 2012-03-04
-2511071 Santiago del Campo Santiago del Campo Santiago del Campo 39.6284 -6.36362 P PPLA3 ES 57 CC 10170 322 339 344 Europe/Madrid 2012-03-04
-2511075 Santiago de Calatrava Santiago de Calatrava Santiago de Calatrava 37.75382 -4.17093 P PPLA3 ES 51 J 23077 876 397 Europe/Madrid 2012-03-04
-2511091 Santa Úrsula Santa Ursula Santa Ursula,Santa Úrsula 28.42613 -16.48876 P PPLA3 ES 53 TF 38039 14013 283 Atlantic/Canary 2012-03-04
-2511102 Santa Pola Santa Pola Santa Pola,Santa-Pola,Санта-Пола 38.19165 -0.5658 P PPLA3 ES 60 A 03121 31760 7 Europe/Madrid 2012-03-04
-2511103 Santa Olalla del Cala Santa Olalla del Cala Santa Olalla,Santa Olalla de Cala,Santa Olalla del Cala,Santa Ololla del Cala 37.9 -6.21667 P PPLA3 ES ES 51 H 21069 0 493 Europe/Madrid 2012-03-04
-2511106 Santanyí Santanyi Santanyi,Santanyí 39.35461 3.12907 P PPL ES 07 PM 07057 12664 65 Europe/Madrid 2010-04-22
-2511109 Santa Marta de Magasca Santa Marta de Magasca Santa Maria,Santa Marta,Santa Marta de Magasca,Santa María 39.5115 -6.09881 P PPLA3 ES 57 CC 10168 248 377 Europe/Madrid 2012-03-04
-2511112 Santa Marta Santa Marta Santa Marta 38.61421 -6.62799 P PPLA3 ES 57 BA 06121 4177 341 Europe/Madrid 2012-03-04
-2511123 Santa María del Campo Rus Santa Maria del Campo Rus Santa Maria del Campo,Santa Maria del Campo Rus,Santa María del Campo Rus 39.55942 -2.42306 P PPLA3 ES 54 CU 16195 771 794 Europe/Madrid 2012-03-04
-2511138 Santa Maria del Camí Santa Maria del Cami Santa Maria,Santa Maria del Cami,Santa Maria del Camí 39.65111 2.77317 P PPLA3 ES ES 07 PM 07056 0 131 Europe/Madrid 2012-03-04
-2511143 Santa Margalida Santa Margalida Santa Margalida,Santa Margarita 39.70143 3.10215 P PPLA3 ES 07 PM 07055 11537 88 Europe/Madrid 2011-07-31
-2511150 Santa Lucía Santa Lucia Santa Lucia de Tirajana,Santa Lucía de Tirajana 27.91174 -15.54071 P PPL ES 53 GC 35019 63637 699 Atlantic/Canary 2010-04-22
-2511158 Santa Fe de Mondújar Santa Fe de Mondujar Santa Fe,Santa Fe de Mondujar,Santa Fe de Mondújar 36.97479 -2.53126 P PPLA3 ES 51 AL 04081 429 235 Europe/Madrid 2012-03-04
-2511162 Santa Eulària des Riu Santa Eularia des Riu Santa Eulalia del Rio,Santa Eulalia del Río,Santa Eularia del Riu,Santa Eularia des Riu,Santa Eulària del Riu,Santa Eulària des Riu 38.98457 1.53409 P PPLA3 ES 07 PM 07054 31314 9 Europe/Madrid 2012-03-04
-2511166 Santa Eugènia Santa Eugenia Santa Eugenia,Santa Eugènia 39.62361 2.83864 P PPLA3 ES 07 PM 07053 1420 138 Europe/Madrid 2012-03-04
-2511167 Santa Eufemia Santa Eufemia Santa Eufemia 38.6 -4.9 P PPLA3 ES 51 CO 14061 1015 562 Europe/Madrid 2011-07-31
-2511170 Santaella Santaella Santaella 37.56294 -4.84362 P PPLA3 ES 51 CO 14060 5933 260 Europe/Madrid 2012-03-04
-2511171 Santa Elena Santa Elena Santa Elena 38.34162 -3.53953 P PPLA3 ES 51 J 23076 996 759 Europe/Madrid 2012-03-04
-2511174 Santa Cruz de Tenerife Santa Cruz de Tenerife Santa Cruz,Santa Cruz de Tenerife,Santa Cruz de Ténérife,Santa-Krus-de-Tenerife,TCI,Tenerife,Teneriffa,Санта-Крус-де-Тенерифе,サンタ・クルス・デ・テネリフェ 28.46824 -16.25462 P PPLA ES 53 TF 38038 222417 10 55 Atlantic/Canary 2011-06-16
-2511175 Santa Cruz de Mudela Santa Cruz de Mudela Santa Cruz de Mudela 38.64242 -3.4665 P PPLA3 ES 54 CR 13077 4825 723 Europe/Madrid 2012-03-04
-2511176 Santa Cruz de Moya Santa Cruz de Moya Santa Cruz de Moya 39.95 -1.26667 P PPLA3 ES 54 CU 16194 384 901 Europe/Madrid 2012-03-04
-2511177 Santa Cruz de los Cáñamos Santa Cruz de los Canamos Santa Cruz de los Canamos,Santa Cruz de los Cáñamos 38.63759 -2.86618 P PPLA3 ES 54 CR 13076 637 991 Europe/Madrid 2012-03-04
-2511178 Santa Cruz de la Zarza Santa Cruz de la Zarza Santa Cruz de la Zaraza,Santa Cruz de la Zarza 39.98104 -3.18787 P PPLA3 ES 54 TO 45156 4755 787 Europe/Madrid 2012-03-04
-2511179 Santa Cruz de la Sierra Santa Cruz de la Sierra Santa Cruz de la Sierra 39.33635 -5.84561 P PPLA3 ES 57 CC 10166 311 455 Europe/Madrid 2012-03-04
-2511180 Santa Cruz de la Palma Santa Cruz de la Palma Santa Cruz de La Palma,Santa Cruz de la Palma 28.68351 -17.76421 P PPL ES 53 TF 38037 17084 18 Atlantic/Canary 2010-04-22
-2511202 Santa Brígida Santa Brigida Santa Brigida,Santa Brígida 28.03197 -15.50425 P PPLA3 ES 53 GC 35021 19154 499 Atlantic/Canary 2012-03-04
-2511203 Santa Bárbara de Casa Santa Barbara de Casa Santa Barbara,Santa Barbara de Casa,Santa Barbara de Casas,Santa Bárbara,Santa Bárbara de Casa,Santa Bárbara de Casas 37.79665 -7.18735 P PPLA3 ES 51 H 21068 0 311 Europe/Madrid 2012-03-04
-2511209 Santa Ana la Real Santa Ana la Real Santa Ana la Real 37.86245 -6.72385 P PPLA3 ES 51 H 21067 0 641 Europe/Madrid 2012-03-04
-2511210 Santa Ana de Pusa Santa Ana de Pusa Santa Ana de Pusa 39.76238 -4.70904 P PPLA3 ES 54 TO 45155 417 600 Europe/Madrid 2012-03-04
-2511215 Santa Ana Santa Ana Santa Ana 39.30823 -5.99027 P PPLA3 ES 57 CC 10165 333 489 Europe/Madrid 2012-03-04
-2511222 Santa Amalia Santa Amalia 39.01118 -6.01158 P PPLA3 ES 57 BA 06120 4361 252 Europe/Madrid 2012-03-04
-2511227 San Silvestre de Guzmán San Silvestre de Guzman San Silvestre de Guzman,San Silvestre de Guzmán 37.3877 -7.34908 P PPLA3 ES 51 H 21066 624 152 Europe/Madrid 2012-03-04
-2511229 San Sebastián de los Ballesteros San Sebastian de los Ballesteros San Sebastian de los Ballesteros,San Sebastián de los Ballesteros 37.65376 -4.8241 P PPLA3 ES 51 CO 14059 869 310 Europe/Madrid 2012-03-04
-2511230 San Sebastián de la Gomera San Sebastian de la Gomera San Sebastian,San Sebastian de La Gomera,San Sebastian de la Gomera,San Sebastián de La Gomera,San Sebastián de la Gomera 28.09163 -17.11331 P PPL ES 53 TF 38036 8964 8 Atlantic/Canary 2012-02-15
-2511239 San Roque San Roque San Roque 36.21067 -5.38415 P PPLA3 ES 51 CA 11033 29249 105 Europe/Madrid 2012-03-04
-2511246 San Pedro de Mérida San Pedro de Merida San Pedro de Merida,San Pedro de Mérida 38.95007 -6.18645 P PPLA3 ES 57 BA 06119 791 290 Europe/Madrid 2012-03-04
-2511247 San Pedro del Pinatar San Pedro del Pinatar San Pedro del Pintar 37.83568 -0.79102 P PPLA3 ES 31 MU 30036 23738 15 Europe/Madrid 2012-03-04
-2511265 San Pedro San Pedro San Pedro 38.82493 -2.18276 P PPL ES 54 AB 02022 1277 838 Europe/Madrid 2012-01-19
-2511274 San Nicolás del Puerto San Nicolas del Puerto San Nicolas del Puerto,San Nicolás del Puerto 38 -5.65 P PPLA3 ES 51 SE 41088 0 596 Europe/Madrid 2012-03-04
-2511275 San Nicolás San Nicolas Aldea de San Nicolas 27.9891 -15.78126 P PPL ES 53 GC 35020 7950 57 Atlantic/Canary 2008-08-05
-2511277 San Miguel de Salinas San Miguel de Salinas San Miguehl',San Miguel,San Miguel de Salinas,Sant Miquel de Salines,Сан Мигуэль 37.97972 -0.78904 P PPLA3 ES 60 A 03120 6281 78 Europe/Madrid 2012-03-04
-2511287 San Miguel San Miguel 28.09826 -16.61708 P PPL ES 53 TF 38035 16179 601 Atlantic/Canary 2010-04-22
-2511289 San Martín de Pusa San Martin de Pusa San Martin de Pusa,San Martín de Pusa 39.78404 -4.63252 P PPLA3 ES 54 TO 45152 790 503 Europe/Madrid 2012-03-04
-2511290 San Martín de Montalbán San Martin de Montalban San Martin de Montalban,San Martín de Montalbán 39.70186 -4.38796 P PPLA3 ES 54 TO 45151 745 656 Europe/Madrid 2012-03-04
-2511292 San Martín de Boniches San Martin de Boniches San Martin de Boniches,San Martín de Boniches 39.9 -1.56667 P PPLA3 ES 54 CU 16192 89 1300 Europe/Madrid 2012-03-04
-2511302 Sant Lluís Sant Lluis Sant Lluis,Sant Lluís 39.85263 4.25939 P PPL ES 07 PM 07052 5865 60 Europe/Madrid 2008-10-18
-2511304 Sanlúcar la Mayor Sanlucar la Mayor Sanlucar la Mayor,Sanlúcar la Mayor 37.38714 -6.20106 P PPLA3 ES 51 SE 41087 12749 144 Europe/Madrid 2012-03-04
-2511305 Sanlúcar de Guadiana Sanlucar de Guadiana Salucar de Guadiana,Sanlucar de Guadiana,Sanlúcar de Guadiana 37.47268 -7.46546 P PPLA3 ES 51 H 21065 363 20 Europe/Lisbon 2012-03-04
-2511306 Sanlúcar de Barrameda Sanlucar de Barrameda Aebura,Aibora,Aipora,Sanlucar de Barrameda,Sanlukar-de-Barrameda,Sanlúcar de Barrameda,Sunlucar de Barrameda,Санлукар-де-Баррамеда 36.77808 -6.3515 P PPL ES 51 CA 11032 65805 12 Europe/Madrid 2012-04-01
-2511308 San Lorenzo de la Parrilla San Lorenzo de la Parrilla San Lorenzo de la Parilla,San Lorenzo de la Parrilla 39.85129 -2.36079 P PPLA3 ES 54 CU 16191 1313 950 Europe/Madrid 2012-03-04
-2511309 Sant Llorenç des Cardassar Sant Llorenc des Cardassar Sant Llorenc,Sant Llorenc del Cardassar,Sant Llorenc des Cardassar,Sant Llorenç,Sant Llorenç del Cardassar,Sant Llorenç des Cardassar 39.61009 3.2838 P PPLA3 ES ES 07 PM 07051 0 76 Europe/Madrid 2011-07-31
-2511310 San Lorenzo de Calatrava San Lorenzo de Calatrava San Lorenzo,San Lorenzo de Calatrava 38.47681 -3.82605 P PPLA3 ES 54 CR 13075 277 765 Europe/Madrid 2012-03-04
-2511326 San Juan del Puerto San Juan del Puerto Juan del Puerto,San Juan,San Juan del Puerto 37.31667 -6.84139 P PPLA3 ES 51 H 21064 6834 9 Europe/Madrid 2012-03-04
-2511327 San Juan de la Rambla San Juan de la Rambla Juan de Rambla,San Juan de Rambla,San Juan de la Rambla 28.39276 -16.65015 P PPL ES 53 TF 38026 5007 99 Atlantic/Canary 2012-01-19
-2511328 San Juan de Énova San Juan de Enova San Juan de Enova,San Juan de Énova,Sant Joan de l'Enova,Sant Joan de l'Ènova 39.07104 -0.48705 P PPLA3 ES 60 V 46222 386 40 Europe/Madrid 2012-03-04
-2511329 San Juan de Aznalfarache San Juan de Aznalfarache San Juan de Aznalfarache 37.35812 -6.03731 P PPLA3 ES 51 SE 41086 20779 55 Europe/Madrid 2012-03-04
-2511330 San Juan de Alicante San Juan de Alicante San Juan de Alicante,Sant Joan d'Alacant 38.40148 -0.43623 P PPL ES 60 A 03014 21939 44 Europe/Madrid 2010-04-22
-2511331 Sant Joan de Labritja Sant Joan de Labritja San Juan,San Juan Bautista,Sant Joan de Labritja 39.07891 1.51397 P PPLA3 ES 07 PM 07050 4838 202 Europe/Madrid 2012-03-04
-2511352 Sant Josep de sa Talaia Sant Josep de sa Talaia San Jose,San Jose de la Atalaya,Sant Josep de sa Talaia 38.91667 1.28333 P PPLA3 ES 07 PM 07048 22171 313 Europe/Madrid 2012-03-04
-2511366 San Javier San Javier 37.80626 -0.83736 P PPLA3 ES 31 MU 30035 31432 27 Europe/Madrid 2012-03-04
-2511381 Sant Francesc de Formentera Sant Francesc de Formentera San Francisco,San Francisco Javier,Sant Francesc,Sant Francesc de Formentera 38.7 1.41667 P PPL ES 07 PM 07024 2656 66 Europe/Madrid 2009-05-04
-2511388 San Fernando San Fernando San Fernanando,San Fernando,San-Fernando 36.4759 -6.19817 P PPLA3 ES 51 CA 11031 96366 15 Europe/Madrid 2012-03-04
-2511394 Sanet y Negrals Sanet y Negrals Sanet i els Negrals,Sanet y Negrals 38.81967 -0.03406 P PPLA3 ES 60 A 03117 642 94 Europe/Madrid 2012-03-04
-2511401 La Laguna La Laguna La Laguna,La-Laguna,San Cristobal de La Laguna,San Cristóbal de La Laguna,Ла-Лагуна 28.4853 -16.32014 P PPL ES 53 TF 38023 150661 558 Atlantic/Canary 2012-01-19
-2511411 San Clemente San Clemente San Clemente 39.4041 -2.42819 P PPLA3 ES 54 CU 16190 6765 728 Europe/Madrid 2012-03-04
-2511420 Sencelles Sencelles Sencelles 39.64598 2.89769 P PPL ES 07 PM 07047 2656 115 Europe/Madrid 2007-05-26
-2511423 San Carlos del Valle San Carlos del Valle San Carlos del Valle 38.84399 -3.24148 P PPLA3 ES 54 CR 13074 1215 758 Europe/Madrid 2012-03-04
-2511440 San Bartolomé San Bartolome San Bartolome Tirajana,San Bartolome de Tirajana,San Bartolomé Tirajana,San Bartolomé de Tirajana 27.92481 -15.57329 P PPL ES 53 GC 35019 52161 902 Atlantic/Canary 2010-04-22
-2511441 San Bartolomé de la Torre San Bartolome de la Torre San Bartolome de la Torre,San Bartolomé de la Torre 37.44515 -7.10597 P PPLA3 ES 51 H 21063 2981 130 Europe/Madrid 2012-03-04
-2511442 San Bartolomé de las Abiertas San Bartolome de las Abiertas San Bartolome de las Abiertas,San Bartolomé de las Abiertas 39.82972 -4.719 P PPLA3 ES 54 TO 45150 458 557 Europe/Madrid 2012-03-04
-2511447 San Bartolomé San Bartolome San - Bartolome,San Bartolome,San Bartolomé,Сан - Бартоломе 29.00093 -13.613 P PPLA3 ES 53 GC 35018 18517 275 Atlantic/Canary 2012-03-04
-2511448 Sant Antoni de Portmany Sant Antoni de Portmany San Antonio,Sant Antoni de Portmany 38.98068 1.30362 P PPL ES 07 PM 07046 21852 14 Europe/Madrid 2011-05-23
-2511474 Salvatierra de Santiago Salvatierra de Santiago Salvatierra de Santiago 39.30363 -6.03206 P PPLA3 ES 57 CC 10163 369 439 Europe/Madrid 2012-03-04
-2511475 Salvatierra de los Barros Salvatierra de los Barros Salvatierra,Salvatierra de los Barros 38.49091 -6.68423 P PPLA3 ES 57 BA 06117 1889 621 Europe/Madrid 2012-03-04
-2511477 Salvaleón Salvaleon Salvaleon,Salvaleón 38.5102 -6.78627 P PPLA3 ES 57 BA 06116 2172 531 Europe/Madrid 2012-03-04
-2511495 Salteras Salteras Salteras 37.4206 -6.11049 P PPLA3 ES 51 SE 41085 3814 156 Europe/Madrid 2012-03-04
-2511498 Salorino Salorino Salorino 39.48018 -7.00758 P PPLA3 ES 57 CC 10162 796 323 Europe/Madrid 2012-03-04
-2511503 Salobreña Salobrena Salobrena,Salobreña 36.74277 -3.58717 P PPLA3 ES 51 GR 18173 12747 45 Europe/Madrid 2012-03-04
-2511507 Salobre Salobre Salobre 38.59297 -2.55038 P PPLA3 ES 54 AB 02070 621 921 Europe/Madrid 2012-03-04
-2511535 Salinas Salinas Salinas 38.52025 -0.91202 P PPLA3 ES 60 A 03116 1422 491 Europe/Madrid 2012-03-04
-2511547 Salares Salares 36.85463 -4.02434 P PPLA3 ES 51 MA 29085 217 586 Europe/Madrid 2012-03-04
-2511551 Salar Salar Salar 37.15036 -4.06576 P PPLA3 ES 51 GR 18171 2772 557 Europe/Madrid 2012-03-04
-2511619 Sagunto Sagunto Morvedre,Sagonte,Sagunt,Sagunto,Saguntum,sgwntwm,Сагунто,סגונטום 39.68333 -0.26667 P PPL ES 60 V 46220 66070 43 Europe/Madrid 2012-01-19
-2511621 Sagra Sagra Sagra 38.81102 -0.06559 P PPLA3 ES 60 A 03115 425 111 Europe/Madrid 2012-03-04
-2511623 Saelices Saelices Saelices 39.92061 -2.80502 P PPLA3 ES 54 CU 16186 655 929 Europe/Madrid 2012-03-04
-2511626 Saceruela Saceruela Saceruela 38.94382 -4.60768 P PPLA3 ES 54 CR 13073 686 591 Europe/Madrid 2012-03-04
-2511629 Sacañet Sacanet Sacanel,Sacanet,Sacanyet,Sacañel,Sacañet 39.86667 -0.71667 P PPLA3 ES 60 CS 12097 147 1046 Europe/Madrid 2012-03-04
-2511633 Sabiote Sabiote Sabiote 38.06916 -3.31448 P PPL ES 51 J 23092 4134 829 Europe/Madrid 2012-01-19
-2511649 Rute Rute Rute,Rute foersamling,Rute församling 37.3269 -4.36827 P PPLA3 ES 51 CO 14058 10559 658 Europe/Madrid 2012-03-04
-2511651 Rus Rus Rus 38.04759 -3.46254 P PPLA3 ES 51 J 23074 3727 585 Europe/Madrid 2012-03-04
-2511661 Ruidera Ruidera Ruidera 38.97775 -2.88322 P PPLA3 ES 54 CR 13902 598 787 Europe/Madrid 2012-03-04
-2511662 Rugat Rugat Rugat 38.87933 -0.36115 P PPLA3 ES 60 V 46219 196 292 Europe/Madrid 2012-03-04
-2511666 Rubite Rubite Rubite 36.80947 -3.34816 P PPLA3 ES 51 GR 18170 507 791 Europe/Madrid 2012-03-04
-2511680 Ruanes Ruanes Ruanes 39.32814 -6.01347 P PPLA3 ES 57 CC 10161 80 480 Europe/Madrid 2012-03-04
-2511681 Rozalén del Monte Rozalen del Monte Rozalen del Monte,Rozalén del Monte 39.99083 -2.80525 P PPLA3 ES 54 CU 16181 94 877 Europe/Madrid 2012-03-04
-2511695 Rótova Rotova Rotova,Ròtova,Rótova 38.93205 -0.25765 P PPLA3 ES 60 V 46218 1277 108 Europe/Madrid 2012-03-04
-2511697 Rotglá y Corbera Rotgla y Corbera Rotgla i Corbera,Rotgla y Corbera,Rotglà i Corberà,Rotglá y Corbera 39.00465 -0.56482 P PPL ES 60 V 46145 1002 125 Europe/Madrid 2012-01-19
-2511700 Rota Rota Rota,Рота 36.62236 -6.35859 P PPLA3 ES 51 CA 11030 28516 21 Europe/Madrid 2012-03-04
-2511704 Rosalejo Rosalejo Caserio Rosalejo,Caserío Rosalejo,Rosalejo 39.43333 -4.9 P PPL ES 57 CC 1376 517 Europe/Madrid 2010-08-10
-2511705 Rosal de la Frontera Rosal de la Frontera El Rosal de la Frontera,Rosal,Rosal de la Frontera 37.96754 -7.21889 P PPLA3 ES 51 H 21062 0 223 Europe/Madrid 2012-03-04
-2511716 Roquetas de Mar Roquetas de Mar Roketas-de-Mar,Roquetas,Roquetas de Mar,Рокетас-де-Мар 36.76419 -2.61475 P PPLA3 ES 51 AL 04079 82665 12 Europe/Madrid 2012-03-04
-2511730 Ronda Ronda Ronda,Ронда 36.74231 -5.16709 P PPLA3 ES 51 MA 29084 36827 718 Europe/Madrid 2012-03-04
-2511743 Romangordo Romangordo Romangordo 39.74199 -5.70081 P PPLA3 ES 57 CC 10160 158 422 Europe/Madrid 2012-03-04
-2511752 Rojales Rojales Rojales,Rojals 38.08799 -0.72544 P PPLA3 ES 60 A 03113 20510 12 Europe/Madrid 2012-03-04
-2511771 Rocafort Rocafort Rocafort 39.53333 -0.4 P PPLA3 ES 60 V 46216 6049 27 Europe/Madrid 2012-03-04
-2511774 Robledollano Robledollano Robledollano 39.60962 -5.50855 P PPLA3 ES 57 CC 10159 380 713 Europe/Madrid 2012-03-04
-2511779 Robledo Robledo Robledo 38.75807 -2.45042 P PPLA3 ES 54 AB 02068 420 1030 Europe/Madrid 2012-03-04
-2511781 Robledillo de Trujillo Robledillo de Trujillo Robledillo de Trujillo 39.26956 -5.98001 P PPLA3 ES 57 CC 10158 462 500 Europe/Madrid 2012-03-04
-2511818 Riópar Riopar Riopar,Riópar 38.5 -2.45 P PPLA3 ES 54 AB 02067 1504 984 Europe/Madrid 2012-03-04
-2511822 Ríolobos Riolobos Riolobos,Ríolobos 39.92074 -6.30397 P PPL ES 57 CC 10155 1330 269 Europe/Madrid 2012-01-19
-2511823 Riola Riola Riola 39.2 -0.33333 P PPLA3 ES 60 V 46215 1706 10 Europe/Madrid 2012-03-04
-2511824 Rioja Rioja Rioja 36.94508 -2.46302 P PPLA3 ES 51 AL 04078 1331 133 Europe/Madrid 2012-03-04
-2511825 Ríogordo Riogordo Riogordo,Ríogordo 36.91727 -4.29318 P PPL ES 51 MA 29083 2954 414 Europe/Madrid 2012-01-19
-2511852 Rincón de la Victoria Rincon de la Victoria Rinkon-de-la-Viktorija,Ринкон-де-ла-Виктория 36.71715 -4.27583 P PPLA3 ES 51 MA 29082 38666 11 Europe/Madrid 2012-03-04
-2511867 Rielves Rielves 39.96206 -4.193 P PPLA3 ES 54 TO 45147 586 498 Europe/Madrid 2012-03-04
-2511869 Ricote Ricote Ricote 38.15338 -1.36557 P PPLA3 ES 31 MU 30034 1492 294 Europe/Madrid 2012-03-04
-2511873 Ribera del Fresno Ribera del Fresno Ribera del Fresno 38.55177 -6.23768 P PPLA3 ES 57 BA 06113 3291 404 Europe/Madrid 2012-03-04
-2511880 Ribarroja Ribarroja 39.55 -0.56667 P PPL ES 60 V 46111 20468 73 Europe/Madrid 2010-04-22
-2511905 Retuerta de Bullaque Retuerta de Bullaque Retuerta,Retuerta de Bullaque,Returta 39.46363 -4.41363 P PPL ES 54 CR 13072 1049 744 Europe/Madrid 2012-01-19
-2511930 Requena Requena Requena 39.48834 -1.10044 P PPLA3 ES 60 V 46213 21278 699 Europe/Madrid 2012-03-04
-2511936 Rena Rena 39.05252 -5.80868 P PPLA3 ES 57 BA 06111 646 258 Europe/Madrid 2012-03-04
-2511940 Relleu Relleu Relleu 38.58725 -0.31157 P PPLA3 ES 60 A 03112 987 431 Europe/Madrid 2012-03-04
-2511946 Reina Reina Reina 38.18333 -5.95 P PPLA3 ES 57 BA 06110 189 697 Europe/Madrid 2012-03-04
-2511947 Reíllo Reillo Reillo,Reíllo 39.9 -1.86667 P PPLA3 ES 54 CU 16177 118 974 Europe/Madrid 2012-03-04
-2511969 Redován Redovan Redova,Redovan,Redovà,Redován 38.11619 -0.90981 P PPLA3 ES 60 A 03111 6507 26 Europe/Madrid 2012-03-04
-2511994 Realejo Alto Realejo Alto Realejo Alto 28.37645 -16.58575 P PPL ES 53 TF 38026 35963 390 Atlantic/Canary 2012-01-19
-2511996 Real de Montroi Real de Montroi Real de Montroi,Real de Montroy 39.33333 -0.6 P PPLA3 ES 60 V 46212 2031 119 Europe/Madrid 2012-03-04
-2511998 Real de Gandía Real de Gandia Real de Gandia,Real de Gandía 38.94817 -0.19239 P PPLA3 ES 60 V 46211 1892 44 Europe/Madrid 2012-03-04
-2512068 Rágol Ragol Ragol,Rágol 36.99523 -2.68178 P PPLA3 ES 51 AL 04077 380 413 Europe/Madrid 2012-03-04
-2512069 Ráfol de Salem Rafol de Salem El Rafol de Salem,El Ràfol de Salem,Rafol de Salem,Ráfol de Salem 38.86651 -0.39991 P PPLA3 ES 60 V 46210 389 293 Europe/Madrid 2012-03-04
-2512071 Rafelguaraf Rafelguaraf Rafelguaraf 39.05126 -0.45543 P PPLA3 ES 60 V 46209 2398 48 Europe/Madrid 2012-03-04
-2512072 Rafelcofer Rafelcofer Rafelcofer 38.93248 -0.16772 P PPLA3 ES 60 V 46208 1395 40 Europe/Madrid 2012-03-04
-2512075 Rafal Rafal Rafal 38.10458 -0.84904 P PPLA3 ES 60 A 03109 3659 16 Europe/Madrid 2012-03-04
-2512078 Rada de Haro Rada de Haro Rada de Haro 39.57002 -2.62086 P PPLA3 ES 54 CU 16176 65 825 Europe/Madrid 2012-03-04
-2512095 Quintanar del Rey Quintanar del Rey 39.33333 -1.93333 P PPLA3 ES 54 CU 16175 7539 723 Europe/Madrid 2012-03-04
-2512096 Quintanar de la Orden Quintanar de la Orden Quintanar de la Orden,Quintanar la Orden 39.59368 -3.04165 P PPLA3 ES 54 TO 45142 12736 692 Europe/Madrid 2012-03-04
-2512099 Quintana de la Serena Quintana de la Serena Quintana de la Serena 38.74595 -5.67233 P PPLA3 ES 57 BA 06109 5242 411 Europe/Madrid 2012-03-04
-2512107 Quesada Quesada Quesada 37.84338 -3.06561 P PPL ES 51 J 23028 5987 656 Europe/Madrid 2012-01-19
-2512108 Quesa Quesa Quesa 39.1197 -0.74 P PPLA3 ES 60 V 46206 745 228 Europe/Madrid 2012-03-04
-2512109 Quero Quero Quero 39.51111 -3.24741 P PPLA3 ES 54 TO 45141 1240 654 Europe/Madrid 2012-03-04
-2512110 Quéntar Quentar 37.19253 -3.46653 P PPL ES 51 GR 18094 1022 871 Europe/Madrid 2008-07-18
-2512127 Puçol Pucol Pucol,Puzol,Puçol 39.61667 -0.3 P PPLA3 ES 60 V 46205 19018 10 Europe/Madrid 2012-03-04
-2512131 Purullena Purullena Parullena,Purullena 37.31763 -3.19056 P PPLA3 ES 51 GR 18167 2215 905 Europe/Madrid 2012-03-04
-2512133 Purchena Purchena Purchena 37.34744 -2.3608 P PPLA3 ES 51 AL 04076 1598 546 Europe/Madrid 2012-03-04
-2512138 Puntallana Puntallana Puntallana,San Juan de Puntallana 28.73333 -17.73333 P PPLA3 ES 53 TF 38030 2394 131 Atlantic/Canary 2011-07-31
-2512144 Puntagorda Puntagorda 28.76886 -17.97599 P PPLA3 ES 53 TF 38029 1659 745 Atlantic/Canary 2011-07-31
-2512152 Pulpí Pulpi Pulpi,Pulpí 37.41154 -1.74496 P PPL ES 51 AL 04035 7434 196 Europe/Madrid 2012-01-19
-2512155 Pulianas Pulianas 37.22302 -3.60832 P PPLA3 ES 51 GR 18165 4855 727 Europe/Madrid 2012-03-04
-2512156 Pulgar Pulgar Pulgar 39.69383 -4.15233 P PPLA3 ES 54 TO 45140 1393 723 Europe/Madrid 2012-03-04
-2512158 Pujerra Pujerra Pujerra 36.61274 -5.14979 P PPLA3 ES 51 MA 29081 316 788 Europe/Madrid 2012-03-04
-2512160 Puigpunyent Puigpunyent Puigpunyent 39.62514 2.52759 P PPL ES 07 PM 07045 1513 227 Europe/Madrid 2007-05-27
-2512162 Puig Puig El Puche,El Puig,Puig,Puig de Santa Maria,Puig de Santa María 39.58869 -0.30333 P PPLA3 ES 60 V 46204 7851 13 Europe/Madrid 2012-03-04
-2512164 Puerto Serrano Puerto Serrano Puerto Serrano 36.92209 -5.54304 P PPL ES 51 CA 11041 6807 166 Europe/Madrid 2012-01-19
-2512169 Puerto Real Puerto Real Puehrto-Real',Puerto Real,Пуэрто-Реаль 36.52819 -6.19011 P PPLA3 ES 51 CA 11028 40183 14 Europe/Madrid 2012-03-04
-2512177 Puertollano Puertollano Puehrtol'jano,Puertollano,Пуэртольяно 38.68712 -4.10734 P PPLA3 ES 54 CR 13071 51842 701 Europe/Madrid 2012-03-04
-2512178 Puerto Lápice Puerto Lapice Puerto Lapice,Puerto Lápice 39.3236 -3.48148 P PPL ES 54 TO 45087 1001 678 Europe/Madrid 2012-01-19
-2512182 Puerto de San Vicente Puerto de San Vicente Puerto de San Vicente 39.52283 -5.11407 P PPLA3 ES 54 TO 45139 288 750 Europe/Madrid 2012-03-04
-2512184 Puerto de Santa Cruz Puerto de Santa Cruz Puerto de Santa Cruz 39.31631 -5.85875 P PPLA3 ES 57 CC 10153 409 458 Europe/Madrid 2012-03-04
-2512186 Puerto del Rosario Puerto del Rosario Puehrto-del'-Rosario,Puerto Cabras,Puerto Rosario,Puerto de Cabras,Puerto del Rosario,Пуэрто-дель-Росарио 28.50038 -13.86272 P PPLA3 ES 53 GC 35017 35667 43 Atlantic/Canary 2012-03-04
-2512196 Puerto de la Cruz Puerto de la Cruz Puerto de la Cruz 28.41397 -16.54867 P PPLA3 ES 53 TF 38028 32219 43 Atlantic/Canary 2012-03-04
-2512232 Puente-Genil Puente-Genil 37.38943 -4.76686 P PPL ES 51 CO 14056 30033 215 Europe/Madrid 2011-10-11
-2512238 Puente de Génave Puente de Genave Puente de Genave,Puente de Génave,Puente-Genave,Puente-Génave 38.35544 -2.8032 P PPLA3 ES 51 J 23071 2064 544 Europe/Madrid 2012-03-04
-2512250 La Pobla Llarga La Pobla Llarga La Pobla Llarga,Puebla Larga 39.08333 -0.46667 P PPL ES 60 V 46203 4473 33 Europe/Madrid 2006-04-08
-2512251 La Pobla de Vallbona La Pobla de Vallbona La Pobla de Vallbona,Puebla de Vallbona 39.6 -0.55 P PPL ES 60 V 46202 20431 120 Europe/Madrid 2010-04-22
-2512253 Puebla de Sancho Pérez Puebla de Sancho Perez La Puebla,Puebla de Sancho Perez,Puebla de Sancho Pérez 38.4 -6.4 P PPLA3 ES 57 BA 06108 2861 520 Europe/Madrid 2012-03-04
-2512255 Puebla de Obando Puebla de Obando Puebla de Obando 39.1763 -6.62764 P PPLA3 ES 57 BA 06107 2017 376 Europe/Madrid 2012-03-04
-2512257 Puebla del Salvador Puebla del Salvador Puebla del Salvador 39.56667 -1.66667 P PPLA3 ES 54 CU 16174 273 874 Europe/Madrid 2012-03-04
-2512258 Puebla del Prior Puebla del Prior Puebla del Prior 38.57032 -6.19584 P PPLA3 ES 57 BA 06106 557 388 Europe/Madrid 2012-03-04
-2512259 Puebla del Príncipe Puebla del Principe Puebla del Principe,Puebla del Príncipe,Pueblo del Principe 38.56766 -2.92605 P PPLA3 ES 54 CR 13069 953 940 Europe/Madrid 2012-03-04
-2512260 Puebla del Maestre Puebla del Maestre Puebla del Maestra,Puebla del Maestre,Puebla del Maestro 38.08333 -6.08333 P PPLA3 ES 57 BA 06105 799 564 Europe/Madrid 2012-03-04
-2512262 Puebla de la Reina Puebla de la Reina Puebla de la Reina 38.66455 -6.10216 P PPLA3 ES 57 BA 06104 928 375 Europe/Madrid 2012-03-04
-2512263 Puebla de la Calzada Puebla de la Calzada Puebla de la Calzada 38.89441 -6.62592 P PPLA3 ES 57 BA 06103 5604 194 Europe/Madrid 2012-03-04
-2512264 Puebla de Guzmán Puebla de Guzman Puebla de Guzman,Puebla de Guzmán 37.61427 -7.24878 P PPL ES 51 H 21003 3083 195 Europe/Madrid 2012-01-19
-2512266 Puebla de Don Rodrigo Puebla de Don Rodrigo Puebla de Don Rodrigo 39.08564 -4.61966 P PPLA3 ES 54 CR 13068 1242 501 Europe/Madrid 2012-03-04
-2512267 Puebla de Don Fadrique Puebla de Don Fadrique La Puebla de Don Fadrique,Puebla de Don Fadrique 37.96156 -2.43961 P PPLA3 ES 51 GR 18164 0 1196 Europe/Madrid 2012-03-04
-2512268 Puebla de Almenara Puebla de Almenara 39.7844 -2.81435 P PPLA3 ES 54 CU 16172 473 857 Europe/Madrid 2012-03-04
-2512269 Puebla de Alcocer Puebla de Alcocer Puebla de Alcocer 38.98648 -5.25633 P PPL ES 57 BA 06048 1270 502 Europe/Madrid 2012-01-19
-2512272 Pruna Pruna Porcuna,Pruna 36.97226 -5.2223 P PPLA3 ES 51 SE 41076 3047 543 Europe/Madrid 2012-03-04
-2512282 Priego de Córdoba Priego de Cordoba Priego 37.43807 -4.19523 P PPLA3 ES 51 CO 14055 23513 661 Europe/Madrid 2012-03-04
-2512294 Prado del Rey Prado del Rey Prado del Rey 36.78756 -5.5559 P PPLA3 ES 51 CA 11026 5851 441 Europe/Madrid 2012-03-04
-2512305 Pozuelo de Calatrava Pozuelo de Calatrava Pozuelo de Calatrava 38.58333 -3.83333 P PPL ES 54 CR 13055 2762 648 Europe/Madrid 2012-01-19
-2512308 Pozuelo Pozuelo Pozuelo 38.80989 -2.10101 P PPLA3 ES 54 AB 02065 673 848 Europe/Madrid 2012-03-04
-2512313 Pozorrubio Pozorrubio Pozorrubio 39.81645 -2.94936 P PPLA3 ES 54 CU 16167 442 788 Europe/Madrid 2012-03-04
-2512319 Pozohondo Pozohondo Pozohondo 38.72095 -1.91192 P PPLA3 ES 54 AB 02063 1829 871 Europe/Madrid 2012-03-04
-2512337 Pozo-Cañada Pozo-Canada Pozo-Canada,Pozo-Cañada 38.80333 -1.73532 P PPL ES 54 AB 02029 2681 811 Europe/Madrid 2010-11-05
-2512340 Pozoblanco Pozoblanco Pozoblanco 38.37906 -4.84827 P PPLA3 ES 51 CO 14054 17669 657 Europe/Madrid 2012-03-04
-2512341 Pozoamargo Pozoamargo Pozoamargo 39.36558 -2.19617 P PPLA3 ES 54 CU 16166 351 751 Europe/Madrid 2012-03-04
-2512343 Pozo Alcón Pozo Alcon Pozo Alcon,Pozo Alcor,Pozo Alcón 37.70256 -2.93367 P PPLA3 ES 51 J 23070 5414 861 Europe/Madrid 2012-03-04
-2512358 Povedilla Povedilla Povedilla 38.70022 -2.60212 P PPLA3 ES 54 AB 02062 637 867 Europe/Madrid 2012-03-04
-2512360 Potríes Potries Potries,Potríes 38.91617 -0.19594 P PPLA3 ES 60 V 46198 909 63 Europe/Madrid 2012-03-04
-2512367 Posadas Posadas Posadas 37.80205 -5.10726 P PPLA3 ES 51 CO 14053 7364 93 Europe/Madrid 2012-03-04
-2512369 Porzuna Porzuna Porzuna 39.14618 -4.15406 P PPLA3 ES 54 CR 13065 3978 649 Europe/Madrid 2012-03-04
-2512373 Pórtugos Portugos 36.94193 -3.31066 P PPLA3 ES 51 GR 18163 407 1304 Europe/Madrid 2012-03-04
-2512388 Portezuelo Portezuelo Portezuelo 39.81233 -6.47433 P PPLA3 ES 57 CC 10151 313 374 Europe/Madrid 2012-03-04
-2512394 Portaje Portaje Portaje 39.91757 -6.56218 P PPLA3 ES 57 CC 10150 382 377 Europe/Madrid 2012-03-04
-2512398 Porreres Porreres Porreras,Porreres 39.51434 3.02197 P PPLA3 ES 07 PM 07043 4597 128 Europe/Madrid 2012-03-04
-2512408 Porcuna Porcuna Porcuna 37.87102 -4.18501 P PPLA3 ES 51 J 23069 6951 472 Europe/Madrid 2012-03-04
-2512423 Polopos Polopos Polopos 36.79466 -3.29816 P PPLA3 ES 51 GR 18162 1573 794 Europe/Madrid 2012-03-04
-2512427 Polop Polop Polop 38.62258 -0.1309 P PPL ES 60 A 03107 3354 217 Europe/Madrid 2012-01-19
-2512432 Pollença Pollenca Pollenca,Pollensa,Pollença 39.87678 3.01626 P PPLA3 ES 07 PM 07042 17260 47 Europe/Madrid 2011-07-31
-2512433 Polinyà de Xúquer Polinya de Xuquer Polina,Polina de Jucar,Polina del Jucar,Polinya de Xuquer,Polinyà de Xúquer,Poliña,Poliña de Júcar,Poliñá de Júcar,Poliñá del Júcar 39.2 -0.36667 P PPLA3 ES 60 V 46197 2231 11 Europe/Madrid 2012-03-04
-2512434 Polícar Policar Policar,Polícar 37.25759 -3.23375 P PPLA3 ES 51 GR 18161 229 1160 Europe/Madrid 2012-03-04
-2512437 Polán Polan Polan,Polán 39.78765 -4.16792 P PPLA3 ES 54 TO 45133 3527 650 Europe/Madrid 2012-03-04
-2512451 Poblete Poblete Poblete 38.9355 -3.98137 P PPLA3 ES 54 CR 13064 964 625 Europe/Madrid 2012-03-04
-2512458 Pliego Pliego Pliego 37.98946 -1.50444 P PPLA3 ES 31 MU 30032 3543 402 Europe/Madrid 2012-03-04
-2512470 Plasenzuela Plasenzuela Plasenzuela 39.38194 -6.04786 P PPLA3 ES 57 CC 10149 543 427 Europe/Madrid 2012-03-04
-2512475 Planes Planes Planes 38.78524 -0.34271 P PPLA3 ES 60 A 03106 798 443 Europe/Madrid 2012-03-04
-2512490 Pizarra Pizarra Pizarro 36.76543 -4.70833 P PPLA3 ES 51 MA 29080 7345 78 Europe/Madrid 2012-03-04
-2512496 Piqueras del Castillo Piqueras del Castillo Piqueras del Castillo 39.71667 -2.06667 P PPLA3 ES 54 CU 16161 81 949 Europe/Madrid 2012-03-04
-2512509 Pinos Puente Pinos Puente Pinos Puente 37.2511 -3.74967 P PPLA3 ES 51 GR 18158 13515 573 Europe/Madrid 2012-03-04
-2512510 Pinoso Pinoso El Pinos,El Pinós,Pinoso 38.40164 -1.04196 P PPL ES 60 A 03105 7090 573 Europe/Madrid 2012-01-19
-2512511 Pinos Genil Pinos Genil 37.16346 -3.50215 P PPLA3 ES 51 GR 18157 1236 777 Europe/Madrid 2012-03-04
-2512541 Pinet Pinet Pinet 38.98176 -0.3387 P PPLA3 ES 60 V 46196 192 343 Europe/Madrid 2012-03-04
-2512548 Pinarejo Pinarejo Pinarejo 39.61639 -2.42592 P PPLA3 ES 54 CU 16159 352 871 Europe/Madrid 2012-03-04
-2512558 Piñar Pinar Pinar,Piñar 37.44457 -3.43861 P PPL ES 51 GR 18159 1110 902 Europe/Madrid 2012-01-19
-2512571 Piles Piles Piles 38.94143 -0.13286 P PPLA3 ES 60 V 46195 2347 15 Europe/Madrid 2012-03-04
-2512578 Pilas Pilas Pilas 37.30337 -6.30097 P PPLA3 ES 51 SE 41075 13386 74 Europe/Madrid 2012-03-04
-2512581 Pilar de la Horadada Pilar de la Horadada El Pilar de Horadada,Pilar de la Horadada 37.86591 -0.79256 P PPLA3 ES 60 A 03902 22050 31 Europe/Madrid 2012-03-04
-2512596 Piedras Albas Piedras Albas Piedras Albas 39.78417 -6.92588 P PPLA3 ES 57 CC 10145 156 352 Europe/Madrid 2012-03-04
-2512609 Piedrabuena Piedrabuena Piedrabuena 39.03536 -4.17512 P PPLA3 ES 54 CR 13063 4863 594 Europe/Madrid 2012-03-04
-2512615 Picón Picon Picon,Picón 39.05074 -4.06084 P PPLA3 ES 54 CR 13062 660 602 Europe/Madrid 2012-03-04
-2512620 Picassent Picassent Picasent,Picassent 39.36667 -0.45 P PPLA3 ES 60 V 46194 19786 33 Europe/Madrid 2012-03-04
-2512624 Picanya Picanya Picana,Picanya,Picaña 39.43333 -0.43333 P PPLA3 ES 60 V 46193 11053 35 Europe/Madrid 2012-03-04
-2512634 Pétrola Petrola Petrola,Pétrola 38.82628 -1.55662 P PPLA3 ES 54 AB 02061 874 870 Europe/Madrid 2012-03-04
-2512636 Petrés Petres Petres,Petrés 39.68333 -0.3 P PPLA3 ES 60 V 46192 867 75 Europe/Madrid 2012-03-04
-2512638 Petra Petra Petra,Петра 39.61351 3.11312 P PPLA3 ES 07 PM 07041 2707 103 Europe/Madrid 2011-07-31
-2512644 Pescueza Pescueza Pescueza 39.91807 -6.64589 P PPLA3 ES 57 CC 10143 170 337 Europe/Madrid 2012-03-04
-2512660 Periana Periana 36.92931 -4.19163 P PPLA3 ES 51 MA 29079 3404 569 Europe/Madrid 2012-03-04
-2512690 Peraleda de San Román Peraleda de San Roman Peraleda de San Roman,Peraleda de San Román 39.7413 -5.38726 P PPLA3 ES 57 CC 10141 348 472 Europe/Madrid 2012-03-04
-2512691 Peraleda de la Mata Peraleda de la Mata Peraleda,Peraleda de la Mata 39.85288 -5.46065 P PPLA3 ES 57 CC 10140 1545 343 Europe/Madrid 2012-03-04
-2512715 Peñas de San Pedro Penas de San Pedro Penas de San Pedro,Peñas de San Pedro 38.7288 -2.005 P PPLA3 ES 54 AB 02060 1259 1028 Europe/Madrid 2012-03-04
-2512730 Peñarroya-Pueblonuevo Penarroya-Pueblonuevo Penarroya-Pueblonuevo,Peñarroya-Pueblonuevo,Pueblonuevo del Terrible 38.3 -5.26667 P PPLA3 ES 51 CO 14052 11883 544 Europe/Madrid 2012-03-04
-2512737 Peñalsordo Penalsordo Penalsordo,Peñalsordo 38.82019 -5.11405 P PPLA3 ES 57 BA 06100 1379 423 Europe/Madrid 2012-03-04
-2512746 Peñaflor Penaflor Penaflor,Peñaflor 37.70892 -5.34504 P PPLA3 ES 51 SE 41074 3688 68 Europe/Madrid 2012-03-04
-2512767 Peligros Peligros 37.23231 -3.62901 P PPLA3 ES 51 GR 18153 10910 693 Europe/Madrid 2012-03-04
-2512784 Pegalajar Pegalajar Pegalajar,Pegalapar 37.74008 -3.64946 P PPLA3 ES 51 J 23067 3095 821 Europe/Madrid 2012-03-04
-2512787 Pedroso de Acim Pedroso de Acim Pedroso de Acim 39.82522 -6.41251 P PPLA3 ES 57 CC 10139 118 464 Europe/Madrid 2012-03-04
-2512794 Pedro Muñoz Pedro Munoz Pedro Munoz,Pedro Muñoz 39.40285 -2.94664 P PPLA3 ES 54 CR 13061 7789 666 Europe/Madrid 2012-03-04
-2512796 Pedro Martínez Pedro Martinez Pedro Martinez,Pedro Martínez 37.5029 -3.23134 P PPLA3 ES 51 GR 18152 1229 1040 Europe/Madrid 2012-03-04
-2512805 Pedroche Pedroche Pedroche 38.42848 -4.76324 P PPLA3 ES 51 CO 14051 1711 628 Europe/Madrid 2012-03-04
-2512812 Pedro Abad Pedro Abad Pedro Abad 37.96686 -4.4556 P PPLA3 ES 51 CO 14050 2922 159 Europe/Madrid 2012-03-04
-2512824 Pedrera Pedrera Pedrera 37.22604 -4.8942 P PPLA3 ES 51 SE 41072 5049 459 Europe/Madrid 2012-03-04
-2512825 Pedreguer Pedreguer Medreguer,Pedreguer 38.79312 0.03411 P PPLA3 ES 60 A 03101 6547 92 Europe/Madrid 2012-03-04
-2512837 Pedralba Pedralba Pedralba,Pedralva 39.6 -0.71667 P PPLA3 ES 60 V 46191 2436 149 Europe/Madrid 2012-03-04
-2512842 Pechina Pechina Pechina 36.91619 -2.43689 P PPLA3 ES 51 AL 04074 0 108 Europe/Madrid 2012-03-04
-2512844 Peal de Becerro Peal de Becerro Peal de Becerro 37.91338 -3.12148 P PPL ES 51 J 23028 5484 549 Europe/Madrid 2012-01-19
-2512846 Paymogo Paymogo Paymogo 37.73999 -7.34499 P PPLA3 ES 51 H 21057 1310 177 Europe/Madrid 2012-03-04
-2512848 Pavías Pavias Pavias,Pavies,Pavías 39.96667 -0.48333 P PPLA3 ES 60 CS 12088 57 832 Europe/Madrid 2012-03-04
-2512857 Paterna de Rivera Paterna de Rivera Paterna de Rivera,Paterna de la Rivera 36.52246 -5.86578 P PPLA3 ES 51 CA 11025 5306 129 Europe/Madrid 2012-03-04
-2512858 Paterna del Río Paterna del Rio Palerna del Rio,Palerna del Río 37.02222 -2.95343 P PPLA3 ES 51 AL 04073 417 1209 Europe/Madrid 2012-03-04
-2512859 Paterna del Madera Paterna del Madera Paterna del Madera 38.59751 -2.34421 P PPLA3 ES 54 AB 02058 474 1125 Europe/Madrid 2012-03-04
-2512860 Paterna del Campo Paterna del Campo Paterna del Camino,Paterna del Campo 37.41948 -6.40248 P PPL ES 51 H 21032 3625 175 Europe/Madrid 2012-01-19
-2512862 Paterna Paterna Paterna,Патерна 39.5 -0.43333 P PPLA3 ES 60 V 46190 64023 61 Europe/Madrid 2012-03-04
-2512891 Partaloa Partaloa Partaloa 37.40764 -2.22526 P PPLA3 ES 51 AL 04072 584 540 Europe/Madrid 2012-03-04
-2512926 Parcent Parcent Parcent 38.74502 -0.06446 P PPLA3 ES 60 A 03100 926 292 Europe/Madrid 2012-03-04
-2512927 Parauta Parauta Parauta 36.65629 -5.12916 P PPLA3 ES 51 MA 29077 245 802 Europe/Madrid 2012-03-04
-2512933 Paradas Paradas Paradas 37.29047 -5.49703 P PPLA3 ES 51 SE 41071 7084 120 Europe/Madrid 2012-03-04
-2512935 Paracuellos Paracuellos Paracuellos 39.71667 -1.78333 P PPLA3 ES 54 CU 16150 157 922 Europe/Madrid 2012-03-04
-2512948 Pampaneira Pampaneira 36.94015 -3.36096 P PPLA3 ES 51 GR 18151 324 1064 Europe/Madrid 2012-03-04
-2512950 Palos de la Frontera Palos de la Frontera Palos,Palos de la Frontera 37.23457 -6.89471 P PPL ES 51 H 21041 7956 9 Europe/Madrid 2012-01-19
-2512963 Palomas Palomas Palomas 38.69277 -6.1349 P PPLA3 ES 57 BA 06098 731 318 Europe/Madrid 2012-03-04
-2512964 Palomares del Río Palomares del Rio Palomares,Palomares del Rio,Palomares del Río 37.32224 -6.05863 P PPLA3 ES 51 SE 41070 4782 39 Europe/Madrid 2012-03-04
-2512965 Palomares del Campo Palomares del Campo Palomares del Campo 39.94664 -2.59776 P PPLA3 ES 54 CU 16148 917 885 Europe/Madrid 2012-03-04
-2512985 Palmera Palmera Palmera 38.93927 -0.15411 P PPLA3 ES 60 V 46188 605 24 Europe/Madrid 2012-03-04
-2512989 Palma Palma Ciutat de Mallorca,Madina Mayurqa,PMI,Pal'ma-de-Majorka,Palma,Palma de Maiorca,Palma de Majorque,Palma de Malhorca,Palma de Malhòrca,Palma de Mallorca,Palma di Majorca,balma dy maywrka,pa er ma,palmademayoleuka,plmh dh mywrqh,Пальма-де-Майорка,פלמה דה מיורקה,بالما دي مايوركا,パルマ・デ・マリョルカ,帕爾馬,팔마데마요르카 39.56939 2.65024 P PPLA ES 07 PM 07040 401270 34 Europe/Madrid 2011-06-16
-2512990 Palma del Río Palma del Rio Pal'ma-del'-Rio,Palma del Rio,Palma del Río,Пальма-дель-Рио 37.70024 -5.28121 P PPL ES 51 CO 14036 21588 60 Europe/Madrid 2012-01-19
-2512991 Palma de Gandía Palma de Gandia Palma de Gandia,Palma de Gandía 38.92672 -0.22028 P PPLA3 ES 60 V 46187 1655 63 Europe/Madrid 2012-03-04
-2512998 Palenciana Palenciana Palenciana 37.24851 -4.58261 P PPLA3 ES 51 CO 14048 1562 395 Europe/Madrid 2012-03-04
-2513018 Pajaroncillo Pajaroncillo Pajaroncillo 39.95 -1.73333 P PPLA3 ES 54 CU 16147 96 975 Europe/Madrid 2012-03-04
-2513019 Pajarón Pajaron Pajaron,Pajarón 39.95 -1.78333 P PPLA3 ES 54 CU 16146 113 1055 Europe/Madrid 2012-03-04
-2513026 Pájara Pajara Pajara,Pájara 28.35039 -14.1076 P PPLA3 ES 53 GC 35015 20821 213 Atlantic/Canary 2012-03-04
-2513029 Paiporta Paiporta Paiporta,Pajporta,Пайпорта 39.43333 -0.41667 P PPLA3 ES 60 V 46186 23519 22 Europe/Madrid 2012-03-04
-2513034 Padules Padules Padules 36.99813 -2.77367 P PPLA3 ES 51 AL 04071 458 748 Europe/Madrid 2012-03-04
-2513035 Padul Padul 37.02462 -3.62678 P PPLA3 ES 51 GR 18150 7266 766 Europe/Madrid 2012-03-04
-2513045 Otura Otura 37.08846 -3.63321 P PPLA3 ES 51 GR 18149 5362 803 Europe/Madrid 2012-03-04
-2513046 Otos Otos Otos 38.85427 -0.44399 P PPLA3 ES 60 V 46185 504 331 Europe/Madrid 2012-03-04
-2513049 Otívar Otivar Otivar,Otívar 36.81582 -3.67979 P PPL ES 51 GR 18017 1055 316 Europe/Madrid 2012-01-19
-2513051 Otero Otero Otero 40.00096 -4.51539 P PPLA3 ES 54 TO 45126 227 465 Europe/Madrid 2012-03-04
-2513052 Osuna Osuna Osuna 37.23765 -5.10746 P PPLA3 ES 51 SE 41068 17851 278 Europe/Madrid 2012-03-04
-2513053 Ossa de Montiel Ossa de Montiel Osa de Montiel,Ossa de Montiel 38.96398 -2.74553 P PPLA3 ES 54 AB 02057 2821 914 Europe/Madrid 2012-03-04
-2513057 Osa de la Vega Osa de la Vega Osa de la Vega 39.65977 -2.75998 P PPLA3 ES 54 CU 16145 680 763 Europe/Madrid 2012-03-04
-2513069 Oropesa Oropesa Oropesa,Oropesa y Corchueta,Oropesay Corchuela 39.91726 -5.17371 P PPLA3 ES 54 TO 45125 2831 417 Europe/Madrid 2012-03-04
-2513073 Órjiva Orjiva Orgiva,Orjiva,Órgiva,Órjiva 36.90259 -3.42379 P PPL ES 51 GR 18147 5217 468 Europe/Madrid 2012-01-19
-2513076 Orihuela Orihuela Aurariola,Orihuela,Oriola,Oriuehla,Ориуэла 38.08483 -0.94401 P PPLA3 ES 60 A 03099 86164 32 Europe/Madrid 2012-03-04
-2513079 Oria Oria Oria 37.4853 -2.29292 P PPLA3 ES 51 AL 04070 2402 1028 Europe/Madrid 2012-03-04
-2513081 Orgaz Orgaz 39.64826 -3.87577 P PPLA3 ES 54 TO 45124 2757 748 Europe/Madrid 2012-03-04
-2513084 Orellana la Vieja Orellana la Vieja Orellana la Vieja 39.00617 -5.53441 P PPLA3 ES 57 BA 06097 3193 356 Europe/Madrid 2012-03-04
-2513092 Orcheta Orcheta Orcheta,Orxeta 38.56397 -0.26299 P PPL ES 60 A 03098 1303 198 Europe/Madrid 2012-01-19
-2513094 Orcera Orcera 38.31742 -2.66487 P PPLA3 ES 51 J 23065 2116 759 Europe/Madrid 2012-03-04
-2513097 Orce Orce Orce 37.7212 -2.47752 P PPLA3 ES 51 GR 18146 1336 941 Europe/Madrid 2012-03-04
-2513098 Orba Orba Orba 38.78041 -0.06278 P PPLA3 ES 60 A 03097 2100 163 Europe/Madrid 2012-03-04
-2513103 Ontur Ontur Ontar,Ontur 38.61509 -1.49724 P PPLA3 ES 54 AB 02056 2431 662 Europe/Madrid 2012-03-04
-2513104 Ontígola Ontigola 40.00421 -3.57227 P PPLA3 ES 54 TO 45123 1965 612 Europe/Madrid 2012-03-04
-2513106 Ontinyent Ontinyent Onten'ente,Onteniente,Ontinyent,Онтеньенте 38.81667 -0.61667 P PPLA3 ES 60 V 46184 37735 364 Europe/Madrid 2012-03-04
-2513113 Onil Onil Onil 38.62606 -0.67313 P PPLA3 ES 60 A 03096 7474 676 Europe/Madrid 2012-03-04
-2513114 Ondara Ondara Ondara 38.82817 0.0172 P PPLA3 ES 60 A 03095 5798 37 Europe/Madrid 2012-03-04
-2513115 Onda Onda Onda,Онда 39.96667 -0.25 P PPLA3 ES 60 CS 12084 25691 172 Europe/Madrid 2012-03-04
-2513120 Olvera Olvera Olvera 36.93418 -5.26678 P PPLA3 ES 51 CA 11024 8515 590 Europe/Madrid 2012-03-04
-2513121 Olula del Río Olula del Rio Olula 37.35 -2.3 P PPLL ES 51 AL 04069 6244 461 Europe/Madrid 2006-06-14
-2513122 Olula de Castro Olula de Castro Olula,Olula de Castro,Ulula de Castro 37.17475 -2.4743 P PPLA3 ES 51 AL 04068 148 1005 Europe/Madrid 2012-03-04
-2513124 Olocau Olocau Olocau 39.7 -0.53333 P PPL ES 60 46182 1127 267 Europe/Madrid 2012-01-19
-2513126 Olmedilla de Alarcón Olmedilla de Alarcon Olmedilla de Alarcon,Olmedilla de Alarcón 39.61667 -2.1 P PPLA3 ES 54 CU 16142 145 842 Europe/Madrid 2012-03-04
-2513128 Olmeda del Rey Olmeda del Rey Olmeda del Rey 39.8 -2.08333 P PPLA3 ES 54 CU 16141 215 960 Europe/Madrid 2012-03-04
-2513130 L'Olleria L'Olleria L'Olleria,Olleria,Ollería 38.91667 -0.55 P PPL ES 60 V 46183 7648 255 Europe/Madrid 2006-04-08
-2513137 Olivares de Júcar Olivares de Jucar Olivares,Olivares de Jucar,Olivares de Júcar 39.76101 -2.35589 P PPLA3 ES 54 CU 16139 506 921 Europe/Madrid 2012-03-04
-2513140 Olivares Olivares Olivares 37.41802 -6.15603 P PPLA3 ES 51 SE 41067 8759 175 Europe/Madrid 2012-03-04
-2513142 Oliva de Mérida Oliva de Merida Oliva de Merida,Oliva de Mérida 38.79051 -6.12402 P PPLA3 ES 57 BA 06094 1888 322 Europe/Madrid 2012-03-04
-2513143 Oliva de la Frontera Oliva de la Frontera Oliva de Frontera,Oliva de Jerez,Oliva de la Frontera 38.27595 -6.91874 P PPLA3 ES 57 BA 06093 5682 376 Europe/Madrid 2012-03-04
-2513145 Oliva Oliva Oliva,Олива 38.91971 -0.11935 P PPLA3 ES 60 V 46181 28419 22 Europe/Madrid 2012-03-04
-2513146 Olías del Rey Olias del Rey 39.94436 -3.98684 P PPLA3 ES 54 TO 45122 5336 593 Europe/Madrid 2012-03-04
-2513160 Ojós Ojos Ojos,Ojós 38.147 -1.34261 P PPLA3 ES 31 MU 30031 597 124 Europe/Madrid 2012-03-04
-2513163 Ojén Ojen Ojen,Ojén 36.56486 -4.85561 P PPLA3 ES 51 MA 29076 2347 253 330 Europe/Madrid 2012-03-04
-2513166 Ohanes Ohanes Ohanes 37.03861 -2.74524 P PPLA3 ES 51 AL 04067 865 977 Europe/Madrid 2012-03-04
-2513167 Ogíjares Ogijares 37.11913 -3.60772 P PPLA3 ES 51 GR 18145 13119 723 Europe/Madrid 2012-03-04
-2513175 Ocaña Ocana 39.95785 -3.4982 P PPLA3 ES 54 TO 45121 6913 741 Europe/Madrid 2012-03-04
-2513179 Obejo Obejo Obejo,Ovejo 38.13265 -4.80018 P PPL ES 51 CO 14054 1464 702 Europe/Madrid 2012-01-19
-2513180 Nules Nules Nules 39.85362 -0.15642 P PPLA3 ES 60 CS 12082 13490 21 Europe/Madrid 2012-03-04
-2513184 Nueva-Carteya Nueva-Carteya Nueva-Carteya 37.5863 -4.46759 P PPL ES 51 CO 14046 5561 437 Europe/Madrid 2012-01-19
-2513195 Novelda Novelda Novel'da,Novelda,Новельда 38.38479 -0.76773 P PPLA3 ES 60 A 03093 27135 247 Europe/Madrid 2012-03-04
-2513214 Nogales Nogales Nogales 38.58629 -6.74901 P PPLA3 ES 57 BA 06092 689 373 Europe/Madrid 2012-03-04
-2513215 Noez Noez Noez 39.74094 -4.18408 P PPLA3 ES 54 TO 45116 802 759 Europe/Madrid 2012-03-04
-2513216 Noblejas Noblejas 39.98061 -3.44001 P PPLA3 ES 54 TO 45115 3322 744 Europe/Madrid 2012-03-04
-2513217 Noalejo Noalejo Noalejo 37.53017 -3.65615 P PPLA3 ES 51 J 23064 2161 1097 Europe/Madrid 2012-03-04
-2513218 Nívar Nivar 37.25909 -3.57768 P PPLA3 ES 51 GR 18144 658 1034 Europe/Madrid 2012-03-04
-2513222 Níjar Nijar Nikhar,Нихар 36.96655 -2.20595 P PPLA3 ES 51 AL 04066 26516 367 Europe/Madrid 2012-03-04
-2513223 Nigüelas Niguelas 36.9776 -3.53949 P PPLA3 ES 51 GR 18143 924 930 Europe/Madrid 2012-03-04
-2513230 Niebla Niebla Niebla 37.36213 -6.67894 P PPLA3 ES 51 H 21053 3962 41 Europe/Madrid 2012-03-04
-2513237 Nerva Nerva Nerva 37.69627 -6.54968 P PPLA3 ES 51 H 21052 6009 336 Europe/Madrid 2012-03-04
-2513238 Nerpio Nerpio Nerpio 38.1475 -2.30202 P PPLA3 ES 54 AB 02055 1655 1078 Europe/Madrid 2012-03-04
-2513240 Nerja Nerja Nerja 36.75855 -3.88727 P PPLA3 ES 51 MA 29075 21811 88 Europe/Madrid 2012-03-04
-2513288 Navezuelas Navezuelas Navezuelas 39.50918 -5.43766 P PPLA3 ES 57 CC 10134 732 933 Europe/Madrid 2012-03-04
-2513298 Navas del Madroño Navas del Madrono Navas del Madrono,Navas del Madroño,Navas del Modrono 39.6229 -6.6526 P PPL ES 57 CC 10008 1491 438 Europe/Madrid 2012-01-19
-2513299 Navas de Jorquera Navas de Jorquera Navas de Jorquera 39.28333 -1.71667 P PPLA3 ES 54 AB 02054 517 709 Europe/Madrid 2012-03-04
-2513300 Navas de Estena Navas de Estena Navas de Estena 39.49481 -4.52155 P PPLA3 ES 54 CR 13060 392 665 Europe/Madrid 2012-03-04
-2513306 Navarrés Navarres Navarres,Navarrés 39.10198 -0.69469 P PPLA3 ES 60 V 46179 2929 276 Europe/Madrid 2012-03-04
-2513313 Navalvillar de Pela Navalvillar de Pela 39.09436 -5.4681 P PPLA3 ES 57 BA 06091 4697 336 Europe/Madrid 2012-03-04
-2513314 Navalvillar de Ibor Navalvillar de Ibor Navalvillar de Ibor 39.5839 -5.41328 P PPLA3 ES 57 CC 10132 430 677 Europe/Madrid 2012-03-04
-2513320 Navalpino Navalpino Navalpino 39.22573 -4.59133 P PPLA3 ES 54 CR 13059 264 625 Europe/Madrid 2012-03-04
-2513323 Navalmoralejo Navalmoralejo Navalmoralejo 39.73928 -5.14359 P PPLA3 ES 54 TO 45111 70 428 Europe/Madrid 2012-03-04
-2513324 Navalmoral de la Mata Navalmoral de la Mata Navalmoral,Navalmoral de la Mata,Navalmoral de la Mota 39.89158 -5.54064 P PPLA3 ES 57 CC 10131 17228 295 Europe/Madrid 2012-03-04
-2513343 Navajas Navajas Navaixes,Navajas 39.88333 -0.5 P PPLA3 ES 60 CS 12081 640 401 Europe/Madrid 2012-03-04
-2513346 Navahermosa Navahermosa Navahermosa 39.63526 -4.47012 P PPLA3 ES 54 TO 45109 4146 736 Europe/Madrid 2012-03-04
-2513372 Narboneta Narboneta Narboneta 39.75 -1.46667 P PPLA3 ES 54 CU 16137 101 871 Europe/Madrid 2012-03-04
-2513375 Náquera Naquera Naquera,Nàquera,Náquera 39.65 -0.41667 P PPLA3 ES 60 V 46178 3770 220 Europe/Madrid 2012-03-04
-2513384 Nambroca Nambroca Nambroca 39.79771 -3.94434 P PPLA3 ES 54 TO 45107 2920 680 Europe/Madrid 2012-03-04
-2513395 Museros Museros Museros 39.56667 -0.35 P PPLA3 ES 60 V 46177 4555 19 Europe/Madrid 2012-03-04
-2513400 Murtas Murtas Murtas 36.88504 -3.10944 P PPLA3 ES 51 GR 18141 720 1124 Europe/Madrid 2012-03-04
-2513403 Muro del Alcoy Muro del Alcoy Muro,Muro de Alcoy,Muro del Alcoy 38.7812 -0.43608 P PPL ES 60 A 03092 7983 399 Europe/Madrid 2012-01-19
-2513406 Muro Muro Muro 39.73661 3.05559 P PPLA3 ES 07 PM 07039 6610 72 Europe/Madrid 2012-03-04
-2513408 Murla Murla Murla 38.76037 -0.08208 P PPLA3 ES 60 A 03091 518 285 Europe/Madrid 2012-03-04
-2513416 Murcia Murcia Ciutat de Murcia,Ciutat de Múrcia,Murcia,Murcie,Murcio,Murcja,Mursia,Mursija,Múrcia,mrsyt,mu er xi ya,murushia,mwrsya,mwrsyh,Мурсия,מורסיה,مرسية,مورسیا,ムルシア,穆尔西亚 37.98704 -1.13004 P PPLA ES 31 MU 30030 436870 53 Europe/Madrid 2012-01-19
-2513421 Munera Munera Munera 39.04217 -2.48068 P PPL ES 54 AB 02019 3985 923 Europe/Madrid 2012-01-19
-2513436 Mula Mula Mula 38.04094 -1.49014 P PPLA3 ES 31 MU 30029 16941 308 Europe/Madrid 2012-03-04
-2513465 Muchamiel Muchamiel Muchamiel,Mutxamel 38.4158 -0.44529 P PPL ES 60 A 03014 22510 70 Europe/Madrid 2010-04-22
-2513475 Moya Moya Moya 39.95 -1.36667 P PPLA3 ES 54 CU 16135 242 1082 Europe/Madrid 2012-03-04
-2513476 Moya Moya Moya 28.10136 -15.58917 P PPLA3 ES 53 GC 35013 7492 407 Atlantic/Canary 2012-03-04
-2513477 Motril Motril Motril,Motril',Мотриль 36.75066 -3.5179 P PPLA3 ES 51 GR 18140 60279 34 65 Europe/Madrid 2012-03-04
-2513479 Motilleja Motilleja Motilleja 39.18333 -1.78333 P PPLA3 ES 54 AB 02052 550 672 Europe/Madrid 2012-03-04
-2513480 Motilla del Palancar Motilla del Palancar Motilla del Palancar 39.56667 -1.88333 P PPLA3 ES 54 CU 16134 5607 846 Europe/Madrid 2012-03-04
-2513481 Mota del Cuervo Mota del Cuervo Mata del Cuervo,Mota del Cuervo 39.50188 -2.86994 P PPLA3 ES 54 CU 16133 6020 710 Europe/Madrid 2012-03-04
-2513482 Mota de Altarejos Mota de Altarejos Mota de Altarejos 39.88201 -2.30958 P PPLA3 ES 54 CU 16132 57 860 Europe/Madrid 2012-03-04
-2513509 Morón de la Frontera Moron de la Frontera Moron,Moron de la Frontera,Moron-de-la-Frontera,Morón,Morón de la Frontera,Морон-де-ла-Фронтера 37.12084 -5.45403 P PPLA3 ES 51 SE 41065 28455 228 Europe/Madrid 2012-03-04
-2513558 Moraira Moraira Moraira,Morajra,Морайра 38.68866 0.13484 P PPL ES 60 A 03128 1845 17 Europe/Madrid 2010-10-16
-2513562 Moratalla Moratalla Moratalla 38.18928 -1.89183 P PPLA3 ES 31 MU 30028 8530 641 Europe/Madrid 2012-03-04
-2513579 Moraleda de Zafayona Moraleda de Zafayona Moraleda de Zafayona 37.16723 -3.96505 P PPLA3 ES 51 GR 18138 2730 616 Europe/Madrid 2012-03-04
-2513580 Moral de Calatrava Moral de Calatrava Moral de Calatrava 38.82989 -3.57813 P PPLA3 ES 54 CR 13058 5236 674 Europe/Madrid 2012-03-04
-2513588 Mora Mora Mora 39.68492 -3.77394 P PPLA3 ES 54 TO 45106 10554 722 Europe/Madrid 2012-03-04
-2513589 Monturque Monturque 37.47186 -4.58164 P PPLA3 ES 51 CO 14044 2032 370 Europe/Madrid 2012-03-04
-2513590 Montuïri Montuiri Montuiri,Montuïri 39.56742 2.98189 P PPLA3 ES 07 PM 07038 2594 167 Europe/Madrid 2012-03-04
-2513592 Montroy Montroy Montroi,Montroy 39.33333 -0.61667 P PPLA3 ES 60 V 46176 1768 135 Europe/Madrid 2012-03-04
-2513595 Montoro Montoro Montoro 38.02409 -4.3834 P PPL ES 51 CO 14021 9480 195 Europe/Madrid 2012-01-19
-2513597 Montizón Montizon Montizon,Montizón 38.34249 -3.10404 P PPLA3 ES 51 J 23062 2001 643 Europe/Madrid 2012-03-04
-2513599 Montillana Montillana Montillana 37.50168 -3.67368 P PPLA3 ES 51 GR 18137 1300 1021 Europe/Madrid 2012-03-04
-2513601 Montilla Montilla Montil'ja,Montilla,Монтилья 37.58627 -4.63805 P PPLA3 ES 51 CO 14042 23840 382 Europe/Madrid 2012-03-04
-2513604 Montijo Montijo Montijo 38.90839 -6.61785 P PPLA3 ES 57 BA 06088 16236 201 Europe/Madrid 2012-03-04
-2513606 Montiel Montiel Montiel 38.69802 -2.86441 P PPLA3 ES 54 CR 13057 1688 894 Europe/Madrid 2012-03-04
-2513607 Montichelvo Montichelvo Montichelvo,Montixelvo 38.89129 -0.34123 P PPLA3 ES 60 V 46175 673 272 Europe/Madrid 2012-03-04
-2513614 Montesa Montesa Montesa 38.9503 -0.652 P PPLA3 ES 60 V 46174 1400 297 Europe/Madrid 2012-03-04
-2513618 Monterrubio de la Serena Monterrubio de la Serena Monterrubio,Monterrubio de la Serena 38.58876 -5.44569 P PPLA3 ES 57 BA 06087 2752 555 Europe/Madrid 2012-03-04
-2513628 Montemolín Montemolin Montemolin,Montemolín 38.15 -6.2 P PPL ES 57 BA 06052 1578 660 Europe/Madrid 2012-01-19
-2513632 Montemayor Montemayor Montemayor 37.6479 -4.69779 P PPLA3 ES 51 CO 14041 3946 368 Europe/Madrid 2012-03-04
-2513637 Montellano Montellano Montellano 36.99531 -5.57145 P PPLA3 ES 51 SE 41064 6851 262 Europe/Madrid 2012-03-04
-2513638 Montejicar Montejicar Montejicar 37.57224 -3.50527 P PPL ES 51 GR 18136 2647 1146 Europe/Madrid 2012-01-19
-2513639 Montejaque Montejaque Montejaque 36.73684 -5.2499 P PPLA3 ES 51 MA 29074 983 679 Europe/Madrid 2012-03-04
-2513640 Montefrío Montefrio 37.32308 -4.00898 P PPLA3 ES 51 GR 18135 6631 796 Europe/Madrid 2012-03-04
-2513647 Montearagón Montearagon Montearagon,Montearagón 39.96425 -4.63214 P PPLA3 ES 54 TO 45104 499 432 Europe/Madrid 2012-03-04
-2513649 Montealegre del Castillo Montealegre del Castillo Montealegre,Montealegre del Castillo 38.78856 -1.32722 P PPLA3 ES 54 AB 02051 2327 803 Europe/Madrid 2012-03-04
-2513651 Monteagudo de las Salinas Monteagudo de las Salinas Monteagudo de las Salinas 39.8 -1.9 P PPLA3 ES 54 CU 16131 160 948 Europe/Madrid 2012-03-04
-2513659 Montánchez Montanchez Montanchez,Montánchez 39.22548 -6.14914 P PPLA3 ES 57 CC 10126 2017 709 Europe/Madrid 2012-03-04
-2513665 Montalvos Montalvos Montalvos 39.16667 -2.01667 P PPLA3 ES 54 AB 02050 143 707 Europe/Madrid 2012-03-04
-2513667 Montalbo Montalbo Montalbo,Montalvo 39.87994 -2.67038 P PPLA3 ES 54 CU 16130 694 876 Europe/Madrid 2012-03-04
-2513670 Montalbanejo Montalbanejo Montalbanejo 39.7337 -2.49911 P PPLA3 ES 54 CU 16129 176 908 Europe/Madrid 2012-03-04
-2513671 Montalbán de Córdoba Montalban de Cordoba Montalban de Cordoba,Montalbán de Córdoba 37.57996 -4.74935 P PPLA3 ES 51 CO 14040 4665 270 Europe/Madrid 2012-03-04
-2513673 Montaberner Montaberner 38.89021 -0.49582 P PPL ES 60 V 46006 1779 184 Europe/Madrid 2011-09-11
-2513674 Monserrat Monserrat Monserrat,Montserrat d'Alcala,Montserrat d'Alcalà 39.36667 -0.6 P PPL ES 60 V 46172 4091 197 Europe/Madrid 2012-01-19
-2513678 Monreal del Llano Monreal del Llano Monreal del Llano 39.56888 -2.76046 P PPLA3 ES 54 CU 16128 74 735 Europe/Madrid 2012-03-04
-2513680 Monóvar Monovar Monovar,Monover,Monòver,Monóvar 38.43809 -0.84062 P PPL ES 60 A 03093 13060 406 Europe/Madrid 2012-01-19
-2513691 Monforte del Cid Monforte del Cid Monforte,Monforte de la Rambla,Monforte del Cid,Montfort del Cid 38.38027 -0.7285 P PPLA3 ES 60 A 03088 6001 227 Europe/Madrid 2012-03-04
-2513692 Monesterio Monesterio Monasterio,Monesterio,Monestorio 38.08333 -6.26667 P PPLA3 ES 57 BA 06085 4378 731 Europe/Madrid 2012-03-04
-2513699 Monda Monda 36.63027 -4.83192 P PPLA3 ES 51 MA 29073 2078 365 Europe/Madrid 2012-03-04
-2513700 Moncófar Moncofar Mocofar,Moncofa,Moncofar,Moncófar 39.80907 -0.14701 P PPL ES 60 CS 12077 4930 9 Europe/Madrid 2012-01-19
-2513703 Moncada Moncada Moncada,Monkada,Montcada,Монкада 39.54555 -0.39551 P PPLA3 ES 60 V 46171 21900 34 Europe/Madrid 2012-03-04
-2513709 Monachil Monachil Monachil 37.1332 -3.53724 P PPLA3 ES 51 GR 18134 5843 868 Europe/Madrid 2012-03-04
-2513713 Molvízar Molvizar Molvizar,Molvízar 36.78592 -3.60782 P PPLA3 ES 51 GR 18133 2704 233 Europe/Madrid 2012-03-04
-2513717 Mollina Mollina Mollina 37.12534 -4.65686 P PPLA3 ES 51 MA 29072 4082 475 Europe/Madrid 2012-03-04
-2513753 Molinicos Molinicos Molinicos 38.46717 -2.23939 P PPLA3 ES 54 AB 02049 1151 853 Europe/Madrid 2012-03-04
-2513759 Molina de Segura Molina de Segura Molina,Molina de Segura,Molina-de-Segura,Молина-де-Сегура 38.05456 -1.20763 P PPLA3 ES 31 MU 30027 64065 108 Europe/Madrid 2012-03-04
-2513786 Mojácar Mojacar 37.1402 -1.85102 P PPLA3 ES 51 AL 04064 5154 162 Europe/Madrid 2012-03-04
-2513788 Mohedas de la Jara Mohedas de la Jara Mohedas de la Jara 39.60417 -5.14247 P PPLA3 ES 54 TO 45103 565 644 Europe/Madrid 2012-03-04
-2513791 Moguer Moguer Moguer 37.27559 -6.83851 P PPLA3 ES 51 H 21050 19569 54 Europe/Madrid 2012-03-04
-2513794 Mogente Mogente Mogente 38.87598 -0.7515 P PPL ES 60 V 46251 4514 333 Europe/Madrid 2012-01-19
-2513798 Mogán Mogan Mogan,Mogán 27.88385 -15.72538 P PPLA3 ES 53 GC 35012 21690 238 Atlantic/Canary 2012-03-04
-2513800 Moclinejo Moclinejo 36.77134 -4.25514 P PPLA3 ES 51 MA 29071 1167 463 Europe/Madrid 2012-03-04
-2513801 Moclín Moclin 37.33959 -3.78651 P PPLA3 ES 51 GR 18132 4173 1014 Europe/Madrid 2012-03-04
-2513803 Mocejón Mocejon Mocejon,Mocejón 39.93934 -3.91716 P PPLA3 ES 54 TO 45102 4449 483 Europe/Madrid 2012-03-04
-2513811 Mislata Mislata Mislata,Мислата 39.47523 -0.41825 P PPLA3 ES 60 V 46169 43756 35 Europe/Madrid 2012-03-04
-2513821 Mirandilla Mirandilla Mirandilla 39.002 -6.28893 P PPLA3 ES 57 BA 06084 1363 295 Europe/Madrid 2012-03-04
-2513827 Miramar Miramar Miramar 38.95036 -0.14007 P PPLA3 ES 60 V 46168 1675 13 Europe/Madrid 2012-03-04
-2513840 Mirabel Mirabel Mirabel 39.8623 -6.23274 P PPLA3 ES 57 CC 10123 742 500 Europe/Madrid 2012-03-04
-2513844 Mira Mira Mira 39.71667 -1.43333 P PPLA3 ES 54 CU 16126 1208 862 Europe/Madrid 2012-03-04
-2513852 Minglanilla Minglanilla Minglanilla,Minglanillo 39.53333 -1.6 P PPLA3 ES 54 CU 16125 2300 803 Europe/Madrid 2012-03-04
-2513855 Minaya Minaya Minaya 39.27052 -2.32176 P PPLA3 ES 54 AB 02048 1701 730 Europe/Madrid 2012-03-04
-2513873 Millena Millena Millena 38.73082 -0.36274 P PPLA3 ES 60 A 03086 173 645 Europe/Madrid 2012-03-04
-2513874 Millares Millares Millares,Millars 39.25 -0.76667 P PPLA3 ES 60 V 46167 567 128 Europe/Madrid 2012-03-04
-2513875 Millanes Millanes Millanes 39.84917 -5.58079 P PPLA3 ES 57 CC 10122 182 371 Europe/Madrid 2012-03-04
-2513882 Mijas Mijas Mijas,Mikhas,Михас 36.59575 -4.63728 P PPLA3 ES 51 MA 29070 73787 418 Europe/Madrid 2012-03-04
-2513885 Miguelturra Miguelturra Miguelturra 38.96442 -3.89047 P PPL ES 54 CR 13013 13986 631 Europe/Madrid 2012-01-19
-2513886 Miguel Esteban Miguel Esteban Miguel Esteban 39.52448 -3.07618 P PPLA3 ES 54 TO 45101 5170 681 Europe/Madrid 2012-03-04
-2513893 Miajadas Miajadas Miajadas 39.15127 -5.90841 P PPLA3 ES 57 CC 10121 10338 298 Europe/Madrid 2012-03-04
-2513902 Mestanza Mestanza Mestanza 38.57616 -4.07096 P PPLA3 ES 54 CR 13055 801 736 Europe/Madrid 2012-03-04
-2513910 Mesas de Ibor Mesas de Ibor Mesas de Ibor 39.75587 -5.54637 P PPLA3 ES 57 CC 10120 206 486 Europe/Madrid 2012-03-04
-2513917 Mérida Merida Emerita Augusta,Merida,Merido,Mérida,merida,mryda,mrydh,Мерида,מרידה,مریدا,メリダ 38.91611 -6.34366 P PPLA ES 57 BA 06083 56395 229 Europe/Madrid 2012-01-19
-2513922 Es Mercadal Es Mercadal 39.99014 4.09387 P PPL ES 07 PM 07037 4063 63 Europe/Madrid 2010-04-09
-2513931 Mengibar Mengibar Mengibar 37.96978 -3.80884 P PPL ES 51 J 23061 8999 304 Europe/Madrid 2012-01-19
-2513932 Mengabril Mengabril Mengabril 38.93554 -5.93335 P PPLA3 ES 57 BA 06082 457 253 Europe/Madrid 2012-03-04
-2513935 Menasalbas Menasalbas Menasalbas 39.63954 -4.28418 P PPL ES 54 TO 45182 2978 709 Europe/Madrid 2012-01-19
-2513944 Membrilla Membrilla Membrilla 38.97198 -3.3433 P PPL ES 54 CR 13053 6466 671 Europe/Madrid 2012-01-19
-2513947 Melilla Melilla Ciudad Autonoma de Melilla,Ciudad Autónoma de Melilla,Ciudad de Melilla,Korisnik:Slaven Kosanovic/Melila,Lungsod ng Melilla,M'lila,Melil'ja,Melila,Melilla,Melilo,Melilya,Meliya,Millela,Rusaddir,Rusadir,Russadir,me li ya,mei li li ya,melilia,melliya,merirya,mlylyh,mlylyt,mlyyh,Корисник:Славен Косановић/Мелиља,Мелила,Мелилья,Мелиља,מלייה,مليلية,ملیلیه,เมลียา,მელილია,メリリャ,梅利利亚,멜리야 35.29369 -2.93833 P PPLA ES ML ME 52001 73460 14 Africa/Ceuta 2011-09-11
-2513949 Meliana Meliana Meliana 39.53333 -0.33333 P PPLA3 ES 60 V 46166 10395 7 Europe/Madrid 2012-03-04
-2513961 Medina Sidonia Medina Sidonia Medina Sidonia,Medina-Sidonia 36.45695 -5.92717 P PPL ES 51 CA 11023 11683 268 Europe/Madrid 2012-01-19
-2513962 Medina de las Torres Medina de las Torres Medina de las Torres 38.33333 -6.4 P PPLA3 ES 57 BA 06081 1398 502 Europe/Madrid 2012-03-04
-2513968 Medellín Medellin Medellin,Medellín 38.96265 -5.95785 P PPLA3 ES 57 BA 06080 2357 251 Europe/Madrid 2012-03-04
-2513978 Mazo Mazo El Pueblo,Mazo 28.60906 -17.77801 P PPL ES 53 TF 38053 4805 464 Atlantic/Canary 2012-01-19
-2513983 Mazarrón Mazarron Masarron,Mazarron,Mazarrón,Масаррон 37.5992 -1.31493 P PPLA3 ES 31 MU 30026 35221 66 Europe/Madrid 2012-03-04
-2513985 Mazarambroz Mazarambroz 39.69411 -4.01962 P PPLA3 ES 54 TO 45096 1331 778 Europe/Madrid 2012-03-04
-2514004 Matet Matet Matet 39.93333 -0.46667 P PPLA3 ES 60 CS 12076 132 617 Europe/Madrid 2012-03-04
-2514032 Mata de Alcántara Mata de Alcantara Mata de Alcantara,Mata de Alcántara 39.71738 -6.81825 P PPLA3 ES 57 CC 10118 315 336 Europe/Madrid 2012-03-04
-2514052 Masegoso Masegoso Masegoso 38.71833 -2.3161 P PPLA3 ES 54 AB 02047 127 1107 Europe/Madrid 2012-03-04
-2514061 Mascaraque Mascaraque Mascaraque 39.71643 -3.81254 P PPLA3 ES 54 TO 45094 475 714 Europe/Madrid 2012-03-04
-2514066 Massamagrell Massamagrell Masamgrell 39.56667 -0.33333 P PPLA3 ES 60 V 46164 15210 18 Europe/Madrid 2012-03-04
-2514068 Masalavés Masalaves Masalaves,Masalavés,Massalaves,Massalavés 39.14377 -0.5226 P PPLA3 ES 60 V 46162 1535 36 Europe/Madrid 2012-03-04
-2514073 Martos Martos Martos,Мартос 37.72107 -3.97264 P PPLA3 ES 51 J 23060 24655 661 Europe/Madrid 2012-03-04
-2514084 Martín de la Jara Martin de la Jara Martin de la Jara,Martín de la Jara 37.10867 -4.96347 P PPLA3 ES 51 SE 41062 2783 408 Europe/Madrid 2012-03-04
-2514097 Marratxí Marratxi Marrachi,Marratxi,Marratxí,Маррачи 39.64208 2.75388 P PPLA3 ES 07 PM 07036 33348 135 Europe/Madrid 2011-07-31
-2514107 Marmolejo Marmolejo Marmolejo 38.04549 -4.17029 P PPLA3 ES 51 J 23059 7643 248 Europe/Madrid 2012-03-04
-2514111 Marjaliza Marjaliza 39.56329 -3.93499 P PPLA3 ES 54 TO 45092 300 857 Europe/Madrid 2012-03-04
-2514117 Marines Marines Marines,Marines el Viejo 39.74165 -0.53103 P PPL ES 60 CS 12012 1464 443 Europe/Madrid 2010-05-22
-2514120 Marinaleda Marinaleda Marinaleda 37.3712 -4.95949 P PPLA3 ES 51 SE 41061 2698 204 Europe/Madrid 2012-03-04
-2514134 Maria de la Salut Maria de la Salut Maria,Maria de la Salut 39.66306 3.073 P PPLA3 ES 07 PM 07035 2118 114 Europe/Madrid 2012-03-04
-2514139 María Maria Maria,María 37.71023 -2.16454 P PPLA3 ES 51 AL 04063 1560 1200 Europe/Madrid 2012-03-04
-2514158 Marchena Marchena Marchena 37.329 -5.41682 P PPLA3 ES 51 SE 41060 19768 131 Europe/Madrid 2012-03-04
-2514163 Marchal Marchal Marchal 37.29639 -3.20353 P PPLA3 ES 51 GR 18128 377 937 Europe/Madrid 2012-03-04
-2514169 Marbella Marbella Marbel'ja,Marbela,Marbella,marbya,marbyla,Марбелья,Марбеља,ماربيا,ماربيلا 36.51543 -4.88583 P PPLA3 ES 51 MA 29069 134623 57 Europe/Madrid 2012-03-04
-2514176 Maracena Maracena 37.20764 -3.63493 P PPLA3 ES 51 GR 18127 20815 662 Europe/Madrid 2012-03-04
-2514185 Manzanilla Manzanilla Manzanilla 37.38987 -6.43295 P PPLA3 ES 51 H 21047 2408 169 Europe/Madrid 2012-03-04
-2514189 Manzaneque Manzaneque Manzaneque 39.63549 -3.79249 P PPLA3 ES 54 TO 45090 523 719 Europe/Madrid 2012-03-04
-2514190 Manzanares Manzanares Manzanares,Manzanarre 38.99915 -3.36991 P PPLA3 ES 54 CR 13053 19186 666 Europe/Madrid 2012-03-04
-2514192 Manuel Manuel Manuel 39.05059 -0.48978 P PPLA3 ES 60 V 46160 2497 63 Europe/Madrid 2012-03-04
-2514197 Manises Manises Manises,Манисес 39.49139 -0.46349 P PPLA3 ES 60 V 46159 30508 55 Europe/Madrid 2012-03-04
-2514199 Manilva Manilva 36.37645 -5.25026 P PPLA3 ES 51 MA 29068 13813 132 Europe/Madrid 2012-03-04
-2514203 Mancor de la Vall Mancor de la Vall Mancor,Mancor de la Vall 39.74966 2.87284 P PPLA3 ES 07 PM 07034 980 208 Europe/Madrid 2012-03-04
-2514207 Manchita Manchita Manchita 38.81404 -6.02041 P PPLA3 ES 57 BA 06079 748 346 Europe/Madrid 2012-03-04
-2514211 Mancha Real Mancha Real Mancha Real 37.78627 -3.61226 P PPLA3 ES 51 J 23058 10972 756 Europe/Madrid 2012-03-04
-2514216 Manacor Manacor Manacor,Manakor,Манакор 39.56964 3.20955 P PPLA3 ES 07 PM 07033 40548 125 91 Europe/Madrid 2011-07-31
-2514219 Malpica Malpica Malpica 39.89746 -4.54988 P PPL ES 54 TO 45037 1971 398 Europe/Madrid 2012-02-02
-2514225 Malpartida de Plasencia Malpartida de Plasencia 39.97962 -6.04609 P PPLA3 ES 57 CC 10116 4275 457 Europe/Madrid 2012-03-04
-2514226 Malpartida de la Serena Malpartida de la Serena Malpartida de la Serena 38.6747 -5.64054 P PPLA3 ES 57 BA 06078 724 481 Europe/Madrid 2012-03-04
-2514227 Malpartida de Cáceres Malpartida de Caceres Malpartida de Caceres,Malpartida de Cáceres 39.44664 -6.5076 P PPLA3 ES 57 CC 10115 4369 371 Europe/Madrid 2012-03-04
-2514243 Malcocinado Malcocinado Malcocinado 38.11667 -5.68333 P PPLA3 ES 57 BA 06077 484 638 Europe/Madrid 2012-03-04
-2514252 Malagón Malagon Malagon,Malagón 39.16668 -3.85419 P PPLA3 ES 54 CR 13052 7923 638 Europe/Madrid 2012-03-04
-2514256 Málaga Malaga AGP,Malaca,Malaga,Malago,Màlaga,Málaga,ma la jia,malaga,malaka,malqt,maraga,mlqt,Малага,מאלגה,מלאגה,مالاگا,مالقة,ملقة,มาลากา,マラガ,马拉加 36.72016 -4.42034 P PPLA2 ES 51 MA 29067 568305 22 Europe/Madrid 2011-06-16
-2514279 Majadas Majadas Majadas 39.94291 -5.74589 P PPLA3 ES 57 CC 10114 1428 266 Europe/Madrid 2012-03-04
-2514287 Mairena del Aljarafe Mairena del Aljarafe Aljarafe,Mairena del Aljarafe 37.34461 -6.06391 P PPLA3 ES 51 SE 41059 40700 70 Europe/Madrid 2012-03-04
-2514288 Mairena del Alcor Mairena del Alcor Mairano del Alcor,Mairena del Alcor,Maireno del Alcor 37.37301 -5.74952 P PPLA3 ES 51 SE 41058 20510 135 Europe/Madrid 2012-03-04
-2514297 Mahora Mahora Mahora 39.21667 -1.73333 P PPLA3 ES 54 AB 02046 1346 669 Europe/Madrid 2012-03-04
-2514301 Maó Mao Mahon,Mahón,Mao,Maó,Мао 39.88853 4.26583 P PPLA3 ES 07 PM 07032 29125 39 Europe/Madrid 2012-03-04
-2514304 Maguilla Maguilla Maguilla 38.36667 -5.83333 P PPLA3 ES 57 BA 06076 1112 546 Europe/Madrid 2012-03-04
-2514314 Magán Magan Magan,Magán 39.96138 -3.93164 P PPLA3 ES 54 TO 45088 1668 488 Europe/Madrid 2012-03-04
-2514316 Magacela Magacela Magacela 38.89648 -5.73437 P PPLA3 ES 57 BA 06075 670 456 Europe/Madrid 2012-03-04
-2514324 Madroñera Madronera Madronera,Madroñera 39.42526 -5.75568 P PPLA3 ES 57 CC 10113 2929 591 Europe/Madrid 2012-03-04
-2514332 Madrigueras Madrigueras Madriguera,Madrigueras 39.23333 -1.8 P PPLA3 ES 54 AB 02045 4606 690 Europe/Madrid 2012-03-04
-2514333 Madrigalejo Madrigalejo 39.13858 -5.6274 P PPLA3 ES 57 CC 10112 2093 297 Europe/Madrid 2012-03-04
-2514334 Madridejos Madridejos Madridejos 39.46823 -3.53196 P PPLA3 ES 54 TO 45087 11404 693 Europe/Madrid 2012-03-04
-2514359 Macastre Macastre Macastre 39.38333 -0.78333 P PPLA3 ES 60 V 46158 1137 361 Europe/Madrid 2012-03-04
-2514360 Macael Macael Macael 37.33318 -2.30087 P PPLA3 ES 51 AL 04062 6090 589 Europe/Madrid 2012-03-04
-2514367 Luque Luque Luque 37.55797 -4.27974 P PPL ES 51 CO 14055 3253 679 Europe/Madrid 2012-01-19
-2514369 Lupión Lupion Lupion,Lupión 37.99653 -3.54699 P PPLA3 ES 51 J 23057 1008 503 Europe/Madrid 2012-03-04
-2514370 Puerto Lumbreras Puerto Lumbreras Lumbreras 37.56329 -1.80974 P PPL ES 31 MU 30024 13947 475 Europe/Madrid 2010-04-22
-2514371 Lújar Lujar Lujar,Lújar 36.78831 -3.404 P PPLA3 ES 51 GR 18124 500 564 Europe/Madrid 2012-03-04
-2514373 Lugros Lugros Lugros 37.22942 -3.2415 P PPLA3 ES 51 GR 18123 366 1253 Europe/Madrid 2012-03-04
-2514374 Llocnou de Sant Jeroni Llocnou de Sant Jeroni Llocnou de Sant Jeroni,Lugar Nuevo de San Jeronimo,Lugar Nuevo de San Jerónimo 38.91667 -0.28333 P PPLA3 ES 60 V 46153 568 136 Europe/Madrid 2012-03-04
-2514383 Lucillos Lucillos Luc Villos,Lucillos 39.9851 -4.61279 P PPLA3 ES 54 TO 45086 483 481 Europe/Madrid 2012-03-04
-2514386 Llutxent Llutxent Llutxent,Luchente 38.93333 -0.35 P PPLA3 ES 60 V 46150 2512 250 Europe/Madrid 2012-03-04
-2514389 Lucena del Puerto Lucena del Puerto Lucena del Puerto 37.30396 -6.72926 P PPL ES 51 H 21053 2543 87 Europe/Madrid 2012-01-19
-2514392 Lucena Lucena 37.40881 -4.48522 P PPLA3 ES 51 CO 14038 42248 493 Europe/Madrid 2012-03-04
-2514395 Lúcar Lucar Lucar,Lúcar 37.40035 -2.42496 P PPLA3 ES 51 AL 04061 802 889 Europe/Madrid 2012-03-04
-2514396 Lucainena de las Torres Lucainena de las Torres Lucainena de las Torres 37.04038 -2.20095 P PPLA3 ES 51 AL 04060 603 560 Europe/Madrid 2012-03-04
-2514399 Lubrín Lubrin Lubrin,Lubrín 37.21538 -2.06678 P PPLA3 ES 51 AL 04059 1687 519 Europe/Madrid 2012-03-04
-2514406 Los Yébenes Los Yebenes Los Yebenes,Los Yébenes,Yebenes,Yébenes 39.58158 -3.87058 P PPL ES 54 TO 45200 6224 823 Europe/Madrid 2010-05-23
-2514452 Los Silos Los Silos Los Silos,Silos 28.3661 -16.81552 P PPL ES 53 TF 38042 5586 98 Atlantic/Canary 2008-01-22
-2514460 Los Santos de Maimona Los Santos de Maimona Los Santos,Los Santos de Maimona 38.45 -6.38333 P PPL ES 57 BA 06122 7937 531 Europe/Madrid 2012-01-19
-2514553 Los Palacios y Villafranca Los Palacios y Villafranca Los Palacios y Villafranca,Villafranca Los Palacios 37.16181 -5.92433 P PPL ES 51 SE 41069 36824 13 Europe/Madrid 2012-01-19
-2514573 Los Navalucillos Los Navalucillos Los Navalucillos 39.66665 -4.64205 P PPL ES 54 TO 45113 2748 747 Europe/Madrid 2012-01-19
-2514574 Los Navalmorales Los Navalmorales Los Navalmorales 39.72526 -4.64227 P PPL ES 54 TO 45112 2759 667 Europe/Madrid 2012-01-19
-2514593 Los Montesinos Los Montesinos Els Montesins,Los Montesinos,Montesinos 38.02822 -0.74501 P PPL ES 60 A 03903 3194 24 Europe/Madrid 2008-11-30
-2514601 Los Molares Los Molares Los Molares 37.15704 -5.71802 P PPL ES 51 SE 41063 2838 84 Europe/Madrid 2012-01-19
-2514651 Los Llanos de Aridane Los Llanos de Aridane Los Llanos,Los Llanos de Aridane 28.65851 -17.91821 P PPL ES 53 TF 38024 20766 341 Atlantic/Canary 2012-01-19
-2514687 Los Hinojosos Los Hinojosos Los Hinojosos 39.60417 -2.82572 P PPL ES 54 CU 16100 1098 772 Europe/Madrid 2012-01-19
-2514747 Los Corrales Los Corrales Los Corrales 37.09918 -4.98429 P PPL ES 51 SE 41037 4077 377 Europe/Madrid 2012-01-19
-2514824 Los Barrios Los Barrios Barrios 36.18482 -5.49213 P PPL ES 51 CA 11035 22311 23 Europe/Madrid 2010-04-22
-2514868 Los Alcázares Los Alcazares Alcazares,Alcázares 37.74425 -0.85041 P PPL ES 31 MU 30902 15619 4 Europe/Madrid 2010-04-22
-2514877 Losa del Obispo Losa del Obispo Llosa del Bisbe,Losa del Obispo 39.7 -0.86667 P PPLA3 ES 60 V 46149 478 460 Europe/Madrid 2012-03-04
-2514883 Lorquí Lorqui Lorqui,Lorquí 38.08261 -1.25103 P PPLA3 ES 31 MU 30025 6293 114 Europe/Madrid 2012-03-04
-2514887 Loriguilla Loriguilla Loriguilla 39.68333 -0.91667 P PPL ES 60 V 46106 1177 525 Europe/Madrid 2012-01-19
-2514891 Lorca Lorca Llorca,Lorca,Lorka,Lorko,lwrqh,Лорка,לורקה 37.67119 -1.7017 P PPLA3 ES 31 MU 30024 91906 339 Europe/Madrid 2012-03-04
-2514893 Lora del Río Lora del Rio Lora del Rio,Lora del Río 37.65896 -5.52751 P PPLA3 ES 51 SE 41055 19352 41 Europe/Madrid 2012-03-04
-2514894 Lora de Estepa Lora de Estepa Lora de Estepa 37.26926 -4.82759 P PPLA3 ES 51 SE 41054 815 446 Europe/Madrid 2012-03-04
-2514896 Lopera Lopera Lopera 37.94542 -4.21463 P PPLA3 ES 51 J 23056 3986 266 Europe/Madrid 2012-03-04
-2514912 Lomo de Arico Lomo de Arico Arico,Lomo de Arico 28.16667 -16.48333 P PPL ES 53 TF 38017 7189 401 Atlantic/Canary 2012-01-19
-2514946 Loja Loja Lokha,Лоха 37.16887 -4.15129 P PPLA3 ES 51 GR 18122 21574 453 Europe/Madrid 2012-03-04
-2514947 Logrosán Logrosan Logrosan,Logrosán 39.33641 -5.49281 P PPLA3 ES 57 CC 10109 2204 473 Europe/Madrid 2012-03-04
-2514958 Lobras Lobras 36.92849 -3.2123 P PPLA3 ES 51 GR 18121 125 927 Europe/Madrid 2012-03-04
-2514964 Lobón Lobon Lobon,Lobón 38.84876 -6.62365 P PPLA3 ES 57 BA 06072 2611 241 Europe/Madrid 2012-03-04
-2514984 Llucmajor Llucmajor Llucmajor 39.49093 2.89108 P PPLA3 ES 07 PM 07031 36078 150 Europe/Madrid 2011-07-31
-2514987 Llubí Llubi Llubi,Llubí 39.69933 3.00681 P PPLA3 ES 07 PM 07030 2030 56 Europe/Madrid 2012-03-04
-2514988 Lloseta Lloseta Lloseta 39.71849 2.8669 P PPLA3 ES 07 PM 07029 5295 157 Europe/Madrid 2012-03-04
-2514989 Llosa de Ranes Llosa de Ranes Llosa de Ranes 39.02163 -0.53803 P PPL ES 60 V 46145 3725 129 Europe/Madrid 2012-01-19
-2514991 Lloret de Vistalegre Lloret de Vistalegre Lloret de Vistalegre 39.61835 2.97493 P PPLA3 ES 07 PM 07028 1134 171 Europe/Madrid 2012-03-04
-2514994 Llombai Llombai Llombai,Llombay 39.28333 -0.56667 P PPLA3 ES 60 V 46156 2720 98 Europe/Madrid 2012-03-04
-2515002 Llerena Llerena Llerena 38.23333 -6.01667 P PPLA3 ES 57 BA 06074 5716 650 Europe/Madrid 2012-03-04
-2515003 Llera Llera Llera 38.45 -6.05 P PPLA3 ES 57 BA 06073 943 440 Europe/Madrid 2012-03-04
-2515005 Llaurí Llauri Llauri,Llaurí 39.14671 -0.32944 P PPLA3 ES 60 V 46155 1269 19 Europe/Madrid 2012-03-04
-2515024 Llanera de Ranes Llanera de Ranes Llanera de Ranes 38.99507 -0.57534 P PPLA3 ES 60 V 46154 1059 164 Europe/Madrid 2012-03-04
-2515036 Llíria Lliria Liria,Lliria,Llíria 39.63333 -0.6 P PPL ES 60 V 46148 22706 173 Europe/Madrid 2010-04-22
-2515041 Linares de la Sierra Linares de la Sierra Linares de la Sierra 37.87963 -6.62321 P PPLA3 ES 51 H 21045 0 502 Europe/Madrid 2012-03-04
-2515045 Linares Linares Linares,Линарес 38.09519 -3.63602 P PPLA3 ES 51 J 23055 61338 413 Europe/Madrid 2012-03-04
-2515055 Lillo Lillo Lillo 39.72331 -3.30618 P PPLA3 ES 54 TO 45084 2615 687 Europe/Madrid 2012-03-04
-2515058 Liétor Lietor Lieto,Lietor,Liéto,Liétor 38.54267 -1.95367 P PPLA3 ES 54 AB 02044 1557 672 Europe/Madrid 2012-03-04
-2515060 Librilla Librilla Librilla 37.88642 -1.35557 P PPLA3 ES 31 MU 30023 4145 175 Europe/Madrid 2012-03-04
-2515064 Lezuza Lezuza Lezuza 38.9497 -2.35419 P PPLA3 ES 54 AB 02043 1696 927 Europe/Madrid 2012-03-04
-2515070 Letur Letur Letur 38.36626 -2.10206 P PPLA3 ES 54 AB 02042 1206 735 Europe/Madrid 2012-03-04
-2515072 Lepe Lepe Lepe,Лепе 37.25482 -7.20433 P PPLA3 ES 51 H 21044 25886 24 Europe/Madrid 2012-03-04
-2515083 Lentegí Lentegi Lentegi,Lentegí 36.83613 -3.67426 P PPLA3 ES 51 GR 18120 330 649 Europe/Madrid 2012-03-04
-2515093 Ledaña Ledana Ledana,Ledaña 39.36667 -1.7 P PPLA3 ES 54 CU 16118 1913 734 Europe/Madrid 2012-03-04
-2515096 Lebrija Lebrija Lebrija,Lebrikha,Лебриха 36.92077 -6.07529 P PPLA3 ES 51 SE 41053 26434 41 Europe/Madrid 2012-03-04
-2515108 Layos Layos Layos 39.77703 -4.06448 P PPLA3 ES 54 TO 45083 365 652 Europe/Madrid 2012-03-04
-2515110 La Yesa La Yesa La Iesa,La Ièsa,La Yesa,Yesa 39.88333 -0.95 P PPLA3 ES 60 V 46262 250 1003 Europe/Madrid 2011-07-31
-2515118 La Victoria de Acentejo La Victoria de Acentejo La Victoria de Acentejo 28.43231 -16.46232 P PPL ES 53 TF 38051 8469 481 Atlantic/Canary 2012-01-19
-2515119 La Victoria La Victoria La Victoria 37.68126 -4.85199 P PPL ES 51 CO 14065 1841 267 Europe/Madrid 2012-01-19
-2515151 La Unión La Union La Union,La Unión,Unio 37.61915 -0.87799 P PPL ES 31 MU 30041 17737 104 Europe/Madrid 2012-01-19
-2515158 Laujar de Andarax Laujar de Andarax Laujar,Laujar de Andarax 36.99516 -2.89033 P PPL ES 51 AL 04046 1811 932 Europe/Madrid 2012-01-19
-2515219 Las Torres de Cotillas Las Torres de Cotillas La Torres de Cotillas,Las Torres de Cotillas 38.02822 -1.24188 P PPLA3 ES 31 MU 30038 21062 87 Europe/Madrid 2012-03-04
-2515261 Las Pedroñeras Las Pedroneras Las Pedroneras,Las Pedroñeras 39.44997 -2.67394 P PPL ES 54 CU 16154 6986 706 Europe/Madrid 2012-01-19
-2515270 Las Palmas de Gran Canaria Las Palmas de Gran Canaria Kanaria Handiko Las Palmas,LPA,Las Palmas,Las Palmas de G.C.,Las Palmas de Gran Canaria,Las Palmas de Gran Kanaria,Las-Pal'mas-de-Gran-Kanarija,Laspalmasa,Les Palmes de Gran Canaria,Les Palmes de Gran Canària,Palmas,Palmas de Gran Canaria,la si pa er ma si,Лас Палмас де Гран Канариа,Лас-Пальмас-де-Гран-Канария,ラス・パルマス・デ・グラン・カナリア,拉斯帕尔马斯 28.09973 -15.41343 P PPLA ES 53 GC 35016 381847 23 Atlantic/Canary 2012-01-19
-2515284 La Solana La Solana La Solana 38.94422 -3.2381 P PPL ES 54 CR 13079 16511 765 Europe/Madrid 2012-01-19
-2515319 Las Mesas Las Mesas Las Mesas 39.38871 -2.76524 P PPL ES 54 CU 16124 2544 684 Europe/Madrid 2012-01-19
-2515493 Las Cabezas de San Juan Las Cabezas de San Juan Las Cabezas San Juan,Las Cabezas de San Juan 36.9838 -5.93933 P PPL ES 51 SE 41020 16464 46 Europe/Madrid 2012-01-19
-2515543 Larva Larva Larva 37.76069 -3.20269 P PPLA3 ES 51 J 23054 491 709 Europe/Madrid 2012-03-04
-2515546 Laroya Laroya Laroya 37.29771 -2.33419 P PPLA3 ES 51 AL 04056 141 1009 Europe/Madrid 2012-03-04
-2515550 La Romana La Romana La Romana 38.36753 -0.89862 P PPL ES 60 A 03114 2333 429 Europe/Madrid 2012-01-19
-2515554 La Roda de Andalucía La Roda de Andalucia La Roda,Roda de Andulucia 37.20381 -4.77802 P PPL ES 51 SE 41082 4294 395 Europe/Madrid 2008-07-18
-2515555 La Roda La Roda La Roda 39.21667 -2.15 P PPL ES 54 AB 02069 16060 720 Europe/Madrid 2012-01-19
-2515557 La Roca de la Sierra La Roca de la Sierra La Roca,La Roca de la Sierra 39.10966 -6.68916 P PPL ES 57 BA 06115 1543 248 Europe/Madrid 2012-01-19
-2515562 La Rinconada La Rinconada La Rinconada,La-Rinkonada,Ла-Ринконада 37.48734 -5.98258 P PPL ES 51 SE 41081 35928 11 Europe/Madrid 2012-01-19
-2515597 La Rambla La Rambla La Rambla 37.6076 -4.73962 P PPL ES 51 CO 14057 7374 334 Europe/Madrid 2012-01-19
-2515617 La Puerta de Segura La Puerta de Segura La Puerta,La Puerta de Segura 38.35293 -2.73956 P PPL ES 51 J 23065 2659 594 Europe/Madrid 2012-01-19
-2515618 La Pueblanueva La Pueblanueva La Pueblanueva 39.91208 -4.67933 P PPL ES 54 TO 45137 2097 482 Europe/Madrid 2012-01-19
-2515619 La Puebla de Montalbán La Puebla de Montalban Aebura,La Puebla de Montalban,La Puebla de Montalbán,Puebla de Montalban,Puebla de Montalbán 39.86297 -4.35917 P PPL ES 54 TO 45133 7695 490 Europe/Madrid 2012-04-01
-2515620 La Puebla del Río La Puebla del Rio La Puebla del Rio,La Puebla del Río,Puebla del Rio,Puebla del Río 37.26787 -6.06264 P PPL ES 51 SE 41034 12143 22 Europe/Madrid 2012-01-19
-2515621 La Puebla de los Infantes La Puebla de los Infantes La Puebla de los Infantes 37.7809 -5.38837 P PPL ES 51 SE 41078 3301 222 Europe/Madrid 2012-01-19
-2515622 La Puebla de Cazalla La Puebla de Cazalla La Puebla de Cazalla,Puebla de Cazalla 37.22155 -5.31153 P PPL ES 51 SE 41065 11325 177 Europe/Madrid 2012-01-19
-2515623 La Puebla de Almoradiel La Puebla de Almoradiel La Puebla de Almoradiel,La Puebla de Almordier,Puebla de Almoradiel 39.59862 -3.11782 P PPL ES 54 TO 45135 5629 695 Europe/Madrid 2012-01-19
-2515624 sa Pobla sa Pobla la Pobla,sa Pobla 39.7692 3.02394 P PPL ES 07 PM 07044 12766 29 Europe/Madrid 2010-04-22
-2515670 La Parra La Parra La Parra 38.5212 -6.6226 P PPL ES 57 BA 06099 1432 519 Europe/Madrid 2012-01-19
-2515679 La Palma del Condado La Palma del Condado La Palma,La Palma del Condado 37.38605 -6.55231 P PPL ES 51 H 21054 10404 99 Europe/Madrid 2012-01-19
-2515692 La Orotava La Orotava La Orotava,Orotava,Villa Orotava,Villa de la Orotava 28.39076 -16.52309 P PPL ES 53 TF 38026 41171 355 Atlantic/Canary 2010-04-22
-2515698 La Oliva La Oliva La Oliva,Oliva 28.61052 -13.92912 P PPL ES 53 GC 35014 21996 225 Atlantic/Canary 2010-04-22
-2515701 la Nucia la Nucia La-Nusia,la Nucia,Ла-Нусиа 38.61372 -0.1269 P PPL ES 60 A 03094 17874 240 Europe/Madrid 2010-04-22
-2515703 Lanteira Lanteira Lanteira 37.16871 -3.13823 P PPLA3 ES 51 GR 18117 489 1284 Europe/Madrid 2012-03-04
-2515708 Lanjarón Lanjaron Lanjaron,Lanjarón 36.91853 -3.4818 P PPLA3 ES 51 GR 18116 3773 667 Europe/Madrid 2012-03-04
-2515709 Landete Landete Landete 39.9 -1.36667 P PPLA3 ES 54 CU 16117 1398 977 Europe/Madrid 2012-03-04
-2515717 La Nava de Santiago La Nava de Santiago La Nava,La Nava de Santiago 39.06328 -6.50525 P PPL ES 57 BA 06090 1145 266 Europe/Madrid 2012-01-19
-2515755 La Mojonera La Mojonera Caserio La Mojonera,Caserío La Mojonera,La Mojonera 37.29233 -2.4373 P PPL ES 51 AL 04021 7819 1106 Europe/Madrid 2012-01-19
-2515772 La Matanza de Acentejo La Matanza de Acentejo La Matanza de Acentejo 28.45242 -16.4472 P PPLA3 ES 53 TF 38025 7709 515 Atlantic/Canary 2012-03-04
-2515801 La Luisiana La Luisiana La Luisana,La Luisiana 37.52602 -5.24883 P PPL ES 51 SE 41056 4434 171 Europe/Madrid 2012-01-19
-2515812 La Línea de la Concepción La Linea de la Concepcion La Linea,La Linea de la Concepcion,La Línea,La Línea de la Concepción,La-Linea-de-la-Konseps'on,Ла-Линеа-де-ла-Консепсьон 36.16809 -5.34777 P PPL ES 51 CA 11022 64595 4 Europe/Madrid 2010-04-22
-2515814 La Lantejuela La Lantejuela La Lantejuela,La Lentejuela 37.3535 -5.22477 P PPL ES 51 SE 41052 3792 156 Europe/Madrid 2012-01-19
-2515864 La Iruela La Iruela Iruela,La Iruela 37.91986 -2.99659 P PPL ES 51 J 23028 1824 886 Europe/Madrid 2012-01-19
-2515900 La Haba La Haba La Haba 38.91928 -5.80034 P PPL ES 57 BA 06044 1450 313 Europe/Madrid 2012-01-19
-2515908 La Guardia de Jaén La Guardia de Jaen La Guardia,La Guardia de Jaen,La Guardia de Jaén 37.74303 -3.69312 P PPL ES 51 J 23038 2297 596 Europe/Madrid 2011-01-09
-2515911 La Guancha La Guancha Guancha,La Guancha 28.37294 -16.66079 P PPLA3 ES 53 TF 38018 5424 485 Atlantic/Canary 2012-03-04
-2515922 La Gineta La Gineta La Gineta 39.11452 -1.99603 P PPL ES 54 AB 02035 2137 690 Europe/Madrid 2012-01-19
-2515928 Lagartera Lagartera Lagartera 39.90557 -5.20143 P PPL ES 54 TO 45125 1607 396 Europe/Madrid 2012-01-19
-2515929 La Garrovilla La Garrovilla La Garrovilla 38.91961 -6.47747 P PPL ES 57 BA 06058 2528 204 Europe/Madrid 2012-01-19
-2516004 L'Eliana L'Eliana L'Eliana,La Eliana 39.56667 -0.53333 P PPL ES 60 V 46116 16552 91 Europe/Madrid 2010-04-22
-2516024 La Cumbre La Cumbre La Cumbre 39.4046 -5.97636 P PPL ES 57 CC 10195 1027 482 Europe/Madrid 2012-01-19
-2516049 La Coronada La Coronada Coronada,La Coronada 38.92046 -5.66978 P PPL ES 57 BA 06039 2316 349 Europe/Madrid 2012-01-19
-2516065 La Codosera La Codosera 39.20878 -7.1733 P PPL ES 57 BA 06037 2203 323 Europe/Madrid 2008-07-17
-2516071 Láchar Lachar 37.19519 -3.83277 P PPLA3 ES 51 GR 18115 2765 559 Europe/Madrid 2012-03-04
-2516088 La Carolina La Carolina La Carolina 38.27559 -3.61534 P PPL ES 51 J 23021 15880 602 Europe/Madrid 2012-01-19
-2516089 La Carlota La Carlota La Carlota 37.67359 -4.93122 P PPL ES 51 CO 14017 13182 213 Europe/Madrid 2012-01-19
-2516118 La Campana La Campana La Campana 37.56891 -5.4267 P PPL ES 51 SE 41022 5197 140 Europe/Madrid 2012-01-19
-2516122 La Calzada de Calatrava La Calzada de Calatrava Calzada de Calatrava,La Calzada,La Calzada de Calatrava 38.70339 -3.77561 P PPL ES 54 CR 13027 4633 651 Europe/Madrid 2012-01-19
-2516217 La Algaba La Algaba Algaba,La Algaba 37.46367 -6.01294 P PPL ES 51 SE 41007 14942 9 Europe/Madrid 2012-01-19
-2516228 La Albuera La Albuera Albuera,La Albuera 38.71779 -6.82326 P PPL ES 57 BA 06015 1796 258 Europe/Madrid 2012-01-19
-2516230 La Alberca de Záncara La Alberca de Zancara La Alberca,La Alberca de Zancara,La Alberca de Záncara 39.51458 -2.49272 P PPL ES 54 CU 16007 1806 800 Europe/Madrid 2012-01-19
-2516237 Júzcar Juzcar Juzcar,Júzcar 36.62442 -5.16971 P PPLA3 ES 51 MA 29065 193 645 Europe/Madrid 2012-03-04
-2516238 Juviles Juviles Joviles,Jubiles 36.94879 -3.22586 P PPLA3 ES 51 GR 18112 192 1271 Europe/Madrid 2012-03-04
-2516254 Jun Jun 37.22083 -3.59407 P PPLA3 ES 51 GR 18111 0 767 Europe/Madrid 2012-03-04
-2516255 Jumilla Jumilla Jumella,Jumilla,Khumil'e,Хумилье 38.47917 -1.325 P PPLA3 ES 31 MU 30022 25685 527 Europe/Madrid 2012-03-04
-2516269 Jubrique Jubrique Jubrique 36.56475 -5.2156 P PPLA3 ES 51 MA 29064 729 581 Europe/Madrid 2012-03-04
-2516295 Jorquera Jorquera Jorquera 39.16667 -1.51667 P PPLA3 ES 54 AB 02041 503 669 Europe/Madrid 2012-03-04
-2516304 Jódar Jodar Jodar,Jódar 37.84064 -3.35262 P PPLA3 ES 51 J 23053 12157 648 Europe/Madrid 2012-03-04
-2516313 Jimera de Líbar Jimera de Libar Jimera de Libar,Jimera de Líbar 36.65119 -5.27412 P PPLA3 ES 51 MA 29063 431 535 Europe/Madrid 2012-03-04
-2516315 Jimena de la Frontera Jimena de la Frontera Jimena,Jimena de la Frontera 36.43517 -5.45387 P PPLA3 ES 51 CA 11021 10431 149 Europe/Madrid 2012-03-04
-2516317 Jimena Jimena Jimena 37.84156 -3.4771 P PPLA3 ES 51 J 23052 1496 593 Europe/Madrid 2012-03-04
-2516318 Jijona Jijona Jijona,Xixona 38.54086 -0.50263 P PPL ES 60 A 03014 7430 446 Europe/Madrid 2012-01-19
-2516324 Jérica Jerica Jerica,Jérica,Xerica 39.91667 -0.56667 P PPLA3 ES 60 CS 12071 1542 528 Europe/Madrid 2012-03-04
-2516325 Jerez de los Caballeros Jerez de los Caballeros Jerez de los Caballeros 38.32063 -6.7726 P PPLA3 ES 57 BA 06070 10237 486 Europe/Madrid 2012-03-04
-2516326 Jerez de la Frontera Jerez de la Frontera Herezo,Jarez de la Frontera,Jerez,Jerez de la Frontera,Xeres,Xérès,hrs dh lh prwntrh,shrysh,Ĥerezo,חרס דה לה פרונטרה,شريش,ヘレス・デ・ラ・フロンテーラ 36.68645 -6.13606 P PPLA3 ES 51 CA 11020 207532 53 Europe/Madrid 2012-03-04
-2516327 Jeres del Marquesado Jeres del Marquesado Jeres del Marquesado,Jerez del Marquesado 37.18382 -3.15961 P PPL ES 51 GR 18108 1065 1236 Europe/Madrid 2012-01-19
-2516330 Xeresa Xeresa Jeresa,Xeresa 39.01667 -0.21667 P PPLA3 ES 60 V 46146 1958 9 Europe/Madrid 2012-03-04
-2516334 Jayena Jayena Jayena 36.9492 -3.82313 P PPLA3 ES 51 GR 18107 1241 914 Europe/Madrid 2012-03-04
-2516336 Javea Javea Javea,Jávea,Xabia,Xàbia 38.78333 0.16667 P PPL ES 60 A 03063 31593 14 Europe/Madrid 2011-10-19
-2516345 Xàtiva Xativa Jativa,Játiva,Khativa,Xativa,Xàtiva,shatbt,Хатива,شاطبة 38.98333 -0.51667 P PPLA3 ES 60 V 46145 29386 268 Europe/Madrid 2012-03-04
-2516367 Jaraicejo Jaraicejo Jaraicejo 39.66624 -5.81308 P PPLA3 ES 57 CC 10103 621 494 Europe/Madrid 2012-03-04
-2516369 Jarafuel Jarafuel Jarafuel,Xarafull 39.14013 -1.07306 P PPLA3 ES 60 V 46144 861 589 Europe/Madrid 2012-03-04
-2516372 Xeraco,Jaraco Xeraco,Jaraco 39.03333 -0.21667 P PPL ES 60 V 46131 5000 14 Europe/Madrid 2006-03-04
-2516386 Jamilena Jamilena Jamilena 37.74716 -3.91434 P PPLA3 ES 51 J 23051 3384 746 Europe/Madrid 2012-03-04
-2516389 Jalón Jalon Jalon,Jalón,Xalo,Xaló 38.74063 -0.01129 P PPL ES 60 A 03081 2437 200 Europe/Madrid 2006-04-02
-2516390 Jalance Jalance Jalance,Xalans 39.2 -1.06667 P PPLA3 ES 60 V 46142 981 409 Europe/Madrid 2012-03-04
-2516395 Jaén Jaen Haeno,Jaen,Jaén,Khaehn,Xaen - Jaen,Xaén - Jaén,haen,jyan,Ĥaeno,Хаэн,جيان,ハエン 37.76667 -3.78333 P PPLA2 ES 51 J 23050 116557 541 Europe/Madrid 2010-08-22
-2516399 Jacarilla Jacarilla Jacarilla,Xacarella 38.06247 -0.86822 P PPLA3 ES 60 A 03080 1723 25 Europe/Madrid 2012-03-04
-2516401 Jabugo Jabugo Jabugo 37.91622 -6.72968 P PPLA3 ES 51 H 21043 0 658 Europe/Madrid 2012-03-04
-2516404 Jabalquinto Jabalquinto Jabalquinto 38.01935 -3.72512 P PPLA3 ES 51 J 23049 2390 490 Europe/Madrid 2012-03-04
-2516412 Iznatoraf Iznatoraf Iznatoraf 38.15706 -3.03242 P PPLA3 ES 51 J 23048 1179 1031 Europe/Madrid 2012-03-04
-2516413 Iznate Iznate Iznate 36.78333 -4.18333 P PPLA3 ES 51 MA 29062 826 165 Europe/Madrid 2012-03-04
-2516414 Iznalloz Iznalloz Iznalloz 37.39258 -3.52762 P PPLA3 ES 51 GR 18105 7005 818 Europe/Madrid 2012-03-04
-2516415 Iznájar Iznajar Iznar 37.25766 -4.30836 P PPLA3 ES 51 CO 14037 4913 525 Europe/Madrid 2012-03-04
-2516419 Ítrabo Itrabo Itrabo,Ítrabo 36.79998 -3.639 P PPL ES 51 GR 18103 1065 396 Europe/Madrid 2012-01-19
-2516421 Istán Istan Istan,Istán 36.58273 -4.94956 P PPLA3 ES 51 MA 29061 1461 295 Europe/Madrid 2012-03-04
-2516431 Isla Cristina Isla Cristina 37.2 -7.31667 P PPLA3 ES 51 H 21042 21324 7 Europe/Madrid 2012-03-04
-2516438 Instinción Instincion Instincion,Instinción 36.99344 -2.66046 P PPLA3 ES 51 AL 04055 522 429 Europe/Madrid 2012-03-04
-2516440 Iniesta Iniesta Iniesta 39.43333 -1.75 P PPLA3 ES 54 CU 16113 4352 755 Europe/Madrid 2012-03-04
-2516443 Ingenio Ingenio Carrizal de Ingenio,Ingenio 27.92086 -15.4406 P PPLA3 ES 53 GC 35011 29319 306 Atlantic/Canary 2012-03-04
-2516449 Infantes Infantes Infantes,Villanueva de Infantes,Villanueva de los Infantes 38.73669 -3.01219 P PPL ES 54 CR 13084 5835 885 Europe/Madrid 2012-01-19
-2516452 Inca Inca Inca,Inka,Инка 39.7211 2.91093 P PPLA3 ES 07 PM 07027 29308 127 Europe/Madrid 2012-03-04
-2516455 Illora Illora 37.28771 -3.88109 P PPLA3 ES 51 GR 18102 10440 764 Europe/Madrid 2012-03-04
-2516456 Illar Illar Illar 36.98562 -2.63871 P PPLA3 ES 51 AL 04054 415 417 Europe/Madrid 2012-03-04
-2516457 Illán de Vacas Illan de Vacas Illan de Vacas,Illán de Vacas 39.97079 -4.55743 P PPLA3 ES 54 TO 45080 8 480 Europe/Madrid 2012-03-04
-2516463 Igualeja Igualeja Igualeja 36.63208 -5.12188 P PPLA3 ES 51 MA 29060 1052 708 Europe/Madrid 2012-03-04
-2516474 Icod de los Vinos Icod de los Vinos Icod,Icod de los Vinos 28.37241 -16.71188 P PPLA3 ES 53 TF 38022 24024 219 Atlantic/Canary 2012-03-04
-2516475 Ibros Ibros Ibros 38.02106 -3.50313 P PPL ES 51 J 23009 3007 597 Europe/Madrid 2012-01-19
-2516479 Ibiza Ibiza Eivissa,IBZ,Ibica,Ibiza,Ibiza Town,Ibiza-stad,Vila d'Eivissa,Ибица 38.90883 1.43296 P PPLA3 ES 07 PM 07026 48684 7 Europe/Madrid 2012-03-05
-2516480 Ibi Ibi Ibi,Иби 38.62533 -0.57225 P PPLA3 ES 60 A 03079 24113 748 Europe/Madrid 2012-03-04
-2516483 Ibahernando Ibahernando Ibahernando 39.32538 -5.91833 P PPLA3 ES 57 CC 10102 587 532 Europe/Madrid 2012-03-04
-2516490 Humilladero Humilladero Humilladero 37.1139 -4.70298 P PPLA3 ES 51 MA 29059 2843 448 Europe/Madrid 2012-03-04
-2516498 Huétor Vega Huetor Vega Huetor Vega,Huétor Vega 37.14622 -3.57011 P PPLA3 ES 51 GR 18101 11324 755 Europe/Madrid 2012-03-04
-2516499 Huétor-Tájar Huetor-Tajar 37.19834 -4.04692 P PPL ES 51 GR 18100 9084 488 Europe/Madrid 2008-07-18
-2516500 Huétor Santillán Huetor Santillan Huetor Santillan,Huétor Santillán 37.22091 -3.51634 P PPL ES 51 GR 18099 1701 1028 Europe/Madrid 2012-01-19
-2516507 Huéscar Huescar Huescar,Huéscar 37.81104 -2.54116 P PPL ES 51 GR 18164 8194 958 Europe/Madrid 2012-01-19
-2516508 Huesa Huesa Huesa 37.76434 -3.07639 P PPL ES 51 J 23066 2734 644 Europe/Madrid 2012-01-19
-2516534 Huerta de Valdecarábanos Huerta de Valdecarabanos Huerta,Huerta de Valdecarabanos,Huerta de Valdecarábanos 39.86318 -3.61275 P PPLA3 ES 54 TO 45078 1728 624 Europe/Madrid 2012-03-04
-2516538 Huerta de la Obispalía Huerta de la Obispalia Huerta de la Obispalia,Huerta de la Obispalía 39.98901 -2.47875 P PPLA3 ES 54 CU 16110 160 910 Europe/Madrid 2012-03-04
-2516542 Huércal-Overa Huercal-Overa Huercal Overa,Huercal-Overa,Huescal-Overa,Huércal Overa,Huércal-Overa 37.38897 -1.94536 P PPLA3 ES 51 AL 04053 17645 284 Europe/Madrid 2012-03-04
-2516543 Huércal de Almería Huercal de Almeria Huercal de Almeria,Huércal de Almería 36.88507 -2.4376 P PPLA3 ES 51 AL 04052 14937 73 Europe/Madrid 2012-03-04
-2516545 Huéneja Hueneja Hueneja,Huéneja 37.1766 -2.95024 P PPLA3 ES 51 GR 18097 1235 1163 Europe/Madrid 2012-03-04
-2516548 Huelva Huelva Huelva,Onubo,Uehl'va,ueruba,u~eruba,Уэльва,ウェルバ,ウエルバ 37.25833 -6.95083 P PPLA2 ES 51 H 21041 148806 29 Europe/Madrid 2010-08-22
-2516549 Huelma Huelma Huelma 37.64784 -3.45985 P PPLA3 ES 51 J 23044 6159 1004 Europe/Madrid 2012-03-04
-2516551 Huélago Huelago Huelago,Huélago 37.41972 -3.26226 P PPLA3 ES 51 GR 18096 459 920 Europe/Madrid 2012-03-04
-2516553 Huécija Huecija Huecija,Huécija 36.96804 -2.6094 P PPLA3 ES 51 AL 04051 550 411 Europe/Madrid 2012-03-04
-2516583 Hoya-Gonzalo Hoya-Gonzalo Hoya-Gonzalo 38.9579 -1.55679 P PPLA3 ES 54 AB 02040 938 935 Europe/Madrid 2012-03-04
-2516630 Hornachuelos Hornachuelos Hornachuelos 37.83333 -5.23333 P PPLA3 ES 51 CO 14036 4667 164 Europe/Madrid 2012-03-04
-2516632 Hornachos Hornachos Hornachos 38.55428 -6.06829 P PPLA3 ES 57 BA 06069 3799 482 Europe/Madrid 2012-03-04
-2516641 Horcajo de Santiago Horcajo de Santiago Horcajo,Horcajo de Santiago 39.84221 -2.99724 P PPLA3 ES 54 CU 16106 3764 766 Europe/Madrid 2012-03-04
-2516649 Hontecillas Hontecillas Hontecillas 39.7 -2.18333 P PPLA3 ES 54 CU 16104 98 835 Europe/Madrid 2012-03-04
-2516650 Hontanaya Hontanaya Hontanaya 39.71553 -2.83516 P PPLA3 ES 54 CU 16103 425 812 Europe/Madrid 2012-03-04
-2516651 Hontanar Hontanar Hontanar 39.61296 -4.49663 P PPLA3 ES 54 TO 45075 148 849 Europe/Madrid 2012-03-04
-2516652 Honrubia Honrubia Honrubia 39.61358 -2.28077 P PPLA3 ES 54 CU 16102 1651 817 Europe/Madrid 2012-03-04
-2516655 Hondón de los Frailes Hondon de los Frailes Fondo dels Frares,Fondó dels Frares,Hondon de los Frailes,Hondón de los Frailes 38.2739 -0.92938 P PPLA3 ES 60 A 03078 1058 423 Europe/Madrid 2012-03-04
-2516656 Hondón de las Nieves Hondon de las Nieves Fondo de les Neus,Fondó de les Neus,Hondon de las Nieves,Hondón de las Nieves 38.30844 -0.8533 P PPL ES 60 A 03077 2086 376 Europe/Madrid 2012-01-19
-2516685 Holguera Holguera Holguera 39.89916 -6.34999 P PPLA3 ES 57 CC 10099 770 278 Europe/Madrid 2012-03-04
-2516693 Hinojosas de Calatrava Hinojosas de Calatrava Hinojosa,Hinojosas 38.61446 -4.13979 P PPLA3 ES 54 CR 13048 712 753 Europe/Madrid 2012-03-04
-2516694 Hinojosa del Valle Hinojosa del Valle Hinojosa del Valle 38.48333 -6.18333 P PPLA3 ES 57 BA 06068 561 440 Europe/Madrid 2012-03-04
-2516695 Hinojosa del Duque Hinojosa del Duque Hinojosa del Duque 38.50057 -5.1465 P PPLA3 ES 51 CO 14035 7555 551 Europe/Madrid 2012-03-04
-2516697 Hinojos Hinojos Hinojos 37.29173 -6.37872 P PPL ES 51 H 21005 3751 84 Europe/Madrid 2012-01-19
-2516700 Hinojares Hinojares Hinojares 37.71586 -2.99769 P PPLA3 ES 51 J 23042 497 669 Europe/Madrid 2012-03-04
-2516704 Hinojales Hinojales Hinojales 38 -6.58333 P PPLA3 ES 51 H 21039 0 519 Europe/Madrid 2011-07-31
-2516705 Hinojal Hinojal Hinojal 39.709 -6.35566 P PPLA3 ES 57 CC 10098 458 365 337 Europe/Madrid 2012-03-04
-2516709 Higueruelas Higueruelas Figueroles,Higueruelas 39.78333 -0.85 P PPLA3 ES 60 V 46141 519 778 Europe/Madrid 2012-03-04
-2516713 Higueruela Higueruela Higueruela 38.96371 -1.4437 P PPLA3 ES 54 AB 02039 1351 1019 Europe/Madrid 2012-03-04
-2516722 Higueras Higueras Higueras 39.98333 -0.5 P PPLA3 ES 60 CS 12069 91 688 Europe/Madrid 2012-03-04
-2516723 Higuera la Real Higuera la Real Higuera,Higuera la Real 38.14088 -6.68922 P PPLA3 ES 57 BA 06067 2496 623 Europe/Madrid 2012-03-04
-2516728 Higuera de Vargas Higuera de Vargas Higuera de Vargas 38.447 -6.97517 P PPLA3 ES 57 BA 06066 2168 358 Europe/Madrid 2012-03-04
-2516730 Higuera de la Sierra Higuera de la Sierra Higuera,Higuera de Aracena,Higuera de la Sierra 37.83333 -6.45 P PPLA3 ES ES 51 H 21038 0 612 Europe/Madrid 2012-03-04
-2516731 Higuera de la Serena Higuera de la Serena Higuera de la Serena 38.64616 -5.74129 P PPLA3 ES 57 BA 06064 1112 477 Europe/Madrid 2012-03-04
-2516732 Higuera de Calatrava Higuera de Calatrava Higuera de Calatrava 37.79848 -4.15737 P PPLA3 ES 51 J 23041 709 356 Europe/Madrid 2012-03-04
-2516733 Higuera de Arjona Higuera de Arjona 37.97064 -3.99061 P PPL ES 51 J 23006 1889 376 Europe/Madrid 2011-10-11
-2516742 Higuera Higuera Higuera 39.72551 -5.66692 P PPLA3 ES 57 CC 10097 97 477 Europe/Madrid 2012-03-04
-2516755 Herreruela de Oropesa Herreruela de Oropesa Herreruela de Oropesa 39.88928 -5.24279 P PPLA3 ES 54 TO 45073 520 380 Europe/Madrid 2012-03-04
-2516768 Herrera del Duque Herrera del Duque Herrera del Duque 39.1684 -5.05049 P PPLA3 ES 57 BA 06063 3616 461 Europe/Madrid 2012-03-04
-2516769 Herrera de Alcántara Herrera de Alcantara Herrera de Alcantara,Herrera de Alcántara 39.63865 -7.40619 P PPLA3 ES 57 CC 10094 281 258 Europe/Madrid 2012-03-04
-2516773 Herrera Herrera Herrer,Herrera 37.36396 -4.84979 P PPLA3 ES 51 SE 41050 6230 249 Europe/Madrid 2012-03-04
-2516785 Hermigua Hermigua Hermigua 28.16766 -17.19051 P PPLA3 ES 53 TF 38021 2195 107 Atlantic/Canary 2012-03-04
-2516789 Herguijuela Herguijuela Herguijuela 39.37452 -5.76001 P PPLA3 ES 57 CC 10092 368 485 463 Europe/Madrid 2012-03-04
-2516790 Herencia Herencia 39.36616 -3.35735 P PPLA3 ES 54 CR 13047 7879 650 Europe/Madrid 2012-03-04
-2516794 Henarejos Henarejos Henarejos 39.86667 -1.48333 P PPLA3 ES 54 CU 16097 244 1084 Europe/Madrid 2012-03-04
-2516797 Hellín Hellin Ehl'ine,Hellin,Hellín,Эльине 38.5106 -1.70096 P PPLA3 ES 54 AB 02037 30976 557 Europe/Madrid 2012-03-04
-2516814 Haría Haria Haria,Haría 29.14553 -13.49986 P PPLA3 ES 53 GC 35010 4833 287 Atlantic/Canary 2012-03-04
-2516852 Güimar Guimar Guimar,Güimar 28.3039 -16.43254 P PPL ES 53 TF 38020 17662 521 Atlantic/Canary 2012-01-19
-2516855 Guillena Guillena 37.54262 -6.05626 P PPLA3 ES 51 SE 41049 11109 25 Europe/Madrid 2012-03-04
-2516860 Guía de Isora Guia de Isora Guia,Guia de Isora,Guia de Izara,Guía,Guía de Isora 28.21154 -16.77947 P PPLA3 ES 53 TF 38019 20536 594 Atlantic/Canary 2012-03-04
-2516861 Guia Guia Guia de Gran Canaria,Guía de Gran Canaria 28.13974 -15.63294 P PPL ES 53 GC 35009 14031 181 Atlantic/Canary 2008-12-23
-2516865 Güevéjar Guevejar 37.25759 -3.59691 P PPLA3 ES 51 GR 18095 1943 885 Europe/Madrid 2012-03-04
-2516873 Güéjar-Sierra Guejar-Sierra 37.15994 -3.43863 P PPL ES 51 GR 18094 3009 1101 Europe/Madrid 2008-07-18
-2516887 Guarromán Guarroman Guarroman,Guarromán 38.18282 -3.68697 P PPLA3 ES 51 J 23039 2955 350 Europe/Madrid 2012-03-04
-2516892 Guaro Guaro 36.6563 -4.83433 P PPLA3 ES 51 MA 29058 2068 343 Europe/Madrid 2012-03-04
-2516896 Guareña Guarena Guarena,Guareña 38.85952 -6.09987 P PPL ES 57 BA 06094 7330 281 Europe/Madrid 2012-01-19
-2516902 Guardamar del Segura Guardamar del Segura Guardamar,Guardamar de la Safor,Guardamar de la Segura,Guardamar del Segura 38.09031 -0.65556 P PPLA3 ES 60 A 03076 16329 35 Europe/Madrid 2012-03-04
-2516915 Gualchos Gualchos Gualchos 36.74467 -3.39079 P PPLA3 ES 51 GR 18093 2559 355 Europe/Madrid 2012-03-04
-2516925 Guadix Guadix Guadix,Gvadiks,Quadix,Гвадикс 37.29932 -3.13922 P PPLA3 ES 51 GR 18089 20395 927 Europe/Madrid 2012-03-04
-2516944 Guadassuar Guadassuar Guadassuar,Guadasuar 39.18333 -0.46667 P PPLA3 ES 60 V 46139 5568 23 Europe/Madrid 2012-03-04
-2516945 Guadasequies Guadasequies Guadasequies,Guadassequies,Guadassèquies 38.92539 -0.48585 P PPLA3 ES 60 V 46138 385 165 Europe/Madrid 2012-03-04
-2516957 Guadamur Guadamur Guadamur 39.81178 -4.14885 P PPLA3 ES 54 TO 45070 1737 629 Europe/Madrid 2012-03-04
-2516970 Guadalupe Guadalupe Guadalupe,Gundalupe 39.4508 -5.32588 P PPLA3 ES 57 CC 10087 2252 640 Europe/Madrid 2012-03-04
-2516981 Guadalmez Guadalmez Guadalmez 38.72665 -4.97104 P PPLA3 ES 54 CR 13046 0 364 Europe/Madrid 2012-03-04
-2517004 Guadalcázar Guadalcazar Guadalcazar,Guadalcázar 37.75738 -4.94387 P PPLA3 ES 51 CO 14033 1234 162 Europe/Madrid 2012-03-04
-2517006 Guadalcanal Guadalcanal Guadalcanal 38.1 -5.81667 P PPLA3 ES 51 SE 41048 0 745 Europe/Madrid 2012-03-04
-2517023 Guadahortuna Guadahortuna Guadahortuna 37.55711 -3.39859 P PPL ES 51 J 23044 2004 964 Europe/Madrid 2012-01-19
-2517049 Grazalema Grazalema Grazalema 36.76018 -5.36839 P PPLA3 ES 51 CA 11019 2160 827 Europe/Madrid 2012-03-04
-2517059 Granja de Torrehermosa Granja de Torrehermosa Granja de Torrehermosa 38.31667 -5.58333 P PPLA3 ES 57 BA 06059 2475 565 Europe/Madrid 2011-07-31
-2517060 Granja de Rocamora Granja de Rocamora Granja de Rocamora 38.15157 -0.8917 P PPLA3 ES 60 A 03074 2117 20 Europe/Madrid 2012-03-04
-2517111 Granadilla de Abona Granadilla de Abona Granadilla,Granadilla de Abona 28.11882 -16.57599 P PPLA3 ES 53 TF 38017 39993 634 Atlantic/Canary 2012-03-04
-2517117 Granada Granada Granada,Granada - Grenada,Granado,Granata,Grenada,Grenade,Grenado,Grenayd,ge la na da,ge lin na da,geulenada,ghrnatt,granada,grndh,guranada,gurenada,jrynada,pra thes kerne da,Γρενάδα,Гранада,Гренада,גרנדה,جرينادا,غرناطة,ګرېنادا,گرانادا,گرېنادا,ประเทศเกรเนดา,グラナダ,グレナダ,格拉纳达,格林纳达,그레나다 37.18817 -3.60667 P PPLA2 ES 51 GR 18087 234325 689 Europe/Madrid 2010-08-22
-2517123 Graja de Iniesta Graja de Iniesta Graja de Iniesta 39.51667 -1.66667 P PPLA3 ES 54 CU 16096 444 836 Europe/Madrid 2012-03-04
-2517124 Graja de Campalbo Graja de Campalbo Graja de Campalbo 39.9 -1.26667 P PPLA3 ES 54 CU 16095 129 1124 Europe/Madrid 2012-03-04
-2517142 Gorga Gorga Gorga 38.71896 -0.35589 P PPLA3 ES 60 A 03073 266 555 Europe/Madrid 2012-03-04
-2517175 Gor Gor Gor 37.36937 -2.97016 P PPLA3 ES 51 GR 18085 1025 1242 Europe/Madrid 2012-03-04
-2517189 Golosalvo Golosalvo Golosalvo 39.23333 -1.63333 P PPLA3 ES 54 AB 02036 114 718 Europe/Madrid 2012-03-04
-2517197 Gójar Gojar Gojar,Gójar 37.10456 -3.60565 P PPLA3 ES 51 GR 18084 5024 794 Europe/Madrid 2012-03-04
-2517199 Godelleta Godelleta Godelleta 39.41667 -0.68333 P PPLA3 ES 60 V 46136 2597 292 Europe/Madrid 2012-03-04
-2517200 Godella Godella Godella 39.53333 -0.41667 P PPLA3 ES 60 V 46135 13240 40 Europe/Madrid 2012-03-04
-2517202 Gobernador Gobernador Gobernador 37.47845 -3.32119 P PPLA3 ES 51 GR 18083 313 1038 Europe/Madrid 2012-03-04
-2517217 Ginés Gines Gines,Ginés 37.38678 -6.07743 P PPL ES 51 SE 41047 12934 119 Europe/Madrid 2012-01-19
-2517223 Gilet Gilet Gilet 39.68333 -0.31667 P PPLA3 ES 60 V 46134 2118 82 Europe/Madrid 2012-03-04
-2517225 Gilena Gilena Gilena 37.2515 -4.91442 P PPLA3 ES 51 SE 41046 3811 465 Europe/Madrid 2012-03-04
-2517236 Gibraleón Gibraleon Gibraleon,Gibraleón 37.37628 -6.96895 P PPLA3 ES 51 H 21035 12258 34 Europe/Madrid 2012-03-04
-2517241 Gestalgar Gestalgar Gestalgar,Xestalgar 39.6 -0.83333 P PPLA3 ES 60 V 46133 714 186 Europe/Madrid 2012-03-04
-2517242 Gerindote Gerindote Gerindote 39.96594 -4.30278 P PPLA3 ES 54 TO 45069 2157 551 Europe/Madrid 2012-03-04
-2517247 Gérgal Gergal Gergal,Gérgal 37.11886 -2.54012 P PPLA3 ES 51 AL 04050 1080 753 Europe/Madrid 2012-03-04
-2517249 Gerena Gerena Gerena 37.52957 -6.15479 P PPLA3 ES 51 SE 41045 5803 87 Europe/Madrid 2012-03-04
-2517252 Genovés Genoves Genoves,Genovés 38.98915 -0.46992 P PPLA3 ES 60 V 46132 2567 142 Europe/Madrid 2012-03-04
-2517259 Génave Genave Genave,Génave 38.43062 -2.7331 P PPLA3 ES 51 J 23037 592 820 Europe/Madrid 2012-03-04
-2517260 Genalguacil Genalguacil Genalguacil 36.54546 -5.23572 P PPLA3 ES 51 MA 29057 551 540 Europe/Madrid 2012-03-04
-2517262 Gelves Gelves Gelves 37.33481 -6.02601 P PPLA3 ES 51 SE 41044 7897 8 Europe/Madrid 2012-03-04
-2517264 Geldo Geldo Geldo 39.83333 -0.46667 P PPLA3 ES 60 CS 12067 739 295 Europe/Madrid 2012-03-04
-2517283 Gaucín Gaucin Gaucin,Gaucín 36.51784 -5.31581 P PPLA3 ES 51 MA 29056 1847 619 Europe/Madrid 2012-03-04
-2517298 Gata de Gorgos Gata de Gorgos Gata,Gata de Gorgos 38.77443 0.08538 P PPLA3 ES 60 A 03071 5281 84 Europe/Madrid 2012-03-04
-2517307 Garvín Garvin Garvin,Garvín 39.71984 -5.34678 P PPLA3 ES 57 CC 10083 104 502 Europe/Madrid 2012-03-04
-2517310 Garrucha Garrucha Garrucha,Garrucho,La Garrucha 37.18141 -1.82252 P PPLA3 ES 51 AL 04049 6920 16 Europe/Madrid 2012-03-04
-2517311 Garrovillas Garrovillas Garrovillas,Garrovillas de Alconetar,Garrovillas de Alconétar 39.71082 -6.55034 P PPL ES 57 CC 10082 2390 328 Europe/Madrid 2012-01-19
-2517322 Garlitos Garlitos Garlitos 38.88022 -5.04759 P PPLA3 ES 57 BA 06057 721 539 Europe/Madrid 2012-03-04
-2517341 Garbayuela Garbayuela Garbayuela 39.04956 -4.99856 P PPLA3 ES 57 BA 06056 542 488 Europe/Madrid 2012-03-04
-2517346 Garafía Garafia Garafia,Garafía,Santo Domingo 28.81667 -17.93333 P PPLA3 ES 53 TF 38016 1929 795 Atlantic/Canary 2011-07-31
-2517349 Garachico Garachico Garachico,Garachiko,Гарачико 28.77806 -17.76459 P PPL ES 53 TF 38030 6000 295 Atlantic/Canary 2012-01-19
-2517350 Garachico Garachico Garachico,Garachiko,Garachiro,Гарачико 28.37365 -16.76342 P PPLA3 ES ES 53 TF 38015 6000 19 Atlantic/Canary 2012-03-04
-2517355 Garaballa Garaballa Garaballa 39.81667 -1.36667 P PPLA3 ES 54 CU 16093 119 955 Europe/Madrid 2012-03-04
-2517367 Gandia Gandia Gandia,Gandie,Gandija,Gandía,Гандия 38.96667 -0.18333 P PPLA3 ES 60 V 46131 80020 34 Europe/Madrid 2012-03-04
-2517383 Gálvez Galvez Galvez,Gálvez 39.70208 -4.27239 P PPLA3 ES 54 TO 45067 3363 713 Europe/Madrid 2012-03-04
-2517409 Galisteo Galisteo Galisteo 39.97642 -6.26782 P PPLA3 ES 57 CC 10076 2030 305 Europe/Madrid 2012-03-04
-2517432 Galera Galera 37.74262 -2.55175 P PPLA3 ES 51 GR 18082 1112 839 Europe/Madrid 2012-03-04
-2517436 Gáldar Galdar Gal'dar,Galdar,Gáldar,Гальдар 28.14701 -15.6502 P PPLA3 ES 53 GC 35009 24405 148 Atlantic/Canary 2012-03-04
-2517440 Galaroza Galaroza Galaroza 37.92864 -6.7073 P PPLA3 ES 51 H 21034 0 577 Europe/Madrid 2012-03-04
-2517454 Gaibiel Gaibiel Gaibiel 39.93333 -0.48333 P PPLA3 ES 60 CS 12065 205 595 Europe/Madrid 2012-03-04
-2517460 Gádor Gador Gador,Gádor 36.95322 -2.49254 P PPLA3 ES 51 AL 04047 3002 169 Europe/Madrid 2012-03-04
-2517473 Gavarda Gavarda Gabarda,Gavarda 39.08333 -0.55 P PPLA3 ES 60 V 46130 1178 30 Europe/Madrid 2012-03-04
-2517476 Gabaldón Gabaldon Gabaldon,Gabaldón 39.61667 -1.93333 P PPLA3 ES 54 CU 16092 198 921 Europe/Madrid 2012-03-04
-2517482 Fuerte del Rey Fuerte del Rey Fuerte del Rey 37.87492 -3.88389 P PPLA3 ES 51 J 23035 1220 428 Europe/Madrid 2012-03-04
-2517493 Fuente Vaqueros Fuente Vaqueros Fuente Vagueros,Fuente Vaqueros 37.22019 -3.78294 P PPLA3 ES 51 GR 18079 3955 546 Europe/Madrid 2012-03-04
-2517494 Fuente-Tójar Fuente-Tojar 37.51095 -4.14631 P PPLA3 ES 51 CO 14031 807 587 Europe/Madrid 2012-03-04
-2517498 Fuentes de León Fuentes de Leon Fuentes de Leon,Fuentes de León 38.06866 -6.53884 P PPLA3 ES 57 BA 06055 2652 757 Europe/Madrid 2012-03-04
-2517500 Fuentes de Andalucía Fuentes de Andalucia Fuentes de Andalucia,Fuentes de Andalucía 37.46409 -5.34615 P PPLA3 ES 51 SE 41042 7344 181 Europe/Madrid 2012-03-04
-2517505 Fuentes Fuentes Fuentes 39.96667 -2.01667 P PPLA3 ES 54 CU 16089 503 1053 Europe/Madrid 2012-03-04
-2517509 Fuenterrobles Fuenterrobles Fuenterrobles 39.58333 -1.35 P PPLA3 ES 60 V 46129 737 921 Europe/Madrid 2012-03-04
-2517512 Fuente Palmera Fuente Palmera Fuente Palmera 37.70494 -5.09965 P PPLA3 ES 51 CO 14030 10788 162 Europe/Madrid 2012-03-04
-2517515 Fuente Obejuna Fuente Obejuna Fuente Obejuna,Fuenteovejuna 38.26667 -5.41667 P PPLA3 ES 51 CO 14029 5451 610 Europe/Madrid 2012-03-04
-2517519 Fuentelespino de Moya Fuentelespino de Moya Fuentelespino de Moya 39.91667 -1.46667 P PPLA3 ES 54 CU 16088 163 1114 Europe/Madrid 2012-03-04
-2517520 Fuentelespino de Haro Fuentelespino de Haro Fuentelespino de Haro 39.68934 -2.66869 P PPLA3 ES 54 CU 16087 312 850 Europe/Madrid 2012-03-04
-2517522 Fuente la Lancha Fuente la Lancha Fuente la Lancha 38.41667 -5.03333 P PPLA3 ES 51 CO 14028 437 548 Europe/Madrid 2012-03-04
-2517523 La Font de la Figuera La Font de la Figuera Fuente la Higuera,La Font de la Figuera 38.8 -0.88333 P PPL ES 60 V 46128 2139 588 Europe/Madrid 2006-04-08
-2517527 Fuenteheridos Fuenteheridos Fuenteheridos 37.90545 -6.66108 P PPLA3 ES 51 H 21033 0 716 Europe/Madrid 2012-03-04
-2517530 Fuente el Fresno Fuente el Fresno Fuente del Fresno,Fuente el Fresno 39.2284 -3.77487 P PPL ES 54 CR 13096 3454 682 Europe/Madrid 2012-01-19
-2517534 Fuente de Piedra Fuente de Piedra Fuente de Piedra 37.13526 -4.73 P PPLA3 ES 51 MA 29055 2095 444 Europe/Madrid 2012-03-04
-2517535 Fuente de Pedro Naharro Fuente de Pedro Naharro Fuente de Pedro Naharro 39.92438 -3.00916 P PPLA3 ES 54 CU 16086 1280 774 Europe/Madrid 2012-03-04
-2517547 Fuente del Maestre Fuente del Maestre Fuente del Maestre 38.52656 -6.44782 P PPLA3 ES 57 BA 06054 6748 444 Europe/Madrid 2012-03-04
-2517560 Fuente de Cantos Fuente de Cantos Fuente de Cantos 38.25 -6.3 P PPLA3 ES 57 BA 06052 4952 607 Europe/Madrid 2012-03-04
-2517573 Fuentealbilla Fuentealbilla Fuentealbilla 39.26667 -1.55 P PPLA3 ES 54 AB 02034 1942 660 Europe/Madrid 2012-03-04
-2517574 Fuente-Álamo de Murcia Fuente-Alamo de Murcia Fuente Alamo,Fuente Álamo,Fuente-Alamo de Murcia,Fuente-Álamo de Murcia 37.7 -1.1 P PPL ES 31 MU 30016 14876 105 Europe/Madrid 2012-01-19
-2517576 Fuente-Álamo Fuente-Alamo Fuente-Alamo,Fuente-Álamo 38.69288 -1.43158 P PPLA3 ES 54 AB 02033 2746 825 Europe/Madrid 2012-03-04
-2517581 Fuensanta de Martos Fuensanta de Martos Fuensanta de Martos 37.64756 -3.90846 P PPLA3 ES 51 J 23034 3231 755 Europe/Madrid 2012-03-04
-2517585 Fuensanta Fuensanta Fuensanta 39.23333 -2.06667 P PPLA3 ES 54 AB 02032 319 717 Europe/Madrid 2012-03-04
-2517589 Fuenllana Fuenllana Fuenllana 38.7559 -2.95814 P PPLA3 ES 54 CR 13043 274 910 Europe/Madrid 2012-03-04
-2517591 Fuenlabrada de los Montes Fuenlabrada de los Montes Fuenlabrada de los Montes,Fuentelabrada de los Montes 39.13288 -4.93513 P PPLA3 ES 57 BA 06051 1929 539 Europe/Madrid 2012-03-04
-2517595 Fuengirola Fuengirola Fuengirola 36.53998 -4.62473 P PPLA3 ES 51 MA 29054 71482 13 Europe/Madrid 2012-03-04
-2517598 Fuencaliente de la Palma Fuencaliente de la Palma Fuencaliente de la Palma,Los Canarios,fuencaliente 28.49236 -17.84529 P PPL ES 53 TF 38014 1894 698 Atlantic/Canary 2012-01-19
-2517603 Fuencaliente Fuencaliente Fuencaliente,La Fuencaliente 39.18624 -4.02576 P PPL ES 54 CR 13052 1235 647 Europe/Madrid 2012-01-19
-2517604 Fuencaliente Fuencaliente 38.40602 -4.30492 P PPLA3 ES 54 CR 13042 0 692 Europe/Madrid 2012-03-04
-2517611 Frontera Frontera Frontera,La Frontera,Las Lapas,Фронтера 27.75404 -18.00367 P PPLA3 ES ES 53 TF 38013 4010 342 Atlantic/Canary 2011-07-31
-2517618 Frigiliana Frigiliana Frigiliana 36.78747 -3.89441 P PPLA3 ES 51 MA 29053 2560 312 Europe/Madrid 2012-03-04
-2517626 Fresnedoso de Ibor Fresnedoso de Ibor Fresnedoso de Ibor 39.68418 -5.50899 P PPLA3 ES 57 CC 10075 349 516 Europe/Madrid 2012-03-04
-2517634 Fresneda de Altarejos Fresneda de Altarejos Fresneda de Altarejos 39.92577 -2.31498 P PPLA3 ES 54 CU 16083 85 905 Europe/Madrid 2012-03-04
-2517641 Freila Freila Freila 37.5299 -2.90828 P PPLA3 ES 51 GR 18078 1051 817 Europe/Madrid 2012-03-04
-2517643 Fregenal de la Sierra Fregenal de la Sierra Fregenal,Fregenal de la Sierra 38.16922 -6.6537 P PPL ES 57 BA 06067 5207 572 Europe/Madrid 2012-01-19
-2517659 Frailes Frailes Frailes 37.48617 -3.83743 P PPLA3 ES 51 J 23033 1790 972 Europe/Madrid 2012-03-04
-2517675 Foios Foios Foios,Foyos 39.53333 -0.35 P PPLA3 ES 60 V 46126 6035 18 Europe/Madrid 2012-03-04
-2517679 Fortuna Fortuna Fortuna 38.1814 -1.1259 P PPLA3 ES 31 MU 30020 7943 205 Europe/Madrid 2012-03-04
-2517682 Fortaleny Fortaleny Fortaleny 39.18333 -0.3 P PPLA3 ES 60 V 46125 1010 6 Europe/Madrid 2012-03-04
-2517684 Fornalutx Fornalutx Fornalutx 39.78232 2.74107 P PPLA3 ES 07 PM 07025 698 139 158 Europe/Madrid 2012-03-04
-2517689 Formentera de Segura Formentera de Segura Formentera de Segura,Formentera del Segura 38.08509 -0.74604 P PPL ES 60 A 03113 2765 11 Europe/Madrid 2012-01-19
-2517702 Fontanars dels Alforins Fontanars dels Alforins Fontanares,Fontanars dels Alforins 38.78333 -0.78333 P PPLA3 ES 60 V 46124 996 634 Europe/Madrid 2012-03-04
-2517704 Fontanarejo Fontanarejo Fontanarejo 39.22014 -4.51753 P PPLA3 ES 54 CR 13041 291 637 Europe/Madrid 2012-03-04
-2517711 Fonelas Fonelas Fonelas 37.41042 -3.17158 P PPLA3 ES 51 GR 18076 1158 773 Europe/Madrid 2012-03-04
-2517712 Fondón Fondon Fondon,Fondón 36.9802 -2.85957 P PPLA3 ES 51 AL 04046 947 851 Europe/Madrid 2012-03-04
-2517717 Firgas Firgas Firgas 28.10711 -15.56299 P PPLA3 ES 53 GC 35008 7106 510 Atlantic/Canary 2012-03-04
-2517719 Finestrat Finestrat Finestrat 38.56737 -0.21235 P PPLA3 ES 60 A 03069 3908 262 Europe/Madrid 2012-03-04
-2517720 Fines Fines Fines 37.36074 -2.2581 P PPLA3 ES 51 AL 04044 1955 476 Europe/Madrid 2012-03-04
-2517722 Fiñana Finana Finana,Fiñana,Pinana,Piñana 37.1715 -2.84011 P PPLA3 ES 51 AL 04045 2413 959 Europe/Madrid 2012-03-04
-2517733 Ferreries Ferreries Ferrerias,Ferreries,Ferrerías 39.98324 4.01181 P PPLA3 ES 07 PM 07023 4416 70 Europe/Madrid 2012-03-04
-2517737 Ferreira Ferreira Ferreira 37.17247 -3.03538 P PPLA3 ES 51 GR 18074 336 1260 Europe/Madrid 2012-03-04
-2517740 Fernán-Núñez Fernan-Nunez Fernan-Nunez,Fernán-Núñez 37.67044 -4.7264 P PPLA3 ES 51 CO 14027 9374 325 Europe/Madrid 2012-03-04
-2517744 Feria Feria Feria 38.51151 -6.56416 P PPLA3 ES 57 BA 06049 1383 551 Europe/Madrid 2012-03-04
-2517745 Férez Ferez Ferez,Férez 38.35 -2 P PPLA3 ES 54 AB 02031 804 677 Europe/Madrid 2011-07-31
-2517750 Felanitx Felanitx Felanitx 39.4696 3.14831 P PPLA3 ES 07 PM 07022 18270 116 Europe/Madrid 2011-07-31
-2517753 Favara Favara Favara,Favareta 39.11667 -0.28333 P PPLA3 ES 60 V 46123 1855 39 Europe/Madrid 2012-03-04
-2517755 Faura Faura Faura 39.71667 -0.25 P PPL ES 60 V 46220 2743 12 Europe/Madrid 2012-01-19
-2517763 Fasnia Fasnia Fasnea,Fasnia 28.23638 -16.43886 P PPLA3 ES 53 TF 38012 2777 429 Atlantic/Canary 2012-03-04
-2517772 Faraján Farajan Farajan,Faraján 36.61695 -5.18839 P PPLA3 ES 51 MA 29052 242 644 Europe/Madrid 2012-03-04
-2517778 Famorca Famorca Famorca 38.73101 -0.24726 P PPLA3 ES 60 A 03068 61 713 Europe/Madrid 2012-03-04
-2517792 Facheca Facheca Facheca,Fageca 38.735 -0.26766 P PPLA3 ES 60 A 03067 97 782 Europe/Madrid 2012-03-04
-2517803 Estubeny Estubeny Estubeny 39.01792 -0.62379 P PPLA3 ES 60 V 46121 183 158 Europe/Madrid 2012-03-04
-2517812 Estivella Estivella Estivella 39.71667 -0.35 P PPLA3 ES 60 V 46120 1164 119 Europe/Madrid 2012-03-04
-2517816 Estepona Estepona Estepona,Естепона 36.42764 -5.14589 P PPLA3 ES 51 MA 29051 65592 69 13 Europe/Madrid 2012-03-04
-2517820 Estepa Estepa 37.29263 -4.87896 P PPLA3 ES 51 SE 41041 12632 523 Europe/Madrid 2012-03-04
-2517827 Estellencs Estellencs Estellencs 39.65338 2.4813 P PPLA3 ES 07 PM 07021 386 151 Europe/Madrid 2012-03-04
-2517880 Esporles Esporles Esporles 39.6697 2.57853 P PPLA3 ES 07 PM 07020 4457 188 Europe/Madrid 2012-03-04
-2517884 Espinoso del Rey Espinoso del Rey Espinoso del Rey 39.65333 -4.78371 P PPLA3 ES 54 TO 45063 599 723 Europe/Madrid 2012-03-04
-2517894 Espiel Espiel Espiel 38.2 -5.01667 P PPLA3 ES 51 CO 14026 2332 715 Europe/Madrid 2012-03-04
-2517897 Espera Espera Espera 36.87446 -5.806 P PPLA3 ES 51 CA 11017 3810 155 Europe/Madrid 2012-03-04
-2517898 Espelúy Espeluy Espeluy,Espelúy 38.0318 -3.86309 P PPLA3 ES 51 J 23032 771 280 Europe/Madrid 2012-03-04
-2517900 Espejo Espejo Espejo 37.6798 -4.55355 P PPLA3 ES 51 CO 14025 3796 397 Europe/Madrid 2012-03-04
-2517903 Espartinas Espartinas Espartinas 37.38154 -6.12578 P PPLA3 ES 51 SE 41040 12648 132 Europe/Madrid 2012-03-04
-2517909 Esparragosa de la Serena Esparragosa de la Serena Esparragosa de la Serena 38.651 -5.60657 P PPLA3 ES 57 BA 06047 1118 448 Europe/Madrid 2012-03-04
-2517910 Esparragosa de Lares Esparragosa de Lares Esparragosa de Lares 38.97517 -5.26968 P PPLA3 ES 57 BA 06048 1054 471 Europe/Madrid 2012-03-04
-2517913 Esparragalejo Esparragalejo Esparragalejo 38.9433 -6.43549 P PPLA3 ES 57 BA 06046 1524 235 Europe/Madrid 2012-03-04
-2517923 Eslida Eslida Eslida 39.88333 -0.3 P PPLA3 ES 60 CS 12057 856 338 Europe/Madrid 2012-03-04
-2517925 Escúzar Escuzar Escuzar,Escúzar 37.06219 -3.76126 P PPLA3 ES 51 GR 18072 745 874 Europe/Madrid 2012-03-04
-2517926 Escurial Escurial Escurial 39.16856 -5.88465 P PPLA3 ES 57 CC 10073 883 317 Europe/Madrid 2012-03-04
-2517936 Escorca Escorca Escorca 39.82138 2.86941 P PPLA3 ES 07 PM 07019 293 682 Europe/Madrid 2012-03-04
-2517951 Escañuela Escanuela Escanuela,Escañuela 37.87885 -4.03376 P PPLA3 ES 51 J 23031 930 317 Europe/Madrid 2012-03-04
-2517955 Escalonilla Escalonilla Escalonilla 39.9257 -4.35095 P PPLA3 ES 54 TO 45062 1458 545 Europe/Madrid 2012-03-04
-2517964 Escacena del Campo Escacena del Campo Escacena,Escacena del Campo 37.40836 -6.3887 P PPLA3 ES 51 H 21032 2156 163 Europe/Madrid 2012-03-04
-2517965 Erustes Erustes Erustes 39.95667 -4.49656 P PPLA3 ES 54 TO 45060 212 536 Europe/Madrid 2012-03-04
-2517980 Entrín Bajo Entrin Bajo Entrin Bajo,Entrín Bajo 38.71855 -6.71349 P PPLA3 ES 57 BA 06045 591 244 Europe/Madrid 2012-03-04
-2518008 Enix Enix Enix 36.87732 -2.6018 P PPLA3 ES 51 AL 04041 330 721 Europe/Madrid 2012-03-04
-2518009 Enguídanos Enguidanos Enguidamos,Enguidanos,Enguídanos 39.66667 -1.6 P PPLA3 ES 54 CU 16082 454 779 Europe/Madrid 2012-03-04
-2518011 Enguera Enguera Enguera,Ènguera,Énguera 38.97974 -0.68683 P PPLA3 ES 60 V 46118 5484 315 Europe/Madrid 2012-03-04
-2518019 Encinas Reales Encinas Reales Encinas Reales 37.27419 -4.48828 P PPLA3 ES 51 CO 14024 2439 444 Europe/Madrid 2012-03-04
-2518020 Encinasola Encinasola Encinasola,Encinosola 38.13413 -6.86675 P PPLA3 ES 51 H 21031 0 428 Europe/Madrid 2012-03-04
-2518033 Emperador Emperador Emperador 39.55 -0.33333 P PPLA3 ES 60 V 46117 260 11 Europe/Madrid 2012-03-04
-2518040 El Viso del Alcor El Viso del Alcor El Viso del Alcor,Viso del Alcor 37.39106 -5.71993 P PPL ES 51 SE 41102 18351 167 Europe/Madrid 2012-01-19
-2518042 El Viso El Viso El Viso 38.48333 -4.95 P PPL ES 51 CO 14023 2846 565 Europe/Madrid 2012-01-19
-2518052 El Varadero El Varadero Barriada El Varadero,El Varadero,Varadero 36.72521 -3.52183 P PPL ES 51 GR 18140 2000 4 4 Europe/Madrid 2012-01-19
-2518078 El Toboso El Toboso El Toboso 39.51333 -2.99726 P PPL ES 54 TO 45167 2156 698 Europe/Madrid 2012-01-19
-2518113 El Saucejo El Saucejo El Saucejo,Saucejo 37.07237 -5.09818 P PPL ES 51 SE 41090 4321 545 Europe/Madrid 2012-01-19
-2518129 El Rubio El Rubio El Rubio 37.35617 -4.98896 P PPL ES 51 SE 41084 3557 207 Europe/Madrid 2012-01-19
-2518146 El Ronquillo El Ronquillo El Ronquillo,Ronquillo 37.72628 -6.1762 P PPL ES 51 SE 41083 1378 334 Europe/Madrid 2012-01-19
-2518158 El Robledo El Robledo El Robledo 39.21898 -4.28099 P PPL ES 54 CR 13901 1074 589 Europe/Madrid 2012-01-19
-2518207 El Puerto de Santa María El Puerto de Santa Maria Ehl'-Puehrto-de-Santa-Marija,El Puerto,El Puerto de Santa Maria,El Puerto de Santa María,Pto. de Sta. Maria,Pto. de Sta. María,Puerto,Puerto de Santa Maria,Puerto de Santa María,Эль-Пуэрто-де-Санта-Мария 36.59389 -6.23298 P PPL ES 51 CA 11027 87696 11 Europe/Madrid 2010-04-22
-2518221 El Puente del Arzobispo El Puente del Arzobispo El Puente del Arzobispo,Puente del Arzobispo 39.80174 -5.17178 P PPL ES 54 TO 45138 1478 340 Europe/Madrid 2012-01-19
-2518224 El Provencio El Provencio El Provencio 39.3774 -2.57448 P PPL ES 54 CU 16171 2668 703 Europe/Madrid 2012-01-19
-2518273 El Pedernoso El Pedernoso El Pedernoso 39.4858 -2.74642 P PPL ES 54 CU 16153 1289 712 Europe/Madrid 2012-01-19
-2518277 El Paso El Paso El Paso,Paso 28.65007 -17.88274 P PPL ES 53 TF 38027 7053 641 Atlantic/Canary 2012-01-19
-2518455 El Gastor El Gastor El Gastor 36.85478 -5.32334 P PPL ES 51 CA 11018 1945 599 Europe/Madrid 2012-01-19
-2518494 El Ejido El Ejido Barriada El Ejido,Ehl'-Ehkhido,Ejido,El Ejido,Эль-Эхидо 36.77629 -2.81456 P PPL ES 51 AL 04013 84227 84 Europe/Madrid 2010-04-22
-2518505 Elda Elda Ehl'da,Elda,Эльда 38.47783 -0.79157 P PPLA3 ES 60 A 03066 55168 412 Europe/Madrid 2012-03-04
-2518521 El Coronil El Coronil El Coronil,El Goronil 37.07954 -5.6341 P PPL ES 51 SE 41011 5011 134 Europe/Madrid 2012-01-19
-2518555 Elche de la Sierra Elche de la Sierra Elche Sierra,Elche de la Sierra 38.45123 -2.0476 P PPLA3 ES 54 AB 02030 3894 642 Europe/Madrid 2012-03-04
-2518559 Elche Elche Ehl'ch,Elch,Elche,Elig,Elx,Illice,ai er qie,altshh,eruche,Елч,Эльч,אלצ'ה,إلتشه,エルチェ,埃爾切 38.26218 -0.70107 P PPLA3 ES 60 A 03065 230112 96 81 Europe/Madrid 2012-03-04
-2518575 El Cerro de Andévalo El Cerro de Andevalo El Cerro,El Cerro de Andevalo,El Cerro de Andévalo 37.73536 -6.93692 P PPL ES 51 H 21023 2639 308 Europe/Madrid 2012-01-19
-2518591 El Castillo de las Guardas El Castillo de las Guardas El Castello de las Guardas,El Castillo de las Guardas 37.69314 -6.31503 P PPL ES 51 SE 41031 1633 333 Europe/Madrid 2012-01-19
-2518597 El Casar El Casar Cortijo El Casar,El Casar 38.53089 -5.92513 P PPL ES 57 BA 06069 10031 499 Europe/Madrid 2012-01-19
-2518606 El Carpio de Tajo El Carpio de Tajo El Carpio de Tajo 39.88796 -4.45388 P PPL ES 54 TO 45037 2181 486 Europe/Madrid 2012-01-19
-2518607 El Carpio El Carpio El Carpio 37.94085 -4.49696 P PPL ES 51 CO 14018 4483 163 Europe/Madrid 2012-01-19
-2518682 El Bosque El Bosque 36.75828 -5.50535 P PPL ES 51 CA 11011 1984 289 Europe/Madrid 2008-07-25
-2518684 El Bonillo El Bonillo Bonillo,El Bonillo 38.95048 -2.54048 P PPL ES 54 AB 02019 3161 1069 Europe/Madrid 2012-01-19
-2518723 s'Arenal s'Arenal Arenal',El Arenal,l'Arenal,s'Arenal,Ареналь 39.5 2.75 P PPL ES 07 PM 07031 10207 5 Europe/Madrid 2011-09-11
-2518729 El Arahal El Arahal Arahal,El Arahal 37.26273 -5.5453 P PPL ES 51 SE 41011 19248 118 Europe/Madrid 2012-01-19
-2518770 Écija Ecija Ecija,Ehsikha,Écija,Эсиха 37.5422 -5.0826 P PPLA3 ES 51 SE 41039 40400 105 Europe/Madrid 2012-03-04
-2518774 Dúrcal Durcal 36.98788 -3.56601 P PPLA3 ES 51 GR 18071 6913 789 Europe/Madrid 2012-03-04
-2518782 Dúdar Dudar Dudar,Dúdar 37.18579 -3.48347 P PPLA3 ES 51 GR 18070 289 811 Europe/Madrid 2012-03-04
-2518791 Dos Torres Dos Torres Dos Torres 38.45 -4.9 P PPLA3 ES 51 CO 14023 2628 599 Europe/Madrid 2012-03-04
-2518794 Dos Hermanas Dos Hermanas Dos Ermanas,Dos Hermanas,Дос Ерманас 37.28287 -5.92088 P PPLA3 ES 51 SE 41038 122943 45 Europe/Madrid 2012-03-04
-2518796 Dosbarrios Dosbarrios Dosbarrios 39.88198 -3.48419 P PPLA3 ES 54 TO 45059 2223 714 Europe/Madrid 2012-03-04
-2518797 Dos Aguas Dos Aguas Dos Aguas,Dosaiguees,Dosaigües 39.28333 -0.8 P PPLA3 ES 60 V 46115 441 293 Europe/Madrid 2012-03-04
-2518820 Don Benito Don Benito Don Benito,Don-Benito,Дон-Бенито 38.95627 -5.86162 P PPLA3 ES 57 BA 06044 35791 285 Europe/Madrid 2012-03-04
-2518825 Doña Mencía Dona Mencia Dona Mencia,Doña Mencía 37.55346 -4.35602 P PPLA3 ES 51 CO 14022 5019 597 Europe/Madrid 2012-03-04
-2518828 Don Álvaro Don Alvaro Don Alvaro,Don Álvaro 38.84838 -6.27475 P PPLA3 ES 57 BA 06043 625 264 Europe/Madrid 2012-03-04
-2518837 Domingo Pérez Domingo Perez Domingo Perez,Domingo Pérez 39.97661 -4.50554 P PPLA3 ES 54 TO 45058 501 498 Europe/Madrid 2012-03-04
-2518840 Domeño Domeno Domeno,Domenyo,Domeño 39.66115 -0.67077 P PPLA3 ES 60 V 46114 568 210 Europe/Madrid 2012-03-04
-2518842 Dolores Dolores Dolores,Dolors 38.14002 -0.77088 P PPLA3 ES 60 A 03064 7132 9 Europe/Madrid 2012-03-04
-2518849 Dílar Dilar Dilar,Dílar 37.07282 -3.60134 P PPLA3 ES 51 GR 18068 1659 892 Europe/Madrid 2012-03-04
-2518850 Diezma Diezma Diezma 37.31982 -3.33256 P PPLA3 ES 51 GR 18067 811 1223 Europe/Madrid 2012-03-04
-2518859 Deià Deia Deia,Deià 39.74806 2.64823 P PPLA3 ES 07 PM 07018 656 183 Europe/Madrid 2011-07-31
-2518878 Denia Denia Denia,Denija,Dénia,Дения 38.84078 0.10574 P PPL ES 60 A 03063 44464 18 Europe/Madrid 2010-04-22
-2518881 Deleitosa Deleitosa Deleitosa 39.64359 -5.64576 P PPLA3 ES 57 CC 10070 836 567 Europe/Madrid 2012-03-04
-2518882 Deifontes Deifontes Deifontes 37.3262 -3.59568 P PPLA3 ES 51 GR 18066 2424 726 Europe/Madrid 2012-03-04
-2518893 Dehesas de Guadix Dehesas de Guadix Dehesas de Guadix 37.58876 -3.10318 P PPLA3 ES 51 GR 18064 562 687 Europe/Madrid 2012-03-04
-2518912 Daya Vieja Daya Vieja Daia Vella,Daya Vieja 38.1048 -0.73804 P PPLA3 ES 60 A 03062 295 7 Europe/Madrid 2012-03-04
-2518913 Daya Nueva Daya Nueva Daia Nova,Daya Nueva 38.11313 -0.76028 P PPLA3 ES 60 A 03061 1490 10 Europe/Madrid 2012-03-04
-2518917 Darro Darro Darro 37.34987 -3.29465 P PPLA3 ES 51 GR 18063 1500 1133 Europe/Madrid 2012-03-04
-2518921 Dalías Dalias 36.82179 -2.87138 P PPL ES 51 AL 04013 3688 422 Europe/Madrid 2008-11-30
-2518923 Daimús Daimus Daimus,Daimuz,Daimús 38.96667 -0.15 P PPLA3 ES 60 V 46113 2242 8 Europe/Madrid 2012-03-04
-2518924 Daimiel Daimiel Daimiel 39.07004 -3.61498 P PPLA3 ES 54 CR 13039 18527 624 Europe/Madrid 2012-03-04
-2518931 Cútar Cutar Cutar,Cútar 36.83134 -4.22739 P PPLA3 ES 51 MA 29050 638 296 Europe/Madrid 2012-03-04
-2518942 Cumbres Mayores Cumbres Mayores Cumbres Mayores 38.06194 -6.64565 P PPLA3 ES 51 H 21029 0 681 Europe/Madrid 2012-03-04
-2518949 Cullera Cullera Cullera,Kul'era,Кульера 39.16667 -0.25 P PPLA3 ES 60 V 46105 24121 117 Europe/Madrid 2012-03-04
-2518950 Cúllar-Vega Cullar-Vega 37.15361 -3.67072 P PPL ES 51 GR 18057 5487 643 Europe/Madrid 2008-07-18
-2518969 Cuevas de San Marcos Cuevas de San Marcos Cuevas de San Marcos 37.26666 -4.41432 P PPLA3 ES 51 MA 29049 3955 435 Europe/Madrid 2012-03-04
-2518981 Cuevas del Campo Cuevas del Campo Cuevas del Campo 37.60755 -2.92938 P PPLA3 ES 51 GR 18912 2040 847 Europe/Madrid 2012-03-04
-2518982 Cuevas del Becerro Cuevas del Becerro Cuevas del Becerro 36.87537 -5.04488 P PPLA3 ES 51 MA 29048 1859 732 Europe/Madrid 2012-03-04
-2518988 Cuevas del Almanzora Cuevas del Almanzora Cuevas de Almanzora,Cuevas de Vera,Cuevas del Almanzora 37.29646 -1.88466 P PPL ES 51 AL 04053 13025 99 Europe/Madrid 2012-01-19
-2518993 Cuevas Bajas Cuevas Bajas Cuevas Bajas 37.23526 -4.48714 P PPLA3 ES 51 MA 29047 1476 329 Europe/Madrid 2012-03-04
-2519028 Cuerva Cuerva Aebura,Cuerva,Libora 39.66374 -4.21085 P PPLA3 ES 54 TO 45055 1349 774 Europe/Madrid 2012-03-29
-2519061 Quatretonda Quatretonda Cuatretonda,Quatretonda 38.95 -0.4 P PPLA3 ES 60 V 46104 2529 226 Europe/Madrid 2012-03-04
-2519066 Quartell Quartell Cuartell,Quartell 39.73333 -0.26667 P PPL ES 60 V 46058 1395 38 Europe/Madrid 2010-11-07
-2519068 Quart de Poblet Quart de Poblet Cuart de Poblet,Kuart-de-Poblet,Quart de Poblet,Куарт-де-Поблет 39.48139 -0.43937 P PPLA3 ES 60 V 46102 25499 43 Europe/Madrid 2012-03-04
-2519069 Quart de les Valls Quart de les Valls Cuart de les Valls,Quart de les Valls 39.73333 -0.26667 P PPL ES 60 V 46058 1087 38 Europe/Madrid 2010-11-07
-2519105 Cristina Cristina Cristina 38.83745 -6.09867 P PPLA3 ES 57 BA 06041 568 296 Europe/Madrid 2012-03-04
-2519110 Crevillente Crevillente Crevillent,Crevillente,Krevil'ente,Кревильенте 38.24994 -0.80975 P PPL ES 60 A 03059 28609 146 Europe/Madrid 2012-01-19
-2519118 Cózar Cozar 38.66219 -3.07205 P PPLA3 ES 54 CR 13037 1305 860 Europe/Madrid 2012-03-04
-2519120 Cox Cox Coix,Cox 38.14164 -0.88736 P PPLA3 ES 60 A 03058 6411 22 Europe/Madrid 2012-03-04
-2519134 Cotillas Cotillas Cotillas 38.43115 -2.5055 P PPLA3 ES 54 AB 02028 163 936 Europe/Madrid 2012-03-04
-2519137 Cotes Cotes Cotes 39.0701 -0.57449 P PPLA3 ES 60 V 46100 363 45 Europe/Madrid 2012-03-04
-2519139 Costitx Costitx Costitx 39.65675 2.94953 P PPLA3 ES 07 PM 07017 1001 136 Europe/Madrid 2012-03-04
-2519197 Cortes de Pallás Cortes de Pallas Cortes de Pallas,Cortes de Pallás,Cortez de Pallas 39.25 -0.93333 P PPLA3 ES 60 V 46099 999 356 Europe/Madrid 2012-03-04
-2519198 Cortes de la Frontera Cortes de la Frontera Cortes de la Frontera 36.6171 -5.34266 P PPLA3 ES 51 MA 29046 3579 626 Europe/Madrid 2012-03-04
-2519199 Cortes de Baza Cortes de Baza Cortes de Baza 37.65514 -2.77166 P PPLA3 ES 51 GR 18053 2354 701 Europe/Madrid 2012-03-04
-2519203 Cortelazor Cortelazor Cortelazor 37.93639 -6.62462 P PPLA3 ES 51 H 21026 0 617 Europe/Madrid 2012-03-04
-2519206 Cortegana Cortegana 37.91116 -6.82045 P PPLA3 ES 51 H 21025 0 673 Europe/Madrid 2012-03-04
-2519207 Corte de Peleas Corte de Peleas Corte de Peleas 38.72631 -6.67035 P PPLA3 ES 57 BA 06040 1255 246 Europe/Madrid 2012-03-04
-2519208 Corteconcepción Corteconcepcion Corteconcepcion,Corteconcepción 37.9 -6.5 P PPLA3 ES 51 H 21024 0 504 Europe/Madrid 2012-03-04
-2519211 Corral-Rubio Corral-Rubio Corral-Rubio 38.83462 -1.46034 P PPLA3 ES 54 AB 02027 425 875 Europe/Madrid 2012-03-04
-2519217 Corralejo Corralejo Corralejo,Koral'ekho,Коральехо 28.74243 -13.86839 P PPL ES 53 GC 35014 13618 11 Atlantic/Canary 2012-01-19
-2519219 Corral de Calatrava Corral de Calatrava Corral de Calatrava 38.85793 -4.0814 P PPLA3 ES 54 CR 13035 1261 596 Europe/Madrid 2012-03-04
-2519221 Corral de Almaguer Corral de Almaguer Corral de Almaguer 39.75987 -3.16452 P PPLA3 ES 54 TO 45054 5743 706 Europe/Madrid 2012-03-04
-2519232 Coripe Coripe Coripe 36.97335 -5.44022 P PPLA3 ES 51 SE 41035 1411 328 Europe/Madrid 2012-03-04
-2519233 Coria del Río Coria del Rio Coria del Rio,Coria del Río,Koria-del'-Rio,Кориа-дель-Рио,コリア・デル・リオ 37.28766 -6.0541 P PPLA3 ES 51 SE 41034 28100 13 Europe/Madrid 2012-03-04
-2519234 Coria Coria Coria 39.98788 -6.53772 P PPLA3 ES 57 CC 10067 12896 192 273 Europe/Madrid 2012-03-04
-2519237 Cordobilla de Lácara Cordobilla de Lacara Cordobilla de Lacara,Cordobilla de Lácara 39.14763 -6.43619 P PPLA3 ES 57 BA 06038 1062 301 Europe/Madrid 2012-03-04
-2519240 Córdoba Cordoba Cardoue,Cordoba,Cordoue,Cordova,Corduba,Còrdova,Córdoba,Kordava,Kordoba,Kordova,Kordovo,Kordowa,korudoba,kwrdwba,kxr do ba,qrtbh,qrtbt,qwrdwbh,Кордава,Кордоба,Кордова,קורדובה,قرطبة,قرطبه,قرطبہ,کوردوبا,กอร์โดบา,コルドバ 37.88333 -4.76667 P PPLA2 ES 51 CO 14021 328428 106 Europe/Madrid 2010-08-22
-2519264 Corbera Corbera Corbera,Corbera de Alcira 39.15 -0.35 P PPLA3 ES 60 V 46098 3057 43 Europe/Madrid 2012-03-04
-2519277 Consuegra Consuegra Consuegra 39.46246 -3.608 P PPLA3 ES 54 TO 45053 10932 708 Europe/Madrid 2012-03-04
-2519278 Constantina Constantina Constantina 37.86667 -5.61667 P PPLA3 ES 51 SE 41033 0 537 Europe/Madrid 2012-03-04
-2519283 Consell Consell Consell 39.66861 2.81267 P PPLA3 ES 07 PM 07016 2877 152 Europe/Madrid 2012-03-04
-2519284 Conquista de la Sierra Conquista de la Sierra Conquista de la Sierra 39.3507 -5.73464 P PPLA3 ES 57 CC 10066 238 441 Europe/Madrid 2012-03-04
-2519286 Conquista Conquista Conquista 38.4 -4.5 P PPLA3 ES 51 CO 14020 494 594 Europe/Madrid 2011-07-31
-2519289 Conil de la Frontera Conil de la Frontera Conil,Conil de la Frontera 36.27719 -6.0885 P PPLA3 ES 51 CA 11014 20984 42 Europe/Madrid 2012-03-04
-2519293 Confrides Confrides Confrides 38.68451 -0.2689 P PPLA3 ES 60 A 03057 285 786 Europe/Madrid 2012-03-04
-2519319 Cómpeta Competa Competa,Cómpeta 36.83352 -3.9743 P PPLA3 ES 51 MA 29045 0 648 Europe/Madrid 2012-03-04
-2519325 Comares Comares Comares 36.84929 -4.24664 P PPLA3 ES 51 MA 29044 1463 700 Europe/Madrid 2012-03-04
-2519343 Colomera Colomera Colomera 37.37156 -3.71393 P PPLA3 ES 51 GR 18051 1544 857 Europe/Madrid 2012-03-04
-2519352 Colmenar Colmenar 36.90519 -4.33557 P PPLA3 ES 51 MA 29043 3227 673 Europe/Madrid 2012-03-04
-2519367 Coín Coin 36.65947 -4.75639 P PPLA3 ES 51 MA 29042 21866 210 Europe/Madrid 2012-03-04
-2519370 Cogollos de Guadix Cogollos de Guadix Cogollos de Guadix 37.22521 -3.16094 P PPLA3 ES 51 GR 18049 727 1139 Europe/Madrid 2012-03-04
-2519373 Cofrentes Cofrentes Cofrentes,Cofrents 39.22926 -1.06061 P PPLA3 ES 60 V 46097 948 373 Europe/Madrid 2012-03-04
-2519382 Cocentaina Cocentaina Cocentaina 38.73975 -0.43976 P PPLA3 ES 60 A 03056 11467 458 Europe/Madrid 2012-03-04
-2519385 Cobisa Cobisa Cobisa 39.80425 -4.02528 P PPLA3 ES 54 TO 45052 2868 676 Europe/Madrid 2012-03-04
-2519387 Cóbdar Cobdar Cobdar,Cóbdar 37.26166 -2.21098 P PPLA3 ES 51 AL 04034 251 620 Europe/Madrid 2012-03-04
-2519402 Ciudad Real Ciudad Real Ciudad Real,S'judad-Real',Villa-Real,lei a er cheng,Сьюдад-Реаль,シウダー・レアル,雷阿爾城 38.98333 -3.93333 P PPLA2 ES 54 CR 13034 74014 633 Europe/Madrid 2010-08-22
-2519409 Ciruelos Ciruelos 39.93881 -3.61383 P PPLA3 ES 54 TO 45050 412 706 Europe/Madrid 2012-03-04
-2519421 Cijuela Cijuela 37.198 -3.81174 P PPLA3 ES 51 GR 18048 1941 542 Europe/Madrid 2012-03-04
-2519425 Cieza Cieza Cieza,S'esa,Сьеса 38.23998 -1.41987 P PPLA3 ES 31 MU 30019 35200 194 Europe/Madrid 2012-03-04
-2519436 Churriana de la Vega Churriana de la Vega Churriana 37.14499 -3.64617 P PPLA3 ES 51 GR 18062 12001 663 Europe/Madrid 2012-03-04
-2519441 Chumillas Chumillas Chumillas 39.76667 -2.03333 P PPLA3 ES 54 CU 16081 67 1033 Europe/Madrid 2012-03-04
-2519444 Chulilla Chulilla Chulilla,Xulella 39.65 -0.88333 P PPLA3 ES 60 V 46112 772 339 Europe/Madrid 2012-03-04
-2519445 Chueca Chueca Chueca 39.73191 -3.94365 P PPLA3 ES 54 TO 45057 228 739 Europe/Madrid 2012-03-04
-2519447 Chucena Chucena Chucena 37.36305 -6.39304 P PPLA3 ES 51 H 21030 1988 147 Europe/Madrid 2012-03-04
-2519450 Chóvar Chovar Chovar,Chóvar,Xovar 39.85 -0.31667 P PPLA3 ES 60 CS 12056 339 417 Europe/Madrid 2012-03-04
-2519464 Chiva Chiva Chiva,Xiva de Bunyol 39.46667 -0.71667 P PPLA3 ES 60 V 46111 14167 337 Europe/Madrid 2012-03-04
-2519466 Xirivella Xirivella Chirivel'ja,Чиривелья 39.46588 -0.42589 P PPL ES 60 V 46110 30691 35 Europe/Madrid 2010-04-22
-2519468 Chirivel Chirivel Chirivel 37.59527 -2.26844 P PPLA3 ES 51 AL 04037 1816 1046 Europe/Madrid 2012-03-04
-2519477 Chipiona Chipiona Chipiana,Chipiona 36.73663 -6.43703 P PPLA3 ES 51 CA 11016 18583 6 Europe/Madrid 2012-03-04
-2519483 Chinchilla de Monte Aragón Chinchilla de Monte Aragon Chinchilla,Chinchilla de Monte Aragon,Chinchilla de Monte Aragón 38.92088 -1.72018 P PPL ES 54 AB 02029 3355 889 Europe/Madrid 2012-01-19
-2519491 Chimeneas Chimeneas Chimeneas 37.13125 -3.8213 P PPLA3 ES 51 GR 18061 1472 699 Europe/Madrid 2012-03-04
-2519495 Chilluévar Chilluevar Chilluevar,Chilluévar 38.00088 -3.0324 P PPLA3 ES 51 J 23030 1693 710 Europe/Madrid 2012-03-04
-2519497 Chillón Chillon Chillon,Chillón 38.79595 -4.86628 P PPLA3 ES 54 CR 13038 0 520 Europe/Madrid 2012-03-04
-2519503 Chilches Chilches Chilches,Xilxes 39.78238 -0.18742 P PPL ES 60 CS 12011 2615 12 Europe/Madrid 2012-01-19
-2519512 Chiclana de Segura Chiclana de Segura Chiclana,Chiclana de Segura 38.31187 -3.04219 P PPLA3 ES 51 J 23029 1238 863 Europe/Madrid 2012-03-04
-2519513 Chiclana de la Frontera Chiclana de la Frontera Chiclana,Chiclana de la Frontera,Chiklana-de-la-Frontera,Чиклана-де-ла-Фронтера 36.41915 -6.14941 P PPLA3 ES 51 CA 11015 77293 42 14 Europe/Madrid 2012-03-04
-2519522 Cheste Cheste Cheste,Xest 39.48333 -0.68333 P PPLA3 ES 60 V 46109 7255 209 Europe/Madrid 2012-03-04
-2519525 Chercos Chercos Chercos 37.2545 -2.26657 P PPLA3 ES 51 AL 04036 285 915 Europe/Madrid 2012-03-04
-2519526 Chera Chera Chera,Xera 39.6 -0.96667 P PPLA3 ES 60 V 46108 525 624 Europe/Madrid 2012-03-04
-2519528 Chelva Chelva Chelva,Xelva 39.7493 -0.99684 P PPLA3 ES 60 V 46106 1986 483 Europe/Madrid 2012-03-04
-2519529 Chella Chella Chella,Xella 39.04203 -0.65916 P PPLA3 ES 60 V 46107 2618 229 Europe/Madrid 2012-03-04
-2519530 Cheles Cheles Cheles 38.51225 -7.28176 P PPLA3 ES 57 BA 06042 1313 197 Europe/Madrid 2012-03-04
-2519534 Chauchina Chauchina 37.19977 -3.77157 P PPLA3 ES 51 GR 18059 4357 553 Europe/Madrid 2012-03-04
-2519579 Ceuti Ceuti Ceuti 38.07859 -1.27467 P PPL ES 31 MU 30018 10174 95 Europe/Madrid 2012-01-19
-2519584 Cervera del Llano Cervera del Llano Cervera del Llano 39.78312 -2.42019 P PPLA3 ES 54 CU 16073 294 899 Europe/Madrid 2012-03-04
-2519623 Cerdà Cerda Cerda,Cerdà,Cerdá 38.98333 -0.56667 P PPLA3 ES 60 V 46096 291 127 Europe/Madrid 2012-03-04
-2519632 Cenizate Cenizate Cenizate 39.3 -1.65 P PPLA3 ES 54 AB 02026 1204 695 Europe/Madrid 2012-03-04
-2519634 Cenes de la Vega Cenes de la Vega Cenes de la Vega 37.16006 -3.53548 P PPLA3 ES 51 GR 18047 6295 751 Europe/Madrid 2012-03-04
-2519651 Cehegín Cehegin Cehegin,Cehegín 38.09242 -1.7985 P PPL ES 31 MU 30028 16235 541 Europe/Madrid 2010-05-24
-2519656 Cedillo Cedillo Cedillo 39.65099 -7.49817 P PPLA3 ES 57 CC 10062 574 269 Europe/Madrid 2012-03-04
-2519659 Ceclavín Ceclavin Ceclavin,Ceclavín 39.82231 -6.77329 P PPLA3 ES 57 CC 10061 2076 332 Europe/Madrid 2012-03-04
-2519664 Cebolla Cebolla Cebolla 39.94897 -4.57175 P PPLA3 ES 54 TO 45046 3274 444 Europe/Madrid 2012-03-04
-2519672 Cazorla Cazorla Cazorla 37.91495 -3.00342 P PPLA3 ES 51 J 23028 8039 809 Europe/Madrid 2012-03-04
-2519675 Cazalla de la Sierra Cazalla de la Sierra Cazalla,Cazalla de la Sierra 37.93333 -5.75 P PPLA3 ES ES 51 SE 41032 0 622 Europe/Madrid 2012-03-04
-2519677 Cazalilla Cazalilla Cazalilla 37.98389 -3.88296 P PPLA3 ES 51 J 23027 817 298 Europe/Madrid 2012-03-04
-2519683 Caudete de las Fuentes Caudete de las Fuentes Caudete de las Fuentes 39.56667 -1.25 P PPLA3 ES 60 V 46095 795 750 Europe/Madrid 2012-03-04
-2519685 Caudete Caudete Cabdet,Caudete 38.7068 -0.98722 P PPLA3 ES 54 AB 02025 10330 556 Europe/Madrid 2012-03-04
-2519688 Catral Catral Barrio de Catral,Barrio de Catral y Callosa,Catral 38.16061 -0.80209 P PPLA3 ES 60 A 03055 6147 11 Europe/Madrid 2012-03-04
-2519690 Catarroja Catarroja Catarroja,Katarrokh,Катаррох 39.4 -0.4 P PPLA3 ES 60 V 46094 27035 11 Europe/Madrid 2012-03-04
-2519694 Catadau Catadau Catadau 39.26667 -0.56667 P PPLA3 ES 60 V 46093 2487 84 Europe/Madrid 2012-03-04
-2519696 Castuera Castuera Castuera 38.73204 -5.5439 P PPL ES 57 BA 06087 6824 470 Europe/Madrid 2012-01-19
-2519697 Castro del Río Castro del Rio Castro del Rio,Castro del Río 37.69125 -4.48058 P PPLA3 ES 51 CO 14019 8065 231 Europe/Madrid 2012-03-04
-2519698 Castro de Filabres Castro de Filabres Castro de Filabres 37.18484 -2.44024 P PPLA3 ES 51 AL 04033 158 954 Europe/Madrid 2012-03-04
-2519703 Castril Castril Castril 37.79581 -2.78002 P PPLA3 ES 51 GR 18046 2547 896 Europe/Madrid 2012-03-04
-2519711 Castillo de Locubín Castillo de Locubin 37.52858 -3.9422 P PPLA3 ES 51 J 23026 5052 727 Europe/Madrid 2012-03-04
-2519713 Castillo de Garcimuñoz Castillo de Garcimunoz Castillo de Garcimunoz,Castillo de Garcimuñoz 39.65928 -2.3803 P PPLA3 ES 54 CU 16072 188 919 Europe/Madrid 2012-03-04
-2519730 Castillejo de Iniesta Castillejo de Iniesta Castillejo de Iniesta 39.53333 -1.76667 P PPLA3 ES 54 CU 16068 194 817 Europe/Madrid 2012-03-04
-2519736 Castilléjar Castillejar Castillejar,Castilléjar 37.71697 -2.6406 P PPLA3 ES 51 GR 18045 1600 769 Europe/Madrid 2012-03-04
-2519737 Castilleja del Campo Castilleja del Campo Castilleja del Campo 37.38627 -6.33443 P PPLA3 ES 51 SE 41030 640 111 Europe/Madrid 2012-03-04
-2519738 Castilleja de la Cuesta Castilleja de la Cuesta Castilleja,Castilleja de la Cuesta 37.38594 -6.05258 P PPLA3 ES 51 SE 41029 17150 101 Europe/Madrid 2012-03-04
-2519739 Castilleja de Guzmán Castilleja de Guzman Castilleja de Guzman,Castilleja de Guzmán 37.40955 -6.05515 P PPLA3 ES 51 SE 41028 2405 135 Europe/Madrid 2012-03-04
-2519746 Castilblanco de los Arroyos Castilblanco de los Arroyos Castilblanco,Castilblanco de los Arroyos 37.67576 -5.98886 P PPLA3 ES 51 SE 41027 4709 325 Europe/Madrid 2012-03-04
-2519747 Castilblanco Castilblanco Castilblanco 39.28487 -5.09098 P PPLA3 ES 57 BA 06035 1167 505 Europe/Madrid 2012-03-04
-2519749 Castellonet de la Conquesta Castellonet de la Conquesta Castellonet,Castellonet de la Conquesta 38.91667 -0.26667 P PPLA3 ES 60 V 46091 172 196 Europe/Madrid 2012-03-04
-2519751 Castelló de Rugat Castello de Rugat Castello de Rugat,Castellon de Rugat,Castelló de Rugat,Castellón de Rugat 38.88333 -0.36667 P PPLA3 ES 60 V 46090 2301 327 Europe/Madrid 2012-03-04
-2519752 Castelló de la Plana Castello de la Plana Castello,Castello de la Plana,Castellon,Castellon de la Plana,Castelló,Castelló de la Plana,Castellón,Castellón de la Plana,Kastel'on-de-la-Plana,Kastelon de la Plana,ka si te li weng-de la pu la na,Кастельон-де-ла-Плана,Кастељон де ла Плана,קאסטלון,カステリョン・デ・ラ・プラナ,卡斯特利翁-德拉普拉納 39.98333 -0.03333 P PPLA2 ES 60 CS 12040 180005 30 35 Europe/Madrid 2010-08-22
-2519753 Castellnovo Castellnovo Castellnou de Sogorb,Castellnovo 39.86667 -0.45 P PPLA3 ES 60 CS 12039 998 386 Europe/Madrid 2012-03-04
-2519758 Castell de Castells Castell de Castells Castell de Castells,Castells de Castells 38.72556 -0.19242 P PPLA3 ES 60 A 03054 482 554 Europe/Madrid 2012-03-04
-2519762 Castellar de Santiago Castellar de Santiago Castellar de Santiago 38.53928 -3.27573 P PPLA3 ES 54 CR 13033 2175 833 Europe/Madrid 2012-03-04
-2519763 Castellar de la Frontera Castellar de la Frontera Castellar,Castellar de la Frontera 36.31736 -5.45407 P PPLA3 ES 51 CA 11013 2932 220 Europe/Madrid 2012-03-04
-2519770 Cástaras Castaras Castaras,Cástaras 36.93164 -3.25406 P PPLA3 ES 51 GR 18044 238 1022 Europe/Madrid 2012-03-04
-2519780 Castañar de Ibor Castanar de Ibor Castanar de Ibor,Castañar de Ibor 39.62843 -5.41709 P PPL ES 57 CC 10132 1179 650 Europe/Madrid 2012-01-19
-2519783 Castalla Castalla Castalla 38.59694 -0.67207 P PPLA3 ES 60 A 03053 10327 700 Europe/Madrid 2012-03-04
-2519786 Casinos Casinos Casinos 39.7 -0.7 P PPLA3 ES 60 V 46089 2382 300 Europe/Madrid 2012-03-04
-2519795 Casillas de Coria Casillas de Coria Casillas de Coria 39.96543 -6.63711 P PPLA3 ES 57 CC 10059 492 251 Europe/Madrid 2012-03-04
-2519861 Casatejada Casatejada Casatejada 39.88642 -5.68193 P PPL ES 57 CC 10173 1390 273 Europe/Madrid 2012-01-19
-2519879 Casasimarro Casasimarro Casasimarro 39.36667 -2.03333 P PPLA3 ES 54 CU 16066 3051 768 Europe/Madrid 2012-03-04
-2519880 Casas Ibáñez Casas Ibanez Casas Ibanez,Casas Ibáñez 39.28333 -1.46667 P PPL ES 54 AB 02024 4375 705 Europe/Madrid 2012-01-19
-2519882 Casas de Ves Casas de Ves Casas de Ves 39.25 -1.33333 P PPLA3 ES 54 AB 02023 801 696 Europe/Madrid 2012-03-04
-2519889 Casas de Reina Casas de Reina Casas de Reina,Las Casas 38.2 -5.96667 P PPLA3 ES 57 BA 06034 192 639 Europe/Madrid 2012-03-04
-2519898 Casas de Miravete Casas de Miravete Casas de Miravete 39.72688 -5.74363 P PPLA3 ES 57 CC 10057 196 449 Europe/Madrid 2012-03-04
-2519899 Casas de Millán Casas de Millan Casas de Millan,Casas de Millán 39.81757 -6.32966 P PPLA3 ES 57 CC 10056 709 439 471 Europe/Madrid 2012-03-04
-2519908 Casas de los Pinos Casas de los Pinos Casas de los Pinos 39.33376 -2.36984 P PPLA3 ES 54 CU 16065 528 727 Europe/Madrid 2012-03-04
-2519927 Casas de Lázaro Casas de Lazaro Casas de Lazaro,Casas de Lázaro 38.77056 -2.24044 P PPLA3 ES 54 AB 02022 413 950 Europe/Madrid 2012-03-04
-2519937 Casas de Juan Núñez Casas de Juan Nunez Casas de Juan Nunez,Casas de Juan Núñez 39.1019 -1.55822 P PPLA3 ES 54 AB 02021 1322 710 Europe/Madrid 2012-03-04
-2519943 Casas de Haro Casas de Haro Casas de Haro 39.33355 -2.27273 P PPLA3 ES 54 CU 16064 837 724 Europe/Madrid 2012-03-04
-2519944 Casas de Guijarro Casas de Guijarro Casas de Guijarro 39.35 -2.16667 P PPLA3 ES 54 CU 16063 130 740 Europe/Madrid 2012-03-04
-2519945 Casas de Garcimolina Casas de Garcimolina Casas de Garcimolina 40 -1.41667 P PPLA3 ES 54 CU 16062 35 1159 Europe/Madrid 2011-07-31
-2519946 Casas de Fernando Alonso Casas de Fernando Alonso Casas de Fernando Alonso,Casas de los Teatinos 39.35065 -2.32402 P PPLA3 ES 54 CU 16061 1315 725 Europe/Madrid 2012-03-04
-2519949 Casas de Don Pedro Casas de Don Pedro 39.10822 -5.33077 P PPL ES 57 BA 06127 1658 376 Europe/Madrid 2009-03-24
-2519952 Casas de Don Antonio Casas de Don Antonio Casas de Don Antonio 39.23578 -6.29143 P PPLA3 ES 57 CC 10052 209 403 Europe/Madrid 2012-03-04
-2519954 Casas de Benítez Casas de Benitez Casas de Benitez,Casas de Benítez 39.36667 -2.13333 P PPLA3 ES 54 CU 16060 1058 752 Europe/Madrid 2012-03-04
-2519967 Casasbuenas Casasbuenas Casasbuenas 39.76117 -4.12558 P PPLA3 ES 54 TO 45042 209 686 Europe/Madrid 2012-03-04
-2519979 Casariche Casariche Casariche 37.29389 -4.75972 P PPLA3 ES 51 SE 41026 5389 305 Europe/Madrid 2012-03-04
-2519980 Casares Casares Casares 36.44689 -5.2858 P PPLA3 ES 51 MA 29041 4021 354 Europe/Madrid 2012-03-04
-2519985 Casar de Cáceres Casar de Caceres Casar de Caceres,Casar de Cáceres 39.56106 -6.41944 P PPL ES 57 CC 10037 4721 369 Europe/Madrid 2012-01-19
-2519988 Casarabonela Casarabonela Casarabonela 36.78616 -4.84276 P PPLA3 ES 51 MA 29040 2490 480 Europe/Madrid 2012-03-04
-2520045 Casabermeja Casabermeja Casabermeja 36.8926 -4.42938 P PPLA3 ES 51 MA 29039 3274 432 568 Europe/Madrid 2012-03-04
-2520052 Cartaya Cartaya Cartaya 37.28114 -7.15071 P PPLA3 ES 51 H 21021 17905 16 Europe/Madrid 2012-03-04
-2520053 Estación de Cártama Estacion de Cartama 36.73333 -4.61667 P PPL ES 51 MA 29038 5000 40 Europe/Madrid 2006-03-04
-2520055 Cártama Cartama 36.71068 -4.63297 P PPLA3 ES 51 MA 29038 21313 89 Europe/Madrid 2012-03-04
-2520056 Cartajima Cartajima Cartajima 36.64548 -5.1541 P PPLA3 ES 51 MA 29037 260 846 Europe/Madrid 2012-03-04
-2520058 Cartagena Cartagena Cartagena,Carthagene,Carthago Nova,Carthagène,Kartagena,Kartakhena,karutahena,qrthnh,Картагена,Картахена,קרטחנה,カルタヘナ 37.60512 -0.98623 P PPLA3 ES 31 MU 30016 211996 5 Europe/Madrid 2012-03-04
-2520064 Carrizosa Carrizosa Carrizosa 38.84204 -2.9925 P PPLA3 ES 54 CR 13032 1556 825 Europe/Madrid 2012-03-04
-2520071 Carrión de los Céspedes Carrion de los Cespedes Carrion de los Cespedes,Carrión de los Céspedes 37.37007 -6.32923 P PPLA3 ES 51 SE 41025 2285 99 Europe/Madrid 2012-03-04
-2520072 Carrión de Calatrava Carrion de Calatrava Carrion,Carrion de Calatrava,Carrión,Carrión de Calatrava 39.01898 -3.81683 P PPLA3 ES 54 CR 13031 2669 618 Europe/Madrid 2012-03-04
-2520077 Carrícola Carricola Carricola,Carrícola 38.84133 -0.4726 P PPLA3 ES 60 V 46086 79 328 Europe/Madrid 2012-03-04
-2520078 Carriches Carriches Carriches 39.96417 -4.45864 P PPLA3 ES 54 TO 45039 312 551 Europe/Madrid 2012-03-04
-2520083 Carratraca Carratraca Carratraca 36.8529 -4.81998 P PPLA3 ES 51 MA 29036 849 531 Europe/Madrid 2012-03-04
-2520087 Carrascosa de Haro Carrascosa de Haro Carrascosa de Haro 39.59757 -2.54182 P PPLA3 ES 54 CU 16058 141 786 Europe/Madrid 2012-03-04
-2520092 Carrascalejo Carrascalejo Carrascalejo 39.63333 -5.21667 P PPLA3 ES 57 CC 10048 0 633 Europe/Madrid 2011-07-31
-2520114 Carmonita Carmonita Carmonita 39.15455 -6.33864 P PPLA3 ES 57 BA 06031 622 383 Europe/Madrid 2012-03-04
-2520118 Carmona Carmona Carmona,Karmona,Кармона 37.47125 -5.64608 P PPLA3 ES 51 SE 41024 28344 221 Europe/Madrid 2012-03-04
-2520119 Carmena Carmena Carmena 39.95562 -4.40148 P PPLA3 ES 54 TO 45036 858 559 Europe/Madrid 2012-03-04
-2520121 Carlet Carlet Carlet 39.23333 -0.51667 P PPLA3 ES 60 V 46085 15527 51 Europe/Madrid 2012-03-04
-2520131 Cardenete Cardenete Cardenete 39.76667 -1.68333 P PPLA3 ES 54 CU 16056 735 966 Europe/Madrid 2012-03-04
-2520134 Cardeña Cardena Cardena,Cardenas,Cardeña,Cárdenas 38.27022 -4.32358 P PPLA3 ES 51 CO 14016 1786 759 747 Europe/Madrid 2012-03-04
-2520144 Càrcer Carcer Carcer,Càrcer,Cárcer 39.06667 -0.56667 P PPLA3 ES 60 V 46084 2026 45 Europe/Madrid 2012-03-04
-2520145 Carcelén Carcelen Carcelen,Carcelén 39.10202 -1.30879 P PPLA3 ES 54 AB 02020 669 921 Europe/Madrid 2012-03-04
-2520150 Carcaixent Carcaixent Carcagente,Carcaixen,Carcaixent,Carcaixén,Karkakhente,Каркахенте 39.13333 -0.45 P PPLA3 ES 60 V 46083 21735 19 Europe/Madrid 2012-03-04
-2520151 Carcabuey Carcabuey 37.4442 -4.27471 P PPLA3 ES 51 CO 14015 2857 617 Europe/Madrid 2012-03-04
-2520155 Carboneros Carboneros Carboneros 38.22958 -3.63139 P PPLA3 ES 51 J 23021 704 403 Europe/Madrid 2012-03-04
-2520156 Carboneras de Guadazaón Carboneras de Guadazaon Carbon,Carboneras,Carboneras de Guadazaon,Carboneras de Guadazaón 39.88333 -1.8 P PPLA3 ES 54 CU 16055 918 1083 Europe/Madrid 2012-03-04
-2520163 Carboneras Carboneras 36.99666 -1.89651 P PPLA3 ES 51 AL 04032 7199 9 Europe/Madrid 2012-03-04
-2520169 Carbajo Carbajo Carbajo 39.60333 -7.19565 P PPLA3 ES 57 CC 10046 248 339 Europe/Madrid 2012-03-04
-2520171 Caravaca Caravaca 38.10558 -1.86342 P PPL ES 31 MU 30028 26415 647 Europe/Madrid 2011-09-11
-2520172 Carataunas Carataunas Caratauna,Caratáuna 36.92204 -3.40834 P PPLA3 ES 51 GR 18043 206 734 Europe/Madrid 2012-03-04
-2520192 Capilla Capilla Capilla 38.82036 -5.08417 P PPLA3 ES 57 BA 06030 192 487 Europe/Madrid 2012-03-04
-2520194 Capileira Capileira 36.96148 -3.35864 P PPLA3 ES 51 GR 18042 585 1454 Europe/Madrid 2012-03-04
-2520200 Capdepera Capdepera Capdepera 39.70263 3.43357 P PPLA3 ES 07 PM 07014 11911 100 Europe/Madrid 2012-03-04
-2520209 Cantoria Cantoria Cantoria 37.35146 -2.19209 P PPLA3 ES 51 AL 04031 3502 380 Europe/Madrid 2012-03-04
-2520215 Cantillana Cantillana Cantillana 37.61032 -5.82472 P PPLA3 ES 51 SE 41023 10627 32 Europe/Madrid 2012-03-04
-2520248 Canjáyar Canjayar Canjayar,Canjáyar,Lanjavar 37.00959 -2.73943 P PPLA3 ES 51 AL 04030 1568 604 Europe/Madrid 2012-03-04
-2520253 Canillas de Albaida Canillas de Albaida Canillas de Albaida 36.84665 -3.98678 P PPLA3 ES 51 MA 29034 797 608 Europe/Madrid 2012-03-04
-2520254 Canillas de Aceituno Canillas de Aceituno Canillas,Canillas de Aceituna 36.87303 -4.08254 P PPLA3 ES 51 MA 29033 2241 648 Europe/Madrid 2012-03-04
-2520261 Caniles Caniles Caniles 37.43671 -2.72482 P PPL ES 51 GR 18023 4851 917 Europe/Madrid 2012-01-19
-2520266 Cañete la Real Canete la Real 36.95154 -5.0244 P PPLA3 ES 51 MA 29035 2069 747 Europe/Madrid 2012-03-04
-2520268 Cañete de las Torres Canete de las Torres Canete de las Torres,Cañete de las Torres 37.86717 -4.31835 P PPLA3 ES 51 CO 14014 3192 322 Europe/Madrid 2012-03-04
-2520271 Canet d'En Berenguer Canet d'En Berenguer Canet d'En Berenguer,Canet de Berenguer 39.68333 -0.21667 P PPLA3 ES 60 V 46082 3669 8 Europe/Madrid 2012-03-04
-2520272 Canena Canena Canena 38.0493 -3.4831 P PPLA3 ES 51 J 23020 2093 518 Europe/Madrid 2012-03-04
-2520283 Candelaria Candelaria Cancelaria,Candelaria,Kandelarii,Канделарии 28.3548 -16.37268 P PPLA3 ES 53 TF 38011 24319 36 Atlantic/Canary 2012-03-04
-2520292 Cañaveral de León Canaveral de Leon Canaveral de Leon,Cañaveral de León 38.01667 -6.51667 P PPLA3 ES 51 H 21020 0 528 Europe/Madrid 2012-03-04
-2520295 Cañaveral Canaveral Canaveral,Cañaveral 39.79198 -6.3913 P PPLA3 ES 57 CC 10045 1271 368 Europe/Madrid 2012-03-04
-2520312 Cáñar Canar 36.92684 -3.42808 P PPLA3 ES 51 GR 18040 337 1025 Europe/Madrid 2012-03-04
-2520314 Cañamero Canamero Canamera,Canamero,Cañamera,Cañamero 39.37995 -5.38857 P PPLA3 ES 57 CC 10044 1626 609 Europe/Madrid 2012-03-04
-2520320 Canals Canals Canals,Canals de Canolas,Canals de Cañolas 38.96251 -0.58443 P PPLA3 ES 60 V 46081 13941 166 Europe/Madrid 2012-03-04
-2520344 Cañada Rosal Canada Rosal Canada Rosal,Cañada Rosal 37.59924 -5.21016 P PPLA3 ES 51 SE 41901 3071 157 Europe/Madrid 2012-03-04
-2520373 Cañada del Hoyo Canada del Hoyo Canada del Hoyo,Cañada del Hoyo 39.96667 -1.9 P PPLA3 ES 54 CU 16046 321 1001 Europe/Madrid 2012-03-04
-2520387 Cañada de Calatrava Canada de Calatrava Canada,Canada de Calatrava,Cañada,Cañada de Calatrava 38.85429 -4.02103 P PPLA3 ES 54 CR 13029 106 650 Europe/Madrid 2012-03-04
-2520397 Cañada Canada Canada,Cañada,La Canyada 38.6739 -0.8133 P PPLA3 ES 60 A 03052 0 561 Europe/Madrid 2012-03-04
-2520399 Camuñas Camunas 39.42704 -3.45503 P PPL ES 54 TO 45087 1812 681 Europe/Madrid 2006-08-17
-2520401 Campotéjar Campotejar Campotejar,Campotéjar 37.48236 -3.61771 P PPLA3 ES 51 GR 18038 1410 923 Europe/Madrid 2012-03-04
-2520402 Campos del Río Campos del Rio Campos del Rio,Campos del Río 38.03966 -1.35306 P PPLA3 ES 31 MU 30014 2065 182 Europe/Madrid 2012-03-04
-2520403 Campos Campos Campos 39.43099 3.01935 P PPLA3 ES ES 07 PM 07013 0 25 Europe/Madrid 2011-07-31
-2520405 Camporrobles Camporrobles Camporrobles 39.65 -1.4 P PPLA3 ES 60 V 46080 1372 919 Europe/Madrid 2012-03-04
-2520410 Campofrío Campofrio Campofrio,Campofrío 37.76652 -6.57363 P PPLA3 ES 51 H 21019 0 523 Europe/Madrid 2012-03-04
-2520413 Campo de Criptana Campo de Criptana 39.40463 -3.12492 P PPLA3 ES 54 CR 13028 15006 711 Europe/Madrid 2012-03-04
-2520427 Campillos-Paravientos Campillos-Paravientos Campillos-Paravientos 39.98333 -1.55 P PPLA3 ES 54 CU 16043 132 1091 Europe/Madrid 2012-03-04
-2520428 Campillos Campillos 37.04826 -4.86308 P PPLA3 ES 51 MA 29032 8014 470 Europe/Madrid 2012-03-04
-2520430 Campillo de Llerena Campillo de Llerena Campillo de Llerena 38.50196 -5.83139 P PPLA3 ES 57 BA 06029 1631 490 Europe/Madrid 2012-03-04
-2520433 Campillo de Deleitosa Campillo de Deleitosa Campillo de Deleitosa 39.70297 -5.57436 P PPLA3 ES 57 CC 10042 124 501 Europe/Madrid 2012-03-04
-2520435 Campillo de Arenas Campillo de Arenas Campillo de Arenas 37.55535 -3.63552 P PPL ES 51 J 23064 2079 877 Europe/Madrid 2012-01-19
-2520436 Campillo de Altobuey Campillo de Altobuey Campillo de Altobuey 39.6 -1.8 P PPLA3 ES 54 CU 16042 1702 904 Europe/Madrid 2012-03-04
-2520447 el Campello el Campello Campello,El Campello 38.42885 -0.39774 P PPL ES 60 A 03050 26511 24 Europe/Madrid 2010-04-22
-2520453 Campanet Campanet Campanet 39.7747 2.96506 P PPLA3 ES 07 PM 07012 2515 132 Europe/Madrid 2012-03-04
-2520456 Campanario Campanario Campanario 38.8644 -5.61744 P PPLA3 ES 57 BA 06028 5522 397 Europe/Madrid 2012-03-04
-2520476 Cambil Cambil Cambil,Cambril 37.67934 -3.56538 P PPLA3 ES 51 J 23018 3061 773 Europe/Madrid 2012-03-04
-2520477 Camas Camas Camas,Kamas,Камас 37.40202 -6.03314 P PPLA3 ES 51 SE 41021 26015 11 Europe/Madrid 2012-03-04
-2520493 Calvià Calvia Calvia,Calvià 39.5657 2.50621 P PPLA3 ES 07 PM 07011 51774 125 Europe/Madrid 2012-03-04
-2520496 Calp Calp Calp,Calpe 38.6447 0.0445 P PPL ES 60 A 03047 29666 58 Europe/Madrid 2010-04-22
-2520502 Callosa de Segura Callosa de Segura Callosa de Segura 38.12497 -0.87822 P PPLA3 ES 60 A 03049 17924 23 Europe/Madrid 2012-03-04
-2520503 Callosa d'En Sarrià Callosa d'En Sarria Callosa d'En Sarria,Callosa d'En Sarrià,Callosa de Ensarria,Callosa de Ensarriá 38.65 -0.11667 P PPLA3 ES 60 A 03048 0 203 Europe/Madrid 2012-03-04
-2520505 Calles Calles Calles 39.72118 -0.97057 P PPLA3 ES 60 V 46079 384 378 Europe/Madrid 2012-03-04
-2520512 Calicasas Calicasas Calicasas 37.2713 -3.61345 P PPLA3 ES 51 GR 18037 553 759 Europe/Madrid 2012-03-04
-2520526 Caleruela Caleruela Caleruela 39.87483 -5.25693 P PPLA3 ES 54 TO 45029 296 373 Europe/Madrid 2012-03-04
-2520528 Calera y Chozas Calera y Chozas Calera,Calera y Chozas 39.88278 -4.98213 P PPLA3 ES 54 TO 45028 4124 389 Europe/Madrid 2012-03-04
-2520529 Calera de León Calera de Leon Calera de Leon,Calera de León 38.1 -6.33333 P PPLA3 ES 57 BA 06026 1051 717 Europe/Madrid 2012-03-04
-2520558 Calasparra Calasparra Calasparra 38.22997 -1.69986 P PPLA3 ES 31 MU 30013 10759 355 Europe/Madrid 2012-03-04
-2520566 Calañas Calanas Calanas,Calañas 37.65568 -6.8805 P PPLA3 ES 51 H 21017 4506 297 Europe/Madrid 2012-03-04
-2520568 Calamonte Calamonte Calamonte 38.88861 -6.38791 P PPLA3 ES 57 BA 06025 6117 237 Europe/Madrid 2012-03-04
-2520590 Cala Cala Cala,Minas de Cala 37.96667 -6.31667 P PPLA3 ES ES 51 H 21016 0 608 Europe/Madrid 2011-07-31
-2520592 Cájar Cajar Cajar,Cájar 37.13382 -3.57274 P PPLA3 ES 51 GR 18036 4002 725 Europe/Madrid 2012-03-04
-2520600 Cadiz Cadiz Cadice,Cadis,Cadix,Cadiz,Cai,Càdice,Cádice,Cádis,Cádiz,Gadeira,Gades,Gadir,Gaðes,Iungadir,Kadis,Kadisas,Kadiz,Kadizo,Kadyks,Kantith,La tacita de plata,jia de si,kadi s,kadiseu,kadisu,kads,kadydh,kadys,qads,qdys,Κάντιθ,Кадиз,Кадис,Кадіс,קדיס,قادس,كاديذ,کادس,کادیس,กาดิซ,კადისი,ካዲዝ,カディス,加的斯,카디스 36.53361 -6.29944 P PPLA2 ES 51 CA 11012 126766 21 Europe/Madrid 2010-08-22
-2520601 Cádiar Cadiar 36.94591 -3.1802 P PPLA3 ES 51 GR 18035 1511 930 Europe/Madrid 2012-03-04
-2520604 Cachorrilla Cachorrilla Cachorrilla 39.91557 -6.66909 P PPLA3 ES 57 CC 10038 87 319 Europe/Madrid 2012-03-04
-2520611 Cáceres Caceres Caceres,Càceres,Cáceres,Kaseres,Norba Caesarina,kaseresu,qsrs,Касерес,קסרס,カセレス 39.47649 -6.37224 P PPLA2 ES 57 CC 10037 93131 441 Europe/Madrid 2010-08-22
-2520641 Cabra del Santo Cristo Cabra del Santo Cristo Cabra de Santo Cristo,Cabra del San Cristo,Cabra del Santo Cristo 37.70379 -3.28765 P PPLA3 ES 51 J 23017 2239 956 Europe/Madrid 2012-03-04
-2520645 Cabra Cabra Cabra,Kabra,Кабра 37.47249 -4.44206 P PPLA3 ES 51 CO 14013 21352 458 Europe/Madrid 2012-03-04
-2520657 Cabezas Rubias Cabezas Rubias 37.7266 -7.08738 P PPLA3 ES 51 H 21015 873 222 Europe/Madrid 2012-03-04
-2520661 Cabezarados Cabezarados Cabezarados 38.84469 -4.2983 P PPLA3 ES 54 CR 13025 372 685 Europe/Madrid 2012-03-04
-2520663 Cabezamesada Cabezamesada Cabezamesada 39.8163 -3.10236 P PPLA3 ES 54 TO 45027 500 735 Europe/Madrid 2012-03-04
-2520666 Cabeza la Vaca Cabeza la Vaca Cabeza la Vaca 38.08333 -6.41667 P PPLA3 ES 57 BA 06024 1553 822 Europe/Madrid 2012-03-04
-2520672 Cabeza del Buey Cabeza del Buey Cabeza de Buey,Cabeza del Buey,Cabezabuei 38.72227 -5.21946 P PPLA3 ES 57 BA 06023 5590 531 Europe/Madrid 2012-03-04
-2520673 Cabañas de Yepes Cabanas de Yepes 39.89051 -3.53502 P PPLA3 ES 54 TO 45026 277 710 Europe/Madrid 2012-03-04
-2520674 Cabañas del Castillo Cabanas del Castillo Cabanas,Cabanas del Castillo,Cabañas,Cabañas del Castillo 39.54804 -5.51203 P PPLA3 ES 57 CC 10033 518 771 Europe/Madrid 2012-03-04
-2520697 Busquístar Busquistar 36.93796 -3.29444 P PPLA3 ES 51 GR 18033 339 1179 Europe/Madrid 2012-03-04
-2520698 Busot Busot Busot 38.48206 -0.41918 P PPLA3 ES 60 A 03046 2272 334 Europe/Madrid 2012-03-04
-2520700 Burujón Burujon Burujon,Burujón 39.90112 -4.2973 P PPLA3 ES 54 TO 45024 1449 500 Europe/Madrid 2012-03-04
-2520709 Burriana Burriana Borriana,Burriana 39.88901 -0.08499 P PPLA3 ES 60 CS 12032 34565 22 Europe/Madrid 2012-03-04
-2520712 Burjassot Burjassot Bujursot,Burkhasot,Бурхасот 39.51667 -0.41667 P PPLA3 ES 60 V 46078 38433 54 Europe/Madrid 2012-03-04
-2520713 Burguillos de Toledo Burguillos de Toledo Burguillos,Burguillos de Toledo 39.79635 -3.99254 P PPLA3 ES 54 TO 45023 1708 680 Europe/Madrid 2012-03-04
-2520714 Burguillos del Cerro Burguillos del Cerro Burguillos,Burguillos del Cerro 38.38008 -6.59038 P PPLA3 ES 57 BA 06022 3170 405 Europe/Madrid 2012-03-04
-2520715 Burguillos Burguillos Burguillos 37.5844 -5.96654 P PPLA3 ES 51 SE 41019 4116 76 Europe/Madrid 2012-03-04
-2520724 Bunyola Bunyola Bunyola 39.69634 2.69955 P PPLA3 ES 07 PM 07010 5475 217 Europe/Madrid 2011-07-31
-2520726 Buñol Bunol Bun'ol',Bunol,Bunyol,Buñol,Буньоль 39.41667 -0.78333 P PPL ES 60 V 46012 10062 347 Europe/Madrid 2012-01-19
-2520727 Bullas Bullas Bullas,Bulles 38.04667 -1.67227 P PPLA3 ES 31 MU 30012 12493 654 Europe/Madrid 2012-03-04
-2520735 Bujalance Bujalance Bujalance 37.89556 -4.38074 P PPLA3 ES 51 CO 14012 7848 338 Europe/Madrid 2012-03-04
-2520745 Búger Buger Buger,Búger 39.75809 2.98349 P PPLA3 ES 07 PM 07009 1016 91 Europe/Madrid 2012-03-04
-2520748 Bugarra Bugarra Bugarra 39.61667 -0.76667 P PPLA3 ES 60 V 46076 860 225 Europe/Madrid 2012-03-04
-2520751 Bufali Bufali Bufali,Bufatl 38.86775 -0.51617 P PPLA3 ES 60 V 46075 199 237 Europe/Madrid 2012-03-04
-2520760 Buenavista del Norte Buenavista del Norte Buehnavista del' Norte,Buenavista,Buenavista del Norte,Буенависта дел Норте,Буэнависта дель Норте 28.37458 -16.86098 P PPLA3 ES 53 TF 38010 5231 38 Atlantic/Canary 2012-03-04
-2520775 Buenache de Alarcón Buenache de Alarcon Buenache,Buenache de Alarcon,Buenache de Alarcón,Buenoche de Alarcon,Buenoche de Alarcón 39.65 -2.16667 P PPLA3 ES 54 CU 16039 632 829 Europe/Madrid 2012-03-04
-2520781 Bubión Bubion 36.949 -3.35615 P PPLA3 ES 51 GR 18032 0 1322 Europe/Madrid 2012-03-04
-2520790 Brozas Brozas Brozas 39.61278 -6.7777 P PPL ES 57 CC 10008 2100 409 Europe/Madrid 2012-01-19
-2520798 Brenes Brenes Brenes 37.54944 -5.87139 P PPLA3 ES 51 SE 41018 12460 21 Europe/Madrid 2012-03-04
-2520799 Breña Baja Brena Baja San Jose,San José 28.63011 -17.78953 P PPLA3 ES 53 TF 38009 4245 539 Atlantic/Canary 2011-07-31
-2520800 Breña Alta Brena Alta Brena Alta,Breña Alta 28.65 -17.78333 P PPLA3 ES 53 TF 38008 7092 329 Atlantic/Canary 2011-07-31
-2520805 Brazatortas Brazatortas Brazatortas 38.65869 -4.29368 P PPLA3 ES 54 CR 13024 1115 729 Europe/Madrid 2012-03-04
-2520819 Botija Botija Botija 39.34498 -6.07318 P PPLA3 ES 57 CC 10031 150 423 Europe/Madrid 2012-03-04
-2520832 Bornos Bornos Bornos 36.81677 -5.74448 P PPL ES 51 CA 11020 8105 154 Europe/Madrid 2012-01-19
-2520833 Bormujos Bormujos Bormujos 37.37358 -6.07232 P PPLA3 ES 51 SE 41017 18590 113 Europe/Madrid 2012-03-04
-2520844 Bonrepòs i Mirambell Bonrepos i Mirambell Bonrepos,Bonrepós 39.51667 -0.36667 P PPLA3 ES 60 V 46074 0 13 Europe/Madrid 2012-03-04
-2520845 Boniches Boniches Boniches 39.98333 -1.61667 P PPLA3 ES 54 CU 16036 167 1048 Europe/Madrid 2012-03-04
-2520849 Bonete Bonete Bonete 38.87136 -1.34851 P PPLA3 ES 54 AB 02018 1252 894 Europe/Madrid 2012-03-04
-2520850 Bonares Bonares Bonares 37.32423 -6.68073 P PPLA3 ES 51 H 21014 5257 87 Europe/Madrid 2012-03-04
-2520864 Bolulla Bolulla Bolulla 38.67529 -0.11184 P PPLA3 ES 60 A 03045 355 235 Europe/Madrid 2012-03-04
-2520869 Bollullos par del Condado Bollullos par del Condado Bollullos,Bollullos par del Condado 37.34127 -6.5397 P PPL ES 51 H 21013 13891 129 Europe/Madrid 2012-01-19
-2520870 Bollullos de la Mitación Bollullos de la Mitacion Bollullos de la Mitacion,Bollullos de la Mitación 37.34014 -6.13719 P PPLA3 ES 51 SE 41016 6499 87 Europe/Madrid 2012-03-04
-2520874 Bolbaite Bolbaite Bolbait,Bolbaite 39.0604 -0.67466 P PPL ES 60 V 46107 1458 239 Europe/Madrid 2012-01-19
-2520875 Bolaños de Calatrava Bolanos de Calatrava Bolanos,Bolanos de Calatrava,Bolaños,Bolaños de Calatrava 38.9069 -3.66346 P PPLA3 ES 54 CR 13023 12490 652 Europe/Madrid 2012-03-04
-2520878 Bohonal de Ibor Bohonal de Ibor Bohonal de Ibor 39.78457 -5.485 P PPLA3 ES 57 CC 10030 546 355 Europe/Madrid 2012-03-04
-2520885 Bogarra Bogarra Bogarra 38.58139 -2.2129 P PPL ES 54 AB 02008 1140 853 Europe/Madrid 2012-01-19
-2520887 Bodonal de la Sierra Bodonal de la Sierra Bodonal de la Sierra 38.14751 -6.5595 P PPL ES 57 BA 06124 1170 610 Europe/Madrid 2012-01-19
-2520898 Bocairent Bocairent Bocairent,Bocairente 38.76667 -0.61667 P PPLA3 ES 60 V 46072 4496 668 Europe/Madrid 2012-03-04
-2520940 Blanca Blanca Blanca 38.1791 -1.37473 P PPLA3 ES 31 MU 30011 6054 151 Europe/Madrid 2012-03-04
-2520943 Binissalem Binissalem Binissalem 39.68744 2.84396 P PPLA3 ES 07 PM 07008 6326 133 Europe/Madrid 2012-03-04
-2520955 Bigastro Bigastro Bigastre,Bigastro 38.06237 -0.89841 P PPLA3 ES 60 A 03044 5770 32 Europe/Madrid 2012-03-04
-2520957 Bienvenida Bienvenida Bienvenida 38.3 -6.2 P PPLA3 ES 57 BA 06020 2368 611 Europe/Madrid 2012-03-04
-2520959 Bienservida Bienservida Bienservida 38.51716 -2.61087 P PPLA3 ES 54 AB 02016 797 896 Europe/Madrid 2012-03-04
-2520962 Bicorp Bicorp Bicorb,Bicorp 39.13215 -0.7872 P PPLA3 ES 60 V 46071 645 295 Europe/Madrid 2012-03-04
-2520964 Biar Biar Biar 38.63117 -0.76458 P PPLA3 ES 60 A 03043 3592 723 Europe/Madrid 2012-03-04
-2520968 Bétera Betera Betera,Bétera 39.58333 -0.45 P PPLA3 ES 60 V 46070 20740 87 Europe/Madrid 2012-03-04
-2520977 Berrocalejo Berrocalejo Berro del Calejo,Berrocalejo 39.81948 -5.34951 P PPLA3 ES 57 CC 10028 118 376 Europe/Madrid 2012-03-04
-2520979 Berrocal Berrocal Berrocal 37.60863 -6.54147 P PPLA3 ES 51 H 21012 369 317 Europe/Madrid 2012-03-04
-2521015 Berlanga Berlanga Berlanga 38.28333 -5.81667 P PPLA3 ES 57 BA 06019 2627 543 Europe/Madrid 2012-03-04
-2521016 Berja Berja 36.84693 -2.94966 P PPLA3 ES 51 AL 04029 15035 338 Europe/Madrid 2012-03-04
-2521025 Bérchules Berchules 36.97678 -3.19067 P PPLA3 ES 51 GR 18030 803 1341 Europe/Madrid 2012-03-04
-2521031 Bentarique Bentarique Bentarique 36.98823 -2.61991 P PPLA3 ES 51 AL 04028 275 326 Europe/Madrid 2012-03-04
-2521034 Benquerencia Benquerencia Benquerencia,Bona Querencia 39.30994 -6.08465 P PPLA3 ES 57 CC 10027 100 448 Europe/Madrid 2012-03-04
-2521036 Benizalón Benizalon Benizalon,Benizalón 37.21213 -2.2418 P PPLA3 ES 51 AL 04027 300 941 Europe/Madrid 2012-03-04
-2521043 Benitagla Benitagla Benitagla 37.23138 -2.23935 P PPLA3 ES 51 AL 04026 64 952 Europe/Madrid 2012-03-04
-2521044 Benitachell Benitachell Benitachell,El Poble Nou de Benitatxell 38.73273 0.14354 P PPL ES 60 A 03128 3630 153 Europe/Madrid 2012-01-19
-2521045 Benisuera Benisuera Benissuera,Benisuera 38.9132 -0.47784 P PPLA3 ES 60 V 46069 194 169 Europe/Madrid 2012-03-04
-2521046 Benissoda Benissoda Benisoda,Benissoda 38.83333 -0.51667 P PPLA3 ES 60 V 46068 320 366 Europe/Madrid 2012-03-04
-2521049 Benisanó Benisano Benisano,Benisanó,Benissano,Benissanó 39.61667 -0.56667 P PPLA3 ES 60 V 46067 1974 148 Europe/Madrid 2012-03-04
-2521050 Benissa Benissa Benissa 38.71492 0.04849 P PPLA3 ES 60 A 03041 13221 266 Europe/Madrid 2012-03-04
-2521052 Benirredrà Benirredra Benirredra,Benirredrà,Benirredrá 38.96667 -0.18333 P PPLA3 ES 60 V 46066 1460 34 Europe/Madrid 2012-03-04
-2521055 Beniparrell Beniparrell Beniparrell 39.38333 -0.41667 P PPLA3 ES 60 V 46065 1780 5 Europe/Madrid 2012-03-04
-2521059 Benimuslem Benimuslem Benimuslem 39.13162 -0.49288 P PPLA3 ES 60 V 46064 583 25 Europe/Madrid 2012-03-04
-2521060 Benimodo Benimodo Benimodo 39.21667 -0.53333 P PPL ES 60 V 46139 2019 53 Europe/Madrid 2012-01-19
-2521061 Benimeli Benimeli Benimeli 38.82362 -0.04221 P PPLA3 ES 60 A 03040 0 95 Europe/Madrid 2012-03-04
-2521063 Benimassot Benimassot Benimasot,Benimassot 38.75 -0.28333 P PPLA3 ES 60 A 03039 134 748 Europe/Madrid 2012-03-04
-2521064 Benimarfull Benimarfull Benimarfull 38.7759 -0.39079 P PPLA3 ES 60 A 03038 467 420 Europe/Madrid 2012-03-04
-2521065 Benimantell Benimantell Benimantell 38.67709 -0.21057 P PPLA3 ES 60 A 03037 454 544 Europe/Madrid 2012-03-04
-2521070 Benillup Benillup Benillup 38.75398 -0.37991 P PPLA3 ES 60 A 03036 93 553 Europe/Madrid 2012-03-04
-2521071 Benilloba Benilloba Benilloba 38.70012 -0.38998 P PPLA3 ES 60 A 03035 881 541 Europe/Madrid 2012-03-04
-2521072 Benijófar Benijofar Benijofar,Benijófar 38.07785 -0.7368 P PPLA3 ES 60 A 03034 3467 43 Europe/Madrid 2012-03-04
-2521075 Benigànim Beniganim Beniganim,Benigànim,Benigánim 38.95 -0.43333 P PPL ES 60 V 46062 5720 210 Europe/Madrid 2006-04-08
-2521076 Beniflá Benifla Benifla,Beniflà,Beniflá 38.92814 -0.17816 P PPLA3 ES 60 V 46061 238 43 Europe/Madrid 2012-03-04
-2521080 Benifaió Benifaio Banifaio,Banifaió,Benifayo,Benifayó 39.28439 -0.42598 P PPLA3 ES 60 V 46060 12204 26 Europe/Madrid 2012-03-04
-2521083 Benifallim Benifallim Benifallim 38.66259 -0.39994 P PPLA3 ES 60 A 03032 126 740 Europe/Madrid 2012-03-04
-2521085 Benifairó de les Valls Benifairo de les Valls Benifairo de Les Valls,Benifairo de les Valls,Benifairó de Les Valls,Benifairó de les Valls 39.73333 -0.26667 P PPLA3 ES 60 V 46058 1907 38 Europe/Madrid 2012-03-04
-2521086 Beniel Beniel 38.04636 -1.00233 P PPL ES 31 MU 30030 10933 32 Europe/Madrid 2011-09-11
-2521088 Benidorm Benidorm Benidorm,Бенидорм 38.53816 -0.13098 P PPLA3 ES 60 A 03031 71034 30 Europe/Madrid 2012-03-04
-2521089 Benidoleig Benidoleig Benidoleig 38.79278 -0.02992 P PPLA3 ES 60 A 03030 1021 111 Europe/Madrid 2012-03-04
-2521091 Benicolet Benicolet Benicolet 38.91987 -0.34694 P PPLA3 ES 60 V 46057 517 238 Europe/Madrid 2012-03-04
-2521095 Beniatjar Beniatjar Beniatjar 38.84754 -0.41736 P PPLA3 ES 60 V 46056 240 393 Europe/Madrid 2012-03-04
-2521096 Beniarrés Beniarres Beniarres,Beniarrés 38.82019 -0.37741 P PPLA3 ES 60 A 03028 1339 395 Europe/Madrid 2012-03-04
-2521097 Beniarjó Beniarjo Beniarjo,Beniarjó 38.93249 -0.18634 P PPLA3 ES 60 V 46055 1432 48 Europe/Madrid 2012-03-04
-2521099 Beniardá Beniarda Beniarda,Beniardà,Beniardá 38.68433 -0.21629 P PPLA3 ES 60 A 03027 186 468 Europe/Madrid 2012-03-04
-2521100 Beniarbeig Beniarbeig Beniarbeig 38.82232 -0.0021 P PPLA3 ES 60 A 03026 1538 45 Europe/Madrid 2012-03-04
-2521104 Benferri Benferri Benferri 38.14129 -0.96212 P PPLA3 ES 60 A 03025 1494 55 Europe/Madrid 2012-03-04
-2521105 Benetússer Benetusser 39.41667 -0.4 P PPLA3 ES 60 V 46054 15313 15 Europe/Madrid 2012-03-04
-2521106 Benejúzar Benejuzar Benejusser,Benejuzar,Benejússer,Benejúzar 38.07728 -0.83942 P PPLA3 ES 60 A 03024 5295 28 Europe/Madrid 2012-03-04
-2521108 Beneixama Beneixama Beneixama,Benejama 38.7 -0.76667 P PPLA3 ES 60 A 03023 1956 596 Europe/Madrid 2012-03-04
-2521109 Beneixida Beneixida Benegida,Beneixida 39.06667 -0.55 P PPLA3 ES 60 V 46053 609 39 Europe/Madrid 2012-03-04
-2521114 Benavites Benavites Benavites 39.73333 -0.25 P PPLA3 ES 60 V 46052 649 20 Europe/Madrid 2012-03-04
-2521118 Benatae Benatae Benatae 38.35323 -2.65121 P PPLA3 ES 51 J 23016 0 851 Europe/Madrid 2012-03-04
-2521120 Benasau Benasau Benasau 38.69047 -0.34278 P PPLA3 ES 60 A 03022 241 707 Europe/Madrid 2012-03-04
-2521121 Benarrabá Benarraba Benarraba,Benarrabá 36.5512 -5.27608 P PPLA3 ES 51 MA 29029 550 535 Europe/Madrid 2012-03-04
-2521123 Benaoján Benaojan Benaojan,Benaoján 36.71929 -5.2522 P PPLA3 ES 51 MA 29028 1661 558 Europe/Madrid 2012-03-04
-2521124 Benaocaz Benaocaz Benaocaz 36.70069 -5.42222 P PPLA3 ES 51 CA 11009 728 780 Europe/Madrid 2012-03-04
-2521128 Benamocarra Benamocarra Benamocarra 36.79074 -4.16146 P PPLA3 ES 51 MA 29027 2904 134 Europe/Madrid 2012-03-04
-2521130 Benamejí Benameji Benameji,Benamejí 37.26833 -4.54123 P PPLA3 ES 51 CO 14010 4922 462 Europe/Madrid 2012-03-04
-2521131 Benamaurel Benamaurel Benamaurel 37.60826 -2.7025 P PPLA3 ES 51 GR 18029 2293 697 Europe/Madrid 2012-03-04
-2521132 Benamargosa Benamargosa Benam,Benamargosa 36.83498 -4.19362 P PPLA3 ES 51 MA 29026 1547 109 Europe/Madrid 2012-03-04
-2521136 Benalúa de las Villas Benalua de las Villas Benalua de las Villas,Benalúa de las Villas 37.42742 -3.68346 P PPLA3 ES 51 GR 18028 1386 851 Europe/Madrid 2012-03-04
-2521137 Benalúa de Guadix Benalua de Guadix Benalua de Guadix,Benalúa de Guadix 37.3519 -3.16404 P PPL ES 51 GR 18089 3211 874 Europe/Madrid 2012-02-02
-2521139 Benalmádena Benalmadena Benal'madena,Benalmadena,Benalmádena,Бенальмадена 36.59548 -4.56937 P PPLA3 ES 51 MA 29025 58854 206 Europe/Madrid 2012-03-04
-2521142 Benalauría Benalauria Benalauria,Benalauría 36.59444 -5.26099 P PPLA3 ES 51 MA 29024 469 666 Europe/Madrid 2012-03-04
-2521146 Benahavís Benahavis Benahavis,Benahavís 36.52361 -5.04631 P PPLA3 ES 51 MA 29023 2275 189 Europe/Madrid 2012-03-04
-2521147 Benahadux Benahadux Benahadur,Benahadux 36.92493 -2.45941 P PPLA3 ES 51 AL 04024 3132 128 Europe/Madrid 2012-03-04
-2521148 Benaguasil Benaguasil Benaguacil,Benaguasil 39.6 -0.58333 P PPLA3 ES 60 V 46051 11011 103 Europe/Madrid 2012-03-04
-2521149 Benagéber Benageber Benageber,Benagever,Benagéber,Benagéver,Benaixeve 39.71667 -1.1 P PPLA3 ES 60 V 46050 177 751 Europe/Madrid 2012-03-04
-2521154 Benacazón Benacazon Benacazon,Benacazón 37.35288 -6.19662 P PPLA3 ES 51 SE 41015 5698 120 Europe/Madrid 2012-03-04
-2521159 Belvis de la Jara Belvis de la Jara Belvis de la Jara 39.75768 -4.94932 P PPL ES 54 TO 45020 1774 459 Europe/Madrid 2012-01-19
-2521163 Belmontejo Belmontejo Belmontejo 39.82212 -2.34467 P PPLA3 ES 54 CU 16034 201 860 Europe/Madrid 2012-03-04
-2521165 Belmonte Belmonte 39.55746 -2.70461 P PPLA3 ES 54 CU 16033 2360 749 Europe/Madrid 2012-03-04
-2521166 Bélmez de la Moraleda Belmez de la Moraleda 37.72382 -3.38207 P PPLA3 ES 51 J 23015 1859 869 Europe/Madrid 2012-03-04
-2521167 Bélmez Belmez Belmez,Bélmez 38.26667 -5.2 P PPL ES 51 CO 14009 3467 500 Europe/Madrid 2012-01-19
-2521170 Bellús Bellus Bellus,Bellús 38.9458 -0.48697 P PPLA3 ES 60 V 46049 383 135 Europe/Madrid 2012-03-04
-2521172 Bellreguard Bellreguard Bellreguard,Bellreguart 38.95 -0.16667 P PPLA3 ES 60 V 46048 3893 24 Europe/Madrid 2012-03-04
-2521175 Bèlgida Belgida Belgida,Bèlgida,Bélgida 38.85 -0.46667 P PPLA3 ES 60 V 46047 719 275 Europe/Madrid 2012-03-04
-2521183 Belalcázar Belalcazar Balalcazar,Belalcazar,Belalcázar 38.57566 -5.16654 P PPLA3 ES 51 CO 14008 3562 492 Europe/Madrid 2012-03-04
-2521190 Beires Beires Beires 37.01237 -2.79134 P PPLA3 ES 51 AL 04023 120 932 Europe/Madrid 2012-03-04
-2521192 Begíjar Begijar Begijar,Begíjar 37.98492 -3.53094 P PPLA3 ES 51 J 23014 3098 575 Europe/Madrid 2012-03-04
-2521197 Bédar Bedar Bedar,Bédar 37.19389 -1.98166 P PPLA3 ES 51 AL 04022 786 384 Europe/Madrid 2012-03-04
-2521198 Betxí Betxi Bechi,Betxi 39.93333 -0.2 P PPLA3 ES 60 CS 12021 0 96 Europe/Madrid 2012-03-04
-2521207 Beas de Segura Beas de Segura Beas de Segura 38.2524 -2.88875 P PPLA3 ES 51 J 23012 5251 586 Europe/Madrid 2012-03-04
-2521208 Beas de Guadix Beas de Guadix Beas de Guadix 37.27861 -3.20578 P PPLA3 ES 51 GR 18025 377 961 Europe/Madrid 2012-03-04
-2521209 Beas de Granada Beas de Granada 37.21803 -3.48095 P PPLA3 ES 51 GR 18024 1074 1079 Europe/Madrid 2012-03-04
-2521212 Beas Beas Beas 37.4257 -6.79318 P PPLA3 ES 51 H 21011 4207 121 Europe/Madrid 2012-03-04
-2521215 Baza Baza Baza,База 37.49073 -2.77259 P PPLA3 ES 51 GR 18023 23359 842 Europe/Madrid 2012-03-04
-2521219 Bayarque Bayarque Bayarque 37.33062 -2.4361 P PPLA3 ES 51 AL 04021 257 817 Europe/Madrid 2012-03-04
-2521221 Bayárcal Bayarcal Bayarcal,Bayárcal 37.03073 -2.99606 P PPLA3 ES 51 AL 04020 296 1267 Europe/Madrid 2012-03-04
-2521226 Baterno Baterno Baterno 38.95578 -4.91039 P PPLA3 ES 57 BA 06017 358 560 Europe/Madrid 2012-03-04
-2521273 Barrax Barrax Barrax 39.04607 -2.20152 P PPLA3 ES 54 AB 02015 1993 735 Europe/Madrid 2012-03-04
-2521309 Barlovento Barlovento 28.82708 -17.80377 P PPLA3 ES 53 TF 38007 2334 575 Atlantic/Canary 2012-02-15
-2521311 Barx Barx Barig,Barx,Bárig 39.01667 -0.3 P PPLA3 ES 60 V 46046 1423 421 Europe/Madrid 2012-03-04
-2521316 Bargas Bargas 39.94113 -4.01979 P PPLA3 ES 54 TO 45019 7731 594 Europe/Madrid 2012-03-04
-2521321 Barcience Barcience Barcience 39.98367 -4.23437 P PPLA3 ES 54 TO 45018 92 517 Europe/Madrid 2012-03-04
-2521323 Barchín del Hoyo Barchin del Hoyo Barchin del Hoyo,Barchín del Hoyo 39.66667 -2.06667 P PPLA3 ES 54 CU 16029 115 962 Europe/Madrid 2012-03-04
-2521325 Barxeta Barxeta Barcheta,Barxeta 39.01667 -0.41667 P PPLA3 ES 60 V 46045 1619 145 Europe/Madrid 2012-03-04
-2521329 Barcarrota Barcarrota Barcarrota 38.51473 -6.84923 P PPLA3 ES 57 BA 06016 3643 489 Europe/Madrid 2012-03-04
-2521335 Barbate de Franco Barbate de Franco Barbate,Barbate de Franco 36.19237 -5.92186 P PPL ES 51 CA 11007 22912 18 Europe/Madrid 2012-01-19
-2521351 Baños de la Encina Banos de la Encina Banos de Encina,Banos de la Encina,Baños de Encina,Baños de la Encina 38.17379 -3.77477 P PPL ES 51 J 23039 2749 452 Europe/Madrid 2012-01-19
-2521368 Balsa de Ves Balsa de Ves Balsa de Ves 39.26667 -1.2 P PPLA3 ES 54 AB 02013 244 736 Europe/Madrid 2012-03-04
-2521373 Balones Balones Balones 38.73726 -0.34324 P PPLA3 ES 60 A 03020 169 693 Europe/Madrid 2012-03-04
-2521390 Balazote Balazote Balazote 38.88444 -2.1518 P PPLA3 ES 54 AB 02012 2656 779 Europe/Madrid 2012-03-04
-2521410 Bailén Bailen Bailen,Bailén 38.09639 -3.77786 P PPLA3 ES 51 J 23010 18785 349 Europe/Madrid 2012-03-04
-2521413 Baeza Baeza Baeza 37.99384 -3.47103 P PPLA3 ES 51 J 23009 16253 763 Europe/Madrid 2012-03-04
-2521415 Baena Baena Baehna,Baena,Баэна 37.6167 -4.32245 P PPLA3 ES 51 CO 14007 20915 412 Europe/Madrid 2012-03-04
-2521417 Badolatosa Badolatosa Badolatosa 37.30785 -4.67296 P PPLA3 ES 51 SE 41014 3184 225 Europe/Madrid 2012-03-04
-2521420 Badajoz Badajoz Ara Pacis Augustalis,Badahozo,Badajoz,Badakhos,Badaĥozo,badahosu,badakhwz,Бадахос,باداخوز,バダホス 38.87789 -6.97061 P PPLA3 ES 57 BA 06015 148334 192 Europe/Madrid 2012-03-04
-2521429 Azután Azutan Azutan,Azután 39.78564 -5.1273 P PPLA3 ES 54 TO 45017 324 337 Europe/Madrid 2012-03-04
-2521434 Azuébar Azuebar Assuevar,Assuévar,Azuebar,Azuébar 39.83333 -0.36667 P PPLA3 ES 60 CS 12018 357 295 Europe/Madrid 2012-03-04
-2521436 Azuaga Azuaga Azuaga 38.26667 -5.68333 P PPLA3 ES 57 BA 06014 8242 583 Europe/Madrid 2012-03-04
-2521439 Aznalcóllar Aznalcollar Aznacollar,Aznacóllar,Aznalcollar,Aznalcóllar 37.51914 -6.26988 P PPLA3 ES 51 SE 41013 5839 126 Europe/Madrid 2012-03-04
-2521440 Aznalcázar Aznalcazar Aznalcazar,Aznalcázar 37.30422 -6.24963 P PPL ES 51 SE 41015 3647 67 Europe/Madrid 2012-01-19
-2521451 Ayora Ayora Aiora,Ayora 39.05852 -1.05635 P PPL ES 60 V 46239 5508 609 Europe/Madrid 2012-01-19
-2521452 Ayódar Ayodar Aioder,Ayodar,Ayódar 40 -0.36667 P PPLA3 ES 60 CS 12017 227 443 Europe/Madrid 2012-03-04
-2521453 Ayna Ayna Ayna 38.55 -2.08333 P PPLA3 ES 54 AB 02011 943 712 Europe/Madrid 2012-03-04
-2521455 Aielo de Malferit Aielo de Malferit Aielo de Malferit,Ayelo de Malferit 38.88333 -0.58333 P PPLA3 ES 60 V 46042 4320 269 Europe/Madrid 2012-03-04
-2521456 Ayamonte Ayamonte Ayamonte 37.20994 -7.40266 P PPLA3 ES 51 H 21010 20334 6 Europe/Madrid 2012-03-04
-2521485 Atarfe Atarfe 37.22479 -3.68686 P PPLA3 ES 51 GR 18022 15399 613 Europe/Madrid 2012-03-04
-2521491 Atalaya del Cañavate Atalaya del Canavate Atalaya del Canavate,Atalaya del Cañavate 39.51864 -2.25175 P PPLA3 ES 54 CU 16026 115 820 Europe/Madrid 2012-03-04
-2521500 Atalaya Atalaya Atalaya 38.33333 -6.46667 P PPLA3 ES 57 BA 06013 338 526 Europe/Madrid 2012-03-04
-2521504 Atajate Atajate Atajate 36.64017 -5.24606 P PPLA3 ES 51 MA 29021 170 739 Europe/Madrid 2012-03-04
-2521510 Aspe Aspe Asp,Aspe 38.34511 -0.76722 P PPLA3 ES 60 A 03019 20180 245 Europe/Madrid 2012-03-04
-2521519 Arucas Arucas Arucas,Arukas,Арукас 28.11983 -15.52325 P PPLA3 ES 53 GC 35006 36259 280 Atlantic/Canary 2012-03-04
-2521521 Artenara Artenara Artenara 28.02055 -15.64693 P PPLA3 ES 53 GC 35005 1565 1235 Atlantic/Canary 2012-03-04
-2521528 Artana Artana Arlana 39.89104 -0.25758 P PPLA3 ES 60 CS 12016 1850 259 Europe/Madrid 2012-03-04
-2521534 Artà Arta Arta,Artà 39.69315 3.34979 P PPLA3 ES 07 PM 07006 6649 128 Europe/Madrid 2012-03-04
-2521545 Arroyomolinos de León Arroyomolinos de Leon Arroyomolinos de Leon,Arroyomolinos de León 38.01667 -6.41667 P PPLA3 ES 51 H 21009 0 564 Europe/Madrid 2012-03-04
-2521549 Arroyo de San Serván Arroyo de San Servan Arroyo de San Servan,Arroyo de San Serván 38.85443 -6.45402 P PPLA3 ES 57 BA 06012 4048 232 Europe/Madrid 2012-03-04
-2521550 Arroyo del Ojanco Arroyo del Ojanco Arroyo del Ojanco 38.32065 -2.89486 P PPLA3 ES 51 J 23905 2656 541 Europe/Madrid 2012-03-04
-2521555 Arroyo de la Luz Arroyo de la Luz Arroyo de la Luz,Arroyo del Puerco 39.48511 -6.58401 P PPLA3 ES 57 CC 10021 6671 352 Europe/Madrid 2012-03-04
-2521566 Arriate Arriate Arriate 36.80005 -5.1408 P PPLA3 ES 51 MA 29020 3821 594 Europe/Madrid 2012-03-04
-2521570 Arrecife Arrecife Aresife,Arrecife,Аресифе 28.96302 -13.54769 P PPLA3 ES 53 GC 35004 59127 20 Atlantic/Canary 2012-03-04
-2521577 Arquillos Arquillos Arquillos 38.18148 -3.42827 P PPLA3 ES 51 J 23008 1979 392 Europe/Madrid 2012-03-04
-2521582 Arona Arona Aron,Arona,Арон 28.09962 -16.68102 P PPLA3 ES 53 TF 38006 78614 632 Atlantic/Canary 2012-03-04
-2521585 Aroche Aroche Aroche 37.94213 -6.9576 P PPLA3 ES 51 H 21008 0 388 Europe/Madrid 2012-03-04
-2521589 Armuña de Almanzora Armuna de Almanzora 37.3503 -2.4115 P PPLA3 ES 51 AL 04018 315 629 Europe/Madrid 2012-03-04
-2521590 Armilla Armilla 37.14102 -3.61854 P PPLA3 ES 51 GR 18021 21380 670 Europe/Madrid 2012-03-04
-2521593 Arjonilla Arjonilla Arjonilla 37.97422 -4.10677 P PPLA3 ES 51 J 23007 3910 346 Europe/Madrid 2012-03-04
-2521594 Arjona Arjona Arjona 37.93493 -4.05478 P PPLA3 ES 51 J 23006 5645 452 Europe/Madrid 2012-03-04
-2521602 Cruce de Arinaga Cruce de Arinaga Puerto de Arinaga 27.87656 -15.42798 P PPLL ES ES 53 GC 35002 2700 75 Atlantic/Canary 2007-06-07
-2521606 Ariany Ariany Ariany 39.65048 3.11055 P PPLA3 ES 07 PM 07901 750 117 Europe/Madrid 2012-03-04
-2521607 Arguisuelas Arguisuelas Arguisuelas 39.83333 -1.81667 P PPLA3 ES 54 CU 16024 160 1028 Europe/Madrid 2012-03-04
-2521619 Argamasilla de Calatrava Argamasilla de Calatrava 38.72985 -4.07627 P PPLA3 ES 54 CR 13020 5371 668 Europe/Madrid 2012-03-04
-2521620 Argamasilla de Alba Argamasilla de Alba Argamasilla de Alba 39.12917 -3.09247 P PPL ES 54 CR 13005 6902 674 Europe/Madrid 2012-01-19
-2521636 Arenas de San Juan Arenas de San Juan Arenas de San Juan 39.21861 -3.50211 P PPLA3 ES 54 CR 13018 1083 629 Europe/Madrid 2012-03-04
-2521637 Arenas del Rey Arenas del Rey Arenas del Rey 36.95799 -3.89362 P PPLA3 ES 51 GR 18020 1978 867 Europe/Madrid 2012-03-04
-2521642 Arenas Arenas Arenas 36.81624 -4.04412 P PPLA3 ES 51 MA 29019 1200 415 Europe/Madrid 2012-03-04
-2521661 Ardales Ardales 36.87804 -4.84694 P PPLA3 ES 51 MA 29018 2631 405 Europe/Madrid 2012-03-04
-2521664 Arcos de las Salinas Arcos de las Salinas Arcos de las Salinas 39.98333 -1.03333 P PPLA3 ES 52 TE 44026 126 1324 Europe/Madrid 2012-03-04
-2521665 Arcos de la Frontera Arcos de la Frontera Arcos,Arcos de la Frontera,Arkos-de-la-Frontera,Аркос-де-ла-Фронтера 36.75075 -5.81056 P PPLA3 ES 51 CA 11006 31210 144 Europe/Madrid 2012-03-04
-2521673 Archidona Archidona 37.09654 -4.38869 P PPLA3 ES 51 MA 29017 8506 730 Europe/Madrid 2012-03-04
-2521674 Árchez Archez Archez,Árchez 36.83992 -3.99208 P PPLA3 ES 51 MA 29016 432 436 Europe/Madrid 2012-03-04
-2521676 Archena Archena Archena 38.11631 -1.30043 P PPLA3 ES 31 MU 30009 18202 118 Europe/Madrid 2012-03-04
-2521683 Arboleas Arboleas 37.35024 -2.07384 P PPLA3 ES 51 AL 04017 2614 296 Europe/Madrid 2012-03-04
-2521692 Arafo Arafo Arafo,Arato 28.33971 -16.42244 P PPLA3 ES 53 TF 38004 5375 500 Atlantic/Canary 2012-03-04
-2521694 Aracena Aracena Arasena,Арасена 37.89396 -6.56116 P PPLA3 ES 51 H 21007 7351 675 Europe/Madrid 2012-03-04
-2521706 Antigua Antigua La Antigua 28.42307 -14.01379 P PPLA3 ES 53 GC 35003 10371 263 Atlantic/Canary 2012-03-04
-2521710 Antequera Antequera Anteguera,Antekera,Antequera,Антекера 37.01938 -4.56123 P PPLA3 ES 51 MA 29015 45168 519 Europe/Madrid 2012-03-04
-2521712 Antella Antella Antella 39.07977 -0.59195 P PPLA3 ES 60 V 46040 1498 51 Europe/Madrid 2012-03-04
-2521714 Antas Antas Antas 37.24536 -1.9176 P PPL ES 51 AL 04035 3166 108 Europe/Madrid 2012-01-19
-2521718 Añover de Tajo Anover de Tajo Anover de Tajo,Añover de Tajo 39.98873 -3.76578 P PPLA3 ES 54 TO 45014 5075 598 Europe/Madrid 2012-03-04
-2521721 Añora Anora Anora,Añora 38.41667 -4.9 P PPL ES 51 CO 14023 1521 621 Europe/Madrid 2012-01-19
-2521722 Anna Anna Anna 39.02029 -0.64621 P PPLA3 ES 60 V 46039 2775 208 Europe/Madrid 2012-03-04
-2521738 Andújar Andujar Andujar,Andújar 38.03922 -4.05078 P PPLA3 ES 51 J 23005 39111 216 Europe/Madrid 2012-03-04
-2521741 Andratx Andratx Andratx 39.57553 2.42017 P PPLA3 ES 07 PM 07005 11685 81 Europe/Madrid 2012-03-04
-2521744 Andilla Andilla Andilla 39.83333 -0.8 P PPLA3 ES 60 V 46038 384 1046 Europe/Madrid 2012-03-04
-2521757 Anchuras Anchuras Anchuras 39.48059 -4.83381 P PPLA3 ES 54 CR 13017 0 548 Europe/Madrid 2012-03-04
-2521793 Altura Altura Altura 39.85 -0.51667 P PPLA3 ES 60 CS 12012 3242 396 Europe/Madrid 2012-03-04
-2521804 Altea Altea Altea 38.59885 -0.05139 P PPLA3 ES 60 A 03018 23780 56 Europe/Madrid 2012-03-04
-2521807 Altarejos Altarejos Altarejos 39.91258 -2.35692 P PPLA3 ES 54 CU 16019 340 883 Europe/Madrid 2012-03-04
-2521820 Alsodux Alsodux Alsodux 37.00246 -2.59476 P PPLA3 ES 51 AL 04015 127 310 Europe/Madrid 2012-03-04
-2521822 Alquife Alquife Alquife 37.18024 -3.11553 P PPLA3 ES 51 GR 18018 813 1202 Europe/Madrid 2012-03-04
-2521824 L'Alqueria de la Comtessa L'Alqueria de la Comtessa Alqueria de la Condesa,Alquería de la Condesa,L'Alqueria de la Comtessa 38.93333 -0.15 P PPL ES 60 V 46037 1462 21 Europe/Madrid 2006-04-08
-2521830 Alpuente Alpuente Alpont,Alpuente 39.86667 -1.01667 P PPLA3 ES 60 V 46036 861 844 Europe/Madrid 2012-03-04
-2521836 Alpera Alpera Alpera 38.96667 -1.21667 P PPLA3 ES 54 AB 02010 2328 843 Europe/Madrid 2011-07-31
-2521837 Alpandeire Alpandeire Alpandeire 36.63402 -5.20216 P PPLA3 ES 51 MA 29014 285 702 Europe/Madrid 2012-03-04
-2521838 Alozaina Alozaina Alozaina 36.72736 -4.85761 P PPLA3 ES 51 MA 29013 2251 380 Europe/Madrid 2012-03-04
-2521839 Alosno Alosno Alosno 37.54861 -7.1147 P PPLA3 ES 51 H 21006 4341 184 Europe/Madrid 2012-03-04
-2521840 Alora Alora 36.82358 -4.70575 P PPL ES 51 MA 29012 13395 215 Europe/Madrid 2010-04-22
-2521845 Almussafes Almussafes Almusafes,Almussafes 39.28333 -0.41667 P PPLA3 ES 60 V 46035 7459 8 Europe/Madrid 2012-03-04
-2521847 Almuñécar Almunecar Almunecar,Almuñécar 36.73393 -3.69072 P PPLA3 ES 51 GR 18017 27696 24 Europe/Madrid 2012-03-04
-2521850 Almudaina Almudaina Almudaina 38.75999 -0.35149 P PPLA3 ES 60 A 03016 113 581 Europe/Madrid 2012-03-04
-2521855 Almoradí Almoradi Almoradi,Almoradí,Almordi 38.10879 -0.79197 P PPL ES 60 A 03099 19147 17 Europe/Madrid 2012-01-19
-2521857 Almonte Almonte Almonte 37.2647 -6.51667 P PPLA3 ES 51 H 21005 21782 74 Europe/Madrid 2012-03-04
-2521861 Almonacid del Marquesado Almonacid del Marquesado 39.82344 -2.7677 P PPLA3 ES 54 CU 16018 523 895 Europe/Madrid 2012-03-04
-2521863 Almoines Almoines Almoines 38.94325 -0.18155 P PPLA3 ES 60 V 46034 1668 40 Europe/Madrid 2012-03-04
-2521864 Almoharín Almoharin Almoharin,Almoharín 39.17685 -6.04283 P PPLA3 ES 57 CC 10020 2040 303 Europe/Madrid 2012-03-04
-2521866 Almogía Almogia Almogia,Almogía,Almojia 36.8255 -4.5407 P PPLA3 ES 51 MA 29011 4231 381 Europe/Madrid 2012-03-04
-2521867 Almodóvar del Río Almodovar del Rio Almodovar del Rio,Almodóvar del Río 37.8107 -5.02037 P PPLA3 ES 51 CO 14005 7486 119 Europe/Madrid 2012-03-04
-2521868 Almodóvar del Pinar Almodovar del Pinar Almodovar del Pinar,Almodóvar del Pinar 39.71667 -1.88333 P PPLA3 ES 54 CU 16017 512 986 Europe/Madrid 2012-03-04
-2521869 Almodóvar del Campo Almodovar del Campo Almodovar,Almodovar del Campo,Almodóvar del Campo 38.70936 -4.17908 P PPLA3 ES 54 CR 13015 6893 675 Europe/Madrid 2012-03-04
-2521871 Almócita Almocita Almocita,Almorcita,Almócita,Almórcita 37.00262 -2.79051 P PPLA3 ES 51 AL 04014 167 832 Europe/Madrid 2012-03-04
-2521873 Almiserà Almisera Almisera,Almiserat,Almiserà 38.91667 -0.28333 P PPLA3 ES 60 V 46033 262 136 Europe/Madrid 2012-03-04
-2521886 Almería Almeria Al'meri,Al'merija,Almeria,Almerija,Almerio,Almería,Unci,a er mei li ya,almelia,almeriya,almrya,almryt,arumeria,Αλμερία,Алмерия,Алмерија,Альмери,Альмерия,Альмерія,آلمریا,المرية,அல்மேரீயா,アルメリア,阿尔梅里亚,알메리아 36.83814 -2.45974 P PPLA2 ES 51 AL 04013 188810 21 Europe/Madrid 2010-08-22
-2521887 Almensilla Almensilla Almensilla 37.31099 -6.10998 P PPLA3 ES 51 SE 41010 4883 51 Europe/Madrid 2012-03-04
-2521893 Almendralejo Almendralejo Al'mendralekho,Almendralejo,Альмендралехо 38.68316 -6.40747 P PPLA3 ES 57 BA 06011 33588 338 Europe/Madrid 2012-03-04
-2521894 Almendral Almendral Almendral 38.61418 -6.82096 P PPLA3 ES 57 BA 06010 1327 325 Europe/Madrid 2012-03-04
-2521899 Almenara Almenara 39.75 -0.21667 P PPLA3 ES 60 CS 12011 5031 7 Europe/Madrid 2012-03-04
-2521903 Almegíjar Almegijar Almegijar,Almegíjar 36.90258 -3.30122 P PPLA3 ES 51 GR 18016 479 818 Europe/Madrid 2012-03-04
-2521905 Almedinilla Almedinilla 37.43902 -4.09052 P PPLA3 ES 51 CO 14004 2561 638 Europe/Madrid 2012-03-04
-2521906 Almedina Almedina Almedina 38.62453 -2.95382 P PPLA3 ES 54 CR 13014 697 909 Europe/Madrid 2012-03-04
-2521908 Almedíjar Almedijar Almedijar,Almedíjar 39.86667 -0.4 P PPLA3 ES 60 CS 12010 267 748 Europe/Madrid 2012-03-04
-2521909 Almassora Almassora Almassora,Almazora 39.95 -0.05 P PPL ES 60 CS 12040 24963 22 Europe/Madrid 2010-04-22
-2521913 Almargen Almargen Almargen 37.0021 -5.02178 P PPLA3 ES 51 MA 29010 2054 511 Europe/Madrid 2012-03-04
-2521917 Almaraz Almaraz Almaraz 39.81416 -5.67698 P PPLA3 ES 57 CC 10019 1306 273 Europe/Madrid 2012-03-04
-2521923 Almansa Almansa Al'mansa,Almansa,Альманса 38.86917 -1.09713 P PPLA3 ES 54 AB 02009 25727 702 Europe/Madrid 2012-03-04
-2521928 Almagro Almagro Almagro 38.88941 -3.71132 P PPLA3 ES 54 CR 13013 8546 651 Europe/Madrid 2012-03-04
-2521937 Almadén de la Plata Almaden de la Plata Almaden de la Plata,Almadén de la Plata 37.86667 -6.06667 P PPLA3 ES 51 SE 41009 0 431 Europe/Madrid 2012-03-04
-2521938 Almadén Almaden Almaden,Almadén 38.77541 -4.83156 P PPLA3 ES 54 CR 13011 0 567 Europe/Madrid 2012-03-04
-2521945 Almáchar Almachar Almachar,Almáchar 36.80892 -4.21614 P PPLA3 ES 51 MA 29009 1909 222 Europe/Madrid 2012-03-04
-2521950 Aljucén Aljucen Aljucen,Aljucén 39.04426 -6.33109 P PPLA3 ES 57 BA 06009 246 268 Europe/Madrid 2012-03-04
-2521964 Aljaraque Aljaraque Aljaraque 37.2699 -7.02312 P PPLA3 ES 51 H 21002 17960 30 Europe/Madrid 2012-03-04
-2521972 Aliseda Aliseda Aliseda 39.42329 -6.69228 P PPLA3 ES 57 CC 10018 1894 333 Europe/Madrid 2012-03-04
-2521974 Alicún de Ortega Alicun de Ortega Alicun de Ortega,Alicún de Ortega 37.60898 -3.13648 P PPLA3 ES 51 GR 18015 566 692 Europe/Madrid 2012-03-04
-2521975 Alicún Alicun Alicun,Alicún 36.9658 -2.60212 P PPLA3 ES 51 AL 04012 251 426 Europe/Madrid 2012-03-04
-2521978 Alicante Alicante ALC,Akra Leuke,Alacant,Alakanto,Alicante,Alikante,Alíkante,Lucentum,a li kan te,alykanth,arikante,Аликанте,أليكانته,アリカンテ,阿利坎特 38.34517 -0.48149 P PPLA2 ES 60 A 03014 334757 18 Europe/Madrid 2011-06-16
-2521980 Aliaguilla Aliaguilla Aliaguilla 39.73333 -1.31667 P PPLA3 ES 54 CU 16014 828 1002 Europe/Madrid 2012-03-04
-2521981 Alía Alia Alia,Alía 39.44803 -5.21754 P PPLA3 ES 57 CC 10017 1169 576 Europe/Madrid 2012-03-04
-2521984 Alhendín Alhendin C/ ALTA 37.10879 -3.64557 P PPLA3 ES 51 GR 18014 4899 736 Europe/Madrid 2012-03-04
-2521985 Alhaurín el Grande Alhaurin el Grande Alhaurin el Grande,Alhaurín el Grande 36.643 -4.68728 P PPLA3 ES 51 MA 29008 23319 249 Europe/Madrid 2012-03-04
-2521986 Alhaurín de la Torre Alhaurin de la Torre 36.66401 -4.56139 P PPLL ES 51 MA 29007 35114 93 Europe/Madrid 2010-04-22
-2521991 Alhambra Alhambra Alhambra 38.89925 -3.05333 P PPLA3 ES 54 CR 13010 1177 861 Europe/Madrid 2012-03-04
-2521992 Alhama de Murcia Alhama de Murcia Alhama,Alhama de Murcia 37.85103 -1.42507 P PPLA3 ES 31 MU 30008 19860 201 Europe/Madrid 2012-03-04
-2521993 Alhama de Granada Alhama de Granada Alhama,Alhama de Granada 37.00689 -3.98963 P PPLA3 ES 51 GR 18013 6080 879 Europe/Madrid 2012-03-04
-2521994 Alhama de Almería Alhama de Almeria Alhama,Alhama de Almeria,Alhama de Almería 36.95692 -2.56861 P PPLA3 ES 51 AL 04011 3374 516 Europe/Madrid 2012-03-04
-2521998 Alhabia Alhabia Alhabia 36.99003 -2.58655 P PPLA3 ES 51 AL 04010 681 298 Europe/Madrid 2012-03-04
-2521999 Algueña Alguena Alguena,Algueña,L'Alguenya 38.33905 -1.00433 P PPLA3 ES 60 A 03013 1453 537 Europe/Madrid 2012-03-04
-2522000 Alguazas Alguazas Alguazas 38.05356 -1.25051 P PPLA3 ES 31 MU 30007 7725 100 Europe/Madrid 2012-03-04
-2522001 Algorfa Algorfa Algorfa 38.08636 -0.79646 P PPLA3 ES 60 A 03012 2111 26 Europe/Madrid 2012-03-04
-2522005 Algodonales Algodonales 36.88044 -5.40536 P PPLA3 ES 51 CA 11005 5672 369 Europe/Madrid 2012-03-04
-2522007 Alginet Alginet Alginet 39.26667 -0.46667 P PPLA3 ES 60 V 46031 13226 34 Europe/Madrid 2012-03-04
-2522008 Algimia de Almonacid Algimia de Almonacid Algimia d'Almonesir,Algimia de Almonacid 39.91667 -0.43333 P PPLA3 ES 60 CS 12008 267 529 Europe/Madrid 2012-03-04
-2522009 Algimia de Alfara Algimia de Alfara Algimia de Alfara,Algimia de la Baronia 39.75 -0.36667 P PPLA3 ES 60 V 46030 959 180 Europe/Madrid 2012-03-04
-2522012 Algemesí Algemesi Algemesi,Algemesí 39.18333 -0.43333 P PPLA3 ES 60 V 46029 28308 20 Europe/Madrid 2012-03-04
-2522013 Algeciras Algeciras Al Jezita,Al'khesiras,Alchesirasas,Alchezira,Algeciras,Algecires,Algesiras,Algesires,Algethiras,Algésiras,Alkhesiras,Alxeciras,a er he xi la si,alhesilaseu,aruheshirasu,Αλγεθίρας,Алхесирас,Альхесирас,Альхесірас,الجزيرة الخضراء,アルヘシラス,阿尔赫西拉斯,알헤시라스 36.13326 -5.45051 P PPLA3 ES 51 CA 11004 116209 29 Europe/Madrid 2012-03-04
-2522014 Algatocín Algatocin 36.57356 -5.27554 P PPLA3 ES 51 MA 29006 934 716 Europe/Madrid 2012-03-04
-2522019 Algarrobo Algarrobo Algarrobe,Algarrobo 36.77388 -4.03952 P PPLA3 ES 51 MA 29005 5073 90 Europe/Madrid 2012-03-04
-2522022 Algarra Algarra Algarra 40 -1.43333 P PPLA3 ES 54 CU 16013 37 1188 Europe/Madrid 2012-03-04
-2522023 Algarinejo Algarinejo Algarmejo 37.32526 -4.1585 P PPLA3 ES 51 GR 18012 4243 606 Europe/Madrid 2012-03-04
-2522031 Algar Algar Algar 36.65748 -5.65558 P PPLA3 ES 51 CA 11003 1637 208 Europe/Madrid 2012-03-04
-2522032 Algámitas Algamitas Algamitas,Algámitas 37.01516 -5.14949 P PPLA3 ES 51 SE 41008 1335 421 Europe/Madrid 2012-03-04
-2522036 Algaida Algaida Algaida 39.55899 2.89541 P PPLA3 ES 07 PM 07004 4258 197 Europe/Madrid 2012-03-04
-2522044 Alfondeguilla Alfondeguilla Alfondeguilla,Fondeguilla 39.83333 -0.26667 P PPLA3 ES 60 CS 12007 858 281 Europe/Madrid 2012-03-04
-2522046 Alfarrasí Alfarrasi Alfarrasi,Alfarrassi,Alfarrassí,Alfarrasí 38.9 -0.5 P PPLA3 ES 60 V 46027 1272 193 Europe/Madrid 2012-03-04
-2522047 Alfarp Alfarp Alfarb,Alfarp 39.28333 -0.55 P PPLA3 ES 60 V 46026 1369 90 Europe/Madrid 2012-03-04
-2522049 Alfarnatejo Alfarnatejo 36.9957 -4.26064 P PPLA3 ES 51 MA 29004 397 900 Europe/Madrid 2012-03-04
-2522050 Alfarnate Alfarnate Alfarnate 36.99426 -4.25929 P PPLA3 ES 51 MA 29003 1420 885 Europe/Madrid 2012-03-04
-2522052 Alfara del Patriarca Alfara del Patriarca Alfara,Alfara del Patriarca 39.55 -0.38333 P PPLA3 ES 60 V 46025 2779 37 Europe/Madrid 2012-03-04
-2522053 Alfara de Algimia Alfara de Algimia Alfara d'Algimia,Alfara de Algimia 39.76667 -0.35 P PPLA3 ES 60 V 46024 487 182 Europe/Madrid 2012-03-04
-2522055 Alfauir Alfauir Alfahuir,Alfauir 38.93333 -0.25 P PPLA3 ES 60 V 46023 381 80 Europe/Madrid 2012-03-04
-2522056 Alfafara Alfafara Alfafara,Alfarara 38.77339 -0.55551 P PPLA3 ES 60 A 03010 437 581 Europe/Madrid 2012-03-04
-2522057 Alfafar Alfafar Alfafar 39.41667 -0.38333 P PPLA3 ES 60 V 46022 20853 7 Europe/Madrid 2012-03-04
-2522058 Alfacar Alfacar 37.23744 -3.56807 P PPLA3 ES 51 GR 18011 4949 929 Europe/Madrid 2012-03-04
-2522061 Aledo Aledo Aledo 37.79341 -1.57356 P PPL ES 31 MU 30039 1078 612 Europe/Madrid 2012-01-19
-2522063 Aldeire Aldeire Aldeire 37.16012 -3.07204 P PPLA3 ES 51 GR 18010 742 1288 Europe/Madrid 2012-03-04
-2522065 Aldeaquemada Aldeaquemada Aldeaquemada 38.41215 -3.37137 P PPLA3 ES 51 J 23004 529 701 Europe/Madrid 2012-03-04
-2522066 Aldeanueva de San Bartolomé Aldeanueva de San Bartolome Aldeanueva de San Bartolome,Aldeanueva de San Bartolomé 39.63608 -5.11307 P PPLA3 ES 54 TO 45010 517 580 Europe/Madrid 2012-03-04
-2522067 Aldeanueva de Barbarroya Aldeanueva de Barbarroya Aldeanueva de Barbarroya 39.75934 -5.02287 P PPLA3 ES 54 TO 45009 733 492 Europe/Madrid 2012-03-04
-2522072 Aldea del Rey Aldea del Rey Aldea del Rey 38.7383 -3.84017 P PPLA3 ES 54 CR 13009 2024 668 Europe/Madrid 2012-03-04
-2522073 Aldea del Cano Aldea del Cano Aldea del Cano 39.28874 -6.31806 P PPLA3 ES 57 CC 10012 746 395 Europe/Madrid 2012-03-04
-2522074 Aldeacentenera Aldeacentenera Aldeacentenera 39.52725 -5.62936 P PPLA3 ES 57 CC 10011 904 566 Europe/Madrid 2012-03-04
-2522077 Aldaia Aldaia Al'dajja,Aldaia,Aldaya,Альдайя 39.46569 -0.46005 P PPLA3 ES 60 V 46021 29914 49 Europe/Madrid 2012-03-04
-2522079 Alcuéscar Alcuescar Alcuescar,Alcuéscar 39.18091 -6.22917 P PPLA3 ES 57 CC 10010 3057 487 Europe/Madrid 2012-03-04
-2522081 Alcudia de Veo Alcudia de Veo Alcudia de Veo 39.91667 -0.35 P PPLA3 ES 60 CS 12006 206 490 Europe/Madrid 2012-03-04
-2522082 Alcudia de Monteagud Alcudia de Monteagud Alcudia de Monteagud 37.23529 -2.2665 P PPLA3 ES 51 AL 04009 175 1028 Europe/Madrid 2012-03-04
-2522084 L'Alcúdia de Crespìns L'Alcudia de Crespins Alcudia de Crespins,L'Alcudia de Crespins,L'Alcúdia de Crespìns 38.96667 -0.58333 P PPL ES 60 V 46020 4786 158 Europe/Madrid 2006-04-08
-2522085 L'Alcúdia L'Alcudia Alcudia,Alcudia de Carlet,L'Alcudia,L'Alcúdia 39.2 -0.5 P PPL ES 60 V 46019 11378 37 Europe/Madrid 2010-04-22
-2522091 Alcúdia Alcudia Alcudia,Alcúdia 39.85316 3.12138 P PPLA3 ES 07 PM 07003 19071 19 Europe/Madrid 2012-03-04
-2522094 Alcublas Alcublas Alcublas,Les Alcubles 39.8 -0.7 P PPLA3 ES 60 V 46018 794 780 Europe/Madrid 2012-03-04
-2522096 Alcubillas Alcubillas Alcubillas 38.75312 -3.13407 P PPLA3 ES 54 CR 13008 685 810 Europe/Madrid 2012-03-04
-2522098 Alcoy Alcoy Al'ka,Alco,Alcoi,Alcoy,Alcòi,Алька 38.70545 -0.47432 P PPLA3 ES 60 A 03009 61552 554 Europe/Madrid 2012-03-04
-2522108 Alcóntar Alcontar Alcontar,Alcóntar 37.33647 -2.59725 P PPLA3 ES 51 AL 04008 669 963 Europe/Madrid 2012-03-04
-2522110 Alconera Alconera Alconera 38.4 -6.46667 P PPLA3 ES 57 BA 06008 767 467 Europe/Madrid 2012-03-04
-2522111 Alconchel de la Estrella Alconchel de la Estrella Alconchel de la Estrella 39.71963 -2.57366 P PPLA3 ES 54 CU 16012 172 829 Europe/Madrid 2012-03-04
-2522112 Alconchel Alconchel Alconchel 38.51648 -7.07161 P PPLA3 ES 57 BA 06007 1980 283 Europe/Madrid 2012-03-04
-2522114 Alcollarín Alcollarin Alcollarin,Alcollarín 39.2447 -5.73924 P PPLA3 ES 57 CC 10009 300 315 Europe/Madrid 2012-03-04
-2522116 Alcolea de Tajo Alcolea de Tajo Alcolea de Tajo 39.80966 -5.14738 P PPLA3 ES 54 TO 45007 822 354 Europe/Madrid 2012-03-04
-2522117 Alcolea del Río Alcolea del Rio Alcolea,Alcolea del Rio,Alcolea del Río 37.61506 -5.66694 P PPLA3 ES 51 SE 41006 3339 36 Europe/Madrid 2012-03-04
-2522118 Alcolea de Calatrava Alcolea de Calatrava Alcolea de Calatrava 38.9868 -4.11597 P PPLA3 ES 54 CR 13007 1634 653 Europe/Madrid 2012-03-04
-2522121 Alcolea Alcolea 36.97458 -2.9615 P PPLA3 ES 51 AL 04007 1012 741 Europe/Madrid 2012-03-04
-2522124 Alcocer de Planes Alcocer de Planes Alcocer de Planes,Alcosser de Planes 38.79501 -0.40244 P PPLA3 ES 60 A 03007 189 354 Europe/Madrid 2012-03-04
-2522128 Alcoba Alcoba Alcoba 39.25988 -4.47715 P PPLA3 ES 54 CR 13006 738 634 Europe/Madrid 2012-03-04
-2522129 Alzira Alzira Al'sira,Alcira,Alzira,Альсира 39.15 -0.43333 P PPLA3 ES 60 V 46017 44690 26 Europe/Madrid 2012-03-04
-2522131 Alcázar de San Juan Alcazar de San Juan Al'kasar-de-San-Khuan,Alcaraz de San Juan,Alcazar,Alcázar,Алькасар-де-Сан-Хуан 39.39011 -3.20827 P PPLA3 ES 54 CR 13005 30675 644 649 Europe/Madrid 2012-03-04
-2522137 Alcaudete Alcaudete Alcaudete 37.59091 -4.08237 P PPLA3 ES 51 J 23003 11135 672 Europe/Madrid 2012-03-04
-2522138 Alcaucín Alcaucin 36.90301 -4.11406 P PPLA3 ES 51 MA 29002 1697 513 Europe/Madrid 2012-03-04
-2522143 Alcaraz Alcaraz Alcaraz 38.6668 -2.49106 P PPLA3 ES 54 AB 02008 1761 952 Europe/Madrid 2012-03-04
-2522146 Alcaracejos Alcaracejos Alcaracejos,Alcaraces,Alcarazejos 38.38333 -4.96667 P PPLA3 ES 51 CO 14003 1458 622 Europe/Madrid 2012-03-04
-2522152 Alcantarilla Alcantarilla Al'kantaril'ja,Alcantarilla,Алькантарилья 37.96939 -1.21714 P PPLA3 ES 31 MU 30005 41084 76 Europe/Madrid 2012-03-04
-2522153 Alcàntera de Xúquer Alcantera de Xuquer Alcantara de Jucar,Alcantera de Xuquer,Alcàntera de Xúquer,Alcántara de Júcar 39.06667 -0.55 P PPLA3 ES 60 V 46016 1380 39 Europe/Madrid 2012-03-04
-2522155 Alcántara Alcantara Alcantara,Alcántara,Bruecke von Alcantara,Brücke von Alcántara 39.71895 -6.88376 P PPLA3 ES 57 CC 10008 1713 240 Europe/Madrid 2012-03-04
-2522157 Alcañizo Alcanizo Alcanizo,Alcañizo 39.90316 -5.10588 P PPLA3 ES 54 TO 45005 314 377 Europe/Madrid 2012-03-04
-2522159 Alcalalí Alcalali Alcalali,Alcalalí,benarossa gardens 38.75038 -0.04013 P PPLA3 ES 60 A 03006 1299 233 Europe/Madrid 2012-03-04
-2522160 Alcalá la Real Alcala la Real Al'kala-la-Real',Alcala la Real,Alcalá la Real,Алькала-ла-Реаль 37.4614 -3.92301 P PPLA3 ES 51 J 23002 22783 918 Europe/Madrid 2012-03-04
-2522161 Alcalá del Valle Alcala del Valle Alcala del Valle,Alcalá del Valle 36.90448 -5.1724 P PPLA3 ES 51 CA 11002 5323 619 Europe/Madrid 2012-03-04
-2522162 Alcalá de los Gazules Alcala de los Gazules Alcala de los Gazules,Alcalá de los Gazules 36.46212 -5.72382 P PPLA3 ES 51 CA 11001 5639 209 Europe/Madrid 2012-03-04
-2522163 Alcalá del Júcar Alcala del Jucar Alcala de Jucar,Alcala del Jucar,Alcalá de Jucar,Alcalá del Júcar 39.2 -1.43333 P PPLA3 ES 54 AB 02007 1397 676 Europe/Madrid 2012-03-04
-2522165 Alcalá de Guadaira Alcala de Guadaira Al'kala-de-Gvadaira,Alcala de Guadaira,Alcalá de Guadaira,Alcalá de Guadaíra,Алькала-де-Гвадаира 37.33791 -5.83951 P PPL ES 51 SE 41004 70155 71 Europe/Madrid 2012-01-19
-2522177 Alcadozo Alcadozo Alcadozo 38.64916 -1.97998 P PPLA3 ES 54 AB 02006 789 927 Europe/Madrid 2012-03-04
-2522179 Alcàsser Alcasser 39.36667 -0.43333 P PPL ES 60 V 46015 8188 21 Europe/Madrid 2006-03-04
-2522180 Alcabón Alcabon Alcabon,Alcabón 40.00224 -4.36852 P PPLA3 ES 54 TO 45004 688 531 Europe/Madrid 2012-03-04
-2522183 Alburquerque Alburquerque Alburquerque 39.22076 -7.00234 P PPLA3 ES 57 BA 06006 5619 426 Europe/Madrid 2012-03-04
-2522185 Albuñuelas Albunuelas 36.92828 -3.63184 P PPLA3 ES 51 GR 18007 1063 730 Europe/Madrid 2012-03-04
-2522187 Albuñol Albunol 36.79203 -3.205 P PPLA3 ES 51 GR 18006 6157 259 Europe/Madrid 2012-03-04
-2522188 Albuñán Albunan Albunan,Albuñán 37.22708 -3.13321 P PPLA3 ES 51 GR 18005 467 1117 Europe/Madrid 2012-03-04
-2522191 Albuixech Albuixech Albuixec,Albuixech 39.55 -0.31667 P PPLA3 ES 60 V 46014 3443 7 Europe/Madrid 2012-03-04
-2522197 Albudeite Albudeite Albudeite 38.02895 -1.38664 P PPLA3 ES 31 MU 30004 1502 178 Europe/Madrid 2012-03-04
-2522200 Albox Albox Albox 37.38856 -2.1495 P PPLA3 ES 51 AL 04006 11178 420 428 Europe/Madrid 2012-03-04
-2522202 Alborea Alborea Alborea 39.28333 -1.38333 P PPLA3 ES 54 AB 02005 795 723 Europe/Madrid 2012-03-04
-2522203 Alboraya Alboraya Al'borajja,Alboraia,Alboraya,Альборайя 39.5 -0.35 P PPLA3 ES 60 V 46013 22405 10 Europe/Madrid 2012-03-04
-2522206 Alborache Alborache Alborache,Alboraig 39.38333 -0.76667 P PPLA3 ES 60 V 46012 948 296 Europe/Madrid 2012-03-04
-2522207 Albondón Albondon 36.8277 -3.21144 P PPLA3 ES 51 GR 18004 916 924 Europe/Madrid 2012-03-04
-2522208 Albolote Albolote 37.23088 -3.6551 P PPLA3 ES 51 GR 18003 17089 654 Europe/Madrid 2012-03-04
-2522222 Alberic Alberic Alberic,Alberique 39.11667 -0.51667 P PPLA3 ES 60 V 46011 11175 29 Europe/Madrid 2012-03-04
-2522228 Albatera Albatera Albatera 38.17902 -0.87059 P PPLA3 ES 60 A 03005 11745 21 Europe/Madrid 2012-03-04
-2522229 Albatana Albatana Albatana 38.57057 -1.5221 P PPLA3 ES 54 AB 02004 855 584 Europe/Madrid 2012-03-04
-2522231 Albarreal de Tajo Albarreal de Tajo Albarreal de Tajo 39.89698 -4.22895 P PPLA3 ES 54 TO 45003 670 451 Europe/Madrid 2012-03-04
-2522242 Albánchez Albanchez Albanchez,Albánchez 37.28361 -2.18229 P PPLA3 ES 51 AL 04004 747 503 Europe/Madrid 2012-03-04
-2522243 Albalat dels Tarongers Albalat dels Tarongers Albalat,Albalat de Segart,Albalat de Taronchers,Albalat dels Taronchers,Albalat dels Tarongers 39.7 -0.33333 P PPLA3 ES 60 V 46010 799 93 Europe/Madrid 2012-03-04
-2522244 Albalat dels Sorells Albalat dels Sorells Albalat dels Sorells 39.53333 -0.35 P PPLA3 ES 60 V 46009 3493 18 Europe/Madrid 2012-03-04
-2522245 Albalat de la Ribera Albalat de la Ribera Albalat de la Ribera 39.2 -0.38333 P PPLA3 ES 60 V 46008 3444 16 Europe/Madrid 2012-03-04
-2522246 Albaladejo del Cuende Albaladejo del Cuende Albaladejo,Albaladejo del Cuende 39.80684 -2.22903 P PPLA3 ES 54 CU 16004 376 882 Europe/Madrid 2012-03-04
-2522247 Albaladejo Albaladejo Albadalejo,Albaladejo 38.61887 -2.80784 P PPLA3 ES 54 CR 13004 1570 924 Europe/Madrid 2012-03-04
-2522249 Albalá Albala Albala,Albalá 39.25592 -6.18528 P PPLA3 ES 57 CC 10007 899 502 Europe/Madrid 2012-03-04
-2522250 Albal Albal Albal 39.4 -0.41667 P PPLA3 ES 60 V 46007 15443 14 Europe/Madrid 2012-03-04
-2522251 Albaida del Aljarafe Albaida del Aljarafe Albaida del Aljarafe 37.42354 -6.16675 P PPLA3 ES 51 SE 41003 2268 173 Europe/Madrid 2012-03-04
-2522253 Albaida Albaida Albaida 38.83798 -0.51721 P PPLA3 ES 60 V 46006 6257 328 Europe/Madrid 2012-03-04
-2522258 Albacete Albacete Al'basete,Albacete,Albasete,albsyt,arubasete,Албасете,Альбасете,אלבסטה,البسيط,アルバセテ 38.98333 -1.85 P PPLA2 ES 54 AB 02003 169716 691 Europe/Madrid 2010-08-22
-2522259 Alaior Alaior Alaior,Alayor 39.93034 4.14039 P PPLA3 ES 07 PM 07002 8671 117 Europe/Madrid 2012-03-04
-2522260 Alatoz Alatoz Alatoz 39.09495 -1.36098 P PPLA3 ES 54 AB 02002 585 860 Europe/Madrid 2012-03-04
-2522261 Alaró Alaro Alaro,Alaró 39.70441 2.79181 P PPLA3 ES 07 PM 07001 4707 217 Europe/Madrid 2012-03-04
-2522265 Alarcón Alarcon Alarcon,Alarcón 39.55 -2.08333 P PPLA3 ES 54 CU 16003 187 784 Europe/Madrid 2012-03-04
-2522267 Alanís Alanis Alanis,Alanís 38.03333 -5.71667 P PPLA3 ES 51 SE 41002 0 670 Europe/Madrid 2012-03-04
-2522268 Alange Alange Alange 38.78494 -6.24574 P PPL ES 57 BA 06083 2018 316 Europe/Madrid 2012-01-19
-2522284 Alamillo Alamillo Alamillo 38.67842 -4.79008 P PPLA3 ES 54 CR 13003 0 450 Europe/Madrid 2012-03-04
-2522286 Alamedilla Alamedilla Alamedilla 37.58232 -3.24241 P PPLA3 ES 51 GR 18002 815 862 Europe/Madrid 2012-03-04
-2522291 Alameda Alameda Alameda 37.2087 -4.6586 P PPLA3 ES 51 MA 29001 5241 430 Europe/Madrid 2012-03-04
-2522293 Alajeró Alajero Alajero,Alajeró 28.06205 -17.24073 P PPL ES 53 TF 38003 2066 804 Atlantic/Canary 2012-01-19
-2522294 Alájar Alajar Alajar,Alájar 37.87408 -6.66536 P PPLA3 ES 51 H 21001 0 580 Europe/Madrid 2012-03-04
-2522297 Alaquàs Alaquas Alacuas,Alacuás,Alakuas,Alaquas,Alaquàs,Алакуас 39.45568 -0.461 P PPLA3 ES 60 V 46005 30392 48 Europe/Madrid 2012-03-04
-2522299 Ajofrín Ajofrin 39.71088 -3.9822 P PPLA3 ES 54 TO 45001 2183 774 Europe/Madrid 2012-03-04
-2522312 Ahillones Ahillones Ahillones 38.26667 -5.85 P PPLA3 ES 57 BA 06003 1101 594 Europe/Madrid 2012-03-04
-2522318 Agulo Agulo Agulo 28.18778 -17.19678 P PPLA3 ES 53 TF 38002 1252 214 Atlantic/Canary 2012-03-04
-2522319 Agullent Agullent Agullent 38.82273 -0.54833 P PPLA3 ES 60 V 46004 2352 410 Europe/Madrid 2012-03-04
-2522325 Agüimes Aguimes Agueimes,Aguimes,Agüimes,Агуимес 27.90539 -15.44609 P PPLA3 ES 53 GC 35002 28924 287 Atlantic/Canary 2012-03-04
-2522333 Águilas Aguilas Agilas,Agudas,Aguilas,Águilas,Агилас 37.4063 -1.58289 P PPLA3 ES 31 MU 30003 34533 23 Europe/Madrid 2012-03-04
-2522335 Aguilar Aguilar Aguilar de la Frontera 37.51476 -4.65717 P PPL ES 51 CO 14042 13509 370 Europe/Madrid 2008-07-25
-2522359 Agudo Agudo Agudo 38.98183 -4.87133 P PPLA3 ES 54 CR 13002 0 566 Europe/Madrid 2012-03-04
-2522366 Aigües Aiguees Aguas de Busot,Aiguees,Aigues,Aigües 38.5 -0.35 P PPLA3 ES 60 A 03004 0 301 Europe/Madrid 2012-03-04
-2522387 Aguadulce Aguadulce Aguadulce 37.25273 -4.99269 P PPLA3 ES 51 SE 41001 1989 269 Europe/Madrid 2012-03-04
-2522388 Aguadulce Aguadulce Barriada de Aguadulce 36.81409 -2.57235 P PPL ES ES 51 AL 04079 13886 38 Europe/Madrid 2009-05-18
-2522412 Agrón Agron Agron,Agrón 37.03023 -3.8287 P PPLA3 ES 51 GR 18001 300 1051 Europe/Madrid 2012-03-04
-2522416 Agres Agres Agres 38.78333 -0.51667 P PPLA3 ES 60 A 03003 709 671 Europe/Madrid 2012-03-04
-2522419 Agost Agost Agost 38.44003 -0.63836 P PPLA3 ES 60 A 03002 4593 350 Europe/Madrid 2012-03-04
-2522423 Agaete Agaete Agaete 28.10023 -15.69998 P PPLA3 ES 53 GC 35001 5459 55 Atlantic/Canary 2012-03-04
-2522425 Atzeneta d'Albaida Atzeneta d'Albaida Adzaneta de Albaida,Atzeneta d'Albaida 38.83333 -0.5 P PPLA3 ES 60 V 46003 1344 384 Europe/Madrid 2012-03-04
-2522428 Adsubia Adsubia Adsubia,L'Atzuvia,L'Atzúvia 38.84819 -0.15324 P PPLA3 ES 60 A 03001 678 108 Europe/Madrid 2012-03-04
-2522430 Adra Adra Abdera,Adra,Адра 36.74961 -3.02055 P PPLA3 ES 51 AL 04003 24373 28 Europe/Madrid 2012-03-04
-2522432 Ador Ador Ador 38.91823 -0.22247 P PPLA3 ES 60 V 46002 1346 85 Europe/Madrid 2012-03-04
-2522437 Adeje Adeje Adeje,Costa Adeje 28.12271 -16.726 P PPLA3 ES 53 TF 38001 43204 284 Atlantic/Canary 2012-03-04
-2522438 Adamuz Adamuz Adamuz 38.02674 -4.52231 P PPLA3 ES 51 CO 14001 4383 237 Europe/Madrid 2012-03-04
-2522446 Aceuchal Aceuchal Acebuchal,Acenchal,Aceuchal 38.64627 -6.48636 P PPLA3 ES 57 BA 06002 5408 307 Europe/Madrid 2012-03-04
-2522460 Acedera Acedera 39.07678 -5.57384 P PPLA3 ES 57 BA 06001 844 297 Europe/Madrid 2012-03-04
-2522474 Acalá del Río Acala del Rio Acala del Rio,Acalá del Río,Alcala,Alcalá 37.5178 -5.98185 P PPL ES 51 SE 41007 10869 22 Europe/Madrid 2012-01-19
-2522476 Abrucena Abrucena Abrucena 37.13226 -2.79711 P PPLA3 ES 51 AL 04002 1379 988 Europe/Madrid 2012-03-04
-2522483 Abla Abla Abla 37.14245 -2.77808 P PPLA3 ES 51 AL 04001 1480 873 Europe/Madrid 2012-03-04
-2522486 Abertura Abertura Abertura 39.24352 -5.81394 P PPLA3 ES 57 CC 10002 509 400 Europe/Madrid 2012-03-04
-2522488 Abenójar Abenojar Abenojar,Abenójar 38.88032 -4.35702 P PPLA3 ES 54 CR 13001 1683 615 Europe/Madrid 2012-03-04
-2522490 Abengibre Abengibre Abengibre 39.21667 -1.53333 P PPLA3 ES 54 AB 02001 991 651 Europe/Madrid 2012-03-04
-2522499 Abarán Abaran Abaran,Abarán,Albaran 38.20551 -1.39907 P PPL ES 31 MU 30011 12991 188 Europe/Madrid 2012-01-19
-2522505 Abanilla Abanilla Abanilla,Albanilla,Favanella,La Zarza de Abanilla 38.20538 -1.04152 P PPLA3 ES 31 MU 30001 6079 207 Europe/Madrid 2012-03-04
-2565056 Punta Umbría Punta Umbria Punta Umbria,Punta Umbría 37.18213 -6.96605 P PPLA3 ES 51 H 21060 14708 10 Europe/Madrid 2012-03-04
-2567529 Groa de Murviedro Groa de Murviedro 39.64167 -0.23889 P PPL ES 60 V 46220 62368 3 Europe/Madrid 2006-01-27
-3104213 Zúñiga Zuniga 42.69247 -2.29982 P PPLA3 ES 32 NA 31265 191 568 Europe/Madrid 2011-07-31
-3104214 Zuñeda Zuneda Zuneda,Zuñeda 42.60501 -3.22632 P PPLA3 ES 55 BU 09485 61 717 Europe/Madrid 2012-03-04
-3104218 Zumaia Zumaia Zumaia,Zumaya 43.29469 -2.25341 P PPLA3 ES 59 SS 20081 8751 2 Europe/Madrid 2012-03-04
-3104219 Zumarraga Zumarraga Zumarraga,Zumárraga 43.08858 -2.31408 P PPLA3 ES 59 SS 20080 10104 364 Europe/Madrid 2012-03-04
-3104223 Zugarramurdi Zugarramurdi Zugarramurdi 43.26964 -1.54113 P PPLA3 ES 32 NA 31264 227 206 Europe/Madrid 2012-03-04
-3104226 Zuera Zuera Zuera 41.86775 -0.78984 P PPLA3 ES 52 Z 50298 6098 283 Europe/Madrid 2012-03-04
-3104228 Zucaina Zucaina Sucaina,Zucaina 40.11667 -0.41667 P PPLA3 ES 60 CS 12142 196 713 Europe/Madrid 2012-03-04
-3104233 Zubieta Zubieta 43.12473 -1.74219 P PPLA3 ES 32 NA 31263 292 209 Europe/Madrid 2012-03-04
-3104252 Zotes del Páramo Zotes del Paramo Zotes del Paramo,Zotes del Páramo 42.27268 -5.73617 P PPLA3 ES 55 LE 24230 572 783 Europe/Madrid 2012-03-04
-3104257 Zorraquín Zorraquin Zorraquin,Zorraquín 42.32565 -3.03925 P PPLA3 ES 27 LO 26183 53 866 Europe/Madrid 2012-03-04
-3104260 Zorita de los Canes Zorita de los Canes Zorita de los Canes 40.33052 -2.88764 P PPLA3 ES 54 GU 19335 99 612 Europe/Madrid 2012-03-04
-3104261 Zorita del Maestrazgo Zorita del Maestrazgo Sorita,Zorita,Zorita del Maestrazgo 40.72817 -0.16667 P PPLA3 ES 60 CS 12141 132 656 Europe/Madrid 2011-07-31
-3104263 Zorita de la Frontera Zorita de la Frontera Zorita de la Frontera 41.01453 -5.19659 P PPLA3 ES 55 SA 37382 256 831 Europe/Madrid 2012-03-04
-3104275 Zazuar Zazuar 41.69528 -3.55451 P PPLA3 ES 55 BU 09483 269 832 Europe/Madrid 2012-03-04
-3104282 Zas Zas 43.09885 -8.91558 P PPLA3 ES 58 C 15093 0 225 Europe/Madrid 2012-03-04
-3104284 Zarzuela del Pinar Zarzuela del Pinar Zarzuela del Pinar 41.26018 -4.18457 P PPLA3 ES 55 SG 40234 553 880 Europe/Madrid 2012-03-04
-3104285 Zarzuela del Monte Zarzuela del Monte Zarzuela del Monte 40.80888 -4.33613 P PPLA3 ES 55 SG 40233 510 1004 Europe/Madrid 2012-03-04
-3104286 Zarzuela de Jadraque Zarzuela de Jadraque Zarzuela de Jadraque 41.06838 -3.04436 P PPLA3 ES 54 GU 19334 49 1042 Europe/Madrid 2012-03-04
-3104289 Zarzuela Zarzuela Zarzuela 40.25902 -2.11034 P PPLA3 ES 54 CU 16280 262 1136 Europe/Madrid 2012-03-04
-3104294 Zarzosa Zarzosa Zarzosa 42.18294 -2.34297 P PPLA3 ES 27 LO 26181 14 975 Europe/Madrid 2012-03-04
-3104296 Zarzalejo Zarzalejo 40.54811 -4.18176 P PPLA3 ES 29 M 28183 1327 1110 Europe/Madrid 2012-03-04
-3104297 Zarza de Tajo Zarza de Tajo Zarza de Tajo 40.01591 -3.12877 P PPLA3 ES 54 CU 16279 267 720 Europe/Madrid 2012-03-04
-3104298 Zarza de Granadilla Zarza de Granadilla Zarza de Granadilla 40.23723 -6.0485 P PPLA3 ES 57 CC 10216 1744 394 Europe/Madrid 2012-03-04
-3104301 Zarratón Zarraton Zarraton,Zarratón 42.51649 -2.88094 P PPLA3 ES 27 LO 26180 248 557 Europe/Madrid 2012-03-04
-3104316 Zarautz Zarautz Zarautz,Zarauz 43.28444 -2.16992 P PPLA3 ES 59 SS 20079 22627 6 Europe/Madrid 2012-03-04
-3104318 Zaratán Zaratan Zaratan,Zaratán 41.65971 -4.78417 P PPLA3 ES 55 VA 47231 2395 755 Europe/Madrid 2012-03-04
-3104320 Zaratamo Zaratamo Zaratamo,Zarátamo 43.21667 -2.86667 P PPLA3 ES 59 BI 48097 1643 153 Europe/Madrid 2012-03-04
-3104321 Zarapicos Zarapicos Zarapicos 41.0383 -5.84526 P PPLA3 ES 55 SA 37380 111 784 Europe/Madrid 2012-03-04
-3104324 Zaragoza Zaragoza Caesaraugusta,Caesarea Augusta,Salduba,Salduie,Saragoca,Saragosa,Saragossa,Saragosse,Saragozza,Saragoça,ZGZ,Zaragosa,Zaragoza,Zaragozo,Zargoza,sa la ge sa,saragosa,srgwsh,srqstt,Сарагоса,סרגוסה,سرقسطة,サラゴサ,萨拉戈萨 41.65606 -0.87734 P PPLA ES 52 Z 50297 674317 214 Europe/Madrid 2010-04-22
-3104330 Zapardiel de la Ribera Zapardiel de la Ribera Zapardiel de la Ribera 40.35554 -5.32826 P PPLA3 ES 55 AV 05267 123 1356 Europe/Madrid 2012-03-04
-3104331 Zapardiel de la Cañada Zapardiel de la Canada Zapardiel de la Canada,Zapardiel de la Cañada 40.60648 -5.33791 P PPLA3 ES 55 AV 05266 157 1151 Europe/Madrid 2012-03-04
-3104333 Zaorejas Zaorejas Zaorejas 40.76209 -2.2012 P PPLA3 ES 54 GU 19333 195 1229 Europe/Madrid 2012-03-04
-3104339 Zamudio Zamudio Zamudia,Zamudio,Zamudio-Derio 43.286 -2.87 P PPL ES 59 BI 48901 3192 45 Europe/Madrid 2012-01-19
-3104342 Zamora Zamora Samora,Zamora,Zamoro,samora,thamora,zamwra,Самора,زامورا,থামোরা,サモラ 41.5 -5.75 P PPLA2 ES 55 ZA 49275 66293 633 Europe/Madrid 2010-08-23
-3104345 Zambrana Zambrana Zambrana,Zanbrana 42.66102 -2.87909 P PPLA3 ES 59 VI 01062 367 457 Europe/Madrid 2012-03-04
-3104347 Zamayón Zamayon Zamayon,Zamayón 41.14862 -5.83054 P PPLA3 ES 55 SA 37379 190 814 Europe/Madrid 2012-03-04
-3104349 Zamarra Zamarra Zamarra 40.51893 -6.45248 P PPLA3 ES 55 SA 37378 136 781 Europe/Madrid 2012-03-04
-3104358 Zaldibia Zaldivia Zaldibia,Zaldivia 43.0372 -2.1506 P PPLA3 ES 59 SS 20078 0 172 Europe/Madrid 2012-03-04
-3104359 Zaldibar Zaldibar Zaldibar,Zaldivar,Zaldua,Zaldívar 43.16667 -2.53333 P PPLA3 ES ES 59 BI 48095 0 421 Europe/Madrid 2012-03-04
-3104368 Saidí / Zaidín Saidi / Zaidin Saidi,Saidi / Zaidin,Saidí,Saidí / Zaidín,Zaidin,Zaidín 41.60402 0.26429 P PPL ES 52 HU 22254 1721 162 Europe/Madrid 2007-02-13
-3104372 Zafrilla Zafrilla Zafrilla 40.2 -1.61667 P PPLA3 ES 54 CU 16278 126 1465 Europe/Madrid 2011-07-31
-3104374 Zael Zael Zael 42.10587 -3.82623 P PPLA3 ES 55 BU 09480 126 842 Europe/Madrid 2012-03-04
-3104390 Iurreta Iurreta Iurreta,Yurreta 43.18333 -2.63333 P PPLA3 ES 59 BI 48910 0 131 Europe/Madrid 2012-03-04
-3104394 Yunquera de Henares Yunquera de Henares Yunquera,Yunquera de Henares,Yunqueria de Henares,Yunquería de Henares 40.75139 -3.1626 P PPLA3 ES 54 GU 19331 2420 688 Europe/Madrid 2012-03-04
-3104395 Yuncos Yuncos Yuncos 40.0859 -3.87106 P PPLA3 ES 54 TO 45205 5615 553 Europe/Madrid 2012-03-04
-3104397 Yuncler Yuncler Yuncler 40.04079 -3.89979 P PPLA3 ES 54 TO 45203 2467 527 Europe/Madrid 2012-03-04
-3104408 Yésero Yesero Yesero,Yésero 42.61911 -0.2502 P PPLA3 ES 52 HU 22253 76 1130 Europe/Madrid 2012-03-04
-3104412 Yesa Yesa 42.62025 -1.2036 P PPLA3 ES 32 NA 31261 259 497 Europe/Madrid 2012-03-04
-3104425 Yelo Yelo Yelo 41.21667 -2.51667 P PPLA3 ES 55 SO 42219 57 1130 Europe/Madrid 2012-03-04
-3104427 Yeles Yeles 40.12035 -3.80487 P PPLA3 ES 54 TO 45201 2967 550 Europe/Madrid 2011-07-31
-3104428 Yélamos de Arriba Yelamos de Arriba Yelamos de Arriba,Yélamos de Arriba 40.64008 -2.8434 P PPLA3 ES 54 GU 19330 119 949 Europe/Madrid 2012-03-04
-3104429 Yélamos de Abajo Yelamos de Abajo Yelamos de Abajo,Yélamos de Abajo 40.63092 -2.85803 P PPLA3 ES 54 GU 19329 81 943 Europe/Madrid 2012-03-04
-3104435 Yecla de Yeltes Yecla de Yeltes Yecla,Yecla de Yeltes 40.95917 -6.48904 P PPLA3 ES 55 SA 37377 331 721 Europe/Madrid 2012-03-04
-3104436 Yebra de Basa Yebra de Basa Aebura 42.48647 -0.28178 P PPLA3 ES 52 HU 22252 165 886 Europe/Madrid 2012-03-29
-3104438 Yebra Yebra Aebura,Yebra 40.35702 -2.9663 P PPLA3 ES 54 GU 19327 515 750 Europe/Madrid 2012-03-29
-3104439 Yebes Yebes Yebes 40.53162 -3.10782 P PPLA3 ES 54 GU 19326 246 913 Europe/Madrid 2012-03-04
-3104443 Yanguas de Eresma Yanguas de Eresma Yanguas de Eresma 41.07201 -4.23905 P PPLA3 ES 55 SG 40231 202 895 Europe/Madrid 2012-03-04
-3104444 Yanguas Yanguas Yangua,Yanguas 42.10172 -2.33986 P PPLA3 ES 55 SO 42218 129 989 Europe/Madrid 2012-03-04
-3104445 Igantzi Igantzi Igantzi,Yanci 43.22526 -1.70048 P PPLA3 ES 32 NA 31259 0 209 Europe/Madrid 2012-03-04
-3104455 Wamba Wamba Wamba 41.67525 -4.91748 P PPLA3 ES 55 VA 47230 372 789 Europe/Madrid 2012-03-04
-3104461 Vozmediano Vozmediano Vozmediano 41.83752 -1.8558 P PPLA3 ES 55 SO 42217 44 902 Europe/Madrid 2012-03-04
-3104466 Vizmanos Vizmanos Vizmanos 42.02342 -2.40869 P PPLA3 ES 55 SO 42216 36 1207 Europe/Madrid 2012-03-04
-3104470 Vizcaínos Vizcainos Vizcainos,Vizcaínos 42.10359 -3.26698 P PPLA3 ES 55 BU 09478 54 1033 Europe/Madrid 2012-03-04
-3104475 Viveiro Viveiro 43.66228 -7.59344 P PPLA3 ES 58 LU 27066 16238 30 26 Europe/Madrid 2012-03-04
-3104482 Vivel del Río Martín Vivel del Rio Martin Vivel,Vivel del Rio,Vivel del Rio Martin,Vivel del Río Martín 40.87092 -0.93889 P PPLA3 ES 52 TE 44267 84 976 Europe/Madrid 2012-03-04
-3104490 Biure Biure Biure 42.33734 2.89513 P PPLA3 ES 56 GI 17234 0 77 Europe/Madrid 2012-03-04
-3104499 Vitoria-Gasteiz Vitoria-Gasteiz Bittorixa,Gasteiz,Victoriacum,Vitoria,Vitoria-Gasteiz,Vitorija,Vitorio,Vitòria,Vitória,bitoria,wytwryh,Витория,ויטוריה,ビトリア 42.85 -2.66667 P PPLA ES 59 VI 01059 235661 522 Europe/Madrid 2012-01-19
-3104501 Vitigudino Vitigudino 41.00912 -6.43404 P PPLA3 ES 55 SA 37376 2961 770 Europe/Madrid 2012-03-04
-3104504 Vita Vita Vita 40.81178 -5.00583 P PPLA3 ES 55 AV 05265 96 997 Europe/Madrid 2012-03-04
-3104509 Vistabella del Maestrazgo Vistabella del Maestrazgo Vistabella,Vistabella de Maestrazgo,Vistabella del Maestrat,Vistabella del Maestrazgo 40.29616 -0.29435 P PPLA3 ES 60 CS 12139 416 1219 Europe/Madrid 2012-03-04
-3104510 Vistabella Vistabella Vistabella 41.2185 -1.15358 P PPLA3 ES 52 Z 50295 33 744 Europe/Madrid 2012-03-04
-3104520 Visiedo Visiedo Visedo,Visiedo,Viziedo 40.68558 -1.09708 P PPLA3 ES 52 TE 44266 186 1187 Europe/Madrid 2012-03-04
-3104551 Vinuesa Vinuesa Vinuesa 41.91032 -2.76483 P PPLA3 ES 55 SO 42215 1022 1113 Europe/Madrid 2012-03-04
-3104555 Viñuelas Vinuelas Vinuelas,Viñuelas 40.79229 -3.34036 P PPLA3 ES 54 GU 19325 117 868 Europe/Madrid 2012-03-04
-3104566 Viniegra de Arriba Viniegra de Arriba Viniegra de Arriba 42.09513 -2.83304 P PPLA3 ES 27 LO 26179 45 1184 Europe/Madrid 2012-03-04
-3104567 Viniegra de Abajo Viniegra de Abajo Viniegra de Abajo 42.15055 -2.8893 P PPLA3 ES 27 LO 26178 110 887 Europe/Madrid 2012-03-04
-3104568 Viñegra de Moraña Vinegra de Morana Vinegra de Morana,Viñegra de Moraña 40.85074 -4.92114 P PPLA3 ES 55 AV 05264 81 910 Europe/Madrid 2012-03-04
-3104570 Vinebre Vinebre Vinebre 41.18464 0.58945 P PPLA3 ES 56 T 43177 448 52 Europe/Madrid 2012-03-04
-3104573 Vindel Vindel Vindel 40.58743 -2.3806 P PPLA3 ES 54 CU 16275 30 893 Europe/Madrid 2012-03-04
-3104583 Viñas Vinas 41.7733 -6.47116 P PPLA3 ES 55 ZA 49273 0 757 Europe/Madrid 2012-03-04
-3104584 Vinaròs Vinaros Vinaros,Vinarose,Vinaroz,Винаросе 40.47033 0.47559 P PPLA3 ES 60 CS 12138 28273 12 Europe/Madrid 2012-03-04
-3104590 Vinaixa Vinaixa 41.43333 0.98333 P PPLA3 ES 56 L 25255 574 474 Europe/Madrid 2012-03-04
-3104600 Vimianzo Vimianzo 43.10988 -9.03351 P PPLA3 ES 58 C 15092 0 136 Europe/Madrid 2012-03-04
-3104603 Vimbodí Vimbodi Vimbodi,Vimbodí 41.40069 1.05056 P PPLA3 ES 56 T 43176 1030 489 Europe/Madrid 2012-03-04
-3104606 Vilviestre del Pinar Vilviestre del Pinar Vilviestre del Pinar 41.95033 -3.07803 P PPLA3 ES 55 BU 09425 742 1144 Europe/Madrid 2012-03-04
-3104608 Vilvestre Vilvestre Vilvestre 41.10636 -6.72725 P PPLA3 ES 55 SA 37350 527 583 Europe/Madrid 2012-03-04
-3104609 Vilobí d'Onyar Vilobi d'Onyar Vilobi d'Onyar,Vilobí d'Onyar,Vilovi de Onar,Vilovi de Oñar,Viloví de Oñar 41.88333 2.75 P PPLA3 ES 56 GI 17233 0 114 Europe/Madrid 2012-03-04
-3104611 Vilobí del Penedès Vilobi del Penedes Vilobi del Penedes,Vilobí del Penedès,Vilovi,Viloví 41.38333 1.65 P PPLA3 ES 56 B 08304 0 274 Europe/Madrid 2012-03-04
-3104618 Viloria de Rioja Viloria de Rioja Viloria de Rioja 42.42608 -3.10056 P PPLA3 ES 55 BU 09424 61 799 Europe/Madrid 2012-03-04
-3104623 Viloria Viloria Viloria 41.44604 -4.38356 P PPLA3 ES 55 VA 47194 389 877 Europe/Madrid 2012-03-04
-3104624 Vilopriu Vilopriu 42.1 3 P PPLA3 ES 56 GI 17232 183 103 Europe/Madrid 2012-03-04
-3104630 Villovieco Villovieco Villovieco 42.29478 -4.48122 P PPLA3 ES 55 P 34246 105 787 Europe/Madrid 2012-03-04
-3104635 Villota del Páramo Villota del Paramo Villota del Paramo,Villota del Páramo 42.55234 -4.84893 P PPLA3 ES 55 P 34245 402 1003 Europe/Madrid 2012-03-04
-3104639 Villoslada de Cameros Villoslada de Cameros Villoslada,Villoslada de Cameros 42.11383 -2.67413 P PPLA3 ES 27 LO 26177 398 1077 Europe/Madrid 2012-03-04
-3104643 Villoruela Villoruela Villoruela 41.0086 -5.3938 P PPLA3 ES 55 SA 37375 983 828 Europe/Madrid 2012-03-04
-3104644 Villoruebo Villoruebo Villoruebo 42.16874 -3.44159 P PPLA3 ES 55 BU 09476 70 1122 Europe/Madrid 2012-03-04
-3104652 Villoría Villoria Villoria,Villoría 40.99435 -5.37363 P PPL ES 55 SA 37374 1390 819 Europe/Madrid 2012-01-19
-3104653 Villores Villores Villores 40.67478 -0.20023 P PPLA3 ES 60 CS 12137 52 727 Europe/Madrid 2012-03-04
-3104656 Villoldo Villoldo Villoldo 42.28333 -4.6 P PPLA3 ES 55 P 34243 432 803 Europe/Madrid 2012-03-04
-3104657 Villodrigo Villodrigo Villadrigo,Villodrigo 42.14436 -4.09527 P PPLA3 ES 55 P 34242 146 764 Europe/Madrid 2012-03-04
-3104658 Villodre Villodre 42.21161 -4.24484 P PPLA3 ES 55 P 34241 34 766 Europe/Madrid 2012-03-04
-3104672 Villel de Mesa Villel de Mesa Villel,Villel de Mesa 41.12616 -1.99072 P PPLA3 ES 54 GU 19324 221 939 Europe/Madrid 2012-03-04
-3104674 Villel Villel Villel 40.23464 -1.18611 P PPLA3 ES 52 TE 44264 361 824 Europe/Madrid 2012-03-04
-3104677 Villeguillo Villeguillo Villeguillo 41.2529 -4.57951 P PPLA3 ES 55 SG 40230 137 771 Europe/Madrid 2012-03-04
-3104678 Villegas Villegas Villegas 42.46866 -4.01759 P PPLA3 ES 55 BU 09473 112 825 Europe/Madrid 2012-03-04
-3104680 Villazopeque Villazopeque 42.19845 -4.01688 P PPLA3 ES 55 BU 09472 77 782 Europe/Madrid 2012-03-04
-3104682 Villazanzo de Valderaduey Villazanzo de Valderaduey Villazanzo de Valderaduey 42.53592 -4.96462 P PPLA3 ES 55 LE 24229 657 915 Europe/Madrid 2012-03-04
-3104683 Villazala Villazala Villazala 42.36146 -5.856 P PPLA3 ES 55 LE 24228 928 801 Europe/Madrid 2012-03-04
-3104689 Vilaión Vilaion Villayon,Villayón 43.44859 -6.70534 P PPL ES 34 O 33077 1795 372 Europe/Madrid 2012-02-23
-3104693 Villaviudas Villaviudas Villaviudas 41.96228 -4.342 P PPLA3 ES 55 P 34238 406 764 Europe/Madrid 2012-03-04
-3104694 Villavieja de Yeltes Villavieja de Yeltes Villarieja,Villavieja,Villavieja de Yeltes 40.87573 -6.46792 P PPLA3 ES 55 SA 37373 1043 743 Europe/Madrid 2012-03-04
-3104696 Villavieja del Lozoya Villavieja del Lozoya Villavieja del Lozoya 41.00396 -3.6687 P PPLA3 ES 29 M 28182 197 1040 Europe/Madrid 2012-03-04
-3104703 Villaviciosa de Odón Villaviciosa de Odon Vil'javisiosa-de-Odon,Villaviciosa de Odon,Villaviciosa de Odón,Вильявисиоса-де-Одон 40.35692 -3.90011 P PPLA3 ES 29 M 28181 26475 648 Europe/Madrid 2012-03-04
-3104707 Villaviciosa Villaviciosa 43.48126 -5.43574 P PPLA3 ES 34 O 33076 14775 6 Europe/Madrid 2012-03-04
-3104709 Villavicencio de los Caballeros Villavicencio de los Caballeros Villavicencio de los Caballeros 42.05893 -5.23566 P PPLA3 ES 55 VA 47229 294 724 Europe/Madrid 2012-03-04
-3104711 Villaveza de Valverde Villaveza de Valverde Villaveza,Villaveza de Valverde 41.94516 -5.84849 P PPLA3 ES 55 ZA 49272 129 711 Europe/Madrid 2012-03-04
-3104712 Villaveza del Agua Villaveza del Agua Villaveza del Agua 41.91922 -5.67871 P PPLA3 ES 55 ZA 49271 262 708 Europe/Madrid 2012-03-04
-3104717 Villaverde-Mogina Villaverde-Mogina Villaverde-Mogina 42.16041 -4.05024 P PPLA3 ES 55 BU 09467 104 776 Europe/Madrid 2012-03-04
-3104720 Villaverde de Rioja Villaverde de Rioja Villaverde de Rioja 42.32051 -2.8137 P PPLA3 ES 27 LO 26176 78 798 Europe/Madrid 2012-03-04
-3104722 Villaverde de Montejo Villaverde de Montejo Villaverde de Montejo 41.52225 -3.65452 P PPLA3 ES 55 SG 40229 56 1048 Europe/Madrid 2012-03-04
-3104723 Villaverde de Medina Villaverde de Medina Villaverde de Medina 41.30687 -5.02625 P PPLA3 ES 55 VA 47228 598 734 Europe/Madrid 2012-03-04
-3104725 Villaverde del Monte Villaverde del Monte Villaverde del Monte 42.16075 -3.81421 P PPLA3 ES 55 BU 09466 160 849 Europe/Madrid 2012-03-04
-3104733 Villaverde de Guareña Villaverde de Guarena Villaverde de Guarena,Villaverde de Guareña 41.06406 -5.52492 P PPLA3 ES 55 SA 37372 203 831 Europe/Madrid 2012-03-04
-3104752 Villavendimio Villavendimio Villavendimio 41.57812 -5.34287 P PPLA3 ES 55 ZA 49270 197 728 Europe/Madrid 2012-03-04
-3104753 Villavellid Villavellid Villavellid 41.69218 -5.2763 P PPLA3 ES 55 VA 47227 81 766 Europe/Madrid 2012-03-04
-3104754 Villavelayo Villavelayo Villavelayo 42.13084 -2.98565 P PPLA3 ES 27 LO 26175 80 938 Europe/Madrid 2012-03-04
-3104764 Villavaquerín Villavaquerin Villavaquerin,Villavaquerín 41.66357 -4.46287 P PPLA3 ES 55 VA 47226 211 764 Europe/Madrid 2012-03-04
-3104770 Villaumbrales Villaumbrales Villaumbrales 42.08873 -4.61384 P PPLA3 ES 55 P 34237 796 760 Europe/Madrid 2012-03-04
-3104773 Villaturiel Villaturiel Villaturiel 42.51819 -5.48615 P PPLA3 ES 55 LE 24227 1748 798 Europe/Madrid 2012-03-04
-3104774 Villaturde Villaturde Villaturde 42.37769 -4.67085 P PPLA3 ES 55 P 34236 220 844 Europe/Madrid 2012-03-04
-3104776 Villatuerta Villatuerta 42.66022 -1.99247 P PPLA3 ES 32 NA 31257 1026 428 Europe/Madrid 2012-03-04
-3104777 Villatuelda Villatuelda Villatuelda 41.81499 -3.88054 P PPLA3 ES 55 BU 09464 63 862 Europe/Madrid 2012-03-04
-3104781 Villatoro Villatoro Villatoro,Villatoros 40.55609 -5.11262 P PPLA3 ES 55 AV 05263 247 1195 Europe/Madrid 2012-03-04
-3104796 Villastar Villastar Villastar 40.28102 -1.15139 P PPLA3 ES 52 TE 44263 318 861 Europe/Madrid 2012-03-04
-3104798 Villasrubias Villasrubias Villasrubias 40.33822 -6.6392 P PPLA3 ES 55 SA 37371 281 856 Europe/Madrid 2012-03-04
-3104812 Villasila de Valdavia Villasila de Valdavia Villasila,Villasila de Valdavia 42.53192 -4.55884 P PPLA3 ES 55 P 34234 91 868 Europe/Madrid 2012-03-04
-3104814 Villasexmir Villasexmir Villasexmir 41.63943 -5.0647 P PPLA3 ES 55 VA 47225 108 726 Europe/Madrid 2012-03-04
-3104817 Villaselán Villaselan Villaselan,Villaselán 42.56105 -5.0482 P PPLA3 ES 55 LE 24226 0 864 Europe/Madrid 2012-03-04
-3104818 Villaseco de los Reyes Villaseco de los Reyes Villaseco de los Reyes 41.16262 -6.18426 P PPLA3 ES 55 SA 37370 415 773 Europe/Madrid 2012-03-04
-3104819 Villaseco de los Gamitos Villaseco de los Gamitos Villaseco de los Gamitos 41.03621 -6.11323 P PPLA3 ES 55 SA 37369 203 834 Europe/Madrid 2012-03-04
-3104826 Villaseca de Uceda Villaseca de Uceda Villaseca de Uceda 40.81827 -3.34904 P PPLA3 ES 54 GU 19323 77 899 Europe/Madrid 2012-03-04
-3104829 Villaseca de Henares Villaseca de Henares Villaseca de Henares 40.9606 -2.79775 P PPLA3 ES 54 GU 19322 56 861 Europe/Madrid 2012-03-04
-3104830 Villaseca de Arciel Villaseca de Arciel Villaseca de Arciel 41.6243 -2.16176 P PPLA3 ES 55 SO 42213 39 1007 Europe/Madrid 2012-03-04
-3104837 Villasdardo Villasdardo Villasdardo 41.00448 -6.16303 P PPLA3 ES 55 SA 37368 18 812 Europe/Madrid 2012-03-04
-3104838 Villasbuenas de Gata Villasbuenas de Gata Villasbuenas de Gata 40.17879 -6.62641 P PPLA3 ES 57 CC 10215 491 423 Europe/Madrid 2012-03-04
-3104839 Villasbuenas Villasbuenas Villasbuenas 41.06263 -6.59662 P PPLA3 ES 55 SA 37367 269 734 Europe/Madrid 2012-03-04
-3104840 Villasayas Villasayas Villasayas 41.35291 -2.61011 P PPLA3 ES 55 SO 42212 94 1028 Europe/Madrid 2012-03-04
-3104841 Villasarracino Villasarracino Villasarracino 42.41207 -4.49633 P PPLA3 ES 55 P 34233 218 843 Europe/Madrid 2012-03-04
-3104846 Villasandino Villasandino 42.37072 -4.10975 P PPLA3 ES 55 BU 09460 235 792 Europe/Madrid 2012-03-04
-3104847 Villasana de Mena Villasana de Mena Valle de Mena,Villasana de Mena,Villasana de Mona 43.10017 -3.28253 P PPL ES 55 BU 09410 3427 318 Europe/Madrid 2012-01-19
-3104849 Villasabariego Villasabariego Villasabariego 42.53288 -5.41322 P PPLA3 ES 55 LE 24225 1139 848 Europe/Madrid 2012-03-04
-3104853 Villarta-Quintana Villarta-Quintana Villarta-Quintana 42.42998 -3.0484 P PPLA3 ES 27 LO 26174 179 754 Europe/Madrid 2011-07-31
-3104859 Villarroya de los Pinares Villarroya de los Pinares Villarroya de los Pinares 40.52917 -0.669 P PPLA3 ES 52 TE 44262 187 1328 Europe/Madrid 2012-03-04
-3104860 Villarroya del Campo Villarroya del Campo Villarroya,Villarroya del Campo 41.14309 -1.32416 P PPLA3 ES 52 Z 50294 82 925 Europe/Madrid 2012-03-04
-3104861 Villarroya de la Sierra Villarroya de la Sierra Villarroya,Villarroya de la Sierra 41.46346 -1.7835 P PPLA3 ES 52 Z 50293 612 749 Europe/Madrid 2012-03-04
-3104862 Villarroya Villarroya Villarrolla,Villarroya 42.13053 -2.06896 P PPLA3 ES 27 LO 26173 9 925 Europe/Madrid 2012-03-04
-3104872 Villarrín de Campos Villarrin de Campos Villarrin de Campos,Villarrín de Campos 41.79522 -5.63898 P PPLA3 ES 55 ZA 49268 563 686 Europe/Madrid 2012-03-04
-3104875 Urretxu Urretxu Urretxu,Villarreal de Urrechu,Villarreal de Urrechua 43.091 -2.31701 P PPLA3 ES 59 SS 20077 0 358 Europe/Madrid 2012-03-04
-3104876 Villarreal de Huerva Villarreal de Huerva Villareal,Villarreal de Huerva 41.19034 -1.28983 P PPLA3 ES 52 Z 50292 197 871 Europe/Madrid 2012-03-04
-3104882 Villarramiel Villarramiel Villarramiel 42.043 -4.91215 P PPLA3 ES 55 P 34232 991 766 Europe/Madrid 2012-03-04
-3104884 Villarrabé Villarrabe Villarrabe,Villarrabé 42.4209 -4.78445 P PPLA3 ES 55 P 34231 242 903 Europe/Madrid 2012-03-04
-3104887 Villarquemado Villarquemado Villarquemado 40.5175 -1.265 P PPLA3 ES 52 TE 44261 943 1001 Europe/Madrid 2012-03-04
-3104895 Areatza Areatza Areatza,Villaro 43.11667 -2.76667 P PPLA3 ES 59 BI 48093 0 141 Europe/Madrid 2012-03-04
-3104899 Villarmuerto Villarmuerto Villarmuerto 41.0562 -6.36294 P PPLA3 ES 55 SA 37366 51 764 Europe/Madrid 2012-03-04
-3104909 Villarmentero de Esgueva Villarmentero de Esgueva Villarmentero de Esgueva 41.68515 -4.54636 P PPLA3 ES 55 VA 47224 127 731 Europe/Madrid 2012-03-04
-3104910 Villarmentero de Campos Villarmentero de Campos Villarmentero de Campos 42.29777 -4.49992 P PPLA3 ES 55 P 34230 16 790 Europe/Madrid 2012-03-04
-3104919 Villarmayor Villarmayor Villarmayor 41.01514 -5.97151 P PPLA3 ES 55 SA 37365 212 828 Europe/Madrid 2012-03-04
-3104921 Villarluengo Villarluengo Villarluengo 40.64842 -0.53066 P PPLA3 ES 52 TE 44260 212 1121 Europe/Madrid 2012-03-04
-3104930 Villarino de los Aires Villarino de los Aires Villarino,Villarino de los Aires 41.27102 -6.46847 P PPLA3 ES 55 SA 37364 1078 604 Europe/Madrid 2012-03-04
-3104932 Vilariño de Conso Vilarino de Conso San Martin de Villarino de Conso 42.16667 -7.18333 P PPLA3 ES ES 58 OR 32092 0 764 Europe/Madrid 2012-03-04
-3104957 Villariezo Villariezo Villariezo 42.26965 -3.73272 P PPLA3 ES 55 BU 09458 414 860 Europe/Madrid 2012-03-04
-3104967 Villares de Yeltes Villares de Yeltes Villares de Yeltes 40.86594 -6.413 P PPLA3 ES 55 SA 37363 162 715 Europe/Madrid 2012-03-04
-3104968 Villares de Órbigo Villares de Orbigo Villares de Orbigo,Villares de Órbigo 42.46955 -5.91002 P PPLA3 ES 55 LE 24224 843 829 Europe/Madrid 2012-03-04
-3104969 Villares de la Reina Villares de la Reina Villares de la Reina 41.00832 -5.64881 P PPLA3 ES 55 SA 37362 4079 812 Europe/Madrid 2012-03-04
-3104970 Villares de Jadraque Villares de Jadraque Villares de Jadraque 41.10169 -3.02558 P PPLA3 ES 54 GU 19321 51 1042 Europe/Madrid 2012-03-04
-3104979 Villarejo de Salvanés Villarejo de Salvanes Villarejo de Salvanes,Villarejo de Salvanés 40.16663 -3.27277 P PPL ES 29 M 28110 6420 755 Europe/Madrid 2012-01-19
-3104980 Villarejo de Órbigo Villarejo de Orbigo Villarejo de Orbigo,Villarejo de Órbigo 42.44558 -5.90462 P PPLA3 ES 55 LE 24223 3280 817 Europe/Madrid 2012-03-04
-3104982 Villarejo del Valle Villarejo del Valle Villarejo del Valle 40.28638 -4.99674 P PPLA3 ES 55 AV 05262 476 841 Europe/Madrid 2012-03-04
-3104985 Villarejo de la Peñuela Villarejo de la Penuela Villarejo de la Penuela,Villarejo de la Peñuela 40.08745 -2.40996 P PPLA3 ES 54 CU 16265 34 943 Europe/Madrid 2012-03-04
-3104989 Villarejo Villarejo Villarejo 42.37417 -2.88712 P PPLA3 ES 27 LO 26172 41 828 Europe/Madrid 2012-03-04
-3104998 Villardondiego Villardondiego Villardondiego 41.58483 -5.37707 P PPLA3 ES 55 ZA 49267 120 737 Europe/Madrid 2012-03-04
-3104999 Villárdiga Villardiga Villardiga,Villárdiga 41.8195 -5.46439 P PPLA3 ES 55 ZA 49266 100 685 Europe/Madrid 2012-03-04
-3105001 Villardiegua de la Ribera Villardiegua de la Ribera Villardiegua de la Ribera 41.53543 -6.18327 P PPLA3 ES 55 ZA 49265 158 763 Europe/Madrid 2012-03-04
-3105009 Villar de Torre Villar de Torre Villar de Torre 42.37133 -2.86411 P PPLA3 ES 27 LO 26171 259 758 Europe/Madrid 2012-03-04
-3105018 Villar de Samaniego Villar de Samaniego Villar de Samaniego 41.11667 -6.43333 P PPLA3 ES 55 SA 37361 114 751 Europe/Madrid 2012-03-04
-3105022 Villar de Plasencia Villar de Plasencia Villar de Plasencia 40.13773 -6.0279 P PPLA3 ES 57 CC 10214 242 473 Europe/Madrid 2012-03-04
-3105023 Villar de Peralonso Villar de Peralonso Villar de Peralonso 41.03223 -6.22284 P PPLA3 ES 55 SA 37360 318 821 Europe/Madrid 2012-03-04
-3105028 Villar de Olalla Villar de Olalla Villar de Olalla,Villar de Ollala 40.01496 -2.19561 P PPLA3 ES 54 CU 16263 1028 911 Europe/Madrid 2012-03-04
-3105038 Villar del Salz Villar del Salz Villar del Salz 40.682 -1.49967 P PPLA3 ES 52 TE 44258 102 1215 Europe/Madrid 2012-03-04
-3105039 Villar del Río Villar del Rio Villar del Rio,Villar del Río 42.07574 -2.35082 P PPLA3 ES 55 SO 42209 175 1009 Europe/Madrid 2012-03-04
-3105044 Villar de los Navarros Villar de los Navarros Villar de los Navarros 41.15949 -1.04199 P PPLA3 ES 52 Z 50291 145 795 Europe/Madrid 2012-03-04
-3105046 Villar del Olmo Villar del Olmo Villar del Olmo 40.33468 -3.23399 P PPLA3 ES 29 M 28179 1835 672 Europe/Madrid 2012-03-04
-3105049 Villar del Infantado Villar del Infantado Villar del Infantado 40.45514 -2.47905 P PPLA3 ES 54 CU 16259 50 769 Europe/Madrid 2012-03-04
-3105052 Villar del Cobo Villar del Cobo Villar del Cobo 40.39475 -1.67332 P PPLA3 ES 52 TE 44257 224 1433 Europe/Madrid 2012-03-04
-3105053 Villar del Campo Villar del Campo Villar del Campo 41.78881 -2.14955 P PPLA3 ES 55 SO 42208 36 1036 Europe/Madrid 2012-03-04
-3105054 Villar del Buey Villar del Buey Villar del Buey 41.33024 -6.18936 P PPLA3 ES 55 ZA 49264 790 772 Europe/Madrid 2012-03-04
-3105055 Villar de la Yegua Villar de la Yegua Villar de la Yegua 40.72554 -6.70364 P PPLA3 ES 55 SA 37359 269 708 Europe/Madrid 2012-03-04
-3105058 Villar del Ala Villar del Ala Villar del Ala 41.91638 -2.56651 P PPLA3 ES 55 SO 42207 54 1147 Europe/Madrid 2012-03-04
-3105064 Villar de Gallimazo Villar de Gallimazo Villar de Gallimazo 40.95367 -5.28819 P PPLA3 ES 55 SA 37358 186 859 Europe/Madrid 2012-03-04
-3105066 Villardefrades Villardefrades Villardefrades 41.72358 -5.25513 P PPLA3 ES 55 VA 47223 212 725 Europe/Madrid 2012-03-04
-3105069 Villar de Fallaves Villar de Fallaves Villar de Fallaves 41.92503 -5.34039 P PPLA3 ES 55 ZA 49263 94 697 Europe/Madrid 2012-03-04
-3105071 Villar de Domingo García Villar de Domingo Garcia Villar de Domingo Garcia,Villar de Domingo García 40.23732 -2.29136 P PPLA3 ES 54 CU 16254 272 944 Europe/Madrid 2012-03-04
-3105073 Villar de Corneja Villar de Corneja Villar de Corneja 40.47462 -5.43307 P PPLA3 ES 55 AV 05261 72 1001 Europe/Madrid 2012-03-04
-3105077 Villardeciervos Villardeciervos Villardeciervos 41.94206 -6.28647 P PPLA3 ES 55 ZA 49262 514 856 Europe/Madrid 2012-03-04
-3105079 Villar de Ciervo Villar de Ciervo Villar de Ciervo 40.73772 -6.7385 P PPLA3 ES 55 SA 37357 349 686 Europe/Madrid 2012-03-04
-3105103 Villaralbo Villaralbo Villaralbo 41.49224 -5.68359 P PPLA3 ES 55 ZA 49261 1672 641 Europe/Madrid 2012-03-04
-3105144 Villaquirán de los Infantes Villaquiran de los Infantes Villaquiran,Villaquirán 42.22744 -4.00864 P PPLA3 ES 55 BU 09456 175 813 Europe/Madrid 2012-03-04
-3105145 Villaquirán de la Puebla Villaquiran de la Puebla 42.28287 -4.10037 P PPLA3 ES 55 BU 09455 54 813 Europe/Madrid 2012-03-04
-3105148 Villaquilambre Villaquilambre Villaquilambre 42.64685 -5.55835 P PPLA3 ES 55 LE 24222 17013 893 Europe/Madrid 2012-03-04
-3105149 Villaquejida Villaquejida Villaquejida 42.145 -5.59699 P PPLA3 ES 55 LE 24221 1019 725 Europe/Madrid 2012-03-04
-3105152 Villaprovedo Villaprovedo Villaprovedo 42.51674 -4.39645 P PPLA3 ES 55 P 34229 82 875 Europe/Madrid 2012-03-04
-3105180 Villaobispo de Otero Villaobispo de Otero Villaobispo,Villaobispo de Otero 42.50065 -6.05809 P PPLA3 ES 55 LE 24219 649 868 Europe/Madrid 2012-03-04
-3105182 Villanuño de Valdavia Villanuno de Valdavia Villanuno de Valdavia,Villanuño de Valdavia 42.50775 -4.51887 P PPLA3 ES 55 P 34228 108 858 Europe/Madrid 2012-03-04
-3105184 Vilanova i la Geltrú Vilanova i la Geltru Vilanova,Vilanova i la Geltru,Vilanova i la Geltrú 41.22392 1.72511 P PPL ES 56 B 08307 65890 25 Europe/Madrid 2010-04-22
-3105192 Villanueva de Viver Villanueva de Viver Vilanova de la Reina,Villanueva de Viver 40.05 -0.65 P PPLA3 ES 60 CS 12133 68 968 Europe/Madrid 2012-03-04
-3105195 Villanueva de Valdegovía Villanueva de Valdegovia Valdegobia,Valdegovia,Villanueva de Valdegovia,Villanueva de Valdegovía 42.84777 -3.09883 P PPL ES 59 VI 01055 1080 550 Europe/Madrid 2012-01-19
-3105196 Villanueva de Teba Villanueva de Teba Villanueva de Teba 42.6489 -3.16313 P PPLA3 ES 55 BU 09454 56 725 Europe/Madrid 2012-03-04
-3105198 Villanueva de Sigena Villanueva de Sigena 41.71576 -0.00897 P PPLA3 ES 52 HU 22251 533 235 Europe/Madrid 2012-03-04
-3105199 Villanueva de San Mancio Villanueva de San Mancio Villanueva de San Mancio 41.92842 -5.012 P PPLA3 ES 55 VA 47222 125 744 Europe/Madrid 2012-03-04
-3105203 Villanueva de Perales Villanueva de Perales Villanueva de Perales 40.34541 -4.09891 P PPLA3 ES 29 M 28178 960 592 Europe/Madrid 2012-03-04
-3105205 Villanueva de Oscos Villanueva de Oscos Villanueva de Oscos 43.3 -6.95 P PPLA3 ES 34 O 33075 411 737 Europe/Madrid 2012-03-04
-3105210 Villanueva del Rebollar de la Sierra Villanueva del Rebollar de la Sierra Villanueva del Rebollar de la Sierra 40.89108 -1.00837 P PPLA3 ES 52 TE 44256 51 1084 Europe/Madrid 2012-03-04
-3105211 Villanueva del Rebollar Villanueva del Rebollar Villanueva del Rebollar 42.24114 -4.74288 P PPLA3 ES 55 P 34227 105 841 Europe/Madrid 2012-03-04
-3105214 Villanueva del Pardillo Villanueva del Pardillo Villanueva del Pardillo 40.48333 -3.96667 P PPLA3 ES 29 M 28177 15087 625 Europe/Madrid 2012-03-04
-3105221 Villanueva de los Caballeros Villanueva de los Caballeros Villanueva de los Caballeros 41.75916 -5.24786 P PPLA3 ES 55 VA 47220 244 712 Europe/Madrid 2012-03-04
-3105226 Villanueva del Conde Villanueva del Conde Villanueva del Conde 40.51039 -6.0121 P PPLA3 ES 55 SA 37355 222 800 Europe/Madrid 2012-03-04
-3105229 Villanueva del Campo Villanueva del Campo Villanueva,Villanueva del Campo 41.98492 -5.4066 P PPLA3 ES 55 ZA 49260 1065 754 Europe/Madrid 2012-03-04
-3105230 Villanueva del Campillo Villanueva del Campillo Villanueva del Campillo 40.57646 -5.18002 P PPLA3 ES 55 AV 05260 165 1441 Europe/Madrid 2012-03-04
-3105231 Villanueva de la Vera Villanueva de la Vera Villanueva de la Vera 40.12998 -5.4625 P PPL ES 57 CC 10204 2171 509 Europe/Madrid 2012-01-19
-3105233 Villanueva de la Torre Villanueva de la Torre Villanueva de la Torre 40.58216 -3.29764 P PPLA3 ES 54 GU 19319 4892 708 Europe/Madrid 2012-03-04
-3105235 Villanueva de las Peras Villanueva de las Peras Villanueva de las Peras 41.93478 -5.97942 P PPLA3 ES 55 ZA 49259 161 744 Europe/Madrid 2012-03-04
-3105236 Villanueva de las Manzanas Villanueva de las Manzanas Villanueva de las Manzanas 42.47264 -5.48043 P PPLA3 ES 55 LE 24218 556 780 Europe/Madrid 2012-03-04
-3105238 Villanueva de la Sierra Villanueva de la Sierra Villanueva de la Sierra,Villanueva de la Sierre 40.20163 -6.40611 P PPLA3 ES 57 CC 10211 563 503 Europe/Madrid 2012-03-04
-3105245 Villanueva de la Condesa Villanueva de la Condesa Villanueva de la Condesa 42.14914 -5.0955 P PPLA3 ES 55 VA 47219 45 791 Europe/Madrid 2012-03-04
-3105246 Villanueva del Aceral Villanueva del Aceral Villanueva del Aceral 41.04095 -4.85419 P PPLA3 ES 55 AV 05259 164 846 Europe/Madrid 2012-03-04
-3105247 Villanueva de la Cañada Villanueva de la Canada Villanueva de la Canada,Villanueva de la Cañada 40.4469 -4.00428 P PPLA3 ES 29 M 28176 16804 655 Europe/Madrid 2012-03-04
-3105249 Villanueva de Jiloca Villanueva de Jiloca Villanueva 41.07625 -1.3896 P PPLA3 ES 52 Z 50289 80 770 Europe/Madrid 2012-03-04
-3105253 Villanueva de Gumiel Villanueva de Gumiel Villanueva de Gumiel 41.73778 -3.62658 P PPLA3 ES 55 BU 09451 285 844 Europe/Madrid 2012-03-04
-3105255 Villanueva de Gormaz Villanueva de Gormaz Villanueva de Gormaz 41.4674 -3.06223 P PPLA3 ES 55 SO 42206 22 968 Europe/Madrid 2012-03-04
-3105256 Villanueva de Gómez Villanueva de Gomez Villanueva,Villanueva de Gomez,Villanueva de Gómez 40.88269 -4.7165 P PPLA3 ES 55 AV 05258 142 887 Europe/Madrid 2012-03-04
-3105257 Villanueva de Gállego Villanueva de Gallego Villanueva de Gallego,Villanueva de Gállego,Villanueva del Gallego,Villanueva del Gállego 41.76916 -0.8235 P PPLA3 ES 52 Z 50288 3809 252 Europe/Madrid 2012-03-04
-3105258 Villanueva de Duero Villanueva de Duero Villanueva de Duero 41.51946 -4.86671 P PPLA3 ES 55 VA 47218 1103 693 Europe/Madrid 2012-03-04
-3105260 Villanueva de Carazo Villanueva de Carazo Villanueva de Carazo 41.98275 -3.32428 P PPLA3 ES 55 BU 09450 24 1059 Europe/Madrid 2012-03-04
-3105263 Villanueva de Campeán Villanueva de Campean Villanueva de Campean,Villanueva de Campeán 41.35447 -5.7702 P PPLA3 ES 55 ZA 49258 167 760 Europe/Madrid 2012-03-04
-3105264 Villanueva de Cameros Villanueva de Cameros Villanueva,Villanueva de Cameros 42.16719 -2.6504 P PPLA3 ES 27 LO 26169 104 894 Europe/Madrid 2012-03-04
-3105265 Villanueva de Azoague Villanueva de Azoague Villanueva de Azoague 41.97607 -5.664 P PPLA3 ES 55 ZA 49257 310 703 Europe/Madrid 2012-03-04
-3105267 Vilanova de Arousa Vilanova de Arousa Villanueva 42.56667 -8.83333 P PPL ES 58 PO 36061 10719 -9999 Europe/Madrid 2010-04-22
-3105268 Villanueva de Argecilla Villanueva de Argecilla Villanueva de Argecilla 40.90257 -2.91431 P PPLA3 ES 54 GU 19318 48 1024 Europe/Madrid 2012-03-04
-3105269 Villanueva de Argaño Villanueva de Argano 42.38045 -3.93353 P PPLA3 ES 55 BU 09449 124 839 Europe/Madrid 2012-03-04
-3105271 Villanueva de Alcorón Villanueva de Alcoron Villanueva de Alcoron,Villanueva de Alcorón 40.67956 -2.25145 P PPLA3 ES 54 GU 19317 296 1263 Europe/Madrid 2012-03-04
-3105310 Villanubla Villanubla Villanubla 41.69877 -4.84173 P PPLA3 ES 55 VA 47217 1365 842 Europe/Madrid 2012-03-04
-3105311 Villanúa Villanua Bellanuga,Billanuga,Villanua,Villanúa 42.6797 -0.53769 P PPLA3 ES 52 HU 22250 411 944 959 Europe/Madrid 2012-03-04
-3105321 Villangómez Villangomez Villangomez,Villangómez 42.17961 -3.77419 P PPLA3 ES 55 BU 09448 315 848 Europe/Madrid 2012-03-04
-3105325 Villán de Tordesillas Villan de Tordesillas Villan de Tordesillas,Villán de Tordesillas 41.59311 -4.92214 P PPLA3 ES 55 VA 47216 174 755 Europe/Madrid 2012-03-04
-3105327 Villanázar Villanazar Villanazar,Villanázar 41.97398 -5.78043 P PPLA3 ES 55 ZA 49256 355 707 Europe/Madrid 2012-03-04
-3105331 Villamuriel de Cerrato Villamuriel de Cerrato Villamuriel de Cerrato 41.94935 -4.51584 P PPLA3 ES 55 P 34225 5437 726 Europe/Madrid 2012-03-04
-3105332 Villamuriel de Campos Villamuriel de Campos Villamuriel de Campos 41.9469 -5.20717 P PPLA3 ES 55 VA 47215 83 740 Europe/Madrid 2012-03-04
-3105334 Villamuera de la Cueza Villamuera de la Cueza Villamuera de la Cueza 42.25843 -4.6886 P PPLA3 ES 55 P 34224 61 838 Europe/Madrid 2012-03-04
-3105340 Villamoronta Villamoronta Villamoronta 42.40337 -4.69899 P PPLA3 ES 55 P 34223 313 857 Europe/Madrid 2012-03-04
-3105347 Villamor de los Escuderos Villamor de los Escuderos Villamor de los Escuderos 41.25244 -5.57485 P PPLA3 ES 55 ZA 49255 557 836 Europe/Madrid 2012-03-04
-3105352 Villamoratiel de las Matas Villamoratiel de las Matas Villamoratiel de las Matas 42.39755 -5.30064 P PPLA3 ES 55 LE 24217 172 848 Europe/Madrid 2012-03-04
-3105358 Villamontán de la Valduerna Villamontan de la Valduerna Villamontan,Villamontan de la Valduerna,Villamontán,Villamontán de la Valduerna 42.30962 -5.99656 P PPLA3 ES 55 LE 24216 962 823 Europe/Madrid 2012-03-04
-3105362 Villamol Villamol Villamol 42.42766 -5.04832 P PPLA3 ES 55 LE 24215 216 822 Europe/Madrid 2012-03-04
-3105366 Villamiel de la Sierra Villamiel de la Sierra Villamiel de la Sierra 42.19124 -3.41771 P PPLA3 ES 55 BU 09447 39 1150 Europe/Madrid 2012-03-04
-3105367 Villamiel Villamiel Villamiel 40.18634 -6.78424 P PPLA3 ES 57 CC 10210 611 758 Europe/Madrid 2012-03-04
-3105370 Villameriel Villameriel Villameriel 42.52822 -4.47572 P PPLA3 ES 55 P 34222 137 906 Europe/Madrid 2012-03-04
-3105373 Villamejil Villamejil Villamejil 42.56205 -6.02514 P PPLA3 ES 55 LE 24214 862 911 Europe/Madrid 2012-03-04
-3105377 Villamedianilla Villamedianilla Villamedianilla 42.1607 -4.14592 P PPLA3 ES 55 BU 09446 23 797 Europe/Madrid 2012-03-04
-3105381 Villamediana de Iregua Villamediana de Iregua Villamediana de Iregua 42.42658 -2.41943 P PPLA3 ES 27 LO 26168 3807 445 Europe/Madrid 2012-03-04
-3105382 Villamediana Villamediana 42.05024 -4.36115 P PPLA3 ES 55 P 34221 228 787 Europe/Madrid 2012-03-04
-3105392 Villamayor de Treviño Villamayor de Trevino Villamayor de Trevino,Villamayor de Treviño 42.46048 -4.11923 P PPLA3 ES 55 BU 09444 91 818 Europe/Madrid 2012-03-04
-3105394 Villamayor de Monjardín Villamayor de Monjardin Villamayor de Monjardin,Villamayor de Monjardín 42.62937 -2.10503 P PPLA3 ES 32 NA 31255 144 680 Europe/Madrid 2012-03-04
-3105396 Villamayor de los Montes Villamayor de los Montes Villamayor de los Montes 42.10565 -3.76542 P PPLA3 ES 55 BU 09443 218 888 Europe/Madrid 2012-03-04
-3105399 Villamayor de Campos Villamayor de Campos Villamayor de Campos 41.8987 -5.35963 P PPLA3 ES 55 ZA 49252 477 696 Europe/Madrid 2012-03-04
-3105411 Villamayor Villamayor Villamayor 40.9994 -5.69579 P PPLA3 ES 55 SA 37354 4538 786 Europe/Madrid 2012-03-04
-3105420 Villamartín de Don Sancho Villamartin de Don Sancho Villamartin de Don Sancho,Villamartín de Don Sancho 42.56943 -5.06056 P PPLA3 ES 55 LE 24213 180 892 Europe/Madrid 2012-03-04
-3105421 Villamartín de Campos Villamartin de Campos Villamartin de Campos,Villamartín de Campos 42.01598 -4.66414 P PPLA3 ES 55 P 34220 129 748 Europe/Madrid 2012-03-04
-3105428 Vilamarín Vilamarin 42.46488 -7.89119 P PPLA3 ES 58 OR 32087 0 509 Europe/Madrid 2012-03-04
-3105436 Villamantilla Villamantilla Villamantilla 40.33846 -4.12986 P PPLA3 ES 29 M 28175 567 550 Europe/Madrid 2012-03-04
-3105437 Villamanta Villamanta 40.29858 -4.1088 P PPLA3 ES 29 M 28174 1901 543 Europe/Madrid 2012-03-04
-3105438 Villamanrique de Tajo Villamanrique de Tajo Villamanrique de Tajo 40.06617 -3.23668 P PPLA3 ES 29 M 28173 664 533 Europe/Madrid 2012-03-04
-3105439 Villamanín Villamanin Villamanin,Villamanín 42.93333 -5.65 P PPLA3 ES 55 LE 24901 1129 1327 Europe/Madrid 2012-03-04
-3105442 Villamandos Villamandos Villamandos 42.18058 -5.59397 P PPLA3 ES 55 LE 24211 356 731 Europe/Madrid 2012-03-04
-3105443 Villamañán Villamanan Villamanan,Villamañán 42.32198 -5.58195 P PPLA3 ES 55 LE 24212 1252 762 Europe/Madrid 2012-03-04
-3105455 Villaluenga de la Vega Villaluenga de la Vega 42.52386 -4.76489 P PPLA3 ES 55 P 34218 671 917 Europe/Madrid 2012-03-04
-3105458 Villalube Villalube Villalube 41.61005 -5.54545 P PPLA3 ES 55 ZA 49251 250 734 Europe/Madrid 2012-03-04
-3105462 Villalpando Villalpando Villalpando,Villapando 41.86517 -5.41231 P PPLA3 ES 55 ZA 49250 1611 693 Europe/Madrid 2012-03-04
-3105463 Villalonso Villalonso Villalonso 41.59767 -5.29769 P PPLA3 ES 55 ZA 49249 111 723 Europe/Madrid 2012-03-04
-3105467 Villalón de Campos Villalon de Campos Villalon,Villalon de Campos,Villalón,Villalón de Campos 42.09994 -5.0344 P PPLA3 ES 55 VA 47214 2051 784 Europe/Madrid 2012-03-04
-3105469 Villalobos Villalobos Villalobos 41.94567 -5.47517 P PPLA3 ES 55 ZA 49248 288 726 Europe/Madrid 2012-03-04
-3105471 Villalobón Villalobon Villalobon,Villalobón 42.03037 -4.5034 P PPLA3 ES 55 P 34217 734 755 Europe/Madrid 2012-03-04
-3105472 Villalobar de Rioja Villalobar de Rioja Villalobar de Rioja 42.49123 -2.96404 P PPLA3 ES 27 LO 26167 91 581 Europe/Madrid 2012-03-04
-3105477 Villalmanzo Villalmanzo Villalmanzo 42.0484 -3.74195 P PPLA3 ES 55 BU 09442 464 856 Europe/Madrid 2012-03-04
-3105486 Villalengua Villalengua Villalengua 41.43548 -1.84125 P PPLA3 ES 52 Z 50287 388 788 Europe/Madrid 2012-03-04
-3105490 Villaldemiro Villaldemiro Villaldemiro 42.24718 -3.98534 P PPLA3 ES 55 BU 09441 68 806 Europe/Madrid 2012-03-04
-3105492 Villalcón Villalcon 42.29287 -4.85527 P PPLA3 ES 55 P 34216 84 824 Europe/Madrid 2012-03-04
-3105493 Villalcázar de Sirga Villalcazar de Sirga Villalcazar de Sirga,Villalcázar de Sirga 42.31662 -4.54278 P PPLA3 ES 55 P 34215 209 807 Europe/Madrid 2012-03-04
-3105494 Villalcampo Villalcampo Villalcampo 41.52229 -6.04801 P PPLA3 ES 55 ZA 49247 612 783 Europe/Madrid 2012-03-04
-3105499 Villalbilla de Gumiel Villalbilla de Gumiel Villalbilla de Gumiel 41.80621 -3.62584 P PPLA3 ES 55 BU 09440 120 915 Europe/Madrid 2012-03-04
-3105500 Villalbilla de Burgos Villalbilla de Burgos 42.34757 -3.78101 P PPLA3 ES 55 BU 09439 866 834 Europe/Madrid 2012-03-04
-3105501 Villalbilla Villalbilla Villalbilla 40.43044 -3.29904 P PPLA3 ES 29 M 28172 8055 778 Europe/Madrid 2012-03-04
-3105504 Villalbarba Villalbarba Villalbarba,Villarbarba 41.60389 -5.21281 P PPLA3 ES 55 VA 47213 152 719 Europe/Madrid 2012-03-04
-3105505 Villalba de Rioja Villalba de Rioja Villalba de Rioja 42.60967 -2.88688 P PPLA3 ES 27 LO 26166 174 571 Europe/Madrid 2011-07-31
-3105506 Villalba de Perejil Villalba de Perejil Villalba de Perejil 41.32742 -1.54833 P PPLA3 ES 52 Z 50286 130 621 Europe/Madrid 2012-03-04
-3105507 Villalba del Rey Villalba del Rey Villalba del Rey 40.34653 -2.63902 P PPLA3 ES 54 CU 16246 658 798 Europe/Madrid 2012-03-04
-3105509 Villalba de los Llanos Villalba de los Llanos Villalba de los Llanos 40.8002 -5.9758 P PPLA3 ES 55 SA 37353 182 830 Europe/Madrid 2012-03-04
-3105510 Vilalba dels Arcs Vilalba dels Arcs Vilalba dels Arcs,Villalba,Villalba de los Arcos,Villalva de los Arcos 41.11667 0.41667 P PPLA3 ES 56 T 43175 0 441 Europe/Madrid 2012-03-04
-3105511 Villalba de los Alcores Villalba de los Alcores Villalba de los Alcores 41.86361 -4.86063 P PPLA3 ES 55 VA 47212 530 849 Europe/Madrid 2012-03-04
-3105513 Villalba de la Sierra Villalba de la Sierra Villalba de la Sierra 40.23437 -2.0893 P PPLA3 ES 54 CU 16245 659 987 Europe/Madrid 2012-03-04
-3105514 Villalba de la Loma Villalba de la Loma Villalba de la Loma 42.17472 -5.19023 P PPLA3 ES 55 VA 47211 45 773 Europe/Madrid 2012-03-04
-3105515 Villalba de la Lampreana Villalba de la Lampreana Villalba de la Lampreana 41.74327 -5.64094 P PPLA3 ES 55 ZA 49246 292 685 Europe/Madrid 2012-03-04
-3105516 Villalba de Guardo Villalba de Guardo Villalba de Guardo 42.72229 -4.82328 P PPLA3 ES 55 P 34214 232 1062 Europe/Madrid 2012-03-04
-3105517 Villalba de Duero Villalba de Duero Villalba de Duero 41.68243 -3.74443 P PPLA3 ES 55 BU 09438 603 809 Europe/Madrid 2012-03-04
-3105522 Vilalba Vilalba 43.3 -7.68333 P PPLA3 ES 58 LU 27065 15437 452 Europe/Madrid 2012-03-04
-3105527 Villalazán Villalazan Villalazan,Villalazán 41.49414 -5.5891 P PPLA3 ES 55 ZA 49245 368 661 Europe/Madrid 2012-03-04
-3105528 Villalar de los Comuneros Villalar de los Comuneros Villalar,Villalar de los Comuneros 41.54966 -5.1381 P PPLA3 ES 55 VA 47210 436 712 Europe/Madrid 2012-03-04
-3105531 Villalán de Campos Villalan de Campos Villalan de Campos,Villalon de Campos,Villalán de Campos,Villalón de Campos 42.01484 -5.23642 P PPLA3 ES 55 VA 47209 51 754 Europe/Madrid 2012-03-04
-3105538 Villalaco Villalaco Villalaco 42.15569 -4.2594 P PPLA3 ES 55 P 34213 74 758 Europe/Madrid 2012-03-04
-3105548 Villahoz Villahoz Villahoz 42.07587 -3.9129 P PPLA3 ES 55 BU 09437 340 832 Europe/Madrid 2012-03-04
-3105553 Villaherreros Villaherreros Villaherreros 42.38964 -4.46254 P PPLA3 ES 55 P 34211 254 825 Europe/Madrid 2012-03-04
-3105555 Villahermosa del Río Villahermosa del Rio Vilafermosa,Villahermosa,Villahermosa del Rio,Villahermosa del Río 40.20268 -0.4199 P PPLA3 ES 60 CS 12130 432 713 Europe/Madrid 2012-03-04
-3105556 Villahermosa del Campo Villahermosa del Campo Villahermosa,Villahermosa del Campo 41.10942 -1.24692 P PPLA3 ES 52 TE 44252 107 962 Europe/Madrid 2012-03-04
-3105558 Villahán Villahan Villahan,Villahan de Palenzuela,Villahán,Villahán de Palenzuela 42.0503 -4.13104 P PPLA3 ES 55 P 34210 117 807 Europe/Madrid 2012-03-04
-3105564 Villagonzalo-Pedernales Villagonzalo-Pedernales Villagonzalo-Pedernales 42.30145 -3.73539 P PPL ES 55 BU 09434 1110 901 Europe/Madrid 2012-01-19
-3105565 Villagonzalo de Tormes Villagonzalo de Tormes Villagonzalo de Tormes 40.89221 -5.49664 P PPLA3 ES 55 SA 37352 233 804 Europe/Madrid 2012-03-04
-3105567 Villagómez la Nueva Villagomez la Nueva Villagomez la Nueva,Villagómez la Nueva 42.15592 -5.14208 P PPLA3 ES 55 VA 47208 85 756 Europe/Madrid 2012-03-04
-3105570 Villageriz Villageriz Villageriz 42.11884 -5.95554 P PPLA3 ES 55 ZA 49244 56 779 Europe/Madrid 2012-03-04
-3105572 Villagatón Villagaton Villagaton,Villagatón 42.63413 -6.16184 P PPLA3 ES 55 LE 24210 701 1014 Europe/Madrid 2012-03-04
-3105574 Villagarcía de Campos Villagarcia de Campos Villagarcia de Campos,Villagarcía de Campos 41.78032 -5.19242 P PPLA3 ES 55 VA 47207 414 719 Europe/Madrid 2012-03-04
-3105575 Vilagarcía de Arousa Vilagarcia de Arousa 42.59631 -8.76426 P PPLA3 ES 58 PO 36060 37576 10 Europe/Madrid 2012-03-04
-3105580 Villagalijo Villagalijo Villagalijo 42.34872 -3.19203 P PPLA3 ES 55 BU 09433 85 899 Europe/Madrid 2012-03-04
-3105581 Villafufre Villafufre Villafufre 43.26557 -3.8937 P PPL ES 39 S 39078 1109 222 Europe/Madrid 2012-01-19
-3105583 Villafuerte Villafuerte 41.73431 -4.32365 P PPLA3 ES 55 VA 47206 145 823 Europe/Madrid 2012-03-04
-3105586 Villafruela Villafruela Villafruela 41.91647 -3.9137 P PPLA3 ES 55 BU 09432 248 909 Europe/Madrid 2012-03-04
-3105596 Villafrechós Villafrechos Villafrechos,Villafrechós 41.8929 -5.2186 P PPLA3 ES 55 VA 47205 520 746 Europe/Madrid 2012-03-04
-3105599 Ordizia Villafranca de Ordizia Ordizia,Villafranca de Ordicia,Villafranca de Ordizia,Villafranca de Oria,Villafrancia Oria,Villafrancia de Oria 43.0541 -2.17632 P PPLA3 ES ES 59 SS 20076 0 145 Europe/Madrid 2012-03-04
-3105600 Vilafranca del Penedès Vilafranca del Penedes Vil'jafranka-del'-Penedes,Vilafranca Penedes,Vilafranca del Penedes,Vilafranca del Penedès,Vilafranca do Penedes - Vilafranca del Penedes,Vilafranca do Penedés - Vilafranca del Penedès,Villafranca del Panades,Villafranca del Panadés,Villafranca del Penedes,Villafranca del Penedés,Вильяфранка-дель-Пенедес 41.35 1.7 P PPLA3 ES 56 B 08305 38425 230 Europe/Madrid 2012-03-04
-3105601 Villafranca del Cid Villafranca del Cid Vilafranca del Maestrat,Villafranca del Cid 40.42885 -0.25774 P PPL ES 60 CS 12129 2562 1130 Europe/Madrid 2012-01-19
-3105602 Villafranca del Campo Villafranca del Campo Villafranca del Campo 40.69545 -1.34722 P PPLA3 ES 52 TE 44251 365 960 Europe/Madrid 2012-03-04
-3105603 Villafranca del Bierzo Villafranca del Bierzo Villafranca del Bierzo 42.60601 -6.81069 P PPLA3 ES 55 LE 24209 3733 506 Europe/Madrid 2012-03-04
-3105604 Villafranca de la Sierra Villafranca de la Sierra Villafranca de la Sierra 40.49806 -5.23005 P PPLA3 ES 55 AV 05257 172 1099 Europe/Madrid 2012-03-04
-3105605 Villafranca de Ebro Villafranca de Ebro Villafranca de Ebro 41.57473 -0.65039 P PPLA3 ES 52 Z 50285 692 176 Europe/Madrid 2012-03-04
-3105606 Villafranca de Duero Villafranca de Duero Villafranca de Duero 41.4331 -5.30192 P PPLA3 ES 55 VA 47204 394 657 Europe/Madrid 2012-03-04
-3105609 Villafranca Villafranca Villafranca 42.27933 -1.74628 P PPLA3 ES 32 NA 31254 2780 288 Europe/Madrid 2012-03-04
-3105613 Villafrades de Campos Villafrades de Campos Villafrades de Campos 42.07853 -4.97125 P PPLA3 ES 55 VA 47203 101 764 Europe/Madrid 2012-03-04
-3105616 Villaflores Villaflores Villaflores 41.08397 -5.23436 P PPLA3 ES 55 SA 37351 390 796 Europe/Madrid 2012-03-04
-3105620 Villaflor Villaflor Villaflor 40.75865 -4.87379 P PPLA3 ES 55 AV 05256 143 981 Europe/Madrid 2012-03-04
-3105623 Villaferrueña Villaferruena Villaferruena,Villaferrueña 42.0983 -5.85802 P PPLA3 ES 55 ZA 49243 154 744 Europe/Madrid 2012-03-04
-3105627 Villafeliche Villafeliche Villafeliche 41.19509 -1.50983 P PPLA3 ES 52 Z 50284 219 687 Europe/Madrid 2012-03-04
-3105630 Villafamés Villafames Vilafames,Villafames,Villafamés 40.11667 -0.05 P PPL ES 60 CS 12094 1660 284 Europe/Madrid 2012-01-19
-3105632 Villafáfila Villafafila Villafafila,Villafáfila 41.84692 -5.61527 P PPLA3 ES 55 ZA 49242 629 691 Europe/Madrid 2012-03-04
-3105640 Villaespasa Villaespasa Villaespasa 42.09991 -3.40436 P PPLA3 ES 55 BU 09430 21 962 Europe/Madrid 2012-03-04
-3105641 Villaescusa la Sombría Villaescusa la Sombria Villaescusa la Sombria,Villaescusa la Sombría 42.41518 -3.4184 P PPLA3 ES 55 BU 09429 65 909 Europe/Madrid 2012-03-04
-3105644 Villaescusa de Roa Villaescusa de Roa Villaescusa de Roa 41.72727 -4.0172 P PPLA3 ES 55 BU 09428 168 899 Europe/Madrid 2012-03-04
-3105651 Villaescusa Villaescusa 42.96262 -4.16706 P PPL ES 39 S 39032 3434 875 Europe/Madrid 2011-09-11
-3105652 Villaescusa Villaescusa Villaescusa 41.20617 -5.46406 P PPLA3 ES 55 ZA 49241 353 828 Europe/Madrid 2012-03-04
-3105654 Villaeles de Valdavia Villaeles de Valdavia Villaeles de Valdavia 42.56556 -4.58318 P PPLA3 ES 55 P 34208 71 886 Europe/Madrid 2012-03-04
-3105657 Villadoz Villadoz Villadoz 41.16234 -1.288 P PPLA3 ES 52 Z 50283 95 893 Europe/Madrid 2012-03-04
-3105661 Villadiego Villadiego 42.51589 -4.00958 P PPLA3 ES 55 BU 09427 1907 841 Europe/Madrid 2012-03-04
-3105668 Villadepera Villadepera Villadepera 41.547 -6.13305 P PPLA3 ES 55 ZA 49240 269 739 Europe/Madrid 2012-03-04
-3105673 Villademor de la Vega Villademor de la Vega Villademor de la Vega 42.26964 -5.56808 P PPLA3 ES 55 LE 24207 458 749 Europe/Madrid 2012-03-04
-3105675 Villa del Prado Villa del Prado Villa del Prado 40.27852 -4.30534 P PPLA3 ES 29 M 28171 5385 517 Europe/Madrid 2012-03-04
-3105676 Villa del Campo Villa del Campo Villa del Campo 40.14223 -6.42679 P PPLA3 ES 57 CC 10207 615 476 Europe/Madrid 2012-03-04
-3105679 Villadecanes Villadecanes Villadecanes 42.57973 -6.75972 P PPL ES 55 LE 24209 2124 525 Europe/Madrid 2012-01-19
-3105681 Villadangos del Páramo Villadangos del Paramo Villadangos del Paramo,Villadangos del Páramo 42.51672 -5.76737 P PPLA3 ES 55 LE 24205 1035 896 Europe/Madrid 2012-03-04
-3105684 Villada Villada Villada 42.25111 -4.96708 P PPLA3 ES 55 P 34206 1165 801 Europe/Madrid 2012-03-04
-3105693 Villaconejos de Trabaque Villaconejos de Trabaque Villaconejos,Villaconejos de Trabaque 40.40064 -2.31956 P PPLA3 ES 54 CU 16242 486 814 Europe/Madrid 2012-03-04
-3105694 Villaconejos Villaconejos Villaconejos 40.10139 -3.48258 P PPLA3 ES 29 M 28170 3010 635 Europe/Madrid 2012-03-04
-3105696 Villaconancio Villaconancio Villaconancio 41.87174 -4.22379 P PPLA3 ES 55 P 34205 84 815 Europe/Madrid 2012-03-04
-3105699 Villaco Villaco Villaco 41.74022 -4.26817 P PPLA3 ES 55 VA 47200 113 781 Europe/Madrid 2012-03-04
-3105703 Villaciervos Villaciervos Villaciervos 41.76227 -2.62678 P PPLA3 ES 55 SO 42205 116 1182 Europe/Madrid 2012-03-04
-3105706 Villacid de Campos Villacid de Campos Villacid de Campos 42.0825 -5.12498 P PPLA3 ES 55 VA 47199 102 779 Europe/Madrid 2012-03-04
-3105708 Villacidaler Villacidaler Villacidaler 42.22168 -4.97668 P PPLA3 ES 55 P 34204 72 799 Europe/Madrid 2012-03-04
-3105720 Villacastín Villacastin Villacastin,Villacastín 40.7796 -4.41357 P PPLA3 ES 55 SG 40225 1619 1103 Europe/Madrid 2012-03-04
-3105721 Villacarriedo Villacarriedo Villacarriedo 43.22851 -3.81057 P PPLA3 ES 39 S 39098 1711 202 Europe/Madrid 2012-03-04
-3105722 Villacarralón Villacarralon Villacarralon,Villacarralón 42.18999 -5.04324 P PPLA3 ES 55 VA 47198 85 794 Europe/Madrid 2012-03-04
-3105730 Villabuena del Puente Villabuena del Puente Villabuena del Puente 41.38074 -5.40788 P PPLA3 ES 55 ZA 49239 874 703 Europe/Madrid 2012-03-04
-3105731 Villabuena de Alava Villabuena de Alava Uriona,Villabuena de Alava,Villabuena de Álava 42.54788 -2.66552 P PPLA3 ES 59 VI 01057 311 487 Europe/Madrid 2012-03-04
-3105736 Villabrázaro Villabrazaro Villabrazaro,Villabrázaro 42.05394 -5.72748 P PPLA3 ES 55 ZA 49238 376 729 Europe/Madrid 2012-03-04
-3105737 Villabraz Villabraz Villabraz 42.24658 -5.44593 P PPLA3 ES 55 LE 24203 141 847 Europe/Madrid 2012-03-04
-3105738 Villabrágima Villabragima Villabragima,Villabrágima 41.82178 -5.11546 P PPLA3 ES 55 VA 47197 1176 730 Europe/Madrid 2012-03-04
-3105742 Villabona Villabona Villabona 43.1854 -2.05304 P PPLA3 ES 59 SS 20075 5822 59 Europe/Madrid 2012-03-04
-3105748 Villablino Villablino Villablino 42.93932 -6.31943 P PPL ES 55 LE 24109 10660 1002 Europe/Madrid 2012-01-19
-3105757 Villabaruz de Campos Villabaruz de Campos Villabaruz,Villabaruz de Campos 42.01099 -4.99624 P PPLA3 ES 55 VA 47196 50 752 Europe/Madrid 2012-03-04
-3105759 Villabáñez Villabanez Villabanez,Villabáñez 41.63097 -4.52192 P PPLA3 ES 55 VA 47195 485 742 Europe/Madrid 2012-03-04
-3105763 Atarrabia Atarrabia Atarrabia,Villava 42.8323 -1.60735 P PPL ES 32 NA 31086 10341 436 Europe/Madrid 2010-11-04
-3105772 Vileña Vilena Vilena,Vileña 42.62227 -3.32293 P PPLA3 ES 55 BU 09423 29 667 Europe/Madrid 2012-03-04
-3105803 Vila-seca Vila-seca Vila-seca,Vilaseca,Vilaseca de Solcina 41.11667 1.15 P PPL ES 56 T 43123 20866 43 Europe/Madrid 2010-04-22
-3105805 Vilaseca Vilaseca Vila-seka,Vilaseca,Вила-сека 42.06174 2.25528 P PPL ES 56 B 08150 17305 536 Europe/Madrid 2012-01-19
-3105806 Vilasantar Vilasantar Santiago,Vilasantar 43.06667 -8.1 P PPLA3 ES 58 C 15090 1546 442 Europe/Madrid 2012-03-04
-3105807 Vila-sacra Vila-sacra Vila-sacra 42.26578 3.01839 P PPLA3 ES 56 GI 17230 0 15 Europe/Madrid 2012-03-04
-3105877 Vilaplana Vilaplana Vilaplana 41.228 1.03325 P PPLA3 ES 56 T 43169 564 371 Europe/Madrid 2012-03-04
-3105882 Vilanova de Sau Vilanova de Sau Vilanova de Sau 41.947 2.3844 P PPLA3 ES 56 B 08303 08303 342 557 566 Europe/Madrid 2012-03-04
-3105883 Vilanova de Prades Vilanova de Prades Vilanova de Prades 41.3485 0.95667 P PPLA3 ES 56 T 43168 43168 167 905 Europe/Madrid 2012-03-04
-3105885 Vilanova del Camí Vilanova del Cami Vilanova del Cami,Vilanova del Camí 41.57165 1.63751 P PPL ES 56 B 08250 12649 310 Europe/Madrid 2012-01-19
-3105889 Vilanova d'Escornalbou Vilanova d'Escornalbou Vilanova d'Escornalbou,Vilanova de Escornalbou 41.11667 0.93333 P PPLA3 ES 56 T 43167 0 280 Europe/Madrid 2012-03-04
-3105890 Vilanova de Bellpuig Vilanova de Bellpuig Vilanova de Bellpuig 41.61378 0.96432 P PPLA3 ES 56 L 25248 1121 297 Europe/Madrid 2012-03-04
-3105899 Vilanant Vilanant Vilanant 42.25471 2.88923 P PPLA3 ES 56 GI 17228 327 99 Europe/Madrid 2012-03-04
-3105907 Vilamaniscle Vilamaniscle Vilamaniscle 42.37522 3.06755 P PPLA3 ES 56 GI 17227 170 156 Europe/Madrid 2012-03-04
-3105908 Vilamalla Vilamalla Vilamalla 42.2172 2.97009 P PPLA3 ES 56 GI 17226 885 47 Europe/Madrid 2012-03-04
-3105909 Vilamacolum Vilamacolum Vilamacolum 42.19618 3.05662 P PPLA3 ES 56 GI 17225 299 6 Europe/Madrid 2012-03-04
-3105913 Vilaller Vilaller Villaller 42.47624 0.71686 P PPLA3 ES 56 L 25245 583 998 979 Europe/Madrid 2012-03-04
-3105917 Vilajuïga Vilajuiga Vilajuiga,Vilajuïga 42.32533 3.09302 P PPLA3 ES 56 GI 17223 1057 32 Europe/Madrid 2012-03-04
-3105922 Vilafant Vilafant Vilafant 42.24668 2.9382 P PPLA3 ES 56 GI 17221 4818 54 Europe/Madrid 2012-03-04
-3105923 Viladrau Viladrau 41.84746 2.39019 P PPLA3 ES 56 GI 17220 17220 1005 826 Europe/Madrid 2012-03-04
-3105931 Viladasens Viladasens Viladasens,Viladesens,Viladeséns 42.08333 2.93333 P PPLA3 ES 56 GI 17216 0 60 Europe/Madrid 2012-03-04
-3105932 Vilademuls Vilademuls Vilademuls 42.1389 2.88819 P PPLA3 ES 56 GI 17218 772 123 Europe/Madrid 2012-03-04
-3105934 Viladamat Viladamat Viladamat 42.13299 3.07555 P PPLA3 ES 56 GI 17217 0 8 Europe/Madrid 2012-03-04
-3105935 Viladecans Viladecans Viladekans,Виладеканс 41.31405 2.01427 P PPL ES 56 B 08089 63489 20 Europe/Madrid 2010-04-22
-3105936 Viladecavalls Viladecavalls Viladecaballs,Viladecavalls 41.55 1.95 P PPLA3 ES 56 B 08300 0 298 Europe/Madrid 2012-03-04
-3105937 Vilada Vilada Vilada 42.13695 1.93162 P PPLA3 ES 56 B 08299 0 727 Europe/Madrid 2012-03-04
-3105955 Vilablareix Vilablareix Vilablareix 41.95746 2.77377 P PPLA3 ES 56 GI 17215 2194 111 Europe/Madrid 2011-07-31
-3105956 Vilabertran Vilabertran Vilabertran 42.28255 2.98144 P PPLA3 ES 56 GI 17214 842 22 Europe/Madrid 2012-03-04
-3105957 Vilabella Vilabella Vilabella 41.24779 1.33019 P PPLA3 ES 56 T 43165 772 260 Europe/Madrid 2012-03-04
-3105969 Viguera Viguera Viguera 42.30934 -2.53334 P PPLA3 ES 27 LO 26165 416 706 Europe/Madrid 2012-03-04
-3105976 Vigo Vigo Vigo,bigo,fyghw,wygw,Виго,ויגו,فيغو,ویگو,ビーゴ 42.23282 -8.72264 P PPLA3 ES 58 PO 36057 297332 86 Europe/Madrid 2012-03-04
-3105988 Vierlas Vierlas Vierlas 41.92708 -1.68123 P PPLA3 ES 52 Z 50281 94 456 Europe/Madrid 2012-03-04
-3105994 Vielha Vielha V'el'ja,Vielha,Vielha e Mijaran,Viella,Viella Mitg Aran,Viella Mitg Arán,Вьелья 42.70196 0.79556 P PPL ES 56 L 25243 5385 976 Europe/Madrid 2010-04-04
-3106021 Vidreres Vidreres Vidreras,Vidreres 41.78333 2.78333 P PPLA3 ES 56 GI 17213 0 83 Europe/Madrid 2012-03-04
-3106022 Vidrà Vidra Vidra,Vidrà,Vidrá 42.12285 2.30977 P PPLA3 ES 56 GI 17212 08233 165 982 Europe/Madrid 2012-03-04
-3106026 Videmala Videmala Videmala 41.61299 -6.04056 P PPLA3 ES 55 ZA 49237 225 778 Europe/Madrid 2012-03-04
-3106032 Vidayanes Vidayanes Vidayanes 41.91012 -5.57424 P PPLA3 ES 55 ZA 49236 100 710 Europe/Madrid 2012-03-04
-3106050 Vic Vic Vic,a'usa,আউসা 41.93012 2.25486 P PPLA3 ES 56 B 08298 39844 490 507 Europe/Madrid 2012-03-04
-3106062 Viandar de la Vera Viandar de la Vera Viandar de la Vera 40.12191 -5.53593 P PPLA3 ES 57 CC 10206 306 550 Europe/Madrid 2012-03-04
-3106065 Viana de Jadraque Viana de Jadraque Viana de Jadraque 41.02577 -2.76966 P PPLA3 ES 54 GU 19314 42 876 Europe/Madrid 2012-03-04
-3106066 Viana de Duero Viana de Duero Viana,Viana de Duero 41.53406 -2.46099 P PPLA3 ES 55 SO 42204 73 1000 Europe/Madrid 2012-03-04
-3106067 Viana de Cega Viana de Cega 41.52927 -4.75245 P PPLA3 ES 55 VA 47193 1794 692 Europe/Madrid 2012-03-04
-3106073 Viana Viana Viana 42.51552 -2.37124 P PPLA3 ES 32 NA 31251 0 469 Europe/Madrid 2012-03-04
-3106077 Vezdemarbán Vezdemarban Vezdemarban,Vezdemarbán 41.6548 -5.36609 P PPLA3 ES 55 ZA 49235 629 774 Europe/Madrid 2012-03-04
-3106081 Vertavillo Vertavillo Vertavillo 41.83281 -4.32707 P PPLA3 ES 55 P 34201 214 817 Europe/Madrid 2012-03-04
-3106086 Verín Verin 41.94149 -7.43809 P PPLA3 ES 58 OR 32085 14391 387 Europe/Madrid 2012-03-04
-3106089 Verges Verges 42.06283 3.04579 P PPLA3 ES 56 GI 17211 1166 20 Europe/Madrid 2012-03-04
-3106090 Bergara Bergara Bergara,Vergara 43.1151 -2.4175 P PPL ES 59 SS 20074 14707 185 157 Europe/Madrid 2010-04-22
-3106095 Verea Verea Santiago 42.10653 -8.00092 P PPLA3 ES 58 OR 32084 1403 806 Europe/Madrid 2012-03-04
-3106097 Verdú Verdu 41.61057 1.14284 P PPLA3 ES 56 L 25242 1057 439 Europe/Madrid 2012-03-04
-3106111 Vera de Moncayo Vera de Moncayo Vera,Vera de Moncayo 41.824 -1.68799 P PPLA3 ES 52 Z 50280 419 633 Europe/Madrid 2012-03-04
-3106112 Bera Bera Bera,Vera,Vera de Bidasoa 43.28177 -1.68632 P PPL ES 32 NA 31153 3685 54 Europe/Madrid 2006-03-05
-3106116 Venturada Venturada Venturada 40.79717 -3.61974 P PPLA3 ES 29 M 28169 1193 865 Europe/Madrid 2012-03-04
-3106118 Ventrosa Ventrosa Ventrosa 42.15705 -2.85044 P PPLA3 ES 27 LO 26164 76 977 Europe/Madrid 2012-03-04
-3106130 Ventosa del Río Almar Ventosa del Rio Almar Ventosa del Rio Almar,Ventosa del Río Almar 40.92728 -5.34838 P PPLA3 ES 55 SA 37348 128 856 Europe/Madrid 2012-03-04
-3106132 Ventosa de la Cuesta Ventosa de la Cuesta Ventosa de la Cuesta 41.4111 -4.82932 P PPLA3 ES 55 VA 47192 129 765 Europe/Madrid 2012-03-04
-3106141 Ventosa Ventosa Ventosa 42.40495 -2.62651 P PPLA3 ES 27 LO 26163 137 647 Europe/Madrid 2012-03-04
-3106158 Ventalló Ventallo Ventallo,Ventalló 42.14921 3.02635 P PPLA3 ES 56 GI 17210 675 34 Europe/Madrid 2012-03-04
-3106166 Venta de Baños Venta de Banos Venta de Banos,Venta de Baños 41.9211 -4.49089 P PPLA3 ES 55 P 34023 5918 724 Europe/Madrid 2012-03-04
-3106173 Venialbo Venialbo Venialbo 41.38957 -5.53596 P PPLA3 ES 55 ZA 49234 496 719 Europe/Madrid 2012-03-04
-3106180 El Vendrell El Vendrell El Vendrell,Vendrel',Vendrell,el Vendrell,Вендрель 41.21667 1.53333 P PPL ES 56 T 43163 35821 41 Europe/Madrid 2010-11-19
-3106192 Velliza Velliza Velliza 41.57918 -4.94655 P PPLA3 ES 55 VA 47191 139 778 Europe/Madrid 2012-03-04
-3106193 Vellisca Vellisca Vellisca 40.12965 -2.81444 P PPLA3 ES 54 CU 16240 163 943 Europe/Madrid 2012-03-04
-3106202 Velilla de San Antonio Velilla de San Antonio Velilla de San Antonio 40.36516 -3.48484 P PPLA3 ES 29 M 28167 11553 554 Europe/Madrid 2012-03-04
-3106204 Velilla del Río Carrión Velilla del Rio Carrion Velilla de Guardo,Velilla del Rio Carrion,Velilla del Río Carrión 42.82611 -4.84626 P PPL ES 55 P 34080 1591 1121 Europe/Madrid 2012-01-19
-3106206 Velilla de los Ajos Velilla de los Ajos Velilla de los Ajos 41.49058 -2.25579 P PPLA3 ES 55 SO 42202 40 1010 Europe/Madrid 2012-03-04
-3106210 Velilla de Jiloca Velilla de Jiloca Velilla de Jiloca 41.27509 -1.60396 P PPLA3 ES 52 Z 50279 111 615 Europe/Madrid 2012-03-04
-3106211 Velilla de Ebro Velilla de Ebro Velilla de Ebro 41.37416 -0.43483 P PPLA3 ES 52 Z 50278 260 176 Europe/Madrid 2012-03-04
-3106213 Velilla Velilla Velilla 41.5592 -5.00454 P PPLA3 ES 55 VA 47190 130 785 Europe/Madrid 2012-03-04
-3106217 Velayos Velayos Velayos 40.84157 -4.62324 P PPLA3 ES 55 AV 05254 276 936 Europe/Madrid 2012-03-04
-3106221 Velascálvaro Velascalvaro Velascalvaro,Velascálvaro 41.23028 -4.97242 P PPLA3 ES 55 VA 47189 188 745 Europe/Madrid 2012-03-04
-3106222 Velamazán Velamazan Velamazan,Velamazán,Vilamazan,Vilamazán 41.44894 -2.69934 P PPLA3 ES 55 SO 42200 122 980 Europe/Madrid 2012-03-04
-3106247 Veguillas de la Sierra Veguillas de la Sierra Veguillas,Veguillas de la Sierra 40.15 -1.4 P PPLA3 ES 52 TE 44250 22 1258 Europe/Madrid 2012-03-04
-3106257 Vegas de Matute Vegas de Matute Vegas de Matute 40.79476 -4.27762 P PPLA3 ES 55 SG 40223 259 1021 Europe/Madrid 2012-03-04
-3106268 Vegaquemada Vegaquemada Vegaquemada 42.8187 -5.33242 P PPLA3 ES 55 LE 24199 477 938 Europe/Madrid 2012-03-04
-3106271 Veganzones Veganzones Beganzones,Veganzones 41.19308 -3.99329 P PPLA3 ES 55 SG 40222 296 917 Europe/Madrid 2012-03-04
-3106275 Vegalatrave Vegalatrave Vegalatrave 41.70026 -6.10675 P PPLA3 ES 55 ZA 49233 147 691 Europe/Madrid 2012-03-04
-3106278 Vega de Villalobos Vega de Villalobos Vega de Villalobos 41.97057 -5.46324 P PPLA3 ES 55 ZA 49232 150 735 Europe/Madrid 2012-03-04
-3106279 Vega de Valdetronco Vega de Valdetronco Vega de Valdetronco 41.59364 -5.11319 P PPLA3 ES 55 VA 47188 160 716 Europe/Madrid 2012-03-04
-3106280 Vega de Valcarce Vega de Valcarce Vega de Valcarce 42.66068 -6.93784 P PPLA3 ES 55 LE 24198 802 815 Europe/Madrid 2012-03-04
-3106281 Vega de Tirados Vega de Tirados Vega de Tirados 41.02543 -5.88667 P PPLA3 ES 55 SA 37345 286 785 Europe/Madrid 2012-03-04
-3106282 Vega de Tera Vega de Tera Vega de Tera 41.99759 -6.125 P PPLA3 ES 55 ZA 49231 457 759 Europe/Madrid 2012-03-04
-3106285 Vega de Santa María Vega de Santa Maria Vega de Santa Maria,Vega de Santa María 40.83618 -4.64287 P PPLA3 ES 55 AV 05253 126 946 Europe/Madrid 2012-03-04
-3106286 Vega de Ruiponce Vega de Ruiponce Vega de Ruiponce 42.18808 -5.11477 P PPLA3 ES 55 VA 47187 134 750 Europe/Madrid 2012-03-04
-3106291 Vega de Pas Vega de Pas Vega de Pas 43.15692 -3.78316 P PPLA3 ES 39 S 39097 947 349 Europe/Madrid 2012-03-04
-3106293 Vegadeo Vegadeo Vegadeo 43.46834 -7.0539 P PPLA3 ES 34 O 33074 4427 9 Europe/Madrid 2012-03-04
-3106309 Vega de Infanzones Vega de Infanzones Vega,Vega de Infanzones 42.48116 -5.53295 P PPLA3 ES 55 LE 24197 846 780 Europe/Madrid 2012-03-04
-3106313 Vega de Espinareda Vega de Espinareda Vega de Espinareda,Vega del Espinareda 42.72537 -6.65439 P PPLA3 ES 55 LE 24196 2647 616 Europe/Madrid 2012-03-04
-3106320 Vegacervera Vegacervera Vegacervera 42.88808 -5.53549 P PPLA3 ES 55 LE 24194 335 1057 Europe/Madrid 2012-03-04
-3106356 Vedra Vedra Santa Eulalia,Vedra 42.77816 -8.47636 P PPLA3 ES 58 C 15089 5069 192 Europe/Madrid 2012-03-04
-3106359 Vecinos Vecinos Vecinos 40.77875 -5.87815 P PPLA3 ES 55 SA 37344 302 894 Europe/Madrid 2012-03-04
-3106388 Valverdón Valverdon Valverdon,Valverdón 41.04691 -5.76955 P PPLA3 ES 55 SA 37342 294 767 Europe/Madrid 2012-03-04
-3106390 Valverde-Enrique Valverde-Enrique Valverde-Enrique 42.30459 -5.2999 P PPLA3 ES 55 LE 24190 208 835 Europe/Madrid 2012-03-04
-3106391 Valverde de Valdelacasa Valverde de Valdelacasa Valverde de Valdelacasa 40.48155 -5.78145 P PPLA3 ES 55 SA 37341 64 805 Europe/Madrid 2012-03-04
-3106393 Valverde de los Arroyos Valverde de los Arroyos Valverde de los Arroyos 41.1293 -3.23333 P PPLA3 ES 54 GU 19311 102 1257 Europe/Madrid 2012-03-04
-3106395 Valverde del Majano Valverde del Majano Valverde del Majano 40.95689 -4.23468 P PPLA3 ES 55 SG 40216 586 925 Europe/Madrid 2012-03-04
-3106396 Valverde del Fresno Valverde del Fresno Valverde del Fresno 40.2221 -6.87848 P PPLA3 ES 57 CC 10205 2563 479 Europe/Madrid 2012-03-04
-3106397 Valverde de la Virgen Valverde de la Virgen Valverde de la Virgen 42.56823 -5.68461 P PPLA3 ES 55 LE 24189 4732 894 Europe/Madrid 2012-03-04
-3106398 Valverde de la Vera Valverde de la Vera Valverde de la Vera 40.12268 -5.49541 P PPLA3 ES 57 CC 10204 706 501 Europe/Madrid 2012-03-04
-3106402 Valverde de Campos Valverde de Campos Valverde,Valverde de Campos 41.8351 -5.03674 P PPLA3 ES 55 VA 47185 120 771 Europe/Madrid 2012-03-04
-3106403 Valverde de Alcalá Valverde de Alcala Valverde de Alcala,Valverde de Alcalá 40.41667 -3.29631 P PPLA3 ES 29 M 28166 346 754 Europe/Madrid 2012-03-04
-3106424 Valtorres Valtorres Valtorres 41.29855 -1.7408 P PPLA3 ES 52 Z 50277 117 673 Europe/Madrid 2012-03-04
-3106430 Valtierra Valtierra Valtierra 42.19653 -1.63459 P PPLA3 ES 32 NA 31249 2435 268 Europe/Madrid 2012-03-04
-3106431 Valtiendas Valtiendas Valtiendas 41.47851 -3.91766 P PPLA3 ES 55 SG 40215 157 914 Europe/Madrid 2012-03-04
-3106432 Valtajeros Valtajeros Valtajeros 41.93808 -2.22289 P PPLA3 ES 55 SO 42198 28 1256 Europe/Madrid 2012-03-04
-3106435 Valtablado del Río Valtablado del Rio Valtablado del Rio,Valtablado del Río 40.7142 -2.40225 P PPLA3 ES 54 GU 19310 20 842 Europe/Madrid 2012-03-04
-3106444 Valseca Valseca Valseca 40.99933 -4.17514 P PPLA3 ES 55 SG 40214 327 948 Europe/Madrid 2012-03-04
-3106446 Valsalobre Valsalobre Valsalobre 40.61742 -2.09297 P PPLA3 ES 54 CU 16234 65 1225 Europe/Madrid 2011-07-31
-3106448 Valsalabroso Valsalabroso Valsalabroso 41.10962 -6.50269 P PPLA3 ES 55 SA 37340 189 730 Europe/Madrid 2012-03-04
-3106461 Valpalmas Valpalmas Valpalmas 42.15821 -0.85481 P PPLA3 ES 52 Z 50276 166 497 Europe/Madrid 2012-03-04
-3106462 Valoria la Buena Valoria la Buena Valoria,Valoria la Buena,Valoria la Bueno,Viloria la Buena 41.79966 -4.53055 P PPLA3 ES 55 VA 47184 674 729 Europe/Madrid 2012-03-04
-3106471 Valmojado Valmojado 40.20444 -4.09146 P PPLA3 ES 54 TO 45180 2887 654 Europe/Madrid 2012-03-04
-3106477 Balmaseda Balmaseda Balmaseda,Valmaseda 43.2 -3.2 P PPLA3 ES 59 BI 48090 0 212 Europe/Madrid 2012-03-04
-3106480 Valmala Valmala Valmala 42.3059 -3.25456 P PPLA3 ES 55 BU 09407 32 989 Europe/Madrid 2012-03-04
-3106482 Valmadrid Valmadrid Valmadrid 41.4435 -0.88482 P PPLA3 ES 52 Z 50275 102 526 Europe/Madrid 2012-03-04
-3106488 Valluércanes Valluercanes Valluercanes,Valluércanes 42.5722 -3.12113 P PPLA3 ES 55 BU 09419 103 719 Europe/Madrid 2012-03-04
-3106492 Valls Valls Val's,Valls,Вальс 41.28612 1.24993 P PPLA3 ES 56 T 43161 25092 223 Europe/Madrid 2012-03-04
-3106493 Vallromanes Vallromanes Vallromanas,Vallromanes 41.53333 2.3 P PPLA3 ES 56 B 08296 0 168 Europe/Madrid 2012-03-04
-3106504 Vallmoll Vallmoll Vallmoll 41.24311 1.249 P PPL ES 56 T 43144 1415 166 Europe/Madrid 2012-01-19
-3106515 Vallirana Vallirana Vallirana 41.38676 1.93205 P PPLA3 ES 56 B 08295 14066 191 Europe/Madrid 2012-03-04
-3106523 Vallibona Vallibona Vallibana,Vallibona 40.603 0.04642 P PPLA3 ES 60 CS 12127 84 668 Europe/Madrid 2012-03-04
-3106526 Vallgorguina Vallgorguina Vallgorguina 41.64822 2.50996 P PPLA3 ES 56 B 08294 1827 222 Europe/Madrid 2012-03-04
-3106527 Vallfogona de Riucorb Vallfogona de Riucorb Vallfogona de Riucorb,Vallfogona de Riucorp,Vallfogona de Ríucorp 41.5628 1.23691 P PPLA3 ES 56 T 43159 0 585 Europe/Madrid 2012-03-04
-3106528 Vallfogona de Balaguer Vallfogona de Balaguer Vallfogona de Balaguer 41.75211 0.81385 P PPL ES 56 L 25040 1538 236 Europe/Madrid 2012-01-19
-3106535 Valles de Palenzuela Valles de Palenzuela Valles de Palenzuela 42.12019 -4.0775 P PPLA3 ES 55 BU 09418 100 804 Europe/Madrid 2012-03-04
-3106538 Vallesa de la Guareña Vallesa de la Guarena Vallesa de la Guarena,Vallesa de la Guareña 41.13532 -5.32611 P PPLA3 ES 55 ZA 49230 161 771 Europe/Madrid 2012-03-04
-3106544 Valleruela de Sepúlveda Valleruela de Sepulveda Valleruela de Sepulveda,Valleruela de Sepúlveda 41.18794 -3.77277 P PPLA3 ES 55 SG 40221 70 1096 Europe/Madrid 2012-03-04
-3106545 Valleruela de Pedraza Valleruela de Pedraza Valleruela de Pedraza 41.17937 -3.80717 P PPLA3 ES 55 SG 40220 65 1083 Europe/Madrid 2012-03-04
-3106551 Vallelado Vallelado Vallelado 41.40436 -4.42662 P PPLA3 ES 55 SG 40219 826 778 Europe/Madrid 2012-03-04
-3106563 Vallejera de Riofrío Vallejera de Riofrio Vallejera de Riofrio,Vallejera de Riofrío 40.4091 -5.71943 P PPLA3 ES 55 SA 37343 70 1140 Europe/Madrid 2012-03-04
-3106572 Valle de Tabladillo Valle de Tabladillo Valle de Tabladillo 41.36304 -3.83966 P PPLA3 ES 55 SG 40218 144 944 Europe/Madrid 2012-03-04
-3106591 Valle de Cerrato Valle de Cerrato Valle de Cerrato 41.88044 -4.36243 P PPLA3 ES 55 P 34196 112 814 Europe/Madrid 2012-03-04
-3106600 Vallecillo Vallecillo Vallecillo 42.35604 -5.21088 P PPLA3 ES 55 LE 24191 145 842 Europe/Madrid 2012-03-04
-3106656 Vallclara Vallclara Vallclara 41.37958 0.98342 P PPLA3 ES 56 T 43158 43158 114 628 Europe/Madrid 2012-03-04
-3106658 Vallcebre Vallcebre Valcebre,Vallcebre 42.20347 1.81816 P PPLA3 ES 56 B 08293 0 1126 Europe/Madrid 2012-03-04
-3106663 Vallbona de les Monges Vallbona de les Monges Vallbona de les Monges 41.52631 1.08872 P PPLA3 ES 56 L 25238 0 476 Europe/Madrid 2012-03-04
-3106665 Vallarta de Bureba Vallarta de Bureba Vallarta de Bureba 42.58864 -3.20457 P PPLA3 ES 55 BU 09408 60 709 Europe/Madrid 2012-03-04
-3106669 Vallanca Vallanca Vallanca 40.06667 -1.33333 P PPLA3 ES 60 V 46252 190 1073 Europe/Madrid 2012-03-04
-3106672 Valladolid Valladolid Balladolid,Pincia,Pintia,Pucela,VLL,Val'jadolid,Valadolido,Valladolid,Vallis Tolitum,Vayadolid,baryadoriddo,bld alwlyd,Вальлядалід,Вальядолид,ויאדוליד,بلد الوليد,バリャドリッド 41.65518 -4.72372 P PPLA ES 55 VA 47186 317864 702 Europe/Madrid 2012-01-19
-3106682 Valjunquera Valjunquera Valjunquera,Valljunquera 40.9525 0.02575 P PPLA3 ES 52 TE 44247 414 553 Europe/Madrid 2012-03-04
-3106698 Valhermoso Valhermoso Valhermoso 40.7859 -1.96121 P PPLA3 ES 54 GU 19309 43 1229 Europe/Madrid 2012-03-04
-3106700 Valgañón Valganon Valganon,Valgañón 42.31782 -3.06725 P PPLA3 ES 27 LO 26162 156 939 Europe/Madrid 2012-03-04
-3106702 Valga Valga 42.69792 -8.63959 P PPLA3 ES 58 PO 36056 6143 75 Europe/Madrid 2012-03-04
-3106703 Valfermoso de Tajuña Valfermoso de Tajuna Valfermoso de Tajuna,Valfermoso de Tajuña 40.61902 -2.95407 P PPLA3 ES 54 GU 19308 93 956 Europe/Madrid 2012-03-04
-3106705 Valfarta Valfarta Valfarta 41.55726 -0.13304 P PPLA3 ES 52 HU 22242 86 369 Europe/Madrid 2012-03-04
-3106710 Valero Valero 40.53533 -5.94307 P PPLA3 ES 55 SA 37339 448 582 Europe/Madrid 2012-03-04
-3106718 Valencia de Don Juan Valencia de Don Juan Valencia de Don Juan 42.29374 -5.5172 P PPLA3 ES 55 LE 24188 4184 768 Europe/Madrid 2012-03-04
-3106726 Valdunquillo Valdunquillo Valdunquillo 42.04232 -5.31339 P PPLA3 ES 55 VA 47183 204 739 Europe/Madrid 2012-03-04
-3106728 Valdunciel Valdunciel Valdunciel 41.08544 -5.67217 P PPLA3 ES 55 SA 37338 102 806 Europe/Madrid 2012-03-04
-3106732 Valdoviño Valdovino Santa Eulalia,Valdovino,Valdoviño 43.6 -8.13333 P PPLA3 ES 58 C 15087 6838 161 Europe/Madrid 2012-03-04
-3106734 Valdorros Valdorros Valdorros 42.17232 -3.70938 P PPLA3 ES 55 BU 09406 182 901 Europe/Madrid 2012-03-04
-3106742 Valdilecha Valdilecha Valdilecha 40.2953 -3.30233 P PPLA3 ES 29 M 28165 2347 705 Europe/Madrid 2012-03-04
-3106745 Valdezate Valdezate Valdezate 41.60232 -3.93045 P PPLA3 ES 55 BU 09405 178 828 Europe/Madrid 2012-03-04
-3106748 Valdevimbre Valdevimbre Valdevimbre 42.41959 -5.61975 P PPLA3 ES 55 LE 24187 1089 811 Europe/Madrid 2012-03-04
-3106754 Valdevacas de Montejo Valdevacas de Montejo Valdevacas de Montejo 41.52068 -3.63572 P PPLA3 ES 55 SG 40212 28 1122 Europe/Madrid 2012-03-04
-3106759 Valdetorres de Jarama Valdetorres de Jarama Valdetorres de Jarama 40.69366 -3.51156 P PPLA3 ES 29 M 28164 3139 655 Europe/Madrid 2012-03-04
-3106763 Valdestillas Valdestillas Valdestillas 41.47697 -4.77116 P PPLA3 ES 55 VA 47182 1683 702 Europe/Madrid 2012-03-04
-3106771 Valdesotos Valdesotos Valdesotos 40.95546 -3.32542 P PPLA3 ES 54 GU 19307 23 827 Europe/Madrid 2012-03-04
-3106777 Valdescorriel Valdescorriel Valdescorriel 42.02233 -5.50998 P PPLA3 ES 55 ZA 49229 191 736 Europe/Madrid 2012-03-04
-3106786 Val de San Martín Val de San Martin 41.05787 -1.44934 P PPLA3 ES 52 Z 50274 83 1009 Europe/Madrid 2012-03-04
-3106787 Val de San Lorenzo Val de San Lorenzo Val de San Lorenzo 42.41819 -6.12391 P PPLA3 ES 55 LE 24185 659 893 Europe/Madrid 2012-03-04
-3106793 Valdesamario Valdesamario Valdesamario 42.72094 -5.95104 P PPLA3 ES 55 LE 24184 211 1012 Europe/Madrid 2012-03-04
-3106797 Valderrueda Valderrueda Valderrueda 42.81558 -4.94731 P PPLA3 ES 55 LE 24183 1100 1034 Europe/Madrid 2012-03-04
-3106800 Valderrodrigo Valderrodrigo Valderrodrigo 41.06524 -6.50878 P PPLA3 ES 55 SA 37337 173 734 Europe/Madrid 2012-03-04
-3106801 Valderrodilla Valderrodilla Valderrodilla 41.56346 -2.80777 P PPLA3 ES 55 SO 42197 111 937 Europe/Madrid 2012-03-04
-3106803 Valderrobres Valderrobres Baldecaxicos,Valderrobres,Vall-de-roures,Vallderroures 40.87209 0.15431 P PPLA3 ES 52 TE 44246 2077 498 Europe/Madrid 2012-03-04
-3106804 Valderrey Valderrey Valderrey 42.39408 -6.02151 P PPLA3 ES 55 LE 24182 567 832 Europe/Madrid 2012-03-04
-3106805 Valderrebollo Valderrebollo Valderrebollo 40.81035 -2.72887 P PPLA3 ES 54 GU 19306 46 877 Europe/Madrid 2012-03-04
-3106807 Valderrábano Valderrabano Valderrabano,Valderrábano 42.60674 -4.65584 P PPLA3 ES 55 P 34190 60 954 Europe/Madrid 2012-03-04
-3106812 Valderas Valderas Valderas 42.0783 -5.44355 P PPLA3 ES 55 LE 24181 2036 755 Europe/Madrid 2012-03-04
-3106818 Valdeprados Valdeprados Valdeprados 40.81766 -4.25734 P PPLA3 ES 55 SG 40211 64 988 Europe/Madrid 2012-03-04
-3106822 Valdeprado Valdeprado Valdeprado 41.93768 -2.10915 P PPLA3 ES 55 SO 42196 21 841 Europe/Madrid 2012-03-04
-3106826 Valdepolo Valdepolo Valdepolo 42.57686 -5.22513 P PPLA3 ES 55 LE 24180 1451 876 Europe/Madrid 2012-03-04
-3106830 Valdepiélagos Valdepielagos Valdepielagos,Valdepiélagos 40.75842 -3.46164 P PPLA3 ES 29 M 28163 414 752 Europe/Madrid 2011-07-31
-3106831 Valdepiélago Valdepielago Valdepielago,Valdepiélago 42.86896 -5.39763 P PPLA3 ES 55 LE 24179 431 1040 Europe/Madrid 2012-03-04
-3106836 Valdepeñas de la Sierra Valdepenas de la Sierra Valdepenas de la Sierra,Valdepeñas de la Sierra 40.90562 -3.38414 P PPLA3 ES 54 GU 19305 187 844 Europe/Madrid 2012-03-04
-3106843 Valdeolmos Valdeolmos Valdeolmos 40.63708 -3.45064 P PPL ES 29 M 28162 2207 702 Europe/Madrid 2012-01-19
-3106844 Valdeolmillos Valdeolmillos Valdeolmillos 42.04123 -4.40014 P PPLA3 ES 55 P 34189 84 784 Europe/Madrid 2012-03-04
-3106846 Valdeolivas Valdeolivas Valdeolivas 40.506 -2.44532 P PPLA3 ES 54 CU 16228 268 929 Europe/Madrid 2012-03-04
-3106848 Valdeobispo Valdeobispo Valdeobispo 40.08297 -6.24757 P PPLA3 ES 57 CC 10202 774 339 Europe/Madrid 2012-03-04
-3106855 Valdenebro de los Valles Valdenebro de los Valles Valdenebro de los Valles 41.8569 -4.97005 P PPLA3 ES 55 VA 47181 219 809 Europe/Madrid 2012-03-04
-3106856 Valdenebro Valdenebro Valdenebro 41.57166 -2.96424 P PPLA3 ES 55 SO 42195 149 940 Europe/Madrid 2012-03-04
-3106862 Valdemoro-Sierra Valdemoro-Sierra Valdemoro de la Sierra,Valdemoro-Sierra 40.1 -1.76667 P PPLA3 ES 54 CU 16227 168 1111 Europe/Madrid 2012-03-04
-3106868 Valdemoro Valdemoro Val'demoro,Вальдеморо 40.19081 -3.67887 P PPLA3 ES 29 M 28161 62750 607 Europe/Madrid 2012-03-04
-3106869 Valdemorillo de la Sierra Valdemorillo de la Sierra Valdemorillo,Valdemorillo de la Sierra 40.03333 -1.78333 P PPLA3 ES 54 CU 16225 79 1130 Europe/Madrid 2012-03-04
-3106870 Valdemorillo Valdemorillo Valdemorillo 40.50064 -4.0671 P PPLA3 ES 29 M 28160 11045 811 Europe/Madrid 2012-03-04
-3106876 Valdemora Valdemora Valdemora 42.19541 -5.42747 P PPLA3 ES 55 LE 24178 96 779 Europe/Madrid 2012-03-04
-3106880 Valdemierque Valdemierque Valdemierque 40.82176 -5.58224 P PPLA3 ES 55 SA 37336 47 941 Europe/Madrid 2012-03-04
-3106886 Valdemeca Valdemeca Valdemeca 40.22367 -1.74358 P PPLA3 ES 54 CU 16224 96 1312 Europe/Madrid 2012-03-04
-3106888 Valdemaqueda Valdemaqueda Valdemaqueda 40.51201 -4.29722 P PPLA3 ES 29 M 28159 775 861 Europe/Madrid 2012-03-04
-3106890 Valdemanco Valdemanco Valdemanco 40.87039 -3.65873 P PPLA3 ES 29 M 28158 840 1134 Europe/Madrid 2012-03-04
-3106891 Valdemaluque Valdemaluque Valdemaluque 41.67376 -3.04643 P PPLA3 ES 55 SO 42194 244 944 Europe/Madrid 2012-03-04
-3106893 Valdemadera Valdemadera Valdemadera 41.98408 -2.07403 P PPLA3 ES 27 LO 26161 10 973 Europe/Madrid 2012-03-04
-3106895 Valdeltormo Valdeltormo Valdeltormo,Valldeltormo 40.98716 0.08342 P PPLA3 ES 52 TE 44245 344 448 Europe/Madrid 2012-03-04
-3106897 Valdelosa Valdelosa Valdelosa 41.17157 -5.7839 P PPLA3 ES 55 SA 37335 547 842 Europe/Madrid 2012-03-04
-3106902 Valdelinares Valdelinares Valdelinares 40.39114 -0.60593 P PPLA3 ES 52 TE 44244 149 1682 Europe/Madrid 2012-03-04
-3106903 Valdelcubo Valdelcubo Valdelcubo 41.22637 -2.67588 P PPLA3 ES 54 GU 19303 78 1020 Europe/Madrid 2011-07-31
-3106917 Valdelagua del Cerro Valdelagua del Cerro Valdelagua del Cerro 41.88825 -2.11538 P PPLA3 ES 55 SO 42193 15 1120 Europe/Madrid 2012-03-04
-3106920 Valdelageve Valdelageve Valdelageve 40.36949 -5.99078 P PPLA3 ES 55 SA 37334 106 648 Europe/Madrid 2012-03-04
-3106926 Valdelacasa Valdelacasa Valdelacasa 40.50631 -5.76354 P PPLA3 ES 55 SA 37333 317 956 Europe/Madrid 2012-03-04
-3106934 Valdehorna Valdehorna 41.07275 -1.42376 P PPLA3 ES 52 Z 50273 49 885 Europe/Madrid 2012-03-04
-3106936 Valdehijaderos Valdehijaderos Valdehijaderos 40.41916 -5.84792 P PPLA3 ES 55 SA 37332 108 779 Europe/Madrid 2012-03-04
-3106942 Valdegrudas Valdegrudas Valdegrudas 40.71125 -3.01209 P PPLA3 ES 54 GU 19302 63 977 Europe/Madrid 2012-03-04
-3106947 Valdefuentes de Sangusín Valdefuentes de Sangusin Valdefuentes de Sangusin,Valdefuentes de Sangusín 40.46578 -5.83286 P PPLA3 ES 55 SA 37331 297 893 Europe/Madrid 2012-03-04
-3106948 Valdefuentes del Páramo Valdefuentes del Paramo Valdefuentes del Paramo,Valdefuentes del Páramo 42.3237 -5.83097 P PPLA3 ES 55 LE 24176 377 787 Europe/Madrid 2012-03-04
-3106955 Valdefresno Valdefresno Valdefresno 42.59492 -5.49355 P PPLA3 ES 55 LE 24175 1911 872 Europe/Madrid 2012-03-04
-3106958 Valdefinjas Valdefinjas Valdefinjas 41.45172 -5.45232 P PPLA3 ES 55 ZA 49228 90 722 Europe/Madrid 2012-03-04
-3106967 Valdecuenca Valdecuenca Valdecuenca 40.29776 -1.40829 P PPLA3 ES 52 TE 44243 48 1337 Europe/Madrid 2012-03-04
-3106971 Valdeconcha Valdeconcha Valdeconcha 40.45642 -2.87662 P PPLA3 ES 54 GU 19301 49 734 Europe/Madrid 2012-03-04
-3106980 Valdecasa Valdecasa Valdecasa 40.65931 -5.01183 P PPLA3 ES 55 AV 05252 88 1368 Europe/Madrid 2012-03-04
-3106985 Valdecarros Valdecarros Valdecarros 40.77006 -5.42219 P PPLA3 ES 55 SA 37330 397 886 Europe/Madrid 2012-03-04
-3107005 Valdeaveruelo Valdeaveruelo Valdeaveruelo 40.63472 -3.31367 P PPLA3 ES 54 GU 19300 570 744 Europe/Madrid 2012-03-04
-3107006 Valdeavero Valdeavero Valdeavero 40.6298 -3.33001 P PPLA3 ES 29 M 28156 790 714 Europe/Madrid 2011-07-31
-3107008 Valdeavellano de Tera Valdeavellano de Tera Valdeavellano de Tera 41.94229 -2.57634 P PPLA3 ES 55 SO 42191 222 1136 Europe/Madrid 2012-03-04
-3107009 Valdeavellano Valdeavellano Valdeavellano 40.6656 -2.96977 P PPLA3 ES 54 GU 19299 104 969 Europe/Madrid 2012-03-04
-3107014 Valdearenas Valdearenas Valdearenas 40.80939 -2.99218 P PPLA3 ES 54 GU 19298 89 790 Europe/Madrid 2012-03-04
-3107015 Valdearcos de la Vega Valdearcos de la Vega Valdearcos de la Vega 41.6426 -4.04845 P PPLA3 ES 55 VA 47180 110 779 Europe/Madrid 2012-03-04
-3107019 Valdeande Valdeande Valdeande 41.83302 -3.52792 P PPLA3 ES 55 BU 09403 123 951 Europe/Madrid 2012-03-04
-3107026 Valdealgorfa Valdealgorfa Valdealgorfa 40.99066 -0.03433 P PPLA3 ES 52 TE 44241 731 510 Europe/Madrid 2012-03-04
-3107038 Valdastillas Valdastillas Valdastillas 40.13293 -5.87932 P PPLA3 ES 57 CC 10196 317 612 Europe/Madrid 2012-03-04
-3107040 Valdarachas Valdarachas Valdarachas 40.5171 -3.12652 P PPLA3 ES 54 GU 19297 28 760 Europe/Madrid 2012-03-04
-3107041 Valdaracete Valdaracete Valdaracete 40.2077 -3.191 P PPLA3 ES 29 M 28155 630 750 Europe/Madrid 2012-03-04
-3107065 Valcabado Valcabado Valcabado 41.54862 -5.74916 P PPLA3 ES 55 ZA 49227 337 682 Europe/Madrid 2012-03-04
-3107071 Valbuena de Pisuerga Valbuena de Pisuerga Valbuena,Valbuena de Pisuerga 42.14584 -4.2401 P PPLA3 ES 55 P 34186 66 773 Europe/Madrid 2012-03-04
-3107074 Valbuena de Duero Valbuena de Duero Valbuena de Duero 41.64323 -4.29271 P PPLA3 ES 55 VA 47179 497 735 Europe/Madrid 2012-03-04
-3107084 Valbona Valbona Valbona 40.22877 -0.81079 P PPLA3 ES 52 TE 44240 220 950 953 Europe/Madrid 2012-03-04
-3107087 Valacloche Valacloche Valacloche 40.19092 -1.09134 P PPLA3 ES 52 TE 44239 26 988 Europe/Madrid 2012-03-04
-3107102 Vadocondes Vadocondes Vadocondes 41.63924 -3.57378 P PPLA3 ES 55 BU 09400 412 810 Europe/Madrid 2012-03-04
-3107105 Vadillo de la Sierra Vadillo de la Sierra Vadillo de la Sierra 40.60634 -5.12506 P PPLA3 ES 55 AV 05251 119 1353 Europe/Madrid 2012-03-04
-3107106 Vadillo de la Guareña Vadillo de la Guarena Vadillo de la Guarena,Vadillo de la Guareña 41.28242 -5.353 P PPLA3 ES 55 ZA 49226 351 716 Europe/Madrid 2012-03-04
-3107109 Vadillo Vadillo Vadillo 41.79111 -3.00845 P PPLA3 ES 55 SO 42190 136 1106 Europe/Madrid 2012-03-04
-3107112 Vaciamadrid Vaciamadrid Vaciamadrid,Vasiamadrid,Васиамадрид 40.32605 -3.51088 P PPL ES 29 M 28123 68405 570 Europe/Madrid 2012-01-19
-3107133 Utrillas Utrillas Utrella,Utrillas 40.81267 -0.84545 P PPLA3 ES 52 TE 44238 3219 951 Europe/Madrid 2012-03-04
-3107138 Uterga Uterga 42.70981 -1.76004 P PPLA3 ES 32 NA 31246 170 494 Europe/Madrid 2012-03-04
-3107139 Utebo Utebo Utebo 41.71394 -0.99487 P PPLA3 ES 52 Z 50272 17677 209 Europe/Madrid 2012-03-04
-3107140 Utande Utande Utande 40.84832 -2.9277 P PPLA3 ES 54 GU 19296 52 839 Europe/Madrid 2012-03-04
-3107141 Usurbil Usurbil Usurbil,Usúrbil 43.27164 -2.04912 P PPLA3 ES 59 SS 20073 5559 33 Europe/Madrid 2012-03-04
-3107149 Used Used 41.05554 -1.55954 P PPLA3 ES 52 Z 50271 355 1049 Europe/Madrid 2012-03-04
-3107156 Urzainqui Urzainqui Urzainqui 42.83029 -0.94618 P PPLA3 ES 32 NA 31245 111 766 Europe/Madrid 2012-03-04
-3107157 Uruñuela Urunuela Urunuela,Uruñuela 42.4431 -2.70748 P PPLA3 ES 27 LO 26160 778 499 Europe/Madrid 2012-03-04
-3107159 Urueñas Uruenas Uruenas,Urueñas 41.35589 -3.77391 P PPLA3 ES 55 SG 40210 124 1052 Europe/Madrid 2012-03-04
-3107160 Urueña Uruena Uruena,Urueña 41.72738 -5.20304 P PPLA3 ES 55 VA 47178 211 832 Europe/Madrid 2012-03-04
-3107180 Urriés Urries 42.51943 -1.13022 P PPLA3 ES 52 Z 50270 56 548 Europe/Madrid 2012-03-04
-3107190 Urrea de Jalón Urrea de Jalon Urrea de Jalon,Urrea de Jalón 41.66715 -1.2342 P PPLA3 ES 52 Z 50269 343 287 Europe/Madrid 2012-03-04
-3107202 Urones de Castroponce Urones de Castroponce Urones de Castroponce 42.09911 -5.28222 P PPLA3 ES 55 VA 47177 145 751 Europe/Madrid 2012-03-04
-3107204 Urnieta Urnieta 43.24727 -1.99084 P PPLA3 ES 59 SS 20072 5827 60 Europe/Madrid 2012-03-04
-3107229 Urdiales del Páramo Urdiales del Paramo 42.37034 -5.77297 P PPLA3 ES 55 LE 24174 593 811 Europe/Madrid 2012-03-04
-3107259 Unzué Unzue 42.65252 -1.62598 P PPLA3 ES 32 NA 31238 143 655 Europe/Madrid 2012-03-04
-3107269 Undués de Lerda Undues de Lerda 42.56572 -1.16944 P PPLA3 ES 52 Z 50268 63 628 Europe/Madrid 2012-03-04
-3107275 Uncastillo Uncastillo Uncastillo 42.35963 -1.12842 P PPLA3 ES 52 Z 50267 852 614 Europe/Madrid 2012-03-04
-3107278 Uña de Quintana Una de Quintana Una de Quintana,Uña de Quintana 42.08662 -6.14475 P PPLA3 ES 55 ZA 49225 210 783 Europe/Madrid 2012-03-04
-3107281 Uña Una Una,Uña 40.2241 -1.97788 P PPLA3 ES 54 CU 16219 138 1140 Europe/Madrid 2012-03-04
-3107283 Umbrías Umbrias Umbrias,Umbrías 40.3153 -5.58037 P PPLA3 ES 55 AV 05249 149 1088 Europe/Madrid 2012-03-04
-3107293 Ultramort Ultramort Ultramort 42.0364 3.03455 P PPLA3 ES 56 GI 17203 193 27 Europe/Madrid 2012-03-04
-3107301 Ullastret Ullastret Ullastret,Ullestret 42 3.06667 P PPLA3 ES 56 GI 17205 0 40 Europe/Madrid 2012-03-04
-3107303 Ulldemolins Ulldemolins Ulldemolins 41.32216 0.8765 P PPLA3 ES 56 T 43157 43157 472 649 Europe/Madrid 2012-03-04
-3107305 Ulldecona Ulldecona 40.59734 0.44718 P PPLA3 ES 56 T 43156 6273 133 141 Europe/Madrid 2012-03-04
-3107306 Ullastrell Ullastrell Ullastrell 41.52643 1.95537 P PPL ES 56 B 08001 1467 317 Europe/Madrid 2012-01-19
-3107309 Ullà Ulla Ulla,Ullà,Ullá 42.05 3.11667 P PPLA3 ES 56 GI 17204 943 42 Europe/Madrid 2012-03-04
-3107316 Ujué Ujue Ujue,Ujué 42.5 -1.5 P PPLA3 ES 32 NA 31235 239 638 Europe/Madrid 2012-03-04
-3107318 Ujados Ujados Ujados 41.23526 -3.00482 P PPLA3 ES 54 GU 19294 32 1144 Europe/Madrid 2012-03-04
-3107320 Ugena Ugena 40.15572 -3.87603 P PPLA3 ES 54 TO 45176 2950 656 Europe/Madrid 2011-07-31
-3107345 Ucero Ucero Ucero 41.71685 -3.05154 P PPLA3 ES 55 SO 42189 97 966 Europe/Madrid 2012-03-04
-3107348 Uceda Uceda Uceda 40.83944 -3.4604 P PPLA3 ES 54 GU 19293 1763 785 Europe/Madrid 2012-03-04
-3107364 Tui Tui Tui,Tuy 42.04713 -8.64435 P PPLA3 ES 58 PO 36055 17262 50 Europe/Madrid 2012-03-04
-3107386 Turégano Turegano Turegano,Turégano 41.1561 -4.00696 P PPLA3 ES 55 SG 40208 1151 940 Europe/Madrid 2012-03-04
-3107387 Turcia Turcia Turcia 42.5343 -5.87844 P PPLA3 ES 55 LE 24173 1194 849 Europe/Madrid 2012-03-04
-3107396 Tulebras Tulebras Tulebras 41.97695 -1.67618 P PPLA3 ES 32 NA 31233 106 375 Europe/Madrid 2012-03-04
-3107413 Tudelilla Tudelilla Tudelilla 42.30023 -2.11749 P PPLA3 ES 27 LO 26158 377 544 Europe/Madrid 2012-03-04
-3107415 Tudela de Duero Tudela de Duero Tudela,Tudela de Duera,Tudela de Duero 41.5845 -4.58093 P PPLA3 ES 55 VA 47175 6302 706 Europe/Madrid 2012-03-04
-3107418 Tudela Tudela Tudela,Тудела 42.06166 -1.60452 P PPLA3 ES 32 NA 31232 34717 266 Europe/Madrid 2012-03-04
-3107424 Tubilla del Lago Tubilla del Lago Tubilla del Lago 41.80154 -3.58626 P PPLA3 ES 55 BU 09396 168 891 Europe/Madrid 2012-03-04
-3107425 Tubilla del Agua Tubilla del Agua Tubilla del Agua 42.70932 -3.80116 P PPLA3 ES 55 BU 09395 232 781 Europe/Madrid 2012-03-04
-3107438 Truchas Truchas Truchas 42.26093 -6.43605 P PPLA3 ES 55 LE 24172 647 1121 Europe/Madrid 2012-03-04
-3107444 Tronchón Tronchon Tronchon,Tronchón 40.62092 -0.39833 P PPLA3 ES 52 TE 44236 108 1109 Europe/Madrid 2012-03-04
-3107466 Triollo Triollo Triollo 42.92456 -4.6813 P PPLA3 ES 55 P 34185 82 1300 Europe/Madrid 2012-03-04
-3107474 Trillo Trillo Trillo 40.70086 -2.59265 P PPLA3 ES 54 GU 19291 1353 730 Europe/Madrid 2012-03-04
-3107475 Trijueque Trijueque Trijeque,Trijueque 40.77426 -2.99253 P PPLA3 ES 54 GU 19290 1055 999 Europe/Madrid 2012-03-04
-3107476 Trigueros del Valle Trigueros del Valle Trigueros del Valle 41.83048 -4.65178 P PPLA3 ES 55 VA 47174 343 770 Europe/Madrid 2012-03-04
-3107481 Tricio Tricio Tritium 42.40223 -2.71912 P PPLA3 ES 27 LO 26157 373 558 Europe/Madrid 2012-03-04
-3107496 Treviana Treviana Treviana 42.55901 -3.05032 P PPLA3 ES 27 LO 26155 228 581 Europe/Madrid 2012-03-04
-3107501 Tresviso Tresviso Tresviso 43.25753 -4.66768 P PPLA3 ES 39 S 39088 0 886 Europe/Madrid 2012-03-04
-3107504 Trespaderne Trespaderne Trespaderne 42.80221 -3.38989 P PPLA3 ES 55 BU 09394 1059 556 Europe/Madrid 2012-03-04
-3107509 Trescasas Trescasas Trescasas 40.96442 -4.0359 P PPLA3 ES 55 SG 40207 305 1131 Europe/Madrid 2012-03-04
-3107519 Tremp Tremp Tremp 42.16703 0.89487 P PPLA3 ES 56 L 25234 5639 475 Europe/Madrid 2012-03-04
-3107524 Tremedal de Tormes Tremedal de Tormes Tremedal de Tormes 41.07423 -6.18164 P PPLA3 ES 55 SA 37329 36 771 Europe/Madrid 2012-03-04
-3107538 Trefacio Trefacio Trefacio 42.12165 -6.65407 P PPLA3 ES 55 ZA 49224 251 975 Europe/Madrid 2012-03-04
-3107546 Trazo Trazo Santa Maria,Santa María,Trac,Trazo,Traç 43.01667 -8.53333 P PPLA3 ES 58 C 15086 3592 307 Europe/Madrid 2012-03-04
-3107558 Traspinedo Traspinedo Traspinedo 41.57509 -4.47569 P PPLA3 ES 55 VA 47173 948 741 Europe/Madrid 2012-03-04
-3107564 Trasobares Trasobares Trasobares 41.64308 -1.64192 P PPLA3 ES 52 Z 50266 175 674 Europe/Madrid 2012-03-04
-3107566 Trasmoz Trasmoz Trasmoz 41.82599 -1.72278 P PPLA3 ES 52 Z 50265 65 725 Europe/Madrid 2012-03-04
-3107574 Trasmiras Trasmiras Trasmiras 42.0254 -7.61735 P PPLA3 ES 58 OR 32082 1752 644 Europe/Madrid 2012-03-04
-3107604 Tramaced Tramaced Tramaced 41.97318 -0.29752 P PPLA3 ES 52 HU 22239 116 397 Europe/Madrid 2012-03-04
-3107607 Tramacastilla Tramacastilla Tramacastilla 40.43058 -1.57466 P PPLA3 ES 52 TE 44235 136 1269 Europe/Madrid 2012-03-04
-3107608 Tramacastiel Tramacastiel Tramacastiel 40.18842 -1.24081 P PPLA3 ES 52 TE 44234 115 886 Europe/Madrid 2012-03-04
-3107610 Traiguera Traiguera Traiguera 40.52511 0.29023 P PPLA3 ES 60 CS 12121 1531 280 Europe/Madrid 2012-03-04
-3107626 Trabazos Trabazos Trabazos 41.74793 -6.49094 P PPLA3 ES 55 ZA 49223 0 729 Europe/Madrid 2012-03-04
-3107632 Trabanca Trabanca Trabanca 41.23278 -6.38484 P PPLA3 ES 55 SA 37328 267 745 Europe/Madrid 2012-03-04
-3107635 Trabadelo Trabadelo Trabadelo 42.64874 -6.88 P PPLA3 ES 55 LE 24171 0 556 Europe/Madrid 2012-03-04
-3107637 Trabada Trabada 43.44475 -7.19527 P PPLA3 ES 58 LU 27061 1528 195 Europe/Madrid 2012-03-04
-3107653 Touro Touro San Juan,Touro 42.86812 -8.30764 P PPLA3 ES 58 C 15085 4574 325 Europe/Madrid 2012-03-04
-3107661 Tossa de Mar Tossa de Mar Tossa,Tossa de Mar 41.71667 2.93333 P PPLA3 ES 56 GI 17202 5001 25 Europe/Madrid 2012-03-04
-3107665 Tosos Tosos Tosos 41.31542 -1.07292 P PPLA3 ES 52 Z 50264 224 612 Europe/Madrid 2012-03-04
-3107667 Toses Toses 42.32162 2.01582 P PPLA3 ES ES 56 GI 17201 0 1447 Europe/Madrid 2012-03-04
-3107668 Tosantos Tosantos Tosantos 42.41368 -3.24286 P PPLA3 ES 55 BU 09392 64 821 Europe/Madrid 2012-03-04
-3107674 Tortuero Tortuero Tortuera,Tortuero 40.93414 -3.35024 P PPLA3 ES 54 GU 19288 38 943 Europe/Madrid 2012-03-04
-3107675 Tortuera Tortuera Tortuera 40.97181 -1.79764 P PPLA3 ES 54 GU 19287 221 1114 Europe/Madrid 2012-03-04
-3107677 Tortosa Tortosa Tortosa,Tortoza,twrtwsh,טורטוסה 40.81249 0.5216 P PPLA3 ES 56 T 43155 35143 18 Europe/Madrid 2012-03-04
-3107682 Tórtoles Tortoles Tortoles,Tórtoles 40.5612 -5.2612 P PPLA3 ES 55 AV 05246 92 1240 Europe/Madrid 2012-03-04
-3107684 Tórtola de Henares Tortola de Henares Tortola,Tortola de Henares,Tórtola de Henares 40.70425 -3.12316 P PPLA3 ES 54 GU 19286 487 730 Europe/Madrid 2012-03-04
-3107693 Torrubia de Soria Torrubia de Soria Torrubia de Soria 41.63045 -2.09151 P PPLA3 ES 55 SO 42187 75 1044 Europe/Madrid 2012-03-04
-3107694 Torrubia Torrubia Torrubia 40.96581 -1.90064 P PPLA3 ES 54 GU 19285 39 1173 Europe/Madrid 2012-03-04
-3107700 Torroella de Montgrí Torroella de Montgri Torroella,Torroella de Montgri,Torroella de Montgrí 42.04254 3.12703 P PPLA3 ES 56 GI 17199 11598 29 Europe/Madrid 2011-07-31
-3107701 Torroella de Fluvià Torroella de Fluvia Torroella de Fluvia,Torroella de Fluvià 42.17522 3.04025 P PPLA3 ES 56 GI 17198 449 11 Europe/Madrid 2012-03-04
-3107702 Torrijo del Campo Torrijo del Campo Torrijo del Campo 40.82575 -1.33766 P PPLA3 ES 52 TE 44232 540 927 Europe/Madrid 2012-03-04
-3107703 Torrijo de la Cañada Torrijo de la Canada Torrijo,Torrijo de la Canada,Torrijo de la Cañada 41.47304 -1.87441 P PPLA3 ES 52 Z 50263 338 800 Europe/Madrid 2012-03-04
-3107705 Torrijas Torrijas Torrijas 40.01667 -0.95 P PPLA3 ES 52 TE 44231 85 1381 Europe/Madrid 2012-03-04
-3107708 Torrevelilla Torrevelilla Torrevelilla,la Torre de Vilella 40.902 -0.10977 P PPLA3 ES 52 TE 44230 193 624 Europe/Madrid 2012-03-04
-3107710 Torre Val de San Pedro Torre Val de San Pedro Torre Val de San Pedro 41.07534 -3.87116 P PPLA3 ES 55 SG 40206 198 1114 Europe/Madrid 2012-03-04
-3107714 Torresmenudas Torresmenudas Torresmenudas 41.10249 -5.78475 P PPLA3 ES 55 SA 37327 207 790 Europe/Madrid 2012-03-04
-3107717 Torres de Segre Torres de Segre Torres de Segre,Torres del Segre 41.53399 0.5142 P PPL ES 56 L 25120 1982 126 Europe/Madrid 2012-01-19
-3107719 Torres del Río Torres del Rio Torres del Rio,Torres del Río 42.55162 -2.27285 P PPLA3 ES 32 NA 31231 171 477 Europe/Madrid 2012-03-04
-3107721 Torres del Carrizal Torres del Carrizal Torres del Carrizal 41.61701 -5.67173 P PPLA3 ES 55 ZA 49222 500 648 Europe/Madrid 2012-03-04
-3107722 Torres de la Alameda Torres de la Alameda Torres de la Alameda 40.40264 -3.35767 P PPLA3 ES 29 M 28154 5811 672 Europe/Madrid 2012-03-04
-3107723 Torres de Berrellén Torres de Berrellen Torres de Berellen,Torres de Berellén,Torres de Berrellen,Torres de Berrellén 41.75797 -1.0655 P PPL ES 52 Z 50297 1471 216 Europe/Madrid 2012-01-19
-3107724 Torres de Barbués Torres de Barbues Torres de Barbues,Torres de Barbués 41.9605 -0.4335 P PPLA3 ES 52 HU 22236 332 359 Europe/Madrid 2012-03-04
-3107725 Torres de Alcanadre Torres de Alcanadre Torres de Alcanadre 41.96727 -0.11096 P PPLA3 ES 52 HU 22235 123 391 Europe/Madrid 2012-03-04
-3107726 Torres de Albarracín Torres de Albarracin Torres de Albarracin,Torres de Albarracín 40.42709 -1.53242 P PPLA3 ES 52 TE 44229 141 1235 Europe/Madrid 2012-03-04
-3107728 Torrescárcela Torrescarcela Torrescarcela,Torrescárcela 41.48455 -4.3192 P PPLA3 ES 55 VA 47172 166 890 Europe/Madrid 2012-03-04
-3107729 Torresandino Torresandino Torresandino 41.8292 -3.90981 P PPLA3 ES 55 BU 09390 796 855 Europe/Madrid 2012-03-04
-3107746 Torrent Torrent 41.95243 3.12684 P PPLA3 ES 56 GI 17197 176 45 Europe/Madrid 2011-07-31
-3107750 Torremormojón Torremormojon Torremormojon,Torremormojón 41.96018 -4.77765 P PPLA3 ES 55 P 34184 78 774 Europe/Madrid 2012-03-04
-3107751 Torremontalbo Torremontalbo Torremontalbo 42.5 -2.68333 P PPLA3 ES 27 LO 26154 21 419 Europe/Madrid 2012-03-04
-3107752 Torremochuela Torremochuela Torremochuela 40.76528 -1.8419 P PPLA3 ES 54 GU 19284 19 1169 Europe/Madrid 2012-03-04
-3107753 Torremocha del Pinar Torremocha del Pinar Torremocha del Pinar 40.88954 -2.04497 P PPLA3 ES 54 GU 19283 56 1289 Europe/Madrid 2012-03-04
-3107754 Torremocha del Campo Torremocha del Campo Torremocha del Campo 40.97819 -2.61881 P PPLA3 ES 54 GU 19282 251 1088 Europe/Madrid 2012-03-04
-3107756 Torremocha de Jarama Torremocha de Jarama Torremocha 40.84148 -3.49666 P PPLA3 ES 29 M 28153 538 715 Europe/Madrid 2012-03-04
-3107757 Torremocha de Jadraque Torremocha de Jadraque Torremocha de Jadraque 41.01881 -2.89918 P PPLA3 ES 54 GU 19281 22 933 Europe/Madrid 2012-03-04
-3107762 Torremenga Torremenga Torremenga 40.04658 -5.77471 P PPLA3 ES 57 CC 10191 616 530 Europe/Madrid 2012-03-04
-3107764 Torre los Negros Torre los Negros Torre los Negros 40.85308 -1.09782 P PPLA3 ES 52 TE 44227 97 1081 Europe/Madrid 2012-03-04
-3107765 Torrelodones Torrelodones 40.57654 -3.92658 P PPLA3 ES 29 M 28152 21781 856 Europe/Madrid 2012-03-04
-3107766 Torrelobatón Torrelobaton Tarrelobaton,Tarrelobatón,Torrelobaton,Torrelobatón 41.64942 -5.02526 P PPLA3 ES 55 VA 47171 590 752 Europe/Madrid 2012-03-04
-3107768 Torrelles de Llobregat Torrelles de Llobregat Torrellas de Llobregat,Torrelles,Torrelles de Llobregat 41.35 1.98333 P PPL ES 56 B 08204 4535 162 Europe/Madrid 2010-04-04
-3107770 Torrellas Torrellas Torrellas 41.89444 -1.77139 P PPLA3 ES 52 Z 50261 315 574 Europe/Madrid 2012-03-04
-3107775 Torrelavega Torrelavega Torrelavega,Торрелавега 43.34944 -4.04785 P PPLA3 ES 39 S 39087 55947 31 Europe/Madrid 2012-03-04
-3107776 Torrelara Torrelara Torrelara 42.16673 -3.51689 P PPLA3 ES 55 BU 09388 27 998 Europe/Madrid 2012-03-04
-3107777 Torrelapaja Torrelapaja Torrelapaja 41.58133 -1.95181 P PPLA3 ES 52 Z 50260 42 992 Europe/Madrid 2012-03-04
-3107779 Torrelaguna Torrelaguna 40.82764 -3.53683 P PPLA3 ES 29 M 28151 4012 736 Europe/Madrid 2012-03-04
-3107781 Torrejón de Velasco Torrejon de Velasco 40.18746 -3.77681 P PPLA3 ES 29 M 28150 3207 610 Europe/Madrid 2012-03-04
-3107782 Torrejón del Rey Torrejon del Rey Torrejon,Torrejon del Rey,Torrejón del Rey 40.64325 -3.33376 P PPLA3 ES 54 GU 19280 2877 725 Europe/Madrid 2011-07-31
-3107783 Torrejón de la Calzada Torrejon de la Calzada Torrejon de la Calzada,Torrejón de la Calzada 40.19886 -3.797 P PPLA3 ES 29 M 28149 5339 629 Europe/Madrid 2012-03-04
-3107784 Torrejón de Ardoz Torrejon de Ardoz Torrejon de Ardos,Torrejon de Ardoz,Torrejón de Ardoz,Torrekhon-de-Ardos,Торрехон-де-Ардос 40.45535 -3.46973 P PPLA3 ES 29 M 28148 118162 588 Europe/Madrid 2012-03-04
-3107787 Torreiglesias Torreiglesias Torreiglesias 41.10236 -4.0328 P PPLA3 ES 55 SG 40205 384 1021 Europe/Madrid 2012-03-04
-3107788 Torrehermosa Torrehermosa Torrehermosa 41.23767 -2.128 P PPLA3 ES 52 Z 50259 98 836 Europe/Madrid 2012-03-04
-3107792 Torregamones Torregamones Torregamones 41.487 -6.18335 P PPLA3 ES 55 ZA 49221 322 776 Europe/Madrid 2012-03-04
-3107793 Torregalindo Torregalindo Torregalindo 41.58299 -3.75222 P PPLA3 ES 55 BU 09387 121 851 Europe/Madrid 2012-03-04
-3107797 Torrefarrera Torrefarrera Torrefarrera 41.67318 0.60671 P PPL ES 56 L 25120 2270 218 Europe/Madrid 2012-01-19
-3107798 Torre en Cameros Torre en Cameros Torre en Cameros 42.24133 -2.51805 P PPLA3 ES 27 LO 26153 15 1161 Europe/Madrid 2012-03-04
-3107804 Torre de Peñafiel Torre de Penafiel Torre de Penafiel,Torre de Peñafiel 41.53646 -4.08833 P PPLA3 ES 55 VA 47170 54 791 Europe/Madrid 2012-03-04
-3107807 Torredembarra Torredembarra Torredembara 41.14505 1.39861 P PPLA3 ES 56 T 43153 15272 26 Europe/Madrid 2012-03-04
-3107811 Torre del Compte Torre del Compte Torre del Compte,Torre del Comte 40.93625 0.10934 P PPLA3 ES 52 TE 44225 166 505 Europe/Madrid 2012-03-04
-3107812 Torre del Burgo Torre del Burgo Torre del Burgo 40.79176 -3.07723 P PPLA3 ES 54 GU 19279 122 745 Europe/Madrid 2012-03-04
-3107813 Torre del Bierzo Torre del Bierzo Albares,Albares de la Ribera,Torre del Bierzo 42.60769 -6.36675 P PPLA3 ES 55 LE 24170 2613 700 Europe/Madrid 2012-03-04
-3107814 Torre de las Arcas Torre de las Arcas Torre de las Arcas 40.84166 -0.71783 P PPLA3 ES 52 TE 44224 37 943 Europe/Madrid 2012-03-04
-3107817 Torre de Esgueva Torre de Esgueva Torre de Esgueva 41.76821 -4.20004 P PPLA3 ES 55 VA 47169 97 815 Europe/Madrid 2012-03-04
-3107821 Torre de Don Miguel Torre de Don Miguel Torre de Don Miguel 40.22333 -6.57686 P PPLA3 ES 57 CC 10187 608 558 Europe/Madrid 2012-03-04
-3107823 Torre de Arcas Torre de Arcas Torre de Arcas 40.75137 -0.06892 P PPLA3 ES 52 TE 44223 96 753 Europe/Madrid 2012-03-04
-3107824 Torrecuadradilla Torrecuadradilla Torrecuadradilla 40.85364 -2.53216 P PPLA3 ES 54 GU 19278 51 1022 Europe/Madrid 2012-03-04
-3107825 Torrecuadrada de Molina Torrecuadrada de Molina Torrecuadrada de Molina 40.74946 -1.80707 P PPLA3 ES 54 GU 19277 25 1189 Europe/Madrid 2012-03-04
-3107829 Torrecilla sobre Alesanco Torrecilla sobre Alesanco Torrecilla 42.40825 -2.83379 P PPLA3 ES 27 LO 26152 53 614 Europe/Madrid 2012-03-04
-3107830 Torrecilla en Cameros Torrecilla en Cameros Torrecilla de Cameros,Torrecilla en Cameros 42.25532 -2.63109 P PPLA3 ES 27 LO 26151 596 747 Europe/Madrid 2012-03-04
-3107834 Torrecilla del Rebollar Torrecilla del Rebollar Torrecilla del Rebollar 40.90978 -1.07244 P PPLA3 ES 52 TE 44222 173 1145 Europe/Madrid 2012-03-04
-3107835 Torrecilla del Pinar Torrecilla del Pinar Torrecilla del Pinar 41.3736 -4.03838 P PPLA3 ES 55 SG 40204 285 878 Europe/Madrid 2012-03-04
-3107837 Torrecilla de los Ángeles Torrecilla de los Angeles Torrecilla de los Angeles,Torrecilla de los Ángeles 40.24788 -6.41606 P PPLA3 ES 57 CC 10185 705 453 Europe/Madrid 2012-03-04
-3107838 Torrecilla del Monte Torrecilla del Monte Torrecilla del Monte 42.0949 -3.69356 P PPLA3 ES 55 BU 09386 92 945 Europe/Madrid 2012-03-04
-3107840 Torrecilla de la Torre Torrecilla de la Torre Torrecilla de la Torre 41.66716 -5.04982 P PPLA3 ES 55 VA 47168 30 760 Europe/Madrid 2012-03-04
-3107841 Torrecilla de la Orden Torrecilla de la Orden Torrecilla de la Orden 41.21885 -5.22384 P PPLA3 ES 55 VA 47167 326 779 Europe/Madrid 2012-03-04
-3107842 Torrecilla de la Abadesa Torrecilla de la Abadesa Torrecilla de la Abadesa 41.48498 -5.08762 P PPLA3 ES 55 VA 47166 320 676 Europe/Madrid 2012-03-04
-3107843 Torrecilla de Alcañiz Torrecilla de Alcaniz Torrecilla de Alcaniz,Torrecilla de Alcañiz 40.96056 -0.09077 P PPLA3 ES 52 TE 44221 474 451 Europe/Madrid 2012-03-04
-3107846 Torrechiva Torrechiva Torre-xiva,Torrechiva 40.05 -0.4 P PPLA3 ES 60 CS 12118 100 323 Europe/Madrid 2012-03-04
-3107848 Torrecaballeros Torrecaballeros Torrecaballeros 40.99211 -4.0247 P PPLA3 ES 55 SG 40203 840 1160 Europe/Madrid 2012-03-04
-3107849 Torreblanca Torreblanca Torreblanca 40.22033 0.1965 P PPLA3 ES 60 CS 12117 5626 30 Europe/Madrid 2012-03-04
-3107850 Torreblacos Torreblacos Torreblacos 41.66927 -2.87881 P PPLA3 ES 55 SO 42185 32 980 Europe/Madrid 2012-03-04
-3107851 Torrebesses Torrebesses Torrebeses,Torrebesses 41.43333 0.6 P PPLA3 ES 56 L 25226 0 288 Europe/Madrid 2012-03-04
-3107859 Torreadrada Torreadrada Torreadrada 41.44474 -3.84 P PPLA3 ES 55 SG 40202 113 1082 Europe/Madrid 2012-03-04
-3107867 Torralbilla Torralbilla Torralbilla 41.21009 -1.338 P PPLA3 ES 52 Z 50258 70 888 Europe/Madrid 2012-03-04
-3107868 Torralba de Ribota Torralba de Ribota Torralba de Ribota 41.41803 -1.68429 P PPLA3 ES 52 Z 50257 184 653 Europe/Madrid 2012-03-04
-3107869 Torralba de los Sisones Torralba de los Sisones Torralba de los Sisones 40.89084 -1.45866 P PPLA3 ES 52 TE 44220 214 1042 Europe/Madrid 2012-03-04
-3107870 Torralba de los Frailes Torralba de los Frailes Torralba de los Frailes 41.03622 -1.66046 P PPLA3 ES 52 Z 50256 84 1093 Europe/Madrid 2012-03-04
-3107874 Torralba de Aragón Torralba de Aragon Torralba de Aragon,Torralba de Aragón 41.93487 -0.51053 P PPLA3 ES 52 HU 22232 113 395 Europe/Madrid 2012-03-04
-3107876 Torralba Torralba Torralba 40.30253 -2.28546 P PPLA3 ES 54 CU 16209 181 910 Europe/Madrid 2012-03-04
-3107878 Torquemada Torquemada Torquemada 42.0349 -4.3184 P PPLA3 ES 55 P 34182 1068 747 Europe/Madrid 2012-03-04
-3107886 Toro Toro Toro 41.52418 -5.39534 P PPLA3 ES 55 ZA 49219 9556 733 Europe/Madrid 2012-03-04
-3107888 Tornos Tornos 40.96188 -1.43389 P PPLA3 ES 52 TE 44219 237 1024 Europe/Madrid 2012-03-04
-3107902 Tornavacas Tornavacas Tornavacas 40.25498 -5.68876 P PPLA3 ES 57 CC 10183 1279 888 Europe/Madrid 2012-03-04
-3107903 Tornadizos de Ávila Tornadizos de Avila 40.62757 -4.61426 P PPLA3 ES 55 AV 05245 367 1185 Europe/Madrid 2012-03-04
-3107908 Tornabous Tornabous Tornabous 41.70117 1.05384 P PPLA3 ES 56 L 25225 820 297 Europe/Madrid 2012-03-04
-3107912 Tormón Tormon Tormon,Tormón 40.20266 -1.35406 P PPLA3 ES 52 TE 44218 41 1067 Europe/Madrid 2012-03-04
-3107916 Tormellas Tormellas Tormellas 40.30404 -5.51185 P PPLA3 ES 55 AV 05244 88 1064 Europe/Madrid 2012-03-04
-3107919 Tormantos Tormantos 42.49431 -3.07446 P PPLA3 ES 27 LO 26150 197 612 Europe/Madrid 2012-03-04
-3107922 Torlengua Torlengua Torlengua 41.45483 -2.16183 P PPLA3 ES 55 SO 42184 93 869 Europe/Madrid 2012-03-04
-3107932 Torija Torija Torija 40.7425 -3.0283 P PPLA3 ES 54 GU 19274 619 971 Europe/Madrid 2012-03-04
-3107940 Toreno Toreno Toreno 42.69955 -6.51236 P PPLA3 ES 55 LE 24169 3661 683 Europe/Madrid 2012-03-04
-3107941 Torelló Torello Torello,Torelló 42.04627 2.26679 P PPL ES 56 B 08150 13808 537 517 Europe/Madrid 2010-04-22
-3107945 Tordómar Tordomar Tordomar,Tordómar 42.0463 -3.86514 P PPLA3 ES 55 BU 09384 338 814 Europe/Madrid 2012-03-04
-3107947 Tordillos Tordillos Tordillos 40.85266 -5.35278 P PPLA3 ES 55 SA 37324 514 841 Europe/Madrid 2012-03-04
-3107950 Tordesilos Tordesilos Tordesilos 40.67074 -1.59372 P PPLA3 ES 54 GU 19272 158 1350 Europe/Madrid 2011-07-31
-3107952 Tordesillas Tordesillas Tordesilhas,Tordesillas 41.50202 -5.00146 P PPLA3 ES 55 VA 47165 8277 705 Europe/Madrid 2012-03-04
-3107955 Tordera Tordera Tordera 41.69914 2.71888 P PPLA3 ES 56 B 08284 15345 41 Europe/Madrid 2012-03-04
-3107956 Tordelrábano Tordelrabano Tordelrabano,Tordelrábano 41.21827 -2.75792 P PPLA3 ES 54 GU 19270 12 1020 Europe/Madrid 2012-03-04
-3107959 Tordellego Tordellego Tordellego 40.72165 -1.67036 P PPLA3 ES 54 GU 19271 59 1244 Europe/Madrid 2012-03-04
-3107960 Tordehumos Tordehumos Tordehumos 41.81531 -5.15811 P PPLA3 ES 55 VA 47164 498 743 Europe/Madrid 2012-03-04
-3107980 Toral de los Guzmanes Toral de los Guzmanes Toral de los Guzmanes 42.24274 -5.56771 P PPLA3 ES 55 LE 24168 646 744 Europe/Madrid 2012-03-04
-3107983 Torà de Riubregós Tora de Riubregos Tora,Tora de Rulbregos,Torá,Torá de Rulbregos 41.81667 1.4 P PPL ES 56 L 25223 1240 518 Europe/Madrid 2010-04-04
-3107989 Topas Topas Topas 41.15759 -5.63402 P PPLA3 ES 55 SA 37323 681 825 Europe/Madrid 2012-03-04
-3107997 Tona Tona Tona 41.84789 2.22808 P PPLA3 ES 56 B 08283 6955 601 603 Europe/Madrid 2012-03-04
-3108000 Tomiño Tomino Santa Maria,Santa María,Tomino,Tomiño 41.98772 -8.75502 P PPLA3 ES 58 PO 36054 13315 17 Europe/Madrid 2012-03-04
-3108008 Tolosa Tolosa Tolosa 43.13484 -2.07801 P PPLA3 ES 59 SS 20071 18044 80 Europe/Madrid 2012-03-04
-3108009 Toloriu Toloriu 42.3621 1.62761 P PPL ES 56 L 25030 1009 1227 Europe/Madrid 2010-04-04
-3108011 Tolocirio Tolocirio Tolocirio 41.13425 -4.65121 P PPLA3 ES 55 SG 40201 58 809 Europe/Madrid 2012-03-04
-3108028 Tolbaños Tolbanos Tolbanos,Tolbaños 40.75168 -4.58191 P PPLA3 ES 55 AV 05243 107 1115 Europe/Madrid 2012-03-04
-3108035 Toga Toga Toga 40.05 -0.36667 P PPLA3 ES 60 CS 12113 91 401 Europe/Madrid 2012-03-04
-3108036 Toén Toen Toen,Toén 42.31765 -7.95435 P PPLA3 ES 58 OR 32081 2611 369 Europe/Madrid 2012-03-04
-3108038 Todolella Todolella Todolella 40.64675 -0.24675 P PPLA3 ES 60 CS 12112 133 801 Europe/Madrid 2012-03-04
-3108042 Tobía Tobia Tobia,Tobía 42.29846 -2.81399 P PPLA3 ES 27 LO 26149 80 683 Europe/Madrid 2012-03-04
-3108048 Tobed Tobed Tobed 41.33866 -1.39975 P PPLA3 ES 52 Z 50255 249 650 Europe/Madrid 2012-03-04
-3108049 Tobar Tobar 42.48384 -3.93984 P PPLA3 ES 55 BU 09382 41 879 Europe/Madrid 2012-03-04
-3108057 Tivissa Tivissa Tivisa,Tivissa 41.03333 0.73333 P PPLA3 ES 56 T 43150 0 537 Europe/Madrid 2012-03-04
-3108058 Tivenys Tivenys Tivenys 40.90787 0.51236 P PPLA3 ES 56 T 43149 868 23 Europe/Madrid 2012-03-04
-3108059 Tiurana Tiurana Tiurana 41.97527 1.25608 P PPLA3 ES 56 L 25222 41 645 Europe/Madrid 2012-03-04
-3108060 Titulcia Titulcia Titulcia 40.13537 -3.56763 P PPLA3 ES 29 M 28147 945 508 Europe/Madrid 2012-03-04
-3108069 Tirgo Tirgo Tirgo 42.54587 -2.9494 P PPLA3 ES 27 LO 26148 280 524 Europe/Madrid 2012-03-04
-3108071 Tirapu Tirapu Tirapu 42.6574 -1.70263 P PPLA3 ES 32 NA 31229 54 503 Europe/Madrid 2012-03-04
-3108082 Tiñosillos Tinosillos Tinosillos,Tiñosillos 40.934 -4.72767 P PPLA3 ES 55 AV 05242 785 873 Europe/Madrid 2012-03-04
-3108087 Tineo Tineo Tineo,Tineu,Tinéu 43.33765 -6.41452 P PPLA3 ES 34 O 33073 11146 704 Europe/Madrid 2012-03-04
-3108092 Tinajas Tinajas Tinajas 40.32547 -2.58228 P PPLA3 ES 54 CU 16206 369 870 Europe/Madrid 2012-03-04
-3108096 Tierzo Tierzo Tierzo 40.74925 -1.93069 P PPLA3 ES 54 GU 19268 50 1145 Europe/Madrid 2012-03-04
-3108097 Tierz Tierz Tierz 42.13356 -0.35489 P PPLA3 ES 52 HU 22228 314 466 Europe/Madrid 2012-03-04
-3108104 Tielmes Tielmes 40.24652 -3.31461 P PPLA3 ES 29 M 28146 2359 599 Europe/Madrid 2012-03-04
-3108105 Tiedra Tiedra Tiedra 41.65239 -5.26688 P PPLA3 ES 55 VA 47163 387 824 Europe/Madrid 2012-03-04
-3108110 Tiana Tiana Tiana 41.48202 2.26702 P PPL ES 56 B 08015 7052 115 Europe/Madrid 2012-01-19
-3108116 Teià Teia Teia,Teià 41.49804 2.32206 P PPL ES 56 B 08281 5805 128 108 Europe/Madrid 2010-04-04
-3108124 Terzaga Terzaga Terzaga 40.69508 -1.90386 P PPLA3 ES 54 GU 19267 27 1183 Europe/Madrid 2012-03-04
-3108126 Teruel Teruel Provincia Terulium,Tergueel,Tergüel,Terol,Teruehl',Teruel,Teruelo,Terulium,terueru,Теруэль,テルエル 40.3456 -1.10646 P PPLA2 ES 52 TE 44216 35396 908 Europe/Madrid 2010-08-22
-3108131 Terroba Terroba Terroba 42.25808 -2.44375 P PPLA3 ES 27 LO 26147 29 788 Europe/Madrid 2012-03-04
-3108132 Terriente Terriente Terriente 40.29741 -1.50399 P PPLA3 ES 52 TE 44215 190 1435 Europe/Madrid 2012-03-04
-3108135 Terrer Terrer Terrer 41.32811 -1.71329 P PPLA3 ES 52 Z 50253 515 567 Europe/Madrid 2012-03-04
-3108143 Terradillos de Esgueva Terradillos de Esgueva Terradillos de Esgueva 41.81885 -3.84318 P PPLA3 ES 55 BU 09380 129 870 Europe/Madrid 2012-03-04
-3108144 Terradillos Terradillos Terradillos 40.83836 -5.5416 P PPLA3 ES 55 SA 37322 3232 884 Europe/Madrid 2012-03-04
-3108147 Terrades Terrades Terrades 42.31032 2.83855 P PPLA3 ES 56 GI 17196 0 231 Europe/Madrid 2012-03-04
-3108155 Térmens Termens Termens,Térmens 41.71667 0.76667 P PPLA3 ES 56 L 25220 1467 211 Europe/Madrid 2012-03-04
-3108165 Teo Teo Santa Maria,Santa María,Teo 42.75 -8.5 P PPLA3 ES 58 C 15082 17807 170 Europe/Madrid 2012-03-04
-3108169 Tenebrón Tenebron El Tenebron,Tenebron,Tenebrono,Tenebrón,Tenebróno 40.62449 -6.3545 P PPLA3 ES 55 SA 37321 207 826 Europe/Madrid 2012-03-04
-3108172 Tendilla Tendilla Tendilla 40.54379 -2.95782 P PPLA3 ES 54 GU 19266 345 794 Europe/Madrid 2012-03-04
-3108207 Tejeda y Segoyuela Tejeda y Segoyuela Tejeda y Segoyuela 40.63155 -6.02311 P PPLA3 ES 55 SA 37320 113 926 Europe/Madrid 2012-03-04
-3108211 Tejeda de Tiétar Tejeda de Tietar Tejeda de Tietar,Tejeda de Tiétar 40.0179 -5.86953 P PPLA3 ES 57 CC 10181 979 439 Europe/Madrid 2012-03-04
-3108219 Tejado Tejado Tejado 41.58887 -2.26721 P PPLA3 ES 55 SO 42183 184 989 Europe/Madrid 2012-03-04
-3108222 Tejadillos Tejadillos Tejadillos 40.13333 -1.63333 P PPLA3 ES 54 CU 16205 176 1210 Europe/Madrid 2012-03-04
-3108228 Tejada Tejada Tejada 41.95249 -3.53514 P PPLA3 ES 55 BU 09378 41 1086 Europe/Madrid 2012-03-04
-3108266 Tavertet Tavertet Tavertet 41.99572 2.4186 P PPLA3 ES 56 B 08280 153 927 865 Europe/Madrid 2012-03-04
-3108269 Tauste Tauste Tauste 41.91804 -1.25343 P PPLA3 ES 52 Z 50252 7334 272 Europe/Madrid 2012-03-04
-3108272 Tartanedo Tartanedo Tartanedo 40.99347 -1.92459 P PPLA3 ES 54 GU 19265 172 1191 Europe/Madrid 2012-03-04
-3108285 Tàrrega Tarrega Tarrega,Tàrrega 41.64704 1.13957 P PPLA3 ES 56 L 25217 16539 384 Europe/Madrid 2012-03-04
-3108286 Terrassa Terrassa Terasa,Terrassa,telasa,terrasa,Τεράσα,Террасса,テッラーサ,테라사 41.56667 2.01667 P PPL ES 56 B 08279 210941 302 Europe/Madrid 2010-04-22
-3108288 Tarragona Tarragona Taragono,Tarraco,Tarrago,Tarragona,Tarragone,taragona,taragwna,trgwnh,Таррагона,טרגונה,تاراگونا,タラゴナ 41.11667 1.25 P PPLA2 ES 56 T 43148 140323 43 Europe/Madrid 2010-08-23
-3108291 Taroda Taroda Taroda 41.34798 -2.43318 P PPLA3 ES 55 SO 42182 75 1030 Europe/Madrid 2012-03-04
-3108299 Tardienta Tardienta Tardienta 41.97781 -0.53732 P PPLA3 ES 52 HU 22226 1062 386 Europe/Madrid 2012-03-04
-3108302 Tardelcuende Tardelcuende Tardelcuende 41.59402 -2.64439 P PPLA3 ES 55 SO 42181 598 990 Europe/Madrid 2012-03-04
-3108304 Tardajos Tardajos Tardajos 42.34909 -3.817 P PPLA3 ES 55 BU 09377 642 827 Europe/Madrid 2012-03-04
-3108305 Tardáguila Tardaguila Tardaguila,Tardáguila 41.11493 -5.57423 P PPLA3 ES 55 SA 37318 230 833 Europe/Madrid 2012-03-04
-3108307 Tarazona de Guareña Tarazona de Guarena Taracena de Guarena,Taracena de Guareña,Tarazona,Tarazona de Guarena,Tarazona de Guareña,Tarazona de la Guarena,Tarazona de la Guareña 41.17206 -5.25005 P PPLA3 ES 55 SA 37317 397 771 Europe/Madrid 2012-03-04
-3108308 Tarazona Tarazona Tarazona 41.9 -1.73333 P PPL ES 52 Z 50251 11211 511 Europe/Madrid 2010-04-22
-3108309 Taravilla Taravilla Taravilla 40.69743 -1.96817 P PPLA3 ES 54 GU 19264 63 1320 Europe/Madrid 2012-03-04
-3108317 Tarancón Tarancon Tarancon,Tarancón 40.00851 -3.00731 P PPLA3 ES 54 CU 16203 15651 817 Europe/Madrid 2012-03-04
-3108320 Taramundi Taramundi Taramundi 43.3602 -7.10828 P PPLA3 ES 34 O 33071 828 251 Europe/Madrid 2012-03-04
-3108324 Taragudo Taragudo Taragudo 40.82106 -3.0768 P PPLA3 ES 54 GU 19263 39 745 Europe/Madrid 2012-03-04
-3108327 Taradell Taradell Taradell 41.87495 2.28662 P PPLA3 ES 56 B 08278 5577 636 629 Europe/Madrid 2012-03-04
-3108331 Tapioles Tapioles Tapioles 41.85741 -5.49623 P PPLA3 ES 55 ZA 49216 206 688 Europe/Madrid 2012-03-04
-3108335 Tapia de Casariego Tapia de Casariego Tapia 43.57019 -6.94383 P PPLA3 ES 34 O 33070 4317 24 Europe/Madrid 2011-07-31
-3108357 Tamarón Tamaron Tamaron,Tamarón 42.27386 -3.99154 P PPLA3 ES 55 BU 09375 43 821 Europe/Madrid 2012-03-04
-3108358 Tamariz de Campos Tamariz de Campos Tamariz,Tamariz de Campos 41.97706 -5.02335 P PPLA3 ES 55 VA 47162 95 748 Europe/Madrid 2012-03-04
-3108360 Tamarit de Llitera / Tamarite de Litera Tamarit de Llitera / Tamarite de Litera Tamarit de Litera,Tamarit de Llitera,Tamarit de Llitera / Tamarite de Litera,Tamarite de Litera 41.8691 0.42214 P PPL ES 52 HU 22225 3655 369 Europe/Madrid 2007-02-13
-3108363 Tamames Tamames Tamames 40.65725 -6.10536 P PPLA3 ES 55 SA 37316 984 902 Europe/Madrid 2012-03-04
-3108366 Tamajón Tamajon Tamajon,Tamajón 40.99914 -3.24743 P PPLA3 ES 54 GU 19262 216 1032 Europe/Madrid 2012-03-04
-3108388 Talamantes Talamantes Talamantes 41.73051 -1.67856 P PPLA3 ES 52 Z 50250 70 881 Europe/Madrid 2012-03-04
-3108389 Talamanca de Jarama Talamanca de Jarama Talamanca de Jarama 40.74325 -3.50889 P PPLA3 ES 29 M 28145 1984 655 Europe/Madrid 2012-03-04
-3108390 Talamanca Talamanca Talamanca 41.7374 1.97791 P PPLA3 ES 56 B 08277 116 560 Europe/Madrid 2012-03-04
-3108396 Tajueco Tajueco Tajueco 41.53641 -2.84845 P PPLA3 ES 55 SO 42177 106 933 Europe/Madrid 2012-03-04
-3108402 Tajahuerce Tajahuerce Tajahuerce 41.73991 -2.15069 P PPLA3 ES 55 SO 42176 37 1057 Europe/Madrid 2012-03-04
-3108411 Tagamanent Tagamanent Tagamanent 41.73747 2.2672 P PPLA3 ES 56 B 08276 265 608 345 Europe/Madrid 2012-03-04
-3108412 Tafalla Tafalla Tafalla 42.52686 -1.67446 P PPLA3 ES 32 NA 31227 11394 424 Europe/Madrid 2012-03-04
-3108417 Tabuenca Tabuenca Tabuenca 41.695 -1.54335 P PPLA3 ES 52 Z 50249 446 774 Europe/Madrid 2012-03-04
-3108422 Taboadela Taboadela Taboadela 42.24234 -7.82719 P PPLA3 ES 58 OR 32079 1680 370 Europe/Madrid 2012-03-04
-3108425 Taboada Taboada 42.699 -7.82298 P PPL ES 58 LU 27060 3818 623 Europe/Madrid 2011-09-11
-3108450 Tabera de Abajo Tabera de Abajo Tabera de Abajo 40.91021 -6.00227 P PPLA3 ES 55 SA 37314 104 813 Europe/Madrid 2012-03-04
-3108458 Tábara Tabara Tabara,Tábara 41.82458 -5.9642 P PPLA3 ES 55 ZA 49214 931 754 Europe/Madrid 2012-03-04
-3108461 Tabanera la Luenga Tabanera la Luenga Tabanera la Luenga 41.09647 -4.23937 P PPLA3 ES 55 SG 40200 76 906 Europe/Madrid 2012-03-04
-3108462 Tabanera de Valdavia Tabanera de Valdavia Tabanera de Valdavia 42.64728 -4.69414 P PPLA3 ES 55 P 34179 48 979 Europe/Madrid 2012-03-04
-3108464 Tabanera de Cerrato Tabanera de Cerrato Tabanera de Cerrato 42.02469 -4.12361 P PPLA3 ES 55 P 34178 140 841 Europe/Madrid 2012-03-04
-3108474 Susqueda Susqueda Susqueda 41.97776 2.51652 P PPLA3 ES 56 GI 17194 115 324 Europe/Madrid 2012-03-04
-3108475 Susinos del Páramo Susinos del Paramo 42.47108 -3.92555 P PPLA3 ES 55 BU 09374 118 891 Europe/Madrid 2012-03-04
-3108487 Súria Suria Suria,Súria 41.83333 1.75 P PPL ES 56 B 08229 6230 281 Europe/Madrid 2010-04-04
-3108493 Sunyer Sunyer Sune,Sunyer,Suñé 41.51667 0.6 P PPLA3 ES 56 L 25212 0 207 Europe/Madrid 2012-03-04
-3108497 Sunbilla Sunbilla Sumbilla,Sunbilla 43.16667 -1.66667 P PPLA3 ES 32 NA 31226 0 202 Europe/Madrid 2012-03-04
-3108509 Suellacabras Suellacabras Suellacabras 41.85298 -2.22398 P PPLA3 ES 55 SO 42175 30 1200 Europe/Madrid 2012-03-04
-3108520 Subirats Subirats Subirats 41.4 1.83333 P PPLA3 ES 56 B 08273 2801 437 Europe/Madrid 2012-03-04
-3108534 Suances Suances Suances 43.4334 -4.04338 P PPLA3 ES 39 S 39085 6984 7 Europe/Madrid 2012-03-04
-3108571 Sotresgudo Sotresgudo Sotresgudo 42.57935 -4.17725 P PPLA3 ES 55 BU 09373 626 872 Europe/Madrid 2012-03-04
-3108573 Sotragero Sotragero 42.40996 -3.71312 P PPLA3 ES 55 BU 09372 199 849 Europe/Madrid 2012-03-04
-3108574 Soto y Amío Soto y Amio Soto y Amio,Soto y Amío 42.77477 -5.88693 P PPLA3 ES 55 LE 24167 980 1049 Europe/Madrid 2012-03-04
-3108576 Sotoserrano Sotoserrano Sotoserrano 40.43499 -6.03262 P PPLA3 ES 55 SA 37313 715 512 Europe/Madrid 2012-03-04
-3108579 Sotosalbos Sotosalbos Sotosalbos,Sotosalvos 41.03537 -3.94115 P PPLA3 ES 55 SG 40199 118 1165 Europe/Madrid 2012-03-04
-3108594 Soto en Cameros Soto en Cameros Soto en Cameros 42.28591 -2.42597 P PPLA3 ES 27 LO 26146 174 713 Europe/Madrid 2012-03-04
-3108595 Sotodosos Sotodosos Sotodosos 40.92149 -2.39211 P PPLA3 ES 54 GU 19261 67 1152 Europe/Madrid 2012-03-04
-3108606 Soto del Barco Soto del Barco San Pedro,Soto,Soto del Barco,Sotu'l Barcu 43.53288 -6.06984 P PPLA3 ES 34 O 33069 4108 61 Europe/Madrid 2012-03-04
-3108607 Soto de la Vega Soto de la Vega Soto de la Vega 42.33227 -5.88225 P PPLA3 ES 55 LE 24166 1923 778 Europe/Madrid 2012-03-04
-3108613 Soto de Cerrato Soto de Cerrato Soto de Cerrato 41.95312 -4.42998 P PPLA3 ES 55 P 34177 207 727 Europe/Madrid 2012-03-04
-3108618 Sotobañado y Priorato Sotobanado y Priorato Sotobanado y Priorato,Sotobañado y Priorato 42.58987 -4.44185 P PPLA3 ES 55 P 34176 175 896 Europe/Madrid 2012-03-04
-3108633 Sotillo del Rincón Sotillo del Rincon Sotillo del Rincon,Sotillo del Rincón 41.9322 -2.60297 P PPLA3 ES 55 SO 42174 239 1108 Europe/Madrid 2012-03-04
-3108634 Sotillo de las Palomas Sotillo de las Palomas Sotillo de las Palomas 40.10359 -4.82736 P PPLA3 ES 54 TO 45164 215 563 Europe/Madrid 2012-03-04
-3108635 Sotillo de la Ribera Sotillo de la Ribera Sotillo de la Ribera,Sotillo de la Rivera 41.77717 -3.82525 P PPLA3 ES 55 BU 09369 602 845 Europe/Madrid 2012-03-04
-3108636 Sotillo de la Adrada Sotillo de la Adrada Sotillo de la Adrada 40.2912 -4.58385 P PPLA3 ES 55 AV 05240 4188 634 Europe/Madrid 2012-03-04
-3108648 Sotillo Sotillo Sotillo 41.25846 -3.6373 P PPLA3 ES 55 SG 40198 38 986 Europe/Madrid 2012-03-04
-3108654 Sotalbo Sotalbo Sota Albo,Sotalbo,Sotalvo 40.5417 -4.84548 P PPLA3 ES 55 AV 05239 267 1178 Europe/Madrid 2012-03-04
-3108655 Soses Soses 41.53333 0.48333 P PPL ES 56 L 25120 1583 137 Europe/Madrid 2010-04-04
-3108656 Sos del Rey Católico Sos del Rey Catolico Sause,Sos,Sos del Rey Catolico,Sos del Rey Católico 42.49686 -1.21514 P PPLA3 ES 52 Z 50248 737 634 Europe/Madrid 2012-03-04
-3108662 Sorzano Sorzano Sorzano 42.34306 -2.52872 P PPLA3 ES 27 LO 26144 252 715 Europe/Madrid 2012-03-04
-3108663 Sort Sort Sort 42.41319 1.13045 P PPL ES 56 L 25039 2073 700 Europe/Madrid 2012-01-19
-3108678 Sorlada Sorlada Sorlada 42.61507 -2.21525 P PPLA3 ES 32 NA 31225 38 572 Europe/Madrid 2012-03-04
-3108679 Sorihuela Sorihuela Sorihuela 40.44378 -5.67818 P PPLA3 ES 55 SA 37312 357 1002 Europe/Madrid 2012-03-04
-3108681 Soria Soria Sorija,Сория 41.76401 -2.46883 P PPLA2 ES 55 SO 42173 39528 1064 Europe/Madrid 2010-08-23
-3108683 Sordillos Sordillos Sordillos 42.46197 -4.10726 P PPLA3 ES 55 BU 09368 32 819 Europe/Madrid 2012-03-04
-3108688 Sora Sora Sora 42.11236 2.16083 P PPLA3 ES 56 B 08272 08272 0 714 Europe/Madrid 2012-03-04
-3108702 Sopelana Sopelana Sopela,Sopelana 43.37891 -2.98313 P PPLA3 ES 59 BI 48085 12359 51 Europe/Madrid 2012-03-04
-3108716 Porto do Son Porto do Son Son 42.72482 -9.00527 P PPLA3 ES 58 C 15071 0 12 Europe/Madrid 2012-03-04
-3108718 Somozas Somozas Santiago Sere,Santiago Seré,Somozas 43.53333 -7.93333 P PPL ES 58 C 15070 1399 265 Europe/Madrid 2012-01-19
-3108723 Somosierra Somosierra Somosierra 41.13269 -3.58237 P PPLA3 ES 29 M 28143 0 1434 Europe/Madrid 2011-07-31
-3108729 Somolinos Somolinos 41.24606 -3.06004 P PPLA3 ES 54 GU 19259 36 1245 Europe/Madrid 2011-07-31
-3108747 Solsona Solsona Solsona 41.99395 1.51706 P PPL ES 56 L 25151 8343 687 Europe/Madrid 2010-04-04
-3108749 Solosancho Solosancho Solosancho 40.55294 -4.90479 P PPLA3 ES 55 AV 05238 1021 1126 Europe/Madrid 2012-03-04
-3108750 Solórzano Solorzano Solorzano,Solórzano 43.38233 -3.58786 P PPLA3 ES 39 S 39084 1081 80 Europe/Madrid 2012-03-04
-3108764 Soliedra Soliedra Soliedra 41.46932 -2.38164 P PPLA3 ES 55 SO 42172 38 1102 Europe/Madrid 2012-03-04
-3108778 Solarana Solarana Solarana 41.97168 -3.65876 P PPLA3 ES 55 BU 09366 102 903 Europe/Madrid 2012-03-04
-3108781 Solanillos del Extremo Solanillos del Extremo Solanillos del Extremo 40.75088 -2.69799 P PPLA3 ES 54 GU 19258 120 999 Europe/Madrid 2012-03-04
-3108799 Sojuela Sojuela Sojuela 42.36988 -2.54525 P PPLA3 ES 27 LO 26143 113 668 Europe/Madrid 2012-03-04
-3108847 Sobrado Sobrado Sobrado 43.03882 -8.02784 P PPLA3 ES 58 C 15080 2327 504 Europe/Madrid 2012-03-04
-3108849 Sobrado Sobrado 42.51667 -6.85 P PPLA3 ES 55 LE 24165 0 416 Europe/Madrid 2011-07-31
-3108854 Sobradillo Sobradillo Sobradillo 40.91754 -6.79729 P PPLA3 ES 55 SA 37311 323 655 Europe/Madrid 2012-03-04
-3108855 Sobradiel Sobradiel Sobradiel 41.73875 -1.03765 P PPLA3 ES 52 Z 50247 754 213 Europe/Madrid 2012-03-04
-3108862 Sober Sober Vello 42.46127 -7.5864 P PPLA3 ES 58 LU 27059 2983 396 Europe/Madrid 2012-03-04
-3108877 Sitges Sitges Sitges,Sitzhes,Ситжес 41.23506 1.81193 P PPLA3 ES 56 B 08270 27668 18 Europe/Madrid 2012-03-04
-3108891 Sisamón Sisamon Sisamon,Sisamón 41.17124 -2.00386 P PPLA3 ES 52 Z 50246 56 1050 Europe/Madrid 2012-03-04
-3108906 Sinlabajos Sinlabajos Sinlabajos 41.0765 -4.83242 P PPLA3 ES 55 AV 05235 173 831 Europe/Madrid 2012-03-04
-3108907 Singra Singra Singra 40.65508 -1.31158 P PPLA3 ES 52 TE 44213 97 1031 Europe/Madrid 2012-03-04
-3108917 Simancas Simancas Simancas 41.59072 -4.82796 P PPLA3 ES 55 VA 47161 4611 720 Europe/Madrid 2012-03-04
-3108945 Sils Sils Sils 41.80842 2.74508 P PPLA3 ES 56 GI 17193 3869 79 Europe/Madrid 2012-03-04
-3108950 Silleda Silleda Silleda,Sillede 42.69605 -8.24653 P PPLA3 ES 58 PO 36052 9018 494 Europe/Madrid 2012-03-04
-3108957 Sigüés Siguees 42.6303 -1.01212 P PPLA3 ES 52 Z 50245 170 525 522 Europe/Madrid 2012-03-04
-3108961 Sigüenza Siguenza Segontia,Sigueenza,Siguenza,Sigüenza 41.06892 -2.64308 P PPLA3 ES 54 GU 19257 4818 992 Europe/Madrid 2012-03-04
-3108967 Sigeres Sigeres Sigeres 40.79939 -4.93361 P PPLA3 ES 55 AV 05234 76 966 Europe/Madrid 2012-03-04
-3108974 Siete Iglesias de Trabancos Siete Iglesias de Trabancos Siete Iglesias,Siete Iglesias de Trabancos 41.35223 -5.18488 P PPLA3 ES 55 VA 47160 548 721 Europe/Madrid 2012-03-04
-3108980 Siétamo Sietamo Sietamo,Sietemo,Siétamo 42.12392 -0.28066 P PPLA3 ES 52 HU 22222 517 562 Europe/Madrid 2012-03-04
-3108987 Sierra-Engarcerán Sierra-Engarceran Sierra-Engarceran,Sierra-Engarcerán 40.26929 -0.01892 P PPL ES 60 CS 12105 1068 752 Europe/Madrid 2012-01-19
-3108989 Sierra de Luna Sierra de Luna Sierra de Luna 42.04818 -0.91025 P PPLA3 ES 52 Z 50244 286 464 Europe/Madrid 2012-03-04
-3109009 Sienes Sienes Sienes 41.20096 -2.65332 P PPLA3 ES 54 GU 19256 76 1039 Europe/Madrid 2012-03-04
-3109012 Sidamon Sidamon Sidamon,Sidamunt 41.63333 0.83333 P PPLA3 ES 56 L 25205 0 221 Europe/Madrid 2012-03-04
-3109018 Sevilla La Nueva Sevilla La Nueva Sevilla La Nueva 40.34775 -4.02727 P PPL ES 29 M 28141 6445 675 Europe/Madrid 2012-01-19
-3109023 Seva Seva Seva 41.83831 2.28007 P PPL ES 56 B 08026 2949 742 668 Europe/Madrid 2010-04-04
-3109024 Setiles Setiles Setiles 40.73419 -1.6172 P PPLA3 ES 54 GU 19255 149 1262 Europe/Madrid 2012-03-04
-3109032 Sesué Sesue Sesue,Sesué 42.55131 0.47212 P PPLA3 ES 52 HU 22221 129 1009 Europe/Madrid 2012-03-04
-3109033 Sestrica Sestrica Sestrica 41.48595 -1.59501 P PPLA3 ES 52 Z 50243 464 569 Europe/Madrid 2012-03-04
-3109041 Sestao Sestao Sestao 43.30975 -3.00716 P PPLA3 ES 59 BI 48084 29476 65 Europe/Madrid 2012-03-04
-3109045 Sesma Sesma Sesma 42.47748 -2.08353 P PPLA3 ES 32 NA 31224 1366 431 Europe/Madrid 2012-03-04
-3109050 Seseña Sesena 40.10473 -3.69793 P PPLA3 ES 54 TO 45161 16231 610 Europe/Madrid 2011-07-31
-3109054 Sesa Sesa Sesa 41.99484 -0.24511 P PPLA3 ES 52 HU 22220 238 430 Europe/Madrid 2012-03-04
-3109077 Serranillos del Valle Serranillos del Valle Serranillos,Serranillos del Valle 40.2021 -3.88187 P PPLA3 ES 29 M 28140 2710 662 Europe/Madrid 2012-03-04
-3109079 Serranillos Serranillos Serranillos 40.33625 -4.91166 P PPLA3 ES 55 AV 05233 359 1224 Europe/Madrid 2012-03-04
-3109086 Serradilla del Llano Serradilla del Llano Serradilla del Llano 40.49996 -6.35701 P PPLA3 ES 55 SA 37307 217 877 Europe/Madrid 2012-03-04
-3109087 Serradilla del Arroyo Serradilla del Arroyo Serradilla del Arroyo 40.52133 -6.36008 P PPLA3 ES 55 SA 37306 387 855 Europe/Madrid 2012-03-04
-3109088 Serra de Daró Serra de Daro 42.02877 3.07222 P PPLA3 ES 56 GI 17191 179 14 Europe/Madrid 2012-03-04
-3109091 Serrada Serrada Serrada 41.45722 -4.86279 P PPLA3 ES 55 VA 47159 1133 725 Europe/Madrid 2012-03-04
-3109099 Seròs Seros Seros,Seròs,Serós 41.46667 0.41667 P PPLA3 ES 56 L 25204 1881 102 Europe/Madrid 2011-07-31
-3109131 Sequeros Sequeros Sequeros 40.51296 -6.02495 P PPLA3 ES 55 SA 37305 234 939 Europe/Madrid 2012-03-04
-3109132 Sequera de Fresno Sequera de Fresno Sequera de Fresno 41.3664 -3.54612 P PPLA3 ES 55 SG 40196 42 1003 Europe/Madrid 2012-03-04
-3109139 Sepúlveda Sepulveda Sepulveda,Sepúlveda,Valleruca de Sepulveda 41.29696 -3.74221 P PPLA3 ES 55 SG 40195 1361 1015 Europe/Madrid 2012-03-04
-3109143 la Seu d'Urgell la Seu d'Urgell La Seo de Urgel,La Seu d'Urgell,La Seu de Urgell,Orgellis civitas,Orgellum,Seo de Urgel,Urgelitana sedes,Urgellum,la Seu d'Urgell 42.35877 1.46144 P PPL ES 56 L 25005 13063 700 699 Europe/Madrid 2010-05-19
-3109164 Seno Seno Seno 40.81225 -0.33816 P PPLA3 ES 52 TE 44212 46 811 Europe/Madrid 2012-03-04
-3109165 Sentmenat Sentmenat Sentmenat 41.60862 2.13532 P PPL ES 56 B 08033 7633 213 213 Europe/Madrid 2011-10-30
-3109170 Senés de Alcubierre Senes de Alcubierre Senes de Alcubierre,Senés de Alcubierre 41.90731 -0.48906 P PPLA3 ES 52 HU 22218 48 390 Europe/Madrid 2012-03-04
-3109180 Senan Senan Senan,Senant 41.46994 1.08541 P PPLA3 ES 56 T 43146 43146 0 625 Europe/Madrid 2012-03-04
-3109183 Sena de Luna Sena de Luna Sena de Luna 42.92906 -5.95267 P PPLA3 ES 55 LE 24164 436 1139 Europe/Madrid 2012-03-04
-3109188 Semillas Semillas Semillas 41.05857 -3.11945 P PPLA3 ES 54 GU 19901 52 1201 Europe/Madrid 2012-03-04
-3109211 Selaya Selaya Selaya 43.21376 -3.80563 P PPLA3 ES 39 S 39082 1991 233 Europe/Madrid 2012-03-04
-3109213 Selas Selas Selas 40.9515 -2.10203 P PPLA3 ES 54 GU 19254 64 1220 Europe/Madrid 2012-03-04
-3109226 Seira Seira Seira 42.47696 0.43127 P PPLA3 ES 52 HU 22215 167 813 Europe/Madrid 2012-03-04
-3109238 Segurilla Segurilla Segurilla 40.02386 -4.86418 P PPLA3 ES 54 TO 45160 1132 566 Europe/Madrid 2012-03-04
-3109239 Segura de Toro Segura de Toro Segura de Toro 40.22427 -5.94836 P PPLA3 ES 57 CC 10174 194 639 Europe/Madrid 2012-03-04
-3109240 Segura de los Baños Segura de los Banos Segura de los Banos,Segura de los Baños 40.94088 -0.95111 P PPLA3 ES 52 TE 44211 36 1126 Europe/Madrid 2012-03-04
-3109242 Segura Segura Segura 43.00753 -2.254 P PPLA3 ES 59 SS 20070 1234 253 Europe/Madrid 2012-03-04
-3109256 Segovia Segovia Segovia,Segovie,Segovija,Segovio,Segowia,Segòvia,Segóvia,Ségovie,segobia,Сеговия,セゴビア 40.95 -4.11667 P PPLA2 ES 55 SG 40194 56660 994 Europe/Madrid 2010-08-23
-3109261 Sediles Sediles Sediles 41.34613 -1.53177 P PPLA3 ES 52 Z 50242 88 731 Europe/Madrid 2012-03-04
-3109280 Secastilla Secastilla Secastilla 42.18112 0.26736 P PPLA3 ES 52 HU 22214 140 610 Europe/Madrid 2012-03-04
-3109288 Sebúlcor Sebulcor Sebulcor,Sebúlcor 41.27091 -3.88398 P PPLA3 ES 55 SG 40193 299 941 Europe/Madrid 2012-03-04
-3109305 Sayatón Sayaton Sayaton,Sayatón 40.37635 -2.85253 P PPLA3 ES 54 GU 19252 131 661 Europe/Madrid 2012-03-04
-3109319 Sauquillo de Cabezas Sauquillo de Cabezas Sauquillo de Cabezas 41.19422 -4.06884 P PPLA3 ES 55 SG 40192 226 909 Europe/Madrid 2012-03-04
-3109325 Saucelle Saucelle Saucelle 41.04769 -6.75328 P PPLA3 ES 55 SA 37302 384 666 Europe/Madrid 2012-03-04
-3109328 Saúca Sauca Sauca,Saúca 41.03098 -2.52905 P PPLA3 ES 54 GU 19251 70 1103 Europe/Madrid 2012-03-04
-3109336 Sástago Sastago Sastago,Sástago 41.32166 -0.35075 P PPLA3 ES 52 Z 50240 1287 153 Europe/Madrid 2012-03-04
-3109344 Sasamón Sasamon 42.41687 -4.04288 P PPLA3 ES 55 BU 09363 1309 816 Europe/Madrid 2012-03-04
-3109352 Sartajada Sartajada Sartajada 40.2132 -4.79428 P PPLA3 ES 54 TO 45159 134 457 Europe/Madrid 2012-03-04
-3109353 Sartaguda Sartaguda Sartaguda 42.38333 -2.05709 P PPLA3 ES 32 NA 31223 1361 338 Europe/Madrid 2012-03-04
-3109360 Sarrión Sarrion Sarrion,Sarrión 40.13333 -0.81667 P PPLA3 ES 52 TE 44210 1062 957 Europe/Madrid 2012-03-04
-3109364 Sarrià de Ter Sarria de Ter Sarria de Ter,Sarrià de Ter,Sarriá de Ter 42.01667 2.83333 P PPLA3 ES 56 GI 17186 4001 146 Europe/Madrid 2012-03-04
-3109369 Sarria Sarria Sarria,Sorria 42.78148 -7.41431 P PPLA3 ES 58 LU 27057 13508 422 Europe/Madrid 2012-03-04
-3109370 Sarreaus Sarreaus 42.08784 -7.60348 P PPLA3 ES 58 OR 32078 1768 654 Europe/Madrid 2012-03-04
-3109374 Sarratella Sarratella Sarratella 40.31284 0.0315 P PPLA3 ES 60 CS 12103 93 774 Europe/Madrid 2012-03-04
-3109376 Sarracín Sarracin 42.25813 -3.68608 P PPLA3 ES 55 BU 09362 303 861 Europe/Madrid 2012-03-04
-3109378 Saro Saro Saro 43.25961 -3.84283 P PPLA3 ES 39 S 39081 519 145 Europe/Madrid 2012-03-04
-3109380 Sariñena Sarinena Sarinena,Sariñena 41.79128 -0.15804 P PPLA3 ES 52 HU 22213 4056 293 Europe/Madrid 2012-03-04
-3109381 Sariegos Sariegos Sariegos 42.65 -5.63333 P PPL ES 55 LE 24142 3589 871 Europe/Madrid 2012-01-19
-3109383 Sariego Sariego Santiago,Sariego,Sariegu 43.4 -5.53333 P PPL ES 34 O 33040 1367 304 Europe/Madrid 2012-01-19
-3109384 Sargentes de la Lora Sargentes de la Lora Sargentes,Sargentes de la Lora 42.76917 -3.87278 P PPLA3 ES 55 BU 09361 204 1016 Europe/Madrid 2012-03-04
-3109387 Sardón de los Frailes Sardon de los Frailes Sardon de los Frailes,Sardón de los Frailes 41.21373 -6.27101 P PPLA3 ES 55 SA 37301 84 742 Europe/Madrid 2012-03-04
-3109389 Sardón de Duero Sardon de Duero Sardon de Duero,Sardón de Duero 41.60847 -4.43397 P PPLA3 ES 55 VA 47157 671 723 Europe/Madrid 2012-03-04
-3109402 Cerdanyola del Vallès Cerdanyola del Valles Cerdanyola,Cerdanyola del Valles,Cerdanyola del Vallès 41.49109 2.14079 P PPL ES 56 B 08266 58747 88 Europe/Madrid 2010-04-22
-3109427 Sanzoles Sanzoles Sanzoles 41.43235 -5.5671 P PPLA3 ES 55 ZA 49210 636 714 Europe/Madrid 2012-03-04
-3109433 San Vitero San Vitero San Vitero 41.7774 -6.34877 P PPLA3 ES 55 ZA 49209 668 862 Europe/Madrid 2012-03-04
-3109441 San Vicente del Valle San Vicente del Valle San Vicente del Valle 42.33756 -3.1621 P PPLA3 ES 55 BU 09360 61 959 Europe/Madrid 2012-03-04
-3109442 Sant Vicenç dels Horts Sant Vicenc dels Horts Sant Vicenc dels Horts,Sant Vicenç dels Horts 41.39317 2.00689 P PPLA3 ES 56 B 08263 27701 61 Europe/Madrid 2012-03-04
-3109443 San Vicente del Palacio San Vicente del Palacio San Vicente del Palacio 41.21901 -4.85158 P PPLA3 ES 55 VA 47156 232 747 Europe/Madrid 2012-03-04
-3109447 San Vicente de la Sonsierra San Vicente de la Sonsierra San Vicente,San Vicente de la Sonsierra,San Vincente de la Sonsierra 42.56321 -2.76072 P PPLA3 ES 27 LO 26142 1212 489 Europe/Madrid 2012-03-04
-3109448 San Vicente de la Cabeza San Vicente de la Cabeza San Vicente de la Cabeza 41.80696 -6.24993 P PPLA3 ES 55 ZA 49208 543 764 Europe/Madrid 2012-03-04
-3109450 San Vicente de la Barquera San Vicente de la Barquera San Vicente,San Vicente de la Barquera,San Vicente la Barquera 43.38509 -4.39934 P PPLA3 ES 39 S 39080 4475 10 Europe/Madrid 2011-07-31
-3109453 Barakaldo Barakaldo Baracaldo,Barakaldo,Done Bikendi,San Bizente,San Bizenti-Barakaldo,San Vicente de Baracaldo,Sanbi 43.29564 -2.99729 P PPLA3 ES 59 BI 48013 98460 35 Europe/Madrid 2012-03-04
-3109454 San Vicente de Arévalo San Vicente de Arevalo San Vicente de Arevalo,San Vicente de Arévalo 40.96773 -4.80194 P PPLA3 ES 55 AV 05231 223 877 Europe/Madrid 2012-03-04
-3109477 Santurdejo Santurdejo Santurdejo 42.37696 -2.95437 P PPLA3 ES 27 LO 26141 177 784 Europe/Madrid 2012-03-04
-3109481 Santurtzi Santurtzi Santurce,Santurce-Antiguo,Santurtzi 43.32842 -3.03248 P PPLA3 ES 59 BI 48082 46978 13 Europe/Madrid 2012-03-04
-3109499 Santoyo Santoyo Santoyo 42.21474 -4.34296 P PPLA3 ES 55 P 34174 260 797 Europe/Madrid 2012-03-04
-3109501 Santovenia de Pisuerga Santovenia de Pisuerga Santovenia de Pisuerga 41.69457 -4.69028 P PPLA3 ES 55 VA 47155 2691 696 Europe/Madrid 2012-03-04
-3109505 Santovenia Santovenia Santovenia 41.87856 -5.71003 P PPLA3 ES 55 ZA 49207 354 714 Europe/Madrid 2012-03-04
-3109508 Santo Tomé de Zabarcos Santo Tome de Zabarcos Santo Tome de Zabarcos,Santo Tomé de Zabarcos 40.78726 -4.91048 P PPLA3 ES 55 AV 05230 112 959 Europe/Madrid 2012-03-04
-3109522 San Torcuato San Torcuato San Torcuato 42.48219 -2.88923 P PPLA3 ES 27 LO 26139 122 601 Europe/Madrid 2012-03-04
-3109524 Santorcaz Santorcaz 40.47176 -3.23462 P PPLA3 ES 29 M 28136 729 882 Europe/Madrid 2012-03-04
-3109527 Santoña Santona Santona,Santoña 43.44386 -3.45757 P PPLA3 ES 39 S 39079 11569 10 Europe/Madrid 2012-03-04
-3109532 Santo Domingo de Silos Santo Domingo de Silos Santo Domingo de Silos,Santo Domingo de los Silos 41.964 -3.4174 P PPLA3 ES 55 BU 09358 286 1032 Europe/Madrid 2012-03-04
-3109533 Santo Domingo de Pirón Santo Domingo de Piron Santo Domingo de Piron,Santo Domingo de Pirón 41.04104 -3.98933 P PPLA3 ES 55 SG 40190 65 1083 Europe/Madrid 2012-03-04
-3109534 Santo Domingo de las Posadas Santo Domingo de las Posadas Santo Domingo de las Posadas 40.812 -4.63383 P PPLA3 ES 55 AV 05229 93 926 Europe/Madrid 2012-03-04
-3109535 Santo Domingo de la Calzada Santo Domingo de la Calzada Ozkabarte,Santo Domingo de la Calzada 42.44015 -2.95365 P PPLA3 ES 27 LO 26138 6223 646 Europe/Madrid 2012-03-04
-3109546 Sant Just Desvern Sant Just Desvern Sant Just Desvern 41.38602 2.07573 P PPL ES 56 B 08019 15811 109 125 Europe/Madrid 2010-04-22
-3109549 Sant Julià de Vilatorta Sant Julia de Vilatorta Sant Julia,Sant Julia de Vilatorta,Sant Julià,Sant Julià de Vilatorta 41.92189 2.32447 P PPLA3 ES ES 56 B 08220 0 606 600 Europe/Madrid 2012-03-04
-3109550 Sant Joan les Fonts Sant Joan les Fonts Sant Joan les Fonts 42.21186 2.51291 P PPL ES 56 GI 17208 2615 343 Europe/Madrid 2010-04-04
-3109551 Sant Joan de Vilatorrada Sant Joan de Vilatorrada San Joan de Vilatorrada 41.74549 1.80476 P PPL ES 56 B 08113 10779 230 Europe/Madrid 2010-04-22
-3109553 Santiz Santiz Santiz,Sontiz 41.20579 -5.89654 P PPLA3 ES 55 SA 37299 291 893 Europe/Madrid 2012-03-04
-3109554 Santiuste de San Juan Bautista Santiuste de San Juan Bautista Santiuste de San Juan Bautista 41.15593 -4.57202 P PPLA3 ES 55 SG 40189 740 821 Europe/Madrid 2012-03-04
-3109559 Santiuste Santiuste Santiuste 41.08462 -2.80953 P PPLA3 ES 54 GU 19250 23 919 Europe/Madrid 2012-03-04
-3109561 Santiurde de Toranzo Santiurde de Toranzo Santiurde de Toranzo 43.23819 -3.93948 P PPLA3 ES 39 S 39078 1349 126 Europe/Madrid 2012-03-04
-3109562 Santiurde de Reinosa Santiurde de Reinosa Santiurde de Reinosa 43.06144 -4.08351 P PPLA3 ES 39 S 39077 362 681 Europe/Madrid 2012-03-04
-3109564 Santiso Santiso Santa Maria,Santa María,Santiso 42.87388 -8.05497 P PPLA3 ES 58 C 15079 0 373 Europe/Madrid 2012-03-04
-3109582 Santillana Santillana Santillana,Santillana del Mar 43.38903 -4.10844 P PPL ES 39 S 39076 4042 84 Europe/Madrid 2012-01-19
-3109589 Santibáñez el Bajo Santibanez el Bajo Santibanez el Bajo,Santibáñez el Bajo 40.17637 -6.22441 P PPLA3 ES 57 CC 10172 900 374 Europe/Madrid 2012-03-04
-3109590 Santibáñez el Alto Santibanez el Alto Santibanez el Alto,Santibáñez el Alto 40.18525 -6.54782 P PPLA3 ES 57 CC 10171 487 648 Europe/Madrid 2012-03-04
-3109591 Santibáñez de Vidriales Santibanez de Vidriales Santibanez de Vidriales,Santibáñez de Vidriales 42.07362 -6.01549 P PPLA3 ES 55 ZA 49206 1251 745 Europe/Madrid 2012-03-04
-3109593 Santibáñez de Valcorba Santibanez de Valcorba Santibanez de Valcorba,Santibanez de Valcorva,Santibáñez de Valcorba,Santibáñez de Valcorva 41.56983 -4.44938 P PPLA3 ES 55 VA 47154 190 750 Europe/Madrid 2012-03-04
-3109594 Santibáñez de Tera Santibanez de Tera Santibanez de Tera,Santibáñez de Tera 41.98563 -5.92257 P PPLA3 ES 55 ZA 49205 592 720 733 Europe/Madrid 2012-03-04
-3109601 Santibáñez del Val Santibanez del Val Santibanez del Val,Santibáñez del Val 41.97354 -3.48142 P PPLA3 ES 55 BU 09356 72 941 Europe/Madrid 2012-03-04
-3109604 Santibáñez de la Sierra Santibanez de la Sierra Santibanez de la Sierra,Santibáñez de la Sierra 40.49464 -5.91576 P PPLA3 ES 55 SA 37298 242 622 Europe/Madrid 2012-03-04
-3109605 Santibáñez de la Peña Santibanez de la Pena Santibanez de la Pena,Santibáñez de la Peña 42.80929 -4.73026 P PPLA3 ES 55 P 34171 1365 1114 Europe/Madrid 2012-03-04
-3109609 Santibáñez de Ecla Santibanez de Ecla Santibanez de Ecla,Santibáñez de Ecla 42.70784 -4.37263 P PPLA3 ES 55 P 34170 82 952 Europe/Madrid 2012-03-04
-3109610 Santibáñez de Béjar Santibanez de Bejar Santibanez de Bejar,Santibáñez de Béjar 40.48785 -5.6111 P PPLA3 ES 55 SA 37297 606 920 Europe/Madrid 2012-03-04
-3109629 Santiago Millas Santiago Millas Santiago Millas 42.3838 -6.10538 P PPLA3 ES 55 LE 24161 340 935 Europe/Madrid 2012-03-04
-3109637 Santiago del Collado Santiago del Collado Santiago del Collado 40.43326 -5.35631 P PPLA3 ES 55 AV 05228 257 1225 Europe/Madrid 2012-03-04
-3109641 Santiago de la Puebla Santiago de la Puebla Santiago de la Puebla 40.80132 -5.28073 P PPLA3 ES 55 SA 37296 472 872 Europe/Madrid 2012-03-04
-3109642 Santiago de Compostela Santiago de Compostela Compostelako Donejakue,Compostella,Lungsod ng Santiago de Compostela,Saint-Jacques-de-Compostelle,Sant'jago-de-Kompostela,Santiago,Santiago de Compostela,Santiago de Compostella,Santiago de Compostel·la,Santiago di Compostela,Santjago de Kompostela,kong bo si te la de sheng de ya ge,santyagw d kampwstla,Сантьяго-де-Компостела,Сантяго де Компостела,סנטיאגו דה קומפוסטלה,سانتیاگو د کامپوستلا,サンティアゴ・デ・コンポステーラ,孔波斯特拉的聖地牙哥 42.88052 -8.54569 P PPLA ES 58 C 15078 95092 257 Europe/Madrid 2010-04-22
-3109653 Doneztebe Doneztebe Doneztebe,Santesteban 43.13333 -1.66667 P PPL ES 32 NA 31221 1506 122 Europe/Madrid 2007-01-31
-3109656 Santervás de la Vega Santervas de la Vega Santervas de la Vega,Santervás de la Vega 42.50676 -4.80002 P PPLA3 ES 55 P 34169 507 924 Europe/Madrid 2012-03-04
-3109658 Santervás de Campos Santervas de Campos Santervas de Campos,Santervás de Campos 42.2182 -5.10028 P PPLA3 ES 55 VA 47153 144 762 Europe/Madrid 2012-03-04
-3109664 Santed Santed 41.03172 -1.51028 P PPLA3 ES 52 Z 50239 75 1064 Europe/Madrid 2012-03-04
-3109680 Santa Susanna Santa Susanna Santa Susana,Santa Susanna,Santa-Susanna,Санта-Сусанна 41.63333 2.71667 P PPLA3 ES 56 B 08261 3019 4 Europe/Madrid 2011-07-31
-3109681 Santas Martas Santas Martas Santa Martas,Santas Martas 42.4322 -5.37066 P PPLA3 ES 55 LE 24160 958 838 Europe/Madrid 2012-03-04
-3109689 Santa Perpètua de Mogoda Santa Perpetua de Mogoda Santa Perpetua de Mogoda,Santa Perpetua de Moguda,Santa Perpètua de Mogoda 41.53333 2.18333 P PPLA3 ES 56 B 08260 25048 70 Europe/Madrid 2012-03-04
-3109692 Santa Pau Santa Pau 42.1443 2.57123 P PPLA3 ES 56 GI 17184 1541 489 Europe/Madrid 2012-03-04
-3109693 Santa Oliva Santa Oliva Santa Oliva 41.25357 1.55086 P PPL ES 56 T 43024 2761 103 Europe/Madrid 2012-01-19
-3109699 Santa Olalla de Bureba Santa Olalla de Bureba Santa Olalla de Bureba 42.47721 -3.44109 P PPLA3 ES 55 BU 09354 31 853 Europe/Madrid 2012-03-04
-3109705 Santa Olalla Santa Olalla Santa Olalla,Santa Olalla de Toledo 40.02348 -4.43025 P PPLA3 ES 54 TO 45158 3024 486 Europe/Madrid 2012-03-04
-3109714 Sant Aniol de Finestres Sant Aniol de Finestres Sant Aniol de Finestres 42.09023 2.58688 P PPLA3 ES 56 GI 17183 0 411 Europe/Madrid 2011-07-31
-3109718 Santander Santander Portus Victoriae Iuliobrigensium,Sanandere,Santandehr,Santander,Santandero,santanderu,sntndr,Сантандер,Сантандэр,סנטנדר,サンタンデール 43.46472 -3.80444 P PPLA ES 39 S 39075 182700 28 Europe/Madrid 2012-01-19
-3109721 Santa Marta de Tormes Santa Marta de Tormes Santa Marta de Tormes 40.95065 -5.62723 P PPLA3 ES 55 SA 37294 14630 788 Europe/Madrid 2012-03-04
-3109724 Santa Marta de Ortigueira Santa Marta de Ortigueira Ortigueira,Santa Marta de Ortigueira 43.68333 -7.85 P PPL ES 58 C 15061 7663 37 Europe/Madrid 2012-01-19
-3109725 Santa Marta del Cerro Santa Marta del Cerro Santa Marta del Cerro 41.21843 -3.68582 P PPLA3 ES 55 SG 40186 53 1028 Europe/Madrid 2012-03-04
-3109736 Santa Marina del Rey Santa Marina del Rey Santa Marina del Rey 42.51334 -5.86065 P PPLA3 ES 55 LE 24159 2281 848 Europe/Madrid 2012-03-04
-3109756 Santa María la Real de Nieva Santa Maria la Real de Nieva Santa Maria de la Nieva,Santa Maria la Real de Nieva,Santa María la Real de Nieva,Santa-Maria de Nieva,Santa-María de Nieva 41.06998 -4.40709 P PPLA3 ES 55 SG 40185 1310 900 Europe/Madrid 2012-03-04
-3109760 Santa María de Valverde Santa Maria de Valverde Santa Maria de Valverde,Santa María de Valverde 41.93479 -5.9356 P PPLA3 ES 55 ZA 49204 93 734 Europe/Madrid 2012-03-04
-3109761 Santa María de Sando Santa Maria de Sando Santa Maria de Sando,Santa María de Sando 40.97909 -6.12904 P PPLA3 ES 55 SA 37293 158 825 Europe/Madrid 2012-03-04
-3109764 Santa Maria de Palautordera Santa Maria de Palautordera 41.7 2.45 P PPLA3 ES 56 B 08259 7739 224 Europe/Madrid 2012-03-04
-3109766 Santa María de Ordás Santa Maria de Ordas Santa Maria,Santa Maria de Ordas,Santa María de Ordás 42.72653 -5.82301 P PPLA3 ES 55 LE 24158 364 950 Europe/Madrid 2012-03-04
-3109767 Santa Maria d'Oló Santa Maria d'Olo Santa Maria d'Olo,Santa Maria d'Oló 41.86667 2.03333 P PPL ES 56 B 08012 1044 542 498 Europe/Madrid 2010-04-04
-3109775 Santa María del Val Santa Maria del Val Santa Maria del Val,Santa María del Val 40.50439 -2.04115 P PPLA3 ES 54 CU 16197 96 1192 Europe/Madrid 2012-03-04
-3109778 Santa María del Páramo Santa Maria del Paramo Santa Maria 42.35512 -5.75151 P PPLA3 ES 55 LE 24157 3120 811 Europe/Madrid 2012-03-04
-3109781 Santa María de los Caballeros Santa Maria de los Caballeros Santa Maria de los Caballeros,Santa María de los Caballeros 40.38925 -5.45112 P PPLA3 ES 55 AV 05226 114 1042 Europe/Madrid 2012-03-04
-3109783 Santa María del Monte de Cea Santa Maria del Monte de Cea Santa Maria del Monte,Santa Maria del Monte de Cea,Santa María del Monte,Santa María del Monte de Cea 42.49137 -5.11689 P PPLA3 ES 55 LE 24156 321 886 Europe/Madrid 2012-03-04
-3109785 Santa María del Invierno Santa Maria del Invierno Santa Maria del Invierno,Santa María del Invierno 42.44288 -3.43782 P PPLA3 ES 55 BU 09351 70 859 Europe/Madrid 2012-03-04
-3109788 Santa María del Campo Santa Maria del Campo Santa Maria,Santa Maria del Campo,Santa María del Campo,Santo Maria del Campo 42.13304 -3.97283 P PPLA3 ES 55 BU 09350 677 813 Europe/Madrid 2012-03-04
-3109790 Santa María del Berrocal Santa Maria del Berrocal Santa Maria del Berrocal,Santa María del Berrocal 40.50845 -5.40483 P PPLA3 ES 55 AV 05225 514 1049 Europe/Madrid 2012-03-04
-3109791 Santa María de la Vega Santa Maria de la Vega 42.08497 -5.80851 P PPLA3 ES 55 ZA 49203 478 729 Europe/Madrid 2012-03-04
-3109792 Santa María de las Hoyas Santa Maria de las Hoyas Santa Maria de las Hoyas,Santa María de las Hoyas 41.77145 -3.14172 P PPLA3 ES 55 SO 42168 191 1070 Europe/Madrid 2012-03-04
-3109793 Santa María de la Isla Santa Maria de la Isla Santa Maria de la Isla,Santa María de la Isla 42.35533 -5.9287 P PPLA3 ES 55 LE 24155 624 787 Europe/Madrid 2012-03-04
-3109794 Santa María de la Alameda Santa Maria de la Alameda 40.59492 -4.25772 P PPLA3 ES 29 M 28135 992 1408 Europe/Madrid 2011-07-31
-3109795 Santa María de Huerta Santa Maria de Huerta Santa Maria de Huert,Santa Maria de Huerta,Santa Maria de Huerto,Santa María de Huerta 41.26667 -2.16667 P PPLA3 ES 55 SO 42167 405 814 Europe/Madrid 2011-07-31
-3109799 Santa Maria de Corcó Santa Maria de Corco Santa Maria de Corco,Santa Maria de Corcó,l'Esquirol 42.03333 2.36667 P PPL ES 56 B 08280 2171 740 676 Europe/Madrid 2010-04-04
-3109800 Santa María de Cayón Santa Maria de Cayon Santa Maria de Cayon,Santa María de Cayón 43.30849 -3.8368 P PPLA3 ES 39 S 39074 6710 105 Europe/Madrid 2012-03-04
-3109804 Barberà del Vallès Barbera del Valles Barbera Del Valles,Santa Maria de Barbera,Santa María de Barberà 41.5159 2.12457 P PPL ES 56 B 08252 31144 144 Europe/Madrid 2010-05-27
-3109824 Santa Magdalena de Pulpis Santa Magdalena de Pulpis Santa Magdalena de Pulpis 40.35625 0.30258 P PPLA3 ES 60 CS 12102 836 126 Europe/Madrid 2012-03-04
-3109861 Santa Inés Santa Ines Santa Ines,Santa Inés 42.04013 -3.70322 P PPLA3 ES 55 BU 09348 183 861 Europe/Madrid 2012-03-04
-3109863 Santa Gadea del Cid Santa Gadea del Cid Santa Gadea del Cid 42.71531 -3.05885 P PPLA3 ES 55 BU 09347 168 506 Europe/Madrid 2012-03-04
-3109871 Santa Eulàlia de Ronçana Santa Eulalia de Roncana 41.65 2.23333 P PPLA3 ES 56 B 08248 5814 155 165 Europe/Madrid 2012-03-04
-3109875 Santa Eulalia de Oscos Santa Eulalia de Oscos Santa Eulalia,Santa Eulalia de Oscos 43.2595 -7.01895 P PPLA3 ES 34 O 33062 565 558 Europe/Madrid 2012-03-04
-3109878 Santa Eulalia de Gállego Santa Eulalia de Gallego Santa Eulalia de Gallego,Santa Eulalia de Gállego,Santolaria de Galligo 42.287 -0.76065 P PPLA3 ES 52 Z 50238 133 509 Europe/Madrid 2012-03-04
-3109881 Santa Eulalia Bajera Santa Eulalia Bajera Santa Eulalia Bajera 42.2096 -2.19174 P PPLA3 ES 27 LO 26136 130 620 Europe/Madrid 2012-03-04
-3109887 Santa Eulalia Santa Eulalia Cabranes 43.41621 -5.41128 P PPL ES 34 O 33009 1063 234 Europe/Madrid 2008-07-20
-3109891 Santa Eulalia Santa Eulalia Santa Eulalia 40.56742 -1.31354 P PPLA3 ES 52 TE 44209 1158 989 Europe/Madrid 2012-03-04
-3109894 Santa Eugènia de Berga Santa Eugenia de Berga Santa Eugenia de Berga,Santa Eugènia de Berga 41.9 2.28333 P PPL ES 56 B 08298 2035 567 541 Europe/Madrid 2010-04-04
-3109899 Santa Eufemia del Barco Santa Eufemia del Barco Santa Eufemia,Santa Eufemia del Barco 41.67808 -5.89831 P PPLA3 ES 55 ZA 49202 274 723 Europe/Madrid 2012-03-04
-3109900 Santa Eufemia del Arroyo Santa Eufemia del Arroyo Santa Eufemia del Arroyo 41.89505 -5.26575 P PPLA3 ES 55 VA 47152 139 716 Europe/Madrid 2012-03-04
-3109911 Santa Elena de Jamuz Santa Elena de Jamuz Santa Elena de Jamuz 42.26064 -5.88762 P PPLA3 ES 55 LE 24154 1296 768 Europe/Madrid 2012-03-04
-3109914 Santa Cruz de Yanguas Santa Cruz de Yanguas Santa Cruz de Yanguas 42.0625 -2.44894 P PPLA3 ES 55 SO 42166 63 1215 Europe/Madrid 2012-03-04
-3109915 Santa Cruz de Pinares Santa Cruz de Pinares Santa Cruz de Pinares 40.54265 -4.58036 P PPLA3 ES 55 AV 05222 196 1008 Europe/Madrid 2012-03-04
-3109916 Santa Cruz de Paniagua Santa Cruz de Paniagua Santa Cruz de Paniagua 40.19167 -6.34003 P PPLA3 ES 57 CC 10167 379 475 Europe/Madrid 2012-03-04
-3109917 Santa Cruz de Nogueras Santa Cruz de Nogueras Santa Cruz de Nogueras 41.11475 -1.08933 P PPLA3 ES 52 TE 44208 30 894 Europe/Madrid 2012-03-04
-3109919 Santa Cruz de Moncayo Santa Cruz de Moncayo Santa Cruz de Moncayo 41.8824 -1.75637 P PPLA3 ES 52 Z 50237 112 621 Europe/Madrid 2012-03-04
-3109921 Santa Cruz del Valle Urbión Santa Cruz del Valle Urbion Santa Cruz del Valle Urbion,Santa Cruz del Valle Urbión 42.30558 -3.2214 P PPLA3 ES 55 BU 09346 113 959 Europe/Madrid 2012-03-04
-3109922 Santa Cruz del Valle Santa Cruz del Valle Santa Cruz del Valle 40.2516 -5.00133 P PPLA3 ES 55 AV 05221 492 727 Europe/Madrid 2012-03-04
-3109925 Santa Cruz del Retamar Santa Cruz del Retamar Santa Cruz de Retamar 40.11917 -4.24158 P PPL ES 54 TO 45066 2383 598 Europe/Madrid 2008-10-28
-3109929 Santa Cruz de la Serós Santa Cruz de la Seros Santa Cruz d'as Serors,Santa Cruz de la Seros,Santa Cruz de la Serós 42.5227 -0.67515 P PPLA3 ES 52 HU 22209 160 801 Europe/Madrid 2012-03-04
-3109930 Santa Cruz de la Salceda Santa Cruz de la Salceda Santa Cruz de la Salceda 41.59591 -3.59317 P PPLA3 ES 55 BU 09345 184 899 Europe/Madrid 2012-03-04
-3109932 Santa Cruz de Grío Santa Cruz de Grio Santa Cruz de Grio,Santa Cruz de Grío 41.3705 -1.43008 P PPLA3 ES 52 Z 50236 213 640 Europe/Madrid 2012-03-04
-3109934 Santa Cruz de Boedo Santa Cruz de Boedo Santa Cruz de Boedo 42.52531 -4.37398 P PPLA3 ES 55 P 34168 49 848 Europe/Madrid 2012-03-04
-3109935 Santa Cruz de Bezana Santa Cruz de Bezana 43.4437 -3.90324 P PPLA3 ES 39 S 39073 11279 44 Europe/Madrid 2012-03-04
-3109953 Santa Croya de Tera Santa Croya de Tera Santa Croya de Tera 41.98334 -5.97725 P PPLA3 ES 55 ZA 49201 399 727 Europe/Madrid 2012-03-04
-3109954 Santa Cristina de Valmadrigal Santa Cristina de Valmadrigal Santa Cristina de Valmadrigal 42.35446 -5.30929 P PPLA3 ES 55 LE 24153 328 814 Europe/Madrid 2012-03-04
-3109956 Santa Cristina de la Polvorosa Santa Cristina de la Polvorosa Santa Cristina de la Polvorosa 41.99985 -5.71355 P PPLA3 ES 55 ZA 49200 1213 709 Europe/Madrid 2012-03-04
-3109957 Santa Cristina d'Aro Santa Cristina d'Aro Santa Cristina d'Aro,Santa Cristina de Aro 41.81667 3 P PPLA3 ES 56 GI 17181 0 55 Europe/Madrid 2012-03-04
-3109966 Santa Comba Santa Comba Santa Comba 43.03306 -8.80925 P PPLA3 ES 58 C 15077 10487 384 Europe/Madrid 2012-03-04
-3109971 Santa Colomba de Somoza Santa Colomba de Somoza Santa Colomba de Somoza 42.44466 -6.24483 P PPLA3 ES 55 LE 24152 510 1001 Europe/Madrid 2012-03-04
-3109974 Santa Colomba de las Monjas Santa Colomba de las Monjas Santa Colomba de las Monjas 41.95834 -5.68389 P PPLA3 ES 55 ZA 49199 316 703 Europe/Madrid 2012-03-04
-3109977 Santa Colomba de Curueño Santa Colomba de Curueno Santa Colomba de Curueno,Santa Colomba de Curueño 42.75058 -5.41201 P PPLA3 ES 55 LE 24151 582 927 Europe/Madrid 2012-03-04
-3109979 Santa Coloma de Queralt Santa Coloma de Queralt Santa Coloma,Santa Coloma de Queralt 41.53333 1.38333 P PPLA3 ES ES 56 T 43139 0 682 Europe/Madrid 2012-03-04
-3109981 Santa Coloma de Gramenet Santa Coloma de Gramenet Santa Coloma de Gramenet,Santa-Koloma-de-Gramanet,Санта-Колома-де-Граманет 41.45152 2.2081 P PPL ES 56 B 08125 119717 39 Europe/Madrid 2010-04-22
-3109982 Santa Coloma de Farners Santa Coloma de Farners Santa Colama de Farnes,Santa Colama de Farnés,Santa Coloma de Farners,Santa Coloma de Farnes,Santa Coloma de Farnés 41.86667 2.66667 P PPLA3 ES 56 GI 17180 11739 158 Europe/Madrid 2012-03-04
-3109983 Santa Coloma de Cervelló Santa Coloma de Cervello Santa Coloma,Santa Coloma de Cervello,Santa Coloma de Cervelló,Santa Colomba de Cervello,Santa Colomba de Cervelló 41.36736 2.01426 P PPLA3 ES 56 B 08244 7086 16 92 Europe/Madrid 2012-03-04
-3109988 Santa Coloma Santa Coloma Santa Coloma 42.36717 -2.65598 P PPLA3 ES 27 LO 26134 121 765 Europe/Madrid 2012-03-04
-3109989 Santa Clara de Avedillo Santa Clara de Avedillo Santa Clara de Avedillo 41.33877 -5.67692 P PPLA3 ES 55 ZA 49197 232 772 Europe/Madrid 2012-03-04
-3109999 Santa Cecília de Voltregà Santa Cecilia de Voltrega Santa Cecilia de Voltrega,Santa Cecília de Voltregà 42 2.23333 P PPLA3 ES 56 B 08243 206 525 Europe/Madrid 2012-03-04
-3110000 Santa Cecilia del Alcor Santa Cecilia del Alcor Santa Cecilia del Alcor 41.93227 -4.65546 P PPLA3 ES 55 P 34167 149 858 Europe/Madrid 2012-03-04
-3110004 Santa Cecilia Santa Cecilia Santa Cecilia 42.05225 -3.80345 P PPLA3 ES 55 BU 09343 117 841 Europe/Madrid 2012-03-04
-3110010 Santacara Santacara Santacara 42.36667 -1.63333 P PPL ES 32 NA 31178 1017 313 Europe/Madrid 2012-01-19
-3110016 Santa Bárbara Santa Barbara Santa Barbara,Santa Bárbara 40.71542 0.49292 P PPL ES 56 T 43063 3689 82 Europe/Madrid 2012-01-19
-3110031 Sansol Sansol Sansol 42.55362 -2.26676 P PPLA3 ES 32 NA 31219 0 495 Europe/Madrid 2012-03-04
-3110040 San Sebastián de los Reyes San Sebastian de los Reyes S.S. de los Reyes,SS de los Reyes,San Sebastian de los Reyes,San Sebastián de los Reyes,Sanse 40.54433 -3.61588 P PPLA3 ES 29 M 28134 75912 644 Europe/Madrid 2012-03-04
-3110044 San Sebastián San Sebastian Donosti,Donostia,Donostia-San Sebastian,Donostia-San Sebastián,Donostio,La Bella Easo,Saint-Sebastien,Saint-Sébastien,San Sebastian,San Sebastián,San-Sebast'jan,Sanse,Sant Sebastia,Sant Sebastià,Sao Sebastiao,São Sebastião,san sbastyan,sheng sai wa si ti an,Сан-Себастьян,סן סבסטיאן,سان سباستيان,サン・セバスティアン,圣塞瓦斯提安 43.31283 -1.97499 P PPLA2 ES 59 SS 20069 185357 17 Europe/Madrid 2010-08-23
-3110048 San Sadurniño San Sadurnino 43.53333 -8.06667 P PPLA3 ES 58 C 15076 0 101 Europe/Madrid 2012-03-04
-3110063 San Salvador San Salvador 41.6206 -5.08713 P PPLA3 ES 55 VA 47151 0 719 Europe/Madrid 2012-03-04
-3110064 Sant Sadurní d'Anoia Sant Sadurni d'Anoia Sant Sadurni,Sant Sadurni d'Anoia,Sant Sadurní,Sant Sadurní d'Anoia 41.41667 1.78333 P PPL ES 56 B 08273 12237 136 Europe/Madrid 2010-04-22
-3110076 San Román de la Cuba San Roman de la Cuba 42.26257 -4.85724 P PPLA3 ES 55 P 34165 108 807 Europe/Madrid 2012-03-04
-3110077 San Román de Hornija San Roman de Hornija San Roman,San Roman de Hornija,San Roman de la Hornija,San Román,San Román de Hornija,San Román de la Hornija 41.48131 -5.28454 P PPLA3 ES 55 VA 47150 432 669 Europe/Madrid 2012-03-04
-3110079 San Román de Cameros San Roman de Cameros San Roman de Cameros,San Román de Cameros 42.23255 -2.47436 P PPLA3 ES 27 LO 26132 154 850 Europe/Madrid 2012-03-04
-3110092 San Román San Roman Cervantes,San Roman,San Román 42.86932 -7.06261 P PPL ES 58 LU 27012 1987 665 Europe/Madrid 2012-01-19
-3110100 Sant Quirze Safaja Sant Quirze Safaja San Quirico Safaja,San Quírico Safaja,Sant Quirze Safaja 41.73333 2.15 P PPLA3 ES 56 B 08239 0 672 Europe/Madrid 2012-03-04
-3110101 Sant Quirze del Vallès Sant Quirze del Valles San Quirico de Tarrasa,San Quírico de Tarrasa,Sant Quirze del Valles,Sant Quirze del Vallès 41.53333 2.08333 P PPLA3 ES 56 B 08238 18462 178 Europe/Madrid 2012-03-04
-3110110 Sant Pol de Mar Sant Pol de Mar San Pol de Mar,Sant Pol de Mar 41.60177 2.61741 P PPLA3 ES 56 B 08235 0 29 Europe/Madrid 2012-03-04
-3110117 San Pelayo de Guareña San Pelayo de Guarena San Pelayo de Guarena,San Pelayo de Guareña 41.11579 -5.85702 P PPLA3 ES 55 SA 37292 148 781 Europe/Madrid 2012-03-04
-3110126 San Pelayo San Pelayo 41.68033 -5.03403 P PPLA3 ES 55 VA 47149 40 775 Europe/Madrid 2012-03-04
-3110129 Sant Pere Pescador Sant Pere Pescador Sant Pere Pescador 42.18812 3.08212 P PPLA3 ES 56 GI 17178 0 8 Europe/Madrid 2012-03-04
-3110130 San Pedro Palmiches San Pedro Palmiches San Pedro Palmiches 40.42956 -2.40602 P PPLA3 ES 54 CU 16193 92 830 Europe/Madrid 2012-03-04
-3110132 San Pedro Manrique San Pedro Manrique San Pedro Manrique 42.0286 -2.23104 P PPLA3 ES 55 SO 42165 536 1081 Europe/Madrid 2012-03-04
-3110136 Sant Pere de Vilamajor Sant Pere de Vilamajor San Pedro de Vilamajor,Sant Pere de Vilamajor 41.68333 2.38333 P PPLA3 ES 56 B 08234 0 318 Europe/Madrid 2012-03-04
-3110141 San Pedro de Rozados San Pedro de Rozados San Pedro de Rozados 40.79008 -5.73716 P PPLA3 ES 55 SA 37291 343 976 Europe/Madrid 2012-03-04
-3110142 Sant Pere de Riudebitlles Sant Pere de Riudebitlles Sant Pere de Riudebitlles 41.45 1.7 P PPL ES 56 B 08287 2113 264 Europe/Madrid 2010-04-04
-3110143 Sant Pere de Ribes Sant Pere de Ribes San Pedro de Ribas,Sant Pere de Ribes 41.26667 1.76667 P PPL ES 56 B 08270 28353 75 Europe/Madrid 2010-04-22
-3110150 San Pedro del Valle San Pedro del Valle San Pedro del Valle 41.03332 -5.86025 P PPLA3 ES 55 SA 37290 125 789 Europe/Madrid 2012-03-04
-3110152 San Pedro del Romeral San Pedro del Romeral San Pedro del Romeral 43.11514 -3.8186 P PPLA3 ES 39 S 39071 579 740 Europe/Madrid 2012-03-04
-3110158 San Pedro de Latarce San Pedro de Latarce San Pedro de Latarce 41.73556 -5.32592 P PPLA3 ES 55 VA 47148 611 709 Europe/Madrid 2012-03-04
-3110165 San Pedro del Arroyo San Pedro del Arroyo San Pedro del Arroyo 40.80213 -4.87074 P PPLA3 ES 55 AV 05220 499 937 Europe/Madrid 2012-03-04
-3110171 San Pedro de Gaíllos San Pedro de Gaillos San Pedro de Gaillos,San Pedro de Gaíllos 41.22662 -3.80921 P PPLA3 ES 55 SG 40184 368 990 Europe/Madrid 2012-03-04
-3110175 San Pedro de Ceque San Pedro de Ceque San Pedro de Ceque 42.04334 -6.07242 P PPLA3 ES 55 ZA 49193 636 760 Europe/Madrid 2012-03-04
-3110181 San Pedro Bercianos San Pedro Bercianos 42.39145 -5.71341 P PPLA3 ES 55 LE 24150 337 822 Europe/Madrid 2012-03-04
-3110217 San Pascual San Pascual San Pascual 40.88141 -4.75612 P PPLA3 ES 55 AV 05219 48 885 Europe/Madrid 2012-03-04
-3110223 San Pablo de la Moraleja San Pablo de la Moraleja San Pablo de la Moraleja 41.161 -4.77762 P PPLA3 ES 55 VA 47147 167 796 Europe/Madrid 2012-03-04
-3110229 San Muñoz San Munoz Munoz,Muñoz,San Munoz,San Muñoz 40.78334 -6.12758 P PPLA3 ES 55 SA 37289 316 782 Europe/Madrid 2012-03-04
-3110230 Sant Mori Sant Mori Sant Mori 42.1559 2.98946 P PPLA3 ES 56 GI 17176 0 49 Europe/Madrid 2012-03-04
-3110231 San Morales San Morales San Morales 40.99358 -5.50234 P PPLA3 ES 55 SA 37288 238 795 Europe/Madrid 2012-03-04
-3110233 San Millán de Yécora San Millan de Yecora San Millan de Yecora,San Millán de Yécora 42.54705 -3.09681 P PPLA3 ES 27 LO 26131 74 658 Europe/Madrid 2012-03-04
-3110235 San Millán de los Caballeros San Millan de los Caballeros San Millan de los Caballeros,San Millán de los Caballeros 42.2852 -5.56107 P PPLA3 ES 55 LE 24149 173 749 Europe/Madrid 2012-03-04
-3110236 San Millán de Lara San Millan de Lara San Millan de Lara,San Millán de Lara 42.13621 -3.34515 P PPLA3 ES 55 BU 09340 83 1083 Europe/Madrid 2012-03-04
-3110237 San Millán de la Cogolla San Millan de la Cogolla Donemiliaga Kukula 42.32974 -2.86185 P PPLA3 ES 27 LO 26130 303 747 Europe/Madrid 2012-03-04
-3110244 San Miguel de Valero San Miguel de Valero San Miguel de Valero 40.54361 -5.9228 P PPLA3 ES 55 SA 37287 382 937 Europe/Madrid 2012-03-04
-3110245 San Miguel de Serrezuela San Miguel de Serrezuela San Miguel,San Miguel de Serrezuela 40.67064 -5.28858 P PPLA3 ES 55 AV 05218 174 1098 Europe/Madrid 2012-03-04
-3110254 San Miguel de Meruelo San Miguel de Meruelo Meruelo,San Miguel de Meruelo 43.46211 -3.58877 P PPL ES 39 S 39006 1398 11 Europe/Madrid 2012-01-19
-3110258 San Miguel del Pino San Miguel del Pino 41.50941 -4.91149 P PPLA3 ES 55 VA 47146 212 677 Europe/Madrid 2012-03-04
-3110265 San Miguel del Arroyo San Miguel del Arroyo San Miguel del Arroyo 41.44328 -4.4599 P PPLA3 ES 55 VA 47145 792 817 Europe/Madrid 2012-03-04
-3110266 San Miguel de la Ribera San Miguel de la Ribera San Miguel de la Ribera 41.33301 -5.57689 P PPLA3 ES 55 ZA 49191 371 765 Europe/Madrid 2012-03-04
-3110270 Sant Miquel de Fluvià Sant Miquel de Fluvia Sant Miquel de Fluvia,Sant Miquel de Fluvià 42.172 2.99259 P PPLA3 ES 56 GI 17175 0 26 Europe/Madrid 2012-03-04
-3110274 San Miguel de Corneja San Miguel de Corneja San Miguel de Corneja 40.48722 -5.28654 P PPLA3 ES 55 AV 05217 100 1063 Europe/Madrid 2012-03-04
-3110275 Sant Miquel de Campmajor Sant Miquel de Campmajor San Miguel de Campmajor,Sant Miquel de Campmajor 42.13333 2.68333 P PPLA3 ES 56 GI 17174 0 215 Europe/Madrid 2012-03-04
-3110280 San Miguel de Aguayo San Miguel de Aguayo San Miguel de Aguayo 43.05383 -4.0255 P PPLA3 ES 39 S 39070 148 837 Europe/Madrid 2012-03-04
-3110305 San Mateo de Gállego San Mateo de Gallego San Mateo de Gallego,San Mateo de Gállego 41.83043 -0.76578 P PPLA3 ES 52 Z 50235 2461 286 Europe/Madrid 2012-03-04
-3110311 Sant Martí Vell Sant Marti Vell San Martivell,San Martívell,Sant Marti Vell,Sant Martí Vell 42.01667 2.93333 P PPLA3 ES 56 GI 17173 0 115 Europe/Madrid 2012-03-04
-3110315 Sant Martí Sarroca Sant Marti Sarroca Sant Marti Sarroca,Sant Martí Sarroca 41.38333 1.61667 P PPLA3 ES 56 B 08227 0 286 Europe/Madrid 2012-03-04
-3110321 San Martín de Valvení San Martin de Valveni San Martin de Valveni,San Martín de Valvení 41.75336 -4.56724 P PPLA3 ES 55 VA 47144 108 736 Europe/Madrid 2012-03-04
-3110324 San Martín de Valderaduey San Martin de Valderaduey San Martin de Valderaduey,San Martín de Valderaduey 41.81414 -5.47249 P PPLA3 ES 55 ZA 49190 0 684 Europe/Madrid 2012-03-04
-3110326 San Martín de Valdeiglesias San Martin de Valdeiglesias San Martin de Valdieglesias 40.36185 -4.39831 P PPLA3 ES 29 M 28133 6965 675 Europe/Madrid 2012-03-04
-3110327 San Martín de Unx San Martin de Unx San Martin de Unx,San Martín de Unx 42.52473 -1.56091 P PPLA3 ES 32 NA 31217 431 613 Europe/Madrid 2012-03-04
-3110329 San Martín de Trevejo San Martin de Trevejo San Martin de Trevejo,San Martín de Trevejo 40.21241 -6.79534 P PPLA3 ES 57 CC 10164 965 619 Europe/Madrid 2012-03-04
-3110330 Sant Martí de Tous Sant Marti de Tous San Martin de Tous,San Martín de Tous,Sant Marti de Tous,Sant Martí de Tous 41.55 1.51667 P PPLA3 ES 56 B 08226 0 471 Europe/Madrid 2012-03-04
-3110336 San Martín de Rubiales San Martin de Rubiales San Martin de Rubiales,San Martín de Rubiales 41.64191 -3.99134 P PPLA3 ES 55 BU 09339 212 788 Europe/Madrid 2012-03-04
-3110340 San Martín de Oscos San Martin de Oscos San Martin,San Martin de Oscos,San Martín de Oscos 43.26587 -6.96241 P PPLA3 ES 34 O 33061 471 713 Europe/Madrid 2012-03-04
-3110346 San Martín del Río San Martin del Rio San Martin del Rio,San Martín del Río 41.06633 -1.38733 P PPLA3 ES 52 TE 44207 248 800 Europe/Madrid 2012-03-04
-3110348 San Martín del Pimpollar San Martin del Pimpollar San Martin del Pimpollar,San Martín del Pimpollar 40.3683 -5.05443 P PPLA3 ES 55 AV 05216 274 1335 Europe/Madrid 2012-03-04
-3110356 San Martín del Castañar San Martin del Castanar San Martin del Castanar,San Martín del Castañar 40.52264 -6.06387 P PPLA3 ES 55 SA 37286 272 838 Europe/Madrid 2012-03-04
-3110359 San Martín de la Vega del Alberche San Martin de la Vega del Alberche San Martin de la Vega del Alberche,San Martín de la Vega del Alberche 40.43053 -5.155 P PPLA3 ES 55 AV 05215 243 1509 Europe/Madrid 2012-03-04
-3110360 San Martín de la Vega San Martin de la Vega San Martin de la Vega,San Martín de la Vega 40.20735 -3.57063 P PPLA3 ES 29 M 28132 18256 518 Europe/Madrid 2012-03-04
-3110374 San Martín de Elines San Martin de Elines San Martin,San Martin de Elines,San Martín de Elines,Valderredible 42.82864 -3.86865 P PPL ES 39 S 39094 1258 724 Europe/Madrid 2012-01-19
-3110377 Sant Martí de Centelles Sant Marti de Centelles Sant Marti de Centelles,Sant Martí de Centelles 41.76617 2.20566 P PPLA3 ES 56 B 08224 898 420 709 Europe/Madrid 2012-03-04
-3110429 San Mamés de Campos San Mames de Campos San Mames de Campos,San Mamés de Campos 42.35512 -4.56565 P PPLA3 ES 55 P 34163 89 821 Europe/Madrid 2012-03-04
-3110430 San Mamés de Burgos San Mames de Burgos 42.33685 -3.79397 P PPLA3 ES 55 BU 09338 285 843 Europe/Madrid 2012-03-04
-3110451 San Lorenzo de Tormes San Lorenzo de Tormes Lorenzo de Tormes,San Lorenzo de Tormes 40.36984 -5.48848 P PPLA3 ES 55 AV 05214 58 1029 Europe/Madrid 2012-03-04
-3110456 Sant Llorenç de la Muga Sant Llorenc de la Muga Sant Llorenc de la Muga,Sant Llorenç de la Muga 42.31976 2.78888 P PPLA3 ES 56 GI 17171 0 174 Europe/Madrid 2012-03-04
-3110457 Sant Llorenç d'Hortons Sant Llorenc d'Hortons San Lorenzo de Hortons,San Lorenzo de Hortóns,Sant Llorenc d'Hortons,Sant Llorenç d'Hortons 41.46667 1.83333 P PPLA3 ES 56 B 08222 0 169 Europe/Madrid 2012-03-04
-3110458 San Lorenzo de El Escorial San Lorenzo de El Escorial El Escorial,Eskorialo,San Lorenzo,San Lorenzo del Escorial 40.59144 -4.14738 P PPLA3 ES 29 M 28131 17889 1049 Europe/Madrid 2012-03-04
-3110476 San Llorente San Llorente San Llorente 41.68631 -4.066 P PPLA3 ES 55 VA 47143 170 889 Europe/Madrid 2012-03-04
-3110479 San Leonardo de Yagüe San Leonardo de Yague Leonardo,San Leonardo,San Leonardo de Yague,San Leonardo de Yaguee,San Leonardo de Yagüe 41.83034 -3.0688 P PPLA3 ES 55 SO 42164 2354 1045 Europe/Madrid 2012-03-04
-3110482 San Justo de la Vega San Justo de la Vega San Justo de la Vega 42.45696 -6.01826 P PPLA3 ES 55 LE 24148 2077 849 Europe/Madrid 2012-03-04
-3110491 San Justo San Justo 42.13322 -6.62388 P PPLA3 ES 55 ZA 49189 328 1061 Europe/Madrid 2012-03-04
-3110497 Muskiz Muskiz Julian,Muskiz,Musques,Muzquiz,San Julian de Musques,San Julián de Musques 43.33333 -3.1 P PPLA3 ES ES 59 BI 48071 0 143 Europe/Madrid 2012-03-04
-3110499 Sant Julià de Cerdanyola Sant Julia de Cerdanyola 42.2235 1.89308 P PPL ES ES 56 B 08099 1212 965 Europe/Madrid 2010-04-04
-3110516 Vilassar de Mar Vilassar de Mar Vilassar de Mar,Vilassar del Mar 41.50961 2.39365 P PPL ES 56 B 08219 19482 20 Europe/Madrid 2010-04-22
-3110519 Sant Joan Despí Sant Joan Despi Sant Joan Despi,Sant Joan Despí 41.36667 2.06667 P PPL ES 56 B 08019 32030 49 Europe/Madrid 2010-04-22
-3110528 San Juan de Moró San Juan de Moro Caserio San Juan de Moro,Caserío San Juan de Moró,San Juan de Moro,San Juan de Moró,Sant Joan de Moro 40.0599 -0.13691 P PPL ES 60 CS 12040 1947 192 Europe/Madrid 2012-01-19
-3110529 Sant Joan de Mollet Sant Joan de Mollet San Juan de Mollet,Sant Joan de Mollet 42.05 2.95 P PPLA3 ES 56 GI 17168 0 31 Europe/Madrid 2012-03-04
-3110531 San Juan del Monte San Juan del Monte San Juan del Monte 41.68313 -3.52337 P PPLA3 ES 55 BU 09337 168 844 Europe/Madrid 2012-03-04
-3110532 San Juan del Molinillo San Juan del Molinillo San Juan del Molinillo 40.45909 -4.81711 P PPLA3 ES 55 AV 05212 315 1138 Europe/Madrid 2012-03-04
-3110533 Sant Joan de les Abadesses Sant Joan de les Abadesses Sant Joan de les Abadesses 42.23332 2.28524 P PPL ES 56 GI 17147 3593 779 Europe/Madrid 2010-04-04
-3110535 San Juan de la Nava San Juan de la Nava San Juan de la Nava 40.4788 -4.68238 P PPLA3 ES 55 AV 05211 626 1130 Europe/Madrid 2012-03-04
-3110538 San Juan de la Encinilla San Juan de la Encinilla San Juan de la Encinilla 40.8302 -4.83957 P PPLA3 ES 55 AV 05210 121 912 Europe/Madrid 2012-03-04
-3110570 Sant Jordi Desvalls Sant Jordi Desvalls San Jordi Desvalls,Sant Jordi Desvalls 42.06667 2.95 P PPLA3 ES 56 GI 17166 0 30 Europe/Madrid 2012-03-04
-3110573 Sant Jaume dels Domenys Sant Jaume dels Domenys San Jaime dels Domenys,Sant Jaume dels Domenys 41.3 1.56667 P PPLA3 ES 56 T 43137 0 197 Europe/Madrid 2012-03-04
-3110581 San Ildefonso San Ildefonso La Granja,La Granja de San Ildefonso,San Ildefanso,San Ildefonso 40.90182 -4.00685 P PPLA3 ES 55 SG 40181 5426 1166 Europe/Madrid 2012-03-04
-3110584 Sant Hilari Sacalm Sant Hilari Sacalm San Hilario Sacalm,Sant Hilari Sacalm 41.88333 2.51667 P PPLA3 ES 56 GI 17164 0 857 Europe/Madrid 2012-03-04
-3110589 Sangüesa Sanguesa Sangueesa,Sangüesa,Zangotza,Zangoza 42.57483 -1.28283 P PPL ES 32 NA 31135 5030 405 Europe/Madrid 2008-07-15
-3110597 Sant Gregori Sant Gregori San Gregorio,Sant Gregori 41.98333 2.73333 P PPLA3 ES 56 GI 17163 0 207 Europe/Madrid 2012-03-04
-3110610 Sanxenxo Sanxenxo Sangenjo,Sanxenxo 42.39996 -8.80698 P PPLA3 ES 58 PO 36051 17315 11 Europe/Madrid 2012-03-04
-3110611 Sangarrén Sangarren Sangarren,Sangarrén 42.01921 -0.43323 P PPLA3 ES 52 HU 22206 278 377 Europe/Madrid 2012-03-04
-3110612 San García de Ingelmos San Garcia de Ingelmos San Garcia de Ingelmos,San García de Ingelmos 40.76912 -5.11523 P PPLA3 ES 55 AV 05209 135 1069 Europe/Madrid 2012-03-04
-3110613 Sangarcía Sangarcia Sangarcia,Sangarcía 40.95023 -4.41086 P PPLA3 ES 55 SG 40180 445 942 Europe/Madrid 2012-03-04
-3110615 Sant Fruitós de Bages Sant Fruitos de Bages San Fructuoso,San Fructuoso de Bages,San Fructuoso de Bagés,San Frutos,Sant Fruitos de Bages,Sant Fruitós de Bages 41.75 1.86667 P PPLA3 ES 56 B 08213 0 250 Europe/Madrid 2012-03-04
-3110625 Sant Ferriol Sant Ferriol San Ferreol,Sant Ferriol 42.2 2.66667 P PPLA3 ES 56 GI 17162 61 309 Europe/Madrid 2012-03-04
-3110627 San Fernando de Henares San Fernando de Henares San Fernando de Henares 40.42386 -3.53261 P PPLA3 ES 29 M 28130 40981 588 Europe/Madrid 2012-03-04
-3110638 Sant Feliu Sasserra Sant Feliu Sasserra San Feliu Saserra,San Felíu Saserra,Sant Feliu Sasserra 41.95 2.03333 P PPLA3 ES 56 B 08212 0 527 Europe/Madrid 2012-03-04
-3110639 Sant Feliu de Pallerols Sant Feliu de Pallerols Sant Feliu de Pallerols 42.07708 2.50935 P PPLA3 ES 56 GI 17161 0 467 Europe/Madrid 2012-03-04
-3110642 Sant Feliu de Llobregat Sant Feliu de Llobregat Feliu-de-L'obregat,San Feliu de Llobregat,San Feliú de Llobregat,Sant Feliu,Sant Feliu de Llobregat,Фелиу-де-Льобрегат 41.38333 2.05 P PPLA3 ES 56 B 08211 42919 81 48 Europe/Madrid 2012-03-04
-3110643 Sant Feliu de Guíxols Sant Feliu de Guixols Sant Feliu de Guixols,Sant Feliu de Guíxols 41.78333 3.03333 P PPLA3 ES 56 GI 17160 21977 12 Europe/Madrid 2012-03-04
-3110644 Sant Feliu de Codines Sant Feliu de Codines San Feliu de Codinas,San Felíu de Codinas,Sant Feliu de Codines 41.7 2.16667 P PPLA3 ES 56 B 08210 0 597 Europe/Madrid 2012-03-04
-3110650 San Felices de los Gallegos San Felices de los Gallegos San Felices,San Felices de Gallegos,San Felices de los Gallegos 40.84954 -6.70804 P PPLA3 ES 55 SA 37285 579 668 Europe/Madrid 2012-03-04
-3110656 San Felices San Felices 41.93708 -2.02638 P PPLA3 ES 55 SO 42163 0 940 Europe/Madrid 2012-03-04
-3110669 San Esteban de Nogales San Esteban de Nogales San Esteban de Nogales 42.15995 -5.93066 P PPLA3 ES 55 LE 24146 351 785 Europe/Madrid 2012-03-04
-3110670 San Esteban del Valle San Esteban del Valle San Esteban del Valle 40.2751 -4.98215 P PPLA3 ES 55 AV 05207 855 776 Europe/Madrid 2012-03-04
-3110672 San Esteban de los Patos San Esteban de los Patos San Esteban de los Patos 40.74705 -4.62413 P PPLA3 ES 55 AV 05206 36 1114 Europe/Madrid 2012-03-04
-3110673 San Esteban del Molar San Esteban del Molar San Esteban del Molar 41.93717 -5.55158 P PPLA3 ES 55 ZA 49188 168 732 Europe/Madrid 2012-03-04
-3110676 San Esteban de la Sierra San Esteban de la Sierra San Esteban de la Sierra 40.5068 -5.90619 P PPLA3 ES 55 SA 37284 415 631 Europe/Madrid 2012-03-04
-3110678 San Esteban de Gormaz San Esteban de Gormaz San Esteban de Gormaz 41.57436 -3.20418 P PPLA3 ES 55 SO 42162 3268 860 Europe/Madrid 2012-03-04
-3110696 San Emiliano San Emiliano San Emiliano 42.97164 -6.00075 P PPLA3 ES 55 LE 24145 762 1181 Europe/Madrid 2012-03-04
-3110702 Sando Sando Sando 40.96774 -6.11136 P PPLA3 ES 55 SA 37283 240 839 Europe/Madrid 2012-03-04
-3110718 Sant Cugat del Vallès Sant Cugat del Valles Sant Cugat,Sant Cugat del Valles,Sant Cugat del Vallès 41.46667 2.08333 P PPLA3 ES 56 B 08205 79253 131 Europe/Madrid 2012-03-04
-3110723 San Cristóbal de Segovia San Cristobal de Segovia San Cristobal de Segovia,San Cristóbal de Segovia 40.95225 -4.07652 P PPLA3 ES 55 SG 40906 2437 1076 Europe/Madrid 2012-03-04
-3110726 San Cristóbal de la Vega San Cristobal de la Vega San Cristobal de la Vega,San Cristóbal de la Vega 41.11214 -4.64448 P PPLA3 ES 55 SG 40178 139 859 Europe/Madrid 2012-03-04
-3110727 San Cristóbal de la Polantera San Cristobal de la Polantera San Cristobal de la Polantera,San Cristóbal de la Polantera 42.39041 -5.90732 P PPLA3 ES 55 LE 24144 939 801 Europe/Madrid 2012-03-04
-3110728 San Cristóbal de la Cuesta San Cristobal de la Cuesta San Cristobal de la Cuesta,San Cristóbal de la Cuesta 41.02919 -5.61772 P PPLA3 ES 55 SA 37278 567 818 Europe/Madrid 2012-03-04
-3110729 San Cristóbal de Entreviñas San Cristobal de Entrevinas San Cristobal de Entrevinas,San Cristóbal de Entreviñas 42.04575 -5.63468 P PPLA3 ES 55 ZA 49187 1642 716 Europe/Madrid 2012-03-04
-3110730 San Cristóbal de Cuéllar San Cristobal de Cuellar San Cristobal de Cuellar,San Cristóbal de Cuéllar 41.40591 -4.40446 P PPLA3 ES 55 SG 40177 201 809 Europe/Madrid 2012-03-04
-3110732 San Cristóbal de Boedo San Cristobal de Boedo San Cristobal de Boedo,San Cristóbal de Boedo 42.54194 -4.35325 P PPLA3 ES 55 P 34161 37 869 Europe/Madrid 2012-03-04
-3110796 Sanchotello Sanchotello Sanchotello 40.43812 -5.75394 P PPLA3 ES 55 SA 37282 282 944 Europe/Madrid 2012-03-04
-3110798 Sanchorreja Sanchorreja Sanchorreja 40.66475 -4.91494 P PPLA3 ES 55 AV 05205 138 1312 Europe/Madrid 2012-03-04
-3110800 Sanchonuño Sanchonuno Sanchonuno,Sanchonuño 41.32325 -4.30531 P PPLA3 ES 55 SG 40179 837 807 Europe/Madrid 2012-03-04
-3110801 Sanchón de la Sagrada Sanchon de la Sagrada Sanchon de la Sagrada,Sanchón de la Sagrada 40.74287 -6.02502 P PPLA3 ES 55 SA 37281 49 876 Europe/Madrid 2012-03-04
-3110802 Sanchón de la Ribera Sanchon de la Ribera Sanchon de la Ribera,Sanchon de la Rivera,Sanchón de la Ribera,Sanchón de la Rivera 41.08844 -6.41314 P PPLA3 ES 55 SA 37280 110 726 Europe/Madrid 2012-03-04
-3110809 Sanchidrián Sanchidrian 40.89347 -4.58132 P PPLA3 ES 55 AV 05204 763 924 Europe/Madrid 2012-03-04
-3110813 Sant Celoni Sant Celoni San Celoni,Sant Celoni 41.68333 2.48333 P PPLA3 ES 56 B 08202 16860 156 Europe/Madrid 2012-03-04
-3110815 Sancedo Sancedo Sancedo 42.66666 -6.63456 P PPLA3 ES 55 LE 24143 0 675 Europe/Madrid 2012-03-04
-3110816 San Cebrián de Mudá San Cebrian de Muda San Cebrian de Muda,San Cebrián de Mudá 42.8926 -4.38719 P PPLA3 ES 55 P 34160 184 1042 Europe/Madrid 2012-03-04
-3110817 San Cebrián de Mazote San Cebrian de Mazote 41.68022 -5.14847 P PPLA3 ES 55 VA 47142 192 761 Europe/Madrid 2012-03-04
-3110818 San Cebrián de Castro San Cebrian de Castro San Cebrian de Castro,San Cebrián de Castro 41.70632 -5.75605 P PPLA3 ES 55 ZA 49186 326 688 Europe/Madrid 2012-03-04
-3110819 San Cebrián de Campos San Cebrian de Campos San Cebrian,San Cebrian de Campos,San Cebrián,San Cebrián de Campos 42.20063 -4.53127 P PPLA3 ES 55 P 34159 452 790 Europe/Madrid 2012-03-04
-3110821 Sant Carles de la Ràpita Sant Carles de la Rapita San-Karlos-de-la-Rapita,Sant Carles de la Rapita,Sant Carles de la Ràpita,Сан-Карлос-де-ла-Рапита 40.61667 0.6 P PPLA3 ES 56 T 43136 15511 1 Europe/Madrid 2012-03-04
-3110833 Sant Boi de Lluçanès Sant Boi de Llucanes San Baudilio de Llusanes,San Baudilio de Llusanés,San baudilio de Llusanes,San baudilio de Llusanés,Sant Boi de Llucanes,Sant Boi de Lluçanès 42.05 2.15 P PPLA3 ES 56 B 08201 0 754 Europe/Madrid 2012-03-04
-3110834 Sant Boi de Llobregat Sant Boi de Llobregat Sant Boi de Llobregat 41.34357 2.03659 P PPL ES 56 B 08200 82428 45 Europe/Madrid 2010-07-27
-3110842 San Bartolomé de Corneja San Bartolome de Corneja San Bartolome de Corneja,San Bartolomé de Corneja 40.49257 -5.38519 P PPLA3 ES 55 AV 05200 74 994 Europe/Madrid 2012-03-04
-3110843 San Bartolomé de Béjar San Bartolome de Bejar San Bartolome de Bejar,San Bartolomé de Béjar 40.40783 -5.66261 P PPLA3 ES 55 AV 05199 52 1122 Europe/Madrid 2012-03-04
-3110850 San Asensio San Asensio San Asensio 42.49676 -2.75057 P PPLA3 ES 27 LO 26129 1281 530 Europe/Madrid 2012-03-04
-3110870 San Antolín San Antolin Ibias,San Antolin,San Antolin de Ibias,San Antolín 43.0385 -6.87376 P PPL ES 34 O 33028 1925 335 Europe/Madrid 2012-01-19
-3110872 Sant Andreu Salou Sant Andreu Salou San Andres Salou,San Andrés Salou,Sant Andreu Salou 41.86667 2.83333 P PPLA3 ES 56 GI 17157 0 112 Europe/Madrid 2012-03-04
-3110879 San Andrés del Rey San Andres del Rey San Andres del Rey,San Andrés del Rey 40.63836 -2.8202 P PPLA3 ES 54 GU 19249 46 1022 Europe/Madrid 2012-03-04
-3110880 San Andrés del Rabanedo San Andres del Rabanedo San Andres de Rabanedo,San Andres del Rabanedo,San Andrés de Rabanedo,San Andrés del Rabanedo 42.61174 -5.61671 P PPL ES 55 LE 24089 30906 852 Europe/Madrid 2012-01-19
-3110881 Sant Andreu de Llavaneres Sant Andreu de Llavaneres 41.56667 2.48333 P PPL ES 56 B 08121 10181 107 Europe/Madrid 2010-04-22
-3110882 San Andrés del Congosto San Andres del Congosto San Andres del Congosto,San Andrés del Congosto 40.99775 -3.02423 P PPLA3 ES 54 GU 19248 79 878 Europe/Madrid 2012-03-04
-3110885 Sant Andreu de la Barca Sant Andreu de la Barca San Andres de la Barca,San Andrés de la Barca,Sant Andreu de la Barca 41.44659 1.97187 P PPL ES 56 B 08054 26401 61 Europe/Madrid 2010-04-22
-3110906 San Amaro San Amaro San Amaro 42.37385 -8.07347 P PPLA3 ES 58 OR 32074 1354 488 Europe/Madrid 2012-03-04
-3110909 San Agustín del Pozo San Agustin del Pozo San Agustin del Pozo,San Agustín del Pozo 41.88613 -5.59351 P PPLA3 ES 55 ZA 49185 206 696 Europe/Madrid 2012-03-04
-3110911 San Agustín de Guadalix San Agustin de Guadalix San Agustin,San Agustin del Guadalix,San Agustín,San Agustín del Guadalix 40.67882 -3.61639 P PPL ES 29 M 28045 11133 674 Europe/Madrid 2010-04-22
-3110915 San Agustín San Agustin San Agustin,San Agustín 40.05 -0.68333 P PPLA3 ES 52 TE 44206 119 973 Europe/Madrid 2011-07-31
-3110919 San Adrián del Valle San Adrian del Valle San Adrian del Valle,San Adrián del Valle 42.13033 -5.72905 P PPLA3 ES 55 LE 24141 129 734 Europe/Madrid 2012-03-04
-3110920 San Adrián de Juarros San Adrian de Juarros San Adrian de Juarros,San Adrián de Juarros 42.27427 -3.47551 P PPLA3 ES 55 BU 09335 52 1046 Europe/Madrid 2012-03-04
-3110921 Sant Adrià de Besòs Sant Adria de Besos Sant Adria,Sant Adria de Besos,Sant Adrià,Sant Adrià de Besòs 41.43073 2.21855 P PPL ES 56 B 08019 33761 17 Europe/Madrid 2010-04-22
-3110924 San Adrián San Adrian San Adrian,San Adrián 42.33433 -1.93509 P PPLA3 ES 32 NA 31215 6076 301 Europe/Madrid 2012-03-04
-3110925 Sant Iscle de Vallalta Sant Iscle de Vallalta San Acisclo de Vallalta,Sant Iscle de Vallalta 41.61667 2.56667 P PPLA3 ES 56 B 08193 0 247 Europe/Madrid 2012-03-04
-3110931 Samper del Salz Samper del Salz Samper del Sal,Samper del Salz 41.23458 -0.8251 P PPLA3 ES 52 Z 50233 126 539 Europe/Madrid 2012-03-04
-3110932 Samper de Calanda Samper de Calanda Samper de Calanda,Samper de Galanda 41.18933 -0.38883 P PPLA3 ES 52 TE 44205 985 258 Europe/Madrid 2012-03-04
-3110934 Santpedor Santpedor Sampedor,Sanpedor,Santpedor 41.78309 1.84673 P PPLA3 ES 56 B 08192 0 315 Europe/Madrid 2011-07-31
-3110938 Samos Samos 42.731 -7.32582 P PPLA3 ES 58 LU 27055 1860 532 Europe/Madrid 2012-03-04
-3110940 Samir de los Caños Samir de los Canos Samir de los Canos,Samir de los Caños 41.6728 -6.16415 P PPLA3 ES 55 ZA 49184 221 792 Europe/Madrid 2012-03-04
-3110949 Samboal Samboal Samboal 41.25758 -4.41726 P PPLA3 ES 55 SG 40176 547 795 Europe/Madrid 2012-03-04
-3110955 Samaniego Samaniego Samaniego 42.56854 -2.67974 P PPLA3 ES 59 VI 01052 321 572 Europe/Madrid 2012-03-04
-3110962 Sama Sama Langreo,Llangreu,Llangréu,Sama de Langreo,Same,Саме 43.29568 -5.68416 P PPL ES 34 O 33031 45565 220 Europe/Madrid 2010-04-22
-3110964 Salvatierra de Tormes Salvatierra de Tormes Salvatierra,Salvatierra de Tormes 40.59007 -5.59763 P PPLA3 ES 55 SA 37277 67 906 Europe/Madrid 2012-03-04
-3110966 Salvatierra de Esca Salvatierra de Esca Salvatierra,Salvatierra de Esca 42.67002 -1.00475 P PPLA3 ES 52 Z 50232 267 591 Europe/Madrid 2012-03-04
-3110967 Salvatierra Salvatierra Agurain,Salvatierra 42.85162 -2.39123 P PPL ES 59 VI 01053 4139 593 Europe/Madrid 2012-01-19
-3110969 Salvador de Zapardiel Salvador de Zapardiel Salvador de Zapardiel 41.11696 -4.87486 P PPLA3 ES 55 VA 47141 186 772 Europe/Madrid 2012-03-04
-3110972 Salvadiós Salvadios Salvadios,Salvadiós 40.87836 -5.09629 P PPLA3 ES 55 AV 05198 107 947 Europe/Madrid 2012-03-04
-3110974 Salvacañete Salvacanete Salvacanete,Salvacañete 40.1 -1.5 P PPLA3 ES 54 CU 16189 337 1179 Europe/Madrid 2012-03-04
-3110983 Salt Salt Salt 41.97489 2.79281 P PPLA3 ES 56 GI 17155 29985 86 Europe/Madrid 2012-03-04
-3110986 Salou Salou Salou,Салоу 41.07663 1.14163 P PPL ES 56 T 43171 26649 6 Europe/Madrid 2010-04-22
-3110989 Salomó Salomo Salomo,Salomó 41.22955 1.37445 P PPLA3 ES 56 T 43135 341 164 Europe/Madrid 2012-03-04
-3110992 Salobral Salobral Salobral 40.61179 -4.81013 P PPLA3 ES 55 AV 05197 118 1087 Europe/Madrid 2012-03-04
-3110994 Salmoral Salmoral Salmoral 40.80137 -5.2191 P PPLA3 ES 55 SA 37276 257 911 Europe/Madrid 2012-03-04
-3110998 Salmerón Salmeron Salmeron,Salmerón 40.54529 -2.49315 P PPLA3 ES 54 GU 19247 217 831 Europe/Madrid 2012-03-04
-3111001 Sallent de Gállego Sallent de Gallego Sallen de Galligo,Sallent,Sallent de Gallego,Sallén de Galligo 42.77127 -0.33448 P PPLA3 ES 52 HU 22204 1281 1289 Europe/Madrid 2012-03-04
-3111003 Sallent Sallent Sallent,Sallent de Llobregat 41.82602 1.8955 P PPLA3 ES 56 B 08191 7107 290 Europe/Madrid 2012-03-04
-3111008 Salinillas de Bureba Salinillas de Bureba Salinillas de Bureba 42.55243 -3.38753 P PPLA3 ES 55 BU 09334 51 879 Europe/Madrid 2012-03-04
-3111012 Salinas de Pisuerga Salinas de Pisuerga Salinas de Pisuerga 42.85046 -4.37783 P PPLA3 ES 55 P 34158 351 948 Europe/Madrid 2012-03-04
-3111014 Salinas de Oro Salinas de Oro 42.77487 -1.88999 P PPLA3 ES 32 NA 31214 112 683 Europe/Madrid 2012-03-04
-3111016 Salinas del Manzano Salinas del Manzano Salinas del Manzano 40.08333 -1.55 P PPLA3 ES 54 CU 16187 107 1186 Europe/Madrid 2012-03-04
-3111017 Leintz-Gatzaga Leintz-Gatzaga Gatzaga,Leintz-Gatzaga,Salinas de Leniz,Salinas de Léniz 42.98684 -2.56851 P PPLA3 ES 59 SS 20068 0 457 Europe/Madrid 2012-03-04
-3111030 Salillas de Jalón Salillas de Jalon Salillas de Jalon,Salillas de Jalón 41.56789 -1.32344 P PPLA3 ES 52 Z 50231 341 336 Europe/Madrid 2012-03-04
-3111031 Salillas Salillas Salillas 41.99498 -0.22278 P PPLA3 ES 52 HU 22203 113 428 Europe/Madrid 2012-03-04
-3111054 Salduero Salduero Salduero 41.88946 -2.7967 P PPLA3 ES 55 SO 42161 196 1100 Europe/Madrid 2012-03-04
-3111055 Saldón Saldon Saldon,Saldón 40.32513 -1.42782 P PPLA3 ES 52 TE 44204 34 1395 Europe/Madrid 2012-03-04
-3111057 Saldías Saldias Saldias,Saldías 43.08858 -1.77946 P PPLA3 ES 32 NA 31213 121 555 Europe/Madrid 2012-03-04
-3111060 Saldes Saldes 42.23333 1.73333 P PPLA3 ES 56 B 08190 0 1365 Europe/Madrid 2012-03-04
-3111061 Saldeana Saldeana Saldeana 41.02068 -6.64015 P PPLA3 ES 55 SA 37275 153 664 Europe/Madrid 2012-03-04
-3111063 Saldaña de Burgos Saldana de Burgos 42.25838 -3.69707 P PPLA3 ES 55 BU 09332 128 866 Europe/Madrid 2012-03-04
-3111065 Saldaña Saldana 42.52146 -4.73605 P PPLA3 ES 55 P 34157 2989 918 Europe/Madrid 2012-03-04
-3111076 Salcedillo Salcedillo Salcedillo 40.962 -1.00433 P PPLA3 ES 52 TE 44203 8 1194 Europe/Madrid 2012-03-04
-3111085 Salce Salce Salce 41.26996 -6.21875 P PPLA3 ES 55 ZA 49183 127 745 Europe/Madrid 2012-03-04
-3111092 Salas de los Infantes Salas de los Infantes 42.02242 -3.28631 P PPLA3 ES 55 BU 09330 2072 956 Europe/Madrid 2012-03-04
-3111094 Sales de Llierca Sales de Llierca Salas de Llierca,Sales de Llierca 42.23333 2.65 P PPLA3 ES 56 GI 17154 92 273 Europe/Madrid 2012-03-04
-3111096 Salas de Bureba Salas de Bureba Salas de Bureba 42.6919 -3.47359 P PPLA3 ES 55 BU 09329 140 631 Europe/Madrid 2012-03-04
-3111097 Salas Bajas Salas Bajas Salas Bajas 42.10046 0.08349 P PPLA3 ES 52 HU 22202 160 460 Europe/Madrid 2012-03-04
-3111098 Salas Altas Salas Altas Salas Altas 42.11407 0.06821 P PPLA3 ES 52 HU 22201 357 503 Europe/Madrid 2012-03-04
-3111101 Salas Salas Salas 43.4118 -6.26023 P PPLA3 ES 34 O 33059 6350 297 Europe/Madrid 2012-03-04
-3111108 Salamanca Salamanca Helmantica,Salamanca,Salamanka,Salamanko,Salamanque,Salmantica,saramanka,slmnqt,Саламанка,سلمنقة,サラマンカ 40.96667 -5.65 P PPLA2 ES 55 SA 37274 155619 816 Europe/Madrid 2010-08-23
-3111120 Sajazarra Sajazarra Sajazarra 42.58884 -2.96124 P PPLA3 ES 27 LO 26128 121 521 Europe/Madrid 2012-03-04
-3111131 Sahagún Sahagun Sahagun,Sahagún,Sant Fagund 42.37085 -5.02942 P PPLA3 ES 55 LE 24139 2846 828 Europe/Madrid 2012-03-04
-3111143 Sagàs Sagas Sagas,Sagàs,Sagás 42.05 1.96667 P PPLA3 ES 56 B 08188 135 727 Europe/Madrid 2012-03-04
-3111146 Saelices el Chico Saelices el Chico Saelices,Saelices el Chico 40.66998 -6.63271 P PPLA3 ES 55 SA 37272 153 658 Europe/Madrid 2012-03-04
-3111148 Saelices de Mayorga Saelices de Mayorga Saelices de Mayorga 42.21206 -5.20534 P PPLA3 ES 55 VA 47140 173 778 Europe/Madrid 2012-03-04
-3111151 Saelices de la Sal Saelices de la Sal Saelices de la Sal 40.90723 -2.32325 P PPLA3 ES 54 GU 19246 70 1001 Europe/Madrid 2012-03-04
-3111157 Sádaba Sadaba Sadaba,Sádaba 42.2818 -1.26951 P PPLA3 ES 52 Z 50230 1914 447 Europe/Madrid 2012-03-04
-3111158 Sada Sada Sada,Sada da Area,Santa Maria de Sada,Santa María de Sada 43.35619 -8.25796 P PPLA3 ES 58 C 15075 14487 44 Europe/Madrid 2012-03-04
-3111159 Sacramenia Sacramenia Sacramenia 41.49419 -3.9621 P PPLA3 ES 55 SG 40174 540 834 Europe/Madrid 2012-03-04
-3111164 Sacedón Sacedon Sacedon,Sacedón 40.48076 -2.73337 P PPLA3 ES 54 GU 19245 1674 747 Europe/Madrid 2012-03-04
-3111165 Saceda-Trasierra Saceda-Trasierra Saceda-Trasierra 40.15525 -2.85369 P PPLA3 ES 54 CU 16185 101 916 Europe/Madrid 2012-03-04
-3111169 Sacecorbo Sacecorbo Sacecorbo 40.8328 -2.41838 P PPLA3 ES 54 GU 19244 153 1120 Europe/Madrid 2012-03-04
-3111185 Sabiñánigo Sabinanigo Sabinanigo,Sabiñánigo,Samianigo 42.51924 -0.36607 P PPLA3 ES 52 HU 22199 10378 807 Europe/Madrid 2012-03-04
-3111187 Sabero Sabero Sabero 42.83593 -5.14875 P PPLA3 ES 55 LE 24137 1555 985 Europe/Madrid 2012-03-04
-3111199 Sabadell Sabadell Sabadell 41.54329 2.10942 P PPLA3 ES 56 B 08187 206493 187 Europe/Madrid 2012-03-04
-3111219 Rupià Rupia Rupia,Rupià,Rupiá 42.01667 3.01667 P PPLA3 ES 56 GI 17153 210 50 Europe/Madrid 2012-03-04
-3111240 Ruesga Ruesga Ruesga 42.86414 -4.52942 P PPL ES 55 P 34056 1120 1044 Europe/Madrid 2012-01-19
-3111241 Ruesca Ruesca Ruesca 41.2835 -1.48142 P PPLA3 ES 52 Z 50229 85 773 Europe/Madrid 2012-03-04
-3111243 Ruente Ruente Ruente 43.25826 -4.26791 P PPLA3 ES 39 S 39066 992 189 Europe/Madrid 2012-03-04
-3111246 Rueda de la Sierra Rueda de la Sierra Rueda de la Sierra 40.91795 -1.85439 P PPLA3 ES 54 GU 19243 55 1150 Europe/Madrid 2012-03-04
-3111251 Rueda Rueda Rueda 41.41232 -4.95884 P PPLA3 ES 55 VA 47139 1476 729 Europe/Madrid 2012-03-04
-3111261 Rucandio Rucandio Rucandio 42.7511 -3.54166 P PPLA3 ES 55 BU 09328 76 799 Europe/Madrid 2012-03-04
-3111264 Rublacedo de Abajo Rublacedo de Abajo Rublacedo de Abajo 42.55332 -3.50236 P PPLA3 ES 55 BU 09327 43 795 Europe/Madrid 2012-03-04
-3111274 Rubielos de Mora Rubielos de Mora Rubielos,Rubielos de Mora,Rubiols 40.18894 -0.65307 P PPLA3 ES 52 TE 44201 662 938 Europe/Madrid 2012-03-04
-3111275 Rubielos de la Cérida Rubielos de la Cerida Rubielos de la Cerida,Rubielos de la Cérida 40.77058 -1.21291 P PPLA3 ES 52 TE 44200 53 1230 Europe/Madrid 2012-03-04
-3111277 Rubí de Bracamonte Rubi de Bracamonte Rubi de Bracamonte,Rubí de Bracamonte 41.21421 -4.92491 P PPLA3 ES 55 VA 47138 304 753 Europe/Madrid 2012-03-04
-3111289 Rubiales Rubiales Rubiales 40.27624 -1.27166 P PPLA3 ES 52 TE 44199 64 1161 Europe/Madrid 2012-03-04
-3111294 Rubí Rubi Rubi,Rubí,Руби 41.49226 2.03305 P PPLA3 ES 56 B 08184 72987 145 Europe/Madrid 2012-03-04
-3111295 Rubena Rubena 42.38746 -3.57485 P PPLA3 ES 55 BU 09326 176 904 Europe/Madrid 2012-03-04
-3111305 Rozas de Puerto Real Rozas de Puerto Real Rozas de Puerto Real 40.31667 -4.48333 P PPLA3 ES 29 M 28128 0 870 Europe/Madrid 2011-07-31
-3111322 Royuela de Río Franco Royuela de Rio Franco Royuela de Rio Franco,Royuela de Río Franco 42.00217 -3.95547 P PPLA3 ES 55 BU 09325 279 831 Europe/Madrid 2012-03-04
-3111323 Royuela Royuela 40.37846 -1.51337 P PPLA3 ES 52 TE 44198 222 1207 Europe/Madrid 2012-03-04
-3111330 Roturas Roturas Roturas 41.66791 -4.11901 P PPLA3 ES 55 VA 47137 32 827 Europe/Madrid 2012-03-04
-3111344 Rosell Rosell Rosell,Rossell 40.61792 0.22133 P PPL ES 60 CS 12096 1304 466 Europe/Madrid 2012-01-19
-3111348 Roses Roses Rhode,Rosas,Roses,Росас 42.26199 3.17689 P PPLA3 ES 56 GI 17152 20197 11 Europe/Madrid 2012-03-04
-3111353 O Rosal O Rosal 41.93536 -8.83677 P PPL ES 58 PO 36023 6029 25 Europe/Madrid 2012-02-23
-3111361 Roperuelos del Páramo Roperuelos del Paramo Roperuelos del Paramo,Roperuelos del Páramo 42.2378 -5.78234 P PPLA3 ES 55 LE 24136 725 772 Europe/Madrid 2012-03-04
-3111390 Romanos Romanos Romanos 41.12636 -1.27502 P PPLA3 ES 52 Z 50227 114 948 Europe/Madrid 2012-03-04
-3111391 Romanones Romanones Romanones 40.57149 -2.99072 P PPLA3 ES 54 GU 19242 131 756 Europe/Madrid 2012-03-04
-3111393 Romanillos de Atienza Romanillos de Atienza Romanillos de Atienza 41.26667 -2.9 P PPLA3 ES 54 GU 19241 59 1117 Europe/Madrid 2011-07-31
-3111407 Rollán Rollan Rollan,Rollán 40.9623 -5.91752 P PPLA3 ES 55 SA 37271 538 799 Europe/Madrid 2012-03-04
-3111408 Rollamienta Rollamienta Rollamienta 41.92592 -2.53125 P PPLA3 ES 55 SO 42159 49 1141 Europe/Madrid 2012-03-04
-3111413 Rojas Rojas Rojas 42.57781 -3.44195 P PPLA3 ES 55 BU 09323 81 721 Europe/Madrid 2012-03-04
-3111420 Rois Rois Rois 42.76295 -8.70528 P PPLA3 ES 58 C 15074 0 87 Europe/Madrid 2012-03-04
-3111450 Rodezno Rodezno 42.52576 -2.84597 P PPLA3 ES 27 LO 26127 335 548 Europe/Madrid 2012-03-04
-3111454 Ródenas Rodenas Rodenas,Ródenas 40.64076 -1.51617 P PPLA3 ES 52 TE 44197 91 1370 Europe/Madrid 2012-03-04
-3111459 Rodeiro Rodeiro 42.65193 -7.95519 P PPLA3 ES 58 PO 36047 3376 656 Europe/Madrid 2012-03-04
-3111467 Roda de Eresma Roda de Eresma Roda de Eresma 41.02852 -4.1813 P PPLA3 ES 55 SG 40173 128 939 Europe/Madrid 2012-03-04
-3111468 Roda de Barà Roda de Bara Roda de Bara,Roda de Barà,Roda de Bera,Roda de Berà 41.18333 1.46667 P PPLA3 ES 56 T 43131 4464 41 Europe/Madrid 2012-03-04
-3111492 Robres del Castillo Robres del Castillo Robres del Castillo 42.27593 -2.29245 P PPLA3 ES 27 LO 26126 39 726 Europe/Madrid 2012-03-04
-3111493 Robres Robres Robre,Robres 41.86746 -0.46094 P PPLA3 ES 52 HU 22197 664 396 Europe/Madrid 2012-03-04
-3111494 Robregordo Robregordo Robregordo 41.10656 -3.59369 P PPLA3 ES 29 M 28126 0 1300 Europe/Madrid 2011-07-31
-3111501 Robliza de Cojos Robliza de Cojos Robliza de Cojos,Robliza de los Cojos 40.86766 -5.97786 P PPLA3 ES 55 SA 37270 221 818 Europe/Madrid 2012-03-04
-3111524 Robledo de Corpes Robledo de Corpes Robledo de Corpes 41.11838 -2.95 P PPLA3 ES 54 GU 19240 107 1148 Europe/Madrid 2012-03-04
-3111525 Robledo de Chavela Robledo de Chavela 40.50062 -4.23635 P PPLA3 ES 29 M 28125 3239 895 Europe/Madrid 2012-03-04
-3111548 Robledillo de Mohernando Robledillo de Mohernando Robledillo de Mohernando 40.85118 -3.23162 P PPLA3 ES 54 GU 19239 122 874 Europe/Madrid 2012-03-04
-3111549 Robledillo de la Vera Robledillo de la Vera Robledillo de la Vera 40.10093 -5.58896 P PPLA3 ES 57 CC 10157 314 455 Europe/Madrid 2012-03-04
-3111550 Robledillo de la Jara Robledillo de la Jara Robledillo de la Jara 40.95054 -3.52181 P PPLA3 ES 29 M 28124 102 1028 Europe/Madrid 2012-03-04
-3111551 Robledillo de Gata Robledillo de Gata 40.32234 -6.47129 P PPLA3 ES 57 CC 10156 150 575 Europe/Madrid 2012-03-04
-3111556 Robleda-Cervantes Robleda-Cervantes Robleda,Robleda-Cervantes 42.08246 -6.59414 P PPLA3 ES 55 ZA 49179 475 1019 Europe/Madrid 2012-03-04
-3111557 Robleda Robleda Robleda 40.38469 -6.60726 P PPLA3 ES 55 SA 37269 533 839 Europe/Madrid 2012-03-04
-3111559 Robladillo Robladillo Robladillo 41.60838 -4.90992 P PPLA3 ES 55 VA 47135 106 774 Europe/Madrid 2012-03-04
-3111565 Roales Roales Roales 41.5517 -5.77211 P PPLA3 ES 55 ZA 49178 0 700 Europe/Madrid 2012-03-04
-3111567 Roa Roa Roa 41.69699 -3.92782 P PPLA3 ES 55 BU 09321 2251 819 Europe/Madrid 2012-03-04
-3111569 Rivilla de Barajas Rivilla de Barajas Rivilla de Barajas 40.9021 -4.98836 P PPLA3 ES 55 AV 05196 0 900 Europe/Madrid 2012-03-04
-3111589 Riumors Riumors Riumors 42.22726 3.0419 P PPLA3 ES 56 GI 17151 154 5 Europe/Madrid 2012-03-04
-3111590 Riudoms Riudoms Riudors,Ruidoms,Ruidons 41.13333 1.05 P PPLA3 ES 56 T 43129 5679 117 Europe/Madrid 2012-03-04
-3111592 Riudellots de la Selva Riudellots de la Selva 41.89327 2.80452 P PPLA3 ES 56 GI 17150 1770 100 Europe/Madrid 2012-03-04
-3111596 Riudecols Riudecols Riudecols 41.169 0.97625 P PPLA3 ES 56 T 43128 1093 318 Europe/Madrid 2012-03-04
-3111598 Riudecanyes Riudecanyes Riudecanas,Riudecanyes,Riudecañas,Ruidecana,Ruidecaña,Ríudecañas 41.13333 0.96667 P PPLA3 ES 56 T 43127 0 204 Europe/Madrid 2012-03-04
-3111602 Riudarenes Riudarenes Riudarenas,Riudarenes 41.81667 2.71667 P PPLA3 ES 56 GI 17148 0 90 Europe/Madrid 2012-03-04
-3111605 Ripollet Ripollet Ripollet 41.49686 2.15739 P PPLA3 ES 56 B 08180 37088 79 Europe/Madrid 2012-03-04
-3111607 Ripoll Ripoll Ripoll,Rivipolli,Rivipullo 42.20064 2.19033 P PPL ES 56 GI 17096 11057 697 Europe/Madrid 2010-04-22
-3111612 Ríotorto Riotorto Riotorto,Ríotorto,San Pedro 43.35 -7.23333 P PPL ES 58 LU 27054 1693 163 Europe/Madrid 2012-01-19
-3111640 Riós Rios Rios,Riós 41.97457 -7.28234 P PPLA3 ES 58 OR 32071 2074 805 Europe/Madrid 2012-03-04
-3111665 Ríofrío de Aliste Riofrio de Aliste Riofrio,Riofrio de Aliste,Ríofrío de Aliste 41.81724 -6.17742 P PPL ES 55 ZA 49176 1008 795 Europe/Madrid 2012-01-19
-3111677 Riodeva Riodeva Riodeva 40.11667 -1.15 P PPLA3 ES 52 TE 44196 193 953 Europe/Madrid 2012-03-04
-3111690 Riocavado de la Sierra Riocavado de la Sierra Riocabado de la Sierra,Riocavado de la Sierra 42.15209 -3.19759 P PPLA3 ES 55 BU 09318 72 1138 Europe/Madrid 2012-03-04
-3111704 Río Aller Rio Aller Rio Aller,Río Aller 43.05372 -5.55019 P PPL ES 34 O 33002 12766 834 Europe/Madrid 2012-01-19
-3111717 Rincón de Soto Rincon de Soto 42.23475 -1.85214 P PPLA3 ES 27 LO 26125 3544 291 Europe/Madrid 2012-03-04
-3111724 Rillo de Gallo Rillo de Gallo Rillo de Gallo 40.86635 -1.9374 P PPLA3 ES 54 GU 19237 73 1057 Europe/Madrid 2012-03-04
-3111725 Rillo Rillo Rillo 40.72233 -0.99622 P PPLA3 ES 52 TE 44195 121 1273 Europe/Madrid 2012-03-04
-3111733 Errigoiti Errigoiti Errigoiti,Rigoitia 43.31667 -2.71667 P PPLA3 ES 59 BI 48079 0 280 Europe/Madrid 2012-03-04
-3111748 Riells i Viabrea Riells i Viabrea Riells,Riells i Viabrea 41.78333 2.51667 P PPLA3 ES 56 GI 17146 0 573 Europe/Madrid 2012-03-04
-3111756 Riego de la Vega Riego de la Vega Riego de la Vega 42.39138 -5.98102 P PPLA3 ES 55 LE 24131 993 807 Europe/Madrid 2012-03-04
-3111769 Ricla Ricla Ricla 41.5058 -1.40468 P PPLA3 ES 52 Z 50225 2623 392 Europe/Madrid 2012-03-04
-3111775 Ribota Ribota Ribota 41.36477 -3.42964 P PPLA3 ES 55 SG 40171 50 1032 Europe/Madrid 2012-03-04
-3111781 Ribesalbes Ribesalbes Ribesalbes 40.01667 -0.26667 P PPLA3 ES 60 CS 12095 1316 199 Europe/Madrid 2012-03-04
-3111782 Riberos de la Cueza Riberos de la Cueza Riberos de la Cueza 42.27881 -4.72503 P PPLA3 ES 55 P 34156 88 828 Europe/Madrid 2012-03-04
-3111807 Ribeira Ribeira Ribeira 42.7461 -8.44392 P PPL ES 58 C 15089 27518 64 Europe/Madrid 2012-01-19
-3111809 Ribatejada Ribatejada Ribatejada 40.6642 -3.38976 P PPLA3 ES 29 M 28122 437 744 Europe/Madrid 2011-07-31
-3111822 Luintra Luintra San Estebo 42.40964 -7.72682 P PPL ES 58 OR 32052 1283 637 Europe/Madrid 2007-02-10
-3111825 Ribes de Freser Ribes de Freser Ribes de Freser 42.30417 2.16757 P PPLA3 ES 56 GI 17145 2033 1077 913 Europe/Madrid 2012-03-04
-3111826 Ribas de Campos Ribas de Campos Ribas,Ribas de Campos 42.15249 -4.51649 P PPLA3 ES 55 P 34155 177 776 Europe/Madrid 2012-03-04
-3111845 Ribaforada Ribaforada Ribaforada 41.99814 -1.51272 P PPLA3 ES 32 NA 31208 3412 262 Europe/Madrid 2012-03-04
-3111847 Ribadumia Ribadumia Ribadumia,Santa Eulalia 42.51667 -8.75 P PPL ES 58 PO 36028 4302 45 Europe/Madrid 2012-01-19
-3111855 Ribadesella Ribadesella Ribadesella,Ribesella 43.46145 -5.05955 P PPLA3 ES 34 O 33056 6245 20 Europe/Madrid 2012-03-04
-3111857 Riba de Saelices Riba de Saelices Riba de Saelices 40.91145 -2.29715 P PPLA3 ES 54 GU 19235 177 984 Europe/Madrid 2012-03-04
-3111859 Ribadeo Ribadeo 43.53704 -7.04095 P PPLA3 ES 58 LU 27051 9343 45 Europe/Madrid 2012-03-04
-3111863 Ribadavia Ribadavia 42.28804 -8.14362 P PPLA3 ES 58 OR 32069 5495 96 Europe/Madrid 2012-03-04
-3111867 Riaza Riaza Riaza,Riofrio de Riaza 41.27826 -3.47787 P PPLA3 ES 55 SG 40170 2054 1199 Europe/Madrid 2012-03-04
-3111878 Riaño Riano Riano,Riaño 42.97705 -5.00352 P PPLA3 ES 55 LE 24130 531 1126 Europe/Madrid 2012-03-04
-3111879 Rianxo Rianxo Rianxo 42.64976 -8.81763 P PPLA3 ES 58 C 15072 11769 23 Europe/Madrid 2012-03-04
-3111891 Riaguas de San Bartolomé Riaguas de San Bartolome Riaguas de San Bartolome,Riaguas de San Bartolomé 41.4264 -3.48893 P PPLA3 ES 55 SG 40168 78 934 Europe/Madrid 2012-03-04
-3111895 Reznos Reznos Reznos 41.5909 -2.0278 P PPLA3 ES 55 SO 42156 42 1048 Europe/Madrid 2012-03-04
-3111897 Rezmondo Rezmondo Rezmondo 42.51565 -4.23877 P PPLA3 ES 55 BU 09317 24 829 Europe/Madrid 2012-03-04
-3111900 Reyero Reyero Reyero 42.94882 -5.19892 P PPLA3 ES 55 LE 24129 141 1152 Europe/Madrid 2012-03-04
-3111909 Revillarruz Revillarruz Revillarruz 42.23006 -3.65246 P PPLA3 ES 55 BU 09315 180 883 Europe/Madrid 2012-03-04
-3111915 Revilla del Campo Revilla del Campo Revilla del Campo 42.21081 -3.54289 P PPLA3 ES 55 BU 09314 149 942 Europe/Madrid 2012-03-04
-3111916 Revilla de Collazos Revilla de Collazos Revilla de Collazos 42.6296 -4.50343 P PPLA3 ES 55 P 34154 77 933 Europe/Madrid 2012-03-04
-3111926 Revenga de Campos Revenga de Campos Revenga de Campos 42.28401 -4.48218 P PPLA3 ES 55 P 34152 179 787 Europe/Madrid 2012-03-04
-3111929 Revellinos Revellinos Revellinos 41.88982 -5.56871 P PPLA3 ES 55 ZA 49175 301 697 Europe/Madrid 2012-03-04
-3111933 Reus Reus Reus,Реус 41.15612 1.10687 P PPLA3 ES 56 T 43123 107118 133 Europe/Madrid 2012-03-04
-3111940 Retuerta Retuerta Retuerta 42.02944 -3.50679 P PPLA3 ES 55 BU 09311 61 905 Europe/Madrid 2012-03-04
-3111944 Retortillo de Soria Retortillo de Soria Retortillo,Retortillo de Soria 41.31092 -2.98228 P PPLA3 ES 55 SO 42155 246 1234 Europe/Madrid 2012-03-04
-3111948 Retortillo Retortillo Retortillo 40.80132 -6.35951 P PPLA3 ES 55 SA 37267 265 736 Europe/Madrid 2012-03-04
-3111954 Retiendas Retiendas Retiendas 40.96835 -3.27229 P PPLA3 ES 54 GU 19234 47 917 Europe/Madrid 2012-03-04
-3111957 Retascón Retascon 41.1435 -1.38376 P PPLA3 ES 52 Z 50224 104 881 Europe/Madrid 2012-03-04
-3111966 Respenda de la Peña Respenda de la Pena Respenda de la Pena,Respenda de la Peña 42.76512 -4.6854 P PPLA3 ES 55 P 34151 219 1017 Europe/Madrid 2012-03-04
-3111976 Requena de Campos Requena de Campos Requena de Campos 42.30796 -4.34304 P PPLA3 ES 55 P 34149 39 798 Europe/Madrid 2012-03-04
-3111990 Requejo Requejo Requejo 42.03044 -6.74227 P PPLA3 ES 55 ZA 49174 0 993 Europe/Madrid 2012-03-04
-3112008 Reocín Reocin Reocin,Reocín 43.33915 -4.09403 P PPLA3 ES 39 S 39060 7230 105 Europe/Madrid 2012-03-04
-3112011 Errenteria Errenteria Errenteria,Orereta,Renteria,Rentería 43.31195 -1.90234 P PPL ES 59 SS 20069 38767 9 Europe/Madrid 2010-04-22
-3112013 Renieblas Renieblas Renieblas 41.82009 -2.37236 P PPLA3 ES 55 SO 42154 121 1039 Europe/Madrid 2012-03-04
-3112014 Renera Renera Renera 40.48976 -3.01367 P PPLA3 ES 54 GU 19233 65 766 Europe/Madrid 2012-03-04
-3112020 Renedo de la Vega Renedo de la Vega Renedo de la Vega 42.45348 -4.70298 P PPLA3 ES 55 P 34147 256 875 Europe/Madrid 2012-03-04
-3112033 Renau Renau Renau 41.22448 1.31083 P PPLA3 ES 56 T 43122 103 169 Europe/Madrid 2012-03-04
-3112039 Remondo Remondo Remondo 41.341 -4.4839 P PPLA3 ES 55 SG 40166 329 756 Europe/Madrid 2012-03-04
-3112042 Remolinos Remolinos Remolinos 41.83946 -1.17768 P PPLA3 ES 52 Z 50223 1188 230 Europe/Madrid 2012-03-04
-3112056 Rello Rello Rello 41.33297 -2.74925 P PPLA3 ES 55 SO 42153 32 1076 Europe/Madrid 2012-03-04
-3112072 Reinoso de Cerrato Reinoso de Cerrato Reinoso de Cerrato 41.97624 -4.38337 P PPLA3 ES 55 P 34146 63 741 Europe/Madrid 2012-03-04
-3112073 Reinoso Reinoso Reinoso 42.50915 -3.38466 P PPLA3 ES 55 BU 09310 21 893 Europe/Madrid 2012-03-04
-3112075 Reinosa Reinosa Reinosa 42.99958 -4.13801 P PPLA3 ES 39 S 39059 10307 852 Europe/Madrid 2012-03-04
-3112088 Regumiel de la Sierra Regumiel de la Sierra Regumiel de la Sierra 41.95623 -2.98843 P PPLA3 ES 55 BU 09309 466 1124 Europe/Madrid 2012-03-04
-3112096 Regueras de Arriba Regueras de Arriba 42.29414 -5.85958 P PPLA3 ES 55 LE 24127 358 769 Europe/Madrid 2012-03-04
-3112124 Errezil Errezil Errezil,Regil,Régil 43.16505 -2.17395 P PPLA3 ES 59 SS 20066 0 306 Europe/Madrid 2012-03-04
-3112125 Regencós Regencos Regencos,Regencós 41.95271 3.17006 P PPLA3 ES 56 GI 17144 316 77 Europe/Madrid 2012-03-04
-3112146 Redueña Reduena Reduena,Redueña 40.81685 -3.59837 P PPLA3 ES 29 M 28121 227 796 Europe/Madrid 2012-03-04
-3112154 Redondela Redondela Redondela,Редондела 42.28337 -8.6096 P PPL ES 58 PO 36045 30001 6 Europe/Madrid 2012-01-19
-3112167 Redecilla del Campo Redecilla del Campo Redecilla del Campo 42.46675 -3.11531 P PPLA3 ES 55 BU 09308 79 745 Europe/Madrid 2012-03-04
-3112168 Redecilla del Camino Redecilla del Camino Redecilla del Camino 42.43804 -3.06547 P PPLA3 ES 55 BU 09307 143 743 Europe/Madrid 2012-03-04
-3112171 Recuerda Recuerda Recuerda 41.47408 -2.9946 P PPLA3 ES 55 SO 42152 114 901 Europe/Madrid 2012-03-04
-3112188 Recas Recas Recas 40.05286 -3.9909 P PPLA3 ES 54 TO 45145 2877 571 Europe/Madrid 2012-03-04
-3112214 Rebollosa de Jadraque Rebollosa de Jadraque Rebollosa de Jadraque 41.0904 -2.84201 P PPLA3 ES 54 GU 19231 32 1031 Europe/Madrid 2012-03-04
-3112220 Rebollo Rebollo Rebollo 41.19318 -3.85771 P PPLA3 ES 55 SG 40165 130 986 Europe/Madrid 2012-03-04
-3112222 Rebolledo de la Torre Rebolledo de la Torre Rebolledo de la Torre 42.68931 -4.22693 P PPLA3 ES 55 BU 09306 168 956 Europe/Madrid 2012-03-04
-3112264 Rasueros Rasueros Rasueros 41.02344 -5.07377 P PPLA3 ES 55 AV 05193 287 833 Europe/Madrid 2012-03-04
-3112265 Rasquera Rasquera Rasquera 41.00266 0.59967 P PPLA3 ES 56 T 43121 868 176 Europe/Madrid 2012-03-04
-3112268 Rasines Rasines Rasines 43.30505 -3.4292 P PPLA3 ES 39 S 39058 942 91 Europe/Madrid 2012-03-04
-3112276 Rascafría Rascafria Rascafria,Rascafría 40.90407 -3.87898 P PPLA3 ES 29 M 28120 1588 1158 Europe/Madrid 2012-03-04
-3112282 Rapariegos Rapariegos Rapariegos 41.09498 -4.6527 P PPLA3 ES 55 SG 40164 245 858 Europe/Madrid 2012-03-04
-3112310 Ramiro Ramiro Ramiro 41.22845 -4.78608 P PPLA3 ES 55 VA 47132 71 761 Europe/Madrid 2012-03-04
-3112325 Ramales de la Victoria Ramales de la Victoria Ramales,Ramales de la Victoria 43.2572 -3.46516 P PPLA3 ES 39 S 39057 2294 88 Europe/Madrid 2012-03-04
-3112336 Rajadell Rajadell Rajadell 41.72802 1.70621 P PPLA3 ES 56 B 08178 499 358 Europe/Madrid 2012-03-04
-3112338 Rairiz de Veiga Rairiz de Veiga Rairiz de Veiga 42.08364 -7.83503 P PPLA3 ES 58 OR 32067 1798 621 Europe/Madrid 2012-03-04
-3112342 Rágama Ragama Ragama,Rágama 40.99768 -5.12724 P PPLA3 ES 55 SA 37265 268 847 Europe/Madrid 2012-03-04
-3112344 Ráfales Rafales Rafales,Rafels,Ráfales,Ráfels 40.8377 0.01923 P PPLA3 ES 52 TE 44194 175 634 Europe/Madrid 2012-03-04
-3112355 Rabós Rabos Rabos,Rabós 42.3789 3.02828 P PPLA3 ES 56 GI 17143 176 110 Europe/Madrid 2012-03-04
-3112363 Rabé de las Calzadas Rabe de las Calzadas Rabe de las Calzadas,Rabé de las Calzadas 42.34065 -3.83414 P PPLA3 ES 55 BU 09304 146 830 Europe/Madrid 2012-03-04
-3112366 Rábanos Rabanos Rabanos,Rábanos 42.31971 -3.27029 P PPLA3 ES 55 BU 09303 154 1171 Europe/Madrid 2012-03-04
-3112368 Rábano de Aliste Rabano de Aliste Rabano de Aliste,Rábano de Aliste 41.7443 -6.43302 P PPLA3 ES 55 ZA 49173 444 798 Europe/Madrid 2012-03-04
-3112369 Rábano Rabano Rabano,Rábano 41.53314 -4.06214 P PPLA3 ES 55 VA 47131 249 779 Europe/Madrid 2012-03-04
-3112372 Rabanera del Pinar Rabanera del Pinar Rabanera del Pinar 41.89375 -3.19665 P PPLA3 ES 55 BU 09302 144 1091 Europe/Madrid 2012-03-04
-3112374 Rabanera Rabanera Rabanera 42.18955 -2.48654 P PPLA3 ES 27 LO 26121 38 974 Europe/Madrid 2012-03-04
-3112376 Rabanales Rabanales Rabanales 41.74287 -6.27674 P PPLA3 ES 55 ZA 49172 753 835 Europe/Madrid 2012-03-04
-3112388 Rábade Rabade Rabade,Rábade,Santa Marina 43.117 -7.61714 P PPLA3 ES 58 LU 27056 1635 398 Europe/Madrid 2012-03-04
-3112391 Quismondo Quismondo Quismondo 40.10533 -4.32394 P PPLA3 ES 54 TO 45143 1525 549 Europe/Madrid 2012-03-04
-3112393 Quiruelas de Vidriales Quiruelas de Vidriales Quiruelas de Vidriales 42.01762 -5.82947 P PPLA3 ES 55 ZA 49171 926 716 Europe/Madrid 2012-03-04
-3112395 Quiroga Quiroga Quiroga 42.47678 -7.27463 P PPLA3 ES 58 LU 27050 4122 286 Europe/Madrid 2012-03-04
-3112403 Quinto Quinto Quinto 41.42378 -0.49592 P PPLA3 ES 52 Z 50222 2020 158 Europe/Madrid 2012-03-04
-3112407 Quintela de Leirado Quintela de Leirado 42.13967 -8.10126 P PPLA3 ES 58 OR 32066 812 376 Europe/Madrid 2012-03-04
-3112441 Quintanilla de Urz Quintanilla de Urz Quintanilla de Urz 42.0329 -5.84866 P PPLA3 ES 55 ZA 49170 139 715 Europe/Madrid 2012-03-04
-3112443 Quintanilla de Trigueros Quintanilla de Trigueros Quintanilla,Quintanilla de Trigueros 41.85449 -4.65931 P PPLA3 ES 55 VA 47130 120 793 Europe/Madrid 2012-03-04
-3112453 Quintanilla de Onsoña Quintanilla de Onsona Quintanilla de Onsona,Quintanilla de Onsoña 42.46937 -4.66385 P PPLA3 ES 55 P 34143 220 888 Europe/Madrid 2012-03-04
-3112454 Quintanilla de Onésimo Quintanilla de Onesimo Quintanilla de Abajo,Quintanilla de Onesimo,Quintanilla de Onésimo 41.6249 -4.36291 P PPLA3 ES 55 VA 47129 1147 730 Europe/Madrid 2012-03-04
-3112461 Quintanilla del Olmo Quintanilla del Olmo Quintanilla del Olmo 41.90561 -5.40726 P PPLA3 ES 55 ZA 49169 47 696 Europe/Madrid 2012-03-04
-3112465 Quintanilla del Monte Quintanilla del Monte Quintanilla,Quintanilla del Monte 41.86812 -5.34928 P PPLA3 ES 55 ZA 49168 129 696 Europe/Madrid 2012-03-04
-3112466 Quintanilla del Molar Quintanilla del Molar Quintanilla del Molar 41.98935 -5.44928 P PPLA3 ES 55 VA 47128 86 747 Europe/Madrid 2012-03-04
-3112467 Quintanilla del Coco Quintanilla del Coco Quintanilla del Coco 41.98333 -3.51667 P PPLA3 ES 55 BU 09295 104 960 Europe/Madrid 2012-03-04
-3112472 Quintanilla de la Mata Quintanilla de la Mata Quintanilla de la Mata 41.98855 -3.76756 P PPLA3 ES 55 BU 09294 153 877 Europe/Madrid 2012-03-04
-3112478 Quintanilla de Arriba Quintanilla de Arriba Quintanilla de Arriba 41.61974 -4.21774 P PPLA3 ES 55 VA 47127 230 742 Europe/Madrid 2012-03-04
-3112492 Quintana y Congosto Quintana y Congosto Quintana y Congosto 42.25585 -6.03636 P PPLA3 ES 55 LE 24125 673 816 Europe/Madrid 2012-03-04
-3112493 Quintanavides Quintanavides Quintanavides 42.48084 -3.42449 P PPLA3 ES 55 BU 09292 165 816 Europe/Madrid 2012-03-04
-3112502 Quintanas de Gormaz Quintanas de Gormaz Quintanas de Gormaz 41.50926 -2.97631 P PPLA3 ES 55 SO 42145 196 942 Europe/Madrid 2012-03-04
-3112507 Quintana Redonda Quintana Redonda Quintana Redonda 41.63905 -2.61449 P PPLA3 ES 55 SO 42144 559 1024 Europe/Madrid 2012-03-04
-3112509 Quintanar de la Sierra Quintanar de la Sierra Quintanar de la Sierra 41.98288 -3.03765 P PPLA3 ES 55 BU 09289 1831 1127 Europe/Madrid 2012-03-04
-3112512 Quintanapalla Quintanapalla 42.40914 -3.53296 P PPLA3 ES 55 BU 09288 116 924 Europe/Madrid 2012-03-04
-3112513 Quintanaortuño Quintanaortuno Quintanaortuno,Quintanaortuño 42.45 -3.68333 P PPLA3 ES 55 BU 09287 158 866 Europe/Madrid 2012-03-04
-3112528 Quintanaélez Quintanaelez Quintanaelez,Quintanaélez 42.66921 -3.29877 P PPLA3 ES 55 BU 09283 81 709 Europe/Madrid 2012-03-04
-3112536 Quintana del Puente Quintana del Puente Quintana del Puente 42.08471 -4.20649 P PPLA3 ES 55 P 34141 243 753 Europe/Madrid 2012-03-04
-3112537 Quintana del Pidio Quintana del Pidio Quintana del Pidio 41.75886 -3.75121 P PPLA3 ES 55 BU 09281 181 845 Europe/Madrid 2012-03-04
-3112540 Quintana del Marco Quintana del Marco Quintana del Marco 42.2067 -5.8503 P PPLA3 ES 55 LE 24124 503 748 Europe/Madrid 2012-03-04
-3112541 Quintana del Castillo Quintana del Castillo Quintana del Castillo 42.65987 -6.04978 P PPLA3 ES 55 LE 24123 1018 1020 Europe/Madrid 2012-03-04
-3112545 Quintanabureba Quintanabureba Quintanabureba 42.58665 -3.36684 P PPLA3 ES 55 BU 09280 37 686 Europe/Madrid 2012-03-04
-3112573 Quijorna Quijorna Quijorna 40.42763 -4.05683 P PPLA3 ES 29 M 28119 2127 572 Europe/Madrid 2012-03-04
-3112577 Quicena Quicena 42.14797 -0.36049 P PPLA3 ES 52 HU 22195 271 477 Europe/Madrid 2012-03-04
-3112582 Querol Querol Querol 41.42293 1.39684 P PPLA3 ES 56 T 43120 43120 327 537 Europe/Madrid 2012-03-04
-3112586 Quer Quer Quer 40.60532 -3.2753 P PPLA3 ES 54 GU 19230 1008 692 Europe/Madrid 2012-03-04
-3112592 Quemada Quemada 41.70073 -3.57476 P PPLA3 ES 55 BU 09279 257 850 Europe/Madrid 2012-03-04
-3112593 Quel Quel Quel 42.22979 -2.05196 P PPLA3 ES 27 LO 26120 2018 483 Europe/Madrid 2012-03-04
-3112615 Quart d’Onyar Quart d'Onyar Quart,Quart d'Onyar,Quart d’Onyar 41.94047 2.84079 P PPL ES 56 GI 17142 2650 96 Europe/Madrid 2012-01-19
-3112622 Purujosa Purujosa Purujosa 41.68259 -1.76519 P PPLA3 ES 52 Z 50221 60 964 Europe/Madrid 2012-03-04
-3112631 Puras Puras Puras 41.18333 -4.65 P PPLA3 ES 55 VA 47126 62 803 Europe/Madrid 2012-03-04
-3112638 Punxín Punxin Las Pungin,Santa Maria,Santa María 42.37072 -8.01058 P PPLA3 ES ES 58 OR 32065 0 307 Europe/Madrid 2012-03-04
-3112661 Pujalt Pujalt Pujalt 41.7171 1.42088 P PPLA3 ES 56 B 08176 197 760 Europe/Madrid 2012-03-04
-3112670 Puig-reig Puig-reig Puig-reig,Puigreig 41.96667 1.88333 P PPLA3 ES 56 B 08175 0 423 Europe/Madrid 2012-03-04
-3112671 Puigpelat Puigpelat Puigpelat 41.27899 1.29713 P PPLA3 ES 56 T 43119 765 258 Europe/Madrid 2012-03-04
-3112680 Puigcerdà Puigcerda Puigcerda,Puigcerdà 42.4316 1.92819 P PPLA3 ES 56 GI 17141 17141 8845 1521 1212 Europe/Madrid 2012-03-04
-3112684 Pueyo de Santa Cruz Pueyo de Santa Cruz Puidemoros 41.85799 0.1566 P PPLA3 ES 52 HU 22193 326 249 Europe/Madrid 2012-03-04
-3112687 Pueyo Pueyo Pueyo 42.56506 -1.64826 P PPLA3 ES 32 NA 31207 321 533 Europe/Madrid 2012-03-04
-3112689 Puerto Seguro Puerto Seguro Puerto Seguro 40.82718 -6.76109 P PPLA3 ES 55 SA 37264 99 637 Europe/Madrid 2012-03-04
-3112691 Puertomingalvo Puertomingalvo Puertomingalvo 40.2643 -0.45756 P PPLA3 ES 52 TE 44193 197 1429 Europe/Madrid 2012-03-04
-3112692 Portomarín Portomarin Portomarin,Portomarín,Puertomarin,Puertomarín,San Pedro 42.8062 -7.61644 P PPLA3 ES ES 58 LU 27049 0 367 Europe/Madrid 2012-03-04
-3112694 Puértolas Puertolas 42.54748 0.13214 P PPLA3 ES 52 HU 22189 226 1157 Europe/Madrid 2012-03-04
-3112702 Puerto de Béjar Puerto de Bejar Puerto de Bejar,Puerto de Béjar 40.35052 -5.83756 P PPLA3 ES 55 SA 37263 424 952 Europe/Madrid 2012-03-04
-3112703 Puerto Castilla Puerto Castilla Puerto Castilla 40.288 -5.62366 P PPLA3 ES 55 AV 05192 145 1179 Europe/Madrid 2012-03-04
-3112712 Puertas Puertas Puertas 41.09681 -6.28752 P PPLA3 ES 55 SA 37262 83 786 Europe/Madrid 2012-03-04
-3112717 Puente Viesgo Puente Viesgo Puente Viesgo 43.29815 -3.96817 P PPLA3 ES 39 S 39056 2558 83 Europe/Madrid 2012-03-04
-3112721 Puentes de García Rodríguez Puentes de Garcia Rodriguez As Pontes De Garcia Rodriguez,As Pontes De García Rodríguez,Puentes de Garcia Rodriguez,Puentes de García Rodríguez 43.45266 -7.85178 P PPL ES 58 C 15070 11431 361 Europe/Madrid 2012-01-19
-3112732 Puente la Reina Puente la Reina Puente de la Reina 42.67291 -1.81412 P PPL ES 32 NA 31206 2577 352 Europe/Madrid 2007-11-20
-3112734 Puentedura Puentedura Puentedura 42.04134 -3.58227 P PPLA3 ES 55 BU 09277 116 865 Europe/Madrid 2012-03-04
-3112745 Puente del Congosto Puente del Congosto Puente del Congosto 40.49041 -5.52628 P PPLA3 ES 55 SA 37261 270 942 Europe/Madrid 2012-03-04
-3112750 Puente de Domingo Flórez Puente de Domingo Florez Puente de Domingo Florez,Puente de Domingo Flórez 42.41166 -6.82077 P PPLA3 ES 55 LE 24122 1829 369 Europe/Madrid 2012-03-04
-3112758 Ponte Caldelas Ponte Caldelas 42.38911 -8.50235 P PPLA3 ES 58 PO 36043 0 291 Europe/Madrid 2012-03-04
-3112761 Ponteareas Ponteareas 42.18333 -8.5 P PPL ES 58 PO 36042 23172 89 Europe/Madrid 2010-04-22
-3112774 Pueblica de Valverde Pueblica de Valverde Pueblica de Valverde 41.91843 -5.89974 P PPLA3 ES 55 ZA 49167 267 730 Europe/Madrid 2012-03-04
-3112777 Puebla de Yeltes Puebla de Yeltes Puebla de Yeltes 40.62528 -6.1815 P PPLA3 ES 55 SA 37260 217 878 Europe/Madrid 2012-03-04
-3112781 Puebla de San Miguel Puebla de San Miguel La Pobla de Sant Miquel,Puebla de San Miguel 40.05 -1.13333 P PPLA3 ES 60 V 46201 68 1211 Europe/Madrid 2011-07-31
-3112782 Puebla de San Medel Puebla de San Medel Puebla de San Medel 40.51073 -5.73673 P PPLA3 ES 55 SA 37259 53 962 Europe/Madrid 2012-03-04
-3112784 Puebla de Sanabria Puebla de Sanabria Puebla de Sanabria 42.05401 -6.6335 P PPLA3 ES 55 ZA 49166 1615 897 Europe/Madrid 2012-03-06
-3112785 Puebla de Pedraza Puebla de Pedraza Puebla de Pedraza 41.20557 -3.91378 P PPLA3 ES 55 SG 40163 90 947 Europe/Madrid 2012-03-04
-3112786 Puebla de Lillo Puebla de Lillo Lillo 43.00691 -5.27387 P PPLA3 ES 55 LE 24121 673 1136 Europe/Madrid 2012-03-04
-3112788 Poboa do Brollón Poboa do Brollon Puebla de Brollon,Puebla de Brollón 42.55612 -7.3914 P PPL ES 58 LU 27047 2372 387 Europe/Madrid 2007-02-06
-3112792 Puebla de Beleña Puebla de Belena Puebla de Belena,Puebla de Beleña 40.88794 -3.21624 P PPLA3 ES 54 GU 19228 55 910 Europe/Madrid 2012-03-04
-3112793 Puebla de Azaba Puebla de Azaba Puebla de Azaba 40.44732 -6.74616 P PPLA3 ES 55 SA 37258 253 672 Europe/Madrid 2012-03-04
-3112794 Puebla de Arenoso Puebla de Arenoso La Pobla d'Arenos,Puebla de Arenoso 40.1 -0.58333 P PPLA3 ES 60 CS 12092 155 740 Europe/Madrid 2012-03-04
-3112795 Puebla de Alfindén Puebla de Alfinden 41.63188 -0.75154 P PPL ES 52 Z 50297 3552 201 Europe/Madrid 2011-09-11
-3112796 Puebla de Albortón Puebla de Alborton Puebla de Alborton,Puebla de Albortón 41.38516 -0.85558 P PPLA3 ES 52 Z 50218 150 482 Europe/Madrid 2012-03-04
-3112819 Proaza Proaza Proaza 43.25178 -6.01633 P PPLA3 ES 34 O 33052 789 214 Europe/Madrid 2012-03-04
-3112822 Prioro Prioro Prioro 42.89481 -4.96349 P PPLA3 ES 55 LE 24120 433 1109 Europe/Madrid 2012-03-04
-3112841 Priego Priego Priego 40.44936 -2.31435 P PPLA3 ES 54 CU 16170 1055 863 Europe/Madrid 2012-03-04
-3112843 Priaranza del Bierzo Priaranza del Bierzo Priaranza del Bierzo 42.50978 -6.67017 P PPLA3 ES 55 LE 24119 844 511 Europe/Madrid 2012-03-04
-3112856 Presencio Presencio 42.18656 -3.90135 P PPLA3 ES 55 BU 09275 224 814 Europe/Madrid 2012-03-04
-3112866 Premià de Mar Premia de Mar Premia de Mar,Premija-de-Mar,Premià de Mar,Премия-де-Мар 41.49206 2.36524 P PPLA3 ES 56 B 08172 27399 6 Europe/Madrid 2012-03-04
-3112869 Préjano Prejano Prejano,Préjano 42.18648 -2.17998 P PPLA3 ES 27 LO 26119 191 710 Europe/Madrid 2012-03-04
-3112875 Pravia Pravia 43.48861 -6.1117 P PPLA3 ES 34 O 33051 0 48 Europe/Madrid 2012-03-04
-3112878 Prats de Lluçanès Prats de Llucanes Prat de Llusanes,Prat de Llusanés,Prats de Llucanes,Prats de Llusanas,Prats de Llusanes,Prats de Llusanás,Prats de Llusanés,Prats de Lluçanès 42.01667 2.03333 P PPLA3 ES 56 B 08171 0 717 Europe/Madrid 2012-03-04
-3112891 Prados Redondos Prados Redondos Prados Redondos 40.78505 -1.79329 P PPLA3 ES 54 GU 19227 149 1158 Europe/Madrid 2012-03-04
-3112893 Pradosegar Pradosegar Pradosegar 40.5502 -5.07015 P PPLA3 ES 55 AV 05191 230 1171 Europe/Madrid 2012-03-04
-3112907 Pradoluengo Pradoluengo Pradoluengo 42.32484 -3.20284 P PPLA3 ES 55 BU 09274 1643 958 Europe/Madrid 2012-03-04
-3112916 Prado de la Guzpeña Prado de la Guzpena Prado,Prado de la Guzpena,Prado de la Guzpeña 42.78309 -5.02554 P PPLA3 ES 55 LE 24118 131 1047 Europe/Madrid 2012-03-04
-3112943 Prado Prado Prado 41.92077 -5.42027 P PPLA3 ES 55 ZA 49165 0 714 Europe/Madrid 2012-03-04
-3112945 Pradillo Pradillo Pradillo 42.1766 -2.64185 P PPLA3 ES 27 LO 26118 63 890 Europe/Madrid 2012-03-04
-3112947 Pradilla de Ebro Pradilla de Ebro Pradilla de Ebro 41.86111 -1.26325 P PPLA3 ES 52 Z 50217 644 231 Europe/Madrid 2012-03-04
-3112953 Prades Prades Prades 41.30983 0.98866 P PPLA3 ES 56 T 43116 0 953 Europe/Madrid 2012-03-04
-3112956 Prádena del Rincón Pradena del Rincon Pradena del Rincon,Prádena del Rincón 41.04414 -3.54075 P PPLA3 ES 29 M 28117 115 1115 Europe/Madrid 2012-03-04
-3112957 Prádena de Atienza Pradena de Atienza Pradena de Atienza,Prádena de Atienza 41.17245 -3.00728 P PPLA3 ES 54 GU 19226 48 1167 Europe/Madrid 2012-03-04
-3112959 Prádena Pradena Pradena,Prádena 41.13912 -3.68823 P PPLA3 ES 55 SG 40162 542 1123 Europe/Madrid 2012-03-04
-3112966 Pradejón Pradejon Pradejon,Pradejón 42.33446 -2.06851 P PPLA3 ES 27 LO 26117 3546 364 Europe/Madrid 2012-03-04
-3112968 Prádanos de Ojeda Pradanos de Ojeda Pradanos de Ojeda,Prádanos de Ojeda 42.68156 -4.34658 P PPLA3 ES 55 P 34139 204 933 Europe/Madrid 2012-03-04
-3112970 Prádanos de Bureba Pradanos de Bureba Pradanos de Bureba,Prádanos de Bureba 42.50264 -3.34752 P PPLA3 ES 55 BU 09273 61 757 Europe/Madrid 2012-03-04
-3112972 Pradales Pradales Pradales 41.45555 -3.70753 P PPLA3 ES 55 SG 40161 59 1191 Europe/Madrid 2012-03-04
-3112982 Pozuelo de Zarzón Pozuelo de Zarzon Pozuelo de Zarzon,Pozuelo de Zarzón 40.14805 -6.41458 P PPLA3 ES 57 CC 10152 598 468 Europe/Madrid 2012-03-04
-3112984 Pozuelo de Tábara Pozuelo de Tabara Pozuelo de Tabara,Pozuelo de Tábara 41.78502 -5.89455 P PPLA3 ES 55 ZA 49164 211 702 Europe/Madrid 2012-03-04
-3112985 Pozuelo del Rey Pozuelo del Rey Pozuelo del Rey 40.36463 -3.31699 P PPLA3 ES 29 M 28116 323 808 Europe/Madrid 2012-03-04
-3112986 Pozuelo del Páramo Pozuelo del Paramo Pozuelo del Paramo,Pozuelo del Páramo 42.171 -5.76813 P PPLA3 ES 55 LE 24117 537 756 Europe/Madrid 2012-03-04
-3112987 Pozuelo de la Orden Pozuelo de la Orden Pozuelo de la Orden 41.82138 -5.25891 P PPLA3 ES 55 VA 47125 78 725 Europe/Madrid 2012-03-04
-3112988 Pozuelo de Aragón Pozuelo de Aragon Pozuelo de Aragon,Pozuelo de Aragón 41.7643 -1.42305 P PPLA3 ES 52 Z 50216 332 413 Europe/Madrid 2012-03-04
-3112989 Pozuelo de Alarcón Pozuelo de Alarcon Posuehlo-de-Alarkon,Pozuelo,Pozuelo de Alarcon,Pozuelo de Alarcón,Посуэло-де-Аларкон 40.43293 -3.81338 P PPLA3 ES 29 M 28115 82428 704 Europe/Madrid 2012-03-04
-3112995 Pozuel del Campo Pozuel del Campo Pozuel del Campo 40.77125 -1.50575 P PPLA3 ES 52 TE 44190 111 1117 Europe/Madrid 2012-03-04
-3112996 Pozuel de Ariza Pozuel de Ariza Pozuel de Ariza,Pozuelo de Ariza 41.35 -2.15 P PPLA3 ES 52 Z 50215 31 793 Europe/Madrid 2011-07-31
-3113001 Pozos de Hinojo Pozos de Hinojo Pozos de Hinojo 40.91303 -6.41144 P PPLA3 ES 55 SA 37257 62 735 Europe/Madrid 2012-03-04
-3113006 Pozondón Pozondon Pozondon,Pozondón 40.56112 -1.47033 P PPLA3 ES 52 TE 44189 100 1408 Europe/Madrid 2012-03-04
-3113009 Pozo de Urama Pozo de Urama 42.25438 -4.89389 P PPLA3 ES 55 P 34137 45 823 Europe/Madrid 2012-03-04
-3113011 Pozo de Guadalajara Pozo de Guadalajara Pozo de Guadalajara 40.49532 -3.1814 P PPLA3 ES 54 GU 19225 752 890 Europe/Madrid 2012-03-04
-3113012 Pozo de Almoguera Pozo de Almoguera Pozo de Almoguera 40.3403 -3.02638 P PPLA3 ES 54 GU 19224 152 794 Europe/Madrid 2012-03-04
-3113014 Pozoantiguo Pozoantiguo Pozoantiguo 41.5973 -5.4366 P PPLA3 ES 55 ZA 49163 293 714 Europe/Madrid 2012-03-04
-3113021 Pozán de Vero Pozan de Vero Pozan de Vero,Pozán de Vero 42.08219 0.03066 P PPLA3 ES 52 HU 22186 241 412 Europe/Madrid 2012-03-04
-3113025 Pozanco Pozanco Pozanco 40.80095 -4.66772 P PPLA3 ES 55 AV 05190 51 911 Europe/Madrid 2012-03-04
-3113026 Pozalmuro Pozalmuro Pozalmuro 41.77449 -2.10215 P PPLA3 ES 55 SO 42142 101 1051 Europe/Madrid 2012-03-04
-3113029 Pozal de Gallinas Pozal de Gallinas Pozal de Gallinas 41.31831 -4.83936 P PPLA3 ES 55 VA 47123 505 732 Europe/Madrid 2012-03-04
-3113030 Poza de la Vega Poza de la Vega Poza de la Vega 42.57823 -4.79845 P PPLA3 ES 55 P 34136 266 950 Europe/Madrid 2012-03-04
-3113031 Poza de la Sal Poza de la Sal Poza de la Sal,Poza de la Sol 42.66542 -3.5014 P PPLA3 ES 55 BU 09272 383 764 Europe/Madrid 2012-03-04
-3113035 Poio Poio San Juan 42.44423 -8.71482 P PPL ES 58 PO 36038 16043 193 Europe/Madrid 2010-04-22
-3113036 Poio Poio San Salvador 42.42929 -8.66075 P PPLA3 ES ES 58 PO 36041 0 14 Europe/Madrid 2012-03-04
-3113038 Poyales del Hoyo Poyales del Hoyo Poyales del Hoyo 40.17254 -5.16597 P PPLA3 ES 55 AV 05189 616 552 Europe/Madrid 2012-03-04
-3113040 Poveda de la Sierra Poveda de la Sierra Poveda,Poveda de la Sierra,Povedo de la Sierra 40.64329 -2.02905 P PPLA3 ES 54 GU 19223 173 1191 Europe/Madrid 2012-03-04
-3113041 Poveda de las Cintas Poveda de las Cintas Poveda de las Cintas 41.04596 -5.26019 P PPLA3 ES 55 SA 37256 303 821 Europe/Madrid 2012-03-04
-3113044 Poveda Poveda Poveda 40.56799 -5.07909 P PPLA3 ES 55 AV 05188 80 1194 Europe/Madrid 2012-03-04
-3113061 Potes Potes Potes 43.15457 -4.62055 P PPLA3 ES 39 S 39055 0 307 Europe/Madrid 2012-03-04
-3113074 Posada de Valdeón Posada de Valdeon 43.15154 -4.92102 P PPLA3 ES 55 LE 24116 503 914 Europe/Madrid 2012-03-04
-3113082 Portugalete Portugalete Portu,Portugalete,la villa jarrillera,Португалете 43.32099 -3.02064 P PPLA3 ES 59 BI 48078 48105 49 Europe/Madrid 2012-03-04
-3113104 Porto Porto Porto 42.16737 -6.89934 P PPLA3 ES 55 ZA 49162 0 1206 Europe/Madrid 2012-03-04
-3113108 Portillo de Toledo Portillo de Toledo 40.06415 -4.22793 P PPLA3 ES 54 TO 45134 2171 593 Europe/Madrid 2012-03-04
-3113109 Portillo de Soria Portillo de Soria Portillo de Soria 41.63504 -2.12142 P PPLA3 ES 55 SO 42140 17 1025 Europe/Madrid 2012-03-04
-3113112 Portillo Portillo Portillo 41.47867 -4.58967 P PPLA3 ES 55 VA 47122 2620 850 Europe/Madrid 2012-03-04
-3113121 Portilla Portilla Portilla 40.28957 -2.08178 P PPLA3 ES 54 CU 16163 101 1070 Europe/Madrid 2012-03-04
-3113128 Portell de Morella Portell de Morella Portell de Morella 40.53267 -0.26249 P PPLA3 ES 60 CS 12091 246 1079 Europe/Madrid 2012-03-04
-3113144 Portbou Portbou Portbou,Portbu,Портбу 42.4265 3.15805 P PPL ES 56 GI 17138 1400 18 Europe/Madrid 2010-04-04
-3113147 Portas Portas Portas,Santa Maria,Santa María 42.58531 -8.65573 P PPLA3 ES 58 PO 36040 3177 23 Europe/Madrid 2012-03-04
-3113157 Porriño Porrino 42.16156 -8.6198 P PPL ES 58 PO 36039 17475 39 Europe/Madrid 2010-04-22
-3113166 Porqueres Porqueres Porqueras,Porqueres 42.11682 2.74143 P PPLA3 ES 56 GI 17137 0 204 Europe/Madrid 2011-07-31
-3113170 Porqueira Porqueira Santa Maria,Santa María 42.01667 -7.85 P PPLA3 ES ES 58 OR 32062 0 636 Europe/Madrid 2011-07-31
-3113192 Pontós Pontos Pontos,Pontós 42.18665 2.91706 P PPLA3 ES 56 GI 17136 209 91 Europe/Madrid 2012-03-04
-3113209 Pontevedra Pontevedra Pontevedra,Pontevedro,pontebedora,Понтеведра,ポンテベドラ 42.431 -8.64435 P PPLA2 ES 58 PO 36038 81576 29 Europe/Madrid 2010-08-22
-3113226 Pont de Molins Pont de Molins Pont de Molins 42.3144 2.92996 P PPLA3 ES 56 GI 17135 443 45 Europe/Madrid 2012-03-04
-3113231 Ponts Ponts Ponts,Ponts-sous-Avranches 41.91607 1.18515 P PPL ES 56 L 25907 2361 364 Europe/Madrid 2010-04-04
-3113236 Ponferrada Ponferrada Pomeriada,Ponferrada,Понферрада 42.54664 -6.59619 P PPLA3 ES 55 LE 24115 68736 519 Europe/Madrid 2012-03-04
-3113239 Pomer Pomer Pomer 41.63765 -1.84104 P PPLA3 ES 52 Z 50214 35 1099 Europe/Madrid 2012-03-04
-3113243 Pomar de Valdivia Pomar de Valdivia Pomar de Valdivia 42.77437 -4.16756 P PPLA3 ES 55 P 34135 521 940 Europe/Madrid 2012-03-04
-3113251 Pollos Pollos Pollos 41.44406 -5.1249 P PPLA3 ES 55 VA 47121 781 676 Europe/Madrid 2012-03-04
-3113254 Polinyà Polinya Polinya,Polinya del Valles,Polinyà,Polinyà del Vallès,Polinyá 41.55 2.15 P PPLA3 ES 56 B 08167 6176 162 Europe/Madrid 2012-03-04
-3113258 Polentinos Polentinos Polentinos 42.93932 -4.52887 P PPLA3 ES 55 P 34134 75 1272 Europe/Madrid 2012-03-04
-3113259 Poleñino Polenino Polenino,Poleñino 41.86972 -0.31009 P PPLA3 ES 52 HU 22184 250 300 Europe/Madrid 2012-03-04
-3113267 Pola de Somiedo Pola de Somiedo Pola de Somieda,Pola de Somiedo,Somiedo 43.0929 -6.25629 P PPL ES 34 O 33068 1512 697 Europe/Madrid 2012-01-19
-3113268 Pola de Siero Pola de Siero Pola de Siero,Pola-de-S'ero,Siero,Пола-де-Сьеро 43.39228 -5.66335 P PPL ES 34 O 33066 51181 218 Europe/Madrid 2012-01-19
-3113270 Pola de Lena Pola de Lena Lena,Llena,Pola de Lena,Pola de Llena 43.16089 -5.82878 P PPL ES 34 O 33033 12766 308 Europe/Madrid 2012-01-19
-3113271 Pola de Laviana Pola de Laviana Labiana,Laviana,Llaviana,Pola de Labiana,Pola de Laviana 43.24538 -5.5629 P PPL ES 34 O 33032 14210 296 Europe/Madrid 2012-01-19
-3113272 Pola de Allande Pola de Allande Allande,La Puela d'Ayande,Pola de Allande 43.27307 -6.62152 P PPL ES 34 O 33001 2223 556 Europe/Madrid 2012-01-19
-3113273 Pol Pol 43.14892 -7.33022 P PPLA3 ES 58 LU 27046 0 506 Europe/Madrid 2012-03-04
-3113286 Pobladura de Valderaduey Pobladura de Valderaduey Pobladura de Valderaduey 41.70009 -5.54189 P PPLA3 ES 55 ZA 49160 62 669 Europe/Madrid 2012-03-04
-3113289 Pobladura de Pelayo García Pobladura de Pelayo Garcia Pobladura de Pelayo Garcia,Pobladura de Pelayo García 42.30602 -5.6856 P PPLA3 ES 55 LE 24113 532 797 Europe/Madrid 2012-03-04
-3113290 Pobladura del Valle Pobladura del Valle Pobladura del Valle 42.10257 -5.73333 P PPLA3 ES 55 ZA 49159 339 734 Europe/Madrid 2012-03-04
-3113300 la Pobla de Massaluca la Pobla de Massaluca Pobla de Masaluca,la Pobla de Massaluca 41.18333 0.35 P PPLA3 ES 56 T 43110 0 333 Europe/Madrid 2012-03-04
-3113305 Población de Cerrato Poblacion de Cerrato Poblacion de Cerrato,Población de Cerrato 41.79298 -4.42874 P PPLA3 ES 55 P 34133 138 758 Europe/Madrid 2012-03-04
-3113306 Población de Campos Poblacion de Campos Poblacion de Campos,Población de Campos 42.26994 -4.44744 P PPLA3 ES 55 P 34132 173 782 Europe/Madrid 2012-03-04
-3113307 Población de Arroyo Poblacion de Arroyo 42.33675 -4.87398 P PPLA3 ES 55 P 34131 87 856 Europe/Madrid 2012-03-04
-3113314 el Poal el Poal Poal,el Poal 41.68333 0.86667 P PPLA3 ES 56 L 25168 0 211 Europe/Madrid 2012-03-04
-3113317 Plou Plou Plou 40.99274 -0.85441 P PPLA3 ES 52 TE 44184 49 907 Europe/Madrid 2012-03-04
-3113320 Plentzia Plentzia Gaminiz,Plencia,Plentzia 43.4053 -2.94794 P PPLA3 ES 59 BI 48077 0 17 Europe/Madrid 2012-03-04
-3113321 Plenas Plenas Plenas 41.11209 -0.96442 P PPLA3 ES 52 Z 50213 127 824 Europe/Madrid 2012-03-04
-3113322 Pleitas Pleitas Pleitas 41.71135 -1.20251 P PPLA3 ES 52 Z 50212 62 259 Europe/Madrid 2012-03-04
-3113329 Plasencia de Jalón Plasencia de Jalon Plasencia,Plasencia de Jalon,Plasencia de Jalón 41.68154 -1.22996 P PPLA3 ES 52 Z 50211 366 275 Europe/Madrid 2012-03-04
-3113331 Plasencia Plasencia Plasence,Plasencia,Plasencio,Plasensia,Plasència,Пласенсиа 40.03116 -6.08845 P PPLA3 ES 57 CC 10148 41148 368 Europe/Madrid 2012-03-04
-3113333 Planoles Planoles Planolas,Planoles 42.31667 2.1 P PPLA3 ES 56 GI 17134 0 1142 Europe/Madrid 2012-03-04
-3113343 Plan Plan Plan 42.58126 0.33742 P PPLA3 ES 52 HU 22182 311 1123 Europe/Madrid 2012-03-04
-3113348 el Pla del Penedès el Pla del Penedes Pla de Panades,Pla de Panadés,Pla del Panades,Pla del Panadés,el Pla del Penedes,el Pla del Penedès 41.41667 1.71667 P PPLA3 ES 56 B 08164 0 207 Europe/Madrid 2012-03-04
-3113349 El Pla de Santa Maria El Pla de Santa Maria 41.36336 1.29152 P PPL ES 56 T 43108 2371 381 381 Europe/Madrid 2011-12-19
-3113353 Pizarral Pizarral Pizarral 40.6145 -5.65238 P PPLA3 ES 55 SA 37255 79 906 Europe/Madrid 2012-03-04
-3113360 Pitillas Pitillas Pitilias,Pitillas 42.42172 -1.62017 P PPLA3 ES 32 NA 31205 636 347 Europe/Madrid 2012-03-04
-3113361 Pitiegua Pitiegua Pitiegua 41.0621 -5.46647 P PPLA3 ES 55 SA 37254 233 847 Europe/Madrid 2012-03-04
-3113365 Pitarque Pitarque Pitarque 40.6485 -0.59324 P PPLA3 ES 52 TE 44183 118 1005 Europe/Madrid 2012-03-04
-3113383 Piracés Piraces Piraces,Piracés 42.00448 -0.31769 P PPLA3 ES 52 HU 22181 103 423 Europe/Madrid 2012-03-04
-3113391 Piqueras Piqueras Piqueras 40.66367 -1.72202 P PPLA3 ES 54 GU 19221 63 1373 Europe/Madrid 2012-03-04
-3113395 Pioz Pioz Pioz 40.46153 -3.17234 P PPLA3 ES 54 GU 19220 969 865 Europe/Madrid 2012-03-04
-3113402 Piornal Piornal Piornal 40.11731 -5.84787 P PPLA3 ES 57 CC 10147 1528 1181 Europe/Madrid 2012-03-04
-3113415 Pinto Pinto Pinto,Пинто 40.24147 -3.69999 P PPLA3 ES 29 M 28113 43501 612 Europe/Madrid 2012-03-04
-3113420 Pinseque Pinseque Pinseque 41.73657 -1.10041 P PPLA3 ES 52 Z 50209 2367 230 Europe/Madrid 2012-03-04
-3113424 Piñor Pinor Pinor,Piñor 42.5012 -8.00151 P PPLA3 ES 58 OR 32061 0 547 Europe/Madrid 2012-03-04
-3113429 Pinofranqueado Pinofranqueado Pinofranqueado 40.3035 -6.33181 P PPL ES 57 CC 10050 1649 466 Europe/Madrid 2012-01-19
-3113431 Pino del Río Pino del Rio Pino del Rio,Pino del Río 42.64504 -4.80795 P PPLA3 ES 55 P 34129 265 996 Europe/Madrid 2012-03-04
-3113438 Pinillos Pinillos Pinillos 42.19951 -2.59709 P PPLA3 ES 27 LO 26115 21 999 Europe/Madrid 2012-03-04
-3113440 Pinilla de Toro Pinilla de Toro Pinilla de Toro 41.62783 -5.36414 P PPLA3 ES 55 ZA 49156 334 766 Europe/Madrid 2012-03-04
-3113441 Pinilla de Molina Pinilla de Molina Pinilla de Molina 40.67969 -1.88034 P PPLA3 ES 54 GU 19219 26 1220 Europe/Madrid 2012-03-04
-3113442 Pinilla del Valle Pinilla del Valle Pinilla del Valle 40.92448 -3.81688 P PPLA3 ES 29 M 28112 162 1088 Europe/Madrid 2012-03-04
-3113443 Pinilla de los Moros Pinilla de los Moros Pinilla de los Moros 42.06815 -3.32706 P PPLA3 ES 55 BU 09269 42 971 Europe/Madrid 2012-03-04
-3113444 Pinilla de los Barruecos Pinilla de los Barruecos Pinilla de los Barruecos 41.91791 -3.30371 P PPLA3 ES 55 BU 09268 134 1090 Europe/Madrid 2012-03-04
-3113446 Pinilla del Campo Pinilla del Campo Pinilla del Campo 41.71691 -2.0835 P PPLA3 ES 55 SO 42139 21 1047 Europe/Madrid 2012-03-04
-3113448 Pinilla de Jadraque Pinilla de Jadraque Pinilla de Jadraque 41.01988 -2.94254 P PPLA3 ES 54 GU 19218 80 838 Europe/Madrid 2012-03-04
-3113472 Piñel de Arriba Pinel de Arriba Pinel de Arriba,Piñel de Arriba 41.69923 -4.12808 P PPLA3 ES 55 VA 47119 136 831 Europe/Madrid 2012-03-04
-3113473 Piñel de Abajo Pinel de Abajo Pinel de Abajo,Piñel de Abajo 41.67458 -4.14655 P PPLA3 ES 55 VA 47118 189 790 Europe/Madrid 2012-03-04
-3113520 Pinedas Pinedas Pinedas 40.44493 -5.96025 P PPLA3 ES 55 SA 37252 177 791 Europe/Madrid 2012-03-04
-3113521 Pineda de la Sierra Pineda de la Sierra Pineda de la Sierra 42.2156 -3.2969 P PPLA3 ES 55 BU 09266 126 1211 Europe/Madrid 2012-03-04
-3113522 Pineda de Gigüela Pineda de Giguela Pineda,Pineda de Giguela,Pineda de Gigüela 40.08546 -2.54368 P PPLA3 ES 54 CU 16160 136 977 Europe/Madrid 2012-03-04
-3113526 Pineda de Mar Pineda de Mar Pineda,Pineda de Mar,Пинеда де Мар 41.62763 2.6889 P PPLA3 ES 56 B 08163 26203 12 Europe/Madrid 2012-03-04
-3113534 Pinarnegrillo Pinarnegrillo Pinarnegrillo 41.19098 -4.20967 P PPLA3 ES 55 SG 40160 158 855 Europe/Madrid 2012-03-04
-3113539 Pinarejos Pinarejos Pinarejos 41.2595 -4.29364 P PPLA3 ES 55 SG 40159 167 822 Europe/Madrid 2012-03-04
-3113547 Pina de Montalgrao Pina de Montalgrao Pina,Pina de Montalgrao,Pina de Montolgrao 40.01667 -0.65 P PPLA3 ES 60 CS 12090 146 1024 Europe/Madrid 2012-03-04
-3113548 Piña de Esgueva Pina de Esgueva Pina,Pina de Esgueva,Piña,Piña de Esgueva 41.72843 -4.42823 P PPLA3 ES 55 VA 47117 349 753 748 Europe/Madrid 2012-03-04
-3113549 Pina de Ebro Pina de Ebro Pina,Pina de Ebro 41.48846 -0.5312 P PPL ES 52 Z 50222 2374 159 Europe/Madrid 2012-01-19
-3113550 Piña de Campos Pina de Campos Pina de Campos,Piña de Campos 42.21326 -4.43657 P PPLA3 ES 55 P 34130 281 765 Europe/Madrid 2012-03-04
-3113555 Piloña Pilona Pilona,Piloña 43.35 -5.36667 P PPLA3 ES 34 O 33049 8389 168 Europe/Madrid 2012-03-04
-3113574 Piérnigas Piernigas Piernigas,Piérnigas 42.5903 -3.41337 P PPLA3 ES 55 BU 09265 38 739 Europe/Madrid 2012-03-04
-3113576 Piera Piera Piera 41.52232 1.75076 P PPL ES 56 B 08028 14324 313 Europe/Madrid 2012-01-19
-3113579 Piedratajada Piedratajada Piedratajada 42.12124 -0.80373 P PPLA3 ES 52 Z 50207 166 419 Europe/Madrid 2012-03-04
-3113587 Piedramillera Piedramillera Piedramillera 42.632 -2.20416 P PPLA3 ES 32 NA 31204 61 613 Europe/Madrid 2012-03-04
-3113590 Piedralaves Piedralaves Piedralaves 40.31722 -4.70025 P PPLA3 ES 55 AV 05187 2135 715 Europe/Madrid 2012-03-04
-3113593 Piedrahita de Castro Piedrahita de Castro Piedrahita de Castro 41.68089 -5.72886 P PPLA3 ES 55 ZA 49155 134 701 Europe/Madrid 2012-03-04
-3113647 Pías Pias 42.08333 -7 P PPLA3 ES 55 ZA 49154 0 1100 Europe/Madrid 2011-07-31
-3113653 Pezuela de las Torres Pezuela de las Torres Pezuela de las Torres 40.41613 -3.17363 P PPLA3 ES 29 M 28111 481 819 Europe/Madrid 2011-07-31
-3113663 Petín Petin Petin,Petín 42.38192 -7.12899 P PPLA3 ES 58 OR 32060 1088 319 Europe/Madrid 2012-03-04
-3113664 Petilla de Aragón Petilla de Aragon Petilla,Petilla de Aragon,Petilla de Aragón 42.45 -1.11667 P PPLA3 ES 32 NA 31203 32 935 Europe/Madrid 2011-07-31
-3113675 Pesquera Pesquera Pesquera,Pesquero 43.08223 -4.07932 P PPLA3 ES 39 S 39051 84 612 Europe/Madrid 2012-03-04
-3113681 Pesoz Pesoz Pesoz 43.25 -6.86667 P PPLA3 ES 34 O 33048 214 613 Europe/Madrid 2012-03-04
-3113698 Pertusa Pertusa Pertusa 42.00214 -0.12732 P PPLA3 ES 52 HU 22178 127 375 Europe/Madrid 2012-03-04
-3113706 Perosillo Perosillo Perosillo 41.39294 -4.14115 P PPLA3 ES 55 SG 40158 25 833 Europe/Madrid 2012-03-04
-3113710 Peromingo Peromingo Peromingo 40.46386 -5.77238 P PPLA3 ES 55 SA 37251 145 792 Europe/Madrid 2012-03-04
-3113725 Perilla de Castro Perilla de Castro Perilla de Castro 41.7254 -5.87636 P PPLA3 ES 55 ZA 49153 219 726 Europe/Madrid 2012-03-04
-3113730 Pereruela Pereruela Pereruela 41.4165 -5.87812 P PPLA3 ES 55 ZA 49152 660 770 Europe/Madrid 2012-03-04
-3113733 el Perelló el Perello El Perello,El Perelló,Perello,Perelló,el Perello,el Perelló 40.86667 0.71667 P PPLA3 ES 56 T 43104 2310 166 Europe/Madrid 2012-03-04
-3113734 Peralada Peralada Peralada 42.30823 3.0091 P PPLA3 ES ES 56 GI 17132 0 37 Europe/Madrid 2011-07-31
-3113738 Pereiro de Aguiar Pereiro de Aguiar Pereiro de Aguiar 42.34524 -7.80008 P PPL ES 58 OR 32058 5443 327 Europe/Madrid 2012-01-19
-3113774 Perdiguera Perdiguera Perdiguera 41.75458 -0.63148 P PPLA3 ES 52 Z 50206 610 467 Europe/Madrid 2012-03-04
-3113787 Peranzanes Peranzanes Peranzanes 42.87724 -6.63383 P PPLA3 ES 55 LE 24112 331 958 Europe/Madrid 2012-03-04
-3113795 Peralveche Peralveche Peralveche 40.61078 -2.44957 P PPLA3 ES 54 GU 19217 101 1111 Europe/Madrid 2012-03-04
-3113796 Peraltilla Peraltilla Peraltilla 42.05407 -0.0184 P PPLA3 ES 52 HU 22176 183 420 Europe/Madrid 2012-03-04
-3113800 Peralta Peralta Azkoien,Peralta 42.33834 -1.80034 P PPLA3 ES 32 NA 31202 5722 290 Europe/Madrid 2012-03-04
-3113801 Perales de Tajuña Perales de Tajuna Perales de Tajuna,Perales de Tajuña,Tajuna,Tajuña 40.2313 -3.35021 P PPLA3 ES 29 M 28110 2462 582 Europe/Madrid 2012-03-04
-3113804 Perales del Puerto Perales del Puerto Perales del Puerto 40.15596 -6.68192 P PPLA3 ES 57 CC 10142 976 429 Europe/Madrid 2012-03-04
-3113805 Perales del Alfambra Perales del Alfambra Perales,Perales de Alfambra,Perales del Alfambra 40.63383 -1.00181 P PPLA3 ES 52 TE 44182 303 1170 Europe/Madrid 2012-03-04
-3113809 Perales Perales 42.19398 -4.58105 P PPLA3 ES 55 P 34127 103 778 Europe/Madrid 2012-03-04
-3113811 Peralejos de las Truchas Peralejos de las Truchas Peralejos de las Truchas 40.59336 -1.90953 P PPLA3 ES 54 GU 19216 167 1190 Europe/Madrid 2012-03-04
-3113812 Peralejos de Arriba Peralejos de Arriba Peralejos de Arriba 41.0041 -6.33362 P PPLA3 ES 55 SA 37249 60 789 Europe/Madrid 2012-03-04
-3113813 Peralejos de Abajo Peralejos de Abajo Peralejos de Abajo 41.00469 -6.36238 P PPLA3 ES 55 SA 37248 186 778 Europe/Madrid 2012-03-04
-3113814 Peralejos Peralejos Peralejos 40.48433 -1.03408 P PPLA3 ES 52 TE 44181 87 1012 Europe/Madrid 2012-03-04
-3113818 Peral de Arlanza Peral de Arlanza Peral de Arlanza 42.07612 -4.07733 P PPLA3 ES 55 BU 09262 219 776 Europe/Madrid 2012-03-04
-3113823 Peracense Peracense Peracense 40.641 -1.47075 P PPLA3 ES 52 TE 44180 108 1226 Europe/Madrid 2012-03-04
-3113840 Peque Peque Peque 42.07297 -6.27489 P PPLA3 ES 55 ZA 49150 171 853 Europe/Madrid 2012-03-04
-3113860 Peníscola Peniscola Penhiscola,Penhíscola,Peniscola,Peníscola,Peñíscola 40.3574 0.40692 P PPL ES 60 CS 12089 6006 22 Europe/Madrid 2006-11-19
-3113867 Penelles Penelles Penelles 41.75 0.96667 P PPLA3 ES 56 L 25164 0 262 Europe/Madrid 2012-03-04
-3113886 Peñausende Penausende Penausade,Penausende,Peñausade,Peñausende 41.28662 -5.86755 P PPLA3 ES 55 ZA 49149 490 870 Europe/Madrid 2012-03-04
-3113908 Peñarandilla Penarandilla Penarandilla,Peñarandilla 40.88348 -5.3936 P PPLA3 ES 55 SA 37247 256 826 Europe/Madrid 2012-03-04
-3113909 Peñaranda de Duero Penaranda de Duero Penaranda,Peñaranda 41.68849 -3.47863 P PPLA3 ES 55 BU 09261 587 858 Europe/Madrid 2012-03-04
-3113910 Peñaranda de Bracamonte Penaranda de Bracamonte Penaranda de Bracamonte,Peñaranda de Bracamonte 40.90108 -5.20026 P PPLA3 ES 55 SA 37246 6260 908 Europe/Madrid 2012-03-04
-3113912 Peñaparda Penaparda Penaparda,Peñaparda 40.32092 -6.66948 P PPLA3 ES 55 SA 37245 439 866 Europe/Madrid 2012-03-04
-3113920 Peñalver Penalver Penalver,Peñalver 40.5814 -2.8889 P PPLA3 ES 54 GU 19215 204 927 Europe/Madrid 2012-03-04
-3113926 Peñalén Penalen Penalen,Peñalén 40.6656 -2.06999 P PPLA3 ES 54 GU 19214 125 1356 Europe/Madrid 2012-03-04
-3113936 Peñalba de Ávila Penalba de Avila Penalba de Avila,Peñalba de Ávila 40.77266 -4.74595 P PPLA3 ES 55 AV 05185 130 1062 Europe/Madrid 2012-03-04
-3113937 Peñalba Penalba Penalba,Peñalba 41.50087 -0.03798 P PPLA3 ES 52 HU 22172 723 246 Europe/Madrid 2012-03-04
-3113944 Penagos Penagos Penagos 43.35216 -3.81382 P PPLA3 ES 39 S 39048 1704 134 Europe/Madrid 2012-03-04
-3113952 Peñaflor de Hornija Penaflor de Hornija Penaflor,Penaflor de Hornija,Peñaflor,Peñaflor de Hornija 41.71159 -4.98333 P PPLA3 ES 55 VA 47115 409 842 Europe/Madrid 2012-03-04
-3113957 Peñafiel Penafiel Penafiel,Peñafiel 41.60165 -4.11418 P PPLA3 ES 55 VA 47114 5455 756 Europe/Madrid 2012-03-04
-3113976 Peñacaballera Penacaballera 40.34353 -5.86121 P PPLA3 ES 55 SA 37244 184 875 Europe/Madrid 2012-03-04
-3114016 Peleas de Abajo Peleas de Abajo Peleas de Abajo 41.3926 -5.68966 P PPLA3 ES 55 ZA 49148 254 715 Europe/Madrid 2012-03-04
-3114017 Peleagonzalo Peleagonzalo Peleagonzalo 41.48175 -5.48304 P PPLA3 ES 55 ZA 49147 380 651 Europe/Madrid 2012-03-04
-3114018 Pelayos del Arroyo Pelayos del Arroyo Pelayos del Arroyo 41.05086 -3.94104 P PPLA3 ES 55 SG 40157 62 1145 Europe/Madrid 2012-03-04
-3114019 Pelayos de la Presa Pelayos de la Presa 40.36051 -4.33462 P PPLA3 ES 29 M 28109 2197 560 Europe/Madrid 2012-03-04
-3114020 Pelayos Pelayos Pelayos 40.64985 -5.5758 P PPLA3 ES 55 SA 37242 131 930 Europe/Madrid 2012-03-04
-3114024 Pelarrodríguez Pelarrodriguez Pelarrodriguez,Pelarrodríguez 40.88723 -6.21271 P PPLA3 ES 55 SA 37241 193 756 Europe/Madrid 2012-03-04
-3114025 Pelahustán Pelahustan 40.17599 -4.59842 P PPLA3 ES 54 TO 45131 364 676 Europe/Madrid 2012-03-04
-3114032 Pelabravo Pelabravo Pelabravo 40.93658 -5.57916 P PPLA3 ES 55 SA 37240 919 816 Europe/Madrid 2012-03-04
-3114041 Peguerinos Peguerinos 40.6262 -4.23154 P PPLA3 ES 55 AV 05184 346 1343 Europe/Madrid 2012-03-04
-3114068 Pedroso Pedroso Pedroso 42.29959 -2.7189 P PPLA3 ES 27 LO 26114 99 771 Europe/Madrid 2012-03-04
-3114069 Pedrosillo el Ralo Pedrosillo el Ralo Pedrosillo el Ralo 41.06305 -5.54794 P PPLA3 ES 55 SA 37238 124 815 Europe/Madrid 2012-03-04
-3114070 Pedrosillo de los Aires Pedrosillo de los Aires Pedrosillo de los Aires 40.71524 -5.70511 P PPLA3 ES 55 SA 37237 401 961 Europe/Madrid 2012-03-04
-3114071 Pedrosillo de Alba Pedrosillo de Alba Pedrosillo de Alba 40.82277 -5.39506 P PPLA3 ES 55 SA 37236 216 837 Europe/Madrid 2012-03-04
-3114078 Pedrosa del Rey Pedrosa del Rey Pedrosa del Rey 41.55617 -5.20466 P PPLA3 ES 55 VA 47113 217 719 Europe/Madrid 2012-03-04
-3114079 Pedrosa del Príncipe Pedrosa del Principe Pedrosa del Principe,Pedrosa del Príncipe 42.24918 -4.19849 P PPLA3 ES 55 BU 09258 206 774 Europe/Madrid 2012-03-04
-3114080 Pedrosa del Páramo Pedrosa del Paramo 42.44208 -3.9719 P PPLA3 ES 55 BU 09257 99 941 Europe/Madrid 2012-03-04
-3114081 Pedrosa de la Vega Pedrosa de la Vega 42.48159 -4.74678 P PPLA3 ES 55 P 34126 361 895 Europe/Madrid 2012-03-04
-3114082 Pedrosa de Duero Pedrosa de Duero Pedrosa de Duero 41.71289 -3.98804 P PPLA3 ES 55 BU 09256 498 838 Europe/Madrid 2012-03-04
-3114097 Pedrola Pedrola Pedrola 41.79102 -1.21357 P PPLA3 ES 52 Z 50204 2945 238 Europe/Madrid 2012-03-04
-3114101 Pedro Bernardo Pedro Bernardo Pedro Bernardo 40.24214 -4.90962 P PPLA3 ES 55 AV 05182 1243 788 Europe/Madrid 2012-03-04
-3114112 Pedrezuela Pedrezuela Pedrezuela 40.74277 -3.5998 P PPLA3 ES 29 M 28108 2571 874 Europe/Madrid 2012-03-04
-3114130 Pedraza de Campos Pedraza de Campos Pedraza de Campos 41.9842 -4.73524 P PPLA3 ES 55 P 34125 116 755 Europe/Madrid 2012-03-04
-3114131 Pedraza de Alba Pedraza de Alba Pedraza de Alba 40.75502 -5.37524 P PPLA3 ES 55 SA 37235 279 898 Europe/Madrid 2012-03-04
-3114134 Pedraza Pedraza Pedraza,Pedraza de la Sierra 41.13092 -3.81116 P PPLA3 ES 55 SG 40156 497 1073 Europe/Madrid 2012-03-04
-3114138 Pedrajas de San Esteban Pedrajas de San Esteban Pedrajas de San Esteban 41.34145 -4.58225 P PPLA3 ES 55 VA 47112 3349 754 Europe/Madrid 2012-03-04
-3114158 Pazuengos Pazuengos Pazuengos 42.31776 -2.92539 P PPLA3 ES 27 LO 26113 42 1160 Europe/Madrid 2012-03-04
-3114179 Payo de Ojeda Payo de Ojeda Payo de Ojeda 42.71859 -4.47752 P PPLA3 ES 55 P 34124 84 990 Europe/Madrid 2012-03-04
-3114198 Pau Pau Pau 42.31607 3.11621 P PPLA3 ES 56 GI 17128 446 38 Europe/Madrid 2012-03-04
-3114199 Patones Patones Patones,Patones de Abajo 40.85563 -3.4849 P PPLA3 ES 29 M 28107 378 714 Europe/Madrid 2012-03-04
-3114204 Pastrana Pastrana Pastrana 40.41902 -2.92256 P PPLA3 ES 54 GU 19212 1081 778 Europe/Madrid 2012-03-04
-3114208 Pastores Pastores Pastores 40.51508 -6.51018 P PPLA3 ES 55 SA 37233 46 767 Europe/Madrid 2012-03-04
-3114215 Pascualcobo Pascualcobo Pascualcobo 40.65637 -5.27733 P PPLA3 ES 55 AV 05181 0 1072 Europe/Madrid 2012-03-04
-3114242 Parrillas Parrillas Parrillas 40.06225 -5.0639 P PPLA3 ES 54 TO 45130 407 401 Europe/Madrid 2012-03-04
-3114245 Parres Parres 43.35 -5.15 P PPLA3 ES 34 O 33045 5749 125 Europe/Madrid 2012-03-04
-3114255 Parlavà Parlava Parlaba,Parlabá,Parlava,Parlavà 42.02163 3.03197 P PPLA3 ES 56 GI 17126 0 31 Europe/Madrid 2012-03-04
-3114256 Parla Parla Parla,Парла 40.23604 -3.76752 P PPLA3 ES 29 M 28106 115611 648 Europe/Madrid 2012-03-04
-3114267 Parets del Vallès Parets del Valles Parets del Valles,Parets del Vallès,Sant Esteve de Parets 41.57481 2.23306 P PPL ES 56 B 08107 17632 99 Europe/Madrid 2011-12-23
-3114270 Pareja Pareja Pareja 40.55578 -2.64882 P PPLA3 ES 54 GU 19211 482 768 Europe/Madrid 2012-03-04
-3114272 Paredes de Sigüenza Paredes de Siguenza Paredes,Paredes de Siguenza,Paredes de Sigüenza 41.24283 -2.73376 P PPLA3 ES 54 GU 19210 42 1005 Europe/Madrid 2011-07-31
-3114273 Paredes de Nava Paredes de Nava Paredes,Paredes de Nava 42.15368 -4.69193 P PPLA3 ES 55 P 34123 2274 785 Europe/Madrid 2012-03-04
-3114275 Paredes de Escalona Paredes de Escalona Paredes,Paredes de Escalona 40.20472 -4.4305 P PPLA3 ES 54 TO 45129 107 498 Europe/Madrid 2012-03-04
-3114280 Paredes Paredes Paredes 40.06578 -2.854 P PPLA3 ES 54 CU 16151 81 835 Europe/Madrid 2012-03-04
-3114283 Pardos Pardos Pardos 40.94818 -1.92556 P PPLA3 ES 54 GU 19209 0 1185 Europe/Madrid 2012-03-04
-3114290 Pardilla Pardilla Pardilla,Pardillo 41.55183 -3.71089 P PPLA3 ES 55 BU 09253 124 883 Europe/Madrid 2012-03-04
-3114312 Páramo del Sil Paramo del Sil Paramo,Paramo del Sil,Páramo,Páramo del Sil 42.82056 -6.48747 P PPLA3 ES 55 LE 24110 754 880 Europe/Madrid 2012-03-04
-3114314 Páramo de Boedo Paramo de Boedo Paramo de Boedo,Páramo de Boedo 42.57842 -4.40042 P PPLA3 ES 55 P 34122 110 878 Europe/Madrid 2012-03-04
-3114317 O Páramo O Paramo 42.95 -7.3 P PPL ES 58 LU 27011 1892 704 Europe/Madrid 2012-02-23
-3114329 Paradinas de San Juan Paradinas de San Juan Paradinas de San Juan 40.98325 -5.15418 P PPLA3 ES 55 SA 37232 569 852 Europe/Madrid 2012-03-04
-3114348 Paradela Paradela Paradela,San Miguel 42.76667 -7.56667 P PPL ES 58 LU 27042 2356 606 Europe/Madrid 2012-01-19
-3114370 Parada de Rubiales Parada de Rubiales Parada de Rubiales 41.14818 -5.43638 P PPLA3 ES 55 SA 37231 311 843 Europe/Madrid 2012-03-04
-3114377 Parada de Arriba Parada de Arriba Parada de Arriba 40.98655 -5.79332 P PPLA3 ES 55 SA 37230 237 824 Europe/Madrid 2012-03-04
-3114395 Paracuellos de la Ribera Paracuellos de la Ribera Pacuellos,Paracuellos de la Ribera 41.42273 -1.56245 P PPLA3 ES 52 Z 50202 223 499 Europe/Madrid 2012-03-04
-3114396 Paracuellos de Jiloca Paracuellos de Jiloca Paracuellos de Jiloca 41.31378 -1.64029 P PPLA3 ES 52 Z 50201 514 568 Europe/Madrid 2012-03-04
-3114397 Paracuellos de Jarama Paracuellos de Jarama Paracuellos de Jarama 40.50353 -3.52775 P PPLA3 ES 29 M 28104 14329 695 Europe/Madrid 2012-03-04
-3114405 Papatrigo Papatrigo Papatrigo 40.8679 -4.83399 P PPLA3 ES 55 AV 05179 292 889 Europe/Madrid 2012-03-04
-3114410 Pantón Panton Panton,Pantón 42.51667 -7.6 P PPLA3 ES 58 LU 27041 3166 304 Europe/Madrid 2010-11-04
-3114411 Pantoja Pantoja Pantoja 40.04336 -3.8328 P PPLA3 ES 54 TO 45128 3071 524 Europe/Madrid 2012-03-04
-3114422 Paniza Paniza Paniza 41.284 -1.21224 P PPLA3 ES 52 Z 50200 728 711 Europe/Madrid 2012-03-04
-3114463 Pancrudo Pancrudo Pancrudo 40.76223 -1.02967 P PPLA3 ES 52 TE 44177 125 1247 Europe/Madrid 2012-03-04
-3114464 Pancorbo Pancorbo Pancorbo,Pancorvo 42.63418 -3.1118 P PPLA3 ES 55 BU 09251 463 641 Europe/Madrid 2012-03-04
-3114472 Pamplona Pamplona Iruinea,Iruna,Irunea,Iruña,Iruñea,Lungsod ng Irunea,Lungsod ng Iruñea,Pampeluna,Pampelune,Pampljona,Pamplona,Pamplono,Pompaelo,bamblwna,panpurona,Памплона,Памплёна,بامبلونا,パンプローナ 42.81687 -1.64323 P PPLA ES 32 NA 31201 198491 460 455 Europe/Madrid 2010-04-22
-3114473 Pampliega Pampliega 42.20582 -3.98666 P PPLA3 ES 55 BU 09250 405 815 Europe/Madrid 2012-03-04
-3114479 Pals Pals Pais,Palls,Pals 41.97102 3.14814 P PPLA3 ES 56 GI 17124 2366 20 Europe/Madrid 2012-03-04
-3114486 Palomero Palomero Palomero 40.24688 -6.27706 P PPLA3 ES 57 CC 10137 503 453 Europe/Madrid 2012-03-04
-3114489 Palomeque Palomeque Palomeque 40.11966 -3.96403 P PPLA3 ES 54 TO 45127 835 605 Europe/Madrid 2012-03-04
-3114499 Palomar de Arroyos Palomar de Arroyos Palomar de Arroyos 40.77911 -0.75056 P PPLA3 ES 52 TE 44176 218 1197 Europe/Madrid 2012-03-04
-3114501 Palol de Revardit Palol de Revardit Palol de Rebardit,Palol de Revardit 42.06667 2.8 P PPLA3 ES 56 GI 17123 0 144 Europe/Madrid 2012-03-04
-3114506 Palo Palo 42.3227 0.24376 P PPLA3 ES 52 HU 22168 29 705 Europe/Madrid 2012-03-04
-3114513 Pálmaces de Jadraque Palmaces de Jadraque Palmaces de Jadraque,Pálmaces de Jadraque 41.0561 -2.9106 P PPLA3 ES 54 GU 19208 68 918 Europe/Madrid 2012-03-04
-3114516 Pallejà Palleja Palleja,Pallejà 41.42394 1.99505 P PPLA3 ES 56 B 08157 11134 50 Europe/Madrid 2012-03-04
-3114523 els Pallaresos els Pallaresos Pallaresos,els Pallaresos 41.16667 1.26667 P PPLA3 ES 56 T 43100 0 150 Europe/Madrid 2012-03-04
-3114528 Palenzuela Palenzuela Palenzuela 42.09518 -4.13039 P PPLA3 ES 55 P 34121 266 791 Europe/Madrid 2012-03-04
-3114529 Palencia de Negrilla Palencia de Negrilla Palencia de Negrilla 41.09439 -5.60168 P PPLA3 ES 55 SA 37229 0 825 Europe/Madrid 2012-03-04
-3114531 Palencia Palencia Palencia,Palencio,Palensija,Pallantia,Palència,Palência,parenshia,Паленсия,パレンシア 42.01667 -4.53333 P PPLA2 ES 55 P 34120 82651 742 Europe/Madrid 2010-08-23
-3114533 Palazuelos de Muñó Palazuelos de Muno 42.19692 -3.98984 P PPLA3 ES 55 BU 09249 0 784 Europe/Madrid 2012-03-04
-3114534 Palazuelos de la Sierra Palazuelos de la Sierra Palazuelos de la Sierra 42.21162 -3.46014 P PPLA3 ES 55 BU 09248 72 1106 Europe/Madrid 2012-03-04
-3114535 Palazuelos de Eresma Palazuelos de Eresma Palazuelos de Eresma 40.93055 -4.06071 P PPLA3 ES 55 SG 40155 2751 1084 Europe/Madrid 2012-03-04
-3114538 Palazuelo de Vedija Palazuelo de Vedija Palazuelo de Vedija 41.92966 -5.14534 P PPLA3 ES 55 VA 47109 235 785 Europe/Madrid 2012-03-04
-3114548 Palau-sator Palau-sator 41.98897 3.11016 P PPLA3 ES 56 GI 17121 282 24 Europe/Madrid 2012-03-04
-3114557 Palanques Palanques Palanques 40.718 -0.17941 P PPLA3 ES 60 CS 12087 29 692 Europe/Madrid 2012-03-04
-3114566 Palamós Palamos Palamos,Palamós 41.84843 3.12912 P PPLA3 ES 56 GI 17118 18161 11 Europe/Madrid 2012-03-04
-3114567 Palafrugell Palafrugell Palafrugell,Palafruzhel',Палафружель 41.91738 3.1631 P PPLA3 ES 56 GI 17117 22365 69 Europe/Madrid 2012-03-04
-3114568 Palafolls Palafolls Palafolls 41.66667 2.75 P PPLA3 ES 56 B 08155 0 22 Europe/Madrid 2012-03-04
-3114574 Palaciosrubios Palaciosrubios Palaciosrubios 41.05238 -5.19507 P PPLA3 ES 55 SA 37228 491 808 Europe/Madrid 2012-03-04
-3114577 Palacios de Sanabria Palacios de Sanabria Palacios de Sanabria 42.05901 -6.52362 P PPLA3 ES 55 ZA 49143 321 980 Europe/Madrid 2012-03-04
-3114581 Palacios del Sil Palacios del Sil Palacios,Palacios del Sil 42.87601 -6.4315 P PPLA3 ES 55 LE 24109 1343 873 Europe/Madrid 2012-03-04
-3114582 Palacios del Pan Palacios del Pan Palacios del Pan 41.60242 -5.87773 P PPLA3 ES 55 ZA 49142 225 718 Europe/Madrid 2012-03-04
-3114583 Palacios de la Valduerna Palacios de la Valduerna Palacios de la Valduerna 42.32773 -5.9383 P PPLA3 ES 55 LE 24108 485 796 Europe/Madrid 2012-03-04
-3114584 Palacios de la Sierra Palacios de la Sierra Palacios de la Sierra 41.96392 -3.12788 P PPLA3 ES 55 BU 09246 875 1064 Europe/Madrid 2012-03-04
-3114585 Palacios del Arzobispo Palacios del Arzobispo Palacios del Arzobispo 41.16655 -5.88933 P PPLA3 ES 55 SA 37226 193 830 Europe/Madrid 2012-03-04
-3114589 Palacios de Goda Palacios de Goda Palacios de Goda 41.11798 -4.78496 P PPLA3 ES 55 AV 05178 447 821 Europe/Madrid 2012-03-04
-3114615 Pajares de los Oteros Pajares de los Oteros Pajares de los Oteros 42.3301 -5.47313 P PPLA3 ES 55 LE 24107 409 791 Europe/Madrid 2012-03-04
-3114616 Pajares de la Lampreana Pajares de la Lampreana Pajares de la Lampreana 41.71551 -5.69351 P PPLA3 ES 55 ZA 49141 495 695 Europe/Madrid 2012-03-04
-3114617 Pajares de la Laguna Pajares de la Laguna Pajares de la Laguna 41.08754 -5.50888 P PPLA3 ES 55 SA 37225 146 828 Europe/Madrid 2012-03-04
-3114619 Pajares de Adaja Pajares de Adaja Pajares de Adaja 40.92398 -4.64048 P PPLA3 ES 55 AV 05177 185 882 Europe/Madrid 2012-03-04
-3114629 Pajarejos Pajarejos Pajarejos,Pajareros 41.38994 -3.58997 P PPLA3 ES 55 SG 40154 37 990 Europe/Madrid 2012-03-04
-3114640 Padrones de Bureba Padrones de Bureba Padrones de Bureba 42.70582 -3.53296 P PPLA3 ES 55 BU 09244 58 776 Europe/Madrid 2012-03-04
-3114643 Padrón Padron Padron,Padrón 42.73875 -8.66057 P PPLA3 ES 58 C 15065 9039 13 Europe/Madrid 2012-03-04
-3114649 Padrenda Padrenda Padrenda,San Ciprian,San Ciprián 42.13333 -8.15 P PPLA3 ES 58 OR 32056 2433 273 Europe/Madrid 2012-03-04
-3114661 Padilla de Arriba Padilla de Arriba 42.43803 -4.19094 P PPLA3 ES 55 BU 09243 102 823 Europe/Madrid 2012-03-04
-3114662 Padilla de Abajo Padilla de Abajo 42.40774 -4.17652 P PPLA3 ES 55 BU 09242 102 799 Europe/Madrid 2012-03-04
-3114664 Padiernos Padiernos Padiernos 40.62168 -4.84523 P PPLA3 ES 55 AV 05176 220 1106 Europe/Madrid 2012-03-04
-3114667 Paderne Paderne Paderne 43.28567 -8.17415 P PPLA3 ES 58 C 15064 0 158 Europe/Madrid 2012-03-04
-3114697 Oyón Oyon Oion,Oyon,Oyón 42.50571 -2.43638 P PPL ES 59 VI 01043 2778 436 Europe/Madrid 2012-01-19
-3114703 Oia Oia 42 -8.86667 P PPLA3 ES 58 PO 36036 0 205 Europe/Madrid 2012-03-04
-3114711 Oviedo Oviedo Aueda,Ov'edo,Ovetus,Oviedo,Ovijedo,Uvieu,Uviéu,awfyydw,obiedo,Аўеда,Овиједо,Овьедо,אוביידו,أوفييدو,オビエド 43.36029 -5.84476 P PPLA ES 34 O 33044 224005 237 Europe/Madrid 2010-07-12
-3114726 Outes Outes Outes 42.86189 -8.90182 P PPLA3 ES 58 C 15062 7902 57 Europe/Madrid 2012-03-04
-3114732 Outeiro Outeiro 43.14458 -7.29212 P PPL ES 58 LU 27046 4601 553 Europe/Madrid 2011-09-11
-3114745 Ourol Ourol Ourol,San Julian,San Julián 42.87013 -7.61447 P PPL ES 58 LU 27023 1328 465 Europe/Madrid 2012-01-19
-3114784 Otero de Herreros Otero de Herreros Otero de Herreros 40.82016 -4.2099 P PPLA3 ES 55 SG 40152 885 1144 Europe/Madrid 2012-03-04
-3114789 Otero de Bodas Otero de Bodas Oter de Bodas,Otero,Otero de Bodas,Otero de Bodos 41.93868 -6.15024 P PPLA3 ES 55 ZA 49139 219 829 Europe/Madrid 2012-03-04
-3114813 Oteiza Oteiza Oteiza de la Solana 42.61905 -1.95385 P PPLA3 ES 32 NA 31200 0 510 Europe/Madrid 2012-03-04
-3114824 Ossó de Sió Osso de Sio Osso de Sio,Ossó de Sió 41.75484 1.159 P PPLA3 ES 56 L 25157 220 392 Europe/Madrid 2012-03-04
-3114827 Osornillo Osornillo 42.37047 -4.29153 P PPLA3 ES 55 P 34116 82 814 Europe/Madrid 2012-03-04
-3114843 Oseja de Sajambre Oseja de Sajambre Oseja de Sajambre 43.13671 -5.03786 P PPLA3 ES 55 LE 24106 327 759 Europe/Madrid 2012-03-04
-3114844 Oseja Oseja Oseja 41.59564 -1.70026 P PPLA3 ES 52 Z 50198 56 827 Europe/Madrid 2012-03-04
-3114849 Os de Balaguer Os de Balaguer Os,Os de Balaguer,Os de Ballaguer 41.87314 0.72017 P PPLA3 ES 56 L 25156 800 462 Europe/Madrid 2012-03-04
-3114866 Urtuella Urtuella Ortuella,Urtuella 43.31113 -3.05617 P PPL ES 59 BI 48002 8556 80 Europe/Madrid 2007-11-15
-3114876 Ortigosa de Pestaño Ortigosa de Pestano Ortigos de Pestano,Ortigos de Pestaño,Ortigosa de Pestano,Ortigosa de Pestaño 41.08741 -4.39516 P PPLA3 ES 55 SG 40151 105 859 Europe/Madrid 2012-03-04
-3114878 Ortigosa del Monte Ortigosa del Monte Ortigosa del Monte 40.84182 -4.17724 P PPLA3 ES 55 SG 40901 457 1104 Europe/Madrid 2012-03-04
-3114887 Òrrius Orrius Orrius,Òrrius 41.55 2.35 P PPLA3 ES 56 B 08153 307 281 Europe/Madrid 2012-03-04
-3114888 Orrios Orrios Orrios 40.58945 -0.98614 P PPLA3 ES 52 TE 44175 178 1065 Europe/Madrid 2012-03-04
-3114900 Orpí Orpi Orpi,Orpí 41.5187 1.57536 P PPLA3 ES 56 B 08152 202 488 Europe/Madrid 2012-03-04
-3114904 Oroso Oroso Oroso 42.98333 -8.43333 P PPL ES 58 C 15078 6378 274 Europe/Madrid 2012-01-19
-3114912 Orpesa/Oropesa del Mar Orpesa/Oropesa del Mar Oropesa del Mar,Orpesa 40.1 0.15 P PPL ES 60 CS 12085 11188 -9999 Europe/Madrid 2010-04-22
-3114913 Oronz Oronz 42.86873 -1.09683 P PPLA3 ES 32 NA 31198 56 727 Europe/Madrid 2012-03-04
-3114930 Ormaiztegi Ormaiztegui Ormaiztegi,Ormaiztegui,Ormáiztegui 43.04339 -2.25673 P PPLA3 ES 59 SS 20062 0 203 Europe/Madrid 2012-03-04
-3114936 Oristà Orista 41.93333 2.06667 P PPLA3 ES 56 B 08151 591 505 Europe/Madrid 2012-03-04
-3114937 Orísoain Orisoain Orisoain,Orísoain 42.60122 -1.60403 P PPLA3 ES 32 NA 31197 83 582 Europe/Madrid 2012-03-04
-3114938 Orís Oris Caserio Oris,Caserío Oris,Oris,Orís 42.05967 2.22066 P PPLA3 ES 56 B 08150 0 712 Europe/Madrid 2012-03-04
-3114942 Orio Orio Orio 43.2787 -2.12537 P PPLA3 ES 59 SS 20061 4586 43 Europe/Madrid 2012-03-04
-3114950 Orihuela del Tremedal Orihuela del Tremedal Orihuela del Tremedal 40.55 -1.65 P PPLA3 ES 52 TE 44174 590 1439 Europe/Madrid 2011-07-31
-3114957 Oria Oria Oria 43.25541 -2.01873 P PPL ES 59 SS 20069 17842 40 Europe/Madrid 2007-01-24
-3114961 Orés Ores Ores,Orés 42.27765 -1.0015 P PPLA3 ES 52 Z 50197 103 631 Europe/Madrid 2012-03-04
-3114962 Orera Orera Orera 41.29842 -1.47849 P PPLA3 ES 52 Z 50196 132 754 Europe/Madrid 2012-03-04
-3114965 Ourense Ourense Orense,Orenso,Ourense,ourense,Оренсе,オウレンセ 42.33333 -7.85 P PPLA2 ES 58 OR 32054 107742 297 Europe/Madrid 2010-08-22
-3114967 Orendain Orendain Orendain,Orendáin 43.07896 -2.11201 P PPLA3 ES 59 SS 20905 164 376 Europe/Madrid 2012-03-04
-3114972 Orexa Oreja Oreja,Orexa 43.09382 -2.01119 P PPLA3 ES 59 SS 20060 0 414 Europe/Madrid 2012-03-04
-3114976 Orea Orea Orea 40.55724 -1.72738 P PPLA3 ES 54 GU 19204 263 1502 Europe/Madrid 2012-03-04
-3114980 Urduña Urduna Orduna,Orduña,Urduna,Urduña 42.99435 -3.00974 P PPL ES 59 BI 48074 4072 299 293 Europe/Madrid 2010-11-07
-3114985 Ordis Ordis Ordis 42.2183 2.90705 P PPLA3 ES 56 GI 17115 328 98 Europe/Madrid 2012-03-04
-3114992 Ordes Ordes 43.07654 -8.409 P PPL ES 58 C 15059 12757 277 Europe/Madrid 2010-04-22
-3114997 Orkoien Orkoien Orcoyen,Orkoien 42.8238 -1.70485 P PPL ES 32 NA 31193 2087 445 Europe/Madrid 2007-01-31
-3114998 Orcajo Orcajo 41.10975 -1.48933 P PPLA3 ES 52 Z 50195 36 927 Europe/Madrid 2012-03-04
-3115001 Orbita Orbita Orbita 40.99846 -4.64833 P PPLA3 ES 55 AV 05174 102 867 Europe/Madrid 2012-03-04
-3115006 Orbara Orbara Orbara 42.96728 -1.24213 P PPLA3 ES 32 NA 31196 57 774 Europe/Madrid 2012-03-04
-3115022 Oquillas Oquillas Oquillas 41.83085 -3.70564 P PPLA3 ES 55 BU 09239 75 908 Europe/Madrid 2012-03-04
-3115028 Onzonilla Onzonilla Onzonilla 42.52435 -5.5816 P PPLA3 ES 55 LE 24105 1566 808 Europe/Madrid 2012-03-04
-3115037 Ontiñena Ontinena 41.67663 0.08858 P PPLA3 ES 52 HU 22165 611 215 Europe/Madrid 2012-03-04
-3115056 Ondarroa Ondarroa Ondarroa,Ondárroa 43.31667 -2.41667 P PPLA3 ES 59 BI 48073 9546 180 Europe/Madrid 2012-03-04
-3115061 Oncala Oncala Oncala 41.97021 -2.31493 P PPLA3 ES 55 SO 42135 107 1304 Europe/Madrid 2012-03-04
-3115063 Oñati Onate Onate,Onati,Oñate,Oñati 43.03262 -2.40997 P PPLA3 ES 59 SS 20059 10896 248 Europe/Madrid 2012-03-04
-3115068 Oña Ona Ona,Oña 42.734 -3.41459 P PPLA3 ES 55 BU 09238 1452 589 Europe/Madrid 2012-03-04
-3115082 Oltza Oltza Oltza,Olza 42.85 -1.76667 P PPL ES 32 NA 31193 1326 420 Europe/Madrid 2007-01-31
-3115083 Olvés Olves Olves,Olvés 41.23965 -1.64647 P PPLA3 ES 52 Z 50194 130 795 Europe/Madrid 2012-03-04
-3115088 Olvega Olvega Olvega 41.77901 -1.98391 P PPL ES 55 SO 42134 3346 1040 Europe/Madrid 2012-01-19
-3115093 Olot Olot Olot,Олот 42.18096 2.49012 P PPLA3 ES 56 GI 17114 33524 438 Europe/Madrid 2012-03-04
-3115094 Olost Olost Olost 41.9854 2.09458 P PPL ES 56 B 08151 1187 572 Europe/Madrid 2012-01-19
-3115095 Olóriz Oloriz 42.63522 -1.61276 P PPLA3 ES 32 NA 31192 212 599 Europe/Madrid 2012-03-04
-3115097 Olombrada Olombrada Olombrada 41.41492 -4.16071 P PPLA3 ES 55 SG 40149 781 875 Europe/Madrid 2012-03-04
-3115098 Olocau del Rey Olocau del Rey Olocau del Rei,Olocau del Rey 40.63775 -0.34041 P PPLA3 ES 60 CS 12083 132 1044 Europe/Madrid 2011-07-31
-3115100 Olmos de Peñafiel Olmos de Penafiel Olmos de Penafiel,Olmos de Peñafiel 41.57142 -4.04316 P PPLA3 ES 55 VA 47106 79 790 Europe/Madrid 2012-03-04
-3115101 Olmos de Ojeda Olmos de Ojeda Olmos de Ojeda 42.72274 -4.42446 P PPLA3 ES 55 P 34114 287 923 Europe/Madrid 2012-03-04
-3115103 Olmos de Esgueva Olmos de Esgueva Olmos de Esgueva 41.68815 -4.52254 P PPLA3 ES 55 VA 47105 210 731 Europe/Madrid 2012-03-04
-3115113 Olmillos de Muñó Olmillos de Muno 42.20322 -3.93911 P PPLA3 ES 55 BU 09236 39 812 Europe/Madrid 2012-03-04
-3115114 Olmillos de Castro Olmillos de Castro Olmillos de Castro 41.7318 -5.96791 P PPLA3 ES 55 ZA 49138 368 767 Europe/Madrid 2012-03-04
-3115117 Olmedo de Camaces Olmedo de Camaces Olmedo de Camaces 40.87967 -6.6236 P PPLA3 ES 55 SA 37223 137 710 Europe/Madrid 2012-03-04
-3115118 Olmedo Olmedo Olmedo 41.28706 -4.68878 P PPLA3 ES 55 VA 47104 3570 767 Europe/Madrid 2012-03-04
-3115119 Olmedillo de Roa Olmedillo de Roa Olmedillo de Roa 41.78362 -3.9342 P PPLA3 ES 55 BU 09235 186 842 Europe/Madrid 2012-03-04
-3115122 Olmedilla de Eliz Olmedilla de Eliz Olmedilla de Eliz 40.30232 -2.41952 P PPLA3 ES 54 CU 16143 30 876 Europe/Madrid 2012-03-04
-3115125 Olmeda de la Cuesta Olmeda de la Cuesta Olmeda de la Cuesta 40.31088 -2.47592 P PPLA3 ES 54 CU 16140 43 901 Europe/Madrid 2012-03-04
-3115126 Olmeda de Cobeta Olmeda de Cobeta Olmeda de Cobeta 40.85971 -2.1828 P PPLA3 ES 54 GU 19201 112 1135 Europe/Madrid 2012-03-04
-3115143 Ollauri Ollauri Ollauri 42.54256 -2.83448 P PPLA3 ES 27 LO 26111 299 497 Europe/Madrid 2012-03-04
-3115150 Olivella Olivella Olivella 41.31667 1.81667 P PPLA3 ES 56 B 08148 2264 207 Europe/Madrid 2012-03-04
-3115155 Olivares de Duero Olivares de Duero Olivares de Duero 41.63755 -4.36547 P PPLA3 ES 55 VA 47103 326 735 Europe/Madrid 2012-03-04
-3115159 Oliva de Plasencia Oliva de Plasencia Oliva,Oliva de Plasencia 40.11227 -6.08648 P PPLA3 ES 57 CC 10136 260 410 Europe/Madrid 2012-03-04
-3115161 Olius Olius 42.01035 1.5646 P PPLA3 ES 56 L 25151 632 551 Europe/Madrid 2012-03-04
-3115162 Olite Olite Oligitum,Olite 42.47971 -1.65196 P PPLA3 ES 32 NA 31191 3431 394 Europe/Madrid 2012-03-04
-3115165 Oliete Oliete 40.99791 -0.67429 P PPLA3 ES 52 TE 44172 474 557 Europe/Madrid 2012-03-04
-3115170 Oliana Oliana Oliana 42.06895 1.31353 P PPL ES 56 L 25044 1866 460 Europe/Madrid 2012-01-19
-3115171 Olesa de Montserrat Olesa de Montserrat Olesa,Olesa de Montserrat 41.54372 1.89408 P PPL ES 56 B 08076 23301 116 Europe/Madrid 2012-01-19
-3115172 Olesa de Bonesvalls Olesa de Bonesvalls Olesa de Bonesvall,Olesa de Bonesvalls 41.35435 1.84907 P PPL ES 56 B 08020 1396 276 Europe/Madrid 2012-01-19
-3115176 Olejua Olejua Olejua 42.62329 -2.14202 P PPLA3 ES 32 NA 31190 55 574 Europe/Madrid 2012-03-04
-3115177 Oleiros Oleiros Oleiros,Olejros,Santa Maria,Santa María,Олейрос 43.33333 -8.31667 P PPLA3 ES 58 C 15058 33443 127 Europe/Madrid 2012-03-04
-3115184 Olea de Boedo Olea de Boedo Olea de Boedo 42.6099 -4.4504 P PPLA3 ES 55 P 34113 42 933 Europe/Madrid 2012-03-04
-3115187 Olvan Olvan Olban,Olbán,Olvan 42.06667 1.9 P PPLA3 ES 56 B 08144 0 608 Europe/Madrid 2012-03-04
-3115188 Olba Olba Olba 40.13333 -0.61667 P PPLA3 ES 52 TE 44171 242 647 Europe/Madrid 2011-07-31
-3115190 Olazagutía Olazagutia 42.87584 -2.19538 P PPL ES 32 NA 31189 1713 545 Europe/Madrid 2010-11-07
-3115206 Olaberria Olaberria Olaberria,Olaberría 43.02726 -2.20349 P PPLA3 ES 59 SS 20058 930 325 Europe/Madrid 2012-03-04
-3115213 Ojos Negros Ojos Negros Ojos Negros 40.7375 -1.49875 P PPLA3 ES 52 TE 44169 526 1148 Europe/Madrid 2012-03-04
-3115214 Ojos-Albos Ojos-Albos Ojos-Albos 40.70596 -4.51633 P PPLA3 ES 55 AV 05173 58 1232 Europe/Madrid 2012-03-04
-3115217 Ojacastro Ojacastro Ojacastro 42.3472 -3.0049 P PPLA3 ES 27 LO 26110 218 790 Europe/Madrid 2012-03-04
-3115219 Oitz Oitz Oitz,Oiz 43.11667 -1.68333 P PPLA3 ES 32 NA 31187 0 246 Europe/Madrid 2012-03-04
-3115233 Oimbra Oimbra 41.88554 -7.47216 P PPL ES 58 OR 32050 1977 396 Europe/Madrid 2008-09-27
-3115244 Oencia Oencia 42.54758 -6.96859 P PPLA3 ES 55 LE 24103 579 868 Europe/Madrid 2012-03-04
-3115248 Odón Odon Odon,Odón 40.88417 -1.56792 P PPLA3 ES 52 TE 44168 257 1091 Europe/Madrid 2012-03-04
-3115252 Òdena Odena Odena,Òdena 41.6 1.65 P PPLA3 ES 56 B 08143 2910 366 Europe/Madrid 2012-03-04
-3115257 Ocón Ocon Econ,Ecón,Ocon,Ocón 42.29898 -2.2402 P PPLA3 ES 27 LO 26108 401 853 Europe/Madrid 2012-03-04
-3115259 Oco Oco Oco 42.63828 -2.16476 P PPLA3 ES 32 NA 31184 71 495 Europe/Madrid 2012-03-04
-3115264 Ochánduri Ochanduri Ochanduri,Ochánduri 42.52525 -3.00415 P PPLA3 ES 27 LO 26109 76 551 Europe/Madrid 2012-03-04
-3115266 Otxandio Otxandio Ochandiano,Otxandio 43.03333 -2.65 P PPLA3 ES 59 BI 48072 0 580 Europe/Madrid 2012-03-04
-3115269 Ocentejo Ocentejo Ocentejo 40.77234 -2.39764 P PPLA3 ES 54 GU 19199 36 865 Europe/Madrid 2012-03-04
-3115288 Obón Obon Obon,Obón 40.9045 -0.723 P PPLA3 ES 52 TE 44167 70 701 Europe/Madrid 2012-03-04
-3115299 Obanos Obanos Obanos 42.68072 -1.78493 P PPLA3 ES 32 NA 31183 897 416 Europe/Madrid 2012-03-04
-3115303 Nuñomoral Nunomoral Nunomoral,Nuñomoral 40.40692 -6.24636 P PPLA3 ES 57 CC 10135 1540 502 Europe/Madrid 2012-03-04
-3115304 Nuño Gómez Nuno Gomez Nuno Gomez,Nuño Gómez 40.11383 -4.61978 P PPLA3 ES 54 TO 45120 204 472 Europe/Madrid 2012-03-04
-3115307 Numancia de la Sagra Numancia de la Sagra Numancia de la Sagra 40.07395 -3.85118 P PPLA3 ES 54 TO 45119 3707 521 Europe/Madrid 2012-03-04
-3115311 Nuez de Ebro Nuez de Ebro Nuez de Ebro 41.58957 -0.66774 P PPLA3 ES 52 Z 50193 637 182 Europe/Madrid 2012-03-04
-3115314 Nuevo Baztán Nuevo Baztan Nuevo Baztan,Nuevo Baztán 40.36731 -3.24125 P PPLA3 ES 29 M 28100 5503 831 Europe/Madrid 2012-03-04
-3115317 Nueva Villa de las Torres Nueva Villa de las Torres Nueva Villa de las Torres 41.26762 -5.05685 P PPLA3 ES 55 VA 47102 386 745 Europe/Madrid 2012-03-04
-3115319 Nuévalos Nuevalos Nuevalos,Nuévalos 41.21185 -1.78954 P PPLA3 ES 52 Z 50192 384 718 Europe/Madrid 2012-03-04
-3115327 Nueno Nueno Nueno 42.26697 -0.43906 P PPLA3 ES 52 HU 22163 451 726 Europe/Madrid 2012-03-04
-3115331 Noia Noia 42.78583 -8.88734 P PPLA3 ES 58 C 15042 0 20 Europe/Madrid 2010-11-04
-3115334 Novillas Novillas Novillas 41.93334 -1.39412 P PPLA3 ES 52 Z 50191 664 242 Europe/Madrid 2012-03-04
-3115335 Noviercas Noviercas Noviercas 41.71194 -2.03433 P PPLA3 ES 55 SO 42132 212 1096 Europe/Madrid 2012-03-04
-3115346 Novallas Novallas Novallas 41.95 -1.7 P PPLA3 ES 52 Z 50190 804 428 Europe/Madrid 2011-07-31
-3115349 Novales Novales Novales 42.03201 -0.287 P PPLA3 ES 52 HU 22162 198 457 Europe/Madrid 2012-03-04
-3115363 Noreña Norena 43.39364 -5.70662 P PPLA3 ES 34 O 33042 4647 200 Europe/Madrid 2012-03-04
-3115370 Nonaspe Nonaspe Nonaspe 41.20881 0.24775 P PPLA3 ES 52 Z 50189 1041 182 Europe/Madrid 2012-03-04
-3115372 Nombrevilla Nombrevilla 41.1073 -1.35904 P PPLA3 ES 52 Z 50188 47 919 Europe/Madrid 2012-03-04
-3115373 Nombela Nombela Nombela 40.1553 -4.50223 P PPLA3 ES 54 TO 45117 998 484 Europe/Madrid 2012-03-04
-3115374 Nolay Nolay Nolay 41.52721 -2.35061 P PPLA3 ES 55 SO 42131 88 1077 Europe/Madrid 2012-03-04
-3115376 Noja Noja Noja 43.48917 -3.52306 P PPLA3 ES 39 S 39047 2255 23 Europe/Madrid 2012-03-04
-3115383 Nogueruelas Nogueruelas Nogueroles,Nogueruelas 40.23622 -0.63606 P PPLA3 ES 52 TE 44165 230 1130 Europe/Madrid 2012-03-04
-3115386 Nogueras Nogueras Nogueras 41.13475 -1.06708 P PPLA3 ES 52 TE 44164 17 864 Europe/Madrid 2012-03-04
-3115394 Nogueira de Ramuín Nogueira de Ramuin Nogueira 42.41712 -7.74982 P PPLA3 ES 58 OR 32052 2559 572 Europe/Madrid 2012-03-04
-3115409 Nogal de las Huertas Nogal de las Huertas Nogal de las Huertas 42.39255 -4.64156 P PPLA3 ES 55 P 34112 59 847 Europe/Madrid 2012-03-04
-3115459 Niharra Niharra Niharra 40.58945 -4.83895 P PPLA3 ES 55 AV 05172 178 1093 Europe/Madrid 2012-03-04
-3115461 Nigüella Niguella Niguella,Nigüella 41.53621 -1.5245 P PPLA3 ES 52 Z 50187 92 481 Europe/Madrid 2012-03-04
-3115463 Nigrán Nigran San Felix,San Félix 42.14153 -8.80656 P PPLA3 ES 58 PO 36035 18021 39 Europe/Madrid 2012-03-04
-3115469 Nieva de Cameros Nieva de Cameros Nieva de Cameros 42.21835 -2.667 P PPLA3 ES 27 LO 26107 156 1006 Europe/Madrid 2012-03-04
-3115473 Nieva Nieva Nieva 41.08191 -4.42501 P PPLA3 ES 55 SG 40148 349 841 Europe/Madrid 2012-03-04
-3115485 Nestares Nestares Nestares 42.27014 -2.61993 P PPLA3 ES 27 LO 26106 0 866 Europe/Madrid 2012-03-04
-3115492 Nepas Nepas Nepas 41.52639 -2.39866 P PPLA3 ES 55 SO 42130 82 1047 Europe/Madrid 2012-03-04
-3115505 Neila de San Miguel Neila de San Miguel Neila de San Miguel 40.42372 -5.6509 P PPLA3 ES 55 AV 05171 99 1163 Europe/Madrid 2012-03-04
-3115508 Neila Neila Neila 42.06016 -2.99691 P PPLA3 ES 55 BU 09232 249 1175 Europe/Madrid 2012-03-04
-3115519 Negrilla de Palencia Negrilla de Palencia Negrilla de Palencia 41.09185 -5.59165 P PPLA3 ES 55 SA 37222 118 824 Europe/Madrid 2012-03-04
-3115523 Negreira Negreira Negreira 42.90402 -8.74273 P PPL ES 58 C 15013 6462 178 Europe/Madrid 2012-01-19
-3115524 Negredo Negredo Negredo 41.02738 -2.85878 P PPLA3 ES 54 GU 19198 21 988 Europe/Madrid 2012-03-04
-3115539 Nebreda Nebreda Nebreda 41.96881 -3.6343 P PPLA3 ES 55 BU 09231 92 917 Europe/Madrid 2012-03-04
-3115543 Nazar Nazar 42.63686 -2.27966 P PPLA3 ES 32 NA 31182 57 744 Europe/Madrid 2012-03-04
-3115547 Navianos de Valverde Navianos de Valverde Navianos de Valverde 41.95319 -5.81781 P PPLA3 ES 55 ZA 49137 254 710 Europe/Madrid 2012-03-04
-3115550 Navia de Suarna Navia de Suarna Navia de Suarna 42.96667 -7 P PPLA3 ES 58 LU 27034 1669 292 Europe/Madrid 2012-03-04
-3115553 Navia Navia Navia 43.53544 -6.71935 P PPLA3 ES 34 O 33041 9006 38 Europe/Madrid 2012-03-04
-3115575 Navatejares Navatejares Navatejares 40.33602 -5.5322 P PPLA3 ES 55 AV 05170 81 1048 Europe/Madrid 2012-03-04
-3115576 Navatalgordo Navatalgordo Navatalgordo 40.4152 -4.87155 P PPLA3 ES 55 AV 05169 302 1268 Europe/Madrid 2012-03-04
-3115577 Navata Navata Navata 42.22353 2.8611 P PPLA3 ES 56 GI 17111 857 148 Europe/Madrid 2012-03-04
-3115580 Navasfrías Navasfrias Navasfrias,Navasfrías 40.29679 -6.81975 P PPLA3 ES 55 SA 37221 623 905 Europe/Madrid 2012-03-04
-3115584 Navas de Oro Navas de Oro Navas de Oro 41.19627 -4.43754 P PPLA3 ES 55 SG 40145 1435 808 Europe/Madrid 2012-03-04
-3115585 Navas del Rey Navas del Rey Navas del Rey 40.3861 -4.25117 P PPLA3 ES 29 M 28099 2342 719 Europe/Madrid 2012-03-04
-3115588 Navas de Bureba Navas de Bureba Navas de Bureba 42.6809 -3.32698 P PPLA3 ES 55 BU 09230 45 752 Europe/Madrid 2012-03-04
-3115589 Navascués Navascues Navascues,Navascués 42.71758 -1.11744 P PPLA3 ES 32 NA 31181 198 616 Europe/Madrid 2012-03-04
-3115593 Navàs Navas Navars,Navas,Navàs 41.89998 1.87763 P PPL ES 56 B 08018 5696 376 Europe/Madrid 2010-04-04
-3115598 Navarrevisca Navarrevisca Navarrevisca 40.36417 -4.89352 P PPLA3 ES 55 AV 05167 411 1136 Europe/Madrid 2012-03-04
-3115602 Navarrete Navarrete 42.43068 -2.56466 P PPLA3 ES 27 LO 26105 0 502 Europe/Madrid 2012-03-04
-3115604 Navarredondilla Navarredondilla Navarredondilla 40.45416 -4.82199 P PPLA3 ES 55 AV 05166 0 1138 Europe/Madrid 2012-03-04
-3115607 Navarredonda de la Rinconada Navarredonda de la Rinconada Navarredonda de la Rinconada 40.60657 -6.01169 P PPLA3 ES 55 SA 37219 269 1026 Europe/Madrid 2012-03-04
-3115611 Navaridas Navaridas Nabaridas,Navaridas 42.54566 -2.6265 P PPLA3 ES 59 VI 01041 207 501 Europe/Madrid 2012-03-04
-3115612 Navares de las Cuevas Navares de las Cuevas Navares de las Cuevas 41.41431 -3.75076 P PPLA3 ES 55 SG 40144 29 1117 Europe/Madrid 2012-03-04
-3115613 Navares de Enmedio Navares de Enmedio Navares de Enmedio 41.38096 -3.72283 P PPLA3 ES 55 SG 40143 129 1041 Europe/Madrid 2012-03-04
-3115614 Navares de Ayuso Navares de Ayuso Navares de Ayuso 41.37447 -3.70745 P PPLA3 ES 55 SG 40142 71 1017 Europe/Madrid 2012-03-04
-3115615 Navardún Navardun Navardun,Navardún 42.51255 -1.14822 P PPLA3 ES 52 Z 50186 54 484 Europe/Madrid 2012-03-04
-3115616 Navarcles Navarcles Navarcles 41.75171 1.90357 P PPL ES 56 B 08213 5548 256 Europe/Madrid 2012-01-19
-3115617 Navaquesera Navaquesera Navaquesera 40.42558 -4.91108 P PPLA3 ES 55 AV 05164 47 1528 Europe/Madrid 2012-03-04
-3115624 Navamorcuende Navamorcuende Navamorcuende 40.15659 -4.78625 P PPLA3 ES 54 TO 45114 702 772 Europe/Madrid 2012-03-04
-3115625 Navamorales Navamorales Navamorales 40.47618 -5.47893 P PPLA3 ES 55 SA 37218 127 995 Europe/Madrid 2012-03-04
-3115629 Navaluenga Navaluenga Navaluenga 40.41123 -4.70897 P PPLA3 ES 55 AV 05163 2118 764 Europe/Madrid 2012-03-04
-3115633 Navalperal de Tormes Navalperal de Tormes Navalperal de Tormes 40.3528 -5.30084 P PPLA3 ES 55 AV 05162 134 1298 Europe/Madrid 2012-03-04
-3115634 Navalperal de Pinares Navalperal de Pinares Navalperal,Navalperal de Pinares 40.59398 -4.41149 P PPLA3 ES 55 AV 05161 1174 1273 Europe/Madrid 2012-03-04
-3115635 Navalosa Navalosa Navalesa,Navalosa,Navalosal 40.40212 -4.93 P PPLA3 ES 55 AV 05160 405 1321 Europe/Madrid 2012-03-04
-3115640 Navalmoral de Béjar Navalmoral de Bejar Navalmoral de Bejar,Navalmoral de Béjar 40.42264 -5.7831 P PPLA3 ES 55 SA 37217 63 924 Europe/Madrid 2012-03-04
-3115641 Navalmoral Navalmoral 40.46028 -4.76859 P PPLA3 ES 55 AV 05158 491 1062 Europe/Madrid 2012-03-04
-3115642 Navalmanzano Navalmanzano Navalmanzano 41.21594 -4.25631 P PPLA3 ES 55 SG 40141 1179 838 Europe/Madrid 2012-03-04
-3115650 Navalilla Navalilla Navalilla 41.34146 -3.93211 P PPLA3 ES 55 SG 40140 137 902 Europe/Madrid 2012-03-04
-3115656 Navales Navales Navales 40.78857 -5.47863 P PPLA3 ES 55 SA 37216 358 850 Europe/Madrid 2012-03-04
-3115657 Navaleno Navaleno Navaleno 41.8383 -3.00418 P PPLA3 ES 55 SO 42129 997 1116 Europe/Madrid 2012-03-04
-3115659 Navalcarnero Navalcarnero Navalcarnero 40.28908 -4.01197 P PPLA3 ES 29 M 28096 21584 663 Europe/Madrid 2012-03-04
-3115660 Navalcán Navalcan Navalacan,Navalcan,Navalcán 40.06667 -5.08333 P PPLA3 ES 54 TO 45110 2227 405 Europe/Madrid 2011-07-31
-3115665 Navalagamella Navalagamella Navalagamella 40.46894 -4.12334 P PPLA3 ES 29 M 28095 1700 760 Europe/Madrid 2012-03-04
-3115666 Navalafuente Navalafuente Navalafuente 40.82063 -3.67266 P PPLA3 ES 29 M 28094 765 898 Europe/Madrid 2012-03-04
-3115667 Navalacruz Navalacruz Navalacruz 40.43992 -4.93122 P PPLA3 ES 55 AV 05157 271 1236 Europe/Madrid 2012-03-04
-3115668 Naval Naval Nabal,Naval 42.19504 0.15183 P PPLA3 ES 52 HU 22160 295 630 Europe/Madrid 2012-03-04
-3115669 Navajún Navajun 41.96667 -2.1 P PPLA3 ES 27 LO 26104 18 955 Europe/Madrid 2011-07-31
-3115673 Navahondilla Navahondilla Navahondilla 40.3251 -4.49661 P PPLA3 ES 55 AV 05156 211 710 Europe/Madrid 2012-03-04
-3115684 Navafría Navafria Navafria,Navafría 41.05514 -3.82478 P PPLA3 ES 55 SG 40139 345 1201 Europe/Madrid 2012-03-04
-3115685 Navaescurial Navaescurial Navaescurial 40.47163 -5.27756 P PPLA3 ES 55 AV 05155 73 1211 Europe/Madrid 2012-03-04
-3115686 Navadijos Navadijos Navadijos 40.42524 -5.08285 P PPLA3 ES 55 AV 05154 57 1515 Europe/Madrid 2012-03-04
-3115687 Nava de Sotrobal Nava de Sotrobal Nava de Sotrobal 40.89039 -5.28562 P PPLA3 ES 55 SA 37215 197 857 Europe/Madrid 2012-03-04
-3115689 Nava de Roa Nava de Roa Nava Cega,Nava de Roa 41.61326 -3.96442 P PPLA3 ES 55 BU 09229 240 788 Europe/Madrid 2012-03-04
-3115691 Nava del Rey Nava del Rey Nava del Rey 41.33036 -5.08095 P PPLA3 ES 55 VA 47101 2110 751 Europe/Madrid 2012-03-04
-3115695 Nava del Barco Nava del Barco Nava del Barco 40.29321 -5.54022 P PPLA3 ES 55 AV 05153 136 1139 Europe/Madrid 2012-03-04
-3115696 Nava de la Asunción Nava de la Asuncion Nava de la Asuncion,Nava de la Asunción 41.15586 -4.48751 P PPLA3 ES 55 SG 40138 2662 809 Europe/Madrid 2012-03-04
-3115697 Nava de Francia Nava de Francia Nava de Francia 40.53572 -6.11628 P PPLA3 ES 55 SA 37214 149 1042 Europe/Madrid 2012-03-04
-3115698 Nava de Béjar Nava de Bejar Nava de Bejar,Nava de Béjar 40.47518 -5.67856 P PPLA3 ES 55 SA 37213 111 1048 Europe/Madrid 2012-03-04
-3115699 Nava de Arévalo Nava de Arevalo Nava de Arevalo,Nava de Arévalo 40.97802 -4.77573 P PPLA3 ES 55 AV 05152 934 868 Europe/Madrid 2012-03-04
-3115700 Navaconcejo Navaconcejo Navaconcejo 40.17712 -5.83108 P PPLA3 ES 57 CC 10130 2121 462 Europe/Madrid 2012-03-04
-3115704 Navacerrada Navacerrada 40.72905 -4.01696 P PPLA3 ES 29 M 28093 2402 1199 Europe/Madrid 2012-03-04
-3115705 Navacepedilla de Corneja Navacepedilla de Corneja Navacepedilla de Corneja 40.48602 -5.1838 P PPLA3 ES 55 AV 05151 155 1257 Europe/Madrid 2012-03-04
-3115707 Navacarros Navacarros Navacarros 40.39776 -5.71425 P PPLA3 ES 55 SA 37212 143 1127 Europe/Madrid 2012-03-04
-3115722 Nava Nava Nava 43.3581 -5.51064 P PPLA3 ES 34 O 33040 0 260 Europe/Madrid 2012-03-04
-3115730 Narros de Saldueña Narros de Salduena Narros de Salduena,Narros de Saldueña 40.87268 -4.86908 P PPLA3 ES 55 AV 05149 142 898 Europe/Madrid 2012-03-04
-3115731 Narros de Matalayegua Narros de Matalayegua Narros de Matalayegua 40.6988 -5.92658 P PPLA3 ES 55 SA 37211 260 986 Europe/Madrid 2012-03-04
-3115732 Narros del Puerto Narros del Puerto Narros del Puerto 40.54131 -4.99292 P PPLA3 ES 55 AV 05148 43 1152 Europe/Madrid 2012-03-04
-3115733 Narros del Castillo Narros del Castillo Narros del Castillo 40.85869 -5.0601 P PPLA3 ES 55 AV 05147 208 952 Europe/Madrid 2012-03-04
-3115735 Narros Narros Narros 41.84923 -2.29474 P PPLA3 ES 55 SO 42128 52 1114 Europe/Madrid 2012-03-04
-3115737 Narrillos del Rebollar Narrillos del Rebollar Narrillos del Rebollar 40.66488 -4.96577 P PPLA3 ES 55 AV 05145 65 1380 Europe/Madrid 2012-03-04
-3115738 Narrillos del Álamo Narrillos del Alamo Narrillos del Alamo,Narrillos del Álamo 40.56673 -5.46584 P PPLA3 ES 55 AV 05144 136 1125 Europe/Madrid 2012-03-04
-3115739 Narón Naron Naron,Narón,San Julian,San Julian de Naron,Нарон 43.51667 -8.15278 P PPLA3 ES 58 C 15054 37712 7 Europe/Madrid 2012-03-04
-3115775 Nalec Nalec Nalec,Nalech 41.55 1.11667 P PPLA3 ES 56 L 25145 0 525 Europe/Madrid 2012-03-04
-3115776 Nalda Nalda Nalda 42.33467 -2.4871 P PPLA3 ES 27 LO 26103 960 633 Europe/Madrid 2012-03-04
-3115780 Nájera Najera Naiara,Najera,Nájera 42.41822 -2.72865 P PPLA3 ES 27 LO 26102 7789 496 Europe/Madrid 2012-03-04
-3115787 Nafría de Ucero Nafria de Ucero Nafria de Ucero,Nafría de Ucero 41.72273 -3.09499 P PPLA3 ES 55 SO 42127 79 1023 Europe/Madrid 2012-03-04
-3115798 Mutiloa Mutiloa Mutiloa 43.02288 -2.27257 P PPLA3 ES 59 SS 20057 154 240 Europe/Madrid 2012-03-04
-3115812 Muruzábal Muruzabal 42.69051 -1.76931 P PPLA3 ES 32 NA 31180 304 447 Europe/Madrid 2012-03-04
-3115823 Muros de Nalón Muros de Nalon Muros,Muros de Nalon,Muros de Nalón,Santa Maria de Muros de Nalon,Santa María de Muros de Nalón 43.54277 -6.10348 P PPL ES 34 O 33051 2051 114 Europe/Madrid 2012-01-19
-3115824 Muros Muros Aebura,Ebora,Muros 42.77617 -9.06032 P PPLA3 ES 58 C 15053 9999 14 Europe/Madrid 2012-04-01
-3115826 Muro en Cameros Muro en Cameros Muro en Cameros 42.22509 -2.53038 P PPLA3 ES 27 LO 26101 34 1106 Europe/Madrid 2012-03-04
-3115829 Muro de Aguas Muro de Aguas Muro de Aguas,Muro de Ambas Aguas 42.13364 -2.11175 P PPLA3 ES 27 LO 26100 59 893 Europe/Madrid 2012-03-04
-3115835 Murillo el Fruto Murillo el Fruto Murillo el Fruto 42.39272 -1.46034 P PPLA3 ES 32 NA 31179 747 360 Europe/Madrid 2012-03-04
-3115837 Murillo de Río Leza Murillo de Rio Leza Murillo 42.40099 -2.32464 P PPLA3 ES 27 LO 26099 1231 418 Europe/Madrid 2012-03-04
-3115845 Murieta Murieta 42.65618 -2.15452 P PPLA3 ES 32 NA 31177 272 465 Europe/Madrid 2012-03-04
-3115847 Muriel Viejo Muriel Viejo Muriel Viejo 41.78261 -2.91522 P PPLA3 ES 55 SO 42125 67 1089 Europe/Madrid 2012-03-04
-3115853 Muriel de la Fuente Muriel de la Fuente Muriel de la Fuente 41.7232 -2.86 P PPLA3 ES 55 SO 42124 97 1014 Europe/Madrid 2012-03-04
-3115860 Murias de Paredes Murias de Paredes Murias de Paredes 42.85027 -6.19164 P PPLA3 ES 55 LE 24101 568 1256 Europe/Madrid 2012-03-04
-3115874 Murguía Murguia Murgia,Murguia,Murguia Zuya,Zuya 42.95686 -2.81945 P PPL ES 59 VI 01063 2340 617 Europe/Madrid 2007-06-18
-3115876 Murero Murero Murero 41.15967 -1.48275 P PPLA3 ES 52 Z 50184 139 722 Europe/Madrid 2012-03-04
-3115878 Murchante Murchante Murchante 42.03185 -1.65582 P PPLA3 ES 32 NA 31176 3320 323 Europe/Madrid 2012-03-04
-3115879 Muras Muras Muras 43.46685 -7.72383 P PPLA3 ES 58 LU 27033 943 470 Europe/Madrid 2012-03-04
-3115881 Mura Mura Mura 41.69943 1.97612 P PPLA3 ES 56 B 08139 204 461 Europe/Madrid 2012-03-04
-3115886 Muñoveros Munoveros Munoveros,Muñoveros 41.17234 -3.95161 P PPLA3 ES 55 SG 40136 196 960 Europe/Madrid 2012-03-04
-3115887 Muñotello Munotello Munotello,Muñotello 40.54236 -5.04187 P PPLA3 ES 55 AV 05143 106 1156 Europe/Madrid 2012-03-04
-3115888 Muñosancho Munosancho Munosancho,Muñosancho 40.92097 -5.03558 P PPLA3 ES 55 AV 05142 140 906 Europe/Madrid 2012-03-04
-3115890 Muñopepe Munopepe Munopepe,Muñopepe 40.63408 -4.81876 P PPLA3 ES 55 AV 05141 102 1125 Europe/Madrid 2012-03-04
-3115891 Muñopedro Munopedro Munopedro,Muñopedro 40.88804 -4.47212 P PPLA3 ES 55 SG 40135 381 1022 Europe/Madrid 2012-03-04
-3115894 Muñomer del Peco Munomer del Peco Munomer del Peco,Muñomer del Peco 40.85878 -4.87992 P PPLA3 ES 55 AV 05140 121 897 Europe/Madrid 2012-03-04
-3115895 Muñogrande Munogrande Munegrande,Munogrande,Muñogrande 40.82181 -4.92224 P PPLA3 ES 55 AV 05139 93 944 Europe/Madrid 2012-03-04
-3115896 Muñogalindo Munogalindo Munogalindo,Muñogalindo 40.60324 -4.89895 P PPLA3 ES 55 AV 05138 435 1134 Europe/Madrid 2012-03-04
-3115900 Munilla Munilla Munilla 42.189 -2.29506 P PPLA3 ES 27 LO 26098 124 803 Europe/Madrid 2012-03-04
-3115902 Muniesa Muniesa Muniesa 41.03308 -0.81141 P PPLA3 ES 52 TE 44161 719 789 Europe/Madrid 2012-03-04
-3115904 Muñico Munico Munico,Muñico 40.70678 -5.02717 P PPLA3 ES 55 AV 05136 126 1090 Europe/Madrid 2012-03-04
-3115907 Mungia Mungia Mungia,Munguia,Munguía 43.35 -2.83333 P PPLA3 ES 59 BI 48069 16209 49 Europe/Madrid 2012-03-04
-3115913 Munébrega Munebrega Munebrega,Munébrega 41.25203 -1.70557 P PPLA3 ES 52 Z 50183 436 749 Europe/Madrid 2012-03-04
-3115916 Mundaka Mundaka Mundaca,Mundaka 43.40804 -2.69852 P PPLA3 ES 59 BI 48068 0 6 Europe/Madrid 2012-03-04
-3115921 Muñana Munana Munana,Muñana 40.59042 -5.01447 P PPLA3 ES 55 AV 05135 530 1172 Europe/Madrid 2012-03-04
-3115933 Muiños Muinos 41.9561 -7.97396 P PPL ES 58 OR 32051 1962 625 Europe/Madrid 2011-09-11
-3115941 Mugia Mugia Mugia,Mukhija,Muxia,Muxía,Мухия 43.10414 -9.21791 P PPL ES 58 C 15052 5423 9 Europe/Madrid 2012-01-19
-3115943 Mugardos Mugardos Mugardos 43.4604 -8.25507 P PPLA3 ES 58 C 15051 5514 27 Europe/Madrid 2012-03-04
-3115945 Muga de Sayago Muga de Sayago Muga de Sayago 41.38779 -6.19777 P PPLA3 ES 55 ZA 49136 460 782 Europe/Madrid 2012-03-04
-3115956 Muelas de los Caballeros Muelas de los Caballeros Muelas de los Caballeros 42.12843 -6.33719 P PPLA3 ES 55 ZA 49134 247 997 Europe/Madrid 2012-03-04
-3115958 Muel Muel Muel 41.46633 -1.08503 P PPLA3 ES 52 Z 50181 1149 429 Europe/Madrid 2012-03-04
-3115961 Muduex Muduex Muduex 40.8293 -2.95899 P PPLA3 ES 54 GU 19196 129 813 Europe/Madrid 2012-03-04
-3115965 Mudá Muda Muda,Mudá 42.8753 -4.39426 P PPLA3 ES 55 P 34110 100 994 Europe/Madrid 2012-03-04
-3115966 Mucientes Mucientes Mucientes 41.74278 -4.76191 P PPLA3 ES 55 VA 47098 639 755 Europe/Madrid 2012-03-04
-3115968 Mozota Mozota Mozota 41.4841 -1.06807 P PPLA3 ES 52 Z 50180 122 397 Europe/Madrid 2012-03-04
-3115973 Mozoncillo Mozoncillo Mozoncillo 41.14539 -4.18753 P PPLA3 ES 55 SG 40134 997 860 Europe/Madrid 2012-03-04
-3115977 Mozárbez Mozarbez Mozarbez,Mozarvez,Mozárbez,Mozárvez 40.85652 -5.65144 P PPLA3 ES 55 SA 37209 400 877 Europe/Madrid 2012-03-04
-3115982 Moyuela Moyuela Moyoela,Moyuela 41.12792 -0.92225 P PPLA3 ES 52 Z 50179 310 741 Europe/Madrid 2012-03-04
-3115985 Moià Moia 41.81112 2.09839 P PPL ES 56 B 08138 5086 709 Europe/Madrid 2010-04-04
-3116018 Mutriku Mutriku Motrico,Mutriku 43.30643 -2.38517 P PPLA3 ES 59 SS 20056 4736 33 Europe/Madrid 2012-03-04
-3116021 Mota del Marqués Mota del Marques Mota del Marques,Mota del Marqués 41.63247 -5.17681 P PPLA3 ES 55 VA 47097 412 748 Europe/Madrid 2012-03-04
-3116025 Móstoles Mostoles Mostoles,Мостолес 40.32234 -3.86496 P PPLA3 ES 29 M 28092 206478 667 Europe/Madrid 2012-03-04
-3116045 Mosqueruela Mosqueruela Mosqueroles,Mosqueruela,Mosqueruelas 40.36133 -0.4489 P PPLA3 ES 52 TE 44160 730 1480 Europe/Madrid 2012-03-04
-3116054 Moscardón Moscardon Moscardon,Moscardón 40.33295 -1.53683 P PPLA3 ES 52 TE 44159 49 1410 Europe/Madrid 2012-03-04
-3116057 Mos Mos Mos 43.15667 -7.55047 P PPL ES 58 LU 27039 14650 400 Europe/Madrid 2012-01-19
-3116076 Moros Moros Moros 41.39775 -1.82839 P PPLA3 ES 52 Z 50178 525 704 Europe/Madrid 2012-03-04
-3116077 Moronta Moronta Moronta 40.97688 -6.43103 P PPLA3 ES 55 SA 37208 114 758 Europe/Madrid 2012-03-04
-3116078 Morón de Almazán Moron de Almazan Moron,Moron de Almazan,Morón de Almazán 41.41361 -2.41317 P PPLA3 ES 55 SO 42123 246 996 Europe/Madrid 2012-03-04
-3116091 Moriscos Moriscos Moriscos 41.00818 -5.58184 P PPLA3 ES 55 SA 37207 119 844 Europe/Madrid 2012-03-04
-3116098 Morille Morille Morille 40.80693 -5.69833 P PPLA3 ES 55 SA 37205 240 931 Europe/Madrid 2012-03-04
-3116112 Morés Mores Mores,Morés 41.47326 -1.56491 P PPLA3 ES 52 Z 50177 413 448 Europe/Madrid 2012-03-04
-3116113 Moreruela de Tábara Moreruela de Tabara Moreruela de Tabara,Moreruela de Tábara 41.79588 -5.86849 P PPLA3 ES 55 ZA 49133 472 696 Europe/Madrid 2012-03-04
-3116114 Moreruela de los Infanzones Moreruela de los Infanzones Moreruela de los Infanzones 41.63118 -5.70614 P PPLA3 ES 55 ZA 49132 420 671 Europe/Madrid 2012-03-04
-3116116 Morentin Morentin 42.61286 -2.01393 P PPLA3 ES 32 NA 31174 175 537 Europe/Madrid 2012-03-04
-3116120 Morenilla Morenilla Morenilla 40.78687 -1.70717 P PPLA3 ES 54 GU 19195 51 1194 Europe/Madrid 2012-03-04
-3116121 Morella Morella Morella 40.61966 -0.09892 P PPLA3 ES 60 CS 12080 2797 972 Europe/Madrid 2012-03-04
-3116136 Moreda de Álava Moreda de Alava Moreda de Alava,Moreda de Álava,Moreta 42.52571 -2.40828 P PPLA3 ES 59 VI 01039 275 462 Europe/Madrid 2011-07-31
-3116146 Morcillo Morcillo Morcillo 40.01884 -6.39746 P PPLA3 ES 57 CC 10129 425 272 Europe/Madrid 2012-03-04
-3116152 Moratinos Moratinos 42.36191 -4.92831 P PPLA3 ES 55 P 34109 76 860 Europe/Madrid 2012-03-04
-3116153 Moratilla de los Meleros Moratilla de los Meleros Moratilla de los Meleros 40.50182 -2.94276 P PPLA3 ES 54 GU 19194 101 839 Europe/Madrid 2012-03-04
-3116157 Morata de Tajuña Morata de Tajuna Morata,Morata de Tajuna,Morata de Tajuña 40.2268 -3.43269 P PPLA3 ES 29 M 28091 6159 550 Europe/Madrid 2012-03-04
-3116158 Morata de Jiloca Morata de Jiloca Morata de Jiloca 41.24797 -1.58665 P PPLA3 ES 52 Z 50176 296 620 Europe/Madrid 2012-03-04
-3116159 Morata de Jalón Morata de Jalon Morata de Jalon,Morata de Jalón 41.47348 -1.47628 P PPLA3 ES 52 Z 50175 1365 425 Europe/Madrid 2012-03-04
-3116161 Morasverdes Morasverdes Morasverdes 40.60019 -6.27503 P PPLA3 ES 55 SA 37204 380 898 Europe/Madrid 2012-03-04
-3116172 Moraña Morana Morana,Moraña,San Lorenzo 42.55 -8.58333 P PPL ES 58 PO 36007 4272 212 Europe/Madrid 2012-01-19
-3116175 Moralzarzal Moralzarzal 40.67816 -3.9707 P PPLA3 ES 29 M 28090 11582 975 Europe/Madrid 2012-03-04
-3116176 Moralina Moralina Moralina 41.49001 -6.1367 P PPLA3 ES 55 ZA 49131 342 762 Europe/Madrid 2012-03-04
-3116177 Morales de Valverde Morales de Valverde Morales de Valverde 41.93643 -5.89256 P PPLA3 ES 55 ZA 49130 266 732 Europe/Madrid 2012-03-04
-3116178 Morales de Toro Morales de Toro Morales de Toro 41.53737 -5.30642 P PPLA3 ES 55 ZA 49129 1094 703 Europe/Madrid 2012-03-04
-3116179 Morales del Vino Morales del Vino Morales del Vino 41.44736 -5.7307 P PPLA3 ES 55 ZA 49127 2160 698 Europe/Madrid 2012-03-04
-3116182 Morales de Campos Morales de Campos Morales de Campos 41.86068 -5.17252 P PPLA3 ES 55 VA 47096 172 749 Europe/Madrid 2012-03-04
-3116187 Moraleja de Sayago Moraleja de Sayago Moraleja de Sayago 41.16916 -6.00369 P PPLA3 ES 55 ZA 49126 288 794 Europe/Madrid 2012-03-04
-3116188 Moraleja de Matacabras Moraleja de Matacabras Moraleja de Matacabras 41.10732 -4.95717 P PPLA3 ES 55 AV 05134 63 784 Europe/Madrid 2012-03-04
-3116189 Moraleja del Vino Moraleja del Vino Moraleja del Vino 41.46385 -5.65631 P PPLA3 ES 55 ZA 49125 1330 687 Europe/Madrid 2012-03-04
-3116190 Moraleja de las Panaderas Moraleja de las Panaderas Moraleja de las Panaderas 41.27636 -4.82521 P PPLA3 ES 55 VA 47095 34 732 Europe/Madrid 2012-03-04
-3116191 Moraleja de Enmedio Moraleja de Enmedio 40.26125 -3.85963 P PPLA3 ES 29 M 28089 4111 692 Europe/Madrid 2012-03-04
-3116198 Moraleja Moraleja Moraleja 40.06682 -6.65983 P PPLA3 ES 57 CC 10128 7995 262 Europe/Madrid 2012-03-04
-3116200 Moral de Sayago Moral de Sayago Moral de Sayago 41.47019 -6.1006 P PPLA3 ES 55 ZA 49124 341 745 Europe/Madrid 2012-03-04
-3116203 Moral de la Reina Moral de la Reina Moral de la Paz,Moral de la Reina 41.9861 -5.07208 P PPLA3 ES 55 VA 47094 267 766 Europe/Madrid 2012-03-04
-3116213 Moradillo de Roa Moradillo de Roa Moradillo de Roa 41.55164 -3.79118 P PPLA3 ES 55 BU 09228 211 921 Europe/Madrid 2012-03-04
-3116215 Mora de Rubielos Mora de Rubielos Mora de Rubielos 40.2502 -0.75249 P PPLA3 ES 52 TE 44158 1468 1036 Europe/Madrid 2012-03-04
-3116223 Monzón de Campos Monzon de Campos Monzon,Monzon de Campos,Monzón,Monzón de Campos 42.11604 -4.49283 P PPLA3 ES 55 P 34108 685 755 Europe/Madrid 2012-03-04
-3116224 Monzón Monzon Montso,Montsó,Monzon,Monzón 41.91084 0.19406 P PPLA3 ES 52 HU 22158 17042 280 Europe/Madrid 2012-03-04
-3116245 Mont-roig del Camp Mont-roig del Camp Mont-roig del Camp,Montroig 41.75 1.18333 P PPL ES 56 L 25911 25907 11847 404 Europe/Madrid 2010-11-07
-3116247 Mont-ral Mont-ral Mont-ral,Montreal 41.28333 1.1 P PPLA3 ES 56 T 43091 0 787 Europe/Madrid 2012-03-04
-3116262 Montornès del Vallès Montornes del Valles Montornes del Valles,Montornès del Vallès 41.53333 2.26667 P PPLA3 ES 56 B 08136 15509 176 Europe/Madrid 2012-03-04
-3116264 Montorio Montorio 42.58469 -3.77724 P PPLA3 ES 55 BU 09227 177 950 Europe/Madrid 2012-03-04
-3116268 Montón Monton 41.20667 -1.5155 P PPLA3 ES 52 Z 50174 155 681 Europe/Madrid 2012-03-04
-3116276 Montmeló Montmelo Montmelo,Montmeló 41.55002 2.2419 P PPL ES 56 B 08159 8717 78 Europe/Madrid 2010-04-04
-3116293 Montferri Montferri Montferri 41.26545 1.36517 P PPLA3 ES 56 T 43089 239 226 Europe/Madrid 2012-03-04
-3116299 Montesquiu Montesquiu Montesquiu,Montesquíu 42.11667 2.21667 P PPLA3 ES 56 B 08131 08272 0 681 Europe/Madrid 2012-03-04
-3116307 Montesclaros Montesclaros Montesclaros 40.10646 -4.93848 P PPLA3 ES 54 TO 45105 427 559 Europe/Madrid 2012-03-04
-3116313 Monterrubio de la Sierra Monterrubio de la Sierra Monterrubio de la Sierra 40.75592 -5.69329 P PPLA3 ES 55 SA 37203 151 961 Europe/Madrid 2012-03-04
-3116315 Monterrubio de Armuña Monterrubio de Armuna Monterrubio de Armuna,Monterrubio de Armuña 41.0265 -5.6439 P PPLA3 ES 55 SA 37202 673 802 Europe/Madrid 2012-03-04
-3116317 Monterrubio Monterrubio Monterrubio 40.84914 -4.35002 P PPLA3 ES 55 SG 40131 87 944 Europe/Madrid 2012-03-04
-3116318 Monterroso Monterroso Monterroso 42.7925 -7.83425 P PPLA3 ES 58 LU 27032 4238 549 Europe/Madrid 2012-03-04
-3116325 Monterde de Albarracín Monterde de Albarracin Monterde,Monterde de Albarracin,Monterde de Albarracín 40.49708 -1.49216 P PPLA3 ES 52 TE 44157 57 1286 Europe/Madrid 2012-03-04
-3116327 Monterde Monterde Monterde 41.17434 -1.73505 P PPLA3 ES 52 Z 50173 235 799 Europe/Madrid 2012-03-04
-3116329 Montenegro de Cameros Montenegro de Cameros Montenegro,Montenegro de Cameras,Montenegro de Cameros 42.08924 -2.75406 P PPLA3 ES 55 SO 42121 97 1232 Europe/Madrid 2012-03-04
-3116334 Montemayor de Pililla Montemayor de Pililla Montemayor de Pililla 41.50874 -4.45745 P PPLA3 ES 55 VA 47093 1042 871 Europe/Madrid 2012-03-04
-3116335 Montemayor del Río Montemayor del Rio Montemayor,Montemayor del Rio,Montemayor del Río 40.34836 -5.89427 P PPLA3 ES 55 SA 37201 334 659 Europe/Madrid 2012-03-04
-3116342 Montejo de Tiermes Montejo de Tiermes Montejo de Liceras,Montejo de Tiermes 41.36838 -3.20016 P PPLA3 ES 55 SO 42120 250 1151 Europe/Madrid 2012-03-04
-3116344 Montejo de la Vega de la Serrezuela Montejo de la Vega de la Serrezuela Montejo de la Vega,Montejo de la Vega de la Serrezuela 41.55032 -3.65406 P PPLA3 ES 55 SG 40130 183 867 Europe/Madrid 2012-03-04
-3116345 Montejo de la Sierra Montejo de la Sierra Montejo de la Sierra 41.05955 -3.52993 P PPLA3 ES 29 M 28088 0 1152 Europe/Madrid 2011-07-31
-3116348 Montejo de Arévalo Montejo de Arevalo Montejo de Arevalo,Montejo de Arévalo 41.14027 -4.66414 P PPLA3 ES 55 SG 40129 258 803 Europe/Madrid 2012-03-04
-3116349 Montejo Montejo Montejo 40.63246 -5.62287 P PPLA3 ES 55 SA 37200 221 931 Europe/Madrid 2012-03-04
-3116351 Montehermoso Montehermoso Montehermosa,Montehermoso 40.08796 -6.34984 P PPLA3 ES 57 CC 10127 5693 399 Europe/Madrid 2012-03-04
-3116359 Montederramo Montederramo Montederramo 42.27554 -7.50138 P PPLA3 ES 58 OR 32049 1085 906 Europe/Madrid 2012-03-04
-3116377 Monteagudo del Castillo Monteagudo del Castillo Monteagudo del Castillo 40.45656 -0.81781 P PPLA3 ES 52 TE 44156 69 1447 Europe/Madrid 2012-03-04
-3116378 Monteagudo de las Vicarías Monteagudo de las Vicarias Monteagudo,Monteagudo de las Vicarias,Monteagudo de las Vicarías 41.36485 -2.1696 P PPLA3 ES 55 SO 42119 262 793 Europe/Madrid 2012-03-04
-3116383 Monteagudo Monteagudo 41.96667 -1.68333 P PPLA3 ES 32 NA 31173 0 386 Europe/Madrid 2011-07-31
-3116411 Montblanc Montblanc Monblan,Montblanc,Montblanch,Монблан 41.37636 1.16163 P PPLA3 ES 56 T 43086 6632 350 Europe/Madrid 2012-03-04
-3116415 Montarrón Montarron Montarron,Montarrón 40.90675 -3.11495 P PPLA3 ES 54 GU 19193 41 837 Europe/Madrid 2012-03-04
-3116421 Muntanyola Muntanyola Muntanyola 41.88333 2.18333 P PPLA3 ES 56 B 08129 0 745 Europe/Madrid 2012-03-04
-3116425 Montanejos Montanejos Montanejos 40.06667 -0.51667 P PPLA3 ES 60 CS 12079 499 461 Europe/Madrid 2012-03-04
-3116435 Montán Montan Montan,Montant,Montán 40.03333 -0.55 P PPLA3 ES 60 CS 12078 332 573 Europe/Madrid 2012-03-04
-3116436 Montamarta Montamarta Montamarta 41.64724 -5.80402 P PPLA3 ES 55 ZA 49123 608 694 Europe/Madrid 2012-03-04
-3116441 Montalbán Montalban Montalban,Montalbán 40.83278 -0.80178 P PPLA3 ES 52 TE 44155 1472 845 Europe/Madrid 2012-03-04
-3116449 Monsalupe Monsalupe Monsalupe 40.76953 -4.78131 P PPLA3 ES 55 AV 05133 69 1002 Europe/Madrid 2012-03-04
-3116450 Monsagro Monsagro Monsagro 40.50343 -6.2711 P PPLA3 ES 55 SA 37199 189 956 Europe/Madrid 2012-03-04
-3116452 Monroyo Monroyo Monroyo 40.78775 -0.0355 P PPLA3 ES 52 TE 44154 316 876 Europe/Madrid 2012-03-04
-3116454 Monreal del Campo Monreal del Campo Monreal del Campo 40.788 -1.35541 P PPLA3 ES 52 TE 44153 2383 946 Europe/Madrid 2012-03-04
-3116455 Monreal de Ariza Monreal de Ariza Monreal de Ariza 41.29165 -2.10492 P PPLA3 ES 52 Z 50172 248 755 Europe/Madrid 2012-03-04
-3116456 Monreal Monreal Monreal 42.70421 -1.50785 P PPLA3 ES 32 NA 31172 369 538 Europe/Madrid 2012-03-04
-3116460 Monleras Monleras Monleras 41.18704 -6.22622 P PPLA3 ES 55 SA 37198 267 760 Europe/Madrid 2012-03-04
-3116462 Monleón Monleon Monleon,Monleón 40.58192 -5.84312 P PPLA3 ES 55 SA 37197 119 872 Europe/Madrid 2012-03-04
-3116466 Monistrol de Montserrat Monistrol de Montserrat Monistrol,Monistrol de Montserrat 41.61667 1.85 P PPL ES 56 B 08053 2840 153 Europe/Madrid 2010-04-04
-3116474 Montgat Montgat Montgat 41.46859 2.28001 P PPLA3 ES 56 B 08126 10270 53 Europe/Madrid 2012-03-04
-3116477 Monforte de Moyuela Monforte de Moyuela Monforte de Moyuela 41.05512 -1.01411 P PPLA3 ES 52 TE 44152 76 1004 Europe/Madrid 2012-03-04
-3116478 Monforte de Lemos Monforte de Lemos Monforte,Monforte de Lemos 42.52165 -7.51422 P PPLA3 ES 58 LU 27031 19546 295 Europe/Madrid 2010-11-04
-3116479 Monforte de la Sierra Monforte de la Sierra Monforte de la Sierra 40.48264 -6.05671 P PPLA3 ES 55 SA 37196 91 823 Europe/Madrid 2012-03-04
-3116482 Monfero Monfero Monfero,Monferro,San Felix,San Félix 43.33333 -8.01667 P PPL ES 58 C 15050 2440 448 Europe/Madrid 2012-01-19
-3116484 Monfarracinos Monfarracinos Monfarracinos 41.55468 -5.70795 P PPLA3 ES 55 ZA 49122 782 643 Europe/Madrid 2012-03-04
-3116486 Moneva Moneva Moneva 41.12817 -0.83591 P PPLA3 ES 52 Z 50171 115 657 Europe/Madrid 2012-03-04
-3116498 Monegrillo Monegrillo Monegrillo 41.63856 -0.4157 P PPLA3 ES 52 Z 50170 516 433 Europe/Madrid 2012-03-04
-3116503 Arrasate Arrasate-Mondragon Arrasate,Arrasate edo Mondragon,Arrasate-Mondragon,Arrasate-Mondragón,Arresate,Mondragoe,Mondragon,Mondrague,Mondragón,Montdragon 43.06441 -2.48977 P PPL ES 59 SS 20055 22064 211 Europe/Madrid 2010-04-22
-3116507 Mondoñedo Mondonedo Mondonedo,Mondoñedo,San Vicente 43.4 -7.4 P PPL ES 58 LU 27030 4884 544 Europe/Madrid 2012-01-19
-3116510 Mondéjar Mondejar Mondejar,Mondéjar 40.32096 -3.10686 P PPLA3 ES 54 GU 19192 2621 821 Europe/Madrid 2012-03-04
-3116513 Mondariz-Balneario Mondariz-Balneario 42.22686 -8.46728 P PPLA3 ES 58 PO 36031 712 58 Europe/Madrid 2012-03-04
-3116514 Mondariz Mondariz Mondariz 42.2311 -8.45839 P PPLA3 ES 58 PO 36030 5290 101 Europe/Madrid 2012-03-04
-3116525 Moncalvillo Moncalvillo Moncalvillo 41.95413 -3.19886 P PPLA3 ES 55 BU 09225 104 1055 Europe/Madrid 2012-03-04
-3116527 Montcada i Reixac Montcada i Reixac Moncada i Reixac,Montcada,Montcada i Reixac 41.48333 2.18333 P PPL ES 56 B 08125 33453 66 Europe/Madrid 2010-04-22
-3116529 Monasterio de Vega Monasterio de Vega Monasterio de Vega 42.23015 -5.18095 P PPLA3 ES 55 VA 47091 109 773 Europe/Madrid 2012-03-04
-3116530 Monasterio de Rodilla Monasterio de Rodilla Monasterio,Monasterio de Rodilla 42.45776 -3.46966 P PPLA3 ES 55 BU 09224 219 880 Europe/Madrid 2012-03-04
-3116532 Monasterio de la Sierra Monasterio de la Sierra Monasterio de la Sierra 42.0518 -3.19314 P PPLA3 ES 55 BU 09223 46 1176 Europe/Madrid 2012-03-04
-3116535 Monasterio Monasterio 40.98547 -3.09711 P PPLA3 ES 54 GU 19191 27 935 Europe/Madrid 2012-03-04
-3116542 Mombuey Mombuey Mombuey 42.02283 -6.33027 P PPLA3 ES 55 ZA 49121 415 891 Europe/Madrid 2012-03-04
-3116543 Momblona Momblona Momblona 41.4442 -2.3466 P PPLA3 ES 55 SO 42118 36 1064 Europe/Madrid 2012-03-04
-3116544 Mombeltrán Mombeltran Mombeltran,Mombeltrán 40.25987 -5.01749 P PPL ES 55 AV 05014 1152 637 Europe/Madrid 2012-01-19
-3116552 Mollet de Peralada Mollet de Peralada Mollet,Mollet de Peralada 42.35959 3.00034 P PPLA3 ES 56 GI 17106 174 58 Europe/Madrid 2012-03-04
-3116553 Mollet del Vallès Mollet del Valles Mollet del Valles,Mollet del Vallès,Mollet del Vallés 41.54026 2.21306 P PPL ES 56 B 08125 52484 73 Europe/Madrid 2010-04-22
-3116554 Mollerussa Mollerussa Mollerusa,Mollerussa,Morellusa 41.63333 0.9 P PPLA3 ES 56 L 25137 14319 250 Europe/Madrid 2012-03-04
-3116556 Molledo Molledo Molledo 43.14974 -4.04239 P PPLA3 ES 39 S 39046 1858 259 Europe/Madrid 2012-03-04
-3116562 Molins de Rei Molins de Rei Molins,Molins de Rei 41.41667 2.01667 P PPL ES 56 B 08205 24067 44 Europe/Madrid 2010-04-22
-3116566 Molinos de Duero Molinos de Duero Molinos de Duero 41.88603 -2.78682 P PPLA3 ES 55 SO 42117 186 1101 Europe/Madrid 2012-03-04
-3116577 Molinos Molinos Molinos 40.821 -0.45017 P PPLA3 ES 52 TE 44151 319 836 Europe/Madrid 2012-03-04
-3116586 Molinillo Molinillo Molinillo 40.46898 -5.94493 P PPLA3 ES 55 SA 37195 67 724 Europe/Madrid 2012-03-04
-3116589 Molinaseca Molinaseca Molinaseca 42.53829 -6.51997 P PPLA3 ES 55 LE 24100 735 582 Europe/Madrid 2012-03-04
-3116595 Molina de Aragón Molina de Aragon Molina,Molina de Aragon,Molina de Aragón,Molino de Aragon,Molino de Aragón 40.84358 -1.88762 P PPLA3 ES 54 GU 19190 3536 1067 Europe/Madrid 2012-03-04
-3116600 Molezuelas de la Carballeda Molezuelas de la Carballeda Molezuelas de la Carballeda 42.08166 -6.18723 P PPLA3 ES 55 ZA 49120 81 804 Europe/Madrid 2012-03-04
-3116610 Molacillos Molacillos Molacillos 41.58269 -5.66046 P PPLA3 ES 55 ZA 49119 290 642 Europe/Madrid 2012-03-04
-3116619 Mojados Mojados 41.43237 -4.6649 P PPLA3 ES 55 VA 47090 3054 718 Europe/Madrid 2012-03-04
-3116627 Mohernando Mohernando Mohernando 40.80128 -3.17234 P PPLA3 ES 54 GU 19189 155 770 Europe/Madrid 2012-03-04
-3116636 Mogarraz Mogarraz Mogarraz 40.49264 -6.05327 P PPLA3 ES 55 SA 37194 0 786 Europe/Madrid 2012-03-04
-3116637 Moeche Moeche Moeche,San Juan 43.55 -8.01667 P PPL ES 58 C 15076 1445 190 Europe/Madrid 2012-01-19
-3116641 Modúbar de la Emparedada Modubar de la Emparedada 42.26118 -3.65965 P PPLA3 ES 55 BU 09221 383 885 Europe/Madrid 2012-03-04
-3116649 Mochales Mochales Mochales 41.09647 -2.0156 P PPLA3 ES 54 GU 19188 86 1002 Europe/Madrid 2012-03-04
-3116653 Moaña Moana Moana,Moaña,San Martin,San Martín 42.28333 -8.75 P PPLA3 ES 58 PO 36029 19014 115 Europe/Madrid 2012-03-04
-3116671 Mironcillo Mironcillo Mironcillo 40.55435 -4.82449 P PPLA3 ES 55 AV 05130 136 1129 Europe/Madrid 2012-03-04
-3116678 Miravet Miravet Miravet 41.0393 0.59665 P PPLA3 ES 56 T 43084 797 34 Europe/Madrid 2012-03-04
-3116679 Miraveche Miraveche Mirabetxe,Miraveche 42.67396 -3.19947 P PPLA3 ES 55 BU 09220 103 806 Europe/Madrid 2012-03-04
-3116688 Miranda del Castañar Miranda del Castanar Miranda del Castanar,Miranda del Castañar 40.48448 -5.99581 P PPLA3 ES 55 SA 37193 558 649 Europe/Madrid 2012-03-04
-3116689 Miranda de Ebro Miranda de Ebro Miranda,Miranda Ebro,Miranda de Ebro,Miranda del Ebro,Miranda-de-Ehbro,Миранда-де-Эбро 42.6865 -2.94695 P PPLA3 ES 55 BU 09219 39264 466 Europe/Madrid 2012-03-04
-3116691 Miranda de Azán Miranda de Azan Miranda de Azan,Miranda de Azán 40.88752 -5.68182 P PPLA3 ES 55 SA 37192 384 821 Europe/Madrid 2012-03-04
-3116692 Miranda de Arga Miranda de Arga Miranda de Arga 42.48337 -1.82758 P PPLA3 ES 32 NA 31171 993 311 317 Europe/Madrid 2012-03-04
-3116699 Mirambel Mirambel Mirambel,Mirambell 40.58733 -0.34266 P PPLA3 ES 52 TE 44149 132 922 Europe/Madrid 2011-07-31
-3116702 Miralrío Miralrio Miralrio,Miralrío 40.88901 -2.9434 P PPLA3 ES 54 GU 19187 68 1037 Europe/Madrid 2012-03-04
-3116706 Miralcamp Miralcamp Miralcamp 41.60516 0.87987 P PPLA3 ES 56 L 25135 1307 275 Europe/Madrid 2012-03-04
-3116707 Mirafuentes Mirafuentes 42.62297 -2.27966 P PPLA3 ES 32 NA 31170 60 641 Europe/Madrid 2012-03-04
-3116708 Miraflores de la Sierra Miraflores de la Sierra 40.8155 -3.76213 P PPLA3 ES 29 M 28085 5105 1143 Europe/Madrid 2012-03-04
-3116710 Mirabueno Mirabueno Mirabueno 40.94479 -2.72438 P PPLA3 ES 54 GU 19186 106 1068 Europe/Madrid 2012-03-04
-3116725 Miño de San Esteban Mino de San Esteban Mino de San Esteban,Miño de San Esteban 41.53584 -3.34579 P PPLA3 ES 55 SO 42116 76 941 Europe/Madrid 2012-03-04
-3116729 Miño Mino Mino,Miño,Santa Maria,Santa María 43.35 -8.2 P PPLA3 ES 58 C 15048 5092 40 Europe/Madrid 2012-03-04
-3116736 Mingorría Mingorria Mingorria,Mingorría 40.75192 -4.66583 P PPLA3 ES 55 AV 05128 465 1037 Europe/Madrid 2012-03-04
-3116749 Milmarcos Milmarcos Milmarcos 41.08622 -1.87652 P PPLA3 ES 54 GU 19183 116 1062 Europe/Madrid 2012-03-04
-3116753 Milles de la Polvorosa Milles de la Polvorosa Milles de la Polvorosa 41.92339 -5.73309 P PPLA3 ES 55 ZA 49118 263 704 Europe/Madrid 2012-03-04
-3116761 Millana Millana Millana 40.50717 -2.57116 P PPLA3 ES 54 GU 19184 165 819 Europe/Madrid 2012-03-04
-3116769 Milagros Milagros Milagros 41.575 -3.69907 P PPLA3 ES 55 BU 09218 494 850 Europe/Madrid 2012-03-04
-3116770 Milagro Milagro Milagro 42.2416 -1.76588 P PPLA3 ES 32 NA 31169 3016 295 Europe/Madrid 2012-03-04
-3116777 Mijares Mijares Mijares 40.29654 -4.83651 P PPLA3 ES 55 AV 05127 906 851 Europe/Madrid 2012-03-04
-3116785 Migueláñez Miguelanez Miguelanez,Migueláñez 41.12155 -4.3641 P PPLA3 ES 55 SG 40128 171 888 Europe/Madrid 2012-03-04
-3116786 Mieza Mieza Mieza 41.16424 -6.69137 P PPLA3 ES 55 SA 37190 325 646 Europe/Madrid 2012-03-04
-3116789 Mieres Mieres M'eres,Mieres,Мьерес 43.25 -5.76667 P PPLA3 ES 34 O 33037 44070 367 Europe/Madrid 2012-03-04
-3116791 Mieres Mieres Mieras,Mieres 42.12247 2.6385 P PPLA3 ES 56 GI 17105 0 283 Europe/Madrid 2012-03-04
-3116794 Miengo Miengo Miengo 43.42861 -3.99866 P PPLA3 ES 39 S 39044 3914 25 Europe/Madrid 2012-03-04
-3116797 Miedes de Atienza Miedes de Atienza Miedes,Miedes de Atienza,Miedes de Pela 41.26672 -2.96376 P PPLA3 ES 54 GU 19181 103 1150 Europe/Madrid 2012-03-04
-3116799 Micieces de Ojeda Micieces de Ojeda Micieces de Ojeda 42.69078 -4.46166 P PPLA3 ES 55 P 34107 102 935 Europe/Madrid 2012-03-04
-3116800 Micereces de Tera Micereces de Tera Micereces de Tera 41.98886 -5.87133 P PPLA3 ES 55 ZA 49117 571 721 Europe/Madrid 2012-03-04
-3116802 Mianos Mianos 42.58544 -0.95478 P PPLA3 ES 52 Z 50168 45 624 Europe/Madrid 2012-03-04
-3116805 Mezquita de Jarque Mezquita de Jarque Mezquita de Jarque 40.721 -0.867 P PPLA3 ES 52 TE 44148 118 1255 Europe/Madrid 2012-03-04
-3116811 Mezalocha Mezalocha Mezalocha 41.42581 -1.08276 P PPLA3 ES 52 Z 50167 287 482 Europe/Madrid 2012-03-04
-3116812 Metauten Metauten 42.67714 -2.13015 P PPLA3 ES 32 NA 31168 297 527 Europe/Madrid 2012-03-04
-3116826 Mesones de Isuela Mesones de Isuela Mesones de Isuela 41.55119 -1.53858 P PPLA3 ES 52 Z 50166 334 518 Europe/Madrid 2012-03-04
-3116829 Mesia Mesia Mesia,San Cristobal,San Cristóbal 43.1 -8.26667 P PPL ES 58 C 15047 3189 378 Europe/Madrid 2012-01-19
-3116831 Mesegar de Corneja Mesegar de Corneja Mesegar de Corneja 40.50209 -5.30131 P PPLA3 ES 55 AV 05126 95 1022 Europe/Madrid 2012-03-04
-3116881 Mequinensa / Mequinenza Mequinensa / Mequinenza Mequinensa,Mequinensa / Maquinenza,Mequinenza 41.37211 0.30169 P PPL ES 52 Z 50165 2479 80 Europe/Madrid 2010-11-07
-3116884 Méntrida Mentrida Mentrida,Méntrida 40.23899 -4.19337 P PPLA3 ES 54 TO 45099 3143 539 Europe/Madrid 2012-03-04
-3116892 Mengamuñoz Mengamunoz Mengamunoz,Mengamuñoz 40.50006 -4.99983 P PPLA3 ES 55 AV 05125 67 1318 Europe/Madrid 2012-03-04
-3116894 Meneses de Campos Meneses de Campos Meneses de Campos 41.94142 -4.91927 P PPLA3 ES 55 P 34106 143 752 Europe/Madrid 2012-03-04
-3116914 Mendigorría Mendigorria Mendigorria,Mendigorría 42.62822 -1.8345 P PPLA3 ES 32 NA 31167 1044 395 Europe/Madrid 2012-03-04
-3116921 Mendavia Mendavia Mondaria 42.44335 -2.20087 P PPLA3 ES 32 NA 31165 3725 352 Europe/Madrid 2011-07-31
-3116924 Mendaro Mendaro Mendaro 43.25326 -2.38568 P PPLA3 ES 59 SS 20901 1650 19 Europe/Madrid 2012-03-04
-3116932 Membrillera Membrillera Membrillera 40.94807 -2.97969 P PPLA3 ES 54 GU 19179 111 851 Europe/Madrid 2012-03-04
-3116934 Membribe de la Sierra Membribe de la Sierra Membribe,Membribe de la Sierra 40.69123 -5.80568 P PPLA3 ES 55 SA 37189 109 1027 Europe/Madrid 2012-03-04
-3116936 Membibre de la Hoz Membibre de la Hoz Membibre de la Hoz 41.44958 -4.09571 P PPLA3 ES 55 SG 40127 57 864 Europe/Madrid 2012-03-04
-3116939 Melón Melon Melon,Melón 42.26016 -8.214 P PPLA3 ES 58 OR 32046 1569 470 Europe/Madrid 2012-03-04
-3116942 Melide Melide Mellid 42.91382 -8.01496 P PPLA3 ES 58 C 15046 0 457 Europe/Madrid 2012-03-04
-3116946 Mélida Melida Melida,Mélida 42.35869 -1.54888 P PPLA3 ES 32 NA 31164 766 350 Europe/Madrid 2012-03-04
-3116953 Melgar de Yuso Melgar de Yuso 42.25381 -4.25394 P PPLA3 ES 55 P 34104 345 772 Europe/Madrid 2012-03-04
-3116954 Melgar de Tera Melgar de Tera Melgar de Tera 41.96618 -6.0139 P PPLA3 ES 55 ZA 49116 514 748 Europe/Madrid 2012-03-04
-3116955 Melgar de Fernamental Melgar de Fernamental 42.40445 -4.24484 P PPLA3 ES 55 BU 09211 1932 804 Europe/Madrid 2012-03-04
-3116956 Melgar de Arriba Melgar de Arriba Melgar de Arriba 42.26806 -5.09712 P PPLA3 ES 55 VA 47089 259 793 Europe/Madrid 2012-03-04
-3116957 Melgar de Abajo Melgar de Abajo Melgar de Abajo 42.24344 -5.14216 P PPLA3 ES 55 VA 47088 166 805 Europe/Madrid 2012-03-04
-3116963 Mejorada del Campo Mejorada del Campo Mejorada del Campo 40.39283 -3.48194 P PPLA3 ES 29 M 28084 22488 580 Europe/Madrid 2012-03-04
-3116964 Mejorada Mejorada Mejorada 40.00991 -4.88506 P PPLA3 ES 54 TO 45097 1272 551 Europe/Madrid 2012-03-04
-3116968 Meis Meis Meis,San Martin,San Martín 42.5 -8.75 P PPL ES 58 PO 36028 4976 98 Europe/Madrid 2012-02-28
-3116981 Meira Meira 43.21337 -7.29372 P PPLA3 ES 58 LU 27029 1775 483 Europe/Madrid 2012-03-04
-3116992 Megina Megina Megina 40.63912 -1.87042 P PPLA3 ES 54 GU 19178 54 1253 Europe/Madrid 2012-03-04
-3116993 Megeces Megeces Megeces 41.40828 -4.56166 P PPLA3 ES 55 VA 47087 435 735 Europe/Madrid 2012-03-04
-3116995 Medrano Medrano Medrano 42.38361 -2.55394 P PPLA3 ES 27 LO 26096 201 597 Europe/Madrid 2012-03-04
-3116996 Medranda Medranda Medranda 40.98333 -2.93719 P PPLA3 ES 54 GU 19177 105 814 Europe/Madrid 2012-03-04
-3117000 Mediona Mediona Mediona 41.47798 1.61222 P PPLA3 ES 56 B 08122 1870 445 Europe/Madrid 2012-03-04
-3117007 Medinilla Medinilla Medinilla 40.43967 -5.61772 P PPLA3 ES 55 AV 05124 161 1065 Europe/Madrid 2012-03-04
-3117008 Medina de Ríoseco Medina de Rioseco Medina de Rioseco,Medina de Ríoseco 41.88327 -5.04405 P PPL ES 55 VA 47086 5059 752 Europe/Madrid 2012-01-19
-3117009 Medina de Pomar Medina de Pomar Medina de Pomar 42.92938 -3.48804 P PPLA3 ES 55 BU 09209 5524 591 Europe/Madrid 2012-03-04
-3117010 Medina del Campo Medina del Campo Medina del Campo,Medina-del'-Kampo,Медина-дель-Кампо 41.31239 -4.91413 P PPLA3 ES 55 VA 47085 21540 721 Europe/Madrid 2012-03-04
-3117011 Medinaceli Medinaceli Medina,Medinaceli,Occilis 41.17224 -2.43476 P PPLA3 ES 55 SO 42113 674 1204 Europe/Madrid 2012-03-04
-3117024 Mediana de Voltoya Mediana de Voltoya Mediana,Mediana de Voltoya 40.70104 -4.56341 P PPLA3 ES 55 AV 05123 108 1111 Europe/Madrid 2012-03-04
-3117041 Meco Meco 40.55274 -3.32894 P PPLA3 ES 29 M 28083 12419 664 Europe/Madrid 2012-03-04
-3117044 Mecerreyes Mecerreyes Mecerreyes 42.09536 -3.57393 P PPLA3 ES 55 BU 09208 278 986 Europe/Madrid 2012-03-04
-3117048 Meaño Meano Meano,Meaño,San Juan 42.44661 -8.78122 P PPL ES 58 PO 36051 5505 119 Europe/Madrid 2012-01-19
-3117058 Mazuela Mazuela 42.20767 -3.9192 P PPLA3 ES 55 BU 09206 75 826 Europe/Madrid 2012-03-04
-3117059 Mazuecos de Valdeginate Mazuecos de Valdeginate Mazuecos de Valdeginate 42.16814 -4.84059 P PPLA3 ES 55 P 34103 119 783 Europe/Madrid 2012-03-04
-3117060 Mazuecos Mazuecos Mazuecos 40.2602 -3.00755 P PPLA3 ES 54 GU 19176 359 700 Europe/Madrid 2012-03-04
-3117075 Mazariegos Mazariegos Mazariegos 42.02691 -4.71542 P PPLA3 ES 55 P 34102 268 740 Europe/Madrid 2012-03-04
-3117076 Mazaricos Mazaricos Mazaricos 42.94033 -8.97187 P PPLA3 ES 58 C 15045 5523 363 Europe/Madrid 2012-03-04
-3117077 Mazarete Mazarete Mazarate,Mazare,Mazarete 41.00086 -2.15921 P PPLA3 ES 54 GU 19175 66 1207 Europe/Madrid 2012-03-04
-3117083 Mazaleón Mazaleon Mazaleon,Mazaleón 41.05056 0.1029 P PPLA3 ES 52 TE 44147 577 363 Europe/Madrid 2012-03-04
-3117091 Mayorga Mayorga Mayorga 42.16687 -5.26304 P PPLA3 ES 55 VA 47084 2034 780 Europe/Madrid 2012-03-04
-3117108 Maials Maials Maials,Mayal,Mayals 41.36667 0.5 P PPLA3 ES 56 L 25133 0 364 Europe/Madrid 2012-03-04
-3117109 Mayalde Mayalde Mayalde 41.2508 -5.79767 P PPLA3 ES 55 ZA 49115 222 874 Europe/Madrid 2012-03-04
-3117119 Matute Matute Matute 42.29888 -2.79564 P PPLA3 ES 27 LO 26095 164 678 Europe/Madrid 2012-03-04
-3117132 Matillas Matillas Matillas 40.94415 -2.8359 P PPLA3 ES 54 GU 19174 178 882 Europe/Madrid 2012-03-04
-3117133 Matilla la Seca Matilla la Seca Matilla la Seca 41.57935 -5.5003 P PPLA3 ES 55 ZA 49114 60 740 Europe/Madrid 2012-03-04
-3117134 Matilla de los Caños del Río Matilla de los Canos del Rio Matilla de los Canos,Matilla de los Canos del Rio,Matilla de los Caños,Matilla de los Caños del Río 40.82539 -5.94276 P PPLA3 ES 55 SA 37187 681 819 Europe/Madrid 2012-03-04
-3117135 Matilla de los Caños Matilla de los Canos Matilla de los Canos,Matilla de los Caños 41.54818 -4.96761 P PPLA3 ES 55 VA 47083 113 751 Europe/Madrid 2012-03-04
-3117137 Matilla de Arzón Matilla de Arzon Matilla,Matilla de Arzon,Matilla de Arzón 42.10499 -5.64156 P PPLA3 ES 55 ZA 49113 243 738 Europe/Madrid 2012-03-04
-3117161 Matarrubia Matarrubia Matarrubia 40.86463 -3.28944 P PPLA3 ES 54 GU 19173 57 877 Europe/Madrid 2012-03-04
-3117164 Mataró Mataro Iluro,Mataro,Mataró,Матаро 41.54211 2.4445 P PPLA3 ES 56 B 08121 121722 43 Europe/Madrid 2012-03-04
-3117165 Matapozuelos Matapozuelos Matapozuelos 41.41423 -4.79122 P PPLA3 ES 55 VA 47082 1030 729 Europe/Madrid 2012-03-04
-3117166 Mataporquera Mataporquera Mataporquera,Valdeolea 42.87486 -4.16276 P PPL ES 39 S 39092 1323 927 Europe/Madrid 2012-01-19
-3117180 Matamala de Almazán Matamala de Almazan Matamala,Matamala de Almazan,Matamala de Almazán 41.50562 -2.64122 P PPLA3 ES 55 SO 42111 364 950 Europe/Madrid 2012-03-04
-3117188 Matallana de Torío Matallana de Torio Matallana de Torio,Matallana de Torío 42.8656 -5.52034 P PPLA3 ES 55 LE 24098 1494 1020 Europe/Madrid 2012-03-04
-3117192 Matalebreras Matalebreras Matalebreras 41.84116 -2.04644 P PPLA3 ES 55 SO 42110 116 996 Europe/Madrid 2012-03-04
-3117200 Matadepera Matadepera Matadepera 41.59886 2.02648 P PPL ES 56 B 08279 7970 432 Europe/Madrid 2012-01-19
-3117201 Matadeón de los Oteros Matadeon de los Oteros Matadeon,Matadeon de los Oteros,Matadeón de los Oteros 42.33776 -5.36887 P PPLA3 ES 55 LE 24097 277 859 Europe/Madrid 2012-03-04
-3117204 Mata de Cuéllar Mata de Cuellar Mata de Cuellar,Mata de Cuéllar 41.39655 -4.47167 P PPLA3 ES 55 SG 40124 296 753 Europe/Madrid 2012-03-04
-3117208 Matabuena Matabuena Matabuena 41.0959 -3.75827 P PPLA3 ES 55 SG 40123 221 1152 Europe/Madrid 2012-03-04
-3117214 Masueco Masueco Masueco 41.20352 -6.58938 P PPLA3 ES 55 SA 37184 414 689 Europe/Madrid 2012-03-04
-3117218 Maçanet de la Selva Macanet de la Selva Macanet de la Selva,Maçanet de la Selva 41.78333 2.73333 P PPLA3 ES 56 GI 17103 0 102 Europe/Madrid 2012-03-04
-3117219 Maçanet de Cabrenys Macanet de Cabrenys Macanet de Cabrenys,Maçanet de Cabrenys 42.38597 2.74806 P PPLA3 ES 56 GI 17102 0 366 Europe/Madrid 2012-03-04
-3117221 Massanes Massanes Macanes,Massanes,Maçanes 41.76536 2.65324 P PPLA3 ES 56 GI 17101 0 151 Europe/Madrid 2012-03-04
-3117223 el Masroig el Masroig Masroig,el Masroig 41.13333 0.73333 P PPLA3 ES 56 T 43082 0 139 Europe/Madrid 2012-03-04
-3117225 Masquefa Masquefa Masquefa 41.50352 1.81136 P PPLA3 ES 56 B 08119 7150 257 Europe/Madrid 2012-03-04
-3117232 El Masnou El Masnou el Masnou 41.47978 2.3188 P PPL ES 56 B 08118 22288 27 12 Europe/Madrid 2010-12-16
-3117238 Maside Maside Maside 42.41031 -8.02582 P PPLA3 ES 58 OR 32045 3081 400 372 Europe/Madrid 2012-03-04
-3117277 Masegoso de Tajuña Masegoso de Tajuna Masegoso de Tajuna,Masegoso de Tajuña 40.82552 -2.69532 P PPLA3 ES 54 GU 19172 95 893 Europe/Madrid 2012-03-04
-3117279 Masegosa Masegosa Masegosa 40.5469 -2.02588 P PPLA3 ES 54 CU 16123 116 1375 Europe/Madrid 2012-03-04
-3117281 Masdenverge Masdenverge Masdenverge 40.716 0.53008 P PPL ES 56 T 43138 1014 45 Europe/Madrid 2012-01-19
-3117289 Mas de las Matas Mas de las Matas Mas de las Matas 40.83408 -0.24292 P PPLA3 ES 52 TE 44145 1442 505 Europe/Madrid 2012-03-04
-3117296 Mas de Barberans Mas de Barberans 40.73333 0.36667 P PPLA3 ES 56 T 43077 678 340 375 Europe/Madrid 2012-03-04
-3117307 Masarac Masarac Masarac 42.3509 2.97296 P PPLA3 ES 56 GI 17100 0 67 Europe/Madrid 2012-03-04
-3117322 Marzales Marzales Marzales 41.58644 -5.13455 P PPLA3 ES 55 VA 47081 63 708 Europe/Madrid 2012-03-04
-3117326 Marugán Marugan Marugan,Marugán 40.89943 -4.38383 P PPLA3 ES 55 SG 40122 513 952 Europe/Madrid 2012-03-04
-3117331 Martorell Martorell Martorell,Martorelle,Марторелле 41.47402 1.93062 P PPLA3 ES 56 B 08114 26681 71 Europe/Madrid 2012-03-04
-3117336 Martín Muñoz de las Posadas Martin Munoz de las Posadas Martin Munoz de las Posadas,Martín Muñoz de las Posadas 40.99546 -4.59672 P PPLA3 ES 55 SG 40121 420 897 Europe/Madrid 2012-03-04
-3117337 Martín Muñoz de la Dehesa Martin Munoz de la Dehesa Martin Munoz de la Dehesa,Martín Muñoz de la Dehesa 41.06652 -4.68676 P PPLA3 ES 55 SG 40120 186 835 Europe/Madrid 2012-03-04
-3117339 Martín Miguel Martin Miguel Martin Miguel,Martín Miguel 40.9522 -4.27166 P PPLA3 ES 55 SG 40119 178 921 Europe/Madrid 2012-03-04
-3117340 Martínez Martinez Martinez,Martínez 40.63046 -5.34801 P PPLA3 ES 55 AV 05122 187 1100 Europe/Madrid 2012-03-04
-3117346 Martín de Yeltes Martin de Yeltes Martin de Yeltes,Martín de Yeltes 40.77594 -6.29162 P PPLA3 ES 55 SA 37183 515 764 Europe/Madrid 2012-03-04
-3117347 Martín del Río Martin del Rio Martin del Rio,Martín del Río 40.84459 -0.89549 P PPLA3 ES 52 TE 44144 472 930 Europe/Madrid 2012-03-04
-3117349 Martinamor Martinamor Martinamor 40.80676 -5.59913 P PPLA3 ES 55 SA 37182 68 957 Europe/Madrid 2012-03-04
-3117360 Martiherrero Martiherrero Martiherrero 40.67392 -4.78156 P PPLA3 ES 55 AV 05121 202 1228 Europe/Madrid 2012-03-04
-3117362 Martiago Martiago Martiago 40.4542 -6.4901 P PPLA3 ES 55 SA 37181 361 812 Europe/Madrid 2012-03-04
-3117376 Marracos Marracos 42.08826 -0.77587 P PPLA3 ES 52 Z 50902 106 402 Europe/Madrid 2012-03-04
-3117383 Markina-Xemein Markina-Xemein Markina-Xemein,Marquina-Jemein,Marquina-Jeméin 43.26667 -2.5 P PPLA3 ES 59 BI 48060 0 90 Europe/Madrid 2012-03-04
-3117409 Marín Marin 42.38333 -8.7 P PPL ES 58 PO 36026 25969 20 Europe/Madrid 2010-04-22
-3117418 Mariana Mariana Mariana 40.16717 -2.14601 P PPLA3 ES 54 CU 16122 306 968 Europe/Madrid 2012-03-04
-3117420 María de Huerva Maria de Huerva Maria,Maria de Huerva,María de Huerva 41.5388 -0.99615 P PPLA3 ES 52 Z 50163 2562 339 Europe/Madrid 2012-03-04
-3117429 Margalef Margalef Margalef 41.28496 0.75331 P PPLA3 ES 56 T 43075 43060 128 387 Europe/Madrid 2012-03-04
-3117441 Marcilla de Campos Marcilla de Campos Marcilla de Campos 42.3177 -4.3967 P PPLA3 ES 55 P 34101 62 818 Europe/Madrid 2012-03-04
-3117442 Marcilla Marcilla Marcilla 42.32794 -1.73714 P PPLA3 ES 32 NA 31163 2637 293 Europe/Madrid 2012-03-04
-3117443 Marchamalo Marchamalo Marchamalo 40.66677 -3.19914 P PPL ES 54 GU 19130 4698 674 Europe/Madrid 2012-01-19
-3117444 Marchagaz Marchagaz Marchagaz 40.26769 -6.27485 P PPLA3 ES 57 CC 10117 281 519 Europe/Madrid 2012-03-04
-3117454 Marazuela Marazuela Marazuela 40.97912 -4.36506 P PPLA3 ES 55 SG 40118 57 910 Europe/Madrid 2012-03-04
-3117456 Marazoleja Marazoleja Marazoleja 40.96086 -4.33882 P PPLA3 ES 55 SG 40903 122 913 Europe/Madrid 2012-03-04
-3117460 Marañón Maranon Maran'on,Maranon,Maranoni jogi,Marañon,Marañón,Marañóni jõgi,Rio Maranon,Rio Marañón,Río Marañón,mrnywn,Мараньон,מרניון 42.62941 -2.43931 P PPLA3 ES 32 NA 31162 62 625 Europe/Madrid 2012-03-04
-3117461 Meranges Meranges Maranges,Meranges 42.44518 1.78777 P PPLA3 ES 56 GI 17099 17082 0 1515 Europe/Madrid 2012-03-04
-3117462 Maranchón Maranchon Maranchon,Maranchón 41.04754 -2.20482 P PPLA3 ES 54 GU 19170 244 1251 Europe/Madrid 2012-03-04
-3117463 Maraña Marana Marana,Maraña 43.04991 -5.17726 P PPLA3 ES 55 LE 24096 164 1247 Europe/Madrid 2012-03-04
-3117465 Mara Mara Mara 41.2895 -1.51842 P PPLA3 ES 52 Z 50162 194 697 Europe/Madrid 2012-03-04
-3117476 Maqueda Maqueda Maqueda 40.06614 -4.37066 P PPLA3 ES 54 TO 45091 513 484 Europe/Madrid 2012-03-04
-3117489 Manzanillo Manzanillo Manzanillo 41.58616 -4.18826 P PPLA3 ES 55 VA 47080 46 793 Europe/Madrid 2012-03-04
-3117490 Manzanera Manzanera Macanera,Manzanera,Maçanera 40.05 -0.83333 P PPLA3 ES 52 TE 44143 460 1058 Europe/Madrid 2012-03-04
-3117501 Manzaneda Manzaneda Mazaneda 42.30962 -7.23209 P PPLA3 ES 58 OR 32044 1139 661 Europe/Madrid 2012-03-04
-3117503 Manzanares el Real Manzanares el Real Manzanares el Real 40.72627 -3.86265 P PPLA3 ES 29 M 28082 6231 911 Europe/Madrid 2012-03-04
-3117504 Manzanares de Rioja Manzanares de Rioja Manzanares de Rioja 42.3961 -2.8959 P PPLA3 ES 27 LO 26094 99 803 Europe/Madrid 2012-03-04
-3117510 Manzanal de los Infantes Manzanal de los Infantes Manzanal de los Infantes 42.05428 -6.38288 P PPLA3 ES 55 ZA 49112 178 920 Europe/Madrid 2012-03-04
-3117511 Manzanal del Barco Manzanal del Barco Manzanal del Barco 41.63501 -5.94671 P PPLA3 ES 55 ZA 49111 194 704 Europe/Madrid 2012-03-04
-3117512 Manzanal de Arriba Manzanal de Arriba Manzanal de Arriba 41.99217 -6.44012 P PPLA3 ES 55 ZA 49110 429 891 Europe/Madrid 2012-03-04
-3117522 Mantinos Mantinos Mantinos 42.75258 -4.84213 P PPLA3 ES 55 P 34100 169 1067 Europe/Madrid 2012-03-04
-3117523 Mantiel Mantiel Mantiel 40.61892 -2.66324 P PPLA3 ES 54 GU 19169 73 926 Europe/Madrid 2012-03-04
-3117525 Mansilla Mayor Mansilla Mayor Mansilla Mayor 42.50943 -5.44272 P PPLA3 ES 55 LE 24095 380 793 Europe/Madrid 2012-03-04
-3117527 Mansilla de las Mulas Mansilla de las Mulas Mansilla de las Mulas,Mansillas de las Mulas 42.49886 -5.41738 P PPLA3 ES 55 LE 24094 1847 802 Europe/Madrid 2012-03-04
-3117533 Manresa Manresa Manresa,Манреса 41.72498 1.82656 P PPL ES 56 B 08213 76558 253 Europe/Madrid 2010-04-22
-3117534 Manquillos Manquillos Manquillos 42.20518 -4.5684 P PPLA3 ES 55 P 34099 62 776 Europe/Madrid 2012-03-04
-3117536 Mañón Manon Manon,Mañón,Santa Maria,Santa María 43.65 -7.73333 P PPLA3 ES ES 58 C 15044 0 297 Europe/Madrid 2012-03-04
-3117539 Manlleu Manlleu Manlleu 42.00228 2.28476 P PPLA3 ES 56 B 08112 20647 461 Europe/Madrid 2012-03-04
-3117543 Manjarrés Manjarres Manjarres,Manjarrés 42.39152 -2.67512 P PPLA3 ES 27 LO 26092 127 632 Europe/Madrid 2012-03-04
-3117545 Manjabálago Manjabalago Manjabalago,Manjabálago 40.66441 -5.07719 P PPLA3 ES 55 AV 05119 53 1289 Europe/Madrid 2012-03-04
-3117553 Manganeses de la Polvorosa Manganeses de la Polvorosa Manganeses de la Polvorosa 42.03563 -5.74694 P PPLA3 ES 55 ZA 49109 799 717 Europe/Madrid 2012-03-04
-3117554 Manganeses de la Lampreana Manganeses de la Lampreana Manganes de la Lampreana,Manganeses,Manganeses de la Lampreana 41.75085 -5.71048 P PPLA3 ES 55 ZA 49108 679 708 Europe/Madrid 2012-03-04
-3117556 Mañeru Maneru Maneru,Mañeru 42.67001 -1.86297 P PPLA3 ES 32 NA 31161 378 460 Europe/Madrid 2012-03-04
-3117566 Mandayona Mandayona Mandayona 40.9561 -2.75021 P PPLA3 ES 54 GU 19168 394 877 Europe/Madrid 2012-03-04
-3117571 Manciles Manciles 42.45728 -3.94461 P PPLA3 ES 55 BU 09202 32 894 Europe/Madrid 2012-03-04
-3117573 Manchones Manchones Manchones 41.15 -1.46667 P PPLA3 ES 52 Z 50161 146 726 Europe/Madrid 2012-03-04
-3117575 Mancera de Arriba Mancera de Arriba Mancera de Arriba 40.79139 -5.14772 P PPLA3 ES 55 AV 05118 116 935 Europe/Madrid 2012-03-04
-3117576 Mancera de Abajo Mancera de Abajo Mancera de Abajo 40.83974 -5.19933 P PPLA3 ES 55 SA 37179 316 895 Europe/Madrid 2012-03-04
-3117578 Mañaria Manaria Manaria,Mañaria 43.13819 -2.66104 P PPLA3 ES 59 BI 48059 449 194 Europe/Madrid 2012-03-04
-3117585 Mamolar Mamolar Mamolar 41.92762 -3.36228 P PPLA3 ES 55 BU 09201 62 1081 Europe/Madrid 2012-03-04
-3117589 Mambrillas de Lara Mambrillas de Lara Mambrillas de Lara 42.09446 -3.46194 P PPLA3 ES 55 BU 09200 68 992 Europe/Madrid 2012-03-04
-3117590 Mambrilla de Castrejón Mambrilla de Castrejon Mambrilla de Castrejon,Mambrilla de Castrejón 41.66634 -3.98448 P PPLA3 ES 55 BU 09199 133 828 Europe/Madrid 2012-03-04
-3117593 Mamblas Mamblas Mamblas 41.01925 -5.00874 P PPLA3 ES 55 AV 05117 258 818 Europe/Madrid 2012-03-04
-3117600 Malva Malva Malva 41.65467 -5.48657 P PPLA3 ES 55 ZA 49107 207 716 Europe/Madrid 2012-03-04
-3117602 Maluenda Maluenda Maluenda 41.28772 -1.61602 P PPLA3 ES 52 Z 50159 1018 588 Europe/Madrid 2012-03-04
-3117606 Malpica Malpica Malpica de Bergantinos,Malpica de Bergantiños 43.3228 -8.81052 P PPL ES 58 C 15043 6832 24 Europe/Madrid 2007-06-15
-3117611 Malpartida de Corneja Malpartida de Corneja Malpartida de Corneja 40.52208 -5.35026 P PPLA3 ES 55 AV 05116 177 1025 Europe/Madrid 2012-03-04
-3117612 Malpartida Malpartida 40.76269 -5.23149 P PPLA3 ES 55 SA 37178 140 905 Europe/Madrid 2012-03-04
-3117613 Malón Malon Malon,Malón 41.95235 -1.67199 P PPLA3 ES 52 Z 50157 422 443 Europe/Madrid 2012-03-04
-3117623 Mallén Mallen Mallen,Mallén 41.90064 -1.41994 P PPLA3 ES 52 Z 50160 3361 279 Europe/Madrid 2012-03-04
-3117636 Malgrat de Mar Malgrat de Mar Malgrat de Mar 41.64662 2.74135 P PPLA3 ES 56 B 08110 18472 9 Europe/Madrid 2012-03-04
-3117638 Maleján Malejan Malejan,Maleján 41.82762 -1.54906 P PPLA3 ES 52 Z 50156 284 470 Europe/Madrid 2012-03-04
-3117647 Malanquilla Malanquilla Malanquilla 41.56856 -1.87482 P PPLA3 ES 52 Z 50155 130 1050 Europe/Madrid 2012-03-04
-3117648 Malaguilla Malaguilla Malaguilla 40.81956 -3.2545 P PPLA3 ES 54 GU 19167 136 812 Europe/Madrid 2012-03-04
-3117651 Málaga del Fresno Malaga del Fresno Malaga del Fresno,Málaga del Fresno 40.7874 -3.24465 P PPLA3 ES 54 GU 19166 196 773 Europe/Madrid 2012-03-04
-3117664 Maján Majan Majan,Maján 41.46888 -2.30268 P PPLA3 ES 55 SO 42108 15 1146 Europe/Madrid 2012-03-04
-3117665 Majaelrayo Majaelrayo Majaelrayo 41.1126 -3.30257 P PPLA3 ES 54 GU 19165 74 1187 Europe/Madrid 2012-03-04
-3117667 Majadahonda Majadahonda Makhadaonda,Махадаонда 40.47353 -3.87182 P PPLA3 ES 29 M 28080 68110 743 Europe/Madrid 2012-03-04
-3117669 Maire de Castroponce Maire de Castroponce Maire de Castroponce 42.11283 -5.78475 P PPLA3 ES 55 ZA 49105 227 742 Europe/Madrid 2012-03-04
-3117672 Mainar Mainar Mainar 41.19276 -1.30292 P PPLA3 ES 52 Z 50154 164 870 Europe/Madrid 2012-03-04
-3117676 Maicas Maicas Maicas 40.96708 -0.89041 P PPLA3 ES 52 TE 44142 39 971 Europe/Madrid 2012-03-04
-3117678 Mahide Mahide Mahide 41.86917 -6.37784 P PPLA3 ES 55 ZA 49104 476 826 Europe/Madrid 2012-03-04
-3117680 Mahamud Mahamud Mahamud 42.11981 -3.9406 P PPLA3 ES 55 BU 09198 155 830 Europe/Madrid 2012-03-04
-3117701 Magaz de Cepeda Magaz de Cepeda Magaz de Cepeda 42.53967 -6.0717 P PPLA3 ES 55 LE 24093 448 896 Europe/Madrid 2012-03-04
-3117706 Magaña Magana Magana,Magaña 41.90089 -2.16269 P PPLA3 ES 55 SO 42107 104 937 Europe/Madrid 2012-03-04
-3117708 Magallón Magallon Magallon,Magallón 41.83248 -1.45979 P PPLA3 ES 52 Z 50153 1142 379 Europe/Madrid 2012-03-04
-3117714 Maello Maello Maello 40.80929 -4.51186 P PPLA3 ES 55 AV 05115 684 1032 Europe/Madrid 2012-03-04
-3117715 Maella Maella Maella 41.12251 0.13926 P PPLA3 ES 52 Z 50152 1995 302 Europe/Madrid 2012-03-04
-3117719 Madroñal Madronal 40.46407 -6.06271 P PPLA3 ES 55 SA 37176 160 679 Europe/Madrid 2012-03-04
-3117725 Madrigalejo del Monte Madrigalejo del Monte Madrigalejo del Monte 42.12442 -3.72509 P PPLA3 ES 55 BU 09197 212 896 Europe/Madrid 2012-03-04
-3117726 Madrigal del Monte Madrigal del Monte Madrigal del Monte 42.14464 -3.67571 P PPLA3 ES 55 BU 09196 220 939 Europe/Madrid 2012-03-04
-3117727 Madrigal de la Vera Madrigal de la Vera Madrigal de la Vera 40.1476 -5.36818 P PPLA3 ES 57 CC 10111 1722 392 Europe/Madrid 2012-03-04
-3117728 Madrigal de las Altas Torres Madrigal de las Altas Torres Madrigal,Madrigal de las Altas Torres 41.08968 -4.99863 P PPLA3 ES 55 AV 05114 1803 813 Europe/Madrid 2012-03-04
-3117731 Madridanos Madridanos Madridanos 41.47967 -5.6046 P PPLA3 ES 55 ZA 49103 529 649 Europe/Madrid 2012-03-04
-3117735 Madrid Madrid La Villa y Corte,Los Madriles,Lungsod ng Madrid,MAD,Madrid,Madridas,Madride,Madridi,Madrido,Madril,Madrite,Madryd,Madryt,Madríd,Magerit,Maidrid,Matritum,Sanchinarro,ma de li,madeulideu,madorido,madorido shi,madrid,madrida,madridi,madryd,mdryd,Μαδρίτη,Мадрид,Мадрыд,Մադրիդ,מדריד,مادرىد,مادرید,مدريد,میڈرڈ,ܡܕܪܝܕ,मद्रीद,माद्रिद,มาดริด,მადრიდი,ማድሪድ,マドリード,マドリード市,馬德里,马德里,마드리드 40.4165 -3.70256 P PPLC ES 29 M 28079 3255944 665 Europe/Madrid 2011-06-16
-3117736 Madremanya Madremanya Madremana,Madremanya,Madremaña 41.98333 2.96667 P PPLA3 ES 56 GI 17097 0 132 Europe/Madrid 2012-03-04
-3117747 Maderuelo Maderuelo Maderuelo 41.48644 -3.52218 P PPLA3 ES 55 SG 40115 141 958 Europe/Madrid 2012-03-04
-3117755 Macotera Macotera Macotera 40.83104 -5.28526 P PPLA3 ES 55 SA 37174 1525 894 Europe/Madrid 2012-03-04
-3117759 Machacón Machacon Machacon,Machacón 40.92623 -5.5243 P PPLA3 ES 55 SA 37175 517 808 Europe/Madrid 2012-03-04
-3117771 Maceda Maceda 42.26972 -7.65052 P PPLA3 ES 58 OR 32043 3232 589 Europe/Madrid 2012-03-04
-3117776 Luzón Luzon Luzon,Luzón 41.02691 -2.27691 P PPLA3 ES 54 GU 19163 80 1185 Europe/Madrid 2012-03-04
-3117777 Luzmela Luzmela Luzmela,Mazcuerras 43.29685 -4.20884 P PPL ES 39 S 39012 1982 141 Europe/Madrid 2012-01-19
-3117779 Luzaga Luzaga Luzaga 40.97338 -2.44497 P PPLA3 ES 54 GU 19162 105 1076 Europe/Madrid 2012-03-04
-3117781 Luyego Luyego Luyego 42.36667 -6.23333 P PPLA3 ES 55 LE 24091 865 1051 Europe/Madrid 2012-03-04
-3117791 Lupiana Lupiana Lupiana 40.60846 -3.05118 P PPLA3 ES 54 GU 19161 221 760 Europe/Madrid 2012-03-04
-3117797 Luna Luna Luna 42.1676 -0.93292 P PPLA3 ES 52 Z 50151 884 474 Europe/Madrid 2012-03-04
-3117798 Lumpiaque Lumpiaque Lumpiaque 41.62953 -1.30156 P PPLA3 ES 52 Z 50150 871 320 Europe/Madrid 2012-03-04
-3117802 Lumbreras Lumbreras Lumbreras 42.10477 -2.62189 P PPLA3 ES 27 LO 26091 131 1199 Europe/Madrid 2012-03-04
-3117803 Lumbrales Lumbrales Lumbrales 40.93501 -6.71948 P PPLA3 ES 55 SA 37173 2018 675 Europe/Madrid 2012-03-04
-3117804 Lumbier Lumbier Ilunberri,Lumbier 42.65303 -1.30669 P PPLA3 ES 32 NA 31159 1435 468 Europe/Madrid 2012-03-04
-3117811 Lugones Lugones Llugones,Lugones 43.40272 -5.81215 P PPL ES 34 O 33066 14000 165 169 Europe/Madrid 2012-01-19
-3117814 Lugo Lugo Lugo,lwghw,rugo,Луго,لوغو,ルーゴ 43 -7.56667 P PPLA2 ES 58 LU 27028 96678 402 Europe/Madrid 2010-08-22
-3117824 Luesma Luesma Luesma 41.16583 -1.14575 P PPLA3 ES 52 Z 50149 41 948 Europe/Madrid 2012-03-04
-3117827 Luesia Luesia Luesia 42.36974 -1.02421 P PPLA3 ES 52 Z 50148 371 794 Europe/Madrid 2012-03-04
-3117830 Luelmo Luelmo Luelmo 41.4403 -6.13338 P PPLA3 ES 55 ZA 49101 222 774 Europe/Madrid 2012-03-04
-3117834 Ludiente Ludiente Lludient,Ludiente 40.08333 -0.36667 P PPLA3 ES 60 CS 12073 201 538 Europe/Madrid 2012-03-04
-3117849 Luceni Luceni Luceni 41.82857 -1.23889 P PPLA3 ES 52 Z 50147 1045 235 Europe/Madrid 2012-03-04
-3117850 Lucena del Cid Lucena del Cid Llucena,Lucena del Cid 40.13333 -0.28333 P PPLA3 ES 60 CS 12072 1545 623 Europe/Madrid 2012-03-04
-3117851 Lucena de Jalón Lucena de Jalon Lucena de Jalon,Lucena de Jalón 41.55301 -1.31305 P PPLA3 ES 52 Z 50146 258 341 Europe/Madrid 2012-03-04
-3117856 Lubián Lubian Lubian,Lubián 42.03569 -6.90541 P PPLA3 ES 55 ZA 49100 368 1034 Europe/Madrid 2012-03-04
-3117862 Luanco Luanco Gozon,Lluancu,Luanco,Luanzo,Santa Maria de Luanco,Santa María de Luanco 43.61517 -5.79344 P PPL ES 34 O 33025 10672 13 Europe/Madrid 2008-07-25
-3117870 Lozoya Lozoya Lozoya 40.94949 -3.79086 P PPLA3 ES 29 M 28076 568 1102 Europe/Madrid 2012-03-04
-3117884 Lobios Lobios San Miguel 41.87493 -8.08783 P PPLA3 ES ES 58 OR 32042 0 582 Europe/Madrid 2012-03-04
-3117888 Lousame Lousame Lousame 42.77299 -8.8444 P PPL ES 58 C 15042 3862 184 Europe/Madrid 2012-01-19
-3117945 Los Santos de la Humosa Los Santos de la Humosa Los Santos de la Humosa 40.49968 -3.25332 P PPL ES 29 M 28137 1454 889 Europe/Madrid 2012-01-19
-3117982 Los Molinos Los Molinos Los Molinos 40.71578 -4.07402 P PPL ES 29 M 28087 4452 1053 Europe/Madrid 2012-01-19
-3118021 Loscos Loscos Loscos 41.08108 -1.04433 P PPLA3 ES 52 TE 44138 179 982 Europe/Madrid 2012-03-04
-3118024 Los Corrales de Buelna Los Corrales de Buelna Los Corrales,Los Corrales de Buelna 43.26358 -4.07262 P PPL ES 39 S 39025 11610 92 Europe/Madrid 2012-01-19
-3118025 Loscorrales Loscorrales Loscorrales 42.25451 -0.64296 P PPLA3 ES 52 HU 22151 113 622 Europe/Madrid 2012-03-04
-3118057 Losar de la Vera Losar de la Vera Losar de la Vera 40.12158 -5.60454 P PPLA3 ES 57 CC 10110 3146 546 Europe/Madrid 2012-03-04
-3118058 Los Arcos Los Arcos Los Arcos 42.57076 -2.19275 P PPL ES 32 NA 31029 1295 456 Europe/Madrid 2012-01-19
-3118070 Losacio Losacio Losacio 41.71092 -6.04059 P PPLA3 ES 55 ZA 49099 0 752 Europe/Madrid 2012-03-04
-3118071 Losacino Losacino Losacino 41.68084 -6.07986 P PPLA3 ES 55 ZA 49098 291 701 Europe/Madrid 2012-03-04
-3118095 Loranca de Tajuña Loranca de Tajuna Loranca de Tajuna,Loranca de Tajuña 40.44368 -3.11082 P PPLA3 ES 54 GU 19160 711 697 Europe/Madrid 2012-03-04
-3118100 Loporzano Loporzano 42.16137 -0.32337 P PPLA3 ES 52 HU 22150 529 584 Europe/Madrid 2012-03-04
-3118108 Longás Longas Longas,Longás 42.48092 -0.9342 P PPLA3 ES 52 Z 50144 57 750 Europe/Madrid 2012-03-04
-3118109 Longares Longares Longares 41.40308 -1.16876 P PPLA3 ES 52 Z 50143 850 536 Europe/Madrid 2012-03-04
-3118120 Lominchar Lominchar Lominchar 40.09061 -3.96713 P PPLA3 ES 54 TO 45085 1453 649 Europe/Madrid 2012-03-04
-3118135 Lomas Lomas 42.27362 -4.55095 P PPLA3 ES 55 P 34096 54 823 Europe/Madrid 2012-03-04
-3118150 Logroño Logrono Logron'o,Logronjo,Logrono,Logronyo,Logroño,lwgrwnyw,roguronyo,Логроньо,לוגרוניו,ログローニョ 42.46667 -2.45 P PPLA ES 27 LO 26089 152107 389 Europe/Madrid 2012-01-19
-3118155 Loeches Loeches Loeches 40.38333 -3.4 P PPLA3 ES 29 M 28075 4805 646 Europe/Madrid 2012-03-04
-3118161 Lodosa Lodosa Lodosa 42.42269 -2.07741 P PPLA3 ES 32 NA 31157 4721 321 Europe/Madrid 2012-03-04
-3118175 Lobios Lobios 42.40746 -7.53164 P PPL ES 58 LU 27059 2512 532 Europe/Madrid 2007-02-06
-3118178 Lobera de Onsella Lobera de Onsella Lobera,Lobera de Onsella 42.47848 -1.02208 P PPLA3 ES 52 Z 50142 66 668 Europe/Madrid 2012-03-04
-3118194 Loarre Loarre Loarre,Lobarre 42.31432 -0.62588 P PPLA3 ES 52 HU 22149 412 783 Europe/Madrid 2012-03-04
-3118212 Lloret de Mar Lloret de Mar L'oret-de-Mar,Ljoret de Mar,Lloret de Mar,Љорет де Мар,Льорет-де-Мар 41.69993 2.84565 P PPLA3 ES 56 GI 17095 39363 14 Europe/Madrid 2012-03-04
-3118228 Llodio Llodio Laudio,Laudio-Llodio,Llodio,Plaza,Plaza de Gogenuri 43.14322 -2.96204 P PPL ES 59 VI 01036 18314 125 Europe/Madrid 2012-01-19
-3118236 Llívia Llivia Llivia,Llívia 42.46462 1.9807 P PPLA3 ES 56 GI 17094 17094 0 1217 Europe/Madrid 2012-03-04
-3118237 Lliçà de Vall Llica de Vall Llica de Vall,Lliçà de Vall 41.59054 2.24121 P PPLA3 ES 56 B 08107 0 136 Europe/Madrid 2011-12-23
-3118238 Lliçà d'Amunt Llica d'Amunt Llica d'Amunt,Llissa de Munt,Llissá de Munt,Lliçà d'Amunt 41.61667 2.23333 P PPL ES 56 B 08107 14143 161 Europe/Madrid 2010-04-22
-3118240 Llinars del Vallès Llinars del Valles Llinars,Llinars del Valles,Llinars del Vallès,Llinas,Llinás 41.63333 2.4 P PPLA3 ES 56 B 08106 0 181 Europe/Madrid 2012-03-04
-3118241 Llimiana Llimiana Llimiana 42.07476 0.91621 P PPLA3 ES 56 L 25128 178 784 Europe/Madrid 2012-03-04
-3118248 Lles de Cerdanya Lles de Cerdanya Lles,Lles de Cerdanya,Llés 42.39025 1.68692 P PPLA3 ES 56 L 25127 236 1476 Europe/Madrid 2012-03-04
-3118250 Llers Llers Llers 42.29571 2.91183 P PPLA3 ES 56 GI 17093 1126 167 Europe/Madrid 2012-03-04
-3118266 Lledó Lledo Lledo,Lledó 40.95498 0.27749 P PPLA3 ES 52 TE 44141 43071 183 460 Europe/Madrid 2011-07-31
-3118287 Llançà Llanca L'janssa,Llanca,Llançà,Льянсса 42.36241 3.15213 P PPL ES 56 GI 17092 5000 13 Europe/Madrid 2010-04-04
-3118293 Llano de Olmedo Llano de Olmedo Llano de Olmedo 41.26728 -4.61386 P PPLA3 ES 55 VA 47079 79 781 Europe/Madrid 2012-03-04
-3118294 Llano de Bureba Llano de Bureba Llano de Bureba,Solas de Bureba 42.62435 -3.4589 P PPLA3 ES 55 BU 09195 81 644 Europe/Madrid 2012-03-04
-3118304 Llanes Llanes Llanes 43.41982 -4.75485 P PPLA3 ES 34 O 33036 14013 13 Europe/Madrid 2012-03-04
-3118307 Llanera Llanera Llanera,Santa Cruz 43.46189 -5.9311 P PPL ES 34 O 33054 13776 256 Europe/Madrid 2012-01-19
-3118308 Llanera Llanera Llanera,San Cucufate 43.43333 -5.88333 P PPLA3 ES ES 34 O 33035 0 161 Europe/Madrid 2012-03-04
-3118328 Llambilles Llambilles Llambillas,Llambilles 41.92106 2.85078 P PPLA3 ES 56 GI 17090 0 124 Europe/Madrid 2012-03-04
-3118332 Llamas de la Ribera Llamas de la Ribera Llamas,Llamas de la Ribera 42.63504 -5.82524 P PPLA3 ES 55 LE 24092 1084 898 Europe/Madrid 2012-03-04
-3118340 Llagostera Llagostera Llagostera 41.82688 2.89365 P PPLA3 ES 56 GI 17089 6713 136 Europe/Madrid 2012-03-04
-3118347 Lladó Llado Llado,Lladó,Lledo,Lledó 42.24769 2.81373 P PPLA3 ES 56 GI 17088 580 199 Europe/Madrid 2012-03-04
-3118350 Lizoáin Lizoain 42.79868 -1.46753 P PPLA3 ES 32 NA 31156 300 537 Europe/Madrid 2012-03-04
-3118353 Lizartza Lizarza Lizartza,Lizarza 43.10236 -2.03489 P PPLA3 ES 59 SS 20054 0 140 Europe/Madrid 2012-03-04
-3118356 Lituénigo Lituenigo Lituenigo,Lituénigo 41.83533 -1.76196 P PPLA3 ES 52 Z 50141 124 770 Europe/Madrid 2012-03-04
-3118360 Litago Litago Litago 41.81407 -1.75276 P PPLA3 ES 52 Z 50140 192 790 Europe/Madrid 2012-03-04
-3118370 Linyola Linyola Linola,Linyola,Liñola 41.7 0.91667 P PPLA3 ES 56 L 25122 2587 229 Europe/Madrid 2012-03-04
-3118388 Linares de Riofrío Linares de Riofrio Linares,Linares de Riofrio,Linares de Riofrío 40.58338 -5.92091 P PPLA3 ES 55 SA 37172 1011 958 Europe/Madrid 2012-03-04
-3118389 Linares de Mora Linares de Mora Linares,Linares de Mora,Llinars 40.32159 -0.57468 P PPLA3 ES 52 TE 44137 335 1312 Europe/Madrid 2012-03-04
-3118415 Limpias Limpias Limpias,Rucoba 43.36402 -3.41778 P PPLA3 ES 39 S 39038 1487 36 Europe/Madrid 2012-03-04
-3118452 Liédena Liedena 42.61943 -1.27579 P PPLA3 ES 32 NA 31155 341 442 Europe/Madrid 2012-03-04
-3118454 Lidón Lidon Lidon,Lidón 40.71725 -1.1125 P PPLA3 ES 52 TE 44136 78 1219 Europe/Madrid 2012-03-04
-3118457 Liceras Liceras Liceras 41.37939 -3.24371 P PPLA3 ES 55 SO 42105 59 1127 Europe/Madrid 2012-03-04
-3118458 Libros Libros Libros 40.16312 -1.2336 P PPLA3 ES 52 TE 44135 147 772 Europe/Madrid 2012-03-04
-3118469 Lezo Lezo Lezo 43.32142 -1.89739 P PPLA3 ES 59 SS 20053 5867 13 Europe/Madrid 2012-03-04
-3118470 Lezáun Lezaun 42.77739 -1.99385 P PPLA3 ES 32 NA 31154 257 819 Europe/Madrid 2012-03-04
-3118472 Lezama Lezama Lexama 43.02799 -2.97257 P PPL ES 59 VI 01002 2261 347 Europe/Madrid 2006-08-27
-3118473 Leza de Río Leza Leza de Rio Leza Leza de Rio Leza,Leza de Río Leza 42.32952 -2.40606 P PPLA3 ES 27 LO 26088 69 572 Europe/Madrid 2012-03-04
-3118475 Leza Leza Leza 42.56552 -2.63324 P PPLA3 ES 59 VI 01034 229 574 Europe/Madrid 2012-03-04
-3118479 Letux Letux Letux 41.25512 -0.80269 P PPLA3 ES 52 Z 50139 416 518 Europe/Madrid 2012-03-04
-3118502 Lesaka Lesaka Lesaca,Lesaka 43.25 -1.7 P PPLA3 ES 32 NA 31153 0 66 Europe/Madrid 2012-03-04
-3118505 Les Les Les 42.81076 0.7105 P PPLA3 ES 56 L 25121 755 638 Europe/Madrid 2012-03-04
-3118511 Lerma Lerma Lerma 42.02609 -3.75978 P PPLA3 ES 55 BU 09194 2647 836 Europe/Madrid 2012-03-04
-3118512 Lerín Lerin Lerin,Lerín 42.48318 -1.97184 P PPLA3 ES 32 NA 31152 1807 442 Europe/Madrid 2012-03-04
-3118514 Lleida Lleida Ilerda,Ilerdo,Lerida,Lheida,Lhèida,Ljeida,Lleida,Lérida,lyydh,rerida,ryeida,Љеида,Лерида,ליידה,リェイダ,レリダ 41.61667 0.61667 P PPLA2 ES 56 L 25120 135919 155 183 Europe/Madrid 2011-07-02
-3118516 Lerga Lerga Lerga 42.56781 -1.5011 P PPLA3 ES 32 NA 31151 75 618 Europe/Madrid 2012-03-04
-3118523 Lekeitio Lekeitio Lekeitio,Lequeilio,Lequeitio 43.36417 -2.50492 P PPLA3 ES 59 BI 48057 7254 23 Europe/Madrid 2012-03-04
-3118532 León Leon Ciuda de Llion,Ciudá de Llión,Leon,Leono,León,Lleo,Lleon,Lleó,Lleón,lywn,reon,Леон,ليون,レオン 42.6 -5.56667 P PPLA2 ES 55 LE 24089 134305 846 Europe/Madrid 2010-08-23
-3118554 Leioa Leioa Leioa,Lejona 43.33333 -2.98333 P PPL ES 59 BI 48054 30079 57 Europe/Madrid 2010-04-22
-3118559 Leitza Leitza Leitza,Leiza 43.08333 -1.91667 P PPLA3 ES 32 NA 31149 0 471 Europe/Madrid 2012-03-04
-3118561 Leiva Leiva Leiva 42.50281 -3.04701 P PPLA3 ES 27 LO 26087 273 590 Europe/Madrid 2012-03-04
-3118586 Legorreta Legorreta Legorreta 43.08464 -2.15017 P PPLA3 ES 59 SS 20052 1357 129 Europe/Madrid 2012-03-04
-3118587 Legazpi Legazpia Legazpi,Legazpia 43.05319 -2.33689 P PPLA3 ES 59 SS 20051 0 448 Europe/Madrid 2012-03-04
-3118590 Legaria Legaria 42.64924 -2.17392 P PPLA3 ES 32 NA 31148 123 480 Europe/Madrid 2012-03-04
-3118592 Legarda Legarda 42.71183 -1.76846 P PPLA3 ES 32 NA 31147 125 477 Europe/Madrid 2012-03-04
-3118593 Leganiel Leganiel Leganiel 40.16568 -2.94966 P PPLA3 ES 54 CU 16119 244 753 Europe/Madrid 2012-03-04
-3118594 Leganés Leganes Leganes,Leganés,Леганес 40.32718 -3.7635 P PPLA3 ES 29 M 28074 186066 672 Europe/Madrid 2012-03-04
-3118596 Ledrada Ledrada Ledrada 40.46878 -5.72038 P PPLA3 ES 55 SA 37171 570 886 Europe/Madrid 2012-03-04
-3118600 Ledigos Ledigos 42.3548 -4.8648 P PPLA3 ES 55 P 34094 92 877 Europe/Madrid 2012-03-04
-3118602 Ledesma de la Cogolla Ledesma de la Cogolla Ledesma de la Cogolla 42.32032 -2.719 P PPLA3 ES 27 LO 26086 25 749 Europe/Madrid 2012-03-04
-3118605 Ledesma Ledesma Ledesma 41.08829 -6.00178 P PPLA3 ES 55 SA 37170 1853 755 Europe/Madrid 2012-03-04
-3118607 Ledanca Ledanca Ledanca 40.86881 -2.8434 P PPLA3 ES 54 GU 19159 124 911 Europe/Madrid 2012-03-04
-3118608 Lekunberri Lekunberri Lecumberri,Lekunberri 43.0005 -1.89257 P PPLA3 ES 32 NA 31908 0 566 Europe/Madrid 2012-03-04
-3118609 Leciñena Lecinena Lecinena,Leciñena 41.79868 -0.61174 P PPLA3 ES 52 Z 50137 1267 417 Europe/Madrid 2012-03-04
-3118615 Lechón Lechon Lechon,Lechón 41.08633 -1.28483 P PPLA3 ES 52 Z 50138 57 986 Europe/Madrid 2012-03-04
-3118619 Lécera Lecera Lecera,Lécera 41.20491 -0.71133 P PPLA3 ES 52 Z 50136 766 534 Europe/Madrid 2012-03-04
-3118636 Leache Leache 42.60718 -1.40728 P PPLA3 ES 32 NA 31146 48 595 Europe/Madrid 2012-03-04
-3118637 Leaburu Leaburu Leaburu,Leaburu-Txarama 43.12188 -2.0543 P PPLA3 ES 59 SS 20050 365 253 Europe/Madrid 2012-03-04
-3118644 Lazkao Lazcano Lazcano,Lazkao 43.03239 -2.18616 P PPLA3 ES 59 SS 20049 0 170 Europe/Madrid 2012-03-04
-3118651 Lazagurría Lazagurria Lazagurria,Lazagurría 42.49286 -2.24018 P PPLA3 ES 32 NA 31145 205 393 Europe/Madrid 2012-03-04
-3118653 Laza Laza Laza 42.06136 -7.462 P PPLA3 ES 58 OR 32039 1771 481 Europe/Madrid 2012-03-04
-3118659 Layana Layana Layana 42.29546 -1.24483 P PPLA3 ES 52 Z 50135 115 481 Europe/Madrid 2012-03-04
-3118771 La Torre de Esteban Hambrán La Torre de Esteban Hambran La Torre de Esteban Hambran,La Torre de Esteban Hambrán 40.16935 -4.21548 P PPL ES 54 TO 45171 1678 568 Europe/Madrid 2012-01-19
-3118799 la Tallada d'Empordà la Tallada d'Emporda La Tallada,la Tallada,la Tallada d'Emporda,la Tallada d'Empordà 42.0802 3.05583 P PPLA3 ES 56 GI 17195 0 16 Europe/Madrid 2012-03-04
-3118812 Las Ventas de Retamosa Las Ventas de Retamosa Ventas de Retamosa 40.15526 -4.11455 P PPL ES 54 TO 45183 1432 625 Europe/Madrid 2008-10-28
-3118824 Lastras del Pozo Lastras del Pozo Lastras del Pozo 40.8792 -4.34658 P PPLA3 ES 55 SG 40111 88 973 Europe/Madrid 2012-03-04
-3118826 Lastras de Cuéllar Lastras de Cuellar Lastras de Cuellar,Lastras de Cuéllar 41.29762 -4.1067 P PPLA3 ES 55 SG 40110 469 905 Europe/Madrid 2012-03-04
-3118848 Las Rozas de Madrid Las Rozas de Madrid Las Rozas,Las Rozas de Madrid,Las-Rosas-de-Madrid,Rozas de Madrid,Лас-Росас-де-Мадрид 40.49292 -3.87371 P PPL ES 29 M 28127 86340 718 Europe/Madrid 2010-04-22
-3118859 Laspuña Laspuna L'Espuna,Laspuna 42.50374 0.15441 P PPLA3 ES 52 HU 22144 270 714 Europe/Madrid 2012-03-04
-3118866 les Planes d'Hostoles les Planes d'Hostoles les Planes d'Hostoles 42.05669 2.54093 P PPL ES 56 GI 17194 1800 356 Europe/Madrid 2010-04-04
-3118876 Laspaúles Laspaules Laspaules,Laspaúles 42.47136 0.59698 P PPLA3 ES 52 HU 22143 272 1457 Europe/Madrid 2012-03-04
-3118888 Las Navas del Marqués Las Navas del Marques Las Navas,Las Navas del Marques,Las Navas del Marqués,Navas del Marques 40.60244 -4.33449 P PPL ES 55 AV 05168 5005 1300 1311 Europe/Madrid 2012-01-19
-3118900 Las Matas Las Matas Barrio Obrero Las Matas,La Mata,Las Matas 40.55779 -3.89173 P PPL ES 29 M 28127 14213 736 Europe/Madrid 2012-01-19
-3118906 les Llosses les Llosses Las Llosas,las Llosas,les Llosses 42.15 2.11667 P PPLA3 ES 56 GI 17096 0 901 Europe/Madrid 2012-03-04
-3118952 La Selva La Selva La Selva,La Selva del Camp,La Selva del Campo,Selva 41.21484 1.13883 P PPL ES 56 T 43145 4746 241 Europe/Madrid 2012-01-19
-3118954 la Cellera de Ter la Cellera de Ter la Cellera,la Cellera de Ter 41.96919 2.62402 P PPLA3 ES 56 GI 17189 0 157 Europe/Madrid 2012-03-04
-3118958 La Secuita La Secuita La Secuita 41.2046 1.27996 P PPL ES 56 T 43043 1177 172 Europe/Madrid 2012-01-19
-3118961 La Seca La Seca La Seca 41.41364 -4.90552 P PPL ES 55 VA 47158 1075 735 Europe/Madrid 2012-01-19
-3118967 Lascuarre Lascuarre Lascuarra,Lascuarre,Lasquarri,Llascuarri 42.1961 0.5201 P PPLA3 ES 52 HU 22142 143 652 Europe/Madrid 2012-03-04
-3119027 Lasarte Lasarte Lasarte,Lasarte-Oria 43.26774 -2.02169 P PPL ES 59 SS 20069 17782 16 Europe/Madrid 2010-06-22
-3119053 A Rúa A Rua A Rua,A Rúa 42.40048 -7.10268 P PPL ES 58 OR 27050 4975 335 Europe/Madrid 2012-02-23
-3119061 Larrodrigo Larrodrigo Larrodrigo 40.73722 -5.44894 P PPLA3 ES 55 SA 37169 277 870 Europe/Madrid 2012-03-04
-3119075 Larraul Larraul Larraul 43.18773 -2.10202 P PPLA3 ES 59 SS 20048 184 234 Europe/Madrid 2012-03-04
-3119078 Larraona Larraona Larraona 42.7797 -2.25682 P PPLA3 ES 32 NA 31143 140 778 Europe/Madrid 2012-03-04
-3119081 Larraga Larraga Larraga 42.55841 -1.84954 P PPLA3 ES 32 NA 31142 1959 392 Europe/Madrid 2012-03-04
-3119099 La Roca del Vallès La Roca del Valles La Roca del Valles,La Roca del Vallès 41.58333 2.33333 P PPL ES 56 B 08181 10214 198 Europe/Madrid 2010-04-22
-3119100 La Robla La Robla La Robla 42.80302 -5.62904 P PPL ES 55 LE 24134 4656 955 Europe/Madrid 2012-01-19
-3119145 Laredo Laredo Laredo 43.4098 -3.41613 P PPLA3 ES 39 S 39035 12591 6 Europe/Madrid 2012-03-04
-3119153 Lardero Lardero Lardero 42.42686 -2.46153 P PPLA3 ES 27 LO 26084 6214 438 Europe/Madrid 2012-03-04
-3119172 Laracha Laracha A Laracha,Laracha 43.25375 -8.58535 P PPL ES 58 C 15019 11171 163 Europe/Madrid 2012-01-19
-3119192 Lapuebla de Labarca Lapuebla de Labarca La Puebla de Labarka,Lapuebla de Labarca 42.49454 -2.5734 P PPLA3 ES 59 VI 01033 836 434 Europe/Madrid 2011-07-31
-3119212 La Pola de Gordón La Pola de Gordon La Pola de Gordon,La Pola de Gordón 42.85658 -5.66768 P PPL ES 55 LE 24114 4241 1075 Europe/Madrid 2012-01-19
-3119214 la Pobla de Mafumet la Pobla de Mafumet La Pobla de Mafumet,Pobla de Mafumet,la Pobla de Mafumet 41.18333 1.21667 P PPL ES 56 T 43047 1405 74 Europe/Madrid 2010-04-04
-3119216 La Pobla de Claramunt La Pobla de Claramunt Claramunt,La Pobla de Claramunt,Pobla de Claramunt 41.55423 1.67712 P PPL ES 56 B 08165 2004 270 Europe/Madrid 2012-01-19
-3119219 Lapoblación Lapoblacion 42.60478 -2.46008 P PPLA3 ES 32 NA 31141 170 969 Europe/Madrid 2012-03-04
-3119220 La Plaza La Plaza La Plaza,Teberga,Teverga 43.16397 -6.09943 P PPL ES 34 O 33072 2029 506 Europe/Madrid 2012-01-19
-3119231 La Pineda La Pineda La Pineda,Ла Пинеда 41.07625 1.18515 P PPL ES ES 56 B 08056 17305 -9999 Europe/Madrid 2010-04-04
-3119236 La Pesga La Pesga 40.3263 -6.17603 P PPL ES 55 SA 10144 1162 437 Europe/Madrid 2008-07-26
-3119243 Laperdiguera Laperdiguera Laperdiguera 41.99053 -0.04657 P PPLA3 ES 52 HU 22139 103 460 Europe/Madrid 2012-03-04
-3119262 La Pedraja de Portillo La Pedraja de Portillo La Pedraja de Portillo 41.47124 -4.64639 P PPL ES 55 VA 47006 1048 719 Europe/Madrid 2012-01-19
-3119295 Lanzuela Lanzuela Lanzuela 41.0985 -1.20616 P PPLA3 ES 52 TE 44133 29 1013 Europe/Madrid 2012-03-04
-3119305 Lantz Lantz Lantz,Lanz 43 -1.61667 P PPLA3 ES 32 NA 31140 0 646 Europe/Madrid 2012-03-04
-3119316 Lantadilla Lantadilla 42.34078 -4.27866 P PPLA3 ES 55 P 34092 442 789 Europe/Madrid 2012-03-04
-3119327 Languilla Languilla Languilla 41.44926 -3.42438 P PPLA3 ES 55 SG 40109 116 952 Europe/Madrid 2012-03-04
-3119336 Langayo Langayo Langayo 41.56986 -4.19866 P PPLA3 ES 55 VA 47077 392 823 Europe/Madrid 2012-03-04
-3119338 Langa del Castillo Langa del Castillo Langa,Langa del Castillo 41.212 -1.3985 P PPLA3 ES 52 Z 50134 177 881 Europe/Madrid 2012-03-04
-3119339 Langa de Duero Langa de Duero Langa,Langa de Duero,Larga de Duero 41.60985 -3.40061 P PPLA3 ES 55 SO 42103 876 844 Europe/Madrid 2012-03-04
-3119340 Langa Langa Langa 41.0055 -4.85946 P PPLA3 ES 55 AV 05109 550 870 Europe/Madrid 2012-03-04
-3119341 Lanestosa Lanestosa Lanestosa 43.21986 -3.4392 P PPLA3 ES 59 BI 48051 0 283 Europe/Madrid 2011-07-31
-3119361 Láncara Lancara 42.86425 -7.33667 P PPLA3 ES 58 LU 27026 3121 452 Europe/Madrid 2012-03-04
-3119374 Lanaja Lanaja Lanaja 41.77063 -0.33096 P PPLA3 ES 52 HU 22137 1465 369 Europe/Madrid 2012-03-04
-3119397 la Morera de Montsant la Morera de Montsant la Morera,la Morera de Montsant 41.26529 0.84157 P PPLA3 ES 56 T 43096 182 750 Europe/Madrid 2012-03-04
-3119509 Lama Lama Lama,San Salvador 42.4 -8.43333 P PPL ES 58 PO 36025 2864 493 Europe/Madrid 2012-01-19
-3119512 Lalueza Lalueza Lalueza 41.83968 -0.25493 P PPLA3 ES 52 HU 22136 0 286 Europe/Madrid 2012-03-04
-3119513 Laluenga Laluenga Laluenga 42.00703 -0.04715 P PPLA3 ES 52 HU 22135 246 487 Europe/Madrid 2012-03-04
-3119531 La Llagosta La Llagosta La Llagosta 41.51435 2.19297 P PPL ES 56 B 08125 13820 55 Europe/Madrid 2012-01-19
-3119536 Lalín Lalin Lalin,Lalín,Лалин 42.66085 -8.11285 P PPL ES 58 PO 36024 21254 552 Europe/Madrid 2012-01-19
-3119541 La Lastrilla La Lastrilla La Lastrilla 40.96817 -4.10468 P PPL ES 55 SG 40112 2359 1059 Europe/Madrid 2012-01-19
-3119559 la Jonquera la Jonquera la Jonquera 42.41728 2.87363 P PPLA3 ES 56 GI 17086 0 116 Europe/Madrid 2012-03-04
-3119584 La Iglesuela del Cid La Iglesuela del Cid Iglesuela del Cid,La Iglesuela 40.48312 -0.31938 P PPLA3 ES 52 TE 44126 513 1233 Europe/Madrid 2012-03-04
-3119618 Lagunilla del Jubera Lagunilla del Jubera Lagunilla del Jubera 42.33414 -2.32116 P PPLA3 ES 27 LO 26083 575 614 Europe/Madrid 2012-03-04
-3119622 Lagunilla Lagunilla Lagunilla 40.32492 -5.97132 P PPLA3 ES 55 SA 37168 557 925 Europe/Madrid 2012-03-04
-3119623 Lagunaseca Lagunaseca Lagunaseca 40.531 -2.01956 P PPLA3 ES 54 CU 16116 130 1365 Europe/Madrid 2012-03-04
-3119629 Laguna de Negrillos Laguna de Negrillos Laguna de Negrillos 42.23889 -5.66066 P PPLA3 ES 55 LE 24088 1340 782 Europe/Madrid 2012-03-04
-3119630 Laguna del Marquesado Laguna del Marquesado La Laguna del Marquesado,Laguna del Marquesado 40.17749 -1.67167 P PPLA3 ES 54 CU 16115 74 1320 Europe/Madrid 2012-03-04
-3119631 Laguna de Duero Laguna de Duero Laguna de Duero,Laguna-de-Duehro,Лагуна-де-Дуэро 41.58151 -4.72332 P PPLA3 ES 55 VA 47076 21762 708 Europe/Madrid 2012-03-04
-3119632 Laguna de Contreras Laguna de Contreras Laguna de Contreras 41.49513 -4.02874 P PPLA3 ES 55 SG 40108 154 800 Europe/Madrid 2012-03-04
-3119633 Laguna de Cameros Laguna de Cameros Laguna de Cameros 42.17455 -2.54282 P PPLA3 ES 27 LO 26082 163 1036 Europe/Madrid 2012-03-04
-3119634 Laguna Dalga Laguna Dalga Laguna Dalga 42.33192 -5.7522 P PPLA3 ES 55 LE 24087 845 800 Europe/Madrid 2012-03-04
-3119638 Lagueruela Lagueruela Lagueruela 41.0425 -1.19283 P PPLA3 ES 52 TE 44132 54 1070 Europe/Madrid 2012-03-04
-3119645 Laguardia Laguardia Biasteri,Laguardia 42.5546 -2.58528 P PPLA3 ES 59 VI 01031 1498 639 Europe/Madrid 2012-03-04
-3119646 A Guarda A Guarda A Guarda,La Guardia 41.90131 -8.87423 P PPLA3 ES 58 PO 36023 0 39 Europe/Madrid 2012-03-04
-3119655 La Granada La Granada La Granada 41.37816 1.71902 P PPL ES 56 B 08305 1566 273 Europe/Madrid 2012-01-19
-3119658 Lagrán Lagran Lagran,Lagrán 42.62625 -2.58385 P PPLA3 ES 59 VI 01030 197 751 Europe/Madrid 2012-03-04
-3119683 La Ginebrosa La Ginebrosa La Ginebrosa,la Ginebrosa 40.86992 -0.13525 P PPLA3 ES 52 TE 44118 236 715 Europe/Madrid 2012-03-04
-3119687 Laxe Laxe 43.22019 -9.0063 P PPLA3 ES 58 C 15040 0 26 Europe/Madrid 2012-03-04
-3119688 Lagata Lagata Lagata 41.2397 -0.80487 P PPLA3 ES 52 Z 50133 124 527 Europe/Madrid 2012-03-04
-3119689 Lagartos Lagartos 42.40578 -4.90454 P PPLA3 ES 55 P 34091 136 916 Europe/Madrid 2012-03-04
-3119694 la Garriga la Garriga la Garriga 41.68333 2.28333 P PPL ES 56 B 08086 14991 241 Europe/Madrid 2010-04-22
-3119704 La Fuliola La Fuliola Fuliola,La Fuliola,la Fuliola 41.71358 1.01746 P PPL ES 56 L 25096 1238 278 Europe/Madrid 2012-01-19
-3119705 La Fuente de San Esteban La Fuente de San Esteban Fuente San Esteban,Fuentes de San Esteban,La Fuente de San Esteban 40.80161 -6.25852 P PPL ES 55 SA 37135 1453 770 Europe/Madrid 2012-01-19
-3119711 La Frontera La Frontera La Frontera 40.40161 -2.21699 P PPLA3 ES 54 CU 16085 204 977 Europe/Madrid 2012-03-04
-3119746 A Estrada A Estrada La Estrada 42.68333 -8.48333 P PPL ES 58 PO 36017 21880 266 Europe/Madrid 2012-02-23
-3119779 l'Escala l'Escala l'Escala 42.12562 3.13261 P PPL ES 56 GI 17062 10140 15 Europe/Madrid 2010-04-22
-3119793 Ladrillar Ladrillar El Ladrillar 40.46576 -6.22427 P PPLA3 ES 57 CC 10108 269 715 Europe/Madrid 2012-03-04
-3119809 Lakuntza Lakuntza Lacunza,Lakuntza 42.92249 -2.02337 P PPLA3 ES 32 NA 31138 0 491 Europe/Madrid 2012-03-04
-3119822 La Cuesta La Cuesta Cuesta,La Cuesta,La Kosta,Ла Коста 41.0828 -3.96017 P PPL ES 55 SG 40208 5000 1123 Europe/Madrid 2012-01-19
-3119841 A Coruña A Coruna A Coruna,A Coruña,A Cruna,A Cruña,Caronium,Coruna,Corunako,Corunha,Corunna,Corunya,Coruña,Coruñako,La Corogne,La Coruna,La Coruña,La-Korun'ja,The Groyne,Ла-Корунья,ラ・コルーニャ県 43.37135 -8.396 P PPLA3 ES 58 C 15030 246056 22 Europe/Madrid 2012-03-04
-3119884 La Carrera La Carrera La Carrera 40.34777 -5.55474 P PPLA3 ES 55 AV 05051 0 1055 Europe/Madrid 2012-03-04
-3119918 La Cabrera La Cabrera La Cabrera 40.86386 -3.61265 P PPL ES 29 M 28030 2265 1033 Europe/Madrid 2012-01-19
-3119926 Labuerda Labuerda 42.45234 0.13561 P PPLA3 ES 52 HU 22133 164 565 Europe/Madrid 2012-03-04
-3119941 La Bouza La Bouza 40.83626 -6.79551 P PPLA3 ES 55 SA 37056 66 614 Europe/Madrid 2012-03-04
-3119952 la Bisbal d'Empordà la Bisbal d'Emporda La Bisbal,La Bisbal d'Emporda,La Bisbal d'Empordà,La Bisbal del Ampurdan,La Bisbal del Ampurdán,la Bisbal,la Bisbal,la Bisbal d'Emporda,la Bisbal d'Empordà 41.95 3.05 P PPLA3 ES 56 GI 17022 10385 66 Europe/Madrid 2012-03-04
-3119965 Labastida Labastida Bastida,Labastida 42.58974 -2.79568 P PPLA3 ES 59 VI 01028 1363 532 Europe/Madrid 2012-03-04
-3119979 La Bañeza La Baneza La Baneza,La Bañeza 42.30026 -5.89772 P PPL ES 55 LE 24010 11057 776 Europe/Madrid 2012-01-19
-3119986 Labajos Labajos Labajos,Labajoz 40.84335 -4.52005 P PPLA3 ES 55 SG 40107 148 1067 Europe/Madrid 2012-03-04
-3120003 L'Ampolla L'Ampolla Ampolla 40.81235 0.71008 P PPL ES 56 T 43906 2441 7 Europe/Madrid 2011-11-14
-3120004 l'Ametlla de Mar l'Ametlla de Mar Ametlla de Mar,l'Ametlla,l'Ametlla de Mar 40.9 0.8 P PPLA3 ES 56 T 43013 0 42 Europe/Madrid 2012-03-04
-3120006 L'Ametlla del Vallès L'Ametlla del Valles L'Ametlla,L'Ametlla del Valles,L'Ametlla del Vallès 41.66667 2.26667 P PPL ES 56 B 08005 7319 218 266 Europe/Madrid 2010-04-04
-3120012 La Almunia de Doña Godina La Almunia de Dona Godina Almunia de Dona Godina,Almunia de Doña Godina,La Almunia,La Almunia de Dona Godina,La Almunia de Doña Godina 41.4767 -1.37451 P PPL ES 52 Z 50025 6646 372 Europe/Madrid 2012-01-19
-3120027 La Alberca La Alberca Alberca,La Alberca,Las Alberca 40.48908 -6.11107 P PPL ES 55 SA 37010 1085 1053 Europe/Madrid 2012-01-19
-3120031 La Alameda de la Sagra La Alameda de la Sagra Alameda de la Sagra,La Alameda de la Sagra 40.01199 -3.79255 P PPL ES 54 TO 45002 3076 600 Europe/Madrid 2012-01-19
-3120038 La Adrada La Adrada La Adrada 40.29953 -4.63588 P PPL ES 55 AV 05002 2265 626 Europe/Madrid 2012-01-19
-3120050 Juzbado Juzbado Juzbado 41.07791 -5.8614 P PPLA3 ES 55 SA 37167 186 796 Europe/Madrid 2012-03-04
-3120051 Juià Juia Juia,Juià,Juya,Juyá 42.01667 2.91667 P PPLA3 ES 56 GI 17087 0 134 Europe/Madrid 2012-03-04
-3120056 Justel Justel 42.14861 -6.29594 P PPLA3 ES 55 ZA 49097 148 985 Europe/Madrid 2012-03-04
-3120073 Juneda Juneda Juneda 41.54847 0.82451 P PPLA3 ES 56 L 25119 3048 267 Europe/Madrid 2012-03-04
-3120075 Juncosa Juncosa Juncosa 41.37033 0.7765 P PPLA3 ES 56 L 25118 0 592 Europe/Madrid 2012-03-04
-3120082 Junciana Junciana Junciana 40.41076 -5.55698 P PPLA3 ES 55 AV 05108 81 1000 Europe/Madrid 2012-03-04
-3120102 Juarros de Voltoya Juarros de Voltoya Juarros de Voltoya 41.03097 -4.51922 P PPLA3 ES 55 SG 40106 270 853 Europe/Madrid 2012-03-04
-3120114 Xove Xove 43.68656 -7.5113 P PPLA3 ES 58 LU 27025 0 56 Europe/Madrid 2012-03-04
-3120118 Josa Josa Josa 40.9555 -0.76683 P PPLA3 ES 52 TE 44131 28 771 Europe/Madrid 2012-03-04
-3120121 Jorcas Jorcas Jorcas 40.54276 -0.75308 P PPLA3 ES 52 TE 44130 38 1340 Europe/Madrid 2012-03-04
-3120122 Jorba Jorba Jorba 41.60193 1.5475 P PPLA3 ES 56 B 08103 665 401 Europe/Madrid 2012-03-04
-3120130 Joarilla de las Matas Joarilla de las Matas Joarilla de las Matas 42.28755 -5.17855 P PPLA3 ES 55 LE 24086 404 796 Europe/Madrid 2012-03-04
-3120133 Jirueque Jirueque Jirueque 40.96431 -2.90289 P PPLA3 ES 54 GU 19157 87 839 Europe/Madrid 2012-03-04
-3120141 Jerte Jerte Jerte 40.22271 -5.75011 P PPLA3 ES 57 CC 10107 1312 612 Europe/Madrid 2012-03-04
-3120154 Javier Javier 42.59119 -1.20884 P PPLA3 ES 32 NA 31135 68 453 Europe/Madrid 2012-03-04
-3120161 Jaulín Jaulin Jaulin,Jaulín 41.45198 -0.99256 P PPLA3 ES 52 Z 50131 322 513 Europe/Madrid 2012-03-04
-3120162 Jatiel Jatiel Jatiel 41.22008 -0.38183 P PPLA3 ES 52 TE 44129 72 215 Europe/Madrid 2012-03-04
-3120164 Jasa Jasa Chasa,Jasa 42.6948 -0.66605 P PPLA3 ES 52 HU 22131 138 945 Europe/Madrid 2012-03-04
-3120168 Jarque de la Val Jarque de la Val Jarque de la Val 40.70283 -0.80083 P PPLA3 ES 52 TE 44128 94 1263 Europe/Madrid 2012-03-04
-3120169 Jarque Jarque Jarque 41.55613 -1.67563 P PPLA3 ES 52 Z 50130 558 642 Europe/Madrid 2012-03-04
-3120171 Jarilla Jarilla Jarilla 40.17156 -6.00281 P PPLA3 ES 57 CC 10106 0 492 Europe/Madrid 2012-03-04
-3120179 Jarandilla de la Vera Jarandilla de la Vera Jarandilla 40.12915 -5.66079 P PPLA3 ES 57 CC 10105 3104 611 Europe/Madrid 2012-03-04
-3120181 Jaramillo Quemado Jaramillo Quemado Jaramillo,Jaramillo Quemado 42.08568 -3.35868 P PPLA3 ES 55 BU 09184 15 988 Europe/Madrid 2012-03-04
-3120182 Jaramillo de la Fuente Jaramillo de la Fuente Jaramillo de la Fuente 42.11472 -3.31239 P PPLA3 ES 55 BU 09183 52 1057 Europe/Madrid 2012-03-04
-3120186 Jaraiz de la Vera Jaraiz de la Vera Jaraiz,Jaraiz de la Vera 40.06005 -5.75426 P PPL ES 57 CC 10104 6672 549 Europe/Madrid 2012-01-19
-3120188 Jaraba Jaraba Jaraba 41.19083 -1.8844 P PPLA3 ES 52 Z 50129 311 762 Europe/Madrid 2012-03-04
-3120195 Jambrina Jambrina Jambrina 41.39196 -5.66411 P PPLA3 ES 55 ZA 49096 213 706 Europe/Madrid 2012-03-04
-3120196 Jalón de Cameros Jalon de Cameros Jalon de Cameros,Jalón de Cameros 42.21804 -2.49004 P PPLA3 ES 27 LO 26081 46 885 Europe/Madrid 2012-03-04
-3120206 Jafre Jafre 42.07254 3.01062 P PPLA3 ES 56 GI 17085 368 41 Europe/Madrid 2012-03-04
-3120209 Jadraque Jadraque Jadraque 40.92454 -2.92468 P PPLA3 ES 54 GU 19156 1370 825 Europe/Madrid 2012-03-04
-3120211 Jaca Jaca Chaca,Jaca,Jaka,haka,ハカ 42.56898 -0.54987 P PPLA3 ES 52 HU 22130 13396 827 Europe/Madrid 2012-03-04
-3120215 Jabaloyas Jabaloyas Jabaloyas 40.2401 -1.40886 P PPLA3 ES 52 TE 44127 81 1406 Europe/Madrid 2012-03-04
-3120221 Izurtza Izurtza Izurtza,Izurza,Izurza Eleizalde 43.15 -2.63333 P PPLA3 ES 59 BI 48050 266 286 Europe/Madrid 2012-03-04
-3120240 Izagre Izagre Izagre 42.2241 -5.25727 P PPLA3 ES 55 LE 24084 207 785 Europe/Madrid 2012-03-04
-3120248 Iturmendi Iturmendi 42.88993 -2.11916 P PPLA3 ES 32 NA 31130 384 525 Europe/Madrid 2012-03-04
-3120251 Ituren Ituren Ituren 43.13238 -1.72063 P PPLA3 ES 32 NA 31129 474 196 Europe/Madrid 2012-03-04
-3120252 Ituero y Lama Ituero y Lama Ituero,Ituero y Lama 40.80066 -4.37917 P PPLA3 ES 55 SG 40104 112 1007 Europe/Madrid 2012-03-04
-3120254 Ituero de Azaba Ituero de Azaba Ituero de Azaba 40.48487 -6.69272 P PPLA3 ES 55 SA 37166 277 667 Europe/Madrid 2012-03-04
-3120258 Itero del Castillo Itero del Castillo 42.28988 -4.24441 P PPLA3 ES 55 BU 09182 104 776 Europe/Madrid 2012-03-04
-3120259 Itero de la Vega Itero de la Vega 42.28804 -4.25677 P PPLA3 ES 55 P 34089 213 772 Europe/Madrid 2012-03-04
-3120263 Isuerre Isuerre 42.48729 -1.054 P PPLA3 ES 52 Z 50128 51 612 Europe/Madrid 2012-03-04
-3120272 Isòvol Isovol Isobol,Isovol,Isòvol,Isóbol 42.37763 1.81807 P PPLA3 ES 56 GI 17084 25051 0 1038 Europe/Madrid 2012-03-04
-3120288 Iscar Iscar Iscar 41.36117 -4.53348 P PPL ES 55 VA 47075 6567 755 Europe/Madrid 2012-01-19
-3120289 Itsasondo Isasondo Isasondo,Itsasondo 43.06909 -2.16464 P PPLA3 ES 59 SS 20047 0 153 Europe/Madrid 2012-03-04
-3120292 Isar Isar 42.3614 -3.9304 P PPLA3 ES 55 BU 09181 382 836 Europe/Madrid 2012-03-04
-3120298 Irurtzun Irurtzun Irurtzun,Irurzun 42.91667 -1.83333 P PPLA3 ES 32 NA 31904 0 443 Europe/Madrid 2012-03-04
-3120302 Irura Irura Irura 43.16651 -2.06746 P PPLA3 ES 59 SS 20046 1125 87 Europe/Madrid 2012-03-04
-3120304 Irun Irun Irun,Irun-Uranzu,Irún,Irún-Uranzu,yi lun,Ирун,伊倫 43.33904 -1.78938 P PPLA3 ES 59 SS 20045 60951 23 Europe/Madrid 2012-03-04
-3120307 Irueste Irueste Irueste 40.61206 -2.89072 P PPLA3 ES 54 GU 19155 61 852 Europe/Madrid 2012-03-04
-3120310 Iruelos Iruelos Iruelos 41.14135 -6.32808 P PPLA3 ES 55 SA 37165 54 785 Europe/Madrid 2012-03-04
-3120323 Irixoa Irixoa San Lorenzo 43.2847 -8.05916 P PPLA3 ES ES 58 C 15039 0 364 Europe/Madrid 2012-03-04
-3120336 Irañeta Iraneta 42.92287 -1.94595 P PPLA3 ES 32 NA 31127 169 463 Europe/Madrid 2012-03-04
-3120371 Iniéstola Iniestola Iniestola,Iniéstola 40.994 -2.37063 P PPLA3 ES 54 GU 19153 16 1166 Europe/Madrid 2012-03-04
-3120392 Incio Incio Incio,San Pedro 42.63333 -7.35 P PPL ES 58 LU 27024 2317 852 Europe/Madrid 2012-01-19
-3120407 Illueca Illueca Illueca 41.53818 -1.62747 P PPLA3 ES 52 Z 50126 3375 588 Europe/Madrid 2012-03-04
-3120410 Illescas Illescas Illescas 40.12213 -3.84704 P PPLA3 ES 54 TO 45081 21264 590 Europe/Madrid 2012-03-04
-3120412 Illas Illas Illas,San Julian,San Julián 43.49716 -5.975 P PPL ES 34 O 33016 1014 206 Europe/Madrid 2012-01-19
-3120413 Illano Illano Eilao,Illano 43.33385 -6.8656 P PPLA3 ES 34 O 33029 565 419 Europe/Madrid 2012-03-04
-3120414 Illana Illana Illana 40.18442 -2.90889 P PPLA3 ES 54 GU 19152 756 746 Europe/Madrid 2012-03-04
-3120417 Ilche Ilche Ilche 41.95702 0.05728 P PPLA3 ES 52 HU 22128 258 322 Europe/Madrid 2012-03-04
-3120423 Igúzquiza Iguzquiza 42.64545 -2.08551 P PPLA3 ES 32 NA 31125 369 515 Europe/Madrid 2012-03-04
-3120427 Igüeña Iguena Iguena,Igüeña 42.72853 -6.27738 P PPLA3 ES 55 LE 24083 1633 913 Europe/Madrid 2012-03-04
-3120431 Igualada Igualada Igualada,Игуалада 41.58098 1.6172 P PPL ES 56 B 08250 38918 322 Europe/Madrid 2012-01-19
-3120432 Igriés Igries Igries,Igriés 42.21443 -0.43201 P PPLA3 ES 52 HU 22127 396 607 Europe/Madrid 2012-03-04
-3120435 Iglesias Iglesias 42.29807 -3.98932 P PPLA3 ES 55 BU 09180 153 847 Europe/Madrid 2012-03-04
-3120436 Iglesiarrubia Iglesiarrubia Iglesiarrubia 41.97383 -3.84701 P PPLA3 ES 55 BU 09179 60 889 Europe/Madrid 2012-03-04
-3120445 Igea Igea Igea 42.06777 -2.01094 P PPLA3 ES 27 LO 26080 726 570 Europe/Madrid 2012-03-04
-3120453 Idiazabal Idiazabal Idiazabal,Idiazábal 43.01189 -2.23356 P PPLA3 ES 59 SS 20043 2174 218 Europe/Madrid 2012-03-04
-3120461 Ikaztegieta Icazteguieta Icastiguia,Icazteguieta,Ikaztegieta 43.09444 -2.12373 P PPLA3 ES ES 59 SS 20044 0 131 Europe/Madrid 2012-03-04
-3120462 Ibrillos Ibrillos Ibrillos 42.45431 -3.08238 P PPLA3 ES 55 BU 09178 89 741 Europe/Madrid 2012-03-04
-3120466 Ivorra Ivorra Iborra,Ivorra 41.76667 1.4 P PPLA3 ES 56 L 25114 0 548 Europe/Madrid 2012-03-04
-3120472 Ibieca Ibieca Ibieca 42.16079 -0.20856 P PPLA3 ES 52 HU 22126 120 644 Europe/Madrid 2012-03-04
-3120476 Ibeas de Juarros Ibeas de Juarros 42.33088 -3.53519 P PPLA3 ES 55 BU 09177 1279 933 Europe/Madrid 2012-03-04
-3120477 Ibdes Ibdes Ibdes 41.21667 -1.83333 P PPLA3 ES 52 Z 50125 550 724 Europe/Madrid 2012-03-04
-3120478 Ivars d'Urgell Ivars d'Urgell Ibars de Urgel,Ivars d'Urgell 41.68333 1 P PPLA3 ES 56 L 25113 0 270 Europe/Madrid 2012-03-04
-3120482 Ibarrangelu Ibarrangelu Elejalde,Ibarrangelu,Ibarranguelua 43.39027 -2.63423 P PPLA3 ES 59 BI 48048 541 81 Europe/Madrid 2012-03-04
-3120485 Ibarra Ibarra Campo Ibarra,Ibarra 43.13127 -2.06487 P PPLA3 ES ES 59 SS 20042 0 83 Europe/Madrid 2012-03-04
-3120493 Husillos Husillos Husillos 42.09054 -4.52709 P PPLA3 ES 55 P 34088 200 744 Europe/Madrid 2012-03-04
-3120494 Hurtumpascual Hurtumpascual Hurtumpascual 40.692 -5.11379 P PPLA3 ES 55 AV 05107 102 1177 Europe/Madrid 2012-03-04
-3120495 Hurones Hurones 42.40571 -3.61588 P PPLA3 ES 55 BU 09176 71 923 Europe/Madrid 2012-03-04
-3120501 Humanes de Madrid Humanes de Madrid 40.25038 -3.83062 P PPLA3 ES 29 M 28073 18098 680 Europe/Madrid 2012-03-04
-3120502 Humanes Humanes Humanes 40.82598 -3.15257 P PPLA3 ES 54 GU 19151 1305 746 Europe/Madrid 2012-03-04
-3120503 Humada Humada Humada 42.66667 -4.08333 P PPLA3 ES 55 BU 09175 173 958 Europe/Madrid 2012-03-04
-3120506 Hueva Hueva Hueva 40.46221 -2.96039 P PPLA3 ES 54 GU 19150 146 897 Europe/Madrid 2012-03-04
-3120511 Huete Huete Huete 40.14526 -2.69026 P PPLA3 ES 54 CU 16112 2075 826 Europe/Madrid 2012-03-04
-3120514 Huesca Huesca Huesca,Osca,Oska,Uehska,Uesca,uesuka,wsqh,Уэска,וסקה,ウエスカ 42.13615 -0.4087 P PPLA2 ES 52 HU 22125 52059 476 Europe/Madrid 2011-05-18
-3120515 Huesa del Común Huesa del Comun Huesa del Comun,Huesa del Común,Huesca del Comun,Huesca del Común 41.01053 -0.91882 P PPLA3 ES 52 TE 44125 107 858 Europe/Madrid 2012-03-04
-3120517 Huerto Huerto Huerto 41.93128 -0.16684 P PPLA3 ES 52 HU 22124 257 374 Europe/Madrid 2012-03-04
-3120525 Huertahernando Huertahernando Huertahernando 40.82348 -2.28697 P PPLA3 ES 54 GU 19148 66 1151 Europe/Madrid 2012-03-04
-3120527 Huerta del Rey Huerta del Rey Huerta del Rey,Puerta del Rey 41.8391 -3.34755 P PPL ES 55 BU 09020 1222 990 Europe/Madrid 2012-01-19
-3120529 Huerta del Marquesado Huerta del Marquesado Huerta del Marquesado 40.15 -1.68333 P PPLA3 ES 54 CU 16111 237 1281 Europe/Madrid 2012-03-04
-3120530 Huerta de Arriba Huerta de Arriba Huerta de Arriba 42.11672 -3.08212 P PPLA3 ES 55 BU 09173 171 1206 Europe/Madrid 2012-03-04
-3120535 Huerta Huerta Huerta 40.96843 -5.46769 P PPLA3 ES 55 SA 37164 0 789 Europe/Madrid 2012-03-04
-3120541 Huérmeces del Cerro Huermeces del Cerro Huermeces del Cerro,Huérmeces del Cerro 41.05332 -2.79711 P PPLA3 ES 54 GU 19147 52 877 Europe/Madrid 2012-03-04
-3120542 Huérmeces Huermeces Huermeces,Huérmeces 42.5225 -3.77072 P PPLA3 ES 55 BU 09172 127 890 Europe/Madrid 2012-03-04
-3120543 Huérguina Huerguina Huerguina,Huérguina 40.03333 -1.6 P PPLA3 ES 54 CU 16109 94 1254 Europe/Madrid 2012-03-04
-3120553 Huércanos Huercanos Huercanos,Huércanos 42.428 -2.69589 P PPLA3 ES 27 LO 26079 891 509 Europe/Madrid 2012-03-04
-3120555 Huelves Huelves Huelves 40.04282 -2.88444 P PPLA3 ES 54 CU 16108 57 822 Europe/Madrid 2012-03-04
-3120558 Huélamo Huelamo Huelamo,Huelamos,Huélamo 40.27658 -1.80957 P PPLA3 ES 54 CU 16107 125 1316 Europe/Madrid 2012-03-04
-3120559 Huélaga Huelaga Huelaga,Huélaga 40.05582 -6.61568 P PPLA3 ES 57 CC 10101 192 284 Europe/Madrid 2012-03-04
-3120563 Huecas Huecas Huecas 40.0123 -4.19541 P PPLA3 ES 54 TO 45077 526 555 Europe/Madrid 2012-03-04
-3120567 Egues-Uharte Egues-Uharte Egues-Uharte,Huarte,Uharte 42.83035 -1.59087 P PPL ES 32 NA 31086 3879 441 Europe/Madrid 2008-07-14
-3120572 Hoz de Jaca Hoz de Jaca Hoz de Jaca,Oz de Chaca 42.69045 -0.3065 P PPLA3 ES 52 HU 22122 75 1267 Europe/Madrid 2012-03-04
-3120596 Hoyos de Miguel Muñoz Hoyos de Miguel Munoz Hoyos de Miguel Munoz,Hoyos de Miguel Muñoz 40.39237 -5.06713 P PPLA3 ES 55 AV 05106 50 1540 Europe/Madrid 2012-03-04
-3120598 Hoyos del Espino Hoyos del Espino Hoyos,Hoyos del Espino 40.35623 -5.17505 P PPLA3 ES 55 AV 05105 453 1455 Europe/Madrid 2012-03-04
-3120599 Hoyos del Collado Hoyos del Collado Hoyos del Collado 40.35945 -5.20027 P PPLA3 ES 55 AV 05104 38 1485 Europe/Madrid 2012-03-04
-3120603 Hoyos Hoyos Hoyos 40.17154 -6.72092 P PPLA3 ES 57 CC 10100 963 519 Europe/Madrid 2012-03-04
-3120604 Hoyorredondo Hoyorredondo Hoyorredondo 40.4627 -5.41097 P PPLA3 ES 55 AV 05103 107 1042 Europe/Madrid 2012-03-04
-3120605 Hoyo de Manzanares Hoyo de Manzanares 40.62265 -3.90733 P PPLA3 ES 29 M 28072 7093 1005 Europe/Madrid 2012-03-04
-3120608 Hoyocasero Hoyocasero Hoyocasero 40.3989 -4.97455 P PPLA3 ES 55 AV 05101 365 1358 Europe/Madrid 2012-03-04
-3120613 Hoyales de Roa Hoyales de Roa Hoyales de Roa 41.65893 -3.86202 P PPLA3 ES 55 BU 09170 269 805 Europe/Madrid 2012-03-04
-3120616 Hostalric Hostalric Hostalric 41.75 2.63333 P PPLA3 ES 56 GI 17083 3442 67 Europe/Madrid 2012-03-04
-3120619 L'Hospitalet de Llobregat L'Hospitalet de Llobregat Hospitalet de Llobregat,Ospitalet-de-L'obregat,l'Hospitalet,l'Hospitalet de Llobregat,Оспиталет-де-Льобрегат 41.35967 2.10028 P PPL ES 56 B 08019 257038 18 Europe/Madrid 2010-12-16
-3120621 Hospital de Órbigo Hospital de Orbigo Hospital de Orbigo,Hospital de Órbigo 42.46354 -5.88636 P PPLA3 ES 55 LE 24082 1060 823 Europe/Madrid 2012-03-04
-3120631 Hortigüela Hortiguela Hortiguela,Hortigüela 42.06842 -3.42578 P PPLA3 ES 55 BU 09169 126 940 Europe/Madrid 2012-03-04
-3120636 Horta de Sant Joan Horta de Sant Joan Horta,Horta de San Juan,Horta de Sant Joan 40.95 0.31667 P PPLA3 ES 56 T 43071 0 475 Europe/Madrid 2012-03-04
-3120642 Hornos de Moncalvillo Hornos de Moncalvillo Hornos de Moncalvillo 42.39198 -2.5855 P PPLA3 ES 27 LO 26078 94 677 Europe/Madrid 2012-03-04
-3120645 Hornillos del Camino Hornillos del Camino 42.33863 -3.9256 P PPLA3 ES 55 BU 09167 70 824 Europe/Madrid 2012-03-04
-3120646 Hornillos de Cerrato Hornillos de Cerrato Hornillos de Cerrato 41.98772 -4.27207 P PPLA3 ES 55 P 34087 119 790 Europe/Madrid 2012-03-04
-3120647 Hornillos de Cameros Hornillos de Cameros Hornillos de Cameros 42.21001 -2.4196 P PPLA3 ES 27 LO 26077 15 1142 Europe/Madrid 2012-03-04
-3120661 Hormilleja Hormilleja Hormilleja 42.45628 -2.73155 P PPLA3 ES 27 LO 26076 179 501 Europe/Madrid 2012-03-04
-3120662 Hormilla Hormilla Hormilla 42.43828 -2.77447 P PPLA3 ES 27 LO 26075 435 521 Europe/Madrid 2012-03-04
-3120665 Hormigos Hormigos Hormigos 40.09778 -4.44473 P PPLA3 ES 54 TO 45076 492 463 Europe/Madrid 2012-03-04
-3120672 Horche Horche Horche 40.56399 -3.0611 P PPLA3 ES 54 GU 19143 1853 864 Europe/Madrid 2012-03-04
-3120673 Horcajuelo de la Sierra Horcajuelo de la Sierra Horcajuelo de la Sierra 41.06019 -3.5464 P PPLA3 ES 29 M 28071 0 1132 Europe/Madrid 2012-03-04
-3120678 Horcajo de Montemayor Horcajo de Montemayor Horcajo de Montemayor 40.42264 -5.89427 P PPLA3 ES 55 SA 37161 196 737 Europe/Madrid 2012-03-04
-3120679 Horcajo de las Torres Horcajo de las Torres Horcajo de las Torres 41.06497 -5.09092 P PPLA3 ES 55 AV 05099 709 819 Europe/Madrid 2012-03-04
-3120680 Horcajo de la Sierra Horcajo de la Sierra Horcajo de la Sierra 41.06723 -3.58534 P PPLA3 ES 29 M 28070 0 1084 Europe/Madrid 2012-03-04
-3120690 Hontoria de Valdearados Hontoria de Valdearados Hontoria de Valdearados 41.74488 -3.51983 P PPLA3 ES 55 BU 09164 256 867 Europe/Madrid 2012-03-04
-3120691 Hontoria del Pinar Hontoria del Pinar Hontoria del Pinar 41.84838 -3.16245 P PPLA3 ES 55 BU 09163 786 1057 Europe/Madrid 2012-03-04
-3120692 Hontoria de la Cantera Hontoria de la Cantera Hontoria de la Cantera 42.18879 -3.64251 P PPLA3 ES 55 BU 09162 141 945 Europe/Madrid 2012-03-04
-3120693 Hontoria de Cerrato Hontoria de Cerrato Hontoria de Cerrato 41.91061 -4.44209 P PPLA3 ES 55 P 34086 111 747 Europe/Madrid 2012-03-04
-3120697 Hontoba Hontoba Hontoba 40.45386 -3.03858 P PPLA3 ES 54 GU 19142 229 761 Europe/Madrid 2012-03-04
-3120701 Hontangas Hontangas Hontangas 41.58216 -3.7955 P PPLA3 ES 55 BU 09160 129 839 Europe/Madrid 2012-03-04
-3120702 Hontanas Hontanas 42.31312 -4.04529 P PPLA3 ES 55 BU 09159 72 869 Europe/Madrid 2012-03-04
-3120703 Hontanares de Eresma Hontanares de Eresma Hontanares de Eresma 40.98272 -4.20439 P PPLA3 ES 55 SG 40101 288 880 Europe/Madrid 2012-03-04
-3120710 Hontalbilla Hontalbilla Hontalbilla 41.34552 -4.12149 P PPLA3 ES 55 SG 40100 382 892 Europe/Madrid 2012-03-04
-3120711 Honrubia de la Cuesta Honrubia de la Cuesta Honrubia de la Cuesta 41.50998 -3.70454 P PPLA3 ES 55 SG 40099 121 999 Europe/Madrid 2012-03-04
-3120728 Hombrados Hombrados Hombrados 40.80118 -1.68558 P PPLA3 ES 54 GU 19139 47 1226 Europe/Madrid 2012-03-04
-3120741 Hita Hita Hita 40.82149 -3.0454 P PPLA3 ES 54 GU 19138 300 815 Europe/Madrid 2012-03-04
-3120744 Hinojosa de San Vicente Hinojosa de San Vicente Hinojosa,Hinojosa de San Vicente 40.10463 -4.72269 P PPLA3 ES 54 TO 45074 487 656 Europe/Madrid 2012-03-04
-3120745 Hinojosa del Campo Hinojosa del Campo Hinojosa del Campo 41.73844 -2.09946 P PPLA3 ES 55 SO 42100 40 1036 Europe/Madrid 2012-03-04
-3120747 Hinojosa de Jarque Hinojosa de Jarque Hinojosa de Jarque 40.6905 -0.78542 P PPLA3 ES 52 TE 44123 152 1215 Europe/Madrid 2012-03-04
-3120748 Hinojosa de Duero Hinojosa de Duero Hinojosa de Duero 40.98674 -6.79529 P PPLA3 ES 55 SA 37160 779 606 Europe/Madrid 2012-03-04
-3120759 Hijes Hijes Hijes 41.25139 -2.99989 P PPLA3 ES 54 GU 19136 20 1166 Europe/Madrid 2011-07-31
-3120763 Híjar Hijar Hijar,Híjar 41.17429 -0.45112 P PPLA3 ES 52 TE 44122 1919 288 Europe/Madrid 2012-03-04
-3120764 Higuera de las Dueñas Higuera de las Duenas Higuera de las Duenas,Higuera de las Dueñas 40.23903 -4.60361 P PPLA3 ES 55 AV 05095 300 632 Europe/Madrid 2012-03-04
-3120771 Hiendelaencina Hiendelaencina Hiendelaencina 41.08373 -3.00337 P PPLA3 ES 54 GU 19135 143 1085 Europe/Madrid 2012-03-04
-3120773 Hervías Hervias Hervias,Hervías 42.44781 -2.88714 P PPLA3 ES 27 LO 26074 131 646 Europe/Madrid 2012-03-04
-3120776 Hervás Hervas Hervas,Hervás 40.27081 -5.8672 P PPLA3 ES 57 CC 10096 3823 664 Europe/Madrid 2012-03-04
-3120777 Herrín de Campos Herrin de Campos Herrin de Campos,Herrín de Campos 42.12476 -4.95239 P PPLA3 ES 55 VA 47073 184 775 Europe/Madrid 2012-03-04
-3120780 Herreros de Suso Herreros de Suso Herreros de Suso 40.80361 -5.03892 P PPLA3 ES 55 AV 05094 191 1011 Europe/Madrid 2012-03-04
-3120789 Herrería Herreria Herreria,Herrería 40.88815 -1.96014 P PPLA3 ES 54 GU 19134 33 1089 Europe/Madrid 2012-03-04
-3120791 Herrera de Valdecañas Herrera de Valdecanas Herrera de Valdecanas,Herrera de Valdecañas 42.04828 -4.20004 P PPLA3 ES 55 P 34084 176 777 Europe/Madrid 2012-03-04
-3120792 Herrera de Soria Herrera de Soria Herrera de Soria 41.76269 -3.01243 P PPLA3 ES 55 SO 42098 20 1096 Europe/Madrid 2012-03-04
-3120793 Herrera de Pisuerga Herrera de Pisuerga Herrera,Herrera de Pisuerga 42.59492 -4.33034 P PPLA3 ES 55 P 34083 2440 849 Europe/Madrid 2012-03-04
-3120794 Herrera de los Navarros Herrera de los Navarros Herrera,Herrera de los Navarros 41.21024 -1.08271 P PPLA3 ES 52 Z 50124 645 812 Europe/Madrid 2012-03-04
-3120803 Herramélluri Herramelluri Herramelluri,Herramélluri 42.50295 -3.01954 P PPLA3 ES 27 LO 26073 130 570 Europe/Madrid 2012-03-04
-3120808 Hernialde Hernialde Hernialde 43.15446 -2.08521 P PPLA3 ES 59 SS 20041 314 290 Europe/Madrid 2012-03-04
-3120809 Hernansancho Hernansancho 40.85753 -4.73045 P PPLA3 ES 55 AV 05092 223 902 Europe/Madrid 2012-03-04
-3120810 Hernán-Pérez Hernan-Perez Hernan-Perez,Hernán-Pérez 40.21246 -6.4648 P PPLA3 ES 57 CC 10093 503 442 Europe/Madrid 2012-03-04
-3120811 Hernani Hernani Hernani 43.26615 -1.97615 P PPL ES 59 SS 20040 19289 42 50 Europe/Madrid 2010-04-22
-3120818 Hermisende Hermisende Hermisende 41.96898 -6.89616 P PPLA3 ES 55 ZA 49094 367 842 Europe/Madrid 2012-03-04
-3120826 Hérmedes de Cerrato Hermedes de Cerrato Hermedes de Cerrato,Hérmedes de Cerrato 41.81972 -4.17361 P PPLA3 ES 55 P 34082 123 893 Europe/Madrid 2012-03-04
-3120832 Herguijuela del Campo Herguijuela del Campo Herguijuela del Campo 40.63102 -5.86398 P PPLA3 ES 55 SA 37159 117 931 Europe/Madrid 2012-03-04
-3120833 Herguijuela de la Sierra Herguijuela de la Sierra Herguijuela de la Sierra 40.44536 -6.07445 P PPLA3 ES 55 SA 37158 294 657 Europe/Madrid 2012-03-04
-3120834 Herguijuela de Ciudad Rodrigo Herguijuela de Ciudad Rodrigo Herguijuela de Ciudad Rodrigo 40.4586 -6.52075 P PPLA3 ES 55 SA 37157 154 793 Europe/Madrid 2012-03-04
-3120838 Herce Herce Herce 42.21423 -2.16488 P PPLA3 ES 27 LO 26072 356 589 Europe/Madrid 2012-03-04
-3120845 Herbés Herbes Herbers,Herbes,Herbés 40.721 -0.00441 P PPLA3 ES 60 CS 12068 81 782 Europe/Madrid 2011-07-31
-3120852 Henche Henche Henche 40.71474 -2.70746 P PPLA3 ES 54 GU 19132 119 827 Europe/Madrid 2012-03-04
-3120868 Hazas de Cesto Hazas de Cesto Hazas de Cesto 43.39653 -3.58916 P PPLA3 ES 39 S 39031 1284 69 Europe/Madrid 2012-03-04
-3120871 Haza Haza Haza 41.61667 -3.81667 P PPLA3 ES 55 BU 09155 36 906 Europe/Madrid 2012-03-04
-3120874 Haro Haro Haro 42.57634 -2.8476 P PPLA3 ES 27 LO 26071 12261 478 Europe/Madrid 2012-03-04
-3120885 Hacinas Hacinas Hacinas 41.98514 -3.28709 P PPLA3 ES 55 BU 09154 182 999 Europe/Madrid 2012-03-04
-3120893 Gutierre-Muñoz Gutierre-Munoz Gutierre-Muno,Gutierre-Munoz,Gutierre-Muño,Gutierre-Muñoz 40.98295 -4.63839 P PPLA3 ES 55 AV 05090 119 886 Europe/Madrid 2012-03-04
-3120895 Gusendos de los Oteros Gusendos de los Oteros Gusendos de los Oteros 42.37818 -5.43088 P PPLA3 ES 55 LE 24081 173 797 Europe/Madrid 2012-03-04
-3120898 Gurrea de Gállego Gurrea de Gallego Gurrea,Gurrea de Gallego,Gurrea de Gállego 42.01541 -0.7615 P PPLA3 ES 52 HU 22119 1742 343 Europe/Madrid 2012-03-04
-3120903 Guntín Guntin 42.88702 -7.69259 P PPLA3 ES 58 LU 27023 0 445 Europe/Madrid 2012-03-04
-3120928 Guitiriz Guitiriz Guitiriz 43.18169 -7.89656 P PPLA3 ES 58 LU 27022 6033 454 Europe/Madrid 2012-03-04
-3120931 Guisando Guisando Guisando 40.22225 -5.1395 P PPLA3 ES 55 AV 05089 635 788 Europe/Madrid 2012-03-04
-3120934 Guirguillano Guirguillano 42.71725 -1.87798 P PPLA3 ES 32 NA 31121 96 616 Europe/Madrid 2012-03-04
-3120944 Guimerà Guimera Guimera,Guimerà 41.5645 1.18528 P PPLA3 ES 56 L 25109 370 514 Europe/Madrid 2012-03-04
-3120951 Guils de Cerdanya Guils de Cerdanya Guils de Cerdana,Guils de Cerdanya,Guils de Cerdaña 42.4474 1.88012 P PPLA3 ES 56 GI 17082 17082 0 1367 Europe/Madrid 2012-03-04
-3120963 Guijuelo Guijuelo Guijuelo 40.55757 -5.67067 P PPLA3 ES 55 SA 37156 5221 1009 Europe/Madrid 2012-03-04
-3120966 Guijo de Santa Bárbara Guijo de Santa Barbara Guijo de Santa Barbara,Guijo de Santa Bárbara 40.1541 -5.65414 P PPLA3 ES 57 CC 10091 429 875 Europe/Madrid 2012-03-04
-3120967 Guijo de Granadilla Guijo de Granadilla Guijo de Granadilla 40.19351 -6.16339 P PPLA3 ES 57 CC 10090 674 392 Europe/Madrid 2012-03-04
-3120968 Guijo de Galisteo Guijo de Galisteo Guijo de Galisteo 40.09382 -6.41007 P PPLA3 ES 57 CC 10089 1547 427 Europe/Madrid 2012-03-04
-3120969 Guijo de Coria Guijo de Coria Guijo de Coria 40.10098 -6.46383 P PPLA3 ES 57 CC 10088 254 446 Europe/Madrid 2012-03-04
-3120970 Guijo de Ávila Guijo de Avila Guijo de Avila,Guijo de Ávila 40.53078 -5.6397 P PPLA3 ES 55 SA 37155 109 977 Europe/Madrid 2012-03-04
-3120985 Getaria Getaria Getaria,Guetaria 43.30326 -2.20444 P PPLA3 ES 59 SS 20039 2530 32 Europe/Madrid 2012-03-04
-3120989 Gernika-Lumo Gernika-Lumo Gernika,Gernika-Lumo,Guernica,Guernica y Luno 43.31667 -2.68333 P PPLA3 ES 59 BI 48046 16244 97 Europe/Madrid 2012-03-04
-3120998 Gueñes Guenes Gueenes,Guenes,Gueñes,Güeñes 43.21667 -3.08333 P PPL ES 59 BI 48045 6147 272 Europe/Madrid 2007-01-18
-3121007 Getxo Getxo Getxo,Guecho 43.35689 -3.01146 P PPL ES 59 BI 48044 80770 43 Europe/Madrid 2010-04-22
-3121014 Gúdar Gudar Gudar,Gúdar 40.44107 -0.72048 P PPLA3 ES 52 TE 44121 80 1578 Europe/Madrid 2012-03-04
-3121015 Guaza de Campos Guaza de Campos Guaza,Guaza de Campos 42.13365 -4.90949 P PPLA3 ES 55 P 34081 69 792 Europe/Madrid 2012-03-04
-3121029 Guardo Guardo Cuardo,Guardo 42.78966 -4.84823 P PPLA3 ES 55 P 34080 7920 1094 Europe/Madrid 2012-03-04
-3121030 Guardiola de Berguedà Guardiola de Bergueda Guardiola,Guardiola de Berga,Guardiola de Bergueda,Guardiola de Berguedà 42.2349 1.87716 P PPLA3 ES 56 B 08099 0 734 Europe/Madrid 2012-03-04
-3121032 Sant Salvador de Guardiola Sant Salvador de Guardiola Guardiola,Sant Salvador de Guardiola 41.68333 1.76667 P PPLA3 ES 56 B 08098 0 316 Europe/Madrid 2012-03-04
-3121044 Gualta Gualta 42.02953 3.10312 P PPLA3 ES 56 GI 17081 338 14 Europe/Madrid 2012-03-04
-3121051 Guadramiro Guadramiro Guadramiro 41.01703 -6.49369 P PPLA3 ES 55 SA 37154 191 749 Europe/Madrid 2012-03-04
-3121058 Guadarrama Guadarrama Guadarram 40.6727 -4.08949 P PPLA3 ES 29 M 28068 14800 966 Europe/Madrid 2012-03-04
-3121065 Guadalix de la Sierra Guadalix de la Sierra 40.78496 -3.69347 P PPLA3 ES 29 M 28067 4970 842 Europe/Madrid 2012-03-04
-3121068 Guadalaviar Guadalaviar Guadalaviar 40.38824 -1.71803 P PPLA3 ES 52 TE 44120 273 1531 Europe/Madrid 2012-03-04
-3121070 Guadalajara Guadalajara Guadalajara,Gvadalaharo,Gvadalakhara,guadarahara,Гвадалахара,グアダラハラ 40.63333 -3.16667 P PPLA2 ES 54 GU 19130 83039 708 Europe/Madrid 2010-08-22
-3121078 O Grove O Grove Jrobe,Ogrobe,Ogrove 42.49444 -8.86502 P PPL ES 58 PO 36022 11250 13 Europe/Madrid 2010-04-22
-3121101 Grisén Grisen Grisen,Grisén 41.74524 -1.1626 P PPLA3 ES 52 Z 50123 475 246 Europe/Madrid 2012-03-04
-3121102 Grisel Grisel Grisel 41.87109 -1.72794 P PPLA3 ES 52 Z 50122 59 630 Europe/Madrid 2012-03-04
-3121103 Grisaleña Grisalena Grisalena,Grisaleña 42.59122 -3.26416 P PPLA3 ES 55 BU 09149 43 743 Europe/Madrid 2012-03-04
-3121105 Griñón Grinon Grinon,Griñón 40.21249 -3.85482 P PPLA3 ES 29 M 28066 7484 676 Europe/Madrid 2012-03-04
-3121108 Grijota Grijota Grijota 42.05289 -4.58309 P PPLA3 ES 55 P 34079 1047 747 Europe/Madrid 2012-03-04
-3121118 Grijalba Grijalba Grijalba 42.43002 -4.11896 P PPLA3 ES 55 BU 09148 124 813 Europe/Madrid 2012-03-04
-3121120 Griegos Griegos Griegos 40.42722 -1.71201 P PPLA3 ES 52 TE 44119 140 1610 Europe/Madrid 2012-03-04
-3121134 Grávalos Gravalos Bravalos,Gravalos,Grávalos 42.10836 -1.99874 P PPLA3 ES 27 LO 26070 236 738 Europe/Madrid 2012-03-04
-3121135 Graus Graus Graus 42.18885 0.33749 P PPLA3 ES 52 HU 22117 3436 464 Europe/Madrid 2012-03-04
-3121142 Granucillo Granucillo Granucillo 42.05209 -5.92777 P PPLA3 ES 55 ZA 49092 224 722 Europe/Madrid 2012-03-04
-3121143 Grañón Granon Granon,Grañón 42.44992 -3.02767 P PPLA3 ES 27 LO 26069 360 730 Europe/Madrid 2012-03-04
-3121145 Granollers Granollers Granollers 41.60797 2.28773 P PPL ES 56 B 08181 60658 154 Europe/Madrid 2010-04-22
-3121149 Granja de Moreruela Granja de Moreruela Granja de Moreruela 41.81026 -5.73893 P PPLA3 ES 55 ZA 49091 329 712 Europe/Madrid 2012-03-04
-3121150 la Granja d'Escarp la Granja d'Escarp Granja de Escarpe,la Granja d'Escarp 41.41667 0.36667 P PPLA3 ES 56 L 25102 0 174 Europe/Madrid 2012-03-04
-3121158 Granera Granera Granera 41.72741 2.05924 P PPLA3 ES 56 B 08095 80 774 Europe/Madrid 2012-03-04
-3121161 Grañén Granen Granen,Grañén 41.94104 -0.36941 P PPLA3 ES 52 HU 22116 1991 334 Europe/Madrid 2012-03-04
-3121197 Grandas de Salime Grandas de Salime Crandas de Salime,Grandas,Grandas de Salime 43.21554 -6.8757 P PPLA3 ES 34 O 33027 1203 554 Europe/Madrid 2012-03-04
-3121216 la Granadella la Granadella Granadella,La Granadella,la Granadella 41.35 0.66667 P PPLA3 ES 56 L 25101 792 536 Europe/Madrid 2012-03-04
-3121230 Grajera Grajera Grajera 41.37319 -3.61304 P PPLA3 ES 55 SG 40097 107 1014 Europe/Madrid 2012-03-04
-3121233 Grajal de Campos Grajal de Campos Grajal 42.32073 -5.01938 P PPLA3 ES 55 LE 24080 275 805 Europe/Madrid 2012-03-04
-3121238 Grado Grado Grado,Grao 43.38801 -6.07433 P PPL ES 34 O 33026 11033 84 Europe/Madrid 2012-01-19
-3121241 Gradefes Gradefes Gradefes 42.62396 -5.22691 P PPL ES 55 LE 24180 1175 854 Europe/Madrid 2012-01-19
-3121268 Gotor Gotor Gotor 41.54583 -1.64915 P PPLA3 ES 52 Z 50121 381 612 Europe/Madrid 2012-03-04
-3121270 Gotarrendura Gotarrendura Gotarrendura 40.82652 -4.7409 P PPLA3 ES 55 AV 05087 189 930 Europe/Madrid 2012-03-04
-3121271 Gósol Gosol Gosol,Gósol 42.23697 1.6601 P PPLA3 ES 56 L 25100 220 1437 Europe/Madrid 2012-03-04
-3121285 Gormaz Gormaz Gormaz 41.49232 -3.005 P PPLA3 ES 55 SO 42097 19 963 Europe/Madrid 2012-03-04
-3121286 Górliz-Elexalde Gorliz-Elexalde Elexalde,Gorliz,Górliz 43.4149 -2.93678 P PPL ES 59 BI 48043 4848 40 Europe/Madrid 2006-05-15
-3121290 Gordoncillo Gordoncillo Gordoncillo 42.13557 -5.4018 P PPLA3 ES 55 LE 24078 637 753 Europe/Madrid 2012-03-04
-3121295 Gordaliza del Pino Gordaliza del Pino Gordaliza 42.34357 -5.15731 P PPLA3 ES 55 LE 24077 301 824 Europe/Madrid 2012-03-04
-3121311 Goñi Goni Goni,Goñi 42.85167 -1.90358 P PPLA3 ES 32 NA 31118 202 879 Europe/Madrid 2012-03-04
-3121316 Gondomar Gondomar Gondomar 42.11155 -8.74971 P PPLA3 ES 58 PO 36021 13841 52 Europe/Madrid 2012-03-04
-3121329 Gomecello Gomecello Gomecello 41.0428 -5.53585 P PPLA3 ES 55 SA 37152 509 844 Europe/Madrid 2012-03-04
-3121333 Gómara Gomara Gomara,Gómara 41.62347 -2.22493 P PPLA3 ES 55 SO 42096 416 1052 Europe/Madrid 2012-03-04
-3121339 Golpejas Golpejas Golpejas 40.9998 -5.90687 P PPLA3 ES 55 SA 37151 182 784 Europe/Madrid 2012-03-04
-3121344 Golmés Golmes Golmes,Golmés 41.63354 0.93125 P PPLA3 ES 56 L 25099 1456 278 Europe/Madrid 2012-03-04
-3121345 Golmayo Golmayo Golmayo 41.7662 -2.52267 P PPLA3 ES 55 SO 42095 1358 1047 Europe/Madrid 2012-03-04
-3121357 Goizueta Goizueta Boizueta,Coizueta,Goizueta 43.17187 -1.86411 P PPLA3 ES 32 NA 31117 782 158 Europe/Madrid 2012-03-04
-3121370 Godojos Godojos Godojos 41.26838 -1.8641 P PPLA3 ES 52 Z 50120 55 766 Europe/Madrid 2012-03-04
-3121394 Gistaín Gistain Chisten,Chistén,Gistain,Gistaín 42.5911 0.33478 P PPLA3 ES 52 HU 22114 158 1406 Europe/Madrid 2012-03-04
-3121397 Gironella Gironella Gironella 42.03433 1.88019 P PPL ES 56 B 08049 4867 455 Europe/Madrid 2012-01-19
-3121404 Xinzo de Limia Xinzo de Limia Xinzo 42.0635 -7.72459 P PPLA3 ES 58 OR 32032 10161 625 Europe/Madrid 2012-03-04
-3121411 Ginestar Ginestar Ginestar 41.04184 0.6329 P PPLA3 ES 56 T 43067 963 31 Europe/Madrid 2012-03-04
-3121415 Gimileo Gimileo 42.54992 -2.82237 P PPLA3 ES 27 LO 26068 139 482 Europe/Madrid 2012-03-04
-3121416 Gimialcón Gimialcon Gimialcon,Gimialcón 40.87705 -5.12308 P PPLA3 ES 55 AV 05086 108 943 Europe/Madrid 2012-03-04
-3121424 Gijón Gijon Gijon,Gijón,Hihono,Khikhon,Kixoi,Xixon,Xixon - Gijon,Xixón,Xixón - Gijón,hihon,khykhwn,Ĥiĥono,Хихон,خيخون,ヒホン 43.53573 -5.66152 P PPLA3 ES 34 O 33024 277554 22 Europe/Madrid 2012-03-04
-3121437 Getafe Getafe Getafe,Khetafe,Хетафе 40.30571 -3.73295 P PPLA3 ES 29 M 28065 167164 623 636 Europe/Madrid 2012-03-04
-3121456 Girona Girona GRO,Gerona,Gerone,Girona,Girono,Gérone,Kherona,Zherona,jirona,Ĝirono,Жерона,Херона,ジローナ 41.98311 2.82493 P PPLA2 ES 56 GI 17079 96188 81 Europe/Madrid 2011-06-16
-3121461 Geria Geria Geria 41.57868 -4.87663 P PPLA3 ES 55 VA 47071 474 721 Europe/Madrid 2012-03-04
-3121467 Ger Ger 42.41059 1.84536 P PPLA3 ES 56 GI 17078 17084 0 1124 Europe/Madrid 2012-03-04
-3121469 Genevilla Genevilla 42.6452 -2.39021 P PPLA3 ES 32 NA 31116 100 626 Europe/Madrid 2011-07-31
-3121480 Gemuño Gemuno Gemuno,Gemuño 40.59159 -4.78178 P PPLA3 ES 55 AV 05083 187 1105 Europe/Madrid 2012-03-04
-3121482 Gema Gema Gema 41.41855 -5.64906 P PPLA3 ES 55 ZA 49090 271 713 Europe/Madrid 2012-03-04
-3121485 Gelsa Gelsa Gelsa 41.40766 -0.46158 P PPL ES 52 Z 50045 1218 153 Europe/Madrid 2012-01-19
-3121486 Gelida Gelida 41.43333 1.86667 P PPLA3 ES 56 B 08091 5750 252 Europe/Madrid 2012-03-04
-3121490 Gejuelo del Barro Gejuelo del Barro Gejuelo del Barro 41.07633 -6.12332 P PPLA3 ES 55 SA 37150 50 807 Europe/Madrid 2012-03-04
-3121495 Gea de Albarracín Gea de Albarracin Gea 40.41114 -1.34823 P PPLA3 ES 52 TE 44117 428 1038 Europe/Madrid 2012-03-04
-3121498 Gaztelu Gaztelu Gaztelu 43.11622 -2.02439 P PPLA3 ES 59 SS 20907 151 455 Europe/Madrid 2012-03-04
-3121507 Gabiria Gabiria Gabiria,Gaviria 43.04934 -2.27962 P PPLA3 ES 59 SS 20038 0 401 Europe/Madrid 2012-03-04
-3121513 Gavilanes Gavilanes Gavilanes 40.27791 -4.85321 P PPLA3 ES 55 AV 05082 686 685 Europe/Madrid 2012-03-04
-3121519 Gavà Gava Gava,Gavà,Гава 41.30605 2.00123 P PPLA3 ES 56 B 08089 45994 22 Europe/Madrid 2012-03-04
-3121522 Gatón de Campos Gaton de Campos Gaton,Gaton de Campos,Gatón,Gatón de Campos 42.04984 -4.98078 P PPLA3 ES 55 VA 47070 43 758 Europe/Madrid 2012-03-04
-3121527 Gatika Gatika Gatica,Gatika,Santa Maria de Gatica,Santa María de Gatica 43.36667 -2.86667 P PPLA3 ES 59 BI 48040 1376 20 Europe/Madrid 2012-03-04
-3121529 Gata Gata Gata 40.23758 -6.59684 P PPLA3 ES 57 CC 10084 1788 642 Europe/Madrid 2012-03-04
-3121533 Gascueña de Bornova Gascuena de Bornova Gascuena de Bornova,Gascueña de Bornova 41.14243 -3.01924 P PPLA3 ES 54 GU 19129 54 1205 Europe/Madrid 2012-03-04
-3121534 Gascueña Gascuena Gascuena,Gascueña 40.29937 -2.51856 P PPLA3 ES 54 CU 16094 150 931 Europe/Madrid 2012-03-04
-3121535 Gascones Gascones Gascones 41.01843 -3.64217 P PPLA3 ES 29 M 28064 178 1049 Europe/Madrid 2012-03-04
-3121545 Garriguella Garriguella Garriguella 42.34392 3.06506 P PPLA3 ES 56 GI 17077 727 63 Europe/Madrid 2012-03-04
-3121546 Garrigoles Garrigoles Garrigolas,Garrigoles 42.1 3.03333 P PPLA3 ES 56 GI 17076 0 91 Europe/Madrid 2012-03-04
-3121548 Garrigàs Garrigas Garrigas,Garrigàs 42.19343 2.95438 P PPLA3 ES 56 GI 17075 327 109 Europe/Madrid 2012-03-04
-3121549 Garray Garray 41.81617 -2.44592 P PPLA3 ES 55 SO 42094 506 1018 Europe/Madrid 2012-03-04
-3121554 Garralda Garralda Garralda 42.94818 -1.28624 P PPLA3 ES 32 NA 31115 190 850 Europe/Madrid 2012-03-04
-3121555 Garrafe de Torío Garrafe de Torio Carrafe de Torio,Garrafe,Garrafe de Torio,Garrafe de Torío 42.73285 -5.5236 P PPLA3 ES 55 LE 24076 1101 916 Europe/Madrid 2012-03-04
-3121569 Garínoain Garinoain 42.60036 -1.64434 P PPLA3 ES 32 NA 31114 462 534 Europe/Madrid 2012-03-04
-3121575 Gargüera Garguera Garguera,Gargüera 40.0613 -5.92782 P PPLA3 ES 57 CC 10081 160 524 Europe/Madrid 2012-03-04
-3121582 Gargantilla Gargantilla Gargantilla 40.24835 -5.92068 P PPLA3 ES 57 CC 10080 444 638 Europe/Madrid 2012-03-04
-3121586 Garganta la Olla Garganta la Olla Garganta la Olla 40.11049 -5.77665 P PPLA3 ES 57 CC 10079 1154 581 Europe/Madrid 2012-03-04
-3121589 Garganta del Villar Garganta del Villar Garganta del Villar 40.44965 -5.1042 P PPLA3 ES 55 AV 05081 55 1470 Europe/Madrid 2012-03-04
-3121590 Garganta de los Montes Garganta de los Montes Garganta de los Montes 40.91992 -3.68375 P PPLA3 ES 29 M 28062 365 1155 Europe/Madrid 2012-03-04
-3121598 Gargallo Gargallo Gargallo,Gargayo 40.83583 -0.58442 P PPLA3 ES 52 TE 44116 107 945 Europe/Madrid 2012-03-04
-3121602 Garde Garde Garde 42.78937 -0.92589 P PPLA3 ES 32 NA 31113 175 734 Europe/Madrid 2012-03-04
-3121605 Garcirrey Garcirrey Garcirrey 40.90049 -6.1312 P PPLA3 ES 55 SA 37149 96 811 Europe/Madrid 2012-03-04
-3121608 Garcillán Garcillan Garcillan,Garcillán 40.97771 -4.26577 P PPLA3 ES 55 SG 40094 382 917 Europe/Madrid 2012-03-04
-3121609 Garcihernández Garcihernandez Garcihernandez,Garcihernández 40.86096 -5.43567 P PPLA3 ES 55 SA 37148 579 817 Europe/Madrid 2012-03-04
-3121610 Garcibuey Garcibuey Garcibuey 40.51552 -5.9944 P PPLA3 ES 55 SA 37147 228 700 Europe/Madrid 2012-03-04
-3121611 Garcia Garcia Garcia,García 41.13333 0.65 P PPLA3 ES 56 T 43065 496 28 Europe/Madrid 2012-03-04
-3121617 Garaioa Garaioa Garaioa,Garayoa 42.93333 -1.23333 P PPLA3 ES 32 NA 31112 0 896 Europe/Madrid 2012-03-04
-3121642 Gandesa Gandesa Gandesa,Grandesa 41.05375 0.4385 P PPLA3 ES 56 T 43064 2957 374 Europe/Madrid 2012-03-04
-3121659 Gamones Gamones Gamones 41.4669 -6.17621 P PPLA3 ES 55 ZA 49088 105 753 Europe/Madrid 2012-03-04
-3121677 Galve de Sorbe Galve de Sorbe Galve,Galve de Sorba,Galve de Sorbe 41.21667 -3.18333 P PPLA3 ES 54 GU 19127 133 1392 Europe/Madrid 2012-03-04
-3121678 Galve Galve Galve 40.65591 -0.88217 P PPLA3 ES 52 TE 44115 137 1198 Europe/Madrid 2012-03-04
-3121679 Gallur Gallur Gallur 41.8683 -1.31577 P PPLA3 ES 52 Z 50118 2925 249 Europe/Madrid 2012-03-04
-3121682 Gallocanta Gallocanta 40.99624 -1.50774 P PPLA3 ES 52 Z 50117 148 1017 Europe/Madrid 2012-03-04
-3121687 Gallipienzo Gallipienzo Gallipienzo 42.5245 -1.41115 P PPLA3 ES 32 NA 31110 155 550 Europe/Madrid 2012-03-04
-3121690 Gallinero de Cameros Gallinero de Cameros Gallinero de Cameros 42.17229 -2.61793 P PPLA3 ES 27 LO 26067 23 1062 Europe/Madrid 2012-03-04
-3121697 Gallifa Gallifa Gallifa 41.69243 2.11346 P PPLA3 ES 56 B 08087 218 482 Europe/Madrid 2012-03-04
-3121702 Gallegos de Sobrinos Gallegos de Sobrinos Gallegos de Sobrinos 40.71693 -5.11224 P PPLA3 ES 55 AV 05080 91 1165 Europe/Madrid 2012-03-04
-3121704 Gallegos del Río Gallegos del Rio Gallegos del Rio,Gallegos del Río 41.73497 -6.17435 P PPLA3 ES 55 ZA 49087 722 719 Europe/Madrid 2012-03-04
-3121705 Gallegos del Pan Gallegos del Pan Gallegos del Pan 41.59985 -5.58117 P PPLA3 ES 55 ZA 49086 161 696 Europe/Madrid 2012-03-04
-3121707 Gallegos de Hornija Gallegos de Hornija Gallegos de Hornija 41.6098 -5.09768 P PPLA3 ES 55 VA 47069 153 716 Europe/Madrid 2012-03-04
-3121709 Gallegos de Argañán Gallegos de Arganan Gallegos de Arganan,Gallegos de Argañán 40.63146 -6.70246 P PPLA3 ES 55 SA 37145 359 662 Europe/Madrid 2012-03-04
-3121715 Gallegos Gallegos 41.07508 -3.78591 P PPLA3 ES 55 SG 40093 100 1237 Europe/Madrid 2011-07-31
-3121728 Galisancho Galisancho Galisancho 40.74418 -5.55471 P PPLA3 ES 55 SA 37144 459 820 Europe/Madrid 2012-03-04
-3121731 Galinduste Galinduste Galinduste 40.66266 -5.54003 P PPLA3 ES 55 SA 37143 531 953 Europe/Madrid 2012-03-04
-3121732 Galindo y Perahuy Galindo y Perahuy Galindo y Perahuy 40.94397 -5.8741 P PPLA3 ES 55 SA 37142 537 796 Europe/Madrid 2012-03-04
-3121736 Galilea Galilea Galilea 42.34703 -2.23605 P PPLA3 ES 27 LO 26066 307 557 Europe/Madrid 2012-03-04
-3121744 Galende Galende 42.1044 -6.66252 P PPLA3 ES 55 ZA 49085 1336 964 Europe/Madrid 2012-03-04
-3121751 Galdakao Galdakao Gal'dakano,Galdacan,Galdacano,Galdacon,Galdakao,Galdácano,Гальдакано 43.23333 -2.83333 P PPLA3 ES 59 BI 48036 29226 117 Europe/Madrid 2012-03-04
-3121752 Galbárruli Galbarruli Gabalruli,Gabálruli,Galbarruli,Galbárruli 42.62181 -2.96087 P PPLA3 ES 27 LO 26065 69 651 Europe/Madrid 2012-03-04
-3121753 Galbarros Galbarros Galbarros 42.52729 -3.43827 P PPLA3 ES 55 BU 09143 30 938 Europe/Madrid 2012-03-04
-3121762 Galar Galar Galar 42.76147 -1.69881 P PPLA3 ES 32 NA 31109 1368 552 Europe/Madrid 2012-03-04
-3121763 Galápagos Galapagos Galapagos,Galápagos 40.69347 -3.33537 P PPLA3 ES 54 GU 19126 833 740 Europe/Madrid 2012-03-04
-3121766 Galapagar Galapagar Galapagar,Галапагар 40.5783 -4.00426 P PPLA3 ES 29 M 28061 31820 883 Europe/Madrid 2012-03-04
-3121769 Gajates Gajates Gajates 40.78254 -5.36506 P PPLA3 ES 55 SA 37141 187 856 Europe/Madrid 2012-03-04
-3121772 Gajanejos Gajanejos Gajanejos 40.84147 -2.89229 P PPLA3 ES 54 GU 19125 64 1033 Europe/Madrid 2012-03-04
-3121774 Gaintza Gainza Gaintza,Gainza,Gaínza 43.05271 -2.1329 P PPLA3 ES 59 SS 20037 0 438 Europe/Madrid 2012-03-04
-3121796 Fustiñana Fustinana Fustinana,Fustiñana 42.02087 -1.48526 P PPLA3 ES 32 NA 31108 2550 262 Europe/Madrid 2012-03-04
-3121806 Funes Funes Funes 42.31562 -1.80017 P PPLA3 ES 32 NA 31107 2406 285 Europe/Madrid 2012-03-04
-3121813 Fulleda Fulleda Fulleda 41.46334 1.02395 P PPLA3 ES 56 L 25097 25097 114 585 Europe/Madrid 2012-03-04
-3121818 Fuertescusa Fuertescusa Fuerte-Escusa,Fuertescusa 40.47552 -2.1762 P PPLA3 ES 54 CU 16091 126 987 Europe/Madrid 2012-03-04
-3121819 Fuentidueña de Tajo Fuentiduena de Tajo Fuentiduena de Tajo,Fuentidueña de Tajo 40.11574 -3.15718 P PPLA3 ES 29 M 28060 1673 552 Europe/Madrid 2012-03-04
-3121820 Fuentidueña Fuentiduena Fuentiduena,Fuentidueña 41.44226 -3.97899 P PPLA3 ES 55 SG 40092 158 832 Europe/Madrid 2012-03-04
-3121826 Fuentestrún Fuentestrun Fuentestrun,Fuentestrur,Fuentestrún,Fuentestrúr 41.87466 -2.08283 P PPLA3 ES 55 SO 42093 87 1012 Europe/Madrid 2012-03-04
-3121828 Fuentespreadas Fuentespreadas Fuentespreadas 41.32627 -5.62798 P PPLA3 ES 55 ZA 49084 369 765 Europe/Madrid 2012-03-04
-3121829 Fuentespina Fuentespina Fuentespina 41.6308 -3.68475 P PPLA3 ES 55 BU 09141 667 825 Europe/Madrid 2012-03-04
-3121830 Fuentespalda Fuentespalda Fondespatla,Fontespala,Fuentespalda 40.80666 0.06517 P PPLA3 ES 52 TE 44114 379 718 Europe/Madrid 2012-03-04
-3121831 Fuentesoto Fuentesoto Fuentesoto 41.45664 -3.91835 P PPLA3 ES 55 SG 40091 165 938 Europe/Madrid 2012-03-04
-3121834 Fuentesecas Fuentesecas Fuentesecas 41.63077 -5.47252 P PPLA3 ES 55 ZA 49083 82 771 Europe/Madrid 2012-03-04
-3121835 Fuentes de Valdepero Fuentes de Valdepero Fuentes de Valdepero 42.07532 -4.5005 P PPLA3 ES 55 P 34077 232 799 Europe/Madrid 2012-03-04
-3121837 Fuentes de Rubielos Fuentes de Rubielos Fonts de Rubiols,Fuentes de Rubielos 40.16667 -0.61667 P PPLA3 ES 52 TE 44113 129 942 Europe/Madrid 2011-07-31
-3121838 Fuentes de Ropel Fuentes de Ropel Fuentes,Fuentes de Ropel 42.00377 -5.54532 P PPLA3 ES 55 ZA 49082 563 722 Europe/Madrid 2012-03-04
-3121840 Fuentes de Oñoro Fuentes de Onoro Fuentes de Onoro,Fuentes de Oñoro 40.59102 -6.81144 P PPLA3 ES 55 SA 37140 1538 738 Europe/Madrid 2012-03-04
-3121841 Fuentes de Nava Fuentes de Nava Fuentes de Nava 42.08333 -4.78333 P PPLA3 ES 55 P 34076 767 758 Europe/Madrid 2012-03-04
-3121843 Fuentes de Magaña Fuentes de Magana Fuentes de Magana,Fuentes de Magaña 41.93521 -2.1795 P PPLA3 ES 55 SO 42092 80 1148 Europe/Madrid 2012-03-04
-3121847 Fuentes de Jiloca Fuentes de Jiloca Fuentes de Jiloca 41.22859 -1.53616 P PPLA3 ES 52 Z 50116 300 693 Europe/Madrid 2012-03-04
-3121849 Fuentes de Ebro Fuentes de Ebro Fuentes de Ebro 41.5125 -0.63159 P PPLA3 ES 52 Z 50115 4150 198 Europe/Madrid 2012-03-04
-3121853 Fuentes de Carbajal Fuentes de Carbajal Fuentes de Carbajal 42.17776 -5.44606 P PPLA3 ES 55 LE 24074 0 809 Europe/Madrid 2012-03-04
-3121854 Fuentes de Béjar Fuentes de Bejar Fuentes de Bejar,Fuentes de Béjar 40.50815 -5.6927 P PPLA3 ES 55 SA 37139 289 910 Europe/Madrid 2012-03-04
-3121855 Fuentes de Ayódar Fuentes de Ayodar Fuentes de Ayodar,Fuentes de Ayódar 40.03333 -0.41667 P PPLA3 ES 60 CS 12064 96 676 Europe/Madrid 2012-03-04
-3121856 Fuentes de Año Fuentes de Ano Fuentes de Ano,Fuentes de Año 41.01769 -4.89908 P PPLA3 ES 55 AV 05078 173 824 Europe/Madrid 2012-03-04
-3121860 Fuentes Claras Fuentes Claras Fuentes Claras 40.86375 -1.32266 P PPLA3 ES 52 TE 44112 554 913 Europe/Madrid 2012-03-04
-3121862 Fuentes Calientes Fuentes Calientes Fuentes Calientes 40.7 -0.96667 P PPLA3 ES 52 TE 44111 132 1252 Europe/Madrid 2012-03-04
-3121865 Fuentesaúco de Fuentidueña Fuentesauco de Fuentiduena Fuentesauco de Fuentiduena,Fuentesaúco de Fuentidueña 41.42445 -4.06215 P PPLA3 ES 55 SG 40089 310 899 Europe/Madrid 2012-03-04
-3121867 Fuentesaúco Fuentesauco Fuentesauco,Fuentesaúco 41.23043 -5.49722 P PPLA3 ES 55 ZA 49081 1879 804 Europe/Madrid 2012-03-04
-3121877 Fuenterroble de Salvatierra Fuenterroble de Salvatierra Fuenterroble de Salvatierra 40.56466 -5.73379 P PPLA3 ES 55 SA 37138 262 951 Europe/Madrid 2012-03-04
-3121881 Hondarribia Fuenterrabia Fontarabie,Fuenterrabia,Fuenterrabía,Hondarribi,Hondarribia 43.37202 -1.79448 P PPLA3 ES 59 SS 20036 16458 7 Europe/Madrid 2012-03-04
-3121885 Fuentepinilla Fuentepinilla Fuentepinilla 41.56683 -2.76288 P PPLA3 ES 55 SO 42090 143 940 Europe/Madrid 2012-03-04
-3121886 Fuentepiñel Fuentepinel Fuentepinel,Fuentepiñel 41.39892 -4.04295 P PPLA3 ES 55 SG 40087 142 889 Europe/Madrid 2012-03-04
-3121887 Fuentepelayo Fuentepelayo Fuentepelayo 41.22249 -4.1757 P PPLA3 ES 55 SG 40086 979 869 Europe/Madrid 2012-03-04
-3121892 Fuentenovilla Fuentenovilla Fuentenovilla 40.36248 -3.09102 P PPLA3 ES 54 GU 19124 378 798 Europe/Madrid 2012-03-04
-3121893 Fuentenebro Fuentenebro Fuentenebro 41.52873 -3.75449 P PPLA3 ES 55 BU 09140 165 922 Europe/Madrid 2012-03-04
-3121895 Fuentemolinos Fuentemolinos Fuentemolinos 41.60477 -3.85005 P PPLA3 ES 55 BU 09139 113 884 Europe/Madrid 2012-03-04
-3121899 Fuentelviejo Fuentelviejo Fuentelviejo 40.52637 -2.9843 P PPLA3 ES 54 GU 19123 54 901 Europe/Madrid 2012-03-04
-3121900 Fuentelsaz de Soria Fuentelsaz de Soria Fuentelsaz de Soria 41.86586 -2.41525 P PPLA3 ES 55 SO 42089 50 1079 Europe/Madrid 2012-03-04
-3121901 Fuentelsaz Fuentelsaz Fuente el Saz,Fuentelsaz 41.07359 -1.83108 P PPLA3 ES 54 GU 19122 116 1123 Europe/Madrid 2012-03-04
-3121904 Fuentelisendo Fuentelisendo Fuentelisendo,Fuentelisendro 41.62274 -3.90129 P PPLA3 ES 55 BU 09138 109 831 Europe/Madrid 2012-03-04
-3121909 Fuentelencina Fuentelencina Fuentelaencina,Fuentelencina 40.51781 -2.88226 P PPLA3 ES 54 GU 19121 237 978 Europe/Madrid 2012-03-04
-3121910 Fuentelcésped Fuentelcesped Fuentelcesped,Fuentelcésped 41.59162 -3.64064 P PPLA3 ES 55 BU 09137 205 888 Europe/Madrid 2012-03-04
-3121913 Fuente la Reina Fuente la Reina Fuente la Reina,La Font de la Reina 40.06667 -0.6 P PPLA3 ES 60 CS 12063 42 763 Europe/Madrid 2012-03-04
-3121916 Fuentelapeña Fuentelapena Fuentelapena,Fuentelapeña 41.25144 -5.38325 P PPLA3 ES 55 ZA 49080 920 744 Europe/Madrid 2012-03-04
-3121917 Fuentelahiguera de Albatages Fuentelahiguera de Albatages Fuentelahiguera de Albatages 40.78312 -3.30492 P PPLA3 ES 54 GU 19120 166 877 Europe/Madrid 2012-03-04
-3121921 Fuenteguinaldo Fuenteguinaldo Fuenteguinaldo 40.42876 -6.67528 P PPLA3 ES 55 SA 37136 858 853 Europe/Madrid 2012-03-04
-3121924 Fuente Encalada Fuente Encalada Fuente Encalada 42.11011 -5.99622 P PPLA3 ES 55 ZA 49079 128 752 Europe/Madrid 2012-03-04
-3121925 Fuente el Sol Fuente el Sol Fuente el Sol 41.17603 -4.9343 P PPLA3 ES 55 VA 47067 280 760 Europe/Madrid 2012-03-04
-3121926 Fuente el Saz Fuente el Saz 40.63216 -3.51146 P PPL ES 29 M 28009 5524 642 Europe/Madrid 2011-04-19
-3121929 Fuente el Olmo de Fuentidueña Fuente el Olmo de Fuentiduena Fuente el Olmo,Fuente el Olmo de Fuentiduena,Fuente el Olmo de Fuentidueña 41.37929 -4.00086 P PPLA3 ES 55 SG 40083 117 851 Europe/Madrid 2012-03-04
-3121932 Fuente de Santa Cruz Fuente de Santa Cruz Fuente de Santa Cruz 41.20972 -4.6353 P PPLA3 ES 55 SG 40082 159 834 Europe/Madrid 2012-03-04
-3121941 Fuentecén Fuentecen Fuenecen,Fuenecén,Fuentecen,Fuentecén 41.62852 -3.86867 P PPLA3 ES 55 BU 09136 294 819 Europe/Madrid 2012-03-04
-3121943 Fuentecantos Fuentecantos Fuentecantos 41.84929 -2.42846 P PPLA3 ES 55 SO 42087 56 1033 Europe/Madrid 2012-03-04
-3121945 Fuentecambrón Fuentecambron Fuentecambron,Fuentecambrón 41.50579 -3.32872 P PPLA3 ES 55 SO 42086 54 1015 Europe/Madrid 2012-03-04
-3121947 Fuentebureba Fuentebureba Fuentebureba 42.634 -3.2351 P PPLA3 ES 55 BU 09135 72 680 Europe/Madrid 2012-03-04
-3121950 Fuentearmegil Fuentearmegil Fuentearmegil 41.71496 -3.18362 P PPLA3 ES 55 SO 42085 282 985 Europe/Madrid 2012-03-04
-3121956 Fuensalida Fuensalida Fuensalida 40.05288 -4.20718 P PPLA3 ES 54 TO 45066 10967 592 Europe/Madrid 2012-03-04
-3121957 Fuensaldaña Fuensaldana Fuensaldana,Fuensaldaña 41.70617 -4.76547 P PPLA3 ES 55 VA 47066 1177 749 Europe/Madrid 2012-03-04
-3121959 Fuenmayor Fuenmayor 42.46729 -2.56153 P PPLA3 ES 27 LO 26064 2827 435 Europe/Madrid 2012-03-04
-3121960 Fuenlabrada Fuenlabrada Fuenlabrada,Фуенлабрада 40.28419 -3.79415 P PPLA3 ES 29 M 28058 197836 671 Europe/Madrid 2012-03-04
-3121963 Fuenferrada Fuenferrada Fuenferrada 40.86923 -1.0118 P PPLA3 ES 52 TE 44110 46 1118 Europe/Madrid 2012-03-04
-3121964 Fuendetodos Fuendetodos Fuendetodos 41.34245 -0.95988 P PPLA3 ES 52 Z 50114 175 755 Europe/Madrid 2012-03-04
-3121965 Fuendejalón Fuendejalon Fuendejalon,Fuendejalón 41.7605 -1.47213 P PPLA3 ES 52 Z 50113 750 475 Europe/Madrid 2012-03-04
-3121968 Fuencemillán Fuencemillan Fuencemillan,Fuencemillán 40.92063 -3.09818 P PPLA3 ES 54 GU 19119 103 799 Europe/Madrid 2012-03-04
-3121975 Fuembellida Fuembellida Fuembellida 40.75589 -1.99861 P PPLA3 ES 54 GU 19118 14 1222 Europe/Madrid 2012-03-04
-3121981 Frumales Frumales Frumales 41.38333 -4.18631 P PPLA3 ES 55 SG 40081 172 820 Europe/Madrid 2012-03-04
-3121995 Frómista Fromista Fromista,Frómista 42.26667 -4.40546 P PPLA3 ES 55 P 34074 920 781 Europe/Madrid 2012-03-04
-3122002 Friol Friol Frio 43.03213 -7.79514 P PPLA3 ES 58 LU 27020 4522 478 Europe/Madrid 2012-03-04
-3122010 Friera de Valverde Friera de Valverde Friera de Valverde 41.91214 -5.84153 P PPLA3 ES 55 ZA 49078 240 721 Europe/Madrid 2012-03-04
-3122014 Frías de Albarracín Frias de Albarracin Frias de Albarracin,Frías de Albarracín 40.33754 -1.6147 P PPLA3 ES 52 TE 44109 170 1457 Europe/Madrid 2012-03-04
-3122015 Frías Frias Frias,Frías,Trias 42.76225 -3.29394 P PPLA3 ES 55 BU 09134 354 583 Europe/Madrid 2012-03-04
-3122021 Fresno El Viejo Fresno El Viejo Fresno El Viejo 41.19752 -5.14413 P PPL ES 55 VA 47065 1168 759 Europe/Madrid 2012-01-19
-3122022 Fresno de Torote Fresno de Torote Fresno de Torote 40.5904 -3.41003 P PPLA3 ES 29 M 28057 1723 654 Europe/Madrid 2012-03-04
-3122023 Fresno de Sayago Fresno de Sayago Fresno de Sayago 41.31848 -5.97129 P PPLA3 ES 55 ZA 49077 232 797 Europe/Madrid 2012-03-04
-3122024 Fresno de Rodilla Fresno de Rodilla 42.42054 -3.48507 P PPLA3 ES 55 BU 09133 44 975 Europe/Madrid 2012-03-04
-3122027 Fresno del Río Fresno del Rio Fresno del Rio,Fresno del Río 42.68176 -4.81734 P PPLA3 ES 55 P 34073 0 1016 Europe/Madrid 2012-03-04
-3122030 Fresno de la Vega Fresno de la Vega Fresno de la Vega 42.34545 -5.53587 P PPLA3 ES 55 LE 24073 637 755 Europe/Madrid 2012-03-04
-3122032 Fresno de la Ribera Fresno de la Ribera Fresno de la Ribera 41.52926 -5.56658 P PPLA3 ES 55 ZA 49076 416 663 Europe/Madrid 2012-03-04
-3122033 Fresno de la Polvorosa Fresno de la Polvorosa Fresno de la Polvorosa 42.0831 -5.7697 P PPLA3 ES 55 ZA 49075 198 724 Europe/Madrid 2012-03-04
-3122034 Fresno de la Fuente Fresno de la Fuente Fresno de la Fuente 41.39243 -3.64491 P PPLA3 ES 55 SG 40080 83 1038 Europe/Madrid 2012-03-04
-3122036 Fresno de Caracena Fresno de Caracena Fresno de Caracena 41.45247 -3.09123 P PPLA3 ES 55 SO 42084 38 951 Europe/Madrid 2012-03-04
-3122037 Fresno de Cantespino Fresno de Cantespino Fresno de Cantespino 41.3682 -3.4995 P PPLA3 ES 55 SG 40079 285 1036 Europe/Madrid 2012-03-04
-3122045 Fresnillo de las Dueñas Fresnillo de las Duenas Fresnillo,Fresnillo de Duero,Fresnillo de las Duenas,Fresnillo de las Dueñas 41.647 -3.64558 P PPLA3 ES 55 BU 09131 375 805 Europe/Madrid 2012-03-04
-3122048 Fresneña Fresnena Fresnena,Fresneña 42.41366 -3.13452 P PPLA3 ES 55 BU 09130 106 853 Europe/Madrid 2012-03-04
-3122050 Fresnedoso Fresnedoso Fresnedoso 40.43618 -5.7097 P PPLA3 ES 55 SA 37133 129 1020 Europe/Madrid 2012-03-04
-3122060 Fresnedillas Fresnedillas 40.48704 -4.17146 P PPL ES 29 M 28095 1131 896 Europe/Madrid 2008-10-28
-3122061 Fresnedilla Fresnedilla Fresnedilla,Fresnedillas 40.23234 -4.62201 P PPLA3 ES 55 AV 05075 99 619 Europe/Madrid 2012-03-04
-3122066 Fresneda de la Sierra Tirón Fresneda de la Sierra Tiron Fresneda de la Sierra Tiron,Fresneda de la Sierra Tirón 42.31535 -3.13596 P PPLA3 ES 55 BU 09129 113 985 Europe/Madrid 2012-03-04
-3122067 Fresneda de la Sierra Fresneda de la Sierra Fresneda de la Sierra 40.39101 -2.14233 P PPLA3 ES 54 CU 16084 73 991 Europe/Madrid 2012-03-04
-3122068 Fresneda de Cuéllar Fresneda de Cuellar Fresneda de Cuellar,Fresneda de Cuéllar 41.31905 -4.44938 P PPLA3 ES 55 SG 40078 216 767 Europe/Madrid 2012-03-04
-3122077 Fréscano Frescano Frescano,Fréscano 41.88333 -1.45 P PPLA3 ES 52 Z 50111 235 292 Europe/Madrid 2011-07-31
-3122107 Frechilla de Almazán Frechilla de Almazan Frechilla,Frechilla de Almazan,Frechilla de Almazán 41.42656 -2.51444 P PPLA3 ES 55 SO 42083 34 985 Europe/Madrid 2012-03-04
-3122108 Frechilla Frechilla Flechilla,Frechilla 42.13768 -4.84112 P PPLA3 ES 55 P 34072 250 775 Europe/Madrid 2012-03-04
-3122123 Frandovínez Frandovinez Frandevinez 42.31032 -3.83783 P PPLA3 ES 55 BU 09128 95 824 Europe/Madrid 2012-03-04
-3122157 Fraga Fraga Fraga 41.52294 0.34894 P PPLA3 ES 52 HU 22112 14302 134 Europe/Madrid 2012-03-04
-3122159 Frades de la Sierra Frades de la Sierra Frades de la Sierra 40.65687 -5.78223 P PPLA3 ES 55 SA 37131 256 954 Europe/Madrid 2012-03-04
-3122160 Frades Frades Frades,San Martin,San Martín 43.05011 -8.29391 P PPLA3 ES 58 C 15038 0 361 Europe/Madrid 2012-03-04
-3122167 Foz-Calanda Foz-Calanda Foz de Calanda,Foz-Calanda 40.92208 -0.26484 P PPLA3 ES 52 TE 44107 289 502 Europe/Madrid 2012-03-04
-3122172 Foz Foz Foz 43.5692 -7.2544 P PPL ES 58 LU 27005 9642 19 Europe/Madrid 2012-01-19
-3122180 Forua Forua Forua 43.33343 -2.67504 P PPLA3 ES 59 BI 48906 1017 24 Europe/Madrid 2012-03-04
-3122182 Fortià Fortia Fortia,Fortià 42.2432 3.03881 P PPLA3 ES 56 GI 17074 558 7 Europe/Madrid 2012-03-04
-3122184 Fortanete Fortanete Fortanate,Fortanete 40.50533 -0.52283 P PPLA3 ES 52 TE 44106 215 1355 Europe/Madrid 2012-03-04
-3122188 Fórnoles Fornoles Fornoles,Fornols,Fornols del Tossal,Fórnoles,Fórnols,Fórnols del Tossal 40.89359 -0.00383 P PPLA3 ES 52 TE 44105 105 716 Europe/Madrid 2012-03-04
-3122198 Fornelos de Montes Fornelos de Montes Fornelos de Montes,San Lorenzo 42.34126 -8.45291 P PPLA3 ES 58 PO 36019 2063 326 Europe/Madrid 2012-03-04
-3122205 Fornells de la Selva Fornells de la Selva 41.93159 2.80907 P PPLA3 ES 56 GI 17073 1823 105 Europe/Madrid 2012-03-04
-3122223 Formiche Alto Formiche Alto Formiche Alto 40.32367 -0.89241 P PPLA3 ES 52 TE 44103 186 1089 Europe/Madrid 2012-03-04
-3122229 Forfoleda Forfoleda Forfoleda 41.09779 -5.74979 P PPLA3 ES 55 SA 37130 234 792 Europe/Madrid 2012-03-04
-3122231 Forès Fores Fores,Forès,Forés 41.48333 1.23333 P PPLA3 ES 56 T 43061 0 622 Europe/Madrid 2012-03-04
-3122238 Forcall Forcall Forcall 40.64542 -0.19992 P PPLA3 ES 60 CS 12061 532 715 Europe/Madrid 2012-03-04
-3122251 Fonzaleche Fonzaleche Fonzaleche 42.58114 -3.01218 P PPLA3 ES 27 LO 26063 163 555 Europe/Madrid 2012-03-04
-3122252 Fonz Fonz Fonts 42.01015 0.25878 P PPLA3 ES 52 HU 22110 1050 452 Europe/Madrid 2012-03-04
-3122258 Fontiveros Fontiveros Fontiveros 40.92997 -4.96445 P PPLA3 ES 55 AV 05074 935 889 Europe/Madrid 2012-03-04
-3122260 Fontioso Fontioso Fontioso 41.94273 -3.73872 P PPLA3 ES 55 BU 09127 65 963 Europe/Madrid 2012-03-04
-3122261 Fontihoyuelo Fontihoyuelo Fontihoyuelo 42.16192 -5.05791 P PPLA3 ES 55 VA 47064 43 817 Europe/Madrid 2012-03-04
-3122271 Fontellas Fontellas Fontellas 42.02694 -1.57648 P PPLA3 ES 32 NA 31106 810 280 Europe/Madrid 2012-03-04
-3122288 Fontcoberta Fontcoberta Fontcoberta,Fontcuberta 42.13333 2.8 P PPLA3 ES 56 GI 17071 0 145 Europe/Madrid 2012-03-04
-3122297 Fontanilles Fontanilles Fontanillas,Fontanilles 42.01117 3.10776 P PPLA3 ES 56 GI 17070 0 17 Europe/Madrid 2012-03-04
-3122304 Fontanar Fontanar Fontanar 40.72466 -3.17309 P PPLA3 ES 54 GU 19117 1393 677 Europe/Madrid 2012-03-04
-3122313 Fonsagrada Fonsagrada 43.12398 -7.0679 P PPL ES 58 LU 27018 4999 962 Europe/Madrid 2010-05-24
-3122315 Fonollosa Fonollosa Fonollosa 41.76303 1.66867 P PPL ES 56 B 08002 1239 529 Europe/Madrid 2012-01-19
-3122321 Fonfría Fonfria Fonfria,Fonfría 41.63493 -6.14082 P PPLA3 ES 55 ZA 49071 1029 805 Europe/Madrid 2012-03-04
-3122322 Fonfría Fonfria Fonfria,Fonfría 40.99566 -1.08475 P PPLA3 ES 52 TE 44102 29 1249 Europe/Madrid 2012-03-04
-3122334 Foncea Foncea Foncea 42.61528 -3.03897 P PPLA3 ES 27 LO 26062 103 694 Europe/Madrid 2012-03-04
-3122338 Fompedraza Fompedraza Fompedraza 41.53541 -4.14483 P PPLA3 ES 55 VA 47063 140 902 Europe/Madrid 2012-03-04
-3122339 Fombuena Fombuena Fombuena 41.14442 -1.19266 P PPLA3 ES 52 Z 50108 13 1018 Europe/Madrid 2012-03-04
-3122342 Fombellida Fombellida Fombellida 41.76693 -4.18409 P PPLA3 ES 55 VA 47062 245 793 Europe/Madrid 2012-03-04
-3122367 Folgoso de la Ribera Folgoso de la Ribera Folgoso de la Ribera 42.64693 -6.32035 P PPLA3 ES 55 LE 24071 1284 776 Europe/Madrid 2012-03-04
-3122389 Foixà Foixa Foixa,Foixà 42.03626 3.00021 P PPLA3 ES 56 GI 17068 334 65 Europe/Madrid 2012-03-04
-3122393 Fogars de Montclús Fogars de Montclus Caserio Fogas de Montclus,Caserío Fogas de Montclús,Fogars de Montclus,Fogars de Montclús,Fogas de Monclus,Fogás de Monclús 41.73333 2.45 P PPLA3 ES 56 B 08081 0 532 Europe/Madrid 2012-03-04
-3122399 Florida de Liébana Florida de Liebana Florida de Liebana,Florida de Liébana 41.02362 -5.76252 P PPLA3 ES 55 SA 37129 289 781 Europe/Madrid 2012-03-04
-3122401 Flores de Ávila Flores de Avila Flores de Avila,Flores de Ávila 40.93358 -5.07914 P PPLA3 ES 55 AV 05073 398 902 Europe/Madrid 2012-03-04
-3122407 Flix Flix Flix 41.23074 0.55008 P PPLA3 ES 56 T 43060 3975 53 Europe/Madrid 2012-03-04
-3122409 Flaçà Flaca Flaca,Flasa,Flassa,Flassá,Flaçà 42.06667 2.96667 P PPLA3 ES 56 GI 17067 0 44 Europe/Madrid 2012-03-04
-3122415 Fitero Fitero Fitero 42.0577 -1.85756 P PPLA3 ES 32 NA 31105 2202 427 Europe/Madrid 2012-03-04
-3122418 Fiscal Fiscal 42.49561 -0.12094 P PPLA3 ES 52 HU 22109 308 767 Europe/Madrid 2012-03-04
-3122426 Fisterra Fisterra Finisterra,Fisterra,Фистерра 42.90492 -9.26289 P PPL ES 58 C 15037 5005 15 Europe/Madrid 2011-02-22
-3122440 Figueruelas Figueruelas Figueruelas 41.76651 -1.17473 P PPLA3 ES 52 Z 50107 1135 256 Europe/Madrid 2012-03-04
-3122442 Figueruela de Arriba Figueruela de Arriba Figueruela de Arriba 41.86867 -6.44454 P PPLA3 ES 55 ZA 49069 477 854 Europe/Madrid 2012-03-04
-3122445 Figueroles Figueroles Figueroles 40.11667 -0.23333 P PPLA3 ES 60 CS 12060 545 360 Europe/Madrid 2012-03-04
-3122452 Figueras Figueras Figejras,Figueras,Фигейрас 43.53943 -7.02559 P PPL ES 34 O 33017 20000 8 Europe/Madrid 2012-01-19
-3122453 Figueres Figueres Figeras,Figeres,Figueres,Фигерeс,Фигерас 42.26645 2.96163 P PPLA3 ES 56 GI 17066 43330 41 Europe/Madrid 2012-03-04
-3122495 Ferreruela de Huerva Ferreruela de Huerva Ferreruela,Ferreruela de Huerva 41.06325 -1.2335 P PPLA3 ES 52 TE 44101 74 1018 Europe/Madrid 2012-03-04
-3122496 Ferreruela Ferreruela Ferreruela 41.76673 -6.07215 P PPLA3 ES 55 ZA 49068 580 828 Europe/Madrid 2012-03-04
-3122503 Ferreras de Arriba Ferreras de Arriba Ferreras de Arriba 41.89878 -6.19462 P PPLA3 ES 55 ZA 49067 513 897 Europe/Madrid 2012-03-04
-3122504 Ferreras de Abajo Ferreras de Abajo Ferreras de Abajo 41.89651 -6.07904 P PPLA3 ES 55 ZA 49066 618 823 Europe/Madrid 2012-03-04
-3122558 Fermoselle Fermoselle Fermoselle 41.31738 -6.39584 P PPLA3 ES 55 ZA 49065 1538 701 Europe/Madrid 2012-03-04
-3122564 Fene Fene Fene,San Salvador 43.45 -8.15 P PPLA3 ES 58 C 15035 14165 274 Europe/Madrid 2012-03-04
-3122595 Fayón Fayon Faio,Faio / Fayon,Faió,Faió / Fayón,Fayon,Fayón 41.23851 0.33302 P PPLA3 ES 52 Z 50105 404 196 Europe/Madrid 2012-03-04
-3122600 la Fatarella la Fatarella Fatarella,la Fatarella 41.16667 0.48333 P PPLA3 ES 56 T 43056 0 531 Europe/Madrid 2012-03-04
-3122606 Farrera Farrera Farrera 42.49654 1.27216 P PPLA3 ES 56 L 25089 105 1355 Europe/Madrid 2012-03-04
-3122621 Farlete Farlete Farlete 41.68122 -0.50678 P PPLA3 ES 52 Z 50104 436 410 Europe/Madrid 2012-03-04
-3122622 Fariza Fariza Fariza 41.41667 -6.26667 P PPLA3 ES 55 ZA 49064 689 699 Europe/Madrid 2012-03-04
-3122636 Faramontanos de Tábara Faramontanos de Tabara Faramontanos de Tabara,Faramontanos de Tábara 41.83469 -5.88883 P PPLA3 ES 55 ZA 49063 497 713 Europe/Madrid 2012-03-04
-3122641 Fanzara Fanzara Fanzara 40.01667 -0.31667 P PPLA3 ES 60 CS 12059 273 217 Europe/Madrid 2012-03-04
-3122656 Falset Falset Falset 41.14576 0.81979 P PPL ES 56 T 43076 2662 372 Europe/Madrid 2012-01-19
-3122667 Falces Falces Falces 42.38966 -1.79321 P PPLA3 ES 32 NA 31104 2605 291 Europe/Madrid 2012-03-04
-3122671 Fago Fago 42.7344 -0.88131 P PPLA3 ES 52 HU 22106 33 1178 Europe/Madrid 2011-07-31
-3122695 Fabero Fabero Fabero 42.76803 -6.62651 P PPLA3 ES 55 LE 24070 5150 700 Europe/Madrid 2012-03-04
-3122697 Fabara Fabara Fabara,Favara de Matarranya 41.1775 0.16908 P PPLA3 ES 52 Z 50102 1188 255 Europe/Madrid 2012-03-04
-3122707 Ezkurra Ezkurra Ezcurra,Ezkurra 43.08333 -1.81667 P PPLA3 ES 32 NA 31102 0 513 Europe/Madrid 2012-03-04
-3122709 Ezcaray Ezcaray Ezcaray,Ezkarai 42.32536 -3.01309 P PPLA3 ES 27 LO 26061 2109 816 Europe/Madrid 2012-03-04
-3122718 Eulate Eulate Eulace,Eulate 42.77641 -2.20638 P PPLA3 ES 32 NA 31100 339 732 Europe/Madrid 2012-03-04
-3122724 Etayo Etayo Etayo 42.61695 -2.15447 P PPLA3 ES 32 NA 31099 95 595 Europe/Madrid 2012-03-04
-3122727 Estriégana Estriegana Estriegana,Estriégana 41.05821 -2.52363 P PPLA3 ES 54 GU 19116 24 1107 Europe/Madrid 2012-03-04
-3122730 Estremera Estremera 40.18333 -3.1 P PPLA3 ES 29 M 28055 1180 626 Europe/Madrid 2011-07-31
-3122740 Estollo Estollo Estollo 42.32953 -2.85092 P PPLA3 ES 27 LO 26060 129 752 Europe/Madrid 2012-03-04
-3122752 Estercuel Estercuel Estercuel 40.855 -0.63208 P PPLA3 ES 52 TE 44100 312 837 Europe/Madrid 2012-03-04
-3122758 Estépar Estepar 42.27731 -3.89946 P PPLA3 ES 55 BU 09125 786 813 Europe/Madrid 2012-03-04
-3122759 Estepa de San Juan Estepa de San Juan Estepa de San Juan 41.92661 -2.33322 P PPLA3 ES 55 SO 42082 11 1253 Europe/Madrid 2012-03-04
-3122762 Estella Estella Estella,Lizarra 42.67182 -2.03226 P PPL ES 32 NA 31041 14238 430 Europe/Madrid 2012-01-19
-3122794 Estadilla Estadilla Estadella,Estadilla 42.05657 0.24343 P PPLA3 ES 52 HU 22103 831 447 Europe/Madrid 2012-03-04
-3122795 Estada Estada Estada 42.07201 0.23219 P PPLA3 ES 52 HU 22102 197 375 Europe/Madrid 2012-03-04
-3122806 Establés Estables Estables,Establés 41.00767 -2.02438 P PPLA3 ES 54 GU 19115 52 1148 Europe/Madrid 2012-03-04
-3122807 Esquivias Esquivias 40.1044 -3.76677 P PPLA3 ES 54 TO 45064 4634 614 Europe/Madrid 2012-03-04
-3122816 Espronceda Espronceda 42.59707 -2.30524 P PPLA3 ES 32 NA 31096 160 540 Europe/Madrid 2012-03-04
-3122817 Espot Espot Espot 42.57838 1.08666 P PPLA3 ES 56 L 25082 388 1340 Europe/Madrid 2012-03-04
-3122823 Esponellà Esponella Esponella,Esponellà,Esponellá 42.16667 2.8 P PPLA3 ES 56 GI 17065 434 226 Europe/Madrid 2012-03-04
-3122824 Espolla Espolla Espolla 42.3912 3.00064 P PPLA3 ES 56 GI 17064 385 116 Europe/Madrid 2012-03-04
-3122825 Esplús Esplus Esplucs,Esplus,Esplús 41.7987 0.27586 P PPLA3 ES 52 HU 22099 734 277 Europe/Madrid 2012-03-04
-3122826 Esplugues de Llobregat Esplugues de Llobregat Esplugues de Llobregat 41.37732 2.08809 P PPL ES 56 B 08019 46862 102 Europe/Madrid 2010-04-22
-3122830 Esplegares Esplegares Esplegares 40.8565 -2.37084 P PPLA3 ES 54 GU 19114 52 1154 Europe/Madrid 2012-03-04
-3122832 Espirdo Espirdo Espira Otero,Espirdo 40.99764 -4.07331 P PPLA3 ES 55 SG 40077 422 1069 Europe/Madrid 2012-03-04
-3122837 Espinosa de Villagonzalo Espinosa de Villagonzalo Espinosa de Villagonzalo 42.47949 -4.37218 P PPLA3 ES 55 P 34071 221 827 Europe/Madrid 2012-03-04
-3122838 Espinosa de los Monteros Espinosa de los Monteros 43.07754 -3.55365 P PPL ES 55 BU 09215 1970 746 Europe/Madrid 2008-07-14
-3122841 Espinosa del Camino Espinosa del Camino Espinosa del Camino 42.4059 -3.2802 P PPLA3 ES 55 BU 09123 35 895 Europe/Madrid 2012-03-04
-3122844 Espinosa de Henares Espinosa de Henares Espinosa de Henares 40.90054 -3.06956 P PPLA3 ES 54 GU 19113 668 769 Europe/Madrid 2012-03-04
-3122845 Espinosa de Cervera Espinosa de Cervera Espinosa de Cervera 41.89683 -3.46858 P PPLA3 ES 55 BU 09122 97 1031 Europe/Madrid 2012-03-04
-3122846 Espinosa de Cerrato Espinosa de Cerrato Espinosa de Cerrato 41.96679 -3.95346 P PPLA3 ES 55 P 34070 208 886 Europe/Madrid 2012-03-04
-3122850 Espino de la Orbada Espino de la Orbada Espino de la Orbada 41.10693 -5.42515 P PPLA3 ES 55 SA 37128 311 800 Europe/Madrid 2012-03-04
-3122892 Espejón Espejon Espejon,Espejón 41.83023 -3.25936 P PPLA3 ES 55 SO 42081 200 1034 Europe/Madrid 2012-03-04
-3122895 Espeja de San Marcelino Espeja de San Marcelino Espeja,Espeja de San Marcelino 41.80227 -3.2223 P PPLA3 ES 55 SO 42080 237 1027 Europe/Madrid 2012-03-04
-3122897 Espeja Espeja Espeja 40.56564 -6.71582 P PPLA3 ES 55 SA 37127 272 699 Europe/Madrid 2012-03-04
-3122912 Esparreguera Esparreguera Esparraguera,Esparreguera 41.53333 1.86667 P PPLA3 ES 56 B 08076 21855 158 Europe/Madrid 2012-03-04
-3122917 Espadilla Espadilla Espadella,Espadilla 40.03333 -0.35 P PPLA3 ES 60 CS 12058 58 250 Europe/Madrid 2012-03-04
-3122918 Espadañedo Espadanedo Espadanedo,Espadañedo 42.11618 -6.39419 P PPLA3 ES 55 ZA 49062 185 1031 Europe/Madrid 2012-03-04
-3122920 Espadaña Espadana Espadana,Espadaña 41.06085 -6.28457 P PPLA3 ES 55 SA 37126 47 787 Europe/Madrid 2012-03-04
-3122929 Eslava Eslava 42.56459 -1.45947 P PPLA3 ES 32 NA 31094 154 556 Europe/Madrid 2012-03-04
-3122934 Esguevillas de Esgueva Esguevillas de Esgueva Esguevillas de Esgueva 41.75018 -4.38062 P PPLA3 ES 55 VA 47061 342 783 Europe/Madrid 2012-03-04
-3122936 Esgos Esgos 42.32549 -7.69691 P PPL ES 58 OR 32031 1294 581 Europe/Madrid 2007-02-17
-3122946 Escurial de la Sierra Escurial de la Sierra Escurial,Escurial de la Sierra 40.6173 -5.9552 P PPLA3 ES 55 SA 37125 294 960 Europe/Madrid 2012-03-04
-3122959 Escucha Escucha Escucha 40.79467 -0.81012 P PPLA3 ES 52 TE 44099 1097 1073 Europe/Madrid 2012-03-04
-3122969 Escorihuela Escorihuela Escorihuela 40.544 -0.97078 P PPLA3 ES 52 TE 44097 200 1137 Europe/Madrid 2012-03-04
-3122970 Eskoriatza Eskoriatza Ehskoriasa,Escoriaza,Eskoriatza,Эскориаса 43.01829 -2.52598 P PPLA3 ES 59 SS 20034 4000 284 Europe/Madrid 2012-03-04
-3122974 Escopete Escopete Escopete 40.41324 -3.0046 P PPLA3 ES 54 GU 19112 74 891 Europe/Madrid 2012-03-04
-3122977 Escobosa de Almazán Escobosa de Almazan Escobosa,Escobosa de Almazan,Escobosa de Almazán 41.48626 -2.3714 P PPLA3 ES 55 SO 42079 36 1086 Europe/Madrid 2012-03-04
-3122985 Escobar de Polendos Escobar de Polendos Escobar,Escobar de Polendos 41.09079 -4.13117 P PPLA3 ES 55 SG 40075 245 906 Europe/Madrid 2012-03-04
-3122986 Escobar de Campos Escobar de Campos Escobar 42.31337 -4.96573 P PPLA3 ES 55 LE 24069 70 818 Europe/Madrid 2012-03-04
-3122995 Escatrón Escatron Escatron,Escatrón 41.29149 -0.32308 P PPLA3 ES 52 Z 50101 1145 158 Europe/Madrid 2012-03-04
-3123001 Escariche Escariche Escariche 40.40553 -3.0531 P PPLA3 ES 54 GU 19111 222 826 Europe/Madrid 2012-03-04
-3123006 Escarabajosa de Cabezas Escarabajosa de Cabezas Escarabajosa de Cabezas 41.1047 -4.19411 P PPLA3 ES 55 SG 40074 357 883 Europe/Madrid 2012-03-04
-3123017 Escamilla Escamilla Escamilla 40.54979 -2.56292 P PPLA3 ES 54 GU 19110 104 1034 Europe/Madrid 2012-03-04
-3123021 Escalona del Prado Escalona del Prado Escalona,Escalona del Prado 41.16682 -4.12272 P PPLA3 ES 55 SG 40073 628 894 Europe/Madrid 2012-03-04
-3123024 Escalona Escalona Escalona,Escalona del Alberche 40.1669 -4.40484 P PPLA3 ES 54 TO 45061 2700 464 Europe/Madrid 2012-03-04
-3123034 Escalante Escalante Escalante 43.43678 -3.51347 P PPLA3 ES 39 S 39029 763 7 Europe/Madrid 2012-03-04
-3123063 Ermua Ermua 43.18333 -2.5 P PPLA3 ES 59 BI 48034 16252 184 Europe/Madrid 2012-03-04
-3123068 Erla Erla Erla 42.11732 -0.95019 P PPLA3 ES 52 Z 50100 432 427 Europe/Madrid 2012-03-04
-3123100 Eratsun Eratsun Erasun,Eratsun 43.08333 -1.8 P PPLA3 ES 32 NA 31090 0 519 Europe/Madrid 2012-03-04
-3123104 Erandio Erandio Ehrandio,Эрандио 43.30788 -2.94502 P PPLA3 ES 59 BI 48902 24262 4 Europe/Madrid 2012-03-04
-3123106 Épila Epila Epila,Épila 41.60046 -1.28007 P PPLA3 ES 52 Z 50099 4114 331 Europe/Madrid 2012-03-04
-3123113 Entrimo Entrimo Entrimo,Santa Maria la Real,Santa María la Real 41.93297 -8.11725 P PPLA3 ES 58 OR 32030 1351 502 Europe/Madrid 2012-03-04
-3123124 Entrena Entrena Ehntrena,Entrena,Энтрена 42.38782 -2.53066 P PPLA3 ES 27 LO 26059 1248 554 Europe/Madrid 2012-03-04
-3123131 Entrambasaguas Entrambasaguas Entrambasaguas 43.37846 -3.68072 P PPLA3 ES 39 S 39028 0 45 Europe/Madrid 2012-03-04
-3123136 Entrala Entrala Entrala 41.43006 -5.75556 P PPLA3 ES 55 ZA 49061 159 704 Europe/Madrid 2012-03-04
-3123156 Enériz Eneriz 42.67095 -1.72794 P PPLA3 ES 32 NA 31089 219 427 Europe/Madrid 2012-03-04
-3123160 Endrinal Endrinal Endrinal 40.59109 -5.80411 P PPLA3 ES 55 SA 37124 291 928 Europe/Madrid 2012-03-04
-3123168 Enciso Enciso Enciso 42.14946 -2.26953 P PPLA3 ES 27 LO 26058 150 800 Europe/Madrid 2012-03-04
-3123169 Encío Encio Encio,Encío 42.67115 -3.0868 P PPLA3 ES 55 BU 09120 46 632 Europe/Madrid 2012-03-04
-3123170 Encinillas Encinillas Encinilla,Encinillas 41.01809 -4.15784 P PPLA3 ES 55 SG 40072 88 947 Europe/Madrid 2012-03-04
-3123173 Encinedo Encinedo Encinedo 42.27049 -6.59368 P PPLA3 ES 55 LE 24067 949 976 Europe/Madrid 2012-03-04
-3123174 Encinasola de los Comendadores Encinasola de los Comendadores Encinasola de los Comendadores 41.03089 -6.53261 P PPLA3 ES 55 SA 37123 253 711 Europe/Madrid 2012-03-04
-3123175 Encinas de Esgueva Encinas de Esgueva Encinas de Esgueva 41.75652 -4.10357 P PPLA3 ES 55 VA 47060 342 816 Europe/Madrid 2012-03-04
-3123176 Encinas de Arriba Encinas de Arriba Encinas de Arriba 40.7712 -5.55661 P PPLA3 ES 55 SA 37122 275 816 Europe/Madrid 2012-03-04
-3123177 Encinas de Abajo Encinas de Abajo Encinas de Abajo 40.93493 -5.47037 P PPLA3 ES 55 SA 37121 648 794 Europe/Madrid 2012-03-04
-3123179 Encinas Encinas Encinas 41.37511 -3.66762 P PPLA3 ES 55 SG 40071 69 1009 Europe/Madrid 2012-03-04
-3123181 Encina de San Silvestre Encina de San Silvestre Encina de San Silvestre 41.01442 -6.09268 P PPLA3 ES 55 SA 37120 122 803 Europe/Madrid 2012-03-04
-3123182 Encinacorba Encinacorba Encinacorba 41.28516 -1.27516 P PPLA3 ES 52 Z 50098 283 754 Europe/Madrid 2012-03-04
-3123199 Embid de Ariza Embid de Ariza Embid de Ariza 41.3783 -1.97373 P PPLA3 ES 52 Z 50096 75 768 Europe/Madrid 2012-03-04
-3123200 Embid Embid Embid 40.97256 -1.71206 P PPLA3 ES 54 GU 19109 59 1084 Europe/Madrid 2012-03-04
-3123206 El Viso de San Juan El Viso de San Juan El Viso de San Juan 40.14154 -3.91817 P PPL ES 54 TO 45199 1992 654 Europe/Madrid 2012-01-19
-3123219 El Vellón El Vellon El Vellon,El Vellón 40.76495 -3.57969 P PPL ES 29 M 28168 1293 873 Europe/Madrid 2012-01-19
-3123246 El Tiemblo El Tiemblo 40.41533 -4.50156 P PPL ES 55 AV 05241 3837 692 Europe/Madrid 2008-10-28
-3123303 El Real de San Vicente El Real de San Vicente El Real de San Vicente,Real de San Vicente 40.13561 -4.69095 P PPL ES 54 TO 45144 1064 751 Europe/Madrid 2012-01-19
-3123329 El Prat de Llobregat El Prat de Llobregat Ehl' Prat,El Prat de Llobregat,Prat de Llobregat,Prat del Llobregat,el Prat,el Prat de Llobregat,Эль Прат 41.32784 2.09472 P PPL ES 56 B 08169 63418 9 Europe/Madrid 2012-01-19
-3123398 Elorz Elorz 42.73258 -1.56152 P PPL ES 32 NA 31088 4330 486 Europe/Madrid 2008-07-15
-3123399 Elorrio Elorrio Elorrio 43.12924 -2.54056 P PPLA3 ES 59 BI 48032 7041 192 Europe/Madrid 2012-03-04
-3123421 El Molar El Molar El Molar 40.73216 -3.57969 P PPL ES 29 M 28045 5051 839 Europe/Madrid 2012-01-19
-3123445 Éller Eller 42.41636 1.79223 P PPL ES 56 L 25051 1535 1440 Europe/Madrid 2010-04-04
-3123449 Eljas Eljas Elijas,Eljas 40.21648 -6.84616 P PPLA3 ES 57 CC 10072 1125 606 Europe/Madrid 2012-03-04
-3123455 El Hoyo de Pinares El Hoyo de Pinares El Hoyo de Pinares,Hoyo de Pinares 40.50084 -4.42357 P PPL ES 55 AV 05102 2429 851 Europe/Madrid 2012-01-19
-3123462 Gurb Gurb Gurb 41.95419 2.23537 P PPL ES 56 B 08100 08129 2196 512 Europe/Madrid 2010-11-07
-3123468 Elgeta Elgeta Elgeta,Elgueta 43.13703 -2.48862 P PPLA3 ES 59 SS 20033 0 464 Europe/Madrid 2012-03-04
-3123473 Empuriabrava Empuriabrava Ehmpuriabrava,Empuriabrava,Эмпуриабрава 42.24691 3.12059 P PPL ES ES 56 GI 17047 8000 2 Europe/Madrid 2010-04-04
-3123476 Elgorriaga Elgorriaga Elgorriaga 43.13858 -1.68658 P PPLA3 ES 32 NA 31087 229 139 Europe/Madrid 2012-03-04
-3123478 Elgoibar Elgoibar Elgoibar,Elgóibar 43.21601 -2.41334 P PPLA3 ES 59 SS 20032 11220 48 Europe/Madrid 2012-03-04
-3123488 El Franco El Franco El Franco 43.55522 -6.8662 P PPL ES 34 O 33023 4071 54 Europe/Madrid 2012-01-19
-3123491 Figaró Figaro El Figaro,El Figaró,Figaro,Figaró,el Figuero,el Figueró 41.72122 2.27297 P PPL ES ES 56 B 08134 1020 458 326 Europe/Madrid 2010-04-04
-3123493 Ferrol Ferrol El Ferrol,El Ferrol del Caudillo,Ferrol,Ferrol del Caudillo 43.48321 -8.23689 P PPLA3 ES 58 C 15036 74273 36 Europe/Madrid 2012-03-04
-3123504 El Escorial El Escorial Escorial 40.58254 -4.12846 P PPL ES 29 M 28054 14979 917 Europe/Madrid 2010-04-22
-3123515 Elduain Elduayen Elduain,Elduayen 43.14017 -2.00102 P PPLA3 ES 59 SS 20031 0 243 Europe/Madrid 2012-03-04
-3123531 El Corrillo El Corrillo El Corrillo,Zalla 43.23333 -3.13333 P PPL ES 59 BI 48086 7943 500 Europe/Madrid 2012-01-19
-3123547 Elciego Elciego Elciego,Eltziego 42.51569 -2.61897 P PPLA3 ES 59 VI 01022 914 463 Europe/Madrid 2012-03-04
-3123574 El Castellar El Castellar El Castellar 40.36531 -0.81734 P PPLA3 ES 52 TE 44070 0 1244 Europe/Madrid 2012-03-04
-3123579 El Casar de Escalona El Casar de Escalona El Casar de Escalona 40.0464 -4.52507 P PPL ES 54 TO 45040 1367 466 Europe/Madrid 2012-01-19
-3123622 El Burgo de Osma El Burgo de Osma Burgo de Osma,El Burgo de Osma 41.58619 -3.06522 P PPL ES 55 SO 42043 5054 912 Europe/Madrid 2012-01-19
-3123623 El Burgo de Ebro El Burgo de Ebro El Burgo de Ebro,El Burgos de Ebro 41.57157 -0.74128 P PPL ES 52 Z 50062 1887 186 Europe/Madrid 2012-01-19
-3123658 O Barco de Valdeorras O Barco de Valdeorras O Barco,Valdeorras 42.41642 -6.99005 P PPL ES 58 OR 32009 14213 323 Europe/Madrid 2010-04-22
-3123659 El Barco de Ávila El Barco de Avila Barco de Avila,El Barco de Avila,El Barco de Avile,El Barco de Ávila,El Barco de Ávile 40.3571 -5.52365 P PPL ES 55 AV 05021 2415 1019 Europe/Madrid 2012-01-19
-3123667 El Astillero El Astillero Astillero,El Astillero 43.40094 -3.82051 P PPL ES 39 S 39008 17360 33 Europe/Madrid 2012-01-19
-3123677 Elantxobe Elantxobe Elanchove,Elantxobe 43.40243 -2.63912 P PPLA3 ES 59 BI 48031 0 77 Europe/Madrid 2012-03-04
-3123682 El Álamo El Alamo El Alamo,El Álamo 40.23066 -3.99447 P PPL ES 29 M 28004 6754 608 Europe/Madrid 2012-01-19
-3123686 Ejulve Ejulve Ejulve 40.77633 -0.55344 P PPLA3 ES 52 TE 44096 229 1121 Europe/Madrid 2012-03-04
-3123687 Ejeme Ejeme Ejeme 40.76685 -5.53828 P PPLA3 ES 55 SA 37118 159 816 Europe/Madrid 2012-03-04
-3123688 Ejea de los Caballeros Ejea de los Caballeros Egea de los Caballeros,Ejea,Ejea de los Caballeros,Exea 42.12632 -1.13716 P PPLA3 ES 52 Z 50095 17331 327 Europe/Madrid 2012-03-04
-3123709 Eibar Eibar Ehibar,Ehjbar,Eibar,Eybar,Heivar,Heybar,Villanueva de San Andres,Villanueva de San Andres de Heybar,Villanueva de San Andrés,Villanueva de San Andrés de Heybar,Éibar,Эйбар 43.18493 -2.47158 P PPLA3 ES 59 SS 20030 27419 133 Europe/Madrid 2012-03-04
-3123738 Echarri-Aranaz Echarri-Aranaz Echarri-Aranaz,Etxarri-Aranatz 42.90791 -2.06474 P PPL ES 32 NA 31084 2417 509 512 Europe/Madrid 2006-03-13
-3123740 Echarri Echarri Echarri 42.78017 -1.82525 P PPLA3 ES 32 NA 31083 0 394 Europe/Madrid 2012-03-04
-3123745 Etxalar Etxalar Echalar,Etxalar 43.23376 -1.63671 P PPLA3 ES 32 NA 31082 0 100 Europe/Madrid 2012-03-04
-3123759 Ea Ea Ea 43.37985 -2.58556 P PPLA3 ES 59 BI 48028 1756 15 Europe/Madrid 2012-03-04
-3123765 Duruelo de la Sierra Duruelo de la Sierra Duruelo,Duruelo de la Sierra 41.95448 -2.93086 P PPLA3 ES 55 SO 42078 1384 1192 Europe/Madrid 2012-03-04
-3123766 Duruelo Duruelo Duruelo 41.23622 -3.64914 P PPLA3 ES 55 SG 40070 140 1011 Europe/Madrid 2012-03-04
-3123770 Durón Duron Duron,Durón 40.6253 -2.72662 P PPLA3 ES 54 GU 19108 184 750 Europe/Madrid 2012-03-04
-3123773 Durango Durango Durango,Tavira,Дуранго 43.17124 -2.6338 P PPLA3 ES 59 BI 48027 28229 116 Europe/Madrid 2012-03-04
-3123779 Dumbría Dumbria Dumbria,Dumbría,Santa Eulalia 43.00836 -9.11328 P PPLA3 ES 58 C 15034 4062 200 Europe/Madrid 2012-03-04
-3123786 Dueñas Duenas 41.87717 -4.54714 P PPLA3 ES 55 P 34069 3066 727 Europe/Madrid 2012-03-04
-3123793 Driebes Driebes 40.24498 -3.04165 P PPLA3 ES 54 GU 19107 360 729 Europe/Madrid 2012-03-04
-3123797 Dozón Dozon Dozon,Dozón 42.58333 -8.01667 P PPLA3 ES 58 PO 36016 2041 722 Europe/Madrid 2012-03-04
-3123801 Dosrius Dosrius Dosrius,Dosríus 41.58333 2.41667 P PPL ES 56 B 08009 4016 323 Europe/Madrid 2010-04-04
-3123808 Duesaigües Duesaiguees Dosaiguas,Dosaiqua,Duesaiguees,Duesaigües 41.15 0.93333 P PPLA3 ES 56 T 43053 0 335 Europe/Madrid 2012-03-04
-3123828 Donvidas Donvidas Donvidas 41.08954 -4.80634 P PPLA3 ES 55 AV 05070 69 866 Europe/Madrid 2012-03-04
-3123832 Donjimeno Donjimeno Donjimeno 40.95978 -4.84627 P PPLA3 ES 55 AV 05069 128 885 Europe/Madrid 2012-03-04
-3123834 Doñinos de Salamanca Doninos de Salamanca Doninos de Salamanca,Doñinos de Salamanca 40.95978 -5.74349 P PPLA3 ES 55 SA 37117 835 830 Europe/Madrid 2012-03-04
-3123835 Doñinos de Ledesma Doninos de Ledesma Doninos de Ledesma,Doñinos de Ledesma 41.01251 -6.03412 P PPLA3 ES 55 SA 37116 98 847 Europe/Madrid 2012-03-04
-3123840 Donhierro Donhierro Donhierro 41.11642 -4.6967 P PPLA3 ES 55 SG 40069 93 805 Europe/Madrid 2012-03-04
-3123856 Domingo García Domingo Garcia Domingo Garcia,Domingo García 41.11528 -4.37927 P PPLA3 ES 55 SG 40068 48 903 Europe/Madrid 2012-03-04
-3123885 Dios le Guarde Dios le Guarde Dios le Guarde 40.64283 -6.31511 P PPLA3 ES 55 SA 37115 174 829 Europe/Madrid 2012-03-04
-3123894 Dicastillo Dicastillo Dicastillo 42.59648 -2.02666 P PPLA3 ES 32 NA 31080 701 532 Europe/Madrid 2012-03-04
-3123897 Deza Deza Deza 41.46373 -2.02046 P PPLA3 ES 55 SO 42076 343 889 Europe/Madrid 2012-03-04
-3123910 Deba Deba Deba,Deva 43.29571 -2.35213 P PPLA3 ES 59 SS 20029 5253 9 Europe/Madrid 2012-03-04
-3123913 Destriana Destriana Destriana 42.32729 -6.09573 P PPLA3 ES 55 LE 24066 712 889 Europe/Madrid 2012-03-04
-3123916 Desojo Desojo Desojo 42.5879 -2.27438 P PPLA3 ES 32 NA 31079 123 523 Europe/Madrid 2012-03-04
-3123919 Descargamaría Descargamaria Descargamaria,Descargamaría 40.30446 -6.48666 P PPLA3 ES 57 CC 10071 285 506 Europe/Madrid 2012-03-04
-3123921 Derio Derio 43.30544 -2.88116 P PPLA3 ES 59 BI 48901 4905 58 Europe/Madrid 2012-03-04
-3123941 Dehesa de Romanos Dehesa de Romanos Dehesa de Romanos 42.63876 -4.43518 P PPLA3 ES 55 P 34068 42 947 Europe/Madrid 2012-03-04
-3123942 Dehesa de Montejo Dehesa de Montejo 42.81939 -4.51019 P PPLA3 ES 55 P 34067 188 1095 Europe/Madrid 2012-03-04
-3123960 Degaña Degana Degana,Degaña 42.93969 -6.56935 P PPLA3 ES 34 O 33022 0 848 Europe/Madrid 2012-03-04
-3123966 Das Das 42.36143 1.87051 P PPLA3 ES 56 GI 17061 17006 0 1222 Europe/Madrid 2012-03-04
-3123969 Daroca Daroca Daroca 41.11475 -1.41492 P PPLA3 ES 52 Z 50094 2185 779 Europe/Madrid 2012-03-04
-3123971 Darnius Darnius Darnius 42.36667 2.83333 P PPLA3 ES 56 GI 17060 514 196 Europe/Madrid 2012-03-04
-3123981 Daganzo de Arriba Daganzo de Arriba Daganzo de Arriba 40.54293 -3.45457 P PPLA3 ES 29 M 28053 7242 662 Europe/Madrid 2012-03-04
-3124001 Curtis Curtis Curtis,Santa Eulalia 43.11667 -8.05 P PPLA3 ES ES 58 C 15032 0 537 Europe/Madrid 2012-03-04
-3124002 Curtis Curtis Curtis,San Vicente 43.08333 -8.06667 P PPL ES 58 C 15090 4408 475 Europe/Madrid 2012-01-19
-3124014 Curiel de Duero Curiel de Duero Curiel,Curiel de Duero 41.64327 -4.1011 P PPLA3 ES 55 VA 47059 93 810 Europe/Madrid 2012-03-04
-3124021 Cuntis Cuntis Bano,Baño 42.63396 -8.56256 P PPLA3 ES 58 PO 36015 5398 164 Europe/Madrid 2012-03-04
-3124026 Cunit Cunit 41.19829 1.63645 P PPLA3 ES 56 T 43051 12279 12 Europe/Madrid 2012-03-04
-3124041 Culleredo Culleredo Culleredo,Kul'eredo,San Esteban,Кульередо 43.28788 -8.38858 P PPLA3 ES 58 C 15031 28227 80 Europe/Madrid 2012-03-04
-3124042 Culla Culla Culla 40.3365 -0.16569 P PPLA3 ES 60 CS 12051 677 1065 Europe/Madrid 2012-03-04
-3124064 Cuevas Labradas Cuevas Labradas Cuevas Labradas 40.4535 -1.05008 P PPLA3 ES 52 TE 44094 170 969 Europe/Madrid 2012-03-04
-3124065 Cuevas de Vinromá Cuevas de Vinroma Cuevas de Vinroma,Cuevas de Vinromá,Les Coves de Vinroma 40.30976 0.12084 P PPL ES 60 CS 12050 1889 189 Europe/Madrid 2012-01-19
-3124068 Cuevas de San Clemente Cuevas de San Clemente Cuevas de San Clemente 42.13009 -3.5684 P PPLA3 ES 55 BU 09119 56 1033 Europe/Madrid 2012-03-04
-3124069 Cuevas de Provanco Cuevas de Provanco Cuevas de Provanco 41.54208 -3.96203 P PPLA3 ES 55 SG 40905 174 889 Europe/Madrid 2012-03-04
-3124071 Cuevas del Valle Cuevas del Valle Cuevas del Valle 40.29418 -5.00938 P PPLA3 ES 55 AV 05066 570 854 Europe/Madrid 2012-03-04
-3124075 Cuevas de Almudén Cuevas de Almuden Cuevas de Almuden,Cuevas de Almudén 40.71342 -0.82958 P PPLA3 ES 52 TE 44093 123 1285 Europe/Madrid 2012-03-04
-3124085 Cueva del Hierro Cueva del Hierro Cueva del Hierro 40.58258 -2.03612 P PPLA3 ES 54 CU 16079 50 1335 Europe/Madrid 2012-03-04
-3124087 Cueva de Ágreda Cueva de Agreda Cueva de Agreda,Cueva de Ágreda 41.7631 -1.88818 P PPLA3 ES 55 SO 42073 102 1298 Europe/Madrid 2012-03-04
-3124128 Cuenca de Campos Cuenca de Campos Cuenca,Cuenca de Campos 42.05927 -5.05538 P PPLA3 ES 55 VA 47058 256 774 Europe/Madrid 2012-03-04
-3124132 Cuenca Cuenca Cuenca,Kuehnka,Куэнка 40.06667 -2.13333 P PPLA2 ES 54 CU 16078 55866 941 Europe/Madrid 2010-08-22
-3124136 Cuéllar Cuellar Cuellar,Cuéllar 41.40155 -4.31474 P PPLA3 ES 55 SG 40063 9588 872 Europe/Madrid 2012-03-04
-3124139 Cuelgamures Cuelgamures Cuelgamures 41.30738 -5.65769 P PPLA3 ES 55 ZA 49059 132 802 Europe/Madrid 2012-03-04
-3124142 Cudillero Cudillero Cudillero,Cuideiru 43.56217 -6.14589 P PPLA3 ES 34 O 33021 5986 27 Europe/Madrid 2012-03-04
-3124150 Cucalón Cucalon Cucalon,Cucalón 41.08608 -1.21475 P PPLA3 ES 52 TE 44090 88 1035 Europe/Madrid 2012-03-04
-3124152 Cubo de la Solana Cubo de la Solana Cubo de la Solana 41.60224 -2.42179 P PPLA3 ES 55 SO 42071 225 993 Europe/Madrid 2012-03-04
-3124155 Cubo de Bureba Cubo de Bureba Cubo,Cubo de Bureba 42.64011 -3.20626 P PPLA3 ES 55 BU 09115 119 685 Europe/Madrid 2012-03-04
-3124156 Cubo de Benavente Cubo de Benavente Cubo de Benavente 42.1249 -6.16342 P PPLA3 ES 55 ZA 49057 153 813 Europe/Madrid 2012-03-04
-3124161 Cubla Cubla Cubla 40.20978 -1.07917 P PPLA3 ES 52 TE 44089 49 1094 Europe/Madrid 2012-03-04
-3124162 Cubillos del Sil Cubillos del Sil Cubillos del Sil 42.62519 -6.5636 P PPLA3 ES 55 LE 24064 1431 586 Europe/Madrid 2012-03-04
-3124166 Cubillos Cubillos Cubillos 41.57436 -5.7392 P PPLA3 ES 55 ZA 49056 392 670 Europe/Madrid 2012-03-04
-3124169 Cubillo del Campo Cubillo del Campo Cubillo del Campo 42.16854 -3.61025 P PPLA3 ES 55 BU 09114 74 993 Europe/Madrid 2012-03-04
-3124178 Cubillo Cubillo Cubillo 41.12138 -3.90878 P PPLA3 ES 55 SG 40062 59 1061 Europe/Madrid 2012-03-04
-3124184 Cubillas de Santa Marta Cubillas de Santa Marta Cubillas de Santa Marta 41.83358 -4.61463 P PPLA3 ES 55 VA 47057 292 768 Europe/Madrid 2012-03-04
-3124185 Cubillas de Rueda Cubillas de Rueda Cubillas de Rueda 42.65626 -5.17528 P PPLA3 ES 55 LE 24063 581 885 Europe/Madrid 2012-03-04
-3124187 Cubillas de los Oteros Cubillas de los Oteros Cubillas de los Oteros 42.37199 -5.50877 P PPLA3 ES 55 LE 24062 185 776 Europe/Madrid 2012-03-04
-3124188 Cubillas de Cerrato Cubillas de Cerrato Cubillas de Cerrato 41.79844 -4.4672 P PPLA3 ES 55 P 34066 76 741 Europe/Madrid 2012-03-04
-3124194 Cubilla Cubilla Cubilla 41.74905 -2.93717 P PPLA3 ES 55 SO 42070 59 1099 Europe/Madrid 2012-03-04
-3124200 Cubells Cubells Cubells 41.85062 0.959 P PPLA3 ES 56 L 25079 389 493 Europe/Madrid 2012-03-04
-3124201 Cubelles Cubelles Cubelles 41.20772 1.67267 P PPLA3 ES 56 B 08074 13711 44 13 Europe/Madrid 2012-03-04
-3124205 Cubel Cubel Cubel 41.09604 -1.6373 P PPLA3 ES 52 Z 50090 191 1113 Europe/Madrid 2012-03-04
-3124209 Cubas Cubas Cubas 40.189 -3.83526 P PPL ES 29 M 28050 2868 645 Europe/Madrid 2012-02-02
-3124215 Cuarte de Huerva Cuarte de Huerva Cuarte de Huerva 41.59466 -0.93268 P PPLA3 ES 52 Z 50089 2913 262 Europe/Madrid 2012-03-04
-3124219 Cualedro Cualedro 41.98897 -7.59464 P PPLA3 ES 58 OR 32028 2254 834 Europe/Madrid 2012-03-04
-3124221 Cuadros Cuadros Cuadros 42.71163 -5.63828 P PPLA3 ES 55 LE 24061 1810 901 Europe/Madrid 2012-03-04
-3124248 Cruïlles Cruilles 41.95 3.01667 P PPL ES 56 GI 17901 1234 40 Europe/Madrid 2010-04-04
-3124261 Crivillén Crivillen Crivillen,Crivillén 40.88325 -0.57666 P PPLA3 ES 52 TE 44087 110 782 Europe/Madrid 2012-03-04
-3124264 Cristóbal Cristobal 40.46923 -5.88967 P PPLA3 ES 55 SA 37112 210 872 Europe/Madrid 2012-03-04
-3124279 Crespos Crespos Crespos 40.87128 -4.97094 P PPLA3 ES 55 AV 05065 632 927 Europe/Madrid 2012-03-04
-3124280 Crespià Crespia Crespia,Crespià,Crespiá 42.18333 2.8 P PPLA3 ES 56 GI 17058 224 162 Europe/Madrid 2012-03-04
-3124283 Crémenes Cremenes Cremenes,Crémenes 42.90357 -5.14374 P PPLA3 ES 55 LE 24060 867 995 Europe/Madrid 2012-03-04
-3124285 Creixell Creixell Creixell 41.16618 1.44032 P PPLA3 ES 56 T 43050 2510 35 Europe/Madrid 2012-03-04
-3124290 Cozuelos de Fuentidueña Cozuelos de Fuentiduena Cozuelos,Cozuelos de Fuentiduena,Cozuelos de Fuentidueña 41.39086 -4.09564 P PPLA3 ES 55 SG 40902 161 879 Europe/Madrid 2012-03-04
-3124297 Covelo Covelo 42.23333 -8.35 P PPLA3 ES 58 PO 36013 3710 553 Europe/Madrid 2011-07-31
-3124312 Covarrubias Covarrubias Covarrubias 42.05926 -3.51956 P PPLA3 ES 55 BU 09113 621 892 Europe/Madrid 2012-03-04
-3124316 Covaleda Covaleda Covaleda,Dovaleda 41.93493 -2.88325 P PPLA3 ES 55 SO 42069 2030 1206 Europe/Madrid 2012-03-04
-3124391 Cosuenda Cosuenda Cosuenda 41.36558 -1.29867 P PPLA3 ES 52 Z 50088 387 623 Europe/Madrid 2012-03-04
-3124392 Costur Costur Costur 40.11971 -0.17385 P PPLA3 ES 60 CS 12049 474 472 Europe/Madrid 2012-03-04
-3124408 Coslada Coslada Coslada,Koslada,Кослада 40.42378 -3.56129 P PPLA3 ES 29 M 28049 90280 619 Europe/Madrid 2012-03-04
-3124410 Coscurita Coscurita Coscurita 41.43483 -2.47571 P PPLA3 ES 55 SO 42068 127 965 Europe/Madrid 2012-03-04
-3124418 Cosa Cosa Cosa 40.83392 -1.1365 P PPLA3 ES 52 TE 44085 98 1193 Europe/Madrid 2012-03-04
-3124432 Corvera Corvera 43.26697 -3.9471 P PPL ES 39 S 39056 15997 95 Europe/Madrid 2011-02-08
-3124439 Coruña del Conde Coruna del Conde Cluna,Clunia,Cluña,Coruna,Coruna del Conde,Coruña,Coruña del Conde,Cruna,Crunna,Crunnia,Cruña,Curuna,Curuña 41.76566 -3.39059 P PPLA3 ES 55 BU 09112 158 900 Europe/Madrid 2012-03-04
-3124441 Corullón Corullon Corullon,Corullón 42.57896 -6.81925 P PPLA3 ES 55 LE 24059 1130 523 Europe/Madrid 2012-03-04
-3124462 Kortezubi Kortezubi Cortezubi,Cortézubi,Kortezubi 43.33333 -2.65 P PPLA3 ES 59 BI 48907 0 11 Europe/Madrid 2012-03-04
-3124465 Cortes de Arenoso Cortes de Arenoso Cortes d'Arenos,Cortes de Arenoso 40.18812 -0.54195 P PPLA3 ES 60 CS 12048 394 1006 Europe/Madrid 2012-03-04
-3124466 Cortes de Aragón Cortes de Aragon Cortes de Aragon,Cortes de Aragón 40.97366 -0.83575 P PPLA3 ES 52 TE 44084 107 927 Europe/Madrid 2012-03-04
-3124473 Cortes Cortes Cortes 41.92269 -1.42045 P PPLA3 ES 32 NA 31078 0 258 Europe/Madrid 2012-03-04
-3124480 Cortegada Cortegada Cortegada 42.20983 -8.1682 P PPLA3 ES 58 OR 32027 0 141 Europe/Madrid 2012-03-04
-3124487 Corçà Corca Corca,Corsa,Corsá,Corçà 41.98333 3.01667 P PPLA3 ES 56 GI 17057 0 40 Europe/Madrid 2012-03-04
-3124515 Corrales de Duero Corrales de Duero Corrales de Duero 41.67205 -4.04817 P PPLA3 ES 55 VA 47056 116 813 Europe/Madrid 2012-03-04
-3124519 Corrales Corrales Corrales 41.358 -5.72479 P PPLA3 ES 55 ZA 49054 1029 765 Europe/Madrid 2012-03-04
-3124525 Corral de Ayllón Corral de Ayllon Corral de Ayllon,Corral de Ayllón 41.3908 -3.45856 P PPLA3 ES 55 SG 40061 96 1028 Europe/Madrid 2012-03-04
-3124531 Corporales Corporales Corporales 42.43208 -2.99535 P PPLA3 ES 27 LO 26055 48 735 Europe/Madrid 2012-03-04
-3124533 Corpa Corpa Corpa 40.42327 -3.26003 P PPLA3 ES 29 M 28048 547 814 Europe/Madrid 2012-03-04
-3124568 Cornellà del Terri Cornella del Terri Cornella de Terri 42.08333 2.81667 P PPLA3 ES 56 GI 17056 0 102 Europe/Madrid 2011-11-17
-3124569 Cornellà de Llobregat Cornella de Llobregat Cornella de Llobregat,Cornellà de Llobregat 41.35 2.08333 P PPL ES 56 B 08019 86519 12 Europe/Madrid 2010-04-22
-3124582 Cornago Cornago Cornago 42.06444 -2.09486 P PPLA3 ES 27 LO 26054 535 708 Europe/Madrid 2012-03-04
-3124589 Coristanco Coristanco Coristanco,San Pelayo 43.2 -8.75 P PPLA3 ES 58 C 15029 7674 134 Europe/Madrid 2012-03-04
-3124594 Corgo Corgo Corgo 42.94434 -7.4314 P PPL ES 58 LU 27014 4312 441 Europe/Madrid 2012-01-19
-3124595 Coreses Coreses Coreses 41.54794 -5.62252 P PPLA3 ES 55 ZA 49053 1145 650 Europe/Madrid 2012-03-04
-3124599 Corera Corera Corera 42.34344 -2.22023 P PPLA3 ES 27 LO 26053 260 527 Europe/Madrid 2012-03-04
-3124600 Corella Corella Corella,Corello 42.11507 -1.78563 P PPLA3 ES 32 NA 31077 7576 380 Europe/Madrid 2012-03-04
-3124602 Corduente Corduente Corduente 40.84304 -1.97841 P PPLA3 ES 54 GU 19099 421 1063 Europe/Madrid 2012-03-04
-3124605 Cordovín Cordovin Cordovin,Cordovín 42.38557 -2.815 P PPLA3 ES 27 LO 26052 217 596 Europe/Madrid 2012-03-04
-3124606 Cordovilla la Real Cordovilla la Real Cordovilla la Real 42.07961 -4.25988 P PPLA3 ES 55 P 34063 115 745 Europe/Madrid 2012-03-04
-3124608 Cordovilla Cordovilla Cordovilla 40.95095 -5.40725 P PPLA3 ES 55 SA 37110 133 825 Europe/Madrid 2012-03-04
-3124614 Corcubión Corcubion Corcubion,Corcubión 42.94414 -9.1926 P PPLA3 ES 58 C 15028 1941 14 Europe/Madrid 2012-03-04
-3124617 Corcos Corcos 41.80946 -4.6927 P PPLA3 ES 55 VA 47055 264 792 Europe/Madrid 2012-03-04
-3124624 Corbins Corbins 41.68333 0.7 P PPL ES 56 L 25120 1164 176 Europe/Madrid 2010-04-04
-3124625 Corbillos de los Oteros Corbillos de los Oteros Corbillos de los Oteros 42.40769 -5.45964 P PPLA3 ES 55 LE 24058 253 791 Europe/Madrid 2012-03-04
-3124628 Corbera de Llobregat Corbera de Llobregat Corbera,Corbera Baja,Corbera de Llobregat,Corbera del Llobregat 41.41702 1.9197 P PPLA3 ES 56 B 08072 13843 327 Europe/Madrid 2012-03-04
-3124635 Corbalán Corbalan Corbalan,Corbalán 40.40308 -0.98525 P PPLA3 ES 52 TE 44082 86 1267 Europe/Madrid 2012-03-04
-3124644 Copernal Copernal Copernal 40.86463 -3.05396 P PPLA3 ES 54 GU 19098 21 859 Europe/Madrid 2012-03-04
-3124645 Coomonte Coomonte Coomonte 42.11546 -5.81316 P PPLA3 ES 55 ZA 49052 294 735 Europe/Madrid 2012-03-04
-3124649 Contreras Contreras Contreras 42.02004 -3.41084 P PPLA3 ES 55 BU 09110 98 1029 Europe/Madrid 2012-03-04
-3124657 Contamina Contamina Contamina 41.30535 -1.91731 P PPLA3 ES 52 Z 50087 47 667 Europe/Madrid 2012-03-04
-3124659 Constanzana Constanzana Constanzana 40.93821 -4.87515 P PPLA3 ES 55 AV 05064 163 891 Europe/Madrid 2012-03-04
-3124661 Constantí Constanti Constanti,Constantí 41.15392 1.21262 P PPLA3 ES 56 T 43047 5597 86 Europe/Madrid 2012-03-04
-3124672 Congostrina Congostrina Congostrina 41.03719 -2.98569 P PPLA3 ES 54 GU 19097 48 1019 Europe/Madrid 2012-03-04
-3124673 Congosto de Valdavia Congosto de Valdavia Congosto de Valdavia 42.71584 -4.63366 P PPLA3 ES 55 P 34062 231 976 Europe/Madrid 2012-03-04
-3124675 Congosto Congosto Congosto 42.61755 -6.52048 P PPLA3 ES 55 LE 24057 1656 689 Europe/Madrid 2012-03-04
-3124685 Conesa Conesa Conesa 41.51667 1.3 P PPLA3 ES 56 T 43046 0 728 Europe/Madrid 2012-03-04
-3124693 Condemios de Arriba Condemios de Arriba Condemios de Arriba 41.21644 -3.12543 P PPLA3 ES 54 GU 19096 187 1305 Europe/Madrid 2012-03-04
-3124694 Condemios de Abajo Condemios de Abajo Condemios de Abajo 41.21667 -3.1 P PPLA3 ES 54 GU 19095 30 1290 Europe/Madrid 2012-03-04
-3124727 Comillas Comillas Comillos 43.38603 -4.29162 P PPLA3 ES 39 S 39024 2421 25 Europe/Madrid 2012-03-04
-3124736 Combarro Combarro Kombarro,Комбарро 42.43188 -8.70649 P PPL ES 58 PO 36041 1786 12 Europe/Madrid 2009-12-17
-3124749 Colungo Colungo Colungo 42.17125 0.06812 P PPLA3 ES 52 HU 22090 133 621 Europe/Madrid 2012-03-04
-3124751 Colunga Colunga 43.48531 -5.27009 P PPLA3 ES 34 O 33019 3868 17 Europe/Madrid 2012-03-04
-3124760 Colomers Colomers Colomers,Colomes,Colomés 42.08333 2.98333 P PPLA3 ES 56 GI 17055 0 21 Europe/Madrid 2012-03-04
-3124765 Colmenar Viejo Colmenar Viejo 40.65909 -3.76762 P PPLA3 ES 29 M 28045 43700 889 Europe/Madrid 2012-03-04
-3124768 Colmenarejo Colmenarejo 40.56063 -4.01713 P PPLA3 ES 29 M 28044 7173 871 Europe/Madrid 2012-03-04
-3124769 Colmenar de Oreja Colmenar de Oreja Colmenar de Oreja 40.10675 -3.38547 P PPLA3 ES 29 M 28043 6968 763 Europe/Madrid 2012-03-04
-3124770 Colmenar de Montemayor Colmenar de Montemayor Colmenar de Montemayor,Montegrande del Colmenar 40.39957 -5.95618 P PPLA3 ES 55 SA 37109 239 838 Europe/Madrid 2012-03-04
-3124772 Colmenar del Arroyo Colmenar del Arroyo Colmenar del Arroyo 40.41897 -4.19845 P PPLA3 ES 29 M 28042 1174 681 Europe/Madrid 2012-03-04
-3124775 Collsuspina Collsuspina Collsuspina 41.8258 2.17546 P PPLA3 ES 56 B 08070 308 903 Europe/Madrid 2012-03-04
-3124783 Coll de Nargó Coll de Nargo Coll de Nargo,Coll de Nargó 42.17473 1.31694 P PPLA3 ES 56 L 25077 601 582 Europe/Madrid 2012-03-04
-3124784 Colldejou Colldejou Colldejou 41.0997 0.88717 P PPLA3 ES 56 T 43045 196 448 Europe/Madrid 2012-03-04
-3124786 Collbató Collbato Collbato,Collbató 41.57009 1.82712 P PPL ES 56 B 08076 3290 389 Europe/Madrid 2012-01-19
-3124787 Collazos de Boedo Collazos de Boedo Collazos de Boedo 42.62009 -4.48294 P PPLA3 ES 55 P 34061 157 922 Europe/Madrid 2012-03-04
-3124794 Collado-Villalba Collado-Villalba Collado Villalba,Kol'jado-Vil'jal'ba,Кольядо-Вильяльба 40.63506 -4.00486 P PPL ES 29 M 28047 55027 884 Europe/Madrid 2010-04-22
-3124798 Collado Mediano Collado Mediano 40.69326 -4.0228 P PPLA3 ES 29 M 28046 5973 1020 Europe/Madrid 2012-03-04
-3124799 Collado Hermoso Collado Hermoso Collado Hermoso 41.03869 -3.9186 P PPLA3 ES 55 SG 40059 152 1226 Europe/Madrid 2012-03-04
-3124800 Collado del Mirón Collado del Miron Collado del Miron,Collado del Mirón 40.55307 -5.35398 P PPLA3 ES 55 AV 05063 62 1168 Europe/Madrid 2012-03-04
-3124802 Collado de Contreras Collado de Contreras Collado de Contreras 40.88743 -4.9314 P PPLA3 ES 55 AV 05062 249 917 Europe/Madrid 2012-03-04
-3124810 Collado Collado Collado 40.05729 -5.72052 P PPLA3 ES 57 CC 10065 0 453 Europe/Madrid 2012-03-04
-3124821 Colindres Colindres Colindres 43.39667 -3.45361 P PPLA3 ES 39 S 39023 7179 7 Europe/Madrid 2012-03-04
-3124828 Coles Coles Coles,San Juan 42.4 -7.83333 P PPLA3 ES 58 OR 32026 3292 341 Europe/Madrid 2012-03-04
-3124829 Colera Colera Colera 42.40394 3.15153 P PPLA3 ES 56 GI 17054 702 16 Europe/Madrid 2012-03-04
-3124837 Coirós Coiros Coiros,Coirós,San Julian,San Julián 43.25 -8.16667 P PPLA3 ES 58 C 15027 1689 220 Europe/Madrid 2012-03-04
-3124847 el Cogul el Cogul Cogul,Cogull,Gogull,el Cogul 41.46667 0.68333 P PPLA3 ES 56 L 25076 0 297 Europe/Madrid 2012-03-04
-3124849 Cogolludo Cogolludo 40.94691 -3.0893 P PPLA3 ES 54 GU 19092 633 880 Europe/Madrid 2012-03-04
-3124852 Cogollos Cogollos Cogollos 42.19982 -3.70005 P PPLA3 ES 55 BU 09108 397 885 Europe/Madrid 2012-03-04
-3124853 Cogollor Cogollor Cogollor 40.84818 -2.74426 P PPLA3 ES 54 GU 19091 39 947 Europe/Madrid 2012-03-04
-3124857 Cogeces del Monte Cogeces del Monte Cogeces del Monte 41.5103 -4.3172 P PPLA3 ES 55 VA 47054 856 893 Europe/Madrid 2012-03-04
-3124874 Codos Codos Codos 41.29266 -1.37425 P PPLA3 ES 52 Z 50086 273 751 Europe/Madrid 2012-03-04
-3124875 Codorniz Codorniz Codorniz 41.06745 -4.60021 P PPLA3 ES 55 SG 40058 456 890 Europe/Madrid 2012-03-04
-3124894 Coca de Alba Coca de Alba Coca de Alba 40.87833 -5.36537 P PPLA3 ES 55 SA 37108 124 834 Europe/Madrid 2012-03-04
-3124895 Coca Coca Coca 41.21767 -4.52145 P PPLA3 ES 55 SG 40057 2042 789 Europe/Madrid 2012-03-04
-3124898 Cobreros Cobreros Cobreros 42.07323 -6.70053 P PPLA3 ES 55 ZA 49050 650 979 Europe/Madrid 2012-03-06
-3124903 Cobos de Fuentidueña Cobos de Fuentiduena Cobos de Fuentiduena,Cobos de Fuentidueña 41.38265 -3.92723 P PPLA3 ES 55 SG 40056 56 837 Europe/Madrid 2012-03-04
-3124904 Cobos de Cerrato Cobos de Cerrato Cobos de Cerrato 42.02808 -4.00251 P PPLA3 ES 55 P 34060 213 812 Europe/Madrid 2012-03-04
-3124908 Cobeta Cobeta Cobeta 40.8656 -2.14211 P PPLA3 ES 54 GU 19090 111 1123 Europe/Madrid 2012-03-04
-3124911 Cobeña Cobena Cobena,Cobeña 40.56667 -3.5 P PPLA3 ES 29 M 28041 3933 682 Europe/Madrid 2012-03-04
-3124914 Cobeja Cobeja Cobeja 40.02076 -3.85599 P PPLA3 ES 54 TO 45051 2037 498 Europe/Madrid 2012-03-04
-3124925 Coaña Coana Coana,Coano,Coaña,Coaño 43.51392 -6.75527 P PPLA3 ES 34 O 33018 3440 71 Europe/Madrid 2012-03-04
-3124936 Clavijo Clavijo Clavijo 42.34897 -2.42666 P PPLA3 ES 27 LO 26051 263 871 Europe/Madrid 2012-03-04
-3124940 Clarés de Ribota Clares de Ribota Clares de Ribota,Clarés de Ribota 41.52957 -1.83773 P PPLA3 ES 52 Z 50084 99 940 Europe/Madrid 2012-03-04
-3124953 Zizurkil Zizurkil Cizurquil,Cizúrquil,Zizurkil 43.19917 -2.0742 P PPLA3 ES 59 SS 20028 0 115 Europe/Madrid 2012-03-04
-3124955 Cizur Mayor Cizur Mayor Cizur Mayor,Zizur Nagusia 42.78795 -1.69065 P PPL ES 32 NA 31907 13345 451 Europe/Madrid 2012-01-19
-3124959 Ciutadilla Ciutadilla Ciutadilla 41.56113 1.13935 P PPLA3 ES 56 L 25074 256 506 Europe/Madrid 2012-03-04
-3124962 Siurana Siurana Siurana 42.20916 2.99392 P PPLA3 ES 56 GI 17052 0 33 Europe/Madrid 2012-03-04
-3124963 Ciudad Rodrigo Ciudad Rodrigo Ciudad Rodrigo,Ciudad-Rodrigo,Siudad-Rodrigo 40.6 -6.53333 P PPLA3 ES 55 SA 37107 14080 650 Europe/Madrid 2012-03-04
-3124967 Ciutadella Ciutadella Ciudadela,Ciutadella 40.00112 3.84144 P PPL ES 07 PM 07015 29160 22 Europe/Madrid 2011-09-11
-3124970 Cistierna Cistierna Cistierna 42.80344 -5.12664 P PPLA3 ES 55 LE 24056 3897 945 Europe/Madrid 2012-03-04
-3124971 Cistérniga Cisterniga Cisterniga,Cistérniga 41.61294 -4.68697 P PPLA3 ES 55 VA 47052 5983 743 Europe/Madrid 2012-03-04
-3124972 Cistella Cistella Cistella 42.2687 2.8478 P PPLA3 ES 56 GI 17051 233 130 Europe/Madrid 2012-03-04
-3124974 Cisneros Cisneros Cisneros 42.22046 -4.85807 P PPLA3 ES 55 P 34059 543 801 Europe/Madrid 2012-03-04
-3124975 Cisla Cisla Cisla 40.96662 -5.01406 P PPLA3 ES 55 AV 05060 173 846 Europe/Madrid 2012-03-04
-3124977 Cirujales del Río Cirujales del Rio Chujales del Rio,Chujales del Río,Cirujales del Rio,Cirujales del Río 41.86691 -2.32549 P PPLA3 ES 55 SO 42065 40 1069 Europe/Madrid 2012-03-04
-3124980 Cirueña Ciruena Ciruena,Cirueña 42.41214 -2.89593 P PPLA3 ES 27 LO 26050 115 745 Europe/Madrid 2012-03-04
-3124982 Ciruelos de Cervera Ciruelos de Cervera Ciruelos de Cervera 41.90562 -3.53015 P PPLA3 ES 55 BU 09105 139 1021 Europe/Madrid 2012-03-04
-3124988 Ciruelas Ciruelas Ciruelas 40.75021 -3.0858 P PPLA3 ES 54 GU 19088 98 871 Europe/Madrid 2012-03-04
-3124991 Ciriza Ciriza Ciriza 42.79019 -1.82822 P PPLA3 ES 32 NA 31075 70 467 Europe/Madrid 2012-03-04
-3124997 Ciria Ciria Ciria 41.61831 -1.96578 P PPLA3 ES 55 SO 42064 100 1028 Europe/Madrid 2012-03-04
-3125001 Cirauqui Cirauqui Cirauqui 42.67596 -1.89115 P PPLA3 ES 32 NA 31074 474 491 Europe/Madrid 2012-03-04
-3125002 Cirat Cirat Cinat,Ciral,Cirat 40.05 -0.45 P PPLA3 ES 60 CS 12046 304 447 Europe/Madrid 2012-03-04
-3125006 Cipérez Ciperez Ciperez,Cipérez 40.9621 -6.26552 P PPLA3 ES 55 SA 37106 376 767 Europe/Madrid 2012-03-04
-3125007 Ziordia Ziordia Ciordia,Ziordia 42.87068 -2.22954 P PPLA3 ES 32 NA 31073 0 555 Europe/Madrid 2012-03-04
-3125009 Cintruénigo Cintruenigo Cintruenico,Cintruenigo,Cintruénico,Cintruénigo,Zentroniko 42.07937 -1.80458 P PPLA3 ES 32 NA 31072 6708 400 Europe/Madrid 2012-03-04
-3125016 Cinctorres Cinctorres Cinctorres 40.58333 -0.21667 P PPLA3 ES 60 CS 12045 512 911 Europe/Madrid 2012-03-04
-3125018 Cincovillas Cincovillas 41.20501 -2.81834 P PPLA3 ES 54 GU 19087 39 1020 Europe/Madrid 2012-03-04
-3125020 Cinco Olivas Cinco Olivas Cinco Olivas 41.33966 -0.37116 P PPLA3 ES 52 Z 50083 122 159 Europe/Madrid 2012-03-04
-3125024 Cimballa Cimballa Cimballa 41.10118 -1.77352 P PPLA3 ES 52 Z 50082 135 919 Europe/Madrid 2012-03-04
-3125025 Cimanes del Tejar Cimanes del Tejar Cimanes del Tejar 42.61789 -5.80506 P PPLA3 ES 55 LE 24055 872 903 Europe/Madrid 2012-03-04
-3125026 Cimanes de la Vega Cimanes de la Vega 42.11646 -5.59852 P PPLA3 ES 55 LE 24054 615 720 Europe/Madrid 2012-03-04
-3125039 Cilleruelo de San Mamés Cilleruelo de San Mames Cilleruelo de San Mames,Cilleruelo de San Mamés 41.4322 -3.56614 P PPLA3 ES 55 SG 40055 45 986 Europe/Madrid 2012-03-04
-3125042 Cilleruelo de Arriba Cilleruelo de Arriba Cilleruelo,Cilleruelo de Arriba 41.90487 -3.66102 P PPLA3 ES 55 BU 09104 68 966 Europe/Madrid 2012-03-04
-3125043 Cilleruelo de Abajo Cilleruelo de Abajo Cilleruelo de Abajo 41.88405 -3.79722 P PPLA3 ES 55 BU 09103 283 915 Europe/Madrid 2012-03-04
-3125045 Cilleros de la Bastida Cilleros de la Bastida Cilleros de la Bastida 40.57614 -6.06094 P PPLA3 ES 55 SA 37104 35 1068 Europe/Madrid 2012-03-04
-3125047 Cilleros Cilleros Cilleros 40.11486 -6.79256 P PPLA3 ES 57 CC 10064 1964 438 Europe/Madrid 2012-03-04
-3125054 Cillán Cillan Cillan,Cillán 40.70675 -4.98135 P PPLA3 ES 55 AV 05059 131 1196 Europe/Madrid 2012-03-04
-3125058 Cihuri Cihuri Cihuri,Zihuri 42.56498 -2.92287 P PPLA3 ES 27 LO 26049 170 487 Europe/Madrid 2012-03-04
-3125059 Cihuela Cihuela Cihuela 41.40721 -1.99989 P PPLA3 ES 55 SO 42063 80 822 Europe/Madrid 2012-03-04
-3125060 Ciguñuela Cigunuela Cigunuela,Ciguñuela 41.64064 -4.85688 P PPLA3 ES 55 VA 47051 397 817 Europe/Madrid 2012-03-04
-3125067 Cigudosa Cigudosa Cigudosa 41.93333 -2.05 P PPLA3 ES 55 SO 42062 54 776 Europe/Madrid 2011-07-31
-3125068 Cigales Cigales Cigales 41.7578 -4.69848 P PPLA3 ES 55 VA 47050 3482 749 Europe/Madrid 2012-03-04
-3125072 Cifuentes Cifuentes Cifuentes 40.78622 -2.62245 P PPLA3 ES 54 GU 19086 2026 898 Europe/Madrid 2012-03-04
-3125077 Zierbena Zierbena Ciervana,Ciervana-Abanto,Ciérvana,Ciérvana-Abanto,La Cuesta-Ciervana,La Cuesta-Ciérvana,Zierbena 43.35 -3.08333 P PPLA3 ES 59 BI 48913 9418 46 Europe/Madrid 2012-03-04
-3125082 Ciempozuelos Ciempozuelos 40.15913 -3.62103 P PPLA3 ES 29 M 28040 22132 585 Europe/Madrid 2012-03-04
-3125083 Cidones Cidones Cidones 41.81444 -2.63991 P PPLA3 ES 55 SO 42061 367 1086 Europe/Madrid 2012-03-04
-3125084 Cidamón Cidamon Cidamon,Cidamón 42.49518 -2.87834 P PPLA3 ES 27 LO 26048 33 584 Europe/Madrid 2012-03-04
-3125099 Ciadoncha Ciadoncha Ciadoncha 42.15814 -3.93235 P PPLA3 ES 55 BU 09101 93 792 Europe/Madrid 2012-03-04
-3125108 Chozas de Canales Chozas de Canales Chozas de Canales 40.10014 -4.04333 P PPLA3 ES 54 TO 45056 1912 548 Europe/Madrid 2012-03-04
-3125110 Chozas de Abajo Chozas de Abajo Chozas de Abajo 42.50657 -5.68656 P PPLA3 ES 55 LE 24065 1976 882 Europe/Madrid 2012-03-04
-3125134 Chodes Chodes Chodes 41.48696 -1.48012 P PPLA3 ES 52 Z 50093 156 415 Europe/Madrid 2012-03-04
-3125142 Chiprana Chiprana Chiprana 41.26317 -0.12741 P PPLA3 ES 52 Z 50092 355 171 Europe/Madrid 2012-03-04
-3125144 Chinchón Chinchon Chinchon,Chinchón 40.1402 -3.42267 P PPLA3 ES 29 M 28052 4886 742 Europe/Madrid 2012-03-04
-3125147 Chimillas Chimillas Chimillas 42.17033 -0.45168 P PPLA3 ES 52 HU 22096 310 522 Europe/Madrid 2012-03-04
-3125149 Chiloeches Chiloeches Chiloeches 40.57038 -3.16003 P PPLA3 ES 54 GU 19105 1791 857 Europe/Madrid 2012-03-04
-3125150 Chillarón del Rey Chillaron del Rey Chillaron del Rey,Chillarón del Rey 40.59818 -2.69126 P PPLA3 ES 54 GU 19106 120 807 Europe/Madrid 2012-03-04
-3125151 Chillarón de Cuenca Chillaron de Cuenca Chillaron,Chillarón 40.10539 -2.22181 P PPLA3 ES 54 CU 16023 474 918 Europe/Madrid 2012-03-04
-3125161 Chía Chia Chia,Chía,Gia 42.5208 0.46563 P PPLA3 ES 52 HU 22095 114 1206 Europe/Madrid 2012-03-04
-3125163 Chert/Xert Chert/Xert Cheri,Chert,Xert 40.51944 0.15831 P PPLA3 ES 60 CS 12052 890 456 Europe/Madrid 2012-03-04
-3125168 Chequilla Chequilla Chequilla 40.606 -1.82787 P PPLA3 ES 54 GU 19104 19 1359 Europe/Madrid 2012-03-04
-3125174 Checa Checa Checa 40.58614 -1.79056 P PPLA3 ES 54 GU 19103 349 1378 1374 Europe/Madrid 2012-03-04
-3125198 Chapinería Chapineria Chapineria,Chapinería 40.37891 -4.21009 P PPLA3 ES 29 M 28051 1832 680 Europe/Madrid 2012-03-04
-3125212 Chantada Chantada 42.60876 -7.77115 P PPLA3 ES 58 LU 27016 9339 491 Europe/Madrid 2012-03-04
-3125216 Chañe Chane Chane,Chañe 41.33834 -4.42764 P PPLA3 ES 55 SG 40065 714 768 Europe/Madrid 2012-03-04
-3125240 Chamartín Chamartin Chamartin,Chamartin de la Sierra,Chamartín 40.70267 -4.95769 P PPLA3 ES 55 AV 05067 94 1195 Europe/Madrid 2012-03-04
-3125243 Chalamera Chalamera 41.66567 0.16299 P PPLA3 ES 52 HU 22094 156 180 Europe/Madrid 2012-03-04
-3125266 Cevico Navero Cevico Navero Cevico Navero 41.86112 -4.18498 P PPLA3 ES 55 P 34058 251 832 Europe/Madrid 2012-03-04
-3125267 Cevico de la Torre Cevico de la Torre Cevico de la Torre 41.85113 -4.40973 P PPLA3 ES 55 P 34057 562 749 Europe/Madrid 2012-03-04
-3125269 Cetina Cetina Cetina 41.29208 -1.96281 P PPLA3 ES 52 Z 50081 715 686 Europe/Madrid 2012-03-04
-3125271 Cesuras Cesuras Cesuras,Dordano,Dordaño 43.17482 -8.21605 P PPLA3 ES 58 C 15026 2422 228 Europe/Madrid 2012-03-04
-3125273 Zestoa Cestona Cestona,Zestoa 43.23973 -2.2579 P PPLA3 ES 59 SS 20027 0 74 Europe/Madrid 2012-03-04
-3125287 Cervo Cervo Cervo 43.67019 -7.41013 P PPLA3 ES 58 LU 27013 4908 64 Europe/Madrid 2012-03-04
-3125288 Cervillego de la Cruz Cervillego de la Cruz Cervillego de la Cruz 41.18783 -4.94966 P PPLA3 ES 55 VA 47049 137 756 Europe/Madrid 2012-03-04
-3125292 Cervià de Ter Cervia de Ter Cervia de Ter,Cervià de Ter 42.0665 2.90743 P PPLA3 ES 56 GI 17050 756 45 Europe/Madrid 2012-03-04
-3125294 Cerveruela Cerveruela Cerveruela 41.21567 -1.21525 P PPLA3 ES 52 Z 50080 32 812 Europe/Madrid 2012-03-04
-3125296 Cervera de Pisuerga Cervera de Pisuerga Cervera,Cervera de Pisuerga 42.86676 -4.49796 P PPLA3 ES 55 P 34056 2699 1003 Europe/Madrid 2012-03-04
-3125297 Cervera del Río Alhama Cervera del Rio Alhama Cervera de Rio Alhama,Cervera del Rio Alhama,Cervera del Rio Alhambra,Cervera del Río Alhama,Cervera del Río Alhambra 42.00517 -1.95531 P PPLA3 ES 27 LO 26047 3099 539 Europe/Madrid 2012-03-04
-3125299 Cervera de los Montes Cervera de los Montes Cervera,Cervera de los Montes 40.05182 -4.81072 P PPLA3 ES 54 TO 45049 346 535 Europe/Madrid 2012-03-04
-3125300 Cervera del Maestre Cervera del Maestre Cervera,Cervera del Maestrat,Cervera del Maestre 40.45366 0.27659 P PPLA3 ES 60 CS 12044 627 273 Europe/Madrid 2012-03-04
-3125301 Cervera de la Cañada Cervera de la Canada Cervera de la Canada,Cervera de la Cañada 41.43301 -1.73568 P PPLA3 ES 52 Z 50079 328 692 Europe/Madrid 2012-03-04
-3125302 Cervera de Buitrago Cervera de Buitrago Cervera de Buitrago 40.91988 -3.52702 P PPLA3 ES 29 M 28039 130 948 Europe/Madrid 2012-03-04
-3125308 Cervera Cervera 41.67003 1.2721 P PPL ES 56 L 25905 8724 550 Europe/Madrid 2010-04-04
-3125309 Cervelló Cervello 41.39587 1.95917 P PPLA3 ES 56 B 08068 7151 119 Europe/Madrid 2012-03-04
-3125312 Cervatos de la Cueza Cervatos de la Cueza Cervatos,Cervatos de la Cueza 42.29054 -4.76947 P PPLA3 ES 55 P 34055 334 851 Europe/Madrid 2012-03-04
-3125325 Cerratón de Juarros Cerraton de Juarros Cerraton de Juarros,Cerratón de Juarros 42.42227 -3.37347 P PPLA3 ES 55 BU 09100 56 954 Europe/Madrid 2012-03-04
-3125328 Cerralbo Cerralbo Cerralbo 40.97347 -6.5871 P PPLA3 ES 55 SA 37101 231 676 Europe/Madrid 2012-03-04
-3125345 Cernadilla Cernadilla Cernadilla 42.02083 -6.41701 P PPLA3 ES 55 ZA 49048 173 907 Europe/Madrid 2012-03-04
-3125352 Cerezo de Río Tirón Cerezo de Rio Tiron Cerezo 42.4914 -3.136 P PPLA3 ES ES 55 BU 09098 0 661 Europe/Madrid 2011-07-31
-3125354 Cerezo de Arriba Cerezo de Arriba Cerezo de Arriba 41.2389 -3.55846 P PPLA3 ES 55 SG 40054 186 1130 Europe/Madrid 2012-03-04
-3125355 Cerezo de Abajo Cerezo de Abajo Cerezo de Abajo 41.21817 -3.59126 P PPLA3 ES 55 SG 40053 200 1036 Europe/Madrid 2012-03-04
-3125357 Cerezo Cerezo Cerezo 40.23678 -6.22764 P PPLA3 ES 57 CC 10063 197 402 Europe/Madrid 2012-03-04
-3125363 Cerezal de Peñahorcada Cerezal de Penahorcada Cerezal de Penahorcada,Cerezal de Peñahorcada 41.13071 -6.65357 P PPLA3 ES 55 SA 37100 127 704 Europe/Madrid 2012-03-04
-3125380 Cerecinos del Carrizal Cerecinos del Carrizal Cerecinos,Cerecinos del Carrizal 41.68384 -5.65303 P PPLA3 ES 55 ZA 49047 157 686 Europe/Madrid 2012-03-04
-3125381 Cerecinos de Campos Cerecinos de Campos Cerecinos,Cerecinos de Campos 41.90017 -5.48605 P PPLA3 ES 55 ZA 49046 388 697 Europe/Madrid 2012-03-04
-3125386 Cereceda de la Sierra Cereceda de la Sierra Cereceda de la Sierra 40.56627 -6.0914 P PPLA3 ES 55 SA 37099 97 982 Europe/Madrid 2012-03-04
-3125397 Cerdido Cerdido Cerdido,San Martin,San Martín 43.61667 -8 P PPLA3 ES 58 C 15025 1535 238 Europe/Madrid 2012-03-04
-3125408 Cercedilla Cercedilla 40.74101 -4.05644 P PPLA3 ES 29 M 28038 6747 1194 Europe/Madrid 2012-03-04
-3125410 Cerceda Cerceda Cerceda,San Martin,San Martín 43.18333 -8.48333 P PPLA3 ES ES 58 C 15024 0 365 Europe/Madrid 2012-03-04
-3125415 Cerbón Cerbon Cerbon,Cerbón 41.92934 -2.16895 P PPLA3 ES 55 SO 42060 45 1116 Europe/Madrid 2012-03-04
-3125420 Zerain Cerain Cerain,Ceráin,Zerain 43.01237 -2.27264 P PPLA3 ES 59 SS 20026 0 326 Europe/Madrid 2012-03-04
-3125424 Cepeda la Mora Cepeda la Mora Cepeda la Mora 40.4578 -5.04833 P PPLA3 ES 55 AV 05058 106 1497 Europe/Madrid 2012-03-04
-3125427 Cepeda Cepeda Cepeda 40.466 -6.041 P PPLA3 ES 55 SA 37098 471 628 Europe/Madrid 2012-03-04
-3125437 Centenera de Andaluz Centenera de Andaluz Centenera de Andaluz 41.5068 -2.71813 P PPLA3 ES 55 SO 42059 23 945 Europe/Madrid 2012-03-04
-3125440 Centenera Centenera Centenera 40.65064 -3.0512 P PPLA3 ES 54 GU 19082 98 933 Europe/Madrid 2012-03-04
-3125442 Centelles Centelles Centelles 41.79746 2.21902 P PPL ES 56 B 08017 6493 466 532 Europe/Madrid 2010-04-04
-3125445 Cenlle Cenlle Cenlle 42.34183 -8.08982 P PPLA3 ES 58 OR 32025 1555 408 Europe/Madrid 2012-03-04
-3125448 Cenicientos Cenicientos Cenicientos 40.26459 -4.46683 P PPLA3 ES 29 M 28037 0 774 Europe/Madrid 2012-03-04
-3125449 Cenicero Cenicero Cenicero,Ceracero 42.4813 -2.64412 P PPLA3 ES 27 LO 26046 2020 439 Europe/Madrid 2012-03-04
-3125456 Cendejas de la Torre Cendejas de la Torre Cendejas de la Torre 40.97916 -2.85054 P PPLA3 ES 54 GU 19081 64 965 Europe/Madrid 2012-03-04
-3125469 Celrà Celra Celra,Celrà,Celrá 42.03333 2.88333 P PPLA3 ES 56 GI 17049 3372 54 Europe/Madrid 2012-03-04
-3125473 Cellorigo Cellorigo Cellorigo 42.62703 -3.00016 P PPLA3 ES 27 LO 26045 23 768 Europe/Madrid 2012-03-04
-3125480 Cella Cella Cella 40.45325 -1.2875 P PPLA3 ES 52 TE 44076 2820 1043 Europe/Madrid 2012-03-04
-3125488 Celanova Celanova 42.15303 -7.95513 P PPLA3 ES 58 OR 32024 6089 515 Europe/Madrid 2012-03-04
-3125497 Celada del Camino Celada del Camino 42.26359 -3.93362 P PPLA3 ES 55 BU 09095 102 799 Europe/Madrid 2012-03-04
-3125517 Ceinos de Campos Ceinos de Campos Ceinos,Ceinos de Campos 42.03284 -5.15007 P PPLA3 ES 55 VA 47048 273 763 Europe/Madrid 2012-03-04
-3125523 Zegama Cegama Cegama,Zegama 42.97556 -2.29091 P PPLA3 ES 59 SS 20025 0 301 Europe/Madrid 2012-03-04
-3125526 Cee Cee Cee 42.95466 -9.188 P PPLA3 ES 58 C 15023 7381 15 Europe/Madrid 2012-03-04
-3125529 Cedrillas Cedrillas Cedrillas 40.43708 -0.8515 P PPLA3 ES 52 TE 44074 515 1359 Europe/Madrid 2012-03-04
-3125533 Cedillo del Condado Cedillo del Condado Cedillo del Condado 40.1126 -3.92127 P PPLA3 ES 54 TO 45047 2070 642 Europe/Madrid 2012-03-04
-3125534 Cedillo de la Torre Cedillo de la Torre Cedillo de la Torre 41.42482 -3.60577 P PPLA3 ES 55 SG 40052 105 1024 Europe/Madrid 2012-03-04
-3125537 Cedeira Cedeira Cedeira 43.66044 -8.05719 P PPLA3 ES 58 C 15022 7455 21 Europe/Madrid 2012-03-04
-3125547 Cebrones del Río Cebrones del Rio Cebrones del Rio,Cebrones del Río 42.25726 -5.82622 P PPLA3 ES 55 LE 24053 633 759 Europe/Madrid 2012-03-04
-3125548 Cebreros Cebreros Cebreros 40.45834 -4.46433 P PPLA3 ES 55 AV 05057 3226 775 Europe/Madrid 2012-03-04
-3125552 Cebrecos Cebrecos Cebrecos 41.98408 -3.59661 P PPLA3 ES 55 BU 09094 64 953 Europe/Madrid 2012-03-04
-3125560 Cebanico Cebanico Cebanco,Cebanico 42.72526 -5.02568 P PPLA3 ES 55 LE 24052 221 957 Europe/Madrid 2012-03-04
-3125563 Zeanuri Zeanuri Ceanuri,Ceanuri Alto,Ceánuri,Ceánuri Alto,Elexondo,Zeanuri 43.1 -2.75 P PPLA3 ES 59 BI 48024 1163 168 Europe/Madrid 2012-03-04
-3125569 Cea Cea Cea,San Cristobal,San Cristobal de Cea,San Cristóbal,San Cristóbal de Cea 42.4749 -7.98739 P PPL ES 58 OR 32076 2960 518 Europe/Madrid 2012-01-19
-3125571 Cazurra Cazurra Cazurra 41.41583 -5.70454 P PPLA3 ES 55 ZA 49044 88 727 Europe/Madrid 2012-03-04
-3125579 Cazalegas Cazalegas Cazalegas 40.00958 -4.67606 P PPLA3 ES 54 TO 45045 1458 443 Europe/Madrid 2012-03-04
-3125581 Cayuela Cayuela 42.27223 -3.81895 P PPLA3 ES 55 BU 09093 127 823 Europe/Madrid 2012-03-04
-3125602 Catoira Catoira Catoira 42.66748 -8.72323 P PPLA3 ES 58 PO 36010 3519 16 Europe/Madrid 2012-03-04
-3125604 el Catllar el Catllar Catllar,el Catllar 41.16667 1.31667 P PPLA3 ES 56 T 43043 0 108 Europe/Madrid 2012-03-04
-3125605 Catí Cati 40.47156 0.02275 P PPLA3 ES 60 CS 12042 847 665 Europe/Madrid 2012-03-04
-3125614 Castroverde de Cerrato Castroverde de Cerrato Castroverde de Cerrato 41.75609 -4.22151 P PPLA3 ES 55 VA 47047 268 783 Europe/Madrid 2012-03-04
-3125615 Castroverde de Campos Castroverde de Campos Castroverde,Castroverde de Campos 41.97049 -5.31434 P PPLA3 ES 55 ZA 49043 406 708 Europe/Madrid 2012-03-04
-3125616 Castroverde Castroverde Castroverde 43.0302 -7.32428 P PPLA3 ES 58 LU 27011 3218 580 Europe/Madrid 2012-03-04
-3125621 Castro-Urdiales Castro-Urdiales Castro Urdiales,Castro-Urdiales,Urdialaitz 43.38286 -3.22043 P PPLA3 ES 39 S 39020 31670 18 Europe/Madrid 2012-03-04
-3125625 Castroserracín Castroserracin Castroserracin,Castroserracín 41.39329 -3.80196 P PPLA3 ES 55 SG 40051 52 1126 Europe/Madrid 2012-03-04
-3125627 Castroserna de Abajo Castroserna de Abajo Castroserna de Abajo 41.20835 -3.73387 P PPLA3 ES 55 SG 40049 46 985 Europe/Madrid 2012-03-04
-3125631 Castroponce Castroponce Castroponce 42.12646 -5.18245 P PPLA3 ES 55 VA 47046 173 740 Europe/Madrid 2012-03-04
-3125632 Castropol Castropol 43.52777 -7.03048 P PPLA3 ES 34 O 33017 0 27 Europe/Madrid 2012-03-04
-3125633 Castropodame Castropodame Castropodame 42.57943 -6.46837 P PPLA3 ES 55 LE 24049 1829 746 Europe/Madrid 2012-03-04
-3125636 Castronuño Castronuno Castronuno,Castronuño 41.38918 -5.26408 P PPLA3 ES 55 VA 47045 1057 705 Europe/Madrid 2012-03-04
-3125637 Castronuevo de Esgueva Castronuevo de Esgueva Castronuevo de Esgueva 41.6818 -4.58866 P PPLA3 ES 55 VA 47044 346 756 Europe/Madrid 2012-03-04
-3125638 Castronuevo Castronuevo Castronuevo 41.72046 -5.54316 P PPLA3 ES 55 ZA 49042 339 691 Europe/Madrid 2012-03-04
-3125645 Castromonte Castromonte Castromonte 41.77355 -5.03909 P PPLA3 ES 55 VA 47043 389 843 Europe/Madrid 2012-03-04
-3125646 Castromocho Castromocho Castromocho 42.03104 -4.82404 P PPLA3 ES 55 P 34053 260 756 Europe/Madrid 2012-03-04
-3125649 Castromembibre Castromembibre Castromembibre,Castromembribe 41.67246 -5.30474 P PPLA3 ES 55 VA 47042 79 784 Europe/Madrid 2012-03-04
-3125656 Castrojimeno Castrojimeno Castrojimeno 41.39659 -3.84726 P PPLA3 ES 55 SG 40048 38 1075 Europe/Madrid 2012-03-04
-3125658 Castrogonzalo Castrogonzalo Castrogonzalo 41.99099 -5.60301 P PPLA3 ES 55 ZA 49041 533 724 Europe/Madrid 2012-03-04
-3125664 Castrodeza Castrodeza Castrodeza 41.64922 -4.95888 P PPLA3 ES 55 VA 47041 228 760 Europe/Madrid 2012-03-04
-3125672 Castro de Fuentidueña Castro de Fuentiduena Castro de Fuentiduena,Castro de Fuentidueña 41.42044 -3.85528 P PPLA3 ES 55 SG 40047 69 1099 Europe/Madrid 2012-03-04
-3125679 Castrocontrigo Castrocontrigo Castrocontigo,Castrocontrigo 42.18363 -6.19022 P PPLA3 ES 55 LE 24047 1065 917 Europe/Madrid 2012-03-04
-3125681 Castro Caldelas Castro Caldelas Castro Caldelas 42.37366 -7.42578 P PPLA3 ES 58 OR 32023 1811 749 Europe/Madrid 2012-03-04
-3125682 Castrocalbón Castrocalbon Castrocalbon,Castrocalbón 42.19706 -5.98226 P PPLA3 ES 55 LE 24046 1221 811 Europe/Madrid 2012-03-04
-3125683 Castrobol Castrobol Castrobol 42.13717 -5.31422 P PPLA3 ES 55 VA 47040 101 771 Europe/Madrid 2012-03-04
-3125713 Castro Castro 42.76667 -7.58333 P PPL ES 58 LU 27042 5822 667 Europe/Madrid 2006-01-27
-3125722 Castrillo-Tejeriego Castrillo-Tejeriego Castrillo-Tejeriego 41.7034 -4.37142 P PPLA3 ES 55 VA 47039 232 792 Europe/Madrid 2012-03-04
-3125723 Castrillón Castrillon 43.39788 -6.79217 P PPL ES 34 O 33007 22894 197 Europe/Madrid 2010-04-22
-3125726 Castrillo de Villavega Castrillo de Villavega Castrillo de Villavega 42.45463 -4.48069 P PPLA3 ES 55 P 34052 245 849 Europe/Madrid 2012-03-04
-3125735 Castrillo de Onielo Castrillo de Onielo Castrillo de Onielo 41.8582 -4.30125 P PPLA3 ES 55 P 34051 153 827 Europe/Madrid 2012-03-04
-3125737 Castrillo del Val Castrillo del Val Castrillo del Val 42.31401 -3.58501 P PPLA3 ES 55 BU 09086 513 941 Europe/Madrid 2012-03-04
-3125740 Castrillo de la Vega Castrillo de la Vega Castrillo de la Vega 41.65166 -3.78089 P PPLA3 ES 55 BU 09085 604 818 Europe/Madrid 2012-03-04
-3125741 Castrillo de la Valduerna Castrillo de la Valduerna Castrillo de la Valduerna 42.32393 -6.13455 P PPLA3 ES 55 LE 24044 188 908 Europe/Madrid 2012-03-04
-3125743 Castrillo de la Reina Castrillo de la Reina Castrillo de la Reina 41.98714 -3.2356 P PPLA3 ES 55 BU 09084 248 982 Europe/Madrid 2012-03-04
-3125744 Castrillo de la Guareña Castrillo de la Guarena Castrillo de la Guarena,Castrillo de la Guareña 41.23043 -5.3255 P PPLA3 ES 55 ZA 49040 147 730 Europe/Madrid 2012-03-04
-3125746 Castrillo de Duero Castrillo de Duero Castrillo de Duero 41.57494 -4.01547 P PPLA3 ES 55 VA 47038 157 801 Europe/Madrid 2012-03-04
-3125747 Castrillo de Don Juan Castrillo de Don Juan Castrillo de Don Juan 41.79086 -4.07032 P PPLA3 ES 55 P 34050 298 828 Europe/Madrid 2012-03-04
-3125749 Castrillo de Cabrera Castrillo de Cabrera Castrillo de Cabrera 42.34036 -6.54451 P PPLA3 ES 55 LE 24043 156 1055 Europe/Madrid 2012-03-04
-3125758 Castrelo de Miño Castrelo de Mino Santa Maria,Santa María 42.29798 -8.06697 P PPLA3 ES 58 OR 32022 2033 218 Europe/Madrid 2012-03-04
-3125771 Castrejón de la Peña Castrejon de la Pena Castrejon de la Pena,Castrejón de la Peña 42.80795 -4.59901 P PPLA3 ES 55 P 34049 564 1122 Europe/Madrid 2012-03-04
-3125775 Castraz Castraz Castraz 40.70517 -6.33384 P PPLA3 ES 55 SA 37097 56 763 Europe/Madrid 2012-03-04
-3125786 Castilruiz Castilruiz Castilruiz 41.87678 -2.0593 P PPLA3 ES 55 SO 42057 274 1012 Europe/Madrid 2012-03-04
-3125787 Castilnuevo Castilnuevo Castilnuevo 40.81431 -1.85782 P PPLA3 ES 54 GU 19079 11 1085 Europe/Madrid 2012-03-04
-3125791 Castillonuevo Castillonuevo Castillonuevo 42.6827 -1.03121 P PPLA3 ES 32 NA 31071 21 802 Europe/Madrid 2012-03-04
-3125795 Castillo de Villamalefa Castillo de Villamalefa Castillo de Villamalefa,Castillo de Villamaleja,Castillo de Villamaleta,Castillon de Villamatefa,el Castell de Vilamalefa 40.13333 -0.38333 P PPLA3 ES 60 CS 12041 111 787 Europe/Madrid 2012-03-04
-3125799 Castillo de Bayuela Castillo de Bayuela Castillo de Bayuela 40.10032 -4.68562 P PPLA3 ES 54 TO 45043 1103 547 Europe/Madrid 2012-03-04
-3125800 Castell-Platja d'Aro Castell-Platja d'Aro Castell-Platja d'Aro,Castillo de Aro,Kastel'-Pladzha-de-Aro,Кастель-Пладжа-де-Аро 41.81751 3.06742 P PPLA3 ES 56 GI 17048 10376 8 Europe/Madrid 2011-07-31
-3125803 Castillo-Albaráñez Castillo-Albaranez Castillo de Albaranez,Castillo de Albarañez,Castillo-Albaranez,Castillo-Albaráñez 40.29869 -2.39277 P PPLA3 ES 54 CU 16071 22 906 Europe/Madrid 2012-03-04
-3125814 Castillejo-Sierra Castillejo-Sierra Castillejo-Sierra 40.37477 -2.1404 P PPLA3 ES 54 CU 16070 44 1000 Europe/Madrid 2012-03-04
-3125816 Castillejo de Robledo Castillejo de Robledo Castillejo de Robledo 41.55867 -3.49689 P PPLA3 ES 55 SO 42058 148 960 Europe/Madrid 2012-03-04
-3125817 Castillejo de Mesleón Castillejo de Mesleon Castillejo de Mesleon,Castillejo de Mesleón 41.281 -3.60137 P PPLA3 ES 55 SG 40046 153 1010 Europe/Madrid 2012-03-04
-3125818 Castillejo de Martín Viejo Castillejo de Martin Viejo Castillejo de Martin Viejo,Castillejo de Martín Viejo 40.69728 -6.63763 P PPLA3 ES 55 SA 37096 315 679 Europe/Madrid 2012-03-04
-3125824 Castillazuelo Castillazuelo Castillazuelo 42.06774 0.06491 P PPLA3 ES 52 HU 22088 235 368 Europe/Madrid 2012-03-04
-3125827 Castiliscar Castiliscar Castiliscar 42.37662 -1.27326 P PPLA3 ES 52 Z 50078 401 491 Europe/Madrid 2012-03-04
-3125828 Castilfrío de la Sierra Castilfrio de la Sierra Caltilfrio de la Sierra,Caltilfrío de la Sierra,Castilfrio de la Sierra,Castilfrío de la Sierra 41.91929 -2.30497 P PPLA3 ES 55 SO 42056 26 1201 Europe/Madrid 2012-03-04
-3125829 Castilforte Castilforte Castilforte 40.55735 -2.43226 P PPLA3 ES 54 GU 19078 52 993 Europe/Madrid 2012-03-04
-3125830 Castilfalé Castilfale Castilfale,Castilfalé 42.21991 -5.42122 P PPLA3 ES 55 LE 24042 86 828 Europe/Madrid 2012-03-04
-3125831 Castil de Vela Castil de Vela Castil de Vela 41.98461 -4.9592 P PPLA3 ES 55 P 34048 85 761 Europe/Madrid 2012-03-04
-3125833 Castil de Peones Castil de Peones Castil de Peones 42.48348 -3.38461 P PPLA3 ES 55 BU 09083 26 790 Europe/Madrid 2012-03-04
-3125834 Castildelgado Castildelgado Castildelgado,Villaipun,Villaipún 42.43756 -3.08389 P PPLA3 ES 55 BU 09082 65 768 Europe/Madrid 2012-03-04
-3125839 Castigaleu Castigaleu Castigaleu 42.20374 0.57944 P PPLA3 ES 52 HU 22087 117 835 Europe/Madrid 2012-03-04
-3125841 Castiello de Jaca Castiello de Jaca Castiello de Jaca 42.62964 -0.5502 P PPLA3 ES 52 HU 22086 212 899 Europe/Madrid 2012-03-04
-3125851 Castielfabib Castielfabib Castellfabib,Castielfabib 40.13076 -1.30396 P PPLA3 ES 60 V 46092 284 931 Europe/Madrid 2012-03-04
-3125853 Castelserás Castelseras Castelseras,Castelserás 40.98133 -0.14666 P PPLA3 ES 52 TE 44068 808 370 Europe/Madrid 2012-03-04
-3125874 Castelnou Castelnou Castelnou 41.22892 -0.36434 P PPLA3 ES 52 TE 44067 110 194 Europe/Madrid 2012-03-04
-3125876 Castellví de Rosanes Castellvi de Rosanes Castellvi de Rosanes,Castellví de Rosanes,Castellví de Rosanés 41.45 1.9 P PPLA3 ES 56 B 08066 1321 184 Europe/Madrid 2012-03-04
-3125878 Castellterçol Castelltercol Castelltercol,Castelltersol,Castellterçol 41.75 2.11667 P PPLA3 ES 56 B 08064 0 727 Europe/Madrid 2012-03-04
-3125879 Castellserà Castellsera Castellsera,Castellserà 41.75 1 P PPLA3 ES 56 L 25070 1114 284 Europe/Madrid 2012-03-04
-3125880 Castellote Castellote Castellote 40.8 -0.31975 P PPLA3 ES 52 TE 44071 785 772 Europe/Madrid 2012-03-04
-3125882 Castellolí Castelloli Castelloli,Castellolí 41.59829 1.70057 P PPLA3 ES 56 B 08063 461 393 Europe/Madrid 2012-03-04
-3125883 Castelló de Farfanya Castello de Farfanya Castello de Farfanya,Castelló de Farfanya 41.81667 0.73333 P PPLA3 ES 56 L 25069 0 337 Europe/Madrid 2012-03-04
-3125884 Castelló d'Empúries Castello d'Empuries Castello d'Empuries,Castelló d'Empúries 42.25673 3.07446 P PPL ES 56 GI 17047 12111 15 Europe/Madrid 2010-04-22
-3125887 Castellnou de Seana Castellnou de Seana Castellnou de Seana 41.64802 0.97092 P PPLA3 ES 56 L 25068 720 274 Europe/Madrid 2012-03-04
-3125891 Castellfollit de Riubregós Castellfollit de Riubregos Castellfollit de Riubregos,Castellfollit de Riubregós,Castellfullit de Riubregos,Castellfullit de Riubregós 41.76667 1.43333 P PPLA3 ES 56 B 08060 08060 0 548 Europe/Madrid 2012-03-04
-3125892 Castellfollit del Boix Castellfollit del Boix Castellfollit de Boix,Castellfollit del Boix 41.66667 1.7 P PPLA3 ES 56 B 08059 0 525 Europe/Madrid 2012-03-04
-3125894 Castellfort Castellfort Castellfort 40.50208 -0.19133 P PPLA3 ES 60 CS 12038 216 1156 Europe/Madrid 2012-03-04
-3125895 Castellet Castellet 41.26281 1.63369 P PPL ES 56 B 08058 7713 114 Europe/Madrid 2010-04-04
-3125897 Castelldefels Castelldefels Castelldefels 41.27794 1.97033 P PPLA3 ES 56 B 08056 62080 14 Europe/Madrid 2012-03-04
-3125898 Castell de Cabres Castell de Cabres Castell de Cabres 40.66058 0.04217 P PPLA3 ES 60 CS 12037 20 1139 Europe/Madrid 2011-07-31
-3125901 Castellcir Castellcir Castellcir 41.76074 2.16128 P PPLA3 ES 56 B 08055 546 720 Europe/Madrid 2012-03-04
-3125904 Castellbisbal Castellbisbal Castelbisbal 41.47534 1.98174 P PPLA3 ES 56 B 08054 11977 153 Europe/Madrid 2012-03-04
-3125910 Castellar de la Muela Castellar de la Muela Castellar,Castellar de la Muela 40.81902 -1.75932 P PPLA3 ES 54 GU 19076 41 1213 Europe/Madrid 2012-03-04
-3125915 Castellar del Vallès Castellar del Valles 41.61667 2.08333 P PPL ES 56 B 08051 23002 299 Europe/Madrid 2010-04-22
-3125916 Castellanos de Zapardiel Castellanos de Zapardiel Castellanos de Zapardiel 41.0845 -4.90984 P PPLA3 ES 55 AV 05056 138 786 Europe/Madrid 2012-03-04
-3125917 Castellanos de Villiquera Castellanos de Villiquera Castellanos de Villiquera 41.05139 -5.69477 P PPLA3 ES 55 SA 37185 575 829 Europe/Madrid 2012-03-04
-3125918 Castellanos de Moriscos Castellanos de Moriscos Castellanos de Moriscos 41.01917 -5.59065 P PPLA3 ES 55 SA 37092 441 836 Europe/Madrid 2012-03-04
-3125919 Castellanos de Castro Castellanos de Castro 42.32806 -4.03417 P PPLA3 ES 55 BU 09079 64 872 Europe/Madrid 2012-03-04
-3125932 Castelflorite Castelflorite Castelflorite 41.80273 -0.02169 P PPLA3 ES 52 HU 22085 124 311 Europe/Madrid 2012-03-04
-3125933 Castel de Cabra Castel de Cabra Castel de Cabra 40.80255 -0.696 P PPLA3 ES 52 TE 44066 143 1086 Europe/Madrid 2012-03-04
-3125937 Castejón de Valdejasa Castejon de Valdejasa Castejon,Castejon de Valdejasa,Castejon de Valdejosa,Castejón de Valdejasa 41.98204 -0.99393 P PPLA3 ES 52 Z 50077 312 516 Europe/Madrid 2012-03-04
-3125938 Castejón de Tornos Castejon de Tornos 40.99726 -1.42805 P PPLA3 ES 52 TE 44065 91 1081 Europe/Madrid 2012-03-04
-3125939 Castejón de Sos Castejon de Sos Castejon de Sos,Castejón de Sos,Castillo de Sos,Castilló de Sos 42.51235 0.49241 P PPLA3 ES 52 HU 22084 781 919 Europe/Madrid 2012-03-04
-3125941 Castejón de Monegros Castejon de Monegros Castejon de Monegros,Castejón de Monegros 41.61802 -0.24012 P PPLA3 ES 52 HU 22083 675 477 Europe/Madrid 2012-03-04
-3125942 Castejón del Puente Castejon del Puente 41.96179 0.15883 P PPLA3 ES 52 HU 22082 447 358 Europe/Madrid 2012-03-04
-3125944 Castejón de las Armas Castejon de las Armas Castejon de las Armas,Castejón de las Armas 41.30976 -1.81084 P PPLA3 ES 52 Z 50076 94 610 Europe/Madrid 2012-03-04
-3125945 Castejón de Henares Castejon de Henares Castejon de Henares,Castejón de Henares 40.93762 -2.78665 P PPLA3 ES 54 GU 19075 108 949 Europe/Madrid 2012-03-04
-3125947 Castejón de Alarba Castejon de Alarba Castejon de Alarba,Castejón de Alarba 41.18365 -1.63612 P PPLA3 ES 52 Z 50075 96 930 Europe/Madrid 2012-03-04
-3125951 Castejón Castejon Castejon,Castejón 42.16912 -1.68951 P PPL ES 32 NA 26011 3615 278 Europe/Madrid 2012-01-19
-3125982 Castandiello Castandiello Castandiella,Castandiello,Morcin 43.27962 -5.892 P PPL ES 34 O 33044 3072 267 Europe/Madrid 2012-01-19
-3125985 Castañares de Rioja Castanares de Rioja Castanares,Castanares de Rioja,Castañares,Castañares de Rioja 42.51248 -2.93148 P PPLA3 ES 27 LO 26043 408 543 Europe/Madrid 2012-03-04
-3125991 Cassà de la Selva Cassa de la Selva Cassa de la Selva,Cassà de la Selva 41.88784 2.87524 P PPLA3 ES 56 GI 17044 8504 157 Europe/Madrid 2012-03-04
-3125992 Caspueñas Caspuenas Caspuenas,Caspueñas 40.69497 -2.97941 P PPLA3 ES 54 GU 19074 96 874 Europe/Madrid 2012-03-04
-3125994 Caspe Caspe Casp,Caspe 41.23402 -0.03945 P PPLA3 ES 52 Z 50074 8054 171 Europe/Madrid 2012-03-04
-3126000 Casla Casla Casla 41.16602 -3.65642 P PPLA3 ES 55 SG 40045 174 1084 Europe/Madrid 2012-03-04
-3126002 Casillas de Flores Casillas de Flores Casilla de Flores,Casillas de Flores 40.38108 -6.75602 P PPLA3 ES 55 SA 37091 222 860 Europe/Madrid 2012-03-04
-3126009 Casillas Casillas Casillas 40.3261 -4.57182 P PPLA3 ES 55 AV 05055 838 1048 Europe/Madrid 2012-03-04
-3126024 Caseres Caseres Caseras,Caseres 41.03333 0.25 P PPLA3 ES 56 T 43041 0 344 Europe/Madrid 2012-03-04
-3126027 Cáseda Caseda Caseda,Cáseda 42.52255 -1.36636 P PPLA3 ES 32 NA 31069 1028 425 Europe/Madrid 2012-03-04
-3126031 Cascante del Río Cascante del Rio Carrasconte,Cascante,Cascante del Rio,Cascante del Río 40.19652 -1.11414 P PPLA3 ES 52 TE 44064 96 997 Europe/Madrid 2012-03-04
-3126032 Cascante Cascante Cascante,Cascanto 41.99769 -1.68098 P PPLA3 ES 32 NA 31068 0 371 Europe/Madrid 2012-03-04
-3126034 Cascajares de la Sierra Cascajares de la Sierra Cascajares de la Sierra 42.06177 -3.39936 P PPLA3 ES 55 BU 09078 29 928 Europe/Madrid 2012-03-04
-3126035 Cascajares de Bureba Cascajares de Bureba Cascajares de Bureba 42.67884 -3.23768 P PPLA3 ES 55 BU 09077 53 804 Europe/Madrid 2012-03-04
-3126038 Casbas de Huesca Casbas de Huesca Casbas de Huesca 42.1555 -0.1399 P PPLA3 ES 52 HU 22081 296 563 Europe/Madrid 2012-03-04
-3126040 Casavieja Casavieja Casavieja 40.28326 -4.7667 P PPLA3 ES 55 AV 05054 1459 576 Europe/Madrid 2012-03-04
-3126049 Casasola de Arión Casasola de Arion Casasola de Arion,Casasola de Arión 41.57825 -5.24076 P PPLA3 ES 55 VA 47036 359 711 Europe/Madrid 2012-03-04
-3126057 Casaseca de las Chanas Casaseca de las Chanas Casaseca de las Chanas 41.4387 -5.67547 P PPLA3 ES 55 ZA 49039 369 710 Europe/Madrid 2012-03-04
-3126058 Casaseca de Campeán Casaseca de Campean Casaseca de Campean,Casaseca de Campeán 41.3743 -5.74648 P PPLA3 ES 55 ZA 49038 131 764 Europe/Madrid 2012-03-04
-3126061 Casas de San Galindo Casas de San Galindo Casas de Galindo,Casas de San Galindo 40.87234 -2.9575 P PPLA3 ES 54 GU 19073 32 1030 Europe/Madrid 2012-03-04
-3126066 Casas del Monte Casas del Monte Casas del Monte 40.2032 -5.96152 P PPLA3 ES 57 CC 10055 887 584 Europe/Madrid 2012-03-04
-3126068 Casas del Castañar Casas del Castanar Casas del Castanar,Casas del Castañar 40.10785 -5.90509 P PPLA3 ES 57 CC 10054 661 680 Europe/Madrid 2012-03-04
-3126075 Casas de Don Gómez Casas de Don Gomez Casas de Don Gomez,Casas de Don Gómez 40.00932 -6.60073 P PPLA3 ES 57 CC 10053 353 324 Europe/Madrid 2012-03-04
-3126076 Casas Bajas Casas Bajas Casas Bajas 40.01667 -1.26667 P PPLA3 ES 60 V 46088 243 708 Europe/Madrid 2012-03-04
-3126078 Casas Altas Casas Altas Casas Altas 40.03333 -1.26667 P PPLA3 ES 60 V 46087 158 807 Europe/Madrid 2012-03-04
-3126082 Casarrubuelos Casarrubuelos 40.17146 -3.83105 P PPLA3 ES 29 M 28036 2155 626 Europe/Madrid 2011-07-31
-3126083 Casarrubios del Monte Casarrubios del Monte Casarrubios del Monte 40.18697 -4.03644 P PPLA3 ES 54 TO 45041 4102 620 Europe/Madrid 2012-03-04
-3126085 Casares de las Hurdes Casares de las Hurdes Casares de las Hurdes 40.43333 -6.28333 P PPLA3 ES 57 CC 10051 596 591 Europe/Madrid 2011-07-31
-3126095 Casarejos Casarejos Casarejos 41.79651 -3.0325 P PPLA3 ES 55 SO 42055 252 1085 Europe/Madrid 2012-03-04
-3126096 Casar de Palomero Casar de Palomero Casar,Casar de Palomero 40.29483 -6.25698 P PPLA3 ES 57 CC 10050 1267 525 Europe/Madrid 2012-03-04
-3126107 Casalarreina Casalarreina Casalareina,Casalarreina,Nafarruri 42.54911 -2.90994 P PPLA3 ES 27 LO 26042 1336 502 Europe/Madrid 2012-03-04
-3126114 Casafranca Casafranca Casafranca 40.59267 -5.76039 P PPLA3 ES 55 SA 37089 80 930 Europe/Madrid 2012-03-04
-3126117 Casa de Uceda Casa de Uceda Casa de Uceda 40.84115 -3.36849 P PPLA3 ES 54 GU 19070 114 917 Europe/Madrid 2012-03-04
-3126135 Carucedo Carucedo Carucedo 42.49029 -6.76565 P PPLA3 ES 55 LE 24041 639 508 Europe/Madrid 2012-03-04
-3126139 Cartes Cartes Cartes 43.32596 -4.06893 P PPLA3 ES 39 S 39018 3780 36 Europe/Madrid 2012-03-04
-3126141 Cartelle Cartelle Cartelle 42.25109 -8.07062 P PPLA3 ES 58 OR 32020 3496 362 Europe/Madrid 2012-03-04
-3126152 Carrocera Carrocera Carrocera 42.79605 -5.74374 P PPLA3 ES 55 LE 24040 559 1050 Europe/Madrid 2012-03-04
-3126155 Carrizo de la Ribera Carrizo de la Ribera Carrizo,Carrizo de la Ribera 42.58395 -5.82881 P PPL ES 55 LE 24039 2581 875 Europe/Madrid 2012-01-19
-3126161 Carrión de los Condes Carrion de los Condes Carrion de los Condes,Carrión de los Condes 42.3413 -4.60071 P PPLA3 ES 55 P 34047 2350 837 Europe/Madrid 2012-03-04
-3126172 Carrias Carrias Carrias 42.48141 -3.28319 P PPLA3 ES 55 BU 09076 40 821 Europe/Madrid 2012-03-04
-3126178 Carreña Carrena Cabrales,Carrena de Cabrales,Carrena de Cabreles,Carrena-Cabrales,Carreña de Cabrales,Carreña de Cabreles,Carreña-Cabrales 43.31737 -4.84609 P PPL ES 34 O 33008 2262 188 Europe/Madrid 2011-09-11
-3126192 Carrascosa de la Sierra Carrascosa de la Sierra Carrascosa de la Sierra 41.89535 -2.28003 P PPLA3 ES 55 SO 42054 14 1186 Europe/Madrid 2012-03-04
-3126195 Carrascosa de Abajo Carrascosa de Abajo Carrascosa de Abajo 41.42338 -3.08955 P PPLA3 ES 55 SO 42053 32 1011 Europe/Madrid 2012-03-04
-3126197 Carrascosa Carrascosa Carrascosa,Carrascosa-Sierra 40.59092 -2.16305 P PPLA3 ES 54 CU 16057 113 1259 Europe/Madrid 2012-03-04
-3126205 Carrascal del Río Carrascal del Rio Carrascal del Rio,Carrascal del Río 41.36801 -3.89819 P PPLA3 ES 55 SG 40044 0 855 Europe/Madrid 2012-03-04
-3126207 Carrascal del Obispo Carrascal del Obispo Carrascal,Carrascal del Obispo 40.76376 -5.99913 P PPLA3 ES 55 SA 37088 229 897 Europe/Madrid 2012-03-04
-3126209 Carrascal de Barregas Carrascal de Barregas Carrascal de Barregas 40.97868 -5.76226 P PPLA3 ES 55 SA 37087 567 795 Europe/Madrid 2012-03-04
-3126214 Carranque Carranque 40.16976 -3.90092 P PPLA3 ES 54 TO 45038 2494 662 Europe/Madrid 2012-03-04
-3126222 Carral Carral Carral 43.2286 -8.35545 P PPLA3 ES 58 C 15021 5525 144 Europe/Madrid 2012-03-04
-3126237 Carracedelo Carracedelo Carracedelo 42.55602 -6.73317 P PPLA3 ES 55 LE 24038 3481 456 Europe/Madrid 2012-03-04
-3126241 Carpio de Azaba Carpio de Azaba Carpio de Azaba 40.59602 -6.6468 P PPLA3 ES 55 SA 37086 98 682 Europe/Madrid 2012-03-04
-3126243 Carpio Carpio Carpio,Corpie 41.21329 -5.10907 P PPLA3 ES 55 VA 47035 249 771 Europe/Madrid 2012-03-04
-3126254 Carnota Carnota 42.8233 -9.08913 P PPLA3 ES 58 C 15020 5171 18 Europe/Madrid 2012-03-04
-3126263 Cármenes Carmenes Carmenes,Cármenes 42.95863 -5.57346 P PPLA3 ES 55 LE 24037 425 1162 Europe/Madrid 2012-03-04
-3126276 Cariño Carino Carino,Cariño 43.74134 -7.86715 P PPLA3 ES 58 C 15901 4779 22 Europe/Madrid 2012-03-04
-3126278 Cariñena Carinena Carinena,Cariñena 41.33733 -1.22444 P PPLA3 ES 52 Z 50073 3591 599 Europe/Madrid 2012-03-04
-3126286 Carenas Carenas Carenas 41.27755 -1.79754 P PPLA3 ES 52 Z 50072 244 658 Europe/Madrid 2012-03-04
-3126293 Cardona Cardona Cardona 41.91371 1.67855 P PPL ES 56 B 08141 5226 513 Europe/Madrid 2010-04-04
-3126296 Cardiel de los Montes Cardiel de los Montes Cardiel de los Montes 40.06348 -4.65488 P PPLA3 ES 54 TO 45035 236 405 Europe/Madrid 2012-03-04
-3126302 Cardeñosa de Volpejera Cardenosa de Volpejera Cardenosa de Volpejera,Cardeñosa de Volpejera 42.23214 -4.70197 P PPLA3 ES 55 P 34046 51 825 Europe/Madrid 2012-03-04
-3126304 Cardeñosa Cardenosa Cardenosa,Cardeñosa 40.7424 -4.74579 P PPLA3 ES 55 AV 05049 532 1108 Europe/Madrid 2012-03-04
-3126306 Cárdenas Cardenas Cardenas,Cárdenas 42.37464 -2.76726 P PPLA3 ES 27 LO 26041 186 559 Europe/Madrid 2012-03-04
-3126308 Cardeñajimeno Cardenajimeno 42.33038 -3.62103 P PPLA3 ES 55 BU 09074 650 926 Europe/Madrid 2012-03-04
-3126310 Cardeñadijo Cardenadijo Cardenadijo,Cardeñadijo 42.30217 -3.66779 P PPLA3 ES 55 BU 09073 685 911 Europe/Madrid 2012-03-04
-3126317 Cardedeu Cardedeu Cardedeu 41.63976 2.35739 P PPL ES 56 B 08181 16596 199 Europe/Madrid 2012-01-19
-3126323 Carcedo de Burgos Carcedo de Burgos 42.28696 -3.62274 P PPLA3 ES 55 BU 09072 252 991 Europe/Madrid 2012-03-04
-3126324 Carcedo de Bureba Carcedo de Bureba Carcedo de Bureba 42.57818 -3.4983 P PPLA3 ES 55 BU 09071 45 750 Europe/Madrid 2012-03-04
-3126331 Carcastillo Carcastillo Carcastillo 42.37908 -1.44376 P PPLA3 ES 32 NA 31067 2657 354 Europe/Madrid 2012-03-04
-3126332 Cárcar Carcar Carcar,Cárcar 42.39314 -1.97904 P PPLA3 ES 32 NA 31066 1059 401 Europe/Madrid 2012-03-04
-3126335 Carcaboso Carcaboso Carcaboso 40.04968 -6.21376 P PPLA3 ES 57 CC 10047 1019 277 Europe/Madrid 2012-03-04
-3126344 Carbonero el Mayor Carbonero el Mayor Carbonero,Carbonero el Mavor,Carbonero el Mayor 41.12257 -4.26478 P PPLA3 ES 55 SG 40043 2495 915 Europe/Madrid 2012-03-04
-3126360 Carbellino Carbellino Carbellino 41.22975 -6.14901 P PPLA3 ES 55 ZA 49037 243 765 Europe/Madrid 2012-03-04
-3126369 Carballo Carballo Carballo,Karbal'o,Карбальо 43.213 -8.69104 P PPLA3 ES 58 C 15019 30990 111 Europe/Madrid 2012-03-04
-3126373 O Carballiño O Carballino 42.43163 -8.07899 P PPL ES 58 OR 32019 14114 402 Europe/Madrid 2010-04-22
-3126382 Carballedo Carballedo 42.52191 -7.8284 P PPLA3 ES 58 LU 27009 0 575 Europe/Madrid 2012-03-04
-3126384 Carballeda de Avia Carballeda de Avia 42.3214 -8.16456 P PPLA3 ES 58 OR 32018 1603 261 Europe/Madrid 2012-03-04
-3126397 Carbajosa de la Sagrada Carbajosa de la Sagrada Carbajosa de la Sagrada 40.93305 -5.65026 P PPLA3 ES 55 SA 37085 3467 794 Europe/Madrid 2012-03-04
-3126403 Carbajales de Alba Carbajales de Alba Carbajales,Carbajales de Alba 41.65347 -5.99706 P PPLA3 ES 55 ZA 49036 690 756 Europe/Madrid 2012-03-04
-3126417 Carazo Carazo Carazo 41.96832 -3.3531 P PPLA3 ES 55 BU 09070 45 1129 Europe/Madrid 2012-03-04
-3126443 Caracena Caracena Caracena 41.38321 -3.09146 P PPLA3 ES 55 SO 42052 17 1081 Europe/Madrid 2012-03-04
-3126450 Carabantes Carabantes Carabantes 41.55211 -1.9981 P PPLA3 ES 55 SO 42051 31 987 Europe/Madrid 2012-03-04
-3126454 Carabaña Carabana Carabana,Carabaña 40.25424 -3.23572 P PPLA3 ES 29 M 28035 1491 618 Europe/Madrid 2012-03-04
-3126462 Capmany Capmany Campmany,Capmany 42.37351 2.92026 P PPLA3 ES 56 GI 17042 487 109 Europe/Madrid 2012-03-04
-3126463 Capillas Capillas Capillas 42.01362 -4.89051 P PPLA3 ES 55 P 34045 100 761 Europe/Madrid 2012-03-04
-3126466 Capellades Capellades Capellades 41.53005 1.68651 P PPLA3 ES 56 B 08044 5187 324 Europe/Madrid 2012-03-04
-3126467 Capella Capella Capella 42.19635 0.39637 P PPLA3 ES 52 HU 22080 386 523 Europe/Madrid 2012-03-04
-3126473 Capdesaso Capdesaso Capdesaso 41.84286 -0.18316 P PPLA3 ES 52 HU 22079 155 312 Europe/Madrid 2012-03-04
-3126476 Caparroso Caparroso Caparroso 42.34129 -1.64962 P PPLA3 ES 32 NA 31065 2528 303 Europe/Madrid 2012-03-04
-3126479 Capafonts Capafonts Capafons,Capafonts 41.3 1.03333 P PPLA3 ES 56 T 43039 0 696 Europe/Madrid 2012-03-04
-3126497 Cantiveros Cantiveros Cantiveros 40.95216 -4.95455 P PPLA3 ES 55 AV 05048 183 879 Europe/Madrid 2012-03-04
-3126498 Cantimpalos Cantimpalos Cantimpalos 41.07406 -4.15988 P PPLA3 ES 55 SG 40041 1297 911 Europe/Madrid 2012-03-04
-3126503 Cantavieja Cantavieja Cantavieja 40.52642 -0.40558 P PPLA3 ES 52 TE 44059 750 1297 Europe/Madrid 2012-03-04
-3126506 Cantaracillo Cantaracillo Cantaracillo 40.90376 -5.16291 P PPLA3 ES 55 SA 37083 245 912 Europe/Madrid 2012-03-04
-3126510 Cantalpino Cantalpino Cantalpino 41.05341 -5.33045 P PPLA3 ES 55 SA 37082 1055 809 Europe/Madrid 2012-03-04
-3126511 Cantalojas Cantalojas Cantalojas 41.23472 -3.24629 P PPLA3 ES 54 GU 19065 142 1316 Europe/Madrid 2012-03-04
-3126512 Cantallops Cantallops Cantallops 42.42216 2.92524 P PPLA3 ES 56 GI 17041 269 204 Europe/Madrid 2012-03-04
-3126513 Cantalejo Cantalejo Cantalejo,Cantalojos 41.2576 -3.92791 P PPLA3 ES 55 SG 40040 3690 969 Europe/Madrid 2012-03-04
-3126515 Cantalapiedra Cantalapiedra Cantalapiedra 41.1263 -5.18351 P PPLA3 ES 55 SA 37081 1225 784 Europe/Madrid 2012-03-04
-3126516 Cantagallo Cantagallo Cantagallo 40.37239 -5.8189 P PPLA3 ES 55 SA 37080 248 922 Europe/Madrid 2012-03-04
-3126522 Cantabrana Cantabrana Cantabrana 42.73422 -3.46704 P PPLA3 ES 55 BU 09068 37 635 Europe/Madrid 2012-03-04
-3126528 Canredondo Canredondo Canredondo 40.81257 -2.49377 P PPLA3 ES 54 GU 19064 120 1164 Europe/Madrid 2012-03-04
-3126533 Cànoves i Samalús Canoves i Samalus Canoves,Canoves i Samalus,Cànoves,Cànoves i Samalús 41.68333 2.35 P PPL ES 56 B 08086 2375 307 357 Europe/Madrid 2010-04-04
-3126534 Canovelles Canovelles Canovellas,Canovelles 41.61667 2.28333 P PPL ES 56 B 08086 16023 153 Europe/Madrid 2010-04-22
-3126549 Cañizo Canizo Canizo,Cañizo 41.76955 -5.50198 P PPLA3 ES 55 ZA 49035 314 677 Europe/Madrid 2012-03-04
-3126550 Cañizares Canizares Canizares,Cañizares 40.5187 -2.19201 P PPLA3 ES 54 CU 16053 595 1061 Europe/Madrid 2012-03-04
-3126552 Cañizar del Olivar Canizar del Olivar Canizar del Olivar,Cañizar del Olivar 40.81622 -0.64567 P PPLA3 ES 52 TE 44063 110 961 Europe/Madrid 2012-03-04
-3126553 Cañizar Canizar Canizar,Cañizar 40.76763 -3.06399 P PPLA3 ES 54 GU 19066 104 802 Europe/Madrid 2012-03-04
-3126555 Cañizal Canizal Canizal,Cañizal 41.16654 -5.36828 P PPLA3 ES 55 ZA 49034 590 795 Europe/Madrid 2012-03-04
-3126560 Canillas de Río Tuerto Canillas de Rio Tuerto 42.3995 -2.84091 P PPLA3 ES 27 LO 26039 0 624 Europe/Madrid 2012-03-04
-3126561 Canillas de Esgueva Canillas de Esgueva Canillas de Esgueva 41.75464 -4.12502 P PPLA3 ES 55 VA 47034 104 815 Europe/Madrid 2012-03-04
-3126562 Canillas de Abajo Canillas de Abajo Canillas de Abajo 40.92266 -5.92905 P PPLA3 ES 55 SA 37079 101 813 Europe/Madrid 2012-03-04
-3126566 Canicosa de la Sierra Canicosa de la Sierra Canicosa,Canicosa de la Sierra 41.93673 -3.04089 P PPLA3 ES 55 BU 09067 565 1142 Europe/Madrid 2012-03-04
-3126571 Cangas de Onís Cangas de Onis Cangas de Onis,Cangas de Onís,Cangues d'Onis,Cangues d'Onís 43.3514 -5.12916 P PPLA3 ES 34 O 33012 6623 60 Europe/Madrid 2012-03-04
-3126572 Cangas del Narcea Cangas del Narcea Cangas,Cangas de Tineo 43.18333 -6.55 P PPLA3 ES 34 O 33011 14589 368 Europe/Madrid 2012-03-04
-3126577 Cangas Cangas Cangas,Cangas do Morrazo 42.26413 -8.78462 P PPLA3 ES 58 PO 36008 25748 14 Europe/Madrid 2012-03-04
-3126580 Canfranc Canfranc Canfran,Canfranc,Canfrán 42.71628 -0.52563 P PPLA3 ES 52 HU 22078 589 1056 Europe/Madrid 2012-03-04
-3126581 Canet lo Roig Canet lo Roig Canet lo Roig,Carnet lo Roig 40.55142 0.24308 P PPLA3 ES 60 CS 12036 903 333 Europe/Madrid 2012-03-04
-3126582 Cañete Canete Canete,Cañete 40.05 -1.65 P PPLA3 ES 54 CU 16052 872 1180 Europe/Madrid 2012-03-04
-3126584 Canet de Mar Canet de Mar Canet de Mar 41.59054 2.58116 P PPLA3 ES 56 B 08040 13548 31 Europe/Madrid 2012-03-04
-3126589 Canencia Canencia Canencia 40.90728 -3.73523 P PPLA3 ES 29 M 28034 442 1172 Europe/Madrid 2012-03-04
-3126616 Candín Candin Candin,Candín 42.81695 -6.72848 P PPLA3 ES 55 LE 24036 394 892 Europe/Madrid 2012-03-04
-3126617 Candilichera Candilichera Candilechera,Candilichera 41.70434 -2.30123 P PPLA3 ES 55 SO 42049 198 1004 Europe/Madrid 2012-03-04
-3126622 Candeleda Candeleda Candaleda,Candeleda 40.15521 -5.24046 P PPLA3 ES 55 AV 05047 5062 431 Europe/Madrid 2012-03-04
-3126624 Candelario Candelario 40.36806 -5.74499 P PPLA3 ES 55 SA 37078 1026 1088 Europe/Madrid 2012-03-04
-3126631 Candasnos Candasnos Candasnos 41.50213 0.06425 P PPLA3 ES 52 HU 22077 449 286 Europe/Madrid 2012-03-04
-3126663 Cañaveruelas Canaveruelas Canaveruelas,Cañaveruelas 40.40024 -2.63719 P PPLA3 ES 54 CU 16051 197 797 Europe/Madrid 2012-03-04
-3126664 Cañaveras Canaveras Canaveras,Cañaveras 40.35994 -2.39611 P PPLA3 ES 54 CU 16050 397 821 Europe/Madrid 2012-03-04
-3126668 Cañas Canas 42.3924 -2.84649 P PPLA3 ES 27 LO 26040 142 641 Europe/Madrid 2012-03-04
-3126673 Cañamares Canamares Canamares,Cañamares 40.45203 -2.23983 P PPLA3 ES 54 CU 16048 623 888 Europe/Madrid 2012-03-04
-3126674 Cañamaque Canamaque Canamaque,Cañamaque 41.44453 -2.23792 P PPLA3 ES 55 SO 42050 43 966 Europe/Madrid 2012-03-04
-3126683 Canales de la Sierra Canales de la Sierra Canales,Canales de la Sierra 42.14233 -3.02458 P PPLA3 ES 27 LO 26038 90 1020 Europe/Madrid 2012-03-04
-3126690 Canales Canales Canales 41.00331 -4.90163 P PPLA3 ES 55 AV 05046 54 857 Europe/Madrid 2012-03-04
-3126691 Canalejas de Peñafiel Canalejas de Penafiel Canalejas de Penafiel,Canalejas de Peñafiel 41.52513 -4.11546 P PPLA3 ES 55 VA 47033 308 903 Europe/Madrid 2012-03-04
-3126692 Canalejas del Arroyo Canalejas del Arroyo Canalejas,Canalejas del Arroyo 40.3685 -2.49408 P PPLA3 ES 54 CU 16045 398 795 Europe/Madrid 2012-03-04
-3126701 Cañada Vellida Canada Vellida Canada Vellida,Cañada Vellida 40.70811 -0.91489 P PPLA3 ES 52 TE 44062 50 1314 Europe/Madrid 2012-03-04
-3126705 Cañada de Benatanduz Canada de Benatanduz Canada de Benatanduz,Cañada de Benatanduz 40.57934 -0.53682 P PPLA3 ES 52 TE 44060 67 1437 Europe/Madrid 2012-03-04
-3126722 Camprodon Camprodon Camprodon,Camprodón 42.31185 2.36506 P PPLA3 ES 56 GI 17039 2435 948 Europe/Madrid 2012-03-04
-3126742 Camporrells Camporrells Camporrells 41.95856 0.52136 P PPLA3 ES 52 HU 22075 223 619 Europe/Madrid 2012-03-04
-3126748 Camporredondo Camporredondo Camporredondo 41.47333 -4.50503 P PPLA3 ES 55 VA 47032 200 802 Europe/Madrid 2012-03-04
-3126750 Campo Real Campo Real Campo Real,Camporreal 40.33333 -3.38333 P PPLA3 ES 29 M 28033 3772 780 Europe/Madrid 2012-03-04
-3126754 Camponaraya Camponaraya Camponaraya 42.57799 -6.6671 P PPLA3 ES 55 LE 24034 3500 492 Europe/Madrid 2012-03-04
-3126761 Campolara Campolara Campolara 42.11953 -3.4274 P PPLA3 ES 55 BU 09066 96 973 Europe/Madrid 2012-03-04
-3126767 Campo de Villavidel Campo de Villavidel Campo de Villavidel 42.43906 -5.52808 P PPLA3 ES 55 LE 24033 275 770 Europe/Madrid 2012-03-04
-3126768 Campo de San Pedro Campo de San Pedro Campo de San Pedro 41.42992 -3.54599 P PPLA3 ES 55 SG 40039 350 971 Europe/Madrid 2012-03-04
-3126777 Campo de Caso Campo de Caso Campo de Caso,Caso,Casu,San Juan el Real 43.1831 -5.34476 P PPL ES 34 O 33015 2071 581 Europe/Madrid 2012-01-19
-3126791 Campo Campo Campo,Pole 42.40956 0.39615 P PPLA3 ES 52 HU 22074 0 691 Europe/Madrid 2012-03-04
-3126799 Campisábalos Campisabalos Campisabalos,Campisábalos 41.26667 -3.13333 P PPLA3 ES 54 GU 19061 67 1359 Europe/Madrid 2011-07-31
-3126800 Campins Campins 41.71667 2.46667 P PPLA3 ES 56 B 08039 08202 353 255 Europe/Madrid 2012-03-04
-3126802 Campillos-Sierra Campillos-Sierra Campillo-Sierra,Campillos-Sierra 40.1 -1.7 P PPLA3 ES 54 CU 16044 76 1279 Europe/Madrid 2012-03-04
-3126805 Campillo de Ranas Campillo de Ranas Campillo de Ranas 41.08601 -3.31431 P PPLA3 ES 54 GU 19060 199 1100 Europe/Madrid 2012-03-04
-3126808 Campillo de Dueñas Campillo de Duenas Campillo de Duenas,Campillo de Dueñas 40.88376 -1.68505 P PPLA3 ES 54 GU 19059 108 1118 Europe/Madrid 2012-03-04
-3126809 Campillo de Azaba Campillo de Azaba Campillo de Azaba 40.50951 -6.68705 P PPLA3 ES 55 SA 37074 245 656 Europe/Madrid 2012-03-04
-3126810 Campillo de Aranda Campillo de Aranda Campillo de Aranda 41.61015 -3.73017 P PPLA3 ES 55 BU 09065 186 913 Europe/Madrid 2012-03-04
-3126811 Campillo de Aragón Campillo de Aragon Campillo,Campillo de Aragon,Campillo de Aragón 41.12648 -1.84393 P PPLA3 ES 52 Z 50071 169 1056 Europe/Madrid 2012-03-04
-3126835 Campdevànol Campdevanol Campdevanol,Campdevànol 42.22445 2.1686 P PPL ES 56 GI 17147 3349 803 739 Europe/Madrid 2010-04-04
-3126837 Campazas Campazas Campazas 42.14219 -5.49349 P PPLA3 ES 55 LE 24032 151 775 Europe/Madrid 2012-03-04
-3126838 Campaspero Campaspero Campaspero 41.49208 -4.19608 P PPLA3 ES 55 VA 47030 1475 905 Europe/Madrid 2012-03-04
-3126854 Landa Landa Campa,Landa,Urduliz,Urdúliz 43.38333 -2.95 P PPL ES 59 BI 48085 3190 71 Europe/Madrid 2007-01-18
-3126858 Camós Camos Camos,Camós 42.08776 2.76288 P PPLA3 ES 56 GI 17035 660 218 Europe/Madrid 2012-03-04
-3126863 Caminreal Caminreal Caminreal 40.83883 -1.32416 P PPLA3 ES 52 TE 44056 757 925 Europe/Madrid 2012-03-04
-3126864 Caminomorisco Caminomorisco Caminomorisco 40.32719 -6.28923 P PPL ES 57 CC 10050 1257 479 Europe/Madrid 2012-01-19
-3126888 Cambrils Cambrils Cambrils 41.07479 1.05244 P PPLA3 ES 56 T 43038 31720 28 Europe/Madrid 2012-03-04
-3126890 Cambre Cambre Cambre 43.29438 -8.34736 P PPLA3 ES 58 C 15017 23231 49 Europe/Madrid 2012-03-04
-3126899 Cambados Cambados 42.51222 -8.8131 P PPLA3 ES 58 PO 36006 13708 14 Europe/Madrid 2012-03-04
-3126909 Camarzana de Tera Camarzana de Tera Camarzana de Tera 41.9947 -6.02657 P PPLA3 ES 55 ZA 49033 962 735 Europe/Madrid 2012-03-04
-3126913 Camarma de Esteruelas Camarma de Esteruelas Camarma de Esteruelas 40.55032 -3.37295 P PPLA3 ES 29 M 28032 5032 644 Europe/Madrid 2012-03-04
-3126915 Camariñas Camarinas Camarinas,Camarines,Camariñas 43.13115 -9.18172 P PPLA3 ES 58 C 15016 6440 15 Europe/Madrid 2012-03-04
-3126916 Camarillas Camarillas Camarillas,Camarillos 40.61242 -0.75416 P PPLA3 ES 52 TE 44055 101 1322 Europe/Madrid 2012-03-04
-3126917 Camargo Camargo Camargo,Kamargo,Камарго 43.40744 -3.88498 P PPL ES 39 S 39052 31404 32 Europe/Madrid 2012-01-19
-3126918 Camarenilla Camarenilla Camarenilla 40.01672 -4.07624 P PPLA3 ES 54 TO 45032 512 512 Europe/Madrid 2012-03-04
-3126919 Camarena de la Sierra Camarena de la Sierra Camarena,Camarena de la Sierra 40.15 -1.03333 P PPLA3 ES 52 TE 44054 166 1344 Europe/Madrid 2012-03-04
-3126922 Camarena Camarena Camarena 40.09311 -4.11926 P PPLA3 ES 54 TO 45031 2704 576 Europe/Madrid 2012-03-04
-3126923 Camarasa Camarasa Camarasa,Camarassa 41.87486 0.87814 P PPLA3 ES 56 L 25062 916 322 294 Europe/Madrid 2012-03-04
-3126928 Camañas Camanas Camanas,Camañas 40.64308 -1.13752 P PPLA3 ES 52 TE 44053 152 1241 Europe/Madrid 2012-03-04
-3126931 Camaleño Camaleno Camaleno,Camaleño 43.15078 -4.69376 P PPLA3 ES 39 S 39015 0 424 Europe/Madrid 2012-03-04
-3126935 Calzadilla de Tera Calzadilla de Tera Calzadilla de Tera 41.97899 -6.08243 P PPLA3 ES 55 ZA 49032 459 757 Europe/Madrid 2012-03-04
-3126940 Calzadilla Calzadilla Calzadilla 40.06014 -6.53328 P PPLA3 ES 57 CC 10040 476 356 Europe/Madrid 2012-03-04
-3126944 Calzada de Valdunciel Calzada de Valdunciel Calzada de Valdunciel 41.08663 -5.70219 P PPLA3 ES 55 SA 37073 683 801 Europe/Madrid 2012-03-04
-3126946 Calzada de los Molinos Calzada de los Molinos Calzada de los Molinos 42.32724 -4.65293 P PPLA3 ES 55 P 34042 374 828 Europe/Madrid 2012-03-04
-3126947 Calzada del Coto Calzada del Coto 42.38613 -5.07809 P PPLA3 ES 55 LE 24031 284 823 Europe/Madrid 2012-03-04
-3126949 Calzada de Don Diego Calzada de Don Diego Calzada de Don Diego 40.905 -5.90279 P PPLA3 ES 55 SA 37072 221 816 Europe/Madrid 2012-03-04
-3126956 Calvos Calvos Calvos,Calvos de Randin 41.9479 -7.89604 P PPL ES 58 OR 32016 1187 901 Europe/Madrid 2012-01-19
-3126967 Calvarrasa de Arriba Calvarrasa de Arriba Calvarrasa de Arriba 40.90672 -5.59199 P PPLA3 ES 55 SA 37070 671 849 Europe/Madrid 2012-03-04
-3126968 Calvarrasa de Abajo Calvarrasa de Abajo Calvarrasa de Abajo 40.94638 -5.55258 P PPLA3 ES 55 SA 37069 1003 800 Europe/Madrid 2012-03-04
-3126971 Caltojar Caltojar Caltojar 41.40226 -2.76436 P PPLA3 ES 55 SO 42048 109 968 Europe/Madrid 2012-03-04
-3126974 Calonge Calonge 41.85869 3.07926 P PPLA3 ES 56 GI 17034 10637 15 Europe/Madrid 2012-03-04
-3126975 Calomarde Calomarde Calomarde 40.37264 -1.57434 P PPLA3 ES 52 TE 44052 73 1320 Europe/Madrid 2012-03-04
-3126984 Calmarza Calmarza Calmarza 41.1581 -1.91196 P PPLA3 ES 52 Z 50070 78 843 Europe/Madrid 2012-03-04
-3126997 Càlig Calig 40.46262 0.35521 P PPLA3 ES 60 CS 12034 1663 120 Europe/Madrid 2012-03-04
-3127002 Caleruega Caleruega Caleruega 41.82548 -3.48593 P PPLA3 ES 55 BU 09064 487 969 Europe/Madrid 2012-03-04
-3127007 Calella Calella Calella,Callella 41.61802 2.66781 P PPLA3 ES 56 B 08035 18627 14 Europe/Madrid 2012-03-04
-3127034 Caldas de Reis Caldas de Reis Caldas de Reves 42.6 -8.63333 P PPLA3 ES ES 58 PO 36005 10036 88 Europe/Madrid 2012-03-04
-3127035 Caldes de Montbui Caldes de Montbui Caldes de Montbui,Caldes de Montbuy 41.63333 2.16667 P PPLA3 ES 56 B 08033 16885 232 Europe/Madrid 2012-03-04
-3127036 Caldes de Malavella Caldes de Malavella Caldas de Malavella,Caldes de Malavella 41.83333 2.81667 P PPLA3 ES 56 GI 17033 0 110 Europe/Madrid 2012-03-04
-3127038 Caldes d'Estrac Caldes d'Estrac Caldas de Estrach,Caldes d'Estrac 41.56667 2.53333 P PPLA3 ES 56 B 08032 0 1 Europe/Madrid 2012-03-04
-3127042 Calcena Calcena Calcena 41.65515 -1.71764 P PPLA3 ES 52 Z 50069 66 830 Europe/Madrid 2012-03-04
-3127046 Calatorao Calatorao Calatorao 41.52228 -1.34702 P PPLA3 ES 52 Z 50068 3047 356 Europe/Madrid 2012-03-04
-3127047 Calatayud Calatayud Calataiud,Calatayu,Calatayud,Calatayú 41.35353 -1.64318 P PPLA3 ES 52 Z 50067 21933 542 Europe/Madrid 2012-03-04
-3127048 Calatañazor Calatanazor Calatanazor,Calatañazor 41.6988 -2.81837 P PPLA3 ES 55 SO 42046 60 1063 Europe/Madrid 2012-03-04
-3127052 Calanda Calanda 40.94153 -0.23243 P PPLA3 ES 52 TE 44051 3630 464 Europe/Madrid 2012-03-04
-3127059 Calamocha Calamocha Calamocha 40.91933 -1.2975 P PPLA3 ES 52 TE 44050 4313 891 Europe/Madrid 2012-03-04
-3127063 Calahorra de Boedo Calahorra de Boedo Calahorra,Calahorra de Boedo 42.57409 -4.38485 P PPLA3 ES 55 P 34041 123 871 Europe/Madrid 2012-03-04
-3127065 Calahorra Calahorra Calagorra,Calagurris,Calahorra,Kalagorria 42.30506 -1.96521 P PPLA3 ES 27 LO 26036 24787 352 Europe/Madrid 2012-03-04
-3127066 Calafell Calafell Calafell 41.19997 1.5683 P PPLA3 ES 56 T 43037 24265 46 Europe/Madrid 2012-03-04
-3127068 Calaf Calaf 41.73289 1.51375 P PPLA3 ES 56 B 08031 08170 3306 680 Europe/Madrid 2012-03-04
-3127071 Calaceite Calaceite Calaceit,Calaceite 41.01625 0.18876 P PPLA3 ES 52 TE 44049 1134 512 Europe/Madrid 2012-03-04
-3127099 Cadrete Cadrete Cadrete 41.55575 -0.96013 P PPLA3 ES 52 Z 50066 2296 304 Europe/Madrid 2012-03-04
-3127100 Cadreita Cadreita Cadreita 42.21667 -1.68333 P PPLA3 ES 32 NA 31064 2191 285 Europe/Madrid 2011-07-31
-3127117 Cadaqués Cadaques Cadaques,Cadaqués,Kadakes,Кадакес 42.28856 3.27706 P PPLA3 ES 56 GI 17032 2894 16 Europe/Madrid 2012-03-27
-3127121 Cadalso de los Vidrios Cadalso de los Vidrios Cadalso,Cadalso de los Vidrios 40.30067 -4.43348 P PPLA3 ES 29 M 28031 0 807 Europe/Madrid 2012-03-04
-3127122 Cadalso Cadalso Cadalso 40.23743 -6.54083 P PPLA3 ES 57 CC 10039 553 439 Europe/Madrid 2012-03-04
-3127135 Cacabelos Cacabelos Cacabelos 42.60021 -6.72373 P PPLA3 ES 55 LE 24030 5120 486 Europe/Madrid 2012-03-04
-3127147 Cabrils Cabrils Cabrils 41.5276 2.36996 P PPL ES 56 B 08214 6306 179 Europe/Madrid 2010-04-04
-3127150 Cabrillas Cabrillas Cabrillas 40.73977 -6.17873 P PPLA3 ES 55 SA 37068 476 799 Europe/Madrid 2012-03-04
-3127151 Cabrillanes Cabrillanes Cabrillanes 42.95343 -6.1485 P PPLA3 ES 55 LE 24029 966 1249 Europe/Madrid 2012-03-04
-3127156 Cabreros del Río Cabreros del Rio Cabreros del Rio,Cabreros del Río 42.40205 -5.54154 P PPLA3 ES 55 LE 24028 510 763 Europe/Madrid 2012-03-04
-3127157 Cabreros del Monte Cabreros del Monte Cabreros del Monte 41.84906 -5.27016 P PPLA3 ES 55 VA 47029 84 730 Europe/Madrid 2012-03-04
-3127158 Cabrero Cabrero Cabrero 40.11324 -5.89293 P PPLA3 ES 57 CC 10036 363 730 Europe/Madrid 2012-03-04
-3127159 Cabrerizos Cabrerizos Cabrerizos 40.97808 -5.60908 P PPLA3 ES 55 SA 37067 2919 825 Europe/Madrid 2012-03-04
-3127161 Cabrera de Mar Cabrera de Mar Cabrera de Mar 41.51667 2.4 P PPL ES 56 B 08219 4044 104 32 Europe/Madrid 2010-04-04
-3127173 Cabrejas del Pinar Cabrejas del Pinar Cabrejas del Pinar 41.79596 -2.84945 P PPLA3 ES 55 SO 42045 511 1155 Europe/Madrid 2012-03-04
-3127174 Cabrejas del Campo Cabrejas del Campo Cabrejas del Campo 41.68096 -2.26964 P PPLA3 ES 55 SO 42044 78 992 Europe/Madrid 2012-03-04
-3127182 Cabredo Cabredo 42.62966 -2.41133 P PPLA3 ES 32 NA 31063 106 656 Europe/Madrid 2011-07-31
-3127190 Cabra de Mora Cabra de Mora Cabra de Mora 40.31696 -0.80678 P PPLA3 ES 52 TE 44048 126 1082 Europe/Madrid 2012-03-04
-3127191 Cabra del Camp Cabra del Camp Cabra del Camp,Cabra del Campo 41.4 1.28333 P PPLA3 ES 56 T 43036 0 501 Europe/Madrid 2012-03-04
-3127203 Cabolafuente Cabolafuente Cabolafuente 41.21053 -2.04133 P PPLA3 ES 52 Z 50065 66 946 Europe/Madrid 2012-03-04
-3127209 Cabizuela Cabizuela Cabizuela 40.9009 -4.80212 P PPLA3 ES 55 AV 05045 122 887 Europe/Madrid 2012-03-04
-3127217 Cabezuela del Valle Cabezuela del Valle Cabezuela,Cabezuela del Valle 40.19364 -5.8065 P PPLA3 ES 57 CC 10035 2200 518 Europe/Madrid 2012-03-04
-3127219 Cabezuela Cabezuela Cabezuela 41.2359 -3.93173 P PPLA3 ES 55 SG 40036 722 954 Europe/Madrid 2012-03-04
-3127221 Cabezón de Valderaduey Cabezon de Valderaduey Cabezon de Valderaduey,Cabezón de Valderaduey 42.16793 -5.15892 P PPLA3 ES 55 VA 47028 52 762 Europe/Madrid 2012-03-04
-3127222 Cabezón de Liébana Cabezon de Liebana Cabezon de Liebana,Cabezón de Liébana 43.13437 -4.5763 P PPLA3 ES 39 S 39013 0 354 Europe/Madrid 2012-03-04
-3127223 Cabezón de la Sierra Cabezon de la Sierra Cabezon de la Sierra,Cabezón de la Sierra 41.93434 -3.24154 P PPLA3 ES 55 BU 09062 64 1022 Europe/Madrid 2012-03-04
-3127224 Cabezón de la Sal Cabezon de la Sal Cabezon de la Sal,Cabezón de la Sal 43.30824 -4.23571 P PPLA3 ES 39 S 39012 8057 130 Europe/Madrid 2012-03-04
-3127225 Cabezón de Cameros Cabezon de Cameros Cabezon de Cameros,Cabezón de Cameros 42.19716 -2.51989 P PPLA3 ES 27 LO 26035 28 940 Europe/Madrid 2012-03-04
-3127226 Cabezón Cabezon 41.73369 -4.6451 P PPL ES 55 VA 47186 2540 708 Europe/Madrid 2011-09-11
-3127230 Cabezas del Villar Cabezas del Villar Cabezas del Villar 40.71557 -5.20956 P PPLA3 ES 55 AV 05044 419 1045 Europe/Madrid 2012-03-04
-3127231 Cabezas del Pozo Cabezas del Pozo Cabezas del Pozo 41.00139 -4.95454 P PPLA3 ES 55 AV 05043 120 843 Europe/Madrid 2012-03-04
-3127233 Cabezas de Alambre Cabezas de Alambre Cabezas de Alambre 40.94218 -4.84184 P PPLA3 ES 55 AV 05042 191 899 Europe/Madrid 2012-03-04
-3127240 Cabeza del Caballo Cabeza del Caballo Cabeza del Caballo 41.12982 -6.55742 P PPLA3 ES 55 SA 37065 443 740 Europe/Madrid 2012-03-04
-3127244 Cabezabellosa de la Calzada Cabezabellosa de la Calzada Cabezabellosa de la Calzada,Cabezavellosa de la Calzada 41.04395 -5.48866 P PPLA3 ES 55 SA 37062 123 855 Europe/Madrid 2012-03-04
-3127245 Cabezabellosa Cabezabellosa Cabezabellosa 40.13763 -6.00086 P PPLA3 ES 57 CC 10034 437 864 Europe/Madrid 2012-03-04
-3127267 Cabanillas del Campo Cabanillas del Campo Cabanillas del Campo 40.63376 -3.22937 P PPLA3 ES 54 GU 19058 7194 673 Europe/Madrid 2012-03-04
-3127268 Cabanillas de la Sierra Cabanillas de la Sierra Cabanillas de la Sierra 40.82009 -3.62438 P PPLA3 ES 29 M 28029 621 905 Europe/Madrid 2012-03-04
-3127272 Cabanillas Cabanillas Cabanillas 42.03249 -1.52591 P PPLA3 ES 32 NA 31062 0 260 Europe/Madrid 2012-03-04
-3127274 Cabañes de Esgueva Cabanes de Esgueva Cabanes de Esgueva,Cabañes de Esgueva 41.83023 -3.78824 P PPLA3 ES 55 BU 09061 236 874 Europe/Madrid 2012-03-04
-3127277 Cabanes Cabanes Cabanes 40.156 0.04325 P PPLA3 ES 60 CS 12033 2609 276 Europe/Madrid 2012-03-04
-3127280 Cabanelles Cabanelles Cabanelles 42.23068 2.81997 P PPLA3 ES 56 GI 17031 0 191 Europe/Madrid 2012-03-04
-3127286 Cabañas de Sayago Cabanas de Sayago Cabanas de Sayago,Cabañas de Sayago 41.33333 -5.78333 P PPLA3 ES 55 ZA 49031 172 794 Europe/Madrid 2012-03-04
-3127287 Cabañas de Polendos Cabanas de Polendos Cabanas de Polendos,Cabañas de Polendos 41.06667 -4.1101 P PPLA3 ES 55 SG 40035 123 943 Europe/Madrid 2012-03-04
-3127288 Cabañas de la Sagra Cabanas de la Sagra Cabanas de la Sagra,Cabañas de la Sagra 40.0061 -3.9456 P PPLA3 ES 54 TO 45025 1767 551 Europe/Madrid 2012-03-04
-3127290 Cabañas de Ebro Cabanas de Ebro Cabanas de Ebro,Cabañas de Ebro 41.8 -1.2 P PPLA3 ES 52 Z 50064 523 226 Europe/Madrid 2012-03-04
-3127329 Caballar Caballar Caballar 41.12159 -3.9642 P PPLA3 ES 55 SG 40034 109 1006 Europe/Madrid 2012-03-04
-3127361 Busto de Bureba Busto de Bureba Busto de Bureba 42.6591 -3.26512 P PPLA3 ES 55 BU 09060 213 707 Europe/Madrid 2012-03-04
-3127377 Bustillo del Páramo de Carrión Bustillo del Paramo de Carrion Bustillo,Bustillo del Paramo de Carrion,Bustillo del Páramo de Carrión 42.35509 -4.7398 P PPLA3 ES 55 P 34039 79 857 Europe/Madrid 2012-03-04
-3127379 Bustillo del Páramo Bustillo del Paramo 42.44126 -5.7928 P PPLA3 ES 55 LE 24026 1630 848 Europe/Madrid 2012-03-04
-3127380 Bustillo del Oro Bustillo del Oro Bustillo del Oro 41.6746 -5.46158 P PPLA3 ES 55 ZA 49030 135 707 Europe/Madrid 2012-03-04
-3127382 Bustillo de la Vega Bustillo de la Vega Bustillo de la Vega 42.45605 -4.74115 P PPLA3 ES 55 P 34038 359 885 Europe/Madrid 2012-03-04
-3127383 Bustillo de Chaves Bustillo de Chaves Bustillo de Chaves 42.13114 -5.09168 P PPLA3 ES 55 VA 47026 96 817 Europe/Madrid 2012-03-04
-3127407 Bustarviejo Bustarviejo Bustarviejo 40.8572 -3.70766 P PPLA3 ES 29 M 28028 1727 1197 Europe/Madrid 2012-03-04
-3127410 Bustares Bustares Bustares 41.13333 -3.06667 P PPLA3 ES 54 GU 19057 98 1255 Europe/Madrid 2012-03-04
-3127450 Burón Buron Buron,Burón 43.02486 -5.05119 P PPLA3 ES 55 LE 24025 372 1107 Europe/Madrid 2012-03-04
-3127451 Burlata Burlata Burlada,Burlata 42.82562 -1.61671 P PPL ES 32 NA 31086 18178 439 Europe/Madrid 2010-11-04
-3127461 Burgos Burgos Burgos,Burgoso,burugosu,bwrghws,Бургос,بورغوس,ブルゴス 42.35 -3.7 P PPLA2 ES 55 BU 09059 178966 900 Europe/Madrid 2010-08-23
-3127463 Burgohondo Burgohondo Burgohondo 40.41416 -4.78509 P PPLA3 ES 55 AV 05041 1180 847 Europe/Madrid 2012-03-04
-3127471 Burganes de Valverde Burganes de Valverde Burganes de Valverde 41.9213 -5.78244 P PPLA3 ES 55 ZA 49029 845 709 Europe/Madrid 2012-03-04
-3127473 Bureta Bureta Bureta 41.81572 -1.48819 P PPLA3 ES 52 Z 50061 297 420 Europe/Madrid 2012-03-04
-3127476 Burela de Cabo Burela de Cabo Burela,Burela de Cabo 43.65 -7.4 P PPL ES 58 LU 27902 8338 132 Europe/Madrid 2012-01-19
-3127487 Burbáguena Burbaguena Burbaguena,Burbáguena 41.01783 -1.33825 P PPLA3 ES 52 TE 44047 334 823 Europe/Madrid 2012-03-04
-3127489 Buñuel Bunuel Bunuel,Buñuel 41.98009 -1.44503 P PPLA3 ES 32 NA 31057 2402 246 Europe/Madrid 2012-03-04
-3127491 Buniel Buniel 42.31197 -3.8223 P PPLA3 ES 55 BU 09058 269 823 Europe/Madrid 2012-03-04
-3127504 Bulbuente Bulbuente Bulbuente 41.8197 -1.60238 P PPLA3 ES 52 Z 50060 232 528 Europe/Madrid 2012-03-04
-3127507 Bujaraloz Bujaraloz Bujaraloz 41.49806 -0.1529 P PPLA3 ES 52 Z 50059 997 334 Europe/Madrid 2012-03-04
-3127516 Bujalaro Bujalaro Bujalaro 40.93687 -2.88333 P PPLA3 ES 54 GU 19055 80 847 Europe/Madrid 2012-03-04
-3127521 Buitrago del Lozoya Buitrago del Lozoya Buitrago,Buitrago de Lozoya,Buitrago del Lozoya,Buitrago del Lozoyo 40.9909 -3.63365 P PPLA3 ES 29 M 28027 1811 973 Europe/Madrid 2012-03-04
-3127522 Buitrago Buitrago Buitrago 41.84735 -2.40858 P PPLA3 ES 55 SO 42042 55 1034 Europe/Madrid 2012-03-04
-3127529 Bugedo Bugedo Bugedo,Bujedo 42.64912 -3.01786 P PPLA3 ES 55 BU 09057 150 537 Europe/Madrid 2012-03-04
-3127538 Bueu Bueu Buen,Bueu 42.32458 -8.78497 P PPLA3 ES 58 PO 36004 12331 11 Europe/Madrid 2012-03-04
-3127547 Buendía Buendia 40.36643 -2.75645 P PPLA3 ES 54 CU 16041 474 744 Europe/Madrid 2012-03-04
-3127549 Buenavista de Valdavia Buenavista de Valdavia Buenavista de Valdavia 42.63788 -4.61446 P PPLA3 ES 55 P 34037 431 926 Europe/Madrid 2012-03-04
-3127550 Buenavista Buenavista Buenavista 40.76763 -5.61139 P PPLA3 ES 55 SA 37060 157 944 Europe/Madrid 2012-03-04
-3127551 Buenaventura Buenaventura Buenaventura 40.17705 -4.85003 P PPLA3 ES 54 TO 45022 500 432 Europe/Madrid 2012-03-04
-3127552 Buenamadre Buenamadre Buenamadre 40.85705 -6.24987 P PPLA3 ES 55 SA 37059 152 757 Europe/Madrid 2012-03-04
-3127555 Bueña Buena Buena,Bueña 40.70881 -1.26742 P PPLA3 ES 52 TE 44046 73 1231 Europe/Madrid 2012-03-04
-3127563 Budia Budia Budia 40.62734 -2.75846 P PPLA3 ES 54 GU 19054 271 913 Europe/Madrid 2012-03-04
-3127568 Buciegas Buciegas Buciegas 40.33622 -2.4625 P PPLA3 ES 54 CU 16038 62 821 Europe/Madrid 2012-03-04
-3127574 Bubierca Bubierca Bubierca 41.31482 -1.85386 P PPLA3 ES 52 Z 50058 91 662 Europe/Madrid 2012-03-04
-3127575 Buberos Buberos Buberos 41.64692 -2.19406 P PPLA3 ES 55 SO 42041 43 1019 Europe/Madrid 2012-03-04
-3127587 Brunyola Brunyola Brunola,Brunyola,Bruñola 41.9 2.68333 P PPLA3 ES 56 GI 17028 0 265 Europe/Madrid 2012-03-04
-3127588 Brunete Brunete Brunete 40.40532 -3.9985 P PPLA3 ES 29 M 28026 7799 654 Europe/Madrid 2012-03-04
-3127605 Broto Broto 42.60434 -0.12351 P PPLA3 ES 52 HU 22069 509 895 Europe/Madrid 2012-03-04
-3127608 Bronchales Bronchales 40.51171 -1.58821 P PPLA3 ES 52 TE 44045 452 1582 Europe/Madrid 2012-03-04
-3127611 Briviesca Briviesca Bribiesca,Briviesca 42.54993 -3.32315 P PPLA3 ES 55 BU 09056 6880 725 Europe/Madrid 2012-03-04
-3127614 Briones Briones 42.54397 -2.78572 P PPLA3 ES 27 LO 26034 848 505 Europe/Madrid 2012-03-04
-3127621 Brincones Brincones Brincones 41.1134 -6.34865 P PPLA3 ES 55 SA 37058 87 769 Europe/Madrid 2012-03-04
-3127623 Briñas Brinas Brinas,Briñas 42.60106 -2.83192 P PPLA3 ES 27 LO 26033 231 451 Europe/Madrid 2012-03-04
-3127625 Brime de Urz Brime de Urz Brime de Urz,San Esteban 42.03794 -5.87326 P PPLA3 ES 55 ZA 49028 147 760 719 Europe/Madrid 2012-03-04
-3127626 Brime de Sog Brime de Sog Brime de Sog 42.06162 -6.04791 P PPLA3 ES 55 ZA 49027 203 764 Europe/Madrid 2012-03-04
-3127628 Brihuega Brihuega Brihuega 40.76049 -2.86966 P PPLA3 ES 54 GU 19053 2776 918 Europe/Madrid 2012-03-04
-3127631 Brieva de Cameros Brieva de Cameros Brieva de Cameros 42.16462 -2.7945 P PPLA3 ES 27 LO 26032 72 978 Europe/Madrid 2012-03-04
-3127633 Brieva Brieva Brieva 41.03483 -4.05364 P PPLA3 ES 55 SG 40033 66 1092 Europe/Madrid 2012-03-04
-3127645 Bretocino Bretocino Bretocino 41.8843 -5.75473 P PPLA3 ES 55 ZA 49026 284 716 Europe/Madrid 2012-03-04
-3127646 Bretó Breto Breto,Bretó 41.87917 -5.73902 P PPLA3 ES 55 ZA 49025 236 709 Europe/Madrid 2012-03-04
-3127655 Breda Breda 41.74833 2.55964 P PPLA3 ES 56 GI 17027 17146 3599 169 Europe/Madrid 2012-03-04
-3127658 Brea de Tajo Brea de Tajo Brea,Brea de Tajo 40.23333 -3.1 P PPLA3 ES 29 M 28025 481 676 Europe/Madrid 2011-07-31
-3127659 Brea de Aragón Brea de Aragon Brea,Brea de Aragon,Brea de Aragón 41.52387 -1.60261 P PPLA3 ES 52 Z 50057 2022 559 Europe/Madrid 2012-03-04
-3127662 Brazuelo Brazuelo Brazuelo 42.49702 -6.15734 P PPLA3 ES 55 LE 24023 328 970 Europe/Madrid 2012-03-04
-3127665 Brazacorta Brazacorta Brazacorta 41.71737 -3.36711 P PPLA3 ES 55 BU 09055 87 912 Europe/Madrid 2012-03-04
-3127670 Braojos Braojos Braojos 41.0404 -3.64329 P PPLA3 ES 29 M 28024 193 1189 Europe/Madrid 2012-03-04
-3127676 Brañosera Branosera Branosera,Brañosera 42.9362 -4.30833 P PPLA3 ES 55 P 34036 269 1218 Europe/Madrid 2012-03-04
-3127722 Brabos Brabos 40.77846 -4.93934 P PPLA3 ES 55 AV 05039 72 983 Europe/Madrid 2012-03-04
-3127730 Bóveda del Río Almar Boveda del Rio Almar Boveda del Rio Almar,Bóveda del Río Almar 40.8572 -5.2103 P PPLA3 ES 55 SA 37057 290 883 Europe/Madrid 2012-03-04
-3127736 Bóveda Boveda 42.6246 -7.4767 P PPLA3 ES 58 LU 27008 0 366 Europe/Madrid 2012-03-04
-3127757 Botorrita Botorrita Botorrita 41.50706 -1.03104 P PPLA3 ES 52 Z 50056 474 393 Europe/Madrid 2012-03-04
-3127762 Botarell Botarell Botarell 41.13627 0.98919 P PPLA3 ES 56 T 43033 933 198 Europe/Madrid 2012-03-04
-3127763 Bot Bot Bot 41.00916 0.38392 P PPLA3 ES 56 T 43032 768 294 Europe/Madrid 2012-03-04
-3127773 Borriol Borriol Borriol 40.04249 -0.07025 P PPLA3 ES 60 CS 12031 4321 199 Europe/Madrid 2012-03-04
-3127778 Borrenes Borrenes Borrenes 42.49019 -6.72338 P PPLA3 ES 55 LE 24022 452 556 Europe/Madrid 2012-03-04
-3127779 Borredà Borreda Borreda,Borredà 42.13564 1.99428 P PPLA3 ES 56 B 08024 08024 0 859 Europe/Madrid 2012-03-04
-3127781 Borrassà Borrassa Borrassa,Borrassà 42.22316 2.9261 P PPLA3 ES 56 GI 17026 581 75 Europe/Madrid 2012-03-04
-3127785 Borox Borox Borox 40.06795 -3.73804 P PPLA3 ES 54 TO 45021 2596 589 Europe/Madrid 2012-03-04
-3127790 Borobia Borobia Borobia 41.66481 -1.89615 P PPLA3 ES 55 SO 42039 340 1137 Europe/Madrid 2012-03-04
-3127797 les Borges del Camp les Borges del Camp Borjas del Campo,Les Borges del Camp,les Borges del Camp 41.16667 1.01667 P PPL ES 56 T 43033 1842 217 Europe/Madrid 2010-04-04
-3127799 Borjabad Borjabad Borjabad 41.55245 -2.36625 P PPLA3 ES 55 SO 42038 56 1011 Europe/Madrid 2012-03-04
-3127800 Borja Borja Borja 41.83412 -1.53271 P PPLA3 ES 52 Z 50055 4375 458 Europe/Madrid 2012-03-04
-3127813 Bordón Bordon Bordon,Bordón 40.6865 -0.32216 P PPLA3 ES 52 TE 44044 142 828 834 Europe/Madrid 2012-03-04
-3127814 Bordils Bordils Bordils 42.04336 2.91088 P PPLA3 ES 56 GI 17025 1434 45 Europe/Madrid 2012-03-04
-3127817 Bordalba Bordalba Bordalba 41.41667 -2.06667 P PPLA3 ES 52 Z 50054 92 915 Europe/Madrid 2011-07-31
-3127823 Borau Borau 42.65858 -0.58846 P PPLA3 ES 52 HU 22068 74 991 Europe/Madrid 2012-03-04
-3127826 Boquiñeni Boquineni Boquineni,Boquiñeni 41.84804 -1.25246 P PPLA3 ES 52 Z 50053 1026 227 Europe/Madrid 2012-03-04
-3127839 Bonilla de la Sierra Bonilla de la Sierra Bonilla,Bonilla de la Sierra 40.53063 -5.26452 P PPLA3 ES 55 AV 05038 161 1080 Europe/Madrid 2012-03-04
-3127849 Bonastre Bonastre Bonastre 41.22031 1.43936 P PPLA3 ES 56 T 43030 459 173 Europe/Madrid 2012-03-04
-3127850 Boñar Bonar Bonar,Boñar 42.8668 -5.32386 P PPLA3 ES 55 LE 24021 2299 975 Europe/Madrid 2012-03-04
-3127851 Bonansa Bonansa Bonansa 42.42691 0.66692 P PPLA3 ES 52 HU 22067 106 1244 Europe/Madrid 2012-03-04
-3127854 Bolvir Bolvir 42.41775 1.87986 P PPLA3 ES 56 GI 17024 17024 0 1114 Europe/Madrid 2012-03-04
-3127858 Boltaña Boltana 42.4455 0.06802 P PPLA3 ES 52 HU 22066 897 654 Europe/Madrid 2012-03-04
-3127876 Bolaños de Campos Bolanos de Campos Bolanos de Campos,Bolaños de Campos 42.0068 -5.28428 P PPLA3 ES 55 VA 47024 410 712 Europe/Madrid 2012-03-04
-3127889 Boiro Boiro Boiro 42.65 -8.9 P PPLA3 ES 58 C 15011 18883 39 Europe/Madrid 2012-03-04
-3127891 Boimorto Boimorto Boimorto,Santiago 43 -8.13333 P PPL ES 58 C 15006 2470 482 Europe/Madrid 2012-01-19
-3127896 Bohoyo Bohoyo Bohoyo 40.31584 -5.44294 P PPLA3 ES 55 AV 05037 402 1141 Europe/Madrid 2012-03-04
-3127900 Bogajo Bogajo Bogajo 40.9071 -6.53065 P PPLA3 ES 55 SA 37055 194 715 Europe/Madrid 2012-03-04
-3127913 Boecillo Boecillo 41.5409 -4.6994 P PPLA3 ES 55 VA 47023 2575 726 Europe/Madrid 2012-03-04
-3127921 Bocos de Duero Bocos de Duero 41.62339 -4.07048 P PPLA3 ES 55 VA 47022 72 766 Europe/Madrid 2012-03-04
-3127925 Bocigas Bocigas Bocigas 41.2307 -4.68128 P PPLA3 ES 55 VA 47021 128 773 Europe/Madrid 2012-03-04
-3127929 Boceguillas Boceguillas Boceguillas 41.33641 -3.63828 P PPLA3 ES 55 SG 40032 678 963 Europe/Madrid 2012-03-04
-3127933 Boca de Huérgano Boca de Huergano Boca de Huergano,Boca de Huérgano 42.97287 -4.92419 P PPLA3 ES 55 LE 24020 564 1112 Europe/Madrid 2012-03-04
-3127935 Boborás Boboras Boboras,Boborás 42.43332 -8.14431 P PPLA3 ES 58 OR 32013 3154 429 Europe/Madrid 2012-03-04
-3127944 Bovera Bovera Bobera,Bovera 41.31667 0.65 P PPLA3 ES 56 L 25056 0 310 Europe/Madrid 2012-03-04
-3127945 Bobadilla del Campo Bobadilla del Campo Bobadilla del Campo 41.20432 -5.02294 P PPLA3 ES 55 VA 47020 379 761 Europe/Madrid 2012-03-04
-3127946 Bobadilla Bobadilla Bobadilla 42.31873 -2.75992 P PPLA3 ES 27 LO 26031 136 586 Europe/Madrid 2012-03-04
-3127952 Boalo Boalo Boalo 40.71602 -3.91656 P PPL ES 29 M 28090 5094 928 Europe/Madrid 2012-01-19
-3127954 Boal Boal Boal 43.432 -6.81513 P PPLA3 ES 34 O 33007 2162 412 Europe/Madrid 2012-03-04
-3127958 Boadilla del Monte Boadilla del Monte 40.405 -3.87835 P PPLA3 ES 29 M 28022 43414 678 Europe/Madrid 2012-03-04
-3127959 Boadilla del Camino Boadilla del Camino Boadilla del Camino 42.25934 -4.34525 P PPLA3 ES 55 P 34034 160 783 Europe/Madrid 2012-03-04
-3127963 Boada de Campos Boada de Campos Boada de Campos 41.98957 -4.8773 P PPLA3 ES 55 P 34033 22 749 Europe/Madrid 2012-03-04
-3127964 Boada Boada Boada 40.8157 -6.30611 P PPLA3 ES 55 SA 37052 359 780 Europe/Madrid 2012-03-04
-3127967 Bliecos Bliecos Bliecos 41.5279 -2.27135 P PPLA3 ES 55 SO 42037 42 1040 Europe/Madrid 2012-03-04
-3127968 Blesa Blesa Blesa 41.0515 -0.885 P PPLA3 ES 52 TE 44043 144 778 Europe/Madrid 2012-03-04
-3127972 Blascosancho Blascosancho 40.87744 -4.63743 P PPLA3 ES 55 AV 05035 134 906 Europe/Madrid 2012-03-04
-3127974 Blascomillán Blascomillan Blascomillan,Blascomillán 40.80146 -5.08703 P PPLA3 ES 55 AV 05033 257 949 Europe/Madrid 2012-03-04
-3127978 Blanes Blanes Blanes,Бланес 41.67419 2.79036 P PPLA3 ES 56 GI 17023 40047 16 Europe/Madrid 2012-03-04
-3127979 Blancos Blancos Blancos 41.99652 -7.75175 P PPL ES 58 OR 32012 1125 804 Europe/Madrid 2012-01-19
-3127983 Blancas Blancas Blancas 40.81392 -1.48208 P PPLA3 ES 52 TE 44042 165 1050 Europe/Madrid 2012-03-04
-3127990 Blacos Blacos Blacos 41.6809 -2.85826 P PPLA3 ES 55 SO 42036 57 1000 Europe/Madrid 2012-03-04
-3128001 Bisimbre Bisimbre Bisimbre 41.85607 -1.44268 P PPLA3 ES 52 Z 50052 115 321 Europe/Madrid 2012-03-04
-3128003 Biscarrués Biscarrues Biscarrues,Biscarrués 42.22867 -0.74968 P PPLA3 ES 52 HU 22063 233 465 Europe/Madrid 2012-03-04
-3128005 la Bisbal del Penedès la Bisbal del Penedes Bisbal del Panades,Bisbal del Panadés,la Bisbal del Penedes,la Bisbal del Penedès 41.28333 1.48333 P PPLA3 ES 56 T 43028 0 189 Europe/Madrid 2012-03-04
-3128008 Bisaurri Bisaurri Bisagorri,Bisaurri,Bissauerri,Bissaürri 42.49677 0.50647 P PPLA3 ES 52 HU 22062 259 1119 Europe/Madrid 2012-03-04
-3128009 Biota Biota Biota 42.26214 -1.18734 P PPLA3 ES 52 Z 50051 1158 493 Europe/Madrid 2012-03-04
-3128015 Binéfar Binefar Binefar,Binèfar,Binéfar 41.85141 0.29433 P PPLA3 ES 52 HU 22061 8890 285 Europe/Madrid 2012-03-04
-3128017 Binaced Binaced Binaced,Binazed 41.82564 0.20084 P PPLA3 ES 52 HU 22060 1607 283 Europe/Madrid 2012-03-04
-3128019 Bimenes Bimenes Bimenes,San Emeterio 43.31667 -5.55 P PPL ES 34 O 33040 1948 587 Europe/Madrid 2012-01-19
-3128026 Bilbao Bilbao BIO,Bil'bao,Bilbao,Bilbau,Bilbaum,Bilbaw,Bilbo,Bilbo / Bilbao,Bilmpao,El Bocho,Gorad Bil'baa,bi er ba e,bil ba xo,bilba'o,bilbao,birubao,blbaw,bylbayw,Μπιλμπάο,Билбао,Бильбао,Більбао,Горад Більбаа,בילבאו,بلباو,بیلبائو,बिल्बाओ,บิลบาโอ,ბილბაო,ビルバオ,毕尔巴鄂,빌바오 43.26271 -2.92528 P PPLA2 ES 59 BI 48020 354860 20 Europe/Madrid 2011-06-16
-3128027 Bijuesca Bijuesca Bijuesca 41.54083 -1.92039 P PPLA3 ES 52 Z 50050 99 933 Europe/Madrid 2012-03-04
-3128030 Bigues i Riells Bigues i Riells Bigues,Bigues i Riells 41.68333 2.23333 P PPL ES 56 B 08023 7175 335 377 Europe/Madrid 2010-04-04
-3128034 Biescas Biescas Biescas 42.62897 -0.32135 P PPLA3 ES 52 HU 22059 0 860 Europe/Madrid 2012-03-04
-3128037 Bierge Bierge Biarche,Bierge 42.16216 -0.08326 P PPLA3 ES 52 HU 22058 247 602 593 Europe/Madrid 2012-03-04
-3128039 Bielsa Bielsa Bielsa 42.63346 0.21858 P PPLA3 ES 52 HU 22057 462 1034 Europe/Madrid 2012-03-04
-3128041 Biel Biel Biel 42.38763 -0.94154 P PPLA3 ES 52 Z 50901 215 766 Europe/Madrid 2012-03-04
-3128051 Bezas Bezas Bezas 40.33076 -1.32511 P PPLA3 ES 52 TE 44041 78 1166 Europe/Madrid 2012-03-04
-3128052 Bezares Bezares Bezares 42.37036 -2.67076 P PPLA3 ES 27 LO 26030 0 696 Europe/Madrid 2012-03-04
-3128059 Beuda Beuda 42.23722 2.70942 P PPLA3 ES 56 GI 17021 77 336 Europe/Madrid 2012-03-04
-3128066 Beteta Beteta Beteta 40.57191 -2.07588 P PPLA3 ES 54 CU 16035 402 1220 Europe/Madrid 2012-03-04
-3128068 Betelu Betelu 43.02555 -1.98029 P PPLA3 ES 32 NA 31055 338 242 Europe/Madrid 2012-03-04
-3128071 Betanzos Betanzos Betanzos 43.28042 -8.21467 P PPLA3 ES 58 C 15009 13680 2 Europe/Madrid 2012-03-04
-3128090 Bescanó Bescano Bescano,Bescanó 41.96602 2.73922 P PPLA3 ES 56 GI 17020 3767 106 Europe/Madrid 2012-03-04
-3128096 Besalú Besalu Besalu,Besalú 42.19893 2.69953 P PPLA3 ES 56 GI 17019 2213 159 Europe/Madrid 2012-03-04
-3128097 Berzosilla Berzosilla Berzosilla 42.78053 -4.03753 P PPLA3 ES 55 P 34032 62 818 Europe/Madrid 2012-03-04
-3128099 Berzosa del Lozoya Berzosa del Lozoya Berzosa del Lozoya 40.9732 -3.52009 P PPLA3 ES 29 M 28020 184 1117 Europe/Madrid 2012-03-04
-3128100 Berzosa de Bureba Berzosa de Bureba Berzosa de Bureba 42.62678 -3.26652 P PPLA3 ES 55 BU 09052 46 676 Europe/Madrid 2012-03-04
-3128109 Berrueces Berrueces Berrueces 41.94606 -5.09693 P PPLA3 ES 55 VA 47019 102 772 Europe/Madrid 2012-03-04
-3128121 Berrocalejo de Aragona Berrocalejo de Aragona Berrocalejo de Aragona 40.69436 -4.59474 P PPLA3 ES 55 AV 05030 50 1089 Europe/Madrid 2012-03-04
-3128122 Berrocal de Salvatierra Berrocal de Salvatierra Berrocal de Salvatierra 40.63331 -5.69005 P PPLA3 ES 55 SA 37051 120 900 Europe/Madrid 2012-03-04
-3128124 Berrocal de Huebra Berrocal de Huebra Berrocal de Huebra 40.71864 -6.00054 P PPLA3 ES 55 SA 37050 105 897 Europe/Madrid 2012-03-04
-3128127 Berrobi Berrobi Berrobi 43.14518 -2.02623 P PPLA3 ES 59 SS 20023 575 155 Europe/Madrid 2012-03-04
-3128129 Berriz Berriz Berriz,Bérriz 43.16667 -2.56667 P PPLA3 ES 59 BI 48019 4496 190 Europe/Madrid 2012-03-04
-3128130 Berriozar Berriozar Berriozar 42.83067 -1.66648 P PPLA3 ES 32 NA 31903 8199 431 Europe/Madrid 2012-03-04
-3128133 Berriobeiti Berriobeiti Berriobeiti,Berrioplano 42.85 -1.7 P PPL ES 32 NA 31193 1810 426 Europe/Madrid 2007-01-31
-3128136 Berriatua Berriatua Berriatua,Berriatúa 43.31667 -2.46667 P PPLA3 ES 59 BI 48018 1123 129 Europe/Madrid 2012-03-04
-3128158 Berninches Berninches Berninches 40.57106 -2.80121 P PPLA3 ES 54 GU 19051 122 929 Europe/Madrid 2012-03-04
-3128163 Bernardos Bernardos Bernardos 41.12787 -4.35119 P PPLA3 ES 55 SG 40030 658 905 Europe/Madrid 2012-03-04
-3128170 Bermillo de Sayago Bermillo de Sayago Bermillo de Sayago 41.36648 -6.11223 P PPLA3 ES 55 ZA 49023 1308 794 Europe/Madrid 2012-03-04
-3128174 Bermeo Bermeo Bermeo,Bermio 43.42088 -2.72152 P PPLA3 ES 59 BI 48017 16937 29 Europe/Madrid 2012-03-04
-3128176 Bermellar Bermellar Bermellar 40.99918 -6.67014 P PPLA3 ES 55 SA 37049 190 642 Europe/Madrid 2012-03-04
-3128179 Berlangas de Roa Berlangas de Roa Berlangas de Roa 41.68913 -3.87284 P PPLA3 ES 55 BU 09051 219 783 Europe/Madrid 2012-03-04
-3128180 Berlanga del Bierzo Berlanga del Bierzo Berlanga del Bierzo 42.73104 -6.60565 P PPLA3 ES 55 LE 24019 412 805 Europe/Madrid 2012-03-04
-3128181 Berlanga de Duero Berlanga de Duero Berlanga,Berlanga de Duero,Berlanga del Duero 41.4656 -2.86148 P PPLA3 ES 55 SO 42035 1091 937 Europe/Madrid 2012-03-04
-3128184 Beriáin Beriain Beriain,Beriáin 42.73348 -1.64448 P PPLA3 ES 32 NA 31905 3156 495 Europe/Madrid 2012-03-04
-3128190 Bergondo Bergondo Bergondo,San Salvador 43.31667 -8.23333 P PPLA3 ES 58 C 15008 6446 113 Europe/Madrid 2012-03-04
-3128191 Berge Berge Berge 40.85791 -0.42709 P PPLA3 ES 52 TE 44040 247 727 Europe/Madrid 2012-03-04
-3128193 Bergasillas Bajera Bergasillas Bajera Bergasilla Bajera,Bergasillas Bajera 42.24462 -2.1583 P PPLA3 ES 27 LO 26029 31 834 Europe/Madrid 2012-03-04
-3128194 Bergasa Bergasa Bergasa 42.25285 -2.13221 P PPLA3 ES 27 LO 26028 150 655 Europe/Madrid 2012-03-04
-3128201 Berga Berga Berga 42.10429 1.84628 P PPL ES 56 B 08268 17160 720 Europe/Madrid 2010-04-22
-3128213 Berdejo Berdejo Berdejo 41.56133 -1.94431 P PPLA3 ES 52 Z 50047 68 985 Europe/Madrid 2012-03-04
-3128218 Bercimuel Bercimuel 41.39925 -3.57051 P PPLA3 ES 55 SG 40029 85 967 Europe/Madrid 2012-03-04
-3128221 Bercianos del Real Camino Bercianos del Real Camino Bercianos del Real Camino 42.38732 -5.14462 P PPLA3 ES 55 LE 24018 205 856 Europe/Madrid 2012-03-04
-3128222 Bercianos del Páramo Bercianos del Paramo Bercianos 42.38017 -5.70834 P PPLA3 ES 55 LE 24017 742 815 Europe/Madrid 2012-03-04
-3128225 Bercial de Zapardiel Bercial de Zapardiel Bercial de Zapardiel 41.04675 -4.9691 P PPLA3 ES 55 AV 05026 278 808 Europe/Madrid 2012-03-04
-3128226 Bercial Bercial Bercial 40.90711 -4.43638 P PPLA3 ES 55 SG 40028 116 974 Europe/Madrid 2012-03-04
-3128227 Berceruelo Berceruelo Berceruelo 41.58032 -5.03267 P PPLA3 ES 55 VA 47018 41 775 Europe/Madrid 2012-03-04
-3128228 Bercero Bercero Bercero 41.56397 -5.0558 P PPLA3 ES 55 VA 47017 243 741 Europe/Madrid 2012-03-04
-3128229 Berceo Berceo Berceo 42.33906 -2.85239 P PPLA3 ES 27 LO 26027 0 728 Europe/Madrid 2012-03-04
-3128234 Berbinzana Berbinzana Berbinzana 42.52779 -1.83419 P PPLA3 ES 32 NA 31053 726 320 Europe/Madrid 2012-03-04
-3128237 Berberana Berberana Berberana 42.91784 -3.06063 P PPLA3 ES 55 BU 09050 80 609 Europe/Madrid 2012-03-04
-3128240 Berbegal Berbegal Barbegal,Berbedel,Berbegal 41.95959 -0.00326 P PPLA3 ES 52 HU 22055 456 518 Europe/Madrid 2012-03-04
-3128243 Beratón Beraton Beraton,Beratón 41.71749 -1.81092 P PPLA3 ES 55 SO 42034 47 1392 Europe/Madrid 2012-03-04
-3128245 Berastegi Berastegui Berastegi,Berastegui,Berástegui 43.12423 -1.98019 P PPLA3 ES 59 SS 20022 0 402 Europe/Madrid 2012-03-04
-3128247 Berantevilla Berantevilla Berantevilla,Beranturi 42.68254 -2.85832 P PPLA3 ES 59 VI 01014 454 473 Europe/Madrid 2012-03-04
-3128248 Berango Berango Berango 43.365 -2.99601 P PPLA3 ES 59 BI 48016 6064 27 Europe/Madrid 2012-03-04
-3128259 Benuza Benuza Benuza 42.39941 -6.70969 P PPLA3 ES 55 LE 24016 719 800 Europe/Madrid 2012-03-04
-3128267 Benlloch Benlloch Bell-lloc del Pla,Benlloch,Benltoch,Bennloch 40.21075 0.02717 P PPLA3 ES 60 CS 12029 841 317 Europe/Madrid 2012-03-04
-3128271 Benifallet Benifallet Benifallet 40.97422 0.51767 P PPLA3 ES 56 T 43025 804 23 Europe/Madrid 2012-03-04
-3128272 Benicàssim Benicassim Benicasim,Benicassim,Benicàssim,Benicásim,bnw qasm,بنو قاسم 40.05 0.06667 P PPL ES 60 CS 12028 18098 12 Europe/Madrid 2010-04-22
-3128273 Benicarló Benicarlo Benicarlo,Benicarló,Benikarlo,Беникарло 40.4165 0.42709 P PPLA3 ES 60 CS 12027 26655 17 Europe/Madrid 2012-03-04
-3128281 Benegiles Benegiles Benegiles 41.627 -5.63479 P PPLA3 ES 55 ZA 49022 399 647 Europe/Madrid 2012-03-04
-3128290 Benavides Benavides Benavides,Benavides de Orbigo 42.50442 -5.89442 P PPLA3 ES 55 LE 24015 2885 837 Europe/Madrid 2012-03-04
-3128291 Benavente Benavente Benavente 42.00249 -5.67826 P PPLA3 ES 55 ZA 49021 19119 750 Europe/Madrid 2012-03-04
-3128296 Benasque Benasque Benas,Benas - Benasque,Benasc,Benasque,Benás,Benás - Benasque,Venasque 42.60528 0.52305 P PPLA3 ES 52 HU 22054 2231 1140 Europe/Madrid 2012-03-04
-3128297 Benasal Benasal Benasal,Benassal 40.3769 -0.1397 P PPLA3 ES 60 CS 12026 1329 845 Europe/Madrid 2012-03-04
-3128301 Benafigos Benafigos Benafigos 40.27641 -0.20772 P PPLA3 ES 60 CS 12025 180 918 Europe/Madrid 2012-03-04
-3128302 Benafarces Benafarces Benafarces 41.62133 -5.29285 P PPLA3 ES 55 VA 47016 123 738 Europe/Madrid 2012-03-04
-3128304 Benavarri / Benabarre Benavarri / Benabarre Benabarre,Benabarri,Benavarri,Benavarri / Benabarre 42.10586 0.48211 P PPL ES 52 HU 22053 1110 739 Europe/Madrid 2007-02-21
-3128308 Bembibre Bembibre Bembibire,Bembibre,Bembribe 42.61771 -6.41545 P PPLA3 ES 55 LE 24014 10071 648 Europe/Madrid 2012-03-04
-3128312 Belver de los Montes Belver de los Montes Belver de los Montes 41.72284 -5.45182 P PPLA3 ES 55 ZA 49020 423 690 Europe/Madrid 2012-03-04
-3128313 Belver Belver Bellver de Cinca 41.69272 0.17827 P PPL ES 52 HU 22007 1381 202 Europe/Madrid 2007-02-11
-3128320 Belorado Belorado Belorado 42.42048 -3.19133 P PPLA3 ES 55 BU 09048 2104 770 Europe/Madrid 2012-03-04
-3128323 Belmonte de Tajo Belmonte de Tajo Belmonte de Tajo 40.13162 -3.3358 P PPLA3 ES 29 M 28019 1199 726 Europe/Madrid 2012-03-04
-3128325 Belmonte de Campos Belmonte de Campos Belmonte de Campos 41.94254 -4.98659 P PPLA3 ES 55 P 34031 33 746 Europe/Madrid 2012-03-04
-3128328 Belmonte Belmonte Miranda 43.28245 -6.21818 P PPL ES 34 O 33005 2011 203 Europe/Madrid 2008-01-21
-3128331 Bellvís Bellvis Bellvis,Bellvís 41.67269 0.81768 P PPLA3 ES 56 L 25052 2263 208 Europe/Madrid 2012-03-04
-3128333 Bellver de Cerdanya Bellver de Cerdanya 42.36667 1.78333 P PPL ES 56 L 25051 1809 1025 1048 Europe/Madrid 2010-04-04
-3128336 Bellpuig Bellpuig Bellpuig,Belpuig 41.62595 1.01144 P PPLA3 ES 56 L 25050 4269 308 Europe/Madrid 2012-03-04
-3128337 Bellprat Bellprat Bellprat 41.51695 1.43333 P PPLA3 ES 56 B 08021 89 637 Europe/Madrid 2012-03-04
-3128341 Bello Bello Bello 40.92266 -1.4985 P PPLA3 ES 52 TE 44039 346 1007 Europe/Madrid 2012-03-04
-3128348 Bellcaire d'Urgell Bellcaire d'Urgell Bellcaire d'Urgell 41.75 0.91667 P PPL ES 56 L 25164 1218 251 Europe/Madrid 2010-04-04
-3128351 Belinchón Belinchon Belinchon,Belinchón 40.04602 -3.05517 P PPLA3 ES 54 CU 16032 356 716 Europe/Madrid 2012-03-04
-3128361 Beleña Belena Belena,Beleña 40.75067 -5.62714 P PPLA3 ES 55 SA 37047 177 884 Europe/Madrid 2012-03-04
-3128365 Belchite Belchite Belchit,Belchite 41.30325 -0.7505 P PPL ES 52 Z 50023 1568 449 Europe/Madrid 2012-01-19
-3128366 Belbimbre Belbimbre Belbimbre 42.16873 -4.0128 P PPLA3 ES 55 BU 09047 80 796 Europe/Madrid 2012-03-04
-3128368 Belauntza Belaunza Belauntza,Belaunza 43.13586 -2.05156 P PPLA3 ES 59 SS 20021 0 202 Europe/Madrid 2012-03-04
-3128369 Belascoáin Belascoain Belascoain,Belascoáin 42.7562 -1.83227 P PPLA3 ES 32 NA 31052 122 420 Europe/Madrid 2012-03-04
-3128382 Béjar Bejar Bejar,Béjar 40.38641 -5.76341 P PPLA3 ES 55 SA 37046 15007 946 Europe/Madrid 2012-03-04
-3128384 Beizama Beizama Beizama 43.13385 -2.20001 P PPLA3 ES 59 SS 20020 165 495 Europe/Madrid 2012-03-04
-3128388 Beire Beire Beire 42.45415 -1.62101 P PPLA3 ES 32 NA 31051 319 371 Europe/Madrid 2012-03-04
-3128394 Begonte Begonte Begonte,San Pedro 43.15121 -7.68643 P PPLA3 ES 58 LU 27007 3675 397 Europe/Madrid 2012-03-04
-3128398 Begues Begues Begas,Begues 41.33333 1.93333 P PPLA3 ES 56 B 08020 5538 412 Europe/Madrid 2012-03-04
-3128409 Becilla de Valderaduey Becilla de Valderaduey Becilla de Valderaduey 42.09905 -5.21805 P PPLA3 ES 55 VA 47015 359 734 Europe/Madrid 2012-03-04
-3128415 Becerril de la Sierra Becerril de la Sierra Becerril de la Sierra 40.71699 -3.98858 P PPLA3 ES 29 M 28018 4610 1085 Europe/Madrid 2012-03-04
-3128416 Becerril de Campos Becerril de Campos Becerril,Becerril de Campos 42.10841 -4.64152 P PPLA3 ES 55 P 34029 1021 769 Europe/Madrid 2012-03-04
-3128419 Becerreá Becerrea Becerrea,Becerreá 42.8561 -7.1636 P PPLA3 ES 58 LU 27006 3403 634 Europe/Madrid 2012-03-04
-3128426 Becedillas Becedillas Becedillas 40.53821 -5.32561 P PPLA3 ES 55 AV 05025 156 1069 Europe/Madrid 2012-03-04
-3128428 Becedas Becedas Becedas 40.40369 -5.63577 P PPLA3 ES 55 AV 05024 338 1106 Europe/Madrid 2012-03-04
-3128436 Beasain Beasain Beasain,Beasáin 43.05017 -2.20087 P PPLA3 ES 59 SS 20019 13557 236 Europe/Madrid 2012-03-04
-3128443 Beamud Beamud Beamud 40.18645 -1.8288 P PPLA3 ES 54 CU 16031 94 1341 Europe/Madrid 2012-03-04
-3128445 Beade Beade 42.33074 -8.1295 P PPLA3 ES 58 OR 32010 576 145 Europe/Madrid 2012-03-04
-3128447 Bea Bea Bea 41.03633 -1.14725 P PPLA3 ES 52 TE 44036 39 1127 Europe/Madrid 2012-03-04
-3128455 Bayubas de Arriba Bayubas de Arriba Bayubas de Arriba 41.5575 -2.88731 P PPLA3 ES 55 SO 42033 69 961 Europe/Madrid 2012-03-04
-3128456 Bayubas de Abajo Bayubas de Abajo Bayubas de Abajo 41.52747 -2.89586 P PPLA3 ES 55 SO 42032 237 927 Europe/Madrid 2012-03-04
-3128462 Baiona Baiona 42.11667 -8.85 P PPLA3 ES 58 PO 36003 12091 45 Europe/Madrid 2012-03-04
-3128477 Batres Batres Batres 40.20981 -3.92331 P PPLA3 ES 29 M 28017 1398 602 Europe/Madrid 2012-03-04
-3128482 Batea Batea Batea 41.09434 0.311 P PPLA3 ES 56 T 43022 2086 365 Europe/Madrid 2012-03-04
-3128510 Bascuñana de San Pedro Bascunana de San Pedro Bascunana,Bascunana de San Pedro,Bascuñana,Bascuñana de San Pedro 40.21322 -2.22812 P PPLA3 ES 54 CU 16030 36 1058 Europe/Madrid 2012-03-04
-3128512 Bascuñana Bascunana Bascunana,Bascuñana 42.42548 -3.08231 P PPLA3 ES 55 BU 09046 61 800 Europe/Madrid 2012-03-04
-3128520 Báscones de Ojeda Bascones de Ojeda Bascones de Ojeda,Báscones de Ojeda 42.67064 -4.52693 P PPLA3 ES 55 P 34028 196 963 Europe/Madrid 2012-03-04
-3128523 Basconcillos del Tozo Basconcillos del Tozo Basconcillos,Basconcillos del Tozo 42.70236 -3.98938 P PPLA3 ES 55 BU 09045 361 912 Europe/Madrid 2012-03-04
-3128526 Bàscara Bascara Bascara,Bàscara,Báscara 42.15998 2.91028 P PPLA3 ES 56 GI 17016 894 67 Europe/Madrid 2012-03-04
-3128529 Basardilla Basardilla Basardilla 41.02738 -4.02598 P PPLA3 ES 55 SG 40026 176 1094 Europe/Madrid 2012-03-04
-3128535 Bas Bas Bas 42.11809 2.45682 P PPL ES 56 GI 17207 1307 485 Europe/Madrid 2010-04-04
-3128543 Bárzana Barzana Barzana,Bárzana,Quiros,Quirós 43.15742 -5.97345 P PPL ES 34 O 33053 1480 447 Europe/Madrid 2012-01-19
-3128546 Barruelo de Santullán Barruelo de Santullan Barruelo,Barruelo de Santullan,Barruelo de Santullán 42.90641 -4.28593 P PPLA3 ES 55 P 34027 1574 1069 Europe/Madrid 2012-03-04
-3128551 Barruecopardo Barruecopardo Barruecopardo 41.07215 -6.66423 P PPLA3 ES 55 SA 37044 519 710 Europe/Madrid 2012-03-04
-3128560 Barromán Barroman Barroman,Barromán 41.06536 -4.93066 P PPLA3 ES 55 AV 05023 221 795 Europe/Madrid 2012-03-04
-3128566 Barro Barro 42.55534 -8.62231 P PPLA3 ES 58 PO 36002 0 157 Europe/Madrid 2012-03-04
-3128572 Barrios de Colina Barrios de Colina 42.39595 -3.46001 P PPLA3 ES 55 BU 09044 75 962 Europe/Madrid 2012-03-04
-3128574 Barriopedro Barriopedro Barriopedro 40.79026 -2.75246 P PPLA3 ES 54 GU 19050 33 896 Europe/Madrid 2012-03-04
-3128587 Barrio de Muñó Barrio de Muno Barrio de Muno,Barrio de Muñó 42.17584 -4.00715 P PPLA3 ES 55 BU 09041 32 775 Europe/Madrid 2012-03-04
-3128651 Barrado Barrado Barrado 40.08477 -5.88068 P PPLA3 ES 57 CC 10025 515 807 Europe/Madrid 2012-03-04
-3128653 Barraco Barraco 40.47647 -4.64346 P PPL ES 55 AV 05211 2111 1021 Europe/Madrid 2011-10-11
-3128654 Barrachina Barrachina Barrachina 40.89688 -1.13858 P PPLA3 ES 52 TE 44035 170 1049 Europe/Madrid 2012-03-04
-3128656 Barracas Barracas Barracas,Barraques 40.01667 -0.68333 P PPLA3 ES 60 CS 12020 183 1018 Europe/Madrid 2012-03-04
-3128675 Barjas Barjas Barjas 42.61182 -6.97979 P PPLA3 ES 55 LE 24011 355 845 Europe/Madrid 2012-03-04
-3128690 Barillas Barillas Barillas 41.96667 -1.63333 P PPLA3 ES 32 NA 31048 212 409 Europe/Madrid 2012-03-04
-3128691 Bargota Bargota Bargota 42.55982 -2.31067 P PPLA3 ES 32 NA 31047 377 593 Europe/Madrid 2012-03-04
-3128696 Bareyo Bareyo Bareyo 43.46686 -3.60083 P PPLA3 ES 39 S 39011 1893 76 Europe/Madrid 2012-03-04
-3128711 Bardallur Bardallur Bardallur 41.68423 -1.21183 P PPLA3 ES 52 Z 50044 270 283 Europe/Madrid 2012-03-04
-3128714 Barcones Barcones Barcones 41.29146 -2.8163 P PPLA3 ES 55 SO 42031 41 1099 Europe/Madrid 2012-03-04
-3128720 Barcial del Barco Barcial del Barco Barcial del Barco 41.93353 -5.66268 P PPLA3 ES 55 ZA 49019 305 716 Europe/Madrid 2012-03-04
-3128721 Barcial de la Loma Barcial de la Loma Barcial de la Loma 41.9514 -5.28353 P PPLA3 ES 55 VA 47013 152 741 Europe/Madrid 2012-03-04
-3128729 Barceo Barceo Barceo 41.06108 -6.45175 P PPLA3 ES 55 SA 37042 53 725 Europe/Madrid 2012-03-04
-3128739 Bárcena de Pie de Concha Barcena de Pie de Concha Barcena de Pie de Concha,Barcena de Pla de Concha,Bárcena de Pie de Concha 43.1258 -4.05662 P PPLA3 ES 39 S 39010 798 297 Europe/Madrid 2012-03-04
-3128745 Bárcena de Cicero Barcena de Cicero Barcena,Barcena de Cicero,Bárcena,Bárcena de Cicero 43.4216 -3.5103 P PPLA3 ES 39 S 39009 3003 20 Europe/Madrid 2012-03-04
-3128747 Bárcena de Campos Barcena de Campos Barcena de Campos,Bárcena de Campos 42.48428 -4.49875 P PPLA3 ES 55 P 34025 59 843 Europe/Madrid 2012-03-04
-3128760 Barcelona Barcelona BCN,Barcellona,Barcellonn-a,Barcelona,Barcelone,Barcelono,Barceluna,Barcelůna,Barcełona,Barcillona,Barcino,Barkelone,Barselona,Barselonae,Barselóna,Barsélona,Bartzelona,Barzelona,Barçellonn-a,Barċellona,Gorad Barselona,Lungsod ng Barcelona,ba sai luo na,baleusellona,bar se lon a,barselona,barsilona,barslwn,barslwna,barsylwna,baruserona,brshlwnt,brzlwnh,la Ciudad Condal,parcelona,Βαρκελώνη,Барселонæ,Барселона,Горад Барселона,Բարսելոնա,בארצעלאנע,ברצלונה,بارسلون,بارسلونا,بارسیلونا,بارسەلۆنا,برشلونة,बार्सिलोना,বার্সেলোনা,பார்செலோனா,ബാര്സലോണ,บาร์เซโลนา,བྷར་སེ་ལོ་ནཱ།,ბარსელონა,バルセロナ,巴塞罗那,바르셀로나 41.38879 2.15899 P PPLA ES 56 B 08019 1621537 15 47 Europe/Madrid 2011-06-16
-3128774 Bárcabo Barcabo Barcabo,Bárcabo 42.24219 0.06934 P PPLA3 ES 52 HU 22051 100 720 Europe/Madrid 2012-03-04
-3128777 Barca Barca Barca 41.4549 -2.62217 P PPLA3 ES 55 SO 42030 115 967 Europe/Madrid 2012-03-04
-3128778 Barbuñales Barbunales Barbunales,Barbuñales 42.02563 -0.08659 P PPLA3 ES 52 HU 22050 117 471 Europe/Madrid 2012-03-04
-3128779 Barbués Barbues Barbues,Barbués 41.98085 -0.41949 P PPLA3 ES 52 HU 22049 105 364 Europe/Madrid 2012-03-04
-3128783 Barbolla Barbolla Barbolla,Barboya 41.32567 -3.67362 P PPLA3 ES 55 SG 40025 247 942 Europe/Madrid 2012-03-04
-3128784 Bárboles Barboles Barboles,Bárboles 41.70898 -1.18594 P PPLA3 ES 52 Z 50043 312 273 Europe/Madrid 2012-03-04
-3128795 Barbastro Barbastro Balbastro,Barbastre,Barbastro 42.03565 0.12686 P PPLA3 ES 52 HU 22048 16924 338 Europe/Madrid 2012-03-04
-3128807 Barbalos Barbalos Barbalos 40.67678 -5.94258 P PPLA3 ES 55 SA 37041 100 907 Europe/Madrid 2012-03-04
-3128811 Barbadillo del Pez Barbadillo del Pez Barbadillo del Pez 42.11879 -3.22802 P PPLA3 ES 55 BU 09039 99 1051 Europe/Madrid 2012-03-04
-3128812 Barbadillo del Mercado Barbadillo del Mercado Barbadillo del Mercado 42.03858 -3.35669 P PPLA3 ES 55 BU 09038 166 953 Europe/Madrid 2012-03-04
-3128813 Barbadillo de Herreros Barbadillo de Herreros Barbadillo,Barbadillo de Herreros 42.14974 -3.17702 P PPLA3 ES 55 BU 09037 151 1125 Europe/Madrid 2012-03-04
-3128819 Barásoain Barasoain 42.60339 -1.64658 P PPLA3 ES 32 NA 31045 572 530 Europe/Madrid 2012-03-04
-3128824 Barañáin Baranain Baran'jajn,Baranain,Barañáin,Бараньяйн 42.80567 -1.67731 P PPL ES 32 NA 31901 22110 441 Europe/Madrid 2012-01-19
-3128828 Baralla Baralla Baralla,Neira de Jusa,Neira de Xusa,Neira de Xusá 42.89207 -7.25492 P PPL ES 58 LU 27026 3146 484 Europe/Madrid 2012-01-19
-3128831 Barajas de Melo Barajas de Melo Barajas de Melo 40.1234 -2.91675 P PPLA3 ES 54 CU 16027 805 716 Europe/Madrid 2012-03-04
-3128845 Baquerín de Campos Baquerin de Campos Baquerin de Campos,Baquerín de Campos 42.016 -4.78185 P PPLA3 ES 55 P 34024 23 749 Europe/Madrid 2012-03-04
-3128860 Bañuelos de Bureba Banuelos de Bureba Banuelos de Bureba,Bañuelos de Bureba 42.50258 -3.27958 P PPLA3 ES 55 BU 09036 41 775 Europe/Madrid 2012-03-04
-3128865 Bañuelos Banuelos Banuelos,Bañuelos 41.28601 -2.91476 P PPLA3 ES 54 GU 19049 20 1148 Europe/Madrid 2012-03-04
-3128868 Baños de Valdearados Banos de Valdearados Banos de Valdearados,Baños de Valdearados 41.7701 -3.55589 P PPLA3 ES 55 BU 09035 413 870 Europe/Madrid 2012-03-04
-3128869 Baños de Tajo Banos de Tajo Banos de Tajo,Baños de Tajo 40.71667 -1.96667 P PPLA3 ES 54 GU 19048 30 1287 Europe/Madrid 2012-03-04
-3128870 Baños de Río Tobía Banos de Rio Tobia Banos de Rio Tobia,Baños de Río Tobía 42.33533 -2.76099 P PPLA3 ES 27 LO 26026 1698 579 Europe/Madrid 2012-03-04
-3128871 Baños de Rioja Banos de Rioja Banos de Rioja,Baños de Rioja 42.5123 -2.94635 P PPLA3 ES 27 LO 26025 93 557 Europe/Madrid 2012-03-04
-3128874 Baños de Montemayor Banos de Montemayor 40.31671 -5.86009 P PPLA3 ES 57 CC 10024 643 696 Europe/Madrid 2012-03-04
-3128875 Baños de Molgas Banos de Molgas 42.24148 -7.67223 P PPLA3 ES 58 OR 32007 1992 514 Europe/Madrid 2012-03-04
-3128883 Bañón Banon Banon,Bañón 40.83825 -1.19091 P PPLA3 ES 52 TE 44034 179 1122 Europe/Madrid 2012-03-04
-3128885 Banyoles Banyoles Banolas,Banyoles,Bañolas 42.11667 2.76667 P PPLA3 ES 56 GI 17015 18327 170 Europe/Madrid 2012-03-04
-3128886 Bañobárez Banobarez Banobarez,Bañobárez 40.84825 -6.61311 P PPLA3 ES 55 SA 37039 356 750 Europe/Madrid 2012-03-04
-3128903 Bande Bande Bande 42.0312 -7.97489 P PPLA3 ES 58 OR 32006 2310 728 Europe/Madrid 2012-03-04
-3128907 Banastás Banastas Banastas,Banastás 42.18089 -0.45191 P PPLA3 ES 52 HU 22047 260 534 Europe/Madrid 2012-03-04
-3128909 Bañares Banares Banares,Bañares 42.46838 -2.9101 P PPLA3 ES 27 LO 26024 352 597 Europe/Madrid 2012-03-04
-3128923 Baltar Baltar Baltar 41.952 -7.71581 P PPLA3 ES 58 OR 32005 1166 822 Europe/Madrid 2012-03-04
-3128924 Baltanás Baltanas Baltanas,Baltanás 41.93775 -4.24656 P PPLA3 ES 55 P 34022 1426 783 Europe/Madrid 2012-03-04
-3128928 Balsareny Balsareny Balsareny 41.86311 1.87356 P PPLA3 ES 56 B 08018 3233 336 Europe/Madrid 2012-03-04
-3128948 Ballobar Ballobar Argavieso,Ballobar 41.62106 0.192 P PPLA3 ES 52 HU 22046 1021 152 Europe/Madrid 2012-03-04
-3128956 Baliarrain Baliarrain Baliarrain,Baliarráin 43.06928 -2.12781 P PPLA3 ES 59 SS 20904 104 290 Europe/Madrid 2012-03-04
-3128968 Balconchán Balconchan Valconchan,Valconchán 41.08737 -1.45998 P PPLA3 ES 52 Z 50042 15 885 Europe/Madrid 2012-03-04
-3128972 Balboa Balboa Balboa 42.70608 -6.92222 P PPLA3 ES 55 LE 24009 395 693 Europe/Madrid 2012-03-04
-3128978 Balaguer Balaguer Balaguer 41.79117 0.81094 P PPLA3 ES 56 L 25040 16779 220 223 Europe/Madrid 2012-03-04
-3128996 Bailo Bailo 42.50906 -0.81136 P PPLA3 ES 52 HU 22044 243 722 Europe/Madrid 2012-03-04
-3129000 Baides Baides Baides 41.00685 -2.7762 P PPLA3 ES 54 GU 19047 59 849 Europe/Madrid 2012-03-04
-3129004 Bahabón de Esgueva Bahabon de Esgueva Bahabon de Esgueva,Bahabón de Esgueva 41.86162 -3.7298 P PPLA3 ES 55 BU 09033 120 918 Europe/Madrid 2012-03-04
-3129005 Bahabón Bahabon Bahabon,Bahabón 41.48141 -4.27941 P PPLA3 ES 55 VA 47012 202 878 Europe/Madrid 2012-03-04
-3129007 Begur Begur Bagur,Begur 41.95 3.21667 P PPLA3 ES 56 GI 17013 3981 239 Europe/Madrid 2012-03-04
-3129009 Bagüés Bagues 42.54935 -0.94577 P PPLA3 ES 52 Z 50041 42 825 Europe/Madrid 2012-03-04
-3129010 Báguena Baguena 41.04181 -1.35767 P PPLA3 ES 52 TE 44033 395 813 Europe/Madrid 2012-03-04
-3129017 Bagà Baga Baga,Bagà,Bagá,Бага 42.25289 1.86098 P PPL ES 56 B 08099 2178 785 794 Europe/Madrid 2010-04-04
-3129019 Baells Baells Baells 41.95326 0.45956 P PPLA3 ES 52 HU 22043 0 618 Europe/Madrid 2012-03-04
-3129020 Badules Badules Badules 41.13901 -1.25366 P PPLA3 ES 52 Z 50040 105 920 Europe/Madrid 2012-03-04
-3129024 Bádenas Badenas Badenas,Bádenas 41.09216 -1.12241 P PPLA3 ES 52 TE 44032 20 1007 Europe/Madrid 2012-03-04
-3129025 Badarán Badaran Badaran,Badarán 42.36794 -2.81079 P PPLA3 ES 27 LO 26023 695 632 Europe/Madrid 2012-03-04
-3129028 Badalona Badalona Badalona,Бадалона 41.45004 2.24741 P PPLA3 ES 56 B 08015 219547 16 Europe/Madrid 2012-03-04
-3129037 Bakaiku Bakaiku Bacaicoa,Bacáicoa,Bakaiku 42.89244 -2.10251 P PPLA3 ES 32 NA 31044 0 519 Europe/Madrid 2012-03-04
-3129039 Babilafuente Babilafuente Babilafuente 40.97704 -5.42554 P PPLA3 ES 55 SA 37038 998 800 Europe/Madrid 2012-03-04
-3129046 Azuqueca de Henares Azuqueca de Henares Asukeka-de-Ehnares,Azuqueca,Azuqueca de Henares,Асукека-де-Энарес 40.56688 -3.25992 P PPLA3 ES 54 GU 19046 32744 623 Europe/Madrid 2012-03-04
-3129049 Azuelo Azuelo 42.60844 -2.34987 P PPLA3 ES 32 NA 31043 43 611 Europe/Madrid 2012-03-04
-3129051 Azuara Azuara Azuara 41.25822 -0.87078 P PPLA3 ES 52 Z 50039 672 582 Europe/Madrid 2012-03-04
-3129059 Azpeitia Azpeitia Azpeitia 43.18246 -2.26693 P PPLA3 ES 59 SS 20018 14375 84 Europe/Madrid 2012-03-04
-3129065 Azofra Azofra Azofra 42.424 -2.80086 P PPLA3 ES 27 LO 26022 280 550 Europe/Madrid 2012-03-04
-3129066 Azlor Azlor Aflor,Azlor 42.09427 -0.04594 P PPLA3 ES 52 HU 22042 151 487 Europe/Madrid 2012-03-04
-3129071 Azkoitia Azkoitia Azcoitia,Azkoitia 43.17744 -2.31129 P PPLA3 ES 59 SS 20017 11266 115 Europe/Madrid 2012-03-04
-3129081 Azara Azara Azara 42.07033 -0.02921 P PPLA3 ES 52 HU 22041 194 436 Europe/Madrid 2012-03-04
-3129086 Azagra Azagra Azagra 42.3 -1.9 P PPLA3 ES 32 NA 31042 3756 289 Europe/Madrid 2011-07-31
-3129097 Ayuela Ayuela Ayuela 42.62618 -4.65978 P PPLA3 ES 55 P 34020 65 953 Europe/Madrid 2012-03-04
-3129099 Aitona Aitona Aitona,Aytona 41.48333 0.46667 P PPL ES 56 L 25204 2273 102 Europe/Madrid 2010-04-04
-3129101 Ayoó de Vidriales Ayoo de Vidriales Ayoo de Vidriales,Ayoó de Vidriales 42.13042 -6.0655 P PPLA3 ES 55 ZA 49018 422 808 Europe/Madrid 2012-03-04
-3129106 Ayllón Ayllon Ayllon,Ayllón 41.41899 -3.37537 P PPLA3 ES 55 SG 40024 1227 986 Europe/Madrid 2012-03-04
-3129108 Aiguafreda Aiguafreda Aiguafreda 41.76807 2.25051 P PPL ES 56 B 08026 2308 524 409 Europe/Madrid 2010-04-04
-3129111 Ayerbe Ayerbe Ajerbe,Ayerbe,Айербе 42.27268 -0.68844 P PPL ES 52 HU 22149 1096 573 Europe/Madrid 2012-01-19
-3129113 Ayegui Ayegui 42.65656 -2.03934 P PPLA3 ES 32 NA 31041 1315 493 Europe/Madrid 2012-03-04
-3129120 Aia Aya Aia,Aya 43.23721 -2.14833 P PPLA3 ES 59 SS 20016 0 297 Europe/Madrid 2012-03-04
-3129122 Busturi-Axpe Busturi-Axpe Axpe de Busturia,Busturi-Axpe 43.38333 -2.7 P PPL ES 59 BI 48021 1699 23 Europe/Madrid 2007-01-18
-3129126 Avión Avion Avion,Avión,San Justo,Santos Justo y Pastor 42.38333 -8.25 P PPLA3 ES 58 OR 32004 2753 549 Europe/Madrid 2012-03-04
-3129127 Avinyonet del Penedès Avinyonet del Penedes Avinyonet,Avinyonet del Penedes,Avinyonet del Penedès 41.35 1.78333 P PPLA3 ES 56 B 08013 0 352 Europe/Madrid 2012-03-04
-3129128 Avinyó Avinyo Avinyo,Avinyó 41.86367 1.97095 P PPLA3 ES 56 B 08012 2093 369 Europe/Madrid 2012-03-04
-3129129 Avinyonet de Puigventós Avinyonet de Puigventos Avinyonet de Puigventos,Avinyonet de Puigventós 42.24984 2.91509 P PPLA3 ES ES 56 GI 17012 0 71 Europe/Madrid 2012-03-04
-3129135 Avilés Aviles Aviles,Avilés,Авилес 43.55473 -5.92483 P PPL ES 34 O 33004 84242 26 Europe/Madrid 2012-01-19
-3129136 Ávila de los Caballeros Avila de los Caballeros Avila,Avila de los Caballeros,Avila de los Santos,Avilo,abira,Àvila,Ávila,Ávila de los Caballeros,Ávila de los Santos,Авила,アビラ 40.65 -4.7 P PPLA2 ES 55 AV 05019 56855 1076 Europe/Madrid 2010-08-23
-3129142 Avià Avia Avia,Avià,Aviá 42.06667 1.85 P PPLA3 ES 56 B 08011 0 608 Europe/Madrid 2012-03-04
-3129148 Avellanosa de Muñó Avellanosa de Muno Avellanosa de Muno,Avellanosa de Muñó 41.98349 -3.82553 P PPLA3 ES 55 BU 09032 142 872 Europe/Madrid 2012-03-04
-3129154 Urrestieta Urrestieta Avellaneda,Avellaneda-Sopuerta,Urrestieta 43.23333 -3.15 P PPL ES 59 BI 48086 2305 438 Europe/Madrid 2007-01-18
-3129156 Avellaneda Avellaneda Avellaneda 40.38909 -5.38811 P PPLA3 ES 55 AV 05018 41 1353 Europe/Madrid 2012-03-04
-3129161 Aveinte Aveinte Aveinte 40.78227 -4.83649 P PPLA3 ES 55 AV 05017 109 998 Europe/Madrid 2012-03-04
-3129169 Autol Autol Autol 42.21661 -2.00525 P PPLA3 ES 27 LO 26021 4002 434 Europe/Madrid 2012-03-04
-3129170 Autillo de Campos Autillo de Campos Autillo de Campos 42.08725 -4.83376 P PPLA3 ES 55 P 34019 196 763 Europe/Madrid 2012-03-04
-3129171 Autilla del Pino Autilla del Pino Autilla del Pino 41.99207 -4.63393 P PPLA3 ES 55 P 34018 240 869 Europe/Madrid 2012-03-04
-3129175 Ausejo de la Sierra Ausejo de la Sierra Ausejo de la Sierra 41.89462 -2.37394 P PPLA3 ES 55 SO 42028 65 1099 Europe/Madrid 2012-03-04
-3129176 Ausejo Ausejo Ausejo 42.3421 -2.1671 P PPLA3 ES 27 LO 26020 877 526 Europe/Madrid 2012-03-04
-3129182 Auñón Aunon Aunon,Auñón 40.51752 -2.7925 P PPLA3 ES 54 GU 19045 254 781 Europe/Madrid 2012-03-04
-3129185 Aulesti Aulesti Aulesti,Aulestia 43.3 -2.56667 P PPLA3 ES 59 BI 48070 0 158 Europe/Madrid 2012-03-04
-3129197 Atienza Atienza 41.19722 -2.87129 P PPLA3 ES 54 GU 19044 433 1163 Europe/Madrid 2012-03-04
-3129199 Ateca Ateca Ateca 41.33092 -1.79353 P PPLA3 ES 52 Z 50038 2055 600 Europe/Madrid 2012-03-04
-3129200 Atea Atea Atea 41.16059 -1.55533 P PPLA3 ES 52 Z 50037 171 839 Europe/Madrid 2012-03-04
-3129203 Ataun Ataun Ataun,Atáun 43.00612 -2.17663 P PPLA3 ES 59 SS 20015 1508 202 Europe/Madrid 2012-03-04
-3129205 Ataquines Ataquines Ataquines 41.18247 -4.80319 P PPLA3 ES 55 VA 47011 808 797 Europe/Madrid 2012-03-04
-3129206 Atapuerca Atapuerca 42.37757 -3.5079 P PPLA3 ES 55 BU 09029 201 957 Europe/Madrid 2012-03-04
-3129222 Asturianos Asturianos Asturianos 42.05201 -6.4894 P PPLA3 ES 55 ZA 49017 327 970 Europe/Madrid 2012-03-04
-3129225 Astudillo Astudillo 42.1933 -4.29394 P PPLA3 ES 55 P 34017 1185 786 Europe/Madrid 2012-03-04
-3129231 Astorga Astorga Astorga,Asturica Augusta,Асторга 42.45879 -6.05601 P PPLA3 ES 55 LE 24008 12078 865 Europe/Madrid 2012-03-04
-3129239 Astigarraga Astigarraga Astigarraga 43.28174 -1.94634 P PPLA3 ES 59 SS 20903 4254 11 Europe/Madrid 2012-03-04
-3129244 Asteasu Asteasu Asteasu 43.19436 -2.09818 P PPLA3 ES 59 SS 20014 1371 104 Europe/Madrid 2012-03-04
-3129254 Aspariegos Aspariegos Aspariegos 41.67458 -5.59955 P PPLA3 ES 55 ZA 49016 306 675 Europe/Madrid 2012-03-04
-3129255 Aspa Aspa Aspa 41.49472 0.67277 P PPLA3 ES 56 L 25036 273 263 Europe/Madrid 2012-03-04
-3129277 Ascó Asco Asco,Ascó 41.18333 0.56667 P PPLA3 ES 56 T 43019 1625 50 Europe/Madrid 2012-03-04
-3129293 Arzúa Arzua Arzua,Arzúa 42.93333 -8.15 P PPL ES 58 C 15006 6597 408 Europe/Madrid 2012-01-19
-3129313 Artieda Artieda 42.58538 -0.98422 P PPLA3 ES 52 Z 50035 0 635 Europe/Madrid 2012-03-04
-3129322 Artesa de Segre Artesa de Segre Artesa de Segre 41.89467 1.04625 P PPLA3 ES 56 L 25034 3657 369 333 Europe/Madrid 2012-03-04
-3129326 Artés Artes Artes,Artés 41.798 1.95428 P PPL ES 56 B 08191 4951 317 Europe/Madrid 2012-01-19
-3129329 Arteixo Arteixo Santiago 43.30482 -8.50749 P PPLA3 ES 58 C 15005 29762 24 Europe/Madrid 2012-03-04
-3129334 Artazu Artazu Artazu 42.69228 -1.83954 P PPLA3 ES 32 NA 31039 100 445 Europe/Madrid 2012-03-04
-3129343 Artajona Artajona Artajona 42.58867 -1.76504 P PPLA3 ES 32 NA 31038 1639 410 Europe/Madrid 2012-03-04
-3129350 Arrúbal Arrubal Arrubal,Arrúbal 42.43486 -2.25143 P PPLA3 ES 27 LO 26019 501 356 Europe/Madrid 2011-07-31
-3129351 Arruazu Arruazu 42.92186 -2.00157 P PPLA3 ES 32 NA 31037 103 469 Europe/Madrid 2012-03-04
-3129355 Arroyomolinos de la Vera Arroyomolinos de la Vera Arroyomolinos de la Vera 40.05277 -5.85111 P PPLA3 ES 57 CC 10022 553 594 Europe/Madrid 2012-03-04
-3129356 Arroyomolinos Arroyomolinos Aorroyomolinos 40.26951 -3.91946 P PPL ES 29 M 28089 13835 598 Europe/Madrid 2010-04-22
-3129362 Arroyo de las Fraguas Arroyo de las Fraguas Arroyo de las Fraguas 41.10246 -3.13005 P PPLA3 ES 54 GU 19042 42 1215 Europe/Madrid 2012-03-04
-3129371 Arroyo Arroyo 41.60956 -4.79692 P PPL ES 55 VA 47010 11716 691 Europe/Madrid 2011-09-11
-3129380 Arróniz Arroniz Arroniz,Arróniz 42.58824 -2.09237 P PPLA3 ES 32 NA 31036 1168 546 Europe/Madrid 2012-03-04
-3129406 Arrigorriaga Arrigorriaga Arrigorriaga,Arrigunaga 43.21006 -2.88562 P PPLA3 ES 59 BI 48011 12435 50 Europe/Madrid 2012-03-04
-3129413 Arriba Arriba Arriba 43.51615 -5.53511 P PPL ES 34 O 33076 2030 150 Europe/Madrid 2012-01-19
-3129422 Arredondo Arredondo Arredondo 43.27325 -3.60031 P PPLA3 ES 39 S 39007 572 171 Europe/Madrid 2012-03-04
-3129429 Arraya de Oca Arraya de Oca Arraya de Oca 42.41488 -3.39781 P PPLA3 ES 55 BU 09027 50 929 Europe/Madrid 2012-03-04
-3129434 Arrancacepas Arrancacepas Arrancacepas 40.3032 -2.35899 P PPLA3 ES 54 CU 16025 39 918 Europe/Madrid 2012-03-04
-3129444 Arrabalde Arrabalde Arrabalde,Arrabalde de Vidriales 42.1076 -5.89441 P PPLA3 ES 55 ZA 49015 351 776 Europe/Madrid 2012-03-04
-3129447 Arquillinos Arquillinos Arquillinos 41.7099 -5.65708 P PPLA3 ES 55 ZA 49014 155 677 Europe/Madrid 2012-03-04
-3129460 Arnuero Arnuero Arnuero 43.47756 -3.56959 P PPLA3 ES 39 S 39006 0 61 Europe/Madrid 2012-03-04
-3129476 Arnedo, La Rioja Arnedo, La Rioja 42.21667 -2.1 P PPL ES 27 LO 26018 14457 546 Europe/Madrid 2010-04-22
-3129477 Arnedillo Arnedillo 42.21221 -2.23602 P PPLA3 ES 27 LO 26017 483 672 Europe/Madrid 2012-03-04
-3129487 Armuña de Tajuña Armuna de Tajuna Armuna de Tajuna,Armuña de Tajuña 40.52884 -3.02819 P PPLA3 ES 54 GU 19041 129 704 Europe/Madrid 2012-03-04
-3129488 Armuña Armuna Armuna,Armuña 41.07715 -4.31949 P PPLA3 ES 55 SG 40022 244 908 Europe/Madrid 2012-03-04
-3129492 Armiñón Arminon Araminon,Aramiñon,Arminon,Armiñón 42.72313 -2.87172 P PPLA3 ES 59 VI 01006 157 467 Europe/Madrid 2012-03-04
-3129504 Armenteros Armenteros Armenteros 40.5932 -5.44806 P PPLA3 ES 55 SA 37035 305 1056 Europe/Madrid 2012-03-04
-3129524 Armañanzas Armananzas Armananzas,Armañanzas 42.55963 -2.28476 P PPLA3 ES 32 NA 31035 78 494 Europe/Madrid 2012-03-04
-3129526 Armallones Armallones Armallones 40.7358 -2.30257 P PPLA3 ES 54 GU 19040 60 1208 Europe/Madrid 2012-03-04
-3129541 Arlanzón Arlanzon Arlanzon,Arlanzón 42.32267 -3.45784 P PPLA3 ES 55 BU 09026 421 996 Europe/Madrid 2012-03-04
-3129550 Ariza Ariza Ariza 41.31442 -2.05332 P PPLA3 ES 52 Z 50034 1302 721 Europe/Madrid 2012-03-04
-3129551 Aribe Aribe Aribe,Arive 42.95 -1.25 P PPLA3 ES 32 NA 31034 0 798 Europe/Madrid 2012-03-04
-3129561 Ariño Arino 41.03019 -0.59206 P PPLA3 ES 52 TE 44029 902 521 Europe/Madrid 2012-03-04
-3129565 Arija Arija Arija 42.9935 -3.94497 P PPLA3 ES 55 BU 09025 198 846 Europe/Madrid 2012-03-04
-3129572 Aria Aria Aria 42.95283 -1.26584 P PPLA3 ES 32 NA 31033 68 846 Europe/Madrid 2012-03-04
-3129576 Argujillo Argujillo Argujillo 41.31156 -5.58763 P PPLA3 ES 55 ZA 49013 344 769 Europe/Madrid 2012-03-04
-3129579 Arguis Arguis Arguis 42.31476 -0.43967 P PPLA3 ES 52 HU 22037 60 1040 Europe/Madrid 2012-03-04
-3129588 Arguedas Arguedas Arguedas 42.17759 -1.59719 P PPLA3 ES 32 NA 31032 2380 273 Europe/Madrid 2012-03-04
-3129593 Argoños Argonos Argonos,Argoños 43.4574 -3.49013 P PPLA3 ES 39 S 39005 1380 7 Europe/Madrid 2012-03-04
-3129607 Argentona Argentona Argentona 41.55336 2.40114 P PPLA3 ES 56 B 08009 11633 85 Europe/Madrid 2012-03-04
-3129611 Argente Argente Argente 40.68841 -1.16217 P PPLA3 ES 52 TE 44028 254 1249 Europe/Madrid 2012-03-04
-3129615 Argelita Argelita Argeleta,Argelita 40.05 -0.35 P PPLA3 ES 60 CS 12015 120 291 Europe/Madrid 2012-03-04
-3129616 Argelaguer Argelaguer 42.21563 2.64193 P PPLA3 ES 56 GI 17010 371 189 Europe/Madrid 2012-03-04
-3129617 Argecilla Argecilla Argecilla 40.88151 -2.82181 P PPLA3 ES 54 GU 19039 98 972 Europe/Madrid 2012-03-04
-3129619 Argavieso Argavieso Argavieso 42.05275 -0.27834 P PPLA3 ES 52 HU 22036 125 484 Europe/Madrid 2012-03-04
-3129626 Arganza Arganza Arganza 42.64077 -6.68627 P PPLA3 ES 55 LE 24007 861 596 Europe/Madrid 2012-03-04
-3129633 Argañín Arganin Arganin,Argañín 41.43948 -6.20827 P PPLA3 ES 55 ZA 49012 86 739 Europe/Madrid 2012-03-04
-3129636 Arganda Arganda Arganda,Арганда 40.30076 -3.43722 P PPL ES 29 M 28014 51489 626 Europe/Madrid 2012-01-19
-3129643 Arévalo de la Sierra Arevalo de la Sierra Arevalo de la Sierra,Arévalo de la Sierra 41.94723 -2.40033 P PPLA3 ES 55 SO 42027 95 1208 Europe/Madrid 2012-03-04
-3129644 Arévalo Arevalo Arevalo,Arévalo 41.06255 -4.72042 P PPLA3 ES 55 AV 05016 7689 827 Europe/Madrid 2012-03-04
-3129645 Arevalillo de Cega Arevalillo de Cega Arevalillo de Cega 41.16174 -3.88912 P PPLA3 ES 55 SG 40021 41 1043 Europe/Madrid 2012-03-04
-3129650 Areso Areso Areso 43.08209 -1.95198 P PPLA3 ES 32 NA 31031 298 493 Europe/Madrid 2012-03-04
-3129651 Ares del Maestre Ares del Maestre Ares del Maestrat,Ares del Maestre 40.45675 -0.13267 P PPLA3 ES 60 CS 12014 227 1198 Europe/Madrid 2012-03-04
-3129655 Ares Ares 43.42995 -8.24254 P PPLA3 ES 58 C 15004 5342 6 Europe/Madrid 2012-03-04
-3129658 Arenzana de Arriba Arenzana de Arriba Arenzana de Arriba 42.38745 -2.69494 P PPLA3 ES 27 LO 26016 32 597 Europe/Madrid 2012-03-04
-3129659 Arenzana de Abajo Arenzana de Abajo Arenzana de Abajo 42.38599 -2.7194 P PPLA3 ES 27 LO 26015 252 537 Europe/Madrid 2012-03-04
-3129660 Arenys de Munt Arenys de Munt Arenys de Munt 41.61424 2.53972 P PPL ES 56 B 08007 7394 149 Europe/Madrid 2012-01-19
-3129661 Arenys de Mar Arenys de Mar Arenys de Mar 41.5819 2.54936 P PPL ES 56 B 08006 14627 25 Europe/Madrid 2012-01-19
-3129665 Arenys de Lledó / Arens de Lledó Arenys de Lledo / Arens de Lledo Arens de Lledo,Arens de Lledó,Arenys de Lledo,Arenys de Lledó 40.99244 0.27092 P PPLA3 ES 52 TE 44027 224 378 Europe/Madrid 2012-03-02
-3129676 Arenillas Arenillas Arenillas 41.34706 -2.84618 P PPLA3 ES 55 SO 42026 29 1096 Europe/Madrid 2012-03-04
-3129678 Arenas de San Pedro Arenas de San Pedro Arenas de San Pedro 40.21042 -5.08694 P PPLA3 ES 55 AV 05014 6539 531 Europe/Madrid 2012-03-04
-3129679 Arenas de Iguña Arenas de Iguna Arenas de Iguna,Arenas de Iguña,Las Arenas 43.18293 -4.04729 P PPLA3 ES 39 S 39004 1906 177 Europe/Madrid 2012-03-04
-3129688 Arellano Arellano Arellano 42.60598 -2.04653 P PPLA3 ES 32 NA 31030 186 644 Europe/Madrid 2012-03-04
-3129692 Aretxabaleta Aretxabaleta Arechavaleta,Aretxabaleta 43.03414 -2.50456 P PPLA3 ES 59 SS 20013 6319 246 Europe/Madrid 2012-03-04
-3129703 Ardón Ardon Ardon,Ardón 42.43629 -5.56048 P PPLA3 ES 55 LE 24006 637 780 Europe/Madrid 2012-03-04
-3129720 Arcos de la Sierra Arcos de la Sierra Arcos de la Sierra 40.34664 -2.1131 P PPLA3 ES 54 CU 16022 109 1011 Europe/Madrid 2012-03-04
-3129721 Arcos de la Polvorosa Arcos de la Polvorosa Arcos de la Polvorosa 41.94389 -5.69731 P PPLA3 ES 55 ZA 49011 274 703 Europe/Madrid 2012-03-04
-3129723 Arcos de Jalón Arcos de Jalon Arcos,Arcos de Jalon,Arcos de Jalón 41.21592 -2.2747 P PPLA3 ES 55 SO 42025 1867 823 Europe/Madrid 2012-03-04
-3129738 Arcos Arcos 42.26664 -3.75458 P PPLA3 ES 55 BU 09023 0 838 Europe/Madrid 2012-03-04
-3129740 Arcones Arcones Arcones 41.11817 -3.72384 P PPLA3 ES 55 SG 40020 266 1152 Europe/Madrid 2012-03-04
-3129743 Arconada Arconada Arconada 42.32774 -4.49617 P PPLA3 ES 55 P 34015 50 806 Europe/Madrid 2012-03-04
-3129756 Arcicóllar Arcicollar Arcicollar,Arcicóllar 40.05517 -4.11638 P PPLA3 ES 54 TO 45015 662 548 Europe/Madrid 2012-03-04
-3129764 Arcenillas Arcenillas Arcenillas 41.45641 -5.68512 P PPLA3 ES 55 ZA 49010 310 701 Europe/Madrid 2012-03-04
-3129766 Arcediano Arcediano Arcediano 41.09379 -5.56055 P PPLA3 ES 55 SA 37033 104 826 Europe/Madrid 2012-03-04
-3129791 Arbúcies Arbucies Arbucias,Arbucies,Arbúcies 41.81667 2.51667 P PPLA3 ES 56 GI 17009 0 285 Europe/Madrid 2012-03-04
-3129802 Arbo Arbo Arbo,Santa Maria,Santa María 42.11667 -8.31667 P PPLA3 ES 58 PO 36001 3973 187 Europe/Madrid 2012-03-04
-3129803 Arbizu Arbizu Arbizu 42.91545 -2.03917 P PPLA3 ES 32 NA 31027 973 494 Europe/Madrid 2012-03-04
-3129807 Arbeteta Arbeteta Arbeteta 40.66999 -2.40236 P PPLA3 ES 54 GU 19038 59 992 Europe/Madrid 2012-03-04
-3129809 Arbeca Arbeca Arbeca 41.54152 0.92457 P PPLA3 ES 56 L 25029 2058 340 Europe/Madrid 2012-03-04
-3129813 Arbancón Arbancon 40.96434 -3.11505 P PPLA3 ES 54 GU 19037 197 904 Europe/Madrid 2012-03-04
-3129822 Araya Araya Araia,Araya,Asparren,Asparrena,Aspárrena 42.89345 -2.31314 P PPL ES 59 VI 01009 1583 609 Europe/Madrid 2008-07-14
-3129828 Arauzo de Torre Arauzo de Torre Arauzo de Torre 41.79818 -3.42314 P PPLA3 ES 55 BU 09022 106 920 Europe/Madrid 2012-03-04
-3129829 Arauzo de Salce Arauzo de Salce Arauzo de Salce 41.81919 -3.41191 P PPLA3 ES 55 BU 09021 76 941 Europe/Madrid 2012-03-04
-3129830 Arauzo de Miel Arauzo de Miel Arauzo de Miel 41.85878 -3.38773 P PPLA3 ES 55 BU 09020 354 1000 Europe/Madrid 2012-03-04
-3129839 Aras Aras Aras,Tres Aras 42.56172 -2.356 P PPLA3 ES 32 NA 31026 221 638 Europe/Madrid 2012-03-04
-3129841 Arapiles Arapiles Arapiles 40.89366 -5.64494 P PPLA3 ES 55 SA 37032 509 843 Europe/Madrid 2012-03-04
-3129843 Aranzueque Aranzueque Aranzueque 40.49094 -3.07448 P PPLA3 ES 54 GU 19036 394 681 Europe/Madrid 2012-03-04
-3129848 Arañuel Aranuel Aranuel,Aranyel,Arañuel 40.06667 -0.48333 P PPLA3 ES 60 CS 12013 187 508 Europe/Madrid 2012-03-04
-3129855 Arano Arano Arano 43.19956 -1.89569 P PPLA3 ES 32 NA 31024 0 423 Europe/Madrid 2012-03-04
-3129857 Aranjuez Aranjuez Aranjuez,Arankhuehs,Аранхуэс,ארנחואס 40.03108 -3.60246 P PPLA3 ES 29 M 28013 54055 508 Europe/Madrid 2012-03-04
-3129864 Aranga Aranga Aranga,San Pelayo 43.23469 -8.01705 P PPLA3 ES 58 C 15003 2246 277 Europe/Madrid 2012-03-04
-3129869 Arandilla del Arroyo Arandilla del Arroyo Arandilla,Arandilla del Arroyo 40.51056 -2.38355 P PPLA3 ES 54 CU 16020 36 893 Europe/Madrid 2012-03-04
-3129872 Arandilla Arandilla Arandilla 41.73778 -3.42914 P PPLA3 ES 55 BU 09019 188 883 Europe/Madrid 2012-03-04
-3129875 Arándiga Arandiga Arandiga,Arándiga 41.50872 -1.50074 P PPLA3 ES 52 Z 50032 481 443 Europe/Madrid 2012-03-04
-3129876 Aranda de Moncayo Aranda de Moncayo Aranda de Moncayo 41.57749 -1.79171 P PPLA3 ES 52 Z 50031 214 900 Europe/Madrid 2012-03-04
-3129877 Aranda de Duero Aranda de Duero Aranda,Aranda de Duero,Aranda-de-Duehro,Аранда-де-Дуэро 41.67041 -3.6892 P PPLA3 ES 55 BU 09018 32928 800 Europe/Madrid 2012-03-04
-3129879 Arancón Arancon Arancon,Arancón 41.80017 -2.28141 P PPLA3 ES 55 SO 42024 108 1066 Europe/Madrid 2012-03-04
-3129881 Arantza Arantza Aranatz,Aranaz,Arantza 43.19623 -1.72494 P PPLA3 ES 32 NA 31022 0 284 Europe/Madrid 2012-03-04
-3129882 Aranarache Aranarache Aranarache 42.77979 -2.22924 P PPLA3 ES 32 NA 31021 82 794 Europe/Madrid 2012-03-04
-3129892 Arama Arama Arama 43.06335 -2.1654 P PPLA3 ES 59 SS 20012 161 166 Europe/Madrid 2012-03-04
-3129895 Arahuetes Arahuetes Arahuetes 41.13762 -3.85664 P PPLA3 ES 55 SG 40019 58 1096 Europe/Madrid 2012-03-04
-3129897 Aragüés del Puerto Aragues del Puerto 42.70641 -0.66999 P PPLA3 ES 52 HU 22032 143 948 Europe/Madrid 2012-03-04
-3129911 Arakaldo Arakaldo Aracaldo,Arakaldo 43.15 -2.93333 P PPLA3 ES 59 BI 48005 96 183 Europe/Madrid 2012-03-04
-3129937 Aoiz Aoiz 42.78633 -1.37252 P PPL ES 32 NA 31158 2188 510 Europe/Madrid 2008-07-14
-3129938 Antzuola Anzuola Antzuola,Anzuola 43.09725 -2.37998 P PPLA3 ES 59 SS 20011 0 240 Europe/Madrid 2012-03-04
-3129954 Antillón Antillon Antillon,Antillón 42.03639 -0.16239 P PPLA3 ES 52 HU 22029 168 479 Europe/Madrid 2012-03-04
-3129955 Antigüedad Antiguedad Antiguedad,Antigüedad 41.94681 -4.12058 P PPLA3 ES 55 P 34012 400 844 Europe/Madrid 2012-03-04
-3129968 Ansó Anso Anso,Ansó,Berari 42.75785 -0.82947 P PPLA3 ES 52 HU 22028 519 859 Europe/Madrid 2012-03-04
-3129980 Anquela del Pedregal Anquela del Pedregal Anquela del Pedregal 40.74336 -1.73697 P PPLA3 ES 54 GU 19034 21 1283 Europe/Madrid 2012-03-04
-3129981 Anquela del Ducado Anquela del Ducado Anquela del Ducado 40.97084 -2.13066 P PPLA3 ES 54 GU 19033 87 1188 Europe/Madrid 2012-03-04
-3129984 Añover de Tormes Anover de Tormes Anover de Tormes,Añover de Tormes 41.13658 -5.91585 P PPLA3 ES 55 SA 37030 100 801 Europe/Madrid 2012-03-04
-3129987 Añorbe Anorbe 42.65732 -1.7149 P PPLA3 ES 32 NA 31018 0 577 Europe/Madrid 2012-03-04
-3129989 Anoeta Anoeta Anoeta 43.16241 -2.07107 P PPLA3 ES 59 SS 20010 0 73 Europe/Madrid 2012-03-04
-3130014 Anguix Anguix Anguix 41.75331 -3.93125 P PPLA3 ES 55 BU 09017 138 815 Europe/Madrid 2012-03-04
-3130016 Anguita Anguita Anguita 41.02659 -2.36849 P PPLA3 ES 54 GU 19032 254 1123 Europe/Madrid 2012-03-04
-3130020 Anguiano Anguiano Anguiano 42.26381 -2.76463 P PPLA3 ES 27 LO 26014 531 640 Europe/Madrid 2012-03-04
-3130021 Angüés Angues Angues,Angüés 42.11109 -0.15298 P PPLA3 ES 52 HU 22027 419 544 Europe/Madrid 2012-03-04
-3130025 Anguciana Anguciana Anguciana 42.57421 -2.90124 P PPLA3 ES 27 LO 26013 335 474 Europe/Madrid 2012-03-04
-3130031 Anglesola Anglesola Anglesola 41.65649 1.08286 P PPLA3 ES 56 L 25027 1313 339 Europe/Madrid 2012-03-04
-3130032 Anglès Angles Angles,Anglès 41.95617 2.63603 P PPL ES 56 GI 17008 5159 183 163 Europe/Madrid 2010-04-04
-3130052 Anento Anento Anento 41.06958 -1.33375 P PPLA3 ES 52 Z 50028 200 913 Europe/Madrid 2012-03-04
-3130053 Añe Ane Ane,Añe 41.03702 -4.29462 P PPLA3 ES 55 SG 40018 124 879 Europe/Madrid 2012-03-04
-3130066 Andosilla Andosilla Andosilla 42.38333 -1.66667 P PPL ES 32 NA 31191 2830 342 Europe/Madrid 2012-01-19
-3130067 Andorra Andorra Andorra 40.97655 -0.44721 P PPLA3 ES 52 TE 44025 7890 712 Europe/Madrid 2012-03-04
-3130070 Andoain Andoain Andoain,Andoaín,Andoáin 43.21658 -2.0253 P PPLA3 ES 59 SS 20009 14679 50 Europe/Madrid 2012-03-04
-3130092 Ancín Ancin 42.66047 -2.18885 P PPLA3 ES 32 NA 31014 396 486 Europe/Madrid 2012-03-04
-3130097 Anchuelo Anchuelo Anchuelo 40.46528 -3.26838 P PPLA3 ES 29 M 28012 540 766 Europe/Madrid 2012-03-04
-3130109 Anaya de Alba Anaya de Alba Anaya de Alba 40.72828 -5.49266 P PPLA3 ES 55 SA 37029 277 882 Europe/Madrid 2012-03-04
-3130110 Anaya Anaya Anaya 40.99184 -4.3095 P PPLA3 ES 55 SG 40017 137 891 Europe/Madrid 2012-03-04
-3130119 Anadón Anadon Anadon,Anadón 40.98225 -0.98367 P PPLA3 ES 52 TE 44024 19 1114 Europe/Madrid 2012-03-04
-3130122 Amusquillo Amusquillo Amusquillo 41.74853 -4.30117 P PPLA3 ES 55 VA 47009 162 775 Europe/Madrid 2012-03-04
-3130123 Amusco Amusco Amusco 42.17306 -4.47018 P PPLA3 ES 55 P 34011 494 774 Europe/Madrid 2012-03-04
-3130124 Amurrio Amurrio Amurrio 43.05 -3 P PPLA3 ES 59 VI 01002 10089 219 Europe/Madrid 2012-03-04
-3130128 Ampuero Ampuero Ampuero 43.34268 -3.41667 P PPLA3 ES 39 S 39002 3713 13 Europe/Madrid 2012-03-04
-3130130 Ampudia Ampudia Ampudia 41.91608 -4.78033 P PPLA3 ES 55 P 34010 677 792 Europe/Madrid 2012-03-04
-3130131 Amposta Amposta Amposta 40.71308 0.58103 P PPLA3 ES 56 T 43014 21240 14 Europe/Madrid 2012-03-04
-3130133 Amoroto Amoroto Amoroto 43.32634 -2.51349 P PPLA3 ES 59 BI 48004 364 186 Europe/Madrid 2012-03-04
-3130137 Amorebieta-Etxano Amorebieta-Etxano Amorebieta,Amorebieta-Echano,Amorebieta-Etxano,Zornotza 43.21667 -2.73333 P PPLA3 ES 59 BI 48003 17842 70 Europe/Madrid 2012-03-04
-3130141 Amoeiro Amoeiro Amoeiro 42.41667 -7.95 P PPLA3 ES 58 OR 32002 2354 415 Europe/Madrid 2012-03-04
-3130146 Amieva Amieva Amieva 43.24403 -5.0746 P PPLA3 ES 34 O 33003 873 599 Europe/Madrid 2012-03-04
-3130148 Amezketa Amezqueta Amezketa,Amezqueta,Amézqueta 43.04813 -2.08541 P PPLA3 ES 59 SS 20008 0 245 Europe/Madrid 2012-03-04
-3130153 Ameyugo Ameyugo Ameyugo 42.65617 -3.0617 P PPLA3 ES 55 BU 09016 98 554 Europe/Madrid 2012-03-04
-3130155 Amés Ames Ehjmsa,Santo Tomas,Santo Tomás,Эймса 42.9 -8.63333 P PPL ES 58 C 15013 26983 215 Europe/Madrid 2010-04-22
-3130172 Ambite Ambite Ambite 40.3319 -3.18034 P PPLA3 ES 29 M 28011 381 680 Europe/Madrid 2012-03-04
-3130175 Ambía Ambia Ambia,Ambía,San Esteban 42.20578 -7.73706 P PPL ES 58 OR 32036 1885 533 Europe/Madrid 2012-01-19
-3130176 Ambel Ambel Ambel 41.79472 -1.6152 P PPLA3 ES 52 Z 50027 332 588 Europe/Madrid 2012-03-04
-3130186 Amayuelas de Arriba Amayuelas de Arriba Amayuelas de Arriba 42.21108 -4.4888 P PPLA3 ES 55 P 34009 38 788 Europe/Madrid 2012-03-04
-3130191 Amavida Amavida Amavida 40.57371 -5.06541 P PPLA3 ES 55 AV 05012 190 1176 Europe/Madrid 2012-03-04
-3130213 Altzaga Alzaga Altzaga,Alzaga 43.06468 -2.154 P PPLA3 ES 59 SS 20906 0 298 Europe/Madrid 2012-03-04
-3130219 Alustante Alustante Alustante 40.61442 -1.6591 P PPLA3 ES 54 GU 19027 278 1404 Europe/Madrid 2012-03-04
-3130240 Altafulla Altafulla 41.14286 1.37269 P PPLA3 ES 56 T 43012 3975 37 Europe/Madrid 2012-03-04
-3130241 Altable Altable Altable 42.60276 -3.07719 P PPLA3 ES 55 BU 09013 60 710 Europe/Madrid 2012-03-04
-3130244 Altsasu Altsasu Alsasua,Altsasu,Altsasu/Alsasua 42.89999 -2.16516 P PPL ES 32 NA 31010 7410 517 Europe/Madrid 2011-01-29
-3130246 Alkiza Alquiza Alkiza,Alquiza 43.17263 -2.10923 P PPLA3 ES 59 SS 20006 0 340 Europe/Madrid 2012-03-04
-3130248 Alquézar Alquezar Alquezar,Alquezra 42.17268 0.02586 P PPLA3 ES 52 HU 22024 307 637 Europe/Madrid 2012-03-04
-3130249 Alpicat Alpicat Alpicat 41.6657 0.55564 P PPL ES 56 L 25120 5020 260 Europe/Madrid 2012-01-19
-3130251 Alpens Alpens 42.1193 2.10135 P PPLA3 ES 56 B 08004 08109 0 863 Europe/Madrid 2012-03-04
-3130252 Alpeñés Alpenes Alpenes,Alpeñés 40.79958 -1.06625 P PPLA3 ES 52 TE 44020 26 1225 Europe/Madrid 2012-03-04
-3130255 Alpedrete Alpedrete 40.65889 -4.02512 P PPLA3 ES 29 M 28010 12797 919 Europe/Madrid 2012-03-04
-3130257 Alpartir Alpartir Alpartir 41.42253 -1.38061 P PPLA3 ES 52 Z 50026 604 498 Europe/Madrid 2012-03-04
-3130259 Alpanseque Alpanseque Alpanseque 41.26505 -2.67064 P PPLA3 ES 55 SO 42023 99 1114 Europe/Madrid 2012-03-04
-3130261 Alp Alp 42.37256 1.88699 P PPLA3 ES 56 GI 17006 17006 0 1173 Europe/Madrid 2012-03-04
-3130262 Alovera Alovera Alovera 40.59368 -3.24529 P PPLA3 ES 54 GU 19024 10734 644 Europe/Madrid 2012-03-04
-3130267 Alonsotegi Alonsotegi Alonsotegi,Alonsotegui,Alonsótegui 43.24483 -2.98759 P PPLA3 ES 59 BI 48912 0 26 Europe/Madrid 2012-03-04
-3130271 Alocén Alocen Alocen,Alocén 40.57455 -2.74993 P PPLA3 ES 54 GU 19023 181 944 Europe/Madrid 2012-03-04
-3130272 Alobras Alobras Alobras 40.18169 -1.38731 P PPLA3 ES 52 TE 44019 86 1104 Europe/Madrid 2012-03-04
-3130276 Almuniente Almuniente Almuniente 41.94949 -0.41173 P PPLA3 ES 52 HU 22023 569 338 Europe/Madrid 2012-03-04
-3130279 Almudébar Almudebar Almudebar,Almudevar,Almudébar 42.04255 -0.58141 P PPL ES 52 HU 22021 2433 425 Europe/Madrid 2012-01-19
-3130282 Almoster Almoster Almoster 41.19758 1.11167 P PPL ES 56 T 43145 1086 282 Europe/Madrid 2012-01-19
-3130283 Almorox Almorox Almora,Almorox 40.23423 -4.39044 P PPLA3 ES 54 TO 45013 2319 539 Europe/Madrid 2012-03-04
-3130284 Almonacid de Zorita Almonacid de Zorita Almonacid de Zorita 40.32932 -2.8504 P PPLA3 ES 54 GU 19022 825 703 Europe/Madrid 2012-03-04
-3130285 Almonacid de la Sierra Almonacid de la Sierra 41.39754 -1.32394 P PPLA3 ES 52 Z 50024 904 604 Europe/Madrid 2012-03-04
-3130287 Almonacid de la Cuba Almonacid de la Cuba Almonacid de la Cuba 41.28067 -0.79266 P PPLA3 ES 52 Z 50023 300 491 Europe/Madrid 2012-03-04
-3130291 Almohaja Almohaja Almohaja 40.60489 -1.438 P PPLA3 ES 52 TE 44018 26 1198 Europe/Madrid 2012-03-04
-3130292 Almoguera Almoguera Almoguera 40.29713 -2.9824 P PPLA3 ES 54 GU 19021 0 660 Europe/Madrid 2012-03-04
-3130296 Almochuel Almochuel Almochuel 41.27992 -0.55067 P PPLA3 ES 52 Z 50021 49 278 Europe/Madrid 2012-03-04
-3130300 Almendral de la Cañada Almendral de la Canada Almendral de la Canada,Almendral de la Cañada 40.18456 -4.74173 P PPLA3 ES 54 TO 45011 375 636 Europe/Madrid 2012-03-04
-3130302 Almendra Almendra Almendra 41.22922 -6.34068 P PPLA3 ES 55 SA 37028 226 765 Europe/Madrid 2012-03-04
-3130303 Almenar de Soria Almenar de Soria Almenar de Soria 41.6823 -2.20082 P PPLA3 ES 55 SO 42022 339 1020 Europe/Madrid 2012-03-04
-3130304 Almenara de Tormes Almenara de Tormes Almenara de Tormes 41.0639 -5.8235 P PPLA3 ES 55 SA 37027 260 782 Europe/Madrid 2012-03-04
-3130305 Almenara de Adaja Almenara de Adaja Almenara de Adaja 41.21406 -4.67824 P PPLA3 ES 55 VA 47008 40 780 Europe/Madrid 2012-03-04
-3130306 Almenar Almenar Almenar 41.79604 0.56834 P PPLA3 ES 56 L 25021 3540 307 Europe/Madrid 2012-03-04
-3130310 Almazul Almazul Almazul 41.574 -2.1462 P PPLA3 ES 55 SO 42021 137 987 Europe/Madrid 2012-03-04
-3130313 Almazán Almazan Almazan,Almazán 41.48648 -2.53088 P PPLA3 ES 55 SO 42020 5773 948 Europe/Madrid 2012-03-04
-3130315 Almarza de Cameros Almarza de Cameros Almarza de Cameros 42.2165 -2.59873 P PPLA3 ES 27 LO 26012 27 1072 Europe/Madrid 2012-03-04
-3130316 Almarza Almarza Almarza 41.94678 -2.469 P PPLA3 ES 55 SO 42019 620 1153 Europe/Madrid 2012-03-04
-3130318 Almaraz de Duero Almaraz de Duero Almaraz de Duero 41.47506 -5.91654 P PPLA3 ES 55 ZA 49007 440 724 Europe/Madrid 2012-03-04
-3130322 Almanza Almanza Almanza 42.65825 -5.0362 P PPLA3 ES 55 LE 24004 644 916 Europe/Madrid 2012-03-04
-3130325 Almaluez Almaluez Almaluez 41.28932 -2.26871 P PPLA3 ES 55 SO 42018 243 822 Europe/Madrid 2012-03-04
-3130327 Almajano Almajano Almajano 41.85095 -2.3383 P PPLA3 ES 55 SO 42017 185 1053 Europe/Madrid 2012-03-04
-3130330 Almadrones Almadrones Almadrones 40.90096 -2.77406 P PPLA3 ES 54 GU 19020 116 1055 Europe/Madrid 2012-03-04
-3130332 Allueva Allueva Allueva 40.98533 -1.04258 P PPLA3 ES 52 TE 44023 12 1197 Europe/Madrid 2012-03-04
-3130335 Alloza Alloza Alloza 40.96942 -0.52941 P PPLA3 ES 52 TE 44022 679 661 Europe/Madrid 2012-03-04
-3130343 Allo Allo Allo 42.56738 -2.02052 P PPLA3 ES 32 NA 31012 1088 425 Europe/Madrid 2012-03-04
-3130347 Allepuz Allepuz Allepuz 40.49295 -0.72478 P PPLA3 ES 52 TE 44021 151 1472 Europe/Madrid 2012-03-04
-3130354 Allariz Allariz Allariz 42.19044 -7.80175 P PPLA3 ES 58 OR 32001 5392 467 Europe/Madrid 2012-03-04
-3130357 Aliud Aliud Aliud 41.65412 -2.25314 P PPLA3 ES 55 SO 42016 31 1011 Europe/Madrid 2012-03-04
-3130360 Alique Alique Alique 40.58671 -2.64442 P PPLA3 ES 54 GU 19019 38 926 Europe/Madrid 2012-03-04
-3130361 Alió Alio Alio,Alió 41.29422 1.30585 P PPLA3 ES 56 T 43010 403 264 Europe/Madrid 2012-03-04
-3130372 Aliaga Aliaga Aliaga 40.67411 -0.70333 P PPLA3 ES 52 TE 44017 388 1121 Europe/Madrid 2012-03-04
-3130374 Alhóndiga Alhondiga Alhondiga,Alhóndiga 40.52669 -2.82438 P PPLA3 ES 54 GU 19018 242 832 Europe/Madrid 2012-03-04
-3130376 Alhama de Aragón Alhama de Aragon Alhama,Alhama de Aragon,Alhama de Aragón 41.29657 -1.89358 P PPLA3 ES 52 Z 50020 1150 662 Europe/Madrid 2012-03-04
-3130379 Alguaire Alguaire Alguaire 41.73703 0.5845 P PPL ES 56 L 25120 2984 310 Europe/Madrid 2012-01-19
-3130380 Algorta Algorta Algorta 43.34927 -3.0094 P PPLX ES 59 BI 48044 82624 51 Europe/Madrid 2007-11-15
-3130381 Algora Algora Algora 40.96324 -2.66688 P PPLA3 ES 54 GU 19017 109 1112 Europe/Madrid 2012-03-04
-3130382 Algodre Algodre Algodre 41.56631 -5.60406 P PPLA3 ES 55 ZA 49006 182 660 Europe/Madrid 2012-03-04
-3130383 Algete Algete Algete 40.59711 -3.49743 P PPLA3 ES 29 M 28009 20204 721 Europe/Madrid 2012-03-04
-3130385 Algerri Algerri Algerri 41.81482 0.63633 P PPLA3 ES 56 L 25015 495 348 Europe/Madrid 2012-03-04
-3130389 Algar de Mesa Algar de Mesa Algar de Mesa 41.13494 -1.95964 P PPLA3 ES 54 GU 19016 72 934 Europe/Madrid 2012-03-04
-3130391 Algadefe Algadefe Algadefe 42.21931 -5.58419 P PPLA3 ES 55 LE 24002 336 743 Europe/Madrid 2012-03-04
-3130393 Alforque Alforque Alforque 41.32942 -0.38525 P PPLA3 ES 52 Z 50019 82 165 Europe/Madrid 2012-03-04
-3130395 Alforja Alforja Alforja 41.21108 0.97542 P PPLA3 ES 56 T 43009 1493 373 Europe/Madrid 2012-03-04
-3130397 Alfés Alfes Alfes,Alfés 41.52143 0.6205 P PPLA3 ES 56 L 25014 314 236 Europe/Madrid 2012-03-04
-3130398 Alfarràs Alfarras Alfarras,Alfarràs 41.81667 0.58333 P PPL ES 56 L 25021 3335 264 Europe/Madrid 2010-04-04
-3130399 Alfaro Alfaro Alfaro 42.18032 -1.75016 P PPLA3 ES 27 LO 26011 9574 298 Europe/Madrid 2012-03-04
-3130405 Alfántega Alfantega 41.82832 0.14823 P PPLA3 ES 52 HU 22020 117 239 Europe/Madrid 2012-03-04
-3130406 Alfamén Alfamen Alfamen,Alfamén 41.4392 -1.24458 P PPLA3 ES 52 Z 50018 1523 450 Europe/Madrid 2012-03-04
-3130408 Alfambra Alfambra Alfambra 40.54638 -1.03314 P PPLA3 ES 52 TE 44016 648 1044 Europe/Madrid 2012-03-04
-3130409 Alfajarín Alfajarin Alfajarin,Alfajarín 41.614 -0.7037 P PPLA3 ES 52 Z 50017 1855 191 Europe/Madrid 2012-03-04
-3130413 Alesón Aleson Aleson,Alesón 42.40554 -2.68938 P PPLA3 ES 27 LO 26010 118 569 Europe/Madrid 2012-03-04
-3130414 Alesanco Alesanco Alesanco 42.41409 -2.81666 P PPLA3 ES 27 LO 26009 423 565 Europe/Madrid 2012-03-04
-3130415 Alerre Alerre Alerre 42.16468 -0.46369 P PPLA3 ES 52 HU 22019 234 509 Europe/Madrid 2012-03-04
-3130417 Alentisque Alentisque Alentisque 41.42059 -2.33189 P PPLA3 ES 55 SO 42015 47 1064 Europe/Madrid 2012-03-04
-3130422 Alella Alella Alella 41.49379 2.29451 P PPLA3 ES 56 B 08003 8859 98 Europe/Madrid 2012-03-04
-3130427 Alegia Alegria de Oria Alegia,Alegria de Oria,Alegría de Oria 43.10097 -2.09637 P PPLA3 ES 59 SS 20005 0 94 Europe/Madrid 2012-03-04
-3130447 Aldeonte Aldeonte Aldeonte 41.35092 -3.67846 P PPLA3 ES 55 SG 40016 93 967 Europe/Madrid 2012-03-04
-3130450 Aldehuela de Yeltes Aldehuela de Yeltes Aldehuela de Yeltes 40.66254 -6.24332 P PPLA3 ES 55 SA 37026 243 836 Europe/Madrid 2012-03-04
-3130455 Aldehuela de Liestos Aldehuela de Liestos Aldehuela de Liestos 41.0641 -1.70107 P PPLA3 ES 52 Z 50016 31 997 Europe/Madrid 2012-03-04
-3130456 Aldehuela del Codonal Aldehuela del Codonal Aldehuela del Codonal 41.05504 -4.53863 P PPLA3 ES 55 SG 40015 0 861 Europe/Madrid 2012-03-04
-3130458 Aldehuela de la Bóveda Aldehuela de la Boveda Aldehuela de Boveda,Aldehuela de Bóveda,Aldehuela de la Boveda,Aldehuela de la Bóveda 40.85076 -6.0526 P PPLA3 ES 55 SA 37025 336 784 Europe/Madrid 2012-03-04
-3130471 Aldeavieja de Tormes Aldeavieja de Tormes Aldeavieja de Tormes 40.58307 -5.61705 P PPLA3 ES 55 SA 37024 131 910 Europe/Madrid 2012-03-04
-3130475 Aldeatejada Aldeatejada Aldeatejada 40.92168 -5.69273 P PPLA3 ES 55 SA 37023 873 795 Europe/Madrid 2012-03-04
-3130476 Aldeasoña Aldeasona Aldeasona,Aldeasoña 41.47285 -4.05712 P PPLA3 ES 55 SG 40013 77 850 Europe/Madrid 2012-03-04
-3130477 Aldeaseca de la Frontera Aldeaseca de la Frontera Aldeaseca de la Frontera 40.94161 -5.20719 P PPLA3 ES 55 SA 37022 327 872 Europe/Madrid 2012-03-04
-3130479 Aldeaseca de Alba Aldeaseca de Alba Aldeaseca de Alba 40.81909 -5.44699 P PPLA3 ES 55 SA 37021 104 862 Europe/Madrid 2012-03-04
-3130480 Aldeaseca Aldeaseca Aldeaseca 41.04912 -4.81707 P PPLA3 ES 55 AV 05008 308 862 Europe/Madrid 2012-03-04
-3130482 Aldearrubia Aldearrubia Aldearrubia 41.00808 -5.49829 P PPLA3 ES 55 SA 37020 509 814 Europe/Madrid 2012-03-04
-3130483 Aldearrodrigo Aldearrodrigo Aldearrodrigo 41.10966 -5.80726 P PPLA3 ES 55 SA 37019 184 782 Europe/Madrid 2012-03-04
-3130485 Aldea Real Aldea Real Aldea Real 41.18553 -4.16559 P PPLA3 ES 55 SG 40012 385 883 Europe/Madrid 2012-03-04
-3130486 Aldeanueva de Santa Cruz Aldeanueva de Santa Cruz Aldeanueva de Santa Cruz 40.38189 -5.42142 P PPLA3 ES 55 AV 05007 166 1160 Europe/Madrid 2012-03-04
-3130489 Aldeanueva del Codonal Aldeanueva del Codonal Aldeanueva del Codonal 41.08236 -4.54369 P PPLA3 ES 55 SG 40010 189 859 Europe/Madrid 2012-03-04
-3130491 Aldeanueva del Camino Aldeanueva del Camino Aldeanueva del Camino 40.2598 -5.92886 P PPLA3 ES 57 CC 10015 864 521 Europe/Madrid 2012-03-04
-3130492 Aldeanueva de la Vera Aldeanueva de la Vera Aldeanueva de la Vera 40.1271 -5.7015 P PPLA3 ES 57 CC 10014 2352 652 Europe/Madrid 2012-03-04
-3130493 Aldeanueva de la Sierra Aldeanueva de la Sierra Aldeanueva de la Sierra 40.6162 -6.10022 P PPLA3 ES 55 SA 37018 115 981 Europe/Madrid 2012-03-04
-3130494 Aldeanueva de Guadalajara Aldeanueva de Guadalajara Aldeanueva de Guadalajara 40.67988 -3.04438 P PPLA3 ES 54 GU 19015 116 892 Europe/Madrid 2012-03-04
-3130495 Aldeanueva de Figueroa Aldeanueva de Figueroa Aldeanueva de Figueroa 41.14808 -5.52404 P PPLA3 ES 55 SA 37017 303 873 Europe/Madrid 2012-03-04
-3130496 Aldeanueva de Ebro Aldeanueva de Ebro Aldeanueva de Ebro 42.22911 -1.88735 P PPLA3 ES 27 LO 26008 2550 348 Europe/Madrid 2012-03-04
-3130500 Aldeamayor de San Martín Aldeamayor de San Martin Aldeamayor de San Martin,Aldeamayor de San Martín 41.51256 -4.63955 P PPLA3 ES 55 VA 47007 1932 708 Europe/Madrid 2012-03-04
-3130501 Aldealseñor Aldealsenor Aldealsenor,Aldealseñor 41.8789 -2.31565 P PPLA3 ES 55 SO 42012 47 1091 Europe/Madrid 2012-03-04
-3130502 Aldealpozo Aldealpozo Aldealpozo 41.78258 -2.20416 P PPLA3 ES 55 SO 42011 26 1049 Europe/Madrid 2012-03-04
-3130504 Aldealengua de Santa María Aldealengua de Santa Maria Aldealengua de Santa Maria,Aldealengua de Santa María 41.46196 -3.46723 P PPLA3 ES 55 SG 40008 80 946 Europe/Madrid 2012-03-04
-3130505 Aldealengua Aldealengua Aldealengua 40.9809 -5.54922 P PPLA3 ES 55 SA 37016 561 785 Europe/Madrid 2012-03-04
-3130506 Aldealcorvo Aldealcorvo Aldealcorvo 41.24443 -3.79136 P PPLA3 ES 55 SG 40006 20 958 Europe/Madrid 2012-03-04
-3130511 Aldealafuente Aldealafuente Aldealafuente 41.67194 -2.32522 P PPLA3 ES 55 SO 42009 122 1008 Europe/Madrid 2012-03-04
-3130518 Aldea de San Miguel Aldea de San Miguel Aldea de San Miguel 41.46098 -4.6158 P PPLA3 ES 55 VA 47006 212 742 Europe/Madrid 2012-03-04
-3130522 Aldea del Obispo Aldea del Obispo Aldea del Obispo 40.70677 -6.79252 P PPLA3 ES 55 SA 37015 401 685 Europe/Madrid 2012-03-04
-3130523 Aldea del Fresno Aldea del Fresno 40.3236 -4.20319 P PPLA3 ES 29 M 28008 1989 481 Europe/Madrid 2012-03-04
-3130529 Aldeadávila de la Ribera Aldeadavila de la Ribera Aldeadavila de la Ribera,Aldeadávila de la Ribera,Alveavila de la Ribera 41.21769 -6.61786 P PPLA3 ES 55 SA 37014 1490 698 Europe/Madrid 2012-03-04
-3130531 Aldeacipreste Aldeacipreste Aldeacipreste 40.3809 -5.89754 P PPLA3 ES 55 SA 37013 189 876 Europe/Madrid 2012-03-04
-3130549 Alcubilla de Nogales Alcubilla de Nogales Alcubilla,Alcubilla de Nogales 42.12787 -5.92184 P PPLA3 ES 55 ZA 49004 183 779 Europe/Madrid 2012-03-04
-3130551 Alcubilla de las Peñas Alcubilla de las Penas Alcubilla de las Penas,Alcubilla de las Peñas 41.25128 -2.52684 P PPLA3 ES 55 SO 42008 76 1132 Europe/Madrid 2012-03-04
-3130552 Alcubilla de Avellaneda Alcubilla de Avellaneda Alcubilla de Avellaneda 41.72593 -3.30471 P PPLA3 ES 55 SO 42007 188 930 Europe/Madrid 2012-03-04
-3130554 Alcubierre Alcubierre Alcubierre 41.80758 -0.45291 P PPLA3 ES 52 HU 22018 432 456 Europe/Madrid 2012-03-04
-3130557 Alcover Alcover Alcober,Alcover 41.26267 1.1701 P PPLA3 ES 56 T 43005 4431 246 Europe/Madrid 2012-03-04
-3130560 Alcoroches Alcoroches Alcoroches 40.62669 -1.74629 P PPLA3 ES 54 GU 19013 167 1410 Europe/Madrid 2012-03-04
-3130563 Alcorisa Alcorisa Alcoriza 40.8921 -0.38143 P PPLA3 ES 52 TE 44014 3562 631 Europe/Madrid 2012-03-04
-3130564 Alcorcón Alcorcon Al'korkon,Alcorcon,Alcorcón,Alkorkono,Алькоркон 40.34582 -3.82487 P PPLA3 ES 29 M 28007 167967 729 Europe/Madrid 2012-03-04
-3130567 l'Alcora l'Alcora Alcora,L'Alcora 40.06667 -0.2 P PPL ES 60 CS 12005 11150 236 Europe/Madrid 2010-04-22
-3130568 Alconchel de Ariza Alconchel de Ariza Alconchel de Ariza 41.20428 -2.12191 P PPLA3 ES 52 Z 50015 124 897 Europe/Madrid 2012-03-04
-3130570 Alconada de Maderuelo Alconada de Maderuelo Alconada de Maderuelo 41.45015 -3.48554 P PPLA3 ES 55 SG 40005 57 946 Europe/Madrid 2012-03-04
-3130571 Alconada Alconada Alconada 40.91092 -5.36305 P PPLA3 ES 55 SA 37012 203 831 Europe/Madrid 2012-03-04
-3130572 Alconaba Alconaba Alconaba 41.7236 -2.38484 P PPLA3 ES 55 SO 42006 183 1008 Europe/Madrid 2012-03-04
-3130573 Alcoletge Alcoletge Alcoletge 41.64762 0.69382 P PPL ES 56 L 25120 2043 217 Europe/Madrid 2012-01-19
-3130574 Alcolea del Pinar Alcolea del Pinar Alcolea,Alcolea del Pinar 41.03569 -2.46645 P PPLA3 ES 54 GU 19011 424 1202 Europe/Madrid 2012-03-04
-3130575 Alcolea de las Peñas Alcolea de las Penas Alcolea de las Penas,Alcolea de las Peñas 41.2096 -2.78483 P PPLA3 ES 54 GU 19010 23 1012 Europe/Madrid 2012-03-04
-3130576 Alcolea de Cinca Alcolea de Cinca 41.71944 0.11716 P PPLA3 ES 52 HU 22017 1254 192 Europe/Madrid 2012-03-04
-3130579 Alcohujate Alcohujate Alcohujate 40.41763 -2.6149 P PPLA3 ES 54 CU 16011 82 814 Europe/Madrid 2012-03-04
-3130580 Alcocero de Mola Alcocero de Mola Alcocero,Alcocero de Mola 42.47222 -3.3579 P PPLA3 ES 55 BU 09010 53 800 Europe/Madrid 2012-03-04
-3130581 Alcocer Alcocer Alcocer 40.46972 -2.6094 P PPLA3 ES 54 GU 19009 311 789 Europe/Madrid 2012-03-04
-3130582 Alcocéber Alcoceber Alcoceber,Alcocebre,Alcocéber,Alcossebre,Aleosebre 40.25142 0.28433 P PPL ES 60 CS 12004 5000 14 Europe/Madrid 2012-01-19
-3130583 Alcobendas Alcobendas Alcobendas,Alkobendas,Алкобендас 40.54746 -3.64197 P PPLA3 ES 29 M 28006 109104 696 Europe/Madrid 2012-03-04
-3130595 Alcazarén Alcazaren Alcazaren,Alcazarén 41.37061 -4.67262 P PPLA3 ES 55 VA 47005 711 737 Europe/Madrid 2012-03-04
-3130596 Alcázar del Rey Alcazar del Rey Alcazar del Rey,Alcázar del Rey 40.06288 -2.80782 P PPLA3 ES 54 CU 16010 213 874 Europe/Madrid 2012-03-04
-3130598 Alcarràs Alcarras Alcarras,Alcarraz,Alcarràs,Alcarrás 41.56667 0.51667 P PPLA3 ES 56 L 25011 5133 130 Europe/Madrid 2012-03-04
-3130601 Alcantud Alcantud Alcantud 40.54818 -2.33258 P PPLA3 ES 54 CU 16009 98 847 Europe/Madrid 2012-03-04
-3130603 Alcanó Alcano Alcano,Alcanó 41.48064 0.61659 P PPLA3 ES 56 L 25010 251 221 Europe/Madrid 2012-03-04
-3130606 Alcañiz Alcaniz Alcaniz,Alcanyis,Alcanyís,Alcañiz 41.05 -0.13333 P PPLA3 ES 52 TE 44013 16392 346 Europe/Madrid 2012-03-04
-3130607 Alcañices Alcanices Alcanices,Alcañices 41.6994 -6.34647 P PPLA3 ES 55 ZA 49003 1089 802 Europe/Madrid 2012-03-04
-3130608 Alcanar Alcanar 40.54316 0.48082 P PPL ES 56 T 43156 10570 67 Europe/Madrid 2010-04-22
-3130610 Alcanadre Alcanadre Alcanadre,Alcanadro,Alcandre,Alecanadre 42.40492 -2.12073 P PPLA3 ES 27 LO 26007 754 348 Europe/Madrid 2012-03-04
-3130612 Alcalá de Moncayo Alcala de Moncayo Alcala de Moncayo,Alcalá de Moncayo 41.7861 -1.69544 P PPLA3 ES 52 Z 50014 152 752 Europe/Madrid 2012-03-04
-3130613 Alcalá del Obispo Alcala del Obispo Alcala del Obispo,Alcalá del Obispo 42.0773 -0.2912 P PPLA3 ES 52 HU 22015 368 499 Europe/Madrid 2012-03-04
-3130614 Alcalá de la Vega Alcala de la Vega Alcala de la Vega,Alcalá de la Vega 40.03333 -1.51667 P PPLA3 ES 54 CU 16008 154 1103 Europe/Madrid 2012-03-04
-3130615 Alcalá de la Selva Alcala de la Selva Alcala de la Selva,Alcalá de la Selva 40.37184 -0.72015 P PPLA3 ES 52 TE 44012 522 1403 Europe/Madrid 2012-03-04
-3130616 Alcalá de Henares Alcala de Henares Alcala de Henares,Alcalá de Henares,Alcála de Henares,Alkala de Enares,Compluto,Complutum,Cómpluto,Алкала де Енарес,アルカラ・デ・エナレス 40.48205 -3.35996 P PPLA3 ES 29 M 28005 204574 597 Europe/Madrid 2012-03-04
-3130617 Alcalá de Gurrea Alcala de Gurrea 42.06653 -0.68534 P PPLA3 ES 52 HU 22014 295 444 Europe/Madrid 2012-03-04
-3130618 Alcalá de Ebro Alcala de Ebro Alcala de Ebro,Alcalá de Ebro 41.81495 -1.19429 P PPLA3 ES 52 Z 50013 269 226 Europe/Madrid 2012-03-04
-3130619 Alcalà de Xivert Alcala de Xivert Alcala,Alcala de Chisvert,Alcala de Chivert,Alcala de Xivert,Alcalá de Chisvert 40.3 0.23333 P PPLA3 ES 60 CS 12004 6615 147 Europe/Madrid 2012-03-04
-3130623 Alcaine Alcaine Alcaine 40.95342 -0.70583 P PPLA3 ES 52 TE 44011 62 664 Europe/Madrid 2012-03-04
-3130628 Albornos Albornos Albornos 40.83795 -4.88129 P PPLA3 ES 55 AV 05005 212 910 Europe/Madrid 2012-03-04
-3130629 Alborge Alborge Alborge 41.33367 -0.35675 P PPLA3 ES 52 Z 50012 128 154 Europe/Madrid 2012-03-04
-3130634 Albons Albons 42.10389 3.08433 P PPLA3 ES 56 GI 17004 558 13 18 Europe/Madrid 2012-03-04
-3130637 Albocàsser Albocasser Albocacer,Albocasser 40.35 0.03333 P PPL ES 60 CS 12050 1391 564 Europe/Madrid 2006-10-04
-3130639 Albiztur Albiztur Albistur,Albiztur,Albístur 43.12933 -2.13649 P PPLA3 ES 59 SS 20004 299 280 Europe/Madrid 2012-03-04
-3130645 Albinyana Albinyana Albinana,Albinyana,Albiñana 41.25 1.48333 P PPLA3 ES 56 T 43002 0 216 Europe/Madrid 2012-03-04
-3130646 Albillos Albillos 42.2768 -3.78908 P PPLA3 ES 55 BU 09009 212 831 Europe/Madrid 2012-03-04
-3130650 Albeta Albeta Albeta 41.82636 -1.49936 P PPLA3 ES 52 Z 50011 163 420 Europe/Madrid 2012-03-04
-3130652 Albesa Albesa Albesa 41.75282 0.65936 P PPLA3 ES 56 L 25008 1540 243 Europe/Madrid 2012-03-04
-3130653 Alberuela de Tubo Alberuela de Tubo Alberuela de Tubo 41.90846 -0.21418 P PPLA3 ES 52 HU 22013 376 352 Europe/Madrid 2012-03-04
-3130657 Albero Bajo Albero Bajo Albero Bajo 42.0238 -0.38018 P PPLA3 ES 52 HU 22012 89 407 Europe/Madrid 2012-03-04
-3130658 Albero Alto Albero Alto Albero Alto 42.05031 -0.3371 P PPLA3 ES 52 HU 22011 119 442 Europe/Madrid 2012-03-04
-3130659 Alberite de San Juan Alberite de San Juan Alberite de San Juan 41.82009 -1.47063 P PPLA3 ES 52 Z 50010 103 379 Europe/Madrid 2012-03-04
-3130660 Alberite Alberite Alberite 42.40704 -2.43894 P PPLA3 ES 27 LO 26006 2289 447 Europe/Madrid 2012-03-04
-3130669 Albendiego Albendiego Albendiego 41.22742 -3.05171 P PPLA3 ES 54 GU 19008 37 1188 Europe/Madrid 2012-03-04
-3130670 Albendea Albendea Albendea 40.48751 -2.41747 P PPLA3 ES 54 CU 16006 160 838 Europe/Madrid 2012-03-04
-3130672 Albelda de Iregua Albelda de Iregua Albelda de Iregua 42.35837 -2.47278 P PPLA3 ES 27 LO 26005 2644 545 Europe/Madrid 2012-03-04
-3130673 Albelda Albelda Albelda 41.86542 0.45999 P PPLA3 ES 52 HU 22009 877 362 Europe/Madrid 2012-03-04
-3130679 Albarracín Albarracin Albarracin,Albarracín 40.40818 -1.44375 P PPLA3 ES 52 TE 44009 1009 1172 Europe/Madrid 2012-03-04
-3130682 Albares Albares Albares 40.3069 -3.00897 P PPLA3 ES 54 GU 19007 532 729 Europe/Madrid 2012-03-04
-3130695 Albalatillo Albalatillo Albalatillo 41.73527 -0.15114 P PPLA3 ES 52 HU 22008 259 261 Europe/Madrid 2012-03-04
-3130696 Albalate de Zorita Albalate de Zorita Albalate de Zorita 40.30812 -2.84267 P PPLA3 ES 54 GU 19006 780 771 Europe/Madrid 2012-03-04
-3130697 Albalate de las Nogueras Albalate de las Nogueras Albalate,Albalate de las Nogueras 40.36614 -2.27718 P PPLA3 ES 54 CU 16005 378 844 Europe/Madrid 2012-03-04
-3130698 Albalate del Arzobispo Albalate del Arzobispo Albalate del Arzobispo 41.12173 -0.51142 P PPLA3 ES 52 TE 44008 2163 355 Europe/Madrid 2012-03-04
-3130699 Albalate de Cinca Albalate de Cinca Albalat de Cinca 41.72521 0.15244 P PPLA3 ES 52 HU 22007 1183 212 Europe/Madrid 2012-03-04
-3130705 Alba de Yeltes Alba de Yeltes Alba de Yeltes 40.6718 -6.3166 P PPLA3 ES 55 SA 37009 255 790 Europe/Madrid 2012-03-04
-3130706 Alba de Tormes Alba de Tormes Alba de Tormes 40.82664 -5.51237 P PPLA3 ES 55 SA 37008 4881 835 Europe/Madrid 2012-03-04
-3130708 Alba de Cerrato Alba de Cerrato Alba de Cerrato 41.81276 -4.3647 P PPLA3 ES 55 P 34006 99 776 Europe/Madrid 2012-03-04
-3130716 Alba Alba Alba 40.61825 -1.34658 P PPLA3 ES 52 TE 44007 249 982 Europe/Madrid 2012-03-04
-3130720 Alàs i Cerc Alas i Cerc 42.35 1.51667 P PPL ES 56 L 25005 1112 406 910 Europe/Madrid 2010-04-04
-3130721 Alarilla Alarilla Alarilla 40.84711 -3.1031 P PPLA3 ES 54 GU 19005 121 800 Europe/Madrid 2012-03-04
-3130723 Alar del Rey Alar del Rey Alar del Rey 42.66037 -4.31271 P PPLA3 ES 55 P 34005 1169 852 Europe/Madrid 2012-03-04
-3130725 Alarba Alarba Alarba 41.20482 -1.61335 P PPLA3 ES 52 Z 50009 141 852 Europe/Madrid 2012-03-04
-3130726 Alaraz Alaraz Alaraz 40.74886 -5.28781 P PPLA3 ES 55 SA 37007 610 884 Europe/Madrid 2012-03-04
-3130728 Alaminos Alaminos Alaminos 40.86303 -2.72573 P PPLA3 ES 54 GU 19004 84 1065 Europe/Madrid 2012-03-04
-3130730 Alameda del Valle Alameda del Valle Alameda del Valle 40.9187 -3.84243 P PPLA3 ES 29 M 28003 217 1111 Europe/Madrid 2012-03-04
-3130739 Alagón Alagon Alagon,Alagón 41.76964 -1.11906 P PPLA3 ES 52 Z 50008 6141 232 Europe/Madrid 2012-03-04
-3130741 Alaejos Alaejos Alaejos 41.30732 -5.21567 P PPLA3 ES 55 VA 47004 1685 755 Europe/Madrid 2012-03-04
-3130742 Aladrén Aladren Aladren,Aladrén 41.24917 -1.15591 P PPLA3 ES 52 Z 50007 71 779 Europe/Madrid 2012-03-04
-3130744 Alacón Alacon Alacon,Alacón 41.02574 -0.69782 P PPLA3 ES 52 TE 44006 433 636 Europe/Madrid 2012-03-04
-3130752 Ajamil Ajamil Ajamil 42.16706 -2.48752 P PPLA3 ES 27 LO 26004 83 1046 Europe/Madrid 2012-03-04
-3130753 Ajalvir Ajalvir Ajalvir 40.53205 -3.47841 P PPLA3 ES 29 M 28002 3096 666 Europe/Madrid 2012-03-04
-3130762 Aizarnazabal Aizarnazabal Aizarnazabal,Aizarnazábal 43.25591 -2.23607 P PPLA3 ES 59 SS 20003 602 58 Europe/Madrid 2012-03-04
-3130771 Ainzón Ainzon Ainzon,Ainzón 41.81644 -1.51995 P PPLA3 ES 52 Z 50006 1240 435 Europe/Madrid 2012-03-04
-3130772 Aínsa Ainsa Ainsa,L'Ainsa 42.41547 0.14008 P PPL ES 52 HU 22907 1500 580 576 Europe/Madrid 2007-03-28
-3130781 Aiguaviva Aiguaviva Aiguaviva 41.9384 2.76217 P PPLA3 ES 56 GI 17002 608 158 Europe/Madrid 2012-03-04
-3130790 Ahigal de Villarino Ahigal de Villarino Ahigal de Villarino 41.15819 -6.38037 P PPLA3 ES 55 SA 37004 42 766 Europe/Madrid 2012-03-04
-3130791 Ahigal de los Aceiteros Ahigal de los Aceiteros Ahigal de los Aceiteros 40.87231 -6.74702 P PPLA3 ES 55 SA 37003 164 641 Europe/Madrid 2012-03-04
-3130792 Ahigal Ahigal Ahigal 40.18954 -6.18815 P PPLA3 ES 57 CC 10006 1583 390 Europe/Madrid 2012-03-04
-3130796 Agullana Agullana Agullana 42.39408 2.84666 P PPLA3 ES 56 GI 17001 769 163 Europe/Madrid 2012-03-04
-3130810 Aguilón Aguilon Aguilon,Aguilón 41.29467 -1.04634 P PPLA3 ES 52 Z 50005 288 687 Europe/Madrid 2012-03-04
-3130817 Aguilar de Segarra Aguilar de Segarra Aguilar de Boixadors,Aguilar de Segarra 41.74822 1.62919 P PPLA3 ES 56 B 08002 235 542 Europe/Madrid 2012-03-04
-3130819 Aguilar del Río Alhama Aguilar del Rio Alhama Aguilar,Aguilar de Rio Alhama,Aguilar del Rio Alhama,Aguilar del Río Alhama 41.96212 -1.9934 P PPLA3 ES 27 LO 26003 700 634 Europe/Madrid 2012-03-04
-3130820 Aguilar del Alfambra Aguilar del Alfambra Aguilar,Aguilar de Alfambra,Aguilar del Alfambra 40.59027 -0.79589 P PPLA3 ES 52 TE 44005 77 1295 Europe/Madrid 2012-03-04
-3130822 Aguilar de Codés Aguilar de Codes Aguilar Kodeskoa,Aguilar de Codes,Aguilar de Codés 42.61249 -2.38987 P PPLA3 ES 32 NA 31008 113 721 Europe/Madrid 2012-03-04
-3130823 Aguilar de Campos Aguilar de Campos Aguilar de Campos 41.98375 -5.18118 P PPLA3 ES 55 VA 47003 327 766 Europe/Madrid 2012-03-04
-3130824 Aguilar de Campóo Aguilar de Campoo Aguilar de Compoa 42.79452 -4.25892 P PPLA3 ES 55 P 34004 7280 904 Europe/Madrid 2012-03-04
-3130825 Aguilar de Bureba Aguilar de Bureba Aguilar de Bureba 42.58974 -3.32913 P PPLA3 ES 55 BU 09007 71 690 Europe/Madrid 2012-03-04
-3130828 Aguilafuente Aguilafuente Aguilafuente 41.22667 -4.11185 P PPLA3 ES 55 SG 40004 750 890 Europe/Madrid 2012-03-04
-3130874 Aguaviva Aguaviva Aguaviva,Aiguaviva de Bergantes 40.82211 -0.19532 P PPLA3 ES 52 TE 44004 668 540 Europe/Madrid 2012-03-04
-3130875 Aguatón Aguaton Aguaton,Aguatón 40.67158 -1.23475 P PPLA3 ES 52 TE 44003 23 1234 Europe/Madrid 2012-03-04
-3130888 Aguasal Aguasal Aguasal 41.27495 -4.6529 P PPLA3 ES 55 VA 47002 24 755 Europe/Madrid 2012-03-04
-3130889 Aguarón Aguaron Aguaron,Aguarón 41.33901 -1.27055 P PPLA3 ES 52 Z 50004 795 644 Europe/Madrid 2012-03-04
-3130909 Ágreda Agreda 41.85588 -1.92244 P PPLA3 ES 55 SO 42004 3214 958 Europe/Madrid 2012-03-04
-3130911 Agramunt Agramunt Agramunt 41.78686 1.09683 P PPLA3 ES 56 L 25003 5351 342 Europe/Madrid 2012-03-04
-3130916 Agoncillo Agoncillo Agoncillo 42.44667 -2.2898 P PPLA3 ES 27 LO 26002 964 346 Europe/Madrid 2012-03-04
-3130917 Agón Agon Agon,Agón 41.85574 -1.45233 P PPLA3 ES 52 Z 50003 191 324 Europe/Madrid 2012-03-04
-3130920 Àger Ager Ager,Àger 42 0.76667 P PPLA3 ES 56 L 25002 503 579 Europe/Madrid 2012-03-04
-3130924 Agallas Agallas Agallas 40.44867 -6.44176 P PPLA3 ES 55 SA 37002 180 802 Europe/Madrid 2012-03-04
-3130930 Adzaneta Adzaneta Adzaneta,Atzaneta del Maestrat 40.21616 -0.17028 P PPL ES 60 CS 12122 1462 403 Europe/Madrid 2012-01-19
-3130931 Aduna Aduna Aduna 43.20375 -2.05033 P PPLA3 ES 59 SS 20002 0 129 Europe/Madrid 2012-03-04
-3130938 Adrados Adrados Adrados 41.36816 -4.11186 P PPLA3 ES 55 SG 40003 176 885 Europe/Madrid 2012-03-04
-3130940 Adradas Adradas Adradas 41.35098 -2.47373 P PPLA3 ES 55 SO 42003 84 1056 Europe/Madrid 2012-03-04
-3130941 Adrada de Pirón Adrada de Piron Adrada de Piron,Adrada de Pirón 41.05257 -4.05107 P PPLA3 ES 55 SG 40002 43 1022 Europe/Madrid 2012-03-04
-3130942 Adrada de Haza Adrada de Haza Adrada de Haza 41.59454 -3.82326 P PPLA3 ES 55 BU 09003 255 830 Europe/Madrid 2012-03-04
-3130943 Adobes Adobes Adobes 40.67584 -1.67916 P PPLA3 ES 54 GU 19003 73 1383 Europe/Madrid 2012-03-04
-3130946 Adiós Adios Adios,Adiotz,Adiós 42.68635 -1.73532 P PPLA3 ES 32 NA 31007 161 480 Europe/Madrid 2012-03-04
-3130950 Ademuz Ademuz Ademus,Ademuz,Ademús,Aldemuz 40.06139 -1.28677 P PPLA3 ES 60 V 46001 1140 756 Europe/Madrid 2012-03-04
-3130958 Adanero Adanero Adanero 40.94487 -4.60561 P PPLA3 ES 55 AV 05001 321 908 Europe/Madrid 2012-03-04
-3130962 Adalia Adalia Adalia 41.64894 -5.12107 P PPLA3 ES 55 VA 47001 65 777 Europe/Madrid 2012-03-04
-3130965 Adahuesca Adahuesca Adahuesca 42.1461 -0.00804 P PPLA3 ES 52 HU 22003 169 618 Europe/Madrid 2012-03-04
-3130995 Aceituna Aceituna Aceituna 40.15008 -6.33292 P PPLA3 ES 57 CC 10005 629 485 Europe/Madrid 2012-03-04
-3131003 Acebo Acebo Acebo 40.20105 -6.71689 P PPLA3 ES 57 CC 10003 702 506 Europe/Madrid 2012-03-04
-3131010 Acebedo Acebedo Acebedo 43.03969 -5.116 P PPLA3 ES 55 LE 24001 0 1152 Europe/Madrid 2012-03-04
-3131018 Abusejo Abusejo Abusejo 40.709 -6.14074 P PPLA3 ES 55 SA 37001 248 842 Europe/Madrid 2012-03-04
-3131024 Abrera Abrera Abrera 41.51682 1.901 P PPL ES 56 B 08076 11521 111 Europe/Madrid 2012-01-19
-3131037 Ablitas Ablitas Ablitas 41.9745 -1.64053 P PPLA3 ES 32 NA 31006 0 380 Europe/Madrid 2012-03-04
-3131040 Ablanque Ablanque Ablanque 40.89818 -2.22523 P PPLA3 ES 54 GU 19002 138 1033 Europe/Madrid 2012-03-04
-3131049 Abizanda Abizanda Abizanda 42.24236 0.19717 P PPLA3 ES 52 HU 22002 130 627 Europe/Madrid 2012-03-04
-3131056 Abiego Abiego Abiego 42.12094 -0.06873 P PPLA3 ES 52 HU 22001 290 539 Europe/Madrid 2012-03-04
-3131057 Abia de las Torres Abia de las Torres 42.42016 -4.42131 P PPLA3 ES 55 P 34003 181 836 Europe/Madrid 2012-03-04
-3131061 Abezames Abezames Abezames 41.62642 -5.42577 P PPLA3 ES 55 ZA 49002 94 739 Europe/Madrid 2012-03-04
-3131090 Abejar Abejar Abejar 41.80755 -2.78407 P PPLA3 ES 55 SO 42001 407 1141 Europe/Madrid 2012-03-04
-3131093 Abegondo Abegondo Abegondo,Santa Eulalia 43.21667 -8.28333 P PPLA3 ES 58 C 15001 5711 97 Europe/Madrid 2012-03-04
-3131117 Abanto Abanto Abanto 41.13751 -1.69818 P PPLA3 ES 52 Z 50001 152 930 Europe/Madrid 2012-03-04
-3131126 Abánades Abanades Abanades,Abánades 40.89261 -2.48526 P PPLA3 ES 54 GU 19001 106 1029 Europe/Madrid 2012-03-04
-3131128 Ábalos Abalos Abalos,Ábalos 42.57154 -2.70956 P PPLA3 ES 27 LO 26001 304 590 Europe/Madrid 2012-03-04
-3131131 Abaltzisketa Abalcisqueta Abalcisqueta,Abaltzisketa 43.04744 -2.10532 P PPLA3 ES 59 SS 20001 0 369 Europe/Madrid 2012-03-04
-3131133 Abajas Abajas 42.6231 -3.58086 P PPLA3 ES 55 BU 09001 37 837 Europe/Madrid 2012-03-04
-3131135 Abáigar Abaigar Abaigar,Abáigar 42.64823 -2.14182 P PPLA3 ES 32 NA 31001 100 493 Europe/Madrid 2012-03-04
-3131136 Abadín Abadin Abadin,Abadín,Santa Maria,Santa María 43.36667 -7.48333 P PPLA3 ES 58 LU 27001 3193 474 Europe/Madrid 2012-03-04
-3131137 Abadiño Abadino Abadiano,Abadiano Celayeta,Abadino,Abadino Zelaieta,Abadiño,Abadiño Zelaieta,Abandiano Celayeta 43.1511 -2.60942 P PPLA3 ES 59 BI 48001 0 137 Europe/Madrid 2012-03-04
-3131138 Abadía Abadia 40.25922 -5.97828 P PPLA3 ES 57 CC 10001 288 453 Europe/Madrid 2012-03-04
-3131141 Abades Abades Abades 40.91646 -4.26937 P PPLA3 ES 55 SG 40001 907 970 Europe/Madrid 2012-03-04
-3131144 Ababuj Ababuj Ababuj 40.54908 -0.80758 P PPLA3 ES 52 TE 44001 92 1369 Europe/Madrid 2012-03-04
-6252065 Nou Barris Nou Barris Distrito Nou Barris,Nou Barris 41.44163 2.17727 P PPLX ES 56 B 08019 164981 85 85 Europe/Madrid 2010-04-04
-6269610 Yerri Yerri 42.70161 -1.93806 P PPLA3 ES 32 NA 31260 1436 516 454 Europe/Madrid 2012-03-04
-6301900 Blancafort Blancafort 41.4374 1.15983 P PPLA3 ES 56 T 43029 0 433 Europe/Madrid 2012-03-04
-6324376 Pinar de Chamartín Pinar de Chamartin 40.47903 -3.66836 P PPLX ES 29 M 28079 30000 620 737 Europe/Madrid 2009-05-17
-6324402 Las Tablas Las Tablas The Tables 40.50649 -3.67235 P PPLX ES 29 M 28006 3000 630 701 Europe/Madrid 2009-05-18
-6324533 Santa Ponsa Santa Ponsa Santa Ponca,Santa Ponsa,Santa Ponça,Santa-Ponsa,Санта-Понса 39.50868 2.4766 P PPL ES 07 PM 07011 10736 34 Europe/Madrid 2011-12-13
-6324599 Valdelacalzada Valdelacalzada 38.88943 -6.70029 P PPLA3 ES 57 BA 06901 0 184 Europe/Madrid 2012-03-04
-6324668 Areny de Noguera / Arén Areny de Noguera / Aren AAren,AArén,Areny de Noguera,Areny de Noguera / Aren,Areny de Noguera / Arén 42.25817 0.72141 P PPLA3 ES 52 HU 22035 25234 0 710 Europe/Madrid 2012-03-04
-6324686 Sopeira Sopeira 42.31615 0.74632 P PPLA3 ES 52 HU 22223 25234 0 714 Europe/Madrid 2012-03-04
-6324699 el Torricó / Altorricon el Torrico / Altorricon Altorricon,Altorricón,el Torrico,el Torrico / Altorricon,el Torricó,el Torricó / Altorricon 41.8028 0.4139 P PPL ES 52 HU 22225 1462 262 Europe/Madrid 2007-02-13
-6354969 Playa del Ingles Playa del Ingles Plaja del' Ingles,Playa del Ingles,Playa del Inglés,Плая дель Инглес 27.7567 -15.5787 P PPL ES 53 GC 35019 17158 49 Atlantic/Canary 2008-11-24
-6354970 Puerto Rico Puerto Rico 27.78943 -15.71045 P PPL ES 53 GC 35012 11000 10 25 Atlantic/Canary 2009-02-03
-6355013 Puerto del Carmen Puerto del Carmen Puehrto-del'-Karmen,Пуэрто-дель-Кармен 28.92313 -13.66579 P PPL ES 53 GC 35028 30000 44 Atlantic/Canary 2009-12-03
-6355015 Magaluf Magaluf Magalluf,Magaluf 39.5111 2.5353 P PPL ES 07 PM 07011 4346 7 Europe/Madrid 2008-04-17
-6355023 es Camp de Mar es Camp de Mar Kamp-de-Mar,el Camp de Mar,es Camp de Mar,Камп-де-Мар 39.53827 2.42386 P PPL ES 07 PM 07005 1500 9 Europe/Madrid 2009-10-01
-6355177 La Manga del Mar Menor La Manga del Mar Menor La Manga,La Manga del Mar Menor,La-Manga-del'-Mar-Menor,Ла-Манга-дель-Мар-Менор 37.64129 -0.71651 P PPL ES 31 MU 30016 10000 2 Europe/Madrid 2011-03-04
-6355183 Playa de las Américas Playa de las Americas las americas 28.06403 -16.73012 P PPL ES 53 TF 38001 3000 14 Atlantic/Canary 2008-08-29
-6355214 Las Rosas Las Rosas 28.01539 -16.65373 P PPLX ES 53 TF 38006 2000 20 Atlantic/Canary 2007-03-11
-6362987 Ceuta Ceuta Seuta,Сеута 35.88933 -5.31979 P PPLA ES CE CE 51001 78674 14 Africa/Ceuta 2011-09-11
-6363003 Sopuerta Sopuerta 43.26239 -3.15505 P PPL ES 59 BI 48086 2361 81 Europe/Madrid 2010-04-05
-6424298 Riu de Cerdanya Riu de Cerdanya 42.34541 1.82631 P PPLA3 ES 56 L 25913 25913 0 1180 Europe/Madrid 2012-03-04
-6424299 Urús Urus 42.35131 1.85343 P PPLA3 ES 56 GI 17206 17206 0 1277 Europe/Madrid 2012-03-04
-6424314 el Pont de Bar el Pont de Bar 42.3711 1.60538 P PPLA3 ES 56 L 25030 0 826 Europe/Madrid 2012-03-04
-6459081 Cabanes Cabanes Cabanes 42.30805 2.97766 P PPLA3 ES 56 GI 17030 0 26 Europe/Madrid 2011-07-31
-6533820 Sant Cristòfol de les Fonts Sant Cristofol de les Fonts 42.16964 2.49943 P PPL ES 56 GI 17114 8791 472 Europe/Madrid 2010-04-04
-6543871 Alquerías del Niño Perdido Alquerias del Nino Perdido 39.89466 -0.12943 P PPLA3 ES 60 CS 12901 3866 30 Europe/Madrid 2012-03-04
-6544075 Port d'Alcúdia Port d'Alcudia Port d'Alcudia,Port d'Alcúdia 39.84182 3.13291 P PPL ES 07 PM 07003 4185 7 Europe/Madrid 2008-04-18
-6544100 Eixample Eixample Distrito Eixample,Eixample,L'Eixample 41.38896 2.16179 P PPLX ES 56 B 08019 262485 44 Europe/Madrid 2010-04-04
-6544105 Sant Martí Sant Marti Districte de Sant Marti,Districte de Sant Martí,Sant Marti,Sant Martí 41.41814 2.19933 P PPLX ES 56 B 08019 221029 21 Europe/Madrid 2010-04-04
-6544106 Ciutat Vella Ciutat Vella Ciutat Vella,Distrito Ciutat Vella 41.38022 2.17319 P PPLX ES 56 B 08019 111290 28 Europe/Madrid 2010-04-04
-6544350 Retamar Retamar 36.8332 -2.31597 P PPL ES 51 AL 04013 4487 3 Europe/Madrid 2009-05-04
-6544409 Benalup-Casas Viejas Benalup-Casas Viejas 36.34375 -5.8128 P PPLA3 ES 51 CA 11901 0 116 Europe/Madrid 2012-03-04
-6544435 Ballesteros de Calatrava Ballesteros de Calatrava 38.8346 -3.9447 P PPLA3 ES 54 CR 13022 0 654 Europe/Madrid 2012-03-04
-6545034 Forcarei Forcarei 42.59233 -8.3509 P PPLA3 ES 58 PO 36018 0 594 Europe/Madrid 2012-03-04
-6559502 Pego Pego 38.84305 -0.11707 P PPLA3 ES 60 A 03102 11133 80 Europe/Madrid 2011-07-31
-6559503 l'Alfàs del Pi l'Alfas del Pi Alfas Del Pi,Alfaz del Pi,L'Alfas Del Pi 38.58055 -0.10321 P PPLA3 ES 60 A 03011 21011 98 Europe/Madrid 2011-07-31
-6559504 Deltebre Deltebre 40.71944 0.70835 P PPLA3 ES 56 T 43901 11751 3 Europe/Madrid 2011-07-31
-6559561 Sedella Sedella 36.86232 -4.03314 P PPLA3 ES 51 MA 29087 0 689 Europe/Madrid 2011-07-31
-6559641 Las Gabias Las Gabias 37.13296 -3.69765 P PPLA3 ES 51 GR 18905 16369 706 Europe/Madrid 2012-03-04
-6559645 San José del Valle San Jose del Valle 36.60554 -5.79895 P PPLA3 ES 51 CA 11902 0 141 Europe/Madrid 2012-03-04
-6559648 Camarles Camarles 40.78169 0.65509 P PPLA3 ES 56 T 43903 0 40 Europe/Madrid 2011-07-31
-6615214 Vall de Gallinera Vall de Gallinera 38.82313 -0.2417 P PPLA3 ES 60 A 03136 0 328 Europe/Madrid 2011-07-31
-6615440 Delicias Delicias 41.64928 -0.90757 P PPLX ES 52 Z 50297 110520 183 228 Europe/Madrid 2011-09-02
-6615442 Almozara Almozara Al'mozara,La Quimica,La Química,Альмозара 41.66124 -0.90169 P PPLX ES 52 Z 50297 25767 180 205 Europe/Madrid 2010-01-29
-6615443 Montecanal Montecanal 41.62965 -0.93873 P PPLX ES 52 Z 50297 20000 200 259 Europe/Madrid 2011-09-11
-6615444 Oliver-Valdefierro, Oliver, Valdefierro Oliver-Valdefierro, Oliver, Valdefierro 41.64454 -0.93349 P PPLX ES 52 Z 50297 30228 197 240 Europe/Madrid 2011-09-02
-6618856 Santutxu Santutxu 43.25347 -2.9161 P PPL ES 59 BI 48020 60000 140 78 Europe/Madrid 2011-09-11
-6691868 Sondika Sondika 43.3002 -2.92442 P PPLA3 ES 59 BI 48904 0 27 Europe/Madrid 2012-03-04
-6692439 El Cotillo El Cotillo Ehl'-Kotil'o,Эль-Котильо 28.68272 -14.00993 P PPL ES 53 GC 35014 1190 24 Atlantic/Canary 2011-09-11
-6692471 Los Realejos Los Realejos 28.36739 -16.58335 P PPL ES 53 TF 38031 37559 578 Atlantic/Canary 2011-09-11
-6693041 Sant Guim de Freixenet Sant Guim de Freixenet Sant Guim de l'Estacio,Sant Guim de l'Estació 41.65573 1.42024 P PPLA3 ES 56 L 25192 0 742 Europe/Madrid 2011-07-31
-6693046 Sant Joan de Mediona Sant Joan de Mediona 41.47862 1.61164 P PPL ES 56 B 08122 1943 443 Europe/Madrid 2011-09-11
-6693088 Pasaia Pasaia 43.3253 -1.92707 P PPLA3 ES 59 SS 20064 15990 10 Europe/Madrid 2011-07-31
-6694300 El entrego El entrego L'Entregu 43.28752 -5.638 P PPL ES 34 O 33060 7400 233 Europe/Madrid 2011-09-11
-6697035 Navas de San Juan Navas de San Juan 38.18382 -3.31598 P PPLA3 ES 51 J 23063 0 657 Europe/Madrid 2011-07-31
-6697039 Basauri Basauri 43.2397 -2.8858 P PPLA3 ES 59 BI 48015 42657 57 Europe/Madrid 2011-07-31
-6697214 Castrillón Castrillon 43.54793 -5.99381 P PPLA3 ES 34 O 33016 0 113 Europe/Madrid 2011-07-31
-6697592 Novés Noves 40.04746 -4.27471 P PPLA3 ES 54 TO 45118 0 555 Europe/Madrid 2011-07-31
-6941013 Sahún Sahun 42.5759 0.46546 P PPLA3 ES 52 HU 22200 323 1097 Europe/Madrid 2011-07-31
-6941410 Taberno Taberno 37.4688 -2.07736 P PPLA3 ES 51 AL 04089 0 713 Europe/Madrid 2011-07-31
-6943537 Llefià Llefia 41.43806 2.2195 P PPL ES 56 B 08015 43827 23 Europe/Madrid 2011-09-11
-7115111 Corvera de Asturias Corvera de Asturias 43.51062 -5.8691 P PPLA3 ES 34 O 33020 15955 56 Europe/Madrid 2012-03-04
-7115256 San Isidro San Isidro Paraje San Isidro,San Isidro de Albatera 38.17249 -0.83874 P PPLA3 ES 60 A 03904 0 9 Europe/Madrid 2011-07-31
-7288205 Vega del Codorno Vega del Codorno 40.42457 -1.91312 P PPLA3 ES 54 CU 16239 0 1384 Europe/Madrid 2011-07-31
-7290411 Barreiros Barreiros 43.53321 -7.23342 P PPLA3 ES 58 LU 27005 0 194 Europe/Madrid 2012-03-04
-7290713 els Poblets els Poblets 38.85381 0.02103 P PPLA3 ES 60 A 03901 0 13 Europe/Madrid 2012-03-04
-7302959 Navarredonda de Gredos Navarredonda de Gredos 40.36136 -5.13268 P PPLA3 ES 55 AV 05165 0 1530 Europe/Madrid 2012-03-04
-7521822 Alpujarra Granadina Alpujarra Granadina Alpujarra Granadina,Alpujarras,La Alpujarra,Las Alpujarras 36.93068 -3.19565 P PPLS ES 51 GR 18121 24558 942 Europe/Madrid 2010-08-20
-7577022 Tres Cantos Tres Cantos 40.60092 -3.70806 P PPLA3 ES 29 M 28903 0 731 Europe/Madrid 2010-11-04
-7577023 Castellar del Riu Castellar del Riu 42.12299 1.77378 P PPLA3 ES 56 B 08050 0 1537 Europe/Madrid 2010-11-04
-7577024 Senterada Senterada 42.32549 0.93641 P PPLA3 ES 56 L 25202 0 733 Europe/Madrid 2010-11-04
-7577025 Mendexa Mendexa Mendeja,Mendexa 43.3459 -2.4842 P PPLA3 ES 59 BI 48063 0 176 Europe/Madrid 2010-11-04
-7577026 Capolat Capolat 42.0772 1.75352 P PPLA3 ES 56 B 08045 0 1264 Europe/Madrid 2010-11-04
-7648466 Totalán Totalan 36.76526 -4.29707 P PPLA3 ES 51 MA 29092 800 277 Europe/Madrid 2012-03-04
-7732904 Sanlúcar de Barrameda Sanlucar de Barrameda 36.77889 -6.35389 P PPLA3 ES 51 CA 11032 0 10 Europe/Madrid 2011-04-04
-7778654 Jete Jete 36.79691 -3.6672 P PPLA3 ES 51 GR 18109 0 147 Europe/Madrid 2012-03-04
-7870357 Atanzón Atanzon 40.66697 -2.99686 P PPLA3 ES 54 GU 19043 0 945 Europe/Madrid 2012-03-04
-7874331 Etxebarria Etxebarria 43.25414 -2.47776 P PPLA3 ES 59 BI 48030 0 103 Europe/Madrid 2012-03-04
-7910918 Bakio Bakio 43.42917 -2.80881 P PPLA3 ES 59 BI 48012 0 5 Europe/Madrid 2012-03-04
-8050879 Iturrama Iturrama 42.80847 -1.65825 P PPLL ES 32 NA 31201 24846 449 Europe/Madrid 2011-10-17
-8050880 Ermitagaña Ermitagana 42.81084 -1.66409 P PPL ES 32 NA 31201 17163 445 Europe/Madrid 2011-10-17
-8050888 Primer Ensanche Primer Ensanche 42.81483 -1.64898 P PPL ES 32 NA 31201 22538 458 Europe/Madrid 2011-10-17
-8050889 Segundo Ensanche Segundo Ensanche 42.8139 -1.64295 P PPL ES 32 NA 31201 22538 460 Europe/Madrid 2011-10-17
-8198696 Les Franqueses del Vallès Les Franqueses del Valles 41.61929 2.29829 P PPLA3 ES 56 B 08086 0 194 Europe/Madrid 2012-02-04
-8198720 San Tirso de Abres San Tirso de Abres 43.40873 -7.14317 P PPLA3 ES 34 O 33063 0 42 Europe/Madrid 2012-03-04
-8223953 Santiago de Alcántara Santiago de Alcantara 39.60661 -7.24402 P PPLA3 ES 57 CC 10169 0 348 Europe/Madrid 2012-03-04
-325579 Ziway Ziway Ziway,Zwai,Zway 7.93333 38.71667 P PPL ET 51 49416 1649 Africa/Addis_Ababa 2012-01-19
-325780 Yirga ‘Alem Yirga `Alem Abosto,Agraria,Dalle,Irgalem,Yirga `Alem,Yirga ‘Alem,Yirgalem,Ābosto 6.75 38.41667 P PPL ET 54 36292 1778 Africa/Addis_Ababa 2012-01-19
-326036 Yabēlo Yabelo Iavello,Yabalo,Yabelo,Yabēlo,Yavello,Yavelo,Yeabelo,Yebelo,Yābalo 4.88333 38.08333 P PPL ET 51 17819 1906 Africa/Addis_Ababa 2012-01-19
-326206 Werota Werota Wereta,Wereta (2),Werota,Worota,Worrota 11.91667 37.7 P PPL ET 46 26813 1810 Africa/Addis_Ababa 2012-01-19
-326259 Were Īlu Were Ilu Uorra Ilu,Wara Haylu,Wara Hāylu,Warayelu,Ware Ilu,Warra Hailu,Were Ilu,Were Īlu,Wereyilu,Woreyilu 10.6 39.43333 P PPL ET 46 7636 2660 Africa/Addis_Ababa 2012-01-19
-326308 Wenjī Wenji Uongi,Wenji,Wenjī,Wonji 8.45 39.28333 P PPL ET 51 17120 1589 Africa/Addis_Ababa 2012-01-19
-326321 Wendo Wendo Uondo,Wando,Wendo,Wondo 6.6 38.41667 P PPL ET 54 12945 1911 Africa/Addis_Ababa 2012-01-19
-327162 Turmi Turmi Turmi,Турми 4.96667 36.48333 P PPL ET 54 1087 917 Africa/Addis_Ababa 2012-01-19
-327234 Tulu Bolo Tulu Bolo Masno Gabado,Tulu Bolo 8.66667 38.21667 P PPL ET 51 10531 2172 Africa/Addis_Ababa 2012-01-19
-327694 Tippi Tippi Tepi,Tippi,Tēpī 7.2 35.45 P PPL ET 54 24169 1175 Africa/Addis_Ababa 2012-01-19
-328316 Sirre Sirre Sere,Seri,Serē,Sire,Sire (2),Siri,Sirie,Siriè,Sirre,Sīrē,Sīrē (2) 8.31667 39.48333 P PPL ET 51 10089 1755 Africa/Addis_Ababa 2012-01-19
-328689 Shashemenē Shashemene Sciasciamanna,Sciasciamanne,Shashamana,Shashamane,Shashamani,Shashamanna,Shashamanni,Shashamané,Shashemene,Shashemenē,Shāshamani,ሻሸመኔ 7.2 38.6 P PPL ET 51 85871 1924 Africa/Addis_Ababa 2012-01-19
-328709 Shambu Shambu Sciambo,Shambo,Shambu,Shembo,Shembu 9.56667 37.1 P PPL ET 51 15354 2576 Africa/Addis_Ababa 2012-01-19
-328716 Shakīso Shakiso Shakiso,Shakīso 5.75 38.91667 P PPL ET 51 34078 1693 Africa/Addis_Ababa 2012-01-19
-328880 Sendafa Sendafa Sandafe,Sendafa,Sendefa,Sendefà 9.15 39.03333 P PPL ET 51 7326 2536 Africa/Addis_Ababa 2012-01-19
-329114 Sebeta Sebeta Sebeta 8.91667 38.61667 P PPL ET 51 19533 2311 Africa/Addis_Ababa 2012-01-19
-329586 Robīt Robit 12.01667 39.63333 P PPL ET 46 20679 1597 Africa/Addis_Ababa 2006-01-27
-330120 Nejo Nejo Najo,Nedjo,Neggio,Nego,Nejo,Neju 9.5 35.5 P PPL ET 51 20166 1888 Africa/Addis_Ababa 2012-01-19
-330186 Nazrēt Nazret Adama,Hadama,Nazareth,Nazret,Nazreth,Nazrēt 8.55 39.26667 P PPL ET 51 213995 1627 Africa/Addis_Ababa 2012-01-19
-330491 Mojo Mojo Maggio,Moccia,Modjo,Moggio,Mojjio,Mojjo,Mojo 8.6 39.11667 P PPL ET 51 34547 1766 Africa/Addis_Ababa 2012-01-19
-330534 Mīzan Teferī Mizan Teferi Mesan,Mizan,Mizan Tafari,Mizan Teferi,Mizon Teferi,Mīzan Teferī 6.98333 35.58333 P PPL ET 54 14002 1487 Africa/Addis_Ababa 2012-01-19
-330764 Metu Metu Mattu,Mettu,Metu 8.3 35.58333 P PPL ET 51 29648 1700 Africa/Addis_Ababa 2012-01-19
-330811 Metahāra Metahara Matahara,Matahārā,Metahara,Metahāra,Metehara 8.9 39.91667 P PPL ET 51 23403 958 Africa/Addis_Ababa 2012-01-19
-331038 Mendī Mendi Mandi,Mendi,Mendī,Менди 9.8 35.1 P PPL ET 51 25239 1665 Africa/Addis_Ababa 2012-01-19
-331180 Mek’elē Mek'ele Macalle,Makale,Makalle,Maqale,Maqalle,Maqalē,Mek'ele,Mek’elē 13.49667 39.47528 P PPLA ET 53 215546 2068 Africa/Addis_Ababa 2012-01-19
-331259 Mēga Mega Mega,Megga,Mēga 4.05 38.3 P PPL ET 51 6884 1819 Africa/Addis_Ababa 2012-01-19
-331416 Maych’ew Maych'ew Mai Ceu,Mai Chio,Mai Cio,Mai Ciò,Mai Keu,Maichew,Maitchew,Maych'awu,Maych'ew,Maych’awu,Maych’ew 12.7875 39.54222 P PPL ET 53 27186 2400 Africa/Addis_Ababa 2012-01-19
-331968 Lobuni Lobuni Lobuni,Omorate,Оморате 4.83333 36.1 P PPL ET 54 3363 367 Africa/Addis_Ababa 2012-01-19
-332129 Leku Leku Leku,Locu 6.86667 38.45 P PPL ET 54 11398 1826 Africa/Addis_Ababa 2012-01-19
-332288 Lalībela Lalibela Klippekirkerne i Lalibela,Labibela,Lalibala,Lalibela,Lalībela,Lālibalā,la li bei la,Лалибела,ላሊበላ,拉利貝拉 12.03333 39.03333 P PPL ET 46 11152 2299 Africa/Addis_Ababa 2012-01-19
-332746 Korem Korem Koram,Korem,Kworam,Quaram,Quoram,Quoram Vecchia,Quorem 12.50583 39.52278 P PPL ET 53 30633 2487 Africa/Addis_Ababa 2012-01-19
-332817 Konso Konso Konso,Консо 5.25 37.48333 P PPL ET 54 4593 1031 Africa/Addis_Ababa 2012-01-19
-332880 K’olīto K'olito Alaba,Alaba K'ulito,Alaba Kolito,Colito,Golito,Goluto,K'olito,K’olīto,Ālaba K’ulīto 7.31667 38.08333 P PPL ET 54 25614 1781 Africa/Addis_Ababa 2012-01-19
-332938 Kofelē Kofele Cofole,Kefole,Kofale,Kofele,Kofelē 7.06667 38.78333 P PPL ET 51 9643 2666 Africa/Addis_Ababa 2012-01-19
-333103 Kibre Mengist Kibre Mengist Adola,Angedi,Kibre Mengist 5.88333 38.98333 P PPL ET 51 27854 1690 Africa/Addis_Ababa 2012-01-19
-333356 Kemisē Kemise Cascim,Kassebie,Kemise,Kemissie,Kemisē,Kemse,Kemsē 10.71667 39.86667 P PPL ET 46 23861 1438 Africa/Addis_Ababa 2012-01-19
-333373 Kombolcha Kombolcha Cambolcia,Combolcha,Combolcia,Kambolcha,Kambolchā,Kembolcha,Kombol'cha,Kombolcah,Kombolcha,Комбольча 11.08155 39.74339 P PPL ET 46 93605 1883 Africa/Addis_Ababa 2011-10-28
-333750 Jinka Jinka Jinka 5.65 36.65 P PPL ET 54 32115 1430 Africa/Addis_Ababa 2012-01-19
-333772 Jīma Jima Djimma,Gima,Gimma,Jima,Jimma,Jīma 7.66667 36.83333 P PPL ET 51 128306 1716 Africa/Addis_Ababa 2012-01-19
-333795 Jijiga Jijiga Djigdjiga,Dzhidzhiga,Giggiga,Giggigga,Jigjiga,Jigjigga,Jijiga,Джиджига 9.35 42.8 P PPLA ET 52 56821 1646 Africa/Addis_Ababa 2012-01-19
-334227 Inda Silasē Inda Silase Enda Salassie,Enda Selase,Enda Selassie,Enda Selassye,Enda Sellassie,Endā Selāsē,Inda Selassie,Inda Silase,Inda Silasē,Shire Inda Silase,Shirē Inda Silasē,Ynda Syllase 14.10307 38.28289 P PPL ET 53 50078 1912 Africa/Addis_Ababa 2012-01-19
-334529 Huruta Huruta Hurruta,Huruta,Huruta (1),Uruta Mariam 8.15 39.35 P PPL ET 51 12442 2030 Africa/Addis_Ababa 2012-01-19
-334700 Hīrna Hirna Hirna,Hīrna 9.21667 41.1 P PPL ET 51 12295 1789 Africa/Addis_Ababa 2012-01-19
-335035 Hārer Harer Harar,Harer,Harrar,Hārar,Hārer,Kharer,ሐረር 9.30944 42.12583 P PPLA ET 50 90218 1866 Africa/Addis_Ababa 2012-01-19
-335286 Hāgere Selam Hagere Selam Agere Selam,Agheresalam,Hagere Selam,Hula,Hāgere Selam 6.48333 38.51667 P PPL ET 54 5169 2746 Africa/Addis_Ababa 2012-01-19
-335288 Hāgere Hiywet Hagere Hiywet Agere Hiywet,Ambo,Hagere Hiwot,Hagere Hiywet,Hagere Hiywot,Hagere-Hiywer,Hāgere Hiywet,Āmbo 8.98333 37.85 P PPL ET 51 43920 2089 Africa/Addis_Ababa 2012-01-19
-335733 Guder Guder 8.96667 37.76667 P PPL ET 51 12569 2031 Africa/Addis_Ababa 2006-01-17
-335943 Gorē Gore Gannat,Genud,Gore,Gorei,Gorē,Gwore 8.15 35.53333 P PPL ET 51 9352 2046 Africa/Addis_Ababa 2012-01-19
-336014 Gonder Gonder Gondar,Gondehr,Gonder,Gwender,Gwonder,gong de er,gwndr,Гондар,Гондэр,גונדר,ጎንደር,貢德爾 12.6 37.46667 P PPL ET 46 153914 2201 Africa/Addis_Ababa 2012-01-19
-336350 Goba Goba Goba,Gobba,Gobbà,Гоба 7.01667 39.98333 P PPL ET 51 34369 2682 Africa/Addis_Ababa 2012-01-19
-336372 Giyon Giyon Chitu,Ghion,Gion,Giyon,Guyon,Ualiso,Uoliso,Uolisò,Waliso,Walliso,Walso,Weliso,Welso,Welīso,Woliso,Wolisso,Wolliso 8.53333 37.98333 P PPL ET 51 38394 2040 Africa/Addis_Ababa 2012-01-19
-336454 Gīnīr Ginir Ghigner,Ghiignir,Ghimir,Ghinner,Ghinnir,Ginir,Ginnir,Ginnīr,Gīnīr 7.13333 40.7 P PPL ET 51 16757 1947 Africa/Addis_Ababa 2012-01-19
-336496 Gīmbī Gimbi Gembi,Ghimbi,Gimbi,Gīmbī 9.16667 35.83333 P PPL ET 51 31809 2035 Africa/Addis_Ababa 2012-01-19
-336526 Gīdolē Gidole Ghidole,Ghidolie,Gidole,Gīdolē 5.65 37.36667 P PPL ET 54 10736 2102 Africa/Addis_Ababa 2012-01-19
-336745 Gewanē Gewane Gauani,Gawani,Gawāni,Gewane,Gewani,Gewanē,Gewanī 10.16639 40.64528 P PPL ET 45 11279 617 Africa/Addis_Ababa 2012-01-19
-336931 Genet Genet Genet,Gennet,Holata,Holeta,Holetta,Hollatta,Holota,Holotā,Oletta,Zhenja,Женя 9.06667 38.5 P PPL ET 51 23753 2402 Africa/Addis_Ababa 2012-01-19
-337010 Gelemso Gelemso Galamso,Gelemso,Ghelemso,Ghelemsò 8.81667 40.51667 P PPL ET 51 16065 1795 Africa/Addis_Ababa 2012-01-19
-337083 Gēdo Gedo Gedo,Ghedo,Gēdo 9.01667 37.45 P PPL ET 51 7499 2500 Africa/Addis_Ababa 2012-01-19
-337152 Gebre Guracha Gebre Guracha Cuyu,Gabra Guracha,Gabre Guracha,Gebre Guracha,Kuyu 9.8 38.4 P PPL ET 51 16583 2539 Africa/Addis_Ababa 2012-01-19
-337405 Gambēla Gambela Gambeila,Gambela,Gambela Post,Gambele,Gambella,Gambēla,Гамбеле 8.25 34.58333 P PPLA ET 49 42366 439 Africa/Addis_Ababa 2012-01-19
-337712 Finote Selam Finote Selam Fenote Selam,Finote Selam 10.7 37.26667 P PPL ET 46 23463 1914 Africa/Addis_Ababa 2012-01-19
-337771 Fichē Fiche Feche,Fechē,Ficce,Fice,Fiche,Fichē,Fitche 9.8 38.73333 P PPL ET 51 25758 2792 Africa/Addis_Ababa 2012-01-19
-337853 Felege Neway Felege Neway Felege Neway,Felege Niway,Sawla Felege Neway 6.3 36.88333 P PPL ET 54 33429 1361 Africa/Addis_Ababa 2012-01-19
-338554 Dubtī Dubti Dubti,Dubtī,Dufti,Dufty,Duftī 11.73611 41.08528 P PPL ET 45 26370 382 Africa/Addis_Ababa 2012-01-19
-338726 Dodola Dodola Dodola,Dodolla,Dodolo,Додола 6.98333 39.18333 P PPL ET 51 23116 2464 Africa/Addis_Ababa 2012-01-19
-338832 Dirē Dawa Dire Dawa D'ire Daua,Daredawa,Dirdabo,Dirdabò,Dire Daba,Dire Daua,Dire Dawa,Dire Dewa,Dire-Daoua,Direaoua,Diredavy,Dirediua,Diré-Daoua,Dirē Dawa,D’ire Daua,dile dawa,dyrt dawa,Диредавы,דירה דאווה,ديرة داوا,ድሬዳዋ,디레 다와 9.59306 41.86611 P PPLA ET 48 252279 1204 Africa/Addis_Ababa 2012-01-19
-338998 Dīla Dila Dila,Dilla,Dīla,Дила 6.41667 38.31667 P PPL ET 54 47021 1594 Africa/Addis_Ababa 2012-01-19
-339219 Desē Dese Dase,Dasē,Dese,Desje,Dessa,Dessi,Dessie,Dessye,Desē,Desė 11.13333 39.63333 P PPL ET 46 136056 2494 Africa/Addis_Ababa 2012-01-19
-339448 Dembī Dolo Dembi Dolo Dambidollo,Dambidolo,Dembi Doilo,Dembi Dolo,Dembidollo,Dembilollo,Dembī Dolo,Saio 8.53333 34.8 P PPL ET 51 26748 1847 Africa/Addis_Ababa 2012-01-19
-339551 Dejen Dejen Degen,Dejen,Dingab 10.16667 38.13333 P PPL ET 46 11739 2452 Africa/Addis_Ababa 2012-01-19
-339629 Deder Deder Dadar,Deder 9.31667 41.45 P PPL ET 51 8884 2206 Africa/Addis_Ababa 2012-01-19
-339666 Debre Zeyit Debre Zeyit Biscioftu,Biscioftù,Bishoftu,Debra Zeit,Debre Zeit,Debre Zeyit,Debre Zeyt 8.75 38.98333 P PPL ET 51 104215 1916 Africa/Addis_Ababa 2012-01-19
-339671 Debre Werk’ Debre Werk' Dabra Wark',Dabra Wark’,Dabra-Warq,Debra Uerch,Debra Uorc,Debra Uorch,Debra Uork,Debra Wark,Debra Werk,Debra Work,Debre Werk',Debre Werk’ 10.66667 38.16667 P PPL ET 46 10579 2513 Africa/Addis_Ababa 2012-01-19
-339686 Debre Tabor Debre Tabor Dabra-Tabor,Dabra-Tābor,Debra Tabor,Debre Tabor,Samara 11.85 38.01667 P PPL ET 46 32659 2692 Africa/Addis_Ababa 2012-01-19
-339692 Debre Sīna Debre Sina Debra Sina,Debre Sina,Debre Sīna 9.85 39.76667 P PPL ET 46 9409 2627 Africa/Addis_Ababa 2012-01-19
-339708 Debre Mark’os Debre Mark'os Dabra Marko's,Dabra Mārko’s,Dabra-7arqos,Dabra-7ārqos,Debra Marcos,Debra Markos,Debre Marcos,Debre Mark'os,Debre Mark’os,Moncorer,Monkorer 10.35 37.73333 P PPL ET 46 59920 2487 Africa/Addis_Ababa 2012-01-19
-339734 Debre Birhan Debre Birhan Dabra Berham,Dabra-Berhan,Dabra-Berhān,Debra Berham,Debra Berhan,Debra Birhan,Debra Brehan,Debre Berhan,Debre Birhan 9.68333 39.53333 P PPL ET 46 57787 2789 Africa/Addis_Ababa 2012-01-19
-339823 Debark’ Debark' Dabark',Dabarq,Dabārk’,Dabārq,Davark,Debarec,Debarech,Debarek,Debark',Debark’,Devark,Dibark 13.15611 37.89806 P PPL ET 46 24700 2854 Africa/Addis_Ababa 2012-01-19
-340358 Dabat Dabat Dabat,Dabat (2),Dahat 12.98417 37.765 P PPL ET 46 11544 2602 Africa/Addis_Ababa 2012-01-19
-341297 Butajīra Butajira Butajera,Butajira,Butajīra,Butlagira,Buttagira 8.11667 38.36667 P PPL ET 54 30502 2073 Africa/Addis_Ababa 2012-01-19
-341397 Burē Bure Bure,Burie,Burja,Burye,Burē,Буря 10.7 37.06667 P PPL ET 46 22038 2058 Africa/Addis_Ababa 2012-01-19
-341742 Bonga Bonga Bonga,Bonga (1),Бонга 7.28333 36.23333 P PPL ET 54 18973 1596 Africa/Addis_Ababa 2012-01-19
-341877 Bodītī Boditi Boditi,Boditti,Boditu,Bodity,Bodītī 6.96667 37.86667 P PPL ET 54 32997 1998 Africa/Addis_Ababa 2012-01-19
-342190 Bichena Bichena Bechana,Bechanā,Biccena,Bichana,Bichena 10.45 38.2 P PPL ET 46 16411 2544 Africa/Addis_Ababa 2012-01-19
-342559 Bedēsa Bedesa Bedesa,Bedessa,Bedēsa 8.9 40.78333 P PPL ET 51 17526 1683 Africa/Addis_Ababa 2012-01-19
-342567 Bedelē Bedele Beddele,Bedele,Bedelle,Bedelli,Bedelē 8.456 36.35302 P PPL ET 51 20293 2011 Africa/Addis_Ababa 2012-01-19
-342641 Batī Bati Bati,Batia,Batie,Batī 11.18333 40.01667 P PPL ET 46 19260 1671 Africa/Addis_Ababa 2012-01-19
-342856 Bako Bako Bachio,Baco,Baka,Bako,Бако 5.78333 36.56667 P PPL ET 54 17872 1401 Africa/Addis_Ababa 2012-01-19
-342884 Bahir Dar Bahir Dar Babardur Georgis,Bahar,Bahar Dar,Bahar Dar Ghiorghis,Baher Dar,Baherdar-Giyorgis,Bahir Dar,Bahr Dar,Bahrdar Giyergio,Bahrdar Giyorgis,Bakhr-Dar,Bāherdār-Giyorgis,bhr dr,Бахр-Дар,בהר דר 11.59364 37.39077 P PPLA ET 46 168899 1799 Africa/Addis_Ababa 2011-10-29
-343134 Āwash Awash Auasc,Awash,Āwash 8.98333 40.16667 P PPL ET 45 11415 917 Africa/Addis_Ababa 2012-01-19
-343137 Āwasa Awasa Avase,Awasa,Awassa,Hawassa,Āwasa,Авасе,אוושה 7.05 38.46667 P PPLA ET 54 133097 1696 Africa/Addis_Ababa 2012-01-19
-343292 Āsosa Asosa 10.06667 34.53333 P PPLA ET 47 30512 1530 Africa/Addis_Ababa 2006-01-17
-343402 Āsbe Teferī Asbe Teferi Asba Littorio,Asbar Tafari,Asbatafari,Asbe Taferi,Asbe Tefen,Asbe Teferi,Asebe Tafari,Asebe Teferi,Āsbe Teferī,Āsebe Teferī 9.08333 40.86667 P PPL ET 51 30772 1761 Africa/Addis_Ababa 2012-01-19
-343409 Asaita Asaita Aisaita,Asaita,Asajita,Asayita,Asayta,Assayita,Aysa'ita,Āsayita,Āysa’īta,Асайита 11.56361 41.43944 P PPL ET 45 20342 375 Africa/Addis_Ababa 2012-01-19
-343413 Āsasa Asasa Asasa,Āsasa 7.1 39.2 P PPL ET 51 23790 2369 Africa/Addis_Ababa 2012-01-19
-343593 Āreka Areka Ancheto,Areka,Areka Ancheto,Āreka 7.06667 37.7 P PPL ET 54 33150 1737 Africa/Addis_Ababa 2012-01-19
-343663 Ārba Minch’ Arba Minch' Arba Mench,Arba Minch',Arba Mintch,Gantar,Minghi,Ārba Minch’ 6.03333 37.55 P PPL ET 54 69622 1269 Africa/Addis_Ababa 2012-01-19
-344420 Āksum Aksum Akesum,Aksoum,Aksum,Aksumo,Axum,akswm,Āksum,Аксум,أكسوم,አክሱም 14.12448 38.72444 P PPL ET 53 41249 2143 Africa/Addis_Ababa 2012-01-19
-344620 Āgere Maryam Agere Maryam Agere Mariam,Agere Maryam,Aghere Mariam,Alga,Alge,Alghe,Algheremariam,Algā,Hagere Mariam,Āgere Maryam 5.63333 38.23333 P PPL ET 51 22105 1860 Africa/Addis_Ababa 2012-01-19
-344661 Āgaro Agaro Agaro,Aggaro,Aggarò,Āgaro 7.85 36.65 P PPL ET 51 28268 1609 Africa/Addis_Ababa 2012-01-19
-344923 Ādīs Zemen Adis Zemen Addis Zaman,Addis Zemen,Adis Zemen,Ādīs Zemen 12.11667 37.78333 P PPL ET 46 22522 2023 Africa/Addis_Ababa 2012-01-19
-344976 Ādīs ‘Alem Adis `Alem Addis Alem,Addis-Alam,Addis-Ālam,Adis `Alem,Ādīs ‘Alem 9.03333 38.4 P PPL ET 51 9859 2315 Africa/Addis_Ababa 2012-01-19
-344979 Addis Ababa Addis Ababa Addis Ababa,Addis Abbaba,Addis Abeba,Addis-Abeba,Addis-Abebae,Addisz-Abeba,Adis Abeba,Adis-Abebo,Adisabeba,Adís Abeba,Adís Abeba - አዲስ አበባ,Adís Abeba - አዲስ ፡ አበባ,Antis Ampempa,Neanthopolis,a di si a bei ba,adisa ababa,adiseuababa,adisuabeba,adys ababa,Ādīs Ābeba,Αντίς Αμπέμπα,Аддис-Абебæ,Аддис-Абеба,Аддіс-Абеба,Адис Абеба,Ադիս Աբեբա,אדיס אבבה,آدیس آبابا,أديس أبابا,ئەددىس -ئەبىبە,अदिस अबाबा,አዲስ አበባ,アディスアベバ,阿迪斯阿貝巴,아디스아바바 9.02497 38.74689 P PPLC ET 44 2757729 2405 Africa/Addis_Ababa 2010-05-30
-345149 Ādīgrat Adigrat 14.277 39.462 P PPL ET 53 65000 2451 Africa/Addis_Ababa 2011-03-05
-345353 Addiet Canna Addiet Canna Addiet,Addiet Canna,Adet,Ādēt 11.26667 37.48333 P PPL ET 46 22946 2203 Africa/Addis_Ababa 2012-01-19
-345704 Abomsa Abomsa Abomsa,Abonsa 9.98333 39.98333 P PPL ET 46 15258 1300 Africa/Addis_Ababa 2012-01-19
-6913519 Semera Semera Semera 11.50099 41.20098 P PPLA ET 45 833 681 Africa/Addis_Ababa 2012-01-20
-630736 Ypäjä Ypaejae 60.8 23.28333 P PPLA3 FI 13 05 981 2659 88 Europe/Helsinki 2011-07-31
-630752 Ylöjärvi Ylojarvi Ylajarvi,Yloejaervi,Yläjarvi,Ylöjärvi 61.55632 23.59606 P PPLA3 FI 15 06 980 22140 107 Europe/Helsinki 2011-07-31
-630768 Ylivieska Ylivieska ILIVIESKA,Ylivieska,ИЛИВИЕСКА 64.08333 24.55 P PPLA3 FI 08 17 977 13159 57 Europe/Helsinki 2012-02-20
-630779 Ylitornio Ylitornio Badje-Duortnus,OEvertornea,Ylitornio,Övertorneå 66.30893 23.67734 P PPLA3 FI 06 19 976 5104 143 Europe/Helsinki 2012-02-20
-630805 Ylistaro Ylistaro Ylistaro 62.95 22.51667 P PPL FI 15 14 743 5580 35 Europe/Helsinki 2012-01-18
-630918 Ylikiiminki Ylikiiminki Ilikiminki,OEverkiminge,Ylikiiminki,Överkiminge,Иликиминки 65.08333 26.25 P PPLA3 FI 08 17 564 3386 85 Europe/Helsinki 2011-12-31
-630952 Yli-Ii Yli-Ii Ili-I,OEverijo,Yli-Ii,Överijo,Или-И 65.36667 25.83333 P PPLA3 FI 08 17 972 2235 51 Europe/Helsinki 2012-03-18
-630956 Ylihärmä Yliharma 63.15 22.78333 P PPLA3 FI 15 14 233 2836 49 Europe/Helsinki 2011-12-31
-630998 Yläne Ylane Yulyane 60.88333 22.41667 P PPLA3 FI 15 02 636 2148 74 Europe/Helsinki 2011-12-31
-631003 Ylämaa Ylamaa Juljamaa,Ylaemaa,Ylämaa,Юлямаа 60.8 28 P PPLA3 FI 13 09 405 1415 38 Europe/Helsinki 2011-12-31
-631191 Vuolijoki Vuolijoki Vuolijo,Vuolijoki,Вуолийо 64.18333 27.01667 P PPL FI 08 18 205 2557 139 Europe/Helsinki 2012-01-18
-631254 Vörå Voera Voera,Voeyri,Vora,Vörå,Vöyri 63.13607 22.25223 P PPLA3 FI 15 15 946 3416 30 Europe/Helsinki 2011-12-31
-631358 Virtasalmi Virtasalmi Virtasalmi,Виртасалми 62.15 27.46667 P PPL FI 14 10 593 1123 134 Europe/Helsinki 2012-01-18
-631376 Virrat Virrat Virdois,Virrat,Virtois,Wirrat,Виррат 62.24759 23.78004 P PPLA3 FI FI 15 06 936 7707 127 Europe/Helsinki 2012-02-20
-631448 Vimpeli Vimpeli Vimpeli,Wimpeli 63.15 23.8 P PPL FI 15 14 934 3418 82 Europe/Helsinki 2012-01-18
-631459 Vilppula Vilppula Val'ppu,Vil'ppula,Vilppula,Вильппула 62.02121 24.50483 P PPLA3 FI FI 15 06 508 5422 113 Europe/Helsinki 2011-12-31
-631511 Viljakkala Viljakkala Viliakkala,Viljakkala,Wiljakkala 61.7 23.26667 P PPL FI 15 06 980 2125 89 Europe/Helsinki 2012-01-18
-631560 Viitasaari Viitasaari Viitasaari,Vijtasaari,Вийтасаари 63.06667 25.86667 P PPLA3 FI 15 13 931 7511 142 Europe/Helsinki 2011-07-31
-631693 Viiala Viiala 61.21023 23.76738 P PPL FI 15 06 020 5472 78 Europe/Helsinki 2011-12-31
-631707 Vihti Vihti Vichtis,Vihti,Vikhti,Вихти 60.41699 24.31965 P PPLA3 FI 13 01 927 26280 39 Europe/Helsinki 2011-07-31
-631758 Vihanti Vihanti Vihanti,Vikhanti,Wihanti,Виханти 64.48333 25 P PPL FI 08 17 926 3270 102 Europe/Helsinki 2012-01-18
-631778 Vieremä Vierema Vierema,Vieremae,Vieremja,Vieremä,Виеремя 63.75 27.01667 P PPL FI 14 11 925 4100 112 Europe/Helsinki 2012-01-18
-631825 Veteli Veteli Veteli,Vetil 63.47839 23.78285 P PPLA3 FI 15 16 924 3523 89 Europe/Helsinki 2012-02-20
-631856 Vesilahti Vesilahti Vesilahti 61.31667 23.61667 P PPLA3 FI 15 06 922 3949 93 Europe/Helsinki 2012-02-20
-631873 Vesanto Vesanto Vesanto,Wesanto,Весанто 62.93333 26.41667 P PPLA3 FI 14 11 921 2537 110 Europe/Helsinki 2011-07-31
-631994 Velkua Velkua Velkua 60.46667 21.66667 P PPLA3 FI 15 02 529 217 1 Europe/Helsinki 2011-12-31
-632041 Vehmersalmi Vehmersalmi Vehmersalmi,Vekhmersalmi,Вехмерсалми 62.76101 28.02853 P PPL FI 14 11 297 1889 97 Europe/Helsinki 2011-12-31
-632062 Vehmaa Vehmaa Vehmo,Vemo 60.68333 21.66667 P PPLA3 FI 15 02 918 2435 7 Europe/Helsinki 2011-08-11
-632225 Västanfjärd Vastanfjard Vestanfjard,Vestanfjärd 60.05 22.68333 P PPLA3 FI 15 02 322 783 15 Europe/Helsinki 2011-12-31
-632361 Varpaisjärvi Varpaisjarvi Varpaisjaervi,Varpaisjarvi,Varpaisjärvi,Varpajs"jarvi,Варпайсъярви 63.36667 27.75 P PPL FI 14 11 402 3007 121 Europe/Helsinki 2012-01-18
-632370 Varkaus Varkaus VARKAUS,Varkaus,ВАРКАУС 62.31533 27.873 P PPLA3 FI 14 11 915 22365 76 Europe/Helsinki 2011-07-31
-632453 Vantaa Vantaa Vanda,Vantaa,Вантаа 60.29414 25.04099 P PPL FI FI 13 01 092 190058 18 Europe/Helsinki 2011-12-31
-632539 Vampula Vampula 61.01667 22.7 P PPLA3 FI 15 04 102 1743 75 Europe/Helsinki 2011-12-31
-632542 Vammala Vammala Vammala,Ваммала 61.33333 22.9 P PPLA3 FI 15 06 790 14982 68 Europe/Helsinki 2011-12-31
-632552 Valtimo Valtimo Valtimo,Valtimojarvi,Valtimojärvi,Waltimo,Валтимо 63.66667 28.8 P PPLA3 FI 14 12 911 2729 100 Europe/Helsinki 2011-07-31
-632669 Valkeala Valkeala Valkeala,Валкеала 60.95 26.8 P PPL FI 13 08 286 11058 75 Europe/Helsinki 2012-01-18
-632672 Valkeakoski Valkeakoski VALKEAKOSKI,Valkeakoski,ВАЛКЕАКОСКИ 61.26421 24.03122 P PPLA3 FI 15 06 908 20376 98 Europe/Helsinki 2011-07-31
-632860 Vahto Vahto 60.6 22.3 P PPLA3 FI 15 02 704 1916 30 Europe/Helsinki 2011-12-31
-632923 Vähäkyrö Vahakyro Lillkyro,Vaehaekyroe,Vaehaeykyroe,Vähäkyrö,Vähäykyrö 63.05635 22.10584 P PPLA3 FI 15 15 942 4638 17 Europe/Helsinki 2011-07-31
-632978 Vaasa Vaasa Nikolainkaupunki,Nikolaistad,Vaasa,Vasa,Wasa,basa,wa sa,Вааса,バーサ,瓦萨 63.096 21.61577 P PPLA2 FI 15 15 905 57014 7 Europe/Helsinki 2012-02-14
-633096 Vaala Vaala Vaala,Vala,Вала 64.56667 26.83333 P PPL FI 08 18 785 3652 138 Europe/Helsinki 2012-01-18
-633221 Uusikaupunki Uusikaupunki Nystad,Nyustad,Usikaupunki,Uusikaupunki,uusikaupunki,Уусикаупунки 60.80043 21.40841 P PPLA3 FI 15 02 895 16226 16 Europe/Helsinki 2011-07-31
-633242 Uurainen Uurainen Urajnen,Uurainen,Урайнен 62.5 25.45 P PPLA3 FI 15 13 892 3104 198 Europe/Helsinki 2011-07-31
-633268 Utsjoki Utsjoki Ohcejohka,Utsjoki,Utsyoki,Утсйоки 69.90864 27.02843 P PPLA3 FI 06 19 890 1401 71 Europe/Helsinki 2012-02-20
-633295 Utajärvi Utajarvi Utajaervi,Utajarvi,Utajärvi,Utayarvi,Утаярви 64.75 26.38333 P PPLA3 FI 08 17 889 3243 97 Europe/Helsinki 2012-02-20
-633332 Urjala Urjala Urdiala,Urjala 61.08333 23.53333 P PPLA3 FI 15 06 887 5542 111 Europe/Helsinki 2012-02-20
-633395 Ulvila Ulvila Ulfsby,Ulfsbyu,Ulvila,Ulvsby,Улвила 61.42844 21.87103 P PPLA3 FI 15 04 886 12314 5 Europe/Helsinki 2012-03-18
-633413 Ullava Ullava 63.6 24.08333 P PPLA3 FI 15 16 272 1048 124 Europe/Helsinki 2011-12-31
-633541 Tyrnävä Tyrnava 64.76469 25.6523 P PPLA3 FI 08 17 859 5636 20 Europe/Helsinki 2012-02-20
-633591 Tuusula Tuusula Thusby,Tusby,Tuusula,Туусула 60.40368 25.02638 P PPLA3 FI 13 01 858 34725 58 Europe/Helsinki 2011-07-31
-633593 Tuusniemi Tuusniemi Tusniemi,Tuusniemi,Тусниеми 62.81667 28.5 P PPLA3 FI 14 11 857 2833 116 Europe/Helsinki 2011-07-31
-633611 Tuupovaara Tuupovaara Tupovara,Tuupovaara,Туповара 62.48333 30.6 P PPL FI 14 12 167 2059 140 Europe/Helsinki 2012-01-18
-633619 Tuulos Tuulos Tulos,Tuulos,Тулос 61.15 24.8 P PPLA3 FI 13 05 109 1466 98 Europe/Helsinki 2011-12-31
-633679 Turku Turku Abo,Aboa,Turcu,Turku,Turu,Túrcú,to~uruku,tu er ku,twrqw,Åbo,Турку,טורקו,トゥルク,圖爾庫 60.45148 22.26869 P PPLA FI 15 02 853 175945 22 Europe/Helsinki 2011-12-31
-634008 Töysä Toysa 62.63333 23.81667 P PPLA3 FI 15 14 863 3144 140 Europe/Helsinki 2011-07-31
-634093 Tornio Tornio Duortnus,Tornea,Torneå,Tornio,Торнио 65.84811 24.14662 P PPLA3 FI 06 19 851 21236 6 Europe/Helsinki 2011-08-12
-634297 Toivakka Toivakka Toivakka,Tojvakka,Тойвакка 62.1 26.08333 P PPLA3 FI 15 13 850 2349 113 Europe/Helsinki 2011-07-31
-634317 Akaa Akaa Akaa 61.16667 23.86667 P PPL FI 15 06 020 8258 84 Europe/Helsinki 2011-12-31
-634324 Toholampi Toholampi Toholampi,Tokholampi,Тохолампи 63.76667 24.25 P PPLA3 FI 15 16 849 3481 94 Europe/Helsinki 2011-07-31
-634331 Tohmajärvi Tohmajarvi Tohmajaervi,Tohmajärvi 62.18333 30.38333 P PPLA3 FI 14 12 848 4911 72 Europe/Helsinki 2011-07-31
-634561 Teuva Teuva OEstermark,Teuva,Östermark 62.4819 21.74156 P PPLA3 FI 15 14 846 6092 63 Europe/Helsinki 2011-07-31
-634592 Tervola Tervola Tervola,Тервола 66.08333 24.8 P PPL FI 06 19 845 3538 46 Europe/Helsinki 2012-01-18
-634604 Tervo Tervo Tervo,Терво 62.95 26.75 P PPLA3 FI 14 11 844 1847 110 Europe/Helsinki 2011-07-31
-634651 Tervakoski Tervakoski Tervakoski,Тервакоски 60.8 24.61667 P PPL FI 13 05 165 4753 98 Europe/Helsinki 2012-01-18
-634851 Tarvasjoki Tarvasjoki 60.58333 22.73333 P PPLA3 FI 15 02 838 1961 49 Europe/Helsinki 2011-07-31
-634963 Tampere Tampere Tammerfors,Tampere,Tamperė,tanpere,tmprh,Тампере,טמפרה,タンペレ 61.49911 23.78712 P PPLA2 FI 15 06 837 202687 114 Europe/Helsinki 2012-02-14
-634992 Tammela Tammela 60.81035 23.76823 P PPLA3 FI 13 05 834 6519 119 Europe/Helsinki 2011-07-31
-635130 Taivassalo Taivassalo Taivassalo,Tefsala,Toevsala,Tofsala,Töfsala,Tövsala 60.56085 21.61639 P PPLA3 FI 15 02 833 1702 14 Europe/Helsinki 2011-07-31
-635141 Taivalkoski Taivalkoski Taivalkoski,Tajvalkoski,Тайвалкоски 65.56667 28.25 P PPLA3 FI 08 17 832 4678 207 Europe/Helsinki 2011-07-31
-635150 Taipalsaari Taipalsaari Taipalsaari,Tajpalsari,Тайпалсари 61.15 28.05 P PPLA3 FI 13 09 831 4778 68 Europe/Helsinki 2012-02-20
-635336 Sysmä Sysma Sysmae,Sysmä 61.5 25.68333 P PPLA3 FI 13 07 781 4570 74 Europe/Helsinki 2011-07-31
-635692 Suonenjoki Suonenjoki SUONENJOKI,Suomenjoki,Suonenjoki,СУОНЕНЙОКИ 62.61667 27.13333 P PPLA3 FI 14 11 778 7568 104 Europe/Helsinki 2011-07-31
-635696 Suomussalmi Suomussalmi Suomusal'mi,Suomussahni,Suomussalmi,Суомуссалми 64.88685 28.90778 P PPLA3 FI 08 18 777 9974 193 Europe/Helsinki 2012-02-20
-635698 Suomusjärvi Suomusjarvi 60.35 23.65 P PPLA3 FI 15 02 734 1310 105 Europe/Helsinki 2011-12-31
-635710 Suomenniemi Suomenniemi Suomenniemi,Суоменниеми 61.31667 27.45 P PPLA3 FI 13 09 775 841 122 Europe/Helsinki 2012-02-20
-635745 Suolahti Suolahti SUOLAKHTI,Suolahti,СУОЛАХТИ 62.56667 25.86667 P PPL FI 15 13 992 5399 134 Europe/Helsinki 2012-01-18
-635780 Suodenniemi Suodenniemi Suodenniemi 61.56667 22.78333 P PPL FI 15 06 790 1274 74 Europe/Helsinki 2012-01-18
-635826 Sumiainen Sumiainen Sumiainen,Sumiajnen,Сумиайнен 62.65 26.03333 P PPL FI 15 13 992 1251 84 Europe/Helsinki 2012-01-18
-635844 Sulkava Sulkava Sulkava,Сулкава 61.78691 28.37299 P PPL FI 14 10 768 3212 94 Europe/Helsinki 2012-02-05
-636173 Sotkamo Sotkamo Sotkamo,Соткамо 64.13333 28.41667 P PPLA3 FI 08 18 765 10368 134 Europe/Helsinki 2012-02-20
-636301 Sonkajärvi Sonkajarvi Sonkajaervi,Sonkajarvi,Sonkajärvi,Сонкаярви 63.66667 27.51667 P PPLA3 FI 14 11 762 4819 125 Europe/Helsinki 2012-02-20
-636345 Somero Somero Somero,Сомеро 60.61667 23.53333 P PPL FI 15 02 761 9840 93 Europe/Helsinki 2012-01-18
-636393 Soini Soini Soini,Sojni,Сойни 62.86667 24.21667 P PPLA3 FI 15 14 759 2665 195 Europe/Helsinki 2011-07-31
-636464 Sodankylä Sodankyla SODANKJULJA,Soadegilli,Soađegilli,Sodankyla,Sodankylae,Sodankylä,Sodankyulya,СОДАНКЮЛЯ 67.41667 26.6 P PPLA3 FI 06 19 758 8942 191 Europe/Helsinki 2012-02-20
-636608 Siuntio Siuntio Shundeo,Siunlia,Siuntio,Sjundea,Sjundeå,Шундео 60.13862 24.22715 P PPLA3 FI 13 01 755 5229 40 Europe/Helsinki 2011-07-31
-636802 Simo Simo Simo,Симо 65.66667 25.05 P PPL FI 06 19 751 3582 19 Europe/Helsinki 2012-01-18
-636803 Simo Simo Sima,Simo,Simå,Симо 65.66667 24.06667 P PPL FI 06 3656 -9999 Europe/Helsinki 2012-01-18
-636947 Siilinjärvi Siilinjarvi Siilinjaervi,Siilinjärvi,Silin"jarvi,Силинъярви 63.08333 27.66667 P PPLA3 FI 14 11 749 20209 83 Europe/Helsinki 2011-07-31
-637002 Siikajoki Siikajoki Siikajoki,Sikaioki,Sikajoki,Сикайоки 64.81455 24.75924 P PPLA3 FI 08 17 748 1293 18 Europe/Helsinki 2011-07-31
-637020 Siikainen Siikainen 61.87703 21.81945 P PPLA3 FI 15 04 747 1917 53 Europe/Helsinki 2011-07-31
-637035 Sievi Sievi Sievi,Сиеви 63.9 24.5 P PPLA3 FI 08 17 746 5281 98 Europe/Helsinki 2012-02-20
-637067 Sibbo Sibbo Sibba,Sibbo,Sibbå,Sipoo 60.37752 25.26906 P PPL FI 13 01 753 19430 27 Europe/Helsinki 2011-12-31
-637219 Seinäjoki Seinaejoki OEstermyra,Seinaejoki,Seinäjoki,Östermyra 62.8 22.83333 P PPLA2 FI 15 14 743 32149 50 Europe/Helsinki 2012-03-18
-637247 Säynätsalo Saeynaetsalo Saeynaetsalo,Sjajnjatsalo,Säynätsalo,Сяйнятсало 62.13333 25.76667 P PPL FI 15 13 179 3322 75 Europe/Helsinki 2011-12-31
-637284 Savukoski Savukoski Saukoski,Savukoski,Sayukoski,Suovvaguoika,Савукоски 67.2925 28.15806 P PPLA3 FI 06 19 742 1357 188 Europe/Helsinki 2012-02-20
-637288 Savonranta Savonranta Savonranta,Савонранта 62.18333 29.2 P PPLA3 FI 14 10 740 1255 79 Europe/Helsinki 2011-12-31
-637292 Savonlinna Savonlinna Nyslott,SAVONLINNA,Savonlina,Savonlinna,САВОНЛИННА,Савонлина,Савонлинна 61.8699 28.87999 P PPLA3 FI 14 10 740 27353 75 Europe/Helsinki 2012-03-18
-637312 Savitaipale Savitaipale Savitaipale,Savitajpale,Savitaypole,Савитайпале 61.2 27.7 P PPLA3 FI 13 09 739 4195 96 Europe/Helsinki 2012-02-20
-637400 Sauvo Sauvo Sagu,Sauvo 60.34306 22.69642 P PPLA3 FI 15 02 738 2941 12 Europe/Helsinki 2011-07-31
-637462 Saukkola Saukkola 60.38333 23.98333 P PPLA3 FI 13 01 540 0 50 Europe/Helsinki 2012-02-18
-637586 Särkisalo Sarkisalo Finby,Saerkisalo,Sjarkisalo,Särkisalo,Сяркисало 60.11389 22.95 P PPLA3 FI 15 02 734 0 1 Europe/Helsinki 2011-12-31
-637835 Sammatti Sammatti Sammatti 60.31667 23.81667 P PPLA3 FI 13 01 444 1171 59 Europe/Helsinki 2011-12-31
-637948 Salo Salo Sala,Salo,Salo Kapell,Сало 60.38333 23.13333 P PPLA3 FI 15 02 734 24900 20 Europe/Helsinki 2011-07-31
-638074 Salla Salla Salla,Салла 66.83333 28.66667 P PPLA3 FI 06 19 732 4401 197 Europe/Helsinki 2012-02-20
-638104 Säkylä Sakyla 61.03333 22.33333 P PPLA3 FI 15 04 783 4870 39 Europe/Helsinki 2011-07-31
-638210 Sahalahti Sahalahti Sahalahti,Sakalakhti,Сакалахти 61.46667 24.31667 P PPL FI 15 06 211 2141 92 Europe/Helsinki 2012-01-18
-638321 Saarijärvi Saarijarvi Saaijarvi,Saaijärvi,Saarijaervi,Saarijarvi,Saarijärvi,Sariyarvi,Саариярви 62.71667 25.26667 P PPLA3 FI 15 13 729 10011 158 Europe/Helsinki 2011-07-31
-638398 Saari Saari Saari,Sari,Сари 61.65 29.75 P PPL FI 13 09 580 1326 76 Europe/Helsinki 2012-01-18
-638582 Rymättylä Rymattyla Rimito,Rymaettylae,Rymättylä 60.37658 21.94184 P PPLA3 FI 15 02 529 1987 15 Europe/Helsinki 2011-12-31
-638622 Ruukki Ruukki Rukki,Ruukki,Рукки 64.66667 25.1 P PPL FI 08 17 748 4386 48 Europe/Helsinki 2012-01-18
-638670 Rusko Rusko 60.53333 22.21667 P PPLA3 FI 15 02 704 3702 28 Europe/Helsinki 2011-07-31
-638691 Ruovesi Ruovesi Ruovesi,Руовеси 61.98575 24.05714 P PPLA3 FI 15 06 702 5314 134 Europe/Helsinki 2011-07-31
-638711 Ruotsinpyhtää Ruotsinpyhtaeae Pyhtaa,Pyhtää,Ruotsinpyhtaa,Ruotsinpyhtaeae,Ruotsinpyhtää,Stroemfors,Strömfors 60.5268 26.46203 P PPL FI 13 01 434 2836 15 Europe/Helsinki 2011-12-31
-638803 Ruokolahti Ruokolahti Ruokolahti,Ruokolakhti,Руоколахти 61.28333 28.83333 P PPLA3 FI 13 09 700 5780 68 Europe/Helsinki 2011-07-31
-638936 Rovaniemi Rovaniemi Roavvenjarga,Roavvenjárga,Robaniemi,Ronianemi,Rovaniemi,Rovaniemis,Rovanieni,luo wa nie mi,rovu~aniemi,rwbnyymy,Ροβανιέμι,Рованиеми,רובניימי,ロヴァニエミ,罗瓦涅米 66.5 25.71667 P PPLA FI 06 19 698 34781 92 Europe/Helsinki 2012-01-18
-639234 Ristijärvi Ristijarvi Ristijaervi,Ristijarvi,Ristijärvi,Ристиярви 64.5 28.21667 P PPL FI 08 18 697 1621 160 Europe/Helsinki 2012-01-18
-639248 Ristiina Ristiina Ristiina,Ristina,Ристина 61.5 27.26667 P PPLA3 FI 14 10 696 5171 80 Europe/Helsinki 2011-07-31
-639406 Riihimäki Riihimaki RIJKHIMJAKI,Riihimaeki,Riihimäki,rihimaki,РИЙХИМЯКИ,リーヒマキ 60.73769 24.77726 P PPLA3 FI 13 05 694 26451 106 Europe/Helsinki 2011-07-31
-639522 Replot Replot Raippaluoto,Replot,Replotoe,Replotö 63.25 21.41667 P PPL FI FI 15 15 499 2100 12 Europe/Helsinki 2011-12-31
-639534 Renko Renko Renko,Ренко 60.89563 24.28785 P PPLA3 FI 13 05 109 2376 111 Europe/Helsinki 2011-12-31
-639576 Reisjärvi Reisjarvi Reisjaervi,Reisjarvi,Reisjärvi,Rejs"jarvi,Рейсъярви 63.61667 24.9 P PPLA3 FI 08 17 691 3052 119 Europe/Helsinki 2012-02-20
-639666 Rautjärvi Rautjarvi Rautjarvi,Rautjärvi 61.43333 29.35 P PPL FI 13 09 689 4316 96 Europe/Helsinki 2012-01-18
-639700 Rautavaara Rautavaara Rautavaara,Rautavara,Раутавара 63.48333 28.3 P PPLA3 FI 14 11 687 2066 139 Europe/Helsinki 2011-07-31
-639709 Rautalampi Rautalampi Rautalampi,Рауталампи 62.63333 26.83333 P PPLA3 FI 14 11 686 3665 85 Europe/Helsinki 2011-07-31
-639734 Rauma Rauma Rauma,Raumo,Raŭmo,Раума 61.12724 21.51127 P PPLA3 FI 15 04 684 36550 14 Europe/Helsinki 2011-07-31
-639888 Ranua Ranua Ranua,Рануа 65.91667 26.53333 P PPLA3 FI 06 19 683 4833 152 Europe/Helsinki 2011-07-31
-639895 Rantsila Rantsila Rantsila,Рантсила 64.51667 25.65 P PPL FI 08 17 791 2048 67 Europe/Helsinki 2012-01-18
-639906 Rantasalmi Rantasalmi Rantasalimi,Rantasalmi,Рантасалми 62.06667 28.3 P PPLA3 FI 14 10 681 4443 62 Europe/Helsinki 2011-07-31
-640124 Raisio Raisio Raisio,Reso 60.48592 22.16895 P PPLA3 FI 15 02 680 23597 11 Europe/Helsinki 2011-07-31
-640271 Rääkkylä Raakkyla Braekylae,Bräkylä,Raeaekkylae,Rääkkylä 62.31667 29.61667 P PPLA3 FI 14 12 707 2855 95 Europe/Helsinki 2011-07-31
-640276 Raahe Raahe Brahestad,RAKHE,Raahe,Raakhe,Rahe,Rahė,Rakhe,РАХЕ,Раахе 64.68333 24.48333 P PPLA3 FI 08 17 678 22217 5 Europe/Helsinki 2011-07-31
-640372 Pylkönmäki Pylkonmaki Pylkoenmaeki,Pylkönmäki 62.66667 24.8 P PPLA3 FI 15 13 729 981 196 Europe/Helsinki 2011-12-31
-640384 Pyhtää Pyhtaa Pyhtaeae,Pyhtää,Pyttis 60.49349 26.54346 P PPL FI 13 08 624 4964 9 Europe/Helsinki 2011-12-31
-640398 Pyhäselkä Pyhaselka Pyhaeselkae,Pyhäselkä 62.43333 29.96667 P PPLA3 FI 14 12 167 7210 95 Europe/Helsinki 2011-12-31
-640405 Pyhäranta Pyharanta Pitharanta,Pithäranta 60.95 21.45 P PPLA3 FI 15 02 631 2355 26 Europe/Helsinki 2011-07-31
-640409 Pyhäntä Pyhanta Pyhanta,Pyhäntä 64.1 26.31667 P PPL FI 08 17 630 1779 133 Europe/Helsinki 2012-01-18
-640437 Pyhäjoki Pyhajoki Kyhajoki,Pyhajoki,Pyhäjoki,Pyukha 64.46667 24.23333 P PPL FI 08 17 625 3615 3 Europe/Helsinki 2012-01-18
-640440 Pyhäjärvi Pyhajarvi Pjukhjajarvi,Pyhaejaervi,Pyhajarvi,Pyhäjärvi,Пюхяярви 67.07139 27.21556 P PPL FI 06 19 583 6094 186 Europe/Helsinki 2012-01-18
-640441 Pyhäjärvi Pyhaejaervi Pjukhjajarvi,Pyhaejaervi,Pyhäjärvi,Пюхяярви 63.66667 25.9 P PPL FI 08 17 626 6138 149 Europe/Helsinki 2011-12-31
-640504 Puumala Puumala Pumala,Puuinala,Puumala,Пумала 61.52728 28.17495 P PPLA3 FI 14 10 623 2693 109 Europe/Helsinki 2011-07-31
-640658 Puolanka Puolanka Puolango,Puolanka,Пуоланка 64.86667 27.66667 P PPL FI 08 18 620 3304 167 Europe/Helsinki 2012-01-18
-640689 Punkalaidun Punkalaidun 61.11667 23.1 P PPLA3 FI 15 06 619 3492 88 Europe/Helsinki 2011-07-31
-640693 Punkaharju Punkaharju 61.75883 29.38843 P PPLA3 FI 14 10 618 3984 64 Europe/Helsinki 2011-07-31
-640718 Pulkkila Pulkkila Pulkilla,Pulkkila,Пулкилла 64.26667 25.86667 P PPLA3 FI 08 17 791 1661 81 Europe/Helsinki 2011-12-31
-640749 Pukkila Pukkila Pukkila,Пуккила 60.65 25.56667 P PPLA3 FI 13 01 616 1985 54 Europe/Helsinki 2011-12-28
-640803 Pudasjärvi Pudasjarvi Pudasjaervi,Pudasjärvi 65.38333 26.91667 P PPLA3 FI 08 17 615 9459 115 Europe/Helsinki 2011-07-31
-640828 Pöytyä Poytya 60.76667 22.66667 P PPLA3 FI 15 02 636 3650 91 Europe/Helsinki 2011-07-31
-640893 Posio Posio Posio,Посио 66.10856 28.17186 P PPLA3 FI 06 19 614 4252 255 Europe/Helsinki 2012-02-20
-640973 Pornainen Pornainen Borgnaes,Borgnäs,Pornainen,Pornajnen,Порнайнен 60.47581 25.3749 P PPLA3 FI 13 01 611 4813 50 Europe/Helsinki 2011-12-31
-640999 Pori Pori Berneborg,Bjoerneborg,Björneborg,Bërneborg,Pori,pori,Пори,ポリ 61.48333 21.78333 P PPLA2 FI 15 04 609 76772 19 Europe/Helsinki 2012-02-14
-641044 Pomarkku Pomarkku Pamark,Pomarkku,Påmark 61.69348 22.00862 P PPLA3 FI 15 04 608 2499 44 Europe/Helsinki 2011-07-31
-641055 Polvijärvi Polvijaervi Polvijaervi,Polvijarvi,Polvijärvi,Полвиярви 62.85 29.36667 P PPLA3 FI 14 12 607 4937 97 Europe/Helsinki 2011-07-31
-641124 Pohja Pohja Pohja,Pojo 60.09626 23.52757 P PPL FI 13 01 710 5257 7 Europe/Helsinki 2011-12-31
-641489 Pirkkala Pirkkala Birkala 61.46125 23.63228 P PPLA3 FI 15 06 604 15615 101 Europe/Helsinki 2012-03-18
-641612 Piippola Piippola Piippola,Pippola,Пиппола 64.16667 25.96667 P PPLA3 FI 08 17 791 1450 112 Europe/Helsinki 2011-12-31
-641651 Piikkiö Piikkio Piikkioe,Piikkis,Piikkiö,Pikis 60.42481 22.51601 P PPLA3 FI 15 02 202 6553 11 Europe/Helsinki 2011-12-31
-641660 Pihtipudas Pihtipudas Pihtipudas,Pihtipuoas,Pikhtipudas,Пихтипудас 63.38333 25.56667 P PPLA3 FI 15 13 601 4777 131 Europe/Helsinki 2012-02-20
-641861 Pielavesi Pielavesi Pielavesi,Пиелавеси 63.23333 26.75 P PPLA3 FI 14 11 595 5521 108 Europe/Helsinki 2011-07-31
-641869 Pieksämäki Pieksamaki PIEKSJAMJAKI,Pieksaemaeki,Pieksama,Pieksyamyaki,Pieksämä,Pieksämäki,ПИЕКСЯМЯКИ 62.3 27.13333 P PPLA3 FI 14 10 593 12167 119 Europe/Helsinki 2011-07-31
-641974 Petäjävesi Petajavesi Petaejaevesi,Petjajavesi,Petäjävesi,Петяявеси 62.25 25.2 P PPLA3 FI 15 13 592 3610 138 Europe/Helsinki 2011-07-31
-642077 Pertunmaa Pertunmaa Pertunma,Pertunmaa,Пертунма 61.5 26.48333 P PPLA3 FI 14 10 588 2089 118 Europe/Helsinki 2011-07-31
-642093 Pertteli Pertteli Pertteli,S:t Bertils,T Bertils 60.43333 23.26667 P PPLA3 FI 15 02 734 3740 48 Europe/Helsinki 2011-12-31
-642113 Perniö Pernio Bjaerna,Bjerna,Bjerno,Bjernå,Bjärnå 60.2 23.13333 P PPLA3 FI 15 02 734 5809 58 Europe/Helsinki 2011-12-31
-642118 Pernå Perna Perna,Pernaja,Perno,Pernå,Pernö 60.44869 26.03187 P PPLA3 FI 13 01 434 3938 18 Europe/Helsinki 2011-12-31
-642139 Perho Perho Perho,Perkho,Перхо 63.21667 24.41667 P PPLA3 FI 15 16 584 2974 174 Europe/Helsinki 2011-07-31
-642367 Pello Pello Pello 66.77364 23.96255 P PPLA3 FI 06 19 854 4542 61 Europe/Helsinki 2012-03-14
-642377 Pelkosenniemi Pelkosenniemi Pelkosenniemi 67.11083 27.51056 P PPLA3 FI 06 19 583 1221 159 Europe/Helsinki 2011-07-31
-642455 Pedersöre Pedersoere Pedersoeren kunta,Pedersore,Pedersöre,Pedersören kunta,Pietarsaaren Pitaja,Pietarsaaren Pitäjä,Pietarsaari 63.65 22.68333 P PPLA3 FI 15 15 599 10436 18 Europe/Helsinki 2012-02-20
-642657 Parkano Parkano Parkano,Паркано 62.01667 23.01667 P PPLA3 FI 15 06 581 7213 114 Europe/Helsinki 2011-07-31
-642666 Parikkala Parikkala PARIKKALA,Parikkala,ПАРИККАЛА 61.55 29.5 P PPLA3 FI 13 09 580 4274 100 Europe/Helsinki 2011-07-31
-642673 Pargas Pargas Parainen,Pargas 60.30672 22.30097 P PPLA3 FI 15 02 445 11962 23 Europe/Helsinki 2011-07-31
-642750 Paltamo Paltamo Paltamo,Палтамо 64.41667 27.83333 P PPLA3 FI 08 18 578 3844 150 Europe/Helsinki 2011-07-31
-642976 Pälkäne Palkane 61.33424 24.27197 P PPLA3 FI 15 06 635 4262 93 Europe/Helsinki 2011-10-07
-643153 Paimio Paimio Paimio,Pemar 60.45671 22.68694 P PPLA3 FI 15 02 577 10126 43 Europe/Helsinki 2011-07-31
-643260 Padasjoki Padasjoki Padasjoki,Падасйоки 61.35 25.28333 P PPLA3 FI 13 07 576 3473 113 Europe/Helsinki 2011-07-31
-643453 Outokumpu Outokumpu OUTOKUMPU,Outakumpy,Outokumpu,ОУТОКУМПУ 62.72685 29.01592 P PPLA3 FI 14 12 309 7738 116 Europe/Helsinki 2011-07-31
-643481 Oulunsalo Oulunsalo Olulunsalo,Oulunsalo,Uleasalo,Uleasaloe,Uleåsalo,Uleåsalö,Олулунсало 64.93456 25.41121 P PPLA3 FI 08 17 567 9556 8 Europe/Helsinki 2012-03-18
-643492 Oulu Oulu Oulo,Oulu,Oŭlo,Uleaborg,Uleoborg,Uleåborg,oullu,ouru,Оулу,オウル,오울루 65.01236 25.46816 P PPLA FI 08 17 564 128618 15 Europe/Helsinki 2012-01-15
-643497 Oulainen Oulainen OULAJNEN,Oulainen,Oulais,ОУЛАЙНЕН 64.26667 24.8 P PPLA3 FI 08 17 563 8300 72 Europe/Helsinki 2012-02-20
-643522 Otaniemi Otaniemi Otaniemi,Otnaes,Otnäs 60.18395 24.82786 P PPLX FI FI 13 01 049 3496 6 Europe/Helsinki 2011-12-31
-643629 Orivesi Orivesi Orihvesi,Orivesi,Оривеси 61.67766 24.3572 P PPLA3 FI 15 06 562 8846 118 Europe/Helsinki 2011-07-31
-643640 Oripää Oripaa Oripaeae,Oripää 60.85 22.68333 P PPLA3 FI 15 02 561 1351 66 Europe/Helsinki 2011-07-31
-643644 Orimattila Orimattila Orimattila,Ориматтила 60.80487 25.72964 P PPLA3 FI 13 07 560 14603 76 Europe/Helsinki 2011-07-31
-643681 Oravais Oravais Oravainen,Oravais 63.30135 22.37821 P PPL FI 15 15 946 2141 27 Europe/Helsinki 2011-12-31
-644100 Nykarleby Nykarleby Neo-Carolina,Nykarleby,Nyukarlebyu,Usikarlepyu,Uusikaarlepyy 63.52277 22.53073 P PPLA3 FI 15 15 893 7338 20 Europe/Helsinki 2011-07-31
-644159 Nurmo Nurmo Nurmo 62.83333 22.9 P PPL FI 15 14 743 11908 50 Europe/Helsinki 2012-01-18
-644171 Nurmijärvi Nurmijarvi Nurmijaervi,Nurmijarvi,Nurmijärvi,Нурмиярви 60.46407 24.8073 P PPLA3 FI 13 01 543 37073 78 Europe/Helsinki 2011-07-31
-644187 Nurmes Nurmes Nurmes,Нурмес 63.54205 29.13965 P PPLA3 FI 14 12 541 8804 91 Europe/Helsinki 2011-07-31
-644326 Nousiainen Nousiainen Nousiainen,Nousis 60.60416 22.07926 P PPLA3 FI 15 02 538 4461 17 Europe/Helsinki 2012-02-20
-644436 Noormarkku Noormarkku Noormarkku,Norrmark 61.59274 21.86846 P PPL FI 15 04 609 6076 44 Europe/Helsinki 2011-12-31
-644450 Nokia Nokia Nokia,Nokia stad,nuo ji ya,nwqyh,Нокиа,נוקיה,诺基亚 61.46667 23.5 P PPLA3 FI 15 06 536 28676 89 Europe/Helsinki 2011-07-31
-644499 Nivala Nivala Nivala,Нивала 63.91667 24.96667 P PPLA3 FI 08 17 535 10610 91 Europe/Helsinki 2011-07-31
-644632 Nilsiä Nilsia Nil'sija,Nilsiae,Nilsiä,Нильсия 63.2 28.08333 P PPLA3 FI 14 11 534 6474 108 Europe/Helsinki 2011-07-31
-645035 Nastola Nastola Nastola,Настола 60.95 25.93333 P PPLA3 FI 13 07 532 14911 112 Europe/Helsinki 2011-07-31
-645081 Närpes Naerpes Naerpes,Naerpioe,Nerpes,Närpes,Närpiö 62.47283 21.33707 P PPLA3 FI FI 15 15 545 0 14 Europe/Helsinki 2012-02-20
-645148 Nakkila Nakkila 61.36667 22 P PPLA3 FI 15 04 531 5792 18 Europe/Helsinki 2011-07-31
-645165 Nagu Nagu Nagu,Nauvo 60.19375 21.90972 P PPLA3 FI 15 02 445 1410 2 Europe/Helsinki 2011-12-31
-645211 Naantali Naantali Naantali,Nadendal,Nantali,Nodendal',Nådendal,Наантали 60.46744 22.02428 P PPLA3 FI 15 02 529 13607 9 Europe/Helsinki 2011-07-31
-645233 Myrskylä Myrskylae Moerskom,Myrskyla,Myrskylae,Myrskylä,Mörskom 60.66965 25.8475 P PPL FI 13 01 504 2043 53 Europe/Helsinki 2011-12-31
-645243 Mynämäki Mynamaki Virmo 60.67915 21.99274 P PPLA3 FI 15 02 503 6271 19 Europe/Helsinki 2011-07-31
-645370 Muurla Muurla 60.35 23.28333 P PPLA3 FI 15 02 734 1486 15 Europe/Helsinki 2011-12-31
-645385 Muurame Muurame Muurame,Муураме 62.13333 25.66667 P PPLA3 FI 15 13 500 8826 81 Europe/Helsinki 2011-07-31
-645672 Muonio Muonio Muonio,Muonioniska 67.95 23.7 P PPLA3 FI 06 19 498 2412 232 Europe/Helsinki 2012-02-20
-645710 Multia Multia Muldia,Multia,Мултиа 62.41667 24.78333 P PPLA3 FI 15 13 495 1991 160 Europe/Helsinki 2011-07-31
-645765 Muhos Muhos Mukhos,Мухос 64.80798 25.99314 P PPL FI 08 17 494 8232 30 Europe/Helsinki 2011-12-31
-645766 Muhos Muhos Muhos,Muhospera,Mukhos,Мухос 64.76667 26.1 P PPLA3 FI FI 08 17 494 0 62 Europe/Helsinki 2011-07-31
-645800 Mouhijärvi Mouhijarvi 61.5 23.01667 P PPLA3 FI 15 06 790 2961 121 Europe/Helsinki 2011-12-31
-646005 Mikkeli Mikkeli MIKKELI,Mikkeli,S:t Michel,Sankt Michel,St. Michel,mi kai li,mikkeri,МИККЕЛИ,Миккели,ミッケリ,米凱利 61.68857 27.27227 P PPLA FI 14 10 491 46550 85 Europe/Helsinki 2011-12-31
-646031 Mietoinen Mietoinen Mietois 60.63333 21.93333 P PPLA3 FI 15 02 503 1785 12 Europe/Helsinki 2011-12-31
-646079 Miehikkälä Miehikkala Michikkala,Miehikkaelae,Miehikkala,Miehikkälä,Miekhikkjalja,Миехиккяля 60.66667 27.7 P PPLA3 FI 13 08 489 2506 11 Europe/Helsinki 2012-02-20
-646179 Merimasku Merimasku Merimasko 60.48333 21.86667 P PPLA3 FI 15 02 529 1538 13 Europe/Helsinki 2011-12-31
-646192 Merikarvia Merikarvia Merikarvia,Sastmola 61.85839 21.50035 P PPLA3 FI 15 04 484 3547 17 Europe/Helsinki 2012-03-04
-646195 Merijärvi Merijarvi Merijaervi,Merijarvi,Merijärvi,Мериярви 64.3 24.45 P PPLA3 FI 08 17 483 1326 49 Europe/Helsinki 2011-07-31
-646220 Mellilä Mellila 60.76667 22.95 P PPLA3 FI 15 02 430 1141 78 Europe/Helsinki 2011-12-31
-646486 Masku Masku Masko,Masku 60.57082 22.09883 P PPLA3 FI 15 02 481 5974 27 Europe/Helsinki 2011-07-31
-646511 Marttila Marttila Marttila,S:t Martens,S:t Mårtens,Sankt Martens,Sankt Mårtens,T Martens,T Mårtens,Марттила 60.58333 22.9 P PPLA3 FI 15 02 480 2125 68 Europe/Helsinki 2011-07-31
-646699 Mäntyharju Mantyharju Mantyharja,Mäntyharja 61.41667 26.88333 P PPLA3 FI 14 10 507 6871 86 Europe/Helsinki 2011-07-31
-646705 Mänttä Maenttae 62.03014 24.62791 P PPLA3 FI 15 06 508 6459 104 Europe/Helsinki 2011-12-31
-646723 Mäntsälä Mantsala Maentsaelae,Mjantsjalja,Mäntsälä,Мянтсяля 60.63333 25.31667 P PPLA3 FI 13 01 505 18074 59 Europe/Helsinki 2011-07-31
-646875 Malax Malax Maahlahti,Maalahti,Maalalahti,Malaks,Malax,Mallax 62.94225 21.57311 P PPLA3 FI 15 15 475 5517 25 Europe/Helsinki 2011-07-31
-647202 Maaninka Maaninka Maaninka,Maninka,Манинка 63.15 27.3 P PPLA3 FI 14 11 476 3638 88 Europe/Helsinki 2011-07-31
-647260 Luvia Luvia 61.36375 21.62556 P PPLA3 FI 15 04 442 3260 13 Europe/Helsinki 2011-07-31
-647288 Luumäki Luumaki Lumjaki,Luumaeki,Luumäki,Лумяки 60.92618 27.58135 P PPLA3 FI 13 09 441 5305 105 Europe/Helsinki 2011-07-31
-647383 Luopioinen Luopioinen Luopioinen,Luopiojnen,Луопиойнен 61.36667 24.66667 P PPL FI 15 06 635 2381 109 Europe/Helsinki 2012-01-18
-647471 Lumijoki Lumijoki Lumijoki,Lymelki,Лумийоки 64.83744 25.18607 P PPLA3 FI 08 17 436 1871 8 Europe/Helsinki 2011-07-31
-647522 Luhanka Luhanka Luhanka,Lukhanka,Луханка 61.79682 25.70457 P PPLA3 FI 15 13 435 905 74 Europe/Helsinki 2011-07-31
-647571 Lovisa Lovisa LOVIJSA,Loviisa,Lovisa,Loviza,Svartkhol'm,ЛОВИЙСА,Свартхольм 60.45659 26.22505 P PPL FI 13 01 434 7264 1 Europe/Helsinki 2011-12-31
-647660 Loppi Loppi Loppi,Лоппи 60.71667 24.45 P PPLA3 FI 13 05 433 7768 122 Europe/Helsinki 2011-07-31
-647731 Loimaa Loimaa Loimijoki 60.84972 23.0561 P PPLA3 FI FI 15 02 430 0 82 Europe/Helsinki 2011-07-31
-647741 Lohtaja Lohtaja Lochtea,Lochteå,Lohtaja,Lokhteo 64.02472 23.50482 P PPLA3 FI 15 16 272 3043 13 Europe/Helsinki 2012-03-18
-647751 Lohja Lohja Lohja,Lojo 60.24859 24.06534 P PPL FI 13 01 444 35960 82 Europe/Helsinki 2011-12-31
-647851 Liperi Liperi Libelits,Liperi,Липери 62.53333 29.36667 P PPLA3 FI 14 12 426 11386 80 Europe/Helsinki 2011-07-31
-647930 Liminka Liminka Limingo,Liminka,Лиминка 64.80985 25.41545 P PPLA3 FI 08 17 425 7058 8 Europe/Helsinki 2011-07-31
-647978 Liljendal Liljendal Lil'endal',Liljendal,Liljentaali,Лильендаль 60.56667 26.05 P PPL FI 13 01 434 1455 22 Europe/Helsinki 2012-01-18
-648056 Lieto Lieto Lieto,Lundo 60.51032 22.46176 P PPLA3 FI 15 02 423 15258 15 Europe/Helsinki 2011-07-31
-648090 Lieksa Lieksa LIEKSA,Lieksa,ЛИЕКСА 63.31667 30.01667 P PPLA3 FI 14 12 422 13703 95 Europe/Helsinki 2011-07-31
-648178 Lestijärvi Lestijarvi Lestijaervi,Lestijarvi,Lestijärvi,Лестиярви 63.53333 24.65 P PPLA3 FI 15 16 421 924 155 Europe/Helsinki 2011-07-31
-648227 Leppävirta Leppavirta Leppaevirta,Leppjavirta,Leppävirta,Леппявирта 62.49009 27.78262 P PPLA3 FI 14 11 420 10936 114 Europe/Helsinki 2012-02-20
-648350 Lemu Lemu Lemo,Lemu 60.56667 21.96667 P PPLA3 FI FI 15 02 481 1738 30 Europe/Helsinki 2011-12-31
-648366 Lempäälä Lempaala Lembois,Lempaeaelae,Lempäälä 61.31667 23.75 P PPLA3 FI 15 06 418 18096 85 Europe/Helsinki 2011-07-31
-648387 Lemi Lemi Lemi,Леми 61.06244 27.80571 P PPLA3 FI 13 09 416 3034 101 Europe/Helsinki 2011-07-31
-648397 Leivonmäki Leivonmaki Leivonmaeki,Leivonmaki,Leivonmäki,Lejvonmjaki,Лейвонмяки 61.91667 26.11667 P PPL FI 15 13 172 1138 157 Europe/Helsinki 2012-01-18
-648554 Lehtimäki Lehtimaki 62.78333 23.91667 P PPLA3 FI 15 14 005 1924 206 Europe/Helsinki 2011-12-31
-648613 Lavia Lavia Lavia 61.6 22.6 P PPLA3 FI 15 04 413 2109 85 Europe/Helsinki 2012-02-20
-648738 Laukaa Laukaa Lauka,Laukaa,Laukas,Лаука 62.41407 25.95194 P PPLA3 FI 15 13 410 17093 89 Europe/Helsinki 2011-08-12
-648847 Larsmo Larsmo Larsmo,Luoto 63.75388 22.74728 P PPLA3 FI 15 15 440 4331 12 Europe/Helsinki 2011-07-31
-648855 Lapua Lapua Lappo,Lapua,Лапуа 62.96927 23.0088 P PPLA3 FI 15 14 408 14091 39 Europe/Helsinki 2012-02-20
-648886 Lappi Lappi Lapinkyla,Lapinkylä,Lappi,Лаппи 61.1 21.83333 P PPLA3 FI 15 04 684 3212 49 Europe/Helsinki 2011-12-31
-648900 Lappeenranta Lappeenranta LAPPENRANTA,Lappeenranta,Lappenranta,Villmanstrand,la pu lan da,ЛАППЕНРАНТА,Лаппеенранта,拉普兰大 61.05871 28.18871 P PPLA2 FI 13 09 405 59276 104 Europe/Helsinki 2012-02-14
-648919 Lappajärvi Lappajarvi 63.2 23.63333 P PPLA3 FI 15 14 403 3588 74 Europe/Helsinki 2011-07-31
-648953 Lapinlahti Lapinlahti Lapinlahti,Lapinlakhti,Лапинлахти 63.36667 27.4 P PPLA3 FI 14 11 402 7350 121 Europe/Helsinki 2011-07-31
-648965 Lapinjärvi Lapinjarvi Lapin"jarvi,Lapinjaervi,Lapinjärvi,Lapptraesk,Lapptrask,Lappträsk,Лапинъярви 60.62443 26.1972 P PPL FI 13 01 407 2937 24 Europe/Helsinki 2011-12-31
-649121 Längelmäki Langelmaki 61.65 22.1 P PPL FI 15 04 608 1636 52 Europe/Helsinki 2011-12-31
-649223 Lammi Lammi Lammi,Ламми 61.08333 25.01667 P PPLA3 FI 13 05 109 5634 129 Europe/Helsinki 2011-12-31
-649302 Laitila Laitila Letala 60.87575 21.69765 P PPLA3 FI 15 02 400 8403 18 Europe/Helsinki 2011-07-31
-649348 Laihia Laihia Laihela,Laihia 62.97609 22.01143 P PPLA3 FI 15 15 399 7782 26 Europe/Helsinki 2011-07-31
-649360 Lahti Lahti LAKHTI,Lahti,Lahtis,Lakhti,rahati,ЛАХТИ,Лахти,ラハティ 60.98267 25.66151 P PPLA2 FI 13 07 398 98826 105 Europe/Helsinki 2012-03-18
-649582 Kyyjärvi Kyyjarvi Kjujarvi,Kyyjaervi,Kyyjärvi,Кюярви 63.03333 24.56667 P PPLA3 FI 15 13 312 1817 186 Europe/Helsinki 2011-07-31
-649630 Kirkkonummi Kirkkonummi Kirkkonummi,Kyrkslaett,Kyrkslatt,Kyrkslätt 60.12381 24.43853 P PPLA3 FI 13 01 257 32920 17 Europe/Helsinki 2011-07-31
-649728 Kylmäkoski Kylmakoski 61.154 23.68858 P PPLA3 FI 15 06 020 2647 85 Europe/Helsinki 2011-12-31
-649825 Kuusjoki Kuusjoki Kuusjoki 60.51667 23.2 P PPLA3 FI 15 02 734 1775 96 Europe/Helsinki 2011-12-31
-649919 Kuusankoski Kuusankoski KUUSANKOSKI,Kuusankoski,КУУСАНКОСКИ 60.9 26.63333 P PPLA3 FI 13 08 286 19986 85 Europe/Helsinki 2011-12-31
-649924 Kuusamo Kuusamo Kuusamo,Куусамо 65.96667 29.18333 P PPLA3 FI 08 17 305 17400 262 Europe/Helsinki 2011-07-31
-649998 Kustavi Kustavi Gustaf,Gustavs 60.54529 21.3588 P PPLA3 FI 15 02 304 951 14 Europe/Helsinki 2012-02-20
-650014 Kuru Kuru 61.87558 23.71948 P PPL FI 15 06 980 2701 105 Europe/Helsinki 2011-12-31
-650095 Kurikka Kurikka Kurikka,Курикка 62.61667 22.41667 P PPLA3 FI 15 14 301 10628 62 Europe/Helsinki 2011-07-31
-650166 Kuortane Kuortane Kuortane 62.8 23.5 P PPLA3 FI 15 14 300 4219 89 Europe/Helsinki 2011-07-31
-650224 Kuopio Kuopio Kouopio,Kuopijas,Kuopio,kuopio,Κουόπιο,Куопио,クオピオ 62.89238 27.67703 P PPLA2 FI 14 11 297 89104 90 Europe/Helsinki 2012-02-14
-650469 Kullaa Kullaa Kullaa 61.46667 22.16667 P PPL FI 15 04 886 1494 38 Europe/Helsinki 2012-01-18
-650628 Kuivaniemi Kuivaniemi Kuivaniemi,Kujvaniemi,Куйваниеми 65.58333 25.18333 P PPL FI 08 17 139 1979 13 Europe/Helsinki 2012-01-18
-650703 Kuhmoinen Kuhmoinen Kuhmoinen,Kukhmojnen,Кухмойнен 61.56667 25.18333 P PPLA3 FI 15 13 291 2824 108 Europe/Helsinki 2012-02-20
-650705 Kuhmo Kuhmo KUKHMO,Kuhmo,Kuhmoniemi,КУХМО 64.13333 29.51667 P PPLA3 FI 08 18 290 10214 166 Europe/Helsinki 2012-02-20
-650707 Kuhmalahti Kuhmalahti Kuhmalahti,Kukhmalakhti,Кухмалахти 61.5 24.56667 P PPL FI 15 06 211 1143 120 Europe/Helsinki 2012-01-18
-650754 Kronoby Kronoby Kronoby,Kronobyu,Kruununkyla,Kruununkylä,Kruunupyy 63.72456 23.02101 P PPLA3 FI 15 15 288 6813 7 Europe/Helsinki 2012-03-04
-650769 Kristinestad Kristinestad Kristiina,Kristiinankaupunki,Kristinestad 62.27429 21.37596 P PPLA3 FI 15 15 287 7712 11 Europe/Helsinki 2011-07-31
-650805 Köyliö Koylio Kjulo,Koeylioe,Köyliö 61.1191 22.30976 P PPLA3 FI 15 04 319 2901 47 Europe/Helsinki 2012-02-20
-650859 Kouvola Kouvola KOUVOLA,Kouvola,КОУВОЛА 60.86667 26.7 P PPLA2 FI 13 08 286 31133 81 Europe/Helsinki 2012-02-14
-650946 Kotka Kotka Kotka,Kotko,Ruotsinsalmi,Svensksund,Котка 60.46667 26.91667 P PPLA3 FI 13 08 285 54616 1 Europe/Helsinki 2011-07-31
-651073 Hämeenkoski Haemeenkoski Koski,Коски 61.02222 25.15417 P PPLA3 FI 13 07 283 2149 124 Europe/Helsinki 2011-07-31
-651077 Koski Koski 60.65 23.15 P PPLA3 FI 15 02 284 0 78 Europe/Helsinki 2011-07-31
-651245 Kortesjärvi Kortesjarvi 63.3 23.16667 P PPLA3 FI 15 14 233 2400 57 Europe/Helsinki 2011-12-31
-651294 Korsnäs Korsnas Korsnaeaesi,Korsnes,Korsnääsi,Ristitaipale 62.78333 21.2 P PPLA3 FI 15 15 280 2194 14 Europe/Helsinki 2011-07-31
-651299 Korsholm Korsholm Korsholm,Mustasaari 63.11418 21.68216 P PPL FI 15 15 499 17176 15 Europe/Helsinki 2011-12-31
-651350 Korpilahti Korpilahti Korpilahti,Korpilakhti,Корпилахти 62.01667 25.55 P PPLA3 FI 15 13 179 5050 109 Europe/Helsinki 2011-12-31
-651659 Kontiolahti Kontiolahti Kontiolahti,Kontiolakhti,Контиолахти 62.76023 29.84711 P PPLA3 FI 14 12 276 12411 138 Europe/Helsinki 2011-07-31
-651696 Konnevesi Konnevesi Konnevesi,Конневеси 62.61667 26.31667 P PPLA3 FI 15 13 275 3132 117 Europe/Helsinki 2011-07-31
-651889 Kolari Kolari Kolari 67.33047 23.77785 P PPL FI 06 19 273 3908 153 Europe/Helsinki 2011-12-31
-651943 Karleby Karleby Carolina Vetus,Gamla-Kargabyu,Gamla-Karlabyu,Gamla-Kergabyu,Gamlakarleby,Karleby,Kokkola 63.83847 23.13066 P PPLA2 FI 15 16 272 35586 9 Europe/Helsinki 2012-02-14
-651980 Kokemäki Kokemaki Kokemaeki,Kokemäki,Kumo 61.25647 22.35643 P PPLA3 FI 15 04 271 8390 42 Europe/Helsinki 2011-07-31
-652432 Kivijärvi Kivijaervi Kivijaervi,Kivijarvi,Kivijärvi,Кивиярви 63.11667 25.1 P PPL FI 15 13 265 1427 156 Europe/Helsinki 2011-12-31
-652559 Kiuruvesi Kiuruvesi Kiuruvesi,Киурувеси 63.65 26.61667 P PPLA3 FI 14 11 263 9730 103 Europe/Helsinki 2012-02-20
-652578 Kiukainen Kiukainen Kiukainen,Kiukais 61.21667 22.08333 P PPLA3 FI 15 04 050 3358 36 Europe/Helsinki 2011-12-31
-652590 Kittilä Kittila Gihttel,Kittila,Kittilae,Kittilja,Kittilä,Киттиля 67.66667 24.9 P PPL FI 06 19 261 5713 181 Europe/Helsinki 2012-01-18
-652615 Kitee Kitee Kides,Kitee,Kiteh,Китее,Китэ 62.1 30.15 P PPLA3 FI 14 12 260 9777 66 Europe/Helsinki 2011-07-31
-652629 Kisko Kisko 60.23333 23.48333 P PPLA3 FI 15 02 734 1958 74 Europe/Helsinki 2011-12-31
-652736 Kinnula Kinnula Kinnula,Киннула 63.38333 24.95 P PPLA3 FI 15 13 256 1883 143 Europe/Helsinki 2011-07-31
-652737 Kinnula Kinnula 63.36667 24.96667 P PPLA3 FI 15 13 256 0 156 Europe/Helsinki 2011-07-31
-652776 Kimito Kimito Kemioe,Kemiö,Kimito 60.16047 22.729 P PPLA3 FI 15 02 322 3287 17 Europe/Helsinki 2011-12-31
-652858 Kiiminki Kiiminki Kiiminki,Kiminki,Киминки 65.13139 25.79744 P PPLA3 FI 08 17 255 12069 49 Europe/Helsinki 2011-07-31
-652878 Kiikoinen Kiikoinen Kiikoinen,Kikois 61.45 22.58333 P PPLA3 FI 15 04 254 1248 54 Europe/Helsinki 2011-07-31
-652888 Kiikala Kiikala 60.46667 23.56667 P PPLA3 FI 15 02 734 1771 115 Europe/Helsinki 2011-12-31
-652891 Kiihtelysvaara Kiihtelysvaara Kiihtelysvaara,Kikhteljusvara,Кихтелюсвара 62.48333 30.25 P PPL FI 14 12 167 2723 157 Europe/Helsinki 2012-01-18
-652896 Kihniö Kihnioe 62.2 23.18333 P PPLA3 FI 15 06 250 2305 145 Europe/Helsinki 2011-07-31
-652977 Keuruu Keuruu Keuru,Keuruu,Кеуруу 62.26667 24.7 P PPLA3 FI 15 13 249 10942 118 Europe/Helsinki 2011-07-31
-653039 Kestilä Kestila Kestila,Kestilja,Kestilä,Кестиля 64.35 26.28333 P PPL FI 08 17 791 1576 104 Europe/Helsinki 2012-01-18
-653129 Kesälahti Kesalahti Kesaelahti,Kesjalakhti,Kesälahti,Кесялахти 61.9 29.83333 P PPLA3 FI 14 12 248 2665 84 Europe/Helsinki 2011-07-31
-653180 Kerimäki Kerimaki Kerimaeki,Kerimjaki,Kerimäki,Керимяки 61.91667 29.28333 P PPLA3 FI 14 10 246 5841 92 Europe/Helsinki 2011-07-31
-653185 Kerava Kerava Kerava,Kervo,Керава 60.40338 25.105 P PPLA3 FI 13 01 245 31347 54 Europe/Helsinki 2011-07-31
-653252 Kempele Kempele Kempele,Kempelen,Кемпеле 64.91314 25.50339 P PPLA3 FI 08 17 244 14293 15 Europe/Helsinki 2011-07-31
-653272 Kemijärvi Kemijaervi Giemajavri,Giemajávri,KEMIJARVI,Kemijaervi,Kemijärvi,КЕМИЯРВИ 66.66667 27.41667 P PPLA3 FI 06 19 320 8883 185 Europe/Helsinki 2011-07-31
-653280 Keminmaa Keminmaa Kemi,Keminmaa 65.80158 24.54483 P PPLA3 FI 06 19 241 8980 13 Europe/Helsinki 2012-02-20
-653281 Kemi Kemi Giepma,Kemi,Кеми 65.73641 24.56371 P PPLA3 FI 06 19 240 22641 16 Europe/Helsinki 2011-07-31
-653387 Keitele Keitele 63.18333 26.36667 P PPLA3 FI 14 11 239 2832 101 Europe/Helsinki 2011-07-31
-653482 Kaustinen Kaustinen Kaustby,Kaustinen 63.54878 23.68845 P PPLA3 FI 15 16 236 4404 66 Europe/Helsinki 2011-07-31
-653559 Kauniainen Kauniainen GRANKULLA,Grankulla,Kauniainen,ГРАНКУЛЛА,კაუნიაინენი 60.21209 24.72756 P PPLA3 FI 13 01 235 8688 41 Europe/Helsinki 2011-07-31
-653616 Kauhava Kauhava Kaukhava,Каухава 63.1 23.08333 P PPLA3 FI 15 14 233 7896 34 Europe/Helsinki 2011-07-31
-653627 Kauhajoki Kauhajoki Kauhajoki,Kaukha-Yoki 62.43333 22.18333 P PPLA3 FI 15 14 232 14526 101 Europe/Helsinki 2012-02-20
-653758 Kaskinen Kaskinen Kaske,Kaskinen,Kaskoe,Kaskë,Kaskö 62.38444 21.22331 P PPLA3 FI 15 15 231 1514 -9999 Europe/Helsinki 2011-07-31
-653812 Karvia Karvia 62.2 22.65 P PPLA3 FI 15 04 230 0 151 Europe/Helsinki 2011-07-31
-653813 Karvia Karvia 62.13333 22.56667 P PPLA3 FI 15 04 230 2889 139 Europe/Helsinki 2011-07-31
-653841 Karttula Karttula Karttula,Karttulankyla,Karttulankylä,Vapaakirkko,Карттула 62.88333 26.96667 P PPL FI 14 11 297 3383 103 Europe/Helsinki 2012-01-18
-653852 Karstula Karstula Karstula,Карстула 62.86667 24.78333 P PPLA3 FI 15 13 226 4718 151 Europe/Helsinki 2011-07-31
-653880 Kärsämäki Karsamaki Kaersaemaeki,Kjarsjamjaki,Kärsämäki,Кярсямяки 63.96667 25.76667 P PPLA3 FI 08 17 317 2966 112 Europe/Helsinki 2011-07-31
-653951 Kärkölä Karkola Kaerkoelae,Kjarkela,Kärkölä,Кяркела 60.91667 25.25 P PPLA3 FI 13 07 316 0 128 Europe/Helsinki 2011-07-31
-653952 Kärkölä Karkola Karkala,Karkola,Kjarkela,Kärkälä,Kärkölä,Кяркела 60.61667 23.95 P PPL FI 13 01 540 4853 125 Europe/Helsinki 2012-01-18
-653960 Karkkila Karkkila Hoegfors,Högfors,Karkkila,Карккила 60.53418 24.20977 P PPLA3 FI 13 01 224 8811 74 Europe/Helsinki 2011-07-31
-654012 Karjalohja Karjalohja Karislojo,Karjalohja 60.24015 23.71789 P PPLA3 FI 13 01 223 1657 48 Europe/Helsinki 2011-07-31
-654047 Karis Karis Karis,Karja,Karjaa 60.07178 23.66163 P PPL FI 13 01 710 8853 34 Europe/Helsinki 2011-12-31
-654059 Karinainen Karinainen Karinainen,Karinais 60.66667 22.76667 P PPL FI 15 02 636 2497 81 Europe/Helsinki 2012-01-18
-654075 Karijoki Karijoki Boetom,Bötom 62.30851 21.70856 P PPLA3 FI 15 14 218 1621 52 Europe/Helsinki 2011-07-31
-654137 Karhula Karhula Karhula,Karkhula,Кархула 60.51667 26.95 P PPL FI 13 08 285 22867 2 Europe/Helsinki 2012-01-18
-654314 Kannus Kannus Kannus,Каннус 63.9 23.9 P PPLA3 FI 15 16 217 5968 62 Europe/Helsinki 2011-07-31
-654318 Kannonkoski Kannonkoski Kannonkoski,Каннонкоски 62.96667 25.25 P PPLA3 FI 15 13 216 1591 122 Europe/Helsinki 2011-07-31
-654363 Kankaanpää Kankaanpaa 61.8 22.41667 P PPLA3 FI 15 04 214 12381 105 Europe/Helsinki 2011-07-31
-654405 Kangasniemi Kangasniemi Kangasniemi,Кангасниеми 61.99357 26.64785 P PPLA3 FI 14 10 213 6211 102 Europe/Helsinki 2011-07-31
-654413 Kangaslampi Kangaslampi 62.29563 28.25289 P PPL FI 14 11 915 1596 91 Europe/Helsinki 2011-12-31
-654440 Kangasala Kangasala KANGASALA,Kangasala,КАНГАСАЛА 61.46383 24.07602 P PPLA3 FI 15 06 211 24291 100 Europe/Helsinki 2011-07-31
-654521 Kalvola Kalvola Kalvola 61.1 24.11667 P PPL FI 13 05 109 3406 103 Europe/Helsinki 2012-01-18
-654533 Kälviä Kalvia Kaelviae,Kelvia,Kelviå,Kyal'viya,Kälviä 63.86067 23.45289 P PPL FI 15 16 272 4449 27 Europe/Helsinki 2011-12-31
-654837 Kalajoki Kalajoki 64.25 23.95 P PPLA3 FI 08 17 208 8869 16 Europe/Helsinki 2011-07-31
-654899 Kajaani Kajaani Kajaani,Kajana,Kajani,Kajauni,Kayani,Kjana,Knyaaani,Knyaani,Каяни 64.22728 27.72846 P PPLA2 FI 08 18 205 35375 145 Europe/Helsinki 2011-12-29
-655069 Kaavi Kaavi Kaavi,Kavi,Кави 62.98333 28.5 P PPLA3 FI 14 11 204 3538 114 Europe/Helsinki 2012-02-20
-655130 Kaarina Kaarina Kaarina,S:t Karins,Saint Karin,Sankt Karins,St Karins,Каарина 60.40724 22.36904 P PPLA3 FI 15 02 202 21684 31 Europe/Helsinki 2011-07-31
-655194 Jyväskylä Jyvaeskylae Juvjaskjulja,Jyvaeskylae,Jyväskylä,yuvu~asukyura,Ювяскюля,ユヴァスキュラ 62.23333 25.73333 P PPLA2 FI 15 13 179 85026 70 Europe/Helsinki 2012-02-14
-655253 Juva Juva Jockas,Juva,Юва 61.9 27.85 P PPLA3 FI 14 10 178 7165 98 Europe/Helsinki 2011-07-31
-655307 Juupajoki Juupajoki 61.79901 24.36939 P PPLA3 FI 15 06 177 2110 141 Europe/Helsinki 2012-02-20
-655312 Juuka Juuka Juga,Juka,Juuka,Юка 63.23333 29.25 P PPLA3 FI 14 12 176 6035 115 Europe/Helsinki 2011-07-31
-655363 Jurva Jurva 62.68333 21.98333 P PPLA3 FI 15 14 301 4450 96 Europe/Helsinki 2011-12-31
-655533 Juankoski Juankoski Juankoski,Stroemsdal,Strömsdal,Юанкоски 63.06667 28.35 P PPLA3 FI 14 11 174 5514 98 Europe/Helsinki 2011-07-31
-655563 Joutseno Joutseno JOUTSENO,Joutseno,ЙОУТСЕНО,Йоутсено 61.11796 28.50763 P PPL FI 13 09 405 10603 80 Europe/Helsinki 2011-12-31
-655581 Joutsa Joutsa Joutsa,Йоутса 61.73333 26.11667 P PPLA3 FI 15 13 172 4060 132 Europe/Helsinki 2012-02-20
-655626 Joroinen Joroinen Joroinen,Jorois,Jorojnen,Йоройнен 62.17823 27.83165 P PPLA3 FI 14 10 171 5536 96 Europe/Helsinki 2011-07-31
-655692 Jokioinen Jokioinen Jockis,Jokioinen 60.80162 23.48004 P PPLA3 FI 13 05 169 5568 122 Europe/Helsinki 2011-07-31
-655808 Joensuu Joensuu JOEHNSUU,Joensu,Joensuu,Yoensu,yoensu,ЙОЭНСУУ,Йоенсу,ヨエンスー 62.60118 29.76316 P PPLA2 FI 14 12 167 53388 72 Europe/Helsinki 2012-02-14
-655958 Järvenpää Jarvenpaa Jaervenpaeae,Jarvenpjaja,Järvenpää,Traeskaenda,Träskända,Ярвенпяя 60.47369 25.08992 P PPLA3 FI 13 01 186 38148 51 Europe/Helsinki 2011-07-31
-656015 Jäppilä Jappila Jaeppilae,Jappilja,Jäppilä,Яппиля 62.37899 27.43372 P PPL FI 14 10 593 1501 112 Europe/Helsinki 2011-12-31
-656073 Janakkala Janakkala Janakkala,Янаккала 60.9 24.6 P PPLA3 FI 13 05 165 15698 118 Europe/Helsinki 2011-07-31
-656076 Jämsänkoski Jamsankoski Jaemsaenkoski,Jjamsjankoski,Jämsänkoski,Йямсянкоски 61.919 25.17011 P PPLA3 FI 15 13 182 7442 97 Europe/Helsinki 2011-12-31
-656083 Jämsä Jamsa Jaemsae,Jjamsja,Jämsä,Yamsya,Йямся 61.8642 25.19002 P PPLA3 FI 15 13 182 15261 83 Europe/Helsinki 2011-07-31
-656090 Jämijärvi Jamijarvi 61.81667 22.7 P PPLA3 FI 15 04 181 2241 115 Europe/Helsinki 2011-07-31
-656117 Jalasjärvi Jalasjarvi Yalas'yarvi 62.5 22.75 P PPLA3 FI 15 14 164 8662 94 Europe/Helsinki 2011-07-31
-656130 Jakobstad Jakobstad Jakobstad,Pietarsaari,Pietarsari,Pietasaari,Yakobstad,Якобстад 63.67486 22.70256 P PPLA3 FI 15 15 598 19238 15 Europe/Helsinki 2012-03-04
-656183 Jaala Jaala Jaala,Яала 61.05 26.48333 P PPL FI 13 08 286 1893 71 Europe/Helsinki 2012-01-18
-656220 Ivalo Ivalo Avveel,Avvil,Ivalo,Kyro,Kyrö,Ивало 68.65986 27.53891 P PPL FI FI 06 19 148 3998 121 Europe/Helsinki 2011-12-31
-656456 Isokyrö Isokyro Isokyroe,Isokyrö,Storkyro 63.01172 22.33332 P PPLA3 FI 15 15 152 5040 30 Europe/Helsinki 2011-07-31
-656517 Isojoki Isojoki Isojoki,Stora,Storå 62.11319 21.95884 P PPLA3 FI 15 14 151 2585 114 Europe/Helsinki 2012-03-18
-656636 Iniö Inio 60.4 21.4 P PPLA3 FI 15 02 445 279 1 Europe/Helsinki 2011-12-31
-656652 Ingå Inga Inga,Ingå,Inkoo 60.04587 24.00459 P PPLA3 FI 13 01 149 5205 1 Europe/Helsinki 2011-07-31
-656657 Inari Inari Aanaar,Anar,Anár,Enare,Inari,Ânar,Инари 68.90596 27.02881 P PPLA3 FI 06 19 148 7049 122 Europe/Helsinki 2011-07-31
-656688 Imatra Imatra Imatra,imatra,Иматра 61.17185 28.75242 P PPLA3 FI 13 09 153 29615 68 Europe/Helsinki 2011-07-31
-656709 Ilomantsi Ilomantsi Ilomants,Ilomantsi,Иломантси 62.67162 30.93276 P PPLA3 FI 14 12 146 6408 149 Europe/Helsinki 2012-02-20
-656739 Ilmajoki Ilmajoki Ilmola 62.73333 22.56667 P PPLA3 FI 15 14 145 11693 41 Europe/Helsinki 2012-03-18
-656789 Ikaalinen Ikaalinen Ikaalinen,Ikalis,Икаалинен 61.76951 23.0658 P PPLA3 FI 15 06 143 7309 101 Europe/Helsinki 2011-10-07
-656807 Iitti Iitti 60.89488 26.33869 P PPLA3 FI 13 08 142 7246 80 Europe/Helsinki 2011-07-31
-656820 Iisalmi Iisalmi ISALMI,Idensalmi,Iisalmi,Iisalmo,Isal'mi,ИСАЛМИ 63.55915 27.19067 P PPLA3 FI 14 11 140 22588 108 Europe/Helsinki 2011-07-31
-656851 Ii Ii Ii,Ii vald,Iio,Ijo 65.31735 25.3731 P PPLA3 FI 08 17 139 6546 12 Europe/Helsinki 2012-02-20
-656913 Hyvinkää Hyvinkaa Hyvinge,Hyvinkaeae,Hyvinkää,Khjuvinkjaja,Хювинкяя 60.63333 24.86667 P PPLA3 FI 13 01 106 43515 113 Europe/Helsinki 2011-07-31
-656949 Hyrynsalmi Hyrynsalmi Hyrynsaimi,Hyrynsalmi,Khjurjunsalmi,Khyuryunsalmi,Хюрюнсалми 64.66667 28.53333 P PPLA3 FI 08 18 105 3087 148 Europe/Helsinki 2012-02-20
-657112 Humppila Humppila 60.93333 23.36667 P PPLA3 FI 13 05 103 2559 109 Europe/Helsinki 2011-07-31
-657180 Huittinen Huittinen 61.18333 22.7 P PPLA3 FI 15 04 102 8952 52 Europe/Helsinki 2011-07-31
-657305 Houtskär Houtskar Houtskaer,Houtskari,Houtskär 60.22284 21.37218 P PPLA3 FI 15 02 445 626 6 Europe/Helsinki 2011-12-31
-657479 Honkajoki Honkajoki Hongonjoki 61.98333 22.26667 P PPLA3 FI FI 15 04 099 0 110 Europe/Helsinki 2011-07-31
-657530 Hollola Hollola Hollola,Khollola,Холлола 61.05 25.43333 P PPLA3 FI 13 07 098 20405 104 Europe/Helsinki 2011-07-31
-657730 Hirvensalmi Hirvensalmi Hirvensalmi,Khirvensalmi,Хирвенсалми 61.63333 26.8 P PPLA3 FI 14 10 097 2517 94 Europe/Helsinki 2011-07-31
-657838 Himanka Himanka Himango,Himanka 64.06667 23.65 P PPL FI 15 3136 20 Europe/Helsinki 2012-01-18
-658224 Helsinki Helsinki Helsinge,Helsinginkylae,Helsinginkylä,Helsinkiranta 60.60778 21.4381 P PPLA3 FI FI 15 02 833 0 30 Europe/Helsinki 2012-02-20
-658225 Helsinki Helsinki Elsin'ki,HEL,Heilsinci,Heilsincí,Helsingfors,Helsingi,Helsingia,Helsinki,Helsinkis,Helsinkium,Helsinko,Helsinky,Helsinqui - Helsinki,Helsinquia,Helsset,Helsínquia,Hèlsinki,Hêlsînkî,Khel'sinki,Khelsinki,Khelzinki,Yelsinki,he er xin ji,helasinki,helsingki,herushinki,hlsnky,hlsynky,hlsynqy,Ελσίνκι,Хелзинки,Хелсинки,Хельсинки,Хэльсынкі,Հելսինկի,הלסינקי,هلسنكي,هلسینکی,ܗܠܣܢܟܝ,हेलसिंकी,เฮลซิงกิ,ჰელსინკი,ሄልሲንኪ,ヘルシンキ,赫尔辛基,헬싱키 60.16952 24.93545 P PPLC FI 13 01 091 558457 26 Europe/Helsinki 2011-12-31
-658288 Heinola Heinola Heinola,KHEJNOLA,Khejnola,Kheynola,ХЕЙНОЛА,Хейнола 61.21667 26.03333 P PPLA3 FI 13 07 111 20849 88 Europe/Helsinki 2011-07-31
-658318 Heinävesi Heinavesi Heinaevesi,Heinaevesi vald,Heinavesi,Heinnvesi,Heinävesi,Heinävesi vald,Khejnjavesi,Хейнявеси 62.43333 28.6 P PPLA3 FI 14 10 090 4457 129 Europe/Helsinki 2012-02-20
-658581 Hausjärvi Hausjarvi 60.78333 24.93333 P PPLA3 FI 13 05 086 8151 105 Europe/Helsinki 2011-07-31
-658617 Haukivuori Haukivuori Haukivuori,Khaukivuori,Хаукивуори 62.01667 27.21667 P PPL FI 14 10 491 2256 124 Europe/Helsinki 2012-01-18
-658629 Haukipudas Haukipudas Haukipudas,Khaukipudas,Хаукипудас 65.17654 25.35233 P PPLA3 FI 08 17 084 17298 12 Europe/Helsinki 2012-02-20
-658670 Hauho Hauho Hauho,Khaukho,Хаухо 61.17255 24.56303 P PPLA3 FI 13 05 109 3755 101 Europe/Helsinki 2011-12-31
-658757 Hartola Hartola Gustav Adolfs,Hartola,Khartola,Хартола 61.58333 26.01667 P PPLA3 FI 13 07 081 3676 118 Europe/Helsinki 2011-08-12
-658921 Harjavalta Harjavalta 61.31667 22.13333 P PPLA3 FI 15 04 079 7572 37 Europe/Helsinki 2011-07-31
-659024 Hankasalmi Hankasalmi Hankasalmi,Khalkasalmi,Халкасалми 62.38333 26.43333 P PPLA3 FI 15 13 077 5372 116 Europe/Helsinki 2011-07-31
-659101 Hanko Hanko Hango,Hangoe,Hangö,Hanko,Khanko,Ханко,האנקו 59.83333 22.95 P PPL FI 13 01 078 9962 14 Europe/Helsinki 2012-02-02
-659169 Hamina Hamina Fredrikshamn,Hamina,KHAMINA,Khamina,ХАМИНА,Хамина 60.56974 27.19794 P PPLA3 FI 13 08 075 21712 3 Europe/Helsinki 2011-07-31
-659180 Hämeenlinna Hameenlinna Haemeenlinna,Hämeenlinna,Khamenlinna,Khjameenlinna,Tavastehus,hamenrin'na,Хямеенлинна,ハメーンリンナ 60.99596 24.46434 P PPLA FI 13 05 109 47261 83 Europe/Helsinki 2012-03-18
-659184 Hämeenkyrö Hameenkyro Haemeenkyroe,Hämeenkyrö,Tavastkyroe,Tavastkyrö 61.63913 23.19531 P PPLA3 FI 15 06 108 9996 65 Europe/Helsinki 2011-07-31
-659231 Halsua Halsua Halsua,Khalsua,Халсуа 63.46667 24.16667 P PPLA3 FI 15 16 074 1393 131 Europe/Helsinki 2011-07-31
-659350 Halikko Halikko 60.4 23.08333 P PPLA3 FI 15 02 734 9344 13 Europe/Helsinki 2011-12-31
-659431 Hailuoto Hailuoto Ailuoto,Hailuoto,Karlo,Karloe,Karlö,Khajluoto,Хайлуото 65.009 24.71385 P PPLA3 FI 08 17 072 955 10 Europe/Helsinki 2011-07-31
-659554 Haapavesi Haapavesi Haapavesi,Khapavesi,Хапавеси 64.13333 25.36667 P PPLA3 FI 08 17 071 7717 84 Europe/Helsinki 2011-07-31
-659681 Haapajärvi Haapajaervi Aspsjoe,Aspsjö,Haapajaervi,Haapajärvi,Haapavesi,KHAPAJARVI,Khapayarvi,ХАПАЯРВИ 63.75 25.33333 P PPLA3 FI 08 17 069 7627 102 Europe/Helsinki 2011-12-31
-659935 Forssa Forssa Forssa,Форсса 60.81462 23.62146 P PPLA3 FI 13 05 061 17852 133 Europe/Helsinki 2011-07-31
-660065 Evijärvi Evijarvi 63.36667 23.48333 P PPLA3 FI 15 14 052 2878 67 Europe/Helsinki 2011-07-31
-660073 Eurajoki Eurajoki Euraaminne,Eurajoki,Euraåminne 61.2 21.73333 P PPLA3 FI 15 04 051 5656 21 Europe/Helsinki 2011-12-31
-660077 Eura Eura 61.13333 22.13333 P PPLA3 FI 15 04 050 9338 41 Europe/Helsinki 2011-07-31
-660158 Espoo Espoo Ehspoo,Esbo,Espo,Espoo,ai si bo,esupo,Έσποο,Еспо,Еспоо,Эспоо,ესპოო,エスポー,埃斯波 60.2052 24.6522 P PPLA3 FI 13 01 049 229527 16 Europe/Helsinki 2011-07-31
-660229 Enontekiö Enontekioe Eanodat,Enodak,Enontekioe,Enontekis,Enontekiö,Heahtta,Hetta,Heähtta 68.38573 23.63215 P PPLA3 FI 06 19 047 2145 200 299 Europe/Helsinki 2012-02-20
-660235 Enonkoski Enonkoski Ehnonkoski,Enonkoski,Энонкоски 62.08333 28.93333 P PPLA3 FI 14 10 046 1714 103 Europe/Helsinki 2011-07-31
-660242 Eno Eno Eno 62.8 30.15 P PPL FI 14 12 167 6891 132 Europe/Helsinki 2012-01-18
-660294 Elimäki Elimaki Ehlimjaki,Elima,Elimae,Elimaeki,Elimä,Elimäki,Элимяки 60.71667 26.46667 P PPLA3 FI 13 08 286 8751 34 Europe/Helsinki 2011-12-31
-660325 Ekenäs Ekenaes Ekenaes,Ekenas,Ekenäs,Tammisaari,Tammisari,Таммисаари 59.97359 23.43389 P PPLA3 FI 13 01 710 14377 8 Europe/Helsinki 2011-12-31
-660374 Dragsfjärd Dragsfjard 60.06667 22.48333 P PPLA3 FI 15 02 322 3309 19 Europe/Helsinki 2011-12-31
-660561 Porvoo Porvoo Borga,Borgo,Borgå,PORVOO,Porvo,Porvoo,ПОРВОО 60.39233 25.66507 P PPLA3 FI 13 01 638 47192 29 Europe/Helsinki 2011-12-28
-660838 Auttoinen Auttoinen Auttoinen,Auttojnen,Ауттойнен 61.3 25.08333 P PPL FI 13 07 576 1300 131 Europe/Helsinki 2012-01-18
-660873 Aura Aura 60.6 22.56667 P PPLA3 FI 15 02 019 3693 76 Europe/Helsinki 2011-07-31
-660927 Askola Askola 60.53333 25.6 P PPLA3 FI 13 01 018 4515 58 Europe/Helsinki 2011-12-28
-660940 Askainen Askainen Askas 60.56667 21.86667 P PPLA3 FI 15 02 481 1004 23 Europe/Helsinki 2011-12-31
-660949 Asikkala Asikkala Asikkala,Асиккала 61.21667 25.5 P PPLA3 FI 13 07 016 8540 74 Europe/Helsinki 2011-07-31
-660974 Artjärvi Artjarvi Artsjoe,Artsjö 60.74544 26.07084 P PPLA3 FI 13 07 560 1536 60 Europe/Helsinki 2011-12-31
-661164 Anjala Anjala AN"JALA,Anjala,АНЪЯЛА 60.68333 26.83333 P PPL FI 13 08 286 16779 18 Europe/Helsinki 2012-01-18
-661352 Alavus Alavus Alavo,Alavus,Алавус 62.58333 23.61667 P PPLA3 FI 15 14 010 9422 107 Europe/Helsinki 2012-02-20
-661363 Alavieska Alavieska Alavieska,Алавиеска 64.16667 24.3 P PPLA3 FI 08 17 009 2883 49 Europe/Helsinki 2011-07-31
-661410 Alastaro Alastaro 60.95 22.85 P PPLA3 FI 15 02 430 0 79 Europe/Helsinki 2011-12-31
-661411 Alastaro Alastaro Alastaromaenpaa,Alastaromäenpää 60.93333 22.91667 P PPLA3 FI 15 02 430 2975 82 Europe/Helsinki 2011-12-31
-661576 Alajärvi Alajarvi Alajaervi,Alajarvi,Alajärvi,Alayarvi,Алаярви 63 23.81667 P PPL FI 15 14 005 8793 113 Europe/Helsinki 2012-01-18
-661601 Alahärmä Alaharma Alahaermae,Alahärmä 63.23333 22.85 P PPLA3 FI 15 14 233 4915 39 Europe/Helsinki 2011-12-31
-661896 Ähtäri Ahtari AEhtaeri,Atsari,Ehkhtjari,Eteyari,Etseri,Ähtäri,Ätsari,Эхтяри 62.55403 24.06186 P PPLA3 FI 15 14 989 6835 175 Europe/Helsinki 2012-03-18
-662095 Äänekoski Aanekoski AEaenekoski,Ehehnekoski,Äänekoski,Ээнекоски 62.6 25.73333 P PPLA3 FI 15 13 992 13406 102 Europe/Helsinki 2011-07-31
-846663 Loimaan Kunta Loimaan Kunta 60.87283 22.98512 P PPL FI 15 02 430 5816 87 Europe/Helsinki 2011-12-31
-846664 Äetsä Aetsa Aetsa,Äetsä 61.28333 22.68333 P PPL FI 15 06 790 4929 55 Europe/Helsinki 2012-01-19
-846668 Pieksämäen Maalaiskunta Pieksamaen Maalaiskunta Pieksamaen Maalaiskunta,Pieksämäen Maalaiskunta 62.28333 27.06667 P PPL FI 14 10 593 5834 116 Europe/Helsinki 2012-01-19
-6295613 Kilo Kilo 60.21746 24.78151 P PPLL FI 11 2000 24 Europe/Helsinki 2011-04-30
-6691859 Teekkarikylä Teekkarikylae Helsinki University of Technology student village 60.18959 24.83502 P PPL FI 13 01 049 3496 1 Europe/Helsinki 2011-12-31
-7647230 Koukkuniemi Koukkuniemi 60.15385 24.76447 P PPLX FI 11 1038 11 1 Europe/Helsinki 2011-01-23
-7779093 Ristinummi Ristinummi 63.09192 21.72297 P PPL FI 12 1500 15 Europe/Helsinki 2011-05-08
-7779094 Teeriniemi Teeriniemi 63.09643 21.68547 P PPL FI 12 1500 10 Europe/Helsinki 2011-12-25
-7910855 Toijala Toijala 61.16911 23.86565 P PPLX FI 02 8300 88 Europe/Helsinki 2011-08-01
-7911309 Länsi-Turunmaa Laensi-Turunmaa Vaestaboland,Väståboland 60.29972 22.3004 P PPL FI 15 02 445 15498 -9999 Europe/Helsinki 2011-12-31
-2198148 Suva Suva Souba,Suva,Suva City,Suwa,su wa,suba,subha,swbh,swfa,swwa,Σούβα,Сува,סובה,سوفا,سووا,সুভা,ሱቫ,スバ,蘇瓦,수바 -18.14161 178.44149 P PPLC FJ FJ 01 77366 57 Pacific/Fiji 2010-05-30
-2202064 Nadi Nadi Nadi,Nandi,Нанди -17.8 177.41667 P PPL FJ FJ 05 42284 10 Pacific/Fiji 2010-09-06
-2204506 Lautoka Lautoka Lautoka -17.61667 177.46667 P PPLA FJ 05 0 23 Pacific/Fiji 2012-01-16
-2204582 Lambasa Lambasa Labasa,Lambasa,Lambasa Mill,Lambase,Lambassa -16.41667 179.38333 P PPL FJ FJ 03 24187 16 Pacific/Fiji 2012-01-18
-3426691 Stanley Stanley Port Stanley,Port Stenli,Puerto Archentinas/Stenlis,Puerto Argentino/Stanley,Stanley,Stanley Harbour,Stenlis,stnly,sutanre,sutanri,Порт Стенли,סטנלי,スタンリー,スタンレー -51.7 -57.85 P PPLC FK 00 2213 43 Atlantic/Stanley 2012-01-18
-2081114 Weno Town Weno Town Moen 7.45154 151.8468 P PPL FM 03 MN 13802 0 4 Pacific/Chuuk 2011-02-20
-2081342 Kosrae State Legislature Kosrae State Legislature 5.32479 163.00781 P PPLA FM 01 LE 0 5 9 Pacific/Kosrae 2011-02-03
-2081986 Palikir - National Government Center Palikir - National Government Center Palakir,Palikir,Palikiras,Palirik,Pallikir,pa li ji er,pa li kexr,pallikileu,parikiru,plyqyr,Παλιρίκ,Паликир,Պալիկիր,פליקיר,ปาลิเกอร์,ፓሊኪር,パリキール,帕利基爾,팔리키르 6.92477 158.16109 P PPLC FM 02 SO 0 90 92 Pacific/Pohnpei 2011-08-01
-2082038 Kolonia Town Kolonia Town Colony Koronia,Kolonie,Koroni,Koronia,Koronie,Mesenieng,Mesieng,Ponape,Ponape Town 6.964 158.206 P PPL FM 02 KL 5681 0 36 Pacific/Pohnpei 2011-02-12
-4036933 Rumung Rumung 9.622 138.154 P PPLA2 FM 04 RM 0 0 38 Pacific/Pohnpei 2011-02-03
-4043034 Kolonia Kolonia 6.964 158.2062 P PPLA FM 02 KL 0 0 36 Pacific/Pohnpei 2011-02-05
-7627032 Kapingamarangi Kapingamarangi 1.07861 154.80752 P PPLA2 FM 02 KP 0 11 2010-12-21
-7627037 Nukuoro Nukuoro 3.83619 154.97143 P PPLA2 FM 02 NU 0 16 2010-12-21
-7627089 Ngatik Ngatik 5.7885 157.15942 P PPLA2 FM 02 NG 0 16 Pacific/Pohnpei 2010-12-22
-7627186 Pingelap Pingelap 6.20589 160.70327 P PPLA2 FM 02 PI 0 12 Pacific/Kosrae 2010-12-23
-7627586 Namoluk Namoluk 5.915 153.14 P PPLA2 FM 03 NL 0 -9999 Pacific/Chuuk 2011-01-09
-7627628 Houk Houk 6.6894 149.29908 P PPLA2 FM 03 PK 0 8 Pacific/Chuuk 2010-12-31
-7628103 Polowat Polowat 7.35661 149.19908 P PPLA2 FM 03 PW 0 11 Pacific/Chuuk 2011-01-02
-7628250 Pulap Pulap 7.6366 149.42878 P PPLA2 FM 03 PP 0 8 Pacific/Chuuk 2011-01-03
-7628253 Tamatam Tamatam 7.53868 149.41428 P PPLA2 FM 03 TM 0 16 Pacific/Chuuk 2011-01-03
-7628259 Onoun Onoun 8.575 149.687 P PPLA2 FM 03 UL 0 11 Pacific/Chuuk 2011-01-03
-7628274 Pisaras Pisaras 8.569 150.4195 P PPLA2 FM 03 PS 0 13 Pacific/Chuuk 2011-01-06
-7628277 Onou Onou 8.799 150.2915 P PPLA2 FM 03 OO 0 11 Pacific/Chuuk 2011-01-04
-7628280 Unanu Unanu 8.75 150.341 P PPLA2 FM 03 OR 0 11 Pacific/Chuuk 2011-01-04
-7628283 Makur Makur 8.985 150.1275 P PPLA2 FM 03 MA 0 10 Pacific/Chuuk 2011-01-04
-7628452 Mokil Mokil 6.69281 159.76283 P PPLA2 FM 02 MO 0 8 Pacific/Pohnpei 2011-01-05
-7644931 Nomwin Nomwin 8.43 151.748 P PPLA2 FM 03 NW 0 12 Pacific/Chuuk 2011-01-07
-7645169 Fananu Fananu 8.55811 151.90922 P PPLA2 FM 03 FN 0 10 Pacific/Chuuk 2011-01-07
-7645190 Murilo Murilo 8.692 152.3435 P PPLA2 FM 03 MU 0 -9999 Pacific/Chuuk 2011-01-08
-7645195 Ruo Ruo 8.609 152.2455 P PPLA2 FM 03 RU 0 9 Pacific/Chuuk 2011-01-08
-7645213 Nema Nema Nama 6.993 152.575 P PPLA2 FM 03 NA 0 23 Pacific/Chuuk 2011-01-08
-7645217 Losap Losap 6.894 152.74 P PPLA2 FM 03 LO 0 13 Pacific/Chuuk 2011-01-08
-7645221 Piis Piis 6.834 152.701 P PPLA2 FM 03 PL 0 19 Pacific/Chuuk 2011-01-08
-7645270 Ettal Ettal 5.592 153.564 P PPLA2 FM 03 ET 0 -9999 Pacific/Chuuk 2011-01-09
-7645369 Lukunor Lukunor Lekinioch 5.507 153.8205 P PPLA2 FM 03 LU 0 9 Pacific/Chuuk 2011-01-10
-7645372 Oneop Oneop 5.5066 153.7105 P PPLA2 FM 03 OP 0 5 Pacific/Chuuk 2011-01-10
-7645375 Moch Moch 5.4918 153.54 P PPLA2 FM 03 MC 0 18 Pacific/Chuuk 2011-01-10
-7645378 Kuttu Kuttu 5.453 153.4575 P PPLA2 FM 03 KU 0 6 Pacific/Chuuk 2011-01-10
-7645381 Ta Ta 5.2842 153.648 P PPLA2 FM 03 TA 0 16 Pacific/Chuuk 2011-01-10
-7645384 Satowan Satowan 5.334 153.738 P PPLA2 FM 03 SA 0 24 Pacific/Chuuk 2011-01-10
-7645723 Satawal Satawal 7.382 147.0322 P PPLA2 FM 04 SA 0 9 Pacific/Pohnpei 2011-01-17
-7645726 Lamotrek Lamotrek 7.491 146.305 P PPLA2 FM 04 LA 0 -9999 2011-01-12
-7645731 Elato Elato 7.502 146.166 P PPLA2 FM 04 EL 0 -9999 2011-01-12
-7645749 Faraulep Faraulep 8.588 144.508 P PPLA2 FM 04 FP 0 -9999 2011-01-12
-7645754 Ifalik Ifalik 7.25 144.4445 P PPLA2 FM 04 IF 0 -9999 2011-01-12
-7645763 Eauripik Eauripik 6.687 143.0375 P PPLA2 FM 04 ER 0 -9999 2011-01-12
-7645768 Sorol Sorol 8.1435 140.394 P PPLA2 FM 04 SO 0 -9999 2011-01-12
-7645769 Fais Fais 9.766 140.52 P PPLA2 FM 04 FS 215 20 Pacific/Pohnpei 2011-01-13
-7645772 Ngulu Ngulu 8.45 137.484 P PPLA2 FM 04 NG 0 -9999 2011-01-12
-7648112 Colonia Colonia 9.51638 138.12167 P PPLA FM 04 WE 0 10 Pacific/Pohnpei 2011-01-30
-7648249 Lelu Lelu 5.33359 163.02248 P PPLA2 FM 01 LE 0 1 Pacific/Kosrae 2011-01-31
-7648250 Tafunsak Tafunsak 5.3671 162.98532 P PPLA2 FM 01 TA 0 4 61 Pacific/Kosrae 2011-02-03
-7648440 Malem Malem 5.28599 163.02609 P PPLA2 FM 01 MA 0 2 Pacific/Kosrae 2011-02-02
-7648441 Utwe Utwe 5.27486 162.97656 P PPLA2 FM 01 UT 0 7 Pacific/Kosrae 2011-02-02
-7648752 Kolonia Kolonia 6.964 158.2064 P PPLA2 FM 02 KL 0 0 30 Pacific/Pohnpei 2011-02-05
-7667608 Madolenihm Municipality Government Madolenihm Municipality Government 6.83493 158.2987 P PPLA2 FM 02 MA 0 73 82 Pacific/Pohnpei 2011-02-11
-7668874 Tonoas Municipal Building Tonoas Municipal Building 7.37597 151.88433 P PPLA2 FM 03 DU 0 8 25 Pacific/Chuuk 2011-02-18
-7668879 Weno Municipal Offices Weno Municipal Offices 7.44428 151.84103 P PPLA2 FM 03 MN 0 2 2 Pacific/Chuuk 2011-02-18
-7668886 Weno - Chuuk State Legislature Weno - Chuuk State Legislature 7.4564 151.84346 P PPLA FM 03 MN 13802 5 5 Pacific/Chuuk 2011-02-18
-2610343 Vestmanna Vestmanna Vestmanhavn,Vestmanshavn,Vestnanhavn 62.15639 -7.16639 P PPL FO ST 1284 149 Atlantic/Faroe 2009-07-20
-2610806 Vágur Vagur Vaag,Vag,Våg 61.47324 -6.81185 P PPL FO SU 1569 144 Atlantic/Faroe 2009-07-20
-2611060 Tvøroyri Tvoroyri Tvaera,Tvaeraa,Tvaora,Tvera,Tveraa,Tverå,Tvorovri,Tværaa,Tværå,Tvörovri 61.55557 -6.81109 P PPLA FO SU 1230 46 Atlantic/Faroe 2009-07-20
-2611396 Tórshavn Torshavn Havn,THorshoefn,Tarskhavn,Thorshavn,Torshamn,Torshavn,Torshavnas,Torskhavn,Tórshavn,toleuseuhaun,tosuhaun,Þórshöfn,Тарсхавн,Торсхавн,טורסהאבן,トースハウン,토르스하운 62.00973 -6.77164 P PPLC FO ST 13200 1 Atlantic/Faroe 2012-01-17
-2612890 Sørvágur Sorvagur Soervaag,Sorvaag,Sorvag,Sörvag,Sørvaag 62.09726 -7.3577 P PPL FO VG 1066 159 Atlantic/Faroe 2009-07-20
-2614212 Sandur Sandur Sand 61.8425 -6.80778 P PPLA FO SA 608 113 Atlantic/Faroe 2009-07-20
-2616914 Miðvágur Midvagur Midvaag,Midvag,Midvåg 62.05111 -7.19389 P PPLA FO VG 1040 105 Atlantic/Faroe 2009-07-20
-2618511 Kollafjørður Kollafjordhur Kollafjordhur,Kollafjørður,Kollefiord Church,Kollefjord,Kollefjord Kirke 62.11167 -6.91067 P PPL FO ST 1049 31 Atlantic/Faroe 2012-01-17
-2618795 Klaksvík Klaksvik Klakksvik,Klakksvík,Klaksvig,Klaksvik,Klaksvík,קלאקסוויק 62.22655 -6.58901 P PPLA FO NO 4664 88 Atlantic/Faroe 2009-07-20
-2619693 Hoyvík Hoyvik Hojvig,Hoyvig,Hoyvik,Hoyvík,Höjvig 62.03407 -6.78127 P PPL FO ST 2777 76 Atlantic/Faroe 2009-07-20
-2621808 Fuglafjørður Fuglafjordur Fuglafjordur,Fuglafjørður,Fuglefiord,Fuglefjord 62.24398 -6.81395 P PPLA FO FO OS 1542 30 Atlantic/Faroe 2009-07-20
-2622676 Eiði Eidi Eide,Eidhi,Eiði,Ejde 62.2993 -7.09245 P PPLA2 FO OS 2622677 634 -9999 Atlantic/Faroe 2012-01-23
-2624653 Argir Argir Arge,Argir 61.99595 -6.77154 P PPL FO ST 1871 75 Atlantic/Faroe 2012-01-17
-7798678 Eystur Eystur 62.20907 -6.75247 P PPLA2 FO OS 0 291 Atlantic/Faroe 2011-05-15
-2967103 Peyrat-le-Château Peyrat-le-Chateau Peyrat,Peyrat-le-Chateau,Peyrat-le-Château 45.81578 1.77233 P PPL FR B1 87 872 87117 1140 429 Europe/Paris 2012-01-18
-2967108 Blaye Blaye Blaia,Blaye-et-Sainte-Luce 45.13333 -0.66667 P PPLA3 FR 97 33 331 33058 5277 10 Europe/Paris 2011-11-02
-2967110 Zuydcoote Zuydcoote Zuidcoote,Zuydcoote 51.06096 2.49338 P PPL FR B4 59 594 59668 1660 3 Europe/Paris 2012-01-18
-2967112 Zutkerque Zutkerque Zutkerque 50.85304 2.06818 P PPL FR B4 62 625 62906 1749 24 Europe/Paris 2012-01-18
-2967125 Zonza Zonza Zonza 41.74813 9.17102 P PPL FR A5 2A 2A4 2A362 1888 766 Europe/Paris 2012-01-18
-2967137 Zimmersheim Zimmersheim Zimmersheim 47.72021 7.3882 P PPL FR C1 68 684 68386 1080 263 Europe/Paris 2012-01-18
-2967139 Zillisheim Zillisheim Zillisheim 47.69562 7.29516 P PPL FR C1 68 684 68384 2537 252 Europe/Paris 2012-01-18
-2967157 Zegerscappel Zegerscappel 50.88333 2.4 P PPL FR B4 59 594 59666 1228 19 Europe/Paris 2007-12-03
-2967165 Yzeures-sur-Creuse Yzeures-sur-Creuse Yzeures,Yzeures-sur-Creuse 46.78609 0.87166 P PPL FR A3 37 373 37282 1550 72 Europe/Paris 2012-01-18
-2967166 Yzeure Yzeure Yzeure 46.56438 3.35495 P PPL FR 98 03 032 03321 13435 242 Europe/Paris 2012-01-18
-2967169 Yzernay Yzernay Yzernay 47.02229 -0.70294 P PPL FR B5 49 492 49381 1565 170 Europe/Paris 2012-01-18
-2967175 Yvré-le-Pôlin Yvre-le-Polin Yvre,Yvre-le-Polin,Yvré,Yvré-le-Pôlin 47.82235 0.15581 P PPL FR B5 72 721 72385 1747 95 Europe/Paris 2012-01-18
-2967179 Yvrac Yvrac Yvrac 44.87786 -0.4587 P PPL FR 97 33 332 33554 2357 70 Europe/Paris 2012-01-18
-2967183 Yvignac-la-Tour Yvignac-la-Tour 48.35 -2.18333 P PPL FR A2 22 221 22391 1124 79 Europe/Paris 2007-11-13
-2967189 Yvetot Yvetot Yvetot,Yvetot-la-Montagne 49.61744 0.75814 P PPL FR A7 76 763 76758 11232 148 Europe/Paris 2012-01-18
-2967191 Yves Yves Yves 46.01922 -1.04833 P PPL FR B7 17 172 17483 1128 8 Europe/Paris 2012-01-18
-2967201 Ytrac Ytrac Ytrac 44.91343 2.36295 P PPL FR 98 15 151 15267 3421 593 Europe/Paris 2012-01-18
-2967203 Yssingeaux Yssingeaux Issingeaux,Yssingeaux 45.13333 4.11667 P PPLA3 FR 98 43 433 43268 7286 902 Europe/Paris 2011-11-02
-2967217 Yport Yport Yport 49.73716 0.31537 P PPL FR A7 76 762 76754 1041 21 Europe/Paris 2012-01-18
-2967218 Youx Youx Youx 46.14441 2.80004 P PPL FR 98 63 634 63471 1040 622 Europe/Paris 2012-01-18
-2967230 Ymare Ymare Ymare 49.3506 1.17938 P PPL FR A7 76 763 76753 1060 139 Europe/Paris 2012-01-18
-2967232 Ygos-Saint-Saturnin Ygos-Saint-Saturnin Ygos 43.97651 -0.7378 P PPL FR 97 40 402 40333 1223 73 Europe/Paris 2009-03-23
-2967234 Yffiniac Yffiniac Ilfinieg,Yffiniac 48.48428 -2.67647 P PPL FR A2 22 224 22389 4392 11 Europe/Paris 2012-01-18
-2967236 Yèvres Yevres Aebura,Evra,Yevres,Yèvres 48.21078 1.18717 P PPL FR A3 28 282 28424 1778 160 Europe/Paris 2012-04-01
-2967242 Yerville Yerville Yerville 49.6672 0.89594 P PPL FR A7 76 763 76752 2220 161 Europe/Paris 2012-01-18
-2967245 Yerres Yerres Jerre,Yerres,ierr,Иерр,Йерре 48.71785 2.49338 P PPL FR A8 91 912 91691 28897 73 Europe/Paris 2012-01-18
-2967249 Yenne Yenne 45.7042 5.75795 P PPL FR B9 73 732 73330 2816 233 Europe/Paris 2008-07-25
-2967251 Yébleron Yebleron Yebleron,Yébleron 49.63333 0.53746 P PPL FR A7 76 762 76751 1374 143 Europe/Paris 2012-01-18
-2967252 Ydes Ydes Ydes 45.33333 2.46667 P PPL FR 98 15 152 15265 1980 488 Europe/Paris 2012-01-18
-2967253 Ychoux Ychoux Ychoux 44.32869 -0.9518 P PPL FR 97 40 402 40332 1623 56 Europe/Paris 2012-01-18
-2967256 Yainville Yainville Yainville 49.45371 0.8292 P PPL FR A7 76 763 76750 1150 23 Europe/Paris 2012-01-18
-2967263 Xonrupt-Longemer Xonrupt-Longemer Xonrupt,Xonrupt-Longemer 48.08224 6.92944 P PPL FR B2 88 883 88531 1542 719 Europe/Paris 2012-01-18
-2967269 Xertigny Xertigny Xertigny 48.04394 6.40836 P PPL FR B2 88 881 88530 2828 512 Europe/Paris 2012-01-18
-2967287 Woustviller Woustviller Woustviller 49.07636 7.00487 P PPL FR B2 57 576 57752 3442 227 Europe/Paris 2012-01-18
-2967288 Wormhout Wormhout Wormhoudt,Wormhout 50.88129 2.46901 P PPL FR B4 59 594 59663 5216 15 Europe/Paris 2012-01-18
-2967293 Wolfisheim Wolfisheim 48.58723 7.66708 P PPL FR C1 67 676 67551 4035 151 Europe/Paris 2007-07-06
-2967294 Wolfgantzen Wolfgantzen 48.02805 7.5004 P PPL FR C1 68 682 68379 1012 192 Europe/Paris 2007-07-07
-2967297 Woippy Woippy Woippy 49.14946 6.14909 P PPL FR B2 57 574 57751 13721 170 Europe/Paris 2012-01-18
-2967299 Woincourt Woincourt Woincourt,Wornicourt 50.0663 1.53676 P PPL FR B6 80 801 80827 1565 99 Europe/Paris 2012-01-18
-2967309 Wizernes Wizernes Wizernes 50.7117 2.24316 P PPL FR B4 62 625 62902 3544 24 Europe/Paris 2012-01-18
-2967312 Wittisheim Wittisheim Wittisheim 48.26341 7.58703 P PPL FR C1 67 675 67547 1929 166 Europe/Paris 2012-01-18
-2967318 Wittenheim Wittenheim Wittenheim 47.8078 7.33702 P PPL FR C1 68 684 68376 15747 228 Europe/Paris 2012-01-18
-2967319 Wittelsheim Wittelsheim 47.80947 7.24154 P PPL FR C1 68 686 68375 10220 256 Europe/Paris 2007-07-07
-2967320 Witry-lès-Reims Witry-les-Reims Witry,Witry-les-Reims,Witry-lez-Reims,Witry-lès-Reims 49.29162 4.1192 P PPL FR A4 51 513 51662 4666 130 Europe/Paris 2012-01-18
-2967322 Wissous Wissous Wissous 48.73352 2.32338 P PPL FR A8 91 913 91689 4765 78 Europe/Paris 2012-01-18
-2967325 Wissembourg Wissembourg Vissemburg,Weissenburg,Weißenburg,Wissemborg,Wissembourg,Виссембург 49.03708 7.94548 P PPLA3 FR C1 67 677 67544 8800 161 Europe/Paris 2011-11-02
-2967326 Wissant Wissant Wissant 50.8853 1.66263 P PPL FR B4 62 623 62899 1052 19 Europe/Paris 2012-01-18
-2967331 Wisches Wisches 48.50881 7.26814 P PPL FR C1 67 673 67543 2129 271 Europe/Paris 2007-07-05
-2967337 Wintzenheim Wintzenheim Wintzenheim,Winzenheim 48.07269 7.29072 P PPL FR C1 68 682 68374 7845 230 Europe/Paris 2011-11-02
-2967341 Winnezeele Winnezeele Winnezeele 50.841 2.55118 P PPL FR B4 59 594 59662 1134 22 Europe/Paris 2012-01-18
-2967343 Wingles Wingles Wingles 50.49382 2.855 P PPL FR B4 62 627 62895 8815 26 Europe/Paris 2012-01-18
-2967344 Wingersheim Wingersheim 48.72149 7.63464 P PPL FR C1 67 676 67539 1119 193 Europe/Paris 2007-07-07
-2967349 Wimmenau Wimmenau Wimmenau 48.91155 7.42093 P PPL FR C1 67 674 67535 1114 210 Europe/Paris 2012-01-18
-2967350 Wimille Wimille Wimille 50.76418 1.63137 P PPL FR B4 62 623 62894 4825 13 Europe/Paris 2012-01-18
-2967351 Wimereux Wimereux Wimereux 50.76963 1.61139 P PPL FR B4 62 623 62893 7663 7 Europe/Paris 2007-02-20
-2967357 Willerwald Willerwald Villerwaldt,Willerwald 49.02481 7.03726 P PPL FR B2 57 576 57746 1262 240 Europe/Paris 2011-02-14
-2967363 Willems Willems Willems 50.63206 3.2384 P PPL FR B4 59 595 59660 2855 41 Europe/Paris 2012-01-18
-2967370 Wihr-au-Val Wihr-au-Val Wihr,Wihr-au-Val 48.05312 7.20489 P PPL FR C1 68 682 68368 1297 328 Europe/Paris 2012-01-18
-2967372 Wignehies Wignehies Wignehies 50.0155 4.00914 P PPL FR B4 59 591 59659 3386 173 Europe/Paris 2012-01-18
-2967373 Wiesviller Wiesviller Wiesviller 49.07916 7.16466 P PPL FR B2 57 576 57745 1029 269 Europe/Paris 2012-01-18
-2967378 Widensolen Widensolen Widensohlen,Widensolen 48.06289 7.48057 P PPL FR C1 68 682 68367 1097 187 Europe/Paris 2012-01-18
-2967386 Weyersheim Weyersheim Weyersheim 48.71537 7.80097 P PPL FR C1 67 676 67529 3095 141 Europe/Paris 2012-01-18
-2967389 Wettolsheim Wettolsheim 48.05755 7.29844 P PPL FR C1 68 682 68365 1687 222 Europe/Paris 2007-07-07
-2967393 Westhoffen Westhoffen 48.60352 7.44289 P PPL FR C1 67 673 67525 1649 204 Europe/Paris 2007-07-10
-2967397 Wervicq-Sud Wervicq-Sud Wervicq-Sud 50.7745 3.04207 P PPL FR B4 59 595 59656 4354 15 Europe/Paris 2012-01-18
-2967404 Weitbruch Weitbruch 48.75455 7.77935 P PPL FR C1 67 672 67523 2609 163 Europe/Paris 2007-07-13
-2967410 Waziers Waziers Waziers 50.38717 3.1149 P PPL FR B4 59 593 59654 7852 22 Europe/Paris 2012-01-18
-2967411 Wavrin Wavrin Wavrin 50.57386 2.9363 P PPL FR B4 59 595 59653 7770 27 Europe/Paris 2012-01-18
-2967414 Wavrechain-sous-Denain Wavrechain-sous-Denain Wavrechain,Wavrechain-sous-Denain 50.33224 3.41252 P PPL FR B4 59 596 59651 1769 33 Europe/Paris 2012-01-18
-2967418 Wavignies Wavignies Wavignies 49.54748 2.36032 P PPL FR B6 60 602 60701 1019 143 Europe/Paris 2012-01-18
-2967420 Wattwiller Wattwiller 47.83649 7.17785 P PPL FR C1 68 686 68359 1663 362 Europe/Paris 2007-07-07
-2967421 Wattrelos Wattrelos Wattrelos 50.70118 3.21812 P PPL FR B4 59 595 59650 42826 31 Europe/Paris 2012-01-18
-2967423 Wattignies Wattignies Wattignies 50.58639 3.04394 P PPL FR B4 59 595 59648 14766 37 Europe/Paris 2012-01-18
-2967426 Watten Watten Watten 50.83685 2.21346 P PPL FR B4 59 594 59647 3000 5 Europe/Paris 2012-01-18
-2967434 Wassy Wassy Vassy,Wassy 48.49811 4.94775 P PPL FR A4 52 523 52550 3427 164 Europe/Paris 2012-01-18
-2967435 Wassigny Wassigny Wassigny 50.01334 3.59988 P PPL FR B6 02 025 02830 1040 160 Europe/Paris 2012-01-18
-2967437 Wasselonne Wasselonne Wasselnheim,Wasselonne 48.63723 7.44731 P PPL FR C1 67 673 67520 5844 218 Europe/Paris 2012-01-18
-2967438 Wasquehal Wasquehal Wasquehal 50.67043 3.13382 P PPL FR B4 59 595 59646 19320 22 Europe/Paris 2012-01-18
-2967449 Warmeriville Warmeriville Warmeriville 49.35226 4.21882 P PPL FR A4 51 513 51660 2134 80 Europe/Paris 2012-01-18
-2967453 Warluis Warluis Warluis 49.38874 2.1422 P PPL FR B6 60 601 60700 1230 63 Europe/Paris 2012-01-18
-2967460 Warhem Warhem Warhem 50.97592 2.49303 P PPL FR B4 59 594 59641 1903 7 Europe/Paris 2012-01-18
-2967462 Wargnies-le-Grand Wargnies-le-Grand Wargnies-le-Grand 50.30751 3.66038 P PPL FR B4 59 591 59639 1076 88 Europe/Paris 2012-01-18
-2967467 Wardrecques Wardrecques Wardrecques 50.71108 2.34483 P PPL FR B4 62 625 62875 1099 29 Europe/Paris 2012-01-18
-2967468 Warcq Warcq Warcq 49.77518 4.68175 P PPL FR A4 08 081 08497 1451 146 Europe/Paris 2012-01-18
-2967472 Wangenbourg-Engenthal Wangenbourg-Engenthal 48.62805 7.30471 P PPL FR C1 67 673 67122 1261 434 Europe/Paris 2011-12-07
-2967476 Wandignies-Hamage Wandignies-Hamage Wandignies-Hamage 50.39609 3.3145 P PPL FR B4 59 593 59637 1155 15 Europe/Paris 2012-01-18
-2967482 Wambrechies Wambrechies Wambrechies 50.68276 3.04784 P PPL FR B4 59 595 59636 8699 19 Europe/Paris 2012-01-18
-2967490 Walscheid Walscheid Walscheid 48.65245 7.14856 P PPL FR B2 57 575 57742 1671 325 Europe/Paris 2012-01-18
-2967494 Wallers Wallers Wallers 50.37432 3.39188 P PPL FR B4 59 596 59632 5546 22 Europe/Paris 2012-01-18
-2967500 Waldighofen Waldighofen Waldighofen,Waldighoffen 47.55126 7.31743 P PPL FR C1 68 681 68355 1240 359 Europe/Paris 2012-01-18
-2967506 Walbourg Walbourg Walburg 48.88628 7.78828 P PPL FR C1 67 677 67511 1161 168 Europe/Paris 2007-07-13
-2967510 Wailly Wailly 50.52287 2.06792 P PPL FR B4 62 624 62247 1006 164 Europe/Paris 2012-02-27
-2967516 Wahagnies Wahagnies Wahagnies 50.48665 3.03448 P PPL FR B4 59 595 59630 2736 54 Europe/Paris 2012-01-18
-2967542 Vulaines-sur-Seine Vulaines-sur-Seine Vulaines,Vulaines-sur-Seine 48.43186 2.76476 P PPL FR A8 77 774 77533 2273 90 Europe/Paris 2012-01-18
-2967549 Vue Vue Gwagenez,Ile-Tortue,Vue 47.19952 -1.8775 P PPL FR B5 44 442 44220 1324 12 Europe/Paris 2012-01-18
-2967570 Vrigne-aux-Bois Vrigne-aux-Bois Vrigne,Vrigne-aux-Bois 49.73716 4.85567 P PPL FR A4 08 083 08491 3645 162 Europe/Paris 2012-01-18
-2967577 Vred Vred Vred 50.39455 3.2303 P PPL FR B4 59 593 59629 1478 19 Europe/Paris 2012-01-18
-2967595 Voves Voves Voves 48.27138 1.62583 P PPL FR A3 28 281 28422 3041 145 Europe/Paris 2012-01-18
-2967600 Vouzon Vouzon Vouzon 47.64515 2.05609 P PPL FR A3 41 413 41296 1249 139 Europe/Paris 2012-01-18
-2967603 Vouziers Vouziers 49.4 4.7 P PPLA3 FR A4 08 084 08490 4946 120 Europe/Paris 2010-04-02
-2967612 Vouvray Vouvray Vouvray 47.41088 0.79892 P PPL FR A3 37 372 37281 3208 54 Europe/Paris 2012-01-18
-2967620 Voutezac Voutezac Vautezac,Voutezac 45.29246 1.43714 P PPL FR B1 19 191 19288 1385 254 Europe/Paris 2012-01-18
-2967625 Vourles Vourles Vourles,Vourles-le-Courageux 45.65674 4.77157 P PPL FR B9 69 691 69268 2906 246 Europe/Paris 2012-01-18
-2967626 Vourey Vourey Vourey 45.31958 5.52028 P PPL FR B9 38 381 38566 1668 199 Europe/Paris 2012-01-18
-2967627 Vouneuil-sur-Vienne Vouneuil-sur-Vienne Vouneuil,Vouneuil-sur-Vienne 46.71793 0.53936 P PPL FR B7 86 861 86298 1971 59 Europe/Paris 2012-01-18
-2967628 Vouneuil-sous-Biard Vouneuil-sous-Biard Vouneuil,Vouneuil-sous-Biard 46.57387 0.26988 P PPL FR B7 86 863 86297 4391 123 Europe/Paris 2012-01-18
-2967631 Voulx Voulx Voulx 48.28204 2.96747 P PPL FR A8 77 774 77531 1772 88 Europe/Paris 2012-01-18
-2967639 Voulangis Voulangis 48.85252 2.89558 P PPL FR A8 77 771 77529 1405 93 Europe/Paris 2007-11-04
-2967641 Voujeaucourt Voujeaucourt Voujaucourt,Voujeaucourt 47.47513 6.77431 P PPL FR A6 25 252 25632 3346 316 Europe/Paris 2012-01-18
-2967647 Vouillé Vouille Vouille,Vouillé 46.64011 0.16778 P PPL FR B7 86 863 86294 2986 110 Europe/Paris 2012-01-18
-2967648 Vouillé Vouille Vouille,Vouillé 46.3155 -0.36844 P PPL FR B7 79 792 79355 2933 53 Europe/Paris 2012-01-18
-2967654 Vougy Vougy Vougy 46.1018 4.11973 P PPL FR B9 42 422 42338 1574 272 Europe/Paris 2012-01-18
-2967655 Vougy Vougy Vougy 46.06676 6.49419 P PPL FR B9 74 742 74312 1060 483 Europe/Paris 2012-01-18
-2967693 Vorey Vorey Vorey,Vorey sur Arzon 45.18357 3.90992 P PPL FR 98 43 432 43267 1521 547 Europe/Paris 2012-01-18
-2967695 Voreppe Voreppe Voreppe 45.29476 5.63324 P PPL FR B9 38 381 38565 10214 228 Europe/Paris 2012-01-18
-2967700 Vonnas Vonnas Vonnas 46.21867 4.99161 P PPL FR B9 01 012 01457 2669 192 Europe/Paris 2012-01-18
-2967708 Volx Volx Volx 43.87383 5.8413 P PPL FR B8 04 044 04245 2890 373 Europe/Paris 2012-01-18
-2967710 Volvic Volvic Volvic 45.87196 3.03832 P PPL FR 98 63 634 63470 4456 502 Europe/Paris 2008-07-25
-2967715 Volstroff Volstroff Volstroff 49.31156 6.26008 P PPL FR B2 57 577 57733 1510 191 Europe/Paris 2012-01-18
-2967718 Volonne Volonne 44.11039 6.01424 P PPL FR B8 04 044 04244 1612 454 Europe/Paris 2010-06-25
-2967728 Volmerange-les-Mines Volmerange-les-Mines Volmerange,Volmerange-les-Mines 49.44342 6.0819 P PPL FR B2 57 577 57731 1776 309 Europe/Paris 2012-01-18
-2967745 Voisins-le-Bretonneux Voisins-le-Bretonneux Voisins,Voisins-le-Bretonneux 48.75793 2.05137 P PPL FR A8 78 782 78688 13486 164 Europe/Paris 2012-01-18
-2967754 Voisenon Voisenon Voisenon 48.5717 2.6648 P PPL FR A8 77 772 77528 1243 79 Europe/Paris 2012-01-18
-2967758 Voiron Voiron Voiron 45.36395 5.59209 P PPL FR B9 38 381 38563 22114 286 Europe/Paris 2012-01-18
-2967781 Voglans Voglans Voglans 45.6339 5.90227 P PPL FR B9 73 732 73329 1555 392 Europe/Paris 2012-01-18
-2967785 Vœuil-et-Giget Voeuil-et-Giget Voeuil 45.58333 0.15 P PPL FR B7 16 161 16418 1505 75 Europe/Paris 2007-11-20
-2967796 Vizille Vizille 45.07819 5.77074 P PPL FR B9 38 381 38562 7962 279 Europe/Paris 2008-05-23
-2967801 Vix Vix Vix 46.36456 -0.86072 P PPL FR B5 85 851 85303 1690 12 Europe/Paris 2012-01-18
-2967802 Vivy Vivy Vivy 47.32648 -0.05531 P PPL FR B5 49 493 49378 2054 30 Europe/Paris 2012-01-18
-2967803 Vivonne Vivonne Vivonne 46.42953 0.26443 P PPL FR B7 86 863 86293 3053 106 Europe/Paris 2012-01-18
-2967806 Viviez Viviez Viviez 44.55678 2.21649 P PPL FR B3 12 123 12305 1582 203 Europe/Paris 2011-01-12
-2967812 Viviers-lès-Montagnes Viviers-les-Montagnes Viviers,Viviers-la-Montagne,Viviers-les-Montagnes,Viviers-lès-Montagnes 43.55474 2.17672 P PPL FR B3 81 812 81325 1738 195 Europe/Paris 2012-01-18
-2967820 Viviers Viviers Viviers,Viviers-sur-Rhone 44.48515 4.68721 P PPL FR B9 07 072 07346 3616 66 Europe/Paris 2012-01-18
-2967823 Vivier-au-Court Vivier-au-Court Vivier,Vivier-au-Court 49.73326 4.82939 P PPL FR A4 08 081 08488 3357 169 Europe/Paris 2012-01-18
-2967836 Viuz-la-Chiésaz Viuz-la-Chiesaz Viuz-la-Chiesaz,Viuz-la-Chiésaz 45.81084 6.06207 P PPL FR B9 74 741 74310 1208 594 Europe/Paris 2012-01-18
-2967837 Viuz-en-Sallaz Viuz-en-Sallaz Viux-en-Sallaz,Viuz,Viuz-en-Sallaz 46.14556 6.40986 P PPL FR B9 74 742 74311 3749 649 Europe/Paris 2012-01-18
-2967845 Vittel Vittel Mouzon-Meuse,Vittel 48.20085 5.94843 P PPL FR B2 88 882 88516 5728 337 Europe/Paris 2012-01-18
-2967847 Vitteaux Vitteaux Vitteaux 47.39732 4.5419 P PPL FR A1 21 213 21710 1161 316 Europe/Paris 2012-01-18
-2967849 Vitry-sur-Seine Vitry-sur-Seine Port-de-Marat,Vitri-sjur-Sen,Vitry,Vitry-sur-Seine,Витри-сюр-Сен 48.78716 2.40332 P PPL FR A8 94 941 94081 81001 32 Europe/Paris 2012-01-18
-2967850 Vitry-sur-Orne Vitry-sur-Orne Vitry,Vitry-sur-Orne 49.26554 6.11113 P PPL FR B2 57 578 57724 2403 176 Europe/Paris 2012-01-18
-2967856 Vitry-le-François Vitry-le-Francois Vitri-le-Fransua,Vitry-le-Francois,Vitry-le-François,Vitry-sur-Marne,Витри-ле-Франсуа 48.73333 4.58333 P PPLA3 FR A4 51 514 51649 17250 99 Europe/Paris 2011-11-02
-2967863 Vitry-en-Artois Vitry-en-Artois Vitry,Vitry-en-Artois 50.3266 2.97999 P PPL FR B4 62 621 62865 4692 49 Europe/Paris 2012-01-18
-2967864 Vitry-aux-Loges Vitry-aux-Loges Vitry,Vitry-aux-Loges 47.93333 2.26667 P PPL FR A3 45 452 45346 1819 122 Europe/Paris 2012-01-18
-2967870 Vitrolles Vitrolles Vitrol',Vitrolles,Витроль 43.46 5.24861 P PPL FR B8 13 134 13117 38591 136 Europe/Paris 2011-11-02
-2967879 Vitré Vitre Bitre,Gwitreg,Vitre,Vitreh,Vitré,fytry,vu~itore,wei te lei,Βιτρέ,Витрэ,فيتري,ヴィトレ,维特雷 48.11776 -1.20577 P PPL FR A2 35 351 35360 17266 115 Europe/Paris 2012-01-18
-2967914 Visan Visan Visan 44.3141 4.95202 P PPL FR B8 84 842 84150 1727 199 Europe/Paris 2012-01-18
-2967916 Viry-Noureuil Viry-Noureuil Viry,Viry-Noureuil 49.63214 3.24322 P PPL FR B6 02 022 02820 1972 54 Europe/Paris 2012-01-18
-2967917 Viry-Châtillon Viry-Chatillon Viri-Shatillon,Viry,Viry-Chatillon,Viry-Châtillon,Вири-Шатиллон 48.67212 2.39318 P PPL FR A8 91 912 91687 31131 38 Europe/Paris 2012-01-18
-2967920 Viry Viry Viry 46.11717 6.03717 P PPL FR B9 74 743 74309 3365 507 Europe/Paris 2012-01-18
-2967934 Viroflay Viroflay Viroflay 48.80078 2.16181 P PPL FR A8 78 784 78686 16137 110 Europe/Paris 2012-01-18
-2967940 Viriville Viriville Viriville 45.31737 5.20373 P PPL FR B9 38 381 38561 1354 353 Europe/Paris 2012-01-18
-2967945 Virieu-le-Grand Virieu-le-Grand Virieu,Virieu-le-Grand 45.84851 5.64979 P PPL FR B9 01 011 01452 1044 273 Europe/Paris 2012-01-18
-2967947 Virieu Virieu Virieu 45.48399 5.475 P PPL FR B9 38 382 38560 1027 414 Europe/Paris 2012-01-18
-2967949 Viriat Viriat Viriat 46.25484 5.21567 P PPL FR B9 01 012 01451 5850 227 Europe/Paris 2011-11-02
-2967954 Virey-le-Grand Virey-le-Grand Virey 46.83333 4.86667 P PPL FR A1 71 712 71585 1350 184 Europe/Paris 2007-11-20
-2967955 Vireux-Wallerand Vireux-Wallerand Vireux,Vireux-Wallerand 50.08196 4.73017 P PPL FR A4 08 081 08487 2034 130 Europe/Paris 2012-01-18
-2967956 Vireux-Molhain Vireux-Molhain Vireux,Vireux-Molhain 50.07874 4.72426 P PPL FR A4 08 081 08486 1833 111 Europe/Paris 2012-01-18
-2967972 Vire Vire 48.83333 -0.88333 P PPLA3 FR 99 14 144 14762 14603 171 Europe/Paris 2011-11-02
-2967975 Virazeil Virazeil Virazeil 44.50705 0.22177 P PPL FR 97 47 472 47326 1557 47 Europe/Paris 2012-01-18
-2967997 Vion Vion Vion 47.81922 -0.23916 P PPL FR B5 72 721 72378 1181 48 Europe/Paris 2012-01-18
-2968005 Violès Violes Violes,Violès 44.16146 4.95329 P PPL FR B8 84 842 84149 1657 97 Europe/Paris 2012-01-18
-2968007 Violay Violay Violay 45.85283 4.35724 P PPL FR B9 42 422 42334 1366 824 Europe/Paris 2012-01-18
-2968008 Violaines Violaines Violaines 50.5416 2.7886 P PPL FR B4 62 622 62863 3716 24 Europe/Paris 2012-01-18
-2968019 Vinsobres Vinsobres Vinsobres 44.33315 5.06208 P PPL FR B9 26 262 26377 1070 292 Europe/Paris 2012-01-18
-2968023 Vinon-sur-Verdon Vinon-sur-Verdon Vinon,Vinon-sur-Verdon 43.72451 5.81081 P PPL FR B8 83 833 83150 3275 275 Europe/Paris 2012-01-18
-2968026 Vinneuf Vinneuf Vinneuf 48.34795 3.14013 P PPL FR A1 89 893 89480 1251 75 Europe/Paris 2012-01-18
-2968034 Vineuil-Saint-Firmin Vineuil-Saint-Firmin Les Sans-Culottes-sur-Nonette,Vineuil,Vineuil-Saint-Firmin 49.20024 2.49567 P PPL FR B6 60 604 60695 1545 58 Europe/Paris 2012-01-18
-2968035 Vineuil Vineuil Vineuil 47.5838 1.37602 P PPL FR A3 41 411 41295 6950 84 Europe/Paris 2012-01-18
-2968036 Vineuil Vineuil Vineuil 46.90038 1.63543 P PPL FR A3 36 362 36247 1149 170 Europe/Paris 2012-01-18
-2968051 Vincey Vincey Vincey 48.33749 6.33134 P PPL FR B2 88 881 88513 2181 296 Europe/Paris 2012-01-18
-2968054 Vincennes Vincennes Vincennes 48.8486 2.43769 P PPL FR A8 94 942 94080 45923 57 Europe/Paris 2012-01-18
-2968062 Vinça Vinca Vinca,Vinça,Vinçà 42.64486 2.5283 P PPL FR A9 66 663 66230 1826 270 Europe/Paris 2012-01-18
-2968064 Vinay Vinay Vinay 45.21075 5.40806 P PPL FR B9 38 381 38559 3818 270 Europe/Paris 2012-01-18
-2968066 Vinassan Vinassan Vinassan 43.20443 3.07463 P PPL FR A9 11 113 11441 2152 17 Europe/Paris 2011-01-11
-2968070 Vimy Vimy Vimy 50.37243 2.81034 P PPL FR B4 62 621 62861 4797 77 Europe/Paris 2012-01-18
-2968072 Vimoutiers Vimoutiers Vimoutiers 48.92772 0.19835 P PPL FR 99 61 612 61508 3964 100 Europe/Paris 2008-11-21
-2968073 Vimory Vimory Vimory 47.94786 2.68701 P PPL FR A3 45 451 45345 1079 95 Europe/Paris 2012-01-18
-2968076 Vimines Vimines Vimines 45.54741 5.86493 P PPL FR B9 73 732 73326 1611 550 Europe/Paris 2012-01-18
-2968139 Villiers-sur-Orge Villiers-sur-Orge Villiers,Villiers-sur-Orge 48.65953 2.30002 P PPL FR A8 91 913 91685 3956 74 Europe/Paris 2012-01-18
-2968140 Villiers-sur-Morin Villiers-sur-Morin Villiers 48.86099 2.87773 P PPL FR A8 77 771 77521 1673 52 Europe/Paris 2007-11-04
-2968142 Villiers-sur-Marne Villiers-sur-Marne Vil'e-sjur-Marn,Villiers,Villiers-sur-Marne,Вилье-сюр-Марн 48.831 2.54844 P PPL FR A8 94 942 94079 30252 97 Europe/Paris 2012-01-18
-2968144 Villiers-sur-Loir Villiers-sur-Loir Villiers,Villiers-sur-Loir 47.80507 0.99774 P PPL FR A3 41 412 41294 1215 91 Europe/Paris 2012-01-18
-2968151 Villiers-Saint-Georges Villiers-Saint-Georges Villiers-Saint-Georges 48.64998 3.40754 P PPL FR A8 77 773 77519 1128 157 Europe/Paris 2012-01-18
-2968152 Villiers-Saint-Fréderic Villiers-Saint-Frederic Villiers,Villiers-le-Voltaire 48.81667 1.88333 P PPL FR A8 78 782 78683 2587 102 Europe/Paris 2007-11-18
-2968170 Villiers-le-Morhier Villiers-le-Morhier Villiers,Villiers-le-Morhier,Villiers-le-Mornier 48.62018 1.56349 P PPL FR A3 28 283 28417 1271 103 Europe/Paris 2012-01-18
-2968176 Villiers-le-Bel Villiers-le-Bel Vil'e-le-Bel',Villiers,Villiers-le-Bel,Вилье-ле-Бель 49.00875 2.39819 P PPL FR A8 95 952 95680 27028 90 Europe/Paris 2012-01-18
-2968177 Villiers-le-Bâcle Villiers-le-Bacle Villiers,Villiers-le-Bacle,Villiers-le-Bâcle 48.72819 2.11926 P PPL FR A8 91 913 91679 1154 150 Europe/Paris 2012-01-18
-2968183 Villiers-en-Plaine Villiers-en-Plaine Villiers,Villiers-en-Plaine 46.40895 -0.53756 P PPL FR B7 79 792 79351 1343 42 Europe/Paris 2012-01-18
-2968185 Villiers-en-Lieu Villiers-en-Lieu Villiers,Villiers-en-Lieu 48.66785 4.89755 P PPL FR A4 52 523 52534 1448 145 Europe/Paris 2012-01-18
-2968214 Villié-Morgon Villie-Morgon Villie,Villie-Morgon,Villié,Villié-Morgon 46.16229 4.68056 P PPL FR B9 69 692 69267 1748 282 Europe/Paris 2012-01-18
-2968220 Villey-Saint-Étienne Villey-Saint-Etienne Villey,Villey-Saint-Etienne,Villey-Saint-Étienne,Villey-sur-Moselle 48.73136 5.97841 P PPL FR B2 54 544 54584 1084 242 Europe/Paris 2012-01-18
-2968227 Villevocance Villevocance Villevocance 45.22659 4.59104 P PPL FR B9 07 073 07342 1117 424 Europe/Paris 2012-01-18
-2968236 Villevieille Villevieille Ville Vielle,Villevieille 43.78795 4.09756 P PPL FR A9 30 302 30352 1304 100 Europe/Paris 2010-12-25
-2968238 Villeveyrac Villeveyrac Villeveyrac 43.50095 3.60723 P PPL FR A9 34 343 34341 2499 74 Europe/Paris 2012-01-18
-2968242 Villevêque Villeveque Port-du-Loir 47.56095 -0.42383 P PPL FR B5 49 491 49377 2751 33 Europe/Paris 2010-07-15
-2968249 Villevaudé Villevaude Villevaude,Villevaudé 48.91751 2.65228 P PPL FR A8 77 775 77517 1760 118 Europe/Paris 2012-01-18
-2968254 Villeurbanne Villeurbanne Villerban,Villeurbanne,Виллербан 45.76667 4.88333 P PPL FR B9 69 691 69266 131445 173 Europe/Paris 2011-11-02
-2968260 Villette-de-Vienne Villette-de-Vienne Villette,Villette-de-Vienne 45.58908 4.91398 P PPL FR B9 38 383 38558 1263 228 Europe/Paris 2012-01-18
-2968274 Villetelle Villetelle Villetelle 43.73105 4.13658 P PPL FR A9 34 343 34340 1033 25 Europe/Paris 2012-01-18
-2968275 Villetaneuse Villetaneuse 48.95833 2.34167 P PPL FR A8 93 933 93079 12025 40 Europe/Paris 2011-12-08
-2968290 Villes-sur-Auzon Villes-sur-Auzon Villes,Villes-sur-Auzon 44.05669 5.2343 P PPL FR B8 84 843 84148 1100 295 Europe/Paris 2011-07-19
-2968293 Ville-sous-la-Ferté Ville-sous-la-Ferte Ville,Ville-sous-la-Ferte,Ville-sous-la-Ferté 48.1206 4.78957 P PPL FR A4 10 101 10426 1293 202 Europe/Paris 2012-01-18
-2968294 Ville-sous-Anjou Ville-sous-Anjou Ville,Ville-sous-Anjou 45.37194 4.85106 P PPL FR B9 38 383 38556 1106 238 Europe/Paris 2012-01-18
-2968316 Villerupt Villerupt Villerupt 49.46737 5.93285 P PPL FR B2 54 541 54580 9763 337 Europe/Paris 2012-01-18
-2968325 Villers-sur-Mer Villers-sur-Mer Villers,Villers-sur-Mer 49.32264 0.00027 P PPL FR 99 14 143 14754 2622 4 Europe/Paris 2012-01-18
-2968330 Villers-sur-Coudun Villers-sur-Coudun Villers,Villers-sur-Coudun 49.48308 2.80457 P PPL FR B6 60 603 60689 1377 77 Europe/Paris 2012-01-18
-2968335 Villers-sous-Saint-Leu Villers-sous-Saint-Leu Villers,Villers-sous-Saint-Leu,Villers-sur-Oise 49.21235 2.39485 P PPL FR B6 60 604 60686 2020 38 Europe/Paris 2012-01-18
-2968346 Villers-Semeuse Villers-Semeuse Villers,Villers-Semeuse,Villers-devant Mezieres,Villers-devant Mézières 49.74201 4.74697 P PPL FR A4 08 081 08480 3547 167 Europe/Paris 2012-01-18
-2968348 Villers-Saint-Paul Villers-Saint-Paul Villers,Villers-Saint-Paul 49.28884 2.48968 P PPL FR B6 60 604 60684 6216 37 Europe/Paris 2012-01-18
-2968356 Villers-Pol Villers-Pol Villers-Pol 50.2846 3.61449 P PPL FR B4 59 591 59626 1284 90 Europe/Paris 2012-01-18
-2968360 Villers-Outréaux Villers-Outreaux Villers-Outreaux,Villers-Outréaux 50.0359 3.29947 P PPL FR B4 59 592 59624 2261 135 Europe/Paris 2012-01-18
-2968368 Villers-lès-Nancy Villers-les-Nancy Villers,Villers-les-Nancy,Villers-lès-Nancy 48.67103 6.15083 P PPL FR B2 54 543 54578 15899 248 Europe/Paris 2012-01-18
-2968379 Villers-le-Lac Villers-le-Lac Lac-ou-Villers,Le Lac ou Villers,Villers,Villers-le-Lac 47.06319 6.66699 P PPL FR A6 25 253 25321 4423 835 Europe/Paris 2012-01-18
-2968382 Villers-la-Montagne Villers-la-Montagne Villers,Villers-la-Montagne 49.47108 5.82412 P PPL FR B2 54 541 54575 1373 387 Europe/Paris 2012-01-18
-2968392 Villersexel Villersexel Villersexel 47.5507 6.43273 P PPL FR A6 70 701 70561 1601 280 Europe/Paris 2012-01-18
-2968398 Villers-en-Cauchies Villers-en-Cauchies Villers,Villers-en-Cauchies 50.22574 3.40362 P PPL FR B4 59 592 59622 1208 75 Europe/Paris 2012-01-18
-2968401 Villers-Écalles Villers-Ecalles Villers,Villers-Ecalles,Villers-sous-Barentin,Villers-Écalles 49.54136 0.91942 P PPL FR A7 76 763 76743 1817 110 Europe/Paris 2012-01-18
-2968405 Villers-Cotterêts Villers-Cotterets Villers-Cotterets,Villers-Cotterêts 49.25311 3.09003 P PPL FR B6 02 024 02810 10068 132 Europe/Paris 2011-11-02
-2968415 Villers-Bretonneux Villers-Bretonneux Villers-Bretonneux 49.86844 2.51688 P PPL FR B6 80 802 80799 3996 102 Europe/Paris 2012-01-18
-2968418 Villers-Bocage Villers-Bocage Villers,Villers-Bocage 49.9981 2.31683 P PPL FR B6 80 802 80798 1457 129 Europe/Paris 2012-01-18
-2968419 Villers-Bocage Villers-Bocage Villers,Villers-Bocage 49.0796 -0.65412 P PPL FR 99 14 142 14752 3025 158 Europe/Paris 2011-01-20
-2968453 Villereversure Villereversure Villereversure 46.18508 5.38269 P PPL FR B9 01 012 01447 1306 295 Europe/Paris 2012-01-18
-2968456 Villerest Villerest Villeret,Villerêt 46 4.03333 P PPL FR B9 42 422 42332 4397 323 Europe/Paris 2007-11-20
-2968463 Villeréal Villereal Villereal,Villeréal 44.63631 0.74326 P PPL FR 97 47 473 47324 1285 103 Europe/Paris 2012-01-18
-2968475 Villepreux Villepreux Villepreux 48.82815 1.9976 P PPL FR A8 78 783 78674 9895 113 Europe/Paris 2012-01-18
-2968482 Villepinte Villepinte Villepinte 48.96203 2.53253 P PPL FR A8 93 932 93078 37114 57 Europe/Paris 2012-01-18
-2968483 Villepinte Villepinte Villepinte 43.28213 2.0876 P PPL FR A9 11 111 11434 1214 142 Europe/Paris 2012-01-18
-2968496 Villeparisis Villeparisis Vil'parizi,Villeparisis,Вильпаризи 48.94208 2.61463 P PPL FR A8 77 775 77514 23931 64 Europe/Paris 2012-01-18
-2968502 Villenoy Villenoy Villenoy 48.94112 2.8602 P PPL FR A8 77 771 77513 3887 52 Europe/Paris 2012-01-18
-2968504 Villenouvelle Villenouvelle Villenouvelle 43.43581 1.66279 P PPL FR B3 31 313 31589 1050 175 Europe/Paris 2012-01-18
-2968507 Villennes-sur-Seine Villennes-sur-Seine Villennes,Villennes-sur-Seine 48.94137 1.99137 P PPL FR A8 78 783 78672 5070 111 Europe/Paris 2012-01-18
-2968510 Villeneuve-Tolosane Villeneuve-Tolosane Villeneuve,Villeneuve-les Cugnax 43.52316 1.34102 P PPL FR B3 31 313 31588 9258 173 Europe/Paris 2009-10-26
-2968511 Villeneuve-sur-Yonne Villeneuve-sur-Yonne Villeneuve,Villeneuve-sur-Yonne 48.08247 3.29688 P PPL FR A1 89 893 89464 5627 80 Europe/Paris 2012-01-18
-2968515 Villeneuve-sur-Lot Villeneuve-sur-Lot Vil'nev-sjur-Lo,Villeneuve,Villeneuve-sur-Lot,Вильнев-сюр-Ло 44.40854 0.70415 P PPLA3 FR 97 47 473 47323 25869 56 Europe/Paris 2012-01-27
-2968519 Villeneuve-sur-Bellot Villeneuve-sur-Bellot Bellot-la-Montagne,Villeneuve,Villeneuve-sur-Bellot 48.86203 3.34143 P PPL FR A8 77 773 77512 1183 90 Europe/Paris 2012-01-18
-2968528 Villeneuve-Saint-Germain Villeneuve-Saint-Germain Villeneuve-Saint-Germain 49.37976 3.35952 P PPL FR B6 02 024 02805 2331 47 Europe/Paris 2012-01-18
-2968529 Villeneuve-Saint-Georges Villeneuve-Saint-Georges Villeneuve,Villeneuve-Saint-Georges,Villeneuve-la-Montagne 48.73219 2.44925 P PPL FR A8 94 941 94078 30881 35 Europe/Paris 2012-01-18
-2968533 Villeneuve-Loubet Villeneuve-Loubet Villeneuve,Villeneuve-Loubet 43.66663 7.1204 P PPL FR B8 06 061 06161 14354 51 Europe/Paris 2012-01-18
-2968534 Villeneuve-les-Sablons Villeneuve-les-Sablons Villeneuve,Villeneuve-les-Sablons 49.23753 2.07782 P PPL FR B6 60 601 60678 1130 113 Europe/Paris 2012-01-18
-2968536 Villeneuve-lès-Maguelone Villeneuve-les-Maguelone Villeneuve 43.53333 3.86667 P PPL FR A9 34 343 34337 8343 8 Europe/Paris 2011-11-02
-2968542 Villeneuve-lès-Bouloc Villeneuve-les-Bouloc Villeneuve,Villeneuve-les-Bouloc,Villeneuve-lès-Bouloc 43.76768 1.42278 P PPL FR B3 31 313 31587 1083 157 Europe/Paris 2012-01-18
-2968544 Villeneuve-lès-Béziers Villeneuve-les-Beziers Villeneuve,Villeneuve les beziers,Villeneuve-les-Beziers,Villeneuve-lès-Béziers 43.31517 3.28059 P PPL FR A9 34 341 34336 3607 13 Europe/Paris 2012-01-18
-2968545 Villeneuve-lès-Avignon Villeneuve-les-Avignon Villeneuve,Villeneuve-les-Avignon,Villeneuve-lez-Avignon,Villeneuve-lès-Avignon 43.9684 4.7963 P PPL FR A9 30 302 30351 13451 21 Europe/Paris 2012-01-18
-2968546 Villeneuve-le-Roi Villeneuve-le-Roi Villeneuve,Villeneuve-le-Roi,Villeneuve-sur-Seine 48.73684 2.40081 P PPL FR A8 94 941 94077 17575 86 Europe/Paris 2012-01-18
-2968548 Villeneuve-le-Comte Villeneuve-le-Comte Villeneuve,Villeneuve-le-Comte,Villeneuve-le-Peuple,Villeneuve-les-Bordes 48.81413 2.82953 P PPL FR A8 77 773 77508 1764 126 Europe/Paris 2012-01-18
-2968549 Villeneuve-la-Rivière Villeneuve-la-Riviere Vilanova,Villeneuve,Villeneuve-de-la-Riviere,Villeneuve-de-la-Rivière,Villeneuve-la-Riviere,Villeneuve-la-Rivière 42.69366 2.80294 P PPL FR A9 66 662 66228 1154 60 Europe/Paris 2012-01-18
-2968554 Villeneuve-la-Guyard Villeneuve-la-Guyard Villeneuve,Villeneuve-la-Guerre,Villeneuve-la-Guyard 48.34093 3.06176 P PPL FR A1 89 893 89460 2684 78 Europe/Paris 2012-01-18
-2968555 Villeneuve-la-Garenne Villeneuve-la-Garenne Villeneuve,Villeneuve-la-Garenne 48.93935 2.31478 P PPL FR A8 92 922 92078 22036 28 Europe/Paris 2012-01-18
-2968558 Villeneuve-la-Comptal Villeneuve-la-Comptal Villeneuve,Villeneuve-la-Comptal 43.28833 1.91773 P PPL FR A9 11 111 11430 1122 210 Europe/Paris 2012-01-18
-2968566 Villeneuve-de-Rivière Villeneuve-de-Riviere Villeneuve,Villeneuve-de-Riviere,Villeneuve-de-Rivière 43.12829 0.66352 P PPL FR B3 31 312 31585 1552 465 Europe/Paris 2012-01-18
-2968569 Villeneuve-de-Marsan Villeneuve-de-Marsan Villeneuve,Villeneuve-de-Marsan 43.88906 -0.30926 P PPL FR 97 40 402 40331 2301 90 Europe/Paris 2012-01-18
-2968571 Villeneuve-de-la-Raho Villeneuve-de-la-Raho Villeneuve,Villeneuve-de-la-Raho 42.63596 2.91651 P PPL FR A9 66 662 66227 3973 47 Europe/Paris 2012-01-18
-2968574 Villeneuve-de-Berg Villeneuve-de-Berg Villeneuve,Villeneuve-de-Berg 44.55732 4.50265 P PPL FR B9 07 071 07341 2693 324 Europe/Paris 2012-01-18
-2968575 Villeneuve Villeneuve Villeneuve-d'Aveyron 44.43333 2.03333 P PPL FR B3 12 123 12301 2098 382 Europe/Paris 2007-11-20
-2968601 Villeneuve Villeneuve Villeneuve 46.02142 4.83611 P PPL FR B9 01 012 01446 1024 266 Europe/Paris 2012-01-18
-2968614 Villeneuve Villeneuve Villeneuve 43.89431 5.86184 P PPL FR B8 04 044 04242 3309 434 Europe/Paris 2012-01-18
-2968620 Villenave-d'Ornon Villenave-d'Ornon Vilanava,Villenave,Villenave-d'Ornon 44.77327 -0.5442 P PPL FR 97 33 332 33550 30347 8 Europe/Paris 2012-01-18
-2968624 Villenauxe-la-Grande Villenauxe-la-Grande Villenauxe-la-Grande 48.58333 3.55 P PPL FR A4 10 102 10420 2695 74 Europe/Paris 2011-11-02
-2968626 Villemur-sur-Tarn Villemur-sur-Tarn Villemur,Villemur-sur-Tarn 43.86708 1.50281 P PPL FR B3 31 313 31584 5580 101 Europe/Paris 2011-01-09
-2968631 Villemoustaussou Villemoustaussou Villemoustaussou 43.25186 2.36552 P PPL FR A9 11 111 11429 2943 115 Europe/Paris 2012-01-18
-2968653 Villemomble Villemomble Villemomble,Villemonble 48.88333 2.5 P PPL FR A8 93 931 93077 28001 69 Europe/Paris 2012-01-18
-2968654 Villemolaque Villemolaque Vilamulaca,Villemolaque 42.58815 2.8389 P PPL FR A9 66 662 66226 1008 92 Europe/Paris 2012-01-18
-2968655 Villemoisson-sur-Orge Villemoisson-sur-Orge Villemoisson,Villemoisson-sur-Orge 48.66632 2.33657 P PPL FR A8 91 913 91667 7250 42 Europe/Paris 2012-01-18
-2968660 Villemoirieu Villemoirieu Villemoirieu 45.71617 5.22771 P PPL FR B9 38 382 38554 1600 233 Europe/Paris 2012-01-18
-2968662 Villemeux-sur-Eure Villemeux-sur-Eure Villemeux,Villemeux-sur-Eure 48.67259 1.4647 P PPL FR A3 28 283 28415 1586 92 Europe/Paris 2012-01-18
-2968682 Villemandeur Villemandeur Villemandeur 47.98701 2.71802 P PPL FR A3 45 451 45338 6498 93 Europe/Paris 2012-01-18
-2968690 Vilallonga dels Monts Vilallonga dels Monts Vilallonga,Vilallonga dels Monts,Villelongue-dels-Monts 42.52557 2.90434 P PPL FR A9 66 661 66225 1265 120 Europe/Paris 2011-11-02
-2968691 Villelongue-de-la-Salanque Villelongue-de-la-Salanque Villelongue,Villelongue-de-la-Salanque 42.72637 2.9824 P PPL FR A9 66 662 66224 2690 11 Europe/Paris 2012-01-18
-2968701 Villelaure Villelaure Villelaure 43.71319 5.43072 P PPL FR B8 84 841 84147 3132 180 Europe/Paris 2012-01-18
-2968703 Ville-la-Grand Ville-la-Grand 46.203 6.2501 P PPL FR B9 74 743 74305 7033 443 Europe/Paris 2008-04-23
-2968704 Villejust Villejust Villejust 48.68304 2.2361 P PPL FR A8 91 913 91666 1742 157 Europe/Paris 2012-01-18
-2968705 Villejuif Villejuif Villejuif 48.7939 2.35992 P PPL FR A8 94 943 94076 48048 110 Europe/Paris 2012-01-18
-2968726 Villegouge Villegouge Villegouge 44.96667 -0.3 P PPL FR 97 33 335 33548 1173 33 Europe/Paris 2012-01-18
-2968739 Villegailhenc Villegailhenc Villegailhenc 43.26867 2.3547 P PPL FR A9 11 111 11425 1517 130 Europe/Paris 2012-01-18
-2968744 Villefranque Villefranque Milafranga,Tricolor,Villefranque 43.43631 -1.45324 P PPL FR 97 64 641 64558 2104 52 Europe/Paris 2012-01-18
-2968748 Villefranche-sur-Saône Villefranche-sur-Saone Commune-Franche,Vil'fransh-sjur-Son,Ville-Libre-sur-Saone,Ville-Libre-sur-Saône,Villefranche,Villefranche sobre Saona,Villefranche-sur-Saone,Villefranche-sur-Saône,Вильфранш-сюр-Сон 45.98333 4.71667 P PPLA3 FR B9 69 692 69264 32994 198 Europe/Paris 2011-11-02
-2968749 Villefranche-sur-Mer Villefranche-sur-Mer Villefranche,Villefranche-sur-Mer 43.7047 7.30776 P PPL FR B8 06 062 06159 7105 106 Europe/Paris 2012-01-18
-2968755 Villefranche-de-Rouergue Villefranche-de-Rouergue Vil'fransh-de-Ruehrg,Vilafranca de Roergue,Villefranche,Villefranche-de-Rouergue,Вильфранш-де-Руэрг 44.35166 2.03702 P PPLA3 FR B3 12 123 12300 14030 290 307 Europe/Paris 2012-03-27
-2968758 Villefranche-de-Lauragais Villefranche-de-Lauragais Villefranche,Villefranche-de-Lauragais 43.4 1.71694 P PPL FR B3 31 313 31582 3701 182 Europe/Paris 2012-01-18
-2968765 Villefranche-sur-Cher Villefranche-sur-Cher 47.3 1.76667 P PPL FR A3 41 413 41280 2553 99 Europe/Paris 2007-11-20
-2968771 Villefontaine Villefontaine Villefontaine 45.6125 5.14558 P PPL FR B9 38 382 38553 19749 286 Europe/Paris 2012-01-18
-2968781 Villefagnan Villefagnan Villefagnan 46.0114 0.07936 P PPL FR B7 16 163 16409 1077 119 Europe/Paris 2012-01-18
-2968797 Villedômer Villedomer Villedomer,Villedômer 47.54651 0.88775 P PPL FR A3 37 372 37276 1301 87 Europe/Paris 2012-01-18
-2968800 Villedieu-sur-Indre Villedieu-sur-Indre Verite,Villedieu,Villedieu-sur-Indre,Vérité 46.84598 1.53975 P PPL FR A3 36 362 36241 2400 128 Europe/Paris 2012-01-18
-2968801 Villedieu-les-Poêles Villedieu-les-Poeles Villedieu 48.83333 -1.21667 P PPL FR 99 50 504 50639 3927 124 Europe/Paris 2007-11-18
-2968805 Villedieu-la-Blouère Villedieu-la-Blouere Villedieu,Villedieu-la-Blouere,Villedieu-la-Blouère 47.14738 -1.06286 P PPL FR B5 49 492 49375 2236 97 Europe/Paris 2012-01-18
-2968819 Ville-d'Avray Ville-d'Avray Ville-d'Avray 48.82358 2.19311 P PPL FR A8 92 923 92077 11431 115 Europe/Paris 2012-01-18
-2968822 Villecroze Villecroze Villecroze 43.58181 6.27542 P PPL FR B8 83 831 83149 1180 337 Europe/Paris 2012-01-18
-2968823 Villecresnes Villecresnes Villecresnes 48.72002 2.5394 P PPL FR A8 94 941 94075 8978 64 Europe/Paris 2012-01-18
-2968855 Villebret Villebret Villebret 46.26685 2.63827 P PPL FR 98 03 031 03314 1044 421 Europe/Paris 2012-01-18
-2968861 Villebon-sur-Yvette Villebon-sur-Yvette Villebon,Villebon-sur-Yvette 48.70594 2.24019 P PPL FR A8 91 913 91661 9983 65 Europe/Paris 2012-01-18
-2968867 Villebois Villebois Villebois 45.84947 5.43226 P PPL FR B9 01 011 01444 1078 255 Europe/Paris 2012-01-18
-2968869 Villeblevin Villeblevin Vilbleven,Villeblevin,Вилблевен 48.32446 3.08038 P PPL FR A1 89 893 89449 1636 78 Europe/Paris 2012-01-18
-2968873 Villebernier Villebernier Villebernier 47.25374 -0.0323 P PPL FR B5 49 493 49374 1407 30 Europe/Paris 2012-01-18
-2968879 Villebarou Villebarou Commune-Barou,Villebarou 47.62344 1.32252 P PPL FR A3 41 411 41276 2341 116 Europe/Paris 2012-01-18
-2968894 Villé Ville Ville,Villé 48.34266 7.30574 P PPL FR C1 67 675 67507 1685 263 Europe/Paris 2012-01-18
-2968897 Villaz Villaz Villaz 45.95069 6.18717 P PPL FR B9 74 741 74303 2259 680 Europe/Paris 2012-01-18
-2968900 Villaudric Villaudric Villaudric 43.83044 1.43166 P PPL FR B3 31 313 31581 1250 145 Europe/Paris 2011-01-09
-2968917 Villars-les-Dombes Villars-les-Dombes Villars,Villars-les-Dombes 46.00227 5.02905 P PPL FR B9 01 012 01443 4587 280 Europe/Paris 2012-01-18
-2968929 Villar-Saint-Pancrace Villar-Saint-Pancrace Villar,Villard-Saint-Pancrace 44.87318 6.62669 P PPL FR B8 05 051 05183 1528 1236 Europe/Paris 2008-01-18
-2968935 Villars Villars Villars 45.47118 4.35447 P PPL FR B9 42 423 42330 8709 462 Europe/Paris 2012-01-18
-2968951 Villargondran Villargondran Villargondran 45.27113 6.3695 P PPL FR B9 73 733 73320 1030 539 Europe/Paris 2012-01-18
-2968984 Villard-de-Lans Villard-de-Lans Villard,Villard-de-Lans 45.0707 5.55281 P PPL FR B9 38 381 38548 4287 1032 Europe/Paris 2012-01-18
-2968985 Villard-Bonnot Villard-Bonnot Villard,Villard-Bonnot 45.24 5.89015 P PPL FR B9 38 381 38547 7400 232 Europe/Paris 2012-01-18
-2969013 Villandry Villandry 47.34019 0.5105 P PPL FR A3 37 372 37272 1118 47 Europe/Paris 2007-07-02
-2969032 Villaines-la-Juhel Villaines-la-Juhel Villaines,Villaines-la-Juhel 48.34416 -0.27734 P PPL FR B5 53 533 53271 3320 185 Europe/Paris 2012-01-18
-2969046 Village-Neuf Village-Neuf Village-Neuf 47.59016 7.57019 P PPL FR C1 68 684 68349 3267 246 Europe/Paris 2012-01-18
-2969058 Villabé Villabe Villabe,Villabé 48.58949 2.45096 P PPL FR A8 91 912 91659 5090 84 Europe/Paris 2012-01-18
-2969073 Vihiers Vihiers Vihiers 47.14631 -0.53238 P PPL FR B5 49 493 49373 4118 97 Europe/Paris 2012-01-18
-2969074 Vigy Vigy Vigy 49.20356 6.29883 P PPL FR B2 57 574 57716 1317 263 Europe/Paris 2012-01-18
-2969083 Vigny Vigny Vigny 49.07902 1.92806 P PPL FR A8 95 953 95658 1106 79 Europe/Paris 2012-01-18
-2969087 Vignoux-sur-Barangeon Vignoux-sur-Barangeon Vignoux,Vignoux-sur-Barangeon 47.20068 2.17258 P PPL FR A3 18 183 18281 1915 109 Europe/Paris 2012-01-18
-2969092 Vignot Vignot 48.77418 5.60904 P PPL FR B2 55 552 55553 1303 230 Europe/Paris 2009-04-02
-2969105 Vignoc Vignoc Gwinieg,Vignoc 48.24842 -1.78169 P PPL FR A2 35 353 35356 1190 97 Europe/Paris 2012-01-18
-2969109 Vigneux-sur-Seine Vigneux-sur-Seine Vigneux,Vigneux-sur-Seine 48.70291 2.41357 P PPL FR A8 91 912 91657 26692 33 Europe/Paris 2012-01-18
-2969111 Vigneux-de-Bretagne Vigneux-de-Bretagne Gwinieg-Breizh,Vigneux,Vigneux-de-Bretagne 47.32547 -1.73678 P PPL FR B5 44 442 44217 5095 63 Europe/Paris 2012-01-18
-2969113 Vigneulles-lès-Hattonchâtel Vigneulles-les-Hattonchatel Vigneulles,Vigneulles-les-Hattonchatel,Vigneulles-lès-Hattonchâtel 48.98152 5.70464 P PPL FR B2 55 552 55551 1453 259 Europe/Paris 2012-01-18
-2969141 Vignale Vignale Vignale 42.47045 9.32598 P PPLA4 FR A5 2B 2B2 2B350 180 655 Europe/Paris 2011-07-31
-2969146 Vignacourt Vignacourt Vignacourt 50.01236 2.19743 P PPL FR B6 80 802 80793 2223 126 Europe/Paris 2012-01-18
-2969154 Vigeois Vigeois Vigeois 45.38014 1.51635 P PPL FR B1 19 191 19285 1223 315 Europe/Paris 2012-01-18
-2969160 Vif Vif Vif 45.05436 5.67757 P PPL FR B9 38 381 38545 6942 308 Europe/Paris 2012-01-18
-2969176 Vieux-Thann Vieux-Thann Alt-Tann Mulhausen,Alt-Thann,Vieux-Thann 47.80347 7.12068 P PPL FR C1 68 686 68348 3114 328 Europe/Paris 2012-01-18
-2969197 Le Vieux-Marché Le Vieux-Marche Ar C'houerc'had,Le Vieux-Marche,Le Vieux-Marché 48.6 -3.45 P PPL FR A2 22 223 22387 1138 133 Europe/Paris 2009-09-08
-2969213 Vieux-Condé Vieux-Conde Vieux-Conde,Vieux-Condé,Vieux-Nord-Libre 50.45944 3.56738 P PPL FR B4 59 596 59616 10773 24 Europe/Paris 2012-01-18
-2969219 Vieux-Charmont Vieux-Charmont Vieux-Charmont 47.5219 6.83738 P PPL FR A6 25 252 25614 2634 320 Europe/Paris 2012-01-18
-2969233 Vieux-Boucau-les-Bains Vieux-Boucau-les-Bains Vieux-Boucau,Vieux-Boucau-les-Bains 43.78947 -1.39957 P PPL FR 97 40 401 40328 1498 5 Europe/Paris 2012-01-18
-2969234 Vieux-Berquin Vieux-Berquin Vieux-Berquin 50.69489 2.64444 P PPL FR B4 59 594 59615 2255 19 Europe/Paris 2012-01-18
-2969250 Viesly Viesly Viesly 50.15345 3.46236 P PPL FR B4 59 592 59614 1355 116 Europe/Paris 2012-01-18
-2969257 Vierzon Vierzon V'erzon,Vierzon,Vierzon-Ville,Вьерзон 47.21667 2.08333 P PPLA3 FR A3 18 183 18279 29876 101 Europe/Paris 2011-11-02
-2969276 Vienne-en-Val Vienne-en-Val Vienne-en-Val 47.80036 2.1346 P PPL FR A3 45 452 45335 1642 112 Europe/Paris 2012-01-18
-2969284 Vienne Vienne V'enn,Viana,Viena,Viena del Delfinat,Vienne,Vienne-la-Patriote,Vièna,Вьенн 45.51667 4.86667 P PPLA3 FR B9 38 383 38544 32293 155 Europe/Paris 2011-11-02
-2969285 Viennay Viennay Viennay 46.68711 -0.24641 P PPL FR B7 79 793 79347 1067 160 Europe/Paris 2012-01-18
-2969291 Vielmur-sur-Agout Vielmur-sur-Agout 43.61667 2.1 P PPL FR B3 81 812 81315 1112 149 Europe/Paris 2007-11-20
-2969299 Vielle-Saint-Girons Vielle-Saint-Girons Vielle-Saint-Girons 43.95 -1.3 P PPL FR 97 40 401 40326 1087 29 Europe/Paris 2012-01-18
-2969316 Vieillevigne Vieillevigne Henwinieg,Vieillevigne 46.97214 -1.43405 P PPL FR B5 44 442 44216 3529 41 Europe/Paris 2012-01-18
-2969320 Vieille-Toulouse Vieille-Toulouse 43.52366 1.4423 P PPL FR B3 31 313 31575 1020 220 Europe/Paris 2008-04-22
-2969329 Vieille-Église Vieille-Eglise L'Indivisible,Vieille-Eglise,Vieille-Église 50.92823 2.07671 P PPL FR B4 62 625 62852 1162 3 Europe/Paris 2012-01-18
-2969333 Vieille-Brioude Vieille-Brioude Vieille-Brioude 45.26648 3.40272 P PPL FR 98 43 431 43262 1157 465 Europe/Paris 2012-01-18
-2969353 Vidauban Vidauban Vidauban 43.4278 6.4329 P PPL FR B8 83 831 83148 7931 64 Europe/Paris 2012-01-18
-2969364 Vic-sur-Seille Vic-sur-Seille Vic,Vic-sur-Seille 48.78204 6.53081 P PPL FR B2 57 572 57712 1600 208 Europe/Paris 2012-01-18
-2969365 Vic-sur-Cère Vic-sur-Cere Vic,Vic-sur-Cere,Vic-sur-Cère 44.97929 2.62485 P PPL FR 98 15 151 15258 1936 670 Europe/Paris 2012-01-18
-2969366 Vic-sur-Aisne Vic-sur-Aisne Vic,Vic-sur-Aisne 49.40609 3.11222 P PPL FR B6 02 024 02795 1824 46 Europe/Paris 2012-01-18
-2969373 Vicq-sur-Breuilh Vicq-sur-Breuilh Vicq,Vicq-sur-Breuilh 45.64661 1.38179 P PPL FR B1 87 872 87203 1115 350 Europe/Paris 2012-01-18
-2969376 Vicq Vicq Vicq 50.40738 3.60348 P PPL FR B4 59 596 59613 1207 20 Europe/Paris 2012-01-18
-2969388 Vic-le-Comte Vic-le-Comte Vic-le-Comte,Vic-sur-Allier 45.64317 3.24638 P PPL FR 98 63 632 63457 4590 484 Europe/Paris 2012-01-18
-2969389 Vic-la-Gardiole Vic-la-Gardiole Vic,Vic-la-Gardiole 43.4908 3.7975 P PPL FR A9 34 343 34333 2760 12 Europe/Paris 2010-12-24
-2969392 Vichy Vichy Vishi,Виши 46.11667 3.41667 P PPLA3 FR 98 03 033 03310 27019 257 Europe/Paris 2011-11-02
-2969400 Vic-Fezensac Vic-Fezensac Vic-Fezensac,Vic-sur-l'Osse 43.77183 0.31368 P PPL FR B3 32 321 32462 3799 135 Europe/Paris 2012-01-18
-2969401 Vic-en-Bigorre Vic-en-Bigorre Vic,Vic-de Bigorre,Vic-en-Bigorre 43.38333 0.05 P PPL FR B3 65 653 65460 5375 218 Europe/Paris 2011-11-02
-2969411 Vibraye Vibraye Vibraye 48.05607 0.74171 P PPL FR B5 72 722 72373 2707 124 Europe/Paris 2012-01-18
-2969421 Vias Vias Vias 43.31156 3.41774 P PPL FR A9 34 341 34332 4906 9 Europe/Paris 2012-01-18
-2969423 Viarmes Viarmes Viarmes 49.13082 2.37074 P PPL FR A8 95 952 95652 4961 49 Europe/Paris 2012-01-18
-2969427 Vianne Vianne Vianne 44.19658 0.32104 P PPL FR 97 47 474 47318 1280 44 Europe/Paris 2012-01-18
-2969463 Vezins Vezins Chalain,Vezins 47.12015 -0.70971 P PPL FR B5 49 492 49371 1680 146 Europe/Paris 2012-01-18
-2969465 Vezin-le-Coquet Vezin-le-Coquet Gwezin,Vezin,Vezin-le-Coquet 48.11857 -1.75466 P PPL FR A2 35 353 35353 4416 50 Europe/Paris 2012-01-18
-2969474 Vézénobres Vezenobres Vezenobres,Vézénobres 44.0513 4.13775 P PPL FR A9 30 301 30348 1619 153 Europe/Paris 2012-01-18
-2969477 Vézelise Vezelise Vezelise,Vézelise 48.48682 6.08894 P PPL FR B2 54 543 54563 1372 257 Europe/Paris 2012-01-18
-2969502 Veyrier-du-Lac Veyrier-du-Lac Veyrier,Veyrier-du-Lac 45.8799 6.17751 P PPL FR B9 74 741 74299 2305 470 Europe/Paris 2012-01-18
-2969506 Veyre-Monton Veyre-Monton Veyre,Veyre-Monton 45.66866 3.17144 P PPL FR 98 63 632 63455 3608 365 Europe/Paris 2012-01-18
-2969512 Veyras Veyras Veyras 44.73518 4.56254 P PPL FR B9 07 072 07340 1589 438 Europe/Paris 2011-01-14
-2969514 Veyrac Veyrac Veyrac 45.89521 1.105 P PPL FR B1 87 872 87202 1900 307 Europe/Paris 2012-01-18
-2969516 Veynes Veynes Veynes 44.53333 5.81667 P PPL FR B8 05 052 05179 3230 829 Europe/Paris 2012-01-18
-2969532 Veurey-Voroize Veurey-Voroize Veurey,Veurey-Voroize 45.27307 5.61319 P PPL FR B9 38 381 38540 1399 233 Europe/Paris 2012-01-18
-2969543 Vétraz-Monthoux Vetraz-Monthoux 46.1743 6.25852 P PPL FR B9 74 743 74298 5991 495 Europe/Paris 2008-04-04
-2969556 Vestric-et-Candiac Vestric-et-Candiac Vestric,Vestric-et-Candiac 43.74062 4.25914 P PPL FR A9 30 302 30347 1429 19 Europe/Paris 2012-01-18
-2969559 Vesseaux Vesseaux Vesseaux 44.65136 4.44259 P PPL FR B9 07 071 07339 1350 277 Europe/Paris 2012-01-18
-2969562 Vesoul Vesoul Vesoul,vuzu,ヴズー 47.63333 6.16667 P PPLA2 FR A6 70 702 70550 19892 233 Europe/Paris 2011-11-02
-2969578 Vescovato Vescovato Vescovato 42.49278 9.43916 P PPL FR A5 2B 2B3 2B346 2555 175 Europe/Paris 2012-01-18
-2969587 Verzy Verzy Verzy 49.14576 4.16408 P PPL FR A4 51 513 51614 1069 160 Europe/Paris 2012-01-18
-2969590 Verzenay Verzenay Verzenay 49.15918 4.14543 P PPL FR A4 51 513 51613 1102 175 Europe/Paris 2012-01-18
-2969599 Vervins Vervins 49.83333 3.9 P PPLA3 FR B6 02 025 02789 2846 161 Europe/Paris 2010-04-02
-2969607 Vertus Vertus Vertus 48.90609 4.00216 P PPL FR A4 51 511 51612 2619 110 Europe/Paris 2012-01-18
-2969608 Vert-Saint-Denis Vert-Saint-Denis Vert-Saint-Denis 48.56818 2.62008 P PPL FR A8 77 772 77495 8275 80 Europe/Paris 2012-01-18
-2969612 Vertou Vertou Gwerzhav,Vertou 47.16869 -1.46929 P PPL FR B5 44 442 44215 22921 32 Europe/Paris 2012-01-18
-2969613 Verton Verton Verton 50.40234 1.64766 P PPL FR B4 62 624 62849 2185 9 Europe/Paris 2012-01-18
-2969616 Vert-le-Petit Vert-le-Petit Vert-le-Petit 48.55163 2.36526 P PPL FR A8 91 912 91649 2561 68 Europe/Paris 2012-01-18
-2969617 Vert-le-Grand Vert-le-Grand Vert-le-Grand 48.57172 2.35776 P PPL FR A8 91 912 91648 2014 70 Europe/Paris 2012-01-18
-2969622 Vertheuil Vertheuil Vertheuil-en-Medoc,Vertheuil-en-Médoc 45.25 -0.83333 P PPL FR 97 33 334 33545 1156 21 Europe/Paris 2007-11-20
-2969628 Vert-en-Drouais Vert-en-Drouais Vert,Vert-en-Drouais 48.76028 1.2946 P PPL FR A3 28 283 28405 1076 91 Europe/Paris 2012-01-18
-2969646 Vertaizon Vertaizon Vertaizon 45.77136 3.28884 P PPL FR 98 63 632 63453 2399 379 Europe/Paris 2012-01-18
-2969657 Ver-sur-Mer Ver-sur-Mer Ver,Ver-sur-Mer 49.32987 -0.53118 P PPL FR 99 14 141 14739 1382 32 Europe/Paris 2012-01-18
-2969658 Ver-sur-Launette Ver-sur-Launette Ver,Ver-sur-Launette 49.10495 2.68409 P PPL FR B6 60 604 60666 1103 94 Europe/Paris 2012-01-18
-2969664 Versonnex Versonnex Versonnex 45.92753 5.92585 P PPL FR B9 74 741 74297 1992 495 Europe/Paris 2012-01-18
-2969665 Verson Verson Verson 49.15432 -0.45628 P PPL FR 99 14 142 14738 3763 47 Europe/Paris 2011-11-02
-2969679 Versailles Versailles Berceau-de-la-Liberte,Berceau-de-la-Liberté,Bersallies,Versailles,Versaj,Versajlo,Versal',Versalhes,Versalia,Versaliae,Versalis,Versalles,Wersal,beleusayu,vu~erusaiyu,Βερσαλλίες,Версай,Версаль,ורסאי,ヴェルサイユ,베르사유 48.8 2.13333 P PPLA2 FR A8 78 784 78646 85416 141 Europe/Paris 2011-12-08
-2969692 Verrières-le-Buisson Verrieres-le-Buisson Verrieres,Verrieres-le-Buisson,Verrières,Verrières-le-Buisson 48.74565 2.26796 P PPL FR A8 91 913 91645 16789 85 Europe/Paris 2012-01-18
-2969700 Verrières Verrieres Verrieres,Verrières 48.23334 4.14893 P PPL FR A4 10 103 10406 1755 116 Europe/Paris 2012-01-18
-2969722 Verquin Verquin Verquin 50.5024 2.63888 P PPL FR B4 62 622 62848 3185 46 Europe/Paris 2012-01-18
-2969734 Véron Veron Veron,Véron 48.12853 3.30773 P PPL FR A1 89 893 89443 1724 75 Europe/Paris 2012-01-18
-2969736 Verny Verny Verny 49.00728 6.20528 P PPL FR B2 57 574 57708 1846 200 Europe/Paris 2012-01-18
-2969741 Vern-sur-Seiche Vern-sur-Seiche Gwern-ar-Sec'h,Vern,Vern-sur-Seiche 48.04514 -1.60057 P PPL FR A2 35 353 35352 8110 50 Europe/Paris 2012-01-18
-2969746 Vernoux-en-Vivarais Vernoux-en-Vivarais Vernoux,Vernoux-d'Ardeche,Vernoux-d'Ardèche,Vernoux-en-Vivarais 44.89563 4.64643 P PPL FR B9 07 073 07338 1858 582 Europe/Paris 2012-01-18
-2969749 Vernou-la-Celle-sur-Seine Vernou-la-Celle-sur-Seine Vernou 48.38789 2.84718 P PPL FR A8 77 774 77494 2742 76 Europe/Paris 2007-11-13
-2969750 Vernou-sur-Brenne Vernou-sur-Brenne Vernou,Vernou-sur-Brenne 47.41936 0.84758 P PPL FR A3 37 372 37270 2547 53 Europe/Paris 2012-01-18
-2969751 Vernouillet Vernouillet Vernouillet 48.97146 1.98082 P PPL FR A8 78 783 78643 9965 52 Europe/Paris 2012-01-18
-2969752 Vernouillet Vernouillet Vernouillet 48.7209 1.36951 P PPL FR A3 28 283 28404 11783 129 Europe/Paris 2012-01-18
-2969758 Vernosc-lès-Annonay Vernosc-les-Annonay Vernosc,Vernosc-les-Annonay,Vernosc-lès-Annonay 45.21676 4.71252 P PPL FR B9 07 073 07337 1779 391 Europe/Paris 2012-01-18
-2969766 Vernon Vernon Vernon 49.09292 1.46332 P PPL FR A7 27 273 27681 26037 29 Europe/Paris 2012-01-18
-2969776 Vernoil-le-Fourrier Vernoil-le-Fourrier Vernoil 47.38333 0.08333 P PPL FR B5 49 493 49369 1285 79 Europe/Paris 2008-07-02
-2969780 Vernioz Vernioz Vernioz 45.42682 4.88188 P PPL FR B9 38 383 38536 1075 270 Europe/Paris 2012-01-18
-2969781 Verniolle Verniolle Verniolle 43.08162 1.64904 P PPL FR B3 09 092 09332 2140 323 Europe/Paris 2012-01-18
-2969794 Verneuil-sur-Vienne Verneuil-sur-Vienne Verneuil,Verneuil-sur-Vienne 45.85524 1.10133 P PPL FR B1 87 872 87201 3594 241 Europe/Paris 2012-01-18
-2969796 Verneuil-sur-Seine Verneuil-sur-Seine Verneuil 48.97388 1.9648 P PPL FR A8 78 783 78642 16790 60 Europe/Paris 2007-05-14
-2969799 Verneuil-sur-Avre Verneuil-sur-Avre Verneuil,Verneuil-sur-Avre 48.73949 0.92731 P PPL FR A7 27 273 27679 7229 176 Europe/Paris 2012-01-18
-2969806 Verneuil-en-Halatte Verneuil-en-Halatte Verneuil,Verneuil-en-Halatte,Verneuil-sur-Oise 49.27914 2.5241 P PPL FR B6 60 604 60670 4254 38 Europe/Paris 2012-01-18
-2969817 Vernet-les-Bains Vernet-les-Bains Vernet,Vernet-les-Bains 42.54834 2.38717 P PPL FR A9 66 663 66222 1493 657 Europe/Paris 2012-01-18
-2969832 Vernègues Vernegues Vernegues,Vernègues 43.68575 5.17156 P PPL FR B8 13 132 13115 1320 302 Europe/Paris 2011-01-19
-2969850 Vernantes Vernantes Vernantes 47.3932 0.05304 P PPL FR B5 49 493 49368 2002 58 Europe/Paris 2012-01-18
-2969854 Vernaison Vernaison Vernaison 45.64693 4.81249 P PPL FR B9 69 691 69260 4222 170 Europe/Paris 2012-01-18
-2969863 Vermenton Vermenton Vermenton 47.66459 3.73501 P PPL FR A1 89 891 89441 1257 129 Europe/Paris 2012-01-18
-2969864 Vermelles Vermelles Vermelles 50.48949 2.74739 P PPL FR B4 62 622 62846 4568 32 Europe/Paris 2012-01-18
-2969868 Vermand Vermand Vermand 49.8755 3.14959 P PPL FR B6 02 023 02785 1096 89 Europe/Paris 2012-01-18
-2969871 Verlinghem Verlinghem Verlinghem 50.68291 2.99907 P PPL FR B4 59 595 59611 2427 28 Europe/Paris 2012-01-18
-2969885 Vérines Verines Verines,Vérines 46.19372 -0.96683 P PPL FR B7 17 173 17466 1664 35 Europe/Paris 2012-01-18
-2969899 Vergt Vergt Vergt 45.02695 0.7182 P PPL FR 97 24 243 24571 1614 130 Europe/Paris 2012-01-18
-2969905 Vergongheon Vergongheon Vergongheon 45.37058 3.31915 P PPL FR 98 43 431 43258 1774 434 Europe/Paris 2012-01-18
-2969926 Vergigny Vergigny Vergigny 47.97059 3.71861 P PPL FR A1 89 891 89439 1573 99 Europe/Paris 2012-01-18
-2969930 Vergèze Vergeze Vergeze,Vergèze 43.74404 4.22109 P PPL FR A9 30 302 30344 3955 38 Europe/Paris 2012-01-18
-2969944 Verfeil Verfeil Verfeil 43.65781 1.6634 P PPL FR B3 31 313 31573 2819 229 Europe/Paris 2011-01-09
-2969947 Véretz Veretz Veretz,Véretz 47.35706 0.80575 P PPL FR A3 37 372 37267 3227 76 Europe/Paris 2012-01-18
-2969958 Verdun Verdun Verdan,Verden,Verdun-sur-Meuse,vu~erudan,Вердан,Верден,ヴェルダン 49.16667 5.38333 P PPLA3 FR B2 55 553 55545 21798 197 Europe/Paris 2011-11-02
-2969959 Verdun-sur-le-Doubs Verdun-sur-le-Doubs Verdun 46.89692 5.02127 P PPL FR A1 71 712 71566 1208 176 Europe/Paris 2010-07-15
-2969960 Verdun-sur-Garonne Verdun-sur-Garonne Verdun,Verdun-sur-Garonne 43.85446 1.23425 P PPL FR B3 82 822 82190 3269 103 Europe/Paris 2011-01-09
-2970016 Vercel-Villedieu-le-Camp Vercel-Villedieu-le-Camp Campdu Vercel,Vercel,Vercel-Villedieu-le-Camp 47.18318 6.40082 P PPL FR A6 25 253 25601 1321 658 Europe/Paris 2012-01-18
-2970018 Verberie Verberie Verberie 49.31115 2.7321 P PPL FR B6 60 604 60667 3417 39 Europe/Paris 2012-01-18
-2970033 Ventiseri Ventiseri Ventiseri 41.94169 9.33172 P PPL FR A5 2B 2B3 2B342 2652 537 Europe/Paris 2012-01-18
-2970054 Ventabren Ventabren Ventabren 43.53847 5.29541 P PPL FR B8 13 131 13114 4800 201 Europe/Paris 2011-01-19
-2970061 Venoy Venoy Venoy 47.80518 3.63695 P PPL FR A1 89 891 89438 1923 219 Europe/Paris 2012-01-18
-2970068 Vennecy Vennecy Vennecy 47.95465 2.0546 P PPL FR A3 45 452 45333 1377 113 Europe/Paris 2012-01-18
-2970071 Venizel Venizel Venizel 49.36583 3.39321 P PPL FR B6 02 024 02780 1470 48 Europe/Paris 2012-01-18
-2970072 Vénissieux Venissieux Venis'e,Venissieux,Vénissieux,Венисье 45.70254 4.87147 P PPL FR B9 69 691 69259 57584 202 Europe/Paris 2012-01-18
-2970080 Veneux-les-Sablons Veneux-les-Sablons Veneux 48.37872 2.79499 P PPL FR A8 77 774 77491 5091 78 Europe/Paris 2007-10-21
-2970081 Venette Venette Venette 49.41705 2.80317 P PPL FR B6 60 603 60665 2883 32 Europe/Paris 2012-01-18
-2970086 Venerque Venerque Venerque 43.43457 1.44588 P PPL FR B3 31 311 31572 2633 191 Europe/Paris 2012-01-18
-2970092 Venelles Venelles Venelles 43.59839 5.4853 P PPL FR B8 13 131 13113 7917 359 Europe/Paris 2012-01-18
-2970095 Vénéjan Venejan Venejan,Vénéjan 44.19729 4.65422 P PPL FR A9 30 302 30342 1145 79 Europe/Paris 2012-01-18
-2970104 Vendres Vendres Vendres 43.26977 3.22341 P PPL FR A9 34 341 34329 1744 14 Europe/Paris 2012-01-18
-2970105 Vendrennes Vendrennes Vendrennes 46.82523 -1.12357 P PPL FR B5 85 852 85301 1160 86 Europe/Paris 2012-01-18
-2970110 Vendôme Vendome Vendome,Vendome-Regenere,Vendôme,Vendôme-Regénéré 47.8 1.06667 P PPLA3 FR A3 41 412 41269 19226 80 Europe/Paris 2012-02-18
-2970112 Vendœuvres Vendoeuvres 46.8 1.35 P PPL FR A3 36 362 36232 1018 118 Europe/Paris 2007-11-20
-2970113 Vendin-le-Vieil Vendin-le-Vieil Vendin,Vendin Le Veil,Vendin-le-Vieil 50.47385 2.86674 P PPL FR B4 62 627 62842 6713 29 Europe/Paris 2012-01-18
-2970114 Vendin-lès-Béthune Vendin-les-Bethune Vendin,Vendin-les-Bethune,Vendin-lès-Béthune 50.54012 2.60043 P PPL FR B4 62 622 62841 2575 32 Europe/Paris 2012-01-18
-2970118 Vendeville Vendeville Vendeville 50.57693 3.0787 P PPL FR B4 59 595 59609 1466 43 Europe/Paris 2012-01-18
-2970119 Vendeuvre-sur-Barse Vendeuvre-sur-Barse Vendeuvre,Vendeuvre-sur-Barse 48.23786 4.46905 P PPL FR A4 10 101 10401 2703 157 Europe/Paris 2012-01-18
-2970120 Vendeuvre-du-Poitou Vendeuvre-du-Poitou Vendeuvre,Vendeuvre-du-Poitou 46.73579 0.30996 P PPL FR B7 86 863 86281 2577 103 Europe/Paris 2012-01-18
-2970128 Vendenheim Vendenheim Vendenheim 48.66948 7.70983 P PPL FR C1 67 676 67506 5757 150 Europe/Paris 2011-02-14
-2970137 Vendegies-sur-Écaillon Vendegies-sur-Ecaillon Vendegies,Vendegies-sur-Ecaillon,Vendegies-sur-Écaillon 50.26224 3.51256 P PPL FR B4 59 592 59608 1062 61 Europe/Paris 2012-01-18
-2970143 Vendat Vendat Vendat 46.16015 3.35451 P PPL FR 98 03 033 03304 2121 327 Europe/Paris 2012-01-18
-2970144 Vendargues Vendargues Vendargues 43.65833 3.97 P PPL FR A9 34 343 34327 5847 44 Europe/Paris 2011-11-02
-2970148 Vence Vence Vence 43.72162 7.11232 P PPL FR B8 06 061 06157 18668 323 Europe/Paris 2012-01-18
-2970151 Venasque Venasque Venasque 43.99214 5.14895 P PPL FR B8 84 843 84143 1033 305 Europe/Paris 2012-01-18
-2970154 Venarey-les-Laumes Venarey-les-Laumes Venarey,Venarey-les-Laumes 47.54202 4.46022 P PPL FR A1 21 213 21663 3447 235 Europe/Paris 2012-01-18
-2970157 Venansault Venansault Venansault 46.68516 -1.51415 P PPL FR B5 85 852 85300 3955 53 Europe/Paris 2012-01-18
-2970163 Vémars Vemars Vemars,Vémars 49.06942 2.56643 P PPL FR A8 95 952 95641 2177 111 Europe/Paris 2012-01-18
-2970187 Velleron Velleron Velleron 43.95759 5.02879 P PPL FR B8 84 843 84142 3028 65 Europe/Paris 2012-01-18
-2970203 Vélizy-Villacoublay Velizy-Villacoublay Velizy,Velizy-Villacoublay,Villacoublay,Vélizy,Vélizy-Villacoublay 48.78198 2.19395 P PPL FR A8 78 784 78640 21741 180 Europe/Paris 2012-01-18
-2970205 Vélines Velines Velines,Vélines 44.85 0.11667 P PPL FR 97 24 241 24568 1166 26 Europe/Paris 2012-01-18
-2970216 Velaux Velaux Velaux 43.52839 5.25661 P PPL FR B8 13 131 13112 7963 81 Europe/Paris 2011-01-19
-2970217 Velars-sur-Ouche Velars-sur-Ouche Velars,Velars-sur-Ouche 47.3196 4.90594 P PPL FR A1 21 212 21661 1583 273 Europe/Paris 2012-01-18
-2970224 Velaines Velaines Velaines 48.6988 5.30483 P PPL FR B2 55 551 55543 1009 216 Europe/Paris 2012-01-18
-2970225 Velaine-en-Haye Velaine-en-Haye Velaine,Velaine-en-Haye 48.70383 6.02122 P PPL FR B2 54 544 54557 1494 265 Europe/Paris 2012-01-18
-2970236 Veigy-Foncenex Veigy-Foncenex Veigy,Veigy-Foncenex 46.27044 6.25419 P PPL FR B9 74 744 74293 3002 426 Europe/Paris 2012-01-18
-2970237 Veigné Veigne Veigne,Veigné 47.28556 0.74079 P PPL FR A3 37 372 37266 5771 73 Europe/Paris 2012-01-18
-2970253 Vedène Vedene Vedene,Vedenes,Vedène,Vedènes 43.97744 4.90428 P PPL FR B8 84 842 84141 9538 36 Europe/Paris 2011-11-02
-2970256 Vecoux Vecoux Vecoux 47.97797 6.63651 P PPL FR B2 88 881 88498 1132 407 Europe/Paris 2012-01-18
-2970275 Veauche Veauche Veauche 45.56294 4.29031 P PPL FR B9 42 421 42323 8189 388 Europe/Paris 2012-01-18
-2970287 Vayres Vayres Vayres 44.9 -0.31667 P PPL FR 97 33 335 33539 2934 15 Europe/Paris 2012-01-18
-2970288 Vayrac Vayrac Vayrac 44.95337 1.70358 P PPL FR B3 46 463 46330 1269 141 Europe/Paris 2012-01-18
-2970293 Vay Vay Gwez,Vay 47.55466 -1.70095 P PPL FR B5 44 441 44214 1333 63 Europe/Paris 2012-01-18
-2970313 Vaux-sur-Seine Vaux-sur-Seine Vaux,Vaux-sur-Seine 49.01271 1.96942 P PPL FR A8 78 781 78638 4600 117 Europe/Paris 2012-01-18
-2970317 Vaux-sur-Mer Vaux-sur-Mer Vaux,Vaux-sur-Mer 45.64606 -1.05841 P PPL FR B7 17 172 17461 3738 15 Europe/Paris 2012-01-18
-2970338 Vaux-le-Pénil Vaux-le-Penil Vaux,Vaux-le-Penil,Vaux-le-Pénil 48.52803 2.69165 P PPL FR A8 77 772 77487 11758 69 Europe/Paris 2012-01-18
-2970351 Vaux-en-Bugey Vaux-en-Bugey Vaux,Vaux-en-Bugey 45.92711 5.35336 P PPL FR B9 01 011 01431 1105 277 Europe/Paris 2012-01-18
-2970407 Vauvert Vauvert Vauvert 43.69529 4.27705 P PPL FR A9 30 302 30341 10798 33 Europe/Paris 2012-01-18
-2970432 Vauréal Vaureal Lieux,Vaureal,Vauréal 49.03333 2.03333 P PPL FR A8 95 953 95637 20699 41 Europe/Paris 2012-01-18
-2970448 Vaumoise Vaumoise 49.23525 2.98077 P PPL FR B6 60 604 60661 1008 106 Europe/Paris 2007-02-13
-2970453 Vaulx-Vraucourt Vaulx-Vraucourt Vaulx,Vaulx-Vraucourt 50.1491 2.9083 P PPL FR B4 62 621 62839 1133 91 Europe/Paris 2012-01-18
-2970455 Vaulx-Milieu Vaulx-Milieu Vaulx-Milieu 45.61226 5.181 P PPL FR B9 38 382 38530 2401 230 Europe/Paris 2012-01-18
-2970456 Vaulx-en-Velin Vaulx-en-Velin Vaulx,Vaulx-en-Velin 45.7818 4.92085 P PPL FR B9 69 691 69256 37489 176 Europe/Paris 2012-01-18
-2970462 Vaulnaveys-le-Haut Vaulnaveys-le-Haut Vaulnaveys,Vaulnaveys-le-Haut 45.11696 5.81257 P PPL FR B9 38 381 38529 3328 353 Europe/Paris 2012-01-18
-2970463 Vaulnaveys-le-Bas Vaulnaveys-le-Bas Vaulnaveys,Vaulnaveys-le-Bas 45.1002 5.82532 P PPL FR B9 38 381 38528 1258 904 Europe/Paris 2012-01-18
-2970469 Vaujours Vaujours Vaujours 48.93022 2.5711 P PPL FR A8 93 932 93074 5922 86 Europe/Paris 2012-01-18
-2970472 Vauhallan Vauhallan Vauhallan 48.73354 2.20277 P PPL FR A8 91 913 91635 2175 103 Europe/Paris 2012-01-18
-2970474 Vaugrigneuse Vaugrigneuse Vaugrigneuse 48.60264 2.12218 P PPL FR A8 91 913 91634 1141 82 Europe/Paris 2012-01-18
-2970477 Vaugneray Vaugneray Vaugneray 45.73717 4.65873 P PPL FR B9 69 691 69255 4443 410 Europe/Paris 2012-01-18
-2970495 Vaudry Vaudry Vaudry 48.8413 -0.85309 P PPL FR 99 14 144 14730 1559 226 Europe/Paris 2012-01-18
-2970534 Vaudelnay Vaudelnay Vaudelenay,Vaudelnay 47.13812 -0.20677 P PPL FR B5 49 493 49364 1117 54 Europe/Paris 2012-01-18
-2970540 Vaucresson Vaucresson Vaucresson 48.84078 2.15652 P PPL FR A8 92 923 92076 8693 160 Europe/Paris 2012-01-18
-2970546 Vaucouleurs Vaucouleurs Vaucouleurs 48.60313 5.66659 P PPL FR B2 55 552 55533 2311 249 Europe/Paris 2012-01-18
-2970564 Vauchrétien Vauchretien Vauchretien,Vauchrétien 47.33234 -0.47678 P PPL FR B5 49 491 49363 1534 69 Europe/Paris 2012-01-18
-2970606 Vatan Vatan Vatan,Watan 47.07447 1.8101 P PPL FR A3 36 364 36230 1970 129 Europe/Paris 2012-01-18
-2970610 Vassy Vassy Vassy 48.85381 -0.67485 P PPL FR 99 14 144 14726 1734 150 Europe/Paris 2012-01-18
-2970627 Vasselay Vasselay Vasselay 47.15686 2.38963 P PPL FR A3 18 181 18271 1124 171 Europe/Paris 2012-01-18
-2970634 Vasles Vasles Vasles 46.57618 -0.02638 P PPL FR B7 79 793 79339 1615 158 Europe/Paris 2012-01-18
-2970637 Varzy Varzy Varzy 47.3581 3.38619 P PPL FR A1 58 582 58304 1473 222 Europe/Paris 2012-01-18
-2970648 Vars Vars Vars 45.76256 0.12478 P PPL FR B7 16 161 16393 1634 52 Europe/Paris 2012-01-18
-2970650 Varreddes Varreddes Varreddes 49.00305 2.92788 P PPL FR A8 77 771 77483 1991 51 Europe/Paris 2012-01-18
-2970651 Varrains Varrains Varrains 47.22305 -0.06033 P PPL FR B5 49 493 49362 1220 38 Europe/Paris 2012-01-18
-2970653 Varois-et-Chaignot Varois-et-Chaignot Varois,Varois-et-Chaignot 47.35058 5.12838 P PPL FR A1 21 212 21657 2036 229 Europe/Paris 2012-01-18
-2970669 Varilhes Varilhes Varilhes 43.04514 1.62805 P PPL FR B3 09 092 09324 2892 339 Europe/Paris 2012-01-18
-2970673 Varetz Varetz Varets,Varetz 45.1939 1.45121 P PPL FR B1 19 191 19278 1975 103 Europe/Paris 2012-01-18
-2970679 Varennes-sur-Seine Varennes-sur-Seine Varennes,Varennes-sur-Seine 48.37304 2.92571 P PPL FR A8 77 773 77482 3494 52 Europe/Paris 2012-01-18
-2970681 Varennes-sur-Loire Varennes-sur-Loire Varennes,Varennes-sur-Loire 47.23767 0.0535 P PPL FR B5 49 493 49361 1954 30 Europe/Paris 2012-01-18
-2970685 Varennes-sur-Allier Varennes-sur-Allier Varennes,Varennes-sur-Allier 46.31472 3.39846 P PPL FR 98 03 033 03298 4314 244 Europe/Paris 2012-01-18
-2970687 Varennes-Saint-Sauveur Varennes-Saint-Sauveur Varenne-Saint-Sauveur,Varennes,Varennes-Saint-Sauveur,Varennes-sur-Sevron 46.48226 5.24349 P PPL FR A1 71 714 71558 1005 216 Europe/Paris 2012-01-18
-2970692 Varennes-le-Grand Varennes-le-Grand Varennes,Varennes-le-Grand 46.71868 4.86872 P PPL FR A1 71 712 71555 2065 190 Europe/Paris 2012-01-18
-2970693 Varennes-Jarcy Varennes-Jarcy Varennes-Jarcy 48.67914 2.56152 P PPL FR A8 91 912 91631 2019 57 Europe/Paris 2012-01-18
-2970725 Varengeville-sur-Mer Varengeville-sur-Mer Varengeville,Varengeville-sur-Mer 49.90475 0.9948 P PPL FR A7 76 761 76720 1224 94 Europe/Paris 2012-01-18
-2970739 Varangéville Varangeville Varangeville,Varangéville 48.63605 6.32112 P PPL FR B2 54 543 54549 4320 221 Europe/Paris 2012-01-18
-2970747 Varades Varades Gwared,Varades 47.38458 -1.02842 P PPL FR B5 44 444 44213 3452 29 Europe/Paris 2012-01-18
-2970761 Vanves Vanves Vanves 48.82345 2.29025 P PPL FR A8 92 921 92075 26068 64 Europe/Paris 2012-01-18
-2970777 Vannes Vannes Gwened,Vann,Vannes,Venetens,vu~an'nu,Ванн,ヴァンヌ 47.66667 -2.75 P PPLA2 FR A2 56 563 56260 54020 23 Europe/Paris 2011-11-02
-2970797 Vandœuvre-lès-Nancy Vandoeuvre-les-Nancy Vandoeuvre 48.65 6.18333 P PPL FR B2 54 543 54547 31785 239 Europe/Paris 2011-11-02
-2970826 Vals-près-le-Puy Vals-pres-le-Puy Vals,Vals-pres-le-Puy,Vals-près-le-Puy 45.03155 3.87787 P PPL FR 98 43 432 43251 3758 646 Europe/Paris 2010-11-19
-2970828 Vals-les-Bains Vals-les-Bains Vals,Vals-les-Bains 44.66387 4.36861 P PPL FR B9 07 071 07331 3777 271 Europe/Paris 2012-01-18
-2970837 Valros Valros Valros 43.41956 3.36506 P PPL FR A9 34 341 34325 1276 59 Europe/Paris 2012-01-18
-2970838 Valréas Valreas Valreas,Valréas 44.38366 4.99084 P PPL FR B8 84 842 84138 10211 246 Europe/Paris 2012-01-18
-2970839 Valras-Plage Valras-Plage Valras,Valras-Plage 43.24808 3.29032 P PPL FR A9 34 341 34324 4078 3 Europe/Paris 2011-01-11
-2970860 Valognes Valognes Valognes 49.50881 -1.47047 P PPL FR 99 50 502 50615 7873 33 Europe/Paris 2012-01-18
-2970865 Valmont Valmont Valmont 49.08383 6.69942 P PPL FR B2 57 573 57690 3312 272 Europe/Paris 2012-01-18
-2970866 Valmondois Valmondois Valmondois 49.0973 2.18996 P PPL FR A8 95 953 95628 1289 31 Europe/Paris 2012-01-18
-2970889 Vallon-en-Sully Vallon-en-Sully Vallon,Vallon-en-Sully 46.53676 2.60828 P PPL FR 98 03 031 03297 1754 183 Europe/Paris 2012-01-18
-2970899 Valloire Valloire Valloire 45.16565 6.42994 P PPL FR B9 73 733 73306 1346 1404 Europe/Paris 2012-01-18
-2970901 Valliquerville Valliquerville Valliquerville 49.61385 0.68703 P PPL FR A7 76 763 76718 1208 131 Europe/Paris 2012-01-18
-2970911 Vallières Vallieres Vallieres,Vallières 45.90262 5.93811 P PPL FR B9 74 741 74289 1378 359 Europe/Paris 2012-01-18
-2970923 Vallet Vallet Gwaled,Vallet 47.16227 -1.26607 P PPL FR B5 44 442 44212 7483 56 Europe/Paris 2012-01-18
-2970932 Valleroy Valleroy Valleroy 49.20905 5.9383 P PPL FR B2 54 541 54542 2360 205 Europe/Paris 2012-01-18
-2970941 Valleraugue Valleraugue Valleraugue 44.0813 3.64154 P PPL FR A9 30 303 30339 1092 374 Europe/Paris 2012-01-18
-2970948 Valleiry Valleiry Valleiry 46.11117 5.97267 P PPL FR B9 74 743 74288 2421 469 Europe/Paris 2012-01-18
-2970962 Vallauris Vallauris Vallauris 43.57803 7.05451 P PPL FR B8 06 061 06155 27286 115 Europe/Paris 2011-11-02
-2970978 Vallabrègues Vallabregues Vallabregues,Vallabrègues 43.85307 4.62662 P PPL FR A9 30 302 30336 1304 17 Europe/Paris 2011-01-19
-2971000 Valframbert Valframbert Valframbert 48.46465 0.10828 P PPL FR 99 61 611 61497 1551 146 Europe/Paris 2012-01-18
-2971006 Valfin-lès-Saint-Claude Valfin-les-Saint-Claude Condat-Montagne,Valfin,Valfin-les-Saint-Claude,Valfin-lès-Saint-Claude 46.43758 5.85513 P PPL FR A6 39 393 39478 12966 683 Europe/Paris 2012-02-27
-2971007 Valff Valff Valff 48.42045 7.51954 P PPL FR C1 67 675 67504 1354 160 Europe/Paris 2012-01-18
-2971025 Valergues Valergues Valergues 43.66824 4.06124 P PPL FR A9 34 343 34321 1941 21 Europe/Paris 2012-01-18
-2971027 Valenton Valenton Valenton 48.74527 2.46467 P PPL FR A8 94 941 94074 11969 52 Europe/Paris 2012-01-18
-2971030 Valentigney Valentigney Valentigney 47.46388 6.83168 P PPL FR A6 25 252 25580 12608 327 Europe/Paris 2012-01-18
-2971033 Valensole Valensole Valensole,Valesole 43.83799 5.98323 P PPL FR B8 04 043 04230 2479 582 Europe/Paris 2012-01-18
-2971039 Valencin Valencin Valencin 45.61285 5.01565 P PPL FR B9 38 383 38519 2234 353 Europe/Paris 2012-01-18
-2971041 Valenciennes Valenciennes Valans'en,Valansien,Valenciennes,wa lang xie ne,Валансиен,Валансьен,ואלנסיין,瓦朗謝訥 50.35 3.53333 P PPLA3 FR B4 59 596 59606 44821 30 Europe/Paris 2011-11-02
-2971043 Valence-sur-Baïse Valence-sur-Baise Valence,Valence-sur-Baise,Valence-sur-Baïse 43.8827 0.38111 P PPL FR B3 32 322 32459 1196 119 Europe/Paris 2012-01-18
-2971053 Valence Valence Valenca,Valence,Valencia,Valença,valansa,vu~aransu,वलांस,ヴァランス 44.93333 4.9 P PPLA2 FR B9 26 263 26362 63864 128 Europe/Paris 2011-11-02
-2971054 Valence Valence Valence,Valence-d'Agen 44.10823 0.89101 P PPL FR B3 82 821 82186 5039 71 Europe/Paris 2011-11-02
-2971056 Valençay Valencay Valencay,Valençay 47.16207 1.56852 P PPL FR A3 36 362 36228 2897 118 Europe/Paris 2012-01-18
-2971072 Valdoie Valdoie Valdoie 47.66799 6.84446 P PPL FR A6 90 901 90099 5063 373 Europe/Paris 2012-01-18
-2971074 Val-d'Isère Val-d'Isere Laval,Val d Isere,Val d'Isere,Val d'Isère,Val'd'Izer,Val-d'Isere,Val-d'Isère,Валь д'Изер 45.44972 6.9781 P PPL FR B9 73 731 73304 1632 1849 1832 Europe/Paris 2012-01-18
-2971117 Valbonne Valbonne 43.63292 6.99911 P PPL FR B8 06 061 06152 12633 232 Europe/Paris 2006-05-11
-2971137 Valady Valady Valady 44.45633 2.42746 P PPL FR B3 12 122 12288 1361 327 Europe/Paris 2011-01-13
-2971147 Vaivre-et-Montoille Vaivre-et-Montoille Vaivre,Vaivre-et-Montoille 47.63021 6.10362 P PPL FR A6 70 702 70513 2423 227 Europe/Paris 2012-01-18
-2971154 Vaison-la-Romaine Vaison-la-Romaine Vaison,Vaison-la-Romaine,vu~ezon=ra=romenu,ヴェゾン=ラ=ロメーヌ 44.23896 5.07461 P PPL FR B8 84 843 84137 6207 212 Europe/Paris 2007-07-16
-2971157 Vaires-sur-Marne Vaires-sur-Marne Vaires,Vaires-sur-Marne 48.87649 2.63982 P PPL FR A8 77 775 77479 12547 48 Europe/Paris 2012-01-18
-2971162 Vairé Vaire Vaire,Vairé,Varie,Varié 46.60104 -1.75538 P PPL FR B5 85 853 85298 1071 54 Europe/Paris 2012-01-18
-2971169 Vailly-sur-Aisne Vailly-sur-Aisne Vailly,Vailly-sur-Aisne 49.40834 3.51631 P PPL FR B6 02 024 02758 2133 50 Europe/Paris 2012-01-18
-2971176 Vailhauquès Vailhauques Vailhauques,Vailhauquès 43.67159 3.72042 P PPL FR A9 34 343 34320 2130 130 Europe/Paris 2012-01-18
-2971179 Vaiges Vaiges Vaiges 48.04025 -0.47513 P PPL FR B5 53 532 53267 1119 99 Europe/Paris 2012-01-18
-2971186 Vagney Vagney Vagney 48.00629 6.7174 P PPL FR B2 88 881 88486 3860 406 Europe/Paris 2012-01-18
-2971202 Vacquiers Vacquiers Vacquiers 43.77667 1.48127 P PPL FR B3 31 313 31563 1161 187 Europe/Paris 2011-01-09
-2971205 Vacqueyras Vacqueyras Vacquevras,Vacqueyras 44.13735 4.98281 P PPL FR B8 84 843 84136 1135 119 Europe/Paris 2012-01-18
-2971211 Vacon Vacon Vacon 48.66865 5.60024 P PPL FR B2 55 552 55573 1594 252 Europe/Paris 2012-02-27
-2971251 Vaas Vaas Vaas 47.6689 0.31677 P PPL FR B5 72 721 72364 1725 47 Europe/Paris 2012-01-18
-2971258 Uzès Uzes Firmin-les-Uzes,Firmin-les-Uzés,Uses,Usès,Uzes,Uzes-la-Montagne,Uzès,Uzès-la-Montagne 44.01362 4.41529 P PPL FR A9 30 302 30334 7841 135 Europe/Paris 2012-01-18
-2971259 Uzerche Uzerche Faubourg-Egalite,Faubourg-Egalité,Uzerche 45.4212 1.56395 P PPL FR B1 19 192 19276 3143 339 Europe/Paris 2012-01-18
-2971262 Uzemain Uzemain Uzemain 48.08572 6.34443 P PPL FR B2 88 881 88484 1055 332 Europe/Paris 2012-01-18
-2971265 Uzein Uzein Uzein 43.4 -0.43333 P PPL FR 97 64 643 64549 1189 173 Europe/Paris 2011-09-11
-2971272 Uxem Uxem Uxem 51.0217 2.48376 P PPL FR B4 59 594 59605 1114 0 Europe/Paris 2012-01-18
-2971274 Uxegney Uxegney Uxegney,Uxegny 48.19652 6.36971 P PPL FR B2 88 881 88483 1948 338 Europe/Paris 2012-01-18
-2971286 Ustaritz Ustaritz Marat-sur-Nive,Ustaritz,Uztaritze 43.3965 -1.45604 P PPL FR 97 64 641 64547 5662 19 Europe/Paris 2012-01-18
-2971290 Usson-en-Forez Usson-en-Forez Usson,Usson-en-Forez 45.38797 3.93772 P PPL FR B9 42 421 42318 1262 899 Europe/Paris 2012-01-18
-2971291 Usson-du-Poitou Usson-du-Poitou Usson,Usson-du-Poitou 46.27782 0.52816 P PPL FR B7 86 862 86276 1456 134 Europe/Paris 2012-01-18
-2971298 Ussel Ussel 45.55 2.31667 P PPLA3 FR B1 19 193 19275 11384 615 Europe/Paris 2011-11-02
-2971305 Ussac Ussac 45.19389 1.51337 P PPL FR B1 19 191 19274 3365 207 Europe/Paris 2008-05-19
-2971316 Us Us Us 49.1 1.96667 P PPL FR A8 95 953 95625 1248 70 Europe/Paris 2012-01-18
-2971317 Urzy Urzy Urzy 47.04877 3.20294 P PPL FR A1 58 583 58300 1861 190 Europe/Paris 2012-01-18
-2971321 Urville-Nacqueville Urville-Nacqueville Urville,Urville-Hague,Urville-Nacqueville 49.67444 -1.73664 P PPL FR 99 50 502 50611 2307 10 Europe/Paris 2012-01-18
-2971333 Urt Urt Ahurti,Liberte,Liberté,Urt 43.49009 -1.29744 P PPL FR 97 64 641 64546 1858 43 Europe/Paris 2012-01-18
-2971336 Urrugne Urrugne Urrugne,Urruna,Urruña 43.36361 -1.69921 P PPL FR 97 64 641 64545 7580 26 Europe/Paris 2012-01-18
-2971340 Urmatt Urmatt 48.52752 7.32565 P PPL FR C1 67 673 67500 1436 244 Europe/Paris 2007-07-05
-2971344 Uriménil Urimenil Urimenil,Uriménil 48.1008 6.40046 P PPL FR B2 88 881 88481 1427 363 Europe/Paris 2012-01-18
-2971357 Urcuit Urcuit Le Laurier,Urcuit,Urketa 43.48594 -1.33668 P PPL FR 97 64 641 64540 1936 28 Europe/Paris 2012-01-18
-2971372 Upie Upie Upie 44.80359 4.97778 P PPL FR B9 26 263 26358 1239 205 Europe/Paris 2012-01-18
-2971375 Unverre Unverre Unverre 48.19829 1.09207 P PPL FR A3 28 282 28398 1019 164 Europe/Paris 2012-01-18
-2971377 Unieux Unieux Unieux,Unieux-Firminy 45.4004 4.27812 P PPL FR B9 42 423 42316 8456 513 Europe/Paris 2012-01-18
-2971380 Ungersheim Ungersheim 47.87848 7.30797 P PPL FR C1 68 683 68343 1705 215 Europe/Paris 2007-07-07
-2971386 Ully-Saint-Georges Ully-Saint-Georges Ully,Ully-Saint-Georges 49.27914 2.28094 P PPL FR B6 60 604 60651 1894 70 Europe/Paris 2012-01-18
-2971399 Ugine Ugine Ugine,Ugines 45.75084 6.41611 P PPL FR B9 73 731 73303 7703 428 Europe/Paris 2012-01-18
-2971401 Uffholtz Uffholtz 47.82082 7.17785 P PPL FR C1 68 686 68342 1452 313 Europe/Paris 2007-07-07
-2971407 Uckange Uckange Uckange 49.30304 6.1492 P PPL FR B2 57 578 57683 7385 157 Europe/Paris 2012-01-18
-2971411 Uchaux Uchaux Uchaux 44.21667 4.8 P PPL FR B8 84 842 84135 1576 118 Europe/Paris 2012-01-18
-2971412 Uchaud Uchaud Uchaud 43.75857 4.26843 P PPL FR A9 30 302 30333 3559 30 Europe/Paris 2012-01-18
-2971418 Uberach Uberach Uberach,Ueberach 48.84919 7.62938 P PPL FR C1 67 672 67496 1159 164 Europe/Paris 2012-01-18
-2971446 Turretot Turretot Turretot 49.60923 0.23422 P PPL FR A7 76 762 76716 1353 98 Europe/Paris 2012-01-18
-2971469 Turckheim Turckheim Turckheim 48.08748 7.27707 P PPL FR C1 68 682 68338 3790 240 Europe/Paris 2007-07-03
-2971480 Tullins Tullins Tullins 45.29861 5.48608 P PPL FR B9 38 381 38517 7689 216 Europe/Paris 2012-01-18
-2971482 Tulle Tulle Tjul',Tula,Tulle,Tyll,churu,Тюль,チュール 45.26667 1.76667 P PPLA2 FR B1 19 192 19272 16969 265 Europe/Paris 2011-11-02
-2971483 Tulette Tulette Tulette 44.28527 4.9296 P PPL FR B9 26 262 26357 1826 142 Europe/Paris 2012-01-18
-2971493 Tuffé Tuffe Tuffe,Tuffé 48.11319 0.51551 P PPL FR B5 72 722 72363 1572 90 Europe/Paris 2012-01-18
-2971504 Tucquegnieux Tucquegnieux Tucquegnieux 49.3014 5.88247 P PPL FR B2 54 541 54536 2791 238 Europe/Paris 2012-01-18
-2971515 Truyes Truyes Truyes 47.27299 0.85179 P PPL FR A3 37 372 37263 1808 76 Europe/Paris 2012-01-18
-2971521 Trun Trun Trun 48.84268 0.03268 P PPL FR 99 61 612 61494 1345 81 Europe/Paris 2012-01-18
-2971536 Truchtersheim Truchtersheim 48.66313 7.60752 P PPL FR C1 67 676 67495 2517 186 Europe/Paris 2007-07-07
-2971549 Troyes Troyes Troyes,Trua,te lu wa,torowa,trwa,Труа,تروا,トロワ,特鲁瓦 48.3 4.08333 P PPLA2 FR A4 10 103 10387 60785 107 Europe/Paris 2011-12-08
-2971553 Trouy Trouy Trouy 47.01153 2.36018 P PPL FR A3 18 181 18267 3030 165 Europe/Paris 2012-01-18
-2971555 Trouville-sur-Mer Trouville-sur-Mer Deauville-Trouville,Trouville,Trouville-sur-Mer,Truvil'-Sjur-Mer,Трувиль-Сюр-Мер 49.3657 0.08041 P PPL FR 99 14 143 14715 5751 5 2 Europe/Paris 2008-05-12
-2971568 Trouillas Trouillas Trouillas 42.61089 2.80821 P PPL FR A9 66 662 66217 1552 99 Europe/Paris 2012-01-18
-2971580 Trosly-Breuil Trosly-Breuil Trosly,Trosly-Breuil 49.4 2.96667 P PPL FR B6 60 603 60647 2039 43 Europe/Paris 2012-01-18
-2971582 Tronville-en-Barrois Tronville-en-Barrois Tronville,Tronville-en-Barrois 48.71976 5.27808 P PPL FR B2 55 551 55519 1712 208 Europe/Paris 2012-01-18
-2971616 Troissereux Troissereux Troissereux 49.47998 2.04485 P PPL FR B6 60 601 60646 1198 80 Europe/Paris 2012-01-18
-2971641 Troarn Troarn Troarn 49.17835 -0.18169 P PPL FR 99 14 142 14712 3361 25 Europe/Paris 2012-01-18
-2971645 Trizay Trizay Trizay 45.88276 -0.89698 P PPL FR B7 17 174 17453 1201 14 Europe/Paris 2012-01-18
-2971651 Trith-Saint-Léger Trith-Saint-Leger Trith,Trith-Saint-Leger,Trith-Saint-Léger 50.31667 3.48333 P PPL FR B4 59 596 59603 6357 24 Europe/Paris 2012-01-18
-2971673 Trilport Trilport Trilport 48.95685 2.95076 P PPL FR A8 77 771 77475 5080 57 Europe/Paris 2012-01-18
-2971676 Triguères Trigueres Trigueres,Triguères 47.93975 2.9857 P PPL FR A3 45 451 45329 1210 120 Europe/Paris 2012-01-18
-2971680 Trignac Trignac Trignac,Trinieg 47.31809 -2.18895 P PPL FR B5 44 443 44210 7132 5 Europe/Paris 2012-01-18
-2971686 Trieux Trieux Trieux 49.32446 5.93644 P PPL FR B2 54 541 54533 1977 300 Europe/Paris 2012-01-18
-2971689 Triel-sur-Seine Triel-sur-Seine Triel,Triel-sur-Seine 48.97818 2.00743 P PPL FR A8 78 783 78624 12574 51 Europe/Paris 2012-01-18
-2971692 Trie-Château Trie-Chateau Trie-Chateau,Trie-Château,Trye-sur-Troesne 49.2854 1.82129 P PPL FR B6 60 601 60644 1539 64 Europe/Paris 2012-01-18
-2971693 Trie-sur-Baïse Trie-sur-Baise Trie 43.33333 0.36667 P PPL FR B3 65 653 65452 1072 251 Europe/Paris 2007-11-21
-2971694 Tricot Tricot Tricot 49.5608 2.58789 P PPL FR B6 60 602 60643 1542 97 Europe/Paris 2012-01-18
-2971704 Triaize Triaize 46.39265 -1.19785 P PPL FR B5 85 851 85297 1028 4 Europe/Paris 2010-04-06
-2971722 Trévoux Trevoux Trevoux,Trévoux 45.94111 4.76727 P PPL FR B9 01 012 01427 6957 174 Europe/Paris 2012-01-18
-2971723 Trévou-Tréguignec Trevou-Treguignec An Trevou,An Trevoù,Trevou-Treguignec,Trévou-Tréguignec 48.81869 -3.34132 P PPL FR A2 22 223 22379 1421 41 Europe/Paris 2012-01-18
-2971725 Trévol Trevol Trevol,Trévol 46.62886 3.30457 P PPL FR 98 03 032 03290 1435 229 Europe/Paris 2012-01-18
-2971751 Trévé Treve Treve,Trévé 48.21147 -2.79317 P PPL FR A2 22 224 22376 1382 161 Europe/Paris 2012-01-18
-2971765 Trets Trets Trets 43.44818 5.68328 P PPL FR B8 13 131 13110 9734 247 Europe/Paris 2011-01-18
-2971771 Tressin Tressin Tressin 50.6175 3.19354 P PPL FR B4 59 595 59602 1008 28 Europe/Paris 2012-01-18
-2971773 Tresses Tresses Tresses 44.84781 -0.46296 P PPL FR 97 33 332 33535 3907 59 Europe/Paris 2012-01-18
-2971774 Tresserve Tresserve Tresserve,Tresserves 45.67785 5.90153 P PPL FR B9 73 732 73300 3303 315 Europe/Paris 2012-01-18
-2971777 Tressange Tressange Tressange 49.40538 5.98138 P PPL FR B2 57 578 57678 2067 343 Europe/Paris 2012-01-18
-2971782 Tresques Tresques Tresques 44.10689 4.5874 P PPL FR A9 30 302 30331 1937 86 Europe/Paris 2012-01-18
-2971796 Tresbœuf Tresboeuf Tresboeuf,Trevo 47.88333 -1.55 P PPL FR A2 35 352 35343 1011 100 Europe/Paris 2007-11-21
-2971799 Trept Trept Trept 45.68561 5.31617 P PPL FR B9 38 382 38515 1670 281 Europe/Paris 2012-01-18
-2971810 Tréon Treon Treon,Tréon 48.67709 1.32668 P PPL FR A3 28 283 28394 1285 111 Europe/Paris 2012-01-18
-2971825 Trémuson Tremuson Tremuson,Tremuzon,Trémuson 48.52325 -2.84833 P PPL FR A2 22 224 22372 1763 140 Europe/Paris 2012-01-18
-2971856 Tréméven Tremeven Tremeven,Tremeven-Kemperle,Tréméven 47.9 -3.53333 P PPL FR A2 29 294 29297 2125 87 Europe/Paris 2012-01-18
-2971858 Trémery Tremery Tremery,Trémery 49.2446 6.22357 P PPL FR B2 57 574 57677 1172 173 Europe/Paris 2012-01-18
-2971861 Trémentines Trementines Trementines,Trémentines 47.12357 -0.785 P PPL FR B5 49 492 49355 3009 133 Europe/Paris 2012-01-18
-2971874 Tremblay-en-France Tremblay-en-France Tremblay-sans-Culottes 48.94956 2.5684 P PPL FR FR A8 93 932 93073 35591 64 Europe/Paris 2011-11-02
-2971876 Tremblay Tremblay Kreneg,Tremblay 48.42216 -1.47555 P PPL FR A2 35 351 35341 1571 81 Europe/Paris 2012-01-18
-2971887 Trélon Trelon Trelon,Trélon 50.05805 4.102 P PPL FR B4 59 591 59601 2941 208 Europe/Paris 2012-01-18
-2971889 Trélivan Trelivan Trelivan,Trélivan 48.43198 -2.11748 P PPL FR A2 22 221 22364 2286 94 Europe/Paris 2012-01-18
-2971890 Trélissac Trelissac Trelissac,Trélissac 45.19766 0.78615 P PPL FR 97 24 243 24557 6867 96 Europe/Paris 2012-01-18
-2971893 Trélévern Trelevern Trelevern,Trelêvern,Trélévern 48.81071 -3.37141 P PPL FR A2 22 223 22363 1374 60 Europe/Paris 2012-01-18
-2971896 Trélazé Trelaze Trelaze,Trélazé 47.44565 -0.4654 P PPL FR B5 49 491 49353 11740 22 Europe/Paris 2012-01-18
-2971903 Treize-Septiers Treize-Septiers Treize-Septiers 46.98524 -1.22921 P PPL FR B5 85 852 85295 2561 66 Europe/Paris 2012-01-18
-2971908 Treillières Treillieres Treillieres,Treillières,Trelier 47.3306 -1.61918 P PPL FR B5 44 442 44209 6572 58 Europe/Paris 2012-01-18
-2971915 Treignac Treignac Treignac,Treignac-la-Montagne 45.53558 1.79621 P PPL FR B1 19 192 19269 1500 497 Europe/Paris 2012-01-18
-2971926 Trégunc Tregunc Tregon,Tregunc,Trégunc 47.85 -3.85 P PPL FR A2 29 294 29293 6775 35 Europe/Paris 2012-01-18
-2971929 Tréguier Treguier Landreger,Treguier,Tréguier 48.78333 -3.23333 P PPL FR A2 22 223 22362 3011 53 Europe/Paris 2012-01-18
-2971953 Trégastel Tregastel Tregastel,Tregastel-Bourg,Trégastel 48.81667 -3.5 P PPL FR A2 22 223 22353 2341 34 Europe/Paris 2012-01-18
-2971976 Treffléan Trefflean Trefflean,Treffléan,Trevlean 47.68163 -2.61287 P PPL FR A2 56 563 56255 1544 116 Europe/Paris 2012-01-18
-2971978 Treffiagat Treffiagat Triagad 47.81667 -4.26667 P PPL FR A2 29 294 29284 2376 18 Europe/Paris 2007-11-19
-2971988 Trédarzec Tredarzec Tredarzec,Tredarzeg,Trédarzec 48.78583 -3.201 P PPL FR A2 22 223 22347 1068 49 Europe/Paris 2012-01-18
-2972009 Trébeurden Trebeurden Trebeurden,Trébeurden 48.76667 -3.56667 P PPL FR A2 22 223 22343 3617 77 Europe/Paris 2012-01-18
-2972010 Trèbes Trebes Trebes,Trèbes 43.21064 2.44165 P PPL FR A9 11 111 11397 5972 94 Europe/Paris 2012-01-18
-2972049 Trappes Trappes Trappes 48.77413 2.01781 P PPL FR A8 78 784 78621 28367 173 Europe/Paris 2012-01-18
-2972058 Trans-en-Provence Trans-en-Provence Trans,Trans-en-Provence 43.505 6.48571 P PPL FR B8 83 831 83141 5209 150 Europe/Paris 2012-01-18
-2972064 Trangé Trange Trange,Trangé 48.02706 0.11054 P PPL FR B5 72 723 72360 1091 110 Europe/Paris 2012-01-18
-2972071 Tramoyes Tramoyes Tramoyes 45.87627 4.96568 P PPL FR B9 01 012 01424 1663 300 Europe/Paris 2012-01-18
-2972095 Traînou Trainou Trainou,Traînou 47.97353 2.10399 P PPL FR A3 45 452 45327 2964 134 Europe/Paris 2012-01-18
-2972107 Tracy-le-Mont Tracy-le-Mont Tracy,Tracy-le-Mont 49.47225 3.00939 P PPL FR B6 60 603 60641 1772 112 Europe/Paris 2012-01-18
-2972126 Touvre Touvre Touvre 45.66667 0.25 P PPL FR B7 16 161 16385 1073 51 Europe/Paris 2012-01-18
-2972128 Touvois Touvois Tolvez,Touvois 46.90208 -1.68333 P PPL FR B5 44 442 44206 1407 47 Europe/Paris 2012-01-18
-2972137 Toutlemonde Toutlemonde Toutlemonde 47.05488 -0.76548 P PPL FR B5 49 492 49352 1038 129 Europe/Paris 2012-01-18
-2972142 Toutainville Toutainville Toutainville 49.36474 0.46538 P PPL FR A7 27 272 27656 1064 15 Europe/Paris 2012-01-18
-2972146 Toussieu Toussieu Toussieu 45.65371 4.98618 P PPL FR B9 69 691 69298 2128 239 Europe/Paris 2012-01-18
-2972156 Toury Toury Toury 48.19397 1.93484 P PPL FR A3 28 281 28391 2762 135 Europe/Paris 2012-01-18
-2972160 Tourville-sur-Odon Tourville-sur-Odon Tourville,Tourville-sur-Odon 49.14154 -0.50128 P PPL FR 99 14 142 14707 1112 77 Europe/Paris 2012-01-18
-2972161 Tourville-sur-Arques Tourville-sur-Arques Tourville,Tourville-sur-Arques 49.85926 1.10238 P PPL FR A7 76 761 76707 1116 104 Europe/Paris 2012-01-18
-2972163 Tourville-la-Rivière Tourville-la-Riviere Tourville,Tourville-la-Riviere,Tourville-la-Rivière 49.32782 1.10551 P PPL FR A7 76 763 76705 2336 18 Europe/Paris 2012-01-18
-2972168 Tourves Tourves Tourves 43.40776 5.92415 P PPL FR B8 83 833 83140 3708 291 Europe/Paris 2012-01-18
-2972186 Tours-sur-Marne Tours-sur-Marne Tours,Tours-sur-Marne 49.04873 4.1206 P PPL FR A4 51 512 51576 1225 81 Europe/Paris 2012-01-18
-2972191 Tours Tours Augusta-Turonum,La Reunion-du-Nord,La Réunion-du-Nord,Tours,Tur,Turonum,to~uru,tu er,twr,Тур,טור,トゥール,图尔 47.38333 0.68333 P PPLA2 FR A3 37 372 37261 141621 52 Europe/Paris 2011-11-02
-2972195 Tourrette-Levens Tourrette-Levens Tourrette,Tourrette-Levens 43.78746 7.27364 P PPL FR B8 06 062 06147 4276 365 Europe/Paris 2012-01-18
-2972201 Tourouvre Tourouvre Tourouvre 48.58951 0.65252 P PPL FR 99 61 613 61491 1667 250 Europe/Paris 2012-01-18
-2972203 Tournus Tournus Tournus,Tournus-Lacrost 46.56758 4.90574 P PPL FR A1 71 715 71543 6071 193 Europe/Paris 2012-01-18
-2972209 Tournon-Saint-Martin Tournon-Saint-Martin Tournon,Tournon-Saint-Martin 46.73423 0.95514 P PPL FR A3 36 361 36224 1217 73 Europe/Paris 2012-01-18
-2972214 Tournon-sur-Rhône Tournon-sur-Rhone Tornon,Tournon-sur-Rhone,Tournon-sur-Rhône 45.06667 4.83333 P PPLA3 FR FR B9 07 073 07324 0 130 Europe/Paris 2011-11-02
-2972229 Tournes Tournes Tournes 49.797 4.63856 P PPL FR A4 08 081 08457 1080 164 Europe/Paris 2012-01-18
-2972235 Tournehem-sur-la-Hem Tournehem-sur-la-Hem 50.8 2.05 P PPL FR B4 62 625 62827 1229 48 Europe/Paris 2007-11-21
-2972237 Tournefeuille Tournefeuille Brumaire,Frimaire,Fructidor,Germinal,Messidor,Nivose,Nivôse,Prairial,Tournefeuille,Vendemiaire,Vendémiaire,Ventose,Ventôse 43.58872 1.31922 P PPL FR B3 31 313 31557 29124 189 Europe/Paris 2011-01-09
-2972248 Tournay Tournay Tournay 43.18438 0.24454 P PPL FR B3 65 653 65447 1192 269 Europe/Paris 2012-01-18
-2972253 Tournan-en-Brie Tournan-en-Brie Tournan,Tournan-en-Brie,Tournan-l'Union 48.74146 2.772 P PPL FR A8 77 772 77470 8309 100 Europe/Paris 2012-01-18
-2972270 Tourlaville Tourlaville Tourlaville 49.63828 -1.56639 P PPL FR 99 50 502 50602 18273 27 Europe/Paris 2012-01-18
-2972273 Tourrettes-sur-Loup Tourrettes-sur-Loup Tourette 43.71667 7.05 P PPL FR B8 06 061 06148 4051 517 Europe/Paris 2007-11-21
-2972284 Tourcoing Tourcoing Toerkonje,Tourcoing,Turcundium,to~urukowan,トゥールコワン 50.72391 3.16117 P PPL FR B4 59 595 59599 91574 49 Europe/Paris 2012-01-18
-2972288 Tourbes Tourbes Tourbes 43.44615 3.37852 P PPL FR A9 34 341 34311 1650 67 Europe/Paris 2012-01-18
-2972301 Touquin Touquin Touquin 48.73498 3.01222 P PPL FR A8 77 773 77469 1097 113 Europe/Paris 2012-01-18
-2972307 Touques Touques Touques 49.34443 0.10218 P PPL FR 99 14 143 14699 3681 5 Europe/Paris 2012-01-18
-2972315 Toulouse Toulouse TLS,Tolosa,Tolosa de Francia,Tolosa de Llenguadoc,Toulouse,Tuluz,Tuluza,Tuluzo,Tulūza,to~uruzu,tu lu zi,tullujeu,twlwz,Тулуз,Тулуза,טולוז,تولوز,トゥールーズ,圖盧茲,툴루즈 43.60426 1.44367 P PPLA FR B3 31 313 31555 433055 150 Europe/Paris 2011-06-16
-2972317 Toulouges Toulouges Toluges,Toulouges 42.66961 2.83008 P PPL FR A9 66 662 66213 5820 60 Europe/Paris 2012-01-18
-2972320 Toulon-sur-Arroux Toulon-sur-Arroux Bel-Air-sur-Arroux,Toulon,Toulon-sur-Arroux 46.69345 4.13869 P PPL FR A1 71 713 71542 1655 264 Europe/Paris 2012-01-18
-2972321 Toulon-sur-Allier Toulon-sur-Allier Mont-la-Loi,Toulon 46.51845 3.35989 P PPL FR 98 03 032 03286 1106 233 Europe/Paris 2009-06-24
-2972328 Toulon Toulon Port-la-Montagne,Telo Martius,Tolo,Tolon,Tolone,Toló,Tolón,Toulon,Toulon-sur-Mer,Tulon,to~uron,tu lun,tulom,twlwn,Тулон,טולון,طولون,तुलों,トゥーロン,土伦 43.11667 5.93333 P PPLA2 FR B8 83 832 83137 168701 7 Europe/Paris 2011-12-08
-2972339 Toulenne Toulenne Toulenne 44.55665 -0.26328 P PPL FR 97 33 333 33533 2210 34 Europe/Paris 2012-01-18
-2972342 Toulaud Toulaud Toulaud 44.90009 4.81721 P PPL FR B9 07 073 07323 1579 219 Europe/Paris 2012-01-18
-2972350 Toul Toul La Moselle,La Paix,Toul,Tul',Туль 48.68333 5.9 P PPLA3 FR B2 54 544 54528 17680 205 Europe/Paris 2011-11-02
-2972365 Toufflers Toufflers Toufflers 50.66039 3.23358 P PPL FR B4 59 595 59598 3931 38 Europe/Paris 2012-01-18
-2972372 Toucy Toucy Toucy 47.73602 3.29502 P PPL FR A1 89 891 89419 2812 205 Europe/Paris 2012-01-18
-2972381 Tôtes Totes Totes,Tôtes 49.68091 1.0465 P PPL FR A7 76 761 76700 1158 164 Europe/Paris 2012-01-18
-2972387 Tossiat Tossiat Tossiat 46.13989 5.31139 P PPL FR B9 01 012 01422 1231 260 Europe/Paris 2012-01-18
-2972388 Tosse Tosse Tosse 43.68916 -1.33262 P PPL FR 97 40 401 40317 1820 26 Europe/Paris 2012-01-18
-2972412 Torreilles Torreilles Torreilles 42.75433 2.99292 P PPL FR A9 66 662 66212 2260 9 Europe/Paris 2012-01-18
-2972427 Torigni-sur-Vire Torigni-sur-Vire Torigni,Torigni-sur-Vire,Torigny,Torigny-sur-Vire 49.03702 -0.98214 P PPL FR 99 50 504 50601 2648 74 Europe/Paris 2012-01-18
-2972430 Torfou Torfou Torfou 47.03682 -1.11635 P PPL FR B5 49 492 49350 2023 102 Europe/Paris 2012-01-18
-2972444 Torcy Torcy 48.85 2.65 P PPLA3 FR A8 77 775 77468 24386 101 Europe/Paris 2010-04-02
-2972445 Torcy Torcy Torcy 46.76857 4.45333 P PPL FR A1 71 711 71540 3065 308 Europe/Paris 2012-01-18
-2972457 Torcé Torce Torce,Torcé,Tourc'heg 48.0612 -1.26708 P PPL FR A2 35 351 35338 1007 92 Europe/Paris 2012-01-18
-2972462 Tonquédec Tonquedec Tonkedeg,Tonquedec,Tonquédec 48.66886 -3.39712 P PPL FR A2 22 223 22340 1120 93 Europe/Paris 2012-01-18
-2972467 Tonnerre Tonnerre Tonnerre 47.85628 3.97369 P PPL FR A1 89 892 89418 5352 145 Europe/Paris 2012-01-18
-2972468 Tonneins Tonneins Tonneins,Tonneins-la-Montagne 44.39206 0.31241 P PPL FR 97 47 472 47310 9823 42 Europe/Paris 2012-01-18
-2972470 Tonnay-Charente Tonnay-Charente Tonnay Charenta,Tonnay-Charente 45.949 -0.8935 P PPL FR B7 17 172 17449 7229 15 Europe/Paris 2012-01-18
-2972471 Tonnay-Boutonne Tonnay-Boutonne Tonnay-Boutonne 45.96815 -0.70847 P PPL FR B7 17 175 17448 1217 17 Europe/Paris 2012-01-18
-2972486 Tomblaine Tomblaine Tomblaine 48.68333 6.21312 P PPL FR B2 54 543 54526 7703 201 Europe/Paris 2012-01-18
-2972494 Tollevast Tollevast Tollevast 49.57437 -1.62746 P PPL FR 99 50 502 50599 1196 90 Europe/Paris 2012-01-18
-2972516 Tocane-Saint-Apre Tocane-Saint-Apre Barra-sur-Dronne,Tocane,Tocane-Saint-Apre,Tocuno,Tooane-Saint-Abre 45.25404 0.49682 P PPL FR 97 24 243 24553 1527 81 Europe/Paris 2012-01-18
-2972544 Tinténiac Tinteniac Tinteniac,Tintenieg,Tinténiac 48.3286 -1.8363 P PPL FR A2 35 354 35337 2877 56 Europe/Paris 2012-01-18
-2972546 Tinqueux Tinqueux Tinqueux 49.25 3.98333 P PPL FR A4 51 513 51573 10197 90 Europe/Paris 2012-01-18
-2972555 Tinchebray Tinchebray Tinchebray 48.76437 -0.73333 P PPL FR 99 61 612 61486 3102 206 Europe/Paris 2012-01-18
-2972559 Tilques Tilques Tilques 50.77712 2.19948 P PPL FR B4 62 625 62819 1004 12 Europe/Paris 2012-01-18
-2972560 Tilly-sur-Seulles Tilly-sur-Seulles Tilly,Tilly-sur-Seulles 49.17598 -0.62605 P PPL FR 99 14 142 14692 1311 61 Europe/Paris 2011-01-20
-2972571 Tilloy-lès-Mofflaines Tilloy-les-Mofflaines Tilloy,Tilloy-anx-Fosses 50.27519 2.81456 P PPL FR B4 62 621 62817 1556 82 Europe/Paris 2009-03-25
-2972583 Tillières-sur-Avre Tillieres-sur-Avre Tillieres,Tillieres-sur-Avre,Tillières,Tillières-sur-Avre 48.75586 1.05388 P PPL FR A7 27 273 27643 1252 135 Europe/Paris 2012-01-18
-2972584 Tillières Tillieres Tillieres,Tilliers,Tillières 47.14397 -1.16334 P PPL FR B5 49 492 49349 1343 76 Europe/Paris 2012-01-18
-2972594 Tillé Tille Tille,Tillé 49.46415 2.11038 P PPL FR B6 60 601 60639 1041 112 Europe/Paris 2012-01-18
-2972600 Tigy Tigy Tigy 47.79365 2.19766 P PPL FR A3 45 452 45324 2071 111 Europe/Paris 2012-01-18
-2972605 Tignieu-Jameyzieu Tignieu-Jameyzieu Tignieu,Tignieu-Jameyzieu 45.73564 5.18046 P PPL FR B9 38 382 38507 5244 226 Europe/Paris 2012-01-18
-2972607 Tignes Tignes Tignes,Tignes-sur-Boisses 45.49604 6.92463 P PPL FR B9 73 731 73296 2385 1802 Europe/Paris 2012-01-18
-2972611 Tigery Tigery Tigery 48.64257 2.50779 P PPL FR A8 91 912 91617 1406 76 Europe/Paris 2012-01-18
-2972613 Tiffauges Tiffauges Tiffauges 47.0108 -1.10999 P PPL FR B5 85 852 85293 1437 101 Europe/Paris 2012-01-18
-2972620 Tiercé Tierce Tierce,Tiercé 47.61587 -0.46609 P PPL FR B5 49 491 49347 3936 27 Europe/Paris 2012-01-18
-2972633 Thyez Thyez 46.08249 6.53777 P PPL FR B9 74 742 74278 5383 477 Europe/Paris 2007-03-26
-2972640 Thury-Harcourt Thury-Harcourt Thury,Thury-Harcourt 48.98434 -0.4752 P PPL FR 99 14 142 14689 1909 60 Europe/Paris 2012-01-18
-2972644 Thurins Thurins Thurins,Thurins-le-Francais,Thurins-le-Français 45.68093 4.63968 P PPL FR B9 69 691 69249 2591 378 Europe/Paris 2012-01-18
-2972651 Thuré Thure Thure,Thuré 46.83222 0.45797 P PPL FR B7 86 861 86272 2839 100 Europe/Paris 2010-12-04
-2972655 Thun-Saint-Amand Thun-Saint-Amand Thun,Thun-Saint-Amand 50.47276 3.45116 P PPL FR B4 59 596 59594 1059 18 Europe/Paris 2012-01-18
-2972658 Thumeries Thumeries Thumeries 50.47662 3.055 P PPL FR B4 59 595 59592 3458 63 Europe/Paris 2012-01-18
-2972665 Thuir Thuir Thuir,Tuir 42.6329 2.75471 P PPL FR A9 66 662 66210 7933 108 Europe/Paris 2012-01-18
-2972670 Thueyts Thueyts Thueyts 44.67828 4.21916 P PPL FR B9 07 071 07322 1057 483 Europe/Paris 2012-01-18
-2972673 Thuellin Thuellin Thuellin 45.63833 5.5072 P PPL FR B9 38 382 38541 1609 233 Europe/Paris 2012-02-27
-2972684 Thourotte Thourotte Thourotte 49.47591 2.8821 P PPL FR B6 60 603 60636 5581 35 Europe/Paris 2012-01-18
-2972695 Thouars Thouars Thouars 46.97602 -0.21507 P PPL FR B7 79 791 79329 11517 97 Europe/Paris 2012-01-18
-2972696 Thouaré-sur-Loire Thouare-sur-Loire Tarvieg,Thouare,Thouare-sur-Loire,Thouaré,Thouaré-sur-Loire 47.26893 -1.43834 P PPL FR B5 44 442 44204 7172 14 Europe/Paris 2012-01-18
-2972697 Thouarcé Thouarce Thouarce,Thouarcé 47.26734 -0.50186 P PPL FR B5 49 491 49345 1780 34 Europe/Paris 2012-01-18
-2972710 Thorigny-sur-Oreuse Thorigny-sur-Oreuse Thorigny,Thorigny-sur-Oreuse 48.29297 3.40128 P PPL FR A1 89 893 89414 1308 112 Europe/Paris 2012-01-18
-2972711 Thorigny-sur-Marne Thorigny-sur-Marne Thorigny,Thorigny-sur-Marne 48.88689 2.71806 P PPL FR A8 77 775 77464 9887 72 Europe/Paris 2012-01-18
-2972716 Thorigné-sur-Dué Thorigne-sur-Due Thorigne,Thorigne-sur-Due,Thorigné,Thorigné-sur-Dué 48.0392 0.53554 P PPL FR B5 72 722 72358 1561 87 Europe/Paris 2012-01-18
-2972719 Thorigné Thorigne Thorigne,Thorigné 46.2915 -0.25122 P PPL FR B7 79 792 79327 1030 109 Europe/Paris 2012-01-18
-2972727 Thorens-Glières Thorens-Glieres Thorens,Thorens-Glieres,Thorens-Glières 45.99475 6.24581 P PPL FR B9 74 741 74282 2829 659 Europe/Paris 2012-01-18
-2972742 Thonon-les-Bains Thonon-les-Bains Thonon,Thonon-les-Bains,Tonon-le-Ben,Тонон-ле-Бен 46.36667 6.48333 P PPLA3 FR B9 74 744 74281 31684 450 Europe/Paris 2011-11-02
-2972749 Thônes Thones 45.88123 6.32572 P PPL FR B9 74 741 74280 6032 627 Europe/Paris 2007-03-30
-2972754 Thomery Thomery Thomery 48.40723 2.78852 P PPL FR A8 77 774 77463 3288 54 Europe/Paris 2012-01-18
-2972772 Thoissey Thoissey Thoissey 46.17405 4.80331 P PPL FR B9 01 012 01420 1493 177 Europe/Paris 2012-01-18
-2972773 Thoiry Thoiry Thoiry 48.86715 1.7976 P PPL FR A8 78 782 78616 1015 145 Europe/Paris 2012-01-18
-2972774 Thoiry Thoiry Thoiry 46.23762 5.98111 P PPL FR B9 01 013 01419 4433 489 Europe/Paris 2011-01-14
-2972786 Thizy Thizy Thizy 46.02995 4.31299 P PPL FR B9 69 692 69248 2718 503 Europe/Paris 2012-01-18
-2972792 Thiviers Thiviers Thiviers 45.41542 0.91963 P PPL FR 97 24 242 24551 3757 273 Europe/Paris 2012-01-18
-2972794 Thiverval-Grignon Thiverval-Grignon Thivernal-Grignon,Thiverval,Thiverval-Grignon 48.85108 1.9171 P PPL FR A8 78 784 78615 1057 67 Europe/Paris 2012-01-18
-2972795 Thiverny Thiverny Thiverny 49.2518 2.43609 P PPL FR B6 60 604 60635 1135 30 Europe/Paris 2012-01-18
-2972798 Thise Thise Thise 47.28486 6.08127 P PPL FR A6 25 251 25560 3161 278 Europe/Paris 2012-01-18
-2972801 Thiron Gardais Thiron Gardais Thiron 48.31667 0.98333 P PPL FR A3 28 284 28387 1157 245 Europe/Paris 2011-11-02
-2972811 Thionville Thionville Diddenuewen,Diedenhofen,Thionville 49.36667 6.16667 P PPLA3 FR B2 57 577 57672 44311 154 Europe/Paris 2011-11-02
-2972822 Thilouze Thilouze Thilouze 47.22415 0.57963 P PPL FR A3 37 371 37257 1176 81 Europe/Paris 2012-01-18
-2972829 Thilay Thilay Thilay 49.87345 4.80772 P PPL FR A4 08 081 08448 1093 151 Europe/Paris 2011-01-04
-2972830 Thil Thil Thil 49.47464 5.9079 P PPL FR B2 54 541 54521 1618 376 Europe/Paris 2012-01-18
-2972833 Thil Thil Thil 45.81416 5.0219 P PPL FR B9 01 012 01418 1036 181 Europe/Paris 2012-01-18
-2972851 Thierville-sur-Meuse Thierville-sur-Meuse Thierville,Thierville-sur-Meuse 49.1705 5.35266 P PPL FR B2 55 553 55505 3525 195 Europe/Paris 2012-01-18
-2972853 Thiers-sur-Thève Thiers-sur-Theve Thiers,Thiers-sur-Theve,Thiers-sur-Thève 49.15252 2.57051 P PPL FR B6 60 604 60631 1019 59 Europe/Paris 2012-01-18
-2972857 Thiers Thiers Thiers,Tiern,Tièrn 45.85 3.56667 P PPLA3 FR 98 63 635 63430 13739 661 Europe/Paris 2011-11-02
-2972882 Thiberville Thiberville Thiberville 49.13768 0.45502 P PPL FR A7 27 272 27629 1652 171 Europe/Paris 2012-01-18
-2972889 Thiant Thiant Thiant 50.3048 3.44796 P PPL FR B4 59 596 59589 2632 39 Europe/Paris 2012-01-18
-2972893 Thiais Thiais Thiais 48.76496 2.3961 P PPL FR A8 94 943 94073 29724 51 Europe/Paris 2012-01-18
-2972904 Thézan-lès-Béziers Thezan-les-Beziers Thezan,Thézan 43.41667 3.16667 P PPL FR A9 34 341 34310 2439 48 Europe/Paris 2007-11-19
-2972908 Théza Theza Tesa,Tesà,Theza,Thèza,Théza 42.63797 2.95108 P PPL FR A9 66 662 66208 1384 13 Europe/Paris 2012-01-18
-2972911 Theys Theys Theys 45.30136 5.99534 P PPL FR B9 38 381 38504 1730 626 Europe/Paris 2012-01-18
-2972931 Thésée Thesee Thesee,Thezee,Thésée,Thézée 47.32345 1.30882 P PPL FR A3 41 413 41258 1225 68 Europe/Paris 2012-01-18
-2972936 Thérouanne Therouanne Therouanne,Thérouanne 50.63695 2.25838 P PPL FR B4 62 625 62811 1074 36 Europe/Paris 2012-01-18
-2972942 Théoule-sur-Mer Theoule-sur-Mer Theoule,Théoule 43.5078 6.9408 P PPL FR B8 06 061 06138 1347 11 Europe/Paris 2010-12-23
-2972947 Thenon Thenon Thenon 45.13897 1.07211 P PPL FR 97 24 243 24550 1278 260 Europe/Paris 2012-01-18
-2972953 Thénezay Thenezay Thenezay,Thénezay 46.71879 -0.02883 P PPL FR B7 79 793 79326 1474 148 Europe/Paris 2012-01-18
-2972963 Thénac Thenac Thenac,Thénac 45.66705 -0.65345 P PPL FR B7 17 174 17444 1243 55 Europe/Paris 2012-01-18
-2972969 Thélus Thelus Thelus,Thélus 50.35441 2.80146 P PPL FR B4 62 621 62810 1047 123 Europe/Paris 2012-01-18
-2972978 Theizé Theize Theize,Theizé 45.94028 4.61634 P PPL FR B9 69 692 69246 1110 464 Europe/Paris 2012-01-18
-2972979 Theix Theix Teiz,Theix 47.62916 -2.65186 P PPL FR A2 56 563 56251 5402 18 Europe/Paris 2012-01-18
-2972986 Theillay Theillay Theillay 47.31429 2.04028 P PPL FR A3 41 413 41256 1346 118 Europe/Paris 2012-01-18
-2972992 Théding Theding Theding,Théding 49.12941 6.89315 P PPL FR B2 57 573 57669 2110 303 Europe/Paris 2012-01-18
-2973008 Thaon-les-Vosges Thaon-les-Vosges Thaon,Thaon-les-Vosges 48.25 6.41667 P PPL FR B2 88 881 88465 8009 302 Europe/Paris 2012-01-18
-2973009 Thaon Thaon Thaon 49.25796 -0.45605 P PPL FR 99 14 142 14685 1410 29 Europe/Paris 2012-01-18
-2973013 Thann Thann Thann 47.81667 7.08333 P PPLA3 FR C1 68 686 68334 8429 382 Europe/Paris 2011-11-02
-2973021 Thairé Thaire Thaire,Thaire-d'Aunis,Thairé,Thairé-d'Aunis 46.07341 -1.0023 P PPL FR B7 17 172 17443 1331 16 Europe/Paris 2012-01-18
-2973033 Teyran Teyran Teyran 43.68528 3.92889 P PPL FR A9 34 343 34309 4773 96 Europe/Paris 2010-12-24
-2973045 Teting-sur-Nied Teting-sur-Nied Teting,Téting 49.05 6.66667 P PPL FR B2 57 571 57668 1220 249 Europe/Paris 2009-09-06
-2973049 Téteghem Teteghem Teteghem,Téteghem 51.0186 2.44454 P PPL FR B4 59 594 59588 7465 2 Europe/Paris 2012-01-18
-2973058 Tessy-sur-Vire Tessy-sur-Vire Tessy,Tessy-sur-Vire,Tessy-sur-ville 48.97381 -1.06087 P PPL FR 99 50 504 50592 1465 60 Europe/Paris 2012-01-18
-2973064 Tessé-la-Madeleine Tesse-la-Madeleine Tesse,Tessé 48.54963 -0.42521 P PPL FR 99 61 611 61483 1302 187 Europe/Paris 2012-02-27
-2973073 Terville Terville Terville 49.34714 6.13802 P PPL FR B2 57 577 57666 6667 162 Europe/Paris 2012-01-18
-2973108 Terrasson-Lavilledieu Terrasson-Lavilledieu 45.13011 1.30136 P PPL FR 97 24 244 24547 6371 87 Europe/Paris 2011-11-02
-2973128 Ternay Ternay Ternay 45.60835 4.81024 P PPL FR B9 69 691 69297 4868 226 Europe/Paris 2012-01-18
-2973146 Tergnier Tergnier Tergnier 49.65607 3.30107 P PPL FR B6 02 022 02738 15475 55 Europe/Paris 2012-01-18
-2973151 Tercis-les-Bains Tercis-les-Bains Tercis,Tercis-les-Bains 43.67048 -1.10738 P PPL FR 97 40 401 40314 1152 33 Europe/Paris 2012-01-18
-2973155 Tercé Terce Terce,Tercé 46.51667 0.56386 P PPL FR B7 86 863 86268 1078 123 Europe/Paris 2012-01-18
-2973164 Tenteling Tenteling Tenteling 49.12425 6.93692 P PPL FR B2 57 573 57665 1033 291 Europe/Paris 2012-01-18
-2973166 Tennie Tennie Tennie 48.10769 -0.07626 P PPL FR B5 72 722 72351 1018 96 Europe/Paris 2012-01-18
-2973180 Tende Tende Tenda,Tende 44.08571 7.5934 P PPL FR B8 06 062 06163 1953 832 Europe/Paris 2012-01-18
-2973181 Tencin Tencin Tencin 45.30953 5.95818 P PPL FR B9 38 381 38501 1165 250 Europe/Paris 2012-01-18
-2973182 Tence Tence Tence 45.11503 4.29166 P PPL FR 98 43 433 43244 3048 845 Europe/Paris 2012-01-18
-2973183 Tenay Tenay Tenay 45.919 5.51041 P PPL FR B9 01 011 01416 1182 333 Europe/Paris 2012-01-18
-2973187 Templeuve Templeuve Templeuve,Templeuve-en Pevele,Templeuve-en Pévele 50.52336 3.17809 P PPL FR B4 59 595 59586 5901 43 Europe/Paris 2012-01-18
-2973188 Templemars Templemars Templemars 50.57387 3.05436 P PPL FR B4 59 595 59585 3513 34 Europe/Paris 2012-01-18
-2973192 Teloché Teloche Teloche,Teloché 47.88819 0.27086 P PPL FR B5 72 723 72350 2786 70 Europe/Paris 2012-01-18
-2973197 Telgruc-sur-Mer Telgruc-sur-Mer Telgruc,Telgruc-sur-Mer,Terrug 48.23333 -4.35 P PPL FR A2 29 292 29280 1944 94 Europe/Paris 2012-01-18
-2973219 Teillé Teille Teille,Teillé,Tilhieg 47.4617 -1.2781 P PPL FR B5 44 444 44202 1407 40 Europe/Paris 2007-11-03
-2973257 Tavers Tavers Tavers 47.75921 1.61267 P PPL FR A3 45 452 45317 1287 98 Europe/Paris 2012-01-18
-2973258 Taverny Taverny Taverny 49.02542 2.21691 P PPL FR A8 95 953 95607 27271 82 Europe/Paris 2012-01-18
-2973264 Tavel Tavel Tavel 44.0127 4.69835 P PPL FR A9 30 302 30326 1668 108 Europe/Paris 2012-01-18
-2973267 Tavaux Tavaux Tavaux 47.03376 5.405 P PPL FR A6 39 391 39526 4066 192 Europe/Paris 2012-01-18
-2973272 Tauxigny Tauxigny Tauxigny 47.21337 0.83479 P PPL FR A3 37 373 37254 1145 89 Europe/Paris 2012-01-18
-2973293 Tauriac Tauriac 45.04915 -0.50048 P PPL FR 97 33 331 33525 1406 18 Europe/Paris 2008-04-22
-2973297 Taupont Taupont Talbont,Taupont 47.95961 -2.43933 P PPL FR A2 56 563 56249 2051 80 Europe/Paris 2012-01-18
-2973301 Taulignan Taulignan Taulignan 44.44425 4.97971 P PPL FR B9 26 262 26348 1685 279 Europe/Paris 2012-01-18
-2973303 Taulé Taule Taole,Taule,Taulé 48.6 -3.9 P PPL FR A2 29 293 29279 2941 82 Europe/Paris 2012-01-18
-2973311 Tatinghem Tatinghem Tatinghem,Tatinghen 50.74317 2.20724 P PPL FR B4 62 625 62807 1791 63 Europe/Paris 2012-01-18
-2973317 Tassin-la-Demi-Lune Tassin-la-Demi-Lune Tassin,Tassin la Demi Lena,Tassin-la-Demi-Lune,Tassin-la-Lune,Tassin-la-Lûne 45.75499 4.78812 P PPL FR B9 69 691 69244 16920 262 Europe/Paris 2012-01-18
-2973338 Tartas Tartas 43.83248 -0.80895 P PPL FR 97 40 401 40313 3105 19 Europe/Paris 2008-07-24
-2973355 Tarnos Tarnos Tarnose 43.5417 -1.46281 P PPL FR 97 40 401 40312 11554 47 Europe/Paris 2008-07-27
-2973365 Targon Targon Targon 44.73495 -0.26351 P PPL FR 97 33 333 33523 1837 68 Europe/Paris 2012-01-18
-2973385 Tarbes Tarbes Tarba,Tarbes,tarubu,タルブ 43.23333 0.08333 P PPLA2 FR B3 65 653 65440 52106 315 Europe/Paris 2011-11-02
-2973392 Tarascon-sur-Ariège Tarascon-sur-Ariege Tarascon,Tarascon-Ussat,Tarascon-sur-Ariege,Tarascon-sur-Ariège 42.84545 1.60332 P PPL FR B3 09 091 09306 3644 478 Europe/Paris 2012-01-18
-2973393 Tarascon Tarascon Barra,Marat,Tarascon,Tarascuni,tarasukon,タラスコン 43.80583 4.66028 P PPL FR B8 13 132 13108 14735 16 Europe/Paris 2011-11-02
-2973394 Tarare Tarare Tarare 45.89761 4.43272 P PPL FR B9 69 692 69243 10806 391 Europe/Paris 2012-01-18
-2973396 Taradeau Taradeau Taradeau 43.45428 6.42776 P PPL FR B8 83 831 83134 1754 77 Europe/Paris 2012-01-18
-2973399 Taponnat-Fleurignac Taponnat-Fleurignac Taponnat,Taponnat-Fleurignac 45.77868 0.40932 P PPL FR B7 16 161 16379 1261 111 Europe/Paris 2012-01-18
-2973418 Tanneron Tanneron Tanneron 43.59083 6.87495 P PPL FR B8 83 831 83133 1410 371 Europe/Paris 2012-01-18
-2973421 Tanlay Tanlay Tanlay 47.84488 4.08504 P PPL FR A1 89 892 89407 1143 159 Europe/Paris 2012-01-18
-2973424 Taninges Taninges 46.10883 6.59231 P PPL FR B9 74 742 74276 3471 670 Europe/Paris 2007-03-26
-2973437 Tancarville Tancarville Tancarville 49.4855 0.45765 P PPL FR A7 76 762 76684 1267 88 Europe/Paris 2012-01-18
-2973457 Taluyers Taluyers Taluyers 45.63991 4.72194 P PPL FR B9 69 691 69241 1982 340 Europe/Paris 2012-01-18
-2973476 Talmas Talmas Talmas 50.03049 2.32554 P PPL FR B6 80 802 80746 1068 136 Europe/Paris 2012-01-18
-2973480 Talloires Talloires Talloires 45.84036 6.21416 P PPL FR B9 74 741 74275 1604 469 Europe/Paris 2012-01-18
-2973483 Tallende Tallende Tallende 45.67126 3.12799 P PPL FR 98 63 632 63425 1223 407 Europe/Paris 2012-01-18
-2973485 Tallard Tallard Tallard 44.46128 6.05504 P PPL FR B8 05 052 05170 1839 609 Europe/Paris 2012-01-18
-2973492 Talensac Talensac Talensac,Talenseg 48.10847 -1.92829 P PPL FR A2 35 353 35331 2250 78 Europe/Paris 2012-01-18
-2973495 Talence Talence Talenca,Talence,Talença 44.80477 -0.59543 P PPL FR 97 33 332 33522 42579 21 Europe/Paris 2012-01-18
-2973510 Talant Talant Talant 47.33694 5.00888 P PPL FR A1 21 212 21617 12082 311 Europe/Paris 2012-01-18
-2973511 Talange Talange Talange 49.2367 6.17282 P PPL FR B2 57 574 57663 8175 162 Europe/Paris 2012-01-18
-2973524 Taissy Taissy 49.21509 4.09406 P PPL FR A4 51 513 51562 2164 82 Europe/Paris 2008-02-04
-2973530 Taintrux Taintrux Taintrux 48.24944 6.89963 P PPL FR B2 88 883 88463 1398 373 Europe/Paris 2012-01-18
-2973551 Taillecourt Taillecourt Taillecourt 47.49521 6.85442 P PPL FR A6 25 252 25555 1038 339 Europe/Paris 2012-01-18
-2973564 Taillades Taillades Taillades 43.83592 5.09216 P PPL FR B8 84 841 84131 1910 110 Europe/Paris 2012-01-18
-2973579 Taden Taden Taden 48.4753 -2.01946 P PPL FR A2 22 221 22339 1909 49 Europe/Paris 2012-01-18
-2973582 Tacoignières Tacoignieres Tacoignieres,Tacoignières 48.83619 1.67501 P PPL FR A8 78 781 78605 1003 145 Europe/Paris 2012-01-18
-2973597 Tabanac Tabanac Coteau-Libre,Tabanac 44.72059 -0.40513 P PPL FR 97 33 332 33518 1072 77 Europe/Paris 2012-01-18
-2973613 Suze-la-Rousse Suze-la-Rousse Suze,Suze-la-Rousse 44.28788 4.84346 P PPL FR B9 26 262 26345 1678 101 Europe/Paris 2012-01-18
-2973626 Sussargues Sussargues Sussargues 43.7125 4.0031 P PPL FR A9 34 343 34307 2326 81 Europe/Paris 2010-12-24
-2973637 Surzur Surzur Surzhur,Surzur 47.5785 -2.62892 P PPL FR A2 56 563 56248 2597 26 Europe/Paris 2012-01-18
-2973639 Sury-le-Comtal Sury-le-Comtal Sury,Sury-la-Chaux,Sury-le-Comtal 45.5342 4.18642 P PPL FR B9 42 421 42304 5046 378 Europe/Paris 2012-01-18
-2973645 Survilliers Survilliers Survilliers 49.09712 2.54449 P PPL FR A8 95 952 95604 3869 142 Europe/Paris 2012-01-18
-2973655 Surtainville Surtainville Surtainville 49.45977 -1.81298 P PPL FR 99 50 502 50585 1093 12 Europe/Paris 2012-01-18
-2973672 Surgères Surgeres Surgeres,Surgères 46.1082 -0.75148 P PPL FR B7 17 172 17434 5888 31 Europe/Paris 2012-01-18
-2973675 Suresnes Suresnes Siren,Sjuren,Suresnes,Сирен,Сюрен 48.87143 2.22929 P PPL FR A8 92 922 92073 44697 35 Europe/Paris 2012-01-18
-2973686 Surbourg Surbourg 48.91009 7.84716 P PPL FR C1 67 677 67487 1623 186 Europe/Paris 2007-07-13
-2973697 Sundhouse Sundhouse Sundhausen,Sundhouse 48.25148 7.60359 P PPL FR C1 67 675 67486 1230 169 Europe/Paris 2012-01-18
-2973698 Sundhoffen Sundhoffen 48.04263 7.4132 P PPL FR C1 68 682 68331 2019 193 Europe/Paris 2007-07-07
-2973701 Sumène Sumene Sumene,Sumène 43.98057 3.71574 P PPL FR A9 30 303 30325 1620 201 Europe/Paris 2012-01-18
-2973702 Sulniac Sulniac Sulniac,Sulnieg 47.67375 -2.57136 P PPL FR A2 56 563 56247 2386 128 Europe/Paris 2012-01-18
-2973703 Sully-sur-Loire Sully-sur-Loire Sully,Sully-sur-Loire 47.76372 2.37238 P PPL FR A3 45 452 45315 6285 116 Europe/Paris 2012-01-18
-2973720 Suippes Suippes Suippes 49.12886 4.53446 P PPL FR A4 51 511 51559 4241 135 Europe/Paris 2012-01-18
-2973735 Suèvres Suevres Suevres,Suèvres 47.66655 1.46153 P PPL FR A3 41 411 41252 1434 82 Europe/Paris 2012-01-18
-2973745 Sucy-en-Brie Sucy-en-Brie Sucy,Sucy-en-Brie 48.76872 2.53474 P PPL FR A8 94 941 94071 25014 97 Europe/Paris 2012-01-18
-2973748 Sucé-sur-Erdre Suce-sur-Erdre 47.33333 -1.53333 P PPL FR B5 44 442 44201 6335 22 Europe/Paris 2007-11-21
-2973783 Strasbourg Strasbourg Argentoratum,Estrasburg,Estrasburgo,Estrasburgo - Strasbourg,Lungsod ng Strasbourg,Straatsburg,Strasborg,Strasbourg,Strasbourgo,Strasbura,Strasburas,Strasburg,Strasburgo,Strasburgu,Strasburk,Strasbôrg,Strasbūra,Strasbūras,Strassborg,Strassbourg,Strassburg,Straszburg,Strazbur,Strazburg,Straßburg,Stroossbuerg,seuteulaseubuleu,si te la si bao,strasabarga,strasbwrgh,strsbwrg,sutorasuburu,Štrasburg,Štrasburk,Στρασβούργο,Стразбур,Страсбург,שטרסבורג,ستراسبورغ,स्ट्रासबर्ग,ストラスブール,斯特拉斯堡,스트라스부르 48.58342 7.74296 P PPLA FR C1 67 678 67482 274845 151 Europe/Paris 2011-12-08
-2973787 Stotzheim Stotzheim Stotzheim 48.37826 7.48997 P PPL FR C1 67 675 67481 1014 171 Europe/Paris 2012-01-18
-2973788 Stosswihr Stosswihr Stosswihr 48.05108 7.11001 P PPL FR C1 68 682 68329 1366 434 Europe/Paris 2012-01-18
-2973795 Stiring-Wendel Stiring-Wendel Steringen-Wendel,Stieringen-Wendel,Stiring-Wendel,Strying,Styring,Wendel 49.2 6.93333 P PPL FR B2 57 573 57660 13085 228 Europe/Paris 2012-01-18
-2973798 Still Still Still 48.54982 7.40444 P PPL FR C1 67 673 67480 1604 215 Europe/Paris 2011-02-14
-2973809 Stenay Stenay Stenay 49.49489 5.18606 P PPL FR B2 55 553 55502 3115 169 Europe/Paris 2011-01-03
-2973818 Steinbourg Steinbourg 48.77028 7.41354 P PPL FR C1 67 674 67478 1939 193 Europe/Paris 2007-07-10
-2973819 Steinbach Steinbach 47.8214 7.15279 P PPL FR C1 68 686 68322 1296 359 Europe/Paris 2007-07-07
-2973821 Steenwerck Steenwerck Steenwerck 50.70199 2.77829 P PPL FR B4 59 594 59581 3331 18 Europe/Paris 2012-01-18
-2973823 Steenvoorde Steenvoorde Steenvoorde 50.81046 2.58244 P PPL FR B4 59 594 59580 4175 25 Europe/Paris 2012-01-18
-2973825 Steene Steene Steene 50.95228 2.36812 P PPL FR B4 59 594 59579 1212 3 Europe/Paris 2012-01-18
-2973826 Steenbecque Steenbecque Steenbecque 50.67421 2.48442 P PPL FR B4 59 594 59578 1674 25 Europe/Paris 2012-01-18
-2973841 Stains Stains Stains 48.95 2.38333 P PPL FR A8 93 933 93072 32601 39 Europe/Paris 2012-01-18
-2973843 Staffelfelden Staffelfelden 47.82647 7.25235 P PPL FR C1 68 686 68321 3709 250 Europe/Paris 2007-07-07
-2973847 Spycker Spycker Spycker 50.96915 2.32184 P PPL FR B4 59 594 59576 1350 2 Europe/Paris 2012-01-18
-2973857 Spicheren Spicheren Speicheren,Spicheren,Spieherer Burg 49.19266 6.96727 P PPL FR B2 57 573 57659 3393 309 Europe/Paris 2012-01-18
-2973858 Spézet Spezet Speied,Spezet,Spézet 48.2 -3.71667 P PPL FR A2 29 292 29278 1881 89 Europe/Paris 2012-01-18
-2973863 Spéracèdes Speracedes Speracedes,Spéracèdes 43.64364 6.85279 P PPL FR B8 06 061 06137 1007 348 Europe/Paris 2012-01-18
-2973869 Spay Spay Spay 47.92384 0.15258 P PPL FR B5 72 721 72344 2545 42 Europe/Paris 2012-01-18
-2973875 Soyons Soyons Soyons 44.88613 4.85059 P PPL FR B9 07 073 07316 1826 122 Europe/Paris 2012-01-18
-2973882 Soyaux Soyaux Soyaux 45.65 0.2 P PPL FR B7 16 161 16374 11220 126 Europe/Paris 2012-01-18
-2973897 Souvigny Souvigny Souvigny 46.53352 3.19247 P PPL FR 98 03 032 03275 1987 244 Europe/Paris 2012-01-18
-2973918 Soustons Soustons Soustons 43.75328 -1.3278 P PPL FR 97 40 401 40310 6738 12 Europe/Paris 2012-01-18
-2973924 Soussans Soussans Soussans 45.05619 -0.69916 P PPL FR 97 33 334 33517 1460 13 Europe/Paris 2012-01-18
-2973936 Sourzac Sourzac Sourzac 45.04978 0.39598 P PPL FR 97 24 243 24543 1082 87 Europe/Paris 2012-01-18
-2973938 Sours Sours Sours 48.41043 1.59889 P PPL FR A3 28 281 28380 2071 151 Europe/Paris 2012-01-18
-2973944 Sourdun Sourdun Sourdun 48.53688 3.352 P PPL FR A8 77 773 77459 1525 150 Europe/Paris 2012-01-18
-2973949 Sourdeval Sourdeval Sourdeval 48.72312 -0.92223 P PPL FR 99 50 501 50582 3127 213 Europe/Paris 2012-01-18
-2973953 Sourcieux-les-Mines Sourcieux-les-Mines Sourcieux,Sourcieux-les-Mines 45.80566 4.62358 P PPL FR B9 69 691 69177 1866 403 Europe/Paris 2012-01-18
-2973959 Souraïde Souraide Mendialte,Souraide,Souraïde,Zuraide 43.34154 -1.47559 P PPL FR 97 64 641 64527 1161 71 Europe/Paris 2012-01-18
-2973962 Souprosse Souprosse Souprosse 43.78869 -0.71035 P PPL FR 97 40 401 40309 1157 50 Europe/Paris 2012-01-18
-2973963 Souppes-sur-Loing Souppes-sur-Loing Souppes,Souppes-sur-Loing 48.18297 2.73521 P PPL FR A8 77 774 77458 6002 69 Europe/Paris 2012-01-18
-2973973 Soumoulou Soumoulou 43.26667 -0.18333 P PPL FR 97 64 643 64526 1090 301 Europe/Paris 2006-04-30
-2973990 Soultz-sous-Forêts Soultz-sous-Forets Soultz,Soultz-sous-Forets,Soultz-sous-Forêts 48.93586 7.88307 P PPL FR C1 67 677 67474 2662 146 Europe/Paris 2012-01-18
-2973991 Soultzmatt Soultzmatt 47.96188 7.23759 P PPL FR C1 68 683 68318 2183 258 Europe/Paris 2007-07-07
-2973993 Soultz-Haut-Rhin Soultz-Haut-Rhin Soultz,Soultz-Haut-Rhin 47.8874 7.23042 P PPL FR C1 68 683 68315 6963 269 Europe/Paris 2012-01-18
-2973994 Soultzeren Soultzeren Soultzeren,Soultzern 48.06213 7.10214 P PPL FR C1 68 682 68317 1145 505 Europe/Paris 2012-01-18
-2974007 Soullans Soullans 46.79624 -1.90106 P PPL FR B5 85 853 85284 3676 10 Europe/Paris 2008-07-31
-2974012 Souligné-sous-Ballon Souligne-sous-Ballon Souligne,Souligne-sous-Ballon,Souligné,Souligné-sous-Ballon 48.13758 0.23572 P PPL FR B5 72 723 72340 1060 71 Europe/Paris 2012-01-18
-2974022 Soulgé-sur-Ouette Soulge-sur-Ouette Soulge,Soulge-le-Bruant,Soulgé,Soulgé-le-Bruant 48.06667 -0.56667 P PPL FR B5 53 532 53262 1018 116 Europe/Paris 2007-08-31
-2974047 Soulaire-et-Bourg Soulaire-et-Bourg Soulaire,Soulaire-et-Bourg 47.57896 -0.55232 P PPL FR B5 49 491 49339 1257 56 Europe/Paris 2012-01-18
-2974048 Soulaines-sur-Aubance Soulaines-sur-Aubance Soulaines,Soulaines-sur-Aubance 47.36381 -0.52265 P PPL FR B5 49 491 49338 1249 52 Europe/Paris 2012-01-18
-2974056 Soulac-sur-Mer Soulac-sur-Mer Soulac,Soulac-sur-Mer 45.51068 -1.12524 P PPL FR 97 33 334 33514 3021 10 Europe/Paris 2008-08-20
-2974066 Souillac Souillac Souillac,Trente-un-Mai 44.8972 1.47224 P PPL FR B3 46 463 46309 3947 118 Europe/Paris 2012-01-18
-2974086 Soufflenheim Soufflenheim Sablono:TabelKapoLauCarta,Soufflenheim,Ŝablono:TabelKapoLaŭĈarta 48.83026 7.96268 P PPL FR C1 67 672 67472 4648 129 Europe/Paris 2007-07-13
-2974087 Souffelweyersheim Souffelweyersheim Souffelweyersheim 48.6354 7.74141 P PPL FR C1 67 676 67471 6344 142 Europe/Paris 2011-02-14
-2974089 Souesmes Souesmes Souesmes 47.45638 2.17495 P PPL FR A3 41 413 41249 1155 127 Europe/Paris 2012-01-18
-2974091 Soues Soues Soues 43.20736 0.09874 P PPL FR B3 65 653 65433 3192 342 Europe/Paris 2012-01-18
-2974108 Soudan Soudan Saoudan,Soudan 47.73778 -1.30566 P PPL FR B5 44 441 44199 2199 78 Europe/Paris 2012-01-18
-2974115 Soucy Soucy Soucy 48.24956 3.32385 P PPL FR A1 89 893 89399 1415 94 Europe/Paris 2012-01-18
-2974118 Soucieu-en-Jarrest Soucieu-en-Jarrest Soucieu,Soucieu-en-Jarez,Soucieu-en-Jarrest 45.68017 4.70334 P PPL FR B9 69 691 69176 3395 346 Europe/Paris 2012-01-18
-2974120 Soucht Soucht Soucht 48.95888 7.33488 P PPL FR B2 57 576 57658 1227 280 Europe/Paris 2012-01-18
-2974123 Souchez Souchez Souchez 50.39291 2.73984 P PPL FR B4 62 621 62801 2222 80 Europe/Paris 2012-01-18
-2974130 Soucelles Soucelles Soucelles 47.56848 -0.41819 P PPL FR B5 49 491 49337 2297 22 Europe/Paris 2012-01-18
-2974135 Soubise Soubise La Regeneration,La Regénération,Soubise 45.92395 -1.00938 P PPL FR B7 17 172 17429 3068 16 Europe/Paris 2012-01-18
-2974146 Soual Soual Soual,Soual-et-lestap 43.5553 2.11679 P PPL FR B3 81 812 81289 2098 171 Europe/Paris 2012-01-18
-2974153 Sotteville-lès-Rouen Sotteville-les-Rouen Sottevil'-le-Ruan,Sotteville,Sotteville-les-Rouen,Sotteville-lès-Rouen,Sottville-les-Rouen,Соттевиль-ле-Руан 49.40972 1.09006 P PPL FR A7 76 763 76681 30619 16 Europe/Paris 2012-01-18
-2974155 Sottevast Sottevast Sottevast 49.52374 -1.59169 P PPL FR 99 50 502 50579 1232 41 Europe/Paris 2012-01-18
-2974162 Sospel Sospel Sospel 43.87847 7.4484 P PPL FR B8 06 062 06136 3034 347 Europe/Paris 2012-01-18
-2974175 Sornay Sornay Sornay 46.63023 5.17999 P PPL FR A1 71 714 71528 1695 178 Europe/Paris 2012-01-18
-2974185 Sorigny Sorigny Sorigny 47.24329 0.6952 P PPL FR A3 37 372 37250 2105 97 Europe/Paris 2012-01-18
-2974188 Sorgues Sorgues Sorgues 44.01023 4.87381 P PPL FR B8 84 842 84129 18681 30 Europe/Paris 2011-11-02
-2974193 Sorges Sorges Sorges,Surges 45.30563 0.87328 P PPL FR 97 24 243 24540 1165 178 Europe/Paris 2012-01-18
-2974195 Sorèze Soreze Soreze,Sorèze 43.45241 2.06799 P PPL FR B3 81 812 81288 2435 285 Europe/Paris 2012-01-18
-2974197 Sorel-Moussel Sorel-Moussel Montagne-du-Droit-de-l'Homme,Sorel-Moussel 48.83391 1.36699 P PPL FR A3 28 283 28377 1526 83 Europe/Paris 2012-01-18
-2974203 Sureda Sureda Sorede,Sorède,Sureda 42.53069 2.95708 P PPL FR A9 66 661 66196 2941 76 Europe/Paris 2011-11-02
-2974215 Sorbiers Sorbiers Sorbier,Sorbiers 45.48814 4.44933 P PPL FR B9 42 423 42302 7549 552 Europe/Paris 2012-01-18
-2974235 Soorts-Hossegor Soorts-Hossegor Soorts,Soorts-Hossegor,Soorts-Hossegort 43.6649 -1.39717 P PPL FR 97 40 401 40304 3615 15 Europe/Paris 2012-01-18
-2974236 Sonzay Sonzay Sonzay 47.52686 0.46202 P PPL FR A3 37 372 37249 1172 104 Europe/Paris 2012-01-18
-2974245 Sonnaz Sonnaz Sonnaz 45.6216 5.9184 P PPL FR B9 73 732 73288 1323 299 Europe/Paris 2012-01-18
-2974246 Sonnay Sonnay Sonnay 45.3557 4.90637 P PPL FR B9 38 383 38496 1035 273 Europe/Paris 2012-01-18
-2974257 Songeons Songeons Songeons 49.54916 1.85361 P PPL FR B6 60 601 60623 1268 115 Europe/Paris 2012-01-18
-2974263 Sonchamp Sonchamp Sonchamp 48.5759 1.87753 P PPL FR A8 78 782 78601 1625 139 Europe/Paris 2012-01-18
-2974273 Sommières Sommieres Sommieres,Sommières 43.78534 4.08973 P PPL FR A9 30 302 30321 4003 33 Europe/Paris 2012-01-18
-2974324 Somain Somain Somain 50.35961 3.28108 P PPL FR B4 59 593 59574 12310 26 Europe/Paris 2012-01-18
-2974336 Solliès-Ville Sollies-Ville Sollies-Ville,Solliès-Ville 43.18228 6.03858 P PPL FR B8 83 832 83132 2222 226 Europe/Paris 2012-01-18
-2974337 Solliès-Toucas Sollies-Toucas Sollies-Toucas,Solliès-Toucas 43.20821 6.02496 P PPL FR B8 83 832 83131 4751 116 Europe/Paris 2012-01-18
-2974338 Solliès-Pont Sollies-Pont Sollies-Pont,Solliès-Pont 43.18978 6.0432 P PPL FR B8 83 832 83130 12052 80 Europe/Paris 2012-01-18
-2974347 Solignac-sur-Loire Solignac-sur-Loire Solignac,Solignac-sur-Loire 44.96819 3.88529 P PPL FR 98 43 432 43241 1108 853 Europe/Paris 2012-01-18
-2974349 Solignac Solignac Solenhac,Solignac 45.75528 1.27563 P PPL FR B1 87 872 87192 1417 241 Europe/Paris 2012-01-18
-2974352 Soliers Soliers Soliers 49.1344 -0.29613 P PPL FR 99 14 142 14675 1818 34 Europe/Paris 2012-01-18
-2974354 Solgne Solgne Solgne 48.96577 6.29635 P PPL FR B2 57 574 57655 1076 256 Europe/Paris 2012-01-18
-2974360 Solesmes Solesmes Solesmes 50.18468 3.49799 P PPL FR B4 59 592 59571 4963 76 Europe/Paris 2012-01-18
-2974361 Solesmes Solesmes Solesmes 47.85009 -0.29806 P PPL FR B5 72 721 72336 1325 48 Europe/Paris 2012-01-18
-2974362 Solers Solers Solers 48.6592 2.71617 P PPL FR A8 77 772 77457 1357 96 Europe/Paris 2012-01-18
-2974378 Solaize Solaize Solaize 45.63333 4.85 P PPL FR B9 69 691 69296 2397 173 Europe/Paris 2007-11-21
-2974383 Soisy-sur-Seine Soisy-sur-Seine Soisy,Soisy-sur-Seine 48.64875 2.45223 P PPL FR A8 91 912 91600 7552 59 Europe/Paris 2012-01-18
-2974384 Soisy-sur-École Soisy-sur-Ecole Soisy,Soisy-Marat,Soisy-sur-Ecole,Soisy-sur-École 48.47637 2.49301 P PPL FR A8 91 912 91599 1395 75 Europe/Paris 2012-01-18
-2974385 Soisy-sous-Montmorency Soisy-sous-Montmorency Emile,Mont-Emile,Soisy,Soisy-sous-Montmorency 48.98813 2.30156 P PPL FR A8 95 952 95598 17436 49 Europe/Paris 2012-01-18
-2974389 Soissons Soissons Soissons,Suasson,sowason,Суассон,ソワソン 49.38167 3.32361 P PPLA3 FR B6 02 024 02722 31100 50 Europe/Paris 2011-11-02
-2974391 Soings-en-Sologne Soings-en-Sologne Soings,Soings-en-Sologne 47.41289 1.52452 P PPL FR A3 41 413 41247 1357 111 Europe/Paris 2012-01-18
-2974396 Soignolles-en-Brie Soignolles-en-Brie Soignolles,Soignolles-en-Brie 48.6535 2.69968 P PPL FR A8 77 772 77455 2138 65 Europe/Paris 2012-01-18
-2974410 Socx Socx Socx,Soex 50.93571 2.42422 P PPL FR B4 59 594 59570 1034 31 Europe/Paris 2012-01-18
-2974413 Sochaux Sochaux Sochaux 47.50808 6.82748 P PPL FR A6 25 252 25547 4500 324 Europe/Paris 2012-01-18
-2974418 Smarves Smarves Smarves 46.51078 0.3498 P PPL FR B7 86 863 86263 2300 123 Europe/Paris 2012-01-18
-2974423 Sizun Sizun Sizun 48.4 -4.08333 P PPL FR A2 29 293 29277 1970 103 Europe/Paris 2012-01-18
-2974424 Sixt-sur-Aff Sixt-sur-Aff Seizh,Sixt,Sixt-sur-Aff 47.77648 -2.07867 P PPL FR A2 35 352 35328 2093 45 Europe/Paris 2012-01-18
-2974427 Six-Fours-les-Plages Six-Fours-les-Plages Six Fours 43.1 5.85 P PPL FR FR B8 83 832 83129 34779 73 Europe/Paris 2011-11-02
-2974446 Sisteron Sisteron Sisteron 44.18758 5.94623 P PPL FR B8 04 044 04209 7605 487 Europe/Paris 2012-01-18
-2974450 Sissonne Sissonne Sissonne 49.57107 3.89369 P PPL FR B6 02 022 02720 2564 76 Europe/Paris 2012-01-18
-2974461 Sireuil Sireuil Sireuil 45.61667 0.01667 P PPL FR B7 16 161 16370 1206 42 Europe/Paris 2012-01-18
-2974485 Sion-les-Mines Sion-les-Mines Hezin-ar-Mengleuziou,Hezin-ar-Mengleuzioù,Sion,Sion-les-Mines 47.73476 -1.5919 P PPL FR B5 44 441 44197 1478 68 Europe/Paris 2012-01-18
-2974494 Sin-le-Noble Sin-le-Noble Sin,Sin-le-Noble,Sin-les-Douai,Sin-lès-Douai 50.36159 3.13113 P PPL FR B4 59 593 59569 17682 17 Europe/Paris 2012-01-18
-2974506 Sinceny Sinceny Sincency,Sinceny 49.59619 3.24679 P PPL FR B6 02 022 02719 2113 71 Europe/Paris 2012-01-18
-2974519 Simiane-Collongue Simiane-Collongue Collongue,Simiane,Simiane-Collongue 43.43067 5.43454 P PPL FR B8 13 131 13107 5521 229 Europe/Paris 2011-01-18
-2974524 Simandres Simandres Simandres 45.61979 4.87087 P PPL FR B9 69 691 69295 1323 199 Europe/Paris 2012-01-18
-2974525 Simandre Simandre Simandre 46.62364 4.98777 P PPL FR A1 71 714 71522 1285 206 Europe/Paris 2012-01-18
-2974534 Silly-le-Long Silly-le-Long Silly,Silly-le-Long 49.10749 2.79226 P PPL FR B6 60 604 60619 1155 125 Europe/Paris 2012-01-18
-2974540 Sillingy Sillingy Sillingy 45.94542 6.03392 P PPL FR B9 74 741 74272 3196 503 Europe/Paris 2012-01-18
-2974547 Sillery Sillery Sillery 49.19822 4.13244 P PPL FR A4 51 513 51536 1702 89 Europe/Paris 2012-01-18
-2974550 Sillé-le-Guillaume Sille-le-Guillaume Sille,Sille-le-Guillaume,Sillee-la-Montagne,Sillé,Sillé-le-Guillaume,Sillée-la-Montagne 48.18266 -0.12642 P PPL FR B5 72 722 72334 2747 161 Europe/Paris 2012-01-18
-2974556 Sillans Sillans Sillans 45.34068 5.38859 P PPL FR B9 38 381 38490 1528 403 Europe/Paris 2012-01-18
-2974575 Sigolsheim Sigolsheim Sigolsheim 48.13474 7.30137 P PPL FR C1 68 685 68310 1038 212 Europe/Paris 2012-01-18
-2974579 Signy-le-Petit Signy-le-Petit Signy,Signy-le-Petit 49.90277 4.2799 P PPL FR A4 08 081 08420 1287 247 Europe/Paris 2012-01-18
-2974586 Signes Signes Signes 43.2901 5.86232 P PPL FR B8 83 832 83127 2202 341 Europe/Paris 2012-01-18
-2974591 Sigean Sigean Sigean 43.02776 2.97916 P PPL FR A9 11 113 11379 4347 18 Europe/Paris 2012-01-18
-2974608 Sierentz Sierentz Sierentz 47.65852 7.45426 P PPL FR C1 68 684 68309 2559 254 Europe/Paris 2012-01-18
-2974609 Sierck-les-Bains Sierck-les-Bains Sierck,Sierck-les-Bains 49.43992 6.36057 P PPL FR B2 57 577 57650 1926 156 Europe/Paris 2012-01-18
-2974629 Sibiril Sibiril Sibiril,Sibirill 48.66667 -4.06667 P PPL FR A2 29 293 29276 1207 50 Europe/Paris 2012-01-18
-2974640 Sézanne Sezanne Sezanne,Sézanne 48.72047 3.72339 P PPL FR A4 51 512 51535 5748 130 Europe/Paris 2012-01-18
-2974643 Seyssuel Seyssuel Seyssuel 45.56006 4.8532 P PPL FR B9 38 383 38487 2044 297 Europe/Paris 2012-01-18
-2974644 Seyssins Seyssins Seyssins 45.15513 5.67921 P PPL FR B9 38 381 38486 7408 357 Europe/Paris 2012-01-18
-2974645 Seyssinet-Pariset Seyssinet-Pariset Seyssinet,Seyssinet-Pariset 45.17676 5.69387 P PPL FR B9 38 381 38485 13473 222 Europe/Paris 2012-01-18
-2974648 Seysses Seysses 43.49801 1.31081 P PPL FR B3 31 311 31547 6466 179 Europe/Paris 2009-10-26
-2974655 Seynod Seynod Seynod 45.88549 6.08831 P PPL FR B9 74 741 74268 18590 542 Europe/Paris 2012-01-18
-2974661 Seyne Seyne Seyne,Seyne-les-Alpes 44.35042 6.35634 P PPL FR B8 04 043 04205 1438 1189 Europe/Paris 2012-01-18
-2974675 Sévrier Sevrier Sevrier,Sévrier 45.86415 6.14026 P PPL FR B9 74 741 74267 4014 459 Europe/Paris 2012-01-18
-2974676 Sevrey Sevrey Sevrey,Sezrey 46.73825 4.8403 P PPL FR A1 71 712 71520 1238 192 Europe/Paris 2012-01-18
-2974677 Sèvres-Anxaumont Sevres-Anxaumont Sevres,Sevres-Anxaumont,Sèvres,Sèvres-Anxaumont 46.57036 0.46602 P PPL FR B7 86 863 86261 1957 115 Europe/Paris 2012-01-18
-2974678 Sèvres Sevres Sevr,Sevres,Sèvres,sebeuleu,sevuru,Севр,セーヴル,세브르 48.82292 2.21757 P PPL FR A8 92 923 92072 23724 92 Europe/Paris 2012-01-18
-2974681 Sevran Sevran Sevran 48.94472 2.52746 P PPL FR A8 93 932 93071 47334 55 Europe/Paris 2012-01-18
-2974691 Sévignac Sevignac Sevignac,Sevinieg,Sévignac 48.33297 -2.33915 P PPL FR A2 22 221 22337 1077 69 Europe/Paris 2012-01-18
-2974699 Sévérac-le-Château Severac-le-Chateau Severac,Severac-la-Montagne,Severac-le-Chateau,Sévérac,Sévérac-la-Montagne,Sévérac-le-Château 44.32429 3.05929 P PPL FR B3 12 121 12270 2565 681 Europe/Paris 2012-01-18
-2974701 Sévérac Severac Severac,Severeg,Sévérac 47.55008 -2.07496 P PPL FR B5 44 443 44196 1288 23 Europe/Paris 2012-01-18
-2974710 Seurre Seurre Seurre 46.99923 5.15138 P PPL FR A1 21 211 21607 2804 180 Europe/Paris 2012-01-18
-2974717 Seugy Seugy Seugy 49.12182 2.39377 P PPL FR A8 95 952 95594 1108 76 Europe/Paris 2012-01-18
-2974733 Sète Sete Cette,Set,Sete,Sète,Сет 43.40176 3.6966 P PPL FR A9 34 343 34301 40736 5 10 Europe/Paris 2012-02-02
-2974745 Servon-sur-Vilaine Servon-sur-Vilaine Servon,Servon-sur-Vilaine 48.12114 -1.45971 P PPL FR A2 35 353 35327 3328 48 Europe/Paris 2012-01-18
-2974747 Servon Servon Servon 48.71662 2.58737 P PPL FR A8 77 772 77450 2881 89 Europe/Paris 2012-01-18
-2974775 Servian Servian Servian 43.42716 3.30032 P PPL FR A9 34 341 34300 3786 72 Europe/Paris 2012-01-18
-2974782 Servas Servas Servas 46.1329 5.16538 P PPL FR B9 01 012 01405 1077 268 Europe/Paris 2012-01-18
-2974799 Serris Serris Serris 48.84391 2.78701 P PPL FR A8 77 775 77449 2530 130 Europe/Paris 2012-01-18
-2974809 Serrières Serrieres Port-du-Mezenc,Port-du-Mézenc,Serrieres,Serrieres-les-Saint-Sornin,Serrières,Serrières-les-Saint-Sornin 45.31884 4.76342 P PPL FR B9 07 073 07313 1171 142 Europe/Paris 2012-01-18
-2974821 Serres-Castet Serres-Castet Serres,Serres-Castet 43.38333 -0.35 P PPL FR 97 64 643 64519 3290 224 Europe/Paris 2011-11-02
-2974831 Serres Serres Serres 44.42865 5.71581 P PPL FR B8 05 052 05166 1291 663 Europe/Paris 2012-01-18
-2974839 Serre-les-Sapins Serre-les-Sapins Serre 47.25 5.93333 P PPL FR A6 25 251 25542 1565 280 Europe/Paris 2007-11-19
-2974867 Serquigny Serquigny Serquigny 49.10943 0.71016 P PPL FR A7 27 272 27622 2216 81 Europe/Paris 2012-01-18
-2974868 Serqueux Serqueux Serqueux 49.63202 1.54006 P PPL FR A7 76 761 76672 1016 167 Europe/Paris 2012-01-18
-2974870 Serques Serques Serques 50.79338 2.20134 P PPL FR B4 62 625 62792 1061 8 Europe/Paris 2012-01-18
-2974873 Serpaize Serpaize Serpaize 45.55708 4.92062 P PPL FR B9 38 383 38484 1352 305 Europe/Paris 2012-01-18
-2974879 Sernhac Sernhac Sernhac 43.91116 4.55039 P PPL FR A9 30 302 30317 1331 76 Europe/Paris 2012-01-18
-2974886 Sermoise-sur-Loire Sermoise-sur-Loire Sermoise-sur-Loire 46.95 3.18333 P PPL FR A1 58 583 58278 1595 186 Europe/Paris 2007-11-21
-2974893 Sermérieu Sermerieu Sermerieu,Sermérieu 45.6707 5.40996 P PPL FR B9 38 382 38483 1263 313 Europe/Paris 2012-01-18
-2974901 Sermaize-les-Bains Sermaize-les-Bains Sermaize,Sermaize-les-Bains 48.78507 4.91169 P PPL FR A4 51 514 51531 2212 132 Europe/Paris 2012-01-18
-2974904 Sermaises Sermaises Sermaises 48.2965 2.20546 P PPL FR A3 45 453 45310 1681 123 Europe/Paris 2012-01-18
-2974922 Sérigné Serigne Serigne,Sérigné 46.50107 -0.84453 P PPL FR B5 85 851 85281 1010 46 Europe/Paris 2012-01-18
-2974923 Sérignan-du-Comtat Serignan-du-Comtat Serignan,Serignan-du-Comtat,Sérignan,Sérignan-du-Comtat 44.1885 4.84403 P PPL FR B8 84 842 84127 2388 77 Europe/Paris 2012-01-18
-2974925 Sérignan Serignan Serignan,Sérignan 43.27873 3.27712 P PPL FR A9 34 341 34299 6936 5 Europe/Paris 2012-01-18
-2974931 Sérifontaine Serifontaine Serifontaine,Sérifontaine 49.3544 1.76873 P PPL FR B6 60 601 60616 2745 70 Europe/Paris 2012-01-18
-2974936 Sergy Sergy Sergy 46.25257 6.00058 P PPL FR B9 01 013 01401 1366 474 Europe/Paris 2012-01-18
-2974937 Sergines Sergines Sergines 48.34203 3.26213 P PPL FR A1 89 893 89391 1121 103 Europe/Paris 2012-01-18
-2974942 Sérézin-du-Rhône Serezin-du-Rhone Serezin,Serezin-du-Rhone,Sérézin,Sérézin-du-Rhône 45.62902 4.82467 P PPL FR B9 69 691 69294 2599 170 Europe/Paris 2012-01-18
-2974949 Sérent Serent Serent,Sérent 47.82333 -2.50571 P PPL FR A2 56 563 56244 2905 72 Europe/Paris 2012-01-18
-2974955 Serémange-Erzange Seremange-Erzange Erzange,Schoemange,Seremange,Seremange-Erzange,Serémange,Serémange-Erzange 49.31887 6.09025 P PPL FR B2 57 578 57647 4030 196 Europe/Paris 2012-01-18
-2974962 Séreilhac Sereilhac Sereilhac,Séreilhac 45.76843 1.08052 P PPL FR B1 87 872 87191 1609 327 Europe/Paris 2012-01-18
-2974991 Seraincourt Seraincourt Seraincourt 49.03573 1.86703 P PPL FR A8 95 953 95592 1388 40 Europe/Paris 2012-01-18
-2974996 Sequedin Sequedin Sequedin 50.62575 2.98276 P PPL FR B4 59 595 59566 3701 25 Europe/Paris 2012-01-18
-2975018 Septfonds Septfonds Septfonds 44.17813 1.61806 P PPL FR B3 82 822 82179 1989 176 Europe/Paris 2012-01-18
-2975019 Septeuil Septeuil Septeuil 48.89245 1.68357 P PPL FR A8 78 781 78591 2212 97 Europe/Paris 2012-01-18
-2975020 Septèmes-les-Vallons Septemes-les-Vallons Septemes,Septemes-les-Vallons,Septèmes-les-Vallons,Septêmes 43.39834 5.36596 P PPL FR B8 13 131 13106 10220 196 Europe/Paris 2011-01-18
-2975021 Septème Septeme Septeme,Septème 45.55315 5.00345 P PPL FR B9 38 383 38480 1718 239 Europe/Paris 2012-01-18
-2975036 Sentheim Sentheim Senheim 47.7556 7.05305 P PPL FR C1 68 686 68304 1443 356 Europe/Paris 2007-07-07
-2975046 Sens-de-Bretagne Sens-de-Bretagne Sen,Sens,Sens-de-Bretagne 48.33245 -1.53535 P PPL FR A2 35 353 35326 1851 87 Europe/Paris 2012-01-18
-2975050 Sens Sens Agedincum,Sens,Sens-sur-Yonne 48.2 3.28333 P PPLA3 FR A1 89 893 89387 28700 72 Europe/Paris 2011-11-02
-2975063 Senones Senones Senones 48.39475 6.97818 P PPL FR B2 88 883 88451 2947 338 Europe/Paris 2012-01-18
-2975067 Senonches Senonches Senonches 48.55999 1.03069 P PPL FR A3 28 283 28373 3247 221 Europe/Paris 2012-01-18
-2975079 Sennecey-lès-Dijon Sennecey-les-Dijon Sennecey,Sennecey-les-Dijon,Sennecey-lès-Dijon 47.28984 5.10485 P PPL FR A1 21 212 21605 2375 224 Europe/Paris 2012-01-18
-2975080 Sennecey-le-Grand Sennecey-le-Grand Grand-Sennecey,Sennecey,Sennecey-le-Grand 46.64137 4.86707 P PPL FR A1 71 712 71512 2987 210 Europe/Paris 2012-01-18
-2975088 Senlis Senlis Senlis 49.2 2.58333 P PPLA3 FR B6 60 604 60612 19160 57 Europe/Paris 2011-11-02
-2975113 Séné Sene Sene,Sine,Séné 47.619 -2.737 P PPL FR A2 56 563 56243 8465 9 16 Europe/Paris 2007-11-29
-2975120 Sénas Senas Senas,Sénas 43.74375 5.078 P PPL FR B8 13 132 13105 6062 96 Europe/Paris 2011-01-18
-2975140 Semussac Semussac 45.6 -0.91667 P PPL FR B7 17 174 17425 1518 32 Europe/Paris 2007-11-18
-2975143 Semur-en-Auxois Semur-en-Auxois Semur 47.48333 4.33333 P PPL FR A1 21 213 21603 5124 264 Europe/Paris 2007-11-20
-2975147 Semoy Semoy 47.93333 1.95 P PPL FR A3 45 452 45308 3053 120 Europe/Paris 2007-11-18
-2975181 Séméac Semeac Semeac,Séméac 43.22915 0.10602 P PPL FR B3 65 653 65417 4999 321 Europe/Paris 2012-01-18
-2975191 Sémalens Semalens Semalens,Sémalens 43.59225 2.11208 P PPL FR B3 81 812 81281 2010 157 Europe/Paris 2012-01-18
-2975194 Selvigny Selvigny Selvigny 50.07971 3.34899 P PPL FR B4 59 592 59631 2162 139 Europe/Paris 2012-02-27
-2975199 Seltz Seltz 48.8952 8.10757 P PPL FR C1 67 677 67463 3171 122 Europe/Paris 2007-07-13
-2975203 Selongey Selongey Selongey 47.58846 5.18483 P PPL FR A1 21 212 21599 2348 298 Europe/Paris 2012-01-18
-2975204 Seloncourt Seloncourt Seloncourt 47.45989 6.85535 P PPL FR A6 25 252 25539 6046 361 Europe/Paris 2012-01-18
-2975215 Selles-sur-Cher Selles-sur-Cher Selles,Selles-sur-Cher 47.27904 1.55388 P PPL FR A3 41 413 41242 4933 80 Europe/Paris 2012-01-18
-2975216 Selles-Saint-Denis Selles-Saint-Denis Selles,Selles-Saint-Denis 47.38695 1.92295 P PPL FR A3 41 413 41241 1242 97 Europe/Paris 2012-01-18
-2975233 Sélestat Selestat Schlestadt,Schlettstadt,Selestat,Sélestat 48.26667 7.45 P PPLA3 FR C1 67 675 67462 18941 176 Europe/Paris 2011-11-02
-2975244 Seissan Seissan Seissan 43.49215 0.5925 P PPL FR B3 32 321 32426 1048 189 Europe/Paris 2012-01-18
-2975245 Seingbouse Seingbouse Seingbouse,Seingbousse 49.11724 6.83024 P PPL FR B2 57 573 57644 1809 311 Europe/Paris 2012-01-18
-2975247 Seine-Port Seine-Port Seine-Port 48.55743 2.55316 P PPL FR A8 77 772 77447 1935 54 Europe/Paris 2012-01-18
-2975265 Seillans Seillans Seillans 43.635 6.64666 P PPL FR B8 83 831 83124 2286 367 Europe/Paris 2012-01-18
-2975268 Seilhac Seilhac Seilhac 45.36667 1.71667 P PPL FR B1 19 192 19255 1744 498 Europe/Paris 2012-01-18
-2975269 Seilh Seilh Seilh 43.69469 1.35509 P PPL FR B3 31 313 31541 2395 137 Europe/Paris 2011-01-09
-2975270 Seigy Seigy Seigy 47.25688 1.39964 P PPL FR A3 41 413 41239 1133 82 Europe/Paris 2012-01-18
-2975273 Seignosse Seignosse Seignosse 43.68774 -1.37 P PPL FR 97 40 401 40296 2855 19 Europe/Paris 2012-01-18
-2975278 Seignelay Seignelay Seignelay 47.90542 3.60136 P PPL FR A1 89 891 89382 1610 108 Europe/Paris 2012-01-18
-2975288 Seiches-sur-le-Loir Seiches-sur-le-Loir Seiches 47.57351 -0.35628 P PPL FR B5 49 491 49333 2537 28 Europe/Paris 2010-07-15
-2975292 Seichamps Seichamps Seichamps 48.71114 6.26186 P PPL FR B2 54 543 54498 5588 228 Europe/Paris 2012-01-18
-2975314 Segré Segre 47.68333 -0.86667 P PPLA3 FR B5 49 494 49331 7428 39 Europe/Paris 2011-11-02
-2975321 Segonzac Segonzac Segonzac 45.61667 -0.21667 P PPL FR B7 16 162 16366 2181 60 Europe/Paris 2012-01-18
-2975326 Ségny Segny Segny,Ségny 46.29601 6.07536 P PPL FR B9 01 013 01399 1493 484 Europe/Paris 2012-01-18
-2975339 Séez Seez Seez,Séez,Val-Joli 45.62209 6.79957 P PPL FR B9 73 731 73285 2139 886 Europe/Paris 2012-01-18
-2975340 Sées Sees Sees,Sées 48.60403 0.17244 P PPL FR 99 61 611 61464 4985 186 Europe/Paris 2012-01-18
-2975349 Sedan Sedan Sedan,sudan,Седан,スダン 49.7 4.95 P PPLA3 FR A4 08 083 08409 20620 161 Europe/Paris 2011-11-02
-2975358 Secondigny Secondigny Secondigny,Secondigny-en-Gatine,Secondigny-en-Gâtine 46.61024 -0.41679 P PPL FR B7 79 793 79311 1713 187 Europe/Paris 2012-01-18
-2975361 Seclin Seclin Seclin 50.54873 3.02731 P PPL FR B4 59 595 59560 12214 27 Europe/Paris 2012-01-18
-2975382 Sebourg Sebourg Sebourg 50.34249 3.64352 P PPL FR B4 59 596 59559 1802 86 Europe/Paris 2012-01-18
-2975383 Seboncourt Seboncourt Seboncourt 49.95272 3.47586 P PPL FR B6 02 023 02703 1117 155 Europe/Paris 2012-01-18
-2975387 Sébazac-Concourès Sebazac-Concoures Haute-Sebazac-Concoures,Haute-Sébazac-Concourès,Sebazac,Sébazac 44.40484 2.60324 P PPL FR B3 12 122 12264 2881 608 Europe/Paris 2008-03-28
-2975392 Scy-Chazelles Scy-Chazelles Scy,Scy-Chazelles 49.1136 6.1161 P PPL FR B2 57 574 57642 2763 243 Europe/Paris 2012-01-18
-2975400 Scorbé-Clairvaux Scorbe-Clairvaux Scorbe-Clairvaux,Scorbé-Clairvaux 46.81061 0.41369 P PPL FR B7 86 861 86258 2288 90 Europe/Paris 2012-01-18
-2975408 Scionzier Scionzier Scionzier 46.05447 6.55757 P PPL FR B9 74 742 74264 6766 491 Europe/Paris 2012-01-18
-2975410 Sciez Sciez Sciez 46.32909 6.37947 P PPL FR B9 74 744 74263 4898 406 Europe/Paris 2012-01-18
-2975419 Schwindratzheim Schwindratzheim 48.75582 7.59898 P PPL FR C1 67 676 67460 1782 160 Europe/Paris 2007-07-07
-2975424 Schweighouse-sur-Moder Schweighouse-sur-Moder Schweighausen,Schweighouse 48.81667 7.73333 P PPL FR C1 67 672 67458 4884 153 Europe/Paris 2007-11-20
-2975432 Schœneck Schoeneck Schoenecken 49.21667 6.91667 P PPL FR B2 57 573 57638 2846 233 Europe/Paris 2009-09-08
-2975435 Schnersheim Schnersheim 48.65741 7.56701 P PPL FR C1 67 676 67452 1055 202 Europe/Paris 2007-07-07
-2975445 Schirmeck Schirmeck Schirmeck 48.47942 7.2151 P PPL FR C1 67 673 67448 2334 312 Europe/Paris 2012-01-18
-2975446 Schiltigheim Schiltigheim Schiltigheim,Schiltighein,schilfigheim 48.60749 7.74931 P PPL FR C1 67 676 67447 32289 144 Europe/Paris 2011-11-02
-2975449 Scherwiller Scherwiller 48.28713 7.42135 P PPL FR C1 67 675 67445 2773 184 Europe/Paris 2007-07-07
-2975460 Scey-sur-Saône-et-Saint-Albin Scey-sur-Saone-et-Saint-Albin Scey-Saint-Albin,Scey-sur-Saone,Scey-sur-Saone-et-Saint-Albin,Scey-sur-Saône,Scey-sur-Saône-et-Saint-Albin 47.66398 5.97451 P PPL FR A6 70 702 70482 1614 211 Europe/Paris 2012-01-18
-2975469 Sceaux Sceaux Sceaux,Sceaux-l'Unite,Sceaux-l'Unité 48.77644 2.29026 P PPL FR A8 92 921 92071 21511 93 Europe/Paris 2012-01-18
-2975485 Scaër Scaer Scaer,Scaër,Skaer 48.03333 -3.7 P PPL FR A2 29 294 29274 5525 157 Europe/Paris 2012-01-18
-2975492 Saze Saze Saze 43.9434 4.68096 P PPL FR A9 30 302 30315 1590 85 Europe/Paris 2012-01-18
-2975495 Sayat Sayat Sayat 45.82754 3.05206 P PPL FR 98 63 632 63417 2359 453 Europe/Paris 2012-01-18
-2975501 Savy-Berlette Savy-Berlette Savy-Berlette 50.35249 2.56456 P PPL FR B4 62 621 62785 1047 106 Europe/Paris 2012-01-18
-2975513 Savonnières Savonnieres Savonniere,Savonnieres,Savonnière,Savonnières 47.34769 0.54962 P PPL FR A3 37 372 37243 2686 62 Europe/Paris 2012-01-18
-2975525 Savigny-sur-Orge Savigny-sur-Orge Savigny,Savigny-sur-Orge 48.67678 2.34835 P PPL FR A8 91 913 91589 39698 71 Europe/Paris 2012-01-18
-2975528 Savigny-sur-Braye Savigny-sur-Braye Savigny 47.87923 0.80981 P PPL FR A3 41 412 41238 2285 89 Europe/Paris 2006-07-02
-2975535 Savigny-Lévescault Savigny-Levescault Savigny,Savigny-Levescault,Savigny-Lévescault 46.53502 0.47719 P PPL FR B7 86 863 86256 1007 115 Europe/Paris 2012-01-18
-2975536 Savigny-le-Temple Savigny-le-Temple Savigny,Savigny-le-Port,Savigny-le-Temple,Savigny-sur-Balory,Savin'i-le-khram,Савиньи-ле-храм 48.57409 2.58287 P PPL FR A8 77 772 77445 25925 75 Europe/Paris 2012-01-18
-2975538 Savigny-lès-Beaune Savigny-les-Beaune Savigny,Savigny-les-Beaune,Savigny-lès-Beaune 47.06357 4.81821 P PPL FR A1 21 211 21590 1402 265 Europe/Paris 2012-01-18
-2975540 Savigny-en-Véron Savigny-en-Veron Savigny-en-Veron,Savigny-en-Véron 47.20071 0.14457 P PPL FR A3 37 371 37242 1272 32 34 Europe/Paris 2006-11-28
-2975543 Savigny-en-Sancerre Savigny-en-Sancerre Savigny,Savigny-en-Sancerre 47.44142 2.80953 P PPL FR A3 18 181 18246 1074 215 Europe/Paris 2012-01-18
-2975553 Savigny Savigny Savigny 45.81732 4.57543 P PPL FR B9 69 691 69175 2025 289 Europe/Paris 2012-01-18
-2975556 Savigneux Savigneux Savigneux 45.6167 4.0833 P PPL FR B9 42 421 42299 2623 369 Europe/Paris 2010-12-13
-2975558 Savigné-sur-Lathan Savigne-sur-Lathan Savigne,Savigne-sur-Lathan,Savigné,Savigné-sur-Lathan 47.44483 0.32093 P PPL FR A3 37 372 37241 1100 87 Europe/Paris 2012-01-18
-2975561 Savigné Savigne Savigne,Savigné 46.1595 0.31936 P PPL FR B7 86 862 86255 1449 131 Europe/Paris 2012-01-18
-2975588 Saverne Saverne Saverne,Zabern 48.74164 7.36221 P PPLA3 FR C1 67 674 67437 12439 200 Europe/Paris 2011-11-02
-2975592 Saverdun Saverdun Saverdun 43.23526 1.57398 P PPL FR B3 09 092 09282 3901 236 Europe/Paris 2012-01-18
-2975593 Savennières Savennieres 47.38225 -0.65708 P PPL FR B5 49 491 49329 1224 25 Europe/Paris 2008-01-28
-2975597 Savenay Savenay Savenay,Savenneg 47.36072 -1.94215 P PPL FR B5 44 443 44195 6770 56 Europe/Paris 2012-01-18
-2975606 Savasse Savasse Savasse 44.60229 4.77931 P PPL FR B9 26 262 26339 1180 159 Europe/Paris 2012-01-18
-2975612 Sauzé-Vaussais Sauze-Vaussais Sauze-Vaussais,Sauzé-Vaussais 46.13369 0.10673 P PPL FR B7 79 792 79307 1640 144 Europe/Paris 2012-01-18
-2975616 Sauzet Sauzet Sauzet 44.60288 4.81789 P PPL FR B9 26 262 26338 1819 138 Europe/Paris 2012-01-18
-2975625 Sauxillanges Sauxillanges Sauxillanges 45.55267 3.3738 P PPL FR 98 63 633 63415 1116 464 Europe/Paris 2012-01-18
-2975635 Sauvigny-les-Bois Sauvigny-les-Bois Sauvigny,Sauvigny-les-Bois 46.96676 3.2719 P PPL FR A1 58 583 58273 1527 210 Europe/Paris 2012-01-18
-2975647 Sauviat-sur-Vige Sauviat-sur-Vige Sauviat,Sauviat-sur-Vige 45.9072 1.60827 P PPL FR B1 87 872 87190 1084 423 Europe/Paris 2012-01-18
-2975649 Sauvian Sauvian Sauvian 43.29293 3.26024 P PPL FR A9 34 341 34298 4057 9 Europe/Paris 2012-01-18
-2975655 Sauveterre-de-Guyenne Sauveterre-de-Guyenne Sauveterre,Sauveterre-de-Guyenne 44.693 -0.08549 P PPL FR 97 33 333 33506 1722 79 Europe/Paris 2012-01-18
-2975659 Sauveterre Sauveterre Sauveterre 44.02282 4.79347 P PPL FR A9 30 302 30312 1841 24 Europe/Paris 2011-01-18
-2975663 Sauveterre-de-Béarn Sauveterre-de-Bearn Sauveterre 43.4 -0.93333 P PPL FR 97 64 642 64513 1547 89 Europe/Paris 2007-11-20
-2975667 Sauverny Sauverny Sauvergny,Sauverny 46.31514 6.11826 P PPL FR B9 01 013 01397 1105 477 Europe/Zurich 2012-01-18
-2975674 Sauve Sauve Sauve 43.9415 3.94903 P PPL FR A9 30 303 30311 1841 107 Europe/Paris 2012-01-18
-2975683 Sauvagnon Sauvagnon Sauvagnon 43.4 -0.38333 P PPL FR 97 64 643 64511 2531 193 Europe/Paris 2011-09-11
-2975702 Sautron Sautron Saotron,Sautron 47.26274 -1.67107 P PPL FR B5 44 442 44194 7405 68 Europe/Paris 2012-01-18
-2975726 Sausset-les-Pins Sausset-les-Pins Sausset,Sausset-les-Pins 43.33136 5.10431 P PPL FR B8 13 134 13104 7619 4 17 Europe/Paris 2011-01-19
-2975740 Saussay Saussay Saussay,Sausset 48.85571 1.40889 P PPL FR A3 28 283 28371 1013 64 Europe/Paris 2012-01-18
-2975741 Saussan Saussan Saussan 43.5722 3.775 P PPL FR A9 34 343 34295 1622 43 Europe/Paris 2010-12-24
-2975743 Sausheim Sausheim Sausheim 47.78976 7.37134 P PPL FR C1 68 684 68300 5744 230 Europe/Paris 2012-01-18
-2975758 Saumur Saumur Saumur,Somjur,somyuru,Сомюр,ソミュール 47.26667 -0.08333 P PPLA3 FR B5 49 493 49328 33229 21 Europe/Paris 2011-11-02
-2975771 Saulzoir Saulzoir Saulzoir 50.24058 3.4443 P PPL FR B4 59 592 59558 1717 57 Europe/Paris 2012-01-18
-2975776 Saulxures-sur-Moselotte Saulxures-sur-Moselotte Saulxures,Saulxures-sur-Moselotte 47.94894 6.7704 P PPL FR B2 88 881 88447 3294 460 Europe/Paris 2012-01-18
-2975778 Saulxures-lès-Nancy Saulxures-les-Nancy Saulxures,Saulxures-les-Nancy,Saulxures-lès-Nancy 48.68907 6.24587 P PPL FR B2 54 543 54495 3981 228 Europe/Paris 2012-01-18
-2975785 Saulx-les-Chartreux Saulx-les-Chartreux Saulx,Saulx-le-Rocher,Saulx-les-Chartreux 48.69062 2.26727 P PPL FR A8 91 913 91587 5241 72 Europe/Paris 2012-01-18
-2975797 Sault-lès-Rethel Sault-les-Rethel Sault,Sault-les-Rethel,Sault-lès-Rethel 49.4998 4.36227 P PPL FR A4 08 082 08403 1823 72 Europe/Paris 2012-01-18
-2975798 Sault Sault Sault-de-Vaucluse 44.08333 5.41667 P PPL FR B8 84 843 84123 1254 785 Europe/Paris 2007-11-20
-2975801 Sault-Brénaz Sault-Brenaz Sault,Sault-Brenaz,Sault-Brénaz 45.85431 5.41424 P PPL FR B9 01 011 01396 1058 211 Europe/Paris 2012-01-18
-2975802 Saultain Saultain Saultain 50.33676 3.57723 P PPL FR B4 59 596 59557 2129 70 Europe/Paris 2012-01-18
-2975808 Saulny Saulny Saulny 49.15835 6.10498 P PPL FR B2 57 574 57634 1422 244 Europe/Paris 2012-01-18
-2975814 Saulnes Saulnes Saulnes 49.53555 5.82629 P PPL FR B2 54 541 54493 2529 326 Europe/Paris 2012-01-18
-2975819 Saulieu Saulieu Saulieu 47.28023 4.22857 P PPL FR A1 21 213 21584 3035 537 Europe/Paris 2012-01-18
-2975826 Saulgé Saulge Saulge,Saulgé 46.37758 0.87577 P PPL FR B7 86 862 86254 1075 98 Europe/Paris 2012-01-18
-2975833 Saulcy-sur-Meurthe Saulcy-sur-Meurthe Saulcy,Saulcy-sur-Meurthe 48.23758 6.96443 P PPL FR B2 88 883 88445 2129 389 Europe/Paris 2012-01-18
-2975840 Saulce-sur-Rhône Saulce-sur-Rhone Saulce,Saulce-sur-Rhone,Saulce-sur-Rhône 44.7028 4.80169 P PPL FR B9 26 263 26337 1711 123 Europe/Paris 2012-01-18
-2975844 Saujon Saujon Saujon 45.67309 -0.9262 P PPL FR B7 17 174 17421 5803 6 Europe/Paris 2012-01-18
-2975850 Saugues Saugues Saugues,Saugues-la-Montagne 44.96039 3.54784 P PPL FR 98 43 431 43234 2250 971 Europe/Paris 2012-01-18
-2975854 Saugnac-et-Cambran Saugnac-et-Cambran 43.67098 -0.99495 P PPL FR 97 40 401 40294 1416 14 Europe/Paris 2009-04-01
-2975883 Saucats Saucats Saucats 44.65405 -0.59643 P PPL FR 97 33 332 33501 1796 52 Europe/Paris 2012-01-18
-2975885 Saubrigues Saubrigues Saubrigues 43.60989 -1.31381 P PPL FR 97 40 401 40292 1204 39 Europe/Paris 2012-01-18
-2975887 Saubion Saubion Saubion 43.6714 -1.34822 P PPL FR 97 40 401 40291 1127 20 Europe/Paris 2012-01-18
-2975888 Saubens Saubens Saubens 43.47984 1.35189 P PPL FR B3 31 311 31533 1465 164 Europe/Paris 2012-01-18
-2975891 Satolas-et-Bonce Satolas-et-Bonce Satolas,Satolas-et-Bonce 45.69299 5.13099 P PPL FR B9 38 382 38475 1781 233 Europe/Paris 2012-01-18
-2975893 Satillieu Satillieu Satillieu 45.15035 4.61493 P PPL FR B9 07 073 07309 1599 480 Europe/Paris 2012-01-18
-2975894 Sathonay-Village Sathonay-Village Sathonay,Sathonay-Village 45.8327 4.88121 P PPL FR B9 69 691 69293 1786 288 Europe/Paris 2012-01-18
-2975895 Sathonay-Camp Sathonay-Camp Sathonay-Camp 45.8231 4.86754 P PPL FR B9 69 691 69292 4726 256 Europe/Paris 2012-01-18
-2975907 Sassenay Sassenay Sassenay 46.83074 4.92523 P PPL FR A1 71 712 71502 1465 179 Europe/Paris 2012-01-18
-2975908 Sassenage Sassenage Sassenage 45.20531 5.66515 P PPL FR B9 38 381 38474 10641 208 Europe/Paris 2012-01-18
-2975916 Sarzeau Sarzeau Sarzeau,Sarzhav 47.52772 -2.76933 P PPL FR A2 56 563 56240 7116 32 Europe/Paris 2012-01-18
-2975921 Sartrouville Sartrouville Sartrouville 48.9482 2.19169 P PPL FR A8 78 783 78586 53980 58 Europe/Paris 2012-01-18
-2975924 Sartilly Sartilly Sartilly 48.7524 -1.45678 P PPL FR 99 50 501 50565 1318 107 Europe/Paris 2012-01-18
-2975931 Sartène Sartene Sarte,Sartene,Sartè,Sartène 41.61667 8.98333 P PPLA3 FR A5 2A 2A4 2A272 3674 374 Europe/Paris 2010-04-02
-2975939 Sarry Sarry Sarry 48.91852 4.40621 P PPL FR A4 51 511 51525 2149 84 Europe/Paris 2012-01-18
-2975949 Sarrola-Carcopino Sarrola-Carcopino Sarrola,Sarrola-Carcopino 42.01241 8.85055 P PPL FR A5 2A 2A1 2A271 1908 151 Europe/Paris 2012-01-18
-2975953 Sarrians Sarrians Marat,Sarrians 44.08401 4.96965 P PPL FR B8 84 843 84122 5817 35 Europe/Paris 2012-01-18
-2975956 Sarrewerden Sarrewerden Sarrewerden 48.92261 7.08412 P PPL FR C1 67 674 67435 1085 230 Europe/Paris 2011-02-14
-2975957 Sarre-Union Sarre-Union Saar-Union,Sarr-Union,Sarre-Union 48.93818 7.09373 P PPL FR C1 67 674 67434 3572 247 Europe/Paris 2011-11-02
-2975961 Sarreinsming Sarreinsming Sarreinsmeing,Sarreinsming 49.08966 7.10958 P PPL FR B2 57 576 57633 1300 223 Europe/Paris 2012-01-18
-2975964 Sarreguemines Sarreguemines Saargemines,Saargemuend,Saargemund,Saargemünd,Sargemin,Sarreguemines,Sarrequemines,saruguminu,Саргемин,サルグミーヌ 49.10995 7.06747 P PPLA3 FR B2 57 576 57631 24446 205 Europe/Paris 2011-11-02
-2975967 Sarrebourg Sarrebourg Saarburg,Sarrebourc,Sarrebourg 48.73333 7.05 P PPLA3 FR B2 57 575 57630 14677 248 Europe/Paris 2011-11-02
-2975980 Sarras Sarras 45.18679 4.80004 P PPL FR B9 07 073 07308 1918 134 Europe/Paris 2008-01-14
-2975992 Sarralbe Sarralbe Saaralben,Sarralbe 48.99858 7.03074 P PPL FR B2 57 576 57628 4685 214 Europe/Paris 2011-02-14
-2976007 Sarlat-la-Canéda Sarlat-la-Caneda Sarlat,Sarlat-la-Caneda,Sarlat-la-Canéda 44.88902 1.21656 P PPLA3 FR 97 24 244 24520 11126 147 Europe/Paris 2011-11-02
-2976014 Sari-Solenzara Sari-Solenzara Sari,Sari-Solenzara,Sari-di-Porto-Vecchio 41.83519 9.3747 P PPL FR A5 2A 2A4 2A269 1150 389 Europe/Paris 2012-01-18
-2976017 Sargé-sur-Braye Sarge-sur-Braye Sarge,Sarge-sur-Braye,Sargé,Sargé-sur-Braye 47.92352 0.8534 P PPL FR A3 41 412 41235 1012 98 Europe/Paris 2012-01-18
-2976019 Sargé-lès-le-Mans Sarge-les-le-Mans Sarge,Sargé 48.03333 0.23333 P PPL FR B5 72 723 72328 3656 98 Europe/Paris 2007-11-20
-2976021 Sare Sare Sara,Sare 43.3126 -1.58012 P PPL FR 97 64 641 64504 2330 81 Europe/Paris 2012-01-18
-2976043 Sarcelles Sarcelles Sarcelles,Sarcelles-Lochere,Sarcelles-Lochère,Sarsel',Сарсель 49 2.38333 P PPLA3 FR A8 95 952 95585 57979 84 Europe/Paris 2011-12-08
-2976047 Sarbazan Sarbazan Sarbazan 44.02029 -0.31294 P PPL FR 97 40 402 40288 1060 96 Europe/Paris 2012-01-18
-2976050 Saran Saran Saran 47.95013 1.87601 P PPL FR A3 45 452 45302 16243 121 Europe/Paris 2012-01-18
-2976084 Saône Saone Saone,Saône 47.22311 6.11682 P PPL FR A6 25 251 25532 2838 401 Europe/Paris 2012-01-18
-2976090 Sanvignes-les-Mines Sanvignes-les-Mines Sanvignes,Sanvignes-les-Mines 46.66444 4.29188 P PPL FR A1 71 713 71499 4359 336 Europe/Paris 2012-01-18
-2976108 Santes Santes Santes 50.59316 2.96289 P PPL FR B4 59 595 59553 5069 20 Europe/Paris 2012-01-18
-2976109 Santeny Santeny Santeny 48.7273 2.57346 P PPL FR A8 94 941 94070 3266 93 Europe/Paris 2012-01-18
-2976117 Santec Santec Santec,Santeg 48.7 -4.03333 P PPL FR A2 29 293 29273 2272 21 Europe/Paris 2012-01-18
-2976140 Santa-Maria-di-Lota Santa-Maria-di-Lota Santa-Maria 42.74783 9.43202 P PPL FR A5 2B 2B2 2B309 2014 291 Europe/Paris 2008-07-08
-2976145 Santa-Lucia-di-Moriani Santa-Lucia-di-Moriani Sainte-Lucie-de-Moriani,Santa-Lucia,Santa-Lucia-di-Moriani 42.38212 9.52242 P PPL FR A5 2B 2B3 2B307 1088 11 Europe/Paris 2012-01-18
-2976160 Sansac-de-Marmiesse Sansac-de-Marmiesse Sansac,Sansac-de-Marmiesse 44.88485 2.34701 P PPL FR 98 15 151 15221 1114 597 Europe/Paris 2012-01-18
-2976179 Sannois Sannois Sannois 48.96667 2.25 P PPL FR A8 95 951 95582 26869 107 Europe/Paris 2012-01-18
-2976180 San-Nicolao San-Nicolao San-Nicolao 42.36939 9.50943 P PPL FR A5 2B 2B3 2B313 1462 43 Europe/Paris 2012-01-18
-2976182 Sannerville Sannerville Sannerville 49.18018 -0.22434 P PPL FR 99 14 142 14666 1540 18 Europe/Paris 2012-01-18
-2976186 San-Martino-di-Lota San-Martino-di-Lota San-Martino 42.73163 9.43966 P PPL FR A5 2B 2B2 2B305 2780 359 Europe/Paris 2010-06-12
-2976195 Sanguinet Sanguinet Sanguinet 44.4832 -1.07457 P PPL FR 97 40 402 40287 2168 24 Europe/Paris 2012-01-18
-2976217 Sangatte Sangatte Sangatte 50.94564 1.75321 P PPL FR B4 62 626 62774 4170 5 Europe/Paris 2012-01-18
-2976224 Sandillon Sandillon Sandillon 47.8451 2.03155 P PPL FR A3 45 452 45300 3611 99 Europe/Paris 2012-01-18
-2976231 Sand Sand Sand 48.38238 7.6126 P PPL FR C1 67 675 67433 1134 159 Europe/Paris 2012-01-18
-2976245 Sancoins Sancoins Sancoins 46.83314 2.92238 P PPL FR A3 18 182 18242 3576 199 Europe/Paris 2012-01-18
-2976249 Sancey-le-Grand Sancey-le-Grand 47.29489 6.58287 P PPL FR A6 25 252 25529 1085 503 Europe/Paris 2008-07-18
-2976251 Sancerre Sancerre Sancerre 47.32889 2.83448 P PPL FR A3 18 181 18241 1839 252 Europe/Paris 2012-01-18
-2976254 Sancé Sance Sance,Sancé 46.33926 4.83049 P PPL FR A1 71 715 71497 1843 194 Europe/Paris 2012-01-18
-2976258 Sanary-sur-Mer Sanary-sur-Mer Sanary,Sanary-sur-Mer 43.11784 5.80006 P PPL FR B8 83 832 83123 19166 6 Europe/Paris 2012-01-18
-2976279 Samoreau Samoreau Samoreau 48.42946 2.75587 P PPL FR A8 77 774 77442 2371 64 Europe/Paris 2012-01-18
-2976281 Samois-sur-Seine Samois-sur-Seine Samois,Samois-sur-Seine 48.45251 2.7504 P PPL FR A8 77 774 77441 2055 83 Europe/Paris 2012-01-18
-2976284 Samoëns Samoens Samoens,Samoëns 46.08282 6.72647 P PPL FR B9 74 742 74258 2581 706 Europe/Paris 2007-03-26
-2976285 Sammeron Sammeron Sammeron 48.94721 3.08333 P PPL FR A8 77 771 77440 1044 57 Europe/Paris 2012-01-18
-2976291 Samer Samer Samer 50.6384 1.74628 P PPL FR B4 62 623 62773 3265 66 Europe/Paris 2012-01-18
-2976292 Saméon Sameon Sameon,Saméon 50.47135 3.33544 P PPL FR B4 59 593 59551 1402 22 Europe/Paris 2012-01-18
-2976301 Samatan Samatan Samatan 43.49286 0.92976 P PPL FR B3 32 321 32410 2059 173 Europe/Paris 2012-01-18
-2976305 Samadet Samadet Samadet 43.63761 -0.48785 P PPL FR 97 40 402 40286 1095 137 Europe/Paris 2012-01-18
-2976310 Salviac Salviac Salviac 44.6808 1.26506 P PPL FR B3 46 463 46297 1153 167 Europe/Paris 2012-01-18
-2976337 Salouël Salouel Salouel,Salouël 49.86988 2.2434 P PPL FR B6 80 802 80725 4235 30 Europe/Paris 2012-01-18
-2976341 Salon-de-Provence Salon-de-Provence Salon,Salon-de-Provans,Salon-de-Provence,saron=do=purovu~ansu,Салон-де-Прованс,サロン=ド=プロヴァンス 43.64074 5.09545 P PPL FR B8 13 131 13103 41397 79 Europe/Paris 2012-01-18
-2976348 Salomé Salome Salome,Salomé 50.53352 2.84709 P PPL FR B4 59 595 59550 2984 24 Europe/Paris 2012-01-18
-2976358 Salles-sur-Mer Salles-sur-Mer Salles,Salles-sur-Mer 46.10543 -1.05741 P PPL FR B7 17 173 17420 2015 8 Europe/Paris 2012-01-18
-2976366 Salles-la-Source Salles-la-Source Salles,Salles-la-Source 44.43505 2.51283 P PPL FR B3 12 122 12254 1935 397 Europe/Paris 2012-01-18
-2976375 Salles-Curan Salles-Curan Salles-Curan 44.1822 2.78821 P PPL FR B3 12 121 12253 1157 856 Europe/Paris 2012-01-18
-2976384 Salles Salles Salles 44.55 -0.86073 P PPL FR 97 33 336 33498 4889 31 Europe/Paris 2012-01-18
-2976387 Sallertaine Sallertaine Sallertaine 46.86017 -1.95522 P PPL FR B5 85 853 85280 2410 4 Europe/Paris 2012-01-18
-2976399 Sallebœuf Salleboeuf 44.83333 -0.4 P PPL FR 97 33 332 33496 1932 91 Europe/Paris 2007-11-20
-2976404 Sallaumines Sallaumines Sallaumines,Sallaumones 50.41749 2.86174 P PPL FR B4 62 627 62771 10637 40 Europe/Paris 2012-01-18
-2976406 Sallanches Sallanches 45.94423 6.63162 P PPL FR B9 74 742 74256 16725 580 542 Europe/Paris 2011-11-02
-2976412 Salins-les-Thermes Salins-les-Thermes Salins 45.47169 6.53051 P PPL FR B9 73 731 73284 1031 592 Europe/Paris 2009-01-31
-2976413 Salins-les-Bains Salins-les-Bains Fort-Egalite,Fort-Egalité,Salins,Salins-les-Bains 46.94663 5.87763 P PPL FR A6 39 392 39500 3534 326 Europe/Paris 2012-01-18
-2976415 Salins Salins Salins 48.42156 3.0213 P PPL FR A8 77 773 77439 1008 75 Europe/Paris 2012-01-18
-2976421 Salindres Salindres Salindres 44.17174 4.1602 P PPL FR A9 30 301 30305 3351 184 Europe/Paris 2012-01-18
-2976433 Saligny Saligny Saligny 46.80833 -1.42726 P PPL FR B5 85 852 85279 1264 69 Europe/Paris 2012-01-18
-2976439 Salignac Salignac Salignac 45.01607 -0.37964 P PPL FR 97 33 331 33495 1255 48 Europe/Paris 2012-01-18
-2976443 Salies-du-Salat Salies-du-Salat Salies,Salies-du-Salat 43.10074 0.95866 P PPL FR B3 31 312 31523 2262 295 Europe/Paris 2012-01-18
-2976444 Salies-de-Béarn Salies-de-Bearn Salies 43.47422 -0.92448 P PPL FR 97 64 643 64499 5235 70 Europe/Paris 2008-07-28
-2976459 Saleux Saleux Saleux 49.8563 2.23698 P PPL FR B6 80 802 80724 2449 33 Europe/Paris 2012-01-18
-2976470 Sales Sales Sales 45.87576 5.95998 P PPL FR B9 74 741 74255 1698 412 Europe/Paris 2012-01-18
-2976472 Salernes Salernes Salernes 43.56349 6.23398 P PPL FR B8 83 831 83121 3673 226 Europe/Paris 2012-01-18
-2976481 Saleilles Saleilles Saleilles,Salelles 42.65418 2.95309 P PPL FR A9 66 662 66189 4256 15 Europe/Paris 2012-01-18
-2976489 Salses-le-Château Salses-le-Chateau Salses 42.83333 2.91667 P PPL FR A9 66 662 66190 2740 13 Europe/Paris 2007-11-20
-2976490 Salbris Salbris Salbris 47.4242 2.05124 P PPL FR A3 41 413 41232 5810 108 Europe/Paris 2012-01-18
-2976491 Salbert Salbert Le Salbert,Salbert 47.67236 6.82209 P PPL FR A6 90 901 90042 2262 398 Europe/Paris 2012-02-27
-2976507 Salaise-sur-Sanne Salaise-sur-Sanne Salaise,Salaise-sur-Sanne 45.34234 4.81829 P PPL FR B9 38 383 38468 3981 168 Europe/Paris 2012-01-18
-2976509 Salagnon Salagnon Salagnon 45.66713 5.35809 P PPL FR B9 38 382 38467 1122 238 Europe/Paris 2012-01-18
-2976516 Saizerais Saizerais Saizerais 48.79083 6.04472 P PPL FR B2 54 543 54490 1269 248 Europe/Paris 2012-01-18
-2976520 Saïx Saix 43.58333 2.18333 P PPL FR B3 81 812 81273 3509 158 Europe/Paris 2007-11-18
-2976521 Saivres Saivres Saivres 46.43262 -0.23677 P PPL FR B7 79 792 79302 1218 114 Europe/Paris 2012-01-18
-2976534 Saint-Zacharie Saint-Zacharie Saint-Zacharie,Theonlen,Théonlen 43.38521 5.70808 P PPL FR B8 83 833 83120 4506 278 Europe/Paris 2011-01-18
-2976536 Saint-Yzan-de-Soudiac Saint-Yzan-de-Soudiac Saint Yzan,Saint-Yzan-de-Soudiac 45.14118 -0.41078 P PPL FR 97 33 331 33492 1656 71 Europe/Paris 2012-01-18
-2976537 Saint-Yvi Saint-Yvi Sant-Ivi 47.96667 -3.93333 P PPL FR A2 29 294 29272 2774 113 Europe/Paris 2007-11-20
-2976542 Saint-Yrieix-sur-Charente Saint-Yrieix-sur-Charente Saint Yrieix sobre Charenta,Saint-Yrieix,Saint-Yrieix-sur-Charente,San Yrieix sobre Charenta 45.68333 0.11667 P PPL FR B7 16 161 16358 6832 85 Europe/Paris 2012-01-18
-2976546 Saint-Yrieix-la-Perche Saint-Yrieix-la-Perche Saint-Yrieix,Saint-Yrieix-la-Perche,Yrieix-la-Montagne 45.51604 1.20569 P PPL FR B1 87 872 87187 7895 358 Europe/Paris 2012-01-18
-2976548 Saint-Yorre Saint-Yorre Saint-Yorre 46.06057 3.46812 P PPL FR 98 03 033 03264 2896 273 Europe/Paris 2012-01-18
-2976553 Saint-Yan Saint-Yan Saint-Yan,Yan-l'Arconce 46.41147 4.03876 P PPL FR A1 71 713 71491 1112 245 Europe/Paris 2012-01-18
-2976556 Saint-Xandre Saint-Xandre Gemmapes,Saint-Xandre 46.20444 -1.10267 P PPL FR B7 17 173 17414 4414 25 Europe/Paris 2012-01-18
-2976557 Saint-Witz Saint-Witz Saint-Witz 49.091 2.57122 P PPL FR A8 95 952 95580 2354 162 Europe/Paris 2012-01-18
-2976558 Saint-Wandrille-Rançon Saint-Wandrille-Rancon Saint-Vandrille,Saint-Wandrille,Saint-Wandrille-Rancon,Saint-Wandrille-Rançon 49.52658 0.76497 P PPL FR A7 76 763 76659 1194 31 Europe/Paris 2012-01-18
-2976565 Saint-Vrain Saint-Vrain Saint-Vrain 48.54302 2.33331 P PPL FR A8 91 913 91579 2816 69 Europe/Paris 2012-01-18
-2976577 Saint-Vite Saint-Vite Saint-Vite 44.47133 0.93876 P PPL FR 97 47 473 47283 1308 79 Europe/Paris 2012-01-18
-2976579 Saint-Vit Saint-Vit Egalite-sur-Doubs,Egalité-sur-Doubs,Saint-Vit 47.18333 5.81667 P PPL FR A6 25 251 25527 4549 248 Europe/Paris 2012-01-18
-2976581 Saint-Vincent-sur-Oust Saint-Vincent-sur-Oust Saint-Vincent,Saint-Vincent-sur-Oust,Sant-Visant-an-Oust 47.7001 -2.14657 P PPL FR A2 56 563 56239 1180 55 Europe/Paris 2012-01-18
-2976585 Saint-Vincent-sur-Graon Saint-Vincent-sur-Graon Le Graon,Saint-Vincent,Saint-Vincent-sur-Graon 46.5169 -1.38881 P PPL FR B5 85 853 85277 1127 38 Europe/Paris 2012-01-18
-2976600 Saint-Vincent-de-Tyrosse Saint-Vincent-de-Tyrosse Saint-Vincent,Saint-Vincent-de-Tyrosse,San Bisentse 43.66031 -1.30799 P PPL FR 97 40 401 40284 5898 30 Europe/Paris 2012-01-18
-2976603 Saint-Vincent-des-Landes Saint-Vincent-des-Landes Saint Vincent,Saint-Vincent-des-Landes,Sant-Visant-al-Lann 47.65695 -1.49572 P PPL FR B5 44 441 44193 1424 56 Europe/Paris 2012-01-18
-2976607 Saint-Vincent-de-Paul Saint-Vincent-de-Paul Saint-Vincent,Saint-Vincent-de-Paul 44.95429 -0.46751 P PPL FR 97 33 332 33487 1139 3 Europe/Paris 2012-01-18
-2976608 Saint-Vincent-de-Paul Saint-Vincent-de-Paul 43.74431 -1.00662 P PPL FR 97 40 401 40283 2604 21 Europe/Paris 2009-04-01
-2976609 Saint-Vincent-de-Mercuze Saint-Vincent-de-Mercuze Saint Vincent-de Mercuse,Saint-Vincent,Saint-Vincent-de-Mercuze 45.37063 5.95182 P PPL FR B9 38 381 38466 1466 338 Europe/Paris 2012-01-18
-2976637 Saint-Vigor-le-Grand Saint-Vigor-le-Grand Saint-Vigor,Saint-Vigor-le-Grand 49.28242 -0.68579 P PPL FR 99 14 141 14663 1962 56 Europe/Paris 2011-01-20
-2976643 Saint-Victurnien Saint-Victurnien Saint-Victurnien 45.87855 1.01376 P PPL FR B1 87 873 87185 1543 195 Europe/Paris 2012-01-18
-2976653 Saint-Victor-la-Coste Saint-Victor-la-Coste Saint-Victor,Saint-Victor-la-Coste,Serre-la-Coste 44.06295 4.64238 P PPL FR A9 30 302 30302 1663 124 Europe/Paris 2012-01-18
-2976656 Saint-Victoret Saint-Victoret Saint-Victoret 43.41957 5.23396 P PPL FR B8 13 134 13102 7100 24 Europe/Paris 2011-01-19
-2976663 Saint-Victor-de-Cessieu Saint-Victor-de-Cessieu Saint-Victor,Saint-Victor-de-Cessieu 45.55 5.4 P PPL FR B9 38 382 38464 1810 350 Europe/Paris 2012-01-18
-2976667 Saint-Victor Saint-Victor Saint-Victor 46.39467 2.60858 P PPL FR 98 03 031 03262 1997 199 Europe/Paris 2012-01-18
-2976678 Saint-Viaud Saint-Viaud Saint-Viaud,Sant-Widel-Skovrid 47.25619 -2.01833 P PPL FR B5 44 443 44192 1992 26 Europe/Paris 2012-01-18
-2976679 Saint-Viâtre Saint-Viatre Saint-Viatre,Saint-Viâtre 47.52438 1.93276 P PPL FR A3 41 413 41231 1193 106 Europe/Paris 2012-01-18
-2976680 Saint-Viance Saint-Viance Avelque-Courte,Belle-Rive,Saint-Viance 45.21752 1.45284 P PPL FR B1 19 191 19246 1453 105 Europe/Paris 2012-01-18
-2976683 Saint-Vérand Saint-Verand Saint-Verand,Saint-Vérand 45.91996 4.52791 P PPL FR B9 69 692 69239 1047 388 Europe/Paris 2012-01-18
-2976684 Saint-Vérand Saint-Verand Saint-Verand,Saint-Vérand 45.17277 5.33195 P PPL FR B9 38 381 38463 1579 294 Europe/Paris 2012-01-18
-2976690 Saint-Venant Saint-Venant Fort-Vert,Pot-Vert,Saint-Venant 50.61956 2.53946 P PPL FR B4 62 622 62770 3356 19 Europe/Paris 2012-01-18
-2976691 Saint-Vaury Saint-Vaury Saint-Vaury 46.20417 1.75654 P PPL FR B1 23 232 23247 2016 457 Europe/Paris 2012-01-18
-2976693 Saint-Varent Saint-Varent Saint-Varent 46.88934 -0.2321 P PPL FR B7 79 791 79299 2552 102 Europe/Paris 2012-01-18
-2976695 Saint-Vallier-de-Thiey Saint-Vallier-de-Thiey Saint-Vallier,Saint-Vallier-de-Thiey 43.69539 6.8443 P PPL FR B8 06 061 06130 2358 704 Europe/Paris 2012-01-18
-2976697 Saint-Vallier Saint-Vallier Saint-Vallier,Vallier-les-Bois 46.64107 4.37107 P PPL FR A1 71 712 71486 9670 332 Europe/Paris 2012-01-18
-2976699 Saint-Vallier Saint-Vallier Saint-Vallier,Val-Libre 45.17592 4.81514 P PPL FR B9 26 263 26333 4038 129 Europe/Paris 2012-01-18
-2976701 Saint-Valery-sur-Somme Saint-Valery-sur-Somme La Montagne-sur-Somme,Port-Somme,Saint-Valery 50.18333 1.63333 P PPL FR B6 80 801 80721 2754 33 Europe/Paris 2007-11-18
-2976703 Saint-Valery-en-Caux Saint-Valery-en-Caux Port-le-Pelletier,Saint-Valery,Saint-Valéry 49.86667 0.73333 P PPL FR A7 76 761 76655 5017 68 Europe/Paris 2007-11-18
-2976704 Saint-Valérien Saint-Valerien Saint-Valerien,Saint-Valérien 48.17805 3.09523 P PPL FR A1 89 893 89370 1604 166 Europe/Paris 2012-01-18
-2976712 Saint-Vaast-la-Hougue Saint-Vaast-la-Hougue La Hougue,Port-la-Hougue,Saint-Vaast,Saint-Vaast-la-Hougue 49.58843 -1.26931 P PPL FR 99 50 502 50562 2144 2 Europe/Paris 2012-01-18
-2976719 Saint-Uze Saint-Uze Mont-Bertheud,Saint-Uze 45.18502 4.86561 P PPL FR B9 26 263 26332 1696 183 Europe/Paris 2012-01-18
-2976721 Saint-Usuge Saint-Usuge Chalon-sur-Seille,Saint-Usuge 46.679 5.25089 P PPL FR A1 71 714 71484 1059 200 Europe/Paris 2012-01-18
-2976724 Saint-Usage Saint-Usage Bon-Usage,Saint-Usage 47.11009 5.26044 P PPL FR A1 21 211 21577 1027 184 Europe/Paris 2012-01-18
-2976730 Saint-Urbain Saint-Urbain Lannurvan,Saint-Urbain 48.4 -4.23333 P PPL FR A2 29 291 29270 1273 76 Europe/Paris 2012-01-18
-2976731 Saint-Urbain Saint-Urbain Saint-Urbain 46.87557 -2.00961 P PPL FR B5 85 853 85273 1119 3 Europe/Paris 2012-01-18
-2976742 Saint-Tropez Saint-Tropez Heraclee,Héraclée,Saint-Tropez,San-Trope,santorope,Сан-Тропе,サントロペ 43.26932 6.63981 P PPL FR B8 83 831 83119 5939 9 Europe/Paris 2012-01-18
-2976743 Saint-Trojan-les-Bains Saint-Trojan-les-Bains La Montagne,Saint-Trojan,Saint-Trojan-les-Bains 45.84134 -1.20728 P PPL FR B7 17 172 17411 1474 6 Europe/Paris 2012-01-18
-2976747 Saint-Trivier-sur-Moignans Saint-Trivier-sur-Moignans Pont-Moignans,Saint-Trivier,Saint-Trivier-sur-Moignans 46.07233 4.89755 P PPL FR B9 01 012 01389 1683 256 Europe/Paris 2012-01-18
-2976748 Saint-Trivier-de-Courtes Saint-Trivier-de-Courtes Saint-Trivier,Saint-Trivier-de-Courtes,Val-Libre 46.45904 5.08047 P PPL FR B9 01 012 01388 1025 216 Europe/Paris 2012-01-18
-2976756 Saint-Thuriau Saint-Thuriau Saint-Thuriau,Sant-Turiav 48.01667 -2.95 P PPL FR A2 56 562 56237 2000 102 Europe/Paris 2012-01-18
-2976757 Saint-Thurial Saint-Thurial Saint-Thurial,Sant-Turiav-Porc'hoed 48.02924 -1.93181 P PPL FR A2 35 353 35319 1770 72 Europe/Paris 2012-01-18
-2976759 Saint-Thonan Saint-Thonan Saint-Thonan,Sant-Tonan 48.48333 -4.33333 P PPL FR A2 29 291 29268 1238 86 Europe/Paris 2012-01-18
-2976777 Saint-Thibéry Saint-Thibery Saint-Thibery,Saint-Thibéry 43.39658 3.41774 P PPL FR A9 34 341 34289 2481 17 Europe/Paris 2012-01-18
-2976780 Saint-Thibault-des-Vignes Saint-Thibault-des-Vignes La Cote-des-Vignes,La Côte-des-Vignes,Saint-Thibault,Saint-Thibault-des-Vignes 48.87111 2.68041 P PPL FR A8 77 775 77438 6545 42 Europe/Paris 2012-01-18
-2976791 Saint-Thégonnec Saint-Thegonnec Saint-Thegonnec,Saint-Thégonnec,Sant-Tegoneg 48.51667 -3.95 P PPL FR A2 29 293 29266 2387 89 Europe/Paris 2012-01-18
-2976794 Saint-Symphorien-sur-Coise Saint-Symphorien-sur-Coise Chausse-Armee,Chausse-Armée,Saint-Symphorien,Saint-Symphorien-sur-Coise 45.632 4.45811 P PPL FR B9 69 691 69238 3284 588 Europe/Paris 2012-01-18
-2976805 Saint-Symphorien-de-Lay Saint-Symphorien-de-Lay Lay,Saint-Symphorien,Saint-Symphorien-de-Lay,Symphorien-Lay 45.94849 4.21204 P PPL FR B9 42 422 42289 1449 445 Europe/Paris 2012-01-18
-2976816 Saint-Symphorien Saint-Symphorien Phorien-sur-Sevre,Phorien-sur-Sèvre,saint symphorien 46.26442 -0.4922 P PPL FR B7 79 792 79298 1580 16 Europe/Paris 2009-11-08
-2976818 Saint-Symphorien Saint-Symphorien Grand-Air,La Hure,Saint-Symphorien 44.42941 -0.49047 P PPL FR 97 33 333 33484 1491 57 Europe/Paris 2012-01-18
-2976820 Saint-Sylvestre-sur-Lot Saint-Sylvestre-sur-Lot Saint-Sylvestre,Saint-Sylvestre-sur-Lot 44.39667 0.80441 P PPL FR 97 47 473 47280 2181 65 Europe/Paris 2012-01-18
-2976821 Saint-Sylvestre-Pragoulin Saint-Sylvestre-Pragoulin Saint-Sylvestre,Saint-Sylvestre-Pragoulin 46.05101 3.39905 P PPL FR 98 63 634 63400 1131 344 Europe/Paris 2012-01-18
-2976823 Saint-Sylvestre-Cappel Saint-Sylvestre-Cappel Saint-Sylvestre-Cappel 50.77625 2.55622 P PPL FR B4 59 594 59546 1107 49 Europe/Paris 2012-01-18
-2976830 Saint-Sylvain Saint-Sylvain Saint-Sylvain 49.05624 -0.21758 P PPL FR 99 14 142 14659 1242 45 Europe/Paris 2012-01-18
-2976836 Saint-Sulpice-sur-Risle Saint-Sulpice-sur-Risle Saint-Sulpice,Saint-Sulpice-sur-Rile,Saint-Sulpice-sur-Rille,Saint-Sulpice-sur-Risle,Saint-Sulpice-sur-Rîle,Sulpice-la-Montagne,Vendemiaire,Vendémiaire 48.78063 0.65739 P PPL FR 99 61 613 61456 1559 206 Europe/Paris 2012-01-18
-2976837 Saint-Sulpice-sur-Lèze Saint-Sulpice-sur-Leze Libre-Lese,Libre-Lèse,Saint-Sulpice,Saint-Sulpice-sur-Leze,Saint-Sulpice-sur-Lèze 43.33076 1.32091 P PPL FR B3 31 311 31517 1841 206 Europe/Paris 2012-01-18
-2976840 Saint-Sulpice-les-Feuilles Saint-Sulpice-les-Feuilles Saint-Sulpice,Saint-Sulpice-les-Feuilles 46.31868 1.36792 P PPL FR B1 87 871 87182 1262 289 Europe/Paris 2012-01-18
-2976843 Saint-Sulpice-le-Guérétois Saint-Sulpice-le-Gueretois Saint-Sulpice,Saint-Sulpice-le-Gueretois,Saint-Sulpice-le-Guérétois 46.20097 1.82826 P PPL FR B1 23 232 23245 1934 379 Europe/Paris 2012-01-18
-2976846 Saint-Sulpice-la-Forêt Saint-Sulpice-la-Foret Saint-Sulpice,Saint-Sulpice-la-Foret,Saint-Sulpice-la-Forêt,Sant-Suleg-ar-C'hoad 48.21667 -1.57972 P PPL FR A2 35 353 35315 1423 64 Europe/Paris 2012-01-18
-2976847 Saint-Sulpice-et-Cameyrac Saint-Sulpice-et-Cameyrac Saint-Sulpice,Saint-Sulpice-et-Cameyrac 44.91131 -0.39048 P PPL FR 97 33 332 33483 4289 17 Europe/Paris 2012-01-18
-2976855 Saint-Sulpice-de-Royan Saint-Sulpice-de-Royan Saint-Sulpice,Saint-Sulpice-de-Royan 45.67035 -1.01252 P PPL FR B7 17 172 17409 2466 17 Europe/Paris 2012-01-18
-2976862 Saint-Sulpice-de-Faleyrens Saint-Sulpice-de-Faleyrens Saint-Sulpice,Saint-Sulpice-de Faleyren,Saint-Sulpice-de-Faleyrens 44.86667 -0.18333 P PPL FR 97 33 335 33480 1789 8 Europe/Paris 2012-01-18
-2976863 Saint-Sulpice-de-Cognac Saint-Sulpice-de-Cognac Saint-Sulpice,Saint-Sulpice-de-Cognac 45.75978 -0.38093 P PPL FR B7 16 162 16355 1226 15 Europe/Paris 2012-01-18
-2976866 Saint-Sulpice Saint-Sulpice Saint-Sulpice 49.35049 2.12314 P PPL FR B6 60 601 60598 1144 103 Europe/Paris 2012-01-18
-2976868 Saint-Sulpice-de-Pommeray Saint-Sulpice-de-Pommeray Les Gorges-Sableuses,Sulpice,Suplice 47.6 1.26667 P PPL FR A3 41 411 41230 1962 109 Europe/Paris 2007-11-20
-2976879 Saint-Sulpice Saint-Sulpice Saint-Sulpice,Saint-Sulpice-la-Pointe 43.775 1.68511 P PPL FR B3 81 812 81271 6714 115 Europe/Paris 2011-01-13
-2976883 Saint-Soupplets Saint-Soupplets Saint-Soupplets 49.03866 2.80723 P PPL FR A8 77 771 77437 3307 105 Europe/Paris 2012-01-18
-2976885 Saint-Souplet Saint-Souplet Saint-Souplet 50.05639 3.53179 P PPL FR B4 59 592 59545 1349 135 Europe/Paris 2012-01-18
-2976895 Saint-Sorlin-en-Valloire Saint-Sorlin-en-Valloire Saint-Sorlin,Saint-Sorlin-en-Valloire 45.28986 4.95205 P PPL FR B9 26 263 26330 1669 214 Europe/Paris 2012-01-18
-2976896 Saint-Sorlin-en-Bugey Saint-Sorlin-en-Bugey Bonne-Fontaine,Saint-Sorlin,Saint-Sorlin-en-Bugey 45.88468 5.3711 P PPL FR B9 01 011 01386 1067 203 Europe/Paris 2012-01-18
-2976914 Saint-Simon Saint-Simon Saint-Simon 44.96492 2.4909 P PPL FR 98 15 151 15215 1037 678 Europe/Paris 2012-01-18
-2976919 Saint-Siméon-de-Bressieux Saint-Simeon-de-Bressieux Saint-Simeon 45.3385 5.26591 P PPL FR B9 38 381 38457 2773 367 Europe/Paris 2007-09-06
-2976939 Saint-Sever-Calvados Saint-Sever-Calvados Saint-Sever,Saint-Sever-Calvados 48.84035 -1.04773 P PPL FR 99 14 144 14658 1486 212 Europe/Paris 2012-01-18
-2976942 Saint-Sever Saint-Sever Mont-Adour,Saint-Sever,Saint-Sever-sur-l'Adour 43.75727 -0.57357 P PPL FR 97 40 402 40282 4913 105 Europe/Paris 2012-01-18
-2976944 Saint-Seurin-sur-l'Isle Saint-Seurin-sur-l'Isle Saint-Seurin,Saint-Seurin-sur-l'Isle 45.01667 0 P PPL FR 97 33 335 33478 2598 19 Europe/Paris 2012-01-18
-2976962 Saint-Sernin-du-Bois Saint-Sernin-du-Bois Saint-Sernin,Saint-Sernin-du-Bois 46.84074 4.43271 P PPL FR A1 71 711 71479 1749 445 Europe/Paris 2012-01-18
-2976964 Saint-Sernin Saint-Sernin Saint-Sernin 44.57208 4.39163 P PPL FR B9 07 071 07296 1224 183 Europe/Paris 2012-01-18
-2976969 Saint-Senoux Saint-Senoux Saint-Senoux,Sant-Senour 47.90552 -1.78819 P PPL FR A2 35 352 35312 1167 60 Europe/Paris 2012-01-18
-2976972 Saint-Senier-sous-Avranches Saint-Senier-sous-Avranches Saint-Senier,Saint-Senier-sous-Avranches 48.68399 -1.33126 P PPL FR 99 50 501 50554 1051 98 Europe/Paris 2012-01-18
-2976974 Saint-Selve Saint-Selve Saint-Selve 44.67095 -0.47887 P PPL FR 97 33 332 33474 1758 14 Europe/Paris 2012-01-18
-2976984 Saint-Sébastien-sur-Loire Saint-Sebastien-sur-Loire Saint-Sebastien,Saint-Sebastien-sur-Loire,Saint-Sébastien,Saint-Sébastien-sur-Loire,San Sebastian sobre Loira,San Sebastián sobre Loira,Sankt-Sebast'jan-sjur-Luar,Sant-Sebastian-an-Enk,Санкт-Себастьян-сюр-Луар 47.20768 -1.50332 P PPL FR B5 44 442 44190 29238 17 Europe/Paris 2011-11-02
-2976986 Saint-Sébastien-de-Morsent Saint-Sebastien-de-Morsent Saint-Sebastien,Saint-Sebastien-de-Morsent,Saint-Sebastion-de Morsent,Saint-Sébastien,Saint-Sébastien-de-Morsent,Saint-Sébastion-de Morsent 49.01096 1.0873 P PPL FR A7 27 273 27602 4297 126 Europe/Paris 2011-08-12
-2976994 Saint-Savournin Saint-Savournin Saint-Savournin 43.40848 5.5269 P PPL FR B8 13 133 13101 2670 432 Europe/Paris 2011-01-18
-2976996 Saint-Savinien Saint-Savinien Carriere-Charente,Carrière-Charente,La Roche-sur-Charente,Saint-Savinien 45.87711 -0.67919 P PPL FR B7 17 175 17397 2671 16 Europe/Paris 2012-01-18
-2976997 Saint-Savin Saint-Savin Mont-des-Landes,Saint-Savin-de-Blay 45.15 -0.45 P PPL FR 97 33 331 33473 2263 51 Europe/Paris 2007-11-20
-2977000 Saint-Savin Saint-Savin Pont-sur-Gartempe,Saint-Savin,Saint-Savin-sur-Gartempe 46.56528 0.86709 P PPL FR B7 86 862 86246 1070 81 Europe/Paris 2012-01-18
-2977001 Saint-Savin Saint-Savin Saint-Savin 45.6277 5.30722 P PPL FR B9 38 382 38455 3035 228 Europe/Paris 2012-01-18
-2977006 Saint-Sauveur-sur-École Saint-Sauveur-sur-Ecole Saint-Sauveur 48.4975 2.54711 P PPL FR A8 77 772 77435 1152 68 Europe/Paris 2007-11-04
-2977007 Saint-Sauveur-le-Vicomte Saint-Sauveur-le-Vicomte Saint-Sauveur,Saint-Sauveur-le-Vicomte,Sauveur-sur-Douve 49.38547 -1.5331 P PPL FR 99 50 502 50551 2259 28 Europe/Paris 2012-01-18
-2977010 Saint-Sauveur-Lendelin Saint-Sauveur-Lendelin Saint-Sauveur-Lendelin 49.12988 -1.41405 P PPL FR 99 50 503 50550 1438 68 Europe/Paris 2012-01-18
-2977015 Saint-Sauveur-en-Rue Saint-Sauveur-en-Rue Saint-Sauveur,Saint-Sauveur-en-Rue 45.27021 4.4953 P PPL FR B9 42 423 42287 1197 753 Europe/Paris 2012-01-18
-2977019 Saint-Sauveur-des-Landes Saint-Sauveur-des-Landes Kersalver-al-Lann,Saint-Sauveur,Saint-Sauveur-des-Landes 48.34278 -1.31248 P PPL FR A2 35 351 35310 1244 119 Europe/Paris 2012-01-18
-2977023 Saint-Sauveur-de-Montagut Saint-Sauveur-de-Montagut Saint-Sauveur,Saint-Sauveur-de-Montagut 44.82142 4.57993 P PPL FR B9 07 072 07295 1332 221 Europe/Paris 2011-01-14
-2977033 Saint-Sauveur Saint-Sauveur Saint-Sauveur 49.93792 2.21162 P PPL FR B6 80 802 80718 1541 26 Europe/Paris 2012-01-18
-2977034 Saint-Sauveur Saint-Sauveur La Reunion,La Réunion,Saint-Sauveur,Sauveur-Geromenil,Sauveur-Géroménil 49.31857 2.78321 P PPL FR B6 60 603 60597 1763 56 Europe/Paris 2012-01-18
-2977038 Saint-Sauveur Saint-Sauveur Saint-Sauveur 47.8053 6.38583 P PPL FR A6 70 701 70473 2476 285 Europe/Paris 2012-01-18
-2977041 Saint-Sauveur Saint-Sauveur Saint-Sauveur 46.80842 0.62277 P PPL FR B7 86 861 86245 1019 103 Europe/Paris 2012-01-18
-2977043 Saint-Sauveur Saint-Sauveur Saint-Sauveur 45.20272 -0.83433 P PPL FR 97 33 334 33471 1294 24 Europe/Paris 2012-01-18
-2977044 Saint-Sauveur Saint-Sauveur Saint-Sauveur 45.15335 5.3528 P PPL FR B9 38 381 38454 1819 255 Europe/Paris 2012-01-18
-2977049 Saint-Sauveur Saint-Sauveur Saint-Sauveur 43.7483 1.40085 P PPL FR B3 31 313 31516 1515 145 Europe/Paris 2012-01-18
-2977050 Saint-Sauves-d'Auvergne Saint-Sauves-d'Auvergne Saint-Sauves,Sauve-Libre 45.6 2.68333 P PPL FR 98 63 633 63397 1104 888 Europe/Paris 2007-11-20
-2977054 Saint-Sauvant Saint-Sauvant Saint-Sauvant,Saint-Sauvant-la-Plaine,Sauvent-la-Plaine 46.35965 0.05634 P PPL FR B7 86 863 86244 1366 143 Europe/Paris 2012-01-18
-2977058 Saint-Saulve Saint-Saulve Saint-Saulve 50.37141 3.55612 P PPL FR B4 59 596 59544 11303 28 Europe/Paris 2012-01-18
-2977062 Saint-Saturnin-sur-Loire Saint-Saturnin-sur-Loire Mont-Rude,Saint-Saturnin,Saint-Saturnin-sur-Loire 47.39438 -0.43565 P PPL FR B5 49 491 49318 1273 81 Europe/Paris 2012-01-18
-2977063 Saint-Saturnin-lès-Avignon Saint-Saturnin-les-Avignon Mont-Saturnin,Saint-Saturnin,Saint-Saturnin-les-Avignon,Saint-Saturnin-lès-Avignon 43.95501 4.92548 P PPL FR B8 84 842 84119 4093 66 Europe/Paris 2011-01-18
-2977068 Saint-Saturnin-lès-Apt Saint-Saturnin-les-Apt Saint-Saturnin 43.93333 5.38333 P PPL FR B8 84 841 84118 2523 298 Europe/Paris 2007-11-20
-2977070 Saint-Saturnin Saint-Saturnin Saint-Saturnin 48.05796 0.15218 P PPL FR B5 72 723 72320 2281 68 Europe/Paris 2012-01-18
-2977072 Saint-Saturnin Saint-Saturnin Saint-Saturnin 45.66667 0.05 P PPL FR B7 16 161 16348 1199 73 Europe/Paris 2012-01-18
-2977073 Saint-Saturnin Saint-Saturnin Saint-Saturnin 45.65945 3.09019 P PPL FR 98 63 632 63396 1079 510 Europe/Paris 2012-01-18
-2977077 Saint-Satur Saint-Satur Saint-Satur,Thibault-la-Fontaine 47.33914 2.83734 P PPL FR A3 18 181 18233 1789 165 Europe/Paris 2012-01-18
-2977085 Saint-Samson-sur-Rance Saint-Samson-sur-Rance Saint-Samson,Saint-Samson-sur-Rance,Sant-Samzun 48.49252 -2.02865 P PPL FR A2 22 221 22327 1232 62 Europe/Paris 2012-01-18
-2977100 Saint-Saëns Saint-Saens Saens-la-Foret,Saens-la-Forêt,Saint-Saens,Saint-Saëns 49.67302 1.28525 P PPL FR A7 76 761 76648 2613 111 Europe/Paris 2012-01-18
-2977101 Saints Saints Saints 48.76066 3.04645 P PPL FR A8 77 771 77433 1286 120 Europe/Paris 2012-01-18
-2977103 Saintry-sur-Seine Saintry-sur-Seine Saintry,Saintry-sur-Seine 48.5964 2.49515 P PPL FR A8 91 912 91577 5308 60 Europe/Paris 2012-01-18
-2977114 Saint-Romans Saint-Romans Romans-Libre,Saint-Romans 45.11507 5.32751 P PPL FR B9 38 381 38453 1547 229 Europe/Paris 2012-01-18
-2977122 Saint-Romain-sur-Cher Saint-Romain-sur-Cher Brutus,Saint-Romain,Saint-Romain-sur-Cher 47.31877 1.39956 P PPL FR A3 41 413 41229 1342 85 Europe/Paris 2012-01-18
-2977126 Saint-Romain-le-Puy Saint-Romain-le-Puy Saint-Romain,Saint-Romain-le-Puy 45.5595 4.12839 P PPL FR B9 42 421 42285 2854 400 Europe/Paris 2012-01-18
-2977131 Saint-Romain-la-Motte Saint-Romain-la-Motte Saint-Romain,Saint-Romain-la-Motte 46.0846 3.9816 P PPL FR B9 42 422 42284 1430 321 Europe/Paris 2012-01-18
-2977137 Saint-Romain-en-Gal Saint-Romain-en-Gal Romain-les-Roches,Saint Romain,Saint-Romain-en-Gal 45.53159 4.86074 P PPL FR B9 69 691 69235 1546 171 Europe/Paris 2012-01-18
-2977142 Saint-Romain-de-Popey Saint-Romain-de-Popey Saint Romain,Saint-Romain-de-Popey 45.84762 4.53082 P PPL FR B9 69 692 69234 1325 411 Europe/Paris 2012-01-18
-2977145 Saint-Romain-de-Jalionas Saint-Romain-de-Jalionas Saint Romain,Saint-Romain-de-Jalionas 45.75697 5.21527 P PPL FR B9 38 382 38451 2964 204 Europe/Paris 2012-01-18
-2977146 Saint-Romain-de-Colbosc Saint-Romain-de-Colbosc Romain-de-Colbosc,Saint-Romain,Saint-Romain-de-Colbosc 49.53093 0.35719 P PPL FR A7 76 762 76647 4052 118 Europe/Paris 2012-01-18
-2977147 Saint-Romain-de-Benet Saint-Romain-de-Benet Romain-la-Fontaine,Saint-Romain,Saint-Romain-de-Benet 45.6915 -0.84765 P PPL FR B7 17 174 17393 1472 29 Europe/Paris 2012-01-18
-2977159 Saint-Rogatien Saint-Rogatien L'Egalite,L'Egalité,Prompt-Secours,Saint-Rogatien 46.15 -1.06963 P PPL FR B7 17 173 17391 1927 21 Europe/Paris 2012-01-18
-2977178 Saint-Riquier Saint-Riquier Saint-Riquier 50.13236 1.94756 P PPL FR B6 80 801 80716 1215 27 Europe/Paris 2012-01-18
-2977187 Saint-Restitut Saint-Restitut Restitut-la-Montagne,Saint-Restitut 44.33507 4.79155 P PPL FR B9 26 262 26326 1332 116 Europe/Paris 2012-01-18
-2977189 Saint-Renan Saint-Renan Lokournan,Saint-Renan 48.43333 -4.61667 P PPL FR A2 29 291 29260 7231 35 Europe/Paris 2012-01-18
-2977190 Saint-Rémy-sur-Durolle Saint-Remy-sur-Durolle Montoncel,Saint-Remy,Saint-Remy-sur-Durolle,Saint-Rémy,Saint-Rémy-sur-Durolle 45.88822 3.59125 P PPL FR 98 63 635 63393 1805 678 Europe/Paris 2012-01-18
-2977193 Saint-Rémy-sur-Avre Saint-Remy-sur-Avre Saint Remi-sur-Avre,Saint Rémi-sur-Avre,Saint-Remy,Saint-Remy-Avre,Saint-Remy-sur-Avre,Saint-Rémy,Saint-Rémy-sur-Avre 48.76142 1.24532 P PPL FR A3 28 283 28359 3695 103 Europe/Paris 2012-01-18
-2977197 Saint-Rémy-lès-Chevreuse Saint-Remy-les-Chevreuse Saint-Remy,Saint-Remy-les-Chevreuse,Saint-Rémy-lès-Chevreuse 48.70708 2.07692 P PPL FR A8 78 782 78575 8072 84 Europe/Paris 2012-01-18
-2977202 Saint-Rémy-en-Rollat Saint-Remy-en-Rollat Saint-Remy,Saint-Remy-en-Rollat,Saint-Rémy,Saint-Rémy-en-Rollat,Servagnon 46.18555 3.39613 P PPL FR 98 03 033 03258 1483 257 Europe/Paris 2012-01-18
-2977204 Saint-Rémy-en-Mauges Saint-Remy-en-Mauges Saint-Remy,Saint-Remy-en-Mauges,Saint-Rémy-en-Mauges 47.27202 -1.075 P PPL FR B5 49 492 49316 1298 87 Europe/Paris 2012-01-18
-2977214 Saint-Rémy-de-Provence Saint-Remy-de-Provence Glanum,Saint Remy Provence,Saint-Remy,Saint-Remy-de-Provence,Saint-Rémy,Saint-Rémy-de-Provence,St Remy Provence,san=remi=do=purovu~ansu,サン=レミ=ド=プロヴァンス 43.78848 4.83167 P PPL FR B8 13 132 13100 10562 63 Europe/Paris 2011-11-02
-2977225 Saint-Rémy Saint-Remy Saint-Remy,Saint-Rémy 48.94007 -0.50344 P PPL FR 99 14 142 14656 1065 40 Europe/Paris 2012-01-18
-2977229 Saint-Rémy Saint-Remy Bellevue-sur-Saone,Bellevue-sur-Saône,Chene-Libre,Chêne-Libre,Saint-Remy,Saint-Rémy 46.76334 4.83928 P PPL FR A1 71 712 71475 6046 185 Europe/Paris 2012-01-18
-2977235 Saint-Rémy-de-Maurienne Saint-Remy-de-Maurienne 45.4 6.26667 P PPL FR B9 73 733 73278 1047 494 Europe/Paris 2007-11-20
-2977246 Saint-Raphaël Saint-Raphael Barraton,Saint Raphell,Saint-Raphael,Saint-Raphaël,Sent-Rafaehl',Сент-Рафаэль 43.42332 6.7735 P PPL FR B8 83 831 83118 34918 22 Europe/Paris 2011-12-08
-2977250 Saint-Rambert-en-Bugey Saint-Rambert-en-Bugey Mont-Ferme,Saint-Rambert,Saint-Rambert-en-Bugey 45.94426 5.43904 P PPL FR B9 01 011 01384 2191 410 Europe/Paris 2012-01-18
-2977261 Saint-Quentin-sur-le-Homme Saint-Quentin-sur-le-Homme Saint-Quentin,Saint-Quentin-sur-le-Homme 48.64751 -1.31806 P PPL FR 99 50 501 50543 1125 67 Europe/Paris 2012-01-18
-2977262 Saint-Quentin-sur-Isère Saint-Quentin-sur-Isere Saint-Quentin,Saint-Quentin-sur-Isere,Saint-Quentin-sur-Isère 45.27881 5.54221 P PPL FR B9 38 381 38450 1326 223 Europe/Paris 2012-01-18
-2977274 Saint-Quentin-la-Poterie Saint-Quentin-la-Poterie Quentin-la-Poterie,Saint-Quentin,Saint-Quentin-la-Poterie 44.04392 4.44432 P PPL FR A9 30 302 30295 2986 109 Europe/Paris 2012-01-18
-2977277 Saint-Quentin-Fallavier Saint-Quentin-Fallavier Fallavier,Grand-Chalier,Grand-Châlier,Saint-Quentin,Saint-Quentin-Fallavier 45.6305 5.10924 P PPL FR B9 38 382 38449 6302 274 Europe/Paris 2012-01-18
-2977280 Saint-Quentin-en-Mauges Saint-Quentin-en-Mauges Saint-Quentin,Saint-Quentin-en-Mauges 47.2913 -0.91191 P PPL FR B5 49 492 49314 1047 127 Europe/Paris 2012-01-18
-2977287 Saint-Quentin-de-Baron Saint-Quentin-de-Baron Saint-Quentin,Saint-Quentin-de-Baron 44.81802 -0.28636 P PPL FR 97 33 335 33466 1043 58 Europe/Paris 2012-01-18
-2977295 Saint-Quentin Saint-Quentin Egalite-sur-Somme,Egalité-sur-Somme,Linon-sur-Somme,Saint-Quentin,Somme-Libre 49.84889 3.28757 P PPLA3 FR B6 02 023 02691 55407 106 Europe/Paris 2011-11-02
-2977299 Saint-Quay-Portrieux Saint-Quay-Portrieux Saint-Quay,Saint-Quay-Portrieux,Sant-Ke-Porzh-Olued 48.64992 -2.83058 P PPL FR A2 22 224 22325 3024 24 Europe/Paris 2012-01-18
-2977300 Saint-Quay-Perros Saint-Quay-Perros Saint-Quay,Saint-Quay-Perros,Sant-Ke-Perroz 48.78333 -3.45 P PPL FR A2 22 223 22324 1501 56 Europe/Paris 2012-01-18
-2977304 Saint-Python Saint-Python Saint-Python 50.19001 3.48027 P PPL FR B4 59 592 59541 1036 65 Europe/Paris 2012-01-18
-2977308 Saint-Pryvé-Saint-Mesmin Saint-Pryve-Saint-Mesmin Saint-Pryve,Saint-Pryve-Saint-Mesmin,Saint-Pryvé,Saint-Pryvé-Saint-Mesmin 47.88177 1.8695 P PPL FR A3 45 452 45298 5382 93 Europe/Paris 2012-01-18
-2977309 Saint-Prouant Saint-Prouant La Draperie,Saint-Prouant 46.75822 -0.95703 P PPL FR B5 85 852 85266 1390 100 Europe/Paris 2012-01-18
-2977310 Saint-Projet-Saint-Constant Saint-Projet-Saint-Constant Saint-Projet,Saint-Projet-Saint-Constant 45.72802 0.33851 P PPL FR B7 16 161 16344 1037 78 Europe/Paris 2012-01-18
-2977317 Saint-Prix Saint-Prix Saint-Prix 49.01667 2.26667 P PPL FR A8 95 953 95574 7226 132 Europe/Paris 2012-01-18
-2977323 Saint-Privat-la-Montagne Saint-Privat-la-Montagne Saint-Privat,Saint-Privat-la-Montagne 49.18789 6.03832 P PPL FR B2 57 574 57622 1408 323 Europe/Paris 2012-01-18
-2977327 Saint-Privat-des-Vieux Saint-Privat-des-Vieux La Font-le-Vieux,Marat-de-Bruege,Marat-de-Bruège,Saint-Privat,Saint-Privat-des-Vieux 44.14415 4.12988 P PPL FR A9 30 301 30294 4496 198 Europe/Paris 2012-01-18
-2977332 Saint-Privat Saint-Privat Privat-Haute-Montagne,Privat-le-Centre,Saint-Privat 45.13857 2.09869 P PPL FR B1 19 192 19237 1119 581 Europe/Paris 2012-01-18
-2977333 Saint-Privat Saint-Privat Saint-Privat 44.63002 4.41656 P PPL FR B9 07 071 07289 1508 217 Europe/Paris 2012-01-18
-2977336 Saint-Priest-Taurion Saint-Priest-Taurion Saint-Priest,Saint-Priest-Taurion 45.88686 1.40016 P PPL FR B1 87 872 87178 2678 250 Europe/Paris 2012-01-18
-2977337 Saint-Priest-sous-Aixe Saint-Priest-sous-Aixe Saint-Priest,Saint-Priest-sous-Aixe 45.81667 1.1 P PPL FR B1 87 872 87177 1521 283 Europe/Paris 2012-01-18
-2977350 Saint-Priest-en-Jarez Saint-Priest-en-Jarez Saint-Priest,Saint-Priest-en-Jarez 45.47501 4.37614 P PPL FR B9 42 423 42275 5924 509 Europe/Paris 2012-01-18
-2977356 Saint-Priest Saint-Priest Beau-Priest,Saint-Priest,Zele-Patriote,Zélé-Patriote 45.69612 4.93892 P PPL FR B9 69 691 69290 41641 204 Europe/Paris 2012-01-18
-2977358 Saint-Priest Saint-Priest Saint-Priest,Val-d'Or 44.71767 4.5462 P PPL FR B9 07 072 07288 1178 424 Europe/Paris 2012-01-18
-2977360 Saint-Prest Saint-Prest Saint-Prest 48.49107 1.53034 P PPL FR A3 28 281 28358 2385 121 Europe/Paris 2012-01-18
-2977365 Saint-Pourçain-sur-Sioule Saint-Pourcain-sur-Sioule Mont-sur-Sioule,Saint-Pourcain,Saint-Pourcain-sur-Sioule,Saint-Pourçain,Saint-Pourçain-sur-Sioule 46.30927 3.28787 P PPL FR 98 03 032 03254 5480 242 Europe/Paris 2012-01-18
-2977368 Saint-Pouange Saint-Pouange Saint-Pouange 48.22656 4.03979 P PPL FR A4 10 103 10360 1076 121 Europe/Paris 2011-01-06
-2977371 Saint-Porquier Saint-Porquier Mont-Porquier,Saint-Porquier 44.00344 1.17932 P PPL FR B3 82 822 82171 1094 93 Europe/Paris 2012-01-18
-2977373 Saint-Porchaire Saint-Porchaire L'Epine,Saint-Porchaire 45.82075 -0.78235 P PPL FR B7 17 174 17387 1437 19 Europe/Paris 2012-01-18
-2977382 Saint-Pons-de-Thomières Saint-Pons-de-Thomieres 43.48333 2.76667 P PPL FR A9 34 341 34284 2792 338 Europe/Paris 2007-11-20
-2977387 Saint-Pol-sur-Ternoise Saint-Pol-sur-Ternoise Pol,Rernois-Libre,Saint-Pol,Saint-Pol-sur-Ternoise 50.38113 2.33407 P PPL FR B4 62 621 62767 5603 91 Europe/Paris 2012-01-18
-2977388 Saint-Pol-sur-Mer Saint-Pol-sur-Mer Saint-Pol,Saint-Pol-sur-Mer,Sen-Pol'-sjur-Mer,Сен-Поль-сюр-Мер 51.03116 2.33984 P PPL FR B4 59 594 59183 23635 4 Europe/Paris 2012-01-18
-2977390 Saint-Pol-de-Léon Saint-Pol-de-Leon Kastell-Paol,Mont-Frimaire,Port-Pol,Saint-Pol-de-Leon,Saint-Pol-de-Léon 48.68333 -3.98333 P PPL FR A2 29 293 29259 7627 25 Europe/Paris 2012-01-18
-2977397 Saint-Planchers Saint-Planchers Saint-Planchers 48.82269 -1.52598 P PPL FR 99 50 501 50541 1158 47 Europe/Paris 2011-01-20
-2977411 Saint-Pierre-sur-Dives Saint-Pierre-sur-Dives Saint-Pierre,Saint-Pierre-sur-Dives 49.01667 -0.03333 P PPL FR 99 14 143 14654 3658 35 Europe/Paris 2012-01-18
-2977414 Saint-Pierre-Quiberon Saint-Pierre-Quiberon Saint-Pierre-Quiberon,Sant-Per-Kiberen,Sant-Pêr-Kiberen 47.52061 -3.13084 P PPL FR A2 56 561 56234 2322 6 Europe/Paris 2012-01-18
-2977415 Saint-Pierre-Montlimart Saint-Pierre-Montlimart Saint-Pierre,Saint-Pierre-Montlimard,Saint-Pierre-Montlimart 47.26976 -1.02738 P PPL FR B5 49 492 49313 3238 92 Europe/Paris 2012-01-18
-2977425 Saint-Pierre-lès-Nemours Saint-Pierre-les-Nemours Saint-Pierre,Saint-Pierre-les-Nemours,Saint-Pierre-lès-Nemours 48.26733 2.67966 P PPL FR A8 77 774 77431 6435 76 Europe/Paris 2012-01-18
-2977428 Saint-Pierre-lès-Elbeuf Saint-Pierre-les-Elbeuf Saint-Pierre,Saint-Pierre-les-Elbeuf,Saint-Pierre-lès-Elbeuf 49.27901 1.04305 P PPL FR A7 76 763 76640 8602 13 Europe/Paris 2012-01-18
-2977432 Saint-Pierre-le-Moûtier Saint-Pierre-le-Moutier Brutus-la-Vallee,Brutus-la-Vallée,Brutus-le-Magnanime,Brutus-le-Moutier,Saint-Pierre,Saint-Pierre-le-Moutier,Saint-Pierre-le-Moûtier 46.79277 3.11657 P PPL FR A1 58 583 58264 2023 220 Europe/Paris 2012-01-18
-2977441 Saint-Pierre-la-Palud Saint-Pierre-la-Palud Palud-la-Montagne,Pelletier-la-Palud,Saint Pierre,Saint-Pierre-la-Palud 45.78956 4.61291 P PPL FR B9 69 691 69231 2110 390 Europe/Paris 2012-01-18
-2977446 Saint-Pierre-la-Cour Saint-Pierre-la-Cour Bourg-l'Union,Saint-Pierre,Saint-Pierre-la-Cour 48.11258 -1.02496 P PPL FR B5 53 532 53247 1711 132 Europe/Paris 2012-01-18
-2977451 Saint-Pierre-en-Val Saint-Pierre-en-Val Saint-Pierre,Saint-Pierre-en-Val 50.02168 1.44707 P PPL FR A7 76 761 76638 1054 54 Europe/Paris 2012-01-18
-2977453 Saint-Pierre-Église Saint-Pierre-Eglise Pierre-Ferme,Saint-Pierre,Saint-Pierre-Eglise,Saint-Pierre-Église 49.66848 -1.40358 P PPL FR 99 50 502 50539 1829 75 Europe/Paris 2012-01-18
-2977454 Saint-Pierre-du-Vauvray Saint-Pierre-du-Vauvray Saint-Pierre,Saint-Pierre-du-Vauvray 49.23208 1.22125 P PPL FR A7 27 271 27598 1412 22 Europe/Paris 2012-01-18
-2977456 Saint-Pierre-du-Regard Saint-Pierre-du-Regard Saint-Pierre,Saint-Pierre-du-Regard 48.84286 -0.54631 P PPL FR 99 61 612 61447 1289 126 Europe/Paris 2012-01-18
-2977458 Saint-Pierre-du-Perray Saint-Pierre-du-Perray Saint-Pierre,Saint-Pierre-du-Perray 48.61064 2.49429 P PPL FR A8 91 912 91573 6140 80 Europe/Paris 2012-01-18
-2977462 Saint-Pierre-du-Mont Saint-Pierre-du-Mont Saint-Pierre 43.88453 -0.52185 P PPL FR 97 40 402 40281 7660 79 Europe/Paris 2011-11-02
-2977467 Saint-Pierre-du-Chemin Saint-Pierre-du-Chemin Chemin-sur-le-Lay,Saint-Pierre,Saint-Pierre-du-Chemin 46.69523 -0.70095 P PPL FR B5 85 851 85264 1521 227 Europe/Paris 2012-01-18
-2977477 Saint-Pierre-de-Varengeville Saint-Pierre-de-Varengeville Saint-Pierre,Saint-Pierre-de-Varengeville 49.5024 0.93118 P PPL FR A7 76 763 76636 2318 119 Europe/Paris 2012-01-18
-2977482 Saint-Pierre-des-Nids Saint-Pierre-des-Nids Saint-Pierre,Saint-Pierre-des-Nids 48.39826 -0.09984 P PPL FR B5 53 533 53246 1798 187 Europe/Paris 2012-01-18
-2977488 Saint-Pierre-des-Fleurs Saint-Pierre-des-Fleurs Saint-Pierre,Saint-Pierre-des-Fleurs 49.25 0.96667 P PPL FR A7 27 272 27593 1330 152 Europe/Paris 2012-01-18
-2977490 Saint-Pierre-des-Échaubrognes Saint-Pierre-des-Echaubrognes Saint-Pierre,Saint-Pierre-des-Echaubrognes,Saint-Pierre-des-Échaubrognes 46.98988 -0.74441 P PPL FR B7 79 791 79289 1290 152 Europe/Paris 2012-01-18
-2977491 Saint-Pierre-des-Corps Saint-Pierre-des-Corps La Clarte-Republicaine,La Clarté-Républicaine,Saint-Pierre,Saint-Pierre-des-Corps 47.38623 0.74849 P PPL FR A3 37 372 37233 15284 50 Europe/Paris 2012-01-18
-2977497 Saint-Pierre-de-Plesguen Saint-Pierre-de-Plesguen Saint-Pierre,Saint-Pierre-de-Plesguen,Sant-Per-Plewenn,Sant-Pêr-Plewenn 48.44638 -1.91278 P PPL FR A2 35 354 35308 2174 83 Europe/Paris 2012-01-18
-2977530 Saint-Pierre-de-Chandieu Saint-Pierre-de-Chandieu Chandieu-la-Montagne,Saint Pierre Chandieu,Saint-Pierre,Saint-Pierre-de-Chandieu 45.64558 5.01128 P PPL FR B9 69 691 69289 4357 255 Europe/Paris 2012-01-18
-2977535 Saint-Pierre-de-Bœuf Saint-Pierre-de-Boeuf Saint Pierre,Saint-Pierre-de-Boeuf 45.36667 4.75 P PPL FR B9 42 423 42272 1326 222 Europe/Paris 2010-03-03
-2977587 Saint-Piat Saint-Piat Martel-les-Vaux,Saint-Piat 48.54668 1.58363 P PPL FR A3 28 281 28357 1114 107 Europe/Paris 2012-01-18
-2977593 Saint-Philibert Saint-Philibert Saint-Philibert,Sant-Filberzh 47.58821 -2.99978 P PPL FR A2 56 561 56233 1344 14 Europe/Paris 2012-01-18
-2977600 Saint-Philbert-du-Peuple Saint-Philbert-du-Peuple Saint-Philbert,Saint-Philbert-du-Peuple 47.39314 -0.0436 P PPL FR B5 49 493 49311 1186 36 Europe/Paris 2012-01-18
-2977602 Saint-Philbert-de-Grand-Lieu Saint-Philbert-de-Grand-Lieu Saint-Philbert,Saint-Philbert-de-Grand-Lieu,Sant-Filberzh-Deaz 47.0358 -1.6412 P PPL FR B5 44 442 44188 6757 7 Europe/Paris 2012-01-18
-2977603 Saint-Philbert-de-Bouaine Saint-Philbert-de-Bouaine Saint-Philbert,Saint-Philbert-de-Bouaine 46.98568 -1.52022 P PPL FR B5 85 852 85262 2413 18 Europe/Paris 2012-01-18
-2977610 Saint-Perreux Saint-Perreux Saint-Perreux,Sant-Pereg 47.66952 -2.10809 P PPL FR A2 56 563 56232 1136 17 Europe/Paris 2012-01-18
-2977613 Saint-Père-sur-Loire Saint-Pere-sur-Loire Saint-Pere,Saint-Père 47.76667 2.36667 P PPL FR A3 45 452 45297 1062 108 Europe/Paris 2007-11-20
-2977614 Saint-Père-en-Retz Saint-Pere-en-Retz Fraternite,Fraternité,Saint-Pere-en-Retz,Saint-Père-en-Retz,Sant-Per-Raez,Sant-Pêr-Raez 47.20559 -2.04095 P PPL FR B5 44 443 44187 3882 18 Europe/Paris 2012-01-18
-2977616 Saint-Père Saint-Pere Saint-Pere,Saint-Père,Sant-Per-Poualed,Sant-Pêr-Poualed 48.58726 -1.92413 P PPL FR A2 35 354 35306 2008 47 Europe/Paris 2012-01-18
-2977622 Saint-Perdon Saint-Perdon 43.8656 -0.59069 P PPL FR 97 40 402 40280 1087 81 Europe/Paris 2009-04-01
-2977623 Saint-Péray Saint-Peray Peray-Vin-Blanc,Saint-Peray,Saint-Péray 44.94799 4.8463 P PPL FR B9 07 073 07281 6922 129 Europe/Paris 2012-01-18
-2977631 Saint-Pée-sur-Nivelle Saint-Pee-sur-Nivelle Beaugard,Saint-Pee,Saint-Pee-sur-Nivelle,Saint-Pée,Saint-Pée-sur-Nivelle,Senpere 43.35564 -1.55013 P PPL FR 97 64 641 64495 4682 21 Europe/Paris 2012-01-18
-2977636 Saint-Pé-de-Bigorre Saint-Pe-de-Bigorre Saint-Pe,Saint-Pe-de-Bigorre,Saint-Pé,Saint-Pé-de-Bigorre 43.11667 -0.15 P PPL FR B3 65 651 65395 1391 482 Europe/Paris 2011-09-11
-2977638 Saint-Paul-Trois-Châteaux Saint-Paul-Trois-Chateaux Paul-les-Fontaines,Saint-Paul,Saint-Paul-Trois-Chateaux,Saint-Paul-Trois-Châteaux 44.34909 4.76574 P PPL FR B9 26 262 26324 8028 84 Europe/Paris 2012-01-18
-2977645 Saint-Paul-lès-Romans Saint-Paul-les-Romans Paul-la-Joyeuse,Saint-Paul,Saint-Paul-les-Romans,Saint-Paul-lès-Romans 45.06946 5.13575 P PPL FR B9 26 263 26323 1613 185 Europe/Paris 2012-01-18
-2977648 Saint-Paul-lès-Dax Saint-Paul-les-Dax Bonnet-Rouge,Saint-Paul,Saint-Paul-les-Dax,Saint-Paul-lès-Dax 43.72715 -1.05162 P PPL FR 97 40 401 40279 11839 21 Europe/Paris 2012-01-18
-2977655 Saint-Paulien Saint-Paulien Saint-Paulien,Velaune 45.1365 3.81384 P PPL FR 98 43 432 43216 2162 814 Europe/Paris 2012-01-18
-2977657 Saint-Paulet-de-Caisson Saint-Paulet-de-Caisson Caisson,Saint Paulet,Saint-Paulet-de-Caisson,Saint-Paulet-des-Caissons 44.26055 4.59785 P PPL FR A9 30 302 30290 1745 84 Europe/Paris 2012-01-18
-2977659 Saint-Paul-en-Pareds Saint-Paul-en-Pareds La Regeneree,La Regénérée,Saint-Paul,Saint-Paul-en-Pareds 46.82214 -0.98977 P PPL FR B5 85 852 85259 1005 117 Europe/Paris 2012-01-18
-2977660 Saint-Paul-en-Jarez Saint-Paul-en-Jarez Saint-Paul,Saint-Paul-en-Jarez,Valdorley 45.48239 4.57132 P PPL FR B9 42 423 42271 3978 400 Europe/Paris 2012-01-18
-2977662 Saint-Paul-en-Forêt Saint-Paul-en-Foret Saint-Paul,Saint-Paul-en-Foret,Saint-Paul-en-Forêt 43.56762 6.69475 P PPL FR B8 83 831 83117 1232 328 Europe/Paris 2012-01-18
-2977663 Saint-Paul-en-Cornillon Saint-Paul-en-Cornillon Saint Paul,Saint-Paul-en-Cornillon 45.39647 4.22694 P PPL FR B9 42 423 42270 1353 468 Europe/Paris 2012-01-18
-2977664 Saint-Paul-en-Chablais Saint-Paul-en-Chablais Saint Paul,Saint Paul 74500,Saint-Paul,Saint-Paul 74500,Saint-Paul-en-Chablais 46.37569 6.63711 P PPL FR B9 74 744 74249 1876 863 Europe/Paris 2012-01-18
-2977673 Saint-Paul-de-Varces Saint-Paul-de-Varces Ancoin,Paul-d'Ancoin,Saint-Paul 45.07175 5.64247 P PPL FR B9 38 381 38436 1978 386 Europe/Paris 2009-11-09
-2977674 Saint-Paul-de-Varax Saint-Paul-de-Varax Saint-Paul,Saint-Paul-de-Varax,Varax 46.09848 5.12897 P PPL FR B9 01 012 01383 1297 269 Europe/Paris 2012-01-18
-2977677 Saint-Paul-des-Landes Saint-Paul-des-Landes Saint-Paul,Saint-Paul-des-Landes 44.94416 2.3142 P PPL FR 98 15 151 15204 1124 552 Europe/Paris 2012-01-18
-2977681 Saint-Paul-de-Jarrat Saint-Paul-de-Jarrat Saint Paul,Saint-Paul-de-Jarrat 42.91404 1.65437 P PPL FR B3 09 091 09272 1302 467 Europe/Paris 2012-01-18
-2977683 Saint-Paul-de-Fenouillet Saint-Paul-de-Fenouillet Saint-Paul,Saint-Paul-de-Fenouillet 42.80938 2.50374 P PPL FR A9 66 662 66187 2049 259 Europe/Paris 2012-01-18
-2977686 Saint-Paul-Cap-de-Joux Saint-Paul-Cap-de-Joux Agout-Rousseau,Saint-Paul,Saint-Paul-Cap-de-Joux 43.6479 1.97559 P PPL FR B3 81 812 81266 1015 162 Europe/Paris 2012-01-18
-2977691 Saint-Paul Saint-Paul Saint-Paul 49.42962 2.00755 P PPL FR B6 60 601 60591 1509 110 Europe/Paris 2012-01-18
-2977696 Saint-Paul Saint-Paul Saint-Paul,Saint-Paul-d'Eyjeaux 45.75114 1.43238 P PPL FR B1 87 872 87174 1166 318 Europe/Paris 2012-01-18
-2977701 Saint-Paul-de-Vence Saint-Paul-de-Vence Saint-Paul,Saint-Paul i Alpes-Maritimes,Saint-Paul-de-Vence,St Paul de Vence 43.7 7.11667 P PPL FR B8 06 061 06128 2984 207 Europe/Paris 2011-03-25
-2977709 Saint-Pathus Saint-Pathus Saint-Pathus 49.07136 2.79886 P PPL FR A8 77 771 77430 5296 101 Europe/Paris 2012-01-18
-2977710 Saint-Paterne-Racan Saint-Paterne-Racan Les Bains,Saint-Paterne,Saint-Paterne-Racan 47.60213 0.48478 P PPL FR A3 37 372 37231 1588 68 Europe/Paris 2012-01-18
-2977712 Saint-Paterne Saint-Paterne Saint-Paterne 48.41614 0.11271 P PPL FR B5 72 722 72308 1651 135 Europe/Paris 2012-01-18
-2977718 Saint-Parres-aux-Tertres Saint-Parres-aux-Tertres Saint-Parres,Saint-Parres-aux-Tertres 48.2978 4.11752 P PPL FR A4 10 103 10357 2663 115 Europe/Paris 2012-01-18
-2977719 Saint-Parize-le-Châtel Saint-Parize-le-Chatel Brennery,Saint-Parize,Saint-Parize-le-Chatel,Saint-Parize-le-Châtel 46.85447 3.18267 P PPL FR A1 58 583 58260 1307 234 Europe/Paris 2012-01-18
-2977721 Saint-Pargoire Saint-Pargoire Pargoire-l'Herault,Pargoire-l'Hérault,Saint-Pargoire 43.52766 3.5187 P PPL FR A9 34 342 34281 1530 81 Europe/Paris 2012-01-18
-2977729 Saint-Pardoux-la-Rivière Saint-Pardoux-la-Riviere Saint-Pardoux,Saint-Pardoux-la-Riviere,Saint-Pardoux-la-Rivière 45.49388 0.74651 P PPL FR 97 24 242 24479 1144 144 Europe/Paris 2012-01-18
-2977731 Saint-Pardoux-Isaac Saint-Pardoux-Isaac Saint-Pardoux,Saint-Pardoux-Isaac 44.6119 0.37344 P PPL FR 97 47 472 47264 1270 83 Europe/Paris 2012-01-18
-2977739 Saint-Pardoux Saint-Pardoux La Viette,Saint-Pardoux 46.57155 -0.30542 P PPL FR B7 79 793 79285 1337 205 Europe/Paris 2012-01-18
-2977750 Saint-Pantaléon-de-Larche Saint-Pantaleon-de-Larche La Fraternite,La Fraternité,Saint-Pantaleon,Saint-Pantaleon-de-Larche,Saint-Pantaléon,Saint-Pantaléon-de-Larche 45.14138 1.44608 P PPL FR B1 19 191 19229 3863 99 Europe/Paris 2012-01-18
-2977762 Saint-Pal-de-Mons Saint-Pal-de-Mons Pal-Senouire,Pal-Sénouire,Saint-Pal,Saint-Pal-de-Mans,Saint-Pal-de-Mons 45.24628 4.27412 P PPL FR 98 43 433 43213 1823 826 Europe/Paris 2012-01-18
-2977764 Saint-Palais-sur-Mer Saint-Palais-sur-Mer Chaumiere-sur-Mer,Chaumière-sur-Mer,Saint-Palais 45.64255 -1.0881 P PPL FR B7 17 172 17380 3656 6 9 Europe/Paris 2007-11-29
-2977772 Saint-Palais Saint-Palais Donapaleu,Mont-Bidouze,Saint-Palais 43.32867 -1.03333 P PPL FR 97 64 641 64493 2038 51 Europe/Paris 2012-01-18
-2977774 Saint-Pair-sur-Mer Saint-Pair-sur-Mer Pair-Libre,Saint-Pair,Saint-Pair-sur-Mer 48.81455 -1.56761 P PPL FR 99 50 501 50532 3741 22 Europe/Paris 2011-01-20
-2977777 Saint-Paër Saint-Paer Saint-Paer,Saint-Paër 49.51452 0.87936 P PPL FR A7 76 763 76631 1241 116 Europe/Paris 2012-01-18
-2977780 Saint-Pabu Saint-Pabu Saint-Pabu,Sant-Pabu 48.56667 -4.6 P PPL FR A2 29 291 29257 1561 30 Europe/Paris 2012-01-18
-2977783 Saint-Ours Saint-Ours Saint-Ours 45.85003 2.89321 P PPL FR 98 63 634 63381 1425 815 Europe/Paris 2012-01-18
-2977800 Saint-Ouen-l'Aumône Saint-Ouen-l'Aumone L'Aumone-la-Montagne,L'Aumône-la-Montagne,Montagne-sur-Oise,Saint-Ouen-l'Aumone,Saint-Ouen-l'Aumône 49.04353 2.12134 P PPL FR A8 95 953 95572 22977 30 Europe/Paris 2012-01-18
-2977804 Saint-Ouen-en-Belin Saint-Ouen-en-Belin Saint-Ouen,Saint-Ouen-en-Belin 47.83302 0.20924 P PPL FR B5 72 723 72306 1269 60 Europe/Paris 2012-01-18
-2977805 Saint-Ouen-du-Tilleul Saint-Ouen-du-Tilleul Saint-Ouen,Saint-Ouen-du-Tilleul 49.29723 0.9476 P PPL FR A7 27 272 27582 1487 129 Europe/Paris 2012-01-18
-2977808 Saint-Ouen-de-Thouberville Saint-Ouen-de-Thouberville Saint-Ouen,Saint-Ouen-de-Thouberville 49.35726 0.88848 P PPL FR A7 27 272 27580 1802 130 Europe/Paris 2012-01-18
-2977810 Saint-Ouën-des-Toits Saint-Ouen-des-Toits Saint-Ouen 48.13333 -0.9 P PPL FR B5 53 532 53243 1515 164 Europe/Paris 2007-11-18
-2977814 Saint-Ouen-des-Alleux Saint-Ouen-des-Alleux Saint-Ouen,Saint-Ouen-des-Alleux,Sant-Owen-an-Alloz 48.32805 -1.4259 P PPL FR A2 35 351 35304 1004 81 Europe/Paris 2012-01-18
-2977821 Saint-Ouen Saint-Ouen Saint-Ouen,Sankt-Ouehn,Санкт-Оуэн 50.03819 2.12088 P PPL FR B6 80 802 80711 2229 25 Europe/Paris 2012-01-18
-2977824 Saint-Ouen Saint-Ouen Bain-sur-Seine,Saint-Ouen,Saint-Ouen-sur-Seine,Sankt-Ouehn,Санкт-Оуэн 48.9 2.33333 P PPL FR A8 93 933 93070 39353 51 Europe/Paris 2012-01-18
-2977825 Saint-Ouen Saint-Ouen Fondouen,Saint-Ouen,Sankt-Ouehn,Санкт-Оуэн 47.81404 1.08067 P PPL FR A3 41 412 41226 3197 122 Europe/Paris 2012-01-18
-2977832 Saint-Orens-de-Gameville Saint-Orens-de-Gameville Saint-Orens,Saint-Orens-de-Gameville 43.55402 1.53411 P PPL FR B3 31 313 31506 12576 201 Europe/Paris 2012-01-18
-2977841 Saint-Omer-en-Chaussée Saint-Omer-en-Chaussee Saint-Omer,Saint-Omer-en-Chaussee,Saint-Omer-en-Chaussée 49.53142 2.00336 P PPL FR B6 60 601 60590 1249 104 Europe/Paris 2012-01-18
-2977845 Saint-Omer Saint-Omer Saint-Omer,Sint-Omaars 50.75 2.25 P PPLA3 FR B4 62 625 62765 18250 20 Europe/Paris 2011-11-02
-2977854 Saint-Nom-la-Bretêche Saint-Nom-la-Breteche Saint-Nom-la-Breteche,Saint-Nom-la-Bretêche,Union-la-Montagne 48.85942 2.02233 P PPL FR A8 78 783 78571 4828 140 Europe/Paris 2012-01-18
-2977855 Saint-Nolff Saint-Nolff Saint-Nolff,Sant-Nolf 47.70365 -2.65209 P PPL FR A2 56 563 56231 3571 77 Europe/Paris 2012-01-18
-2977857 Saint-Nizier-sous-Charlieu Saint-Nizier-sous-Charlieu Saint-Nizier,Saint-Nizier-sous-Charlieu 46.1535 4.12279 P PPL FR B9 42 422 42267 1632 268 Europe/Paris 2012-01-18
-2977869 Saint-Nicolas-du-Pélem Saint-Nicolas-du-Pelem Saint-Nicolas,Saint-Nicolas-du-Pelem,Saint-Nicolas-du-Pélem,Sant-Nikolaz-ar-Pelem 48.31222 -3.16465 P PPL FR A2 22 222 22321 1959 180 Europe/Paris 2012-01-18
-2977879 Saint-Nicolas-de-Redon Saint-Nicolas-de-Redon Saint-Nicolas,Saint-Nicolas-de-Redon,Sant-Nikolaz-an-Hent,Union-sur-Vilaine 47.64343 -2.06305 P PPL FR B5 44 441 44185 3055 32 Europe/Paris 2012-01-18
-2977880 Saint-Nicolas-de-Port Saint-Nicolas-de-Port Port-sur-Meurthe,Saint-Nicolas,Saint-Nicolas-de-Port,Saint-Nicolas-du-Port 48.63089 6.30038 P PPL FR B2 54 543 54483 7653 219 Europe/Paris 2012-01-18
-2977883 Saint-Nicolas-de-la-Taille Saint-Nicolas-de-la-Taille Saint-Nicolas,Saint-Nicolas-de-la-Taille 49.51085 0.47405 P PPL FR A7 76 762 76627 1069 109 Europe/Paris 2012-01-18
-2977885 Saint-Nicolas-de-la-Grave Saint-Nicolas-de-la-Grave La Grave-Bec-du-Tarn,La Grave-du-Bec,Saint-Nicolas,Saint-Nicolas-de-la-Grave,Saint-Nicolas-la-Grave 44.06417 1.0228 P PPL FR B3 82 821 82169 2147 81 Europe/Paris 2012-01-18
-2977889 Saint-Nicolas-de-Bourgueil Saint-Nicolas-de-Bourgueil Saint-Nicolas,Saint-Nicolas-de-Bourgueil 47.28493 0.12728 P PPL FR A3 37 371 37228 1243 45 Europe/Paris 2012-01-18
-2977892 Saint-Nicolas-d'Aliermont Saint-Nicolas-d'Aliermont Saint-Nicolas,Saint-Nicolas-d'Aliermont 49.87856 1.22486 P PPL FR A7 76 761 76624 4045 140 Europe/Paris 2012-01-18
-2977901 Saint-Nicolas Saint-Nicolas Saint Nicolas Les Arras,Saint-Nicolas,Saint-Nicolas-lez-Arras,Saint-Nicolas-lèz-Arras 50.30413 2.77939 P PPL FR B4 62 621 62764 5791 73 Europe/Paris 2012-01-18
-2977921 Saint-Nazaire Saint-Nazaire Saint-Nazaire,Sant-Nazer,Sen-Nazer,Сен-Назер 47.28333 -2.2 P PPLA3 FR B5 44 443 44184 67054 3 Europe/Paris 2011-11-02
-2977922 Saint-Nazaire-les-Eymes Saint-Nazaire-les-Eymes Saint-Nazaire 45.24921 5.85254 P PPL FR B9 38 381 38431 2531 284 Europe/Paris 2007-11-20
-2977925 Saint-Nazaire Saint-Nazaire Sen-Nazer,Сен-Назер 44.19833 4.62413 P PPL FR A9 30 302 30288 1222 101 Europe/Paris 2010-01-29
-2977926 Saint-Nazaire Saint-Nazaire Saint-Nazaire,Sant Nazari,Sen-Nazer,Сен-Назер 42.6679 2.99168 P PPL FR A9 66 662 66186 2611 11 Europe/Paris 2012-01-18
-2977927 Saint-Nauphary Saint-Nauphary Saint-Nauphary 43.96712 1.42549 P PPL FR B3 82 822 82167 1314 103 Europe/Paris 2012-01-18
-2977929 Saint-Nabord Saint-Nabord Roche-Libre,Saint-Nabord 48.05171 6.58248 P PPL FR B2 88 881 88429 3970 405 Europe/Paris 2012-01-18
-2977934 Saint-Morillon Saint-Morillon Saint-Morillon 44.6506 -0.50322 P PPL FR 97 33 332 33454 1179 20 Europe/Paris 2012-01-18
-2977943 Saint-Molf Saint-Molf Saint-Molf,Sant-Molf 47.39167 -2.42357 P PPL FR B5 44 443 44183 1617 13 Europe/Paris 2012-01-18
-2977947 Saint-Mitre-les-Remparts Saint-Mitre-les-Remparts Bellefont,Saint-Mitre,Saint-Mitre-les-Remparts 43.45488 5.01702 P PPL FR B8 13 134 13098 5758 94 Europe/Paris 2012-01-18
-2977948 Saint-Mihiel Saint-Mihiel Roche-sur-Meuse,Saint-Mihiel 48.88746 5.55099 P PPL FR B2 55 552 55463 5325 226 Europe/Paris 2012-01-18
-2977952 Saint-Michel-sur-Orge Saint-Michel-sur-Orge Saint-Michel,Saint-Michel-sur-Orge 48.63479 2.30831 P PPL FR A8 91 913 91570 20824 66 Europe/Paris 2012-01-18
-2977953 Saint-Michel-sur-Meurthe Saint-Michel-sur-Meurthe Belmont,Saint-Michel,Saint-Michel-sur-Meurthe 48.32219 6.89024 P PPL FR B2 88 883 88428 1993 316 Europe/Paris 2012-01-18
-2977957 Saint-Michel-Mont-Mercure Saint-Michel-Mont-Mercure Le Mont-Mercure,Saint-Michel,Saint-Michel-Mont-Mercure 46.82941 -0.88298 P PPL FR B5 85 851 85257 2073 262 Europe/Paris 2012-01-18
-2977962 Saint-Michel-le-Cloucq Saint-Michel-le-Cloucq Saint-Michel,Saint-Michel-le-Cloucq 46.485 -0.75262 P PPL FR B5 85 851 85256 1320 89 Europe/Paris 2012-01-18
-2977986 Saint-Michel-de-Maurienne Saint-Michel-de-Maurienne Pas-du-Roc,Saint-Michel,Saint-Michel-de-Maurienne 45.21842 6.47258 P PPL FR B9 73 733 73261 3174 715 Europe/Paris 2012-01-18
-2978004 Saint-Michel-Chef-Chef Saint-Michel-Chef-Chef Saint-Michel,Saint-Michel-Chef-Chef,Sant-Mikael-Keveger 47.18072 -2.14869 P PPL FR B5 44 443 44182 3435 25 Europe/Paris 2012-01-18
-2978017 Saint-Michel Saint-Michel Saint-Michel 49.91952 4.13278 P PPL FR B6 02 025 02684 3524 197 Europe/Paris 2012-01-18
-2978023 Saint-Michel Saint-Michel Saint-Michel 45.65 0.1 P PPL FR B7 16 161 16341 3146 27 Europe/Paris 2012-01-18
-2978040 Saint-Mexant Saint-Mexant 45.28333 1.65 P PPL FR B1 19 192 19227 1070 425 Europe/Paris 2007-11-18
-2978043 Saint-Mesmin Saint-Mesmin Beauvallon-sur-Sevre,Beauvallon-sur-Sèvre,Saint-Mesmin 46.79369 -0.73262 P PPL FR B5 85 851 85254 1896 167 Europe/Paris 2012-01-18
-2978053 Saint-Menges Saint-Menges Saint-Menges,Union 49.73873 4.92628 P PPL FR A4 08 083 08391 1040 199 Europe/Paris 2012-01-18
-2978056 Saint-Memmie Saint-Memmie Brutus,Saint-Memmie 48.95247 4.38409 P PPL FR A4 51 511 51506 5833 89 Europe/Paris 2012-01-18
-2978057 Saint-Même-le-Tenu Saint-Meme-le-Tenu Saint-Meme,Saint-Meme-le-Tenu,Saint-Même,Saint-Même-le-Tenu,Sant-Masen-ar-Porzh 47.02005 -1.79459 P PPL FR B5 44 442 44181 1138 7 Europe/Paris 2012-01-18
-2978058 Saint-Même-les-Carrières Saint-Meme-les-Carrieres Saint-Meme,Saint-Meme-les-Carrieres,Saint-Même,Saint-Même-les-Carrières 45.65 -0.15 P PPL FR B7 16 162 16340 1084 44 Europe/Paris 2012-01-18
-2978062 Saint-Méloir-des-Ondes Saint-Meloir-des-Ondes Meloir-Richeux,Méloir-Richeux,Saint Meloir des Ondres,Saint-Meloir-des-Ondes,Saint-Méloir-des-Ondes,Sant-Meleg 48.6379 -1.90448 P PPL FR A2 35 354 35299 3289 51 Europe/Paris 2012-01-18
-2978065 Saint-Melaine-sur-Aubance Saint-Melaine-sur-Aubance Aubance,Saint-Melaine,Saint-Mélaine 47.36667 -0.5 P PPL FR B5 49 491 49308 2052 49 Europe/Paris 2007-09-08
-2978067 Saint-Méen-le-Grand Saint-Meen-le-Grand Meen-Libre,Meen-la-Foret,Méen-Libre,Méen-la-Forêt,Saint-Meen,Saint-Meen-le-Grand,Saint-Méen,Saint-Méen-le-Grand,Sant-Meven 48.18971 -2.19486 P PPL FR A2 35 353 35297 4028 107 Europe/Paris 2012-01-18
-2978070 Saint-Médard-sur-Ille Saint-Medard-sur-Ille Saint-Medard,Saint-Medard-sur-Ille,Saint-Médard,Saint-Médard-sur-Ille,Sant-Marzh-an-Il 48.27202 -1.65968 P PPL FR A2 35 353 35296 1248 76 Europe/Paris 2012-01-18
-2978072 Saint-Médard-en-Jalles Saint-Medard-en-Jalles Fulminant,Saint-Medard,Saint-Medard-en-Jalles,Saint-Médard,Saint-Médard-en-Jalles,Sankt-Medard-an-Zhall',Sent Medard,Санкт-Медард-ан-Жалль 44.89692 -0.72136 P PPL FR 97 33 332 33449 29742 28 Europe/Paris 2012-01-18
-2978078 Saint-Médard-de-Mussidan Saint-Medard-de-Mussidan Saint-Medard,Saint-Medard-de-Mussidan,Saint-Médard,Saint-Médard-de-Mussidan 45.03333 0.35 P PPL FR 97 24 243 24462 1590 58 Europe/Paris 2012-01-18
-2978079 Saint-Médard-de-Guizières Saint-Medard-de-Guizieres Saint-Medard,Saint-Medard-de-Guizieres,Saint-Médard,Saint-Médard-de-Guizières 45.01667 -0.05 P PPL FR 97 33 335 33447 2162 17 Europe/Paris 2012-01-18
-2978099 Saint-Maxire Saint-Maxire Saint-Maxire 46.39911 -0.47988 P PPL FR B7 79 792 79281 1172 37 Europe/Paris 2012-01-18
-2978100 Saint-Maximin-la-Sainte-Baume Saint-Maximin-la-Sainte-Baume Marathon,Saint-Maximin,Saint-Maximin-la-Sainte-Baume 43.45214 5.86219 P PPL FR B8 83 833 83116 15225 307 Europe/Paris 2012-01-18
-2978101 Saint-Maximin Saint-Maximin Maximum,Saint-Maximin 49.22182 2.4536 P PPL FR B6 60 604 60589 2685 60 Europe/Paris 2012-01-18
-2978105 Saint-Max Saint-Max Max-la-Montagne,Saint-Max 48.70429 6.20999 P PPL FR B2 54 543 54482 11123 205 Europe/Paris 2012-01-18
-2978112 Saint-Maurice-sur-Moselle Saint-Maurice-sur-Moselle Saint-Maurice,Saint-Maurice-sur-Moselle 47.85889 6.82478 P PPL FR B2 88 881 88426 1507 553 Europe/Paris 2012-01-18
-2978116 Saint-Maurice-sur-Fessard Saint-Maurice-sur-Fessard Saint-Maurice,Saint-Maurice-sur-Fessard 47.99231 2.62157 P PPL FR A3 45 451 45293 1094 89 Europe/Paris 2012-01-18
-2978118 Saint-Maurice-sur-Dargoire Saint-Maurice-sur-Dargoire Desille-sur-Dargoire,Désille-sur-Dargoire,Saint-Maurice,Saint-Maurice-sur-Dargoire 45.58117 4.63113 P PPL FR B9 69 691 69228 2128 462 Europe/Paris 2012-01-18
-2978126 Saint-Maurice-Montcouronne Saint-Maurice-Montcouronne Saint-Maurice,Saint-Maurice-Montcouronne 48.58288 2.12504 P PPL FR A8 91 911 91568 1440 96 Europe/Paris 2012-01-18
-2978134 Saint-Maurice-la-Souterraine Saint-Maurice-la-Souterraine Saint-Maurice,Saint-Maurice-la-Souterraine 46.21388 1.4313 P PPL FR B1 23 232 23219 1051 374 Europe/Paris 2012-01-18
-2978136 Saint-Maurice-la-Clouère Saint-Maurice-la-Clouere Saint-Maurice,Saint-Maurice-la-Clouere,Saint-Maurice-la-Clouère 46.37804 0.41253 P PPL FR B7 86 862 86235 1081 121 Europe/Paris 2012-01-18
-2978142 Saint-Maurice-en-Gourgois Saint-Maurice-en-Gourgois Saint-Maurice,Saint-Maurice-en-Gourgois 45.40246 4.18235 P PPL FR B9 42 421 42262 1296 795 Europe/Paris 2012-01-18
-2978158 Saint-Maurice-de-Lignon Saint-Maurice-de-Lignon Lignon,Saint-Maurice,Saint-Maurice-de-Lignon 45.22431 4.13911 P PPL FR 98 43 433 43211 1896 762 Europe/Paris 2012-01-18
-2978161 Saint-Maurice-de-Gourdans Saint-Maurice-de-Gourdans Saint Maurice,Saint-Maurice-de-Gourdan,Saint-Maurice-de-Gourdans 45.8214 5.19464 P PPL FR B9 01 012 01378 2131 206 Europe/Paris 2012-01-18
-2978163 Saint-Maurice-de-Beynost Saint-Maurice-de-Beynost La Fontaine,Saint Maurice,Saint-Maurice-de-Beynost 45.8344 4.9775 P PPL FR B9 01 012 01376 4379 199 Europe/Paris 2010-12-16
-2978170 Saint-Maurice Saint-Maurice Charenton-Saint-Maurice,Saint-Maurice 48.82182 2.42716 P PPL FR A8 94 941 94069 14282 60 Europe/Paris 2012-01-18
-2978179 Saint-Maur-des-Fossés Saint-Maur-des-Fosses Saint-Maur,Saint-Maur-des-Fosses,Saint-Maur-des-Fossés,Saint-Maur-les-Fosses,Saint-Maur-les-Fossés,Vivant-sur-Marne 48.79394 2.49323 P PPL FR A8 94 941 94068 75402 38 Europe/Paris 2012-01-18
-2978184 Saint-Maur Saint-Maur Saint-Maur 46.80657 1.63904 P PPL FR A3 36 362 36202 3354 143 Europe/Paris 2012-01-18
-2978197 Saint-Mathurin-sur-Loire Saint-Mathurin-sur-Loire Port-de-la-Vallee,Port-de-la-Vallée,Saint-Mathurin 47.41667 -0.31667 P PPL FR B5 49 491 49307 2356 19 Europe/Paris 2007-09-08
-2978198 Saint-Mathurin Saint-Mathurin Saint-Mathurin 46.56493 -1.71389 P PPL FR B5 85 853 85250 1350 31 Europe/Paris 2012-01-18
-2978199 Saint-Mathieu-de-Tréviers Saint-Mathieu-de-Treviers Saint-Mathieu,Saint-Mathieu-de-Treviers,Saint-Mathieu-de-Tréviers 43.76795 3.85814 P PPL FR A9 34 343 34276 4482 125 Europe/Paris 2012-01-18
-2978202 Saint-Mathieu Saint-Mathieu Saint-Mathieu 45.70674 0.75908 P PPL FR B1 87 873 87168 1181 324 Europe/Paris 2012-01-18
-2978208 Saint-Martin-Vésubie Saint-Martin-Vesubie Saint-Martin,Saint-Martin-Vesubie,Saint-Martin-Vésubie,Saint-Martin-de-Vesubie,Saint-Martin-de-Vésubie 44.07004 7.25547 P PPL FR B8 06 062 06127 1345 964 Europe/Paris 2012-01-18
-2978211 Saint-Martin-sur-Oust Saint-Martin-sur-Oust Saint-Martin,Saint-Martin-sur-Oust,Sant-Varzhin-an-Oud 47.746 -2.25343 P PPL FR A2 56 563 56229 1384 10 Europe/Paris 2012-01-18
-2978215 Saint-Martin-sur-Ocre Saint-Martin-sur-Ocre Saint-Martin,Saint-Martin-sur-Ocre 47.65942 2.6581 P PPL FR A3 45 451 45291 1225 138 Europe/Paris 2012-01-18
-2978225 Saint-Martin-sous-Mouzeuil Saint-Martin-sous-Mouzeuil Saint-Martin,Saint-Martin-sous-Mouzeuil 46.45905 -0.98892 P PPL FR B5 85 851 85158 1175 15 Europe/Paris 2012-02-27
-2978233 Saint-Martin-Osmonville Saint-Martin-Osmonville Saint-Martin-Omonville,Saint-Martin-Osmonville 49.63872 1.29952 P PPL FR A7 76 761 76621 1058 172 Europe/Paris 2012-01-18
-2978235 Saint-Martin-Longueau Saint-Martin-Longueau Saint-Martin-Longueau 49.34281 2.60276 P PPL FR B6 60 602 60587 1476 35 Europe/Paris 2012-01-18
-2978238 Saint-Martin-le-Vinoux Saint-Martin-le-Vinoux Saint-Martin,Saint-Martin-le-Vinoux 45.203 5.71667 P PPL FR B9 38 381 38423 5589 257 Europe/Paris 2012-01-18
-2978257 Saint-Martin-le-Beau Saint-Martin-le-Beau Etableau,Le Beau-sur-Cher,Saint-Martin,Saint-Martin-le-Beau 47.35566 0.90953 P PPL FR A3 37 372 37225 2594 62 Europe/Paris 2012-01-18
-2978263 Saint-Martin-la-Plaine Saint-Martin-la-Plaine Saint-Martin,Saint-Martin-la-Plaine 45.54739 4.59115 P PPL FR B9 42 423 42259 3482 467 Europe/Paris 2012-01-18
-2978266 Saint-Martin-Lalande Saint-Martin-Lalande Saint Martin,Saint-Martin-Lalande 43.29928 2.02004 P PPL FR A9 11 111 11356 1026 171 Europe/Paris 2012-01-18
-2978270 Saint-Martin-Lacaussade Saint-Martin-Lacaussade Saint-Martin,Saint-Martin-Lacaussade 45.14631 -0.6431 P PPL FR 97 33 331 33441 1196 17 Europe/Paris 2012-01-18
-2978276 Saint-Martin-en-Haut Saint-Martin-en-Haut Martin-l'Esperance,Martin-l'Espérance,Saint-Martin,Saint-Martin-d'en-Haut,Saint-Martin-en-Haut 45.65969 4.56153 P PPL FR B9 69 691 69227 3689 730 Europe/Paris 2012-01-18
-2978279 Saint-Martin-en-Campagne Saint-Martin-en-Campagne Saint-Martin,Saint-Martin-en-Campagne 49.95648 1.22233 P PPL FR A7 76 761 76618 1029 115 Europe/Paris 2012-01-18
-2978280 Saint-Martin-en-Bresse Saint-Martin-en-Bresse Saint-Martin,Saint-Martin-en-Bresse,Tell-les-Bois 46.81725 5.06027 P PPL FR A1 71 712 71456 1825 190 Europe/Paris 2012-01-18
-2978282 Saint-Martin-du-Vivier Saint-Martin-du-Vivier Saint-Martin,Saint-Martin-du-Vivier 49.46667 1.16667 P PPL FR A7 76 763 76617 1530 99 Europe/Paris 2012-01-18
-2978284 Saint-Martin-du-Var Saint-Martin-du-Var Saint-Martin,Saint-Martin-du-Var 43.81812 7.1903 P PPL FR B8 06 062 06126 2283 105 Europe/Paris 2012-01-18
-2978287 Saint-Martin-du-Tertre Saint-Martin-du-Tertre Saint-Martin,Saint-Martin-du-Tertre 49.10743 2.34533 P PPL FR A8 95 952 95566 2493 179 Europe/Paris 2012-01-18
-2978288 Saint-Martin-du-Tertre Saint-Martin-du-Tertre Martin-Bel-Air,Saint-Martin,Saint-Martin-du-Tertre 48.21659 3.2615 P PPL FR A1 89 893 89354 1492 69 Europe/Paris 2012-01-18
-2978297 Saint-Martin-du-Mont Saint-Martin-du-Mont Bellevue,Saint-Martin,Saint-Martin-du-Mont 46.10247 5.32834 P PPL FR B9 01 012 01374 1433 361 Europe/Paris 2012-01-18
-2978299 Saint-Martin-du-Manoir Saint-Martin-du-Manoir Saint-Martin,Saint-Martin-du-Manoir 49.53212 0.23759 P PPL FR A7 76 762 76616 1460 97 Europe/Paris 2012-01-18
-2978302 Saint-Martin-du-Frêne Saint-Martin-du-Frene Mont-de-Fresne,Saint-Martin-du-Frene,Saint-Martin-du-Fresne,Saint-Martin-du-Frêne 46.13857 5.55302 P PPL FR B9 01 014 01373 1149 521 Europe/Paris 2012-01-18
-2978303 Saint-Martin-du-Fouilloux Saint-Martin-du-Fouilloux Saint-Martin,Saint-Martin-du-Fouilloux,Unite-sur-Loire,Unité-sur-Loire 47.4336 -0.70357 P PPL FR B5 49 491 49306 1454 71 Europe/Paris 2012-01-18
-2978317 Saint-Martin-d'Hères Saint-Martin-d'Heres Heres-la-Montagne,Hères-la-Montagne,Saint-Martin,Saint-Martin-d'Heres,Saint-Martin-d'Hères 45.16528 5.76337 P PPL FR B9 38 381 38421 35528 218 Europe/Paris 2012-01-18
-2978325 Saint-Martin-de-Valgalgues Saint-Martin-de-Valgalgues Mont-Valgalgues,Mont-Valgue,Saint-Martin,Saint-Martin-de-Valgalgues 44.16315 4.08364 P PPL FR A9 30 301 30284 4696 180 Europe/Paris 2012-01-18
-2978326 Saint-Martin-de-Valamas Saint-Martin-de-Valamas Mas-d'Erieu,Saint-Martin,Saint-Martin-de-Valamas 44.93648 4.36557 P PPL FR B9 07 073 07269 1377 533 Europe/Paris 2012-01-18
-2978337 Saint-Martin-des-Noyers Saint-Martin-des-Noyers Les Noyers,Saint-Martin,Saint-Martin-des-Noyers 46.72226 -1.17726 P PPL FR B5 85 852 85246 2148 86 Europe/Paris 2012-01-18
-2978344 Saint-Martin-de-Seignanx Saint-Martin-de-Seignanx Montagne-Seignaux,Saint-Martin,Saint-Martin-de-Seignanx,Saint-Martin-de-Seignaux 43.54283 -1.38946 P PPL FR 97 40 401 40273 4345 41 Europe/Paris 2012-01-18
-2978349 Saint-Martin-des-Champs Saint-Martin-des-Champs Saint-Martin,Saint-Martin-des-Champs 48.66841 -1.33393 P PPL FR 99 50 501 50516 2163 69 Europe/Paris 2012-01-18
-2978351 Saint-Martin-des-Champs Saint-Martin-des-Champs Saint-Martin,Saint-Martin-des-Champs,Sant-Martin-war-ar-Maez,Unite-des-Champs,Unité-des-Champs 48.58333 -3.83333 P PPL FR A2 29 293 29254 5033 11 Europe/Paris 2012-01-18
-2978355 Saint-Martin-des-Besaces Saint-Martin-des-Besaces Saint-Martin,Saint-Martin-des-Besaces 49.01091 -0.845 P PPL FR 99 14 144 14629 1105 210 Europe/Paris 2011-01-20
-2978361 Saint-Martin-de-Ré Saint-Martin-de-Re Fort-de-la-Montagne,Ile-de-la-Republique,Ile-de-la-République,Saint-Martin,Saint-Martin-de-Re,Saint-Martin-de-Ré 46.20311 -1.36726 P PPL FR B7 17 173 17369 2812 12 Europe/Paris 2012-01-18
-2978362 Saint-Martin-de-Queyrières Saint-Martin-de-Queyrieres Roche-Forte,Saint-Martin 44.82319 6.57901 P PPL FR B8 05 051 05151 1007 1224 Europe/Paris 2008-01-18
-2978365 Saint-Martin-de-Nigelles Saint-Martin-de-Nigelles Saint-Martin,Saint-Martin-de-Nigelles 48.61234 1.6092 P PPL FR A3 28 281 28352 1192 111 Europe/Paris 2012-01-18
-2978369 Saint-Martin-de-Londres Saint-Martin-de-Londres Saint-Martin,Saint-Martin-de-Londres 43.7904 3.73066 P PPL FR A9 34 342 34274 2121 195 Europe/Paris 2012-01-18
-2978376 Saint-Martin-de-la-Place Saint-Martin-de-la-Place Saint-Martin 47.31747 -0.14849 P PPL FR B5 49 493 49304 1135 23 Europe/Paris 2007-04-13
-2978378 Saint-Martin-de-Landelles Saint-Martin-de-Landelles Saint-Martin,Saint-Martin-Landelles,Saint-Martin-de-Landelle,Saint-Martin-de-Landelles 48.5453 -1.1724 P PPL FR 99 50 501 50515 1260 177 Europe/Paris 2012-01-18
-2978386 Saint-Martin-de-Hinx Saint-Martin-de-Hinx Marat-de-Hinx,Saint-Martin,Saint-Martin-de-Hinx 43.58238 -1.2681 P PPL FR 97 40 401 40272 1115 40 Europe/Paris 2012-01-18
-2978394 Saint-Martin-de-Fontenay Saint-Martin-de-Fontenay Saint-Martin,Saint-Martin-de-Fontenay 49.11523 -0.37391 P PPL FR 99 14 142 14623 1962 34 Europe/Paris 2012-01-18
-2978396 Saint-Martin-de-Crau Saint-Martin-de-Crau Saint-Martin,Saint-Martin-de-Crau 43.63955 4.8127 P PPL FR B8 13 132 13097 11555 22 Europe/Paris 2011-11-02
-2978412 Saint-Martin-de-Boscherville Saint-Martin-de-Boscherville Boscherville,Saint-Martin,Saint-Martin-de-Boscherville 49.44377 0.96271 P PPL FR A7 76 763 76614 1539 11 Europe/Paris 2012-01-18
-2978417 Saint-Martin-de-Belleville Saint-Martin-de-Belleville Des-Ravins,Montalte,Saint-Martin 45.38175 6.50519 P PPL FR B9 73 731 73257 3203 1390 Europe/Paris 2010-05-09
-2978439 Saint-Martin-Boulogne Saint-Martin-Boulogne La Montagne,Montagne-les-Boulogne,Montagne-lès-Boulogne,Saint-Martin,Saint-Martin-Boulogne,Section de-la-Montagne 50.72691 1.61864 P PPL FR B4 62 623 62758 12414 63 Europe/Paris 2012-01-18
-2978440 Saint-Martin-Bellevue Saint-Martin-Bellevue Saint Martin,Saint-Martin-Bellevue 45.96262 6.15763 P PPL FR B9 74 741 74245 1938 611 Europe/Paris 2012-01-18
-2978441 Saint-Martin-Belle-Roche Saint-Martin-Belle-Roche Saint-Martin,Saint-Martin-Belle-Roche 46.38312 4.85539 P PPL FR A1 71 715 71448 1174 213 Europe/Paris 2012-01-18
-2978447 Saint-Martin-au-Laërt Saint-Martin-au-Laert Saint-Martin,Saint-Martin-au-Laert,Saint-Martin-au-Laërt 50.75179 2.24051 P PPL FR B4 62 625 62757 3881 12 Europe/Paris 2012-01-18
-2978520 Saint-Mars-la-Jaille Saint-Mars-la-Jaille Saint-Mars,Saint-Mars-la-Jaille,Sant-Marzh-an-Olivenn 47.52566 -1.18483 P PPL FR B5 44 444 44180 2371 31 Europe/Paris 2012-01-18
-2978521 Saint-Mars-la-Brière Saint-Mars-la-Briere Briere-de-l'Egalite,Brière-de-l'Egalité,Saint-Mars 48.03046 0.37319 P PPL FR B5 72 722 72300 2447 59 Europe/Paris 2009-09-08
-2978524 Saint-Mars-du-Désert Saint-Mars-du-Desert Saint-Mars,Saint-Mars-du-Desert,Saint-Mars-du-Désert,Sant-Marzh-an-Dezerzh 47.3656 -1.40678 P PPL FR B5 44 441 44179 4002 65 Europe/Paris 2012-01-18
-2978529 Saint-Mars-de-Coutais Saint-Mars-de-Coutais Saint-Mars,Saint-Mars-de-Coutais,Sant-Marzh-ar-C'hoad 47.11153 -1.73437 P PPL FR B5 44 442 44178 2360 7 Europe/Paris 2012-01-18
-2978535 Saint-Mariens Saint-Mariens Saint-Mariens 45.11631 -0.40084 P PPL FR 97 33 331 33439 1284 68 Europe/Paris 2012-01-18
-2978550 Saint-Mard Saint-Mard Saint-Mard 49.03701 2.69645 P PPL FR A8 77 771 77420 3761 110 Europe/Paris 2012-01-18
-2978560 Saint-Marc-le-Blanc Saint-Marc-le-Blanc Saint-Marc,Saint-Marc-le-Blanc,Sant-Mezar-Elvinieg 48.36498 -1.40938 P PPL FR A2 35 351 35292 1190 98 Europe/Paris 2012-01-18
-2978561 Saint-Marc-Jaumegarde Saint-Marc-Jaumegarde Saint-Marc,Saint-Marc-Jaumegarde 43.54599 5.51272 P PPL FR B8 13 131 13095 1132 385 Europe/Paris 2012-01-18
-2978565 Saint-Marcellin-en-Forez Saint-Marcellin-en-Forez Donjon-la-Plaine,Marcellin-la-Plaine,Saint-Marcellin,Saint-Marcellin-en-Forez 45.49549 4.16923 P PPL FR B9 42 421 42256 3440 398 Europe/Paris 2012-01-18
-2978566 Saint-Marcellin Saint-Marcellin Saint-Marcellin,Thermopyles 45.15192 5.32388 P PPL FR B9 38 381 38416 7592 281 Europe/Paris 2012-01-18
-2978568 Saint-Marcel-lès-Valence Saint-Marcel-les-Valence Saint-Marcel,Saint-Marcel-les-Valence,Saint-Marcel-lès-Valence 44.97246 4.96011 P PPL FR B9 26 263 26313 4420 162 Europe/Paris 2012-01-18
-2978569 Saint-Marcel-lès-Sauzet Saint-Marcel-les-Sauzet Saint-Marcel,Saint-Marcel-les-Sauzet,Saint-Marcel-lès-Sauzet 44.59501 4.80623 P PPL FR B9 26 262 26312 1188 116 Europe/Paris 2012-01-18
-2978570 Saint-Marcel-lès-Annonay Saint-Marcel-les-Annonay Marcel-de-Deome,Marcel-de-Déome,Saint Marcel,Saint-Marcel-les-Annonay,Saint-Marcel-lès-Annonay 45.28555 4.62474 P PPL FR B9 07 073 07265 1231 473 Europe/Paris 2012-01-18
-2978586 Saint-Marcel Saint-Marcel Saint-Marcel 49.1 1.45 P PPL FR A7 27 273 27562 5288 28 Europe/Paris 2012-01-18
-2978589 Saint-Marcel Saint-Marcel Saint-Marcel,Saint-Marcel-les Rues 46.77371 4.89205 P PPL FR A1 71 712 71445 4844 179 Europe/Paris 2012-01-18
-2978590 Saint-Marcel Saint-Marcel Cote-Franche,Côte-Franche,Saint-Marcel 46.60193 1.51324 P PPL FR A3 36 362 36200 1678 146 Europe/Paris 2012-01-18
-2978596 Saint-Marcel-sur-Aude Saint-Marcel-sur-Aude 43.25 2.93333 P PPL FR A9 11 113 11353 1363 14 Europe/Paris 2007-11-20
-2978617 Saint-Manvieu Saint-Manvieu 49.18067 -0.50211 P PPL FR 99 14 142 14610 1591 78 Europe/Paris 2012-02-27
-2978618 Saint-Mandrier-sur-Mer Saint-Mandrier-sur-Mer Saint-Mandrier 43.078 5.929 P PPL FR B8 83 832 83153 6987 22 7 Europe/Paris 2007-11-29
-2978621 Saint-Mandé Saint-Mande Saint-Mande,Saint-Mandé,Sankt-Mande,Sant Manden,st Mande,st Mandé,st mande,Санкт-Манде 48.83864 2.41579 P PPL FR A8 94 942 94067 21261 57 Europe/Paris 2012-01-18
-2978622 Saint-Mammès Saint-Mammes Saint-Mammes,Saint-Mammès 48.38458 2.81578 P PPL FR A8 77 774 77419 3429 58 Europe/Paris 2012-01-18
-2978623 Saint-Mamet-la-Salvetat Saint-Mamet-la-Salvetat Saint-Mamet,Saint-Mamet-la-Salvetat 44.85765 2.30616 P PPL FR 98 15 151 15196 1354 733 Europe/Paris 2012-01-18
-2978627 Saint-Mamert-du-Gard Saint-Mamert-du-Gard Mamert,Mont-Mamert,Saint-Mamert,Saint-Mamert-du-Gard 43.88835 4.18725 P PPL FR A9 30 302 30281 1189 118 Europe/Paris 2012-01-18
-2978632 Saint-Malô-du-Bois Saint-Malo-du-Bois Saint-Malo 46.93333 -0.9 P PPL FR B5 85 852 85240 1291 193 Europe/Paris 2007-11-18
-2978636 Saint-Malo-de-Guersac Saint-Malo-de-Guersac Saint-Malo,Saint-Malo-de-Guersac,Sant-Malou-Gwersac'h,Sant-Maloù-Gwersac'h 47.35345 -2.17773 P PPL FR B5 44 443 44176 3408 11 Europe/Paris 2012-01-18
-2978640 Saint-Malo Saint-Malo Commune-de-la-Victoire,Mont-Mamet,Port-Malo,Saint Malo,Saint Mâlo,Saint-Malo,Sant-Malou,Sant-Maloù,Sen Malo,Sen-Malo,sheng ma luo,Сен Мало,Сен-Мало,圣马洛 48.65 -2.01667 P PPLA3 FR A2 35 354 35288 50676 7 Europe/Paris 2011-12-08
-2978647 Saint-Maixant Saint-Maixant Saint-Maixant 44.57868 -0.2592 P PPL FR 97 33 333 33438 1431 19 Europe/Paris 2012-01-18
-2978658 Saint-Macaire-en-Mauges Saint-Macaire-en-Mauges Saint-Macaire,Saint-Macaire-en-Mauges 47.12357 -0.9912 P PPL FR B5 49 492 49301 6033 102 Europe/Paris 2012-01-18
-2978660 Saint-Macaire Saint-Macaire Saint-Macaire 44.56527 -0.22431 P PPL FR 97 33 333 33435 1775 22 Europe/Paris 2012-01-18
-2978661 Saint-Lys Saint-Lys Eaubelle,Saint-Lys 43.51127 1.17557 P PPL FR B3 31 311 31499 6130 217 Europe/Paris 2012-01-18
-2978662 Saint-Lyphard Saint-Lyphard Saint-Lyphard,Sant-Lefer 47.39822 -2.30642 P PPL FR B5 44 443 44175 3463 10 Europe/Paris 2012-01-18
-2978664 Saint-Lyé Saint-Lye Saint-Lye,Saint-Lyé 48.36502 3.999 P PPL FR A4 10 103 10349 2724 96 Europe/Paris 2012-01-18
-2978666 Saint-Lupicin Saint-Lupicin Lauconne,Saint-Lupicin 46.40034 5.7922 P PPL FR A6 39 393 39491 2170 589 Europe/Paris 2011-11-02
-2978668 Saint-Lunaire Saint-Lunaire Port-Lunaire,Saint-Lunaire,Sant-Luner 48.63811 -2.11392 P PPL FR A2 35 354 35287 2480 23 Europe/Paris 2012-01-18
-2978669 Saint-Lumine-de-Coutais Saint-Lumine-de-Coutais Saint-Lumine,Saint-Lumine-de-Coutais,Sant-Leven-ar-C'hoad 47.05399 -1.72777 P PPL FR B5 44 442 44174 1770 25 Europe/Paris 2012-01-18
-2978670 Saint-Lumine-de-Clisson Saint-Lumine-de-Clisson Saint-Lumine,Saint-Lumine-de-Clisson,Sant-Leven-Klison 47.08412 -1.33524 P PPL FR B5 44 442 44173 1451 29 Europe/Paris 2012-01-18
-2978678 Saint-Lubin-des-Joncherets Saint-Lubin-des-Joncherets Saint-Lubin,Saint-Lubin-des-Joncherets 48.76667 1.21667 P PPL FR A3 28 283 28348 4513 130 Europe/Paris 2012-01-18
-2978688 Saint-Loup-sur-Semouse Saint-Loup-sur-Semouse Saint-Loup,Saint-Loup-sur-Semouse 47.88345 6.2753 P PPL FR A6 70 701 70467 4424 246 Europe/Paris 2012-01-18
-2978706 Saint-Loup-Cammas Saint-Loup-Cammas Montauloup,Saint-Loup,Saint-Loup-Cammas,Salut,Vertu 43.69767 1.48127 P PPL FR B3 31 313 31497 1927 211 Europe/Paris 2011-01-09
-2978726 Saint-Louis-de-Montferrand Saint-Louis-de-Montferrand Montferrand,Saint Louis-De Monferrand,Saint-Louis,Saint-Louis-de-Montferrand 44.95 -0.53543 P PPL FR 97 33 332 33434 2022 5 Europe/Paris 2012-01-18
-2978742 Saint-Louis Saint-Louis Saint-Louis,Saint-Ludwig,Sen-Lui,St.Ludwig,Сен-Луи 47.58836 7.56247 P PPL FR C1 68 684 68297 20871 253 Europe/Paris 2012-01-18
-2978749 Saint-Loubès Saint-Loubes Saint-Loubes,Saint-Loubès 44.91536 -0.42703 P PPL FR 97 33 332 33433 7678 25 Europe/Paris 2012-01-18
-2978758 Saint-Lô Saint-Lo Rocher-de-la-Liberte,Rocher-de-la-Liberté,Saint-Lo,Saint-Lô,Sen-Lo,san=ro,Сен-Ло,サン=ロー 49.11624 -1.09031 P PPLA2 FR 99 50 504 50502 21722 41 Europe/Paris 2011-11-02
-2978760 Saint-Lizier Saint-Lizier Austrie-la-Montagne,Saint-Lizier 43.00183 1.13686 P PPL FR B3 09 093 09268 1698 427 Europe/Paris 2012-01-18
-2978768 Saint-Leu-la-Forêt Saint-Leu-la-Foret Claire-Fontaine,Saint-Leu,Saint-Leu-la-Foret,Saint-Leu-la-Forêt 49.01667 2.25 P PPL FR A8 95 953 95563 16075 81 Europe/Paris 2012-01-18
-2978771 Saint-Leu Saint-Leu 46.7306 4.50083 P PPL FR A1 71 712 71436 29278 366 Europe/Paris 2012-02-27
-2978782 Saint-Léonard-de-Noblat Saint-Leonard-de-Noblat Leonard-sur-Vienne,Léonard-sur-Vienne,Saint-Leonard,Saint-Leonard-de-Noblat,Saint-Léonard,Saint-Léonard-de-Noblat,Tarn-Vienne 45.83566 1.49174 P PPL FR B1 87 872 87161 4655 354 Europe/Paris 2012-01-18
-2978783 Saint-Léonard Saint-Leonard Saint-Leonard,Saint-Léonard 50.69058 1.62536 P PPL FR B4 62 623 62755 4057 10 Europe/Paris 2012-01-18
-2978784 Saint-Léonard Saint-Leonard Saint-Leonard,Saint-Léonard 49.74252 0.35907 P PPL FR A7 76 762 76600 1738 97 Europe/Paris 2012-01-18
-2978789 Saint-Léonard Saint-Leonard Saint-Leonard,Saint-Léonard 48.21638 6.94355 P PPL FR B2 88 883 88423 1235 414 Europe/Paris 2012-01-18
-2978803 Saint-Léger-sur-Roanne Saint-Leger-sur-Roanne Saint-Leger,Saint-Leger-sur-Roanne,Saint-Léger,Saint-Léger-sur-Roanne 46.04126 3.99764 P PPL FR B9 42 422 42253 1009 321 Europe/Paris 2012-01-18
-2978804 Saint-Léger-sur-Dheune Saint-Leger-sur-Dheune Grosne,Leger-la-Dheune,Leger-les-Rebais,Léger-la-Dheune,Léger-lès-Rebais,Rocaille,Saint-Leger,Saint-Leger-sur-Dheune,Saint-Léger,Saint-Léger-sur-Dheune 46.84548 4.63607 P PPL FR A1 71 712 71442 1317 238 Europe/Paris 2012-01-18
-2978809 Saint-Léger-sous-Cholet Saint-Leger-sous-Cholet Saint-Leger,Saint-Leger-sous-Cholet,Saint-Léger,Saint-Léger-sous-Cholet 47.09405 -0.91024 P PPL FR B5 49 492 49299 2797 123 Europe/Paris 2012-01-18
-2978814 Saint-Léger-les-Vignes Saint-Leger-les-Vignes Saint-Leger,Saint-Leger-les-Vignes,Saint-Léger-les-Vignes,Sant-Lezer-ar-Gwiniegi 47.13587 -1.7306 P PPL FR B5 44 442 44171 1245 11 Europe/Paris 2012-01-18
-2978817 Saint-Léger-lès-Domart Saint-Leger-les-Domart Saint-Leger,Saint-Leger-les-Domart,Saint-Léger,Saint-Léger-lès-Domart 50.05208 2.14067 P PPL FR B6 80 802 80706 1781 31 Europe/Paris 2012-01-18
-2978822 Saint-Léger-en-Yvelines Saint-Leger-en-Yvelines Marat-des-Bois,Saint-Leger,Saint-Leger-en Yveline,Saint-Leger-en-Yvelines,Saint-Léger,Saint-Léger-en Yveline,Saint-Léger-en-Yvelines 48.72173 1.76638 P PPL FR A8 78 782 78562 1395 141 Europe/Paris 2012-01-18
-2978828 Saint-Léger-du-Bourg-Denis Saint-Leger-du-Bourg-Denis Saint-Leger,Saint-Leger-du-Bourg-Denis,Saint-Léger,Saint-Léger-du-Bourg-Denis 49.43345 1.15803 P PPL FR A7 76 763 76599 3191 30 Europe/Paris 2012-01-18
-2978832 Saint-Léger-des-Vignes Saint-Leger-des-Vignes Saint Leger,Saint Léger,Saint-Leger-des-Vignes,Saint-Léger-des-Vignes 46.84063 3.45488 P PPL FR A1 58 583 58250 2086 208 Europe/Paris 2012-01-18
-2978834 Saint-Léger-des-Bois Saint-Leger-des-Bois Beauchene,Beauchêne,Saint-Leger,Saint-Leger-des-Bois,Saint-Léger-des-Bois 47.46238 -0.70953 P PPL FR B5 49 491 49298 1474 62 Europe/Paris 2012-01-18
-2978838 Saint-Léger-de-Montbrun Saint-Leger-de-Montbrun Saint-Leger,Saint-Leger-de-Montbrun,Saint-Léger,Saint-Léger-de-Montbrun 47 -0.13333 P PPL FR B7 79 791 79265 1153 100 Europe/Paris 2012-01-18
-2978865 Saint-Laurent-sur-Sèvre Saint-Laurent-sur-Sevre Saint-Laurent,Saint-Laurent-sur-Sevre,Saint-Laurent-sur-Sèvre 46.95809 -0.89392 P PPL FR B5 85 852 85238 4799 130 Europe/Paris 2012-01-18
-2978866 Saint-Laurent-sur-Saône Saint-Laurent-sur-Saone Ain-sur-Saone,Ain-sur-Saône,Saint-Laurent,Saint-Laurent-de-l'Ain,Saint-Laurent-les-Macon,Saint-Laurent-lès-Macon 46.30532 4.84119 P PPL FR B9 01 012 01370 1798 178 Europe/Paris 2009-09-07
-2978870 Saint-Laurent-sur-Gorre Saint-Laurent-sur-Gorre Saint-Laurent,Saint-Laurent-sur-Gorre 45.77052 0.95859 P PPL FR B1 87 873 87158 1513 257 Europe/Paris 2012-01-18
-2978885 Saint-Laurent-en-Royans Saint-Laurent-en-Royans Montagne-de-Larps,Saint-Laurent,Saint-Laurent-en-Royans 45.02907 5.32777 P PPL FR B9 26 263 26311 1344 311 Europe/Paris 2012-01-18
-2978891 Saint-Laurent-du-Var Saint-Laurent-du-Var Saint-Laurent,Saint-Laurent-du-Var,Sen-Loran-dju-Var,Сен-Лоран-дю-Вар 43.67097 7.17606 P PPL FR B8 06 061 06123 29516 32 78 Europe/Paris 2012-01-18
-2978893 Saint-Laurent-du-Pont Saint-Laurent-du-Pont Laurent-Libre,Pont-la-Montagne,Saint-Laurent,Saint-Laurent-du-Pont 45.39009 5.73521 P PPL FR B9 38 381 38412 4585 412 Europe/Paris 2012-01-18
-2978895 Saint-Laurent-du-Pape Saint-Laurent-du-Pape Saint-Laurent,Saint-Laurent-du-Pape 44.82428 4.76127 P PPL FR B9 07 072 07261 1368 120 Europe/Paris 2012-01-18
-2978911 Saint-Laurent-Nouan Saint-Laurent-Nouan Saint-Laurent,Saint-Laurent-des-Eaux 47.71667 1.6 P PPL FR A3 41 411 41220 3830 78 Europe/Paris 2007-11-20
-2978917 Saint-Laurent-des-Autels Saint-Laurent-des-Autels Saint-Laurent,Saint-Laurent-des-Autels 47.28524 -1.18881 P PPL FR B5 49 492 49296 1590 93 Europe/Paris 2012-01-18
-2978918 Saint-Laurent-des-Arbres Saint-Laurent-des-Arbres Saint-Laurent,Saint-Laurent-des-Arbres,St Laurent des Arbres 44.05493 4.70026 P PPL FR A9 30 302 30278 1905 85 Europe/Paris 2012-01-18
-2978921 Saint-Laurent-de-Mure Saint-Laurent-de-Mure Saint Laurent,Saint-Laurent-de-Mure 45.6887 5.04656 P PPL FR B9 69 691 69288 4762 250 Europe/Paris 2012-01-18
-2978925 Saint-Laurent-de-la-Salanque Saint-Laurent-de-la-Salanque Saint-Laurent,Saint-Laurent-de-la-Salanque,Sant Llorenc de la Salanca,Sant Llorenç de la Salanca,Sentinelle-de-l'Agly 42.7727 2.98998 P PPL FR A9 66 662 66180 8293 10 Europe/Paris 2012-01-18
-2978926 Saint-Laurent-de-la-Prée Saint-Laurent-de-la-Pree Saint-Laurent,Saint-Laurent-de-la-Pree,Saint-Laurent-de-la-Prée 45.98259 -1.03625 P PPL FR B7 17 172 17353 1455 9 Europe/Paris 2012-01-18
-2978927 Saint-Laurent-de-la-Plaine Saint-Laurent-de-la-Plaine Saint-Laurent,Saint-Laurent-de-la-Plaine 47.31738 -0.80333 P PPL FR B5 49 492 49295 1633 79 Europe/Paris 2012-01-18
-2978936 Saint-Laurent-de-Chamousset Saint-Laurent-de-Chamousset Chalier-la-Montagne,Saint-Laurent,Saint-Laurent-de-Chamousset 45.73932 4.4634 P PPL FR B9 69 691 69220 1905 639 Europe/Paris 2012-01-18
-2978938 Sant Llorenç de Cerdans Sant Llorenc de Cerdans Saint-Laurent-de-Cerdans,Sant Llorenc de Cerdans,Sant Llorenç de Cerdans 42.38473 2.6132 P PPL FR A9 66 661 66179 1278 692 Europe/Paris 2011-11-02
-2978940 Saint-Laurent-de-Brévedent Saint-Laurent-de-Brevedent Saint-Laurent,Saint-Laurent-de-Brevedent,Saint-Laurent-de-Brévedent 49.52564 0.25458 P PPL FR A7 76 762 76596 1530 85 Europe/Paris 2012-01-18
-2978949 Saint-Laurent-Blangy Saint-Laurent-Blangy Imercourt,Saint-Laurent,Saint-Laurent-Blangy 50.29446 2.80698 P PPL FR B4 62 621 62753 5713 71 Europe/Paris 2012-01-18
-2978954 Saint-Laurent Saint-Laurent Saint-Laurent,Vautrincourt 49.76449 4.77193 P PPL FR A4 08 081 08385 1179 252 Europe/Paris 2012-01-18
-2978974 Saint-Lattier Saint-Lattier Lattier,Saint-Lattier 45.08768 5.19261 P PPL FR B9 38 381 38410 1119 186 Europe/Paris 2012-01-18
-2978975 Saint-Lary-Soulan Saint-Lary-Soulan Saint-Lary,Sainte-Lary-Soulan 42.81713 0.32238 P PPL FR B3 65 652 65388 1068 820 Europe/Paris 2011-11-02
-2978983 Saint-Lambert-la-Potherie Saint-Lambert-la-Potherie Saint-Lambert,Saint-Lambert-la-Potherie 47.48289 -0.67789 P PPL FR B5 49 491 49294 2405 60 Europe/Paris 2012-01-18
-2978985 Saint-Lambert-du-Lattay Saint-Lambert-du-Lattay Saint-Lambert,Saint-Lambert-de-Lattay,Saint-Lambert-du-Lattay 47.3025 -0.63321 P PPL FR B5 49 491 49292 1550 62 Europe/Paris 2012-01-18
-2978997 Saint-Just-Saint-Rambert Saint-Just-Saint-Rambert Saint-Just-sur-Loire 45.49973 4.24141 P PPL FR B9 42 421 42279 14313 392 Europe/Paris 2011-11-02
-2978999 Saint-Just-Sauvage Saint-Just-Sauvage Just-en-Val,Saint-Just,Saint-Just-Sauvage,Sauvage 48.55478 3.78449 P PPL FR A4 51 512 51492 1422 74 Europe/Paris 2012-01-18
-2979001 Saint-Just-Malmont Saint-Just-Malmont Mont-Blanc,Saint-Just,Saint-Just-Malmont 45.33973 4.31335 P PPL FR 98 43 433 43205 4132 839 Europe/Paris 2012-01-18
-2979002 Saint-Just-le-Martel Saint-Just-le-Martel Saint-Just,Saint-Just-le-Martel,Sent Just 45.86351 1.38829 P PPL FR B1 87 872 87156 2013 337 Europe/Paris 2012-01-18
-2979003 Saint-Just-la-Pendue Saint-Just-la-Pendue Saint-Just,Saint-Just-la-Pendue 45.89532 4.24276 P PPL FR B9 42 422 42249 1436 571 Europe/Paris 2012-01-18
-2979009 Saint-Just-en-Chevalet Saint-Just-en-Chevalet Mont-Marat,Saint-Just,Saint-Just-en-Chevalet 45.91396 3.8446 P PPL FR B9 42 422 42248 1347 645 Europe/Paris 2012-01-18
-2979010 Saint-Just-en-Chaussée Saint-Just-en-Chaussee Saint-Just,Saint-Just-en-Chaussee,Saint-Just-en-Chaussée 49.50503 2.43285 P PPL FR B6 60 602 60581 5756 99 Europe/Paris 2012-01-18
-2979014 Saint-Just-de-Claix Saint-Just-de-Claix Saint-Just,Saint-Just-de-Claix 45.07391 5.28783 P PPL FR B9 38 381 38409 1122 211 Europe/Paris 2012-01-18
-2979017 Saint-Just-Chaleyssin Saint-Just-Chaleyssin Saint-Just-Chaleyssin 45.58534 4.99888 P PPL FR B9 38 383 38408 2422 242 Europe/Paris 2012-01-18
-2979020 Saint-Just Saint-Just Saint-Just 49.10852 1.44101 P PPL FR A7 27 273 27554 1391 26 Europe/Paris 2012-01-18
-2979021 Saint-Just Saint-Just Saint-Just,Sant-Yust 47.76581 -1.96096 P PPL FR A2 35 352 35285 1020 74 Europe/Paris 2012-01-18
-2979024 Saint-Just-Luzac Saint-Just-Luzac 45.8 -1.03333 P PPL FR B7 17 172 17351 1653 9 Europe/Paris 2007-11-20
-2979029 Saint-Just-d'Ardèche Saint-Just-d'Ardeche Saint-Just 44.3 4.61667 P PPL FR B9 07 072 07259 1238 60 Europe/Paris 2011-03-25
-2979030 Saint-Just Saint-Just Saint-Just 43.65806 4.11472 P PPL FR A9 34 343 34272 2804 7 Europe/Paris 2010-12-24
-2979036 Saint-Junien Saint-Junien Junien-la-Montagne,Saint-Junien 45.88867 0.90143 P PPL FR B1 87 873 87154 11553 230 Europe/Paris 2012-01-18
-2979048 Saint-Julien-Molin-Molette Saint-Julien-Molin-Molette Saint-Julien,Saint-Julien-Molin-Molette 45.32335 4.61394 P PPL FR B9 42 423 42246 1152 593 Europe/Paris 2012-01-18
-2979052 Saint-Julien-les-Villas Saint-Julien-les-Villas Saint-Julien,Saint-Julien-les-Villas 48.27127 4.09901 P PPL FR A4 10 103 10343 6542 110 Europe/Paris 2012-01-18
-2979054 Saint-Julien-lès-Metz Saint-Julien-les-Metz Saint-Julien,Saint-Julien-les-Metz,Saint-Julien-lès-Metz 49.13288 6.2024 P PPL FR B2 57 574 57616 3228 187 Europe/Paris 2012-01-18
-2979068 Saint-Julien-en-Saint-Alban Saint-Julien-en-Saint-Alban Saint-Julien,Saint-Julien-en-Saint-Alban 44.75417 4.69678 P PPL FR B9 07 072 07255 1078 133 Europe/Paris 2011-01-14
-2979072 Saint-Julien-en-Genevois Saint-Julien-en-Genevois Saint-Julien 46.14434 6.08256 P PPLA3 FR B9 74 743 74243 10108 464 Europe/Paris 2011-11-02
-2979074 Saint-Julien-en-Born Saint-Julien-en-Born Saint-Julien,Saint-Julien-en-Born 44.06311 -1.22445 P PPL FR 97 40 401 40266 1444 23 Europe/Paris 2012-01-18
-2979080 Saint-Julien-du-Sault Saint-Julien-du-Sault Saint-Julien,Saint-Julien-du-Sault 48.03188 3.29556 P PPL FR A1 89 893 89348 2391 90 Europe/Paris 2012-01-18
-2979087 Saint-Julien-les-Rosiers Saint-Julien-les-Rosiers Saint-Julien,Saint-Julien-de-Valgalgues 44.17445 4.10803 P PPL FR A9 30 301 30274 2681 178 Europe/Paris 2007-11-20
-2979090 Saint-Julien-des-Landes Saint-Julien-des-Landes Landes,Saint-Julien,Saint-Julien-des-Landes 46.6394 -1.7138 P PPL FR B5 85 853 85236 1179 60 Europe/Paris 2012-01-18
-2979095 Saint-Julien-de-Peyrolas Saint-Julien-de-Peyrolas Peyrolas,Saint-Julien,Saint-Julien-de-Peyrolas 44.28837 4.56507 P PPL FR A9 30 302 30273 1206 106 Europe/Paris 2012-01-18
-2979109 Saint-Julien-de-Concelles Saint-Julien-de-Concelles Saint-Julien,Saint-Julien-de-Concelles,Sant-Juluan-Kankell 47.25286 -1.38428 P PPL FR B5 44 442 44169 6758 11 Europe/Paris 2012-01-18
-2979119 Saint-Julien-Chapteuil Saint-Julien-Chapteuil Mont-Megal,Mont-Mégal,Saint Julien,Saint-Julien-Chapteuil 45.03398 4.06229 P PPL FR 98 43 432 43200 1905 848 Europe/Paris 2012-01-18
-2979128 Saint-Julien Saint-Julien Saint-Julien,Sant-Juluan-Pentevr 48.45142 -2.8125 P PPL FR A2 22 224 22307 1897 161 Europe/Paris 2012-01-18
-2979133 Saint-Julien Saint-Julien Saint-Julien,Val-Julien 47.40029 5.14163 P PPL FR A1 21 212 21555 1278 236 Europe/Paris 2012-01-18
-2979141 Saint-Julien Saint-Julien Mont-Rocher,Saint-Julien,Saint-Julien-le-Montagne 43.69478 5.91582 P PPL FR B8 83 833 83113 1635 448 Europe/Paris 2012-01-18
-2979148 Saint-Juéry Saint-Juery Bellevue,Juery-les-Azalate,Juéry-les-Azalate,Saint-Juery-les-Azalate,Saint-Juéry-les-Azalate 43.95 2.21667 P PPL FR B3 81 811 81257 6997 211 Europe/Paris 2007-11-20
-2979153 Saint-Jouvent Saint-Jouvent Saint-Jouvent 45.9568 1.205 P PPL FR B1 87 872 87152 1427 340 Europe/Paris 2012-01-18
-2979158 Saint-Jouin-Bruneval Saint-Jouin-Bruneval Saint-Jouin,Saint-Jouin-Bruneval,Saint-Jouin-sur-Mer 49.64275 0.164 P PPL FR A7 76 762 76595 1617 121 Europe/Paris 2012-01-18
-2979160 Saint-Jouan-des-Guérets Saint-Jouan-des-Guerets Saint-Jouan,Saint-Jouan-des-Guerets,Saint-Jouan-des-Guérets,Sant-Yowan-an-Havreg 48.59932 -1.97372 P PPL FR A2 35 354 35284 2725 43 Europe/Paris 2012-01-18
-2979162 Saint-Josse Saint-Josse Bois-Fontaine,Fontaines-aux-Bois,Saint-Josse 50.46801 1.6618 P PPL FR B4 62 624 62752 1088 37 Europe/Paris 2012-01-18
-2979164 Saint-Joseph-de-Rivière Saint-Joseph-de-Riviere Saint-Joseph,Saint-Joseph-de-Riviere,Saint-Joseph-de-Rivière 45.37574 5.69768 P PPL FR B9 38 381 38405 1109 419 Europe/Paris 2012-01-18
-2979170 Saint-Joseph Saint-Joseph Saint-Joseph 45.55693 4.61596 P PPL FR B9 42 423 42242 1772 375 Europe/Paris 2012-01-18
-2979174 Saint-Jory Saint-Jory Saint-Jory 43.74146 1.37089 P PPL FR B3 31 313 31490 4564 120 Europe/Paris 2011-01-09
-2979175 Saint-Jorioz Saint-Jorioz Laudon,Saint-Jorioz 45.83296 6.16503 P PPL FR B9 74 741 74242 5571 465 Europe/Paris 2012-01-18
-2979179 Saint-Joachim Saint-Joachim Les Iles,Saint-Joachim,Sant-Yoasin 47.38349 -2.19239 P PPL FR B5 44 443 44168 4087 5 Europe/Paris 2012-01-18
-2979185 Saint-Jeoire Saint-Jeoire Saint-Jeoire,Saint-Jeoire-Faucigny 46.13777 6.45886 P PPL FR B9 74 742 74241 3006 580 Europe/Paris 2012-01-18
-2979189 Saint-Jean-sur-Veyle Saint-Jean-sur-Veyle Saint-Jean,Saint-Jean-sur-Veyle 46.25876 4.91751 P PPL FR B9 01 012 01365 1067 182 Europe/Paris 2012-01-18
-2979193 Saint-Jean-sur-Mayenne Saint-Jean-sur-Mayenne Boisse,Saint-Jean,Saint-Jean-sur-Mayenne 48.13522 -0.75613 P PPL FR B5 53 532 53229 1256 95 Europe/Paris 2012-01-18
-2979195 Saint-Jean-sur-Couesnon Saint-Jean-sur-Couesnon Saint-Jean,Saint-Jean-sur-Couesnon,Sant-Yann-ar-C'houenon 48.29012 -1.36835 P PPL FR A2 35 351 35282 1015 62 Europe/Paris 2012-01-18
-2979205 Sant Joan de Pladecorts Sant Joan de Pladecorts Saint-Jean-Pla-de-Corts,Sant Joan,Sant Joan de Pages,Sant Joan de Pagès,Sant Joan de Pladecorts 42.51069 2.79091 P PPL FR A9 66 661 66178 1942 108 Europe/Paris 2011-11-02
-2979207 Saint-Jean-Pied-de-Port Saint-Jean-Pied-de-Port Donibane-Garazi,Nive-Franche,Saint-Jean-Pied-de-Port 43.16363 -1.23738 P PPL FR 97 64 641 64485 1824 170 Europe/Paris 2012-01-18
-2979209 Saint-Jeannet Saint-Jeannet Saint-Jeannet 43.74723 7.14284 P PPL FR B8 06 061 06122 3768 443 Europe/Paris 2012-01-18
-2979212 Saint-Jean-le-Vieux Saint-Jean-le-Vieux Saint-Jean,Saint-Jean-le-Vieux,Vieux-d'Oizellon 46.02849 5.38982 P PPL FR B9 01 014 01363 1518 260 Europe/Paris 2012-01-18
-2979218 Saint-Jean-les-Deux-Jumeaux Saint-Jean-les-Deux-Jumeaux Saint-Jean,Saint-Jean-les-Deux-Jumeaux 48.9514 3.01959 P PPL FR A8 77 771 77415 1344 53 Europe/Paris 2012-01-18
-2979226 Saint-Jean-le-Blanc Saint-Jean-le-Blanc 47.89327 1.9154 P PPL FR A3 45 452 45286 9025 96 Europe/Paris 2011-11-02
-2979230 Saint-Jean-la-Poterie Saint-Jean-la-Poterie Saint-Jean,Saint-Jean-la-Poterie,Sant-Yann-ar-Wern 47.63581 -2.1242 P PPL FR A2 56 563 56223 1453 47 Europe/Paris 2012-01-18
-2979239 Saint-Jean-en-Royans Saint-Jean-en-Royans Lyonne,Saint-Jean,Saint-Jean-en-Royans 45.01693 5.29454 P PPL FR B9 26 263 26307 3101 281 Europe/Paris 2012-01-18
-2979244 Saint-Jean-du-Gard Saint-Jean-du-Gard Brion-du-Gard,Saint-Jean,Saint-Jean-du-Gard 44.10523 3.88566 P PPL FR A9 30 301 30269 2917 192 Europe/Paris 2012-01-18
-2979245 Saint-Jean-du-Falga Saint-Jean-du-Falga Saint-Jean,Saint-Jean-du-Falga 43.08647 1.6278 P PPL FR B3 09 092 09265 2418 315 Europe/Paris 2012-01-18
-2979250 Saint-Jean-du-Cardonnay Saint-Jean-du-Cardonnay Saint-Jean,Saint-Jean-du-Cardonnay 49.50455 1.0114 P PPL FR A7 76 763 76594 1328 128 Europe/Paris 2012-01-18
-2979261 Saint-Jean-de-Védas Saint-Jean-de-Vedas Saint-Jean 43.57759 3.82603 P PPL FR A9 34 343 34270 9134 48 Europe/Paris 2011-11-02
-2979272 Saint-Jean-de-Thouars Saint-Jean-de-Thouars Saint-Jean,Saint-Jean-de-Thouars 46.96486 -0.21114 P PPL FR B7 79 791 79259 1392 100 Europe/Paris 2012-01-18
-2979277 Saint-Jean-de-Soudain Saint-Jean-de-Soudain Saint-Jean,Saint-Jean-de-Soudain,Saint-Jean-de-Soudin 45.57087 5.43027 P PPL FR B9 38 382 38401 1068 374 Europe/Paris 2012-01-18
-2979280 Saint-Jean-des-Mauvrets Saint-Jean-des-Mauvrets Les Mauvrets,Saint-Jean,Saint-Jean-des-Mauvrets 47.39857 -0.44929 P PPL FR B5 49 491 49290 1529 31 Europe/Paris 2012-01-18
-2979283 Saint-Jean-de-Sixt Saint-Jean-de-Sixt Saint-Jean,Saint-Jean-de-Sixt 45.92216 6.40991 P PPL FR B9 74 741 74239 1106 962 Europe/Paris 2012-01-18
-2979287 Saint-Jean-des-Champs Saint-Jean-des-Champs Saint-Jean,Saint-Jean-des-Champs 48.828 -1.46487 P PPL FR 99 50 501 50493 1144 96 Europe/Paris 2011-01-20
-2979289 Saint-Jean-des-Baisants Saint-Jean-des-Baisants Saint-Jean-des-Baisants 49.09371 -0.97289 P PPL FR 99 50 504 50492 1019 207 Europe/Paris 2011-01-20
-2979291 Saint-Jean-de-Sauves Saint-Jean-de-Sauves Saint-Jean,Saint-Jean-de-Sauves 46.8413 0.09272 P PPL FR B7 86 861 86225 1409 82 Europe/Paris 2012-01-18
-2979296 Saint-Jean-de-Niost Saint-Jean-de-Niost Saint-Jean 45.83333 5.21667 P PPL FR B9 01 012 01361 1357 230 Europe/Paris 2007-11-20
-2979298 Saint-Jean-de-Muzols Saint-Jean-de-Muzols Muzols,Saint-Jean,Saint-Jean-de-Muzols 45.0804 4.81421 P PPL FR B9 07 073 07245 2527 127 Europe/Paris 2012-01-18
-2979299 Saint-Jean-de-Monts Saint-Jean-de-Monts Grands-Monts,Saint-Jean,Saint-Jean-de-Monts 46.79088 -2.08219 P PPL FR B5 85 853 85234 7414 4 Europe/Paris 2012-01-18
-2979300 Saint-Jean-de-Moirans Saint-Jean-de-Moirans Moiraxis,Saint-Jean,Saint-Jean-de-Moirans 45.34262 5.58615 P PPL FR B9 38 381 38400 2901 226 Europe/Paris 2012-01-18
-2979303 Saint-Jean-de-Maurienne Saint-Jean-de-Maurienne Arc,Saint-Jean,Saint-Jean-de-Maurienne 45.28333 6.35 P PPLA3 FR B9 73 733 73248 9536 528 Europe/Paris 2011-11-02
-2979309 Saint-Jean-de-Luz Saint-Jean-de-Luz Chauvin-le-Dragon,Donibane Lohizun,Donibane Lohizune,Saint-Jean,Saint-Jean-de-Luz,San Juan de Luz,San Juan de Luze,St.-Jean-de-Luz 43.38908 -1.6581 P PPL FR 97 64 641 64483 14514 10 Europe/Paris 2012-01-18
-2979310 Saint-Jean-de-Losne Saint-Jean-de-Losne Belle-Defense,Belle-Défense,Saint-Jean,Saint-Jean-de-Losne 47.10247 5.26556 P PPL FR A1 21 211 21554 1298 183 Europe/Paris 2012-01-18
-2979313 Saint-Jean-de-Liversay Saint-Jean-de-Liversay La Gerbe,Saint-Jean,Saint-Jean-de-Liversay 46.26894 -0.87385 P PPL FR B7 17 173 17349 1827 13 Europe/Paris 2012-01-18
-2979316 Saint-Jean-de-la-Ruelle Saint-Jean-de-la-Ruelle Saint-Jean,Saint-Jean-de-la-Ruelle 47.91127 1.86483 P PPL FR A3 45 452 45285 17522 110 Europe/Paris 2012-01-18
-2979326 Saint-Jean-de-Gonville Saint-Jean-de-Gonville Saint-Jean,Saint-Jean-de-Gonville 46.21298 5.95047 P PPL FR B9 01 013 01360 1297 522 Europe/Paris 2011-01-14
-2979328 Saint-Jean-de-Fos Saint-Jean-de-Fos Fort-l'Herault,Fort-l'Hérault,Saint-Jean,Saint-Jean-de-Fos 43.701 3.55171 P PPL FR A9 34 342 34267 1296 106 Europe/Paris 2012-01-18
-2979341 Saint-Jean-de-Braye Saint-Jean-de-Braye Saint-Jean-de-Braye 47.91303 1.97705 P PPL FR A3 45 452 45284 19874 109 Europe/Paris 2012-01-18
-2979342 Saint-Jean-de-Bournay Saint-Jean-de-Bournay Saint Jean,Saint-Jean-de-Bournay,Toile-a-Voiles,Toile-à-Voiles 45.50134 5.13963 P PPL FR B9 38 383 38399 4211 382 Europe/Paris 2012-01-18
-2979344 Saint-Jean-de-Boiseau Saint-Jean-de-Boiseau Saint-Jean,Saint-Jean-de-Boiseau,Sant-Yann-ar-Granneg 47.19315 -1.7234 P PPL FR B5 44 442 44166 4906 23 Europe/Paris 2012-01-18
-2979363 Saint-Jean-d'Angély Saint-Jean-d'Angely 45.95 -0.51667 P PPLA3 FR B7 17 175 17347 0 43 Europe/Paris 2011-11-02
-2979369 Saint-Jean-Cap-Ferrat Saint-Jean-Cap-Ferrat Saint-Jean,Saint-Jean-Cap-Ferrat,St Jean Cap Ferrat 43.68922 7.33238 P PPL FR B8 06 062 06121 2149 16 Europe/Paris 2012-01-18
-2979370 Saint-Jean-Brévelay Saint-Jean-Brevelay Saint-Jean,Saint-Jean-Brevalay,Saint-Jean-Brevelay,Saint-Jean-Brévalay,Saint-Jean-Brévelay,Sant-Yann-Brevele 47.84497 -2.72231 P PPL FR A2 56 562 56222 2647 107 Europe/Paris 2012-01-18
-2979371 Saint-Jean-Bonnefonds Saint-Jean-Bonnefonds Saint-Jean-Bonnefonds 45.45294 4.45057 P PPL FR B9 42 423 42237 6076 527 Europe/Paris 2012-01-18
-2979389 Saint-Jean Saint-Jean 47.24553 -0.38413 P PPL FR B5 49 493 49047 1470 77 Europe/Paris 2012-02-27
-2979394 Saint-Jean Saint-Jean Saint-Jean 43.6642 1.49941 P PPL FR B3 31 313 31488 9147 206 Europe/Paris 2012-01-18
-2979398 Saint-Jans-Cappel Saint-Jans-Cappel Saint-Jans-Cappel 50.76387 2.72228 P PPL FR B4 59 594 59535 1513 32 Europe/Paris 2012-01-18
-2979401 Saint-James Saint-James Beuvron-les-Monts,Saint-James 48.5218 -1.32629 P PPL FR 99 50 501 50487 3014 124 Europe/Paris 2012-01-18
-2979405 Saint-Jacut-les-Pins Saint-Jacut-les-Pins Saint-Jacut-les-Pins,Sant-Yagu-ar-Bineg 47.68581 -2.21514 P PPL FR A2 56 563 56221 1677 58 Europe/Paris 2012-01-18
-2979408 Saint-Jacques-sur-Darnétal Saint-Jacques-sur-Darnetal Saint-Jacques,Saint-Jacques-sur-Darnetal,Saint-Jacques-sur-Darnétal 49.4398 1.2036 P PPL FR A7 76 763 76591 2546 159 Europe/Paris 2012-01-18
-2979415 Saint-Jacques-de-la-Lande Saint-Jacques-de-la-Lande Saint-Jacques,Saint-Jacques-de-la-Lande,Sant-Jakez-Al-Lann 48.06514 -1.72086 P PPL FR A2 35 353 35281 8505 38 Europe/Paris 2012-01-18
-2979431 Saint-Ismier Saint-Ismier Mansval,Saint-Ismier 45.24708 5.82863 P PPL FR B9 38 381 38397 6630 342 Europe/Paris 2012-01-18
-2979475 Saint-Hippolyte-du-Fort Saint-Hippolyte-du-Fort Mont-Polite,Saint-Hippolyte,Saint-Hippolyte-du-Fort 43.96362 3.85572 P PPL FR A9 30 303 30263 3717 168 Europe/Paris 2012-01-18
-2979478 Saint-Hippolyte Saint-Hippolyte Saint-Hippolyte 48.23216 7.36843 P PPL FR C1 68 685 68296 1107 246 Europe/Paris 2012-01-18
-2979479 Saint-Hippolyte Saint-Hippolyte Doubs-Marat,Saint-Hippolyte 47.3188 6.81617 P PPL FR A6 25 252 25519 1092 377 Europe/Paris 2012-01-18
-2979482 Saint-Hippolyte Saint-Hippolyte Saint-Hippolyte 45.91884 -0.89183 P PPL FR B7 17 172 17346 1239 5 Europe/Paris 2012-01-18
-2979488 Saint-Hippolyte Saint-Hippolyte Saint-Hippolyte,Sant Hipolit de la Salanca,Sant Hipòlit de la Salanca 42.7855 2.9662 P PPL FR A9 66 662 66176 2024 6 Europe/Paris 2012-01-18
-2979502 Saint-Hilaire-Saint-Mesmin Saint-Hilaire-Saint-Mesmin Saint-Hilaire,Saint-Hilaire-Saint-Mesmin 47.86614 1.83351 P PPL FR A3 45 452 45282 2582 101 Europe/Paris 2012-01-18
-2979505 Saint-Hilaire-Petitville Saint-Hilaire-Petitville Saint-Hilaire,Saint-Hilaire-Petitville 49.3025 -1.21995 P PPL FR 99 50 504 50485 1417 22 Europe/Paris 2012-01-18
-2979507 Saint-Hilaire-lez-Cambrai Saint-Hilaire-lez-Cambrai Bon-Air,Saint-Hilaire,Saint-Hilaire-lez-Cambrai 50.18419 3.41327 P PPL FR B4 59 592 59533 1672 95 Europe/Paris 2012-01-18
-2979520 Saint-Hilaire-la-Palud Saint-Hilaire-la-Palud La Palud,Saint-Hilaire,Saint-Hilaire-la Pallud,Saint-Hilaire-la-Palud 46.26676 -0.7138 P PPL FR B7 79 792 79257 1381 6 Europe/Paris 2012-01-18
-2979529 Saint-Hilaire-du-Rosier Saint-Hilaire-du-Rosier Saint-Hilaire,Saint-Hilaire-du-Rosier 45.10038 5.25012 P PPL FR B9 38 381 38394 1908 239 Europe/Paris 2012-01-18
-2979531 Saint-Hilaire-du-Harcouët Saint-Hilaire-du-Harcouet Hilaire-Harcouet,Hilaire-Harcouët,Saint-Hilaire,Saint-Hilaire-du-Harcouet,Saint-Hilaire-du-Harcouët 48.577 -1.09004 P PPL FR 99 50 501 50484 4846 86 Europe/Paris 2012-01-18
-2979538 Saint-Hilaire-de-Villefranche Saint-Hilaire-de-Villefranche Angely-Boutonne,Angély-Boutonne,Belisaire,Bélisaire,L'Egalite,L'Egalité,Saint-Hilaire,Saint-Hilaire-de-Villefranche 45.85091 -0.52993 P PPL FR B7 17 175 17344 1127 41 Europe/Paris 2012-01-18
-2979539 Saint-Hilaire-de-Talmont Saint-Hilaire-de-Talmont Le Tanes,Le Tanès,Saint-Hilaire,Saint-Hilaire-de-Talmont 46.47002 -1.60358 P PPL FR B5 85 853 85288 5737 18 Europe/Paris 2012-02-27
-2979541 Saint-Hilaire-des-Loges Saint-Hilaire-des-Loges Saint-Hilaire,Saint-Hilaire-des-Loges 46.4719 -0.66393 P PPL FR B5 85 851 85227 1781 53 Europe/Paris 2012-01-18
-2979543 Saint-Hilaire-de-Riez Saint-Hilaire-de-Riez La Revolution,La Révolution,Saint-Hilaire,Saint-Hilaire-de-Riez 46.71308 -1.92583 P PPL FR B5 85 853 85226 9358 8 Europe/Paris 2012-01-18
-2979545 Saint-Hilaire-de-Loulay Saint-Hilaire-de-Loulay Saint-Hilaire,Saint-Hilaire-de-Loulay 47.0019 -1.3308 P PPL FR B5 85 852 85224 3840 39 Europe/Paris 2012-01-18
-2979548 Saint-Hilaire-de-la-Côte Saint-Hilaire-de-la-Cote Hilaire-la-Montagne,Saint-Hilaire,Saint-Hilaire-de-la-Cote,Saint-Hilaire-de-la-Côte 45.39098 5.32287 P PPL FR B9 38 383 38393 1221 392 Europe/Paris 2012-01-18
-2979551 Saint-Hilaire-de-Clisson Saint-Hilaire-de-Clisson Saint-Hilaire,Saint-Hilaire-de-Clisson,Saint-Hilaire-du-Bois,Sant-Eler-Neved 47.06222 -1.30778 P PPL FR B5 44 442 44165 1754 39 Europe/Paris 2012-01-18
-2979552 Saint-Hilaire-de-Chaléons Saint-Hilaire-de-Chaleons Saint Helaire-de-Chaleons,Saint-Hilaire,Saint-Hilaire-de-Chaleons,Saint-Hilaire-de-Chaléons,Sant-Eler-Kaleon 47.10196 -1.8669 P PPL FR B5 44 443 44164 1760 15 Europe/Paris 2012-01-18
-2979554 Saint-Hilaire-de-Brethmas Saint-Hilaire-de-Brethmas Brethmas-Avesnes,Saint-Hilaire,Saint-Hilaire-de-Brethmas 44.08003 4.12478 P PPL FR A9 30 301 30259 3992 136 Europe/Paris 2012-01-18
-2979574 Saint-Hilaire Saint-Hilaire Saint-Hilaire,Saint-Hilaire-du-Touvet 45.3 5.88333 P PPL FR B9 38 381 38395 1836 1026 Europe/Paris 2012-01-18
-2979577 Saint-Hilaire Saint-Hilaire 44.53333 0.71667 P PPL FR 97 47 473 47175 1371 81 Europe/Paris 2012-02-27
-2979589 Saint-Herblon Saint-Herblon Bellevue,Saint-Herblon,Sant-Ervlon-ar-Roz 47.40786 -1.09738 P PPL FR B5 44 444 44163 1950 60 Europe/Paris 2012-01-18
-2979590 Saint-Herblain Saint-Herblain Saint-Herblain,Sant-Ervlan 47.21765 -1.64841 P PPL FR B5 44 442 44162 46898 38 Europe/Paris 2012-01-18
-2979595 Saint-Hélen Saint-Helen Saint-Helen,Saint-Hélen,Sant-Haelen 48.47002 -1.95894 P PPL FR A2 22 221 22299 1093 70 Europe/Paris 2012-01-18
-2979596 Saint-Héand Saint-Heand Mont-Pailloux,Saint-Heand,Saint-Héand 45.52817 4.37377 P PPL FR B9 42 423 42234 3781 691 Europe/Paris 2012-01-18
-2979619 Saint-Grégoire Saint-Gregoire Saint-Gregoire,Saint-Grégoire,Sant-Gregor 48.15085 -1.68706 P PPL FR A2 35 353 35278 8058 44 Europe/Paris 2012-01-18
-2979627 Saint-Gratien Saint-Gratien Saint-Gratien 48.9735 2.28729 P PPL FR A8 95 952 95555 19737 45 Europe/Paris 2012-01-18
-2979638 Saint-Gonnery Saint-Gonnery Saint-Gonnery,Sant-Goneri 48.12465 -2.81848 P PPL FR A2 56 562 56215 1013 130 Europe/Paris 2012-01-18
-2979648 Saint-Gobain Saint-Gobain Mont-Libre,Saint-Gobain 49.59572 3.3775 P PPL FR B6 02 022 02680 2347 174 Europe/Paris 2012-01-18
-2979657 Saint-Girons Saint-Girons Lunoque 42.98333 1.15 P PPLA3 FR B3 09 093 09261 7004 395 Europe/Paris 2011-11-02
-2979662 Saint-Gilles-Croix-de-Vie Saint-Gilles-Croix-de-Vie Saint-Gilles 46.68333 -1.93333 P PPL FR B5 85 853 85222 7280 5 Europe/Paris 2011-11-02
-2979673 Saint-Gilles Saint-Gilles Saint-Gilles,Sant-Jili-Roazhon 48.15381 -1.82477 P PPL FR A2 35 353 35275 3797 52 Europe/Paris 2012-01-18
-2979679 Saint-Gilles Saint-Gilles Heraclee,Héraclée,Mont-d'Abloux,Saint-Gilles,Saint-Gilles-du-Gard 43.67656 4.43024 P PPL FR A9 30 302 30258 13231 12 Europe/Paris 2011-01-18
-2979680 Saint-Gildas-des-Bois Saint-Gildas-des-Bois Gweltaz-Lambrizig,Saint-Gildas,Saint-Gildas-des-Bois 47.51622 -2.03659 P PPL FR B5 44 443 44161 3239 25 Europe/Paris 2006-11-11
-2979681 Saint-Gildas-de-Rhuys Saint-Gildas-de-Rhuys Abelard,Abélard,Lokentaz,Saint-Gildas,Saint-Gildas de Ruys,Saint-Gildas-de Ruis,Saint-Gildas-de-Rhuys 47.5006 -2.83825 P PPL FR A2 56 563 56214 1533 37 Europe/Paris 2012-01-18
-2979692 Saint-Gervasy Saint-Gervasy Belleviste,Saint-Gervasy 43.87686 4.46588 P PPL FR A9 30 302 30257 1577 65 Europe/Paris 2012-01-18
-2979697 Saint-Gervais-les-Trois-Clochers Saint-Gervais-les-Trois-Clochers Saint-Gervais,Saint-Gervais-les 3 Clochers,Saint-Gervais-les-Trois-Clochers 46.90067 0.40766 P PPL FR B7 86 861 86224 1262 83 Europe/Paris 2012-01-18
-2979698 Saint-Gervais-les-Bains Saint-Gervais-les-Bains Saint-Gervais,Saint-Gervais-les-Bains,Verosse,Vérosse 45.8929 6.71381 P PPL FR B9 74 742 74236 5882 845 Europe/Paris 2012-01-18
-2979699 Saint-Gervais-la-Forêt Saint-Gervais-la-Foret Bonne-Creme,Bonne-Crème,Gervais-sur-Cosson,Saint-Gervais,Saint-Gervais-la-Foret,Saint-Gervais-la-Forêt 47.56705 1.35493 P PPL FR A3 41 411 41212 3489 98 Europe/Paris 2012-01-18
-2979701 Saint-Gervais-en-Belin Saint-Gervais-en-Belin Saint-Gervais,Saint-Gervais-en-Belin 47.8772 0.2177 P PPL FR B5 72 723 72287 1835 62 Europe/Paris 2012-01-18
-2979705 Saint-Gervais-d'Auvergne Saint-Gervais-d'Auvergne Saint-Gervais,Saint-Gervais-d'Auvergne 46.0287 2.8194 P PPL FR 98 63 634 63354 1512 720 Europe/Paris 2012-01-18
-2979707 Saint-Gervais Saint-Gervais Saint-Gervais 46.90174 -2.0021 P PPL FR B5 85 853 85221 1763 5 Europe/Paris 2012-01-18
-2979712 Saint-Gervais Saint-Gervais Saint-Gervais 45.01583 -0.45238 P PPL FR 97 33 331 33415 1327 47 Europe/Paris 2012-01-18
-2979722 Saint-Germer-de-Fly Saint-Germer-de-Fly Saint-Germer,Saint-Germer-de-Fly 49.44281 1.77986 P PPL FR B6 60 601 60577 1833 101 Europe/Paris 2012-01-18
-2979724 Saint-Germain-Village Saint-Germain-Village Saint-Germain,Saint-Germain-Village 49.34908 0.50332 P PPL FR A7 27 272 27549 1617 20 Europe/Paris 2012-01-18
-2979730 Saint-Germain-sur-Morin Saint-Germain-sur-Morin Saint-Germain,Saint-Germain-sur-Morin 48.88257 2.85127 P PPL FR A8 77 771 77413 3024 48 Europe/Paris 2012-01-18
-2979731 Saint-Germain-sur-Moine Saint-Germain-sur-Moine Saint-Germain,Saint-Germain-sur-Moine 47.11746 -1.12223 P PPL FR B5 49 492 49285 2611 74 Europe/Paris 2012-01-18
-2979733 Saint-Germain-sur-l'Arbresle Saint-Germain-sur-l'Arbresle Barras-sur-l'Arbresle,Saint Germain,Saint-Germain-sur-l'Arbresle 45.85242 4.61182 P PPL FR B9 69 691 69208 1295 302 Europe/Paris 2012-01-18
-2979739 Saint-Germain-sur-Avre Saint-Germain-sur-Avre Saint-Germain,Saint-Germain-sur-Avre 48.76466 1.26776 P PPL FR A7 27 273 27548 1185 97 Europe/Paris 2012-01-18
-2979750 Saint-Germain-Lespinasse Saint-Germain-Lespinasse Saint-Germain,Saint-Germain-Lespinasse 46.10165 3.96204 P PPL FR B9 42 422 42231 1147 337 Europe/Paris 2012-01-18
-2979752 Saint-Germain-lès-Corbeil Saint-Germain-les-Corbeil Saint-Germain,Saint-Germain-les-Corbeil,Saint-Germain-lès-Corbeil,Vieux-Corbeil 48.62211 2.48775 P PPL FR A8 91 912 91553 7481 78 Europe/Paris 2012-01-18
-2979754 Saint-Germain-les-Belles Saint-Germain-les-Belles Mont-les-Belles,Saint-Germain,Saint-Germain-les-Belles 45.61356 1.4949 P PPL FR B1 87 872 87146 1152 442 Europe/Paris 2012-01-18
-2979755 Saint-Germain-lès-Arpajon Saint-Germain-les-Arpajon Franc-Val,Germain-les-Chatres,Germain-lès-Châtres,Germinal-sur-Orge,Saint-Germain,Saint-Germain-les-Arpajon,Saint-Germain-lès-Arpajon 48.59733 2.26481 P PPL FR A8 91 913 91552 8695 48 Europe/Paris 2012-01-18
-2979758 Saint-Germain-Lembron Saint-Germain-Lembron Liziniac-Lembron,Saint-Germain,Saint-Germain-Lembron 45.45798 3.2395 P PPL FR 98 63 633 63352 1706 415 Europe/Paris 2012-01-18
-2979770 Saint-Germain-Laval Saint-Germain-Laval Gardeloup-sur-Seine,Saint-Germain-Laval 48.39968 2.99781 P PPL FR A8 77 773 77409 2983 71 Europe/Paris 2012-01-18
-2979771 Saint-Germain-Laval Saint-Germain-Laval Chalier,Montchalier-Laval,Saint-Germain-Laval 45.83138 4.01445 P PPL FR B9 42 422 42230 1610 423 Europe/Paris 2012-01-18
-2979772 Saint-Germain-Laprade Saint-Germain-Laprade Saint-Germain,Saint-Germain-Laprade 45.03862 3.97004 P PPL FR 98 43 432 43190 3292 673 Europe/Paris 2010-11-19
-2979780 Saint-Germain-la-Blanche-Herbe Saint-Germain-la-Blanche-Herbe Saint-Germain,Saint-Germain-la-Blanche-Herbe 49.18327 -0.40426 P PPL FR 99 14 142 14587 2516 40 Europe/Paris 2012-01-18
-2979783 Saint-Germain-en-Laye Saint-Germain-en-Laye Montagne-du-Bon-Air,Saint-Germain,Saint-Germain-en-Laye,Sen-Zhermen-an-Leh,saengjeleumaeng-angle,san=jeruman=an=re,sheng ri er man ang lai,Сен-Жермен-ан-Лэ,サン=ジェルマン=アン=レー,圣日耳曼昂莱,생제르맹앙레 48.9 2.08333 P PPLA3 FR A8 78 783 78551 41142 92 Europe/Paris 2011-11-02
-2979784 Saint-Germain-en-Coglès Saint-Germain-en-Cogles Saint-Germain,Saint-Germain-en-Cogles,Saint-Germain-en-Coglès,Sant-Jermen-Gougleiz 48.40531 -1.26369 P PPL FR A2 35 351 35273 1957 126 Europe/Paris 2012-01-18
-2979790 Saint-Germain-du-Puy Saint-Germain-du-Puy La Montagne-du-Puy,Saint Germain,Saint-Germain-du-Puy 47.1 2.48333 P PPL FR A3 18 181 18213 5057 151 Europe/Paris 2012-01-18
-2979791 Saint-Germain-du-Puch Saint-Germain-du-Puch Saint-Germain,Saint-Germain-du-Puch 44.85 -0.31667 P PPL FR 97 33 335 33413 2148 47 Europe/Paris 2012-01-18
-2979792 Saint-Germain-du-Plain Saint-Germain-du-Plain Le Pelletier-du-Plain,Saint-Germain,Saint-Germain-du-Plain,Thorey-sur-Saone,Thorey-sur-Saône 46.69938 4.9851 P PPL FR A1 71 712 71420 1820 187 Europe/Paris 2012-01-18
-2979796 Saint-Germain-du-Corbéis Saint-Germain-du-Corbeis Lisie-du-Corbeis,Lisie-du-Corbéis,Saint-Germain,Saint-Germain-du-Corbeis,Saint-Germain-du-Corbéis 48.42215 0.06192 P PPL FR 99 61 611 61397 4204 134 Europe/Paris 2012-01-18
-2979797 Saint-Germain-du-Bois Saint-Germain-du-Bois Belle-Place,Bellevue-des-Bois,Grand-Bois,Saint-Germain,Saint-Germain-du-Bois 46.75287 5.2453 P PPL FR A1 71 714 71419 1806 211 Europe/Paris 2012-01-18
-2979807 Saint-Germain-des-Prés Saint-Germain-des-Pres Saint-Germain,Saint-Germain-des-Pres,Saint-Germain-des-Prés 47.95384 2.84846 P PPL FR A3 45 451 45279 1814 116 Europe/Paris 2012-01-18
-2979808 Saint-Germain-des-Prés Saint-Germain-des-Pres Pres-Fleuris,Prés-Fleuris,Saint-Germain,Saint-Germain-des-Pres,Saint-Germain-des-Prés 47.40998 -0.83342 P PPL FR B5 49 491 49284 1206 17 Europe/Paris 2012-01-18
-2979812 Saint-Germain-des-Fossés Saint-Germain-des-Fosses Puymourgon,Saint-Germain,Saint-Germain-des-Fosses,Saint-Germain-des-Fossés 46.20211 3.43245 P PPL FR 98 03 033 03236 3750 259 Europe/Paris 2012-01-18
-2979819 Saint-Germain-de-Prinçay Saint-Germain-de-Princay Princay-le-Vineux,Prinçay-le-Vineux,Saint-Germain,Saint-Germain-de-Princay,Saint-Germain-de-Prinçay,Saint-Germain-le Princay,Saint-Germain-le Prinçay 46.72107 -1.02153 P PPL FR B5 85 852 85220 1415 74 Europe/Paris 2012-01-18
-2979825 Saint-Germain-de-Marencennes Saint-Germain-de-Marencennes Gerrnain-la-Rondee,Gerrnain-la-Rondée,Saint-Germain,Saint-Germain-de-Marencennes 46.07733 -0.79133 P PPL FR B7 17 172 17340 1241 12 Europe/Paris 2012-01-18
-2979826 Saint-Germain-de-Lusignan Saint-Germain-de-Lusignan Germain-Lusignan,Saint-Germain,Saint-Germain-de-Lusignan 45.45011 -0.46147 P PPL FR B7 17 171 17339 1179 38 Europe/Paris 2012-01-18
-2979832 Saint-Germain-de-la-Grange Saint-Germain-de-la-Grange Saint-Germain,Saint-Germain-de-la-Grange 48.83436 1.89884 P PPL FR A8 78 782 78550 1827 110 Europe/Paris 2012-01-18
-2979861 Saint-Germain Saint-Germain Saint-Germain 48.25736 4.03264 P PPL FR A4 10 103 10340 2298 118 Europe/Paris 2012-01-18
-2979865 Saint-Germain Saint-Germain Le Mont-Germain,Saint-Germain 47.72496 6.53117 P PPL FR A6 70 701 70464 1238 317 Europe/Paris 2012-01-18
-2979873 Saint-Géréon Saint-Gereon Saint-Gereon,Saint-Géréon,Sant-Gerent 47.36774 -1.20262 P PPL FR B5 44 444 44160 2727 36 Europe/Paris 2012-01-18
-2979876 Saint-Gérand-le-Puy Saint-Gerand-le-Puy Puy-Redan,Saint-Gerand,Saint-Gerand-le-Puy,Saint-Gérand,Saint-Gérand-le-Puy 46.25758 3.5122 P PPL FR 98 03 033 03235 1042 320 Europe/Paris 2012-01-18
-2979880 Saint-Geours-de-Maremne Saint-Geours-de-Maremne Saint-Geours,Saint-Geours-de Maremme,Saint-Geours-de-Maremne 43.68936 -1.22937 P PPL FR 97 40 401 40261 1910 38 Europe/Paris 2012-01-18
-2979885 Saint-Georges-sur-Loire Saint-Georges-sur-Loire Beau-Site,Saint-Georges,Saint-Georges-sur-Loire 47.40792 -0.76194 P PPL FR B5 49 491 49283 3177 55 Europe/Paris 2012-01-18
-2979890 Saint-Georges-sur-Eure Saint-Georges-sur-Eure Saint-Georges,Saint-Georges-sur-Eure 48.41869 1.3546 P PPL FR A3 28 281 28337 2553 149 Europe/Paris 2012-01-18
-2979892 Saint-Georges-sur-Cher Saint-Georges-sur-Cher Albion-sur-Cher,Saint-Georges,Saint-Georges-sur-Cher 47.32996 1.13261 P PPL FR A3 41 411 41211 2243 60 Europe/Paris 2012-01-18
-2979893 Saint-Georges-sur-Baulche Saint-Georges-sur-Baulche Saint-Georges,Saint-Georges-sur-Baulche 47.80039 3.53144 P PPL FR A1 89 891 89346 3379 159 Europe/Paris 2012-01-18
-2979895 Saint-Georges-sur-Allier Saint-Georges-sur-Allier Saint-Georges,Saint-Georges-sur-Allier 45.71093 3.24296 P PPL FR 98 63 632 63350 1038 448 Europe/Paris 2012-01-18
-2979900 Saint-Georges-les-Bains Saint-Georges-les-Bains Saint-Georges,Saint-Georges-les-Bains 44.86222 4.80758 P PPL FR B9 07 072 07240 1830 290 Europe/Paris 2012-01-18
-2979901 Saint-Georges-lès-Baillargeaux Saint-Georges-les-Baillargeaux La Montagne,Saint-Georges,Saint-Georges-les-Baillargeaux,Saint-Georges-lès-Baillargeaux 46.67017 0.40208 P PPL FR B7 86 863 86222 3363 86 Europe/Paris 2012-01-18
-2979905 Saint-Georges-Haute-Ville Saint-Georges-Haute-Ville Saint Georges,Saint-Georges-Haute-Ville 45.55487 4.09952 P PPL FR B9 42 421 42228 1159 452 Europe/Paris 2012-01-18
-2979912 Saint-Georges-du-Bois Saint-Georges-du-Bois Saint-Georges,Saint-Georges-du-Bois 47.97242 0.10113 P PPL FR B5 72 723 72280 1847 76 Europe/Paris 2012-01-18
-2979914 Saint-Georges-du-Bois Saint-Georges-du-Bois Saint-Georges,Saint-Georges-du-Bois 46.14074 -0.73393 P PPL FR B7 17 172 17338 1570 46 Europe/Paris 2012-01-18
-2979920 Saint-Georges-des-Groseillers Saint-Georges-des-Groseillers Saint-Georges,Saint-Georges-des-Groseillers,Saint-Georges-des-Groseilliers 48.76994 -0.56768 P PPL FR 99 61 612 61391 3357 222 Europe/Paris 2012-01-18
-2979921 Saint-Georges-des-Coteaux Saint-Georges-des-Coteaux Les Coteaux,Saint-Georges 45.76667 -0.71667 P PPL FR B7 17 174 17336 2198 49 Europe/Paris 2007-11-18
-2979925 Saint-Georges-de-Reneins Saint-Georges-de-Reneins Reneins-les-Sables,Saint-Georges,Saint-Georges-de-Reneins 46.06034 4.7256 P PPL FR B9 69 692 69206 3999 192 Europe/Paris 2012-01-18
-2979926 Saint-Georges-de-Reintembault Saint-Georges-de-Reintembault Saint-Georges,Saint-Georges-de-Reintembault,Sant-Jord-Restembaod 48.50744 -1.24328 P PPL FR A2 35 351 35271 1841 136 Europe/Paris 2012-01-18
-2979928 Saint-Georges-de-Pointindoux Saint-Georges-de-Pointindoux Carriere-Grison,Carrière-Grison,Saint-Georges,Saint-Georges-de-Pointindoux 46.64462 -1.62204 P PPL FR B5 85 853 85218 1214 59 Europe/Paris 2012-01-18
-2979930 Saint-Georges-de-Montaigu Saint-Georges-de-Montaigu Saint-Georges,Saint-Georges-de-Montaigu 46.94655 -1.29262 P PPL FR B5 85 852 85217 3598 54 Europe/Paris 2012-01-18
-2979931 Saint-Georges-de-Mons Saint-Georges-de-Mons Mons-le-Libre,Saint-Georges,Saint-Georges-de-Mons 45.93994 2.8406 P PPL FR 98 63 634 63349 2378 734 Europe/Paris 2012-01-18
-2979933 Saint-Georges-de-Luzençon Saint-Georges-de-Luzencon Fonds-Fort,George-Camboulas,Saint-Georges-de-Luzancon,Saint-Georges-de-Luzançon,Saint-Georges-de-Luzencon,Saint-Georges-de-Luzençon 44.06471 2.98597 P PPL FR B3 12 121 12225 1357 362 Europe/Paris 2012-01-18
-2979941 Saint-Georges-de-Didonne Saint-Georges-de-Didonne Didonne,Saint-Georges,Saint-Georges-de-Didonne 45.60342 -1.00487 P PPL FR B7 17 172 17333 5406 14 Europe/Paris 2012-01-18
-2979943 Saint-Georges-de-Commiers Saint-Georges-de-Commiers Saint Gorges-de Commiers,Saint-Georges,Saint-Georges-de-Comiers,Saint-Georges-de-Commiers,Saint-Georges-de-Comners 45.03854 5.70226 P PPL FR B9 38 381 38388 1996 376 Europe/Paris 2012-01-18
-2979951 Saint-Georges-Buttavent Saint-Georges-Buttavent Saint-Georges,Saint-Georges-Butavent,Saint-Georges-Buttavent 48.31018 -0.69372 P PPL FR B5 53 533 53219 1470 152 Europe/Paris 2012-01-18
-2979976 Saint-Geoire-en-Valdaine Saint-Geoire-en-Valdaine Saint-Geoire,Saint-Geoire-en-Valdaine,Val-d'Eynan 45.45699 5.63416 P PPL FR B9 38 382 38386 2153 454 Europe/Paris 2012-01-18
-2979979 Saint-Genix-sur-Guiers Saint-Genix-sur-Guiers Entre-Rives,Saint-Genix,Saint-Genix-sur-Guiers 45.59966 5.63436 P PPL FR B9 73 732 73236 1958 238 Europe/Paris 2012-01-18
-2979983 Saint-Genis-Pouilly Saint-Genis-Pouilly Saint-Genis 46.24356 6.02119 P PPL FR B9 01 013 01354 7428 453 Europe/Paris 2011-11-02
-2979984 Saint-Genis-les-Ollières Saint-Genis-les-Ollieres Ollieres,Ollières,Saint Genis,Saint-Genis-les-Ollieres,Saint-Genis-les-Ollières 45.75719 4.72892 P PPL FR B9 69 691 69205 5029 278 Europe/Paris 2012-01-18
-2979985 Saint-Genis-Laval Saint-Genis-Laval Genis-le-Patriote,Saint Genis,Saint-Genis-Laval,Sen-Zheni-Laval',Сен-Жени-Лаваль 45.69558 4.7934 P PPL FR B9 69 691 69204 20883 245 Europe/Paris 2012-01-18
-2979989 Saint-Genis-de-Saintonge Saint-Genis-de-Saintonge Saint-Genis,Saint-Genis-de-Saintonge 45.48107 -0.56848 P PPL FR B7 17 171 17331 1086 31 Europe/Paris 2012-01-18
-2979993 Sant Genís de Fontanes Sant Genis de Fontanes Saint-Genis-des-Fontaines,Saint-Génis-des-Fontaines,Sant Genis de Fontanes,Sant Genís de Fontanes 42.54325 2.9206 P PPL FR A9 66 661 66175 2643 57 Europe/Paris 2011-11-02
-2980001 Saint-Geniès-des-Mourgues Saint-Genies-des-Mourgues Saint-Genies,Saint-Genies-des-Mourgues,Saint-Geniès,Saint-Geniès-des-Mourgues 43.6978 4.0361 P PPL FR A9 34 343 34256 1699 67 Europe/Paris 2010-12-24
-2980002 Saint-Geniès-de-Malgoirès Saint-Genies-de-Malgoires Mont-Esquielle,Montesquielle 43.95 4.21667 P PPL FR A9 30 302 30255 2001 87 Europe/Paris 2007-11-18
-2980003 Saint-Geniès-de-Comolas Saint-Genies-de-Comolas Mont-Comolas,Montclos,Saint-Genies,Saint-Genies-de-Comolas,Saint-Geniès,Saint-Geniès-de-Comolas 44.06617 4.72157 P PPL FR A9 30 302 30254 1833 58 Europe/Paris 2012-01-18
-2980004 Saint-Geniès-Bellevue Saint-Genies-Bellevue Saint-Genies,Saint-Genies-Bellevue,Saint-Geniès,Saint-Geniès-Bellevue 43.68409 1.48693 P PPL FR B3 31 313 31484 1994 207 Europe/Paris 2012-01-18
-2980006 Saint-Gengoux-le-National Saint-Gengoux-le-National Gengoux-le-National,Jouvence,Saint-Gengoux,Saint-Gengoux-le-National 46.61476 4.66261 P PPL FR A1 71 715 71417 1059 237 Europe/Paris 2012-01-18
-2980011 Saint-Genest-Malifaux Saint-Genest-Malifaux Saint-Genest,Saint-Genest-Malifaux,Semeine-et-Furans 45.34234 4.41954 P PPL FR B9 42 423 42224 2905 980 Europe/Paris 2012-01-18
-2980012 Saint-Genest-Lerpt Saint-Genest-Lerpt Saint-Genest-Lerpt,Saint-Genet-Lerpt 45.44529 4.33622 P PPL FR B9 42 423 42223 5792 579 Europe/Paris 2012-01-18
-2980029 Saint-Genès-Champanelle Saint-Genes-Champanelle Saint-Genes-Champanelle,Saint-Genest-de-Champanelle,Saint-Genès-Champanelle 45.71915 3.01887 P PPL FR 98 63 632 63345 2907 874 Europe/Paris 2012-01-18
-2980031 Saint-Gence Saint-Gence Saint-Gence 45.92198 1.13726 P PPL FR B1 87 872 87143 1533 309 Europe/Paris 2012-01-18
-2980033 Saint-Gély-du-Fesc Saint-Gely-du-Fesc Saint-Gely,Saint-Gely-du-Fesc,Saint-Gély,Saint-Gély-du-Fesc 43.69272 3.80492 P PPL FR A9 34 343 34255 8605 121 Europe/Paris 2012-01-18
-2980035 Saint-Gelais Saint-Gelais Gelais-sur-Sevre,Gelais-sur-Sèvre,Saint-Gelais 46.38234 -0.39084 P PPL FR B7 79 792 79249 1528 58 Europe/Paris 2012-01-18
-2980040 Saint-Gaultier Saint-Gaultier Roche-Libre,Saint-Gaultier 46.63518 1.41289 P PPL FR A3 36 361 36192 1985 109 Europe/Paris 2012-01-18
-2980045 Saint-Gaudens Saint-Gaudens Mont-d'Unite,Mont-d'Unité,Saint-Gaudens,Sent Gaudenc,Sent Gaudenç 43.11667 0.73333 P PPLA3 FR B3 31 312 31483 12193 401 Europe/Paris 2011-11-02
-2980046 Saint-Gatien-des-Bois Saint-Gatien-des-Bois 49.35 0.18333 P PPL FR 99 14 143 14578 1230 146 Europe/Paris 2007-11-18
-2980052 Saint-Galmier Saint-Galmier Commune-Fond-Fort,Saint-Galmier,Ville-Fontfort 45.59199 4.31743 P PPL FR B9 42 421 42222 5485 430 Europe/Paris 2012-01-18
-2980059 Saint-Fulgent Saint-Fulgent Fulgent-les-Bois,Saint-Fulgent 46.85226 -1.17798 P PPL FR B5 85 852 85215 3271 83 Europe/Paris 2012-01-18
-2980080 Saint-François Saint-Francois 46.41538 3.90542 P PPL FR 98 03 033 03208 13577 290 Europe/Paris 2012-02-27
-2980092 Saint-Fort Saint-Fort Saint-Fort 47.79928 -0.72095 P PPL FR B5 53 531 53215 1655 67 Europe/Paris 2012-01-18
-2980094 Saint-Forgeux Saint-Forgeux Saint-Forgeux 45.85979 4.47486 P PPL FR B9 69 692 69200 1436 419 Europe/Paris 2012-01-18
-2980097 Saint-Fons Saint-Fons Saint-Fons 45.7088 4.86057 P PPL FR B9 69 691 69199 16053 176 Europe/Paris 2012-01-18
-2980098 Saint-Folquin Saint-Folquin Le Bas-Morin,Saint-Folquin 50.94473 2.12433 P PPL FR B4 62 625 62748 2126 1 Europe/Paris 2012-01-18
-2980104 Saint-Flour Saint-Flour Fort-Cantal,Fort-Libre,Mont-Flour,Saint-Flour 45.03333 3.08333 P PPLA3 FR 98 15 153 15187 7499 888 Europe/Paris 2011-11-02
-2980107 Saint-Florent-sur-Cher Saint-Florent-sur-Cher Saint-Florent,Saint-Florent-sur-Cher 46.99552 2.25076 P PPL FR A3 18 181 18207 7083 145 Europe/Paris 2012-01-18
-2980108 Saint-Florent-sur-Auzonnet Saint-Florent-sur-Auzonnet Mont-Mayard,Montmajord,Saint-Florens,Saint-Florent,Saint-Florent-sur-Auzonnet 44.24032 4.11252 P PPL FR A9 30 301 30253 1225 241 Europe/Paris 2012-01-18
-2980109 Saint-Florent-le-Vieil Saint-Florent-le-Vieil Mont-Glone,Saint-Florent,Saint-Florent-le-Vieil 47.36069 -1.01515 P PPL FR B5 49 492 49276 2793 23 Europe/Paris 2012-01-18
-2980111 Saint-Florentin Saint-Florentin Mont-Armance,Pont-Civique,Saint-Florentin 48.00057 3.72489 P PPL FR A1 89 891 89345 5994 129 Europe/Paris 2012-01-18
-2980113 Saint-Florent-des-Bois Saint-Florent-des-Bois Bois-Milon,Saint-Florent,Saint-Florent-des-Bois 46.59377 -1.3158 P PPL FR B5 85 852 85213 2725 46 Europe/Paris 2012-01-18
-2980115 Saint-Florent Saint-Florent Saint-Florent,San Fiurenzu 42.6815 9.30396 P PPL FR A5 2B 2B5 2B298 1619 7 Europe/Paris 2012-01-18
-2980127 Saint-Fiacre-sur-Maine Saint-Fiacre-sur-Maine Saint-Fiacre,Saint-Fiacre-sur-Maine,Sant-Fieg-ar-Mewan 47.14255 -1.41714 P PPL FR B5 44 442 44159 1071 39 Europe/Paris 2012-01-18
-2980144 Saint-Félix-Lauragais Saint-Felix-Lauragais Saint-Felix,Saint-Felix-Lauragais,Saint-Félix,Saint-Félix-Lauragais 43.44863 1.88814 P PPL FR B3 31 313 31478 1495 334 Europe/Paris 2012-01-18
-2980160 Saint-Félix Saint-Felix Saint-Felix,Saint-Félix 45.8023 5.97106 P PPL FR B9 74 741 74233 1782 376 Europe/Paris 2012-01-18
-2980165 Saint-Félicien Saint-Felicien Felisval,Saint-Felicien,Saint-Félicien 45.08458 4.62718 P PPL FR B9 07 073 07236 1253 526 Europe/Paris 2012-01-18
-2980169 Saint-Fargeau-Ponthierry Saint-Fargeau-Ponthierry Saint-Fargeau-sur-Seine 48.55713 2.5284 P PPL FR FR A8 77 772 77407 12097 84 Europe/Paris 2011-11-02
-2980170 Saint-Fargeau Saint-Fargeau Le Peletier,Saint Fageau,Saint-Fargeau 47.64133 3.07066 P PPL FR A1 89 891 89344 1674 189 Europe/Paris 2012-01-18
-2980182 Sainte-Verge Sainte-Verge Sainte-Verge 47.00818 -0.21033 P PPL FR B7 79 791 79300 1383 68 Europe/Paris 2012-01-18
-2980184 Saint-Évarzec Saint-Evarzec Saint-Evarzec,Saint-Évarzec,Sant-Evarzeg 47.93333 -4.01667 P PPL FR A2 29 294 29247 3091 51 Europe/Paris 2012-01-18
-2980192 Saint-Eustache-la-Forêt Saint-Eustache-la-Foret Saint-Eustache,Saint-Eustache-la-Foret,Saint-Eustache-la-Forêt 49.55137 0.45599 P PPL FR A7 76 762 76576 1210 105 Europe/Paris 2012-01-18
-2980197 Saint-Eusèbe Saint-Eusebe Cremont,Montfleury,Saint-Eusebe,Saint-Eusèbe,Sparte 46.71346 4.46203 P PPL FR A1 71 712 71412 1081 344 Europe/Paris 2012-01-18
-2980205 Sainte-Tulle Sainte-Tulle Sainte-Tulle,Tulle-les-Durance 43.78846 5.76736 P PPL FR B8 04 044 04197 3404 317 Europe/Paris 2012-01-18
-2980214 Saint-Étienne-sur-Chalaronne Saint-Etienne-sur-Chalaronne Saint-Etienne,Saint-Etienne-sur-Chalaronne,Saint-Étienne,Saint-Étienne-sur-Chalaronne 46.14781 4.86555 P PPL FR B9 01 012 01351 1291 195 Europe/Paris 2012-01-18
-2980219 Saint-Étienne-lès-Remiremont Saint-Etienne-les-Remiremont Saint-Etienne,Saint-Etienne-les-Remiremont,Saint-Étienne,Saint-Étienne-lès-Remiremont,Valmoselle 48.02287 6.60868 P PPL FR B2 88 881 88415 4156 397 Europe/Paris 2012-01-18
-2980231 Saint-Étienne-en-Coglès Saint-Etienne-en-Cogles Saint-Etienne,Saint-Etienne-en-Cogles,Saint-Étienne,Saint-Étienne-en-Coglès,Sant-Stefan-Gougleiz 48.40172 -1.32812 P PPL FR A2 35 351 35267 1562 110 Europe/Paris 2012-01-18
-2980236 Saint-Étienne-du-Rouvray Saint-Etienne-du-Rouvray Saint-Etienne,Saint-Etienne-du-Rouvray,Saint-Étienne,Saint-Étienne-du-Rouvray,Sent-Eht'en-dju-Ruvreh,Сент-Этьен-дю-Руврэ 49.37794 1.10467 P PPL FR A7 76 763 76575 28953 14 Europe/Paris 2012-01-18
-2980238 Saint-Étienne-du-Grès Saint-Etienne-du-Gres Saint-Etienne,Saint-Etienne-du-Gres,Saint-Étienne,Saint-Étienne-du-Grès 43.78112 4.72163 P PPL FR B8 13 132 13094 2239 12 Europe/Paris 2012-01-18
-2980239 Saint-Étienne-du-Bois Saint-Etienne-du-Bois Saint-Etienne,Saint-Etienne-du-Bois,Saint-Étienne,Saint-Étienne-du-Bois 46.83041 -1.59714 P PPL FR B5 85 853 85210 1544 39 Europe/Paris 2012-01-18
-2980240 Saint-Étienne-du-Bois Saint-Etienne-du-Bois Saint-Etienne,Saint-Etienne-du-Bois,Saint-Étienne-du-Bois,Sant-Stefan-ar-C'hoad 46.28766 5.29481 P PPL FR B9 01 012 01350 2257 246 Europe/Paris 2012-01-18
-2980246 Saint-Etienne-de-Tulmont Saint-Etienne-de-Tulmont Saint-Etienne,Saint-Étienne 44.05 1.46667 P PPL FR B3 82 822 82161 2731 111 Europe/Paris 2007-11-18
-2980256 Saint-Étienne-de-Saint-Geoirs Saint-Etienne-de-Saint-Geoirs Marathon,Mont-Geoirs,Saint-Etienne,Saint-Etienne-de-Saint-Geoirs,Saint-Étienne,Saint-Étienne-de-Saint-Geoirs 45.33931 5.3449 P PPL FR B9 38 381 38384 2437 398 Europe/Paris 2012-01-18
-2980259 Saint-Étienne-de-Montluc Saint-Etienne-de-Montluc Messidor,Saint-Etienne,Saint-Etienne-de-Montluc,Saint-Étienne,Saint-Étienne-de-Montluc,Sant-Stefan-Brengolou,Sant-Stefan-Brengoloù 47.2769 -1.78072 P PPL FR B5 44 442 44158 6809 24 Europe/Paris 2012-01-18
-2980260 Saint-Étienne-de-Mer-Morte Saint-Etienne-de-Mer-Morte Saint-Etienne,Saint-Etienne-de-Mer-Morte,Saint-Étienne,Saint-Étienne-de-Mer-Morte,Sant-Stefan-Melveuzh 46.92848 -1.74272 P PPL FR B5 44 442 44157 1084 31 Europe/Paris 2012-01-18
-2980268 Saint-Étienne-de-Fontbellon Saint-Etienne-de-Fontbellon Saint-Etienne,Saint-Etienne-de-Fontbellon,Saint-Étienne,Saint-Étienne-de-Fontbellon 44.60175 4.3858 P PPL FR B9 07 071 07231 2543 213 Europe/Paris 2012-01-18
-2980269 Saint-Etienne-de-Cuines Saint-Etienne-de-Cuines Cuines,Saint-Etienne 45.35 6.28333 P PPL FR B9 73 733 73231 1311 690 Europe/Paris 2007-11-18
-2980270 Saint-Étienne-de-Crossey Saint-Etienne-de-Crossey Saint-Etienne,Saint-Etienne-de-Crossey,Saint-Étienne,Saint-Étienne-de-Crossey 45.37914 5.64527 P PPL FR B9 38 381 38383 2699 454 Europe/Paris 2012-01-18
-2980274 Saint-Étienne-de-Chigny Saint-Etienne-de-Chigny Chigne-les-Bois,Chigny-les-Bois,Chigné-les-Bois,Saint-Etienne,Saint-Etienne-de-Chigny,Saint-Étienne,Saint-Étienne-de-Chigny 47.38333 0.53333 P PPL FR A3 37 372 37217 1382 61 Europe/Paris 2012-01-18
-2980278 Saint-Étienne-de-Baïgorry Saint-Etienne-de-Baigorry Baigorri,Saint-Etienne,Saint-Etienne-de-Baigorry,Saint-Étienne,Saint-Étienne-de-Baïgorry,Thermopile 43.17533 -1.3467 P PPL FR 97 64 641 64477 1646 164 Europe/Paris 2012-01-18
-2980283 Saint-Étienne-au-Mont Saint-Etienne-au-Mont Audisque,Saint-Etienne,Saint-Etienne-au-Mont,Saint-Étienne,Saint-Étienne-au-Mont 50.67794 1.63084 P PPL FR B4 62 623 62746 5078 13 Europe/Paris 2012-01-18
-2980291 Saint-Étienne Saint-Etienne Armes-Ville,Canton-d'Armes,Commune-d'Armes,Libre-Ville,Lungsod ng Saint-Etienne,Lungsod ng Saint-Étienne,Saint-Etienne,Saint-Étienne,Sant-Etieve,Sant-Etiève,Sent Etien,Sent-Eht'en,san=techien'nu,san=tetien'nu,sant atyyn,sheng ai di an,Сент Етиен,Сент-Этьен,سانت إتيين,サン=テチエンヌ,サン=テティエンヌ,圣艾蒂安 45.43333 4.4 P PPLA2 FR B9 42 423 42218 176280 615 Europe/Paris 2010-04-19
-2980301 Sainte-Terre Sainte-Terre Sainte-Terre 44.83333 -0.11667 P PPL FR 97 33 335 33485 1785 6 Europe/Paris 2012-01-18
-2980304 Sainte-Suzanne Sainte-Suzanne Mont-d'Erve,Sainte-Suzanne 48.09818 -0.35439 P PPL FR B5 53 532 53255 1059 150 Europe/Paris 2010-08-10
-2980305 Sainte-Suzanne Sainte-Suzanne Sainte-Suzanne 47.50017 6.76775 P PPL FR A6 25 252 25526 1414 407 Europe/Paris 2012-01-18
-2980313 Saint-Estève Saint-Esteve Saint-Esteve,Saint-Estève,Sant Esteve del Monestir 42.71176 2.8449 P PPL FR A9 66 662 66172 10403 51 Europe/Paris 2012-01-18
-2980317 Saint-Estèphe Saint-Estephe Saint-Estephe,Saint-Estèphe 45.26252 -0.77237 P PPL FR 97 33 334 33395 1949 12 Europe/Paris 2012-01-18
-2980320 Sainte-Soulle Sainte-Soulle Roche-Libre,Rousseau,Sainte-Soulle 46.18847 -1.01607 P PPL FR B7 17 173 17407 2840 33 Europe/Paris 2012-01-18
-2980324 Sainte-Solange Sainte-Solange Sainte-Solange 47.13628 2.55019 P PPL FR A3 18 181 18235 1328 154 Europe/Paris 2012-01-18
-2980325 Saintes-Maries-de-la-Mer Saintes-Maries-de-la-Mer Commune-de-la-Mer,Les Saintes Maries de la Mer,Les Saintes-Maries,Saintes-Maries,Saintes-Maries-de-la-Mer,Sent-Mari-de-la-Mer,Ville-de-la-Mer,santo=mari=do=ra=meru,Сент-Мари-де-ла-Мер,サント=マリー=ド=ラ=メール 43.45214 4.42913 P PPL FR FR B8 13 132 13096 2341 0 3 Europe/Paris 2011-11-02
-2980328 Sainte-Sigolène Sainte-Sigolene Sainte-Sigolene,Sainte-Sigolène,Segolaine-les-Bois,Sigolaine,Sigolene,Sigolène 45.24329 4.23343 P PPL FR 98 43 433 43224 5734 818 Europe/Paris 2011-01-10
-2980335 Sainte-Savine Sainte-Savine Sainte-Savine 48.29637 4.04642 P PPL FR A4 10 103 10362 11172 112 Europe/Paris 2012-01-18
-2980340 Saintes Saintes Xantes 45.75 -0.63333 P PPLA3 FR B7 17 174 17415 29512 25 Europe/Paris 2011-12-08
-2980344 Saint-Erme-Outre-et-Ramecourt Saint-Erme-Outre-et-Ramecourt Saint-Erme,Saint-Erme-Outre-et-Ramecourt 49.51464 3.8406 P PPL FR B6 02 022 02676 1885 129 Europe/Paris 2012-01-18
-2980345 Sainte-Reine-de-Bretagne Sainte-Reine-de-Bretagne Sainte-Reine,Sainte-Reine-de-Bretagne,Santez-Rouanez-Breizh 47.44131 -2.19238 P PPL FR B5 44 443 44189 1829 9 Europe/Paris 2012-01-18
-2980350 Saint-Erblon Saint-Erblon Saint-Erblon,Sant-Ervlon-an-Dezerzh 48.01895 -1.65162 P PPL FR A2 35 353 35266 2431 37 Europe/Paris 2012-01-18
-2980356 Sainte-Radegonde Sainte-Radegonde Sainte-Radegonde-Vrines 46.98333 -0.25 P PPL FR B7 79 791 79292 1971 96 Europe/Paris 2007-11-18
-2980364 Sainte-Radegonde Sainte-Radegonde Bel-Air,Sainte-Radegonde,Varanzay 44.33743 2.62672 P PPL FR B3 12 122 12241 1432 667 Europe/Paris 2012-01-18
-2980372 Sainte-Pazanne Sainte-Pazanne Franchere,Franchère,Sainte-Pazanne,Santez-Pezhenn 47.103 -1.8095 P PPL FR B5 44 442 44186 3734 14 Europe/Paris 2012-01-18
-2980375 Saint-Épain Saint-Epain Saint-Epain,Saint-Épain 47.14482 0.53668 P PPL FR A3 37 371 37216 1478 58 Europe/Paris 2012-01-18
-2980392 Saint-Émilion Saint-Emilion Emilion-la-Montagne,Saint-Emilion,Saint-Émilion 44.88333 -0.15 P PPL FR 97 33 335 33394 2619 38 Europe/Paris 2012-01-18
-2980397 Sainte-Mère-Église Sainte-Mere-Eglise Mere-Libre,Mère-Libre,Sainte-Mere-Eglise,Sainte-Mère-Église 49.41 -1.31726 P PPL FR 99 50 502 50523 1624 26 Europe/Paris 2012-01-18
-2980400 Sainte-Menehould Sainte-Menehould Montagne-sur-Aisne 49.08333 4.9 P PPLA3 FR A4 51 515 51507 5237 139 Europe/Paris 2011-11-02
-2980402 Sainte-Maxime Sainte-Maxime Cassius,Saint-Maxime,Saint-Maxine,Sainte-Maxime-sur-Mer 43.30907 6.63849 P PPL FR B8 83 831 83115 13582 8 Europe/Paris 2008-05-12
-2980403 Sainte-Maure-de-Touraine Sainte-Maure-de-Touraine Maure-Libre,Sainte-Maure,Sainte-Maure-de-Touraine 47.1113 0.62236 P PPL FR A3 37 371 37226 4084 78 Europe/Paris 2012-01-18
-2980405 Sainte-Maure Sainte-Maure Mont-Bel-Air,Sainte-Maure 48.34729 4.05962 P PPL FR A4 10 103 10352 1647 111 Europe/Paris 2011-01-06
-2980411 Sainte-Marie-Plage Sainte-Marie-Plage 42.72498 3.03751 P PPL FR A9 66 662 66182 3927 2 Europe/Paris 2012-02-27
-2980418 Sainte-Marie-Kerque Sainte-Marie-Kerque Sainte-Marie-Kerque 50.89917 2.13664 P PPL FR B4 62 625 62756 1443 3 Europe/Paris 2012-01-18
-2980427 Sainte-Marie-des-Champs Sainte-Marie-des-Champs Sainte-Marie,Sainte-Marie-des-Champs 49.6212 0.77904 P PPL FR A7 76 763 76610 1561 149 Europe/Paris 2012-01-18
-2980429 Sainte-Marie-de-Ré Sainte-Marie-de-Re La Pointe,Sainte-Marie,Sainte-Marie-de-Re,Sainte-Marie-de-Ré,Union 46.15237 -1.31281 P PPL FR B7 17 173 17360 2832 2 11 Europe/Paris 2012-01-18
-2980438 Sainte-Marie-aux-Mines Sainte-Marie-aux-Mines Markirch,Sainte Marie aux Mains,Sainte-Marie-aux-Mines,Val-aux-Mines 48.2468 7.18528 P PPL FR C1 68 685 68298 6189 372 Europe/Paris 2012-01-18
-2980439 Sainte-Marie-aux-Chênes Sainte-Marie-aux-Chenes Sainte-Marie,Sainte-Marie-aux-Chenes,Sainte-Marie-aux-Chênes 49.19168 6.00065 P PPL FR B2 57 574 57620 3422 261 Europe/Paris 2012-01-18
-2980446 Sainte-Marie Sainte-Marie Lokmaria-Redon,Sainte-Marie 47.69429 -2.0019 P PPL FR A2 35 352 35294 1949 51 Europe/Paris 2012-01-18
-2980457 Sainte-Marguerite-sur-Duclair Sainte-Marguerite-sur-Duclair Sainte-Marguerite,Sainte-Marguerite-sur-Duclair 49.50852 0.84362 P PPL FR A7 76 763 76608 1554 111 Europe/Paris 2012-01-18
-2980476 Sainte-Marguerite Sainte-Marguerite Meurthe-Fave,Sainte-Marguerite 48.26735 6.98439 P PPL FR B2 88 883 88424 2324 357 Europe/Paris 2012-01-18
-2980488 Sainte-Luce-sur-Loire Sainte-Luce-sur-Loire Sainte-Luce,Sainte-Luce-sur-Loire,Santez-Lusenn 47.25381 -1.4843 P PPL FR B5 44 442 44172 13056 19 Europe/Paris 2012-01-18
-2980492 Saint-Éloy-les-Mines Saint-Eloy-les-Mines Saint-Eloy,Saint-Eloy-les-Mines,Saint-Éloy,Saint-Éloy-les-Mines 46.15793 2.83623 P PPL FR 98 63 634 63338 4549 495 Europe/Paris 2012-01-18
-2980494 Saint-Éloy-de-Gy Saint-Eloy-de-Gy Saint-Eloy,Saint-Eloy-de-Gy,Saint-Éloy-de-Gy 47.15552 2.34267 P PPL FR A3 18 181 18206 1392 157 Europe/Paris 2012-01-18
-2980507 Saint-Éloi Saint-Eloi Loi,Saint-Eloi,Saint-Éloi 46.97342 3.22228 P PPL FR A1 58 583 58238 1937 186 Europe/Paris 2012-01-18
-2980514 Sainte-Lizaigne Sainte-Lizaigne Sainte-Lizaigne,Vin-Bon 47.00695 2.02266 P PPL FR A3 36 364 36199 1173 126 Europe/Paris 2012-01-18
-2980519 Sainte-Livrade-sur-Lot Sainte-Livrade-sur-Lot Sainte-Livrade,Sainte-Livrade-sur-Lot 44.39929 0.5912 P PPL FR 97 47 473 47252 6420 53 Europe/Paris 2012-01-18
-2980532 Sainte-Jamme-sur-Sarthe Sainte-Jamme-sur-Sarthe Sainte-Jamme,Sainte-Jamme-sur-Sarthe,Sainte-Jammes-sur-Sarthe,Sainte-Jeanne 48.14264 0.16743 P PPL FR B5 72 723 72289 1742 56 Europe/Paris 2012-01-18
-2980537 Sainte-Honorine-du-Fay Sainte-Honorine-du-Fay Sainte-Honorine,Sainte-Honorine-du-Fay 49.07775 -0.49295 P PPL FR 99 14 142 14592 1145 116 Europe/Paris 2012-01-18
-2980541 Sainte-Hermine Sainte-Hermine Hermand-le-Guerrier,Hermine-sur-Sinagne,Sainte-Hermine 46.55619 -1.05476 P PPL FR B5 85 851 85223 2435 35 Europe/Paris 2012-01-18
-2980542 Sainte-Hélène-sur-Isère Sainte-Helene-sur-Isere Les Forges,Sainte-Helene,Sainte-Helene-sur-Isere,Sainte-Hélène,Sainte-Hélène-sur-Isère 45.61313 6.32065 P PPL FR B9 73 731 73241 1074 344 Europe/Paris 2012-01-18
-2980547 Sainte-Hélène Sainte-Helene Sainte-Helene,Sainte-Hélène,Santez-Elen 47.71976 -3.20359 P PPL FR A2 56 561 56220 1050 8 Europe/Paris 2012-01-18
-2980550 Sainte-Hélène Sainte-Helene Sainte-Helene,Sainte-Hélène 44.96667 -0.88333 P PPL FR 97 33 334 33417 1925 44 Europe/Paris 2012-01-18
-2980554 Sainte-Geneviève-sur-Argence Sainte-Genevieve-sur-Argence Sainte-Genevieve,Sainte-Genevieve-sur-Argence,Sainte-Geneviève,Sainte-Geneviève-sur-Argence 44.80222 2.75954 P PPL FR B3 12 122 12223 1018 805 Europe/Paris 2012-01-18
-2980558 Sainte-Geneviève-des-Bois Sainte-Genevieve-des-Bois Colbert-la-Reunion,Colbert-la-Réunion,Sainte-Genevieve,Sainte-Genevieve-des-Bois,Sainte-Geneviève,Sainte-Geneviève-des-Bois,Sent-Zhenev'ev-de-Bua,Сент-Женевьев-де-Буа 48.64682 2.31965 P PPL FR A8 91 913 91549 33689 79 Europe/Paris 2012-01-18
-2980559 Sainte-Geneviève-des-Bois Sainte-Genevieve-des-Bois Sainte-Genevieve,Sainte-Genevieve-des-Bois,Sainte-Geneviève,Sainte-Geneviève-des-Bois,Sent-Zhenev'ev-de-Bua,Сент-Женевьев-де-Буа 47.81776 2.81652 P PPL FR A3 45 451 45278 1087 135 Europe/Paris 2012-01-18
-2980562 Sainte-Geneviève Sainte-Genevieve Sainte-Genevieve,Sainte-Geneviève 49.2892 2.19904 P PPL FR B6 60 601 60575 2682 203 Europe/Paris 2012-01-18
-2980565 Sainte-Gemmes-sur-Loire Sainte-Gemmes-sur-Loire Sainte-Gemme,Sainte-Gemmes-sur Loire 47.4229 -0.55684 P PPL FR B5 49 491 49278 4157 28 Europe/Paris 2006-04-30
-2980570 Sainte-Gemme-la-Plaine Sainte-Gemme-la-Plaine Les Bruyeres,Les Bruyères,Sainte-Gemme,Sainte-Gemme-la-Plaine 46.48286 -1.11321 P PPL FR B5 85 851 85216 1928 16 Europe/Paris 2012-01-18
-2980581 Sainte-Gauburge-Sainte-Colombe Sainte-Gauburge-Sainte-Colombe Sainte-Gauburge,Sainte-Gauburge-Sainte-Colombe 48.71722 0.43126 P PPL FR 99 61 612 61389 1263 237 Europe/Paris 2012-01-18
-2980586 Sainte-Foy-lès-Lyon Sainte-Foy-les-Lyon Beauvais-l'Isle-Barbe,Bonnefey,Canton-Chalier,Canton-Egalite,Canton-Egalité,Canton-de-Marat,Canton-de-la-Convention,Canton-de-la-Federation,Canton-de-la-Fédération,Canton-de-la-Liberte,Canton-de-la-Liberté,Canton-de-la-Montagne,Canton-de-la-Raison,Canton-le-Peletier,Canton-sans-Culotte,Commune-Affranchie,Commune-Chalier,Mont-Chalier,Quartier-de-la-Montagne,Saint-Foy,Sainte-Foy,Sainte-Foy-les-Lyon,Sainte-Foy-lez-Lyon,Sainte-Foy-lès-Lyon,Sent-Fua-le-Lion,Сент-Фуа-ле-Лион 45.73692 4.79688 P PPL FR B9 69 691 69202 21893 283 Europe/Paris 2012-01-18
-2980587 Sainte-Foy-l'Argentière Sainte-Foy-l'Argentiere Foy-sur-Brevenne,Saint-Foy-l'Argentiere,Saint-Foy-l'Argentière,Sainte-Foy,Sainte-Foy-l'Argentiere,Sainte-Foy-l'Argentière 45.70832 4.47266 P PPL FR B9 69 691 69201 1265 435 Europe/Paris 2012-01-18
-2980590 Sainte-Foy-de-Peyrolières Sainte-Foy-de-Peyrolieres Peyroulieres,Peyroulières,Sainte-Foy,Sainte-Foy de Peyrollieres,Sainte-Foy de Peyrollières,Sainte-Foy-de-Peyrolieres,Sainte-Foy-de-Peyrolières,Sainte-Foy-de-Peyrolleres,Sainte-Foy-de-Peyrollères 43.49262 1.14476 P PPL FR B3 31 311 31481 1615 268 Europe/Paris 2012-01-18
-2980597 Sainte-Foy Sainte-Foy Le Desert,Le Désert,Sainte-Foy 46.54488 -1.67265 P PPL FR B5 85 853 85214 1443 26 Europe/Paris 2012-01-18
-2980601 Sainte-Fortunade Sainte-Fortunade Sainte-Fortunade 45.20805 1.77181 P PPL FR B1 19 192 19203 1809 437 Europe/Paris 2012-01-18
-2980603 Sainte-Florine Sainte-Florine Florine-le-Charbon,Sainte-Florine 45.40546 3.31995 P PPL FR 98 43 431 43185 3286 422 Europe/Paris 2012-01-18
-2980606 Sainte-Flaive-des-Loups Sainte-Flaive-des-Loups Louvetiere,Louvetière,Sainte-Flaive,Sainte-Flaive-des-Loups 46.61303 -1.58082 P PPL FR B5 85 853 85211 1881 64 Europe/Paris 2012-01-18
-2980610 Sainte-Feyre Sainte-Feyre Sainte-Feyre 46.139 1.91517 P PPL FR B1 23 232 23193 2328 450 Europe/Paris 2012-01-18
-2980611 Sainte-Féréole Sainte-Fereole Montagne-Frimaire,Montfrimaire,Saint-Fereole,Saint-Féréole,Sainte-Fereole,Sainte-Féréole 45.22806 1.58278 P PPL FR B1 19 191 19202 1636 424 Europe/Paris 2012-01-18
-2980616 Sainte-Euphémie Sainte-Euphemie Sainte-Euphemie,Sainte-Euphémie 45.97196 4.79437 P PPL FR B9 01 012 01353 1221 205 Europe/Paris 2012-01-18
-2980625 Sainte-Eulalie Sainte-Eulalie Sainte-Eulalie 44.90667 -0.47417 P PPL FR 97 33 332 33397 4537 34 Europe/Paris 2012-01-18
-2980636 Saint-Égrève Saint-Egreve Saint Egreve,San Egreve,Vence 45.23333 5.68333 P PPL FR B9 38 381 38382 15904 219 Europe/Paris 2011-11-02
-2980648 Sainte-Croix-en-Plaine Sainte-Croix-en-Plaine Saint-Croix 48.00876 7.38556 P PPL FR C1 68 682 68295 2416 197 Europe/Paris 2007-07-07
-2980658 Sainte-Croix-aux-Mines Sainte-Croix-aux-Mines Sainte-Croix,Sainte-Croix-aux-Mines 48.26124 7.22445 P PPL FR C1 68 685 68294 2122 318 Europe/Paris 2012-01-18
-2980668 Sainte-Consorce Sainte-Consorce Les Marrons,Sainte-Consorce 45.77706 4.69735 P PPL FR B9 69 691 69190 1794 366 Europe/Paris 2012-01-18
-2980676 Sainte-Colombe-en-Bruilhois Sainte-Colombe-en-Bruilhois Sainte-Colombe,Sainte-Colombe-en-Bruilhois 44.17822 0.51572 P PPL FR 97 47 471 47238 1409 161 Europe/Paris 2012-01-18
-2980684 Sainte-Colombe Sainte-Colombe Sainte-Colombe 48.53047 3.25518 P PPL FR A8 77 773 77404 1859 76 Europe/Paris 2012-01-18
-2980691 Sainte-Colombe Sainte-Colombe Sainte-Colombe 45.52474 4.86136 P PPL FR B9 69 691 69189 1941 178 Europe/Paris 2012-01-18
-2980711 Sainte-Cécile-les-Vignes Sainte-Cecile-les-Vignes Cecile-Montagnarde,Cécile-Montagnarde,Sainte-Cecile,Sainte-Cecile-les-Vignes,Sainte-Cécile,Sainte-Cécile-les-Vignes 44.24506 4.8839 P PPL FR B8 84 842 84106 2273 108 Europe/Paris 2012-01-18
-2980716 Sainte-Cécile Sainte-Cecile Sainte-Cecile,Sainte-Cécile 46.74286 -1.11429 P PPL FR B5 85 852 85202 1437 54 Europe/Paris 2012-01-18
-2980723 Sainte-Catherine Sainte-Catherine Sainte-Catherine,Sainte-Catherine-lez-Arras,Sainte-Catherine-lèz-Arras 50.30757 2.76404 P PPL FR B4 62 621 62744 3102 84 Europe/Paris 2012-01-18
-2980742 Sainte-Bazeille Sainte-Bazeille Chalier,Sainte-Bazeille 44.53073 0.0974 P PPL FR 97 47 472 47233 2885 27 Europe/Paris 2012-01-18
-2980761 Sainte-Anne-sur-Brivet Sainte-Anne-sur-Brivet Sainte-Anne,Sainte-Anne-de-Campbon 47.46071 -2.00415 P PPL FR B5 44 443 44152 2086 19 Europe/Paris 2007-11-03
-2980783 Sainte-Anastasie-sur-Issole Sainte-Anastasie-sur-Issole Sainte-Anastasie,Sainte-Anastasie-sur-Issole 43.34211 6.12359 P PPL FR B8 83 833 83111 1667 302 Europe/Paris 2012-01-18
-2980789 Sainte-Agnès Sainte-Agnes Saint-Agnes,Saint-Agnès,Sainte-Agnes,Sainte-Agnès 43.79943 7.46595 P PPL FR B8 06 062 06113 1141 524 Europe/Paris 2012-01-18
-2980795 Sainte-Adresse Sainte-Adresse Cap-d'Antifer,Cap-de-la-Heve,Cap-de-la-Hève 49.5089 0.08446 P PPL FR A7 76 762 76552 8310 43 44 Europe/Paris 2007-11-29
-2980796 Saint-Dyé-sur-Loire Saint-Dye-sur-Loire Die,Die-sur-Loire,Dié,Dié-sur-Loire,Saint-Dye,Saint-Dye-sur-Loire,Saint-Dyé,Saint-Dyé-sur-Loire 47.65595 1.48847 P PPL FR A3 41 411 41207 1089 89 Europe/Paris 2012-01-18
-2980799 Saint-Drézéry Saint-Drezery Saint-Drezery,Saint-Drézéry 43.72991 3.9762 P PPL FR A9 34 343 34249 1974 96 Europe/Paris 2012-01-18
-2980801 Saint-Doulchard Saint-Doulchard Saint-Doulchard,Unite-sur-Yevre,Unité-sur-Yèvre 47.10371 2.352 P PPL FR A3 18 181 18205 9433 138 Europe/Paris 2012-01-18
-2980805 Saint-Donan Saint-Donan Saint-Donan,Sant-Donan 48.46958 -2.88442 P PPL FR A2 22 224 22287 1421 174 Europe/Paris 2012-01-18
-2980806 Saint-Domineuc Saint-Domineuc Landoveneg,Saint-Domineuc 48.37191 -1.87544 P PPL FR A2 35 354 35265 1576 37 Europe/Paris 2012-01-18
-2980808 Saint-Dolay Saint-Dolay Saint-Dolay,Sant-Aelwez 47.54476 -2.15466 P PPL FR A2 56 563 56212 2116 49 Europe/Paris 2012-01-18
-2980816 Saint-Dizier Saint-Dizier Saint-Dizier,Sankt-Diz'e,Санкт-Дизье 48.63333 4.95 P PPLA3 FR A4 52 523 52448 31918 133 Europe/Paris 2011-11-02
-2980827 Saint-Dié-des-Vosges Saint-Die-des-Vosges Sen-D'e-de-Vozh,Сен-Дье-де-Вож 48.28333 6.95 P PPLA3 FR B2 88 883 88413 24628 344 Europe/Paris 2011-11-02
-2980830 Saint-Didier-sur-Chalaronne Saint-Didier-sur-Chalaronne Saint-Didier,Saint-Didier-de Chalaronne,Saint-Didier-sur-Chalaronne 46.17751 4.81719 P PPL FR B9 01 012 01348 2521 179 Europe/Paris 2012-01-18
-2980833 Saint-Didier-sous-Riverie Saint-Didier-sous-Riverie Basse-Montagne,Beaurepaire,Saint Didier,Saint-Didier-sous-Riverie 45.59626 4.6065 P PPL FR B9 69 691 69195 1214 517 Europe/Paris 2012-01-18
-2980836 Saint-Didier-en-Velay Saint-Didier-en-Velay Saint-Didier,Saint-Didier-en-Velay 45.30234 4.27561 P PPL FR 98 43 433 43177 3144 834 Europe/Paris 2012-01-18
-2980843 Saint-Didier-de-la-Tour Saint-Didier-de-la-Tour Saint Didier,Saint-Didier-de-la-Tour 45.55548 5.48314 P PPL FR B9 38 382 38381 1535 378 Europe/Paris 2012-01-18
-2980844 Saint-Didier-de-Formans Saint-Didier-de-Formans Saint-Didier,Saint-Didier-de-Formans 45.95361 4.78485 P PPL FR B9 01 012 01347 1700 235 Europe/Paris 2012-01-18
-2980849 Saint-Didier Saint-Didier Saint-Didier,Sant-Ider 48.09506 -1.37276 P PPL FR A2 35 351 35264 1400 70 Europe/Paris 2012-01-18
-2980856 Saint-Didier Saint-Didier Pierre-Blanche,Saint Didier-les-Bois 44.00424 5.11053 P PPL FR B8 84 843 84108 1982 171 Europe/Paris 2008-05-16
-2980861 Saint-Désir Saint-Desir Saint-Desir,Saint-Désir 49.14056 0.21398 P PPL FR 99 14 143 14574 1768 50 Europe/Paris 2011-01-19
-2980868 Saint-Denis-sur-Sarthon Saint-Denis-sur-Sarthon Saint-Denis,Saint-Denis-sur-Sarthon,Sarthon-sous-Chaumont 48.4532 -0.0472 P PPL FR 99 61 611 61382 1082 192 Europe/Paris 2012-01-18
-2980878 Saint-Denis-les-Ponts Saint-Denis-les-Ponts Saint-Denis,Saint-Denis-les-Ponts 48.06692 1.29764 P PPL FR A3 28 282 28334 1626 106 Europe/Paris 2012-01-18
-2980880 Saint-Denis-lès-Bourg Saint-Denis-les-Bourg Saint-Denis,Saint-Denis-les-Bourg,Saint-Denis-lès-Bourg 46.20217 5.18924 P PPL FR B9 01 012 01344 4917 235 Europe/Paris 2011-01-14
-2980883 Saint-Denis-la-Chevasse Saint-Denis-la-Chevasse Saint-Denis,Saint-Denis-la-Chevasse 46.82273 -1.3575 P PPL FR B5 85 852 85208 1775 65 Europe/Paris 2012-01-18
-2980885 Saint-Denis-en-Val Saint-Denis-en-Val Saint-Denis,Saint-Denis-en-Val 47.87321 1.96601 P PPL FR A3 45 452 45274 7632 94 Europe/Paris 2012-01-18
-2980886 Saint-Denis-en-Bugey Saint-Denis-en-Bugey Le Chosson-d'Albarine,Saint-Denis,Saint-Denis-en-Bugey 45.9489 5.32808 P PPL FR B9 01 011 01345 2132 247 Europe/Paris 2012-01-18
-2980891 Saint-Denis-d'Oléron Saint-Denis-d'Oleron Cite-de-la-Reunion,Cité-de-la-Réunion,La Reunion-sur-mer,La Réunion-sur-mer,Saint-Denis,Saint-Denis-d'Oleron,Saint-Denis-d'Oléron,Sen-Deni-d'Oleron,Сен-Дени-д'Олерон 46.03496 -1.37867 P PPL FR B7 17 172 17323 1172 9 Europe/Paris 2012-01-18
-2980898 Saint-Denis-de-Pile Saint-Denis-de-Pile Saint-Denis-de Pilles,Saint-Denis-de-Pile 45 -0.2 P PPL FR 97 33 335 33393 4512 9 Europe/Paris 2012-01-18
-2980905 Saint-Denis-de-Gastines Saint-Denis-de-Gastines Saint-Denis,Saint-Denis-de-Gastines 48.3421 -0.85869 P PPL FR B5 53 533 53211 1764 230 Europe/Paris 2012-01-18
-2980906 Saint-Denis-de-Cabanne Saint-Denis-de-Cabanne Saint-Denis,Saint-Denis-de-Cabanne 46.17348 4.21091 P PPL FR B9 42 422 42215 1323 300 Europe/Paris 2012-01-18
-2980916 Saint-Denis Saint-Denis Saint-Denis,Sen-Deni,Сен-Дени 48.93333 2.36667 P PPLA3 FR A8 93 933 93066 96128 34 Europe/Paris 2011-11-02
-2980932 Saint-Cyr-sur-Morin Saint-Cyr-sur-Morin La Fraternite,La Fraternité,Saint-Cyr,Saint-Cyr-sur-Morin 48.90664 3.18016 P PPL FR A8 77 773 77405 1798 76 Europe/Paris 2012-01-18
-2980933 Saint-Cyr-sur-Mer Saint-Cyr-sur-Mer Saint-Cyr,Saint-Cyr-sur-Mer 43.18352 5.70914 P PPL FR B8 83 832 83112 12185 23 Europe/Paris 2012-01-18
-2980934 Saint-Cyr-sur-Menthon Saint-Cyr-sur-Menthon Saint-Cyr,Saint-Cyr-sur-Menthon 46.27549 4.97229 P PPL FR B9 01 012 01343 1452 209 Europe/Paris 2012-01-18
-2980935 Saint-Cyr-sur-Loire Saint-Cyr-sur-Loire Belle-Cote,Belle-Côte,Saint-Cyr,Saint-Cyr-sur-Loire 47.4 0.66667 P PPL FR A3 37 372 37214 17337 83 Europe/Paris 2012-01-18
-2980936 Saint-Cyr-sur-le-Rhône Saint-Cyr-sur-le-Rhone Ovize-sur-le-Rhone,Ovize-sur-le-Rhône,Saint Cyr,Saint-Cyr-sur-le-Rhone,Saint-Cyr-sur-le-Rhône 45.51537 4.85002 P PPL FR B9 69 691 69193 1137 217 Europe/Paris 2012-01-18
-2980937 Saint-Cyr-sous-Dourdan Saint-Cyr-sous-Dourdan Franc-Cyr,Saint-Cyr 48.56667 2.03333 P PPL FR A8 91 911 91546 1005 82 Europe/Paris 2007-11-20
-2980942 Saint-Cyr-l'École Saint-Cyr-l'Ecole Libreval,Saint-Cyr,Saint-Cyr-l'Ecole,Saint-Cyr-l'École,Val-Libre 48.79865 2.06814 P PPL FR A8 78 784 78545 16365 153 Europe/Paris 2012-01-18
-2980950 Saint-Cyr-en-Val Saint-Cyr-en-Val Saint-Cyr-en-Val 47.83182 1.96672 P PPL FR A3 45 452 45272 3461 98 Europe/Paris 2012-01-18
-2980953 Saint-Cyr-en-Bourg Saint-Cyr-en-Bourg Saint-Cyr 47.1952 -0.06085 P PPL FR B5 49 493 49274 1140 50 Europe/Paris 2010-04-22
-2980974 Saint-Cyr Saint-Cyr Ciran,Saint-Cyr 45.25243 4.73074 P PPL FR B9 07 073 07227 1171 393 Europe/Paris 2012-01-18
-2980976 Saint-Cyprien-Plage Saint-Cyprien-Plage Saint-Cyprien-Plage 42.63229 3.03333 P PPL FR A9 66 662 66171 9369 2 Europe/Paris 2012-02-27
-2980980 Saint-Cyprien Saint-Cyprien Saint-Cyprien 45.53375 4.23311 P PPL FR B9 42 421 42211 2163 372 Europe/Paris 2012-01-18
-2980982 Saint-Cyprien Saint-Cyprien Cyprien-sur-Dordogne 44.86924 1.04156 P PPL FR 97 24 244 24396 1637 69 Europe/Paris 2008-11-12
-2980993 Saint-Crespin-sur-Moine Saint-Crespin-sur-Moine Saint-Crespin,Saint-Crespin-sur-Moine 47.09968 -1.18651 P PPL FR B5 49 492 49273 1474 75 Europe/Paris 2012-01-18
-2980996 Saint-Crépin-Ibouvillers Saint-Crepin-Ibouvillers Saint-Crepin,Saint-Crepin-Ibouvillers,Saint-Crépin,Saint-Crépin-Ibouvillers 49.26283 2.07793 P PPL FR B6 60 601 60570 1076 133 Europe/Paris 2012-01-18
-2981008 Saint-Coulomb Saint-Coulomb Coulomb-Rocher,Saint-Coulomb,Sant-Kouloum 48.67465 -1.91092 P PPL FR A2 35 354 35263 2398 34 Europe/Paris 2012-01-18
-2981013 Saint-Cosme-en-Vairais Saint-Cosme-en-Vairais Montrecipe,Saint-Cosme,Saint-Cosme-de-Vair,Saint-Gosme-de-Vair 48.26667 0.46667 P PPL FR B5 72 722 72276 1960 92 Europe/Paris 2008-01-17
-2981018 Saint-Contest Saint-Contest Saint-Contest 49.21401 -0.40221 P PPL FR 99 14 142 14566 2101 74 Europe/Paris 2012-01-18
-2981041 Saint-Cloud Saint-Cloud La Montagne-Cherie,La Montagne-Chérie,Pont-la-Montagne,Saint-Cloud,Sen-Klu,Сен-Клу 48.84598 2.20289 P PPL FR A8 92 923 92064 28839 126 Europe/Paris 2012-01-18
-2981051 Saint-Clément-des-Levées Saint-Clement-des-Levees Saint-Clement,Saint-Clement-des-Levees,Saint-Clément,Saint-Clément-des-Levées 47.33333 -0.18222 P PPL FR B5 49 493 49272 1068 23 Europe/Paris 2012-01-18
-2981054 Saint-Clément-de-la-Place Saint-Clement-de-la-Place Saint-Clement,Saint-Clement-de-la-Place,Saint-Clément,Saint-Clément-de-la-Place 47.52744 -0.74545 P PPL FR B5 49 491 49271 1463 64 Europe/Paris 2012-01-18
-2981060 Saint-Clément Saint-Clement Saint-Clement,Saint-Clément 48.21724 3.29609 P PPL FR A1 89 893 89338 3016 70 Europe/Paris 2012-01-18
-2981065 Saint-Clément Saint-Clement Saint-Clement,Saint-Clément 45.34188 1.68573 P PPL FR B1 19 192 19194 1037 436 Europe/Paris 2012-01-18
-2981073 Saint-Clément-de-Rivière Saint-Clement-de-Riviere 43.68333 3.83333 P PPL FR A9 34 343 34247 5216 90 Europe/Paris 2007-11-20
-2981074 Saint-Claude-de-Diray Saint-Claude-de-Diray Claude,Diray-Moret,Diray-la-Montagne,Mont-Mentel,Morest-la-Montagne,Saint-Claude,Saint-Claude-de-Diray 47.61651 1.41798 P PPL FR A3 41 411 41204 1637 84 Europe/Paris 2012-01-18
-2981077 Saint-Claude Saint-Claude 46.39164 5.8643 P PPLA3 FR A6 39 393 39478 12418 436 Europe/Paris 2011-11-02
-2981078 Saint-Claud Saint-Claud Claud-la-Montagne,Saint-Claud 45.89526 0.46454 P PPL FR B7 16 163 16308 1104 156 Europe/Paris 2012-01-18
-2981085 Saint-Clair-du-Rhône Saint-Clair-du-Rhone Saint-Clair,Saint-Clair-du-Rhone,Saint-Clair-du-Rhône 45.43909 4.77178 P PPL FR B9 38 383 38378 3888 170 Europe/Paris 2012-01-18
-2981087 Saint-Clair-de-la-Tour Saint-Clair-de-la-Tour Mont-Clair,Saint-Clair,Saint-Clair-de-la-Tour 45.57343 5.48332 P PPL FR B9 38 382 38377 2896 341 Europe/Paris 2012-01-18
-2981117 Saint-Ciers-sur-Gironde Saint-Ciers-sur-Gironde Saint-Ciers,Saint-Ciers-sur-Gironde 45.28855 -0.60794 P PPL FR 97 33 331 33389 3365 27 Europe/Paris 2012-01-18
-2981121 Saint-Ciers-d'Abzac Saint-Ciers-d'Abzac Gar-Dor-Isle,Saint-Ciers,Saint-Ciers-d'Abzac 45.03333 -0.26667 P PPL FR 97 33 335 33387 1193 57 Europe/Paris 2012-01-18
-2981127 Saint-Christophe-Vallon Saint-Christophe-Vallon Saint-Christophe,Saint-Christophe-Vallon 44.47072 2.41184 P PPL FR B3 12 122 12215 1063 336 Europe/Paris 2011-01-13
-2981129 Saint-Christophe-sur-le-Nais Saint-Christophe-sur-le-Nais Saint-Christophe,Saint-Christophe-sur-le-Nais,Val-Riam,Val-Riant 47.6172 0.47801 P PPL FR A3 37 372 37213 1004 80 Europe/Paris 2012-01-18
-2981146 Saint-Christophe-du-Ligneron Saint-Christophe-du-Ligneron Christophe-pres-la-Boulogne,Christophe-près-la-Boulogne,Le Ligneron,Saint-Christophe,Saint-Christophe-du-Ligneron 46.82478 -1.76586 P PPL FR B5 85 853 85204 1940 56 Europe/Paris 2012-01-18
-2981149 Saint-Christophe-du-Bois Saint-Christophe-du-Bois Saint-Christophe,Saint-Christophe-du-Bois 47.03012 -0.94441 P PPL FR B5 49 492 49269 2667 86 Europe/Paris 2012-01-18
-2981172 Saint-Christoly-de-Blaye Saint-Christoly-de-Blaye Saint-Christoly,Saint-Christoly-de-Blaye 45.13178 -0.5076 P PPL FR 97 33 331 33382 1955 40 Europe/Paris 2012-01-18
-2981173 Saint-Christol-lès-Alès Saint-Christol-les-Ales Auxon,Saint-Christol,Saint-Christol-les-Ales,Saint-Christol-lez-Ales,Saint-Christol-lès-Alès,Saint-Christol-lèz-Alès 44.08256 4.07506 P PPL FR A9 30 301 30243 6113 136 Europe/Paris 2012-01-18
-2981178 Saint-Christol Saint-Christol Saint-Christol 43.72805 4.07991 P PPL FR A9 34 343 34246 1367 70 Europe/Paris 2012-01-18
-2981179 Saint-Christo-en-Jarez Saint-Christo-en-Jarez Saint-Christo,Saint-Christo-en-Jarez 45.54316 4.48474 P PPL FR B9 42 423 42208 1394 789 Europe/Paris 2012-01-18
-2981183 Saint-Chinian Saint-Chinian Saint-Chinian,Vernodure 43.42238 2.94643 P PPL FR A9 34 341 34245 2004 124 Europe/Paris 2012-01-18
-2981190 Saint-Chéron Saint-Cheron Saint-Cheron,Saint-Chéron 48.55433 2.12403 P PPL FR A8 91 911 91540 4690 101 Europe/Paris 2012-01-18
-2981195 Saint-Chef Saint-Chef Francvallon,Saint-Chef 45.63384 5.36518 P PPL FR B9 38 382 38374 3265 316 Europe/Paris 2012-01-18
-2981204 Saint-Chaptes Saint-Chaptes Beauregard,Saint-Chaptes 43.97172 4.27812 P PPL FR A9 30 302 30241 1282 75 Europe/Paris 2012-01-18
-2981206 Saint-Chamond Saint-Chamond Mont-Rousseau,Saint-Chamond,Val-Rousseau,Vallee-Roussean,Vallée-Roussean 45.47365 4.52541 P PPL FR B9 42 423 42207 38014 397 Europe/Paris 2012-01-18
-2981209 Saint-Chamas Saint-Chamas Port-Chamas,Saint-Chamas,St Chamas 43.54946 5.03324 P PPL FR B8 13 134 13092 6901 16 Europe/Paris 2012-01-18
-2981214 Saint-Chaffrey Saint-Chaffrey Chaffre,Chaffré,Saint-Chaffrey 44.92555 6.60768 P PPL FR B8 05 051 05133 1716 1354 Europe/Paris 2011-01-14
-2981217 Saint-Cézaire-sur-Siagne Saint-Cezaire-sur-Siagne Saint-Cesaire-sur-Siagne,Saint-Cezaire,Saint-Cezaire-sur-Siagne,Saint-Césaire-sur-Siagne,Saint-Cézaire,Saint-Cézaire-sur-Siagne 43.64884 6.79384 P PPL FR B8 06 061 06118 3383 486 Europe/Paris 2012-01-18
-2981224 Saint-Cernin Saint-Cernin Saint-Cernin,Saint-Cernin-du-Cantal 45.0573 2.42232 P PPL FR 98 15 151 15175 1137 764 Europe/Paris 2012-01-18
-2981227 Saint-Cergues Saint-Cergues Saint-Cergues 46.23349 6.31954 P PPL FR B9 74 743 74229 2783 546 Europe/Paris 2012-01-18
-2981228 Saint-Céré Saint-Cere Franc-Cere,Franc-Céré,Saint-Cere,Saint-Céré,Seu-Cere,Seu-Céré 44.85726 1.89415 P PPL FR B3 46 462 46251 3887 153 Europe/Paris 2012-01-18
-2981237 Saint-Cast-le-Guildo Saint-Cast-le-Guildo Havre-Cast,Saint-Cast,Saint-Cast Bourg,Saint-Cast-le-Guildo,Sant-Kast-ar-Gwildou,Sant-Kast-ar-Gwildoù 48.63028 -2.25777 P PPL FR A2 22 221 22282 3363 16 Europe/Paris 2012-01-18
-2981241 Saint-Cassien Saint-Cassien Saint Cassient,Saint-Cassien 45.35971 5.55321 P PPL FR B9 38 381 38373 1051 363 Europe/Paris 2012-01-18
-2981243 Saint-Carreuc Saint-Carreuc Saint-Carreuc,Sant-Kareg 48.39889 -2.73056 P PPL FR A2 22 224 22281 1274 196 Europe/Paris 2012-01-18
-2981247 Saint-Caradec Saint-Caradec Caradec-sur-Oust,Saint-Caradec,Sant-Karadeg 48.19429 -2.84386 P PPL FR A2 22 224 22279 1191 93 Europe/Paris 2012-01-18
-2981251 Saint-Caprais-de-Bordeaux Saint-Caprais-de-Bordeaux Saint-Caprais,Saint-Caprais-de-Bordeaux 44.74786 -0.43192 P PPL FR 97 33 332 33381 2743 83 Europe/Paris 2012-01-18
-2981259 Saint-Cannat Saint-Cannat Le Saizet,Le Sauzet,Saint-Cannat 43.62089 5.2969 P PPL FR B8 13 131 13091 4879 213 Europe/Paris 2012-01-18
-2981263 Saint-Calais Saint-Calais Calais-sur-Anille,Saint-Calais 47.9221 0.74587 P PPL FR B5 72 722 72269 4121 101 Europe/Paris 2012-01-18
-2981267 Saint-Broladre Saint-Broladre Saint-Broladre,Sant-Brewalaer 48.58677 -1.65768 P PPL FR A2 35 354 35259 1020 11 Europe/Paris 2012-01-18
-2981272 Saint-Brisson-sur-Loire Saint-Brisson-sur-Loire Saint-Brisson,Saint-Brisson-sur-Loire 47.64686 2.68229 P PPL FR A3 45 451 45271 1077 154 Europe/Paris 2012-01-18
-2981274 Saint-Bris-le-Vineux Saint-Bris-le-Vineux Bris-le-Vineux,Saint-Bris,Saint-Bris-le-Vineux 47.74396 3.64922 P PPL FR A1 89 891 89337 1097 168 Europe/Paris 2012-01-18
-2981280 Saint-Brieuc Saint-Brieuc Port-Brieuc,Saint-Brieu,Saint-Brieuc,Sant-Brieg,Sent-Brie,san=buriyu,Сент-Брие,サン=ブリユー 48.51667 -2.78333 P PPLA2 FR A2 22 224 22278 52774 107 Europe/Paris 2011-11-02
-2981281 Saint-Brice-sur-Vienne Saint-Brice-sur-Vienne Saint-Brice,Saint-Brice-sur-Vienne 45.87852 0.95594 P PPL FR B1 87 873 87140 1445 197 Europe/Paris 2012-01-18
-2981283 Saint-Brice-sous-Forêt Saint-Brice-sous-Foret Saint-Brice,Saint-Brice-sous-Foret,Saint-Brice-sous-Forêt 49.00132 2.35361 P PPL FR A8 95 952 95539 13606 84 Europe/Paris 2012-01-18
-2981284 Saint-Brice-Courcelles Saint-Brice-Courcelles Liberte-sur-Vesle,Liberté-sur-Vesle,Montriqueux,Saint-Brice 49.26667 3.98333 P PPL FR A4 51 513 51474 3570 73 Europe/Paris 2007-11-20
-2981285 Saint-Brice-en-Coglès Saint-Brice-en-Cogles Saint-Brice,Saint-Brice-en-Cogles,Saint-Brice-en-Coglès,Sant-Brizh-Gougleiz 48.41157 -1.37019 P PPL FR A2 35 351 35257 2617 99 Europe/Paris 2012-01-18
-2981291 Saint-Brice Saint-Brice Saint-Brice 45.68333 -0.28333 P PPL FR B7 16 162 16304 1021 51 Europe/Paris 2012-01-18
-2981294 Saint-Briac-sur-Mer Saint-Briac-sur-Mer Port-Briac,Saint-Briac,Saint-Briac-sur-Mer,Sant-Briag 48.62189 -2.13435 P PPL FR A2 35 354 35256 1934 32 Europe/Paris 2012-01-18
-2981296 Saint-Brevin-les-Pins Saint-Brevin-les-Pins Saint-Brevin,Saint-Brévin,Sant-Brewenn,Union 47.25 -2.16667 P PPL FR B5 44 443 44154 10396 7 Europe/Paris 2007-11-03
-2981303 Saint-Brès Saint-Bres Saint-Bres,Saint-Brès 43.66742 4.03105 P PPL FR A9 34 343 34244 2811 25 Europe/Paris 2012-01-18
-2981304 Saint-Brandan Saint-Brandan Saint-Brandan,Sant-Vedan 48.39008 -2.86875 P PPL FR A2 22 224 22277 2232 200 Europe/Paris 2012-01-18
-2981305 Saint-Branchs Saint-Branchs Saint-Branchs 47.22655 0.77306 P PPL FR A3 37 372 37211 2307 96 Europe/Paris 2012-01-18
-2981309 Saint-Bon-Tarentaise Saint-Bon-Tarentaise Prairial,Saint-Bon 45.43373 6.63686 P PPL FR B9 73 731 73227 1992 1117 Europe/Paris 2009-01-31
-2981315 Saint-Bonnet-près-Riom Saint-Bonnet-pres-Riom Saint-Bonnet,Saint-Bonnet-pres-Riom,Saint-Bonnet-près-Riom 45.92895 3.11162 P PPL FR 98 63 634 63327 1673 371 Europe/Paris 2012-01-18
-2981320 Saint-Bonnet-les-Oules Saint-Bonnet-les-Oules Saint-Bonnet,Saint-Bonnet-les-Oules 45.5425 4.33145 P PPL FR B9 42 421 42206 1294 503 Europe/Paris 2012-01-18
-2981325 Saint-Bonnet-le-Château Saint-Bonnet-le-Chateau Bonnet-la-Montagne,Saint Bonnet,Saint-Bonnet-le-Chateau,Saint-Bonnet-le-Château 45.42338 4.06673 P PPL FR B9 42 421 42204 1630 875 Europe/Paris 2012-01-18
-2981338 Saint-Bonnet-de-Mure Saint-Bonnet-de-Mure Saint Bonnet,Saint-Bonnet-de-Mure 45.69958 5.02026 P PPL FR B9 69 691 69287 5890 232 Europe/Paris 2012-01-18
-2981355 Saint-Bonnet-en-Champsaur Saint-Bonnet-en-Champsaur Bonnet-Libre 44.68333 6.08333 P PPL FR B8 05 052 05132 1608 1064 Europe/Paris 2007-11-20
-2981382 Saint-Berthevin Saint-Berthevin Saint-Berthevin-sur-Vicoin 48.06667 -0.83333 P PPL FR B5 53 532 53201 6887 105 Europe/Paris 2011-11-02
-2981384 Saint-Béron Saint-Beron Gorges-de-Chailles,Saint-Beron,Saint-Béron 45.50141 5.73012 P PPL FR B9 73 732 73226 1345 321 Europe/Paris 2012-01-18
-2981390 Saint-Berain-sous-Sanvignes Saint-Berain-sous-Sanvignes Saint-Berain,Saint-Berain-sous-Sanvignes,Saint-Bérain 46.70678 4.29405 P PPL FR A1 71 711 71390 1025 322 Europe/Paris 2012-01-18
-2981393 Saint-Benoît-sur-Loire Saint-Benoit-sur-Loire Saint-Benoit-sur-Loire,Saint-Benoît-sur-Loire 47.80561 2.31274 P PPL FR A3 45 452 45270 1975 111 Europe/Paris 2012-01-18
-2981402 Saint-Benoît-de-Carmaux Saint-Benoit-de-Carmaux La Montagne,Saint-Benoit,Saint-Benoit-de-Carmaux,Saint-Benoît-de-Carmaux 44.05037 2.12911 P PPL FR B3 81 811 81244 2371 286 Europe/Paris 2012-01-18
-2981408 Saint-Benoît Saint-Benoit Quincay-les-Plaisirs,Quinçay-les-Plaisirs,Saint-Benoit,Saint-Benoît 46.55315 0.3419 P PPL FR B7 86 863 86214 7598 112 Europe/Paris 2012-01-18
-2981433 Saint-Bauzille-de-Putois Saint-Bauzille-de-Putois Bel-Herault,Bel-Hérault,Saint-Bauzille,Saint-Bauzille-de-Putois 43.89454 3.7358 P PPL FR A9 34 342 34243 1283 139 Europe/Paris 2012-01-18
-2981444 Saint-Baudelle Saint-Baudelle Saint-Baudelle,Saint-Beaudelle 48.28081 -0.63728 P PPL FR B5 53 533 53200 1062 122 Europe/Paris 2012-01-18
-2981452 Saint-Barthélemy-de-Vals Saint-Barthelemy-de-Vals Saint-Barthelemy,Saint-Barthelemy-de-Vals,Saint-Barthélemy,Saint-Barthélemy-de-Vals 45.16729 4.86977 P PPL FR B9 26 263 26295 1728 189 Europe/Paris 2012-01-18
-2981473 Saint-Barnabé Saint-Barnabe Saint-Barnabe,Saint-Barnabé,Sant-Barnev 48.13712 -2.70483 P PPL FR A2 22 224 22275 1414 143 Europe/Paris 2012-01-18
-2981481 Saint-Baldoph Saint-Baldoph L'Albanne,Saint-Baldoph 45.5312 5.95217 P PPL FR B9 73 732 73225 3093 314 Europe/Paris 2012-01-18
-2981488 Saint-Ay Saint-Ay Ay-sur-Loire,Saint-Ay 47.8589 1.75137 P PPL FR A3 45 452 45269 3032 93 Europe/Paris 2012-01-18
-2981492 Saint-Avold Saint-Avold Rosselgene,Rosselgène,Saint-Avold,Trimonts 49.1027 6.70064 P PPL FR B2 57 573 57606 18281 252 Europe/Paris 2012-01-18
-2981512 Saint-Avertin Saint-Avertin Saint-Avertin,Vancay,Vansay,Vançay 47.36357 0.73993 P PPL FR A3 37 372 37208 16007 87 Europe/Paris 2012-01-18
-2981515 Saint-Avé Saint-Ave Saint-Ave,Saint-Avé,Sant-Teve 47.69085 -2.74648 P PPL FR A2 56 563 56206 8907 58 Europe/Paris 2012-01-18
-2981519 Saint-Aupre Saint-Aupre 45.38333 5.66667 P PPL FR B9 38 381 38362 1059 636 Europe/Paris 2007-11-18
-2981521 Saint-Aunès Saint-Aunes Saint-Aunes,Saint-Aunès 43.64083 3.96583 P PPL FR A9 34 343 34240 3165 49 Europe/Paris 2010-12-24
-2981522 Saint-Aulaye Saint-Aulaye Saint-Aulaye 45.2 0.13333 P PPL FR 97 24 243 24376 1492 81 Europe/Paris 2012-01-18
-2981528 Saint-Augustin Saint-Augustin Mont-l'Unite,Mont-l'Unité,Saint-Augustin 48.78333 3.03016 P PPL FR A8 77 771 77400 1545 123 Europe/Paris 2012-01-18
-2981533 Saint-Aubin-sur-Scie Saint-Aubin-sur-Scie Saint Aubin,Saint-Aubin-sur-Scie 49.87162 1.06823 P PPL FR A7 76 761 76565 1259 22 Europe/Paris 2012-01-18
-2981536 Saint-Aubin-sur-Mer Saint-Aubin-sur-Mer Saint-Aubin,Saint-Aubin-sur-Mer 49.32786 -0.38696 P PPL FR 99 14 142 14562 1881 9 Europe/Paris 2012-01-18
-2981538 Saint-Aubin-sur-Gaillon Saint-Aubin-sur-Gaillon La Montagne,Montagne-sur-Gaillon,Puits-Foret,Puits-Forêt,Saint-Aubin,Saint-Aubin-sur-Gaillon 49.147 1.32914 P PPL FR A7 27 271 27517 1492 124 Europe/Paris 2012-01-18
-2981542 Saint-Aubin-Routot Saint-Aubin-Routot Saint-Aubin-Routot 49.52341 0.32602 P PPL FR A7 76 762 76563 1150 101 Europe/Paris 2012-01-18
-2981547 Saint-Aubin-lès-Elbeuf Saint-Aubin-les-Elbeuf Saint-Aubin,Saint-Aubin-les-Elbeuf,Saint-Aubin-lès-Elbeuf 49.3036 1.01056 P PPL FR A7 76 763 76561 8486 13 Europe/Paris 2012-01-18
-2981551 Saint-Aubin-le-Cloud Saint-Aubin-le-Cloud Saint-Aubin,Saint-Aubin-le-Cloud 46.65308 -0.35258 P PPL FR B7 79 793 79239 2004 183 Europe/Paris 2012-01-18
-2981558 Saint-Aubin-en-Bray Saint-Aubin-en-Bray Saint-Aubin-en-Bray 49.42051 1.87782 P PPL FR B6 60 601 60567 1134 138 Europe/Paris 2012-01-18
-2981565 Saint-Aubin-du-Cormier Saint-Aubin-du-Cormier Montagne-la-Foret,Montagne-la-Forêt,Saint-Aubin,Saint-Aubin-du-Cormier,Sant-Albin-an-Hiliber 48.25843 -1.40252 P PPL FR A2 35 351 35253 3269 113 Europe/Paris 2012-01-18
-2981568 Saint-Aubin-des-Ormeaux Saint-Aubin-des-Ormeaux Aubin-la-Pierre,Saint-Aubin,Saint-Aubin-des-Ormeaux 46.99238 -1.04274 P PPL FR B5 85 852 85198 1232 133 Europe/Paris 2012-01-18
-2981574 Saint-Aubin-des-Châteaux Saint-Aubin-des-Chateaux Saint-Aubin,Saint-Aubin-des-Chateaux,Saint-Aubin-des-Châteaux,Sant-Albin-ar-C'hestell 47.72047 -1.48876 P PPL FR B5 44 441 44153 1411 75 Europe/Paris 2012-01-18
-2981577 Saint-Aubin-des-Bois Saint-Aubin-des-Bois Saint-Aubin,Saint-Aubin-des-Bois 48.46548 1.35784 P PPL FR A3 28 281 28325 1029 171 Europe/Paris 2012-01-18
-2981579 Saint-Aubin-de-Médoc Saint-Aubin-de-Medoc Saint-Aubin,Saint-Aubin-de-Medoc,Saint-Aubin-de-Médoc 44.75 -0.71667 P PPL FR 97 33 332 33376 5440 54 Europe/Paris 2012-01-18
-2981609 Saint-Aubin Saint-Aubin Saint-Aubin 47.03336 5.32666 P PPL FR A6 39 391 39476 1600 189 Europe/Paris 2012-01-18
-2981615 Saint-Aubert Saint-Aubert Libreval,Saint-Aubert 50.20805 3.41727 P PPL FR B4 59 592 59528 1448 68 Europe/Paris 2012-01-18
-2981623 Saint-Astier Saint-Astier Astier-sur-l'Isle,Saint-Astier 45.14582 0.52898 P PPL FR 97 24 243 24372 4914 80 Europe/Paris 2012-01-18
-2981629 Saint-Arnoult-en-Yvelines Saint-Arnoult-en-Yvelines La Mejeanne,Montagne-sur-Remarde,Saint-Arnoult,Saint-Arnoult-en-Yvelines 48.57111 1.9395 P PPL FR A8 78 782 78537 5698 118 Europe/Paris 2012-01-18
-2981634 Saint-Arnoult Saint-Arnoult Saint-Arnoult 49.52676 0.67117 P PPL FR A7 76 763 76557 1301 133 Europe/Paris 2012-01-18
-2981639 Saint-Armel Saint-Armel Saint-Armel,Sant-Armael 48.01305 -1.59152 P PPL FR A2 35 353 35250 1708 37 Europe/Paris 2012-01-18
-2981655 Saint-Apollinaire Saint-Apollinaire Saint-Apollinaire 47.33333 5.08333 P PPL FR A1 21 212 21540 5211 249 Europe/Paris 2012-01-18
-2981669 Saint-Antoine-du-Rocher Saint-Antoine-du-Rocher Le Rocher,Saint-Antoine,Saint-Antoine-du-Rocher 47.49677 0.62997 P PPL FR A3 37 372 37206 1280 101 Europe/Paris 2012-01-18
-2981673 Saint-Antoine-de-Breuilh Saint-Antoine-de-Breuilh Saint-Antoine,Saint-Antoine-de-Breuilh 44.83333 0.16667 P PPL FR 97 24 241 24370 1965 15 Europe/Paris 2012-01-18
-2981685 Saint-Antoine-l'Abbaye Saint-Antoine-l'Abbaye 45.16667 5.21667 P PPL FR B9 38 381 38359 1008 360 Europe/Paris 2007-11-20
-2981711 Saint-André-Treize-Voies Saint-Andre-Treize-Voies Saint-Andre,Saint-Andre-Treize-Voies,Saint-André,Saint-André-Treize-Voies,Treize-Voies 46.93369 -1.41274 P PPL FR B5 85 852 85197 1019 43 Europe/Paris 2012-01-18
-2981712 Saint-André-sur-Vieux-Jonc Saint-Andre-sur-Vieux-Jonc Saint-Andre,Saint-Andre-sur-Vieux-Jonc,Saint-André,Saint-André-sur-Vieux-Jonc 46.15 5.06667 P PPL FR B9 01 012 01336 1059 258 Europe/Paris 2012-01-18
-2981714 Saint-André-sur-Orne Saint-Andre-sur-Orne Saint-Andre,Saint-Andre-sur-Orne,Saint-André,Saint-André-sur-Orne 49.11741 -0.38227 P PPL FR 99 14 142 14556 1679 34 Europe/Paris 2012-01-18
-2981716 Saint-André-les-Vergers Saint-Andre-les-Vergers Saint-Andre,Saint-Andre-les-Vergers,Saint-André,Saint-André-les-Vergers 48.28527 4.0521 P PPL FR A4 10 103 10333 11203 105 Europe/Paris 2012-01-18
-2981718 Saint-André-le-Puy Saint-Andre-le-Puy Saint-Andre-le-Puy,Saint-André-le-Puy 45.64458 4.25744 P PPL FR B9 42 421 42200 1217 362 Europe/Paris 2012-01-18
-2981719 Saint-André-le-Gaz Saint-Andre-le-Gaz Saint-Andre,Saint-Andre-le-Gaz,Saint-André,Saint-André-le-Gaz 45.54943 5.53503 P PPL FR B9 38 382 38357 2284 407 Europe/Paris 2012-01-18
-2981743 Saint-André-de-Seignanx Saint-Andre-de-Seignanx Saint Andre,Saint André 43.558 -1.35183 P PPL FR 97 40 401 40248 1403 43 Europe/Paris 2007-11-20
-2981745 Saint-André-des-Eaux Saint-Andre-des-Eaux Saint-Andre,Saint-Andre-des-Eaux,Saint-André,Saint-André-des-Eaux,Sant-Andrev-an-Dour 47.31461 -2.31105 P PPL FR B5 44 443 44151 3873 19 Europe/Paris 2012-01-18
-2981746 Saint-André-de-Sangonis Saint-Andre-de-Sangonis Beaulieu,La Source,Saint-Andre,Saint-Andre-de-Sangonis,Saint-Andre-de-Sangoui,Saint-André,Saint-André-de-Sangonis,Saint-André-de-Sangoui 43.64753 3.50209 P PPL FR A9 34 342 34239 4270 70 Europe/Paris 2012-01-18
-2981758 Saint-André-de-la-Marche Saint-Andre-de-la-Marche Saint-Andre,Saint-Andre-de-la-Marche,Saint-André,Saint-André-de-la-Marche 47.09952 -0.99441 P PPL FR B5 49 492 49264 2701 94 Europe/Paris 2012-01-18
-2981762 Saint-André-de-Corcy Saint-Andre-de-Corcy Saint-Andre,Saint-Andre-de-Corcy,Saint-André,Saint-André-de-Corcy 45.9259 4.95166 P PPL FR B9 01 012 01333 3373 298 Europe/Paris 2011-08-12
-2981779 Saint-André-lez-Lille Saint-Andre-lez-Lille 50.66667 3.05 P PPL FR FR B4 59 595 59527 10931 22 Europe/Paris 2011-11-02
-2981783 Saint-André-de-la-Roche Saint-Andre-de-la-Roche 43.73333 7.28333 P PPL FR B8 06 062 06114 4336 97 Europe/Paris 2007-11-20
-2981788 Sant Andreu de Sureda Sant Andreu de Sureda Saint-Andre,Saint-André,Sant Andreu,Sant Andreu de Sureda 42.55201 2.97129 P PPL FR A9 66 661 66168 2757 37 Europe/Paris 2011-11-02
-2981791 Saint-Andiol Saint-Andiol Saint-Andiol 43.83484 4.94453 P PPL FR B8 13 132 13089 2722 57 Europe/Paris 2011-01-18
-2981793 Saint-Andéol-le-Château Saint-Andeol-le-Chateau Andeol-Libre,Andéol-Libre,Saint Andeol,Saint Andéol,Saint-Andeol-le-Chateau,Saint-Andéol-le-Château 45.58703 4.69495 P PPL FR B9 69 691 69179 1451 324 Europe/Paris 2012-01-18
-2981805 Saint-Amour Saint-Amour Franc-Amour,Saint-Amour 46.43638 5.34416 P PPL FR A6 39 392 39475 2161 256 Europe/Paris 2011-01-14
-2981808 Saint-Amé Saint-Ame Nol-sur-Moselle,Saint-Ame,Saint-Amé 48.02388 6.66416 P PPL FR B2 88 881 88409 2045 395 Europe/Paris 2012-01-18
-2981810 Saint-Ambroix Saint-Ambroix Pont-Ceze,Pont-Cèze,Saint-Ambroix 44.25893 4.19833 P PPL FR A9 30 301 30227 3541 149 Europe/Paris 2012-01-18
-2981815 Saint-Amarin Saint-Amarin Saint-Amarin 47.87335 7.03193 P PPL FR C1 68 686 68292 2556 411 Europe/Paris 2012-01-18
-2981816 Saint-Amant-Tallende Saint-Amant-Tallende Saint-Amand-Tallende,Saint-Amande-Tallende,Saint-Amant,Saint-Amant-Tallende 45.66839 3.1101 P PPL FR 98 63 632 63315 1781 452 Europe/Paris 2012-01-18
-2981822 Saint-Amant-de-Boixe Saint-Amant-de-Boixe Saint-Amant,Saint-Amant-de-Boixe 45.7979 0.13524 P PPL FR B7 16 161 16295 1164 68 Europe/Paris 2012-01-18
-2981824 Saint-Amans-Valtoret Saint-Amans-Valtoret Saint-Amans,Saint-Amans-Valtoret 43.48071 2.49095 P PPL FR B3 81 812 81239 1027 288 Europe/Paris 2012-01-18
-2981825 Saint-Amans-Soult Saint-Amans-Soult Saint-Amans-Soult 43.47697 2.49076 P PPL FR B3 81 812 81238 1839 288 Europe/Paris 2012-01-18
-2981833 Saint-Amand-sur-Sèvre Saint-Amand-sur-Sevre Saint-Amand,Saint-Amand-sur-Sevre,Saint-Amand-sur-Sèvre 46.86905 -0.79441 P PPL FR B7 79 791 79235 1298 150 Europe/Paris 2012-01-18
-2981837 Saint-Amand-Montrond Saint-Amand-Montrond Libreval,Saint Amand,Saint Amano 46.71667 2.51667 P PPLA3 FR A3 18 182 18197 11976 162 Europe/Paris 2011-11-02
-2981839 Saint-Amand-les-Eaux Saint-Amand-les-Eaux Elnon-Libre,Saint-Amand,Saint-Amand-les-Eaux 50.44718 3.43076 P PPL FR B4 59 596 59526 17808 20 Europe/Paris 2012-01-18
-2981843 Saint-Amand-en-Puisaye Saint-Amand-en-Puisaye Saint-Amand-en Puysaye,Saint-Amand-en-Puisaye 47.52914 3.074 P PPL FR A1 58 584 58227 1398 187 Europe/Paris 2012-01-18
-2981845 Saint-Amand-Longpré Saint-Amand-Longpre Saint-Amand,Saint-Amand-de-Vendome,Saint-Amand-de-Vendôme 47.68333 1.01667 P PPL FR A3 41 412 41199 1083 120 Europe/Paris 2007-11-20
-2981851 Saint-Amand Saint-Amand Saint-Amand 49.04338 -0.96491 P PPL FR 99 50 504 50444 2045 128 Europe/Paris 2011-01-20
-2981863 Saint-Alexandre Saint-Alexandre Roquebrune,Saint-Alexandre 44.22741 4.62081 P PPL FR A9 30 302 30226 1065 122 Europe/Paris 2012-01-18
-2981865 Saint-Alban-sur-Limagnole Saint-Alban-sur-Limagnole Saint-Alban,Saint-Alban-sur-Limagnole 44.781 3.38793 P PPL FR A9 48 482 48132 1535 971 Europe/Paris 2012-01-18
-2981873 Saint-Alban-de-Roche Saint-Alban-de-Roche Mont-Alban,Saint-Alban,Saint-Alban-de-Roche 45.59526 5.22304 P PPL FR B9 38 382 38352 1855 288 Europe/Paris 2012-01-18
-2981876 Saint-Alban Saint-Alban Saint-Alban,Sant-Alvan 48.5563 -2.54013 P PPL FR A2 22 224 22273 1635 100 Europe/Paris 2012-01-18
-2981878 Saint-Alban-Leysse Saint-Alban-Leysse Saint-Alban-Leysse 45.58333 5.95 P PPL FR B9 73 732 73222 5452 305 Europe/Paris 2011-11-02
-2981879 Saint-Alban Saint-Alban Saint-Alban 43.6927 1.4102 P PPL FR B3 31 313 31467 5379 129 Europe/Paris 2011-11-02
-2981882 Saint-Aigulin Saint-Aigulin Ami-des-Lois,Le Grand-Aigulin,Le Petit-Aigulin 45.15 -0.01667 P PPL FR B7 17 171 17309 2147 27 Europe/Paris 2007-09-08
-2981898 Saint-Aignan Saint-Aignan Carismont,Saint-Aignan,Saint-Aignan-sur-Cher 47.26892 1.37614 P PPL FR A3 41 413 41198 3752 85 Europe/Paris 2012-01-18
-2981901 Saint-Agrève Saint-Agreve Mont-Chiniac,Saint-Agreve,Saint-Agrève 45.00993 4.39375 P PPL FR B9 07 073 07204 2834 1059 Europe/Paris 2012-01-18
-2981907 Saint-Agnant-de-Versillat Saint-Agnant-de-Versillat Saint-Agnant,Saint-Agnant-de-Versillat,Versillat-le-Marat 46.278 1.50962 P PPL FR B1 23 232 23177 1098 310 Europe/Paris 2012-01-18
-2981908 Saint-Agnant Saint-Agnant Mont-Agnan,Saint-Agnant 45.87354 -0.96119 P PPL FR B7 17 172 17308 2193 14 Europe/Paris 2012-01-18
-2981923 Saint-Agathon Saint-Agathon Bonvalon,Saint-Agathon,Sant-Eganton 48.55867 -3.10525 P PPL FR A2 22 222 22272 1876 117 Europe/Paris 2012-01-18
-2981925 Saint-Affrique Saint-Affrique La Montagne-sur-Sorgue 43.95575 2.88915 P PPL FR B3 12 121 12208 8548 324 Europe/Paris 2011-11-02
-2981941 Sains-en-Gohelle Sains-en-Gohelle Sains,Sains-en-Gohelle 50.44512 2.68301 P PPL FR B4 62 627 62737 6196 62 Europe/Paris 2012-01-18
-2981942 Sains-en-Amiénois Sains-en-Amienois Sains,Sains-en-Amienois,Sains-en-Amiénois 49.81716 2.31862 P PPL FR B6 80 802 80696 1260 111 Europe/Paris 2012-01-18
-2981943 Sains-du-Nord Sains-du-Nord Sains,Sains-du-Nord 50.09377 4.00898 P PPL FR B4 59 591 59525 3042 200 Europe/Paris 2012-01-18
-2981949 Sainghin-en-Weppes Sainghin-en-Weppes Sainghin,Sainghin-en-Weppes 50.56407 2.89804 P PPL FR B4 59 595 59524 5611 30 Europe/Paris 2012-01-18
-2981950 Sainghin-en-Mélantois Sainghin-en-Melantois Sainghin,Sainghin-en-Melantois,Sainghin-en-Mélantois 50.58836 3.16619 P PPL FR B4 59 595 59523 2606 34 Europe/Paris 2012-01-18
-2981953 Sain-Bel Sain-Bel Bel-les-Mines,Sain-Bel 45.8107 4.59815 P PPL FR B9 69 691 69171 2022 251 Europe/Paris 2012-01-18
-2981954 Sail-sous-Couzan Sail-sous-Couzan Sail,Sail-sous-Couzan 45.73482 3.96898 P PPL FR B9 42 421 42195 1009 428 Europe/Paris 2011-09-10
-2981956 Sailly-sur-la-Lys Sailly-sur-la-Lys Sailly,Sailly-sur-la-Lys 50.6582 2.76872 P PPL FR B4 62 622 62736 4004 18 Europe/Paris 2012-01-18
-2981959 Sailly-lez-Lannoy Sailly-lez-Lannoy Sailly 50.65 3.21667 P PPL FR B4 59 595 59522 1804 43 Europe/Paris 2007-11-20
-2981962 Sailly-Labourse Sailly-Labourse Sailly,Sailly-Labourse 50.5012 2.69708 P PPL FR B4 62 622 62735 2067 27 Europe/Paris 2012-01-18
-2981963 Sailly-Flibeaucourt Sailly-Flibeaucourt Sailly,Sailly-Flibeaucourt,Sally 50.18419 1.7718 P PPL FR B6 80 801 80692 1005 34 Europe/Paris 2012-01-18
-2981990 Saignon Saignon Saignon 43.86182 5.42782 P PPL FR B8 84 841 84105 1009 460 Europe/Paris 2012-01-18
-2981996 Sahurs Sahurs Sahurs 49.35863 0.94256 P PPL FR A7 76 763 76550 1142 9 Europe/Paris 2012-01-18
-2982000 Sagy Sagy Sagy 49.04988 1.95216 P PPL FR A8 95 953 95535 1189 51 Europe/Paris 2012-01-18
-2982001 Sagy Sagy Sagy 46.60129 5.31045 P PPL FR A1 71 714 71379 1121 202 Europe/Paris 2012-01-18
-2982023 Saffré Saffre Saffre,Saffré,Saverieg 47.50143 -1.57856 P PPL FR B5 44 441 44149 2884 27 Europe/Paris 2012-01-18
-2982029 Sadirac Sadirac Sadirac 44.78179 -0.41334 P PPL FR 97 33 332 33363 3266 60 Europe/Paris 2012-01-18
-2982033 Sacy-le-Grand Sacy-le-Grand Sacy,Sacy-le-Grand 49.35479 2.54461 P PPL FR B6 60 602 60562 1376 45 Europe/Paris 2012-01-18
-2982043 Saclay Saclay Saclay 48.7326 2.16923 P PPL FR A8 91 913 91534 3048 155 Europe/Paris 2012-01-18
-2982044 Saclas Saclas Saclas 48.35845 2.12349 P PPL FR A8 91 911 91533 1831 80 Europe/Paris 2012-01-18
-2982052 Saché Sache Sache,Saché 47.24707 0.54455 P PPL FR A3 37 371 37205 1046 61 Europe/Paris 2012-01-18
-2982063 Sabres Sabres 44.14896 -0.74123 P PPL FR 97 40 402 40246 1393 80 Europe/Paris 2009-03-23
-2982064 Sabran Sabran Sabran 44.1504 4.5482 P PPL FR A9 30 302 30225 1841 257 Europe/Paris 2012-01-18
-2982067 Sablons Sablons Sablons 45.32073 4.77501 P PPL FR B9 38 383 38349 1695 136 Europe/Paris 2012-01-18
-2982068 Sablons Sablons Sablons 45.03333 -0.18333 P PPL FR 97 33 335 33362 1228 9 Europe/Paris 2012-01-18
-2982070 Sablonceaux Sablonceaux Sablonceaux 45.70963 -0.88806 P PPL FR B7 17 174 17307 1069 19 Europe/Paris 2012-01-18
-2982075 Sablet Sablet Sablet,Sablet-pres-l'Ouveze,Sablet-près-l'Ouvèze 44.19056 5.00613 P PPL FR B8 84 843 84104 1375 162 Europe/Paris 2012-01-18
-2982076 Sablé-sur-Sarthe Sable-sur-Sarthe Sable,Sable sobre Sarthe,Sablé 47.83765 -0.33294 P PPL FR B5 72 721 72264 14734 39 Europe/Paris 2011-11-02
-2982094 Saâcy-sur-Marne Saacy-sur-Marne Saacy,Saacy-sur-Marne,Saâcy-sur-Marne 48.9621 3.21083 P PPL FR A8 77 771 77397 1866 61 Europe/Paris 2012-01-18
-2982102 Ruy Ruy Ruy 45.58772 5.3189 P PPL FR B9 38 382 38348 4090 269 Europe/Paris 2012-01-18
-2982119 Russange Russange Russange 49.48308 5.95239 P PPL FR B2 57 578 57603 1103 320 Europe/Paris 2012-01-18
-2982122 Russ Russ Russ 48.49495 7.26053 P PPL FR C1 67 673 67420 1251 310 Europe/Paris 2012-01-18
-2982126 Rurange-lès-Thionville Rurange-les-Thionville Rorchingen,Rupange-lez Thionville,Rurange,Rurange-les-Thionville,Rurange-lès-Thionville 49.27711 6.23139 P PPL FR B2 57 577 57602 1680 203 Europe/Paris 2012-01-18
-2982130 Rupt-sur-Moselle Rupt-sur-Moselle Rupt,Rupt-sur-Moselle 47.92271 6.66291 P PPL FR B2 88 881 88408 3707 424 Europe/Paris 2012-01-18
-2982143 Ruoms Ruoms Ruoms 44.45351 4.34265 P PPL FR B9 07 071 07201 2241 122 Europe/Paris 2012-01-18
-2982146 Rungis Rungis Marche de Rungis,Rungis,ranjisu,ランジス 48.74607 2.35274 P PPL FR A8 94 943 94065 5583 86 Europe/Paris 2012-01-18
-2982154 Ruminghem Ruminghem Ruminghem 50.85922 2.15838 P PPL FR B4 62 625 62730 1200 4 Europe/Paris 2012-01-18
-2982156 Rumilly-en-Cambrésis Rumilly-en-Cambresis Rumilly,Rumilly-en-Cambresis,Rumilly-en-Cambrésis 50.12691 3.21874 P PPL FR B4 59 592 59520 1553 84 Europe/Paris 2012-01-18
-2982159 Rumilly Rumilly Rumilly,Rumilly-Albanais 45.86873 5.93652 P PPL FR B9 74 741 74225 13077 345 Europe/Paris 2012-01-18
-2982165 Rumersheim-le-Haut Rumersheim-le-Haut Rumersheim,Rumersheim-le-Haut 47.85127 7.52133 P PPL FR C1 68 683 68291 1050 212 Europe/Paris 2012-01-18
-2982168 Rumegies Rumegies Rumegies 50.48877 3.35131 P PPL FR B4 59 596 59519 1434 27 Europe/Paris 2012-01-18
-2982175 Rully Rully Rully 46.875 4.74322 P PPL FR A1 71 712 71378 1547 222 Europe/Paris 2012-01-18
-2982179 Ruitz Ruitz Ruitz 50.46643 2.58876 P PPL FR B4 62 622 62727 1622 59 Europe/Paris 2012-01-18
-2982188 Ruillé-sur-Loir Ruille-sur-Loir Ruille,Ruille-sur-Loir,Ruille-sur-le-Loir,Ruillé,Ruillé-sur-Loir,Ruillé-sur-le-Loir 47.75075 0.62058 P PPL FR B5 72 721 72262 1368 60 Europe/Paris 2012-01-18
-2982200 Rugles Rugles Rugles 48.82212 0.70979 P PPL FR A7 27 273 27502 2697 181 Europe/Paris 2012-01-18
-2982207 Ruffiac Ruffiac Ruffiac,Rufieg 47.81866 -2.28238 P PPL FR A2 56 563 56200 1452 57 Europe/Paris 2012-01-18
-2982210 Ruffey-lès-Echirey Ruffey-les-Echirey Ruffey 47.36667 5.08333 P PPL FR A1 21 212 21535 1125 242 Europe/Paris 2007-11-15
-2982217 Ruffec Ruffec Ruffec 46.02877 0.19821 P PPL FR B7 16 163 16292 4047 110 Europe/Paris 2012-01-18
-2982231 Ruelle-sur-Touvre Ruelle-sur-Touvre Ruelle,Ruelle-sur-Touvre 45.68333 0.23333 P PPL FR B7 16 161 16291 7597 70 Europe/Paris 2012-01-18
-2982234 Ruelisheim Ruelisheim Ruelisheim 47.82306 7.3594 P PPL FR C1 68 684 68289 2786 225 Europe/Paris 2012-01-18
-2982235 Rueil-Malmaison Rueil-Malmaison Rueil,Rueil-Malmaison 48.8765 2.18967 P PPL FR A8 92 922 92063 76616 64 Europe/Paris 2012-01-18
-2982261 Rue Rue Rue 50.2715 1.67163 P PPL FR B6 80 801 80688 3235 8 Europe/Paris 2012-01-18
-2982281 Rubelles Rubelles Rubelles 48.55327 2.67593 P PPL FR A8 77 772 77394 1837 71 Europe/Paris 2012-01-18
-2982287 Ruaudin Ruaudin Ruaudin 47.94509 0.2676 P PPL FR B5 72 723 72260 2994 56 Europe/Paris 2012-01-18
-2982293 Roz-sur-Couesnon Roz-sur-Couesnon Roz,Roz-an-Arvor,Roz-sur-Couesnon 48.58867 -1.59213 P PPL FR A2 35 354 35247 1038 61 Europe/Paris 2012-01-18
-2982294 Rozoy-sur-Serre Rozoy-sur-Serre Rozoy,Rozoy-sur-Serre 49.70956 4.12902 P PPL FR B6 02 022 02666 1101 154 Europe/Paris 2012-01-18
-2982298 Roz-Landrieux Roz-Landrieux Roz-Landrieux,Roz-Lanrieg 48.54336 -1.81586 P PPL FR A2 35 354 35246 1151 20 Europe/Paris 2012-01-18
-2982305 Rozier-en-Donzy Rozier-en-Donzy Rozier,Rozier-en-Donzy 45.7965 4.27344 P PPL FR B9 42 421 42193 1335 484 Europe/Paris 2012-01-18
-2982313 Rozérieulles Rozerieulles Rozerieulles,Rozérieulles 49.1068 6.08238 P PPL FR B2 57 574 57601 1360 223 Europe/Paris 2012-01-18
-2982317 Rozay-en-Brie Rozay-en-Brie Rozay-en-Brie,Rozoy,Rozoy-l'Unite,Rozoy-l'Unité 48.68333 2.95816 P PPL FR A8 77 773 77393 2887 102 Europe/Paris 2012-01-18
-2982330 Roye Roye Roye 49.70038 2.78959 P PPL FR B6 80 803 80685 6655 87 Europe/Paris 2012-01-18
-2982331 Roye Roye Roye 47.66995 6.54139 P PPL FR A6 70 701 70455 1195 299 Europe/Paris 2012-01-18
-2982332 Roybon Roybon Roybon 45.25966 5.24455 P PPL FR B9 38 381 38347 1364 519 Europe/Paris 2012-01-18
-2982338 Royat Royat Royat 45.76379 3.04954 P PPL FR 98 63 632 63308 4831 514 Europe/Paris 2012-01-18
-2982343 Royan Royan Royan 45.62846 -1.0281 P PPL FR B7 17 172 17306 19017 21 Europe/Paris 2012-01-18
-2982357 Rouziers-de-Touraine Rouziers-de-Touraine Rouziers,Rouziers-de-Touraine 47.5172 0.64848 P PPL FR A3 37 372 37204 1084 121 Europe/Paris 2012-01-18
-2982369 Rouxmesnil-Bouteilles Rouxmesnil-Bouteilles Rouxmesnil,Rouxmesnil-Bouteilles 49.90633 1.07976 P PPL FR A7 76 761 76545 1843 65 Europe/Paris 2012-01-18
-2982383 Rouvroy Rouvroy Rouvroy 50.39247 2.90396 P PPL FR B4 62 627 62724 9122 56 Europe/Paris 2012-01-18
-2982443 Rousson Rousson Rousson 44.19136 4.14786 P PPL FR A9 30 301 30223 3329 224 Europe/Paris 2012-01-18
-2982454 Roussillon Roussillon Roussillon 45.37302 4.80725 P PPL FR B9 38 383 38344 8082 221 Europe/Paris 2012-01-18
-2982456 Roussillon Roussillon Roussillon 43.90084 5.2947 P PPL FR B8 84 841 84102 1254 327 Europe/Paris 2012-01-18
-2982472 Rousset Rousset Rousset 43.48307 5.61959 P PPL FR B8 13 131 13087 4115 264 Europe/Paris 2011-11-02
-2982492 Roussay Roussay Roussay 47.09011 -1.06417 P PPL FR B5 49 492 49263 1060 88 Europe/Paris 2012-01-18
-2982498 Rousies Rousies Rousies 50.27346 4.00382 P PPL FR B4 59 591 59514 4459 130 Europe/Paris 2012-01-18
-2982530 Roumare Roumare Roumare 49.51008 0.97422 P PPL FR A7 76 763 76541 1131 124 Europe/Paris 2012-01-18
-2982536 Roullet-Saint-Estèphe Roullet-Saint-Estephe 45.58333 0.05 P PPL FR B7 16 161 16287 3646 51 Europe/Paris 2007-11-15
-2982541 Roulans Roulans Roulans,Roulans-le-Grand 47.31553 6.22901 P PPL FR A6 25 251 25508 1052 347 Europe/Paris 2012-01-18
-2982543 Roujan Roujan Roujan 43.50489 3.31071 P PPL FR A9 34 341 34237 1684 121 Europe/Paris 2012-01-18
-2982556 Rouillon Rouillon 48.00629 0.13527 P PPL FR B5 72 723 72257 2460 98 Europe/Paris 2009-02-10
-2982558 Rouillé Rouille Rouille,Rouillé 46.42024 0.04073 P PPL FR B7 86 863 86213 2641 155 Europe/Paris 2012-01-18
-2982563 Rouillac Rouillac Rouillac 45.77582 -0.0638 P PPL FR B7 16 162 16286 1824 111 Europe/Paris 2012-01-18
-2982564 Rouhling Rouhling Rouhling,Ruhling,rouhling 49.1345 6.99429 P PPL FR B2 57 576 57598 2020 333 Europe/Paris 2012-01-18
-2982575 Rougiers Rougiers Rougiers 43.39233 5.85144 P PPL FR B8 83 833 83110 1148 364 Europe/Paris 2012-01-18
-2982587 Rougemont-le-Château Rougemont-le-Chateau Rougemont,Rougemont-le-Chateau,Rougemont-le-Château 47.73389 6.96899 P PPL FR A6 90 901 90089 1282 443 Europe/Paris 2012-01-18
-2982593 Rougemont Rougemont Rougemont 47.48211 6.35574 P PPL FR A6 25 251 25505 1234 260 Europe/Paris 2012-01-18
-2982615 Rougé Rouge Rouge,Rougé,Ruzieg 47.78367 -1.44763 P PPL FR B5 44 441 44146 2328 75 Europe/Paris 2012-01-18
-2982625 Rouffignac-Saint-Cernin-de-Reilhac Rouffignac-Saint-Cernin-de-Reilhac 45.05 0.96667 P PPL FR 97 24 244 24356 1508 288 Europe/Paris 2007-11-20
-2982628 Rouffiac-Tolosan Rouffiac-Tolosan Rouffiac,Rouffiac-Tolosan,Rouffire 43.66576 1.52521 P PPL FR B3 31 313 31462 1590 216 Europe/Paris 2011-01-09
-2982636 Rouffach Rouffach 47.95786 7.30016 P PPL FR C1 68 683 68287 4656 204 Europe/Paris 2007-07-07
-2982652 Rouen Rouen Erruan,Rothomagus,Rouen,Ruan,Ruan - Rouen,Ruao,Ruduborg,Ruán,Ruán - Rouen,Ruão,Rúðuborg,lu ang,luang,ru'am,ruan,rwan,Руан,روان,रुआं,ルーアン,鲁昂,루앙 49.44313 1.09932 P PPLA FR A7 76 763 76540 112787 21 Europe/Paris 2011-12-08
-2982681 Roubaix Roubaix Robaais,Roubaix,lu bei,鲁贝 50.69421 3.17456 P PPL FR B4 59 595 59512 95721 33 Europe/Paris 2012-01-18
-2982682 Rouans Rouans Barra-les-Marais,Rodent,Rouans 47.18322 -1.85929 P PPL FR B5 44 442 44145 2283 17 Europe/Paris 2012-01-18
-2982692 Rots Rots Rots 49.21235 -0.47319 P PPL FR 99 14 142 14543 1417 50 Europe/Paris 2012-01-18
-2982705 Rothau Rothau 48.45687 7.20772 P PPL FR C1 67 673 67414 1653 345 Europe/Paris 2007-07-05
-2982709 Rosult Rosult Rosult 50.45888 3.35902 P PPL FR B4 59 596 59511 1884 18 Europe/Paris 2012-01-18
-2982711 Rostrenen Rostrenen Rostrenen,Rostrenenn 48.23696 -3.31442 P PPL FR A2 22 222 22266 4011 233 Europe/Paris 2012-01-18
-2982733 Rosselange Rosselange Rosselange 49.25821 6.06975 P PPL FR B2 57 578 57597 3167 185 Europe/Paris 2012-01-18
-2982745 Rosporden Rosporden Rasperden,Rosporden 47.96667 -3.83333 P PPL FR A2 29 294 29241 6779 121 Europe/Paris 2012-01-18
-2982747 Rospez Rospez Rospez,Rospezh 48.7294 -3.38364 P PPL FR A2 22 223 22265 1621 80 Europe/Paris 2012-01-18
-2982756 Rosny-sur-Seine Rosny-sur-Seine Rosny,Rosny-sur-Seine 48.99808 1.6313 P PPL FR A8 78 781 78531 4936 35 Europe/Paris 2012-01-18
-2982757 Rosny-sous-Bois Rosny-sous-Bois Roni-su-Bua,Rosny,Rosny-sous-Bois,Рони-су-Буа 48.87017 2.4991 P PPL FR A8 93 931 93064 41627 83 Europe/Paris 2012-01-18
-2982774 Rosières-près-Troyes Rosieres-pres-Troyes Rosieres,Rosieres-pres-Troyes,Rosières,Rosières-près-Troyes 48.26182 4.07396 P PPL FR A4 10 103 10325 2995 114 Europe/Paris 2012-01-18
-2982775 Rosières-en-Santerre Rosieres-en-Santerre Rosieres,Rosieres-en-Santerre,Rosières,Rosières-en-Santerre 49.81434 2.70095 P PPL FR B6 80 803 80680 3000 91 Europe/Paris 2012-01-18
-2982778 Rosières-aux-Salines Rosieres-aux-Salines Rosieres,Rosieres-aux-Salines,Rosières,Rosières-aux-Salines 48.5929 6.33208 P PPL FR B2 54 543 54462 2896 208 Europe/Paris 2012-01-18
-2982781 Rosières Rosieres Rosieres,Rosières 45.13233 3.98768 P PPL FR 98 43 432 43165 1376 654 Europe/Paris 2012-01-18
-2982782 Rosières Rosieres Baubiac,Rosieres,Rosières 44.48306 4.25598 P PPL FR B9 07 071 07199 1044 166 Europe/Paris 2012-01-18
-2982790 Rosheim Rosheim Rosheim 48.4971 7.47105 P PPL FR C1 67 673 67411 4807 196 Europe/Paris 2011-02-14
-2982798 Rosenau Rosenau Rosenau 47.63471 7.54099 P PPL FR C1 68 684 68286 1926 235 Europe/Paris 2012-01-18
-2982809 Roscoff Roscoff Roscoff,Rosko 48.72381 -3.98709 P PPL FR A2 29 293 29239 3772 6 8 Europe/Paris 2011-11-02
-2982811 Roscanvel Roscanvel Roscanvel,Roskanvel,Roskañvel 48.3152 -4.54937 P PPL FR A2 29 292 29238 1027 15 Europe/Paris 2007-12-29
-2982835 Roquevaire Roquevaire Roquevaire 43.35021 5.60414 P PPL FR B8 13 133 13086 8210 160 Europe/Paris 2011-11-02
-2982836 Roquettes Roquettes 43.49733 1.36848 P PPL FR B3 31 311 31460 3714 159 Europe/Paris 2009-10-26
-2982839 Roquetoire Roquetoire Roquetoire 50.67029 2.34307 P PPL FR B4 62 625 62721 1643 38 Europe/Paris 2012-01-18
-2982851 Roquemaure Roquemaure Roquemaure 44.04944 4.7774 P PPL FR A9 30 302 30221 5293 26 Europe/Paris 2012-01-18
-2982859 Roquefort-la-Bédoule Roquefort-la-Bedoule Roquefort,Roquefort-la-Bedoule,Roquefort-la-Bédoule 43.24883 5.59015 P PPL FR B8 13 133 13085 4946 287 Europe/Paris 2011-01-19
-2982862 Roquefort Roquefort Roquefort 44.1753 0.56106 P PPL FR 97 47 471 47225 1261 72 Europe/Paris 2012-01-18
-2982863 Roquefort Roquefort Roquefort 44.035 -0.32323 P PPL FR 97 40 402 40245 2050 63 Europe/Paris 2012-01-18
-2982873 Roquecourbe Roquecourbe Roquecourbe 43.66442 2.29264 P PPL FR B3 81 812 81227 2310 220 Europe/Paris 2012-01-18
-2982875 Roquebrune-sur-Argens Roquebrune-sur-Argens Roquebrune 43.43333 6.63333 P PPL FR B8 83 831 83107 12485 94 Europe/Paris 2011-11-02
-2982876 Roquebrune-Cap-Martin Roquebrune-Cap-Martin Roquebrune,Roquebrune-Cap-Martin 43.76408 7.48206 P PPL FR B8 06 062 06104 11834 19 Europe/Paris 2012-01-18
-2982881 Roquebillière Roquebilliere Roquebilliere,Roquebillière 44.0125 7.30748 P PPL FR B8 06 062 06103 1563 616 Europe/Paris 2012-01-18
-2982887 Roppenheim Roppenheim 48.84167 8.05315 P PPLA4 FR C1 67 672 67409 0 119 Europe/Paris 2011-07-31
-2982890 Roost-Warendin Roost-Warendin Roost-Warendin 50.4192 3.10374 P PPL FR B4 59 593 59509 5875 19 Europe/Paris 2012-01-18
-2982938 Roncq Roncq Roncq,Ronq 50.7533 3.12131 P PPL FR B4 59 595 59508 13387 44 Europe/Paris 2012-01-18
-2982944 Ronchin Ronchin Ronchin 50.59883 3.09056 P PPL FR B4 59 595 59507 18331 42 Europe/Paris 2012-01-18
-2982946 Roncherolles-sur-le-Vivier Roncherolles-sur-le-Vivier Roncherolles 49.46667 1.18333 P PPL FR A7 76 763 76536 1076 164 Europe/Paris 2007-11-15
-2982951 Ronchamp Ronchamp Ronchamp 47.70063 6.6359 P PPL FR A6 70 701 70451 3086 348 Europe/Paris 2012-01-18
-2982967 Romorantin-Lanthenay Romorantin-Lanthenay Romarantin,Romorantin 47.36667 1.75 P PPLA3 FR A3 41 413 41194 19953 95 Europe/Paris 2011-12-08
-2982972 Romilly-sur-Seine Romilly-sur-Seine Romilly,Romilly-Voltaire,Romilly-sur-Seine 48.51085 3.72634 P PPL FR A4 10 102 10323 14566 74 Europe/Paris 2012-01-18
-2982973 Romilly-sur-Andelle Romilly-sur-Andelle Romilly,Romilly-sur-Andelle 49.3319 1.26128 P PPL FR A7 27 271 27493 2789 12 Europe/Paris 2012-01-18
-2982977 Romillé Romille Romille,Romillé,Rovelieg 48.21619 -1.89229 P PPL FR A2 35 353 35245 2951 102 Europe/Paris 2012-01-18
-2982994 Romenay Romenay Romenay 46.50208 5.06904 P PPL FR A1 71 715 71373 1599 210 Europe/Paris 2012-01-18
-2983005 Rombas Rombas Rombas 49.24911 6.09405 P PPL FR B2 57 574 57591 10942 178 Europe/Paris 2012-01-18
-2983010 Romanswiller Romanswiller Romansviller 48.64556 7.40762 P PPL FR C1 67 673 67408 1262 227 Europe/Paris 2007-07-10
-2983011 Romans-sur-Isère Romans-sur-Isere Roman-sjur-Izer,Romans,Romans-sur-Isere,Romans-sur-Isère,Romas sur Isere,Romas sur Isère,Роман-сюр-Изер 45.04639 5.0562 P PPL FR B9 26 263 26281 35002 167 Europe/Paris 2012-01-18
-2983019 Romanèche-Thorins Romaneche-Thorins Romaneche-Thorins,Romanèche-Thorins 46.18402 4.74242 P PPL FR A1 71 715 71372 1743 189 Europe/Paris 2012-01-18
-2983026 Romainville Romainville Romainville,Romenvil',Роменвиль 48.8854 2.43482 P PPL FR A8 93 931 93063 24772 121 Europe/Paris 2012-01-18
-2983041 Romagny Romagny Romagny 48.63931 -0.96605 P PPL FR 99 50 501 50436 1076 153 Europe/Paris 2012-01-18
-2983043 Romagnieu Romagnieu Romagnieu 45.5704 5.64002 P PPL FR B9 38 382 38343 1348 260 Europe/Paris 2012-01-18
-2983046 Romagné Romagne Romagne,Romagné,Rovenieg 48.34019 -1.27751 P PPL FR A2 35 351 35243 1806 118 Europe/Paris 2012-01-18
-2983050 Romagnat Romagnat Romagnat 45.72878 3.09893 P PPL FR 98 63 632 63307 8771 472 Europe/Paris 2012-01-18
-2983055 Rolleville Rolleville Rolleville 49.58232 0.21177 P PPL FR A7 76 762 76534 1164 43 Europe/Paris 2012-01-18
-2983067 Rolampont Rolampont Rolampont 47.94952 5.2856 P PPL FR A4 52 522 52432 1584 312 Europe/Paris 2012-01-18
-2983073 Roissy-en-France Roissy-en-France Roissy,Roissy-en-France 49.00443 2.51703 P PPL FR A8 95 952 95527 2651 96 Europe/Paris 2012-01-18
-2983074 Roissy-en-Brie Roissy-en-Brie Roissy,Roissy-en-Brie,Roissy-les-Friches,Ruassi-an-Bri,Руасси-ан-Бри 48.79159 2.64747 P PPL FR A8 77 775 77390 20933 101 Europe/Paris 2012-01-18
-2983077 Roisel Roisel Roisel 49.94768 3.09973 P PPL FR B6 80 804 80677 2022 84 Europe/Paris 2012-01-18
-2983083 Roiffieux Roiffieux Librefieux,Roiffieux 45.22647 4.65502 P PPL FR B9 07 073 07197 2599 449 Europe/Paris 2012-01-18
-2983095 Rohrbach-lès-Bitche Rohrbach-les-Bitche Rohrbach,Rohrbach-les-Bitche,Rohrbach-lès-Bitche 49.04516 7.26588 P PPL FR B2 57 576 57589 2212 311 Europe/Paris 2012-01-18
-2983106 Rohan Rohan Roc'han,Rohan 48.06833 -2.7512 P PPL FR A2 56 562 56198 1639 67 Europe/Paris 2012-01-18
-2983117 Rognonas Rognonas Rognonas 43.89993 4.80369 P PPL FR B8 13 132 13083 3754 20 Europe/Paris 2011-01-19
-2983127 Rognes Rognes Rognes 43.66418 5.34801 P PPL FR B8 13 131 13082 4409 316 Europe/Paris 2012-01-18
-2983130 Rognac Rognac Rognac 43.48761 5.23387 P PPL FR B8 13 134 13081 12254 37 Europe/Paris 2011-11-02
-2983135 Rogerville Rogerville Rogerville 49.50296 0.26516 P PPL FR A7 76 762 76533 1282 94 Europe/Paris 2012-01-18
-2983141 Roézé-sur-Sarthe Roeze-sur-Sarthe Roeze,Roeze-sur-Sarthe,Roézé,Roézé-sur-Sarthe 47.89546 0.06723 P PPL FR B5 72 721 72253 2626 55 Europe/Paris 2012-01-18
-2983143 Rœux Roeux 50.29526 2.90073 P PPL FR B4 62 621 62718 1403 56 48 Europe/Paris 2008-03-18
-2983144 Rœulx Roeulx 50.3 3.33333 P PPL FR B4 59 596 59504 3502 38 Europe/Paris 2007-11-14
-2983152 Rodilhan Rodilhan Rodilhan 43.82725 4.43088 P PPL FR A9 30 302 30356 2939 38 Europe/Paris 2011-01-19
-2983154 Rodez Rodez Rodes,Rodez,Rodés,rodezu,Родез,ロデズ,ロデーズ 44.35258 2.57338 P PPLA2 FR B3 12 122 12202 28337 627 Europe/Paris 2011-11-02
-2983165 Rocroi Rocroi Roc-Libre,Rocroi,Rokrua,Рокруа 49.9261 4.5222 P PPL FR A4 08 081 08367 2375 384 Europe/Paris 2011-01-03
-2983174 Rocquencourt Rocquencourt Rocquencourt 48.83783 2.10228 P PPL FR A8 78 784 78524 3389 143 Europe/Paris 2012-01-18
-2983209 Rochetaillée-sur-Saône Rochetaillee-sur-Saone Rochetaillee-sur-Saone,Rochetaillée-sur-Saône 45.85 4.85 P PPL FR B9 69 691 69168 1194 235 Europe/Paris 2007-11-20
-2983219 Roches-Prémarie-Andillé Roches-Premarie-Andille Les Roches-Premarie,Les Roches-Prémarie,Roche-Premarie-Andille,Roche-Prémarie-Andillé,Roches-Premarie,Roches-Premarie-Andille,Roches-Prémarie,Roches-Prémarie-Andillé 46.48251 0.37106 P PPL FR B7 86 863 86209 1602 112 Europe/Paris 2012-01-18
-2983221 Rocheservière Rocheserviere Rocheserviere,Rocheservière 46.93765 -1.51142 P PPL FR B5 85 852 85190 2404 37 Europe/Paris 2012-01-18
-2983246 Rochemaure Rochemaure Rochemaure 44.58747 4.70507 P PPL FR B9 07 072 07191 1989 74 Europe/Paris 2012-01-18
-2983251 Roche-la-Molière Roche-la-Moliere Roche-la-Moliere,Roche-la-Molière 45.43408 4.32276 P PPL FR B9 42 423 42189 10372 547 Europe/Paris 2012-01-18
-2983257 Rochegude Rochegude Rochegude 44.24859 4.82922 P PPL FR B9 26 262 26275 1322 128 Europe/Paris 2012-01-18
-2983262 Rochefort-sur-Loire Rochefort-sur-Loire Rochefort,Rochefort-sur-Loire 47.35705 -0.65696 P PPL FR B5 49 491 49259 2090 27 Europe/Paris 2012-01-18
-2983268 Rochefort-du-Gard Rochefort-du-Gard Rochefort,Rochefort-du-Gard 43.97652 4.69023 P PPL FR A9 30 302 30217 6303 108 Europe/Paris 2012-01-18
-2983276 Rochefort Rochefort Rochefort-sur-Mer,Roshfor,Рошфор 45.93333 -0.98333 P PPLA3 FR B7 17 172 17299 29427 1 Europe/Paris 2011-11-02
-2983287 Rochecorbon Rochecorbon Rochecorbon 47.41658 0.75521 P PPL FR A3 37 372 37203 3124 59 Europe/Paris 2012-01-18
-2983291 Rochechouart Rochechouart 45.81667 0.81667 P PPLA3 FR B1 87 873 87126 3868 213 Europe/Paris 2010-04-02
-2983320 Roche Roche Roche 45.58709 5.15965 P PPL FR B9 38 382 38339 1679 383 Europe/Paris 2012-01-18
-2983332 Rocbaron Rocbaron Rocbaron 43.30449 6.09059 P PPL FR B8 83 833 83106 3218 380 Europe/Paris 2012-01-18
-2983338 Robion Robion Robion 43.84707 5.10975 P PPL FR B8 84 841 84099 4116 125 Europe/Paris 2012-01-18
-2983354 Robecq Robecq Robecq 50.59608 2.56262 P PPL FR B4 62 622 62713 1147 18 Europe/Paris 2012-01-18
-2983362 Roanne Roanne Roann,Roanne,Rodumna,Rouana,Роанн 46.03333 4.06667 P PPLA3 FR B9 42 422 42187 39840 280 Europe/Paris 2011-11-02
-2983369 Rixheim Rixheim Rixheim 47.7514 7.40091 P PPL FR C1 68 684 68278 13608 236 Europe/Paris 2012-01-18
-2983381 Rivière-Saas-et-Gourby Riviere-Saas-et-Gourby Riviere-Saas,Riviere-Saas-et-Gourby,Rivière-Saas,Rivière-Saas-et-Gourby 43.6799 -1.14986 P PPL FR 97 40 401 40244 1015 22 Europe/Paris 2012-01-18
-2983382 Rivières Rivieres Rivieres,Rivières 45.75295 0.36128 P PPL FR B7 16 161 16280 1905 94 Europe/Paris 2012-01-18
-2983387 Rivière Riviere Riviere,Rivière 50.23316 2.692 P PPL FR B4 62 621 62712 1160 89 Europe/Paris 2012-01-18
-2983393 Rivesaltes Rivesaltes Ribesaltes,Rivesaltes 42.76945 2.87239 P PPL FR A9 66 662 66164 8836 29 Europe/Paris 2012-01-18
-2983395 Rives Rives Rives,Rives-sur-Fure 45.35505 5.49926 P PPL FR B9 38 381 38337 6067 405 Europe/Paris 2012-01-18
-2983397 Rivery Rivery Rivery 49.90328 2.32235 P PPL FR B6 80 802 80674 3454 44 Europe/Paris 2012-01-18
-2983407 Rivedoux-Plage Rivedoux-Plage Rivedoux 46.15854 -1.27093 P PPL FR B7 17 173 17297 1885 0 6 Europe/Paris 2007-11-29
-2983408 Rive-de-Gier Rive-de-Gier Rive-de-Gier 45.53067 4.62131 P PPL FR B9 42 423 42186 14852 238 Europe/Paris 2012-01-18
-2983440 Ris-Orangis Ris-Orangis Brutus,Ris,Ris-Orangis 48.6511 2.41406 P PPL FR A8 91 912 91521 25082 73 Europe/Paris 2012-01-18
-2983443 Riscle Riscle Riscle 43.65633 -0.08607 P PPL FR B3 32 323 32344 1808 115 Europe/Paris 2012-01-18
-2983451 Riquewihr Riquewihr Riquewihr 48.16672 7.29707 P PPL FR C1 68 685 68277 1271 309 Europe/Paris 2007-07-17
-2983456 Rioz Rioz Rioz 47.42521 6.06598 P PPL FR A6 70 702 70447 1581 261 Europe/Paris 2012-01-18
-2983479 Riotord Riotord Riotord 45.23226 4.40376 P PPL FR 98 43 433 43163 1210 843 Europe/Paris 2012-01-18
-2983482 Riorges Riorges Riorges 46.04179 4.04966 P PPL FR B9 42 422 42184 10763 286 Europe/Paris 2012-01-18
-2983483 Rions Rions Rions 44.66378 -0.35114 P PPL FR 97 33 333 33355 1571 24 Europe/Paris 2012-01-18
-2983485 Rion-des-Landes Rion-des-Landes Rion,Rion-les-Landes 43.93449 -0.92388 P PPL FR 97 40 401 40243 2401 68 Europe/Paris 2009-03-23
-2983487 Riom-ès-Montagnes Riom-es-Montagnes 45.28333 2.66667 P PPL FR 98 15 152 15162 2902 843 Europe/Paris 2007-11-15
-2983489 Riom Riom Riom,rion,リオン 45.9 3.11667 P PPLA3 FR 98 63 634 63300 20142 324 Europe/Paris 2011-11-02
-2983499 Rinxent Rinxent Rinxent 50.80714 1.72899 P PPL FR B4 62 623 62711 2848 32 Europe/Paris 2012-01-18
-2983514 Rimogne Rimogne Rimogne 49.84075 4.53941 P PPL FR A4 08 081 08365 1404 258 Europe/Paris 2011-01-14
-2983534 Rilly-la-Montagne Rilly-la-Montagne Rilly,Rilly-la-Montagne 49.16552 4.04568 P PPL FR A4 51 513 51461 1081 156 Europe/Paris 2012-01-18
-2983536 Rillieux-la-Pape Rillieux-la-Pape Rilliehuks-la-Pap,Риллиэукс-ла-Пап 45.81667 4.9 P PPL FR B9 69 691 69286 28076 287 Europe/Paris 2011-11-02
-2983542 Rilhac-Rancon Rilhac-Rancon Rilhac,Rilhac-Rancon 45.9 1.31667 P PPL FR B1 87 872 87125 3751 328 Europe/Paris 2012-01-18
-2983580 Riez Riez Riez 43.81793 6.09295 P PPL FR B8 04 043 04166 1787 541 Europe/Paris 2012-01-18
-2983582 Rieux-Minervois Rieux-Minervois Rieux,Rieux-Minervois 43.28194 2.58687 P PPL FR A9 11 111 11315 2221 121 Europe/Paris 2012-01-18
-2983584 Rieux-en-Cambrésis Rieux-en-Cambresis Rieux,Rieux-en-Cambresis,Rieux-en-Cambrésis 50.20069 3.35232 P PPL FR B4 59 592 59502 1397 54 Europe/Paris 2012-01-18
-2983588 Rieux Rieux Rieux 49.3 2.51667 P PPL FR B6 60 602 60539 1677 33 Europe/Paris 2012-01-18
-2983590 Rieux Rieux Reoz,Rieux 47.59781 -2.10828 P PPL FR A2 56 563 56194 2736 24 Europe/Paris 2012-01-18
-2983591 Rieux-Volvestre Rieux-Volvestre 43.25 1.2 P PPL FR B3 31 311 31455 2130 218 Europe/Paris 2009-12-19
-2983603 Rieupeyroux Rieupeyroux Rieupeyroux 44.30799 2.23819 P PPL FR B3 12 123 12198 2025 711 Europe/Paris 2012-01-18
-2983606 Rieumes Rieumes Rieumes 43.41143 1.11702 P PPL FR B3 31 311 31454 2980 284 Europe/Paris 2012-01-18
-2983609 Rieulay Rieulay Rieulay 50.37856 3.25284 P PPL FR B4 59 593 59501 1458 17 Europe/Paris 2012-01-18
-2983629 Riedisheim Riedisheim Riedisheim 47.74757 7.36665 P PPL FR C1 68 684 68271 12724 252 Europe/Paris 2012-01-18
-2983631 Riec-sur-Belon Riec-sur-Belon Riec,Riec-sur-Belon,Riec-sur-Bélon,Rieg,Rieo-sur-Belon 47.83333 -3.7 P PPL FR A2 29 294 29236 4230 27 Europe/Paris 2007-11-16
-2983637 Richwiller Richwiller Richwiller 47.77948 7.28225 P PPL FR C1 68 684 68270 3362 245 Europe/Paris 2012-01-18
-2983648 Richemont Richemont Reichersberg,Richemont 49.2769 6.16268 P PPL FR B2 57 578 57582 1986 178 Europe/Paris 2012-01-18
-2983652 Richelieu Richelieu Richelieu 47.01389 0.32406 P PPL FR A3 37 371 37196 2263 56 Europe/Paris 2012-01-18
-2983656 Richebourg-l'Avoué Richebourg-l'Avoue Richebourg,Richebourg-l'Avoue,Richebourg-l'Avoué 50.56999 2.74884 P PPL FR B4 62 622 62706 2560 18 Europe/Paris 2012-02-27
-2983667 Richardménil Richardmenil Richardmenil,Richardménil 48.59851 6.16992 P PPL FR B2 54 543 54459 2958 260 Europe/Paris 2012-01-18
-2983696 Ribérac Riberac Riberac,Ribérac 45.25 0.33333 P PPL FR 97 24 243 24352 4333 92 Europe/Paris 2012-01-18
-2983699 Ribemont Ribemont Ribemont 49.7954 3.45893 P PPL FR B6 02 023 02648 2135 83 Europe/Paris 2012-01-18
-2983705 Ribeauvillé Ribeauville Rappoltsweiler,Ribeauville,Ribeauvillé,ribovu~ire,リボヴィレ 48.1951 7.31938 P PPLA3 FR C1 68 685 68269 4961 252 Europe/Paris 2011-11-02
-2983712 Ribaute-les-Tavernes Ribaute-les-Tavernes Ribaute,Ribaute-les-Tavernes 44.03724 4.08046 P PPL FR A9 30 301 30214 1359 125 Europe/Paris 2012-01-18
-2983730 Riantec Riantec Riantec,Rianteg 47.71093 -3.31629 P PPL FR A2 56 561 56193 4945 5 Europe/Paris 2012-01-18
-2983731 Rians Rians 47.17875 2.61359 P PPL FR A3 18 181 18194 1020 180 Europe/Paris 2009-02-19
-2983732 Rians Rians Rians 43.60659 5.75589 P PPL FR B8 83 833 83104 3929 392 Europe/Paris 2012-01-18
-2983735 Riaillé Riaille Riaille,Riaillé,Rialeg 47.51798 -1.29404 P PPL FR B5 44 444 44144 1916 44 Europe/Paris 2012-01-18
-2983736 Ria-Sirach Ria-Sirach Ria,Rià 42.61667 2.4 P PPL FR A9 66 663 66161 1246 459 Europe/Paris 2007-11-14
-2983761 Rhinau Rhinau Rhinau 48.31809 7.70613 P PPL FR C1 67 675 67397 2485 159 Europe/Paris 2012-01-18
-2983770 Rezé Reze Reudied,Reza,Reze,Rezé,Реза 47.18144 -1.54965 P PPL FR B5 44 442 44143 39248 28 Europe/Paris 2012-01-18
-2983779 Reyrieux Reyrieux Reyrieux 45.93306 4.82394 P PPL FR B9 01 012 01322 4017 209 Europe/Paris 2012-01-18
-2983786 Reiners Reiners Reiners,Reynes,Reynès 42.47702 2.7068 P PPL FR A9 66 661 66160 1271 263 Europe/Paris 2011-11-02
-2983798 Rexpoëde Rexpoede Rexpoede,Rexpoëde 50.93926 2.53914 P PPL FR B4 59 594 59499 1598 19 Europe/Paris 2012-01-18
-2983806 Revin Revin Revin 49.94039 4.63503 P PPL FR A4 08 081 08363 7960 146 Europe/Paris 2011-01-04
-2983810 Réville Reville Reville,Réville 49.61906 -1.25868 P PPL FR 99 50 502 50433 1194 10 Europe/Paris 2012-01-18
-2983812 Revigny-sur-Ornain Revigny-sur-Ornain Revigny,Revigny-sur-Ornain 48.83016 4.98558 P PPL FR B2 55 551 55427 3720 144 Europe/Paris 2012-01-18
-2983825 Reventin-Vaugris Reventin-Vaugris Reventin,Reventin-Vaugris 45.4638 4.83769 P PPL FR B9 38 383 38336 1731 243 Europe/Paris 2012-01-18
-2983831 Revel Revel Revel 45.18646 5.86852 P PPL FR B9 38 381 38334 1251 625 Europe/Paris 2012-01-18
-2983833 Revel Revel Revel 43.45812 2.00469 P PPL FR B3 31 313 31451 8710 219 Europe/Paris 2012-01-18
-2983856 Reuilly Reuilly Reuilly 47.08476 2.04305 P PPL FR A3 36 364 36171 1962 126 Europe/Paris 2012-01-18
-2983861 Reugny Reugny Reugny 47.48208 0.88468 P PPL FR A3 37 372 37194 1486 68 Europe/Paris 2012-01-18
-2983871 Rety Rety 50.8 1.76667 P PPL FR B4 62 623 62705 1957 40 Europe/Paris 2007-11-15
-2983879 Retournac Retournac Retournac 45.20629 4.03554 P PPL FR 98 43 433 43162 2588 538 Europe/Paris 2012-01-18
-2983882 Retonfey Retonfey Retonfey 49.13487 6.30749 P PPL FR B2 57 574 57575 1404 243 Europe/Paris 2012-01-18
-2983885 Retiers Retiers Rester,Retiers 47.91392 -1.37967 P PPL FR A2 35 351 35239 3536 73 Europe/Paris 2012-01-18
-2983891 Rethel Rethel Rethel 49.51667 4.36667 P PPLA3 FR A4 08 082 08362 8505 98 Europe/Paris 2011-11-02
-2983900 Restinclières Restinclieres Restincheres,Restinchères,Restinclieres,Restinclières 43.72252 4.03476 P PPL FR A9 34 343 34227 1555 93 Europe/Paris 2012-01-18
-2983902 Restigné Restigne Restigne,Restigné 47.28224 0.22788 P PPL FR A3 37 371 37193 1148 42 Europe/Paris 2012-01-18
-2983911 Ressons-sur-Matz Ressons-sur-Matz Ressons,Ressons-sur-Matz 49.53858 2.74416 P PPL FR B6 60 603 60533 1568 69 Europe/Paris 2012-01-18
-2983929 Réquista Requista Requista,Réquista 44.03325 2.53554 P PPL FR B3 12 122 12197 2107 563 Europe/Paris 2012-01-18
-2983932 Requeil Requeil Requeil 47.78371 0.16105 P PPL FR B5 72 721 72252 1067 78 Europe/Paris 2012-01-18
-2983942 Replonges Replonges Replonges 46.31111 4.87964 P PPL FR B9 01 012 01320 3128 185 Europe/Paris 2012-01-18
-2983957 Renwez Renwez Renwez 49.83839 4.60334 P PPL FR A4 08 081 08361 1428 278 Europe/Paris 2012-01-18
-2983990 Rennes Rennes Ren,Renes,Renn,Rennes,Roazhon,lei en,ren'nu,ryn,Рен,Ренн,رين,レンヌ,雷恩 48.11198 -1.67429 P PPLA FR A2 35 353 35238 209375 39 Europe/Paris 2012-01-18
-2984005 Renescure Renescure Renescure 50.72754 2.36801 P PPL FR B4 59 594 59497 2169 31 Europe/Paris 2012-01-18
-2984012 Renazé Renaze Renaze,Renazé 47.7934 -1.05437 P PPL FR B5 53 531 53188 2940 72 Europe/Paris 2012-01-18
-2984024 Renaison Renaison Renaison 46.05178 3.92568 P PPL FR B9 42 422 42182 2828 384 Europe/Paris 2012-01-18
-2984025 Renage Renage Renage 45.33529 5.48528 P PPL FR B9 38 381 38332 3593 324 Europe/Paris 2012-01-18
-2984031 Remy Remy 49.43333 2.71667 P PPL FR B6 60 603 60531 1964 68 Europe/Paris 2007-11-15
-2984037 Remoulins Remoulins Remoulins 43.93949 4.56798 P PPL FR A9 30 302 30212 2164 27 Europe/Paris 2012-01-18
-2984038 Remouillé Remouille Remouille,Remouillé,Ruvelieg 47.05587 -1.37682 P PPL FR B5 44 442 44142 1558 36 Europe/Paris 2012-01-18
-2984050 Remiremont Remiremont Libremont,Remiremont,Romarici Mons 48.01754 6.5882 P PPL FR B2 88 881 88383 9339 402 Europe/Paris 2012-01-18
-2984060 Rémilly Remilly Remilly,Rémilly 49.01218 6.39583 P PPL FR B2 57 574 57572 1963 230 Europe/Paris 2012-01-18
-2984076 Rémelfing Remelfing Remelfing,Rémelfing 49.08838 7.08853 P PPL FR B2 57 576 57568 1527 225 Europe/Paris 2012-01-18
-2984087 Rémalard Remalard Remal-la-Montagne,Remalard,Rémalard 48.42867 0.77185 P PPL FR 99 61 613 61345 1268 139 Europe/Paris 2012-01-18
-2984107 Reiningue Reiningue Reiningue 47.75054 7.2325 P PPL FR C1 68 684 68267 1705 263 Europe/Paris 2012-01-18
-2984114 Reims Reims Rejms,Rheims,Реймс 49.25 4.03333 P PPLA3 FR A4 51 513 51454 196565 84 Europe/Paris 2011-11-04
-2984118 Reillanne Reillanne Reillanne 43.88131 5.65736 P PPL FR B8 04 044 04160 1410 573 Europe/Paris 2012-01-18
-2984127 Reignier-Ésery Reignier-Esery 46.13333 6.26667 P PPL FR B9 74 743 74220 5892 484 Europe/Paris 2008-07-02
-2984132 Reignac-sur-Indre Reignac-sur-Indre Reignac,Reignac-sur-Indre,Val-Indre 47.22662 0.91587 P PPL FR A3 37 373 37192 1124 62 Europe/Paris 2012-01-18
-2984134 Reignac Reignac Reignac 45.23393 -0.50627 P PPL FR 97 33 331 33351 1349 63 Europe/Paris 2012-01-18
-2984135 Reichstett Reichstett Reichstett 48.64856 7.75455 P PPL FR C1 67 676 67389 5135 140 Europe/Paris 2011-02-14
-2984136 Reichshoffen Reichshoffen Reichshoffen 48.93287 7.66561 P PPL FR C1 67 672 67388 5539 175 Europe/Paris 2012-01-18
-2984140 Réhon Rehon Rehon,Réhon 49.50477 5.74755 P PPL FR B2 54 541 54451 3287 344 Europe/Paris 2012-01-18
-2984145 Régusse Regusse Regusse,Régusse 43.65724 6.12972 P PPL FR B8 83 833 83102 1227 539 Europe/Paris 2012-01-18
-2984146 Réguisheim Reguisheim 47.9 7.35 P PPL FR C1 68 683 68266 1770 208 Europe/Paris 2007-11-15
-2984147 Réguiny Reguiny Regini,Reguiny,Réguiny 47.97649 -2.74478 P PPL FR A2 56 562 56190 1698 114 Europe/Paris 2012-01-18
-2984153 Régny Regny 45.98333 4.21667 P PPL FR B9 42 422 42181 1642 396 Europe/Paris 2007-11-15
-2984192 Redon Redon Redon 47.65 -2.08333 P PPLA3 FR A2 35 352 35236 9472 13 Europe/Paris 2011-11-02
-2984193 Réding Reding Reding,Réding 48.75177 7.10747 P PPL FR B2 57 575 57566 2432 270 Europe/Paris 2011-02-14
-2984195 Redessan Redessan Redessan 43.83117 4.49771 P PPL FR A9 30 302 30211 3113 63 Europe/Paris 2012-01-18
-2984198 Rédené Redene Redene,Rédené 47.85 -3.46667 P PPL FR A2 29 294 29234 2456 45 Europe/Paris 2012-01-18
-2984210 Recquignies Recquignies 50.28396 4.03722 P PPL FR B4 59 591 59495 2560 127 Europe/Paris 2009-01-18
-2984266 Rebréchien Rebrechien Rebrechien,Rebréchien 47.98727 2.04432 P PPL FR A3 45 452 45261 1236 120 Europe/Paris 2012-01-18
-2984284 Rebais Rebais Rebais 48.84721 3.23232 P PPL FR A8 77 773 77385 2081 155 Europe/Paris 2012-01-18
-2984297 Réalville Realville Garde-Mont,Realville,Réalville 44.11452 1.47998 P PPL FR B3 82 822 82149 1664 108 Europe/Paris 2012-01-18
-2984299 Réalmont Realmont Montdadou,Realmont,Réalmont 43.77754 2.18885 P PPL FR B3 81 811 81222 3129 216 Europe/Paris 2011-01-13
-2984314 Razès Razes Razes,Razès 46.03219 1.33676 P PPL FR B1 87 871 87122 1034 454 Europe/Paris 2012-01-18
-2984339 Ravières Ravieres Ravieres,Ravières 47.73476 4.22777 P PPL FR A1 89 892 89321 1011 191 Europe/Paris 2012-01-18
-2984345 Ravenel Ravenel Ravenel 49.51523 2.50192 P PPL FR B6 60 602 60526 1064 112 Europe/Paris 2012-01-18
-2984351 Rauzan Rauzan Rauzan 44.77838 -0.12465 P PPL FR 97 33 335 33350 1131 70 Europe/Paris 2012-01-18
-2984412 Raon-aux-Bois Raon-aux-Bois Raon,Raon-aux-Bois 48.05686 6.52098 P PPL FR B2 88 881 88371 1033 405 Europe/Paris 2012-01-18
-2984417 Ranville Ranville Ranville 49.23071 -0.2556 P PPL FR 99 14 142 14530 1982 12 Europe/Paris 2012-01-18
-2984420 Rantigny Rantigny Rantigny 49.32758 2.44244 P PPL FR B6 60 602 60524 2632 52 Europe/Paris 2012-01-18
-2984432 Rannée Rannee Radenez,Rannee,Rannée 47.92383 -1.24124 P PPL FR A2 35 351 35235 1221 75 Europe/Paris 2012-01-18
-2984438 Rang-du-Fliers Rang-du-Fliers Rang-du-Fliers 50.41708 1.64431 P PPL FR B4 62 624 62688 3860 10 Europe/Paris 2012-01-18
-2984449 Randan Randan Randan 46.01595 3.35522 P PPL FR 98 63 634 63295 1479 408 Europe/Paris 2012-01-18
-2984468 Ranchicourt Ranchicourt Ranchicourt 50.43333 2.55 P PPL FR B4 62 622 62693 1091 83 Europe/Paris 2012-02-27
-2984493 Ramonville-Saint-Agne Ramonville-Saint-Agne Ramonville 43.54618 1.47491 P PPL FR B3 31 313 31446 12573 163 Europe/Paris 2011-11-02
-2984495 Ramonchamp Ramonchamp Ramonchamp 47.8943 6.74171 P PPL FR B2 88 881 88369 2008 474 Europe/Paris 2012-01-18
-2984513 Rambouillet Rambouillet Rambouillet,Rambouillet-forhandlingerne,Rambuje,ranbuie,Рамбуйе,ランブイエ 48.65 1.83333 P PPLA3 FR A8 78 782 78517 26674 158 Europe/Paris 2011-11-02
-2984516 Rambervillers Rambervillers Ramberti Villare,Rambervillers 48.3424 6.6358 P PPL FR B2 88 881 88367 6182 284 Europe/Paris 2012-01-18
-2984521 Ramatuelle Ramatuelle Ramatuelle 43.21696 6.61137 P PPL FR B8 83 831 83101 2330 135 Europe/Paris 2012-01-18
-2984532 Rai Rai Rai-sur-Rile,Rai-sur-Rîle 48.75 0.58333 P PPL FR 99 61 613 61342 1790 210 Europe/Paris 2007-11-14
-2984537 Raismes Raismes Raismes 50.38333 3.48333 P PPL FR B4 59 596 59491 13719 33 Europe/Paris 2012-01-18
-2984548 Raimbeaucourt Raimbeaucourt Raimbeaucourt 50.43466 3.09333 P PPL FR B4 59 593 59489 4450 24 Europe/Paris 2012-01-18
-2984552 Raillencourt-Sainte-Olle Raillencourt-Sainte-Olle 50.18333 3.16667 P PPL FR B4 59 592 59488 2417 70 Europe/Paris 2007-11-14
-2984578 Raedersheim Raedersheim 47.88895 7.28222 P PPL FR C1 68 683 68260 1121 226 Europe/Paris 2007-07-07
-2984582 Radon Radon Radon 48.50246 0.10278 P PPL FR 99 61 611 61341 1035 177 Europe/Paris 2012-01-18
-2984583 Radinghem-en-Weppes Radinghem-en-Weppes Radinghem,Radinghem-en-Weppes 50.61884 2.90924 P PPL FR B4 59 595 59487 1108 30 Europe/Paris 2012-01-18
-2984594 Racquinghem Racquinghem Racquinghem 50.69245 2.35736 P PPL FR B4 62 625 62684 2140 42 Europe/Paris 2012-01-18
-2984600 Râches Raches Raches,Râches 50.41706 3.13635 P PPL FR B4 59 593 59486 2877 23 Europe/Paris 2012-01-18
-2984626 Rabastens-de-Bigorre Rabastens-de-Bigorre Rabastens,Rabastens-de-Bigorre 43.38769 0.15122 P PPL FR B3 65 653 65375 1391 222 Europe/Paris 2012-01-18
-2984627 Rabastens Rabastens Rabastens 43.82512 1.72382 P PPL FR B3 81 811 81220 4714 129 Europe/Paris 2011-01-13
-2984640 Quistinic Quistinic Kistinid,Quistinic 47.9041 -3.134 P PPL FR A2 56 561 56188 1337 134 Europe/Paris 2012-01-18
-2984643 Quissac Quissac Ouissac,Quissac 43.91341 3.9992 P PPL FR A9 30 303 30210 2477 86 Europe/Paris 2012-01-18
-2984649 Quintin Quintin Kintin,Quintin 48.40342 -2.9105 P PPL FR A2 22 224 22262 2994 179 Europe/Paris 2012-01-18
-2984653 Quintenas Quintenas Quintenas 45.18966 4.68732 P PPL FR B9 07 073 07188 1339 397 Europe/Paris 2012-01-18
-2984657 Quinssaines Quinssaines Quins-Sames,Quinssaimes,Quinssaines 46.33333 2.51667 P PPL FR 98 03 031 03212 1038 356 Europe/Paris 2012-01-18
-2984664 Quinsac Quinsac Quinsac 44.75535 -0.48697 P PPL FR 97 33 332 33349 1907 53 Europe/Paris 2012-01-18
-2984675 Quingey Quingey Quingey 47.1025 5.88312 P PPL FR A6 25 251 25475 1088 265 Europe/Paris 2012-01-18
-2984677 Quincy-Voisins Quincy-Voisins Quincy,Quincy-Segy,Quincy-Ségy,Quincy-Voisins 48.90114 2.87559 P PPL FR A8 77 771 77382 5018 130 Europe/Paris 2012-01-18
-2984678 Quincy-sous-Sénart Quincy-sous-Senart Quincy,Quincy-sous-Senart,Quincy-sous-Sénart 48.67294 2.53419 P PPL FR A8 91 912 91514 7808 85 Europe/Paris 2012-01-18
-2984686 Quincieux Quincieux Quincieux 45.91036 4.77824 P PPL FR B9 69 691 69163 2828 177 Europe/Paris 2012-01-18
-2984689 Quincié-en-Beaujolais Quincie-en-Beaujolais Quincie,Quincie-en-Beaujolais,Quincié,Quincié-en-Beaujolais 46.12178 4.62342 P PPL FR B9 69 692 69162 1202 284 Europe/Paris 2012-01-18
-2984691 Quincey Quincey Quincey 47.61165 6.18556 P PPL FR A6 70 702 70433 1085 258 Europe/Paris 2012-01-18
-2984697 Quincampoix Quincampoix Quincampoix 49.5271 1.18848 P PPL FR A7 76 763 76517 2777 167 Europe/Paris 2012-01-18
-2984699 Quimperlé Quimperle Kemperle,Quimperle,Quimperlé 47.86667 -3.55 P PPL FR A2 29 294 29233 12312 19 Europe/Paris 2012-01-18
-2984701 Quimper Quimper Kemper,Montagne-sur-Odet,Quimper,kanperu,Кемпер,カンペール 48 -4.1 P PPLA2 FR A2 29 294 29232 63849 36 Europe/Paris 2011-11-02
-2984708 Quilly Quilly Killig,Quilly 47.46131 -1.95274 P PPL FR B5 44 443 44139 1001 20 Europe/Paris 2012-01-18
-2984718 Quillebeuf-sur-Seine Quillebeuf-sur-Seine Quillebeuf,Quillebeuf-sur-Seine 49.46934 0.52793 P PPL FR A7 27 272 27485 1059 23 Europe/Paris 2012-01-18
-2984719 Quillan Quillan Quillan 42.87579 2.18176 P PPL FR A9 11 112 11304 3893 291 Europe/Paris 2012-01-18
-2984726 Quiévy Quievy Quievy,Quiévy 50.16804 3.42834 P PPL FR B4 59 592 59485 1757 83 Europe/Paris 2012-01-18
-2984728 Quiévrechain Quievrechain 50.39172 3.66815 P PPL FR B4 59 596 59484 6201 36 Europe/Paris 2009-01-18
-2984733 Quiers-sur-Bézonde Quiers-sur-Bezonde Quiers,Quiers-sur-Bezonde,Quiers-sur-Bézonde 47.99615 2.44141 P PPL FR A3 45 451 45259 1039 112 Europe/Paris 2012-01-18
-2984741 Quiberon Quiberon Kiberen,Quiberon 47.48412 -3.11962 P PPL FR A2 56 561 56186 5430 17 Europe/Paris 2012-01-18
-2984759 Quévert Quevert Kever,Quevert,Quévert 48.46402 -2.08745 P PPL FR A2 22 221 22259 3325 93 Europe/Paris 2012-01-18
-2984760 Quéven Queven Kewenn,Queven,Quéven 47.78333 -3.41667 P PPL FR A2 56 561 56185 9316 51 Europe/Paris 2012-01-18
-2984761 Quevauvillers Quevauvillers Quevauvillers 49.82376 2.08431 P PPL FR B6 80 802 80656 1036 135 Europe/Paris 2012-01-18
-2984771 Quettreville-sur-Sienne Quettreville-sur-Sienne Quettreville,Quettreville-sur-Sienne 48.96802 -1.46782 P PPL FR 99 50 503 50419 1261 32 Europe/Paris 2012-01-18
-2984774 Quettehou Quettehou Quettehou 49.59308 -1.30352 P PPL FR 99 50 502 50417 1508 14 Europe/Paris 2012-01-18
-2984775 Quetigny Quetigny 47.31667 5.11667 P PPL FR A1 21 212 21515 10372 222 Europe/Paris 2011-11-02
-2984781 Questembert Questembert Kistreberzh,Questembert 47.66296 -2.4522 P PPL FR A2 56 563 56184 6392 101 Europe/Paris 2012-01-18
-2984783 Quessoy Quessoy Kesoue,Quessoy 48.42208 -2.66089 P PPL FR A2 22 224 22258 3600 93 Europe/Paris 2012-01-18
-2984787 Quesnoy-sur-Deûle Quesnoy-sur-Deule Le Quesnoy-sur-Deule,Le Quesnoy-sur-Deûle,Quesnoy-sur-Deule,Quesnoy-sur-Deûle 50.71359 2.99996 P PPL FR B4 59 595 59482 6496 21 Europe/Paris 2012-01-18
-2984794 Querrien Querrien Kerien,Querrien 47.96667 -3.53333 P PPL FR A2 29 294 29230 1689 158 Europe/Paris 2012-01-18
-2984799 Querqueville Querqueville Querqueville 49.66251 -1.69119 P PPL FR 99 50 502 50416 5670 5 Europe/Paris 2012-01-18
-2984828 Quend Quend Quend,Quend-le-Jeune 50.31584 1.63609 P PPL FR B6 80 801 80649 1235 8 Europe/Paris 2012-01-18
-2984830 Quemper-Guézennec Quemper-Guezennec Kemper-Gwezhenneg,Quemper-Guezennac,Quemper-Guezennec,Quemper-Guézennac,Quemper-Guézennec 48.70378 -3.10522 P PPL FR A2 22 222 22256 1074 65 Europe/Paris 2012-01-18
-2984835 Quéménéven Quemeneven Kemeneven,Quemeneven,Quéménéven 48.11667 -4.11667 P PPL FR A2 29 292 29229 1157 87 Europe/Paris 2012-01-18
-2984846 Quelaines-Saint-Gault Quelaines-Saint-Gault 47.93333 -0.8 P PPL FR B5 53 531 53186 1813 81 Europe/Paris 2007-11-14
-2984852 Quédillac Quedillac Kedilieg,Quedillac,Quédillac 48.24904 -2.1424 P PPL FR A2 35 353 35234 1074 83 Europe/Paris 2012-01-18
-2984853 Québriac Quebriac Kevrieg,Quebriac,Québriac 48.34444 -1.82723 P PPL FR A2 35 353 35233 1141 49 Europe/Paris 2012-01-18
-2984874 Quarouble Quarouble Quarouble 50.38634 3.62306 P PPL FR B4 59 596 59479 3369 31 Europe/Paris 2012-01-18
-2984879 Quarante Quarante Quarante 43.34711 2.96228 P PPL FR A9 34 341 34226 1490 112 Europe/Paris 2012-01-18
-2984883 Quaëdypre Quaedypre Quaedypre,Quaëdypre 50.93527 2.45445 P PPL FR B4 59 594 59478 1124 30 Europe/Paris 2012-01-18
-2984926 Puyoô Puyoo Puyoo,Puyoô 43.52502 -0.91283 P PPL FR 97 64 643 64461 1111 40 Europe/Paris 2012-01-18
-2984929 Puymoyen Puymoyen Puymoyen 45.61667 0.18333 P PPL FR B7 16 161 16271 2582 145 Europe/Paris 2012-01-18
-2984944 Puyloubier Puyloubier Puyloubier 43.52522 5.6765 P PPL FR B8 13 131 13079 1661 350 Europe/Paris 2011-01-18
-2984952 Puylaurens Puylaurens Puylaurens 43.57202 2.01227 P PPL FR B3 81 812 81219 2888 344 Europe/Paris 2012-01-18
-2984965 Puy-Guillaume Puy-Guillaume Puy-Guillaume 45.95985 3.47143 P PPL FR 98 63 635 63291 2754 280 Europe/Paris 2012-01-18
-2984969 Puygouzon Puygouzon Puygouzon-et-Montsalvy 43.9 2.16667 P PPL FR B3 81 811 81218 2910 284 Europe/Paris 2007-11-14
-2985034 Puteaux Puteaux Puteaux,Puteux 48.88341 2.23894 P PPL FR A8 92 922 92062 40646 33 Europe/Paris 2011-12-08
-2985041 Pussay Pussay Pussay 48.34908 1.99182 P PPL FR A8 91 911 91511 1733 147 Europe/Paris 2012-01-18
-2985045 Pusignan Pusignan Pusignan 45.75814 5.06724 P PPL FR B9 69 691 69285 3259 208 Europe/Paris 2012-01-18
-2985046 Pusey Pusey Pusey 47.65243 6.12615 P PPL FR A6 70 702 70428 1148 220 Europe/Paris 2012-01-18
-2985061 Pulversheim Pulversheim 47.83753 7.30119 P PPL FR C1 68 683 68258 2372 231 Europe/Paris 2007-07-07
-2985064 Pulnoy Pulnoy Pulnoy 48.70292 6.25792 P PPL FR B2 54 543 54439 4842 222 Europe/Paris 2012-01-18
-2985067 Pulligny Pulligny Pulligny 48.54222 6.14219 P PPL FR B2 54 543 54437 1205 238 Europe/Paris 2012-01-18
-2985073 Pujols Pujols 44.39424 0.6881 P PPL FR 97 47 473 47215 3966 68 Europe/Paris 2008-01-25
-2985076 Pujaut Pujaut Pujaut 44.00404 4.77575 P PPL FR A9 30 302 30209 3828 67 Europe/Paris 2012-01-18
-2985077 Pujaudran Pujaudran Pujaudran 43.58954 1.14977 P PPL FR B3 32 321 32334 1218 286 Europe/Paris 2012-01-18
-2985096 Puisserguier Puisserguier Puisserguier 43.36767 3.04047 P PPL FR A9 34 341 34225 2666 86 Europe/Paris 2012-01-18
-2985099 Puissalicon Puissalicon Puissalicon 43.45828 3.2369 P PPL FR A9 34 341 34224 1033 127 Europe/Paris 2012-01-18
-2985107 Puiseux-en-France Puiseux-en-France Puiseux,Puiseux-en-France,Puiseux-les-Louvres 49.05552 2.50035 P PPL FR A8 95 952 95509 3096 113 Europe/Paris 2012-01-18
-2985118 Puiseaux Puiseaux 48.09234 2.05968 P PPL FR A3 45 452 45224 3242 128 Europe/Paris 2012-02-27
-2985128 Puilboreau Puilboreau Puilboreau 46.1862 -1.11798 P PPL FR B7 17 173 17291 4887 24 Europe/Paris 2012-01-18
-2985133 Puicheric Puicheric Puicheric,Puicheric-d'Aude,Puicherie-d'Aude 43.2238 2.62455 P PPL FR A9 11 111 11301 1104 64 Europe/Paris 2012-01-18
-2985137 Pugnac Pugnac Pugnac 45.0819 -0.49618 P PPL FR 97 33 331 33341 2056 46 Europe/Paris 2012-01-18
-2985141 Puget-Ville Puget-Ville Puget,Puget-Ville 43.28944 6.13612 P PPL FR B8 83 832 83100 3330 195 Europe/Paris 2012-01-18
-2985142 Puget-Théniers Puget-Theniers Puget-Theniers,Puget-Théniers 43.95464 6.89115 P PPL FR B8 06 062 06099 1854 405 Europe/Paris 2012-01-18
-2985143 Puget-sur-Argens Puget-sur-Argens Le Puget,Le Puget-sur-Argens,Puget 43.45 6.68333 P PPL FR B8 83 831 83099 6943 9 Europe/Paris 2011-12-08
-2985163 Publier Publier 46.38773 6.54356 P PPL FR B9 74 744 74218 5525 502 Europe/Paris 2008-10-15
-2985177 Pruniers-en-Sologne Pruniers-en-Sologne 47.31667 1.66667 P PPL FR A3 41 413 41185 2277 80 Europe/Paris 2007-11-14
-2985196 Prunelli-di-Fiumorbo Prunelli-di-Fiumorbo Prunelli,Prunelli-di-Fiumerbo,Prunelli-di-Fiumorbo 42.01047 9.32473 P PPL FR A5 2B 2B3 2B251 2988 568 Europe/Paris 2011-09-02
-2985213 Pruillé-le-Chétif Pruille-le-Chetif Pruille,Pruillé 47.99383 0.10677 P PPL FR B5 72 723 72247 1282 99 Europe/Paris 2009-02-10
-2985229 Provins Provins Provins,purovu~an,プロヴァン 48.55 3.3 P PPLA3 FR A8 77 773 77379 12685 119 Europe/Paris 2011-11-02
-2985230 Provin Provin 50.5143 2.90794 P PPL FR B4 59 595 59477 3745 24 Europe/Paris 2009-10-21
-2985231 Proville Proville Proville 50.16137 3.20629 P PPL FR B4 59 592 59476 3607 52 Europe/Paris 2012-01-18
-2985251 Prouvy Prouvy Prouvy 50.31793 3.45096 P PPL FR B4 59 596 59475 2481 37 Europe/Paris 2012-01-18
-2985266 Propriano Propriano Propriano,Prupia,Prupià 41.67525 8.90302 P PPL FR A5 2A 2A4 2A249 3312 8 Europe/Paris 2012-01-18
-2985282 Priziac Priziac Priziac,Prizieg 48.06667 -3.41667 P PPL FR A2 56 562 56182 1310 161 Europe/Paris 2012-01-18
-2985283 Prix-lès-Mézières Prix-les-Mezieres Prix,Prix-les-Mezieres,Prix-lès-Mézières 49.75549 4.69113 P PPL FR A4 08 081 08346 1438 144 Europe/Paris 2012-01-18
-2985290 Privas Privas Privas,Privàs,purivu~a,プリヴァ 44.73333 4.6 P PPLA2 FR B9 07 072 07186 9545 278 Europe/Paris 2011-11-02
-2985292 Prissé Prisse Prisse,Prissé 46.3213 4.74469 P PPL FR A1 71 715 71360 1726 207 Europe/Paris 2012-01-18
-2985302 Prinquiau Prinquiau Prevenkel,Prinquiau 47.36215 -2.00952 P PPL FR B5 44 443 44137 2243 6 Europe/Paris 2012-01-18
-2985304 Pringy Pringy Pringy 48.51815 2.56333 P PPL FR A8 77 772 77378 2569 74 Europe/Paris 2012-01-18
-2985305 Pringy Pringy Pringy 45.94622 6.12608 P PPL FR B9 74 741 74217 2944 508 Europe/Paris 2012-01-18
-2985318 Prigonrieux Prigonrieux Prigonrieux 44.85451 0.40275 P PPL FR 97 24 241 24340 4218 27 Europe/Paris 2012-01-18
-2985330 Priay Priay Priay 46.00188 5.28775 P PPL FR B9 01 012 01314 1263 233 Europe/Paris 2012-01-18
-2985361 Preuilly-sur-Claise Preuilly-sur-Claise Preuilly,Preuilly-sur-Claise 46.85424 0.92954 P PPL FR A3 37 373 37189 1122 87 Europe/Paris 2012-01-18
-2985375 Précieux Precieux Precieux 45.58333 4.15 P PPL FR B9 42 421 42180 1013 366 Europe/Paris 2007-11-20
-2985402 Presles-en-Brie Presles-en-Brie Presles,Presles-en-Brie 48.71527 2.74112 P PPL FR A8 77 772 77377 1899 96 Europe/Paris 2012-01-18
-2985416 Préseau Preseau Preseau,Préseau 50.31122 3.57434 P PPL FR B4 59 596 59471 1884 76 Europe/Paris 2012-01-18
-2985455 Prémilhat Premilhat Premilhat,Prémilhat 46.31667 2.53333 P PPL FR 98 03 031 03211 2125 320 Europe/Paris 2012-01-18
-2985461 Prémesques Premesques Premesques,Prémesques 50.65572 2.95162 P PPL FR B4 59 595 59470 1958 33 Europe/Paris 2012-01-18
-2985462 Prémery Premery Premery,Prémery 47.16952 3.32743 P PPL FR A1 58 584 58218 2206 233 Europe/Paris 2012-01-18
-2985474 Preignan Preignan Preignan 43.71177 0.62608 P PPL FR B3 32 321 32331 1002 136 Europe/Paris 2012-01-18
-2985475 Preignac Preignac Preignac 44.58438 -0.29422 P PPL FR 97 33 333 33337 2198 16 Europe/Paris 2012-01-18
-2985490 Préfailles Prefailles Pradvael,Prefaille,Prefailles,Préfaille,Préfailles 47.12839 -2.21693 P PPL FR B5 44 443 44136 1185 23 Europe/Paris 2012-01-18
-2985491 Pré-en-Pail Pre-en-Pail 48.45993 -0.19814 P PPL FR B5 53 533 53185 2129 229 Europe/Paris 2007-02-11
-2985498 Précy-sur-Oise Precy-sur-Oise Precy,Precy-sur-Oise,Précy,Précy-sur-Oise 49.20779 2.37266 P PPL FR B6 60 604 60513 3261 36 Europe/Paris 2012-01-18
-2985512 Précigné Precigne Precigne,Précigné 47.76692 -0.32491 P PPL FR B5 72 721 72244 2768 36 Europe/Paris 2012-01-18
-2985522 Préchac Prechac Prechac,Préchac 44.39883 -0.35387 P PPL FR 97 33 333 33336 1103 55 Europe/Paris 2012-01-18
-2985533 Préaux Preaux Preaux,Préaux 49.49136 1.21583 P PPL FR A7 76 763 76509 1673 164 Europe/Paris 2012-01-18
-2985543 Praz-sur-Arly Praz-sur-Arly Praz,Praz-sur-Arly,le Praz 45.83661 6.5732 P PPL FR B9 74 742 74215 1197 1012 Europe/Paris 2012-01-18
-2985547 Prayssac Prayssac Prayssac 44.5044 1.18862 P PPL FR B3 46 461 46225 2557 110 Europe/Paris 2012-01-18
-2985564 Prats de Molló Prats de Mollo Prats de Mollo,Prats de Molló,Prats-de-Mollo 42.40404 2.47928 P PPL FR A9 66 661 66150 1191 752 Europe/Paris 2011-11-02
-2985579 Prat Prat Prad,Prat 48.67677 -3.29707 P PPL FR A2 22 223 22254 1049 80 Europe/Paris 2012-01-18
-2985618 Prahecq Prahecq Prahecq 46.25897 -0.34426 P PPL FR B7 79 792 79216 1714 43 Europe/Paris 2012-01-18
-2985632 Pradines Pradines Pradines 44.48341 1.40105 P PPL FR B3 46 461 46224 3167 138 Europe/Paris 2012-01-18
-2985641 Prades-le-Lez Prades-le-Lez Prades,Prades-le-Lez 43.69754 3.86463 P PPL FR A9 34 343 34217 4883 69 Europe/Paris 2012-01-18
-2985653 Prades Prades Prada,Prada de Conflent,Prades 42.61667 2.43333 P PPLA3 FR A9 66 663 66149 6836 360 Europe/Paris 2011-11-02
-2985708 Pouzauges Pouzauges Pouzauges,Pouzauges-la-Montagne,Pouzauges-la-Vallee,Pouzauges-la-Vallée,Pouzauiges 46.77941 -0.83619 P PPL FR B5 85 851 85182 5912 170 Europe/Paris 2012-01-18
-2985710 Pouzac Pouzac Pouzac 43.08606 0.13522 P PPL FR B3 65 652 65370 1124 507 Europe/Paris 2012-01-18
-2985724 Pouxeux Pouxeux Pouxeux 48.1062 6.573 P PPL FR B2 88 881 88358 1882 370 Europe/Paris 2012-01-18
-2985738 Poussan Poussan Poussan 43.48944 3.67083 P PPL FR A9 34 343 34213 4572 51 Europe/Paris 2010-12-24
-2985742 Pouru-Saint-Remy Pouru-Saint-Remy Pouru-sur-Chiers 49.68333 5.08333 P PPL FR A4 08 083 08343 1153 177 Europe/Paris 2007-11-15
-2985751 Pourrières Pourrieres 43.50611 5.73452 P PPL FR B8 83 833 83097 4292 304 Europe/Paris 2011-01-18
-2985754 Pourrain Pourrain Pourrain 47.75616 3.41193 P PPL FR A1 89 891 89311 1363 261 Europe/Paris 2012-01-18
-2985778 Poulx Poulx Poulx 43.90798 4.41629 P PPL FR A9 30 302 30206 3950 174 Europe/Paris 2012-01-18
-2985787 Poullaouen Poullaouen Poullaouen 48.33333 -3.65 P PPL FR A2 29 292 29227 1364 154 Europe/Paris 2012-01-18
-2985788 Poullan-sur-Mer Poullan-sur-Mer Poullan,Poullan-sur-Mer,Poullann 48.08333 -4.41667 P PPL FR A2 29 294 29226 1769 76 Europe/Paris 2012-01-18
-2985789 Pouligny-Saint-Pierre Pouligny-Saint-Pierre Pouligny,Pouligny-Saint-Pierre 46.68095 1.03877 P PPL FR A3 36 361 36165 1010 117 Europe/Paris 2012-01-18
-2985807 Pouldreuzic Pouldreuzic Pouldreuzic,Pouldreuzig 47.95 -4.36667 P PPL FR A2 29 294 29225 1902 41 Europe/Paris 2012-01-18
-2985810 Pouldergat Pouldergat Pouldergat,Pouldregad 48.05 -4.33333 P PPL FR A2 29 294 29224 1347 54 Europe/Paris 2012-01-18
-2985821 Poulainville Poulainville Poulainville 49.94746 2.31373 P PPL FR B6 80 802 80639 1373 68 Europe/Paris 2012-01-18
-2985832 Pouilly-sur-Loire Pouilly-sur-Loire Pouilly,Pouilly-sur-Loire 47.28377 2.95442 P PPL FR A1 58 584 58215 1753 166 Europe/Paris 2007-02-16
-2985833 Pouilly-sous-Charlieu Pouilly-sous-Charlieu Pouilly,Pouilly-sous-Charlieu 46.14566 4.1089 P PPL FR B9 42 422 42177 2782 263 Europe/Paris 2012-01-18
-2985834 Pouilly-les-Nonains Pouilly-les-Nonains Pouilly,Pouilly-les-Nonains 46.0382 3.98198 P PPL FR B9 42 422 42176 1656 330 Europe/Paris 2012-01-18
-2985835 Pouilly-lès-Feurs Pouilly-les-Feurs Pouilly 45.8 4.23333 P PPL FR B9 42 421 42175 1015 376 Europe/Paris 2007-11-15
-2985840 Pouilly-en-Auxois Pouilly-en-Auxois Pouilly,Pouilly-en-Auxois 47.26238 4.55583 P PPL FR A1 21 211 21501 1429 391 Europe/Paris 2012-01-18
-2985849 Pouillon Pouillon Pouillon 43.6048 -0.99947 P PPL FR 97 40 401 40233 2944 48 Europe/Paris 2012-01-18
-2985850 Pouilley-les-Vignes Pouilley-les-Vignes Pouilley,Pouilley-les-Vignes 47.2577 5.93581 P PPL FR A6 25 251 25467 1869 235 Europe/Paris 2012-01-18
-2985865 Pougues-les-Eaux Pougues-les-Eaux Pougues,Pougues-les-Eaux 47.07518 3.1015 P PPL FR A1 58 583 58214 2500 201 Europe/Paris 2012-01-18
-2985893 Pouancé Pouance Pouance,Pouancé 47.74167 -1.17366 P PPL FR B5 49 494 49248 3559 85 Europe/Paris 2012-01-18
-2985901 Potigny Potigny Potigny 48.96925 -0.24166 P PPL FR 99 14 142 14516 1740 160 Europe/Paris 2012-01-18
-2985916 Poses Poses Poses 49.30539 1.24353 P PPL FR A7 27 271 27474 1163 10 Europe/Paris 2012-01-18
-2985925 Portvendres Portvendres Port-Vendres,Port-de-la-Victoire,Portvendres 42.51792 3.10553 P PPL FR A9 66 661 66148 4479 7 Europe/Paris 2011-11-02
-2985929 Port-sur-Saône Port-sur-Saone Port-sur-Saone,Port-sur-Saône 47.68774 6.05011 P PPL FR A6 70 702 70421 2839 231 Europe/Paris 2012-01-18
-2985932 Port-Saint-Père Port-Saint-Pere Port-Boulay,Port-Saint-Pere,Port-Saint-Père,Porzh-Per,Porzh-Pêr 47.13294 -1.7485 P PPL FR B5 44 442 44133 2306 16 Europe/Paris 2012-01-18
-2985934 Port-Saint-Louis-du-Rhône Port-Saint-Louis-du-Rhone Port-Saint-Louis,Port-Saint-Louis-du-Rhone,Port-Saint-Louis-du-Rhône,Saint Louis,Saint-Louis-du-Rhone,Saint-Louis-du-Rhône 43.38734 4.82609 P PPL FR B8 13 132 13078 8503 2 Europe/Paris 2011-11-02
-2985936 Port-Sainte-Marie Port-Sainte-Marie Port-Sainte-Marie,Port-de-la-Montagne-sur-Garonne 44.25158 0.39134 P PPL FR 97 47 471 47210 1928 55 Europe/Paris 2012-01-18
-2985937 Port-Sainte-Foy-et-Ponchapt Port-Sainte-Foy-et-Ponchapt Port-Sainte Foy,Port-Sainte-Foy-et-Ponchapt 44.83333 0.2 P PPL FR 97 24 241 24335 2589 15 Europe/Paris 2012-01-18
-2985947 Porto-Vecchio Porto-Vecchio Porti Vecchju,Porto Vecchio,Porto-Vecchio 41.59101 9.27947 P PPL FR A5 2A 2A4 2A247 11820 16 57 Europe/Paris 2011-11-02
-2985963 Port-Louis Port-Louis Port-Liberte,Port-Liberté,Port-Louis,Port-de-l'Egalite,Port-de-l'Egalité,Porzh-Loeiz 47.70704 -3.35484 P PPL FR A2 56 561 56181 3020 13 Europe/Paris 2012-01-18
-2985968 Port-la-Nouvelle Port-la-Nouvelle La Nouvelle,Port-la-Nouvelle 43.01991 3.04366 P PPL FR A9 11 113 11266 5189 5 Europe/Paris 2012-01-18
-2985972 Portiragnes Portiragnes Portiragnes 43.3046 3.33365 P PPL FR A9 34 341 34209 2571 13 Europe/Paris 2012-01-18
-2985975 Portieux Portieux Portieux 48.34466 6.34465 P PPL FR B2 88 881 88355 1300 296 Europe/Paris 2012-01-18
-2985982 Portet-sur-Garonne Portet-sur-Garonne Portet,Portet sobre Garona,Portet-sur-Garonne 43.52333 1.40652 P PPL FR B3 31 311 31433 9794 153 Europe/Paris 2012-01-18
-2985983 Portets Portets Portets 44.69679 -0.42452 P PPL FR 97 33 333 33334 2162 14 Europe/Paris 2012-01-18
-2985987 Portes-lès-Valence Portes-les-Valence Portes,Portes-les-Valence,Portes-lès-Valence 44.8737 4.881 P PPL FR B9 26 263 26252 8675 115 Europe/Paris 2012-01-18
-2985999 Port-en-Bessin-Huppain Port-en-Bessin-Huppain Port,Port-en-Bessin,Port-en-Bessin-Huppain 49.3446 -0.75557 P PPL FR 99 14 141 14515 1984 15 Europe/Paris 2012-01-18
-2986001 Portel-des-Corbières Portel-des-Corbieres 43.05 2.91667 P PPL FR A9 11 113 11295 1119 48 Europe/Paris 2007-11-14
-2986025 Port-de-Bouc Port-de-Bouc Port-de-Boue 43.40657 4.9809 P PPL FR B8 13 134 13077 15934 5 19 Europe/Paris 2011-11-02
-2986032 Port-Brillet Port-Brillet Port-Brillet 48.11314 -0.9708 P PPL FR B5 53 532 53182 1940 137 Europe/Paris 2012-01-18
-2986038 Portbail Portbail Portbail 49.33571 -1.6956 P PPL FR 99 50 502 50412 1726 13 Europe/Paris 2012-01-18
-2986046 Porspoder Porspoder Porspoder 48.5 -4.76667 P PPL FR A2 29 291 29221 1651 30 Europe/Paris 2012-01-18
-2986059 Pornichet Pornichet Pornichet,Pornizhan 47.26682 -2.33794 P PPL FR B5 44 443 44132 10584 7 Europe/Paris 2007-08-10
-2986060 Pornic Pornic Pornic,Pornizh,Roche-Peltier 47.11205 -2.08888 P PPL FR B5 44 443 44131 12897 23 Europe/Paris 2012-01-18
-2986066 Pordic Pordic Pordic,Porzhig 48.57051 -2.81783 P PPL FR A2 22 224 22251 5441 103 Europe/Paris 2012-01-18
-2986070 Porcieu-Amblagnieu Porcieu-Amblagnieu Amblagnieu,Porcieu-Amblagnieu,Porcieux 45.83443 5.40218 P PPL FR B9 38 382 38320 1420 264 Europe/Paris 2012-01-18
-2986071 Porcheville Porcheville Porcheville 48.97254 1.77973 P PPL FR A8 78 781 78501 2630 27 Europe/Paris 2012-01-18
-2986077 Porcelette Porcelette Porcelette 49.15538 6.6581 P PPL FR B2 57 573 57550 2550 259 Europe/Paris 2012-01-18
-2986087 Pontvallain Pontvallain Pontvallain 47.75168 0.19145 P PPL FR B5 72 721 72243 1350 55 Europe/Paris 2012-01-18
-2986092 Pont-sur-Yonne Pont-sur-Yonne Pont,Pont-sur-Yonne 48.28297 3.20198 P PPL FR A1 89 893 89309 3272 81 Europe/Paris 2012-01-18
-2986095 Pont-sur-Sambre Pont-sur-Sambre Pont,Pont-sur-Sambre 50.22195 3.84693 P PPL FR B4 59 591 59467 2635 132 Europe/Paris 2011-09-09
-2986102 Pont-Scorff Pont-Scorff Pont-Scorff,Pont-Skorf 47.83343 -3.40251 P PPL FR A2 56 561 56179 2826 45 Europe/Paris 2012-01-18
-2986103 Pont-Salomon Pont-Salomon Pont-Salomon 45.33924 4.2481 P PPL FR 98 43 433 43153 1725 639 Europe/Paris 2012-01-18
-2986104 Pont-Saint-Vincent Pont-Saint-Vincent Pont-Saint-Vincent,Pont-la-Montagne 48.60298 6.09942 P PPL FR B2 54 543 54432 2147 235 Europe/Paris 2012-01-18
-2986105 Pont-Saint-Pierre Pont-Saint-Pierre Pont-Saint-Pierre 49.33561 1.27601 P PPL FR A7 27 271 27470 1092 14 Europe/Paris 2012-01-18
-2986106 Pont-Saint-Martin Pont-Saint-Martin Pont-Saint-Martin 47.12338 -1.58455 P PPL FR B5 44 442 44130 5114 8 Europe/Paris 2012-01-18
-2986109 Pont-Saint-Esprit Pont-Saint-Esprit Pont-Saint-Esprit,Pont-sur-Rhone,Pont-sur-Rhône,pon=san=tesupuri,ポン=サン=テスプリ 44.25494 4.64736 P PPL FR A9 30 302 30202 10002 58 Europe/Paris 2012-01-18
-2986110 Pont-Sainte-Maxence Pont-Sainte-Maxence Pont,Pont-Sainte-Maxence,Pont-la-Montagne,Pont-sur-Oise 49.30168 2.60467 P PPL FR B6 60 604 60509 13732 37 Europe/Paris 2012-01-18
-2986111 Pont-Sainte-Marie Pont-Sainte-Marie Pont,Pont-Sainte-Marie 48.31848 4.09447 P PPL FR A4 10 103 10297 5161 104 Europe/Paris 2011-11-02
-2986121 Pontrieux Pontrieux Pontrev,Pontrieux 48.70111 -3.15967 P PPL FR A2 22 222 22250 1301 9 Europe/Paris 2012-01-18
-2986122 Pont-Remy Pont-Remy 50.05 1.91667 P PPL FR B6 80 801 80635 1535 6 Europe/Paris 2007-11-15
-2986127 Pontpoint Pontpoint Pontpoint 49.3 2.65 P PPL FR B6 60 604 60508 2936 50 Europe/Paris 2012-01-18
-2986136 Pontorson Pontorson Pontorson 48.55316 -1.50754 P PPL FR 99 50 501 50410 4147 18 Europe/Paris 2012-01-18
-2986140 Pontoise Pontoise Pontisara,Pontoise,pontowazu,ポントワーズ 49.05 2.1 P PPLA2 FR A8 95 953 95500 30290 46 Europe/Paris 2011-11-02
-2986149 Pontlevoy Pontlevoy Pontlevoy 47.39002 1.25465 P PPL FR A3 41 411 41180 1604 99 Europe/Paris 2012-01-18
-2986160 Pontivy Pontivy Pondi,Pondivi,Pontivy 48.06667 -2.98333 P PPLA3 FR A2 56 562 56178 16752 111 Europe/Paris 2011-11-02
-2986178 Ponthierry Ponthierry 48.53366 2.54419 P PPL FR A8 77 772 77407 12158 45 Europe/Paris 2012-02-27
-2986181 Pont-Hébert Pont-Hebert Pont-Hebert,Pont-Hébert 49.16714 -1.13428 P PPL FR 99 50 504 50409 1769 46 Europe/Paris 2012-01-18
-2986186 Pontfaverger-Moronvilliers Pontfaverger-Moronvilliers Pontfaverger,Pontfaverger-Moronvilliers 49.29702 4.31657 P PPL FR A4 51 513 51440 1398 103 Europe/Paris 2012-01-18
-2986191 Pont-Évêque Pont-Eveque Pont-Eveque,Pont-Évêque 45.52691 4.91432 P PPL FR B9 38 383 38318 5479 200 Europe/Paris 2012-01-18
-2986198 Pontenx-les-Forges Pontenx-les-Forges Pontenx,Pontenx-les-Forges 44.24134 -1.12095 P PPL FR 97 40 402 40229 1174 29 Europe/Paris 2012-01-18
-2986200 Pont-en-Royans Pont-en-Royans Pont,Pont-en-Royans,Pont-sur-Bourne 45.06362 5.34136 P PPL FR B9 38 381 38319 1016 229 Europe/Paris 2012-01-18
-2986204 Ponteilla Ponteilla Ponteilla,Pontella,Pontellà 42.62594 2.81335 P PPL FR A9 66 662 66145 1996 107 Europe/Paris 2012-01-18
-2986205 Pont-Écrepin Pont-Ecrepin 48.76667 -0.25 P PPL FR 99 61 612 61339 1032 139 Europe/Paris 2012-02-27
-2986219 Pont-du-Château Pont-du-Chateau Pont-du-Chateau,Pont-du-Château,Pont-sur-Allier 45.80078 3.25008 P PPL FR 98 63 632 63284 9474 350 Europe/Paris 2012-01-18
-2986220 Pont-du-Casse Pont-du-Casse Pont-du-Casse 44.22867 0.67924 P PPL FR 97 47 471 47209 4449 82 Europe/Paris 2012-01-18
-2986225 Pont-de-Veyle Pont-de-Veyle Pont,Pont-de-Veyle 46.26248 4.88717 P PPL FR B9 01 012 01306 1696 179 Europe/Paris 2012-01-18
-2986227 Pont-de-Vaux Pont-de-Vaux Pont,Pont-de-Vaux 46.4317 4.94012 P PPL FR B9 01 012 01305 2055 175 Europe/Paris 2012-01-18
-2986233 Pont-de-Salars Pont-de-Salars Le Pont-de-Salars,Pont-de-Salars 44.2808 2.72783 P PPL FR B3 12 122 12185 1515 707 Europe/Paris 2012-01-18
-2986237 Pont-de-Roide Pont-de-Roide Pont-de-Roide 47.38738 6.7684 P PPL FR A6 25 252 25463 4989 359 Europe/Paris 2012-01-18
-2986244 Pont-de-Metz Pont-de-Metz Pont-de-Metz 49.8782 2.24266 P PPL FR B6 80 802 80632 1682 29 Europe/Paris 2012-01-18
-2986248 Pont-de-Larn Pont-de-Larn Pont-de-Larn 43.50412 2.40786 P PPL FR B3 81 812 81209 2913 246 Europe/Paris 2012-01-18
-2986257 Pont-de-Chéruy Pont-de-Cheruy Pont-de-Cheruy,Pont-de-Chéruy 45.75166 5.18488 P PPL FR B9 38 383 38316 4609 206 Europe/Paris 2012-01-18
-2986271 Pontchâteau Pontchateau Pontchateau,Pontchâteau,Pontkastell-Keren 47.43797 -2.09011 P PPL FR B5 44 443 44129 8474 14 Europe/Paris 2012-01-18
-2986274 Pontcharra-sur-Turdine Pontcharra-sur-Turdine Pontcharra,Pontcharra-sur Tardine,Pontcharra-sur-Turdine 45.8774 4.48993 P PPL FR B9 69 692 69157 2274 370 Europe/Paris 2012-01-18
-2986275 Pontcharra Pontcharra Pontcharra,Pontcharra-sur-Breda,Pontcharra-sur-Bréda 45.4329 6.01424 P PPL FR B9 38 381 38314 6948 264 Europe/Paris 2012-01-18
-2986279 Pontcarré Pontcarre Pontcarre,Pontcarré 48.79772 2.70508 P PPL FR A8 77 775 77374 1980 116 Europe/Paris 2012-01-18
-2986285 Pont-à-Vendin Pont-a-Vendin Pont-a-Vendin,Pont-à-Vendin 50.47358 2.88884 P PPL FR B4 62 627 62666 2949 29 Europe/Paris 2012-01-18
-2986286 Pont-Aven Pont-Aven Pont-Aven,פונט אוון 47.85 -3.75 P PPL FR A2 29 294 29217 3129 31 Europe/Paris 2012-01-18
-2986294 Pont-Audemer Pont-Audemer Pont-Audemer 49.35 0.51667 P PPL FR A7 27 272 27467 9666 8 Europe/Paris 2012-01-18
-2986302 Pontarlier Pontarlier Pontarlier 46.90347 6.35542 P PPLA3 FR A6 25 253 25462 20313 834 Europe/Paris 2011-11-02
-2986306 Pont-à-Mousson Pont-a-Mousson Pont-a-Mousson,Pont-a-Musson,Pont-à-Mousson,Понт-а-Муссон 48.90786 6.0589 P PPL FR B2 54 543 54431 15411 182 Europe/Paris 2012-01-18
-2986307 Pont-à-Marcq Pont-a-Marcq Pont-a-Marck,Pont-a-Marcq,Pont-a-Marq,Pont-à-Marcq,Pont-à-Marq 50.52213 3.11441 P PPL FR B4 59 595 59466 2265 34 Europe/Paris 2012-01-18
-2986310 Pontailler-sur-Saône Pontailler-sur-Saone Pontailler,Pontailler-sur-Saone,Pontailler-sur-Saône 47.30455 5.41479 P PPL FR A1 21 212 21496 1394 189 Europe/Paris 2012-01-18
-2986313 Pontacq Pontacq Pontacq 43.18333 -0.11667 P PPL FR 97 64 643 64453 2815 368 Europe/Paris 2012-01-18
-2986335 Pons Pons Pons 45.57988 -0.54783 P PPL FR B7 17 174 17283 5111 40 Europe/Paris 2012-01-18
-2986354 Poncin Poncin Poncin 46.08384 5.40966 P PPL FR B9 01 014 01303 1557 259 Europe/Paris 2012-01-18
-2986356 Ponchon Ponchon Ponchon 49.34652 2.19676 P PPL FR B6 60 601 60504 1085 91 Europe/Paris 2012-01-18
-2986370 Pomponne Pomponne Pomponne 48.8813 2.68232 P PPL FR A8 77 775 77372 3324 50 Europe/Paris 2012-01-18
-2986375 Pompignan Pompignan Pompignan,Pompignan-Montagne 43.81768 1.31209 P PPL FR B3 82 822 82142 1076 121 Europe/Paris 2011-01-09
-2986376 Pompignac Pompignac Pompignac 44.85114 -0.43704 P PPL FR 97 33 332 33330 2734 66 Europe/Paris 2012-01-18
-2986385 Pompey Pompey Pompey 48.76653 6.12162 P PPL FR B2 54 543 54430 5341 215 Europe/Paris 2012-01-18
-2986386 Pompertuzat Pompertuzat Pompertuzat 43.49277 1.51531 P PPL FR B3 31 313 31429 1357 183 Europe/Paris 2012-01-18
-2986389 Pompaire Pompaire Pompaire 46.60727 -0.23237 P PPL FR B7 79 793 79213 1904 189 Europe/Paris 2012-01-18
-2986395 Pommiers Pommiers Pommiers 45.95594 4.69353 P PPL FR B9 69 692 69156 1934 315 Europe/Paris 2012-01-18
-2986408 Pommeuse Pommeuse Pommeuse 48.81667 3.01667 P PPL FR A8 77 771 77371 2739 70 Europe/Paris 2012-01-18
-2986410 Pommerit-le-Vicomte Pommerit-le-Vicomte Panvrid-ar-Beskont,Pañvrid-ar-Beskont,Pommerit,Pommerit-le-Vicomte,Pommerit-les-Bois 48.61989 -3.09 P PPL FR A2 22 224 22248 1810 103 Europe/Paris 2012-01-18
-2986411 Pommerit-Jaudy Pommerit-Jaudy Peurid-ar-Roc'h,Pommerit,Pommerit-Jaudy 48.73058 -3.24208 P PPL FR A2 22 223 22247 1187 77 Europe/Paris 2012-01-18
-2986418 Pommeret Pommeret Peunvrid,Peuñvrid,Pommeret 48.46378 -2.62689 P PPL FR A2 22 224 22246 1796 66 Europe/Paris 2012-01-18
-2986434 Pomérols Pomerols Pomerols,Pomérols 43.39139 3.49944 P PPL FR A9 34 341 34207 1909 34 Europe/Paris 2010-12-24
-2986444 Pomarez Pomarez Pomarez 43.62972 -0.82934 P PPL FR 97 40 401 40228 1577 50 Europe/Paris 2012-01-18
-2986453 Polminhac Polminhac Polminhac 44.95223 2.57846 P PPL FR 98 15 151 15154 1182 664 Europe/Paris 2012-01-18
-2986454 Pollionnay Pollionnay Pollionnay 45.76473 4.66099 P PPL FR B9 69 691 69154 1670 427 Europe/Paris 2012-01-18
-2986457 Polliat Polliat Polliat 46.24849 5.12658 P PPL FR B9 01 012 01301 2221 225 Europe/Paris 2011-01-14
-2986460 Pollestres Pollestres Pollestres 42.642 2.87116 P PPL FR A9 66 662 66144 3964 46 Europe/Paris 2012-01-18
-2986467 Poligny Poligny Poligny 46.83712 5.70504 P PPL FR A6 39 392 39434 4283 321 Europe/Paris 2012-01-18
-2986472 Polignac Polignac Mont-Danise,Polignac,Polinhac 45.0709 3.86031 P PPL FR 98 43 432 43152 2761 751 Europe/Paris 2010-11-19
-2986484 Poix-du-Nord Poix-du-Nord Poix,Poix-du-Nord 50.18927 3.60956 P PPL FR B4 59 591 59464 2056 114 Europe/Paris 2012-01-18
-2986486 Poix-de-Picardie Poix-de-Picardie 49.78333 1.98333 P PPL FR B6 80 802 80630 2337 174 Europe/Paris 2007-11-14
-2986495 Poitiers Poitiers Peitieus,Poatie,Poitiers,Pouatie,Pouetiers,Pouètiérs,Puat'e,powachie,pu wa jie,Πουατιέ,Поатие,Пуатье,ポワチエ,普瓦捷 46.58333 0.33333 P PPLA FR B7 86 863 86194 85960 76 Europe/Paris 2012-01-18
-2986499 Poisy Poisy Poisy 45.92306 6.06435 P PPL FR B9 74 741 74213 6399 517 Europe/Paris 2012-01-18
-2986501 Poissy Poissy Poissy,Puassi,Пуасси 48.92902 2.04952 P PPL FR A8 78 783 78498 36431 31 Europe/Paris 2012-01-18
-2986524 Poisat Poisat Poisat 45.15863 5.76188 P PPL FR B9 38 381 38309 2066 219 Europe/Paris 2012-01-18
-2986546 Poilly-lez-Gien Poilly-lez-Gien Poilly,Poilly-lez-Gien 47.67724 2.59743 P PPL FR A3 45 451 45254 2354 125 Europe/Paris 2012-01-18
-2986582 Poey-de-Lescar Poey-de-Lescar Poey,Poey-de-Lescar 43.35 -0.46667 P PPL FR 97 64 643 64448 1639 147 Europe/Paris 2011-09-11
-2986585 Podensac Podensac Podensac 44.65038 -0.35508 P PPL FR 97 33 333 33327 2595 16 Europe/Paris 2012-01-18
-2986588 Pocé-sur-Cisse Poce-sur-Cisse Poce,Poce-sur-Cisse,Pocé,Pocé-sur-Cisse 47.4433 0.99142 P PPL FR A3 37 372 37185 1516 59 Europe/Paris 2012-01-18
-2986589 Pocé-les-Bois Poce-les-Bois Poce,Poce-les-Bois,Pocé,Pocé-les-Bois,Pozieg 48.11626 -1.25168 P PPL FR A2 35 351 35229 1062 87 Europe/Paris 2012-01-18
-2986592 Pluzunet Pluzunet Pluned,Pluzunet,Plûned 48.64076 -3.37113 P PPL FR A2 22 223 22245 1029 116 Europe/Paris 2012-01-18
-2986593 Pluvigner Pluvigner Pleuwigner,Pluvigner 47.77627 -3.01013 P PPL FR A2 56 561 56177 5775 89 Europe/Paris 2012-01-18
-2986600 Plurien Plurien Plurien 48.62559 -2.40423 P PPL FR A2 22 224 22242 1283 49 Europe/Paris 2012-01-18
-2986601 Pluneret Pluneret Plumeret,Plunered,Pluneret 47.67525 -2.95782 P PPL FR A2 56 561 56176 3987 34 Europe/Paris 2012-01-18
-2986605 Plumieux Plumieux Plumieux,Pluvaeg 48.10303 -2.58382 P PPL FR A2 22 224 22241 1131 131 Europe/Paris 2012-01-18
-2986608 Plumergat Plumergat Plumergat,Pluvergad 47.74134 -2.91501 P PPL FR A2 56 561 56175 3156 51 Europe/Paris 2012-01-18
-2986609 Plumelin Plumelin Plumelin,Pluverin 47.86036 -2.88754 P PPL FR A2 56 562 56174 1900 101 Europe/Paris 2012-01-18
-2986610 Pluméliau Plumeliau Plumeliau,Pluméliau 47.95769 -2.97494 P PPL FR A2 56 562 56173 3327 117 Europe/Paris 2012-01-18
-2986611 Plumelec Plumelec Plumelec,Pluveleg 47.83754 -2.63988 P PPL FR A2 56 562 56172 2553 155 Europe/Paris 2012-01-18
-2986613 Plumaugat Plumaugat Plumaugat,Pluvaelgad 48.25479 -2.23843 P PPL FR A2 22 221 22240 1041 114 Europe/Paris 2012-01-18
-2986615 Pluherlin Pluherlin Pluherlin,Pluhernin 47.69632 -2.36349 P PPL FR A2 56 563 56171 1219 73 Europe/Paris 2012-01-18
-2986616 Pluguffan Pluguffan Pluguen,Pluguffan 47.98333 -4.18333 P PPL FR A2 29 294 29216 3370 97 Europe/Paris 2012-01-18
-2986618 Pluduno Pluduno Pluduno,Pludunou,Pludunoù 48.5311 -2.26848 P PPL FR A2 22 221 22237 1798 66 Europe/Paris 2012-01-18
-2986620 Plozévet Plozevet Plodemet,Plodémet,Plozeved,Plozevet,Plozévet 47.98333 -4.41667 P PPL FR A2 29 294 29215 2901 64 Europe/Paris 2012-01-18
-2986624 Plouzévédé Plouzevede Gwitevede,Plouzevede,Plouzévédé 48.6 -4.11667 P PPL FR A2 29 293 29213 1429 90 Europe/Paris 2012-01-18
-2986626 Plouzané Plouzane Plouzane,Plouzané 48.38333 -4.61667 P PPL FR A2 29 291 29212 13118 82 Europe/Paris 2012-01-18
-2986628 Plouvorn Plouvorn Plouvorn 48.58333 -4.03333 P PPL FR A2 29 293 29210 2725 73 Europe/Paris 2012-01-18
-2986629 Plouvien Plouvien Plouvien 48.53333 -4.45 P PPL FR A2 29 291 29209 3346 60 Europe/Paris 2012-01-18
-2986632 Plourivo Plourivo Plouriviou,Plourivioù,Plourivo 48.7455 -3.07075 P PPL FR A2 22 224 22233 2094 71 Europe/Paris 2012-01-18
-2986633 Plourin-lès-Morlaix Plourin-les-Morlaix 48.53333 -3.78333 P PPL FR A2 29 293 29207 4815 131 Europe/Paris 2007-11-14
-2986635 Plouray Plouray Plourae,Plouray 48.1458 -3.38671 P PPL FR A2 56 562 56170 1105 194 Europe/Paris 2012-01-18
-2986638 Plounévez-Quintin Plounevez-Quintin Plounevez-Kintin,Plounevez-Quintin,Plounévez-Quintin 48.28333 -3.23333 P PPL FR A2 22 222 22229 1101 203 Europe/Paris 2007-11-15
-2986639 Plounévez-Moëdec Plounevez-Moedec Plounevez-Moedec,Plounevez-Moedeg,Plounévez-Moëdec 48.56667 -3.45 P PPL FR A2 22 223 22228 1398 178 Europe/Paris 2007-11-15
-2986640 Plounévez-Lochrist Plounevez-Lochrist Gwinevez,Plounevez,Plounevez-Lochrist,Plounévez-Lochrist,Plouvenez-Lochrist 48.61667 -4.21667 P PPL FR A2 29 293 29206 2463 70 Europe/Paris 2012-01-18
-2986641 Plounévézel Plounevezel Plonevell,Plounevezel,Plounévézel 48.3 -3.6 P PPL FR A2 29 292 29205 1046 138 Europe/Paris 2012-01-18
-2986642 Plounéventer Plouneventer Gwineventer,Plouneventer,Plounéventer 48.51667 -4.21667 P PPL FR A2 29 293 29204 1567 100 Europe/Paris 2012-01-18
-2986644 Plounéour-Trez Plouneour-Trez Plouneour-Traezh,Plouneour-Trez,Plounéour-Trez 48.65 -4.31667 P PPL FR A2 29 291 29203 1238 20 Europe/Paris 2012-01-18
-2986645 Plounéour-Ménez Plouneour-Menez Plouneour,Plouneour-Menez,Plounéour,Plounéour-Ménez 48.45 -3.88333 P PPL FR A2 29 293 29202 1229 237 Europe/Paris 2012-01-18
-2986646 Ploumoguer Ploumoguer Plonger,Ploumoguer 48.4 -4.71667 P PPL FR A2 29 291 29201 1726 69 Europe/Paris 2012-01-18
-2986647 Ploumilliau Ploumilliau Plouilio,Ploumilliau 48.68333 -3.51667 P PPL FR A2 22 223 22226 2268 109 Europe/Paris 2012-01-18
-2986649 Ploumagoar Ploumagoar Ploumagoar,Plouvagor 48.54509 -3.13233 P PPL FR A2 22 222 22225 4603 114 Europe/Paris 2012-01-18
-2986652 Plouisy Plouisy Plouisy,Plouizi 48.57817 -3.18434 P PPL FR A2 22 222 22223 2053 133 Europe/Paris 2012-01-18
-2986653 Plouigneau Plouigneau Plouigneau,Plouigno 48.56667 -3.7 P PPL FR A2 29 293 29199 4311 161 Europe/Paris 2012-01-18
-2986654 Plouider Plouider Plouider 48.61667 -4.3 P PPL FR A2 29 291 29198 1855 50 Europe/Paris 2012-01-18
-2986655 Plouhinec Plouhinec Ploeneg,Plouhinec 48.01667 -4.48333 P PPL FR A2 29 294 29197 4428 96 Europe/Paris 2012-01-18
-2986657 Plouharnel Plouharnel Plouharnel 47.59804 -3.11274 P PPL FR A2 56 561 56168 1812 23 Europe/Paris 2012-01-18
-2986660 Plouha Plouha Plouha 48.6765 -2.92842 P PPL FR A2 22 224 22222 4435 97 Europe/Paris 2012-01-18
-2986661 Plouguin Plouguin Plougin,Plouguin 48.53333 -4.6 P PPL FR A2 29 291 29196 2058 48 Europe/Paris 2012-01-18
-2986662 Plouguiel Plouguiel Plouguiel,Priel 48.79742 -3.23883 P PPL FR A2 22 223 22221 1962 63 Europe/Paris 2012-01-18
-2986663 Plouguernével Plouguernevel Plougernevel,Plouguernevel,Plouguernével 48.2394 -3.25071 P PPL FR A2 22 222 22220 2343 220 Europe/Paris 2012-01-18
-2986664 Plouguerneau Plouguerneau Plougerne,Plouguerneau 48.6 -4.5 P PPL FR A2 29 291 29195 5883 52 Europe/Paris 2012-01-18
-2986665 Plouguenast Plouguenast Plougonwaz,Plouguenast 48.28208 -2.70442 P PPL FR A2 22 224 22219 1806 163 Europe/Paris 2012-01-18
-2986666 Plougrescant Plougrescant Plougouskant,Plougrescant,Plougreseant 48.84026 -3.22886 P PPL FR A2 22 223 22218 1462 55 Europe/Paris 2008-01-13
-2986668 Plougourvest Plougourvest Gwikourvest,Plougourvest 48.55 -4.08333 P PPL FR A2 29 293 29193 1207 112 Europe/Paris 2012-01-18
-2986669 Plougoumelen Plougoumelen Plougoumelen,Plougouvelen 47.6507 -2.91716 P PPL FR A2 56 561 56167 1885 21 Europe/Paris 2012-01-18
-2986670 Plougoulm Plougoulm Plougoulm,Plougouloum 48.66667 -4.05 P PPL FR A2 29 293 29192 1718 41 Europe/Paris 2012-01-18
-2986672 Plougonven Plougonven Plougonven 48.51667 -3.71667 P PPL FR A2 29 293 29191 3261 144 Europe/Paris 2012-01-18
-2986673 Plougonvelin Plougonvelin Plougonvelen,Plougonvelin 48.34059 -4.71846 P PPL FR A2 29 291 29190 3009 45 Europe/Paris 2007-08-04
-2986674 Plougastel-Daoulas Plougastel-Daoulas Plougastel,Plougastel-Daoulas,Plougastell-Daoulaz 48.36667 -4.36667 P PPL FR A2 29 291 29189 13679 84 Europe/Paris 2012-01-18
-2986676 Plougasnou Plougasnou Plouganou,Plouganoù,Plougasnou 48.7 -3.8 P PPL FR A2 29 293 29188 3575 81 Europe/Paris 2012-01-18
-2986678 Ploufragan Ploufragan Ploufragan 48.49141 -2.79458 P PPL FR A2 22 224 22215 11577 128 Europe/Paris 2012-01-18
-2986681 Plouézec Plouezec Ploueg-ar-Mor,Plouezec,Plouézec 48.75122 -2.98466 P PPL FR A2 22 224 22214 3321 96 Europe/Paris 2012-01-18
-2986682 Plouescat Plouescat Plouescat,Ploueskad 48.66667 -4.16667 P PPL FR A2 29 293 29185 3891 28 Europe/Paris 2012-01-18
-2986683 Plouër-sur-Rance Plouer-sur-Rance Plouer,Plouer-sur-Rance,Plouhern,Plouër,Plouër-sur-Rance 48.52669 -2.00298 P PPL FR A2 22 221 22213 2848 54 Europe/Paris 2012-01-18
-2986685 Plouénan Plouenan Plouenan,Plouénan 48.63333 -4 P PPL FR A2 29 293 29184 2499 60 Europe/Paris 2012-01-18
-2986688 Plouédern Plouedern Plouedern,Plouédern 48.48333 -4.25 P PPL FR A2 29 291 29181 2700 101 Europe/Paris 2012-01-18
-2986689 Plouëc-du-Trieux Plouec-du-Trieux Ploeuc 48.68333 -3.2 P PPL FR A2 22 222 22212 1133 85 Europe/Paris 2007-11-14
-2986691 Ploudaniel Ploudaniel Ploudaniel,Plouzeniel 48.53333 -4.31667 P PPL FR A2 29 291 29179 3910 67 Europe/Paris 2012-01-18
-2986692 Ploudalmézeau Ploudalmezeau Gwitalmeze,Ploudaimezau,Ploudalmezeau,Ploudalmézeau 48.53333 -4.65 P PPL FR A2 29 291 29178 5243 63 Europe/Paris 2012-01-18
-2986693 Ploubezre Ploubezre Plouber,Ploubezre,Ploubêr 48.7 -3.45 P PPL FR A2 22 223 22211 2762 83 Europe/Paris 2012-01-18
-2986694 Ploubazlanec Ploubazlanec Plaeraneg,Ploubazlanec 48.8 -3.03333 P PPL FR A2 22 224 22210 3536 36 59 Europe/Paris 2012-01-18
-2986695 Ploubalay Ploubalay Ploubalay,Plouvalae 48.58109 -2.14069 P PPL FR A2 22 221 22209 2506 29 Europe/Paris 2012-01-18
-2986696 Plouay Plouay Plouay,Ploue 47.91444 -3.33384 P PPL FR A2 56 561 56166 5166 78 Europe/Paris 2012-01-18
-2986697 Plouasne Plouasne Plouan,Plouasne 48.30081 -2.00698 P PPL FR A2 22 221 22208 1451 59 Europe/Paris 2012-01-18
-2986698 Plouarzel Plouarzel Plouarzel,Plouarzhel 48.43333 -4.73333 P PPL FR A2 29 291 29177 2596 74 Europe/Paris 2012-01-18
-2986699 Plouaret Plouaret Plouared,Plouaret 48.61667 -3.46667 P PPL FR A2 22 223 22207 2207 114 Europe/Paris 2012-01-18
-2986700 Plouagat Plouagat Plagad,Plouagat 48.53611 -2.99956 P PPL FR A2 22 222 22206 2288 141 Europe/Paris 2012-01-18
-2986706 Plonévez-Porzay Plonevez-Porzay Plonevez-Porsay,Plonevez-Porzay,Plonevez-Porzhe,Plonévez-Porsay,Plonévez-Porzay 48.1 -4.21667 P PPL FR A2 29 292 29176 1687 124 Europe/Paris 2012-01-18
-2986707 Plonévez-du-Faou Plonevez-du-Faou Plonevez,Plonevez-ar-Faou,Plonevez-du-Faou,Plonévez,Plonévez-du-Faou 48.25 -3.83333 P PPL FR A2 29 292 29175 2332 156 Europe/Paris 2012-01-18
-2986708 Plonéour-Lanvern Ploneour-Lanvern Ploneour,Ploneour-Lanvern,Ploneour-Lanwern,Plonéour,Plonéour-Lanvern 47.9 -4.28333 P PPL FR A2 29 294 29174 5038 60 Europe/Paris 2012-01-18
-2986709 Plonéis Ploneis Ploneis,Ploneiz,Plonéis 48.01667 -4.21667 P PPL FR A2 29 294 29173 1504 145 Europe/Paris 2012-01-18
-2986710 Plomodiern Plomodiern Plomodiern,Ploudiern 48.18333 -4.23333 P PPL FR A2 29 292 29172 2108 82 Europe/Paris 2012-01-18
-2986712 Plomeur Plomeur Plomeur,Ploveur,Sablono:TabelKapoLauCarta,Ŝablono:TabelKapoLaŭĈarta 47.83333 -4.28333 P PPL FR A2 29 294 29171 3402 26 Europe/Paris 2012-01-18
-2986713 Plomelin Plomelin Plomelin,Ploveilh 47.93333 -4.15 P PPL FR A2 29 294 29170 4318 45 Europe/Paris 2012-01-18
-2986714 Plombières-lès-Dijon Plombieres-les-Dijon Plombieres,Plombieres-les-Dijon,Plombières,Plombières-lès-Dijon 47.33333 4.96667 P PPL FR A1 21 212 21485 2688 372 Europe/Paris 2012-01-18
-2986715 Plombières-les-Bains Plombieres-les-Bains Plombieres,Plombieres-les-Bains,Plombières,Plombières-les-Bains 47.96337 6.45758 P PPL FR B2 88 881 88351 1943 426 Europe/Paris 2012-01-18
-2986723 Plogonnec Plogonnec Plogoneg,Plogonnec 48.08333 -4.18333 P PPL FR A2 29 294 29169 2974 119 Europe/Paris 2012-01-18
-2986724 Plogoff Plogoff Plogoff,Plougon,Plougoñ 48.037 -4.66606 P PPL FR A2 29 294 29168 1649 60 Europe/Paris 2008-06-04
-2986725 Plogastel-Saint-Germain Plogastel-Saint-Germain Plogastel,Plogastel-Saint-Germain,Plogastell-Sant-Jermen 47.98333 -4.26667 P PPL FR A2 29 294 29167 1804 81 Europe/Paris 2012-01-18
-2986726 Ploëzal Ploezal Pleuzal,Ploezal,Ploëzal 48.71534 -3.20333 P PPL FR A2 22 222 22204 1230 75 Europe/Paris 2012-01-18
-2986728 Plœuc-sur-Lié Ploeuc-sur-Lie 48.35 -2.75 P PPL FR A2 22 224 22203 3061 202 Europe/Paris 2007-11-14
-2986729 Ploërmel Ploermel Ploermael,Ploermel,Ploërmel 47.93172 -2.39781 P PPL FR A2 56 563 56165 8422 78 Europe/Paris 2012-01-18
-2986730 Ploeren Ploeren Ploeren,Ploveren 47.65713 -2.86398 P PPL FR A2 56 563 56164 4245 58 Europe/Paris 2012-01-18
-2986731 Ploërdut Ploerdut Pleurdud,Ploerdut,Ploërdut 48.08742 -3.2855 P PPL FR A2 56 562 56163 1400 196 Europe/Paris 2012-01-18
-2986732 Ploemeur Ploemeur Planvour,Plañvour,Ploemeur 47.73333 -3.43333 P PPL FR A2 56 561 56162 20652 36 Europe/Paris 2012-01-18
-2986733 Ploemel Ploemel Plenver,Pleñver,Ploemel 47.65153 -3.0703 P PPL FR A2 56 561 56161 2340 28 Europe/Paris 2012-01-18
-2986734 Plobsheim Plobsheim Plobsheim 48.46979 7.72442 P PPL FR C1 67 676 67378 3829 146 Europe/Paris 2007-07-07
-2986735 Plobannalec-Lesconil Plobannalec-Lesconil Plobannalec 47.81667 -4.21667 P PPL FR A2 29 294 29165 3182 10 Europe/Paris 2011-11-21
-2986746 Pleyber-Christ Pleyber-Christ Pleiber-Christ,Pleiber-Krist,Pleyber-Christ 48.5 -3.86667 P PPL FR A2 29 293 29163 2903 120 Europe/Paris 2012-01-18
-2986747 Pleyben Pleyben Pleiben,Pleyben 48.23333 -3.96667 P PPL FR A2 29 292 29162 3938 94 Europe/Paris 2012-01-18
-2986756 Pleuven Pleuven Pleuven,Pluwenn 47.9 -4.03333 P PPL FR A2 29 294 29161 2598 75 Europe/Paris 2012-01-18
-2986757 Pleurtuit Pleurtuit Pleurtuit,Plevrestud 48.57858 -2.05806 P PPL FR A2 35 354 35228 4989 68 Europe/Paris 2012-01-18
-2986760 Pleumeur-Gautier Pleumeur-Gautier Pleumeur,Pleumeur-Gautier,Pleuveur-Gaoter 48.80044 -3.15578 P PPL FR A2 22 223 22199 1186 80 Europe/Paris 2012-01-18
-2986761 Pleumeur-Bodou Pleumeur-Bodou Pleumeur,Pleumeur-Bodou,Pleuveur-Bodou,Pleuveur-Bodoù 48.76667 -3.51667 P PPL FR A2 22 223 22198 4027 105 Europe/Paris 2012-01-18
-2986762 Pleumeleuc Pleumeleuc Pleumeleuc,Pleveleg 48.18438 -1.91962 P PPL FR A2 35 353 35227 2330 86 Europe/Paris 2012-01-18
-2986765 Pleumartin Pleumartin Pleumartin 46.73786 0.769 P PPL FR B7 86 861 86193 1196 136 Europe/Paris 2012-01-18
-2986766 Pleugueneuc Pleugueneuc Plegeneg,Pleugueneuc,Plougueneuc 48.39735 -1.90301 P PPL FR A2 35 354 35226 1403 64 Europe/Paris 2012-01-18
-2986767 Pleugriffet Pleugriffet Pleugriffet,Ploueg-Grifed 47.98594 -2.68454 P PPL FR A2 56 562 56160 1194 107 Europe/Paris 2012-01-18
-2986768 Pleudihen-sur-Rance Pleudihen-sur-Rance 48.51667 -1.96667 P PPL FR A2 22 221 22197 2618 38 Europe/Paris 2007-11-20
-2986769 Pleudaniel Pleudaniel Planiel,Pleudaniel 48.76644 -3.14033 P PPL FR A2 22 223 22196 1041 46 Europe/Paris 2012-01-18
-2986770 Pleucadeuc Pleucadeuc Plegadeg,Pleucadeuc 47.75876 -2.37362 P PPL FR A2 56 563 56159 1595 71 Europe/Paris 2012-01-18
-2986771 Pleubian Pleubian Pleubian,Pleuvihan 48.84267 -3.139 P PPL FR A2 22 223 22195 2804 48 Europe/Paris 2012-01-18
-2986772 Plestin-les-Grèves Plestin-les-Greves Plestin,Plestin-les-Greves,Plestin-les-Grèves,Plistin 48.65844 -3.63056 P PPL FR A2 22 223 22194 3700 47 Europe/Paris 2012-01-18
-2986774 Plestan Plestan Plestan 48.42266 -2.44777 P PPL FR A2 22 221 22193 1447 96 Europe/Paris 2012-01-18
-2986785 Plessé Plesse Plesei,Plesse,Plessé 47.5418 -1.88609 P PPL FR B5 44 441 44128 3833 27 Europe/Paris 2012-01-18
-2986786 Plessala Plessala Plesala,Plessala 48.27642 -2.61876 P PPL FR A2 22 224 22191 1795 198 Europe/Paris 2012-01-18
-2986790 Pleslin-Trigavou Pleslin-Trigavou 48.53333 -2.06667 P PPL FR A2 22 221 22190 3087 62 Europe/Paris 2007-11-20
-2986793 Plescop Plescop Plescop,Pleskob 47.69726 -2.8056 P PPL FR A2 56 563 56158 4275 50 Europe/Paris 2012-01-18
-2986795 Plérin Plerin Plerin,Plérin 48.54249 -2.77984 P PPL FR A2 22 224 22187 13860 106 Europe/Paris 2012-01-18
-2986796 Plerguer Plerguer Plergar,Plerguer 48.52676 -1.84769 P PPL FR A2 35 354 35224 1967 30 Europe/Paris 2012-01-18
-2986800 Pléneuf-Val-André Pleneuf-Val-Andre Pleneg-Nantraezh,Pleneuf,Pleneuf-Val-Andre,Pléneuf,Pléneuf-Val-André 48.593 -2.54675 P PPL FR A2 22 224 22186 3942 45 Europe/Paris 2012-01-18
-2986801 Plénée-Jugon Plenee-Jugon Plened-Yugon,Plenee-Jugon,Plénée-Jugon 48.36462 -2.40036 P PPL FR A2 22 221 22185 2405 69 Europe/Paris 2012-01-18
-2986802 Plémy Plemy Plemy,Plevig,Plémy 48.33644 -2.68244 P PPL FR A2 22 224 22184 1585 233 Europe/Paris 2012-01-18
-2986803 Plémet Plemet Plemet,Plezeved,Plémet 48.17601 -2.59325 P PPL FR A2 22 224 22183 3161 147 Europe/Paris 2012-01-18
-2986804 Plélo Plelo Plelo,Pleuloc'h,Plélo 48.55534 -2.94634 P PPL FR A2 22 224 22182 2745 116 Europe/Paris 2012-01-18
-2986806 Plélan-le-Petit Plelan-le-Petit Plelan,Plelan-le-Petit,Plelann-Vihan,Plélan,Plélan-le-Petit 48.43157 -2.2174 P PPL FR A2 22 221 22180 1575 95 Europe/Paris 2012-01-18
-2986807 Plélan-le-Grand Plelan-le-Grand Plelan-le-Grand,Plelann-Veur,Plélan-le-Grand 48.00124 -2.09914 P PPL FR A2 35 353 35223 3220 137 Europe/Paris 2012-01-18
-2986814 Pleine-Fougères Pleine-Fougeres Planfili,Pleine-Fougeres,Pleine-Fougères 48.53308 -1.56534 P PPL FR A2 35 354 35222 1795 39 Europe/Paris 2012-01-18
-2986816 Pléhédel Plehedel Plehedel,Pléhédel 48.69645 -3.00833 P PPL FR A2 22 224 22178 1180 96 Europe/Paris 2012-01-18
-2986817 Pléguien Pleguien Pleguien,Plian,Pléguien 48.63525 -2.94001 P PPL FR A2 22 224 22177 1049 74 Europe/Paris 2012-01-18
-2986818 Plédran Pledran Pledran,Plédran 48.446 -2.74667 P PPL FR A2 22 224 22176 5550 153 Europe/Paris 2012-01-18
-2986819 Plédéliac Pledeliac Pledeliac,Pledeliav,Plédéliac 48.45 -2.38333 P PPL FR A2 22 221 22175 1284 89 Europe/Paris 2007-11-15
-2986820 Pléchâtel Plechatel Plechatel,Plegastell,Pléchâtel 47.89496 -1.74876 P PPL FR A2 35 352 35221 2128 72 Europe/Paris 2012-01-18
-2986822 Pleaux Pleaux 45.13333 2.23333 P PPL FR 98 15 152 15153 1838 624 Europe/Paris 2007-11-21
-2986827 Plauzat Plauzat Plauzat 45.62171 3.14896 P PPL FR 98 63 632 63282 1030 424 Europe/Paris 2012-01-18
-2986830 Plaudren Plaudren Plaodren,Plaudren 47.77868 -2.69331 P PPL FR A2 56 563 56157 1549 109 Europe/Paris 2012-01-18
-2986855 Plappeville Plappeville Plappeville 49.13041 6.12376 P PPL FR B2 57 574 57545 2468 237 Europe/Paris 2012-01-18
-2986875 Planguenoual Planguenoual Plangonwal,Planguenoual 48.533 -2.57642 P PPL FR A2 22 224 22173 1614 80 Europe/Paris 2012-01-18
-2986886 Le Plan-de-la-Tour Le Plan-de-la-Tour 43.33333 6.55 P PPL FR B8 83 831 83094 2558 66 Europe/Paris 2009-09-08
-2986889 Plan-de-Cuques Plan-de-Cuques Cuques,Plan-de-Cuques 43.34753 5.46398 P PPL FR B8 13 133 13075 11125 133 Europe/Paris 2011-11-02
-2986891 Plan-d'Aups-Sainte-Baume Plan-d'Aups-Sainte-Baume 43.33333 5.71667 P PPL FR B8 83 833 83093 1176 669 Europe/Paris 2010-01-29
-2986894 Plancoët Plancoet Plancoet,Plancoët,Plangoed 48.52199 -2.2354 P PPL FR A2 22 221 22172 2703 21 Europe/Paris 2012-01-18
-2986902 Plancher-les-Mines Plancher-les-Mines Plancher-les-Mines 47.7615 6.74308 P PPL FR A6 70 701 70414 1090 495 Europe/Paris 2012-01-18
-2986904 Plancher-Bas Plancher-Bas Plancher-Bas 47.71977 6.73041 P PPL FR A6 70 701 70413 1680 457 Europe/Paris 2012-01-18
-2986930 Plaisir Plaisir Plaisir 48.82319 1.9541 P PPL FR A8 78 784 78490 36121 120 Europe/Paris 2012-01-18
-2986933 Plaisance-du-Touch Plaisance-du-Touch Plaisance,Plaisance-du-Touch 43.56566 1.29749 P PPL FR B3 31 313 31424 18501 168 Europe/Paris 2012-01-18
-2986938 Plaisance Plaisance Plaisance 43.60436 0.04615 P PPL FR B3 32 323 32319 1560 137 Europe/Paris 2012-01-18
-2986944 Plaintel Plaintel Plaintel,Pleneventer 48.40733 -2.81733 P PPL FR A2 22 224 22171 3693 206 Europe/Paris 2012-01-18
-2986946 Plainfaing Plainfaing Plainfaing 48.17284 7.01538 P PPL FR B2 88 883 88349 1783 535 Europe/Paris 2012-01-18
-2986952 Plaine-Haute Plaine-Haute Plaine-Haute,Plenaod 48.44442 -2.85416 P PPL FR A2 22 224 22170 1262 193 Europe/Paris 2012-01-18
-2986962 Plaimpied-Givaudins Plaimpied-Givaudins Plaimpied,Plaimpied-Givaudins,Plainpied-Givaudins 46.998 2.45428 P PPL FR A3 18 181 18180 1669 152 Europe/Paris 2012-01-18
-2986965 Plailly Plailly Plailly 49.10288 2.58549 P PPL FR B6 60 604 60494 1661 106 Europe/Paris 2012-01-18
-2986991 Plabennec Plabennec Plabennec,Plabenneg 48.50244 -4.42656 P PPL FR A2 29 291 29160 7585 86 Europe/Paris 2012-01-18
-2987001 Pithiviers-le-Vieil Pithiviers-le-Vieil Pithiviers-le-Vieil 48.16313 2.20922 P PPL FR A3 45 453 45253 1952 120 Europe/Paris 2012-01-18
-2987003 Pithiviers Pithiviers Pithiviers 48.16667 2.25 P PPLA3 FR A3 45 453 45252 9659 118 Europe/Paris 2011-11-02
-2987007 Pissy-Pôville Pissy-Poville Pissy,Pissy-Poville,Pissy-Pôville 49.52986 0.99281 P PPL FR A7 76 763 76503 1291 131 Europe/Paris 2012-01-18
-2987009 Pissotte Pissotte Pissotte 46.49725 -0.80666 P PPL FR B5 85 851 85176 1202 72 Europe/Paris 2012-01-18
-2987011 Pissos Pissos Pissos 44.30833 -0.77964 P PPL FR 97 40 402 40227 1189 54 Europe/Paris 2012-01-18
-2987037 Pirou Pirou Pirou 49.18089 -1.57384 P PPL FR 99 50 503 50403 1353 15 Europe/Paris 2012-01-18
-2987043 Piriac-sur-Mer Piriac-sur-Mer Penc'herieg,Piriac,Piriac-sur-Mer 47.37938 -2.54616 P PPL FR B5 44 443 44125 2046 6 Europe/Paris 2012-01-18
-2987045 Pirey Pirey Pirey 47.26136 5.96466 P PPL FR A6 25 251 25454 1504 299 Europe/Paris 2012-01-18
-2987046 Piré-sur-Seiche Pire-sur-Seiche Pereg,Pire,Pire-sur-Seiche,Piré-sur-Seiche 48.00958 -1.42909 P PPL FR A2 35 353 35220 2065 54 Europe/Paris 2012-01-18
-2987056 Pipriac Pipriac Pipriac,Presperieg 47.80953 -1.94638 P PPL FR A2 35 352 35219 3208 62 Europe/Paris 2012-01-18
-2987067 Pionsat Pionsat Pionsat 46.10949 2.69362 P PPL FR 98 63 634 63281 1049 530 Europe/Paris 2012-01-18
-2987071 Piolenc Piolenc Piolenc,Piolene 44.17945 4.76408 P PPL FR B8 84 842 84091 4606 38 Europe/Paris 2012-01-18
-2987082 Pinsaguel Pinsaguel 43.5104 1.38831 P PPL FR B3 31 311 31420 2609 154 Europe/Paris 2009-10-26
-2987086 Pinon Pinon Pinon 49.48916 3.44703 P PPL FR B6 02 022 02602 1726 74 Europe/Paris 2012-01-18
-2987094 Piney Piney 48.36366 4.33325 P PPL FR A4 10 103 10287 1252 119 Europe/Paris 2009-07-29
-2987103 Pinet Pinet Pinet 43.40556 3.51 P PPL FR A9 34 341 34203 1110 29 Europe/Paris 2010-12-24
-2987179 Pignans Pignans Pignans 43.30128 6.22748 P PPL FR B8 83 833 83092 2987 183 Europe/Paris 2012-01-18
-2987180 Pignan Pignan Pignan 43.58365 3.75981 P PPL FR A9 34 343 34202 6348 48 Europe/Paris 2012-01-18
-2987192 Pietrosella Pietrosella Pietrosella 41.83618 8.84578 P PPL FR A5 2A 2A1 2A228 1080 484 Europe/Paris 2012-01-18
-2987213 Pierry Pierry Pierry 49.02024 3.94071 P PPL FR A4 51 512 51431 1439 85 Europe/Paris 2012-01-18
-2987218 Pierrevillers Pierrevillers Pierrevillers 49.2242 6.10197 P PPL FR B2 57 574 57543 1377 220 Europe/Paris 2012-01-18
-2987222 Pierrevert Pierrevert Pierrevert 43.81634 5.74638 P PPL FR B8 04 044 04152 3564 407 Europe/Paris 2012-01-18
-2987230 Pierres Pierres Pierres 48.59209 1.56444 P PPL FR A3 28 281 28298 2781 99 Europe/Paris 2012-01-18
-2987237 Pierrepont Pierrepont Pierrepont 49.41614 5.714 P PPL FR B2 54 541 54428 1014 245 Europe/Paris 2012-01-18
-2987256 Pierrelaye Pierrelaye Pierrelaye 49.0211 2.1548 P PPL FR A8 95 953 95488 7295 44 Europe/Paris 2012-01-18
-2987259 Pierrelatte Pierrelatte Pierrelatte 44.37756 4.70198 P PPL FR B9 26 262 26235 12691 56 Europe/Paris 2012-01-18
-2987266 Pierrefort Pierrefort Pierrefort 44.92203 2.839 P PPL FR 98 15 153 15152 1014 940 Europe/Paris 2012-01-18
-2987268 Pierrefontaine-les-Varans Pierrefontaine-les-Varans Pierrefontaine 47.21601 6.5403 P PPL FR A6 25 253 25453 1433 692 Europe/Paris 2010-09-13
-2987270 Pierrefonds Pierrefonds Pierrefonds les-Bain 49.34878 2.9779 P PPL FR B6 60 603 60491 2217 84 Europe/Paris 2007-02-13
-2987271 Pierrefitte-sur-Seine Pierrefitte-sur-Seine Pierrefitte,Pierrefitte-sur-Seine 48.96691 2.36104 P PPL FR A8 93 933 93059 27914 60 Europe/Paris 2012-01-18
-2987275 Pierrefitte-Nestalas Pierrefitte-Nestalas Pierrefitte-Nestalas 42.96667 -0.06667 P PPL FR B3 65 651 65362 1314 460 Europe/Paris 2012-01-18
-2987297 Pierrefeu-du-Var Pierrefeu-du-Var Pierrefeu,Pierrefeu-du-Var 43.22448 6.14329 P PPL FR B8 83 832 83091 4818 70 Europe/Paris 2012-01-18
-2987308 Pierre-Châtel Pierre-Chatel Pierre-Chatel,Pierre-Châtel 44.95654 5.77729 P PPL FR B9 38 381 38304 1295 929 Europe/Paris 2012-01-18
-2987309 Pierre-Buffière Pierre-Buffiere Pierre-Buffiere,Pierre-Buffière 45.69193 1.36193 P PPL FR B1 87 872 87119 1130 320 Europe/Paris 2012-01-18
-2987314 Pierre-Bénite Pierre-Benite Pierre-Benite,Pierre-Bénite 45.7009 4.82511 P PPL FR B9 69 691 69152 9971 167 Europe/Paris 2012-01-18
-2987320 Pierre-de-Bresse Pierre-de-Bresse 46.88333 5.25 P PPL FR A1 71 714 71351 2015 196 Europe/Paris 2007-11-20
-2987328 Piennes Piennes Pienne,Piennes 49.30591 5.78836 P PPL FR B2 54 541 54425 2497 298 Europe/Paris 2012-01-18
-2987332 Piégut-Pluviers Piegut-Pluviers Piegut,Piegut-Pluviers,Piégut,Piégut-Pluviers 45.62298 0.69013 P PPL FR 97 24 242 24328 1396 289 Europe/Paris 2012-01-18
-2987356 Picquigny Picquigny Picquigny 49.94413 2.14376 P PPL FR B6 80 802 80622 1400 19 Europe/Paris 2012-01-18
-2987370 Picauville Picauville Picauville 49.3781 -1.40048 P PPL FR 99 50 502 50400 2023 24 Europe/Paris 2012-01-18
-2987376 Pibrac Pibrac Pibrac 43.62042 1.2854 P PPL FR B3 31 313 31417 8413 163 Europe/Paris 2011-01-09
-2987409 Pia Pia Pia 42.7449 2.9193 P PPL FR A9 66 662 66141 5640 21 Europe/Paris 2012-01-18
-2987421 Phalsbourg Phalsbourg Fort-Francais,Fort-Français,Phalsbourg,Roc-Ferme 48.76752 7.25695 P PPL FR B2 57 575 57540 4663 329 Europe/Paris 2012-01-18
-2987423 Phalempin Phalempin Phalempin 50.51691 3.01584 P PPL FR B4 59 595 59462 4719 35 Europe/Paris 2012-01-18
-2987426 Pfulgriesheim Pfulgriesheim 48.64403 7.67086 P PPL FR C1 67 676 67375 1237 154 Europe/Paris 2007-07-07
-2987428 Pfetterhouse Pfetterhouse Pfetterhausen,Pfetterhouse 47.50061 7.16535 P PPL FR C1 68 681 68257 1020 437 Europe/Paris 2012-01-18
-2987429 Pfastatt Pfastatt Pfastatt 47.77044 7.30103 P PPL FR C1 68 684 68256 8354 242 Europe/Paris 2012-01-18
-2987431 Pfaffenhoffen Pfaffenhoffen Pfaffenhofen,Pfaffenhoffen 48.84106 7.60678 P PPL FR C1 67 674 67372 2629 193 Europe/Paris 2012-01-18
-2987432 Pfaffenheim Pfaffenheim Pfaffenheim 47.98438 7.28857 P PPL FR C1 68 683 68255 1248 228 Europe/Paris 2012-01-18
-2987437 Pézilla-la-Rivière Pezilla-la-Riviere Pezilla,Pezilla-de-la-Riviere,Pezilla-la-Riviere,Pézilla,Pézilla-de-la-Rivière,Pézilla-la-Rivière 42.69536 2.77115 P PPL FR A9 66 662 66140 3002 72 Europe/Paris 2012-01-18
-2987439 Pezens Pezens Pezens 43.25446 2.26868 P PPL FR A9 11 111 11288 1372 122 Europe/Paris 2011-01-07
-2987441 Pézenas Pezenas Pezenas,Pézenas 43.45953 3.42384 P PPL FR A9 34 341 34199 8647 27 Europe/Paris 2012-01-18
-2987459 Peyruis Peyruis Peyruis 44.02959 5.94262 P PPL FR B8 04 044 04149 2375 398 Europe/Paris 2012-01-18
-2987472 Peyrolles-en-Provence Peyrolles-en-Provence Peyrolles,Peyrolles-en-Provence 43.64532 5.58347 P PPL FR B8 13 131 13074 4084 217 Europe/Paris 2012-01-18
-2987484 Peyrins Peyrins Peyrins 45.09241 5.04767 P PPL FR B9 26 263 26231 2478 207 Europe/Paris 2012-01-18
-2987487 Peyrilhac Peyrilhac Peyrilhac 45.95042 1.13503 P PPL FR B1 87 872 87118 1105 296 Europe/Paris 2012-01-18
-2987495 Peyriac-Minervois Peyriac-Minervois Peyriac,Peyriac-Minervois 43.29068 2.56613 P PPL FR A9 11 111 11286 1070 138 Europe/Paris 2012-01-18
-2987497 Peyriac-de-Mer Peyriac-de-Mer Peyriac,Peyriac-de-Mer 43.0872 2.95832 P PPL FR A9 11 113 11285 1032 9 Europe/Paris 2012-01-18
-2987500 Peyrestortes Peyrestortes Peyrestortes 42.7548 2.85232 P PPL FR A9 66 662 66138 1561 42 Europe/Paris 2012-01-18
-2987513 Peyrehorade Peyrehorade Peirahorada,Pevrehorade,Peyrehorade 43.54886 -1.11574 P PPL FR 97 40 401 40224 3419 9 Europe/Paris 2012-01-18
-2987534 Peyrat-de-Bellac Peyrat-de-Bellac Pevrat-la-Montagne,Peyrat,Peyrat-de-Bellac 46.14087 1.03661 P PPL FR B1 87 871 87116 1168 258 Europe/Paris 2012-01-18
-2987547 Peypin Peypin Peypin 43.38503 5.57788 P PPL FR B8 13 133 13073 5133 291 Europe/Paris 2011-01-18
-2987551 Peynier Peynier Peynier 43.44837 5.64139 P PPL FR B8 13 131 13072 3059 272 Europe/Paris 2011-01-18
-2987554 Peymeinade Peymeinade Peymeinade 43.63636 6.87776 P PPL FR B8 06 061 06095 7465 180 Europe/Paris 2012-01-18
-2987577 Peujard Peujard Peujard 45.03619 -0.44096 P PPL FR 97 33 331 33321 1606 36 Europe/Paris 2012-01-18
-2987596 Petiville Petiville Petiville 49.46078 0.5874 P PPL FR A7 76 762 76499 1014 12 Europe/Paris 2012-01-18
-2987628 Petit-Réderching Petit-Rederching Petit-Rederching,Petit-Réderching 49.05776 7.3051 P PPL FR B2 57 576 57535 1511 340 Europe/Paris 2012-01-18
-2987642 Petit-Noir Petit-Noir 46.93333 5.33333 P PPL FR A6 39 391 39415 1002 179 Europe/Paris 2007-11-14
-2987658 Petit-Mars Petit-Mars Kervarc'h,Petit-Mars 47.39512 -1.45262 P PPL FR B5 44 441 44122 2629 26 Europe/Paris 2012-01-18
-2987706 Petite-Rosselle Petite-Rosselle Kleinrosseln,Petit Rossel,Petite-Rosselle,Petite-Rousselle 49.21177 6.85607 P PPL FR B2 57 573 57537 6973 245 Europe/Paris 2011-09-25
-2987722 Petite-Forêt Petite-Foret 50.36667 3.48333 P PPL FR B4 59 596 59459 5017 45 Europe/Paris 2007-11-14
-2987805 Pessac Pessac Pecac,Pessac,Pessake,Peçac,Пессаке 44.81011 -0.64129 P PPL FR 97 33 332 33318 57944 38 Europe/Paris 2012-01-18
-2987808 Pesmes Pesmes Pesmes 47.28008 5.56698 P PPL FR A6 70 702 70408 1117 214 Europe/Paris 2012-01-18
-2987813 Peschadoires Peschadoires Peschadoire,Peschadoires 45.82391 3.50243 P PPL FR 98 63 635 63276 2060 304 Europe/Paris 2012-01-18
-2987825 Pertuis Pertuis Pertuis 43.69252 5.50285 P PPL FR B8 84 841 84089 19926 214 Europe/Paris 2012-01-18
-2987834 Perthes Perthes 48.47821 2.55509 P PPL FR A8 77 772 77359 2093 82 Europe/Paris 2011-11-02
-2987843 Pers-Jussy Pers-Jussy Pers,Pers-Jussy 46.10625 6.26749 P PPL FR B9 74 743 74211 2386 611 Europe/Paris 2012-01-18
-2987847 Persan Persan Persan 49.15336 2.27218 P PPL FR A8 95 953 95487 9314 27 Europe/Paris 2012-01-18
-2987855 Perrusson Perrusson Perrusson 47.09873 1.01438 P PPL FR A3 37 373 37183 1511 80 Europe/Paris 2012-01-18
-2987863 Perros-Guirec Perros-Guirec Perros-Guirec,Perroz-Gireg 48.81454 -3.43963 P PPL FR A2 22 223 22168 8062 49 Europe/Paris 2012-01-18
-2987874 Perrigny-lès-Dijon Perrigny-les-Dijon Perrigny,Perrigny-les-Dijon,Perrigny-lès-Dijon 47.26648 5.00628 P PPL FR A1 21 212 21481 1703 254 Europe/Paris 2012-01-18
-2987878 Perrigny Perrigny Perrigny 46.66744 5.58456 P PPL FR A6 39 392 39411 1762 309 Europe/Paris 2012-01-18
-2987879 Perrignier Perrignier Perrignier 46.3064 6.44465 P PPL FR B9 74 744 74210 1504 571 Europe/Paris 2012-01-18
-2987880 Perriers-sur-Andelle Perriers-sur-Andelle Perriers,Perriers-sur-Andelle 49.41487 1.37098 P PPL FR A7 27 271 27453 1865 52 Europe/Paris 2012-01-18
-2987893 Perreux Perreux Perreux 46.03838 4.12205 P PPL FR B9 42 422 42170 2444 319 Europe/Paris 2012-01-18
-2987901 Perrecy-les-Forges Perrecy-les-Forges Cercy-la-Dheune,Perrecey,Perrecy,Perrecy-les-Forges 46.61452 4.2138 P PPL FR A1 71 713 71346 1734 286 Europe/Paris 2012-01-18
-2987914 Perpignan Perpignan Perpignan,Perpignan la Catalane,Perpignano,Perpin'jan,Perpinan,Perpinha,Perpinhan,Perpinhã,Perpinjan,Perpinya,Perpinya la Catalana,Perpinyà,Perpinyà la Catalana,Perpiñán,Villa Perpiniarum,perupinyan,Перпиньян,Перпинян,ペルピニャン 42.69764 2.89541 P PPLA2 FR A9 66 662 66136 110706 43 Europe/Paris 2010-09-08
-2987919 Péroy-les-Gombries Peroy-les-Gombries Peroy,Peroy-les-Gombries,Péroy,Péroy-les-Gombries 49.16248 2.84556 P PPL FR B6 60 604 60489 1042 130 Europe/Paris 2012-01-18
-2987922 Pérouges Perouges Perouges,Pérouges 45.90735 5.17273 P PPL FR B9 01 012 01290 1208 288 Europe/Paris 2012-01-18
-2987928 Péronne Peronne 49.93333 2.93333 P PPLA3 FR B6 80 804 80620 9011 61 Europe/Paris 2011-11-02
-2987930 Péronnas Peronnas Peronnas,Péronnas 46.19073 5.20819 P PPL FR B9 01 012 01289 6411 240 Europe/Paris 2012-01-18
-2987932 Péron Peron 46.19053 5.92524 P PPL FR B9 01 013 01288 1729 542 Europe/Paris 2008-04-04
-2987936 Pérols Perols Perols,Pérols 43.56313 3.95203 P PPL FR A9 34 343 34198 8753 9 Europe/Paris 2012-01-18
-2987945 Pernes-les-Fontaines Pernes-les-Fontaines Pernes,Pernes-les-Fontaines 44.00028 5.05141 P PPL FR B8 84 843 84088 10868 75 Europe/Paris 2012-01-18
-2987947 Pernes Pernes Pernes,Pernes-en-Artois 50.48437 2.41253 P PPL FR B4 62 621 62652 1667 83 Europe/Paris 2012-01-18
-2987967 Périgueux Perigueux Perige,Perigueers,Periguers,Perigueux,Periguex,Perigüers,Périgueux,Périguex,perigu,Периге,ペリグー 45.18333 0.71667 P PPLA2 FR 97 24 243 24322 34770 103 Europe/Paris 2011-12-08
-2987972 Périgny Perigny Perigny,Perigny-sur-Yerres,Périgny,Périgny-sur-Yerres 48.69656 2.55537 P PPL FR A8 94 941 94056 2087 93 Europe/Paris 2012-01-18
-2987976 Périgny Perigny Perigny,Périgny 46.15519 -1.09822 P PPL FR B7 17 173 17274 6460 15 Europe/Paris 2012-01-18
-2987978 Périgneux Perigneux Perigneux,Périgneux 45.44001 4.15655 P PPL FR B9 42 421 42169 1250 643 Europe/Paris 2012-01-18
-2987980 Pérignat-sur-Allier Perignat-sur-Allier Perignat,Perignat-es-Allier,Perignat-les-Allier,Perignat-sur-Allier,Pérignat,Pérignat-es-Allier,Pérignat-les-Allier,Pérignat-sur-Allier 45.72904 3.2348 P PPL FR 98 63 632 63273 1302 345 Europe/Paris 2012-01-18
-2987981 Pérignat-lès-Sarliève Perignat-les-Sarlieve Perignat,Perignat-les-Sarlieve,Pérignat,Pérignat-lès-Sarliève 45.73571 3.14024 P PPL FR 98 63 632 63272 2307 373 Europe/Paris 2012-01-18
-2987982 Pérignac Perignac Perignac,Pérignac 45.62306 -0.46488 P PPL FR B7 17 174 17273 1041 41 Europe/Paris 2012-01-18
-2987986 Périers Periers Periers,Périers 49.18667 -1.40762 P PPL FR 99 50 503 50394 2647 29 Europe/Paris 2012-01-18
-2987989 Peri Peri Peri 42.00394 8.92096 P PPL FR A5 2A 2A1 2A209 1198 429 Europe/Paris 2012-01-18
-2988003 Pérenchies Perenchies Perenchies,Pérenchies 50.67013 2.97024 P PPL FR B4 59 595 59457 7761 32 Europe/Paris 2012-01-18
-2988017 Percy Percy Percy 48.91714 -1.18916 P PPL FR 99 50 504 50393 2236 125 Europe/Paris 2012-01-18
-2988043 Pépieux Pepieux Pepieux,Pépieux 43.29735 2.67952 P PPL FR A9 11 111 11280 1072 89 Europe/Paris 2012-01-18
-2988054 Penvénan Penvenan 48.81182 -3.2955 P PPL FR A2 22 223 22166 2545 66 70 Europe/Paris 2007-11-29
-2988063 Penta-di-Casinca Penta-di-Casinca Penta,Penta-di-Casinca 42.46687 9.45902 P PPL FR A5 2B 2B3 2B207 2670 376 Europe/Paris 2012-01-18
-2988082 Pennautier Pennautier Pennautier 43.24512 2.31892 P PPL FR A9 11 111 11279 2409 117 Europe/Paris 2012-01-18
-2988119 Pénestin Penestin Penestin,Pennestin,Pénestin 47.48226 -2.47275 P PPL FR A2 56 563 56155 1627 12 Europe/Paris 2012-01-18
-2988127 Pendé Pende Pende,Pendé 50.16055 1.58541 P PPL FR B6 80 801 80618 1003 7 Europe/Paris 2012-01-18
-2988128 Pencran Pencran Pencran,Penn-ar-C'hrann 48.43333 -4.23333 P PPL FR A2 29 291 29156 1330 170 Europe/Paris 2012-01-18
-2988160 Pélussin Pelussin Pelussin,Pélussin 45.41808 4.68248 P PPL FR B9 42 423 42168 3441 421 Europe/Paris 2012-01-18
-2988161 Peltre Peltre Peltre 49.0747 6.22692 P PPL FR B2 57 574 57534 1654 197 Europe/Paris 2012-01-18
-2988163 Pelousey Pelousey Pelousey 47.27538 5.92263 P PPL FR A6 25 251 25448 1268 230 Europe/Paris 2012-01-18
-2988169 Pellouailles-les-Vignes Pellouailles-les-Vignes Pellouailles 47.52172 -0.43954 P PPL FR B5 49 491 49238 2333 36 Europe/Paris 2010-07-15
-2988174 Pellegrue Pellegrue Pellegrue 44.74355 0.07595 P PPL FR 97 33 333 33316 1075 104 Europe/Paris 2012-01-18
-2988186 Pélissanne Pelissanne Pelissanne,Pélissanne 43.63512 5.15131 P PPL FR B8 13 131 13069 9064 93 Europe/Paris 2012-01-18
-2988208 Peipin Peipin Peipin 44.13778 5.95722 P PPL FR B8 04 044 04145 1144 500 Europe/Paris 2010-12-20
-2988212 Peillonnex Peillonnex Peillonnex 46.13215 6.3758 P PPL FR B9 74 742 74209 1202 691 Europe/Paris 2012-01-18
-2988213 Peillon Peillon Peillon 43.77861 7.38278 P PPL FR B8 06 062 06092 1270 369 Europe/Paris 2010-12-23
-2988214 Peille Peille Peille 43.80587 7.40429 P PPL FR B8 06 062 06091 2123 694 Europe/Paris 2012-01-18
-2988215 Peillac Peillac Paolieg,Peillac 47.71391 -2.21971 P PPL FR A2 56 563 56154 1787 65 Europe/Paris 2012-01-18
-2988220 Pégomas Pegomas Pegomas,Pégomas 43.5985 6.93032 P PPL FR B8 06 061 06090 6052 23 Europe/Paris 2012-01-18
-2988229 Pédernec Pedernec Pedernec,Pederneg,Pédernec 48.59682 -3.26948 P PPL FR A2 22 222 22164 1725 128 Europe/Paris 2012-01-18
-2988236 Pecquencourt Pecquencourt Pecquencourt 50.3785 3.21277 P PPL FR B4 59 593 59456 6703 20 Europe/Paris 2012-01-18
-2988251 Pechbonnieu Pechbonnieu Echbonnieu,Pechbonnieu 43.70242 1.46538 P PPL FR B3 31 313 31410 3357 194 Europe/Paris 2012-01-18
-2988259 Péchabou Pechabou Pechabou,Péchabou 43.50241 1.50934 P PPL FR B3 31 313 31409 1461 186 Europe/Paris 2012-01-18
-2988268 Péaule Peaule Peaule,Pleaol,Péaule 47.57972 -2.35601 P PPL FR A2 56 563 56153 2362 86 Europe/Paris 2012-01-18
-2988269 Peaugres Peaugres Peaugres 45.2877 4.7291 P PPL FR B9 07 073 07172 1785 375 Europe/Paris 2012-01-18
-2988284 Payzac Payzac Payzac-de-Lanouaille 45.4 1.21667 P PPL FR 97 24 242 24320 1100 354 Europe/Paris 2007-11-14
-2988292 Payrin-Augmontel Payrin-Augmontel Payrin,Payrin-Augmontel 43.5445 2.35406 P PPL FR B3 81 812 81204 2123 340 Europe/Paris 2012-01-18
-2988301 Payns Payns Payns 48.38255 3.97755 P PPL FR A4 10 103 10282 1054 92 Europe/Paris 2012-01-18
-2988305 Pavilly Pavilly Pavilly 49.56703 0.95445 P PPL FR A7 76 763 76495 6251 56 Europe/Paris 2012-01-18
-2988309 Pavie Pavie Padie,Pavie 43.60969 0.59143 P PPL FR B3 32 321 32307 2464 143 Europe/Paris 2012-01-18
-2988323 Paulx Paulx Palud,Paulx 46.96181 -1.7552 P PPL FR B5 44 442 44119 1473 17 Europe/Paris 2012-01-18
-2988339 Paulhan Paulhan Paulhan 43.53944 3.4576 P PPL FR A9 34 342 34194 3232 44 Europe/Paris 2012-01-18
-2988340 Paulhaguet Paulhaguet Paulhaguet 45.20782 3.51416 P PPL FR 98 43 431 43148 1040 550 Europe/Paris 2012-01-18
-2988345 Paulhac Paulhac Paulhac 43.75639 1.55667 P PPL FR B3 31 313 31407 1032 182 Europe/Paris 2011-01-09
-2988350 Pauillac Pauillac Pauillac,Paulhac 45.19644 -0.74873 P PPL FR 97 33 334 33314 5792 10 Europe/Paris 2012-01-18
-2988358 Pau Pau Pau,Paue,po,Пау,ポー 43.3 -0.36667 P PPLA2 FR 97 64 643 64445 82697 216 Europe/Paris 2011-11-02
-2988374 Patay Patay Patay 48.04833 1.695 P PPL FR A3 45 452 45248 2137 123 Europe/Paris 2012-01-18
-2988393 Passy Passy Passy 45.92028 6.68765 P PPL FR B9 74 742 74208 11613 608 Europe/Paris 2012-01-18
-2988421 Pasly Pasly Pasly 49.40167 3.29631 P PPL FR B6 02 024 02593 1021 67 Europe/Paris 2012-01-18
-2988422 Paslières Paslieres Paslieres,Paslières 45.92844 3.49352 P PPL FR 98 63 635 63271 1431 370 Europe/Paris 2012-01-18
-2988447 Parthenay Parthenay 46.65 -0.25 P PPLA3 FR B7 79 793 79202 11599 149 Europe/Paris 2011-11-02
-2988475 Paron Paron Paron 48.17888 3.25076 P PPL FR A1 89 893 89287 4543 89 Europe/Paris 2012-01-18
-2988490 Parmain Parmain Parmain 49.11247 2.21487 P PPL FR A8 95 953 95480 5629 29 Europe/Paris 2012-01-18
-2988507 Paris Paris Lungsod ng Paris,Lutece,Lutetia Parisorum,PAR,Pa-ri,Paarys,Paname,Pantruche,Paraeis,Paras,Pari,Paries,Pariggi,Parigi,Pariis,Pariisi,Parijs,Paris,Paris - Paris,Parisi,Pariz,Parize,Parizh,Parizo,Parizs,Parys,Paryz,Paryzh,Paryzius,Paryż,Paryžius,Paräis,París,París - Paris,Paríž,Parîs,Parīze,Paříž,Páras,Párizs,Ville-Lumiere,Ville-Lumière,ba li,barys,pali si,pari,paris,parys,paryzh,perisa,prys,pryz,pyaris,pyrs,Παρίσι,Париж,Париз,Парыж,Փարիզ,פריז,باريس,پارىژ,پاریس,پیرس,ܦܪܝܣ,पॅरिस,பாரிஸ்,ಪ್ಯಾರಿಸ್,ปารีส,პარიზი,ፓሪስ,パリ,巴黎,파리 시 48.85341 2.3488 P PPLC FR A8 75 751 75056 2138551 42 Europe/Paris 2011-11-04
-2988511 Parigny Parigny Parigny 48.5945 -1.07925 P PPL FR 99 50 501 50391 1751 83 Europe/Paris 2012-01-18
-2988517 Parigné-le-Pôlin Parigne-le-Polin Parigne,Parigne-le-Polin,Parigné,Parigné-le-Pôlin 47.84988 0.10705 P PPL FR B5 72 721 72230 1028 84 Europe/Paris 2012-01-18
-2988518 Parigné Parigne Parigne,Parigné,Parinieg 48.42727 -1.1921 P PPL FR A2 35 351 35215 1241 159 Europe/Paris 2012-01-18
-2988523 Pargny-sur-Saulx Pargny-sur-Saulx Pargny,Pargny-sur-Saulx 48.76866 4.83758 P PPL FR A4 51 514 51423 2199 130 Europe/Paris 2012-01-18
-2988542 Parentis-en-Born Parentis-en-Born Parentis,Parentis-en-Born 44.35274 -1.07095 P PPL FR 97 40 402 40217 4996 32 Europe/Paris 2012-01-18
-2988548 Parempuyre Parempuyre Parempuyre 44.95038 -0.60453 P PPL FR 97 33 332 33312 7143 10 Europe/Paris 2012-01-18
-2988572 Parcé-sur-Sarthe Parce-sur-Sarthe Parce,Parce-sur-Sarthe,Parcé,Parcé-sur-Sarthe 47.84356 -0.20104 P PPL FR B5 72 721 72228 1891 44 Europe/Paris 2012-01-18
-2988576 Parçay-Meslay Parcay-Meslay Parcay-Meslay,Parçay-Meslay 47.44195 0.74847 P PPL FR A3 37 372 37179 2305 104 Europe/Paris 2012-01-18
-2988577 Parçay-les-Pins Parcay-les-Pins Parcay,Parcay-les-Pins,Parçay,Parçay-les-Pins 47.43668 0.16312 P PPL FR B5 49 493 49234 1069 90 Europe/Paris 2012-01-18
-2988589 Paray-Vieille-Poste Paray-Vieille-Poste Paray,Paray-Vielly 48.71402 2.36283 P PPL FR A8 91 913 91479 7559 86 Europe/Paris 2011-11-02
-2988592 Paray-le-Monial Paray-le-Monial Paray,Paray-le-Monial 46.45457 4.11584 P PPL FR A1 71 713 71342 9840 244 Europe/Paris 2012-01-18
-2988609 Paradou Paradou Le Paradou,Paradou 43.71729 4.78458 P PPL FR B8 13 132 13068 1228 21 Europe/Paris 2012-01-18
-2988621 Pantin Pantin Pantin,Пантин 48.89437 2.40935 P PPL FR A8 93 931 93055 52922 55 Europe/Paris 2012-01-18
-2988632 Pannes Pannes Pannes 48.01937 2.66755 P PPL FR A3 45 451 45247 3141 91 Europe/Paris 2012-01-18
-2988634 Pannecé Pannece Panezeg,Pannece,Pannecé 47.48583 -1.2394 P PPL FR B5 44 444 44118 1025 34 Europe/Paris 2012-01-18
-2988637 Panissières Panissieres Panissieres,Panissières 45.79282 4.33955 P PPL FR B9 42 421 42165 2850 614 Europe/Paris 2012-01-18
-2988656 Pancé Pance Pance,Pancé,Pantieg 47.88181 -1.65953 P PPL FR A2 35 352 35212 1048 93 Europe/Paris 2012-01-18
-2988657 Panazol Panazol Panasou,Panasòu,Panazol 45.83465 1.32759 P PPL FR B1 87 872 87114 10055 298 Europe/Paris 2012-01-18
-2988663 Pamproux Pamproux Pamproux 46.39578 -0.05327 P PPL FR B7 79 792 79201 1682 97 Europe/Paris 2012-01-18
-2988670 Pamiers Pamiers Pamias,Pamiers,Pamies,Pàmias,Pàmies,pamie,パミエ 43.11667 1.6 P PPLA3 FR B3 09 092 09225 16997 275 Europe/Paris 2011-11-02
-2988722 Palinges Palinges Palinges 46.55357 4.21964 P PPL FR A1 71 713 71340 1522 274 Europe/Paris 2012-01-18
-2988742 Palavas-les-Flots Palavas-les-Flots Palavas,Palavas-les-Flots 43.52805 3.92705 P PPL FR A9 34 343 34192 6055 0 3 Europe/Paris 2012-01-18
-2988743 Palau-del-Vidre Palau-del-Vidre Palau,Palau-del-Vidre 42.57162 2.96033 P PPL FR A9 66 661 66133 2324 25 Europe/Paris 2012-01-18
-2988756 Palaja Palaja Palaja 43.17363 2.38462 P PPL FR A9 11 111 11272 2022 178 Europe/Paris 2012-01-18
-2988758 Palaiseau Palaiseau Palaiseau,Paliseau 48.71667 2.25 P PPLA3 FR A8 91 913 91477 31987 84 Europe/Paris 2011-11-02
-2988794 Paimpont Paimpont Paimpont,Pempont 48.01809 -2.17106 P PPL FR A2 35 353 35211 1549 158 Europe/Paris 2012-01-18
-2988796 Paimpol Paimpol Paimpol,Pempoull 48.77841 -3.04375 P PPL FR A2 22 224 22162 8603 6 Europe/Paris 2012-01-18
-2988797 Paimbœuf Paimboeuf Paimboeuf,Paimbœuf,Pembo,Saint-Paimboeuf 47.28654 -2.03048 P PPL FR B5 44 443 44116 3015 6 Europe/Paris 2012-01-18
-2988806 Paillet Paillet Paillet 44.68512 -0.365 P PPL FR 97 33 333 33311 1079 10 Europe/Paris 2012-01-18
-2988823 Pagny-sur-Moselle Pagny-sur-Moselle Pagny,Pagny-sur-Moselle 48.98349 6.02084 P PPL FR B2 54 543 54415 4149 185 Europe/Paris 2012-01-18
-2988848 Pacy-sur-Eure Pacy-sur-Eure Pacy,Pacy-sur-Eure 49.01667 1.38333 P PPL FR A7 27 273 27448 5201 51 Europe/Paris 2012-01-18
-2988853 Pacé Pace Pace,Pacé,Pazieg 48.14848 -1.77327 P PPL FR A2 35 353 35210 8608 53 Europe/Paris 2012-01-18
-2988856 Pabu Pabu Pabu 48.58608 -3.13608 P PPL FR A2 22 222 22161 2829 112 Europe/Paris 2012-01-18
-2988859 Ozouer-le-Voulgis Ozouer-le-Voulgis Ozouer,Ozouer-le-Voulgis 48.66012 2.77409 P PPL FR A8 77 772 77352 1617 97 Europe/Paris 2012-01-18
-2988867 Ozoir-la-Ferrière Ozoir-la-Ferriere Ozoir,Ozoir-la-Ferriere,Ozoir-la-Ferrière,Ozoir-la-Raison 48.76699 2.66871 P PPL FR A8 77 775 77350 22530 108 Europe/Paris 2012-01-18
-2988884 Oytier-Saint-Oblas Oytier-Saint-Oblas Oytier,Oytier-Saint-Oblas 45.56104 5.02065 P PPL FR B9 38 383 38288 1453 256 Europe/Paris 2012-01-18
-2988888 Oyonnax Oyonnax Oyannax,Oyonnax 46.25917 5.65727 P PPL FR B9 01 014 01283 25697 556 Europe/Paris 2011-11-02
-2988893 Oye-Plage Oye-Plage Oye,Oye-Plage 50.97713 2.04276 P PPL FR B4 62 625 62645 5683 4 Europe/Paris 2012-01-18
-2988902 Ouzouer-sur-Trézée Ouzouer-sur-Trezee Ouzouer,Ouzouer-sur-Trezee,Ouzouer-sur-Trézée 47.67266 2.808 P PPL FR A3 45 451 45245 1276 161 Europe/Paris 2012-01-18
-2988903 Ouzouer-sur-Loire Ouzouer-sur-Loire Ouzouer-sur-Loire 47.76638 2.48038 P PPL FR A3 45 452 45244 2676 136 Europe/Paris 2012-01-18
-2988905 Ouzouer-le-Marché Ouzouer-le-Marche Ouzouer,Ouzouer-le-Marche,Ouzouer-le-Marché 47.91055 1.52607 P PPL FR A3 41 411 41173 1634 132 Europe/Paris 2012-01-18
-2988922 Ouveillan Ouveillan Ouveillan 43.28915 2.97124 P PPL FR A9 11 113 11269 2041 38 Europe/Paris 2012-01-18
-2988936 Outreau Outreau Outreau 50.70535 1.5897 P PPL FR B4 62 623 62643 15648 59 Europe/Paris 2012-01-18
-2988942 Outarville Outarville Outarville 48.21393 2.02198 P PPL FR A3 45 453 45240 1521 133 Europe/Paris 2012-01-18
-2988956 Ousse Ousse Ousse 43.28333 -0.26667 P PPL FR 97 64 643 64439 1346 235 Europe/Paris 2012-01-18
-2988958 Ourville-en-Caux Ourville-en-Caux Ourville,Ourville-en-Caux 49.72854 0.6046 P PPL FR A7 76 762 76490 1060 118 Europe/Paris 2012-01-18
-2988965 Oursbelille Oursbelille Oursbelille 43.28508 0.03473 P PPL FR B3 65 653 65350 1251 280 Europe/Paris 2012-01-18
-2988971 Ouroux-sur-Saône Ouroux-sur-Saone Ouroux,Ouroux-sur-Saone,Ouroux-sur-Saône 46.72147 4.95262 P PPL FR A1 71 712 71336 2510 192 Europe/Paris 2012-01-18
-2988998 Oullins Oullins Oullins 45.71774 4.80382 P PPL FR B9 69 691 69149 25592 173 Europe/Paris 2012-01-18
-2989001 Oulins Oulins Oulins 48.86451 1.47038 P PPL FR A3 28 283 28293 1034 76 Europe/Paris 2012-01-18
-2989013 Ouistreham Ouistreham Ouistrehain,Ouistreham 49.27566 -0.2591 P PPL FR 99 14 142 14488 9067 12 Europe/Paris 2012-01-18
-2989036 Ouges Ouges Ouges 47.26164 5.07395 P PPL FR A1 21 212 21473 1388 218 Europe/Paris 2012-01-18
-2989058 Oudon Oudon Oudon 47.34774 -1.285 P PPL FR B5 44 444 44115 2845 24 Europe/Paris 2012-01-18
-2989065 Oucques Oucques Oncques,Oucques 47.82252 1.29383 P PPL FR A3 41 411 41171 1368 127 Europe/Paris 2012-01-18
-2989068 Ouches Ouches Ouches 46.01657 3.98824 P PPL FR B9 42 422 42162 1143 321 Europe/Paris 2012-01-18
-2989082 Ottrott Ottrott 48.45642 7.42556 P PPL FR C1 67 673 67368 1621 280 Europe/Paris 2007-07-05
-2989084 Ottmarsheim Ottmarsheim Ottmarsheim 47.78655 7.50935 P PPL FR C1 68 684 68253 2018 219 Europe/Paris 2012-01-18
-2989085 Otterswiller Otterswiller 48.72568 7.37878 P PPL FR C1 67 674 67367 1266 198 Europe/Paris 2007-07-10
-2989087 Ottange Ottange Ottange 49.44191 6.01734 P PPL FR B2 57 578 57529 2666 306 Europe/Paris 2012-01-18
-2989088 Othis Othis 49.07387 2.67502 P PPL FR A8 77 771 77349 7084 111 Europe/Paris 2006-04-01
-2989093 Ostwald Ostwald Ostwald 48.54369 7.71099 P PPL FR C1 67 676 67365 11261 142 Europe/Paris 2011-11-02
-2989094 Ostricourt Ostricourt Ostricourt 50.45145 3.03417 P PPL FR B4 59 595 59452 5522 29 Europe/Paris 2012-01-18
-2989100 Ostheim Ostheim Ostheim 48.15999 7.36982 P PPL FR C1 68 685 68252 1433 181 Europe/Paris 2012-01-18
-2989108 Ossun Ossun Beauvais-de-Preau,Beauvais-de-Préau,Mardin,Ossun 43.18333 -0.03333 P PPL FR B3 65 653 65344 2267 385 Europe/Paris 2012-01-18
-2989119 Osséja Osseja Oceja,Osseja,Osséja 42.41383 1.98192 P PPL FR A9 66 663 66130 1673 1251 Europe/Paris 2008-03-21
-2989122 Ossé Osse Oc'heg,Osse,Ossé 48.05542 -1.45029 P PPL FR A2 35 351 35209 1013 60 Europe/Paris 2012-01-18
-2989130 Osny Osny Osny 49.05937 2.06183 P PPL FR A8 95 953 95476 16545 59 Europe/Paris 2012-01-18
-2989170 Orvault Orvault Orvault,Orvez,Orvo,Орво 47.27095 -1.6219 P PPL FR B5 44 442 44114 25338 38 Europe/Paris 2012-01-18
-2989174 Orval Orval Orval 46.72581 2.47144 P PPL FR A3 18 182 18172 2010 168 Europe/Paris 2012-01-18
-2989187 Orthez Orthez Orthe,Orthez 43.48838 -0.77244 P PPL FR 97 64 643 64430 11857 78 Europe/Paris 2012-01-18
-2989193 Ortaffa Ortaffa Ortafa,Ortaffa,Ortafà 42.57978 2.92653 P PPL FR A9 66 662 66129 1192 32 Europe/Paris 2012-01-18
-2989204 Orsay Orsay Orsay 48.69572 2.18727 P PPL FR A8 91 913 91471 17817 88 Europe/Paris 2012-01-18
-2989208 Orsan Orsan Orsan 44.13106 4.6652 P PPL FR A9 30 302 30191 1143 53 Europe/Paris 2012-01-18
-2989211 Orry-la-Ville Orry-la-Ville Orry,Orry-la-Ville 49.13345 2.5114 P PPL FR B6 60 604 60482 3486 75 Europe/Paris 2012-01-18
-2989241 Ornex Ornex Ornex 46.2727 6.09982 P PPL FR B9 01 013 01281 2946 476 Europe/Paris 2010-12-14
-2989252 Ornans Ornans Ornans 47.10749 6.14306 P PPL FR A6 25 251 25434 4235 337 Europe/Paris 2012-01-18
-2989253 Ornaisons Ornaisons Ornaisons 43.1804 2.83689 P PPL FR A9 11 113 11267 1146 41 Europe/Paris 2012-01-18
-2989263 Ormoy Ormoy Ormoy 48.57489 2.45206 P PPL FR A8 91 912 91468 1311 54 Europe/Paris 2012-01-18
-2989271 Ormesson-sur-Marne Ormesson-sur-Marne Ormesson,Ormesson-sur-Marne 48.7863 2.54471 P PPL FR A8 94 942 94055 9922 97 Europe/Paris 2012-01-18
-2989281 Ormes Ormes Ormes 47.94152 1.81823 P PPL FR A3 45 452 45235 3219 117 Europe/Paris 2012-01-18
-2989297 Orly Orly Orly 48.74792 2.39252 P PPL FR A8 94 941 94054 20528 81 Europe/Paris 2012-01-18
-2989301 Orliénas Orlienas Orlienas,Orliénas 45.65858 4.71707 P PPL FR B9 69 691 69148 2094 310 Europe/Paris 2012-01-18
-2989308 Orleix Orleix Orleix 43.27932 0.12033 P PPL FR B3 65 653 65340 1750 279 Europe/Paris 2012-01-18
-2989309 Orléat Orleat Orleat,Orléat 45.86163 3.42194 P PPL FR 98 63 635 63265 1814 368 Europe/Paris 2012-01-18
-2989317 Orléans Orleans Aurelia,Orleaes,Orlean,Orleans,Orleáns,Orleães,Orlèans,Orléans,ao er liang,oleulleang,orurean,Орлеан,אורליאן,オルレアン,奥尔良,오를레앙 47.90289 1.90389 P PPLA FR A3 45 452 45234 124149 115 Europe/Paris 2012-01-18
-2989325 Orival Orival Orival 49.72429 1.20512 P PPL FR A7 76 761 76588 1088 72 Europe/Paris 2012-02-27
-2989340 Origny-Sainte-Benoite Origny-Sainte-Benoite Origny,Origny-sur-Oise 49.83333 3.5 P PPL FR B6 02 023 02575 1780 106 Europe/Paris 2007-11-15
-2989344 Origny-en-Thiérache Origny-en-Thierache Origny,Origny-en-Thierache,Origny-en-Thiérache,Origny-sur-le-Thon 49.89327 4.01644 P PPL FR B6 02 025 02574 1456 147 Europe/Paris 2012-01-18
-2989359 Orgueil Orgueil Orgueil 43.90618 1.41071 P PPL FR B3 82 822 82136 1049 109 Europe/Paris 2011-01-09
-2989362 Orgon Orgon Orgon 43.79108 5.03869 P PPL FR B8 13 132 13067 2973 97 Europe/Paris 2011-01-18
-2989372 Orgeval Orgeval Orgeval 48.92162 1.9779 P PPL FR A8 78 783 78466 5081 100 Europe/Paris 2012-01-18
-2989376 Orgerus Orgerus Orgerus 48.83851 1.70132 P PPL FR A8 78 781 78465 2364 123 Europe/Paris 2012-01-18
-2989378 Orgères-en-Beauce Orgeres-en-Beauce Orgeres,Orgeres-en-Beauce,Orgères,Orgères-en-Beauce 48.14636 1.6838 P PPL FR A3 28 282 28287 1072 130 Europe/Paris 2012-01-18
-2989382 Orgères Orgeres An Heizeg,Orgeres,Orgères 47.99886 -1.66781 P PPL FR A2 35 353 35208 3143 47 Europe/Paris 2012-01-18
-2989385 Orgelet Orgelet Orgelet 46.52096 5.61049 P PPL FR A6 39 392 39397 1752 507 Europe/Paris 2011-01-14
-2989417 Orcines Orcines Orcines 45.7838 3.0122 P PPL FR 98 63 632 63263 3255 832 Europe/Paris 2012-01-18
-2989422 Orchies Orchies Orchies 50.46667 3.23333 P PPL FR B4 59 593 59449 7692 38 Europe/Paris 2012-01-18
-2989425 Orchamps-Vennes Orchamps-Vennes Orchamps 47.13042 6.52468 P PPL FR A6 25 253 25432 1668 757 Europe/Paris 2010-09-13
-2989426 Orchamps Orchamps Orchamps 47.14752 5.65873 P PPL FR A6 39 391 39396 1040 226 Europe/Paris 2012-01-18
-2989430 Orcet Orcet Orcet 45.70351 3.16807 P PPL FR 98 63 632 63262 2802 391 Europe/Paris 2012-01-18
-2989441 Orbey Orbey 48.12651 7.16455 P PPL FR C1 68 685 68249 3729 473 Europe/Paris 2007-07-03
-2989445 Orbec Orbec Orbec-en-Auge 49.01667 0.41667 P PPL FR 99 14 143 14478 2703 149 Europe/Paris 2007-11-14
-2989460 Orange Orange Arauzion,Aurenja,Orange,Oranzas,Oranžas,oranju,Араузион,オランジュ 44.1392 4.80791 P PPL FR B8 84 842 84087 30530 47 Europe/Paris 2012-01-18
-2989461 Oraison Oraison Oraison 43.91609 5.91756 P PPL FR B8 04 043 04143 4399 369 Europe/Paris 2012-01-18
-2989466 Oradour-sur-Vayres Oradour-sur-Vayres Oradour,Oradour-sur-Vavres,Oradour-sur-Vayres,Quardor 45.73286 0.86457 P PPL FR B1 87 873 87111 1713 345 Europe/Paris 2012-01-18
-2989467 Oradour-sur-Glane Oradour-sur-Glane Matanza de Oradour-sur-Glane,Orador de Glana,Oradour,Oradour-sur-Glane,Oradur-sjur-Glan,Roche-sur-Graine,Орадур-сюр-Глан,אורדור-סור-גלאן,オラドゥール・シュル・グラヌ 45.93405 1.0317 P PPL FR B1 87 873 87110 2088 276 Europe/Paris 2012-01-18
-2989484 Oppède Oppede Oppede,Oppede-les-Poulivets,Oppède,Oppède-les-Poulivets 43.82866 5.16161 P PPL FR B8 84 841 84086 1314 242 Europe/Paris 2012-01-18
-2989486 Opio Opio Opio 43.66759 6.98566 P PPL FR B8 06 061 06089 2103 259 Europe/Paris 2012-01-18
-2989495 Onzain Onzain Onzain 47.49956 1.17701 P PPL FR A3 41 411 41167 3354 64 Europe/Paris 2012-01-18
-2989501 Ons-en-Bray Ons-en-Bray Ons,Ons-en-Bray,Onsembray 49.41631 1.92302 P PPL FR B6 60 601 60477 1340 122 Europe/Paris 2012-01-18
-2989506 Onnaing Onnaing Onnaing 50.38584 3.59963 P PPL FR B4 59 596 59447 8703 29 Europe/Paris 2012-01-18
-2989519 Onesse-et-Laharie Onesse-et-Laharie Onesse,Onesse-et-Laharie 44.06146 -1.06984 P PPL FR 97 40 402 40210 1020 43 Europe/Paris 2012-01-18
-2989525 Ondres Ondres Ondres 43.56461 -1.44449 P PPL FR 97 40 401 40209 3983 29 Europe/Paris 2012-01-18
-2989526 Ondes Ondes Ondes 43.7825 1.30823 P PPL FR B3 31 313 31403 1020 110 Europe/Paris 2011-01-09
-2989545 Omissy Omissy Omissy 49.8776 3.31235 P PPL FR B6 02 023 02571 1078 77 Europe/Paris 2012-01-18
-2989569 Oloron-Sainte-Marie Oloron-Sainte-Marie Auloron,Maratide,Oloron,Oloron Ste Marie,Redoute-Maritime,Redoute-de-l'Agly 43.19441 -0.61069 P PPLA3 FR 97 64 642 64422 12611 221 Europe/Paris 2011-11-02
-2989571 Olonzac Olonzac Olonzac 43.28294 2.73098 P PPL FR A9 34 341 34189 1633 53 Europe/Paris 2012-01-18
-2989572 Olonne-sur-Mer Olonne-sur-Mer Olonne,Olonne-sur-Mer 46.53524 -1.77293 P PPL FR B5 85 853 85166 11157 24 Europe/Paris 2012-01-18
-2989579 Olmeto Olmeto Olmeto 41.71886 8.92023 P PPL FR A5 2A 2A4 2A189 1176 365 Europe/Paris 2012-01-18
-2989590 Ollioules Ollioules Ollioules 43.13517 5.848 P PPL FR B8 83 832 83090 13916 40 Europe/Paris 2012-01-18
-2989601 Ollainville Ollainville Ollainville 48.59081 2.21936 P PPL FR A8 91 913 91461 4883 86 Europe/Paris 2012-01-18
-2989611 Olivet Olivet Oliva,Olivet,Олива 47.86219 1.8991 P PPL FR A3 45 452 45232 22604 105 Europe/Paris 2012-01-18
-2989625 Oletta Oletta Oletta 42.63237 9.356 P PPL FR A5 2B 2B5 2B185 1335 224 Europe/Paris 2012-01-18
-2989629 Olemps Olemps 44.34638 2.5514 P PPL FR B3 12 122 12174 3208 600 Europe/Paris 2008-05-12
-2989640 Oisy-le-Verger Oisy-le-Verger Oisy,Oisy-le-Verger 50.25047 3.1233 P PPL FR B4 62 621 62638 1292 76 Europe/Paris 2012-01-18
-2989645 Oissery Oissery Oissery 49.07047 2.81819 P PPL FR A8 77 771 77344 2247 96 92 Europe/Paris 2012-01-18
-2989646 Oissel Oissel Oissel,Oissel-sur-Seine 49.33309 1.09413 P PPL FR A7 76 763 76484 11495 4 Europe/Paris 2012-01-18
-2989648 Oisseau Oisseau Oisseau 48.35559 -0.67148 P PPL FR B5 53 533 53170 1094 156 Europe/Paris 2012-01-18
-2989652 Oisemont Oisemont Oisemont 49.95587 1.76703 P PPL FR B6 80 801 80606 1328 122 Europe/Paris 2012-01-18
-2989670 Oinville-sur-Montcient Oinville-sur-Montcient Oinville,Oinville-sur-Montcient 49.02722 1.84928 P PPL FR A8 78 781 78460 1183 74 Europe/Paris 2012-01-18
-2989680 Oignies Oignies Oignies 50.46331 2.99376 P PPL FR B4 62 627 62637 10609 29 Europe/Paris 2012-01-18
-2989687 Ohlungen Ohlungen Ohlungen 48.8112 7.70075 P PPL FR C1 67 672 67359 1347 172 Europe/Paris 2012-01-18
-2989701 Ognes Ognes Ognes 49.61244 3.1934 P PPL FR B6 02 022 02566 1110 57 Europe/Paris 2012-01-18
-2989708 Ogeu-les-Bains Ogeu-les-Bains Ogeu,Ogeu-les-Bains 43.15 -0.5 P PPL FR 97 64 642 64421 1112 323 Europe/Paris 2011-09-11
-2989715 Offranville Offranville Offranville 49.87208 1.04817 P PPL FR A7 76 761 76482 3840 83 Europe/Paris 2012-01-18
-2989723 Offenheim Offenheim Offenheim 48.63074 7.61752 P PPL FR C1 67 676 67485 1505 157 Europe/Paris 2012-02-27
-2989725 Offemont Offemont Offemont 47.66416 6.88056 P PPL FR A6 90 901 90075 4163 374 Europe/Paris 2012-01-18
-2989727 Oeyreluy Oeyreluy Oeyreluy 43.66876 -1.08276 P PPL FR 97 40 401 40207 1595 14 Europe/Paris 2012-01-18
-2989736 Œting OEting OEting,Œting 49.16667 6.91667 P PPL FR B2 57 573 57521 1941 362 Europe/Paris 2008-04-09
-2989737 Oermingen Oermingen Oermingen,Ormingen 48.99899 7.12744 P PPL FR C1 67 674 67355 1330 225 Europe/Paris 2012-01-18
-2989742 Odos Odos Odos 43.19622 0.05694 P PPL FR B3 65 653 65331 3451 341 Europe/Paris 2012-01-18
-2989747 Oderen Oderen Oderen 47.91053 6.97475 P PPL FR C1 68 686 68247 1378 467 Europe/Paris 2012-01-18
-2989753 Octeville-sur-Mer Octeville-sur-Mer Octeville,Octeville-sur-Mer 49.55496 0.1166 P PPL FR A7 76 762 76481 4949 78 Europe/Paris 2012-01-18
-2989755 Octeville Octeville 49.62612 -1.64349 P PPL FR 99 50 502 50129 16951 95 Europe/Paris 2011-10-09
-2989785 Objat Objat Objat 45.26238 1.40781 P PPL FR B1 19 191 19153 3452 126 Europe/Paris 2012-01-18
-2989792 Oberschaeffolsheim Oberschaeffolsheim 48.58643 7.65018 P PPL FR C1 67 676 67350 2050 151 Europe/Paris 2007-07-06
-2989796 Obernai Obernai Obernai 48.46313 7.481 P PPL FR C1 67 675 67348 12138 191 Europe/Paris 2011-11-02
-2989799 Obermodern-Zutzendorf Obermodern-Zutzendorf 48.85 7.53333 P PPL FR C1 67 674 67347 1542 173 Europe/Paris 2007-11-14
-2989802 Oberhoffen-sur-Moder Oberhoffen-sur-Moder Oberhofen,Oberhoffen,Oberhoffen-sur-Moder,Oberhosen 48.78059 7.86926 P PPL FR C1 67 672 67345 3119 134 Europe/Paris 2012-01-18
-2989804 Oberhergheim Oberhergheim Oberhergheim 47.96849 7.39609 P PPL FR C1 68 683 68242 1149 203 Europe/Paris 2012-01-18
-2989805 Oberhausbergen Oberhausbergen 48.60607 7.68846 P PPL FR C1 67 676 67343 4758 149 Europe/Paris 2011-02-14
-2989806 Oberhaslach Oberhaslach Oberhaslach 48.55039 7.33213 P PPL FR C1 67 673 67342 1592 279 Europe/Paris 2011-02-14
-2989814 Oberbronn Oberbronn 48.9402 7.607 P PPL FR C1 67 672 67340 1511 272 Europe/Paris 2007-07-10
-2989816 Betschdorf Betschdorf Oberbetschdorf 48.9 7.9 P PPL FR C1 67 677 67339 3961 153 Europe/Paris 2007-11-21
-2989817 Obenheim Obenheim Obenheim 48.35921 7.68952 P PPL FR C1 67 675 67338 1276 158 Europe/Paris 2012-01-18
-2989819 Nyons Nyons Niom,Nyons 44.36667 5.13333 P PPLA3 FR B9 26 262 26220 7330 329 Europe/Paris 2011-11-02
-2989820 Nyoiseau Nyoiseau Nyoiseau 47.71667 -0.91667 P PPL FR B5 49 494 49233 1588 43 Europe/Paris 2012-01-18
-2989837 Nuits-Saint-Georges Nuits-Saint-Georges Nuits,Nuits-Saint-Georges 47.13683 4.949 P PPL FR A1 21 211 21464 5300 242 Europe/Paris 2012-01-18
-2989846 Nuillé-sur-Vicoin Nuille-sur-Vicoin Nuille,Nuille-sur-Vicoin,Nuillé,Nuillé-sur-Vicoin 47.98556 -0.78351 P PPL FR B5 53 532 53168 1103 62 Europe/Paris 2012-01-18
-2989851 Nueil-sur-Layon Nueil-sur-Layon Nueil,Nueil-sur-Layon 47.11811 -0.36573 P PPL FR B5 49 493 49232 1395 87 Europe/Paris 2012-01-18
-2989852 Nueil-les-Aubiers Nueil-les-Aubiers Nueil 46.93333 -0.58333 P PPL FR B7 79 791 79195 5195 108 Europe/Paris 2007-11-14
-2989860 Nuaillé Nuaille Nuaille,Nuaillé 47.09524 -0.79476 P PPL FR B5 49 492 49231 1447 136 Europe/Paris 2012-01-18
-2989874 Nozay Nozay Nozay 48.6592 2.24151 P PPL FR A8 91 913 91458 4833 164 Europe/Paris 2012-01-18
-2989876 Nozay Nozay Nozay,Nozieg 47.56495 -1.62629 P PPL FR B5 44 441 44113 3419 53 Europe/Paris 2012-01-18
-2989877 Noyon Noyon Noyon,Nuajon,Nyon,Нуайон 49.58333 3 P PPL FR B6 60 603 60471 15138 52 Europe/Paris 2012-01-18
-2989879 Noyers-sur-Cher Noyers-sur-Cher Noyers,Noyers-sur-Cher 47.27701 1.4032 P PPL FR A3 41 413 41164 2768 76 Europe/Paris 2012-01-18
-2989890 Noyen-sur-Sarthe Noyen-sur-Sarthe Noyen,Noyen-sur-Sarthe 47.87187 -0.09916 P PPL FR B5 72 721 72223 2401 39 Europe/Paris 2012-01-18
-2989897 Noyelles-sous-Lens Noyelles-sous-Lens Noyelles,Noyelles-sous-Lens 50.43084 2.87221 P PPL FR B4 62 627 62628 7467 26 Europe/Paris 2012-01-18
-2989899 Noyelles-lès-Vermelles Noyelles-les-Vermelles Noyelles,Noyelles-les-Vermelles,Noyelles-lez Vermelles,Noyelles-lès-Vermelles 50.49001 2.72628 P PPL FR B4 62 622 62626 1968 31 Europe/Paris 2012-01-18
-2989901 Noyelles-Godault Noyelles-Godault Noyelles-Godault 50.41753 2.99306 P PPL FR B4 62 627 62624 5624 32 Europe/Paris 2012-01-18
-2989906 Noyarey Noyarey Noyarey 45.2476 5.62837 P PPL FR B9 38 381 38281 2365 225 Europe/Paris 2012-01-18
-2989909 Noyant-la-Gravoyère Noyant-la-Gravoyere Noyant,Noyant-la-Gravoyere,Noyant-la-Gravoyère 47.70348 -0.9573 P PPL FR B5 49 494 49229 1771 95 Europe/Paris 2012-01-18
-2989913 Noyant Noyant Noiant,Noyant,Noyant-sous-le-Lude 47.51048 0.11771 P PPL FR B5 49 493 49228 1975 84 Europe/Paris 2012-01-18
-2989914 Noyal-sur-Vilaine Noyal-sur-Vilaine Noal-ar-Gwilen,Noyal,Noyal-sur-Vilaine 48.1122 -1.52333 P PPL FR A2 35 353 35207 4823 77 Europe/Paris 2012-01-18
-2989918 Noyal-Pontivy Noyal-Pontivy Noal-Pondivi,Noyal-Pontivy 48.06667 -2.88333 P PPL FR A2 56 562 56151 3533 137 Europe/Paris 2012-01-18
-2989920 Noyal-Muzillac Noyal-Muzillac Noal-Muzilheg,Noyal-Muzillac 47.59169 -2.45557 P PPL FR A2 56 563 56149 2053 51 Europe/Paris 2012-01-18
-2989929 Novillars Novillars Novillars 47.28465 6.12878 P PPL FR A6 25 251 25429 1574 264 Europe/Paris 2012-01-18
-2989935 Noves Noves Noves 43.87736 4.90248 P PPL FR B8 13 132 13066 4650 44 Europe/Paris 2011-01-18
-2989938 Novéant-sur-Moselle Noveant-sur-Moselle Noveant,Noveant-sur-Moselle,Novéant,Novéant-sur-Moselle 49.02154 6.04558 P PPL FR B2 57 574 57515 1867 176 Europe/Paris 2012-01-18
-2989941 Novalaise Novalaise Novalaise 45.59693 5.76591 P PPL FR B9 73 732 73191 1554 438 Europe/Paris 2012-01-18
-2989943 Nouzonville Nouzonville Nouzon,Nouzonville 49.81369 4.74736 P PPL FR A4 08 081 08328 6817 153 Europe/Paris 2012-01-18
-2989945 Nouzilly Nouzilly Nouzilly 47.54499 0.74623 P PPL FR A3 37 372 37175 1231 125 Europe/Paris 2012-01-18
-2989952 Nouvoitou Nouvoitou Neveztell,Nouvoitou 48.04105 -1.54714 P PPL FR A2 35 353 35204 2785 56 Europe/Paris 2012-01-18
-2989953 Nouvion-sur-Meuse Nouvion-sur-Meuse Nouvion,Nouvion-sur-Meuse 49.69949 4.79562 P PPL FR A4 08 081 08327 2247 154 Europe/Paris 2012-01-18
-2989957 Nouvion Nouvion Nouvion-en-Ponthieu 50.2 1.78333 P PPL FR B6 80 801 80598 1251 39 Europe/Paris 2007-11-20
-2989970 Nousty Nousty 43.26667 -0.21667 P PPL FR 97 64 643 64419 1020 266 Europe/Paris 2006-04-30
-2990007 Nouan-le-Fuzelier Nouan-le-Fuzelier Nouan,Nouan-le-Fuzelier 47.536 2.03647 P PPL FR A3 41 413 41161 2469 112 Europe/Paris 2012-01-18
-2990012 Nouaillé-Maupertuis Nouaille-Maupertuis Nouaille,Nouaille-Maupertuis,Nouaillé,Nouaillé-Maupertuis 46.51113 0.41667 P PPL FR B7 86 863 86180 2567 126 Europe/Paris 2012-01-18
-2990039 Notre-Dame-des-Landes Notre-Dame-des-Landes Kernitron-al-Lann,Notre-Dame,Notre-Dame-des-Landes 47.38048 -1.70904 P PPL FR B5 44 441 44111 1773 58 Europe/Paris 2012-01-18
-2990042 Notre-Dame-de-Sanilhac Notre-Dame-de-Sanilhac Notre-Dame,Notre-Dame-de-Sanilhac 45.12122 0.71157 P PPL FR 97 24 243 24312 2748 169 Europe/Paris 2012-01-18
-2990043 Notre-Dame-de-Riez Notre-Dame-de-Riez Notre-Dame-de-Riez,Riez 46.74445 -1.90857 P PPL FR B5 85 853 85189 1771 5 Europe/Paris 2012-01-18
-2990045 Notre-Dame-de-Monts Notre-Dame-de-Monts Notre-Dame 46.831 -2.131 P PPL FR B5 85 853 85164 1627 0 5 Europe/Paris 2007-11-29
-2990047 Notre-Dame-de-Mésage Notre-Dame-de-Mesage Notre-Dame-de-Mesage,Notre-Dame-de-Mésage 45.06241 5.7588 P PPL FR B9 38 381 38279 1294 299 Europe/Paris 2012-01-18
-2990056 Notre-Dame-de-Gravenchon Notre-Dame-de-Gravenchon Notre-Dame-de-Gravenchon 49.4894 0.57188 P PPL FR A7 76 762 76476 8839 22 Europe/Paris 2012-01-18
-2990064 Notre-Dame-de-Bondeville Notre-Dame-de-Bondeville Notre-Dame,Notre-Dame-de-Bondeville 49.48333 1.05 P PPL FR A7 76 763 76474 7817 26 Europe/Paris 2012-01-18
-2990080 Nostang Nostang Lostenk,Nostang 47.7487 -3.18638 P PPL FR A2 56 561 56148 1261 7 Europe/Paris 2012-01-18
-2990085 Nort-sur-Erdre Nort-sur-Erdre Enorzh,Nort,Nort-sur-Erdre 47.43881 -1.49833 P PPL FR B5 44 441 44110 6461 8 Europe/Paris 2012-01-18
-2990087 Nortkerque Nortkerque Nortkerque 50.87519 2.02464 P PPL FR B4 62 625 62621 1623 9 Europe/Paris 2012-01-18
-2990090 Norroy-lès-Pont-à-Mousson Norroy-les-Pont-a-Mousson Norroy,Norroy-les-Pont-a-Mousson,Norroy-lès-Pont-à-Mousson 48.9346 6.02806 P PPL FR B2 54 543 54403 1068 258 Europe/Paris 2012-01-18
-2990096 Norrent-Fontes Norrent-Fontes 50.58333 2.4 P PPL FR B4 62 622 62620 1479 36 Europe/Paris 2007-11-15
-2990107 Normanville Normanville Normanville 49.07868 1.15916 P PPL FR A7 27 273 27439 1331 51 Europe/Paris 2012-01-18
-2990120 Nordhouse Nordhouse Nordhausen 48.44833 7.67326 P PPL FR C1 67 675 67336 1541 153 Europe/Paris 2007-07-07
-2990140 Nontron Nontron Nontron 45.53333 0.66667 P PPLA3 FR 97 24 242 24311 3778 251 Europe/Paris 2010-04-02
-2990158 Nonancourt Nonancourt Nonancourt 48.77086 1.19799 P PPL FR A7 27 273 27438 2507 114 Europe/Paris 2012-01-18
-2990162 Nommay Nommay Nommay 47.5378 6.84219 P PPL FR A6 25 252 25428 1561 355 Europe/Paris 2012-01-18
-2990163 Nomexy Nomexy Nomexy 48.30741 6.38572 P PPL FR B2 88 881 88327 2310 284 Europe/Paris 2012-01-18
-2990164 Nomeny Nomeny 48.9 6.23333 P PPL FR B2 54 543 54400 1117 191 Europe/Paris 2007-11-15
-2990167 Nomain Nomain Nomain 50.49857 3.24991 P PPL FR B4 59 593 59435 2446 51 Europe/Paris 2012-01-18
-2990177 Nolay Nolay Nolay 46.95202 4.63405 P PPL FR A1 21 211 21461 1482 328 Europe/Paris 2012-01-18
-2990183 Noizay Noizay Noizay 47.42188 0.89201 P PPL FR A3 37 372 37171 1091 58 Europe/Paris 2012-01-18
-2990185 Noisy-sur-École Noisy-sur-Ecole Noisy,Noisy-sur-Ecole,Noisy-sur-École 48.36701 2.50804 P PPL FR A8 77 774 77339 1886 77 Europe/Paris 2012-01-18
-2990187 Noisy-le-Sec Noisy-le-Sec Noisy,Noisy-le-Sec,Shumnaja-le-Sek,Шумная-ле-Сек 48.89148 2.46451 P PPL FR A8 93 931 93053 38955 64 Europe/Paris 2012-01-18
-2990188 Noisy-le-Roi Noisy-le-Roi Noisy,Noisy-le-Roi 48.84445 2.06345 P PPL FR A8 78 783 78455 8218 148 Europe/Paris 2012-01-18
-2990189 Noisy-le-Grand Noisy-le-Grand Noisy,Noisy-le-Grand,Shumnaja-le-Gran,Шумная-ле-Гран 48.84979 2.56266 P PPL FR A8 93 932 93051 62420 81 Europe/Paris 2012-01-18
-2990192 Noisiel Noisiel Noisiel 48.84868 2.62435 P PPL FR A8 77 775 77337 15362 77 Europe/Paris 2012-01-18
-2990195 Noiseau Noiseau Noiseau 48.77589 2.54892 P PPL FR A8 94 942 94053 4094 100 Europe/Paris 2012-01-18
-2990214 Noirétable Noiretable Noiretable,Noirétable 45.818 3.76276 P PPL FR B9 42 421 42159 1747 715 Europe/Paris 2012-01-18
-2990240 Nointot Nointot Nointot 49.59822 0.47674 P PPL FR A7 76 762 76468 1113 140 Europe/Paris 2012-01-18
-2990247 Noidans-lès-Vesoul Noidans-les-Vesoul Noidans,Noidans-les-Vesoul,Noidans-lès-Vesoul 47.61299 6.12571 P PPL FR A6 70 702 70388 2163 230 Europe/Paris 2012-01-18
-2990250 Nohic Nohic Nohic 43.8897 1.43741 P PPL FR B3 82 822 82135 1043 99 Europe/Paris 2012-01-18
-2990257 Nohanent Nohanent Nohanent 45.81003 3.05658 P PPL FR 98 63 632 63254 1868 435 Europe/Paris 2012-01-18
-2990261 Nogent-sur-Vernisson Nogent-sur-Vernisson Nogent,Nogent-sur-Vernisson 47.84603 2.74266 P PPL FR A3 45 451 45229 2562 122 Europe/Paris 2012-01-18
-2990263 Nogent-sur-Seine Nogent-sur-Seine Nogent 48.48333 3.5 P PPLA3 FR A4 10 102 10268 6071 64 Europe/Paris 2011-11-02
-2990264 Nogent-sur-Oise Nogent-sur-Oise Nogent,Nogent-sur-Oise 49.27158 2.47074 P PPL FR B6 60 604 60463 19690 31 Europe/Paris 2012-01-18
-2990265 Nogent-sur-Marne Nogent-sur-Marne Nogent,Nozhan-sjur-Marn,Ножан-сюр-Марн 48.83333 2.48333 P PPLA3 FR A8 94 942 94052 31236 41 Europe/Paris 2011-11-02
-2990272 Nogent-le-Rotrou Nogent-le-Rotrou Nogent,Nogent-le-Republicain,Nogent-le-Rotrou,Nogent-le-Républicain 48.31667 0.83333 P PPLA3 FR A3 28 284 28280 13128 162 Europe/Paris 2011-11-02
-2990273 Nogent-le-Roi Nogent-le-Roi Nogent,Nogent-Roullebois,Nogent-le-Roi 48.64785 1.52933 P PPL FR A3 28 283 28279 4060 100 Europe/Paris 2012-01-18
-2990274 Nogent-le-Phaye Nogent-le-Phaye Nogent,Nogent-le-Phaye 48.44528 1.57777 P PPL FR A3 28 281 28278 1247 141 Europe/Paris 2012-01-18
-2990276 Nogent-le-Bas Nogent-le-Bas Nogent-Haute-Marne,Nogent-le-Bas 48.01974 5.33323 P PPL FR A4 52 521 52353 4076 327 Europe/Paris 2012-02-27
-2990281 Nogentel Nogentel Nogentel 49.0175 3.4025 P PPL FR B6 02 021 02554 1045 66 Europe/Paris 2012-01-18
-2990284 Nogaro Nogaro Nogaro 43.75856 -0.03293 P PPL FR B3 32 322 32296 2120 107 Europe/Paris 2012-01-18
-2990287 Nœux-les-Mines Noeux-les-Mines 50.48333 2.66667 P PPL FR B4 62 622 62617 11970 28 Europe/Paris 2007-11-14
-2990294 Noé Noe Noe,Noé 43.35814 1.27709 P PPL FR B3 31 311 31399 2395 199 Europe/Paris 2012-01-18
-2990307 Noailles Noailles Longvillers-Boncourt,Noailles 49.32866 2.20024 P PPL FR B6 60 601 60462 2790 93 Europe/Paris 2012-01-18
-2990311 Noaillan Noaillan Noaillan 44.48057 -0.3664 P PPL FR 97 33 333 33307 1105 34 Europe/Paris 2012-01-18
-2990329 Nivolas-Vermelle Nivolas-Vermelle Nivolas-Vermelle 45.55518 5.30682 P PPL FR B9 38 382 38276 1967 308 Europe/Paris 2012-01-18
-2990331 Nivillac Nivillac Nivilieg,Nivillac 47.53371 -2.28298 P PPL FR A2 56 563 56147 3433 24 Europe/Paris 2012-01-18
-2990344 Nissan-lez-Enserune Nissan-lez-Enserune Nissan,Nissan-lez-Enserune 43.28962 3.12705 P PPL FR A9 34 341 34183 3301 32 Europe/Paris 2012-01-18
-2990355 Niort Niort Niort,nioru,ニオール 46.32313 -0.45877 P PPLA2 FR B7 79 792 79191 54660 21 Europe/Paris 2011-11-02
-2990363 Nîmes Nimes Nemausus,Nim,Nimes,Nismes,Nîmes,ni mu,nimu,nym,Ним,נים,ニーム,尼姆 43.83333 4.35 P PPLA2 FR A9 30 302 30189 148236 54 Europe/Paris 2011-11-02
-2990364 Nilvange Nilvange Nilvange 49.33995 6.05483 P PPL FR B2 57 578 57508 5430 228 Europe/Paris 2012-01-18
-2990367 Niherne Niherne Niherne 46.82768 1.56384 P PPL FR A3 36 362 36142 1628 131 Europe/Paris 2012-01-18
-2990369 Niévroz Nievroz 45.83333 5.06667 P PPL FR B9 01 012 01276 1476 183 Europe/Paris 2007-11-18
-2990377 Nieul-sur-Mer Nieul-sur-Mer Nieul,Nieul-sur-Mer 46.20583 -1.16449 P PPL FR B7 17 173 17264 6058 11 Europe/Paris 2012-01-18
-2990381 Nieul-lès-Saintes Nieul-les-Saintes Nieul,Nieul-les-Saintes,Nieul-les-Xantes,Nieul-lès-Saintes 45.76021 -0.73137 P PPL FR B7 17 174 17262 1056 40 Europe/Paris 2012-01-18
-2990382 Nieul-le-Dolent Nieul-le-Dolent Nieul,Nieul-le-Dolent 46.57379 -1.50808 P PPL FR B5 85 853 85161 1981 70 Europe/Paris 2012-01-18
-2990384 Nieul Nieul 45.92668 1.17494 P PPL FR B1 87 872 87107 1385 305 Europe/Paris 2008-08-06
-2990392 Nieppe Nieppe Nieppe 50.70425 2.83506 P PPL FR B4 59 594 59431 7638 19 Europe/Paris 2012-01-18
-2990408 Niederschaeffolsheim Niederschaeffolsheim Nieder Scheffelscheim,Niederschaeffolsheim,Niederschaffolsheim,Niederschäffolsheim 48.77196 7.73874 P PPL FR C1 67 672 67331 1341 184 Europe/Paris 2012-01-18
-2990410 Niedernai Niedernai Niedernai 48.45134 7.51487 P PPL FR C1 67 675 67329 1313 161 Europe/Paris 2012-01-18
-2990416 Niederhausbergen Niederhausbergen 48.624 7.7021 P PPL FR C1 67 676 67326 1454 149 Europe/Paris 2007-07-07
-2990417 Niederhaslach Niederhaslach Niederhaslach 48.54264 7.34282 P PPL FR C1 67 673 67325 1248 250 Europe/Paris 2011-02-14
-2990420 Niederbronn-les-Bains Niederbronn-les-Bains Bad Niederbronn,Niederbronn,Niederbronn-les-Bains 48.95165 7.64271 P PPL FR C1 67 672 67324 4609 189 Europe/Paris 2011-11-02
-2990425 Niderviller Niderviller Niderviller 48.71294 7.10627 P PPL FR B2 57 575 57505 1119 263 Europe/Paris 2011-02-14
-2990440 Nice Nice NCE,Nica,Nicaea,Nicca,Nice,Nicea,Nico,Nisa,Niza,Nizza,Niça,ni si,nisa,nisu,nitsa,nys,Ница,Ницца,ניס,نيس,नीस,ნიცა,ニース,尼斯 43.70313 7.26608 P PPLA2 FR B8 06 062 06088 338620 25 18 Europe/Paris 2011-11-02
-2990460 Neydens Neydens 46.12162 6.10436 P PPL FR B9 74 743 74201 1220 558 Europe/Paris 2008-04-04
-2990463 Nexon Nexon Nexon 45.67962 1.18555 P PPL FR B1 87 872 87106 2400 351 Europe/Paris 2012-01-18
-2990466 Nevoy Nevoy Nevey,Nevoy 47.71591 2.57791 P PPL FR A3 45 451 45227 1100 140 Europe/Paris 2012-01-18
-2990468 Néville Neville Neville,Néville 49.82472 0.70862 P PPL FR A7 76 761 76467 1137 71 Europe/Paris 2012-01-18
-2990469 Névian Nevian Nevian,Névian 43.21238 2.90286 P PPL FR A9 11 113 11264 1160 29 Europe/Paris 2012-01-18
-2990471 Névez Nevez Nevez,Névez 47.81924 -3.79225 P PPL FR A2 29 294 29153 2560 42 Europe/Paris 2012-01-18
-2990474 Nevers Nevers Never,Nevers,nuvu~eru,Невер,ヌヴェール 46.98956 3.159 P PPLA2 FR A1 58 583 58194 43988 192 Europe/Paris 2011-11-02
-2990477 Neuwiller-lès-Saverne Neuwiller-les-Saverne Neuwiller 48.82506 7.40513 P PPL FR C1 67 674 67322 1134 218 Europe/Paris 2007-07-10
-2990479 Neuvy-sur-Loire Neuvy-sur-Loire Neuvy,Neuvy-sur-Loire 47.52323 2.88333 P PPL FR A1 58 584 58193 1371 139 Europe/Paris 2012-01-18
-2990480 Neuvy-sur-Barangeon Neuvy-sur-Barangeon Neuvy,Neuvy-sur-Barangeon 47.31495 2.25343 P PPL FR A3 18 183 18165 1211 144 Europe/Paris 2012-01-18
-2990481 Neuvy-Sautour Neuvy-Sautour Neuvy,Neuvy-Sautour 48.0419 3.79472 P PPL FR A1 89 892 89276 1064 165 Europe/Paris 2012-01-18
-2990482 Neuvy-Saint-Sépulchre Neuvy-Saint-Sepulchre Neuvy,Neuvy-Saint-Sepulchre,Neuvy-Saint-Sepulcre,Neuvy-Saint-Sépulchre,Neuvy-Saint-Sépulcre,Neuvy-sur-Bouzanne 46.59781 1.80601 P PPL FR A3 36 363 36141 1625 192 Europe/Paris 2012-01-18
-2990483 Neuvy-Pailloux Neuvy-Pailloux Neuvy,Neuvy-Pailloux 46.88486 1.86152 P PPL FR A3 36 364 36140 1287 150 Europe/Paris 2012-01-18
-2990484 Neuvy-le-Roi Neuvy-le-Roi Neuvy,Neuvy-la-Loi,Neuvy-le-Roi 47.60386 0.59472 P PPL FR A3 37 372 37170 1190 118 Europe/Paris 2012-01-18
-2990498 Neuvy Neuvy Neuvy 46.56037 3.2899 P PPL FR 98 03 032 03200 1851 244 Europe/Paris 2012-01-18
-2990515 Neuville-sur-Sarthe Neuville-sur-Sarthe Neuville,Neuville-sur-Sarthe 48.07615 0.19264 P PPL FR B5 72 723 72217 2286 51 Europe/Paris 2012-01-18
-2990516 Neuville-sur-Saône Neuville-sur-Saone Marat-sur-Saone,Marat-sur-Saône,Neuville,Neuville-sur-Saone,Neuville-sur-Saône 45.87704 4.8492 P PPL FR B9 69 691 69143 7453 208 Europe/Paris 2012-01-18
-2990518 Neuville-sur-Oise Neuville-sur-Oise Neuville,Neuville-sur-Oise 49.01667 2.06667 P PPL FR A8 95 953 95450 1489 48 Europe/Paris 2012-01-18
-2990520 Neuville-sur-Escaut Neuville-sur-Escaut Neuville,Neuville-sur-l'Escaut 50.3 3.35 P PPL FR B4 59 596 59429 2733 36 Europe/Paris 2007-11-14
-2990522 Neuville-sur-Ain Neuville-sur-Ain Neuville,Neuville-sur-Ain 46.08074 5.37764 P PPL FR B9 01 012 01273 1369 250 Europe/Paris 2012-01-18
-2990526 Neuville-Saint-Vaast Neuville-Saint-Vaast Neuville,Neuville-Saint-Vaast,Neuville-l'Egalite,Neuville-l'Egalité 50.35756 2.76261 P PPL FR B4 62 621 62609 1444 109 Europe/Paris 2012-01-18
-2990527 Neuville-Saint-Rémy Neuville-Saint-Remy Neuville,Neuville-Saint-Remy,Neuville-Saint-Rémy,Neuvilly 50.18618 3.22404 P PPL FR B4 59 592 59428 3667 46 Europe/Paris 2012-01-18
-2990539 Neuville-les-Dames Neuville-les-Dames Neuville,Neuville-les-Dames,Neuville-sur-Renon 46.16228 5.00399 P PPL FR B9 01 012 01272 1365 241 Europe/Paris 2012-01-18
-2990543 Neuville-en-Ferrain Neuville-en-Ferrain Ferrain,Neuville,Neuville en Farram,Neuville-en-Ferrain 50.74839 3.15676 P PPL FR B4 59 595 59426 9428 41 Europe/Paris 2012-01-18
-2990546 Neuville-de-Poitou Neuville-de-Poitou Neuville 46.68333 0.25 P PPL FR B7 86 863 86177 4338 115 Europe/Paris 2007-11-14
-2990550 Neuville-aux-Bois Neuville-aux-Bois Neuville,Neuville-aux-Bois 48.06813 2.05372 P PPL FR A3 45 452 45224 4140 127 Europe/Paris 2012-01-18
-2990574 Neuvic-Entier Neuvic-Entier Neuvic,Neuvic-Entier 45.72206 1.61303 P PPL FR B1 87 872 87105 1059 416 Europe/Paris 2012-01-18
-2990575 Neuvic Neuvic Neuvic,Neuvic d'Ussel 45.38333 2.28333 P PPL FR B1 19 193 19148 2325 643 Europe/Paris 2012-01-18
-2990576 Neuvic Neuvic Neuvic,Neuvic-sur-l'Isle 45.10033 0.46901 P PPL FR 97 24 243 24309 3535 71 Europe/Paris 2012-01-18
-2990580 Neuves-Maisons Neuves-Maisons Neuves-Maisons 48.62029 6.10698 P PPL FR B2 54 543 54397 6971 236 Europe/Paris 2012-01-18
-2990587 Neuvéglise Neuveglise Neuveglise,Neuvéglise 44.92787 2.98343 P PPL FR 98 15 153 15142 1037 932 Europe/Paris 2012-01-18
-2990590 Neuvecelle Neuvecelle 46.39502 6.61257 P PPL FR B9 74 744 74200 2456 490 Europe/Paris 2008-04-16
-2990596 Neussargues-Moissac Neussargues-Moissac Neussargues,Neussargues-Moissac 45.1326 2.97985 P PPL FR 98 15 153 15141 1049 811 Europe/Paris 2012-01-18
-2990603 Neung-sur-Beuvron Neung-sur-Beuvron Neung,Neung-sur-Beuvron 47.53486 1.80514 P PPL FR A3 41 413 41159 1152 99 Europe/Paris 2012-01-18
-2990606 Neulliac Neulliac Neulieg,Neulliac 48.12836 -2.98289 P PPL FR A2 56 562 56146 1575 118 Europe/Paris 2012-01-18
-2990608 Neulise Neulise Neulise,Neulize 45.90279 4.18094 P PPL FR B9 42 422 42156 1177 555 Europe/Paris 2012-01-18
-2990611 Neuilly-sur-Seine Neuilly-sur-Seine N'oj sjur Sen,Neuilly,Neuilly-sur-Seine,nyuiishurusenu,sai na he pan na yi,Ньой сюр Сен,ニュイイシュールセーヌ,塞纳河畔纳伊 48.88333 2.26667 P PPL FR A8 92 922 92051 61300 45 Europe/Paris 2012-01-18
-2990612 Neuilly-sur-Marne Neuilly-sur-Marne Neji-sjur-Marn,Neuilly,Neuilly-sur-Marne,Нейи-сюр-Марн 48.85373 2.54903 P PPL FR A8 93 932 93050 34465 38 Europe/Paris 2012-01-18
-2990614 Neuilly-sous-Clermont Neuilly-sous-Clermont Neuilly,Neuilly-sous-Clermont 49.34437 2.4103 P PPL FR B6 60 602 60451 1765 70 Europe/Paris 2012-01-18
-2990615 Neuilly-Saint-Front Neuilly-Saint-Front Neuilly,Neuilly-Saint-Front,Neuilly-sur-Ourcq 49.17012 3.26393 P PPL FR B6 02 021 02543 2103 114 Europe/Paris 2012-01-18
-2990616 Neuilly-Plaisance Neuilly-Plaisance 48.86342 2.506 P PPL FR A8 93 932 93049 18725 59 Europe/Paris 2011-11-02
-2990620 Neuilly-lès-Dijon Neuilly-les-Dijon Neuilly,Neuilly-les-Dijon,Neuilly-lès-Dijon 47.27943 5.10645 P PPL FR A1 21 212 21452 2204 217 Europe/Paris 2012-01-18
-2990621 Neuilly-le-Réal Neuilly-le-Real Neuilly,Neuilly-le-Real,Neuilly-le-Réal,Neuilly-sur-Sanne 46.46466 3.43161 P PPL FR 98 03 032 03197 1329 247 Europe/Paris 2012-01-18
-2990628 Neuilly-en-Thelle Neuilly-en-Thelle Neuilly,Neuilly-en-Thelle 49.22446 2.28525 P PPL FR B6 60 604 60450 3194 124 Europe/Paris 2012-01-18
-2990637 Neuillé-Pont-Pierre Neuille-Pont-Pierre Neuille,Neuille-Pont-Pierre,Neuillé,Neuillé-Pont-Pierre 47.5484 0.54962 P PPL FR A3 37 372 37167 1838 118 Europe/Paris 2012-01-18
-2990651 Neufmoutiers-en-Brie Neufmoutiers-en-Brie Neufmoutiers,Neufmoutiers-en-Brie 48.76882 2.83156 P PPL FR A8 77 773 77336 1033 117 Europe/Paris 2012-01-18
-2990662 Neufmanil Neufmanil Neufmanil 49.81096 4.79673 P PPL FR A4 08 081 08316 1202 178 Europe/Paris 2011-01-14
-2990667 Neufgrange Neufgrange Neufgrange 49.07602 7.05806 P PPL FR B2 57 576 57499 1328 225 Europe/Paris 2012-01-18
-2990676 Neufchef Neufchef Neufchef,Neunhauser,Neunhaüser 49.31514 6.02341 P PPL FR B2 57 578 57498 2557 313 Europe/Paris 2012-01-18
-2990678 Neufchâtel-Hardelot Neufchatel-Hardelot Neufchatel,Neufchatel-Hardelot,Neufchâtel,Neufchâtel-Hardelot 50.62018 1.64223 P PPL FR B4 62 623 62604 3693 49 Europe/Paris 2012-01-18
-2990680 Neufchâtel-en-Bray Neufchatel-en-Bray Neufchatel,Neufchatel-en-Bray,Neufchâtel,Neufchâtel-en-Bray 49.73316 1.43956 P PPL FR A7 76 761 76462 5416 88 Europe/Paris 2012-01-18
-2990682 Neufchâteau Neufchateau 48.35 5.7 P PPLA3 FR B2 88 882 88321 8047 279 Europe/Paris 2011-11-02
-2990683 Neuf-Brisach Neuf-Brisach Neuf-Brisach 48.01783 7.52795 P PPL FR C1 68 682 68231 2249 192 Europe/Paris 2007-07-07
-2990685 Neuf-Berquin Neuf-Berquin Neuf-Berquin 50.66065 2.67213 P PPL FR B4 59 594 59423 1237 16 Europe/Paris 2012-01-18
-2990727 Nesmy Nesmy Nesmy 46.59078 -1.40074 P PPL FR B5 85 852 85160 2131 63 Europe/Paris 2012-01-18
-2990729 Nesles-la-Vallée Nesles-la-Vallee Nesles,Nesles-la-Vallee,Nesles-la-Vallée 49.13202 2.17099 P PPL FR A8 95 953 95446 1947 50 Europe/Paris 2012-01-18
-2990730 Nesles-la-Montagne Nesles-la-Montagne Nesles,Nesles-la-Montagne 49.01964 3.42607 P PPL FR B6 02 021 02540 1085 132 Europe/Paris 2012-01-18
-2990733 Nesles Nesles Nesles 50.62588 1.65641 P PPL FR B4 62 623 62603 1089 42 Europe/Paris 2012-01-18
-2990741 Nesle Nesle Nesle 49.75888 2.91133 P PPL FR B6 80 804 80585 2551 78 Europe/Paris 2012-01-18
-2990751 Nersac Nersac Nersac 45.63333 0.05 P PPL FR B7 16 161 16244 2464 32 Europe/Paris 2012-01-18
-2990758 Nérondes Nerondes 46.99758 2.81834 P PPL FR A3 18 182 18160 1615 191 Europe/Paris 2009-04-02
-2990767 Néris-les-Bains Neris-les-Bains Neris,Néris 46.28688 2.65869 P PPL FR 98 03 031 03195 2818 359 Europe/Paris 2008-05-12
-2990777 Nercillac Nercillac Nercillac 45.71667 -0.25 P PPL FR B7 16 162 16243 1027 13 Europe/Paris 2012-01-18
-2990780 Nérac Nerac Nerac,Nérac 44.13333 0.35 P PPLA3 FR 97 47 474 47195 7688 66 Europe/Paris 2010-04-02
-2990787 Néoules Neoules Neoules,Néoules 43.31034 6.01298 P PPL FR B8 83 833 83088 1753 336 Europe/Paris 2012-01-18
-2990793 Nemours Nemours Nemours 48.27511 2.69078 P PPL FR A8 77 774 77333 13933 57 Europe/Paris 2012-01-18
-2990809 Nègrepelisse Negrepelisse Negrepelisse,Nègrepelisse 44.07436 1.51978 P PPL FR B3 82 822 82134 3714 104 Europe/Paris 2012-01-18
-2990831 Nébian Nebian Nebian,Nébian 43.60657 3.43133 P PPL FR A9 34 342 34180 1160 125 Europe/Paris 2012-01-18
-2990835 Neauphle-le-Château Neauphle-le-Chateau Neauphle,Neauphle-la-Montagne,Neauphle-le-Chateau,Neauphle-le-Château 48.81418 1.90567 P PPL FR A8 78 782 78442 2933 170 Europe/Paris 2012-01-18
-2990839 Neaufles-Saint-Martin Neaufles-Saint-Martin Neaufles,Neaufles-Saint-Martin 49.2765 1.72794 P PPL FR A7 27 271 27426 1096 69 Europe/Paris 2012-01-18
-2990848 Nazelles-Négron Nazelles-Negron 47.43333 0.95 P PPL FR A3 37 372 37163 3831 109 Europe/Paris 2007-11-14
-2990852 Nay Nay Nay 43.18333 -0.26667 P PPL FR 97 64 643 64417 3530 315 Europe/Paris 2012-01-18
-2990860 Naves Naves 45.31395 1.76708 P PPL FR B1 19 192 19146 2441 412 Europe/Paris 2008-08-26
-2990865 Navenne Navenne Navenne 47.60873 6.16176 P PPL FR A6 70 702 70378 1796 245 Europe/Paris 2012-01-18
-2990866 Naveil Naveil Naveil 47.79576 1.03222 P PPL FR A3 41 412 41158 1914 79 Europe/Paris 2012-01-18
-2990870 Navarrenx Navarrenx Navarrenx 43.32135 -0.75927 P PPL FR 97 64 642 64416 1275 129 Europe/Paris 2012-01-18
-2990872 Navailles-Angos Navailles-Angos Navailles,Navailles-Angos 43.41667 -0.33333 P PPL FR 97 64 643 64415 1276 227 Europe/Paris 2011-09-11
-2990889 Naucelles Naucelles Naucelles 44.95782 2.41889 P PPL FR 98 15 151 15140 1815 653 Europe/Paris 2012-01-18
-2990890 Naucelle Naucelle Naucelle 44.1981 2.3431 P PPL FR B3 12 122 12169 2138 500 Europe/Paris 2012-01-18
-2990902 Nassandres Nassandres Nassandres 49.12632 0.73597 P PPL FR A7 27 272 27425 1468 73 Europe/Paris 2012-01-18
-2990908 Narrosse Narrosse Narrosse 43.70381 -1.00742 P PPL FR 97 40 401 40202 2781 14 Europe/Paris 2012-01-18
-2990912 Nargis Nargis Nargis 48.11106 2.75597 P PPL FR A3 45 451 45222 1176 84 Europe/Paris 2012-01-18
-2990919 Narbonne Narbonne Narbo,Narbona,Narbonna,Narbonne,Нарбонна 43.18333 3 P PPLA3 FR A9 11 113 11262 50776 16 Europe/Paris 2011-11-02
-2990926 Naours Naours Naours 50.03682 2.27691 P PPL FR B6 80 802 80584 1139 70 Europe/Paris 2012-01-18
-2990932 Nantua Nantua Nantjua,Nantua,Нантюа 46.15 5.61667 P PPLA3 FR B9 01 014 01269 4269 653 Europe/Paris 2011-11-02
-2990949 Nantiat Nantiat Nantiat 46.0091 1.17308 P PPL FR B1 87 871 87103 1695 339 Europe/Paris 2012-01-18
-2990957 Nanteuil-lès-Meaux Nanteuil-les-Meaux Nanteuil,Nanteuil-les-Meaux,Nanteuil-lès-Meaux 48.9294 2.89594 P PPL FR A8 77 771 77330 5499 93 Europe/Paris 2012-01-18
-2990958 Nanteuil-le-Haudouin Nanteuil-le-Haudouin Nanteuil,Nanteuil-le-Haudouin 49.14082 2.81142 P PPL FR B6 60 604 60446 3359 92 Europe/Paris 2012-01-18
-2990961 Nanteuil-en-Vallée Nanteuil-en-Vallee Nanteuil,Nanteuil-en-Vallee,Nanteuil-en-Vallée 46.00089 0.32206 P PPL FR B7 16 163 16242 1427 109 Europe/Paris 2012-01-18
-2990965 Nanteuil Nanteuil Nanteuil 46.41172 -0.17462 P PPL FR B7 79 792 79189 1604 77 Europe/Paris 2012-01-18
-2990969 Nantes Nantes Nant,Nante,Nantes,Nanto,Naoned,Portus Namnetus,nan te,nant,nanta,nanto,Нант,נאנט,نانت,नांत,ナント,南特 47.21725 -1.55336 P PPLA FR B5 44 442 44109 277269 19 Europe/Paris 2011-12-08
-2990970 Nanterre Nanterre Nanter,Nanterre,nanteru,Нантер,ナンテール 48.89198 2.20675 P PPLA2 FR A8 92 922 92050 86719 50 Europe/Paris 2011-11-04
-2990987 Nans-les-Pins Nans-les-Pins Nans,Nans-les-Pins 43.37035 5.7834 P PPL FR B8 83 833 83087 3409 398 Europe/Paris 2012-01-18
-2990992 Nangis Nangis Nangis 48.55535 3.01306 P PPL FR A8 77 773 77327 8271 129 Europe/Paris 2012-01-18
-2990995 Nandy Nandy Nandy 48.58301 2.56292 P PPL FR A8 77 772 77326 6741 82 Europe/Paris 2012-01-18
-2990999 Nancy Nancy Nanceium,Nancio,Nancy,Nansi,Nanzeg,nan xi,nanshi,nansi,nansy,Нанси,נאנסי,نانسي,نانسی,नांसी,ナンシー,南希 48.68333 6.2 P PPLA2 FR B2 54 543 54395 105334 195 Europe/Paris 2011-12-08
-2991004 Nancray Nancray Nancray 47.24536 6.18283 P PPL FR A6 25 251 25418 1066 410 Europe/Paris 2012-01-18
-2991027 Nalliers Nalliers Nalliers 46.47071 -1.02774 P PPL FR B5 85 851 85159 2012 7 Europe/Paris 2012-01-18
-2991030 Naizin Naizin Naizin,Neizin 47.98993 -2.83287 P PPL FR A2 56 562 56144 1625 122 Europe/Paris 2012-01-18
-2991036 Naintré Naintre Naintre,Naintré 46.76354 0.48683 P PPL FR B7 86 861 86174 5644 61 Europe/Paris 2012-01-18
-2991040 Nailloux Nailloux Nailloux 43.35718 1.62302 P PPL FR B3 31 313 31396 1385 280 Europe/Paris 2012-01-18
-2991046 Nages-et-Solorgues Nages-et-Solorgues Nages,Nages-et-Solorgues 43.7901 4.23027 P PPL FR A9 30 302 30186 1413 73 Europe/Paris 2012-01-18
-2991077 Muzillac Muzillac Muzilheg,Muzillac 47.55451 -2.48041 P PPL FR A2 56 563 56143 4308 27 Europe/Paris 2012-01-18
-2991086 Mutzig Mutzig Mutzig 48.53974 7.45594 P PPL FR C1 67 673 67313 6329 195 Europe/Paris 2011-02-14
-2991088 Muttersholtz Muttersholtz Mutherholz,Muttersholtz,Muttersholz 48.26639 7.53197 P PPL FR C1 67 675 67311 1832 166 Europe/Paris 2012-01-18
-2991095 Mussy-sur-Seine Mussy-sur-Seine Mussy,Mussy-sur-Seine 47.97791 4.49743 P PPL FR A4 10 103 10261 1308 191 Europe/Paris 2012-01-18
-2991101 Mussig Mussig 48.22993 7.51963 P PPL FR C1 67 675 67310 1150 172 Europe/Paris 2007-07-07
-2991102 Mussidan Mussidan Mussidan 45.03542 0.3629 P PPL FR 97 24 243 24299 2993 60 Europe/Paris 2012-01-18
-2991115 Mus Mus Mus 43.73919 4.20257 P PPL FR A9 30 302 30185 1150 52 Europe/Paris 2012-01-18
-2991118 Murviel-lès-Montpellier Murviel-les-Montpellier Murviel,Murviel-les-Montpellier,Murviel-lès-Montpellier 43.60528 3.7375 P PPL FR A9 34 343 34179 1352 131 Europe/Paris 2010-12-24
-2991128 Mûrs-Erigné Murs-Erigne Murs,Mûrs 47.4 -0.55 P PPL FR B5 49 491 49223 5384 22 Europe/Paris 2006-04-29
-2991134 Muron Muron Muron 46.03444 -0.82867 P PPL FR B7 17 172 17253 1086 12 Europe/Paris 2012-01-18
-2991153 Muret Muret Muret,Mureth,Murèth 43.46667 1.35 P PPLA3 FR B3 31 311 31395 24313 186 Europe/Paris 2011-11-02
-2991160 Mur-de-Sologne Mur-de-Sologne Mur,Mur-de-Sologne 47.41239 1.60832 P PPL FR A3 41 413 41157 1241 117 Europe/Paris 2012-01-18
-2991161 Mûr-de-Bretagne Mur-de-Bretagne Mur,Mur-de-Bretagne,Mûr-de-Bretagne 48.2 -2.98333 P PPL FR A2 22 222 22158 2183 140 Europe/Paris 2007-11-17
-2991179 Murat Murat Murat 45.10797 2.86665 P PPL FR 98 15 153 15138 2316 894 Europe/Paris 2012-01-18
-2991189 Munster Munster Munster 48.04089 7.13338 P PPL FR C1 68 682 68226 5162 386 Europe/Paris 2012-01-18
-2991199 Mundolsheim Mundolsheim 48.64215 7.71378 P PPL FR C1 67 676 67309 5572 143 Europe/Paris 2011-11-02
-2991201 Munchhouse Munchhouse Munchhausen,Munchhouse,Münchhausen 47.8678 7.45168 P PPL FR C1 68 683 68225 1490 218 Europe/Paris 2012-01-18
-2991207 Mulsanne Mulsanne Mulsanne 47.91172 0.24938 P PPL FR B5 72 723 72213 4787 67 Europe/Paris 2012-01-18
-2991214 Mulhouse Mulhouse EAP,Miluza,Mjuluz,Muelhausen,Mulhouse,Mulhousen,Mülhausen,mi lu si,myuruzu,Мюлуз,ミュルーズ,米卢斯 47.75 7.33333 P PPLA3 FR C1 68 684 68224 111430 240 Europe/Paris 2011-11-02
-2991220 Muizon Muizon Muizon 49.275 3.89083 P PPL FR A4 51 513 51391 2335 75 Europe/Paris 2012-01-18
-2991226 Muides-sur-Loire Muides-sur-Loire Muides,Muides-sur-Loire 47.66958 1.52694 P PPL FR A3 41 411 41155 1203 81 Europe/Paris 2012-01-18
-2991231 Mugron Mugron Mugron 43.74952 -0.75178 P PPL FR 97 40 401 40201 1493 82 Europe/Paris 2012-01-18
-2991255 Mozé-sur-Louet Moze-sur-Louet Moze,Moze-sur-Louet,Mozé,Mozé-sur-Louet 47.35856 -0.55294 P PPL FR B5 49 491 49222 2110 64 Europe/Paris 2012-01-18
-2991258 Mozac Mozac Mozac 45.89166 3.09095 P PPL FR 98 63 634 63245 3507 359 Europe/Paris 2012-01-18
-2991261 Moyrazès Moyrazes Moyrazes,Moyrazès 44.34204 2.43933 P PPL FR B3 12 122 12162 1146 726 Europe/Paris 2012-01-18
-2991264 Moyeuvre-Grande Moyeuvre-Grande Grande Moyeuvre,Moyeuvre,Moyeuvre-Grande,Moyeuvre-la-Grande 49.25165 6.04754 P PPL FR B2 57 578 57491 9099 180 Europe/Paris 2012-01-18
-2991271 Moyenmoutier Moyenmoutier Moyenmoutier 48.3773 6.90047 P PPL FR B2 88 883 88319 3340 306 Europe/Paris 2012-01-18
-2991277 Moye Moye Moye 45.87912 5.91435 P PPL FR B9 74 741 74192 1022 509 Europe/Paris 2012-01-18
-2991280 Moyaux Moyaux 49.19511 0.35603 P PPL FR 99 14 143 14460 1294 158 Europe/Paris 2008-11-21
-2991283 Mouzon Mouzon Mouzon,Ville-le-Libre,Villé-le-Libre 49.60706 5.07569 P PPL FR A4 08 083 08311 2546 158 Europe/Paris 2012-01-18
-2991285 Mouzillon Mouzillon Maodilon,Mouzillon 47.14096 -1.2819 P PPL FR B5 44 442 44108 2385 28 Europe/Paris 2012-01-18
-2991292 Mouzeil Mouzeil Mouzeil,Mouzel 47.44738 -1.34786 P PPL FR B5 44 444 44107 1306 41 Europe/Paris 2012-01-18
-2991297 Mouy Mouy Mouy 49.31535 2.31954 P PPL FR B6 60 602 60439 5588 44 Europe/Paris 2012-01-18
-2991298 Mouxy Mouxy Mouxy 45.68399 5.93538 P PPL FR B9 73 732 73182 1674 407 Europe/Paris 2012-01-18
-2991302 Mouvaux Mouvaux Mouvaux,Mouveaux 50.69944 3.13429 P PPL FR B4 59 595 59421 13285 51 Europe/Paris 2012-01-18
-2991320 Moutiers Moutiers Moutiers 49.23369 5.96498 P PPL FR B2 54 541 54391 1970 197 Europe/Paris 2012-01-18
-2991325 Moûtiers Moutiers Mont-Salins 45.48333 6.53333 P PPL FR B9 73 731 73181 4936 480 Europe/Paris 2011-11-02
-2991330 Mouthiers-sur-Boëme Mouthiers-sur-Boeme Mouthiers,Mouthiers-sur-Boeme,Mouthiers-sur-Boëme 45.55 0.11667 P PPL FR B7 16 161 16236 2347 106 Europe/Paris 2012-01-18
-2991343 Moustoir-Ac Moustoir-Ac Moustoer-Logunec'h,Moustoir-Ac 47.85461 -2.83481 P PPL FR A2 56 562 56141 1520 118 Europe/Paris 2012-01-18
-2991361 Moussy-le-Vieux Moussy-le-Vieux Moussy-le-Vieux 49.04712 2.62493 P PPL FR A8 77 771 77323 1102 87 Europe/Paris 2012-01-18
-2991362 Moussy-le-Neuf Moussy-le-Neuf Moussy-le-Neuf 49.06427 2.60252 P PPL FR A8 77 771 77322 2603 111 Europe/Paris 2012-01-18
-2991386 Moussan Moussan Moussan 43.23091 2.95 P PPL FR A9 11 113 11258 1255 52 Europe/Paris 2012-01-18
-2991390 Moussac Moussac Moussac 43.98119 4.22648 P PPL FR A9 30 302 30184 1108 90 Europe/Paris 2012-01-18
-2991396 Mours-Saint-Eusèbe Mours-Saint-Eusebe Mours,Mours-Saint-Eusebe,Mours-Saint-Eusèbe 45.0683 5.05752 P PPL FR B9 26 263 26218 2368 172 Europe/Paris 2012-01-18
-2991398 Mours Mours Mours 49.13077 2.26761 P PPL FR A8 95 953 95436 1566 42 Europe/Paris 2012-01-18
-2991407 Mouroux Mouroux Mouroux 48.82263 3.03879 P PPL FR A8 77 771 77320 4604 76 Europe/Paris 2012-01-18
-2991413 Mourmelon-le-Grand Mourmelon-le-Grand Mourmelon,Mourmelon-le-Grand 49.13256 4.3642 P PPL FR A4 51 511 51388 5829 119 Europe/Paris 2012-01-18
-2991421 Mouriès Mouries Mouries,Mouriès 43.68997 4.87089 P PPL FR B8 13 132 13065 2909 19 Europe/Paris 2011-01-18
-2991431 Mourenx Mourenx Mourenx 43.38333 -0.6 P PPL FR 97 64 643 64410 8109 111 Europe/Paris 2011-09-11
-2991446 Moult Moult Moult 49.11494 -0.16472 P PPL FR 99 14 142 14456 1179 23 Europe/Paris 2012-01-18
-2991459 Moulis-en-Médoc Moulis-en-Medoc Moulis,Moulis-en-Medoc,Moulis-en-Médoc 45.05938 -0.77033 P PPL FR 97 33 334 33297 1585 17 Europe/Paris 2012-01-18
-2991470 Moulins-lès-Metz Moulins-les-Metz Moulins,Moulins-les-Metz,Moulins-lès-Metz 49.10318 6.10721 P PPL FR B2 57 574 57487 4786 170 Europe/Paris 2012-01-18
-2991474 Moulins-Engilbert Moulins-Engilbert Moulins-Engilbert,Moulins-la-Republique,Moulins-la-République 46.98821 3.81084 P PPL FR A1 58 581 58182 1579 230 Europe/Paris 2012-01-18
-2991481 Moulins Moulins Molins,Moulins,Mulin,muran,Мулин,ムーラン 46.56667 3.33333 P PPLA2 FR 98 03 032 03190 23095 225 Europe/Paris 2011-11-02
-2991512 Mouliets-et-Villemartin Mouliets-et-Villemartin Mouliets,Mouliets-et-Villemartin 44.83333 -0.01667 P PPL FR 97 33 335 33296 1054 9 Europe/Paris 2012-01-18
-2991518 Mouleydier Mouleydier Cybard-de-Mouleydier,Mouleydier 44.85572 0.59759 P PPL FR 97 24 241 24296 1123 68 Europe/Paris 2012-01-18
-2991530 Moulay Moulay Moulay 48.27245 -0.62734 P PPL FR B5 53 533 53162 1008 117 Europe/Paris 2012-01-18
-2991537 Mouilleron-le-Captif Mouilleron-le-Captif Mouilleron,Mouilleron-le-Captif,Mouilleron-le-Libre 46.71898 -1.45462 P PPL FR B5 85 852 85155 3807 74 Europe/Paris 2012-01-18
-2991538 Mouilleron-en-Pareds Mouilleron-en-Pareds Mouilleron,Mouilleron-en-Pareds 46.6763 -0.8494 P PPL FR B5 85 851 85154 1324 109 Europe/Paris 2012-01-18
-2991546 Mouguerre Mouguerre Mouguerre,Mugerre 43.46795 -1.41824 P PPL FR 97 64 641 64407 4392 99 Europe/Paris 2012-01-18
-2991549 Mougon Mougon Mougon 46.29561 -0.2866 P PPL FR B7 79 792 79185 1698 86 Europe/Paris 2012-01-18
-2991551 Mougins Mougins Mougins 43.59873 7.00434 P PPL FR B8 06 061 06085 18973 162 Europe/Paris 2012-01-18
-2991558 Mouen Mouen Mouen 49.14696 -0.48366 P PPL FR 99 14 142 14454 1344 75 Europe/Paris 2011-01-19
-2991565 Mouchin Mouchin Mouchin 50.51639 3.29627 P PPL FR B4 59 595 59419 1371 38 Europe/Paris 2012-01-18
-2991573 Mouchard Mouchard Mouchard 46.97259 5.79626 P PPL FR A6 39 391 39370 1464 278 Europe/Paris 2012-01-18
-2991575 Mouchamps Mouchamps Mouchamps 46.78131 -1.06179 P PPL FR B5 85 852 85153 2628 100 Europe/Paris 2012-01-18
-2991579 Mouans-Sartoux Mouans-Sartoux Mouans-Sartoux 43.62224 6.97312 P PPL FR B8 06 061 06084 9330 127 Europe/Paris 2012-01-18
-2991630 Morzine Morzine 46.18149 6.70664 P PPL FR B9 74 744 74191 3281 953 Europe/Paris 2007-03-26
-2991649 Morvillars Morvillars Marvillars,Morvillars 47.54874 6.93439 P PPL FR A6 90 901 90072 1003 333 Europe/Paris 2012-01-18
-2991661 Mortrée Mortree Mortree,Mortrée 48.63899 0.07909 P PPL FR 99 61 612 61294 1091 176 Europe/Paris 2012-01-18
-2991692 Morteau Morteau 47.05784 6.60716 P PPL FR A6 25 253 25411 6343 769 Europe/Paris 2011-11-02
-2991695 Mortcerf Mortcerf Mortcerf 48.78879 2.91692 P PPL FR A8 77 773 77318 1427 123 Europe/Paris 2012-01-18
-2991699 Mortain Mortain Mortain 48.64782 -0.94055 P PPL FR 99 50 501 50359 2470 236 Europe/Paris 2012-01-18
-2991700 Mortagne-sur-Sèvre Mortagne-sur-Sevre Mortagne,Mortagne-sur-Sevre,Mortagne-sur-Sèvre 46.99203 -0.94738 P PPL FR B5 85 852 85151 6428 121 Europe/Paris 2012-01-18
-2991701 Mortagne-sur-Gironde Mortagne-sur-Gironde Mortagne,Mortagne-sur-Gironde 45.48139 -0.78702 P PPL FR B7 17 174 17248 1034 49 Europe/Paris 2012-01-18
-2991702 Mortagne-du-Nord Mortagne-du-Nord Mortagne,Mortagne-du-Nord 50.50352 3.45352 P PPL FR B4 59 596 59418 1646 16 Europe/Paris 2012-01-18
-2991704 Mortagne-au-Perche Mortagne-au-Perche Mortagne 48.51667 0.55 P PPLA3 FR 99 61 613 61293 4893 230 Europe/Paris 2010-04-02
-2991713 Morschwiller-le-Bas Morschwiller-le-Bas Morschwiller,Morschwiller-le-Bas 47.73609 7.26687 P PPL FR C1 68 684 68218 2754 267 Europe/Paris 2012-01-18
-2991716 Morsbach Morsbach Morsbach 49.17086 6.87958 P PPL FR B2 57 573 57484 2541 224 Europe/Paris 2012-01-18
-2991719 Morsang-sur-Orge Morsang-sur-Orge Morsang,Morsang-sur-Orge 48.6618 2.35338 P PPL FR A8 91 912 91434 19917 76 Europe/Paris 2012-01-18
-2991725 Morre Morre Morre 47.22595 6.07512 P PPL FR A6 25 251 25410 1227 451 Europe/Paris 2012-01-18
-2991727 Morosaglia Morosaglia Morosaglia 42.436 9.30694 P PPL FR A5 2B 2B3 2B169 1105 785 Europe/Paris 2012-01-18
-2991741 Mornas Mornas Mornas 44.20025 4.72902 P PPL FR B8 84 842 84083 2370 35 Europe/Paris 2012-01-18
-2991743 Mornant Mornant Mornant 45.61898 4.6737 P PPL FR B9 69 691 69141 5055 369 Europe/Paris 2012-01-18
-2991747 Mornac Mornac Mornac 45.68333 0.26667 P PPL FR B7 16 161 16232 2078 125 Europe/Paris 2012-01-18
-2991750 Mormoiron Mormoiron Mormoiron 44.06783 5.17885 P PPL FR B8 84 843 84082 1667 261 Europe/Paris 2012-01-18
-2991754 Mormant Mormant Morinant-l'Egalite,Morinant-l'Egalité,Mormant 48.60901 2.89026 P PPL FR A8 77 772 77317 4765 110 Europe/Paris 2012-01-18
-2991772 Morlaix Morlaix Montroulez,Morlaix 48.58333 -3.83333 P PPLA3 FR A2 29 293 29151 17516 11 Europe/Paris 2011-11-02
-2991775 Morlaas Morlaas Morlaas 43.35 -0.26667 P PPL FR 97 64 643 64405 4162 288 Europe/Paris 2011-09-11
-2991792 Morigny-Champigny Morigny-Champigny Morigny,Morigny-Champigny 48.44685 2.18352 P PPL FR A8 91 911 91433 4199 71 Europe/Paris 2012-01-18
-2991799 Morières-lès-Avignon Morieres-les-Avignon Morieres,Morieres-les-Avignon,Morières,Morières-lès-Avignon 43.9403 4.9011 P PPL FR B8 84 842 84081 7001 29 Europe/Paris 2011-01-18
-2991802 Morienval Morienval 49.2977 2.92078 P PPL FR B6 60 604 60430 1094 91 Europe/Paris 2007-02-13
-2991806 Morhange Morhange Morhange 48.92299 6.64179 P PPL FR B2 57 573 57483 4316 257 Europe/Paris 2012-01-18
-2991832 Morez Morez Morez,Morez-la-Montagne 46.5254 6.02589 P PPL FR A6 39 393 39368 6495 778 Europe/Paris 2012-01-18
-2991839 Moreuil Moreuil Moreuil 49.77457 2.48273 P PPL FR B6 80 803 80570 4162 47 Europe/Paris 2012-01-18
-2991842 Moret-sur-Loing Moret-sur-Loing Moret 48.37239 2.81713 P PPL FR A8 77 774 77316 4866 55 Europe/Paris 2011-11-02
-2991847 Morestel Morestel Morestel 45.676 5.47079 P PPL FR B9 38 382 38261 3307 234 Europe/Paris 2012-01-18
-2991861 Morée Moree Moree,Morée 47.90397 1.23421 P PPL FR A3 41 412 41154 1041 97 Europe/Paris 2012-01-18
-2991866 Moréac Moreac Moreac,Moréac,Mourieg 47.91967 -2.81934 P PPL FR A2 56 562 56140 3097 116 Europe/Paris 2012-01-18
-2991868 Mordelles Mordelles Mordelles,Morzhell 48.07571 -1.84286 P PPL FR A2 35 353 35196 6484 34 Europe/Paris 2012-01-18
-2991877 Morcenx Morcenx Morcenx 44.03536 -0.91375 P PPL FR 97 40 402 40197 4993 76 Europe/Paris 2012-01-18
-2991880 Morbier Morbier Morbier 46.53693 6.01532 P PPL FR A6 39 393 39367 2224 821 Europe/Paris 2012-01-18
-2991881 Morbecque Morbecque Morbecque 50.69365 2.51787 P PPL FR B4 59 594 59416 2873 29 Europe/Paris 2012-01-18
-2991888 Morannes Morannes Morannes 47.74364 -0.41604 P PPL FR B5 49 491 49220 1679 28 Europe/Paris 2012-01-18
-2991891 Morangis Morangis Morangis 48.70383 2.33908 P PPL FR A8 91 913 91432 11369 82 Europe/Paris 2012-01-18
-2991895 Morancez Morancez Morancez 48.40051 1.49388 P PPL FR A3 28 281 28269 1687 137 Europe/Paris 2012-01-18
-2991896 Morancé Morance Morance,Morancé 45.89781 4.70041 P PPL FR B9 69 692 69140 1787 223 Europe/Paris 2012-01-18
-2991898 Morainvilliers Morainvilliers Morainvilliers 48.92902 1.93621 P PPL FR A8 78 783 78431 2330 117 Europe/Paris 2012-01-18
-2991906 Moosch Moosch Moosch 47.85968 7.05007 P PPL FR C1 68 686 68217 1995 392 Europe/Paris 2012-01-18
-2991935 Montussan Montussan Montussan 44.88057 -0.42181 P PPL FR 97 33 332 33293 2596 29 Europe/Paris 2012-01-18
-2991947 Montsûrs Montsurs Hercule-Montsurs,Montsurs,Montsûrs 48.13604 -0.55413 P PPL FR B5 53 532 53161 2119 75 Europe/Paris 2012-01-18
-2991954 Mont-sous-Vaudrey Mont-sous-Vaudrey Mont,Mont-sous-Vaudrey 46.97874 5.60295 P PPL FR A6 39 391 39365 1214 217 Europe/Paris 2012-01-18
-2991957 Montsoult Montsoult Monsoult,Montsoult 49.06942 2.31966 P PPL FR A8 95 952 95430 3532 120 Europe/Paris 2012-01-18
-2991970 Montségur-sur-Lauzon Montsegur-sur-Lauzon Montsegur,Montsegur-sur-Lauzon,Montségur,Montségur-sur-Lauzon 44.36135 4.85926 P PPL FR B9 26 262 26211 1053 148 Europe/Paris 2012-01-18
-2991974 Mont-Saxonnex Mont-Saxonnex Mont-Saxonnex 46.05459 6.48788 P PPL FR B9 74 742 74189 1296 946 Europe/Paris 2012-01-18
-2991992 Mont-Saint-Martin Mont-Saint-Martin Mont-Saint-Martin 49.5467 5.79375 P PPL FR B2 54 541 54382 8509 281 Europe/Paris 2012-01-18
-2992001 Mont-Saint-Éloi Mont-Saint-Eloi Mont-Saint-Eloi,Mont-Saint-Eloy,Mont-Saint-Éloi,Mont-Saint-Éloy,Mont-la-Liberte,Mont-la-Liberté 50.35105 2.69249 P PPL FR B4 62 621 62589 1035 132 Europe/Paris 2012-01-18
-2992003 Mont-Saint-Aignan Mont-Saint-Aignan Le Mont-Libre,Mont-Saint-Aignan 49.46307 1.09364 P PPL FR A7 76 763 76451 23078 128 Europe/Paris 2012-01-18
-2992008 Monts Monts Monts 47.27723 0.62473 P PPL FR A3 37 372 37159 7054 57 Europe/Paris 2012-01-18
-2992009 Montry Montry Montry 48.88409 2.82914 P PPL FR A8 77 771 77315 3434 59 Europe/Paris 2012-01-18
-2992017 Montrouge Montrouge Monruzh,Montrouge,Монруж 48.8162 2.31394 P PPL FR A8 92 921 92049 38708 71 Europe/Paris 2012-01-18
-2992022 Montrottier Montrottier Montrotier,Montrottier 45.79142 4.46627 P PPL FR B9 69 691 69139 1479 665 Europe/Paris 2012-01-18
-2992024 Montrond-les-Bains Montrond-les-Bains Meylieu-Montrond,Montrond,Montrond-les-Bains 45.65098 4.23187 P PPL FR B9 42 421 42149 4136 350 Europe/Paris 2012-01-18
-2992035 Montrodat Montrodat Montrodat 44.55038 3.32928 P PPL FR A9 48 482 48103 1069 741 Europe/Paris 2012-01-18
-2992044 Montricoux Montricoux Montricoux 44.07589 1.61946 P PPL FR B3 82 822 82132 1044 121 Europe/Paris 2012-01-18
-2992047 Montrichard Montrichard Montegalite,Montrichard,Montégalité 47.3431 1.18653 P PPL FR A3 41 411 41151 3745 79 Europe/Paris 2012-01-18
-2992050 Montrevel-en-Bresse Montrevel-en-Bresse Montrevel,Montrevel-en-Bresse 46.33664 5.1234 P PPL FR B9 01 012 01266 2202 214 Europe/Paris 2012-01-18
-2992054 Montrevault Montrevault Montrevault 47.25965 -1.04679 P PPL FR B5 49 492 49218 1267 57 Europe/Paris 2012-01-18
-2992057 Montreux-Château Montreux-Chateau Montreux-Chateau,Montreux-Château 47.60857 7.00423 P PPL FR A6 90 901 90071 1016 343 Europe/Paris 2012-01-18
-2992061 Montreuil Montreuil Montrej,Montreuil,Montreuil-sur-Mer,Монтрей 50.46667 1.76667 P PPLA3 FR B4 62 624 62588 2715 24 Europe/Paris 2010-04-02
-2992065 Montreuil-sur-Ille Montreuil-sur-Ille Montreuil,Montreuil-sur-Ille,Mousterel-an-Il 48.30788 -1.6688 P PPL FR A2 35 353 35195 1705 57 Europe/Paris 2012-01-18
-2992070 Montreuil-sous-Pérouse Montreuil-sous-Perouse Montreuil,Montreuil-sous-Perouse,Montreuil-sous-Pérouse,Mousterel-ar-Veineg 48.15176 -1.23946 P PPL FR A2 35 351 35194 1020 82 Europe/Paris 2012-01-18
-2992074 Montreuil-le-Gast Montreuil-le-Gast Montreuil,Montreuil-le-Gast,Mousterel-ar-Gwast 48.24647 -1.72498 P PPL FR A2 35 353 35193 1750 99 Europe/Paris 2012-01-18
-2992084 Montreuil-Bellay Montreuil-Bellay Montreuil-Bellay,Montreuil-le-Thouet 47.13106 -0.15209 P PPL FR B5 49 493 49215 4631 59 Europe/Paris 2012-01-18
-2992086 Montreuil-aux-Lions Montreuil-aux-Lions Montreuil,Montreuil-aux-Lions,Montreuil-l'Union 49.02124 3.19543 P PPL FR B6 02 021 02521 1201 141 Europe/Paris 2012-01-18
-2992090 Montreuil Montreuil Montrej,Montreuil,Montreuil-sous-Bois,Монтрей 48.86415 2.44322 P PPL FR A8 93 931 93048 90652 79 Europe/Paris 2012-01-18
-2992098 Montrem Montrem Montrem 45.13417 0.59029 P PPL FR 97 24 243 24295 1105 156 Europe/Paris 2012-01-18
-2992102 Montréjeau Montrejeau Montrejeau,Montréjeau 43.08555 0.5647 P PPL FR B3 31 312 31390 2930 470 Europe/Paris 2012-01-18
-2992104 Montredon-Labessonnié Montredon-Labessonnie Montredon,Montredon-Labessonnie,Montredon-Labessonnié 43.71723 2.32454 P PPL FR B3 81 812 81182 2137 517 Europe/Paris 2012-01-18
-2992116 Montréal-la-Cluse Montreal-la-Cluse Delilia-de-Crose 46.18333 5.58333 P PPL FR B9 01 014 01265 3997 515 Europe/Paris 2007-11-20
-2992118 Montréal Montreal Mont-Franc,Montreal,Montreal-du-Gers,Montréal,Montréal-du-Gers 43.95016 0.20358 P PPL FR B3 32 322 32290 1302 126 Europe/Paris 2012-01-18
-2992119 Montréal Montreal Montreal,Montréal 43.1998 2.14122 P PPL FR A9 11 111 11254 1932 260 Europe/Paris 2011-01-11
-2992124 Montrabé Montrabe Montrabe,Montrabé 43.64477 1.52384 P PPL FR B3 31 313 31389 3608 150 Europe/Paris 2011-01-09
-2992126 Mont-près-Chambord Mont-pres-Chambord Mont,Mont-pres-Chambord,Mont-près-Chambord 47.56235 1.45712 P PPL FR A3 41 411 41150 3149 105 Europe/Paris 2012-01-18
-2992131 Montpont-en-Bresse Montpont-en-Bresse Montpont,Montpont-en-Bresse 46.5563 5.16459 P PPL FR A1 71 714 71318 1029 203 Europe/Paris 2012-01-18
-2992132 Montpon-Ménestérol Montpon-Menesterol Monpont,Montpon,Montpon-Menesterol,Montpon-Ménestérol,Montpon-sur-l'Isle 45 0.16667 P PPL FR 97 24 243 24294 5658 54 Europe/Paris 2012-01-18
-2992153 Montpeyroux Montpeyroux Montpeyroux 43.6959 3.50542 P PPL FR A9 34 342 34173 1222 152 Europe/Paris 2012-01-18
-2992166 Montpellier Montpellier Monpel'e,Monpele,Monpelie,Montpelhier,Montpelhièr,Montpeller,Montpellier,meng bi li ai,mongpellie,monperie,mwnbylyyh,mwnplyyh,Монпелие,Монпелье,Монпеље,מונפלייה,مونبيلييه,モンペリエ,蒙彼利埃,몽펠리에 43.61092 3.87723 P PPLA FR A9 34 343 34172 248252 56 Europe/Paris 2012-01-18
-2992177 Montournais Montournais Montournais 46.74191 -0.76464 P PPL FR B5 85 851 85147 1846 169 Europe/Paris 2012-01-18
-2992202 Montoison Montoison Montoison 44.79692 4.94186 P PPL FR B9 26 261 26208 1572 186 Europe/Paris 2012-01-18
-2992203 Montois-la-Montagne Montois-la-Montagne Montois,Montois-la-Montagne 49.21752 6.02305 P PPL FR B2 57 574 57481 2692 284 Europe/Paris 2012-01-18
-2992204 Montoire-sur-le-Loir Montoire-sur-le-Loir Montoire,Montoire-sur-le-Loir 47.75316 0.86525 P PPL FR A3 41 412 41149 4177 68 Europe/Paris 2012-01-18
-2992206 Montoir-de-Bretagne Montoir-de-Bretagne Montoir,Montoir-de-Bretagne,Mouster-al-Loc'h 47.33012 -2.15107 P PPL FR B5 44 443 44103 6762 8 Europe/Paris 2012-01-18
-2992220 Montmorot Montmorot Montmorot 46.67541 5.52284 P PPL FR A6 39 392 39362 3597 236 Europe/Paris 2012-01-18
-2992225 Montmorillon Montmorillon 46.43333 0.86667 P PPLA3 FR B7 86 862 86165 7960 115 Europe/Paris 2011-11-02
-2992229 Montmorency Montmorency Monmoransi,Montmorency,Монморанси 48.98826 2.3434 P PPL FR A8 95 952 95428 21156 68 Europe/Paris 2012-01-18
-2992230 Montmoreau-Saint-Cybard Montmoreau-Saint-Cybard 45.4 0.13333 P PPL FR B7 16 161 16230 1190 81 Europe/Paris 2007-11-20
-2992240 Montmirail Montmirail Montmirail 48.87214 3.53797 P PPL FR A4 51 512 51380 3742 190 Europe/Paris 2012-01-18
-2992249 Montmeyran Montmeyran Montmeyran,Montnieyran 44.8332 4.97473 P PPL FR B9 26 263 26206 2849 194 Europe/Paris 2012-01-18
-2992254 Montmerle-sur-Saône Montmerle-sur-Saone 46.08333 4.76667 P PPL FR B9 01 012 01263 3104 216 Europe/Paris 2007-11-20
-2992255 Montmélian Montmelian Montmelian,Montmélian 45.49994 6.05047 P PPL FR B9 73 732 73171 4291 301 Europe/Paris 2012-01-18
-2992260 Montmédy Montmedy Montmedy,Montmédy 49.52096 5.36835 P PPL FR B2 55 553 55351 2188 195 Europe/Paris 2012-01-18
-2992266 Montmartin-sur-Mer Montmartin-sur-Mer Montmartin,Montmartin-sur-Mer 48.98861 -1.5253 P PPL FR 99 50 503 50349 1121 56 Europe/Paris 2011-01-20
-2992274 Montmarault Montmarault Montmarault 46.31668 2.95613 P PPL FR 98 03 031 03186 1701 478 Europe/Paris 2012-01-18
-2992282 Montmain Montmain Montmain 49.40996 1.23742 P PPL FR A7 76 763 76448 1444 144 Europe/Paris 2012-01-18
-2992287 Montmagny Montmagny Montmagny 48.97338 2.34688 P PPL FR A8 95 952 95427 14708 50 Europe/Paris 2012-01-18
-2992288 Montmacq Montmacq Montmacq 49.48181 2.90257 P PPL FR B6 60 603 60423 1161 35 Europe/Paris 2012-01-18
-2992290 Montluel Montluel Montluel 45.8519 5.0578 P PPL FR B9 01 012 01262 6528 205 Europe/Paris 2011-11-02
-2992292 Montluçon Montlucon Monljuson,Montlucon,Montluçon,monryuson,Монлюсон,モンリュソン 46.33333 2.6 P PPLA3 FR 98 03 031 03185 44960 205 Europe/Paris 2011-11-02
-2992293 Montlouis-sur-Loire Montlouis-sur-Loire Mont-Loire,Montlouis,Montlouis-sur-Loire,Montoire 47.38845 0.83208 P PPL FR A3 37 372 37156 10137 80 Europe/Paris 2012-01-18
-2992302 Montlivault Montlivault Montivault,Montlivault 47.63987 1.44486 P PPL FR A3 41 411 41148 1250 87 Europe/Paris 2012-01-18
-2992304 Montlignon Montlignon Montlignon 49.00636 2.28705 P PPL FR A8 95 953 95426 2674 74 Europe/Paris 2012-01-18
-2992305 Montlieu-la-Garde Montlieu-la-Garde 45.25 -0.25 P PPL FR B7 17 171 17243 1365 117 Europe/Paris 2007-11-20
-2992309 Montlhéry Montlhery Montlhery,Montlhéry 48.64004 2.27465 P PPL FR A8 91 913 91425 6351 83 Europe/Paris 2012-01-18
-2992321 Montlebon Montlebon 47.03778 6.61111 P PPL FR A6 25 253 25403 1804 803 Europe/Paris 2008-07-18
-2992327 Montlaur Montlaur Chateau de Montlaur,Château de Montlaur,Montlaur 43.48935 1.56807 P PPL FR B3 31 313 31384 1002 161 Europe/Paris 2012-01-18
-2992347 Montjoire Montjoire Montjoire 43.76899 1.53362 P PPL FR B3 31 313 31383 1145 216 Europe/Paris 2011-01-09
-2992350 Montjoie-en-Couserans Montjoie-en-Couserans Montjoie,Montjoie-en Conserans,Montjoie-en-Couserans 43.0025 1.16 P PPL FR B3 09 093 09209 1037 451 Europe/Paris 2011-01-05
-2992354 Montjean-sur-Loire Montjean-sur-Loire Montjean,Montjean-sur-Loire 47.38842 -0.85873 P PPL FR B5 49 492 49212 2796 40 Europe/Paris 2012-01-18
-2992367 Montivilliers Montivilliers Brutus-Villiers,Montivilliers 49.54518 0.18769 P PPL FR A7 76 762 76447 16706 14 Europe/Paris 2012-01-18
-2992387 Montigny-sur-Loing Montigny-sur-Loing Montigny,Montigny-sur-Loing 48.33575 2.74423 P PPL FR A8 77 774 77312 2749 68 Europe/Paris 2012-01-18
-2992402 Montigny-lès-Metz Montigny-les-Metz Metz-les-Montigny,Metz-lès-Montigny,Montigny,Montigny-les-Metz,Montigny-lès-Metz 49.09435 6.15167 P PPL FR B2 57 574 57480 26369 186 Europe/Paris 2012-01-18
-2992404 Montigny-lès-Cormeilles Montigny-les-Cormeilles Montigny,Montigny-les-Cormeilles,Montigny-lès-Cormeilles 48.98202 2.20035 P PPL FR A8 95 951 95424 17910 164 Europe/Paris 2012-01-18
-2992410 Montigny-Lencoup Montigny-Lencoup Montigny-Lencoup 48.45162 3.06503 P PPL FR A8 77 773 77311 1352 87 Europe/Paris 2012-01-18
-2992415 Montigny-le-Bretonneux Montigny-le-Bretonneux Montigny,Montigny-le-Bretonneux 48.76636 2.03405 P PPL FR A8 78 784 78423 39063 162 Europe/Paris 2012-01-18
-2992418 Montigny-en-Ostrevent Montigny-en-Ostrevent Montigny 50.36667 3.18333 P PPL FR B4 59 593 59414 4935 24 Europe/Paris 2007-11-20
-2992420 Montigny-en-Gohelle Montigny-en-Gohelle Montigny,Montigny-en-Gohelle 50.4254 2.93902 P PPL FR B4 62 627 62587 10713 32 Europe/Paris 2012-01-18
-2992431 Montigny Montigny Montigny 49.4596 1.00168 P PPL FR A7 76 763 76446 1149 123 Europe/Paris 2012-01-18
-2992443 Montigné-le-Brillant Montigne-le-Brillant Montigne,Montigne-le-Brillant,Montigné,Montigné-le-Brillant 48.00872 -0.81488 P PPL FR B5 53 532 53157 1266 79 Europe/Paris 2012-01-18
-2992453 Montignac Montignac Montignac 45.06429 1.16196 P PPL FR 97 24 244 24291 3214 80 Europe/Paris 2012-01-18
-2992466 Montier-en-Der Montier-en-Der Montier-en-Der 48.47823 4.77073 P PPL FR A4 52 523 52331 2040 129 Europe/Paris 2012-01-18
-2992467 Montierchaume Montierchaume Montierchaume 46.86362 1.77181 P PPL FR A3 36 362 36128 1757 157 Europe/Paris 2012-01-18
-2992470 Monticello Monticello Monticello 42.61705 8.95478 P PPL FR A5 2B 2B5 2B168 1388 229 Europe/Paris 2012-01-18
-2992476 Monthyon Monthyon Monthyon 49.00753 2.8261 P PPL FR A8 77 771 77309 1459 161 Europe/Paris 2012-01-18
-2992495 Monthermé Montherme Montherme,Monthermé 49.88465 4.73013 P PPL FR A4 08 081 08302 2806 141 Europe/Paris 2011-01-04
-2992506 Montguyon Montguyon Montguyon 45.21667 -0.18333 P PPL FR B7 17 171 17241 1572 67 Europe/Paris 2012-01-18
-2992525 Montgivray Montgivray Montgivray 46.60324 1.98162 P PPL FR A3 36 363 36127 1707 208 Europe/Paris 2012-01-18
-2992526 Montgiscard Montgiscard Montgiscard 43.46072 1.56738 P PPL FR B3 31 313 31381 2207 184 Europe/Paris 2012-01-18
-2992536 Montgeron Montgeron Montgeron,Monzherone,Монжероне 48.70543 2.45039 P PPL FR A8 91 912 91421 22843 77 Europe/Paris 2012-01-18
-2992537 Montgermont Montgermont Menezgervant,Montgermont 48.15592 -1.71464 P PPL FR A2 35 353 35189 3012 54 Europe/Paris 2012-01-18
-2992571 Montgaillard Montgaillard Montgailhard,Montgaillard 42.93333 1.63333 P PPL FR B3 09 091 09207 1412 436 Europe/Paris 2012-01-18
-2992577 Montfrin Montfrin Montfrin 43.87596 4.5996 P PPL FR A9 30 302 30179 3188 23 Europe/Paris 2012-01-18
-2992581 Montfort-sur-Meu Montfort-sur-Meu Monfort-sur Meu,Monforzh,Montfort,Montfort-la-Montagne,Montfort-sur-Meu,Moñforzh 48.13542 -1.95201 P PPL FR A2 35 353 35188 6007 42 Europe/Paris 2012-01-18
-2992584 Montfort-le-Gesnois Montfort-le-Gesnois Montfort,Montfort-le-Rotrou 48.05 0.41667 P PPL FR B5 72 722 72241 3034 64 Europe/Paris 2008-07-05
-2992586 Montfort-en-Chalosse Montfort-en-Chalosse Montfort,Montfort-en-Chalosse 43.71124 -0.83947 P PPL FR 97 40 401 40194 1305 108 Europe/Paris 2012-01-18
-2992602 Montferrier-sur-Lez Montferrier-sur-Lez Montferrier,Montferrier-sur-Lez 43.66742 3.85439 P PPL FR A9 34 343 34169 3477 84 Europe/Paris 2012-01-18
-2992605 Montferrat Montferrat Montferra,Montferrat 45.48591 5.59072 P PPL FR B9 38 382 38256 1439 556 Europe/Paris 2012-01-18
-2992606 Montferrat Montferrat Montferrat 43.61072 6.48238 P PPL FR B8 83 831 83082 2252 471 Europe/Paris 2012-01-18
-2992607 Montferrand-le-Château Montferrand-le-Chateau Montferrand,Montferrand-le-Chateau,Montferrand-le-Château 47.17536 5.91534 P PPL FR A6 25 251 25397 1969 254 Europe/Paris 2012-01-18
-2992616 Montfermeil Montfermeil Montfermeil 48.8982 2.57913 P PPL FR A8 93 932 93047 23829 105 Europe/Paris 2012-01-18
-2992618 Montfavet Montfavet Montfavet 43.93335 4.87342 P PPLX FR B8 84 842 84007 14000 34 Europe/Paris 2011-11-02
-2992623 Montfaucon Montfaucon Montfaucon 47.23562 6.08162 P PPL FR A6 25 251 25395 1439 522 Europe/Paris 2012-01-18
-2992624 Montfaucon-Montigné Montfaucon-Montigne Montfaucon-sur-Moine 47.1 -1.11667 P PPL FR B5 49 492 49206 1756 48 Europe/Paris 2007-11-20
-2992625 Montfaucon-en-Velay Montfaucon-en-Velay Montfaucon du Velay 45.18561 4.31376 P PPL FR 98 43 433 43141 1146 919 Europe/Paris 2007-11-20
-2992627 Montfaucon Montfaucon Montfaucon 44.07244 4.75504 P PPL FR A9 30 302 30178 1300 31 Europe/Paris 2012-01-18
-2992637 Montévrain Montevrain Montevrain,Montévrain 48.87415 2.75114 P PPL FR A8 77 775 77307 3442 113 Europe/Paris 2012-01-18
-2992638 Monteux Monteux Monteux 44.0348 4.99719 P PPL FR B8 84 843 84080 10828 47 Europe/Paris 2012-01-18
-2992650 Montesson Montesson Montesson 48.90924 2.13754 P PPL FR A8 78 783 78418 15256 37 Europe/Paris 2012-01-18
-2992654 Montesquieu-Volvestre Montesquieu-Volvestre Montesquieu,Montesquieu-Volvestre 43.20724 1.22862 P PPL FR B3 31 311 31375 2635 231 Europe/Paris 2012-01-18
-2992661 Montesquiu d'Albera Montesquiu d'Albera Montesquieu-des-Alberes,Montesquieu-des-Albères,Montesquiu,Montesquiu d'Albera 42.51798 2.88243 P PPL FR A9 66 661 66115 1095 174 Europe/Paris 2011-11-02
-2992664 Montescourt-Lizerolles Montescourt-Lizerolles Montescourt-Lizerolles 49.73828 3.25736 P PPL FR B6 02 023 02504 1543 76 Europe/Paris 2012-01-18
-2992665 Montescot Montescot Montescot 42.60692 2.93318 P PPL FR A9 66 662 66114 1589 14 Europe/Paris 2012-01-18
-2992669 Monterfil Monterfil Monterfil,Mousterfil 48.06733 -1.97905 P PPL FR A2 35 353 35187 1078 90 Europe/Paris 2012-01-18
-2992671 Montereau-Fault-Yonne Montereau-Fault-Yonne Montereau 48.38333 2.95 P PPL FR FR A8 77 773 77305 16993 50 Europe/Paris 2011-11-02
-2992674 Monterblanc Monterblanc Monterblanc,Sterwenn 47.74211 -2.6795 P PPL FR A2 56 563 56137 2226 98 Europe/Paris 2012-01-18
-2992683 Montenois Montenois Montenois 47.49222 6.66561 P PPL FR A6 25 252 25394 1149 410 Europe/Paris 2012-01-18
-2992689 Montendre Montendre Montendre 45.28469 -0.40627 P PPL FR B7 17 171 17240 3413 86 Europe/Paris 2012-01-18
-2992690 Montenay Montenay Montenay 48.28787 -0.89374 P PPL FR B5 53 533 53155 1476 127 Europe/Paris 2012-01-18
-2992703 Montélimar Montelimar Acumum,Montelimar,Montelimare,Montélimar,Монтелимаре 44.55838 4.75094 P PPL FR B9 26 262 26198 35637 91 Europe/Paris 2012-01-18
-2992704 Montélier Montelier Montelier,Montélier 44.93726 5.03118 P PPL FR B9 26 263 26197 3187 211 Europe/Paris 2012-01-18
-2992706 Montéléger Monteleger Monteleger,Montéléger 44.85522 4.93181 P PPL FR B9 26 263 26196 1699 137 Europe/Paris 2012-01-18
-2992713 Monteils Monteils Monteils 44.16862 1.57608 P PPL FR B3 82 822 82126 1182 149 Europe/Paris 2012-01-18
-2992740 Montech Montech Montech 43.95816 1.23204 P PPL FR B3 82 822 82125 3743 110 Europe/Paris 2012-01-18
-2992744 Montebourg Montebourg Montebaurg,Montebourg 49.48774 -1.38036 P PPL FR 99 50 502 50341 2217 45 Europe/Paris 2012-01-18
-2992760 Montdidier Montdidier 49.65 2.56667 P PPLA3 FR B6 80 803 80561 6556 95 Europe/Paris 2010-04-02
-2992771 Mont-de-Marsan Mont-de-Marsan Mon-de-Marsan,Mont-Marat,Mont-de-Marat,Mont-de-Marsan,mon=do=marusan,Мон-де-Марсан,モン=ド=マルサン 43.89022 -0.49713 P PPLA2 FR 97 40 402 40192 36205 51 Europe/Paris 2011-11-02
-2992777 Mont-de-Lans Mont-de-Lans Mont-de-Lans 45.03626 6.13141 P PPL FR B9 38 381 38253 1182 1269 Europe/Paris 2012-01-18
-2992788 Montcy-Notre-Dame Montcy-Notre-Dame Montcy,Montcy-Notre-Dame 49.77507 4.74245 P PPL FR A4 08 081 08298 1557 165 Europe/Paris 2012-01-18
-2992790 Montcuq Montcuq Montcuq 44.33838 1.2085 P PPL FR B3 46 461 46201 1396 208 Europe/Paris 2012-01-18
-2992793 Montcresson Montcresson Montcresson,Monteresson 47.90561 2.80796 P PPL FR A3 45 451 45212 1356 112 Europe/Paris 2012-01-18
-2992799 Montcourt-Fromonville Montcourt-Fromonville Montcourt-Fromonville 48.30672 2.7046 P PPL FR A8 77 774 77302 2480 58 Europe/Paris 2012-01-18
-2992802 Montcornet Montcornet Montcornet 49.69526 4.01667 P PPL FR B6 02 022 02502 1714 123 Europe/Paris 2012-01-18
-2992838 Montchanin Montchanin Montchanin,Montchanin-les-Mines 46.74964 4.4707 P PPL FR A1 71 712 71310 5612 323 Europe/Paris 2012-01-18
-2992852 Montcenis Montcenis Montcenis 46.78785 4.38738 P PPL FR A1 71 711 71309 2199 407 Europe/Paris 2012-01-18
-2992863 Montceau-les-Mines Montceau-les-Mines Monke-le-Mine,Montceau,Montceau-les-Mines,Монке-ле-Мине 46.66667 4.36667 P PPL FR A1 71 712 71306 20221 312 Europe/Paris 2012-01-18
-2992870 Montcaret Montcaret Moncaret,Montcaret 44.85 0.06667 P PPL FR 97 24 241 24289 1281 11 Europe/Paris 2012-01-18
-2992885 Montbronn Montbronn Montbronn 48.99392 7.31058 P PPL FR B2 57 576 57477 1726 335 Europe/Paris 2012-01-18
-2992886 Montbron Montbron Montbron 45.66667 0.5 P PPL FR B7 16 161 16223 2318 142 Europe/Paris 2012-01-18
-2992890 Montbrison Montbrison Montbrise,Montbrisé 45.6 4.05 P PPLA3 FR B9 42 421 42147 16164 473 Europe/Paris 2011-11-02
-2992905 Montboucher-sur-Jabron Montboucher-sur-Jabron Montboucher,Montboucher-sur-Jabron 44.55036 4.80245 P PPL FR B9 26 262 26191 1531 125 Europe/Paris 2012-01-18
-2992908 Montbonnot-Saint-Martin Montbonnot-Saint-Martin Montbonnot,Montbonnot-Saint-Martin 45.22236 5.80353 P PPL FR B9 38 381 38249 4632 241 Europe/Paris 2012-01-18
-2992917 Montblanc Montblanc Montblanc 43.39486 3.36752 P PPL FR A9 34 341 34166 2408 42 Europe/Paris 2012-01-18
-2992919 Montbizot Montbizot Montbizot 48.14995 0.18384 P PPL FR B5 72 723 72205 1208 64 Europe/Paris 2012-01-18
-2992921 Montbeton Montbeton Montbeton 44.01667 1.3 P PPL FR B3 82 822 82124 2305 84 Europe/Paris 2012-01-18
-2992925 Montbert Montbert Montbert,Monteverzh 47.05613 -1.4889 P PPL FR B5 44 442 44102 2481 25 Europe/Paris 2012-01-18
-2992926 Montberon Montberon Montberon 43.71586 1.47968 P PPL FR B3 31 313 31364 2623 182 Europe/Paris 2012-01-18
-2992927 Mont-Bernanchon Mont-Bernanchon 50.58333 2.58333 P PPL FR B4 62 622 62584 1202 19 Europe/Paris 2007-11-20
-2992938 Montbéliard Montbeliard Mont-Reuni,Mont-Réuni,Montbeliard,Montbéliard,Montoeliard,meng bei li ya er,蒙贝利亚尔 47.51667 6.8 P PPLA3 FR A6 25 252 25388 28865 321 Europe/Paris 2011-11-02
-2992943 Montbazon Montbazon Montbazon 47.28348 0.69988 P PPL FR A3 37 372 37154 3777 66 Europe/Paris 2012-01-18
-2992944 Montbazin Montbazin Montbazin 43.51667 3.69667 P PPL FR A9 34 343 34165 2490 47 Europe/Paris 2010-12-24
-2992945 Montbazens Montbazens Montbazens 44.47807 2.2298 P PPL FR B3 12 123 12148 1396 464 Europe/Paris 2011-01-12
-2992953 Montbard Montbard 47.61667 4.33333 P PPLA3 FR A1 21 213 21425 5737 238 Europe/Paris 2011-11-02
-2992960 Montayral Montayral Montayral 44.47513 0.98769 P PPL FR 97 47 473 47185 3117 105 Europe/Paris 2012-01-18
-2992967 Montauville Montauville Montauville 48.90014 6.02055 P PPL FR B2 54 543 54375 1120 220 Europe/Paris 2012-01-18
-2992976 Montaut Montaut Montaut 43.13333 -0.2 P PPL FR 97 64 643 64400 1075 316 Europe/Paris 2011-09-11
-2992978 Montauroux Montauroux Montauroux 43.61905 6.775 P PPL FR B8 83 831 83081 4641 387 Europe/Paris 2012-01-18
-2992982 Montaure Montaure Montaure 49.23417 1.08836 P PPL FR A7 27 271 27412 1127 135 Europe/Paris 2012-01-18
-2992998 Montauban-de-Bretagne Montauban-de-Bretagne Menezalban,Montauban,Montauban-de-Bretagne 48.19934 -2.04476 P PPL FR A2 35 353 35184 4552 82 Europe/Paris 2012-01-18
-2993002 Montauban Montauban Montalban,Montauban,Montoban,Rive-Civique,montoban,Монтобан,モントーバン 44.01667 1.35 P PPLA2 FR B3 82 822 82121 52434 77 Europe/Paris 2011-11-02
-2993004 Montataire Montataire Montataire 49.259 2.43777 P PPL FR B6 60 604 60414 12031 75 Europe/Paris 2012-01-18
-2993006 Montastruc-la-Conseillère Montastruc-la-Conseillere Montastruc,Montastruc-la-Conseillere,Montastruc-la-Conseillère 43.71982 1.59019 P PPL FR B3 31 313 31358 3093 230 Europe/Paris 2011-11-02
-2993013 Montarnaud Montarnaud Montarnaud 43.64743 3.6969 P PPL FR A9 34 342 34163 2627 124 Europe/Paris 2012-01-18
-2993024 Montargis Montargis Mont-Coulounies,Montargis 48 2.75 P PPLA3 FR A3 45 451 45208 17457 94 Europe/Paris 2011-11-02
-2993026 Montaren-et-Saint-Médiers Montaren-et-Saint-Mediers Montaren,Montaren-et-Saint-Mediers,Montaren-et-Saint-Médiers,Vivacite,Vivacité 44.02869 4.3803 P PPL FR A9 30 302 30174 1354 115 Europe/Paris 2012-01-18
-2993028 Montardon Montardon Montardon 43.36667 -0.35 P PPL FR 97 64 643 64399 2250 208 Europe/Paris 2011-09-11
-2993038 Montans Montans 43.867 1.88568 P PPL FR B3 81 811 81171 1228 152 Europe/Paris 2009-06-23
-2993051 Montanay Montanay Montanay 45.87818 4.86302 P PPL FR B9 69 691 69284 2546 306 Europe/Paris 2012-01-18
-2993053 Montamisé Montamise Montamise,Montamisé 46.62181 0.42442 P PPL FR B7 86 863 86163 2791 116 Europe/Paris 2012-01-18
-2993061 Montalieu-Vercieu Montalieu-Vercieu Montalieu,Montalieu-Vercieu 45.81577 5.40393 P PPL FR B9 38 382 38247 2434 222 Europe/Paris 2012-01-18
-2993078 Montaigut-sur-Save Montaigut-sur-Save Montaigut,Montaigut-sur-Save 43.68947 1.23133 P PPL FR B3 31 313 31356 1360 141 Europe/Paris 2011-01-09
-2993084 Montaigut Montaigut Montaigut 45.61267 3.44776 P PPL FR 98 63 634 63233 1203 642 Europe/Paris 2012-01-18
-2993088 Montaigu-de-Quercy Montaigu-de-Quercy Montaigu,Montaigu-de-Quercy 44.33964 1.0169 P PPL FR B3 82 821 82117 1539 169 Europe/Paris 2012-01-18
-2993092 Montaigu Montaigu Montaigu 46.97667 -1.30846 P PPL FR B5 85 852 85146 5070 47 Europe/Paris 2012-01-18
-2993117 Montagny Montagny Montagny 45.62699 4.75782 P PPL FR B9 69 691 69136 2458 221 Europe/Paris 2012-01-18
-2993146 Montagne Montagne Montagne 44.93333 -0.13333 P PPL FR 97 33 335 33290 1896 63 Europe/Paris 2012-01-18
-2993147 Montagnat Montagnat Montagnat 46.17048 5.29052 P PPL FR B9 01 012 01254 1580 243 Europe/Paris 2012-01-18
-2993160 Montagnac Montagnac Montagnac 43.48087 3.48312 P PPL FR A9 34 341 34162 3362 48 Europe/Paris 2012-01-18
-2993166 Montady Montady Montady 43.3359 3.1278 P PPL FR A9 34 341 34161 2888 34 Europe/Paris 2012-01-18
-2993189 Mont Mont Mont 43.43333 -0.65 P PPL FR 97 64 643 64396 1049 115 Europe/Paris 2012-01-18
-2993191 Monswiller Monswiller Monswiller 48.75511 7.37732 P PPL FR C1 67 674 67302 1945 179 Europe/Paris 2011-02-14
-2993203 Mons-en-Pévèle Mons-en-Pevele Mons,Mons-en Peyele,Mons-en-Pevele,Mons-en-Puelle,Mons-en-Pévèle,Mont-en-Pevele,Mont-en-Pévèle 50.47926 3.09767 P PPL FR B4 59 595 59411 2099 83 Europe/Paris 2012-01-18
-2993207 Mons-en-Barœul Mons-en-Baroeul Mons,Mons-en-Baroeul,Mons-en-Barœul 50.63333 3.11667 P PPL FR B4 59 595 59410 23006 29 Europe/Paris 2008-04-09
-2993208 Monsempron-Libos Monsempron-Libos Monsempron,Monsempron-Libos,Montsempron 44.49004 0.9409 P PPL FR 97 47 473 47179 2271 97 Europe/Paris 2012-01-18
-2993209 Monségur Monsegur Monsegur,Monségur 44.6504 0.08047 P PPL FR 97 33 333 33289 1558 66 Europe/Paris 2012-01-18
-2993228 Mons Mons Mons 44.1148 4.17325 P PPL FR A9 30 301 30173 1490 212 Europe/Paris 2012-01-18
-2993230 Mons Mons Mons 43.6124 1.57207 P PPL FR B3 31 313 31355 1224 219 Europe/Paris 2011-01-09
-2993245 Monnières Monnieres Meliner,Monnieres,Monnières 47.13301 -1.35317 P PPL FR B5 44 442 44100 1659 25 Europe/Paris 2012-01-18
-2993250 Monnetier-Mornex Monnetier-Mornex Monnetier 46.1603 6.20667 P PPL FR B9 74 743 74185 1981 702 Europe/Paris 2008-04-23
-2993261 Monnaie Monnaie Monnaie 47.50162 0.78872 P PPL FR A3 37 372 37153 3442 112 Europe/Paris 2012-01-18
-2993277 Monistrol-sur-Loire Monistrol-sur-Loire Monistrol,Monistrol-sur-Loire 45.29334 4.17161 P PPL FR 98 43 433 43137 8049 603 Europe/Paris 2012-01-18
-2993308 Monflanquin Monflanquin Monflanquin 44.52966 0.76772 P PPL FR 97 47 473 47175 2372 145 Europe/Paris 2012-01-18
-2993316 Monéteau Moneteau Moneteau,Monéteau 47.84923 3.58178 P PPL FR A1 89 891 89263 5225 107 Europe/Paris 2012-01-18
-2993320 Monestiés Monesties 44.06667 2.1 P PPL FR B3 81 811 81170 1433 253 Europe/Paris 2007-11-18
-2993331 Monein Monein Monein 43.33333 -0.58333 P PPL FR 97 64 642 64393 4510 136 Europe/Paris 2011-09-11
-2993342 Mondragon Mondragon Mondragon,Montdragon 44.23858 4.71005 P PPL FR B8 84 842 84078 3583 42 Europe/Paris 2012-01-18
-2993345 Mondoubleau Mondoubleau Mondoubleau 47.98061 0.89782 P PPL FR A3 41 412 41143 1698 154 Europe/Paris 2012-01-18
-2993348 Mondonville Mondonville Mondonville 43.67296 1.28592 P PPL FR B3 31 313 31351 2131 182 Europe/Paris 2011-01-09
-2993358 Mondeville Mondeville Mondeville 49.17497 -0.32238 P PPL FR 99 14 142 14437 11582 8 Europe/Paris 2011-11-02
-2993367 Mondelange Mondelange Mondelange 49.26469 6.17087 P PPL FR B2 57 578 57474 5761 159 Europe/Paris 2012-01-18
-2993375 Moncoutant Moncoutant Moncoutant 46.72547 -0.58797 P PPL FR B7 79 793 79179 3029 193 Europe/Paris 2012-01-18
-2993380 Moncontour Moncontour Moncontour,Moncontour-de-Poitou,Montagne-sur-Dive 46.88086 -0.01996 P PPL FR B7 86 861 86161 1045 58 Europe/Paris 2012-01-18
-2993383 Monclar-de-Quercy Monclar-de-Quercy Monclar,Monclar-de-Quercy 43.96554 1.58587 P PPL FR B3 82 822 82115 1338 185 Europe/Paris 2012-01-18
-2993390 Monchy-Saint-Éloi Monchy-Saint-Eloi Monchy,Monchy-Saint-Eloi,Monchy-Saint-Éloi 49.29042 2.46739 P PPL FR B6 60 602 60409 2066 35 Europe/Paris 2012-01-18
-2993403 Monchecourt Monchecourt Monchecourt 50.30413 3.21029 P PPL FR B4 59 593 59409 2738 53 Europe/Paris 2012-01-18
-2993419 Moncé-en-Belin Monce-en-Belin Monce,Monce-en-Belin,Monce-les-Le Mans,Moncé,Moncé-en-Belin,Moncé-lès-Le Mans 47.89442 0.19809 P PPL FR B5 72 723 72200 2586 57 Europe/Paris 2012-01-18
-2993446 Monbazillac Monbazillac Monbazillac 44.79374 0.49256 P PPL FR 97 24 241 24274 1082 172 Europe/Paris 2012-01-18
-2993465 Mommenheim Mommenheim Mommemheim,Mommenheim 48.75758 7.6429 P PPL FR C1 67 676 67301 1847 157 Europe/Paris 2012-01-18
-2993476 Molsheim Molsheim Molsheim,Molskhajm,Молсхайм 48.54042 7.49199 P PPLA3 FR C1 67 673 67300 9953 182 Europe/Paris 2011-11-02
-2993496 Mollégès Molleges Molleges,Mollégès 43.80703 4.94934 P PPL FR B8 13 132 13064 2280 57 Europe/Paris 2011-01-18
-2993512 Molinet Molinet Molinet 46.46836 3.94161 P PPL FR 98 03 032 03173 1178 231 Europe/Paris 2012-01-18
-2993523 Molières-sur-Cèze Molieres-sur-Ceze Molieres,Molieres-sur-Ceze,Molières,Molières-sur-Cèze 44.25989 4.15836 P PPL FR A9 30 301 30171 1554 160 Europe/Paris 2012-01-18
-2993528 Molières Molieres Molieres,Molières 44.19305 1.36318 P PPL FR B3 82 822 82113 1112 175 Europe/Paris 2012-01-18
-2993562 Molac Molac Molac,Moulleg 47.73011 -2.43484 P PPL FR A2 56 563 56135 1072 84 Europe/Paris 2012-01-18
-2993572 Moissy-Cramayel Moissy-Cramayel Mois-la-Plaine,Moissy,Moissy-Cramayel,Moissy-Gramayel 48.62605 2.60125 P PPL FR A8 77 772 77296 16259 91 Europe/Paris 2012-01-18
-2993578 Moisselles Moisselles Moisselles 49.05 2.33597 P PPL FR A8 95 952 95409 1016 94 Europe/Paris 2012-01-18
-2993586 Moissac Moissac Moissac 44.10236 1.0945 P PPL FR B3 82 821 82112 13703 71 Europe/Paris 2012-01-18
-2993588 Moislains Moislains Moislains 49.9882 2.96404 P PPL FR B6 80 804 80552 1442 70 Europe/Paris 2012-01-18
-2993589 Moisenay Moisenay Moisenay 48.56266 2.73527 P PPL FR A8 77 772 77295 1278 81 Europe/Paris 2012-01-18
-2993590 Moisdon-la-Rivière Moisdon-la-Riviere Maezon-ar-Ster,Maezon-ar-Stêr,Meisdon-la-Riviere,Meisdon-la-Rivière,Moisdon,Moisdon-la-Riviere,Moisdon-la-Rivière 47.62175 -1.37258 P PPL FR B5 44 441 44099 1789 60 Europe/Paris 2012-01-18
-2993604 Moirans-en-Montagne Moirans-en-Montagne Moirans,Moirans-en-Montagne 46.43381 5.72643 P PPL FR A6 39 393 39333 2345 620 Europe/Paris 2012-01-18
-2993605 Moirans Moirans Moirans 45.3283 5.55342 P PPL FR B9 38 381 38239 7886 223 Europe/Paris 2012-01-18
-2993622 Moigny-sur-École Moigny-sur-Ecole 48.43262 2.45802 P PPL FR A8 91 912 91408 1358 62 Europe/Paris 2007-11-13
-2993629 Moidieu-Détourbe Moidieu-Detourbe Moidieu,Moidieu-Detourbe,Moidieu-Détourbe 45.50988 5.01613 P PPL FR B9 38 383 38238 1532 261 Europe/Paris 2012-01-18
-2993633 Mogneville Mogneville Mogneville 49.31535 2.4717 P PPL FR B6 60 602 60404 1436 51 Europe/Paris 2012-01-18
-2993647 Moëlan-sur-Mer Moelan-sur-Mer Moelan,Moelan-sur-Mer,Molan,Moëlan,Moëlan-sur-Mer 47.81418 -3.62892 P PPL FR A2 29 294 29150 6984 56 Europe/Paris 2012-01-18
-2993654 Modane Modane Modane 45.2 6.66667 P PPL FR B9 73 733 73157 4086 1061 Europe/Paris 2012-01-18
-2993673 Mittelhausbergen Mittelhausbergen Hausbergen 48.61436 7.69009 P PPL FR C1 67 676 67296 1753 154 Europe/Paris 2007-07-07
-2993679 Mitry-Mory Mitry-Mory Mitry-Mory 48.98333 2.61667 P PPL FR A8 77 771 77294 18562 71 Europe/Paris 2012-01-18
-2993692 Missillac Missillac Merzhelieg,Missilac,Missillac 47.48155 -2.16 P PPL FR B5 44 443 44098 4180 32 Europe/Paris 2012-01-18
-2993700 Misérieux Miserieux Miserieux,Misérieux 45.97309 4.8123 P PPL FR B9 01 012 01250 1965 237 Europe/Paris 2012-01-18
-2993701 Miserey-Salines Miserey-Salines Miserey,Miserey-Salines 47.28638 5.97387 P PPL FR A6 25 251 25381 2252 287 Europe/Paris 2012-01-18
-2993709 Miribel-les-Échelles Miribel-les-Echelles Miribel,Miribel-les-Echelles,Miribel-les-Échelles 45.42906 5.70835 P PPL FR B9 38 381 38236 1849 602 Europe/Paris 2012-01-18
-2993712 Miribel Miribel Miribel 45.8258 4.9544 P PPL FR B9 01 012 01249 9282 187 Europe/Paris 2011-11-02
-2993717 Mireval Mireval Mireval 43.5086 3.8017 P PPL FR A9 34 343 34159 3413 18 Europe/Paris 2010-12-24
-2993720 Mirepoix Mirepoix Mirepoix 43.08773 1.8735 P PPL FR B3 09 092 09194 3062 310 Europe/Paris 2012-01-18
-2993721 Mirepeix Mirepeix Mirepeix 43.18333 -0.25 P PPL FR 97 64 643 64386 1040 262 Europe/Paris 2012-01-18
-2993726 Miremont Miremont Miremont 43.36995 1.41724 P PPL FR B3 31 311 31345 1617 197 Europe/Paris 2012-01-18
-2993727 Mirefleurs Mirefleurs Mirefleurs 45.69346 3.22441 P PPL FR 98 63 632 63227 1887 396 Europe/Paris 2012-01-18
-2993728 Mirecourt Mirecourt Mirecourt 48.30089 6.13282 P PPL FR B2 88 882 88304 6998 282 Europe/Paris 2012-01-18
-2993730 Mirebeau-sur-Bèze Mirebeau-sur-Beze Mirebeau,Mirebeau-sur-Beze,Mirebeau-sur-Bèze 47.39828 5.32093 P PPL FR A1 21 212 21416 1639 201 Europe/Paris 2012-01-18
-2993732 Mirebeau Mirebeau Mirebeau,Mirebeau-en-Poitou 46.78743 0.18341 P PPL FR B7 86 863 86160 2408 155 Europe/Paris 2012-01-18
-2993734 Miré Mire Mire,Miré 47.75759 -0.49158 P PPL FR B5 49 494 49205 1019 48 Europe/Paris 2012-01-18
-2993746 Mirandol-Bourgnounac Mirandol-Bourgnounac Mirandol,Mirandol-Bourgnounac,Mirandol-Bouroougnac 44.14273 2.16857 P PPL FR B3 81 811 81168 1067 403 Europe/Paris 2012-01-18
-2993749 Mirande Mirande 43.51667 0.41667 P PPLA3 FR B3 32 323 32256 4135 179 Europe/Paris 2010-04-02
-2993753 Miramont-de-Guyenne Miramont-de-Guyenne Miramont,Miramont-de-Guyenne 44.60157 0.36247 P PPL FR 97 47 472 47168 3247 59 Europe/Paris 2012-01-18
-2993757 Mirambeau Mirambeau Mirambeau 45.3731 -0.57067 P PPL FR B7 17 171 17236 1453 61 Europe/Paris 2012-01-18
-2993760 Miramas Miramas Mirama,Miramas,Miramas Gare,mirama,Мирама,ミラマ 43.58666 5.00464 P PPL FR B8 13 134 13063 24173 52 Europe/Paris 2012-01-18
-2993766 Mirabel-aux-Baronnies Mirabel-aux-Baronnies Mirabel,Mirabel-aux-Baronnies 44.31133 5.09846 P PPL FR B9 26 262 26182 1439 264 Europe/Paris 2012-01-18
-2993779 Mios Mios Mios 44.60489 -0.93329 P PPL FR 97 33 336 33284 5002 15 Europe/Paris 2012-01-18
-2993780 Mions Mions Mions 45.66432 4.94994 P PPL FR B9 69 691 69283 11424 218 Europe/Paris 2012-01-18
-2993781 Mionnay Mionnay Mionnay 45.89557 4.93074 P PPL FR B9 01 012 01248 2293 284 Europe/Paris 2012-01-18
-2993796 Minihy-Tréguier Minihy-Treguier Ar Vinic'hi,Minihy-Treguier,Minihy-Tréguier 48.77746 -3.22883 P PPL FR A2 22 223 22152 1128 47 Europe/Paris 2012-01-18
-2993801 Miniac-Morvan Miniac-Morvan Miniac,Miniac-Morvan,Minieg-Morvan 48.51477 -1.89955 P PPL FR A2 35 354 35179 3045 34 Europe/Paris 2012-01-18
-2993830 Mimizan Mimizan Mimizan 44.20057 -1.22886 P PPL FR 97 40 402 40184 6565 16 Europe/Paris 2012-01-18
-2993832 Mimet Mimet Mimet 43.41393 5.50495 P PPL FR B8 13 131 13062 4505 497 Europe/Paris 2012-01-18
-2993834 Mimbaste Mimbaste 43.64887 -0.97383 P PPL FR 97 40 401 40183 1089 17 Europe/Paris 2009-04-01
-2993839 Milly-sur-Thérain Milly-sur-Therain Milly,Milly-sur-Therain,Milly-sur-Thérain 49.5024 1.99605 P PPL FR B6 60 601 60403 1615 83 Europe/Paris 2012-01-18
-2993843 Milly-la-Forêt Milly-la-Foret Milly,Milly-la-Foret,Milly-la-Forêt 48.404 2.47015 P PPL FR A8 91 912 91405 4860 67 Europe/Paris 2012-01-18
-2993864 Millery Millery Millery 45.63174 4.78628 P PPL FR B9 69 691 69133 3604 291 Europe/Paris 2012-01-18
-2993875 Millau Millau Mijo,Millan,Millau,Мийо 44.1 3.08333 P PPLA3 FR B3 12 121 12145 23307 362 Europe/Paris 2011-11-02
-2993876 Millas Millas Millars,Millas 42.69203 2.69508 P PPL FR A9 66 662 66108 3789 108 Europe/Paris 2011-09-10
-2993884 Milizac Milizac Milizac,Milizag 48.46667 -4.56667 P PPL FR A2 29 291 29149 3038 88 Europe/Paris 2012-01-18
-2993889 Milhaud Milhaud Milhaud 43.78978 4.31035 P PPL FR A9 30 302 30169 5321 29 Europe/Paris 2012-01-18
-2993918 Migné-Auxances Migne-Auxances Migne,Migne-Auxances,Migné,Migné-Auxances 46.62745 0.31458 P PPL FR B7 86 863 86158 6164 100 Europe/Paris 2012-01-18
-2993921 Mignaloux-Beauvoir Mignaloux-Beauvoir Mignaloux,Mignaloux-Beauvoir 46.54157 0.41538 P PPL FR B7 86 863 86157 3784 128 Europe/Paris 2012-01-18
-2993928 Migennes Migennes Migennes 47.96548 3.51787 P PPL FR A1 89 891 89257 8637 86 Europe/Paris 2012-01-18
-2993936 Mieussy Mieussy 46.13369 6.52416 P PPL FR B9 74 742 74183 1916 637 Europe/Paris 2007-03-26
-2993947 Miélan Mielan Mielan,Miélan 43.43054 0.30794 P PPL FR B3 32 323 32252 1360 273 Europe/Paris 2012-01-18
-2993999 Mézy-sur-Seine Mezy-sur-Seine 49 1.88333 P PPL FR A8 78 781 78403 1892 40 Europe/Paris 2007-11-20
-2994002 Méziré Mezire Mezire,Méziré 47.53209 6.91872 P PPL FR A6 90 901 90069 1296 330 Europe/Paris 2012-01-18
-2994004 Mézin Mezin Mezin,Mézin 44.05668 0.25874 P PPL FR 97 47 474 47167 1519 118 Europe/Paris 2012-01-18
-2994008 Mézières-sur-Seine Mezieres-sur-Seine Mezieres-sur-Seine,Mézières-sur-Seine 48.96128 1.79245 P PPL FR A8 78 781 78402 3543 24 Europe/Paris 2012-01-18
-2994018 Mézières-en-Drouais Mezieres-en-Drouais Mezieres,Mezieres-en-Drouais,Mézières,Mézières-en-Drouais 48.72413 1.4244 P PPL FR A3 28 283 28251 1096 86 Europe/Paris 2012-01-18
-2994019 Mézières-en-Brenne Mezieres-en-Brenne Mezieres,Mezieres-en-Brenne,Mézières,Mézières-en-Brenne 46.8198 1.21123 P PPL FR A3 36 361 36123 1158 90 Europe/Paris 2012-01-18
-2994033 Mézériat Mezeriat Mezeriat,Mézériat 46.23431 5.04806 P PPL FR B9 01 012 01246 2108 195 Europe/Paris 2012-01-18
-2994036 Mézeray Mezeray Mezeray,Mézeray 47.82682 -0.0177 P PPL FR B5 72 721 72195 1554 42 Europe/Paris 2012-01-18
-2994040 Mezel Mezel Mezel 45.75519 3.24314 P PPL FR 98 63 632 63226 1560 382 Europe/Paris 2012-01-18
-2994043 Mèze Meze Meze,Mèze 43.42504 3.6059 P PPL FR A9 34 343 34157 8557 8 Europe/Paris 2012-01-18
-2994048 Meyzieu Meyzieu Meyzieu 45.76667 5 P PPL FR B9 69 691 69282 28929 202 Europe/Paris 2011-11-02
-2994049 Meythet Meythet Meithet,Meythet 45.91836 6.09422 P PPL FR B9 74 741 74182 8538 451 Europe/Paris 2012-01-18
-2994052 Meysse Meysse Meysse 44.61028 4.72306 P PPL FR B9 07 072 07157 1153 84 Europe/Paris 2010-12-24
-2994054 Meyssac Meyssac Meyssac 45.05571 1.67386 P PPL FR B1 19 191 19138 1194 207 Europe/Paris 2012-01-18
-2994057 Meyrueis Meyrueis Meyrueis 44.17737 3.43083 P PPL FR A9 48 481 48096 1084 705 Europe/Paris 2012-01-18
-2994068 Meyreuil Meyreuil Meyreuil 43.4878 5.49574 P PPL FR B8 13 131 13060 4611 256 Europe/Paris 2011-01-18
-2994070 Meyrargues Meyrargues Meyrargues 43.63806 5.52611 P PPL FR B8 13 131 13059 3426 233 Europe/Paris 2012-01-18
-2994078 Meynes Meynes Meynes 43.87974 4.55958 P PPL FR A9 30 302 30166 2130 63 Europe/Paris 2012-01-18
-2994085 Meymac Meymac Meymac 45.53487 2.14502 P PPL FR B1 19 193 19136 3048 661 Europe/Paris 2012-01-18
-2994087 Meylan Meylan Meylan 45.21988 5.79007 P PPL FR B9 38 381 38229 20267 286 Europe/Paris 2012-01-18
-2994091 Meyenheim Meyenheim 47.91364 7.3556 P PPL FR C1 68 683 68205 1136 210 Europe/Paris 2007-07-07
-2994093 Mexy Mexy Mexy 49.5015 5.7807 P PPL FR B2 54 541 54367 2056 375 Europe/Paris 2012-01-18
-2994094 Meximieux Meximieux Meximieux 45.90841 5.19527 P PPL FR B9 01 012 01244 7467 249 Europe/Paris 2012-01-18
-2994113 Meursault Meursault Meursault 46.97822 4.76952 P PPL FR A1 21 211 21412 1655 249 Europe/Paris 2012-01-18
-2994116 Meursac Meursac Meursac 45.6489 -0.80801 P PPL FR B7 17 174 17232 1076 29 Europe/Paris 2012-01-18
-2994121 Meurchin Meurchin Meurchin 50.49831 2.89318 P PPL FR B4 62 627 62573 3639 27 Europe/Paris 2012-01-18
-2994126 Meung-sur-Loire Meung-sur-Loire Meung,Meung-sur-Loire,lu wa er he pan mo en,卢瓦尔河畔默恩 47.83124 1.69582 P PPL FR A3 45 452 45203 6659 93 Europe/Paris 2012-01-18
-2994139 Meulan-en-Yvelines Meulan-en-Yvelines Meulan 49.00768 1.90602 P PPL FR A8 78 781 78401 8829 28 Europe/Paris 2010-12-19
-2994144 Meudon Meudon Meudon,Rabelais 48.81381 2.235 P PPL FR A8 92 923 92048 44652 111 Europe/Paris 2012-01-18
-2994146 Meucon Meucon Meucon,Meukon 47.71648 -2.7617 P PPL FR A2 56 563 56132 1361 77 Europe/Paris 2012-01-18
-2994150 Metz-Tessy Metz-Tessy Metz,Metz-Tessy 45.93406 6.10826 P PPL FR B9 74 741 74181 2229 465 Europe/Paris 2012-01-18
-2994155 Metzervisse Metzervisse Metzervisse 49.31501 6.28552 P PPL FR B2 57 577 57465 1407 205 Europe/Paris 2012-01-18
-2994157 Metzeral Metzeral Metzeral 48.01044 7.07088 P PPL FR C1 68 682 68204 1109 486 Europe/Paris 2012-01-18
-2994160 Metz Metz Divodurum,Mec,Mediomatricum,Mettis,Metz,mei si,mesu,Мец,メス,梅斯 49.11911 6.17269 P PPLA FR B2 57 579 57463 123914 182 Europe/Paris 2011-11-02
-2994161 Mettray Mettray 47.45251 0.64939 P PPL FR A3 37 372 37152 1914 62 Europe/Paris 2009-09-01
-2994168 Méteren Meteren 50.73333 2.7 P PPL FR B4 59 594 59401 2116 33 Europe/Paris 2007-11-17
-2994184 Messimy Messimy Messimy 45.69741 4.67291 P PPL FR B9 69 691 69131 3060 371 Europe/Paris 2012-01-18
-2994185 Messigny-et-Vantoux Messigny-et-Vantoux 47.40666 5.01715 P PPL FR A1 21 212 21408 1298 312 Europe/Paris 2007-11-20
-2994189 Messery Messery Messery 46.35034 6.2959 P PPL FR B9 74 744 74180 1593 421 Europe/Paris 2012-01-18
-2994193 Messei Messei Messei-Saint-Gervais 48.71157 -0.53739 P PPL FR 99 61 612 61278 1910 216 Europe/Paris 2007-11-20
-2994194 Messein Messein Messein 48.61129 6.14073 P PPL FR B2 54 543 54366 1532 245 Europe/Paris 2012-01-18
-2994201 Messac Messac Messac,Mezeg,Port de Messac 47.82399 -1.81085 P PPL FR A2 35 352 35176 2530 12 Europe/Paris 2012-01-18
-2994203 Mesquer Mesquer Mesker,Mesquer 47.39919 -2.45986 P PPL FR B5 44 443 44097 1585 10 Europe/Paris 2012-01-18
-2994246 Mesnières-en-Bray Mesnieres-en-Bray Mesnieres,Mesnieres-en-Bray,Mesnières,Mesnières-en-Bray 49.76172 1.38187 P PPL FR A7 76 761 76427 1220 71 Europe/Paris 2012-01-18
-2994263 Meslay-du-Maine Meslay-du-Maine Meslay,Meslay-du-Maine 47.95116 -0.55428 P PPL FR B5 53 532 53152 2685 90 Europe/Paris 2012-01-18
-2994268 Meslan Meslan Melann,Meslan,Mêlann 47.99502 -3.43285 P PPL FR A2 56 562 56131 1278 109 Europe/Paris 2012-01-18
-2994274 Meschers-sur-Gironde Meschers-sur-Gironde Meschers,Meschers-sur-Gironde 45.56037 -0.9547 P PPL FR B7 17 174 17230 2404 18 Europe/Paris 2012-01-18
-2994280 Mésanger Mesanger Mesanger,Mezansker,Mésanger 47.43131 -1.22798 P PPL FR B5 44 444 44096 3435 39 Europe/Paris 2012-01-18
-2994282 Méry-sur-Seine Mery-sur-Seine Mery,Mery-sur-Seine,Méry,Méry-sur-Seine 48.50937 3.89129 P PPL FR A4 10 102 10233 1380 83 Europe/Paris 2012-01-18
-2994283 Méry-sur-Oise Mery-sur-Oise Mery,Mery-sur-Oise,Méry,Méry-sur-Oise 49.05876 2.19113 P PPL FR A8 95 953 95394 9490 67 Europe/Paris 2012-01-18
-2994290 Méry Mery Mery,Méry 45.64325 5.93782 P PPL FR B9 73 732 73155 1276 370 Europe/Paris 2012-01-18
-2994291 Merxheim Merxheim 47.91128 7.29492 P PPL FR C1 68 683 68203 1195 215 Europe/Paris 2007-07-07
-2994294 Merville-Franceville-Plage Merville-Franceville-Plage Merville,Merville-Franceville-Plage 49.27218 -0.19616 P PPL FR 99 14 142 14409 1592 12 Europe/Paris 2012-01-18
-2994297 Merville Merville Merville 50.64329 2.64125 P PPL FR B4 59 594 59400 9104 18 Europe/Paris 2012-01-18
-2994298 Merville Merville 43.72354 1.29656 P PPL FR B3 31 313 31341 3152 160 Europe/Paris 2008-05-12
-2994301 Mervent Mervent Mervent,Mervont 46.52239 -0.75654 P PPL FR B5 85 851 85143 1131 84 Europe/Paris 2012-01-18
-2994303 Mervans Mervans Mervans 46.79923 5.1843 P PPL FR A1 71 714 71295 1326 186 Europe/Paris 2012-01-18
-2994306 Méru Meru Meru,Méru 49.23333 2.13333 P PPL FR B6 60 601 60395 13528 99 Europe/Paris 2012-01-18
-2994307 Mertzwiller Mertzwiller Mertzwiller,Merzmuhler 48.86846 7.6831 P PPL FR C1 67 672 67291 3716 163 Europe/Paris 2012-01-18
-2994310 Merten Merten Merten 49.2491 6.66632 P PPL FR B2 57 571 57460 1653 209 Europe/Paris 2012-01-18
-2994313 Mers-les-Bains Mers-les-Bains Mers,Mers-les-Bains 50.06538 1.3881 P PPL FR B6 80 801 80533 3487 5 7 Europe/Paris 2012-01-18
-2994349 Merlimont Merlimont Merlimont 50.4559 1.61315 P PPL FR B4 62 624 62571 2960 7 Europe/Paris 2012-01-18
-2994351 Merlevenez Merlevenez Brelevenez,Merlevenez 47.73563 -3.23047 P PPL FR A2 56 561 56130 2457 12 Europe/Paris 2012-01-18
-2994379 Mérindol Merindol Merindol,Mérindol 43.75516 5.20357 P PPL FR B8 84 841 84074 1925 161 Europe/Paris 2011-01-18
-2994385 Mérignies Merignies Merignies,Mérignies 50.50609 3.11043 P PPL FR B4 59 595 59398 2270 44 Europe/Paris 2012-01-18
-2994393 Mérignac Merignac Meirinhac,Merignac,Merignae,Mérignac 44.83248 -0.63381 P PPL FR 97 33 332 33281 69791 33 Europe/Paris 2012-01-18
-2994396 Mériel Meriel Meriel,Mériel 49.07614 2.21054 P PPL FR A8 95 953 95392 4319 66 Europe/Paris 2012-01-18
-2994401 Méricourt Mericourt Mericourt,Méricourt 50.40116 2.86246 P PPL FR B4 62 627 62570 11580 52 Europe/Paris 2012-01-18
-2994404 Méribel Meribel Meribel,Meribel',Méribel,Мерибель 45.41497 6.565 P PPL FR B9 73 731 73015 2626 1424 Europe/Paris 2012-02-27
-2994415 Méréville Mereville Mereville,Méréville 48.59138 6.15086 P PPL FR B2 54 543 54364 1421 254 Europe/Paris 2012-01-18
-2994416 Méréville Mereville Mereville,Méréville 48.31476 2.08609 P PPL FR A8 91 911 91390 3250 113 Europe/Paris 2012-01-18
-2994426 Méreau Mereau Mereau,Méreau 47.16296 2.05086 P PPL FR A3 18 183 18148 2148 105 Europe/Paris 2012-01-18
-2994428 Méré Mere Mere,Méré 48.78445 1.81247 P PPL FR A8 78 782 78389 1789 141 Europe/Paris 2012-01-18
-2994431 Merdrignac Merdrignac Medrigneg,Merdrignac 48.19372 -2.41533 P PPL FR A2 22 221 22147 3159 149 Europe/Paris 2012-01-18
-2994443 Mercy-le-Bas Mercy-le-Bas Mercy,Mercy-le-Bas 49.38302 5.75044 P PPL FR B2 54 541 54362 1351 283 Europe/Paris 2012-01-18
-2994446 Mercus-Garrabet Mercus-Garrabet Mercus,Mercus-Garrabet 42.8779 1.629 P PPL FR B3 09 091 09188 1056 485 Europe/Paris 2012-01-18
-2994447 Mercury Mercury Mercury-Gemilly,Mercury-Gémilly 45.67452 6.33688 P PPL FR B9 73 731 73154 2562 552 Europe/Paris 2007-11-20
-2994449 Mercurol Mercurol Mercurol 45.07437 4.89279 P PPL FR B9 26 263 26179 1809 192 Europe/Paris 2012-01-18
-2994481 Mer Mer Mer 47.70555 1.50621 P PPL FR A3 41 411 41136 5830 95 Europe/Paris 2012-01-18
-2994486 Méounes-lès-Montrieux Meounes-les-Montrieux Meounes,Meounes-les-Montrieux,Méounes,Méounes-lès-Montrieux 43.27966 5.97012 P PPL FR B8 83 833 83077 1353 270 Europe/Paris 2012-01-18
-2994494 Menucourt Menucourt Menucourt 49.02841 1.98046 P PPL FR A8 95 953 95388 5382 102 Europe/Paris 2012-01-18
-2994497 Menton Menton Menton,Mentona,Mentone,Ментона 43.77649 7.50435 P PPL FR B8 06 062 06083 29649 17 Europe/Paris 2011-11-02
-2994500 Menthon-Saint-Bernard Menthon-Saint-Bernard Menthon 45.85995 6.19552 P PPL FR B9 74 741 74176 1864 487 Europe/Paris 2008-05-13
-2994509 Mensignac Mensignac Mensignac 45.22506 0.56214 P PPL FR 97 24 243 24266 1273 202 Europe/Paris 2012-01-18
-2994511 Mens Mens Mens 44.81753 5.75137 P PPL FR B9 38 381 38226 1325 782 Europe/Paris 2012-01-18
-2994529 Menneval Menneval Menneval 49.1 0.61667 P PPL FR A7 27 272 27398 1432 152 Europe/Paris 2012-01-18
-2994534 Mennecy Mennecy Mennecy 48.56903 2.44384 P PPL FR A8 91 912 91386 14646 82 Europe/Paris 2012-01-18
-2994542 Ménilles Menilles Menilles,Ménilles 49.03333 1.36667 P PPL FR A7 27 273 27397 1457 42 Europe/Paris 2012-01-18
-2994574 Ménétrol Menetrol Menetrol,Ménétrol 45.87184 3.12741 P PPL FR 98 63 634 63224 1758 329 Europe/Paris 2012-01-18
-2994585 Menetou-Salon Menetou-Salon Menetou-Salon 47.23172 2.48715 P PPL FR A3 18 181 18145 1706 233 Europe/Paris 2012-01-18
-2994591 Ménestreau-en-Villette Menestreau-en-Villette Menestreau,Menestreau-en-Villette,Ménestreau-en-Villette 47.69962 2.02333 P PPL FR A3 45 452 45200 1466 121 Europe/Paris 2012-01-18
-2994596 Ménesplet Menesplet Menesplet,Ménesplet 45.01667 0.11667 P PPL FR 97 24 243 24264 1363 27 Europe/Paris 2012-01-18
-2994603 Ménerbes Menerbes 43.83242 5.20597 P PPL FR B8 84 841 84073 1062 237 Europe/Paris 2008-07-28
-2994608 Ménéac Meneac Meneac,Menieg,Ménéac 48.13972 -2.46134 P PPL FR A2 56 563 56129 1808 170 Europe/Paris 2012-01-18
-2994617 Mende Mende Mende,mando,マンド 44.51667 3.5 P PPLA2 FR A9 48 482 48095 14837 743 Europe/Paris 2011-11-02
-2994651 Melun Melun Melun,muran,ムラン 48.53333 2.66667 P PPLA2 FR A8 77 772 77288 38953 55 Europe/Paris 2011-12-08
-2994653 Melrand Melrand Melrand,Melrant,Mêlrant 47.98002 -3.10941 P PPL FR A2 56 562 56128 1631 68 Europe/Paris 2012-01-18
-2994673 Mellecey Mellecey Mellecey 46.81084 4.72822 P PPL FR A1 71 712 71292 1197 214 Europe/Paris 2012-01-18
-2994675 Melle Melle Melle 46.22285 -0.14216 P PPL FR B7 79 792 79174 4342 138 Europe/Paris 2012-01-18
-2994676 Mellac Mellac Mellac,Mellag 47.90345 -3.57675 P PPL FR A2 29 294 29147 2432 90 Europe/Paris 2012-01-18
-2994680 Mélisey Melisey Melisey,Mélisey 47.75228 6.58014 P PPL FR A6 70 701 70339 1857 327 Europe/Paris 2012-01-18
-2994692 Melgven Melgven Melgven,Melwenn,Mêlwenn 47.90626 -3.83518 P PPL FR A2 29 294 29146 3115 96 Europe/Paris 2012-01-18
-2994697 Melesse Melesse Meled,Melesse 48.21771 -1.69496 P PPL FR A2 35 353 35173 5675 84 Europe/Paris 2012-01-18
-2994707 Melay Melay Melay 47.18333 -0.69429 P PPL FR B5 49 492 49199 1517 119 Europe/Paris 2012-01-18
-2994727 Meistratzheim Meistratzheim Meistratzheim 48.44808 7.5453 P PPL FR C1 67 675 67286 1376 156 Europe/Paris 2012-01-18
-2994733 Meillonnas Meillonnas Meillonnas 46.24342 5.34929 P PPL FR B9 01 012 01241 1305 274 Europe/Paris 2012-01-18
-2994743 Meillac Meillac Meillac,Melieg 48.41174 -1.81378 P PPL FR A2 35 354 35172 1497 43 Europe/Paris 2012-01-18
-2994746 Meilhan-sur-Garonne Meilhan-sur-Garonne Meilhan,Meilhan-sur-Garonne 44.52131 0.03472 P PPL FR 97 47 472 47165 1451 60 Europe/Paris 2012-01-18
-2994747 Meilhan Meilhan 43.86436 -0.70587 P PPL FR 97 40 401 40180 1080 67 Europe/Paris 2009-04-01
-2994756 Mehun-sur-Yèvre Mehun-sur-Yevre Mehun,Mehun-sur-Yevre,Mehun-sur-Yevres,Mehun-sur-Yèvre,Mehun-sur-Yèvres 47.13782 2.21105 P PPL FR A3 18 183 18141 7257 123 Europe/Paris 2012-01-18
-2994768 Megève Megeve Megeva,Megeve,Megevo,Megève,Megéva 45.85233 6.61286 P PPL FR B9 74 742 74173 5129 1105 Europe/Paris 2012-01-18
-2994770 Mées Mees Mees,Mées 43.70452 -1.10952 P PPL FR 97 40 401 40179 1496 13 Europe/Paris 2012-01-18
-2994773 Médréac Medreac Mederieg,Medreac,Médréac 48.26703 -2.06618 P PPL FR A2 35 353 35171 1634 85 Europe/Paris 2012-01-18
-2994778 Médis Medis Medis,Médis 45.64337 -0.96298 P PPL FR B7 17 174 17228 2550 19 Europe/Paris 2012-01-18
-2994785 Médan Medan Medan,Médan 48.95539 1.99494 P PPL FR A8 78 783 78384 1463 40 Europe/Paris 2012-01-18
-2994790 Mécleuves Mecleuves Mecleuves,Mécleuves 49.0424 6.27168 P PPL FR B2 57 574 57454 1040 213 Europe/Paris 2012-01-18
-2994798 Meaux Meaux Mo,Мо 48.96014 2.87885 P PPLA3 FR A8 77 771 77284 53811 48 Europe/Paris 2012-02-24
-2994803 Méaulte Meaulte Meaulte,Méaulte 49.98167 2.66121 P PPL FR B6 80 804 80523 1287 52 Europe/Paris 2012-01-18
-2994806 Méaudre Meaudre Meaudre,Méaudre 45.12695 5.52707 P PPL FR B9 38 381 38225 1200 996 Europe/Paris 2012-01-18
-2994837 Mazingarbe Mazingarbe Mazingarbe 50.4711 2.71544 P PPL FR B4 62 627 62563 7587 38 Europe/Paris 2012-01-18
-2994842 Mazières-en-Mauges Mazieres-en-Mauges Mazieres,Mazieres-en-Mauges,Mazières,Mazières-en-Mauges 47.04536 -0.81702 P PPL FR B5 49 492 49195 1023 117 Europe/Paris 2012-01-18
-2994844 Mazières-de-Touraine Mazieres-de-Touraine Mazieres,Mazieres-de-Touraine,Mazières,Mazières-de-Touraine 47.38326 0.42548 P PPL FR A3 37 371 37150 1063 90 Europe/Paris 2012-01-18
-2994856 Mazet-Saint-Voy Mazet-Saint-Voy Mazet,Mazet-Saint-Voy,Mont-Lizieu 45.04788 4.24499 P PPL FR 98 43 433 43130 1081 1027 Europe/Paris 2012-01-18
-2994868 Mazères-Lezons Mazeres-Lezons Mazeres,Mazères 43.26667 -0.35 P PPL FR 97 64 643 64373 2305 318 Europe/Paris 2006-04-30
-2994870 Mazères Mazeres Mazeres,Mazères 43.25055 1.67728 P PPL FR B3 09 092 09185 3006 244 Europe/Paris 2012-01-18
-2994891 Mazé Maze Maze,Mazé 47.45632 -0.27106 P PPL FR B5 49 491 49194 4094 29 Europe/Paris 2012-01-18
-2994901 Mazan Mazan Mazan 44.0568 5.12747 P PPL FR B8 84 843 84072 5307 154 Europe/Paris 2012-01-18
-2994902 Mazamet Mazamet Mazamet 43.49001 2.37304 P PPL FR B3 81 812 81163 11479 259 Europe/Paris 2012-01-18
-2994906 May-sur-Orne May-sur-Orne May,May-sur-Orne 49.10107 -0.37471 P PPL FR 99 14 142 14408 1795 59 Europe/Paris 2012-01-18
-2994928 Mayet Mayet Mayet 47.75968 0.27468 P PPL FR B5 72 721 72191 3048 81 Europe/Paris 2012-01-18
-2994935 Mayenne Mayenne 48.3 -0.61667 P PPLA3 FR B5 53 533 53147 15583 111 Europe/Paris 2011-11-02
-2994948 Maxilly-sur-Léman Maxilly-sur-Leman Maxilly,Maxilly-sur-Leman,Maxilly-sur-Léman 46.40027 6.64617 P PPL FR B9 74 744 74172 1130 447 Europe/Paris 2012-01-18
-2994951 Maxéville Maxeville Maxeville,Maxéville 48.70816 6.1696 P PPL FR B2 54 543 54357 9226 193 Europe/Paris 2012-01-18
-2994952 Maxent Maxent Maxent,Skiriou-Masen,Skirioù-Masen 47.98333 -2.03333 P PPL FR A2 35 353 35169 1140 116 Europe/Paris 2011-09-11
-2994958 Mauzé-Thouarsais Mauze-Thouarsais Mauze-Thouarsais,Mauzé-Thouarsais 46.97611 -0.27846 P PPL FR B7 79 791 79171 2067 109 Europe/Paris 2012-01-18
-2994959 Mauzé-sur-le-Mignon Mauze-sur-le-Mignon Mauze,Mauze-sur-le-Mignon,Mauzé,Mauzé-sur-le-Mignon 46.19516 -0.67032 P PPL FR B7 79 792 79170 2477 21 Europe/Paris 2012-01-18
-2994981 Mauves-sur-Loire Mauves-sur-Loire Malvid,Mauve-sur-Loire,Mauves,Mauves-sur-Loire 47.29738 -1.38763 P PPL FR B5 44 442 44094 2579 50 Europe/Paris 2012-01-18
-2994983 Mauves Mauves Mauves 45.03525 4.83 P PPL FR B9 07 073 07152 1113 118 Europe/Paris 2012-01-18
-2994992 Maussane-les-Alpilles Maussane-les-Alpilles Maussane,Maussanne 43.72236 4.80497 P PPL FR B8 13 132 13058 2197 36 Europe/Paris 2011-01-18
-2995003 Maurs Maurs Maurs,Maurs-la-Jolie 44.71117 2.19832 P PPL FR 98 15 151 15122 2269 291 Europe/Paris 2012-01-18
-2995009 Mauron Mauron Maoron,Mauron 48.08257 -2.28477 P PPL FR A2 56 563 56127 3426 81 Europe/Paris 2012-01-18
-2995024 Mauriac Mauriac Mauriac 45.21667 2.33333 P PPLA3 FR 98 15 152 15120 3955 687 Europe/Paris 2010-04-02
-2995041 Maurepas Maurepas Maurepas 48.76486 1.92923 P PPL FR A8 78 782 78383 19009 172 Europe/Paris 2012-01-18
-2995054 Maureillas-las-Illas Maureillas-las-Illas Maureillas,Morellas,Morellàs 42.49014 2.80752 P PPL FR A9 66 661 66106 2491 131 Europe/Paris 2008-03-19
-2995055 Maureilhan Maureilhan Maureilhan-et-Ramejan,Maureilhan-et-Raméjan 43.35 3.11667 P PPL FR A9 34 341 34155 1610 51 Europe/Paris 2007-11-13
-2995058 Maure-de-Bretagne Maure-de-Bretagne Anast,Maure,Maure-de-Bretagne 47.89239 -1.99104 P PPL FR A2 35 352 35168 2711 46 Europe/Paris 2012-01-18
-2995059 Maurecourt Maurecourt Maurecourt 48.99614 2.06154 P PPL FR A8 78 783 78382 3668 27 Europe/Paris 2012-01-18
-2995104 Maulévrier Maulevrier Maulevrier,Maulévrier 47.00929 -0.74239 P PPL FR B5 49 492 49192 2864 131 Europe/Paris 2012-01-18
-2995107 Mauléon-Licharre Mauleon-Licharre Maule-Lextarre,Mauleon,Mauleon-Licharre,Mauleon-Soule,Mauleón,Mauléon,Mauléon-Licharre,Mauléon-Soule 43.22684 -0.88038 P PPL FR 97 64 642 64371 3313 135 Europe/Paris 2012-01-18
-2995110 Maule Maule Maule 48.91056 1.85264 P PPL FR A8 78 781 78380 6272 34 Europe/Paris 2012-01-18
-2995121 Mauguio Mauguio Condado de Melguelh,Mauguio,Melguelh,Mont-Salaison 43.6181 4.00739 P PPL FR A9 34 343 34154 18320 10 Europe/Paris 2012-01-18
-2995146 Maubourguet Maubourguet Maubourguet 43.46824 0.03578 P PPL FR B3 65 653 65304 2492 182 Europe/Paris 2012-01-18
-2995150 Maubeuge Maubeuge Maubeuge 50.27875 3.97267 P PPL FR B4 59 591 59392 33684 143 Europe/Paris 2011-11-02
-2995154 Maubec Maubec Maubec 45.56749 5.26434 P PPL FR B9 38 382 38223 1497 439 Europe/Paris 2012-01-18
-2995155 Maubec Maubec Maubec 43.84593 5.14027 P PPL FR B8 84 841 84071 1682 135 Europe/Paris 2012-01-18
-2995157 Matzenheim Matzenheim 48.3945 7.62185 P PPL FR C1 67 675 67285 1334 159 Europe/Paris 2007-07-07
-2995171 Matour Matour Matour 46.30654 4.48178 P PPL FR A1 71 715 71289 1014 431 Europe/Paris 2012-01-18
-2995175 Matignon Matignon Matignon 48.59627 -2.29125 P PPL FR A2 22 221 22143 1620 67 Europe/Paris 2012-01-18
-2995183 Mathieu Mathieu Mathieu 49.25448 -0.37188 P PPL FR 99 14 142 14407 1725 44 Europe/Paris 2012-01-18
-2995189 Mathay Mathay Mathay 47.43904 6.78487 P PPL FR A6 25 252 25370 2088 339 Europe/Paris 2012-01-18
-2995192 Matha Matha Matha 45.86823 -0.31849 P PPL FR B7 17 175 17224 2272 48 Europe/Paris 2012-01-18
-2995206 Massy Massy Massa,Massy,Масса 48.72692 2.28301 P PPL FR A8 91 913 91377 38768 84 Europe/Paris 2012-01-18
-2995212 Massongy Massongy Massongy 46.31601 6.33503 P PPL FR B9 74 744 74171 1273 433 Europe/Paris 2012-01-18
-2995226 Massieux Massieux Massieux 45.90969 4.83321 P PPL FR B9 01 012 01238 2319 232 Europe/Paris 2012-01-18
-2995229 Massiac Massiac Massiac 45.25551 3.19759 P PPL FR 98 15 153 15119 1835 534 Europe/Paris 2012-01-18
-2995230 Masseube Masseube Masseube 43.42984 0.5781 P PPL FR B3 32 323 32242 1518 211 Europe/Paris 2012-01-18
-2995248 Massay Massay Massay 47.15324 1.99334 P PPL FR A3 18 183 18140 1347 122 Europe/Paris 2012-01-18
-2995269 Masny Masny Masny 50.34797 3.20165 P PPL FR B4 59 593 59390 4663 30 Europe/Paris 2012-01-18
-2995270 Masnières Masnieres Masnieres,Masnières 50.11489 3.20889 P PPL FR B4 59 592 59389 2593 69 Europe/Paris 2012-01-18
-2995281 Masevaux Masevaux Massevaux 47.77671 6.99683 P PPL FR C1 68 686 68201 3475 407 Europe/Paris 2007-07-07
-2995324 Marzy Marzy Marzy 46.98124 3.09352 P PPL FR A1 58 583 58160 3245 209 Europe/Paris 2012-01-18
-2995329 Marzan Marzan Marzan,Marzhan 47.54069 -2.32466 P PPL FR A2 56 563 56126 1806 48 Europe/Paris 2012-01-18
-2995330 Mary-sur-Marne Mary-sur-Marne Mary-sur-Marne 49.01591 3.02788 P PPL FR A8 77 771 77280 1266 60 Europe/Paris 2012-01-18
-2995339 Marvejols Marvejols Marvejols 44.55378 3.29137 P PPL FR A9 48 482 48092 6086 658 Europe/Paris 2012-01-18
-2995351 Martres-Tolosane Martres-Tolosane Martres,Martres-Tolosane 43.19929 1.01056 P PPL FR B3 31 311 31324 1927 273 Europe/Paris 2012-01-18
-2995360 Martizay Martizay Martizay 46.80767 1.04324 P PPL FR A3 36 361 36113 1062 82 Europe/Paris 2012-01-18
-2995363 Martinvast Martinvast Martinvast 49.59608 -1.66434 P PPL FR 99 50 502 50294 1152 60 Europe/Paris 2012-01-18
-2995371 Martin-Église Martin-Eglise Martin,Martin-Eglise,Martin-Église 49.90174 1.1412 P PPL FR A7 76 761 76414 1381 12 Europe/Paris 2012-01-18
-2995385 Martillac Martillac 44.711 -0.53747 P PPL FR 97 33 332 33274 2185 38 Europe/Paris 2008-04-23
-2995387 Martigues Martigues Martigues 43.40735 5.05526 P PPL FR B8 13 134 13056 45749 5 Europe/Paris 2011-11-02
-2995398 Martigné-Ferchaud Martigne-Ferchaud Martigne-Ferchaud,Martigne-Forchaud,Martigné-Ferchaud,Martigné-Forchaud,Mazhinieg-Houarnruz 47.82934 -1.31911 P PPL FR A2 35 351 35167 2619 104 Europe/Paris 2012-01-18
-2995399 Martigné-Briand Martigne-Briand Martigne,Martigne-Briand,Martigné,Martigné-Briand 47.23358 -0.42933 P PPL FR B5 49 493 49191 1883 74 Europe/Paris 2012-01-18
-2995401 Martigné-sur-Mayenne Martigne-sur-Mayenne Martigre,Martigré 48.2 -0.66667 P PPL FR B5 53 533 53146 1370 162 Europe/Paris 2007-11-13
-2995402 Martignat Martignat Martignat 46.20972 5.61049 P PPL FR B9 01 014 01237 1399 518 Europe/Paris 2011-01-14
-2995404 Martignas-sur-Jalle Martignas-sur-Jalle Martignas,Martignas-sur-Jalle,Martignas-sur-dalle 44.84528 -0.7806 P PPL FR 97 33 332 33273 6803 40 Europe/Paris 2012-01-18
-2995413 Marthod Marthod Marthod 45.7284 6.41298 P PPL FR B9 73 731 73153 1393 399 Europe/Paris 2012-01-18
-2995438 Marssac-sur-Tarn Marssac-sur-Tarn Marssac,Marssac-sur-Tarn 43.91768 2.02921 P PPL FR B3 81 811 81156 2531 151 Europe/Paris 2011-01-13
-2995454 Marsilly Marsilly Marsilly 46.23027 -1.1384 P PPL FR B7 17 173 17222 2365 21 Europe/Paris 2012-01-18
-2995456 Marsillargues Marsillargues Marsillargues 43.66424 4.17448 P PPL FR A9 34 343 34151 5983 6 Europe/Paris 2012-01-18
-2995469 Marseille Marseille MRS,Marseilla,Marseille,Marseilles,Marsej,Marsejlo,Marsel',Marsela,Marselha,Marselis,Marsella,Marsella - Marseille,Marselye,Marseya,Marseļa,Marsigghia,Marsiggia,Marsiglia,Marsiho,Marsilha,Marsilia,Marsilija,Marsilya,Marsylia,Massalia,Massilia,ma sai,maleuseyu,mar se,mar sey,marsaiya,marseli,marsy,marsylya,maruseiyu,mrsyy,Μασσαλία,Марсель,Марсеј,Марсилия,מרסיי,مارسيليا,مارسی,मार्सैय,มาร์เซ,มาร์เซย์,მარსელი,マルセイユ,马赛,마르세유 43.29695 5.38107 P PPLA FR B8 13 133 13055 794811 28 Europe/Paris 2011-12-08
-2995471 Marseillan Marseillan Marseillan 43.35618 3.52795 P PPL FR A9 34 341 34150 6981 8 Europe/Paris 2012-01-18
-2995481 Marsat Marsat Marsat 45.87655 3.08288 P PPL FR 98 63 634 63212 1203 380 Europe/Paris 2012-01-18
-2995487 Marsanne Marsanne Marsanne 44.64375 4.87394 P PPL FR B9 26 262 26176 1064 258 Europe/Paris 2012-01-18
-2995489 Marsannay-la-Côte Marsannay-la-Cote Marsannay,Marsannay-la-Cote,Marsannay-la-Côte 47.27095 4.98895 P PPL FR A1 21 212 21390 5181 276 Europe/Paris 2012-01-18
-2995507 Marsac-sur-Don Marsac-sur-Don Marsac,Marsac-sur-Don,Marzheg 47.59648 -1.67952 P PPL FR B5 44 441 44091 1305 43 Europe/Paris 2012-01-18
-2995508 Marsac-en-Livradois Marsac-en-Livradois Marsac,Marsac-en-Livradois 45.47882 3.72726 P PPL FR 98 63 631 63211 1429 544 Europe/Paris 2012-01-18
-2995532 Marquise Marquise Beaupre,Beaupré,Marquise 50.81294 1.70786 P PPL FR B4 62 623 62560 4670 16 Europe/Paris 2012-01-18
-2995533 Marquion Marquion Marquion 50.21126 3.08719 P PPL FR B4 62 621 62559 1035 52 Europe/Paris 2012-01-18
-2995534 Marquillies Marquillies Marquillies 50.55577 2.87067 P PPL FR B4 59 595 59388 1638 28 Europe/Paris 2012-01-18
-2995536 Marquette-lez-Lille Marquette-lez-Lille Marquette 50.67628 3.06613 P PPL FR B4 59 595 59386 10832 20 Europe/Paris 2007-11-17
-2995543 Marquefave Marquefave Marquefave 43.31766 1.24661 P PPL FR B3 31 311 31320 1032 199 Europe/Paris 2012-01-18
-2995550 Marpent Marpent Marpen,Marpent 50.29252 4.07936 P PPL FR B4 59 591 59385 2715 134 Europe/Paris 2011-10-14
-2995563 Maromme Maromme Maromme 49.47925 1.02375 P PPL FR A7 76 763 76410 12412 126 Europe/Paris 2012-01-18
-2995565 Marolles-sur-Seine Marolles-sur-Seine Marolles,Marolles-sur-Seine 48.38662 3.03562 P PPL FR A8 77 773 77279 1521 53 Europe/Paris 2012-01-18
-2995569 Marolles-les-Braults Marolles-les-Braults Marolles,Marolles-les-Braults 48.25271 0.31631 P PPL FR B5 72 722 72189 2257 85 Europe/Paris 2012-01-18
-2995571 Marolles-en-Hurepoix Marolles-en-Hurepoix Marolles,Marolles-en-Hurepoix 48.56232 2.29885 P PPL FR A8 91 913 91376 4921 85 Europe/Paris 2012-01-18
-2995585 Maroilles Maroilles Maroilles,Maroilles-en-Thierache,Maroilles-en-Thiérache 50.13508 3.76132 P PPL FR B4 59 591 59384 1422 153 Europe/Paris 2012-01-18
-2995586 Marœuil Maroeuil Maroeuil,Marœuil 50.32519 2.70504 P PPL FR B4 62 621 62557 2611 75 Europe/Paris 2009-12-20
-2995597 Marnes-la-Coquette Marnes-la-Coquette Marnes,Marnes-la-Coquette 48.82732 2.17151 P PPL FR A8 92 923 92047 1595 167 Europe/Paris 2012-01-18
-2995606 Marnaz Marnaz Marnaz 46.06201 6.52692 P PPL FR B9 74 742 74169 4882 501 Europe/Paris 2012-01-18
-2995610 Marnay Marnay Marnay 47.29088 5.77277 P PPL FR A6 70 702 70334 1311 205 Europe/Paris 2012-01-18
-2995622 Marmoutier Marmoutier Marmoutier 48.69005 7.38195 P PPL FR C1 67 674 67283 2584 226 Europe/Paris 2011-11-02
-2995642 Marmande Marmande Marmande 44.5 0.16667 P PPLA3 FR 97 47 472 47157 19069 35 Europe/Paris 2011-12-08
-2995647 Marmagne Marmagne Marmagne 47.1 2.28333 P PPL FR A3 18 181 18138 1953 121 Europe/Paris 2012-01-18
-2995648 Marmagne Marmagne Marmagne 46.83666 4.35892 P PPL FR A1 71 711 71282 1344 317 Europe/Paris 2012-01-18
-2995649 Marly Marly Marly-sur-Seille 49.06667 6.15 P PPL FR B2 57 574 57447 10997 166 Europe/Paris 2011-12-08
-2995652 Marly-le-Roi Marly-le-Roi Marly,Marly-la-Machine,Marly-le-Roi 48.86667 2.08333 P PPL FR A8 78 783 78372 17404 166 Europe/Paris 2012-01-18
-2995653 Marly-la-Ville Marly-la-Ville Marly,Marly-la-Ville 49.08202 2.50348 P PPL FR A8 95 952 95371 6034 133 Europe/Paris 2012-01-18
-2995656 Marly Marly Marly 50.34556 3.54959 P PPL FR B4 59 596 59383 11681 42 Europe/Paris 2012-01-18
-2995667 Marlhes Marlhes Marlhes 45.28321 4.39752 P PPL FR B9 42 423 42139 1462 948 Europe/Paris 2012-01-18
-2995669 Marles-les-Mines Marles-les-Mines Marles,Marles-les-Mines 50.50478 2.50882 P PPL FR B4 62 622 62555 6198 46 Europe/Paris 2012-01-18
-2995670 Marles-en-Brie Marles-en-Brie Marles,Marles-en-Brie 48.72784 2.88003 P PPL FR A8 77 773 77277 1476 113 Europe/Paris 2012-01-18
-2995673 Marlenheim Marlenheim 48.62134 7.49096 P PPL FR C1 67 673 67282 3559 192 Europe/Paris 2011-11-02
-2995675 Marle Marle Marle,Marle-et-Behaine 49.74006 3.7706 P PPL FR B6 02 022 02468 2561 109 Europe/Paris 2012-01-18
-2995699 Maringues Maringues Maringues 45.92118 3.32969 P PPL FR 98 63 635 63210 2627 308 Europe/Paris 2012-01-18
-2995702 Marines Marines Marines 49.14485 1.98226 P PPL FR A8 95 953 95370 3130 118 Europe/Paris 2012-01-18
-2995713 Marin Marin Marin 46.37472 6.53022 P PPL FR B9 74 744 74166 1440 591 Europe/Paris 2012-01-18
-2995722 Marigny-les-Usages Marigny-les-Usages Marigny,Marigny-les-Usages 47.95798 2.01462 P PPL FR A3 45 452 45197 1234 123 Europe/Paris 2012-01-18
-2995726 Marigny-le-Châtel Marigny-le-Chatel Marigny,Marigny-le-Chatel,Marigny-le-Châtel 48.40291 3.73588 P PPL FR A4 10 102 10224 1554 110 Europe/Paris 2012-01-18
-2995731 Marigny-Brizay Marigny-Brizay Marigny,Marigny-Brizay 46.74622 0.37626 P PPL FR B7 86 863 86146 1125 108 Europe/Paris 2012-01-18
-2995734 Marigny Marigny Marigny 49.09952 -1.24179 P PPL FR 99 50 504 50292 2008 78 Europe/Paris 2012-01-18
-2995744 Marignier Marignier 46.09014 6.50004 P PPL FR B9 74 742 74164 5883 473 Europe/Paris 2007-03-26
-2995747 Marigné-Laillé Marigne-Laille Marigne,Marigne-Laille,Marigné,Marigné-Laillé 47.81765 0.3405 P PPL FR B5 72 723 72187 1585 105 Europe/Paris 2012-01-18
-2995750 Marignane Marignane Marignanc,Marignane,marinyanu,マリニャーヌ 43.41604 5.21453 P PPL FR B8 13 134 13054 35873 14 Europe/Paris 2012-01-18
-2995782 Marguerittes Marguerittes Marguerittes 43.8596 4.44517 P PPL FR A9 30 302 30156 8974 53 Europe/Paris 2011-01-19
-2995787 Margon Margon Margon 48.33568 0.83454 P PPL FR A3 28 284 28236 1292 127 Europe/Paris 2012-01-18
-2995790 Margny-lès-Compiègne Margny-les-Compiegne Margny,Margny-les-Compiegne,Margny-lès-Compiègne 49.42559 2.81806 P PPL FR B6 60 603 60382 7011 33 Europe/Paris 2012-01-18
-2995806 Margency Margency Margency 49 2.3 P PPL FR A8 95 952 95369 2751 70 Europe/Paris 2012-01-18
-2995807 Margencel Margencel Margencel 46.337 6.43305 P PPL FR B9 74 744 74163 1682 467 Europe/Paris 2012-01-18
-2995809 Margaux Margaux Margaux 45.04012 -0.67892 P PPL FR 97 33 334 33268 1455 16 Europe/Paris 2012-01-18
-2995822 Mareuil-sur-Ourcq Mareuil-sur-Ourcq Mareuil,Mareuil-sur-Ourcq 49.13752 3.07822 P PPL FR B6 60 604 60380 1491 66 Europe/Paris 2012-01-18
-2995823 Mareuil-sur-Lay-Dissais Mareuil-sur-Lay-Dissais Mareuil,Vigneron 46.53333 -1.23333 P PPL FR B5 85 852 85135 2647 6 Europe/Paris 2007-11-20
-2995824 Mareuil-sur-Cher Mareuil-sur-Cher Mareuil,Mareuil-sur-Cher 47.29314 1.32897 P PPL FR A3 41 413 41126 1072 69 Europe/Paris 2012-01-18
-2995825 Mareuil Mareuil Mareuil-sur-Belle 45.45 0.45 P PPL FR 97 24 242 24253 1174 118 Europe/Paris 2007-11-13
-2995826 Mareuil-sur-Ay Mareuil-sur-Ay Mareuil,Mareuil-sur-Ay 49.04581 4.03587 P PPL FR A4 51 512 51347 1237 75 Europe/Paris 2012-01-18
-2995828 Mareuil-lès-Meaux Mareuil-les-Meaux Mareuil,Mareuil-les-Meaux,Mareuil-lès-Meaux 48.92648 2.86134 P PPL FR A8 77 771 77276 1762 55 Europe/Paris 2012-01-18
-2995829 Mareuil-le-Port Mareuil-le-Port Mareuil,Mareuil-le-Port 49.08179 3.76011 P PPL FR A4 51 512 51346 1335 77 Europe/Paris 2012-01-18
-2995840 Maretz Maretz Maretz 50.0453 3.41808 P PPL FR B4 59 592 59382 1400 134 Europe/Paris 2012-01-18
-2995854 Marennes Marennes Marennes 45.8228 -1.10546 P PPL FR B7 17 172 17219 5027 12 Europe/Paris 2012-01-18
-2995855 Marennes Marennes Marennes 45.62054 4.91551 P PPL FR B9 69 691 69281 1564 215 Europe/Paris 2012-01-18
-2995859 Mareil-sur-Mauldre Mareil-sur-Mauldre Mareil,Mareil-sur-Mauldre 48.89521 1.8687 P PPL FR A8 78 781 78368 1882 40 Europe/Paris 2012-01-18
-2995861 Mareil-Marly Mareil-Marly Mareil,Mareil-Marly 48.88214 2.07351 P PPL FR A8 78 783 78367 3381 116 Europe/Paris 2012-01-18
-2995875 Mareau-aux-Prés Mareau-aux-Pres Mareau,Mareau-aux-Pres,Mareau-aux-Prés 47.86667 1.78333 P PPL FR A3 45 452 45196 1224 94 Europe/Paris 2012-01-18
-2995887 Mardié Mardie Mardie,Mardié 47.88617 2.05745 P PPL FR A3 45 452 45194 2504 111 Europe/Paris 2012-01-18
-2995888 Mardeuil Mardeuil Mardeuil 49.05393 3.93 P PPL FR A4 51 512 51344 1537 76 Europe/Paris 2012-01-18
-2995908 Marcq-en-Barœul Marcq-en-Baroeul Marcq,Marcq-en-Baroeul,Marcq-en-Barœul,Marq,Marq-en-Baroeul,Marquette-en-Baroeul 50.66667 3.08333 P PPL FR B4 59 595 59378 38629 20 Europe/Paris 2011-11-02
-2995916 Marcoussis Marcoussis Marcoussis 48.64026 2.23858 P PPL FR A8 91 913 91363 7756 78 Europe/Paris 2012-01-18
-2995922 Marcorignan Marcorignan Marcorignan 43.22634 2.92281 P PPL FR A9 11 113 11217 1148 36 Europe/Paris 2012-01-18
-2995924 Marconnelle Marconnelle Marconelle,Marconnelle 50.37588 2.01108 P PPL FR B4 62 624 62550 1290 26 Europe/Paris 2012-01-18
-2995926 Marconne Marconne Fontaine-Libre,Marconne 50.37143 2.04669 P PPL FR B4 62 624 62549 1312 26 Europe/Paris 2012-01-18
-2995927 Marçon Marcon Marcon,Marçon 47.71059 0.51101 P PPL FR B5 72 721 72183 1027 58 Europe/Paris 2012-01-18
-2995933 Marcoing Marcoing Marcoing 50.1211 3.17321 P PPL FR B4 59 592 59377 1989 56 Europe/Paris 2012-01-18
-2995936 Marckolsheim Marckolsheim 48.16471 7.544 P PPL FR C1 67 675 67281 3846 176 Europe/Paris 2007-07-07
-2995938 Marck Marck Marck 50.94896 1.94328 P PPL FR B4 62 626 62548 9158 4 Europe/Paris 2012-01-18
-2995940 Marcilly-sur-Tille Marcilly-sur-Tille Marcilly,Marcilly-sur-Tille 47.517 5.12979 P PPL FR A1 21 212 21383 1480 286 Europe/Paris 2012-01-18
-2995943 Marcilly-sur-Eure Marcilly-sur-Eure Marcilly,Marcilly-sur-Eure 48.82568 1.34741 P PPL FR A7 27 273 27391 1301 71 Europe/Paris 2012-01-18
-2995950 Marcilly-en-Villette Marcilly-en-Villette Marcilly-en-Villette 47.76505 2.02266 P PPL FR A3 45 452 45193 2005 125 Europe/Paris 2012-01-18
-2995971 Marcillac-Vallon Marcillac-Vallon Marcillac,Marcillac-Vallon,Marcillac-d'Aveyron 44.47464 2.46454 P PPL FR B3 12 122 12138 1635 283 Europe/Paris 2011-01-13
-2995978 Marcillac Marcillac Marcillac,Marcillac-de Blaye 45.2687 -0.52379 P PPL FR 97 33 331 33267 1089 53 Europe/Paris 2012-01-18
-2995983 Marcigny Marcigny Marcigny,Marcigny-sur-Loire 46.27627 4.03957 P PPL FR A1 71 713 71275 1923 258 Europe/Paris 2012-01-18
-2995990 Marciac Marciac Marciac 43.52321 0.16091 P PPL FR B3 32 323 32233 1258 161 Europe/Paris 2012-01-18
-2995991 Marchiennes Marchiennes Marchiennes,Marchiennes-Campagne 50.4 3.28333 P PPL FR B4 59 593 59375 4671 16 Europe/Paris 2007-11-13
-2996006 Marcheprime Marcheprime Marcheprime 44.69146 -0.85496 P PPL FR 97 33 336 33555 3768 54 Europe/Paris 2012-01-18
-2996039 Marcey-les-Grèves Marcey-les-Greves Marcey,Marcey-les-Greves,Marcey-les-Grèves 48.69673 -1.39156 P PPL FR 99 50 501 50288 1128 19 Europe/Paris 2012-01-18
-2996054 Marcellaz-Albanais Marcellaz-Albanais Marcellaz,Marcellaz-Albanais 45.87526 6.00162 P PPL FR B9 74 741 74161 1561 552 Europe/Paris 2012-01-18
-2996067 Marcamps Marcamps 45.04108 -0.49297 P PPL FR 97 33 331 33339 1409 16 Europe/Paris 2012-02-27
-2996074 Marboz Marboz Marboz 46.34337 5.25978 P PPL FR B9 01 012 01232 2382 225 Europe/Paris 2012-01-18
-2996075 Marboué Marboue Marboue,Marboué 48.11376 1.3321 P PPL FR A3 28 282 28233 1165 114 Europe/Paris 2012-01-18
-2996081 Marbache Marbache Marbache 48.79572 6.09752 P PPL FR B2 54 543 54351 1760 206 Europe/Paris 2012-01-18
-2996089 Maraussan Maraussan Maraussan 43.36895 3.15642 P PPL FR A9 34 341 34148 3178 46 Europe/Paris 2012-01-18
-2996103 Marans Marans Marans 46.30811 -0.9945 P PPL FR B7 17 173 17218 4663 14 Europe/Paris 2012-01-18
-2996106 Marange-Silvange Marange-Silvange Marange,Marange-Silvange 49.20748 6.10228 P PPL FR B2 57 574 57443 5708 215 Europe/Paris 2012-01-18
-2996126 Manziat Manziat Manziat 46.3594 4.90662 P PPL FR B9 01 012 01231 1759 200 Europe/Paris 2012-01-18
-2996127 Manzat Manzat Manzat 45.96105 2.94205 P PPL FR 98 63 634 63206 1377 632 Europe/Paris 2012-01-18
-2996141 Manthelan Manthelan Manthelan,Manthelon 47.13632 0.79319 P PPL FR A3 37 373 37143 1198 109 Europe/Paris 2012-01-18
-2996146 Mantes-la-Ville Mantes-la-Ville Mantes-la-Ville 48.97374 1.70253 P PPL FR A8 78 781 78362 19947 80 Europe/Paris 2012-01-18
-2996148 Mantes-la-Jolie Mantes-la-Jolie Mant-lja-Zholi,Mantes,Mantes-Gassicourt,Mantes-Sur-Seine,Mantes-la-Jolie,Мант-ля-Жоли 48.98333 1.71667 P PPLA3 FR A8 78 781 78361 44263 37 Europe/Paris 2011-11-02
-2996162 Mansle Mansle Mansle 45.87526 0.17914 P PPL FR B7 16 163 16206 1656 68 Europe/Paris 2012-01-18
-2996163 Mansigné Mansigne Mansigne,Mansigné 47.74834 0.13311 P PPL FR B5 72 721 72182 1411 61 Europe/Paris 2012-01-18
-2996173 Mansac Mansac Mansac 45.1687 1.38341 P PPL FR B1 19 191 19124 1339 195 Europe/Paris 2012-01-18
-2996180 Manosque Manosque Manosca,Manoske,Manosque,Manòsca,Маноске 43.82883 5.78688 P PPL FR B8 04 044 04112 21351 364 Europe/Paris 2011-11-02
-2996186 Manom Manom Manom 49.36985 6.18556 P PPL FR B2 57 577 57441 2822 153 Europe/Paris 2012-01-18
-2996193 Manneville-sur-Risle Manneville-sur-Risle Manneville,Manneville-sur-Risle 49.35173 0.54526 P PPL FR A7 27 272 27385 1089 11 Europe/Paris 2012-01-18
-2996232 Manéglise Maneglise Maneglise,Manéglise 49.56578 0.25572 P PPL FR A7 76 762 76404 1172 70 Europe/Paris 2012-01-18
-2996234 Mane Mane Mane 43.93747 5.76677 P PPL FR B8 04 044 04111 1243 454 Europe/Paris 2012-01-18
-2996236 Manduel Manduel Manduel 43.81855 4.47247 P PPL FR A9 30 302 30155 6260 57 Europe/Paris 2011-01-19
-2996241 Mandres-les-Roses Mandres-les-Roses Mandres,Mandres-les-Roses 48.70198 2.54662 P PPL FR A8 94 941 94047 4243 94 Europe/Paris 2012-01-18
-2996251 Mandeure Mandeure Mandeure 47.44921 6.80762 P PPL FR A6 25 252 25367 5416 330 Europe/Paris 2012-01-18
-2996255 Mandelieu-la-Napoule Mandelieu-la-Napoule 43.55 6.93333 P PPL FR B8 06 061 06079 19292 52 Europe/Paris 2011-11-02
-2996264 Mancieulles Mancieulles Mancieulles 49.28553 5.8971 P PPL FR B2 54 541 54342 1448 252 Europe/Paris 2012-01-18
-2996286 Mamirolle Mamirolle Mamirolle 47.19857 6.15924 P PPL FR A6 25 251 25364 1671 469 Europe/Paris 2012-01-18
-2996288 Mametz Mametz Mametz 50.63485 2.32478 P PPL FR B4 62 625 62543 1779 43 Europe/Paris 2012-01-18
-2996291 Mamers Mamers 48.35 0.38333 P PPLA3 FR B5 72 722 72180 6575 146 Europe/Paris 2010-04-02
-2996298 Malzéville Malzeville Malzeville,Malzéville 48.71181 6.18176 P PPL FR B2 54 543 54339 8095 193 Europe/Paris 2012-01-18
-2996306 Malville Malville Kerwall,Malville 47.35905 -1.86226 P PPL FR B5 44 443 44089 3271 79 Europe/Paris 2012-01-18
-2996397 Mallemort Mallemort Mallemort 43.73172 5.17945 P PPL FR B8 13 132 13053 5298 132 Europe/Paris 2011-01-18
-2996398 Mallemoisson Mallemoisson Mallemoisson 44.04813 6.12459 P PPL FR B8 04 043 04110 1059 546 Europe/Paris 2012-01-18
-2996408 Malissard Malissard Malissard 44.90201 4.95915 P PPL FR B9 26 263 26170 3078 150 Europe/Paris 2012-01-18
-2996411 Malintrat Malintrat Malintrat 45.81446 3.18718 P PPL FR 98 63 632 63204 1057 321 Europe/Paris 2012-01-18
-2996413 Malijai Malijai Malijai 44.04606 6.03195 P PPL FR B8 04 043 04108 1741 433 Europe/Paris 2012-01-18
-2996420 Malicorne-sur-Sarthe Malicorne-sur-Sarthe Malicorne,Malicorne-sur-Sarthe,Malicorre 47.81317 -0.08152 P PPL FR B5 72 721 72179 1920 37 Europe/Paris 2012-01-18
-2996427 Malguénac Malguenac Malgeneg,Malguenac,Malguénac 48.08008 -3.05248 P PPL FR A2 56 562 56125 1791 200 Europe/Paris 2012-01-18
-2996440 Malestroit Malestroit Malestred,Malestroit 47.80934 -2.38457 P PPL FR A2 56 563 56124 2675 20 Europe/Paris 2012-01-18
-2996444 Malesherbes Malesherbes Malesherbes 48.29566 2.40935 P PPL FR A3 45 453 45191 6335 111 Europe/Paris 2012-01-18
-2996448 Malemort-sur-Corrèze Malemort-sur-Correze Malemort,Malemort-sur-Correze,Malemort-sur-Corrèze 45.17009 1.56193 P PPL FR B1 19 191 19123 7124 120 Europe/Paris 2012-01-18
-2996449 Malemort-du-Comtat Malemort-du-Comtat Malemort,Malemort-du-Comtat 44.0207 5.15991 P PPL FR B8 84 843 84070 1278 219 Europe/Paris 2012-01-18
-2996477 Malay-le-Grand Malay-le-Grand Malay,Malay-le-Grand,Malay-le-Republicain,Malay-le-Républicain 48.17589 3.34189 P PPL FR A1 89 893 89239 1609 80 Europe/Paris 2012-01-18
-2996492 Malaunay Malaunay Malaunay 49.5271 1.04292 P PPL FR A7 76 763 76402 5943 40 Europe/Paris 2012-01-18
-2996495 Malaucène Malaucene Malaucene,Malaucène 44.1724 5.13294 P PPL FR B8 84 843 84069 2721 337 Europe/Paris 2012-01-18
-2996498 Malataverne Malataverne Malataverne 44.48727 4.75208 P PPL FR B9 26 262 26169 1515 109 Europe/Paris 2012-01-18
-2996505 Malansac Malansac Malansac,Malanseg,Malañseg 47.67724 -2.29543 P PPL FR A2 56 563 56123 2041 86 Europe/Paris 2012-01-18
-2996514 Malakoff Malakoff Malakoff 48.81999 2.29998 P PPL FR A8 92 921 92046 29420 69 Europe/Paris 2012-01-18
-2996538 Maizières-lès-Metz Maizieres-les-Metz Maizieres,Maizieres-les-Metz,Maizières,Maizières-lès-Metz 49.20754 6.16052 P PPL FR B2 57 574 57433 9845 167 Europe/Paris 2012-01-18
-2996540 Maizières-la-Grande-Paroisse Maizieres-la-Grande-Paroisse Maizieres,Maizieres-la-Grande-Paroisse,Maizières,Maizières-la-Grande-Paroisse 48.51012 3.78573 P PPL FR A4 10 102 10220 1549 74 Europe/Paris 2011-01-06
-2996559 Maisse Maisse Maisse 48.39524 2.37902 P PPL FR A8 91 912 91359 2776 65 Europe/Paris 2012-01-18
-2996564 Maisons-Laffitte Maisons-Laffitte Maisons-Laffitte,Mezon-Lafit,Мезон-Лафит 48.95264 2.14521 P PPL FR A8 78 783 78358 22772 42 Europe/Paris 2012-01-18
-2996568 Maisons-Alfort Maisons-Alfort Maisons-Alfort 48.81171 2.43945 P PPL FR A8 94 941 94046 53964 40 Europe/Paris 2012-01-18
-2996621 Maisnil-lès-Ruitz Maisnil-les-Ruitz Maisnil-d'Houdain,Maisnil-les Ruitz,Maisnil-les-Ruitz,Maisnil-lès Ruitz,Maisnil-lès-Ruitz 50.45342 2.58992 P PPL FR B4 62 622 62540 1241 106 Europe/Paris 2012-01-18
-2996628 Maisdon-sur-Sèvre Maisdon-sur-Sevre Maezon-ar-Gwini,Maisdon,Maisdon-sur-Sevre,Maisdon-sur-Sèvre 47.09714 -1.38 P PPL FR B5 44 442 44088 2218 57 Europe/Paris 2012-01-18
-2996645 Mainvilliers Mainvilliers Mainvilliers 48.45004 1.45607 P PPL FR A3 28 281 28229 10505 161 Europe/Paris 2012-01-18
-2996653 Maintenon Maintenon Maintenon 48.58704 1.57847 P PPL FR A3 28 281 28227 4486 103 Europe/Paris 2012-01-18
-2996660 Maing Maing Maing,Naing 50.30791 3.48446 P PPL FR B4 59 596 59369 3940 30 Europe/Paris 2012-01-18
-2996674 Maincy Maincy Maincy 48.54977 2.70017 P PPL FR A8 77 772 77269 1908 62 Europe/Paris 2012-01-18
-2996687 Mailly-le-Camp Mailly-le-Camp Mailly,Mailly-le-Camp 48.66526 4.21303 P PPL FR A4 10 103 10216 2087 132 Europe/Paris 2012-01-18
-2996693 Maillot Maillot Maillot 48.17557 3.30784 P PPL FR A1 89 893 89236 1156 76 Europe/Paris 2012-01-18
-2996696 Maillezais Maillezais Maillezais 46.37267 -0.73963 P PPL FR B5 85 851 85133 1042 9 Europe/Paris 2012-01-18
-2996711 Maillane Maillane Maillane,Maillanne,Malhana,maiyanu,マイヤーヌ 43.83114 4.78152 P PPL FR B8 13 132 13052 2043 13 Europe/Paris 2012-01-18
-2996722 Maignelay-Montigny Maignelay-Montigny 49.55 2.51667 P PPL FR B6 60 602 60374 2607 116 Europe/Paris 2007-11-13
-2996726 Maidières Maidieres Maidieres,Maidières 48.90029 6.03988 P PPL FR B2 54 543 54332 1398 189 Europe/Paris 2012-01-18
-2996727 Maîche Maiche Maiche,Maîche 47.2516 6.80308 P PPL FR A6 25 252 25356 3862 783 Europe/Paris 2012-01-18
-2996746 Magny-Vernois Magny-Vernois Magny-Vernois 47.66997 6.47545 P PPL FR A6 70 701 70321 1065 288 Europe/Paris 2012-01-18
-2996752 Magny-les-Hameaux Magny-les-Hameaux Magneio,Magny,Magny-l'Essart,Magny-les-Hameaux,Malliacum,Port-de-la-Montagne 48.74345 2.06154 P PPL FR A8 78 782 78356 9203 154 Europe/Paris 2012-01-18
-2996755 Magny-le-Hongre Magny-le-Hongre Magny 48.86325 2.81546 P PPL FR A8 77 775 77268 4061 100 121 Europe/Paris 2006-03-13
-2996757 Magny-le-Désert Magny-le-Desert Magny 48.57015 -0.32732 P PPL FR 99 61 611 61243 1308 215 Europe/Paris 2007-02-09
-2996764 Magny-en-Vexin Magny-en-Vexin Magny,Magny-en-Vexin 49.15515 1.78669 P PPL FR A8 95 953 95355 5444 82 Europe/Paris 2012-01-18
-2996766 Magny-Cours Magny-Cours Magny,Magny-Cours 46.88333 3.15 P PPL FR A1 58 583 58152 1501 205 Europe/Paris 2012-01-18
-2996798 Magné Magne Magne,Magné 46.31548 -0.54575 P PPL FR B7 79 792 79162 2975 10 Europe/Paris 2012-01-18
-2996802 Magnanville Magnanville Magnanville 48.96798 1.67842 P PPL FR A8 78 781 78354 5539 140 Europe/Paris 2012-01-18
-2996807 Magnac-sur-Touvre Magnac-sur-Touvre Magnac,Magnac-sur-Touvre 45.66667 0.23333 P PPL FR B7 16 161 16199 2939 68 Europe/Paris 2012-01-18
-2996810 Magnac-Laval Magnac-Laval Magnac-Laval,Magnac-la-Montagne 46.21514 1.16724 P PPL FR B1 87 871 87089 2224 232 Europe/Paris 2012-01-18
-2996814 Magland Magland Magland 46.01971 6.62016 P PPL FR B9 74 742 74159 2961 505 Europe/Paris 2012-01-18
-2996818 Magescq Magescq Magescq 43.78205 -1.21652 P PPL FR 97 40 401 40168 1505 23 Europe/Paris 2012-01-18
-2996819 Magenta Magenta Magenta 49.04898 3.96882 P PPL FR A4 51 512 51663 1934 70 Europe/Paris 2012-01-18
-2996823 Magalas Magalas Magalas 43.47095 3.22338 P PPL FR A9 34 341 34147 2063 127 Europe/Paris 2012-01-18
-2996827 Maffliers Maffliers Maffliers 49.07758 2.30768 P PPL FR A8 95 952 95353 1668 153 Europe/Paris 2012-01-18
-2996832 Maël-Carhaix Mael-Carhaix Mael-Carhaix,Maël-Carhaix,Mel-Karaez,Mêl-Karaez 48.28444 -3.42322 P PPL FR A2 22 222 22137 1509 206 Europe/Paris 2012-01-18
-2996874 Mâcot-la-Plagne Macot-la-Plagne 45.55 6.66667 P PPL FR B9 73 731 73150 1696 769 Europe/Paris 2007-11-13
-2996882 Mâcon Macon Grosne-les-Macon,Grosne-lès-Macon,Macon,Makon,Makonas,Mâcon,makon,Макон,マコン 46.3 4.83333 P PPLA2 FR A1 71 715 71270 35484 167 Europe/Paris 2011-11-02
-2996885 Maclas Maclas Maclas 45.36529 4.68912 P PPL FR B9 42 423 42129 1326 387 Europe/Paris 2012-01-18
-2996901 Macheren Macheren Macheren 49.10045 6.7738 P PPL FR B2 57 573 57428 2933 270 Europe/Paris 2012-01-18
-2996905 Machecoul Machecoul Machecoul,Machikoul 46.99358 -1.82352 P PPL FR B5 44 442 44087 6054 5 Europe/Paris 2012-01-18
-2996906 Maché Mache Mache,Maché 46.75405 -1.68692 P PPL FR B5 85 853 85130 1165 42 Europe/Paris 2012-01-18
-2996918 Macau Macau Macau 45.00679 -0.61821 P PPL FR 97 33 332 33262 3212 10 Europe/Paris 2012-01-18
-2996921 Mably Mably Mably 46.08623 4.06607 P PPL FR B9 42 422 42127 7830 283 Europe/Paris 2012-01-18
-2996927 Lys-lez-Lannoy Lys-lez-Lannoy Lannoy-du-Nord,Lys 50.66667 3.21667 P PPL FR B4 59 595 59367 13803 33 Europe/Paris 2011-11-02
-2996944 Lyon Lyon LYS,Lio,Lion,Lion - Lyon,Liona,Lionas,Lione,Lioni,Liyon,Lió,Lión - Lyon,Lugdunum,Lyon,Lyons,Lyón,li ang,liong,lyom,lywn,riyon,Λυών,Лион,ליון,ليون,لیون,ल्यों,リヨン,里昂,리옹 45.74846 4.84671 P PPLA FR B9 69 691 69123 472317 173 Europe/Paris 2012-01-18
-2996953 Lyaud Lyaud Le Lyaud,Lyaud 46.33662 6.52868 P PPL FR B9 74 744 74157 1163 717 Europe/Paris 2012-01-18
-2996957 Luzy Luzy Luzy 46.79011 3.97036 P PPL FR A1 58 581 58149 2259 266 Europe/Paris 2012-01-18
-2996959 Luz-Saint-Sauveur Luz-Saint-Sauveur Luz,Luz-Saint-Sauveur 42.87191 -0.00322 P PPL FR B3 65 651 65295 1074 723 Europe/Paris 2012-01-18
-2996963 Luzinay Luzinay Luzinay 45.58895 4.95829 P PPL FR B9 38 383 38215 2139 226 Europe/Paris 2012-01-18
-2996978 Luzech Luzech Luzech 44.47818 1.28704 P PPL FR B3 46 461 46182 1758 108 Europe/Paris 2012-01-18
-2996982 Luzarches Luzarches Luzarches 49.11319 2.4223 P PPL FR A8 95 952 95352 4149 75 Europe/Paris 2012-01-18
-2996986 Luynes Luynes Luynes,Roche-sur-Loire 47.38441 0.5547 P PPL FR A3 37 372 37139 5045 49 Europe/Paris 2012-01-18
-2996995 Luxeuil-les-Bains Luxeuil-les-Bains Luxeuil,Luxeuil-les-Bains 47.8171 6.365 P PPL FR A6 70 701 70311 9200 299 Europe/Paris 2012-01-18
-2997007 Lutzelhouse Lutzelhouse Lutzelhouse 48.51963 7.28609 P PPL FR C1 67 673 67276 1645 282 Europe/Paris 2012-01-18
-2997010 Lutterbach Lutterbach Lutterbach 47.75835 7.27695 P PPL FR C1 68 684 68195 6180 249 Europe/Paris 2012-01-18
-2997044 Lussac-les-Châteaux Lussac-les-Chateaux Lussac,Lussac-les-Chateaux,Lussac-les-Châteaux,Lussac-sur-Vienne 46.40327 0.72524 P PPL FR B7 86 862 86140 2711 107 Europe/Paris 2012-01-18
-2997048 Lussac Lussac Lussac 44.95 -0.1 P PPL FR 97 33 335 33261 1510 78 Europe/Paris 2012-01-18
-2997052 Lusigny-sur-Barse Lusigny-sur-Barse Lusigny,Lusigny-sur-Barse 48.25451 4.2689 P PPL FR A4 10 103 10209 1465 124 Europe/Paris 2012-01-18
-2997054 Lusigny Lusigny Dorvalet,Lusigny 46.58849 3.49002 P PPL FR 98 03 032 03156 1476 246 Europe/Paris 2012-01-18
-2997058 Lusignan Lusignan Lusignan 46.43598 0.1262 P PPL FR B7 86 863 86139 2871 127 Europe/Paris 2012-01-18
-2997064 Lusanger Lusanger Lusanger,Luzevieg 47.68153 -1.58857 P PPL FR B5 44 441 44086 1023 67 Europe/Paris 2012-01-18
-2997076 Lure Lure 47.68333 6.5 P PPLA3 FR A6 70 701 70310 9415 294 Europe/Paris 2011-11-02
-2997079 Lurcy-Lévis Lurcy-Levis Lurcy-Levis,Lurcy-Levy,Lurcy-Lévis,Lurcy-Lévy,Lurey-Levy,Lurey-Lévy 46.73056 2.93876 P PPL FR 98 03 032 03155 2124 220 Europe/Paris 2012-01-18
-2997084 Luray Luray Le Luat-Clairet,Luray 48.72035 1.39889 P PPL FR A3 28 283 28223 1360 133 Europe/Paris 2012-01-18
-2997104 L'Union L'Union L'Union 43.66042 1.48264 P PPL FR B3 31 313 31561 12139 180 Europe/Paris 2011-11-02
-2997110 Lunéville Luneville Ljunevil',Luneville,Lunéville,Люневиль 48.6 6.5 P PPLA3 FR B2 54 542 54329 21582 221 Europe/Paris 2011-11-02
-2997111 Lunery Lunery Lunery 46.93569 2.26895 P PPL FR A3 18 181 18133 1546 131 Europe/Paris 2012-01-18
-2997112 Luneray Luneray Luneray 49.82795 0.91581 P PPL FR A7 76 761 76400 2087 76 Europe/Paris 2012-01-18
-2997113 Lunel-Viel Lunel-Viel Lunel-Viel 43.6789 4.0925 P PPL FR A9 34 343 34146 3578 17 Europe/Paris 2010-12-24
-2997116 Lunel Lunel Ljunel',Lunel,Люнель 43.67778 4.13611 P PPL FR A9 34 343 34145 26588 10 Europe/Paris 2011-11-02
-2997123 Lunay Lunay Lunay 47.80864 0.91499 P PPL FR A3 41 412 41120 1344 100 Europe/Paris 2012-01-18
-2997132 Lumio Lumio Lumio 42.5759 8.8355 P PPL FR A5 2B 2B5 2B150 1008 197 Europe/Paris 2012-01-18
-2997137 Lumigny-Nesles-Ormeaux Lumigny-Nesles-Ormeaux 48.73333 2.95 P PPL FR A8 77 773 77264 1448 114 Europe/Paris 2008-07-05
-2997139 Lumes Lumes Lumes 49.73461 4.78616 P PPL FR A4 08 081 08263 1235 158 Europe/Paris 2012-01-18
-2997142 Lumbres Lumbres Lumbres 50.70693 2.12082 P PPL FR B4 62 625 62534 4097 55 Europe/Paris 2012-01-18
-2997143 Lumbin Lumbin Lumbin 45.30568 5.91136 P PPL FR B9 38 381 38214 1705 235 Europe/Paris 2012-01-18
-2997146 Luitré Luitre Loezherieg,Luitre,Luitré 48.28246 -1.11866 P PPL FR A2 35 351 35163 1298 146 Europe/Paris 2012-01-18
-2997148 Luisant Luisant Luisant 48.4295 1.47383 P PPL FR A3 28 281 28220 7049 152 Europe/Paris 2012-01-18
-2997158 Lugrin Lugrin Lugrin 46.4033 6.66744 P PPL FR B9 74 744 74154 2164 401 Europe/Paris 2012-01-18
-2997184 Ludres Ludres Ludres 48.62181 6.16183 P PPL FR B2 54 543 54328 6974 291 Europe/Paris 2012-01-18
-2997185 Ludon-Médoc Ludon-Medoc Ludon,Ludon-Medoc,Ludon-Médoc 44.98118 -0.60254 P PPL FR 97 33 332 33256 3607 11 Europe/Paris 2012-01-18
-2997204 Luc-sur-Mer Luc-sur-Mer Luc,Luc-sur-Mer 49.31452 -0.35499 P PPL FR 99 14 142 14384 3171 11 Europe/Paris 2012-01-18
-2997207 Lucq-de-Béarn Lucq-de-Bearn Lucq,Lucq-de-Bearn,Lucq-de-Béarn 43.3 -0.66667 P PPL FR 97 64 642 64359 1047 242 Europe/Paris 2012-01-18
-2997210 Luçon Lucon Lucon,Luçon 46.45773 -1.16512 P PPL FR B5 85 851 85128 10140 8 Europe/Paris 2012-01-18
-2997214 Lucinges Lucinges Lucinges 46.19136 6.31731 P PPL FR B9 74 743 74153 1352 717 Europe/Paris 2012-01-18
-2997223 Luché-Pringé Luche-Pringe Luche,Luché 47.70326 0.07549 P PPL FR B5 72 721 72175 1613 43 Europe/Paris 2007-07-04
-2997234 Lucéram Luceram Luceram,Lucéram 43.88312 7.35996 P PPL FR B8 06 062 06077 1080 656 Europe/Paris 2012-01-18
-2997238 Lucenay-lès-Aix Lucenay-les-Aix Bourg-la-Reunion,Bourg-la-Réunion,Lucenay,Lucenay-les-Aix,Lucenay-lès-Aix 46.70274 3.48308 P PPL FR A1 58 583 58146 1050 214 Europe/Paris 2012-01-18
-2997241 Lucenay Lucenay Lucenay 45.91263 4.70276 P PPL FR B9 69 692 69122 1454 211 Europe/Paris 2012-01-18
-2997242 Luceau Luceau Luceau 47.71167 0.39734 P PPL FR B5 72 721 72173 1101 84 Europe/Paris 2012-01-18
-2997246 Lucé Luce Luce,Lucé 48.4369 1.46359 P PPL FR A3 28 281 28218 17780 159 Europe/Paris 2012-01-18
-2997248 Lucciana Lucciana Lucciana,Luciana 42.54589 9.41859 P PPL FR A5 2B 2B2 2B148 3713 210 Europe/Paris 2012-01-18
-2997251 Luçay-le-Mâle Lucay-le-Male Lucay,Lucay-le-Male,Luçay,Luçay-le-Mâle 47.12996 1.44173 P PPL FR A3 36 362 36103 1712 120 Europe/Paris 2012-01-18
-2997262 Luc-la-Primaube Luc-la-Primaube 44.31439 2.53552 P PPL FR B3 12 122 12133 5267 681 Europe/Paris 2011-01-17
-2997271 Lubersac Lubersac Lubersac 45.44394 1.40418 P PPL FR B1 19 191 19121 2224 372 Europe/Paris 2012-01-18
-2997279 Luant Luant Luant 46.733 1.55793 P PPL FR A3 36 362 36101 1277 143 Europe/Paris 2012-01-18
-2997286 Lozinghem Lozinghem Lozinghem 50.51554 2.50209 P PPL FR B4 62 622 62532 1050 68 Europe/Paris 2012-01-18
-2997295 Lozanne Lozanne Lozane,Lozanne 45.85591 4.68594 P PPL FR B9 69 692 69121 2275 202 Europe/Paris 2012-01-18
-2997297 Loyettes Loyettes Loyettes 45.7762 5.20743 P PPL FR B9 01 011 01224 2541 194 Europe/Paris 2012-01-18
-2997300 Loyat Loyat Loiad,Loyat 47.98933 -2.38344 P PPL FR A2 56 563 56122 1550 62 Europe/Paris 2012-01-18
-2997304 Lovagny Lovagny Lovagny 45.9042 6.03387 P PPL FR B9 74 741 74152 1011 530 Europe/Paris 2012-01-18
-2997305 Louzy Louzy Louzy 47.012 -0.18536 P PPL FR B7 79 791 79157 1161 55 Europe/Paris 2012-01-18
-2997316 Louvroil Louvroil 50.26427 3.96272 P PPL FR B4 59 591 59365 7446 161 Europe/Paris 2009-01-18
-2997317 Louvres Louvres Louvres 49.0446 2.50479 P PPL FR A8 95 952 95351 9323 108 Europe/Paris 2012-01-18
-2997325 Louvigny Louvigny Louvigny 49.15715 -0.39376 P PPL FR 99 14 142 14383 2222 14 Europe/Paris 2012-01-18
-2997331 Louvigné-du-Désert Louvigne-du-Desert Louvigne,Louvigne-du-Desert,Louvigneg-an-Dezerzh,Louvigné,Louvigné-du-Désert 48.48047 -1.12537 P PPL FR A2 35 351 35162 4467 171 Europe/Paris 2012-01-18
-2997332 Louvigné-de-Bais Louvigne-de-Bais Louvigne,Louvigne-de-Bais,Louvigneg-Baez,Louvigné,Louvigné-de-Bais 48.04898 -1.33091 P PPL FR A2 35 351 35161 1539 86 Europe/Paris 2012-01-18
-2997336 Louviers Louviers Louviers 49.21667 1.16667 P PPL FR A7 27 271 27375 19220 23 Europe/Paris 2012-01-18
-2997340 Louvie-Juzon Louvie-Juzon Louvie 43.08646 -0.41928 P PPL FR 97 64 642 64353 1059 421 Europe/Paris 2008-08-28
-2997345 Louverné Louverne Louverne,Louverné 48.12178 -0.71721 P PPL FR B5 53 532 53140 3077 112 Europe/Paris 2012-01-18
-2997351 Louveciennes Louveciennes Louveciennes 48.86116 2.11463 P PPL FR A8 78 783 78350 7523 130 Europe/Paris 2012-01-18
-2997371 Loury Loury Loury 47.99944 2.08474 P PPL FR A3 45 452 45188 2114 117 Europe/Paris 2012-01-18
-2997384 Lourmarin Lourmarin Lourmarin,rurumaran,ルールマラン 43.76599 5.36667 P PPL FR B8 84 841 84068 1188 231 Europe/Paris 2012-01-18
-2997395 Lourdes Lourdes La Montagne,Lapurdum,Lorda,Lourdes,lu er de,rurudo,ルルド,盧爾德 43.1 -0.05 P PPL FR B3 65 651 65286 15786 416 Europe/Paris 2011-11-02
-2997397 Lourches Lourches Lourches 50.31354 3.35258 P PPL FR B4 59 596 59361 3859 30 Europe/Paris 2012-01-18
-2997405 Louplande Louplande Louplande 47.95 -0.05 P PPL FR B5 72 721 72169 1247 69 Europe/Paris 2012-01-18
-2997407 Loupian Loupian Loupian 43.44886 3.61381 P PPL FR A9 34 343 34143 1664 31 Europe/Paris 2012-01-18
-2997409 Loupiac Loupiac Loupiac-de-Cadillac 44.61667 -0.3 P PPL FR 97 33 333 33253 1032 5 Europe/Paris 2010-09-13
-2997439 Louhans Louhans Beaulieu,Louhans 46.63333 5.21667 P PPLA3 FR A1 71 714 71263 6466 183 Europe/Paris 2011-11-02
-2997456 Loué Loue Loue,Loué 47.99575 -0.1545 P PPL FR B5 72 721 72168 2158 77 Europe/Paris 2012-01-18
-2997457 Loudun Loudun Loudun 47.00788 0.08296 P PPL FR B7 86 861 86137 8510 95 Europe/Paris 2011-11-02
-2997465 Loudéac Loudeac Loudeac,Loudieg,Loudéac 48.17826 -2.75433 P PPL FR A2 22 224 22136 10552 166 Europe/Paris 2012-01-18
-2997493 Loubert Loubert 45.91422 0.58617 P PPL FR B7 16 163 16192 2870 176 Europe/Paris 2012-02-27
-2997511 Louargat Louargat Louargat,Louergad 48.56576 -3.3375 P PPL FR A2 22 222 22135 2231 187 Europe/Paris 2012-01-18
-2997514 Louannec Louannec Louaneg,Louannec 48.79423 -3.412 P PPL FR A2 22 223 22134 2547 58 Europe/Paris 2012-01-18
-2997535 Losne Losne Losne 47.0985 5.26216 P PPL FR A1 21 211 21356 1391 180 Europe/Paris 2012-01-18
-2997547 Lorris Lorris Lorris 47.8895 2.51478 P PPL FR A3 45 451 45187 2883 123 Europe/Paris 2012-01-18
-2997548 Lorrez-le-Bocage-Préaux Lorrez-le-Bocage-Preaux Lorrez 48.23333 2.9 P PPL FR A8 77 774 77261 1391 107 Europe/Paris 2007-11-13
-2997552 Lorquin Lorquin Lorquin 48.66972 6.99579 P PPL FR B2 57 575 57414 1207 282 Europe/Paris 2012-01-18
-2997556 Lormont Lormont Lormont 44.87495 -0.51782 P PPL FR 97 33 332 33249 22636 47 Europe/Paris 2012-01-18
-2997559 Lormes Lormes Lormes 47.28964 3.81714 P PPL FR A1 58 582 58145 1389 424 Europe/Paris 2012-01-18
-2997566 Lormaison Lormaison Lormaison 49.25647 2.10575 P PPL FR B6 60 601 60370 1431 141 Europe/Paris 2012-01-18
-2997569 Loriol-sur-Drôme Loriol-sur-Drome Loriol,Loriol-sur-Drome,Loriol-sur-Drôme 44.75214 4.82547 P PPL FR B9 26 263 26166 5803 150 Europe/Paris 2012-01-18
-2997570 Loriol-du-Comtat Loriol-du-Comtat Loriol,Loriol-du-Comtat 44.07626 4.99922 P PPL FR B8 84 843 84067 2006 40 Europe/Paris 2012-01-18
-2997577 Lorient Lorient An Oriant,Lor'jan,Lorient,Лорьян 47.75 -3.36667 P PPLA3 FR A2 56 561 56121 58112 12 Europe/Paris 2011-11-02
-2997581 Lorgues Lorgues Lorgues 43.49361 6.3611 P PPL FR B8 83 831 83072 8237 216 Europe/Paris 2012-01-18
-2997583 Lorgies Lorgies Lorgies 50.5688 2.79034 P PPL FR B4 62 622 62529 1197 21 Europe/Paris 2012-01-18
-2997590 Lorette Lorette Assailly,Lorette 45.50618 4.57522 P PPL FR B9 42 423 42123 3202 300 Europe/Paris 2012-01-18
-2997616 Loperhet Loperhet Loperc'hed,Loperhet 48.37725 -4.30608 P PPL FR A2 29 291 29140 3524 82 Europe/Paris 2012-01-18
-2997617 Lopérec Loperec Loperec,Lopereg,Lopérec 48.27734 -4.04756 P PPL FR A2 29 292 29139 1129 54 Europe/Paris 2012-01-18
-2997619 Loos-en-Gohelle Loos-en-Gohelle Loos,Loos-en-Gohelle 50.45786 2.79215 P PPL FR B4 62 627 62528 7150 43 Europe/Paris 2012-01-18
-2997620 Loos Loos Loos 50.60982 3.01874 P PPL FR B4 59 595 59360 22107 26 Europe/Paris 2012-01-18
-2997621 Loon-Plage Loon-Plage Loon-Plage 50.99647 2.2177 P PPL FR B4 59 594 59359 6640 3 Europe/Paris 2012-01-18
-2997622 Looberghe Looberghe Looberghe 50.91694 2.27439 P PPL FR B4 59 594 59358 1214 5 Europe/Paris 2012-01-18
-2997626 Lons-le-Saunier Lons-le-Saunier Franciade,Lons-le-Saunier,ron=ru=sonie,ロン=ル=ソーニエ 46.66667 5.55 P PPLA2 FR A6 39 392 39300 20678 286 Europe/Paris 2011-12-08
-2997628 Lons Lons Lons 43.31667 -0.4 P PPL FR 97 64 643 64348 13872 196 Europe/Paris 2012-01-18
-2997638 Longwy Longwy Longwy,Lonkech 49.51936 5.76882 P PPL FR B2 54 541 54323 14695 268 Europe/Paris 2012-01-18
-2997644 Longvic Longvic Longvic 47.28754 5.06341 P PPL FR A1 21 212 21355 9527 226 Europe/Paris 2012-01-18
-2997646 Longuyon Longuyon Longuyon 49.44548 5.60145 P PPL FR B2 54 541 54322 5773 214 Europe/Paris 2012-01-18
-2997653 Longueville Longueville Longueville 48.51503 3.24677 P PPL FR A8 77 773 77260 1862 72 Europe/Paris 2012-01-18
-2997670 Longuenesse Longuenesse Longuenesse 50.73395 2.2352 P PPL FR B4 62 625 62525 13838 45 Europe/Paris 2012-01-18
-2997675 Longueil-Sainte-Marie Longueil-Sainte-Marie Longueil-Sainte-Marie,Longueil-la-Montagne 49.35723 2.71844 P PPL FR B6 60 603 60369 1516 41 Europe/Paris 2012-01-18
-2997676 Longueil-Annel Longueil-Annel Longueil-Annel,Longueil-sur-Oise 49.46908 2.86464 P PPL FR B6 60 603 60368 2453 34 Europe/Paris 2012-01-18
-2997681 Longueau Longueau Longueau 49.87226 2.3588 P PPL FR B6 80 802 80489 5180 39 Europe/Paris 2012-01-18
-2997694 Longpré-les-Corps-Saints Longpre-les-Corps-Saints Longpre,Longpre-les-Corps-Saints,Longpré,Longpré-les-Corps-Saints 50.01239 1.99287 P PPL FR B6 80 801 80488 1591 14 Europe/Paris 2012-01-18
-2997698 Longpont-sur-Orge Longpont-sur-Orge Longpont,Longpont-sur-Orge 48.64172 2.29278 P PPL FR A8 91 913 91347 6149 59 Europe/Paris 2012-01-18
-2997700 Longperrier Longperrier Longperrier 49.04844 2.66571 P PPL FR A8 77 771 77259 2260 124 Europe/Paris 2012-01-18
-2997704 Longny-au-Perche Longny-au-Perche Longny,Longny-au-Perche,Longny-du-Perche 48.52984 0.75239 P PPL FR 99 61 613 61230 1630 167 Europe/Paris 2012-01-18
-2997706 Longnes Longnes Longnes 48.92002 1.58705 P PPL FR A8 78 781 78346 1435 136 Europe/Paris 2012-01-18
-2997711 Longlaville Longlaville Longlaville 49.53455 5.80203 P PPL FR B2 54 541 54321 2457 271 Europe/Paris 2012-01-18
-2997712 Longjumeau Longjumeau Longjumeau,Lonzhjumo,Лонжюмо 48.69503 2.30736 P PPL FR A8 91 913 91345 20771 45 Europe/Paris 2012-01-18
-2997713 Longfossé Longfosse Longfosse,Longfossé 50.65217 1.80693 P PPL FR B4 62 623 62524 1250 89 Europe/Paris 2012-01-18
-2997716 Longeville-lès-Saint-Avold Longeville-les-Saint-Avold Longeville,Longeville-les-Saint-Avold,Longeville-lès-Saint-Avold 49.11811 6.64165 P PPL FR B2 57 571 57413 3872 263 Europe/Paris 2012-01-18
-2997717 Longeville-lès-Metz Longeville-les-Metz Longeville,Longeville-les-Metz,Longeville-lès-Metz 49.11277 6.1353 P PPL FR B2 57 574 57412 3970 168 Europe/Paris 2012-01-18
-2997719 Longeville-en-Barrois Longeville-en-Barrois Longeville,Longeville-en-Barrois 48.74242 5.20905 P PPL FR B2 55 551 55302 1285 193 Europe/Paris 2012-01-18
-2997722 Longeville-sur-Mer Longeville-sur-Mer 46.41667 -1.5 P PPL FR B5 85 853 85127 2171 9 Europe/Paris 2007-11-20
-2997744 Longecourt-en-Plaine Longecourt-en-Plaine Longecourt,Longecourt-en-Maine,Longecourt-en-Plaine 47.19784 5.14956 P PPL FR A1 21 212 21353 1226 197 Europe/Paris 2012-01-18
-2997759 Longchaumois Longchaumois Longchaumois 46.46228 5.93052 P PPL FR A6 39 393 39297 1138 894 Europe/Paris 2012-01-18
-2997768 Longchamp Longchamp Longchamp 47.25973 5.28694 P PPL FR A1 21 212 21351 1171 203 Europe/Paris 2012-01-18
-2997775 Longages Longages Longages 43.35398 1.23905 P PPL FR B3 31 311 31303 2141 204 Europe/Paris 2012-01-18
-2997784 Londinières Londinieres Londinieres,Londinières 49.83187 1.40232 P PPL FR A7 76 761 76392 1195 75 Europe/Paris 2012-01-18
-2997792 Lompret Lompret Lompret 50.66931 2.98968 P PPL FR B4 59 595 59356 2406 25 Europe/Paris 2012-01-18
-2997803 Lomme Lomme Lomm,Lomme,Ломм 50.64358 2.98715 P PPL FR B4 59 595 59350 29892 39 Europe/Paris 2012-01-18
-2997804 Lombron Lombron Lombron 48.07878 0.41869 P PPL FR B5 72 722 72165 1917 89 Europe/Paris 2012-01-18
-2997812 Lombez Lombez Lombez 43.475 0.91119 P PPL FR B3 32 321 32213 1451 175 Europe/Paris 2012-01-18
-2997833 Loivre Loivre Loivre 49.34619 3.97978 P PPL FR A4 51 513 51329 1105 70 Europe/Paris 2012-01-18
-2997841 Loison-sous-Lens Loison-sous-Lens Loison,Loison-sous-Lens 50.43796 2.85322 P PPL FR B4 62 627 62523 5683 29 Europe/Paris 2012-01-18
-2997845 Loisin Loisin 46.29227 6.3101 P PPL FR B9 74 744 74150 1259 464 Europe/Paris 2008-04-04
-2997855 Loiron Loiron Loiron 48.06667 -0.93333 P PPL FR B5 53 532 53137 1342 145 Europe/Paris 2012-01-18
-2997875 Loire-sur-Rhône Loire-sur-Rhone 45.55 4.8 P PPL FR B9 69 691 69118 2244 334 Europe/Paris 2007-11-20
-2997897 Logonna-Daoulas Logonna-Daoulas Logonna,Logonna-Daoulas 48.32308 -4.29675 P PPL FR A2 29 291 29137 1659 47 Europe/Paris 2012-01-18
-2997904 Lognes Lognes Lognes 48.83541 2.62998 P PPL FR A8 77 775 77258 15519 92 Europe/Paris 2012-01-18
-2997936 Lodève Lodeve Lodeva,Lodeve,Lodève 43.71667 3.31667 P PPLA3 FR A9 34 342 34142 7515 212 Europe/Paris 2011-11-02
-2997943 Loctudy Loctudy Loctudy,Loktudi 47.83333 -4.16667 P PPL FR A2 29 294 29135 3867 8 Europe/Paris 2012-01-18
-2997947 Locquirec Locquirec Locquirec,Lokireg 48.69243 -3.64554 P PPL FR A2 29 293 29133 1367 0 11 Europe/Paris 2007-11-29
-2997952 Locquémeau Locquemeau Locquemeau,Locquémeau 48.72474 -3.56275 P PPL FR A2 22 223 22349 1311 44 Europe/Paris 2012-02-27
-2997956 Locon Locon Locon 50.57029 2.66629 P PPL FR B4 62 622 62520 2304 19 Europe/Paris 2012-01-18
-2997957 Locoal-Mendon Locoal-Mendon Locoal-Mendon,Lokoal-Mendon 47.7052 -3.10796 P PPL FR A2 56 561 56119 2322 26 Europe/Paris 2012-01-18
-2997959 Locmiquélic Locmiquelic Locmiquelic,Locmiquélic,Lokmikaelig 47.72499 -3.34153 P PPL FR A2 56 561 56118 4181 12 Europe/Paris 2012-01-18
-2997961 Locminé Locmine Locmine,Locminé,Logunec'h 47.88619 -2.83536 P PPL FR A2 56 562 56117 3976 86 Europe/Paris 2012-01-18
-2997964 Locmariaquer Locmariaquer Locmariaquer,Lokmaria-Kaer 47.56915 -2.94468 P PPL FR A2 56 561 56116 1468 2 9 Europe/Paris 2012-01-18
-2997996 Loches Loches Castello di Loches,Chateau de Loches,Château de Loches,Loches,Losh,Schloss Loches,Shato d'o Losh,Лош,Шато дьо Лош 47.13333 1 P PPLA3 FR A3 37 373 37132 7132 72 Europe/Paris 2011-11-02
-2998018 Llupia Llupia Llupia 42.62074 2.76924 P PPL FR A9 66 662 66101 1893 108 Europe/Paris 2012-01-18
-2998027 Lizy-sur-Ourcq Lizy-sur-Ourcq Lizy,Lizy-sur-Ourcq 49.02454 3.02178 P PPL FR A8 77 771 77257 3798 58 Europe/Paris 2012-01-18
-2998055 Livry-sur-Seine Livry-sur-Seine Livry,Livry-sur-Seine 48.51771 2.67879 P PPL FR A8 77 772 77255 2074 70 Europe/Paris 2012-01-18
-2998056 Livry-Gargan Livry-Gargan Livry,Livry-Gargan,Livry-en-Aulnoye,Livry-en-Launois 48.9193 2.54305 P PPL FR A8 93 932 93046 39518 76 Europe/Paris 2012-01-18
-2998059 Livron-sur-Drôme Livron-sur-Drome Livron,Livron-sur-Drome,Livron-sur-Drôme 44.7731 4.84705 P PPL FR B9 26 263 26165 8440 129 Europe/Paris 2012-01-18
-2998061 Livré-sur-Changeon Livre-sur-Changeon Liverieg-Kenton,Livre,Livre-sur-Changeon,Livre-sur-Chaugeon,Livré,Livré-sur-Changeon 48.21937 -1.34438 P PPL FR A2 35 353 35154 1366 117 Europe/Paris 2012-01-18
-2998066 Livinhac-le-Haut Livinhac-le-Haut Livinhac,Livinhac-le-Haut 44.59212 2.23117 P PPL FR B3 12 123 12130 1181 217 Europe/Paris 2011-01-12
-2998072 Livet-et-Gavet Livet-et-Gavet Livet,Livet-et-Gavet 45.10782 5.93333 P PPL FR B9 38 381 38212 1478 648 Europe/Paris 2012-01-18
-2998076 Liverdy-en-Brie Liverdy-en-Brie Liverdy,Liverdy-en-Brie 48.69987 2.77606 P PPL FR A8 77 772 77254 1145 105 Europe/Paris 2012-01-18
-2998078 Liverdun Liverdun Liverdun 48.75084 6.06424 P PPL FR B2 54 544 54318 6500 236 Europe/Paris 2012-01-18
-2998081 Livarot Livarot 49.005 0.1502 P PPL FR 99 14 143 14371 2656 69 Europe/Paris 2008-04-18
-2998095 Lit-et-Mixe Lit-et-Mixe Lit,Lit-et-Mixe 44.03308 -1.2533 P PPL FR 97 40 401 40157 1571 14 Europe/Paris 2012-01-18
-2998097 Listrac-Médoc Listrac-Medoc Listrac,Listrac-Medoc,Listrac-Médoc 45.0741 -0.79132 P PPL FR 97 33 334 33248 2002 40 Europe/Paris 2012-01-18
-2998102 Lissieu Lissieu Lissieu 45.86426 4.74703 P PPL FR B9 69 691 69117 3136 245 Europe/Paris 2012-01-18
-2998105 Lisses Lisses Lisses 48.60222 2.42246 P PPL FR A8 91 912 91340 7601 82 Europe/Paris 2012-01-18
-2998124 Lisle-sur-Tarn Lisle-sur-Tarn Lisle-du-Tarn,Lisle-sur-Tarn 43.8525 1.81098 P PPL FR B3 81 811 81145 3871 132 Europe/Paris 2012-01-18
-2998127 L'Isle-sur-la-Sorgue L'Isle-sur-la-Sorgue Isle sur Sorgue,L'Isle,L'Isle-sur-la-Sorgue 43.91915 5.05092 P PPL FR B8 84 842 84054 16968 66 Europe/Paris 2012-01-18
-2998136 L'Isle-d'Abeau L'Isle-d'Abeau Ile d'Abeau,Isle-d'Abeau,L'Isle-d'Abeau 45.61813 5.23546 P PPL FR B9 38 382 38193 12033 227 Europe/Paris 2012-01-18
-2998140 L'Isle-Adam L'Isle-Adam L'Isle-Adam 49.10744 2.22818 P PPL FR A8 95 953 95313 11160 56 Europe/Paris 2012-01-18
-2998150 Lisieux Lisieux Lexovium,Lisieux 49.1466 0.22925 P PPLA3 FR 99 14 143 14366 24473 65 Europe/Paris 2011-11-02
-2998165 Liré Lire Lire,Liré 47.34322 -1.16536 P PPL FR B5 49 492 49177 2365 40 Europe/Paris 2012-01-18
-2998167 Lipsheim Lipsheim 48.49164 7.66751 P PPL FR C1 67 676 67268 2586 146 Europe/Paris 2007-07-07
-2998187 Lion-sur-Mer Lion-sur-Mer Lion,Lion-sur-Mer 49.30018 -0.32157 P PPL FR 99 14 142 14365 2534 10 Europe/Paris 2012-01-18
-2998202 Linxe Linxe Linxe 43.91984 -1.24619 P PPL FR 97 40 401 40155 1146 31 Europe/Paris 2012-01-18
-2998209 Linselles Linselles Linselles 50.73708 3.07878 P PPL FR B4 59 595 59352 8049 49 Europe/Paris 2012-01-18
-2998221 Linguizzetta Linguizzetta Linguizetta,Linguizzetta 42.26024 9.47333 P PPL FR A5 2B 2B3 2B143 1021 237 Europe/Paris 2012-01-18
-2998224 Lingolsheim Lingolsheim Lingolsheim 48.55752 7.68253 P PPL FR C1 67 676 67267 17284 148 Europe/Paris 2011-12-15
-2998251 Linas Linas Linas 48.63041 2.26266 P PPL FR A8 91 913 91339 6050 74 Europe/Paris 2012-01-18
-2998252 Linars Linars Linars 45.65 0.08333 P PPL FR B7 16 161 16187 2232 40 Europe/Paris 2012-01-18
-2998253 Linards Linards Linards 45.70082 1.53259 P PPL FR B1 87 872 87086 1129 418 Europe/Paris 2012-01-18
-2998264 Limoux Limoux Limos,Limoux,Limós 43.05487 2.22173 P PPLA3 FR A9 11 112 11206 10844 172 Europe/Paris 2011-11-02
-2998269 Limours Limours Limours,Limours-en-Hurepoix 48.64625 2.07688 P PPL FR A8 91 913 91338 6414 136 Europe/Paris 2012-01-18
-2998277 Limonest Limonest Limonest 45.83744 4.7718 P PPL FR B9 69 691 69116 2984 409 Europe/Paris 2012-01-18
-2998286 Limoges Limoges Augustoritum,Lemotges,Lemòtges,Limages,Limoges,Limogo,Limog·es,Limotges,Limoz,Limozh,Limoĝo,Limòtges,Llemotges,li meng,limoja,lymwz',lymwzh,rimoju,Λιμόζ,Лимож,לימוז',لیموژ,लिमोज,リモージュ,里蒙 45.83153 1.2578 P PPLA FR B1 87 872 87085 141176 284 Europe/Paris 2012-01-18
-2998294 Limetz-Villez Limetz-Villez 49.06667 1.55 P PPL FR A8 78 781 78337 1838 16 Europe/Paris 2007-11-20
-2998296 Limésy Limesy Limesy,Limésy 49.61271 0.92483 P PPL FR A7 76 763 76385 1405 149 Europe/Paris 2012-01-18
-2998298 Limerzel Limerzel Limerzel,Lizmerzher 47.63619 -2.35448 P PPL FR A2 56 563 56111 1185 63 Europe/Paris 2012-01-18
-2998305 Limeil-Brévannes Limeil-Brevannes Limeil,Limeil-Brevannes,Limeil-Breyannes,Limeil-Brévannes 48.7448 2.48705 P PPL FR A8 94 941 94044 19104 67 Europe/Paris 2012-01-18
-2998311 Limay Limay Limay 48.99553 1.74081 P PPL FR A8 78 781 78335 18559 52 Europe/Paris 2012-01-18
-2998312 Limas Limas Limas 45.97896 4.70292 P PPL FR B9 69 692 69115 4434 220 Europe/Paris 2012-01-18
-2998320 Lillers Lillers Lillers 50.56345 2.48042 P PPL FR B4 62 622 62516 10104 28 Europe/Paris 2012-01-18
-2998322 Lillebonne Lillebonne Lillebonne 49.5203 0.53617 P PPL FR A7 76 762 76384 9797 15 Europe/Paris 2012-01-18
-2998324 Lille Lille Insula,Lil,Lila,Lill',Lilla,Lille,Riesel,Rijsel,li er,lil,lila,lyl,riru,Лил,Лилль,ליל,ليل,لیل,लिल,リール,里尔,릴 50.63297 3.05858 P PPLA FR B4 59 595 59350 228328 27 Europe/Paris 2012-01-18
-2998330 L'Île-Rousse L'Ile-Rousse Ile Rousse,Isola Rossa,L'Il'-Rus,L'Ile-Rousse,L'Isula Rossa,L'Île-Rousse,Île Rousse,Л'Иль-Рус 42.63371 8.93764 P PPL FR FR A5 2B 2B5 2B134 2774 6 Europe/Paris 2010-06-16
-2998340 Ligugé Liguge Liguge,Ligugé 46.52035 0.32617 P PPL FR B7 86 863 86133 2806 124 Europe/Paris 2012-01-18
-2998343 Ligueil Ligueil Ligueil,Ligueuil 47.0421 0.81893 P PPL FR A3 37 373 37130 2187 79 Europe/Paris 2012-01-18
-2998347 Ligré Ligre Ligre,Ligré 47.11185 0.27562 P PPL FR A3 37 371 37129 1011 53 Europe/Paris 2012-01-18
-2998358 Ligny-le-Ribault Ligny-le-Ribault Ligny,Ligny-le-Ribault 47.68419 1.78152 P PPL FR A3 45 452 45182 1199 95 Europe/Paris 2012-01-18
-2998359 Ligny-le-Châtel Ligny-le-Chatel Ligny,Ligny-le-Chatel,Ligny-le-Châtel 47.90022 3.7576 P PPL FR A1 89 891 89227 1339 125 Europe/Paris 2012-01-18
-2998360 Ligny-en-Cambrésis Ligny-en-Cambresis Ligny,Ligny-en-Cambresis,Ligny-en-Cambrésis 50.10123 3.37841 P PPL FR B4 59 592 59349 1691 139 Europe/Paris 2012-01-18
-2998362 Ligny-en-Barrois Ligny-en-Barrois Ligny,Ligny-en-Barrois 48.68861 5.32543 P PPL FR B2 55 551 55291 5247 225 Europe/Paris 2012-01-18
-2998386 Lignières Lignieres Lignieres,Lignières 46.75152 2.1738 P PPL FR A3 18 182 18127 1637 161 Europe/Paris 2012-01-18
-2998404 Ligné Ligne Legneg,Ligne,Ligné 47.41096 -1.37726 P PPL FR B5 44 444 44082 3222 36 Europe/Paris 2012-01-18
-2998409 Lignan-sur-Orb Lignan-sur-Orb Lignan,Lignan-sur-Orb 43.38462 3.16891 P PPL FR A9 34 341 34140 3232 26 Europe/Paris 2012-01-18
-2998423 Liffré Liffre Liffre,Liffré,Liverieg 48.21324 -1.50838 P PPL FR A2 35 353 35152 7034 101 Europe/Paris 2012-01-18
-2998425 Liffol-le-Grand Liffol-le-Grand Liffol-le-Grand 48.31771 5.58125 P PPL FR B2 88 882 88270 2392 310 Europe/Paris 2012-01-18
-2998431 Liévin Lievin Lieven,Lievin,Liévin,Лиевен 50.4198 2.78068 P PPL FR B4 62 627 62510 34370 46 Europe/Paris 2012-01-18
-2998437 Lieu-Saint-Amand Lieu-Saint-Amand Lieu-Saint-Amand 50.27318 3.34624 P PPL FR B4 59 596 59348 1272 62 Europe/Paris 2012-01-18
-2998439 Lieusaint Lieusaint Lieusaint 48.63476 2.54806 P PPL FR A8 77 772 77251 7018 88 Europe/Paris 2012-01-18
-2998443 Lieurey Lieurey Lieurey 49.23019 0.49879 P PPL FR A7 27 272 27367 1255 171 Europe/Paris 2012-01-18
-2998445 Lieuran-lès-Béziers Lieuran-les-Beziers Lieuran,Lieuran-les-Beziers,Lieuran-lès-Béziers 43.4186 3.23719 P PPL FR A9 34 341 34139 1054 66 Europe/Paris 2012-01-18
-2998460 Liesse-Notre-Dame Liesse-Notre-Dame Notre Dame de Liesse 49.61667 3.8 P PPL FR B6 02 022 02430 1530 70 Europe/Paris 2007-11-20
-2998469 Liergues Liergues Liergues 45.97138 4.66231 P PPL FR B9 69 692 69114 1496 246 Europe/Paris 2012-01-18
-2998474 Lièpvre Liepvre Liepvre,Lièpvre 48.27036 7.28414 P PPL FR C1 68 685 68185 1708 269 Europe/Paris 2012-01-18
-2998492 Licques Licques Licques 50.78416 1.93844 P PPL FR B4 62 626 62506 1475 68 Europe/Paris 2012-01-18
-2998517 Libourne Libourne Liborna,Libourne,Liburn,riburunu,Либурн,リブルヌ 44.91667 -0.23333 P PPLA3 FR 97 33 335 33243 24240 20 Europe/Paris 2011-11-02
-2998520 Libercourt Libercourt Libercourt 50.48322 3.01584 P PPL FR B4 62 627 62907 8443 29 Europe/Paris 2012-01-18
-2998532 Liancourt Liancourt L'Unite-de-l'Oise,L'Unité-de-l'Oise,Liancourt,Liancourt-sous-Clermont,Unite-sur-Oise,Unité-sur-Oise 49.33034 2.46595 P PPL FR B6 60 602 60360 6758 61 Europe/Paris 2012-01-18
-2998574 Hôpital-Camfrout Hopital-Camfrout An Ospital,Hopital-Camfrout,Hôpital-Camfrout,L'Hopital,L'Hopital-Camfrout,L'Hôpital,L'Hôpital-Camfrout 48.32789 -4.24155 P PPL FR A2 29 291 29080 1751 8 Europe/Paris 2012-01-18
-2998622 Lherm Lherm Lherm 43.43127 1.22239 P PPL FR B3 31 311 31299 2887 224 Europe/Paris 2012-01-18
-2998632 L'Haÿ-les-Roses L'Hay-les-Roses L'Hay,L'Hay-les-Roses,L'Haÿ-les-Roses 48.78333 2.33333 P PPLA3 FR FR A8 94 943 94038 29703 62 Europe/Paris 2011-11-02
-2998639 Lezoux Lezoux 45.82689 3.37924 P PPL FR 98 63 635 63195 5170 360 Europe/Paris 2009-06-24
-2998641 Lézigneux Lezigneux Lezigneux,Lézigneux 45.56705 4.06524 P PPL FR B9 42 421 42122 1174 540 Europe/Paris 2012-01-18
-2998643 Lézignan-la-Cèbe Lezignan-la-Cebe Lesignan la Cebe,Lezignan,Lezignan-la-Cebe,Lésignan la Cèbe,Lézignan,Lézignan-la-Cèbe 43.49368 3.43708 P PPL FR A9 34 341 34136 1138 29 Europe/Paris 2012-01-18
-2998644 Lézignan-Corbières Lezignan-Corbieres Lezicnan-Corbieres,Lezignan,Lezignan-Corbieres,Lézicnan-Corbieres,Lézignan,Lézignan-Corbières 43.19764 2.76142 P PPL FR A9 11 113 11203 9042 49 Europe/Paris 2012-01-18
-2998654 Lezennes Lezennes Lezennes 50.61553 3.11354 P PPL FR B4 59 595 59346 3404 40 Europe/Paris 2012-01-18
-2998660 Lezay Lezay Lezay 46.26437 -0.00925 P PPL FR B7 79 792 79148 2176 131 Europe/Paris 2012-01-18
-2998661 Lézat-sur-Lèze Lezat-sur-Leze Lezat,Lezat-sur-Leze,Lézat,Lézat-sur-Lèze 43.27734 1.34686 P PPL FR B3 09 092 09167 2233 221 Europe/Paris 2012-01-18
-2998663 Lézardrieux Lezardrieux Lezardrev,Lezardrieux,Lézardrieux 48.7851 -3.10588 P PPL FR A2 22 223 22127 1708 25 Europe/Paris 2012-01-18
-2998666 Lézan Lezan 44.01667 4.05 P PPL FR A9 30 301 30147 1073 115 Europe/Paris 2007-11-15
-2998696 Leyment Leyment Leyment 45.92294 5.29479 P PPL FR B9 01 011 01213 1011 251 Europe/Paris 2012-01-18
-2998697 Leymen Leymen Leymen 47.49522 7.48426 P PPL FR C1 68 684 68182 1099 349 Europe/Paris 2012-01-18
-2998698 Leyme Leyme Leyme 44.78622 1.89897 P PPL FR B3 46 462 46170 1013 474 Europe/Paris 2012-01-18
-2998709 Lexy Lexy Lexy 49.50356 5.7338 P PPL FR B2 54 541 54314 3107 365 Europe/Paris 2012-01-18
-2998714 Lewarde Lewarde Lewarde 50.34173 3.16782 P PPL FR B4 59 593 59345 2798 44 Europe/Paris 2012-01-18
-2998718 Levroux Levroux La Fontaine,Levroux,Richelaine 46.9786 1.61243 P PPL FR A3 36 362 36093 2916 140 Europe/Paris 2012-01-18
-2998731 Le Vivier-sur-Mer Le Vivier-sur-Mer Gwiver,Le Vivier,Le Vivier-sur-Mer 48.60169 -1.77302 P PPL FR A2 35 354 35361 1097 9 Europe/Paris 2012-01-18
-2998732 Viviers-du-Lac Viviers-du-Lac 45.65 5.9 P PPL FR B9 73 732 73328 1622 242 Europe/Paris 2007-11-20
-2998738 Lévis-Saint-Nom Levis-Saint-Nom L'Yvette,Levis,Levis-Saint-Nom,Lévis,Lévis-Saint-Nom 48.71667 1.95 P PPL FR A8 78 782 78334 1826 149 Europe/Paris 2012-01-18
-2998803 Lévignac Levignac Levignac-sur-Save,Lévignac-sur-Save 43.66667 1.2 P PPL FR B3 31 313 31297 1827 168 Europe/Paris 2007-11-20
-2998807 Le Vigen Le Vigen Le Vigen,Lo Vijan 45.75149 1.28865 P PPL FR B1 87 872 87205 1748 242 Europe/Paris 2012-01-18
-2998810 Le Vigan Le Vigan Le Vigan 44.74075 1.43963 P PPL FR B3 46 463 46334 1276 237 Europe/Paris 2012-01-18
-2998811 Le Vigan Le Vigan Commune-des-Monts,Le Vigan,Monts,Sablono:TabelKapoLauCarta,Ŝablono:TabelKapoLaŭĈarta 43.98333 3.6 P PPLA3 FR A9 30 303 30350 0 248 Europe/Paris 2011-11-02
-2998830 Levier Levier Levier 46.95302 6.12059 P PPL FR A6 25 253 25334 2085 716 Europe/Paris 2012-01-18
-2998834 Le Vieil-Baugé Le Vieil-Bauge Le Vieil-Bauge,Le Vieil-Baugé 47.53193 -0.11888 P PPL FR B5 49 493 49372 1333 56 Europe/Paris 2012-01-18
-2998851 Levet Levet Levet 46.92605 2.40732 P PPL FR A3 18 181 18126 1284 170 Europe/Paris 2012-01-18
-2998854 Le Vésinet Le Vesinet Le Vesinet,Le Vésinet 48.89281 2.13308 P PPL FR A8 78 783 78650 16740 41 Europe/Paris 2012-01-18
-2998856 Lèves Leves Leves,Lèves 48.47065 1.48194 P PPL FR A3 28 281 28209 4575 130 Europe/Paris 2012-01-18
-2998862 Le Versoud Le Versoud Le Versoud 45.21386 5.85815 P PPL FR B9 38 381 38538 4092 221 Europe/Paris 2012-01-18
-2998879 Vernet Vernet 43.43333 1.41667 P PPL FR B3 31 311 31574 2162 169 Europe/Paris 2007-11-21
-2998917 Levens Levens Levens 43.86043 7.22653 P PPL FR B8 06 062 06075 3835 539 Europe/Paris 2012-01-18
-2998933 Le Vaudreuil Le Vaudreuil Le Vaudreuil,Vaudreuil-les-Ponts 49.25407 1.2096 P PPL FR A7 27 271 27528 3612 12 Europe/Paris 2012-01-18
-2998963 Le Val-Saint-Père Le Val-Saint-Pere Le Val-Pere,Le Val-Père,Le Val-Saint-Pere,Le Val-Saint-Père,Val Saint Pair 48.66176 -1.37653 P PPL FR 99 50 501 50616 1656 13 Europe/Paris 2012-01-18
-2998965 Le Val-Saint-Germain Le Val-Saint-Germain Le Val-Saint-Germain,Val-Libre 48.56601 2.06471 P PPL FR A8 91 911 91630 1513 76 Europe/Paris 2012-01-18
-2998975 Levallois-Perret Levallois-Perret Levallois,Levallois-Perret 48.89389 2.28864 P PPL FR A8 92 922 92044 62178 38 Europe/Paris 2012-01-18
-2998998 Valdahon Valdahon 47.15 6.35 P PPL FR A6 25 253 25578 5077 664 Europe/Paris 2010-09-13
-2999002 Leval Leval Leval 50.18106 3.83093 P PPL FR B4 59 591 59344 2450 135 Europe/Paris 2012-01-18
-2999012 Le Val Le Val Le Val 43.43865 6.07295 P PPL FR B8 83 833 83143 3850 243 Europe/Paris 2012-01-18
-2999020 Leuville-sur-Orge Leuville-sur-Orge Leuville,Leuville-sur-Orge 48.6173 2.26685 P PPL FR A8 91 913 91333 3952 67 Europe/Paris 2012-01-18
-2999040 Leudeville Leudeville Leudeville 48.5659 2.32676 P PPL FR A8 91 913 91332 1256 78 Europe/Paris 2012-01-18
-2999046 Leucate Leucate Leucate 42.91056 3.02944 P PPL FR A9 11 113 11202 3539 30 Europe/Paris 2011-01-10
-2999089 Le Trévoux Le Trevoux An Treou-Kernev,An Treoù-Kernev,Le Trevoux,Le Trévoux 47.89478 -3.6408 P PPL FR A2 29 294 29300 1374 85 Europe/Paris 2012-01-18
-2999093 Le Tréport Le Treport 50.05979 1.37583 P PPL FR A7 76 761 76711 6062 35 10 Europe/Paris 2007-11-29
-2999126 Le Trait Le Trait Le Trait 49.46895 0.81634 P PPL FR A7 76 763 76709 5506 22 Europe/Paris 2012-01-18
-2999131 Le Touvet Le Touvet Le Touvet 45.35809 5.94889 P PPL FR B9 38 381 38511 2955 271 Europe/Paris 2012-01-18
-2999139 Le Touquet-Paris-Plage Le Touquet-Paris-Plage Le Touquet,Le Touquet-Paris-Plage,Le Tourquet,Le Tourquet-Paris-Plage,Paris-Plage,Tourquet 50.52432 1.58571 P PPL FR B4 62 624 62826 5696 15 Europe/Paris 2012-01-18
-2999163 Le Tignet Le Tignet Le Tignet 43.63887 6.84173 P PPL FR B8 06 061 06140 2909 404 Europe/Paris 2012-01-18
-2999170 Le Thuit-Signol Le Thuit-Signol Le Thuit-Signol 49.26487 0.9391 P PPL FR A7 27 272 27638 1873 139 Europe/Paris 2012-01-18
-2999178 Le Thou Le Thou Le Thou 46.08333 -0.91667 P PPL FR B7 17 172 17447 1249 26 Europe/Paris 2012-01-18
-2999179 Le Thoronet Le Thoronet Le Thoronet 43.45257 6.30343 P PPL FR B8 83 831 83136 1649 138 Europe/Paris 2012-01-18
-2999180 Le Thor Le Thor Le Thor 43.92943 4.99543 P PPL FR B8 84 842 84132 7055 53 Europe/Paris 2011-01-18
-2999181 Le Tholy Le Tholy Le Tholy 48.08229 6.74351 P PPL FR B2 88 881 88470 1592 595 Europe/Paris 2012-01-18
-2999182 Le Tholonet Le Tholonet Le Tholonet,Tholonet 43.52176 5.51115 P PPL FR B8 13 131 13109 2383 184 Europe/Paris 2011-01-18
-2999185 Le Thillot Le Thillot Le Thillot 47.87941 6.7628 P PPL FR B2 88 881 88468 4032 485 Europe/Paris 2012-01-18
-2999186 Le Thillay Le Thillay Le Thillay 49.00659 2.47218 P PPL FR A8 95 952 95612 3887 74 Europe/Paris 2012-01-18
-2999203 Le Theil-de-Bretagne Le Theil-de-Bretagne An Tilh,Le Theil,Le Theil-de-Bretagne 47.9195 -1.42975 P PPL FR A2 35 351 35333 1237 85 Europe/Paris 2012-01-18
-2999205 Le Theil-Bocage Le Theil-Bocage 48.88333 -0.71667 P PPL FR 99 14 144 14686 1955 218 Europe/Paris 2007-11-20
-2999236 Le Temple-de-Bretagne Le Temple-de-Bretagne Le Temple,Le Temple-Maupertuis,Le Temple-de-Bretagne,Templ-Breizh 47.32737 -1.78904 P PPL FR B5 44 442 44203 1665 87 Europe/Paris 2012-01-18
-2999251 Le Teilleul Le Teilleul Le Teilleul 48.53758 -0.87304 P PPL FR 99 50 501 50591 1422 208 Europe/Paris 2012-01-18
-2999259 Le Teil Le Teil Le Teil 44.54679 4.68165 P PPL FR B9 07 072 07319 8620 72 Europe/Paris 2012-01-18
-2999260 Le Teich Le Teich Le Teich 44.63177 -1.02155 P PPL FR 97 33 336 33527 5237 5 Europe/Paris 2012-01-18
-2999290 Le Tallud Le Tallud Le Tallud 46.62911 -0.29978 P PPL FR B7 79 793 79322 1939 149 Europe/Paris 2012-01-18
-2999296 Le Taillan-Médoc Le Taillan-Medoc Le Taillan,Le Taillan-Medoc,Le Taillan-Médoc 44.9052 -0.6706 P PPL FR 97 33 332 33519 8505 22 Europe/Paris 2012-01-18
-2999303 Le Syndicat Le Syndicat Le Syndicat 48.01733 6.68436 P PPL FR B2 88 881 88462 1837 393 Europe/Paris 2012-01-18
-2999391 Les Vans Les Vans Les Vans 44.40619 4.13471 P PPL FR B9 07 071 07334 2743 167 Europe/Paris 2012-01-18
-2999446 Lestrem Lestrem Lestrem 50.61987 2.68646 P PPL FR B4 62 622 62502 3925 18 Europe/Paris 2012-01-18
-2999485 Les Touches Les Touches An Dosenneg,Les Touches 47.44249 -1.43097 P PPL FR B5 44 441 44205 2111 27 Europe/Paris 2007-11-03
-2999528 Lestelle-Bétharram Lestelle-Betharram Lestelle,Lestelle-Betharram,Lestelle-Bétharram 43.13333 -0.21667 P PPL FR 97 64 643 64339 1094 296 Europe/Paris 2011-09-11
-2999572 Les Sorinières Les Sorinieres Kersoren,Les Sorinieres,Les Sorinières 47.14831 -1.52932 P PPL FR B5 44 442 44198 6698 34 Europe/Paris 2012-01-18
-2999619 Lessay Lessay Lessay 49.21703 -1.53089 P PPL FR 99 50 503 50267 1800 8 Europe/Paris 2012-01-18
-2999649 Les Salles-du-Gardon Les Salles-du-Gardon Les Salles-du-Gardon 44.2079 4.03689 P PPL FR A9 30 301 30307 2789 184 Europe/Paris 2012-01-18
-2999683 Les Sables-d'Olonne Les Sables-d'Olonne Les Sables-d'Olonne,Sables-d'Olonne 46.5 -1.78333 P PPLA3 FR B5 85 853 85194 16105 4 Europe/Paris 2011-11-02
-2999706 Les Rousses Les Rousses Les Rousses 46.48412 6.0633 P PPL FR A6 39 393 39470 3048 1127 Europe/Paris 2012-01-18
-2999725 Les Rosiers-sur-Loire Les Rosiers-sur-Loire Les Rosiers 47.35 -0.21667 P PPL FR B5 49 493 49261 2365 20 Europe/Paris 2007-08-05
-2999742 Les Roches-de-Condrieu Les Roches-de-Condrieu Les Roches,Les Roches-de-Condrieu 45.45107 4.76738 P PPL FR B9 38 383 38340 1968 153 Europe/Paris 2012-01-18
-2999787 Les Riceys Les Riceys Les Riceys 47.9939 4.36986 P PPL FR A4 10 103 10317 1401 178 Europe/Paris 2012-01-18
-2999838 Lesquin Lesquin Lesquin 50.58232 3.119 P PPL FR B4 59 595 59343 6424 56 Europe/Paris 2012-01-18
-2999908 Les Ponts-de-Cé Les Ponts-de-Ce Le Pont de Ce,Ponts-Libres 47.42315 -0.52477 P PPL FR B5 49 491 49246 12915 24 Europe/Paris 2011-11-02
-2999976 Lespinasse Lespinasse Lespinasse 43.71206 1.38462 P PPL FR B3 31 313 31293 2435 122 Europe/Paris 2011-01-09
-2999981 Lespignan Lespignan Lespignan 43.27366 3.17224 P PPL FR A9 34 341 34135 2895 32 Europe/Paris 2012-01-18
-2999982 Les Pieux Les Pieux Les Pieux 49.51286 -1.80714 P PPL FR 99 50 502 50402 3413 117 Europe/Paris 2012-01-18
-3000047 Les Pennes-Mirabeau Les Pennes-Mirabeau Les Pennes 43.41028 5.31306 P PPL FR B8 13 131 13071 19871 137 Europe/Paris 2011-11-02
-3000052 Les Peintures Les Peintures Les Peintures 45.06667 -0.1 P PPL FR 97 33 335 33315 1298 18 Europe/Paris 2012-01-18
-3000060 Les Pavillons-sous-Bois Les Pavillons-sous-Bois Les Pavillons-sous-Bois,Pavillons,Pavillons-sous-Bois,les Pavillons 48.90683 2.50648 P PPL FR A8 93 931 93057 19730 55 Europe/Paris 2012-01-18
-3000072 Lesparre-Médoc Lesparre-Medoc L'Sparre,Lesparre,Lesparre-Medoc,Lesparre-Médoc,Lesperre 45.3 -0.93333 P PPLA3 FR 97 33 334 33240 5406 12 Europe/Paris 2011-11-02
-3000090 Le Sourn Le Sourn Ar Sorn,Le Sourn 48.04262 -2.9879 P PPL FR A2 56 562 56246 2008 100 Europe/Paris 2012-01-18
-3000120 Les Ormes Les Ormes Les Ormes 46.97478 0.60484 P PPL FR B7 86 861 86183 1537 49 Europe/Paris 2012-01-18
-3000139 Le Soler Le Soler Le Soler,el Soler 42.68101 2.79335 P PPL FR A9 66 662 66195 6377 72 Europe/Paris 2012-01-18
-3000165 Les Noës-près-Troyes Les Noes-pres-Troyes Les Noes,Les Noes-pres-Troyes,Les Noës,Les Noës-près-Troyes 48.30358 4.04552 P PPL FR A4 10 103 10265 3502 106 Europe/Paris 2012-01-18
-3000174 Lesneven Lesneven Lesneven 48.57233 -4.32133 P PPL FR A2 29 291 29124 7144 68 Europe/Paris 2012-01-18
-3000192 Les Mureaux Les Mureaux Les Mureaux 48.99173 1.90972 P PPL FR A8 78 781 78440 32134 25 Europe/Paris 2012-01-18
-3000201 Moutiers-les-Mauxfaits Moutiers-les-Mauxfaits Les Moutiers,Les Moutiers-Fideles,Les Moutiers-Fidèles 46.48333 -1.41667 P PPL FR B5 85 853 85156 1508 34 Europe/Paris 2007-11-20
-3000205 Les Moutiers-en-Retz Les Moutiers-en-Retz 47.06375 -1.999 P PPL FR B5 44 443 44106 1145 6 Europe/Paris 2009-09-08
-3000246 Les Montils Les Montils Les Montils 47.49499 1.29775 P PPL FR A3 41 411 41147 1498 93 Europe/Paris 2012-01-18
-3000268 Les Molières Les Molieres Les Molieres,Les Molières 48.67306 2.06959 P PPL FR A8 91 913 91411 1756 174 Europe/Paris 2012-01-18
-3000329 Les Mées Les Mees Les Mees,Les Mées 44.03071 5.97681 P PPL FR B8 04 043 04116 3126 406 Europe/Paris 2012-01-18
-3000351 Les Mathes Les Mathes Les Mathes 45.7139 -1.15497 P PPL FR B7 17 172 17225 1560 6 Europe/Paris 2012-01-18
-3000353 Les Matelles Les Matelles Les Matelles 43.72905 3.8136 P PPL FR A9 34 343 34153 1610 99 Europe/Paris 2012-01-18
-3000400 Les Marches Les Marches Les Marches 45.49921 6.00087 P PPL FR B9 73 732 73151 2304 320 Europe/Paris 2012-01-18
-3000443 Les Magnils-Reigniers Les Magnils-Reigniers Les Magnils-Reigniers 46.48333 -1.21667 P PPL FR B5 85 851 85131 1443 21 Europe/Paris 2007-11-20
-3000444 Les Mages Les Mages Les Mages 44.22862 4.16946 P PPL FR A9 30 301 30152 1730 196 Europe/Paris 2012-01-18
-3000446 Les Lucs-sur-Boulogne Les Lucs-sur-Boulogne Les Lucs,Les Lucs-sur-Boulogne 46.84478 -1.49445 P PPL FR B5 85 852 85129 2892 68 Europe/Paris 2012-01-18
-3000458 Les Loges-Marchis Les Loges-Marchis Les Loges-Marchis 48.54132 -1.08754 P PPL FR 99 50 501 50274 1004 159 Europe/Paris 2012-01-18
-3000460 Les Loges-en-Josas Les Loges-en-Josas Les Loges 48.76377 2.14002 P PPL FR A8 78 784 78343 1539 148 Europe/Paris 2007-11-13
-3000465 Les Loges Les Loges Les Loges 49.6986 0.28404 P PPL FR A7 76 762 76390 1131 100 Europe/Paris 2012-01-18
-3000491 Les Lilas Les Lilas Les Lilas 48.87992 2.42057 P PPL FR A8 93 931 93045 21124 122 Europe/Paris 2012-01-18
-3000519 Les Landes-Genusson Les Landes-Genusson Les Gats,Les Gâts,Les Landes,Les Landes-Cenusson 46.96667 -1.11667 P PPL FR B5 85 852 85119 2138 106 Europe/Paris 2007-11-17
-3000602 Lésigny Lesigny 48.74374 2.61518 P PPL FR A8 77 772 77249 8421 96 Europe/Paris 2007-04-01
-3000622 Les Houches Les Houches Houches,Les Houches 45.89011 6.79613 P PPL FR B9 74 742 74143 2985 999 Europe/Paris 2012-01-18
-3000648 Les Herbiers Les Herbiers Les Herbiers,Les Petits-Herbiers 46.86667 -1.01667 P PPL FR B5 85 852 85109 15664 111 Europe/Paris 2012-01-18
-3000674 Les Hautes-Rivières Les Hautes-Rivieres Hautes-Rivieres,Hautes-Rivières,Les Hautes-Rivieres,Les Hautes-Rivières 49.88595 4.84186 P PPL FR A4 08 081 08218 1945 161 Europe/Paris 2012-01-18
-3000826 Les Grandes-Ventes Les Grandes-Ventes Grandes-Ventes,Les Grandes-Ventes 49.78544 1.22921 P PPL FR A7 76 761 76321 1859 180 Europe/Paris 2012-01-18
-3000872 Les Gonds Les Gonds Les Gonds 45.71437 -0.61408 P PPL FR B7 17 174 17179 1779 8 Europe/Paris 2012-01-18
-3000902 Les Gets Les Gets Gets,Les Gets 46.15522 6.66492 P PPL FR B9 74 742 74134 1331 1166 Europe/Paris 2007-03-26
-3000998 Les Fourgs Les Fourgs Les Fourgs 46.83455 6.39953 P PPL FR A6 25 253 25254 1105 1089 Europe/Paris 2012-01-18
-3001020 Les Forges Les Forges Les Forges 48.17747 6.38846 P PPL FR B2 88 881 88178 2113 371 Europe/Paris 2012-01-18
-3001051 Les Fins Les Fins Les Fins 47.07764 6.63002 P PPL FR A6 25 253 25240 2797 818 Europe/Paris 2012-01-18
-3001126 Les Essarts-le-Roi Les Essarts-le-Roi Les Essarts,Les Essarts-la-Montagne,Les Essarts-le-Roi,Les Essarts-les-Bois,Montagne-des-Essarts 48.71673 1.90089 P PPL FR A8 78 782 78220 6213 175 Europe/Paris 2012-01-18
-3001134 Les Essarts Les Essarts Les Essarts 46.7744 -1.22834 P PPL FR B5 85 852 85084 4483 84 Europe/Paris 2012-01-18
-3001157 Les Epesses Les Epesses 46.88333 -0.9 P PPL FR B5 85 852 85082 2255 189 Europe/Paris 2007-11-17
-3001176 Les Églisottes-et-Chalaures Les Eglisottes-et-Chalaures Les Eglisottes,Les Eglisottes-et-Chalaures,Les Églisottes,Les Églisottes-et-Chalaures 45.1 -0.05 P PPL FR 97 33 335 33154 2073 12 Europe/Paris 2012-01-18
-3001191 Les Échelles Les Echelles Les Echelles,Les Échelles 45.43481 5.75133 P PPL FR B9 73 732 73105 1345 384 Europe/Paris 2012-01-18
-3001336 Les Contamines-Montjoie Les Contamines-Montjoie Contamines-Montjoie,Les Contamines,Les Contamines-Montjoie 45.82136 6.72817 P PPL FR B9 74 742 74085 1127 1176 Europe/Paris 2012-01-18
-3001386 Les Clouzeaux Les Clouzeaux Les Clouzeaux 46.62881 -1.50947 P PPL FR B5 85 852 85069 2257 60 Europe/Paris 2012-01-18
-3001402 Les Clayes-sous-Bois Les Clayes-sous-Bois Les Clayes,Les Clayes-sous-Bois 48.82206 1.98677 P PPL FR A8 78 784 78165 17776 132 Europe/Paris 2012-01-18
-3001457 Les Chères Les Cheres Les Cheres,Les Chères,Les Echelles 45.88975 4.7467 P PPL FR B9 69 691 69055 1133 194 Europe/Paris 2012-01-18
-3001546 Les Champs-Géraux Les Champs-Geraux Les Champs-Geraud,Les Champs-Geraux,Les Champs-Géraud,Les Champs-Géraux,Maez-Geraod 48.41646 -1.97087 P PPL FR A2 22 221 22035 1004 45 Europe/Paris 2012-01-18
-3001617 Lescar Lescar Lescar 43.33333 -0.41667 P PPL FR 97 64 643 64335 9710 188 Europe/Paris 2011-11-02
-3001698 Les Brouzils Les Brouzils Les Brouzils 46.88571 -1.32095 P PPL FR B5 85 852 85038 2311 65 Europe/Paris 2012-01-18
-3002057 Les Avenières Les Avenieres Les Avenieres,Les Avenières 45.63156 5.57074 P PPL FR B9 38 382 38022 4710 245 Europe/Paris 2012-01-18
-3002067 Les Authieux-sur-le-Port-Saint-Ouen Les Authieux-sur-le-Port-Saint-Ouen Authieux-sur-le-Port-des-Sans-Culottes,Les Authieux,Les Authieux-sur-le-Port-Saint-Ouen 49.341 1.13465 P PPL FR A7 76 763 76039 1203 83 Europe/Paris 2012-01-18
-3002108 Les Attaques Les Attaques Les Attaques 50.90962 1.92961 P PPL FR B4 62 626 62043 1851 2 Europe/Paris 2012-01-18
-3002114 Les Artigues-de-Lussac Les Artigues-de-Lussac Les Artigues,Les Artigues-de-Lussac,Les Artigues-la Foret,Les Artigues-la Forêt 44.96667 -0.15 P PPL FR 97 33 335 33014 1060 38 Europe/Paris 2012-01-18
-3002138 Les Arcs Les Arcs Les Arc-sur-Argens,Les Arcs 43.45702 6.47905 P PPL FR B8 83 831 83004 5910 72 Europe/Paris 2012-01-18
-3002145 Le Sappey-en-Chartreuse Le Sappey-en-Chartreuse Le Sappey,Le Sappey-en-Chartreuse 45.25998 5.77721 P PPL FR B9 38 381 38471 1007 1008 Europe/Paris 2012-01-18
-3002158 Les Angles Les Angles Les Angles 43.95806 4.76342 P PPL FR A9 30 302 30011 8318 67 Europe/Paris 2012-01-18
-3002172 Les Andelys Les Andelys Les Andelys 49.25 1.41667 P PPLA3 FR A7 27 271 27016 9655 61 Europe/Paris 2011-11-02
-3002175 Les Ancizes-Comps Les Ancizes-Comps Ancizes-Comps,Les Ancizes,Les Ancizes-Comps,Onsiz-Komp,Онсиз-Комп 45.92535 2.81074 P PPL FR 98 63 634 63004 1819 704 Europe/Paris 2012-01-18
-3002184 Les Alluets-le-Roi Les Alluets-le-Roi Alluets-la-Montagne,Les Alluets,Les Alluets-le-Roi 48.91379 1.9181 P PPL FR A8 78 783 78010 1344 183 Europe/Paris 2012-01-18
-3002185 Les Allues Les Allues Valmineral,Valminéral 45.43255 6.55558 P PPL FR B9 73 731 73015 2015 1115 Europe/Paris 2009-01-30
-3002221 Les Ageux Les Ageux Les Ageux 49.31667 2.6 P PPL FR B6 60 602 60006 1211 31 Europe/Paris 2012-01-18
-3002237 Les Abrets Les Abrets Les Abrets 45.53706 5.58535 P PPL FR B9 38 382 38001 2924 400 Europe/Paris 2012-01-18
-3002247 Léry Lery Lery,Léry 49.28585 1.20768 P PPL FR A7 27 271 27365 2244 11 Europe/Paris 2012-01-18
-3002256 Le Russey Le Russey Le Russey 47.16055 6.72912 P PPL FR A6 25 253 25512 1936 882 Europe/Paris 2012-01-18
-3002271 Le Rove Le Rove Le Rove 43.36987 5.25112 P PPL FR B8 13 134 13088 4084 156 Europe/Paris 2011-01-19
-3002277 Lérouville Lerouville Lerouville,Lérouville 48.79261 5.54063 P PPL FR B2 55 552 55288 1408 228 Europe/Paris 2012-01-18
-3002280 Le Rouret Le Rouret Le Rouret 43.67873 7.01521 P PPL FR B8 06 061 06112 3575 281 Europe/Paris 2012-01-18
-3002351 Le Rheu Le Rheu Le Rheu,Reuz 48.10228 -1.79734 P PPL FR A2 35 353 35240 6601 36 Europe/Paris 2012-01-18
-3002357 Le Revest-les-Eaux Le Revest-les-Eaux Le Revest 43.18333 5.93333 P PPL FR FR B8 83 832 83103 3733 292 Europe/Paris 2008-04-05
-3002373 Le Relecq-Kerhuon Le Relecq-Kerhuon Ar Releg-Kerhuon,Le Relecq,Le Relecq-Kerhuon 48.40691 -4.39359 P PPL FR A2 29 291 29235 11911 18 37 Europe/Paris 2012-01-18
-3002383 Léré Lere Lere,Léré 47.46867 2.86981 P PPL FR A3 18 181 18125 1290 153 Europe/Paris 2012-01-18
-3002401 Le Raincy Le Raincy 48.9 2.51667 P PPLA3 FR A8 93 932 93062 13246 72 Europe/Paris 2011-11-02
-3002420 Le Quesnoy Le Quesnoy Le Quesnoy 50.24797 3.63656 P PPL FR B4 59 591 59481 4897 129 Europe/Paris 2012-01-18
-3002443 Le Puy-Sainte-Réparade Le Puy-Sainte-Reparade Le Puy,Le Puy-Sainte-Reparade,Le Puy-Sainte-Réparade 43.66319 5.43434 P PPL FR B8 13 131 13080 5041 204 Europe/Paris 2012-01-18
-3002446 Le Puy-Notre-Dame Le Puy-Notre-Dame Le Puy-Notre-Dame,Puy-la-Montagne 47.12551 -0.23572 P PPL FR B5 49 493 49253 1326 91 Europe/Paris 2012-01-18
-3002465 Le Puy-en-Velay Le Puy-en-Velay Le Puy,Lo Puei de Velai,Lo Puèi de Velai,Pjui-an-Vele,Puy-en-Velay,Пюи-ан-Веле,ル・ピュイ=アン=ヴレ 45.04366 3.88523 P PPLA2 FR 98 43 432 43157 22718 640 Europe/Paris 2011-12-08
-3002471 Lepuix Lepuix Lepuix,Lepuix-Gy 47.75996 6.8165 P PPL FR A6 90 901 90065 1155 505 Europe/Paris 2012-01-18
-3002499 Le Pré-Saint-Gervais Le Pre-Saint-Gervais Le Pre-Saint-Gervais,Le Pré-Saint-Gervais,Les Pres-le-Peletier,Les Prés-le-Peletier,Pre Saint Gervais,Pré Saint Gervais 48.88549 2.40422 P PPL FR A8 93 931 93061 17786 65 Europe/Paris 2012-01-18
-3002510 Le Pradet Le Pradet Le Pradet 43.10661 6.01718 P PPL FR B8 83 832 83098 12343 29 Europe/Paris 2012-01-18
-3002520 Le Pouzin Le Pouzin Le Pouzin 44.75173 4.74798 P PPL FR B9 07 072 07181 2849 94 Europe/Paris 2011-01-14
-3002534 Le Pouliguen Le Pouliguen Ar Poulgwenn,Le Pouliguen 47.26973 -2.4278 P PPL FR B5 44 443 44135 5438 6 Europe/Paris 2012-01-18
-3002537 Le Poujol-sur-Orb Le Poujol-sur-Orb Le Poujol,Le Poujol-sur-Orb 43.57919 3.06156 P PPL FR A9 34 341 34211 1003 174 Europe/Paris 2012-01-18
-3002541 Le Pouget Le Pouget Le Pouget 43.59195 3.52423 P PPL FR A9 34 342 34210 1521 112 Europe/Paris 2012-01-18
-3002547 Le Port-Marly Le Port-Marly Le Port-Marly,Port-Marly 48.89016 2.1114 P PPL FR A8 78 783 78502 4640 24 Europe/Paris 2012-01-18
-3002551 Le Portel Le Portel Le Portel 50.70559 1.57574 P PPL FR B4 62 623 62667 11100 28 Europe/Paris 2012-01-18
-3002552 Port-des-Barques Port-des-Barques 45.94763 -1.07795 P PPL FR B7 17 172 17484 1642 2 Europe/Paris 2007-11-14
-3002559 Le Porge Le Porge Le Porge 44.87276 -1.0889 P PPL FR 97 33 334 33333 1641 24 Europe/Paris 2012-01-18
-3002570 Le Pontet Le Pontet Le Pontet 43.96119 4.86008 P PPL FR B8 84 842 84092 16182 25 Europe/Paris 2011-11-02
-3002585 Le Pont-de-Claix Le Pont-de-Claix Le Pont-de-Claix,Pont-de-Claix 45.12443 5.7064 P PPL FR B9 38 381 38317 11963 247 Europe/Paris 2012-01-18
-3002586 Le Pont-de-Beauvoisin Le Pont-de-Beauvoisin Le Pont-de-Beauvoisin 45.53694 5.67333 P PPL FR B9 73 732 73204 2829 258 Europe/Paris 2009-09-08
-3002620 Le Poiré-sur-Vie Le Poire-sur-Vie Le Poire,Le Poire-sur-Vie,Le Poiré,Le Poiré-sur-Vie 46.76921 -1.50938 P PPL FR B5 85 852 85178 6273 58 Europe/Paris 2012-01-18
-3002626 Le Poinçonnet Le Poinconnet Le Poinconnet,Le Poinçonnet 46.7641 1.7179 P PPL FR A3 36 362 36159 5120 165 Europe/Paris 2012-01-18
-3002647 Le Plessis-Trévise Le Plessis-Trevise Le Plessis-Trevise,Le Plessis-Trévise,Plessis-Trevise,Plessis-Trévise 48.81074 2.57363 P PPL FR A8 94 942 94059 18618 105 Europe/Paris 2012-01-18
-3002650 Le Plessis-Robinson Le Plessis-Robinson Le Plessis-Robinson,Plessis-Robinson 48.78889 2.27078 P PPL FR A8 92 921 92060 22510 159 Europe/Paris 2012-01-18
-3002654 Le Plessis-Pâté Le Plessis-Pate Le Plessis-Paste,Le Plessis-Pasté,Le Plessis-Pate,Le Plessis-Pâté,Plessis-Pate,Plessis-Paté 48.61078 2.32318 P PPL FR A8 91 913 91494 4031 78 Europe/Paris 2011-10-22
-3002658 Le Plessis-Macé Le Plessis-Mace Le Plessis-Mace,Le Plessis-Macé 47.54304 -0.67436 P PPL FR B5 49 491 49242 1001 84 Europe/Paris 2012-01-18
-3002669 Le Plessis-Grammoire Le Plessis-Grammoire Le Plessis,Le Plessis-Grammoire 47.49884 -0.43021 P PPL FR B5 49 491 49241 2123 37 Europe/Paris 2012-01-18
-3002677 Le Plessis-Brion Le Plessis-Brion Le Plessis-Brion 49.46419 2.89096 P PPL FR B6 60 603 60501 1568 35 Europe/Paris 2012-01-18
-3002679 Le Plessis-Bouchard Le Plessis-Bouchard Le Plessis-Bouchard,Plessis-Bouchard 49 2.23333 P PPL FR A8 95 953 95491 7420 63 Europe/Paris 2012-01-18
-3002680 Le Plessis-Belleville Le Plessis-Belleville 49.09501 2.75614 P PPL FR B6 60 604 60500 3120 115 Europe/Paris 2011-11-02
-3002758 Le Pizou Le Pizou Le Pizou 45.01667 0.06667 P PPL FR 97 24 243 24329 1156 25 Europe/Paris 2012-01-18
-3002782 Le Pin-en-Mauges Le Pin-en-Mauges Le Pin,Le Pin-en-Mauges 47.25357 -0.89917 P PPL FR B5 49 492 49239 1237 112 Europe/Paris 2012-01-18
-3002808 Le Pin Le Pin Le Pin 48.91523 2.62841 P PPL FR A8 77 775 77363 1137 72 Europe/Paris 2012-01-18
-3002813 Le Pin Le Pin Le Pin 46.86179 -0.6544 P PPL FR B7 79 791 79210 1066 185 Europe/Paris 2012-01-18
-3002817 Le Pin Le Pin Le Pin 45.45582 5.50497 P PPL FR B9 38 382 38305 1202 525 Europe/Paris 2012-01-18
-3002836 Le Pian-Médoc Le Pian-Medoc Le Pian,Le Pian-Medoc,Le Pian-Médoc,Le Pian-en-Medoc,Le Pian-en-Médoc 44.95537 -0.66227 P PPL FR 97 33 332 33322 5897 23 Europe/Paris 2012-01-18
-3002880 Le Petit-Quevilly Le Petit-Quevilly Le Petit-Quevilly,Petit-Quevilly,Quevilly le Petit 49.41338 1.06155 P PPL FR A7 76 763 76498 22691 29 Europe/Paris 2012-01-18
-3002918 Petit-Couronne Petit-Couronne La Fraternite,La Fraternité 49.38333 1.01667 P PPL FR A7 76 763 76497 8761 7 Europe/Paris 2007-11-20
-3002954 Le Pertre Le Pertre Ar Perzh,Le Pertre 48.03373 -1.03735 P PPL FR A2 35 351 35217 1374 165 Europe/Paris 2011-03-25
-3002961 Le Perrier Le Perrier Le Perrier 46.81932 -1.99306 P PPL FR B5 85 853 85172 1625 2 Europe/Paris 2012-01-18
-3002965 Le Perreux-sur-Marne Le Perreux-sur-Marne Perreux-Sur-Marne,le Perreux 48.85 2.5 P PPL FR A8 94 942 94058 32015 57 Europe/Paris 2011-11-02
-3002966 Le Perréon Le Perreon Le Perreon,Le Perréon 46.06312 4.60205 P PPL FR B9 69 692 69151 1085 299 Europe/Paris 2012-01-18
-3002967 Le Perray-en-Yvelines Le Perray-en-Yvelines Le Perray,Le Perray-en-Yvelines 48.69441 1.85643 P PPL FR A8 78 782 78486 6206 175 Europe/Paris 2012-01-18
-3002981 Le Pellerin Le Pellerin Le Pellerin,Pentellou,Pentelloù,Port-Brutus 47.19914 -1.75514 P PPL FR B5 44 442 44120 4147 21 Europe/Paris 2012-01-18
-3002984 Le Pecq Le Pecq Le Pecq,Le Pecq-sur-Seine,Pecq 48.89317 2.10371 P PPL FR A8 78 783 78481 16534 34 Europe/Paris 2012-01-18
-3002986 Le Pêchereau Le Pechereau Le Pechereau,Le Pêchereau 46.57677 1.54743 P PPL FR A3 36 362 36154 1906 122 Europe/Paris 2012-01-18
-3002988 Le Péage-de-Roussillon Le Peage-de-Roussillon Franc-Passage,Franc-Peage,Franc-Péage,Le Peage,Le Peage-de-Roussillon,Le Péage,Le Péage-de-Roussillon 45.3718 4.79791 P PPL FR B9 38 383 38298 6869 159 Europe/Paris 2012-01-18
-3003017 Le Passage Le Passage Le Passage,Passage,Passage d'Agen 44.20143 0.60275 P PPL FR 97 47 471 47201 9434 47 Europe/Paris 2012-01-18
-3003042 Le Pallet Le Pallet Ar Palez,Le Pallet 47.13809 -1.33476 P PPL FR B5 44 442 44117 2574 32 Europe/Paris 2012-01-18
-3003044 Le Palais-sur-Vienne Le Palais-sur-Vienne Le Palais,Le Palais-sur-Vienne,Lu Palaic,Lu Palaiç 45.8638 1.32207 P PPL FR B1 87 872 87113 5944 274 Europe/Paris 2012-01-18
-3003045 Le Palais Le Palais Le Palais,Porzh-Lae 47.34557 -3.15411 P PPL FR A2 56 561 56152 2645 19 Europe/Paris 2012-01-18
-3003064 Léon Leon Leon,Léon 43.87676 -1.30057 P PPL FR 97 40 401 40150 1573 15 Europe/Paris 2012-01-18
-3003067 Léognan Leognan Leognan,Léognan 44.73548 -0.59738 P PPL FR 97 33 332 33238 8890 40 Europe/Paris 2012-01-18
-3003074 Lentilly Lentilly Lentilly 45.81984 4.66352 P PPL FR B9 69 691 69112 5079 320 Europe/Paris 2012-01-18
-3003081 Lentigny Lentigny Lentigny 45.99596 3.98163 P PPL FR B9 42 422 42120 1388 374 Europe/Paris 2012-01-18
-3003087 Lent Lent Lent 46.12032 5.1937 P PPL FR B9 01 012 01211 1248 256 Europe/Paris 2012-01-18
-3003093 Lens Lens Lens,lans,ransu,Ланс,ランス 50.43302 2.82791 P PPLA3 FR B4 62 627 62498 38265 37 Europe/Paris 2011-11-02
-3003101 Le Nouvion-en-Thiérache Le Nouvion-en-Thierache Le Nouvion,Le Nouvion-en-Thierache,Le Nouvion-en-Thiérache,Le Nouvion-le-Franc 50.01625 3.78509 P PPL FR B6 02 025 02558 2951 177 Europe/Paris 2012-01-18
-3003127 Le Neubourg Le Neubourg Le Neubourg 49.15048 0.9102 P PPL FR A7 27 273 27428 3947 139 Europe/Paris 2012-01-18
-3003136 Lencloître Lencloitre Lencloitre,Lencloître 46.81622 0.32827 P PPL FR B7 86 861 86128 2397 75 Europe/Paris 2012-01-18
-3003148 Le Muy Le Muy Le Muy 43.47381 6.56452 P PPL FR B8 83 831 83086 8474 35 Europe/Paris 2012-01-18
-3003164 Lempdes-sur-Allagnon Lempdes-sur-Allagnon 45.38333 3.28333 P PPL FR 98 43 431 43120 1450 437 Europe/Paris 2007-11-20
-3003253 Mont-Dore Mont-Dore Le Mont-Dore,Les Bains-du-Mont-Dore,Les Bains-du-Montdor,Mont-Dore,Mont-Dore-les-Bains 45.56667 2.81667 P PPL FR 98 63 632 63236 1787 1218 Europe/Paris 2007-11-20
-3003297 Le Monêtier-les-Bains Le Monetier-les-Bains Le Monetier,Le Monetier-les-Bains,Le Monétier,Le Monêtier,Le Monêtier-les-Bains 44.97565 6.5067 P PPL FR B8 05 051 05079 1101 1488 Europe/Paris 2012-01-18
-3003306 Le Monastier-sur-Gazeille Le Monastier-sur-Gazeille Monastier,Mont-Breysse 44.93333 4 P PPL FR 98 43 432 43135 1835 935 Europe/Paris 2007-11-20
-3003308 Le Monastère Le Monastere Bourg-la-Briane,Le Monastere,Le Monastère 44.34165 2.57956 P PPL FR B3 12 122 12146 1900 532 Europe/Paris 2011-01-17
-3003316 Le Molay-Littry Le Molay-Littry La Molay,Le Molay,Le Molay-Littry,Littry 49.24265 -0.87238 P PPL FR 99 14 141 14370 2790 44 Europe/Paris 2011-01-20
-3003332 Le Minihic-sur-Rance Le Minihic-sur-Rance Le Minihic,Le Minihic-sur-Rance,Minic'hi-Poudour 48.57835 -2.00876 P PPL FR A2 35 354 35181 1303 29 Europe/Paris 2012-01-18
-3003341 Le Meux Le Meux Le Meux 49.36718 2.74374 P PPL FR B6 60 603 60402 1860 52 Europe/Paris 2012-01-18
-3003351 Le Mesnil-sur-Oger Le Mesnil-sur-Oger Le Mesnil,Le Mesnil-sur-Oger 48.94708 4.02263 P PPL FR A4 51 512 51367 1094 122 Europe/Paris 2012-01-18
-3003359 Le Mesnil-Saint-Denis Le Mesnil-Saint-Denis Le Mesnil-Saint-Denis 48.74485 1.95594 P PPL FR A8 78 782 78397 6915 174 Europe/Paris 2012-01-18
-3003375 Le Mesnil-le-Roi Le Mesnil-le-Roi Le Mesnil,Le Mesnil-le-Roi,Mesnil-Carrieres,Mesnil-Carrières 48.93825 2.12554 P PPL FR A8 78 783 78396 6515 60 Europe/Paris 2012-01-18
-3003391 Le Mesnil-Esnard Le Mesnil-Esnard Le Mesnil-Esnard,Mesnil-Esnard 49.41319 1.14521 P PPL FR A7 76 763 76429 6380 153 Europe/Paris 2012-01-18
-3003392 Le Mesnil-en-Vallée Le Mesnil-en-Vallee Le Mesnil,Le Mesnil-en-Vallee,Le Mesnil-en-Vallée 47.36551 -0.93485 P PPL FR B5 49 492 49204 1364 42 Europe/Paris 2012-01-18
-3003393 Le Mesnil-en-Thelle Le Mesnil-en-Thelle Le Mesnil,Le Mesnil-en-Thelle 49.1783 2.28573 P PPL FR B6 60 604 60398 2170 46 Europe/Paris 2012-01-18
-3003464 Le Ménil Le Menil Le Menil,Le Ménil,Menil-Thillot,Ménil-Thillot 47.90477 6.78209 P PPL FR B2 88 881 88302 1142 519 Europe/Paris 2012-01-18
-3003481 Le Mée-sur-Seine Le Mee-sur-Seine Le Mee,Le Mee-sur-Seine,Le Mée,Le Mée-sur-Seine 48.53157 2.62829 P PPL FR A8 77 772 77285 22058 71 Europe/Paris 2012-01-18
-3003490 Lembras Lembras Lembras 44.88431 0.52657 P PPL FR 97 24 241 24237 1309 57 Europe/Paris 2012-01-18
-3003495 Lemberg Lemberg Lemberg 49.00278 7.37976 P PPL FR B2 57 576 57390 1511 390 Europe/Paris 2012-01-18
-3003496 Lembach Lembach Lembach 49.00362 7.78986 P PPL FR C1 67 677 67263 1799 191 Europe/Paris 2012-01-18
-3003514 Le May-sur-Èvre Le May-sur-Evre Le May,Le May-sur-Evre,Le May-sur-Èvre,May-sur-Evre,May-sur-Èvre 47.13714 -0.89227 P PPL FR B5 49 492 49193 4125 99 Europe/Paris 2012-01-18
-3003517 Le Mayet-de-Montagne Le Mayet-de-Montagne Le Mayet-de-Montagne,Mayet-de-Montagne 46.07251 3.66651 P PPL FR 98 03 033 03165 1457 544 Europe/Paris 2012-01-18
-3003603 Le Mans Le Mans L'Unite-sur-Sarthe,L'Unité-sur-Sarthe,L'o Man,Le Mans,Le-Man,lei mang,Ле-Ман,Льо Ман,ル・マン,勒芒 48 0.2 P PPLA2 FR B5 72 723 72181 144515 61 Europe/Paris 2011-12-08
-3003604 Le Manoir Le Manoir Le Manoir 49.31355 1.20455 P PPL FR A7 27 271 27386 1051 13 Europe/Paris 2012-01-18
-3003610 Le Malzieu-Ville Le Malzieu-Ville Le Malzieu,Le Malzieu-Ville,Malzieu,Malzieu-Ville 44.85698 3.33302 P PPL FR A9 48 482 48090 1023 868 Europe/Paris 2012-01-18
-3003647 Le Lude Le Lude 47.64648 0.15664 P PPL FR B5 72 721 72176 4465 51 Europe/Paris 2007-07-04
-3003650 Le Luc Le Luc Le Luc 43.39318 6.31474 P PPL FR B8 83 831 83073 7953 166 Europe/Paris 2012-01-18
-3003653 Le Luart Le Luart Le Luart 48.07053 0.58564 P PPL FR B5 72 722 72172 1093 95 Europe/Paris 2012-01-18
-3003656 Le Louroux-Béconnais Le Louroux-Beconnais Le Louroux,Le Louroux-Beconnais,Le Louroux-Béconnais 47.52211 -0.88664 P PPL FR B5 49 491 49183 2225 76 Europe/Paris 2012-01-18
-3003661 Le Loroux-Bottereau Le Loroux-Bottereau Lavreer-Botorel,Le Loroux-Bottereau,Le Louroux-Bottereau 47.23763 -1.34952 P PPL FR B5 44 442 44084 5326 50 Europe/Paris 2012-01-18
-3003672 Le Longeron Le Longeron Le Longeron 47.01845 -1.05762 P PPL FR B5 49 492 49179 2004 121 Europe/Paris 2012-01-18
-3003713 Le Lavandou Le Lavandou 43.137 6.366 P PPL FR B8 83 832 83070 5902 0 10 Europe/Paris 2007-11-29
-3003726 Le Langon Le Langon Le Langon 46.4385 -0.94767 P PPL FR B5 85 851 85121 1090 9 Europe/Paris 2012-01-18
-3003730 Le Landreau Le Landreau Lannerell,Le Landreau 47.20512 -1.30452 P PPL FR B5 44 442 44079 2674 69 Europe/Paris 2012-01-18
-3003737 Le Kremlin-Bicêtre Le Kremlin-Bicetre Kremlin-Bicetre,Kremlin-Bicêtre,Le Kremlin-Bicetre,Le Kremlin-Bicêtre 48.81471 2.36073 P PPL FR A8 94 943 94043 27867 66 Europe/Paris 2012-01-18
-3003773 Le Houlme Le Houlme Le Houlme 49.50972 1.03537 P PPL FR A7 76 763 76366 4468 32 Europe/Paris 2012-01-18
-3003774 Le Houga Le Houga La Moule,Le Houga 43.77464 -0.17833 P PPL FR B3 32 322 32155 1200 149 Europe/Paris 2012-01-18
-3003777 Léhon Lehon Lehon,Léhon 48.44432 -2.04578 P PPL FR A2 22 221 22123 2708 42 Europe/Paris 2012-01-18
-3003796 Le Havre Le Havre Chabre,El Havre,Franciscopolis,Gavr,Grasville-Lheure,Havre,Havro,Hawr,Khavur,La Havro,Le Havre,Saint-Jean-sur-Mer,lei a fu er,lw hafr,Χάβρη,Гавр,Хавър,لو هافر,ル・アーヴル,勒阿弗尔 49.4938 0.10767 P PPLA3 FR A7 76 762 76351 185972 12 Europe/Paris 2011-11-02
-3003859 Le Haillan Le Haillan Le Haillan 44.87225 -0.67965 P PPL FR 97 33 332 33200 8880 31 Europe/Paris 2012-01-18
-3003874 Léguevin Leguevin Leguevin,Léguevin 43.60028 1.23236 P PPL FR B3 31 313 31291 6976 195 Europe/Paris 2011-01-09
-3003893 Le Gua Le Gua Le Gua 45.72614 -0.94468 P PPL FR B7 17 172 17185 1936 6 Europe/Paris 2012-01-18
-3003894 Le Gua Le Gua 45.01667 5.61667 P PPL FR B9 38 381 38187 1839 960 Europe/Paris 2007-11-17
-3003918 Le Grau-du-Roi Le Grau-du-Roi Grau-le-Peletier,La Grau du Roi,Le Grau-du-Roi 43.53881 4.13559 P PPL FR A9 30 302 30133 6368 3 Europe/Paris 2012-01-18
-3003952 Le Grand-Quevilly Le Grand-Quevilly Gran-Kevilli,Grand-Quevilly,Le Grand-Quevilly,Quevilly le Grand,Гран-Кевилли 49.40076 1.04582 P PPL FR A7 76 763 76322 26522 47 Europe/Paris 2012-01-18
-3003957 Le Grand-Pressigny Le Grand-Pressigny Le Grand,Le Grand-Pressigny 46.92017 0.8038 P PPL FR A3 37 373 37113 1080 64 Europe/Paris 2012-01-18
-3003986 Le Grand-Lucé Le Grand-Luce Grand-Luce,Le Grand-Luce,Le Grand-Lucé 47.86618 0.46919 P PPL FR B5 72 721 72143 2023 116 Europe/Paris 2012-01-18
-3003991 Le Grand-Lemps Le Grand-Lemps Le Grand-Lemps 45.39789 5.42215 P PPL FR B9 38 382 38182 2566 478 Europe/Paris 2012-01-18
-3004039 Le Grand-Bourg Le Grand-Bourg Grand Bourg,Le Grand-Bourg 46.16018 1.64466 P PPL FR B1 23 232 23095 1312 390 Europe/Paris 2012-01-18
-3004041 Le Grand-Bornand Le Grand-Bornand Grand Bornand,Le Grand-Bornand 45.94346 6.44111 P PPL FR B9 74 741 74136 2331 997 Europe/Paris 2012-01-18
-3004078 Gond-Pontouvre Gond-Pontouvre Le Gond 45.68333 0.16667 P PPL FR B7 16 161 16154 6218 68 Europe/Paris 2007-11-20
-3004114 Legé Lege Lege,Legé,Levieg 46.88484 -1.60127 P PPL FR B5 44 442 44081 3916 44 Europe/Paris 2012-01-18
-3004119 Le Gâvre Le Gavre Gavr,Le Gavre,Le Gâvre 47.52131 -1.74905 P PPL FR B5 44 441 44062 1026 31 Europe/Paris 2012-01-18
-3004130 Le Garric Le Garric Le Garric 44.00932 2.16431 P PPL FR B3 81 811 81101 1188 292 Europe/Paris 2012-01-18
-3004138 Le Fuilet Le Fuilet Le Fuilet,Le Fuillet 47.28345 -1.1131 P PPL FR B5 49 492 49145 1925 92 Europe/Paris 2012-01-18
-3004185 Le Fousseret Le Fousseret Le Fousseret 43.28205 1.06624 P PPL FR B3 31 311 31193 1640 306 Europe/Paris 2012-01-18
-3004213 Leforest Leforest Leforest 50.43866 3.0648 P PPL FR B4 62 627 62497 6843 28 Europe/Paris 2012-01-18
-3004222 Le Folgoët Le Folgoet Ar Folgoad,Le Folgoet,Le Folgoët 48.56359 -4.33641 P PPL FR A2 29 291 29055 3286 71 Europe/Paris 2012-01-18
-3004224 Le Fœil Le Foeil Ar Fouilh,Le Foeil 48.43333 -2.91667 P PPL FR A2 22 224 22059 1186 168 Europe/Paris 2007-11-20
-3004226 Le Fleix Le Fleix Le Fleix 44.86667 0.25 P PPL FR 97 24 241 24182 1480 19 Europe/Paris 2012-01-18
-3004238 Le Fief-Sauvin Le Fief-Sauvin Fief Sauvin,Le Fief-Sauvin 47.22143 -1.04214 P PPL FR B5 49 492 49137 1407 85 Europe/Paris 2012-01-18
-3004244 Leffrinckoucke Leffrinckoucke Leffrinckoucke,Leffrinkhoucke 51.03457 2.46452 P PPL FR B4 59 594 59340 5095 2 Europe/Paris 2012-01-18
-3004258 Le Fenouiller Le Fenouiller Le Fenouiller 46.71901 -1.90175 P PPL FR B5 85 853 85088 3430 8 Europe/Paris 2012-01-18
-3004294 Le Fauga Le Fauga Fauga,La Fauga,Le Fauga 43.39619 1.29571 P PPL FR B3 31 311 31181 1472 190 Europe/Paris 2012-01-18
-3004304 Le Faouët Le Faouet Ar Faoued,Le Faouet,Le Faouët 48.03299 -3.49048 P PPL FR A2 56 562 56057 3032 147 Europe/Paris 2007-11-13
-3004306 Le Faou Le Faou Ar Faou,Faou,Le Faou 48.29456 -4.17927 P PPL FR A2 29 292 29053 1703 12 Europe/Paris 2009-09-08
-3004314 Leers Leers Leers 50.68217 3.24429 P PPL FR B4 59 595 59339 9823 30 Europe/Paris 2012-01-18
-3004321 Le Drennec Le Drennec An Dreneg,Drennec,Le Drennec 48.53475 -4.37008 P PPL FR A2 29 291 29047 1614 58 Europe/Paris 2012-01-18
-3004326 Le Doulieu Le Doulieu Le Doulieu 50.68194 2.71741 P PPL FR B4 59 594 59180 1267 16 Europe/Paris 2012-01-18
-3004334 Le Dorat Le Dorat Le Dorat 46.21514 1.08152 P PPL FR B1 87 871 87059 2134 224 Europe/Paris 2012-01-18
-3004337 Le Donjon Le Donjon Le Donjon,Val-libre 46.35062 3.79506 P PPL FR 98 03 033 03103 1191 293 Europe/Paris 2012-01-18
-3004346 Lédignan Ledignan Ledignan,Lédignan 43.9869 4.10644 P PPL FR A9 30 301 30146 1090 158 Europe/Paris 2012-01-18
-3004350 Ledeuix Ledeuix Ledeuix 43.21667 -0.61667 P PPL FR 97 64 642 64328 1190 223 Europe/Paris 2012-01-18
-3004359 Lédenon Ledenon Ledenon,Lédenon 43.91349 4.51444 P PPL FR A9 30 302 30145 1225 121 Europe/Paris 2012-01-18
-3004381 Lectoure Lectoure Lectoure 43.93464 0.62107 P PPL FR B3 32 322 32208 4544 181 Europe/Paris 2012-01-18
-3004398 Le Crotoy Le Crotoy 50.216 1.625 P PPL FR B6 80 801 80228 2481 0 9 Europe/Paris 2007-11-29
-3004418 Le Croisic Le Croisic Ar Groazig,Le Croisic 47.29189 -2.5138 P PPL FR B5 44 443 44049 4593 10 Europe/Paris 2012-01-18
-3004427 Le Creusot Le Creusot Creusot,Le Creusot 46.80714 4.41632 P PPL FR A1 71 711 71153 25590 367 Europe/Paris 2012-01-18
-3004433 Le Crest Le Crest Le Crest 45.68687 3.12844 P PPL FR 98 63 632 63126 1178 582 Europe/Paris 2012-01-18
-3004434 Le Crès Le Cres Le Cres,Le Crès 43.64807 3.93976 P PPL FR A9 34 343 34090 7621 60 Europe/Paris 2012-01-18
-3004444 Lécousse Lecousse Eskuz,Lecousse,Lécousse 48.36458 -1.21289 P PPL FR A2 35 351 35150 3202 142 Europe/Paris 2012-01-18
-3004464 Le Coudray-Montceaux Le Coudray-Montceaux Coudray-Montceaux,Le Coudray-Montceaux 48.56376 2.50012 P PPL FR A8 91 912 91179 2956 71 Europe/Paris 2012-01-18
-3004471 Le Coudray Le Coudray Le Coudray 48.42115 1.50057 P PPL FR A3 28 281 28110 3045 141 Europe/Paris 2012-01-18
-3004492 Le Coteau Le Coteau Le Coteau 46.02706 4.0869 P PPL FR B9 42 422 42071 7571 279 Europe/Paris 2012-01-18
-3004513 Le Conquet Le Conquet Concue,Konk-Leon,Le Concue,Le Conque,Le Conquet 48.36053 -4.77086 P PPL FR A2 29 291 29040 2516 27 Europe/Paris 2007-07-29
-3004545 Lécluse Lecluse Lecluse,Lécluse 50.27671 3.04045 P PPL FR B4 59 593 59336 1622 43 Europe/Paris 2012-01-18
-3004608 Le Cheylas Le Cheylas Le Cheylas 45.37369 5.99376 P PPL FR B9 38 381 38100 2276 248 Europe/Paris 2012-01-18
-3004609 Le Cheylard Le Cheylard Le Cheylard 44.90623 4.42406 P PPL FR B9 07 073 07064 3774 440 Europe/Paris 2011-08-12
-3004630 Le Chesnay Le Chesnay Le Chesnay,Le Chesney 48.8222 2.12213 P PPL FR A8 78 784 78158 29154 122 Europe/Paris 2012-01-18
-3004698 Le Châtelet-en-Brie Le Chatelet-en-Brie Le Chatelet,Le Chatelet-en-Brie,Le Châtelet,Le Châtelet-en-Brie 48.50695 2.79163 P PPL FR A8 77 772 77100 4968 93 Europe/Paris 2012-01-18
-3004703 Le Châtelet Le Chatelet Le Chatelet,Le Châtelet,Librefeuille 46.64247 2.28229 P PPL FR A3 18 182 18059 1147 198 Europe/Paris 2012-01-18
-3004763 Le Champ-Saint-Père Le Champ-Saint-Pere Champ-Perdu,Le Champ,Le Champ-Saint-Pere,Le Champ-Saint-Père 46.50773 -1.34726 P PPL FR B5 85 853 85050 1404 31 Europe/Paris 2012-01-18
-3004764 Le Champ-près-Froges Le Champ-pres-Froges Le Champ,Le Champ-Pres Forges,Le Champ-Près Forges,Le Champ-pres-Froges,Le Champ-près-Froges 45.28105 5.93966 P PPL FR B9 38 381 38070 1242 364 Europe/Paris 2012-01-18
-3004774 Le Chambon-sur-Lignon Le Chambon-sur-Lignon Chambon-sur Lignon,Chambon-sur-Lignon,Le Chambon,Le Chambon-sur-Lignon,lh smbwn-syr-lynywn,לה שמבון-סיר-ליניון 45.06079 4.30314 P PPL FR 98 43 433 43051 2923 961 Europe/Paris 2012-01-18
-3004775 Le Chambon-Feugerolles Le Chambon-Feugerolles Le Chambon,Le Chambon-Feugerolles 45.39689 4.32592 P PPL FR B9 42 423 42044 13371 502 Europe/Paris 2012-01-18
-3004784 Le Chambon Le Chambon 44.86667 4.28333 P PPLA4 FR B9 07 073 07049 55 856 Europe/Paris 2011-07-31
-3004811 Le Cendre Le Cendre Le Cendre 45.72118 3.18839 P PPL FR 98 63 632 63069 5072 344 Europe/Paris 2012-01-18
-3004813 Le Cellier Le Cellier Keller,Le Cellier 47.31988 -1.34584 P PPL FR B5 44 444 44028 3596 62 Europe/Paris 2012-01-18
-3004814 Lecelles Lecelles Lecelles 50.46779 3.40096 P PPL FR B4 59 596 59335 2788 18 Europe/Paris 2012-01-18
-3004838 Le Castellet Le Castellet Le Castellet 43.20285 5.77642 P PPL FR B8 83 832 83035 4114 242 Europe/Paris 2012-01-18
-3004866 Le Cap d'Agde Le Cap d'Agde Kap D Agd,Le Cap D'Agde,Кап Д Агд 43.27796 3.51357 P PPL FR A9 34 341 34003 4600 3 Europe/Paris 2012-02-27
-3004870 Le Cannet-des-Maures Le Cannet-des-Maures Le Cannet,Le Cannet-des-Maures 43.39272 6.34165 P PPL FR B8 83 831 83031 3980 133 Europe/Paris 2012-01-18
-3004871 Le Cannet Le Cannet Cannet,Le Cannet,Lo Canet 43.57662 7.01912 P PPL FR B8 06 061 06030 43353 94 Europe/Paris 2011-11-02
-3004891 Le Cailar Le Cailar Le Cailar 43.67923 4.23576 P PPL FR A9 30 302 30059 2517 6 Europe/Paris 2012-01-18
-3004935 Le Bugue Le Bugue 44.91847 0.92714 P PPL FR 97 24 244 24067 2928 64 Europe/Paris 2008-11-05
-3004941 Le Brusquet Le Brusquet Le Brusquet 44.16143 6.31143 P PPL FR B8 04 043 04036 1003 780 Europe/Paris 2012-01-18
-3004963 Le Broc Le Broc Le Broc 43.80843 7.16928 P PPL FR B8 06 061 06025 1063 449 Europe/Paris 2012-01-18
-3004983 Le Breuil-sur-Couze Le Breuil-sur-Couze Le Breuil,Le Breuil-sur-Couze 45.46886 3.26344 P PPL FR 98 63 633 63052 1020 393 Europe/Paris 2012-01-18
-3005001 Le Breuil Le Breuil Le Breuil 46.80654 4.46953 P PPL FR A1 71 711 71059 3529 359 Europe/Paris 2012-01-18
-3005028 Le Breil-sur-Mérize Le Breil-sur-Merize Le Breil,Le Breil-sur-Merize,Le Breil-sur-Mérize 48.00755 0.47808 P PPL FR B5 72 722 72046 1181 110 Europe/Paris 2012-01-18
-3005066 Le Bouscat Le Bouscat Bouscat,Le Bouscat 44.866 -0.59411 P PPL FR 97 33 332 33069 24232 8 Europe/Paris 2012-01-18
-3005076 Le Bourgneuf-la-Forêt Le Bourgneuf-la-Foret Le Bourgneuf,Le Bourgneuf-la-Foret,Le Bourgneuf-la-Forêt 48.16325 -0.96963 P PPL FR B5 53 532 53039 1650 152 Europe/Paris 2012-01-18
-3005081 Le Bourget-du-Lac Le Bourget-du-Lac Le Bourget,Le Bourget-du-Lac,Monterminod 45.64756 5.86085 P PPL FR B9 73 732 73051 4263 240 Europe/Paris 2012-01-18
-3005082 Le Bourget Le Bourget Bourget,Le Bourget 48.93405 2.43584 P PPL FR A8 93 931 93013 12690 38 Europe/Paris 2012-01-18
-3005099 Le Boupère Le Boupere Le Boupere,Le Boupère 46.79595 -0.92654 P PPL FR B5 85 851 85031 2985 136 Europe/Paris 2012-01-18
-3005102 el Voló el Volo Le Boulou,el Volo,el Voló 42.52424 2.83336 P PPL FR A9 66 661 66024 4952 87 Europe/Paris 2011-11-02
-3005182 Le Bosc-Roger-en-Roumois Le Bosc-Roger-en-Roumois Bosc-Roger-en-Roumois,Boscroger,Le Bosc-Roger,Le Bosc-Roger-en-Roumois 49.28333 0.93333 P PPL FR A7 27 272 27090 3151 146 Europe/Paris 2012-01-18
-3005202 Le Bono Le Bono Ar Bonou,Ar Bonoù,Bono,Le Bono 47.64129 -2.94902 P PPL FR A2 56 561 56262 1994 22 Europe/Paris 2012-02-27
-3005218 Le Bois-Plage-en-Ré Le Bois-Plage-en-Re La Verite,La Vérité,Le Bois,Le Bois-Plage-en-Re,Le Bois-Plage-en-Ré 46.18659 -1.39267 P PPL FR B7 17 173 17051 2401 7 Europe/Paris 2012-01-18
-3005269 Le Blanc-Mesnil Le Blanc-Mesnil Le Blanc-Mesnil 48.93872 2.46138 P PPL FR A8 93 932 93007 48077 48 Europe/Paris 2012-01-18
-3005270 Le Blanc Le Blanc Blanc,Le Blanc 46.63333 1.06667 P PPLA3 FR A3 36 361 36018 7026 80 Europe/Paris 2011-11-02
-3005282 Le Bignon Le Bignon Bignon,Le Bignon 47.09722 -1.49167 P PPL FR B5 44 442 44014 2793 23 Europe/Paris 2012-01-18
-3005326 Le Beausset Le Beausset Le Beausset 43.19853 5.80156 P PPL FR B8 83 832 83016 8568 185 Europe/Paris 2012-01-18
-3005360 Le Barp Le Barp Le Barp 44.60833 -0.76948 P PPL FR 97 33 336 33029 4230 73 Europe/Paris 2012-01-18
-3005364 Le Barcarès Le Barcares Barcares-de-Saint-Laurent,Barcarès-de-Saint-Laurent,Le Barcares,Le Barcarès,el Barcares,el Barcarès 42.78805 3.03565 P PPL FR A9 66 662 66017 3831 3 Europe/Paris 2012-01-18
-3005397 Lay-Saint-Christophe Lay-Saint-Christophe Lay,Lay-Saint-Christophe 48.74867 6.19776 P PPL FR B2 54 543 54305 2681 202 Europe/Paris 2012-01-18
-3005401 Layrac Layrac Layrac 44.13449 0.66176 P PPL FR 97 47 471 47145 3400 68 Europe/Paris 2012-01-18
-3005417 Laxou Laxou Laxou 48.68315 6.148 P PPL FR B2 54 543 54304 16323 227 Europe/Paris 2012-01-18
-3005422 La Wantzenau La Wantzenau Wantzenau 48.65786 7.83068 P PPL FR C1 67 676 67519 5765 133 Europe/Paris 2007-07-05
-3005425 La Vraie-Croix La Vraie-Croix La Vraie-Croix,Langroez 47.68954 -2.54274 P PPL FR A2 56 563 56261 1138 105 Europe/Paris 2012-01-18
-3005429 Lavoux Lavoux Lavoux 46.59566 0.53012 P PPL FR B7 86 863 86124 1069 118 Europe/Paris 2012-01-18
-3005435 La Voulte-sur-Rhône La Voulte-sur-Rhone La Voulte,La Voulte-sur-Rhone,La Voulte-sur-Rhône 44.80072 4.7716 P PPL FR B9 07 072 07349 5108 139 Europe/Paris 2012-01-18
-3005450 Lavit Lavit Lavit 43.95674 0.9201 P PPL FR B3 82 821 82097 1668 221 Europe/Paris 2011-01-09
-3005524 La Ville-du-Bois La Ville-du-Bois La Ville-du-Bois 48.65521 2.26833 P PPL FR A8 91 913 91665 6224 95 Europe/Paris 2012-01-18
-3005527 La Villedieu-du-Clain La Villedieu-du-Clain La Villedieu,La Villedieu-du-Clain 46.45559 0.36917 P PPL FR B7 86 863 86290 1414 131 Europe/Paris 2012-01-18
-3005534 Lavilledieu Lavilledieu Lavilledieu 44.57456 4.4547 P PPL FR B9 07 071 07138 1525 225 Europe/Paris 2012-01-18
-3005540 La Ville-aux-Dames La Ville-aux-Dames La Ville,La Ville-aux-Dames,Les Sables 47.39551 0.76837 P PPL FR A3 37 372 37273 4925 52 Europe/Paris 2012-01-18
-3005541 La Ville-aux-Clercs La Ville-aux-Clercs La Ville,La Ville-Aux-Cleres,La Ville-Aux-Clères,La Ville-aux-Clercs,La Ville-aux-Clers 47.91835 1.08521 P PPL FR A3 41 412 41275 1237 145 Europe/Paris 2012-01-18
-3005630 La Vespière La Vespiere La Vespiere,La Vespière 49.01974 0.4125 P PPL FR 99 14 143 14740 1016 129 Europe/Paris 2012-01-18
-3005632 Lavérune Laverune Laverune,Lavérune 43.58639 3.80611 P PPL FR A9 34 343 34134 2760 40 Europe/Paris 2010-12-24
-3005639 La Verrière La Verriere La Verriere,La Verrière 48.752 1.94649 P PPL FR A8 78 782 78644 6427 173 Europe/Paris 2012-01-18
-3005640 La Verrie La Verrie La Verrie 46.96131 -0.99596 P PPL FR B5 85 852 85302 3613 160 Europe/Paris 2012-01-18
-3005651 La Verpillière La Verpilliere La Verpilliere,La Verpillière 45.63647 5.14151 P PPL FR B9 38 382 38537 6205 220 Europe/Paris 2012-01-18
-3005696 Laventie Laventie Laventie 50.62818 2.77076 P PPL FR B4 62 622 62491 4494 19 Europe/Paris 2012-01-18
-3005712 Lavelanet Lavelanet Lavelanet 42.93127 1.84656 P PPL FR B3 09 091 09160 7382 529 Europe/Paris 2012-01-18
-3005735 Lavaur Lavaur Lavaur 43.69847 1.81858 P PPL FR B3 81 812 81140 9320 148 Europe/Paris 2012-01-18
-3005736 La Vaupalière La Vaupaliere La Vaupaliere,La Vaupalière 49.48789 0.9963 P PPL FR A7 76 763 76728 1045 131 Europe/Paris 2012-01-18
-3005737 Lavault-Sainte-Anne Lavault-Sainte-Anne Lavault,Lavault-Sainte-Anne,Le Vau-sur-Cher 46.31667 2.6 P PPL FR 98 03 031 03140 1200 239 Europe/Paris 2012-01-18
-3005763 La Varenne La Varenne La Varenne 47.31107 -1.31976 P PPL FR B5 49 492 49360 1451 62 Europe/Paris 2012-01-18
-3005769 Lavardac Lavardac Lavardac 44.17785 0.29825 P PPL FR 97 47 474 47143 2384 55 Europe/Paris 2012-01-18
-3005775 Lavans-lès-Saint-Claude Lavans-les-Saint-Claude Lavans,Lavans-les-Louvieres,Lavans-les-Louvières,Lavans-les-Saint-Claude,Lavans-lès-Saint-Claude 46.38484 5.78172 P PPL FR A6 39 393 39286 1990 530 Europe/Paris 2012-01-18
-3005792 Laval-Pradel Laval-Pradel Laval,Laval-Pradel,Le Pradel 44.20665 4.06591 P PPL FR A9 30 301 30142 1075 247 Europe/Paris 2012-01-18
-3005825 La Valette-du-Var La Valette-du-Var La Valette,La Valette-du-Var 43.13741 5.98314 P PPL FR B8 83 832 83144 23134 69 Europe/Paris 2012-01-18
-3005839 Lavalette Lavalette Lavalette 43.18428 2.26825 P PPL FR A9 11 111 11199 1153 187 Europe/Paris 2011-01-07
-3005866 Laval Laval Laval',Лаваль 48.06667 -0.76667 P PPLA2 FR B5 53 532 53130 50489 48 Europe/Paris 2011-11-02
-3005915 Lauzerte Lauzerte Lauzerte 44.25535 1.13817 P PPL FR B3 82 821 82094 1592 184 Europe/Paris 2012-01-18
-3005932 Lauwin-Planque Lauwin-Planque Lauwin,Lauwin-Planque 50.39024 3.0451 P PPL FR B4 59 593 59334 1944 26 Europe/Paris 2012-01-18
-3005943 Lautrec Lautrec Lautrec 43.70591 2.13925 P PPL FR B3 81 812 81139 1640 296 Europe/Paris 2012-01-18
-3005949 Lautenbachzell Lautenbachzell 47.94124 7.14643 P PPL FR C1 68 683 68178 1017 427 Europe/Paris 2007-07-07
-3005950 Lautenbach Lautenbach 47.94055 7.15768 P PPL FR C1 68 683 68177 1653 395 Europe/Paris 2007-07-07
-3005956 Laussonne Laussonne Laussonne 44.96941 4.05272 P PPL FR 98 43 432 43115 1042 933 Europe/Paris 2012-01-18
-3005966 Lauris Lauris Lauris,Lauris-sur-Durance 43.74799 5.31518 P PPL FR B8 84 841 84065 3313 200 Europe/Paris 2012-01-18
-3005979 Laurens Laurens Laurens 43.52238 3.19714 P PPL FR A9 34 341 34130 1048 146 Europe/Paris 2012-01-18
-3005983 Laure-Minervois Laure-Minervois Laure,Laure-Minervois 43.27106 2.52031 P PPL FR A9 11 111 11198 1172 87 Europe/Paris 2012-01-18
-3006035 Launaguet Launaguet Launaguet 43.67818 1.45603 P PPL FR B3 31 313 31282 5699 137 Europe/Paris 2011-01-09
-3006036 Launac Launac Launac 43.74357 1.18172 P PPL FR B3 31 313 31281 1163 180 Europe/Paris 2011-01-09
-3006056 Laudun-l'Ardoise Laudun-l'Ardoise Laudun 44.1 4.66667 P PPL FR A9 30 302 30141 5610 47 Europe/Paris 2010-01-18
-3006089 La Turbie La Turbie La Turbie 43.74514 7.40101 P PPL FR B8 06 062 06150 3188 285 487 Europe/Paris 2012-01-18
-3006090 La Turballe La Turballe An Turball,La Turballe 47.34686 -2.50734 P PPL FR B5 44 443 44211 4356 6 Europe/Paris 2012-01-18
-3006121 Lattes Lattes Lattes 43.56752 3.9046 P PPL FR A9 34 343 34129 17390 5 Europe/Paris 2012-01-18
-3006131 La Tronche La Tronche La Tronche 45.20429 5.73645 P PPL FR B9 38 381 38516 7125 227 Europe/Paris 2012-01-18
-3006137 La Trinité-sur-Mer La Trinite-sur-Mer An Drinded-Karnag,La Trinite,La Trinite-sur-Mer,La Trinité,La Trinité-sur-Mer,Trinite-sur-Mer,Trinité-sur-Mer 47.5868 -3.02994 P PPL FR A2 56 561 56258 1641 11 Europe/Paris 2012-01-18
-3006152 La Trinité La Trinite La Trinite,La Trinite-Victor,La Trinité,La Trinité-Victor 43.74149 7.31353 P PPL FR B8 06 062 06149 10128 74 Europe/Paris 2012-01-18
-3006161 Latresne Latresne Latresne 44.78601 -0.48994 P PPL FR 97 33 332 33234 3571 31 Europe/Paris 2012-01-18
-3006170 La Tremblade La Tremblade La Tremblade,Reunion-sur-Seudre,Réunion-sur-Seudre 45.76806 -1.14266 P PPL FR B7 17 172 17452 4970 6 Europe/Paris 2012-01-18
-3006183 La Tranche-sur-Mer La Tranche-sur-Mer La Tranche 46.343 -1.437 P PPL FR B5 85 853 85294 2671 0 7 Europe/Paris 2007-11-29
-3006188 La Tour-sur-Orb La Tour-sur-Orb La Tour,La Tour-sur-Orb 43.65186 3.15071 P PPL FR A9 34 341 34312 1194 221 Europe/Paris 2012-01-18
-3006196 La Tourlandry La Tourlandry La Tourlandry 47.14376 -0.69688 P PPL FR B5 49 492 49351 1278 186 Europe/Paris 2012-01-18
-3006200 La Tour-en-Jarez La Tour-en-Jarez La Tour,La Tour-en-Jarez 45.48523 4.38759 P PPL FR B9 42 423 42311 1187 534 Europe/Paris 2012-01-18
-3006202 La Tour-du-Pin La Tour-du-Pin La Tour,La Tour de Pin,La Tour-du-Pin,Tour-du-Pin,Val-du-Pin 45.56667 5.45 P PPLA3 FR B9 38 382 38509 7248 322 Europe/Paris 2011-12-08
-3006205 La Tour-du-Crieu La Tour-du-Crieu La Tour,La Tour-du-Crieu 43.10471 1.65275 P PPL FR B3 09 092 09312 2213 314 Europe/Paris 2012-01-18
-3006207 La Tour-de-Salvagny La Tour-de-Salvagny La Tour,La Tour-de-Salvagny,Salvagny 45.81233 4.71626 P PPL FR B9 69 691 69250 3625 347 Europe/Paris 2012-01-18
-3006215 Latour-Bas-Elne Latour-Bas-Elne Latour,Latour-Bas-Elne,Tour-bas-Elne 42.60646 3.00201 P PPL FR A9 66 662 66094 1973 10 Europe/Paris 2012-01-18
-3006219 La Tour La Tour La Tour 46.13448 6.42933 P PPL FR B9 74 742 74284 1215 630 Europe/Paris 2012-01-18
-3006262 Latillé Latille Latille,Latillé 46.61818 0.0763 P PPL FR B7 86 863 86121 1452 150 Europe/Paris 2012-01-18
-3006265 Lathus-Saint-Rémy Lathus-Saint-Remy Lathus 46.33333 0.96667 P PPL FR B7 86 862 86120 1358 176 Europe/Paris 2011-11-21
-3006283 La Teste-de-Buch La Teste-de-Buch La Testa,La Teste,La Teste-de-Buch,La Tèsta,La-Test-de-Bukha,Ла-Тест-де-Буха 44.62875 -1.14059 P PPL FR 97 33 336 33529 27253 5 Europe/Paris 2012-01-18
-3006285 La Tessoualle La Tessoualle La Tessoualle 47.00476 -0.85119 P PPL FR B5 49 492 49343 3128 122 Europe/Paris 2012-01-18
-3006293 La Terrasse La Terrasse La Terrasse 45.32634 5.93277 P PPL FR B9 38 381 38503 2159 264 Europe/Paris 2012-01-18
-3006313 La Tardière La Tardiere La Tardiere,La Tardière 46.66096 -0.73143 P PPL FR B5 85 851 85289 1192 154 Europe/Paris 2012-01-18
-3006320 La Talaudière La Talaudiere La Talaudiere,La Talaudière 45.48094 4.43173 P PPL FR B9 42 423 42305 6791 507 Europe/Paris 2012-01-18
-3006330 La Suze-sur-Sarthe La Suze-sur-Sarthe La Suze,La Suze-sur-Sarthe 47.88753 0.02519 P PPL FR B5 72 721 72346 3767 47 Europe/Paris 2012-01-18
-3006349 Lassy Lassy Lassy,Lazig 47.97829 -1.8719 P PPL FR A2 35 352 35149 1297 85 Europe/Paris 2012-01-18
-3006358 Lassigny Lassigny Lassigny 49.58828 2.84289 P PPL FR B6 60 603 60350 1317 65 Europe/Paris 2012-01-18
-3006363 Lasseube Lasseube Lasseube 43.23333 -0.48333 P PPL FR 97 64 642 64324 1635 186 Europe/Paris 2012-01-18
-3006380 Lassay-les-Châteaux Lassay-les-Chateaux 48.43835 -0.49758 P PPL FR B5 53 533 53127 2650 197 Europe/Paris 2007-11-20
-3006387 La Souterraine La Souterraine La Souterraine 46.23714 1.48701 P PPL FR B1 23 232 23176 5311 378 Europe/Paris 2012-01-18
-3006414 La Seyne-sur-Mer La Seyne-sur-Mer La Seyne,La Seyne-sur-Mer 43.09818 5.88472 P PPL FR B8 83 832 83126 62330 8 Europe/Paris 2012-01-18
-3006430 La Sentinelle La Sentinelle La Sentinelle 50.35115 3.48425 P PPL FR B4 59 596 59564 3238 51 Europe/Paris 2012-01-18
-3006439 La Selle-la-Forge La Selle-la-Forge La Selle,La Selle-la-Forge 48.73295 -0.54103 P PPL FR 99 61 612 61466 1320 214 Europe/Paris 2012-01-18
-3006454 La Séguinière La Seguiniere La Seguiniere,La Séguinière 47.06357 -0.93857 P PPL FR B5 49 492 49332 3744 80 Europe/Paris 2012-01-18
-3006458 La Séauve-sur-Semène La Seauve-sur-Semene La Seauve,La Seauve-sur-Semene,La Séauve,La Séauve-sur-Semène,Mont-Franc,Seauve-sur-Semene,Séauve-sur-Semène 45.29702 4.25318 P PPL FR 98 43 433 43236 1153 777 Europe/Paris 2012-01-18
-3006497 La Sauve La Sauve La Sauve-Majeure 44.76667 -0.31667 P PPL FR 97 33 332 33505 1464 98 Europe/Paris 2007-11-20
-3006502 La Saussaye La Saussaye La Saussaye 49.25936 0.98094 P PPL FR A7 27 272 27616 2058 132 Europe/Paris 2012-01-18
-3006524 La Salvetat-Peyralès La Salvetat-Peyrales La Salvetat,La Salvetat-Payrales,La Salvetat-Payralès,La Salvetat-Peyrales,La Salvetat-Peyralès 44.2194 2.20297 P PPL FR B3 12 122 12258 1109 531 Europe/Paris 2012-01-18
-3006530 La Salvetat-sur-Agout La Salvetat-sur-Agout La Salvetat,Salvetat-sur-Agout 43.6 2.71667 P PPL FR A9 34 341 34293 1270 784 Europe/Paris 2007-11-20
-3006531 La Salvetat-Saint-Gilles La Salvetat-Saint-Gilles La Salvetat 43.57622 1.27192 P PPL FR B3 31 313 31526 6289 191 Europe/Paris 2007-11-20
-3006534 La Salle-et-Chapelle-Aubry La Salle-et-Chapelle-Aubry La Salle,La Salle-et-Chapelle-Aubry 47.25013 -0.97512 P PPL FR B5 49 492 49324 1091 111 Europe/Paris 2012-01-18
-3006543 Lasalle Lasalle Lasalle 44.0453 3.85477 P PPL FR A9 30 303 30140 1115 284 Europe/Paris 2012-01-18
-3006570 Laruscade Laruscade Laruscade 45.11667 -0.33333 P PPL FR 97 33 331 33233 1852 53 Europe/Paris 2012-01-18
-3006572 Laruns Laruns Laruentze,Laruns,Laruntz,Larüntze 42.98826 -0.42658 P PPL FR 97 64 642 64320 1546 528 Europe/Paris 2008-08-28
-3006617 Larringes Larringes Larringes 46.36737 6.57318 P PPL FR B9 74 744 74146 1077 796 Europe/Paris 2012-01-18
-3006627 Larressore Larressore Larresoro,Larressore 43.36792 -1.43976 P PPL FR 97 64 641 64317 1426 72 Europe/Paris 2012-01-18
-3006690 La Roquette-sur-Siagne La Roquette-sur-Siagne La Roquette,La Roquette-sur-Siagne 43.59948 6.95705 P PPL FR B8 06 061 06108 4636 155 Europe/Paris 2012-01-18
-3006693 Laroque-Timbaut Laroque-Timbaut Laroque,Laroque-Timbaut 44.28238 0.76274 P PPL FR 97 47 471 47138 1405 211 Europe/Paris 2012-01-18
-3006701 la Roca d'Albera la Roca d'Albera Laroque-des-Alberes,Laroque-des-Albères,la Roca d'Albera 42.5213 2.93374 P PPL FR A9 66 661 66093 2086 110 Europe/Paris 2011-11-02
-3006704 La Roquebrussanne La Roquebrussanne La Roquebrussanne,Roquebrussanne,Roquelibre 43.33989 5.97618 P PPL FR B8 83 833 83108 2041 370 Europe/Paris 2012-01-18
-3006705 Laroquebrou Laroquebrou Laroquebrou 44.96728 2.19393 P PPL FR 98 15 151 15094 1091 466 Europe/Paris 2012-01-18
-3006711 Laroque Laroque Laroque 43.9232 3.72397 P PPL FR A9 34 342 34128 1265 148 Europe/Paris 2012-01-18
-3006739 La Romagne La Romagne La Romagne 47.06119 -1.02 P PPL FR B5 49 492 49260 1652 97 Europe/Paris 2012-01-18
-3006751 La Roche-Vineuse La Roche-Vineuse La Roche-Vineuse,La Vineuse,Roche-Vineuse 46.34524 4.72023 P PPL FR A1 71 715 71371 1392 230 Europe/Paris 2012-01-18
-3006755 La Rochette La Rochette La Rochette 48.50882 2.66357 P PPL FR A8 77 772 77389 3067 77 Europe/Paris 2012-01-18
-3006758 La Rochette La Rochette La Rochette 45.46025 6.12065 P PPL FR B9 73 732 73215 3405 346 Europe/Paris 2012-01-18
-3006767 La Roche-sur-Yon La Roche-sur-Yon La Roche-sur-Yon,La-Rosh-sjur-Jon,Les Fromages,Les Mineraux,Les Minéraux,Roche-sur-Yon,Ла-Рош-сюр-Йон,ラ・ロッシュ=シュル=ヨン 46.66667 -1.43333 P PPLA2 FR B5 85 852 85191 59410 65 Europe/Paris 2011-11-02
-3006770 La Roche-sur-Foron La Roche-sur-Foron La Roche,La Roche-sur-Foron 46.0666 6.31224 P PPL FR B9 74 742 74224 10026 553 Europe/Paris 2012-01-18
-3006771 Laroche-Saint-Cydroine Laroche-Saint-Cydroine La Roche-sur-Yonne,Laroche,Laroche-Saint-Cydroine 47.96801 3.48467 P PPL FR A1 89 891 89218 1429 93 Europe/Paris 2012-01-18
-3006775 La Roche-Posay La Roche-Posay La Roche-Posay 46.78654 0.81354 P PPL FR B7 86 861 86207 1553 73 Europe/Paris 2012-01-18
-3006780 La Roche-Maurice La Roche-Maurice Ar Roc'h-Morvan,La Roche,La Roche-Maurice,Roche-Maurice 48.47455 -4.20211 P PPL FR A2 29 291 29237 1791 21 Europe/Paris 2012-01-18
-3006787 La Rochelle La Rochelle Arroxela,La Cote,La Côte,La Rochelle,La Roshel,La-Roshel',Proclamation,lh rwsl,Ла Рошел,Ла-Рошель,לה רושל,ラ・ロシェル 46.16667 -1.15 P PPLA2 FR B7 17 173 17300 76810 12 Europe/Paris 2011-11-02
-3006793 La Rochefoucauld La Rochefoucauld La Roche-Tardoire,La Rochefoucauld 45.74048 0.38564 P PPL FR B7 16 161 16281 3426 83 Europe/Paris 2012-01-18
-3006795 La Roche-des-Arnauds La Roche-des-Arnauds La Roche,La Roche-des-Arnauds 44.56134 5.95519 P PPL FR B8 05 052 05123 1025 935 Europe/Paris 2012-01-18
-3006796 La Roche-Derrien La Roche-Derrien Ar Roc'h-Derrien,La Roche-Derrien 48.74626 -3.26142 P PPL FR A2 22 223 22264 1063 26 Europe/Paris 2012-01-18
-3006798 La Roche-de-Glun La Roche-de-Glun La Roche,La Roche-de-Glun 45.01336 4.84488 P PPL FR B9 26 263 26271 2956 120 Europe/Paris 2011-07-14
-3006801 La Roche-Chalais La Roche-Chalais Lonchement 45.15 0.01667 P PPL FR 97 24 243 24354 2780 63 Europe/Paris 2006-04-30
-3006806 La Roche-Blanche La Roche-Blanche La Roche,La Roche-Blanche 45.70064 3.12648 P PPL FR 98 63 632 63302 3051 469 Europe/Paris 2012-01-18
-3006876 Larmor-Plage Larmor-Plage An Arvor,Larmor,Larmor-Plage 47.70646 -3.38339 P PPL FR A2 56 561 56107 9151 0 12 Europe/Paris 2007-11-29
-3006877 Larmor-Baden Larmor-Baden An Arvor-Baden,Larmor,Larmor-Baden 47.58341 -2.8944 P PPL FR A2 56 563 56106 1023 10 Europe/Paris 2012-01-18
-3006885 La Rivière-Saint-Sauveur La Riviere-Saint-Sauveur La Riviere,La Riviere-Saint-Sauveur,La Rivière,La Rivière-Saint-Sauveur 49.40821 0.2703 P PPL FR 99 14 143 14536 1664 4 Europe/Paris 2012-01-18
-3006889 La Rivière-de-Corps La Riviere-de-Corps La Riviere,La Riviere-de-Corps,La Rivière,La Rivière-de-Corps 48.2884 4.01947 P PPL FR A4 10 103 10321 3140 113 Europe/Paris 2012-01-18
-3006928 La Riche La Riche La Riche,La Riche-Extra 47.38996 0.67072 P PPL FR A3 37 372 37195 8934 51 Europe/Paris 2012-01-18
-3006929 La Richardais La Richardais Kerricharzh-an-Arvor,La Richardais 48.60641 -2.03638 P PPL FR A2 35 354 35241 2207 30 Europe/Paris 2012-01-18
-3006930 La Ricamarie La Ricamarie La Ricamarie,La Ricamene,La Ricamerie,Ricamarie 45.41684 4.31199 P PPL FR B9 42 423 42183 7997 566 Europe/Paris 2012-01-18
-3006958 Largentière Largentiere L'Argentiera,L'Argentièra,Largentiere,Largentière 44.53333 4.3 P PPLA3 FR B9 07 071 07132 2126 278 Europe/Paris 2010-04-02
-3006979 La Réole La Reole La Reole,La Réole 44.58201 -0.03691 P PPL FR 97 33 333 33352 4651 34 Europe/Paris 2012-01-18
-3006995 La Remuée La Remuee La Fraternite,La Fraternité,La Remuee,La Remuée 49.52773 0.40283 P PPL FR A7 76 762 76522 1207 127 Europe/Paris 2012-01-18
-3006999 La Remaudière La Remaudiere Kerravaot,La Remaudiere,La Remaudière 47.23762 -1.24358 P PPL FR B5 44 442 44141 1068 78 Europe/Paris 2012-01-18
-3007004 La Regrippière La Regrippiere La Regrippiere,La Regrippière,Skouvlant 47.18167 -1.1762 P PPL FR B5 44 442 44140 1167 76 Europe/Paris 2012-01-18
-3007017 Lardy Lardy Lardy 48.51847 2.2736 P PPL FR A8 91 911 91330 4629 70 Europe/Paris 2012-01-18
-3007037 Larche Larche Larche 45.12291 1.41418 P PPL FR B1 19 191 19107 1468 98 Europe/Paris 2012-01-18
-3007044 Larchamp Larchamp Larchamp 48.36131 -0.999 P PPL FR B5 53 533 53126 1068 203 Europe/Paris 2012-01-18
-3007048 Larçay Larcay Larcay,Larçay 47.36649 0.78145 P PPL FR A3 37 372 37124 2135 82 Europe/Paris 2012-01-18
-3007064 La Ravoire La Ravoire La Ravoire 45.55978 5.96871 P PPL FR B9 73 732 73213 6768 291 Europe/Paris 2012-01-18
-3007076 Larajasse Larajasse Larajasse 45.61252 4.50028 P PPL FR B9 69 691 69110 1572 689 Europe/Paris 2012-01-18
-3007082 Laragne-Montéglin Laragne-Monteglin 44.31667 5.81667 P PPL FR B8 05 052 05070 3556 577 Europe/Paris 2007-11-20
-3007101 La Queue-les-Yvelines La Queue-les-Yvelines La Queue,La Queue-lez-Yvelines 48.8 1.76667 P PPL FR A8 78 782 78513 1939 146 Europe/Paris 2007-11-14
-3007102 La Queue-en-Brie La Queue-en-Brie La Queue,La Queue-en-Brie,La Queue-le-Peletier 48.7852 2.58112 P PPL FR A8 94 942 94060 11826 90 Europe/Paris 2012-01-18
-3007116 Lapugnoy Lapugnoy Lapugnoy 50.51635 2.5346 P PPL FR B4 62 622 62489 3384 41 Europe/Paris 2012-01-18
-3007118 Lapte Lapte Lapte 45.18562 4.21705 P PPL FR 98 43 433 43114 1330 865 Europe/Paris 2012-01-18
-3007160 Lapoutroie Lapoutroie La Poutroye,Lapoutroie,Schnierlach 48.15323 7.16696 P PPL FR C1 68 685 68175 2221 430 Europe/Paris 2012-01-18
-3007174 La Pouëze La Poueze La Poueze,La Pouëze 47.55357 -0.80928 P PPL FR B5 49 494 49249 1499 68 Europe/Paris 2012-01-18
-3007195 La Possonnière La Possonniere La Possonniere,La Possonnière 47.37485 -0.68538 P PPL FR B5 49 491 49247 2252 37 Europe/Paris 2012-01-18
-3007213 La Pommeraye La Pommeraye La Pommeraye 47.35562 -0.85892 P PPL FR B5 49 492 49244 3982 77 Europe/Paris 2012-01-18
-3007215 La Pommeraie-sur-Sèvre La Pommeraie-sur-Sevre La Pommeraie,La Pommeraie-sur-Sevre,La Pommeraie-sur-Sèvre 46.83536 -0.77785 P PPL FR B5 85 851 85180 1005 151 Europe/Paris 2012-01-18
-3007243 Laplume Laplume 44.11292 0.52975 P PPL FR 97 47 471 47137 1269 218 Europe/Paris 2008-05-12
-3007259 La Planche La Planche Ar Plank,La Planche 47.01619 -1.43159 P PPL FR B5 44 442 44127 2239 27 Europe/Paris 2012-01-18
-3007262 La Plaine-sur-Mer La Plaine-sur-Mer La Plaine,La Plaine-sur-Mer,Plaen-Raez 47.13619 -2.19182 P PPL FR B5 44 443 44126 2711 26 Europe/Paris 2012-01-18
-3007327 Lapeyrouse-Fossat Lapeyrouse-Fossat Lapeyrouse,Lapeyrouse-Fossat 43.69973 1.51049 P PPL FR B3 31 313 31273 2308 186 Europe/Paris 2012-01-18
-3007339 La Peyratte La Peyratte La Peyratte 46.67453 -0.14912 P PPL FR B7 79 793 79208 1187 151 Europe/Paris 2012-01-18
-3007401 La Penne-sur-Huveaune La Penne-sur-Huveaune La Penne,La Penne-sur-Huveaune 43.28208 5.51642 P PPL FR B8 13 133 13070 6253 79 Europe/Paris 2011-11-02
-3007451 Lapalud Lapalud Lapalud 44.30446 4.68953 P PPL FR B8 84 842 84064 3495 47 Europe/Paris 2012-01-18
-3007461 Lapalisse Lapalisse 46.24835 3.63605 P PPL FR 98 03 033 03138 3509 280 Europe/Paris 2009-06-24
-3007471 La Pacaudière La Pacaudiere La Pacaudiere,La Pacaudière 46.17544 3.87196 P PPL FR B9 42 422 42163 1199 338 Europe/Paris 2012-01-18
-3007477 Laon Laon Lana,Laon,ran,Лана,ラン 49.56667 3.61667 P PPLA2 FR B6 02 022 02408 28688 145 Europe/Paris 2011-11-02
-3007481 Lanvollon Lanvollon Lannolon,Lanvollon 48.63117 -2.98641 P PPL FR A2 22 224 22121 1474 95 Europe/Paris 2012-01-18
-3007488 Lanvéoc Lanveoc Lanveoc,Lanveog,Lanvéoc,Lañveog 48.28799 -4.46277 P PPL FR A2 29 292 29120 2282 57 Europe/Paris 2007-12-28
-3007489 Lanvénégen Lanvenegen Lannejenn,Lanvenegen,Lanvénégen 47.99811 -3.54134 P PPL FR A2 56 562 56105 1184 114 Europe/Paris 2012-01-18
-3007496 Lanvallay Lanvallay Lanvalae,Lanvallay 48.45543 -2.02803 P PPL FR A2 22 221 22118 3269 74 Europe/Paris 2012-01-18
-3007504 Lantriac Lantriac Lantriac 45.0005 4.00444 P PPL FR 98 43 432 43113 1680 737 Europe/Paris 2010-11-19
-3007506 Lantosque Lantosque Lantosque 43.97406 7.31166 P PPL FR B8 06 062 06074 1063 477 Europe/Paris 2012-01-18
-3007508 Lanton Lanton Lanton 44.70478 -1.03562 P PPL FR 97 33 336 33229 5765 5 Europe/Paris 2012-01-18
-3007516 Lantic Lantic Lannidig,Lantic 48.60641 -2.882 P PPL FR A2 22 224 22117 1167 65 Europe/Paris 2012-01-18
-3007535 Lanta Lanta Lanta 43.56667 1.66667 P PPL FR B3 31 313 31271 1373 208 Europe/Paris 2012-01-18
-3007539 Lans-en-Vercors Lans-en-Vercors Lans,Lans-en-Vercors 45.12793 5.58572 P PPL FR B9 38 381 38205 2365 1012 Europe/Paris 2012-01-18
-3007541 Lansargues Lansargues Lansargues 43.65157 4.07495 P PPL FR A9 34 343 34127 2629 10 Europe/Paris 2012-01-18
-3007552 Lanrodec Lanrodec Lanrodec,Lanrodeg 48.51622 -3.03122 P PPL FR A2 22 222 22116 1133 198 Europe/Paris 2012-01-18
-3007553 Lanrivoaré Lanrivoare Lanrivoare,Lanrivoaré 48.4731 -4.6387 P PPL FR A2 29 291 29119 1346 90 Europe/Paris 2011-11-10
-3007560 Lanquetot Lanquetot Lanquetot 49.58527 0.52637 P PPL FR A7 76 762 76382 1034 142 Europe/Paris 2012-01-18
-3007570 Lanouée Lanouee Lannoez,Lanouee,Lanouée 48.00224 -2.58157 P PPL FR A2 56 562 56102 1638 93 Europe/Paris 2012-01-18
-3007581 Lanouaille Lanouaille Lanouaille 45.39517 1.13968 P PPL FR 97 24 242 24227 1021 315 Europe/Paris 2012-01-18
-3007582 La Norville La Norville La Norville 48.58243 2.2618 P PPL FR A8 91 913 91457 4191 89 Europe/Paris 2012-01-18
-3007592 Lanobre Lanobre Lanobre 45.43333 2.53333 P PPL FR 98 15 152 15092 1443 626 Europe/Paris 2012-01-18
-3007601 Lannoy Lannoy Lannoy,Lannoy-du-Nord 50.66674 3.21012 P PPL FR B4 59 595 59332 1706 35 Europe/Paris 2012-01-18
-3007609 Lannion Lannion Lannion,Lannuon,lanywn,Ланнион,لانيون 48.73333 -3.46667 P PPLA3 FR A2 22 223 22113 21473 8 Europe/Paris 2011-11-02
-3007610 Lannilis Lannilis Lannilis,Lanniliz 48.57091 -4.52233 P PPL FR A2 29 291 29117 4686 43 Europe/Paris 2012-01-18
-3007622 Lannemezan Lannemezan 43.12517 0.38401 P PPL FR B3 65 652 65258 6606 594 Europe/Paris 2011-11-02
-3007637 Lanmeur Lanmeur 47.83333 -3.71667 P PPL FR A2 29 294 29236 2145 55 Europe/Paris 2012-02-27
-3007663 Languidic Languidic Langedig,Languidic 47.83266 -3.15821 P PPL FR A2 56 561 56101 7000 67 Europe/Paris 2012-01-18
-3007666 Langueux Langueux Langaeg,Langueux 48.495 -2.7185 P PPL FR A2 22 224 22106 6822 99 Europe/Paris 2012-01-18
-3007673 Langrune-sur-Mer Langrune-sur-Mer Langrune,Langrune-sur-Mer 49.32346 -0.37346 P PPL FR 99 14 142 14354 1688 8 Europe/Paris 2012-01-18
-3007680 Langres Langres Langres,לאנגר 47.86667 5.33333 P PPLA3 FR A4 52 522 52269 8638 471 Europe/Paris 2011-11-02
-3007687 Langonnet Langonnet Langoned,Langonnet 48.10511 -3.49356 P PPL FR A2 56 562 56100 2064 189 Europe/Paris 2012-01-18
-3007689 Langon Langon Landegon,Langon 47.72057 -1.8501 P PPL FR A2 35 352 35145 1411 22 Europe/Paris 2012-01-18
-3007691 Langon Langon 44.55 -0.25 P PPLA3 FR 97 33 333 33227 7102 22 Europe/Paris 2011-11-02
-3007693 Langoiran Langoiran Langoiran 44.70869 -0.39368 P PPL FR 97 33 333 33226 2168 62 Europe/Paris 2012-01-18
-3007694 Langogne Langogne 44.72726 3.85539 P PPL FR A9 48 482 48080 3490 919 Europe/Paris 2009-08-20
-3007696 Langoat Langoat Langoad,Langoat 48.75061 -3.28121 P PPL FR A2 22 223 22101 1119 32 Europe/Paris 2012-01-18
-3007715 Langlade Langlade Langlade 43.80284 4.25232 P PPL FR A9 30 302 30138 2015 109 Europe/Paris 2012-01-18
-3007729 Langeais Langeais Langeais 47.32587 0.40136 P PPL FR A3 37 371 37123 4034 44 Europe/Paris 2012-01-18
-3007730 Langeac Langeac Langeac 45.10331 3.4932 P PPL FR 98 43 431 43112 3997 505 Europe/Paris 2012-01-18
-3007780 Laneuveville-devant-Nancy Laneuveville-devant-Nancy Laneuveville,Laneuveville-devant-Nancy 48.65628 6.2317 P PPL FR B2 54 543 54300 5168 212 Europe/Paris 2012-01-18
-3007794 Lanester Lanester Lanester,Lannarster,Lannarstêr 47.76132 -3.33965 P PPL FR A2 56 561 56098 24352 25 Europe/Paris 2012-01-18
-3007803 Landunvez Landunvez Landunvez 48.53466 -4.72545 P PPL FR A2 29 291 29109 1442 25 Europe/Paris 2012-01-18
-3007806 Landudec Landudec Landudec,Landudeg 47.99983 -4.33641 P PPL FR A2 29 294 29108 1209 121 Europe/Paris 2012-01-18
-3007808 Landser Landser Landser 47.68387 7.394 P PPL FR C1 68 684 68174 1785 258 Europe/Paris 2012-01-18
-3007818 Landrévarzec Landrevarzec Landrevarzec,Landrevarzeg,Landrévarzec 48.09177 -4.06044 P PPL FR A2 29 294 29106 1567 97 Europe/Paris 2012-01-18
-3007825 Landres Landres Landres 49.32075 5.80578 P PPL FR B2 54 541 54295 1021 308 Europe/Paris 2012-01-18
-3007830 Landrecies Landrecies Landrecies 50.125 3.69171 P PPL FR B4 59 591 59331 4015 141 Europe/Paris 2012-01-18
-3007841 Landivy Landivy Landivy 48.47868 -1.0332 P PPL FR B5 53 533 53125 1344 193 Europe/Paris 2012-01-18
-3007842 Landivisiau Landivisiau Landivisiau,Landivizio 48.50784 -4.06833 P PPL FR A2 29 293 29105 8747 87 Europe/Paris 2012-01-18
-3007845 Landiras Landiras Landiras 44.56702 -0.41536 P PPL FR 97 33 333 33225 1642 42 Europe/Paris 2012-01-18
-3007858 Landévant Landevant Landevant,Landévant 47.765 -3.12221 P PPL FR A2 56 561 56097 2270 29 Europe/Paris 2012-01-18
-3007873 Landeronde Landeronde Bonne-Lande,Landeronde 46.65722 -1.56953 P PPL FR B5 85 853 85118 1946 56 Europe/Paris 2012-01-18
-3007874 Landerneau Landerneau Landerne,Landerneau 48.45252 -4.25252 P PPL FR A2 29 291 29103 16052 12 Europe/Paris 2012-01-18
-3007878 Landemont Landemont Landemont 47.26536 -1.23989 P PPL FR B5 49 492 49172 1568 90 Europe/Paris 2012-01-18
-3007882 Landeleau Landeleau Landeleau,Landelo 48.22734 -3.7285 P PPL FR A2 29 292 29102 1029 107 Europe/Paris 2012-01-18
-3007883 Landéhen Landehen Landehen,Landéhen 48.43022 -2.54 P PPL FR A2 22 224 22098 1028 84 Europe/Paris 2012-01-18
-3007885 Landéda Landeda Landeda,Landéda 48.58733 -4.571 P PPL FR A2 29 291 29101 3082 52 Europe/Paris 2012-01-18
-3007889 Landéan Landean Landean,Landéan 48.41253 -1.15245 P PPL FR A2 35 351 35142 1314 145 Europe/Paris 2012-01-18
-3007902 Landaul Landaul Landaol,Landaul 47.74785 -3.07694 P PPL FR A2 56 561 56096 1434 38 Europe/Paris 2012-01-18
-3007903 Landas Landas Landas 50.47269 3.30366 P PPL FR B4 59 593 59330 2308 31 Europe/Paris 2012-01-18
-3007909 Lancrans Lancrans Lancrans 46.12728 5.83277 P PPL FR B9 01 013 01205 1019 503 Europe/Paris 2012-01-18
-3007912 Lançon-Provence Lancon-Provence Lancon,Lancon-Provence,Lançon,Lançon-Provence 43.59237 5.13167 P PPL FR B8 13 131 13051 7031 92 Europe/Paris 2012-01-18
-3007919 Lancieux Lancieux Lancieux,Lanseeg 48.60767 -2.1503 P PPL FR A2 22 221 22094 1264 24 Europe/Paris 2012-01-18
-3007950 La Murette La Murette La Murette 45.38098 5.54028 P PPL FR B9 38 381 38270 1752 439 Europe/Paris 2012-01-18
-3007957 La Mure La Mure La Mjur,La Mure,La Mure-d'Isere,La Mure-d'Isère,Mure-la-Fontaine,Ла Мюр 44.90256 5.78659 P PPL FR B9 38 381 38269 5190 867 Europe/Paris 2012-01-18
-3007963 La Mulatière La Mulatiere La Mulatiere,La Mulatière 45.7259 4.80712 P PPL FR B9 69 691 69142 7185 238 Europe/Paris 2012-01-18
-3007970 Lampertheim Lampertheim Lampertheim 48.65171 7.69913 P PPL FR C1 67 676 67256 3126 149 Europe/Paris 2012-01-18
-3007972 Lampaul-Plouarzel Lampaul-Plouarzel Lambaol-Blouarzhel,Lampaul-Plouarzel 48.44727 -4.76045 P PPL FR A2 29 291 29098 2010 40 Europe/Paris 2008-07-06
-3007973 Lampaul-Guimiliau Lampaul-Guimiliau Lambaol-Gwimilio,Lampaul,Lampaul-Guimiliau 48.49156 -4.04144 P PPL FR A2 29 293 29097 2077 107 Europe/Paris 2012-01-18
-3007998 La Motte-Servolex La Motte-Servolex La Motte,La Motte-Servolen,La Motte-Servolex 45.59416 5.87575 P PPL FR B9 73 732 73179 13499 268 Europe/Paris 2012-01-18
-3007999 La Motte-Saint-Martin La Motte-Saint-Martin La Motte,La Motte-Saint-Martin,La Motte-sur-Eaux 44.95131 5.71814 P PPL FR B9 38 381 38266 1647 730 Europe/Paris 2012-01-18
-3008000 La Motte-Saint-Jean La Motte-Saint-Jean La Motte,La Motte-Saint-Jean,Montfleury 46.49594 3.96396 P PPL FR A1 71 713 71325 1203 299 Europe/Paris 2012-01-18
-3008020 Lamotte-Beuvron Lamotte-Beuvron Lamotte-Beuvron 47.602 2.02837 P PPL FR A3 41 413 41106 4426 115 Europe/Paris 2012-01-18
-3008037 La Motte La Motte La Motte 43.49142 6.53689 P PPL FR B8 83 831 83085 2555 61 Europe/Paris 2012-01-18
-3008040 La Mothe-Saint-Héray La Mothe-Saint-Heray La Mothe,La Mothe-Saint-Heray,La Mothe-Saint-Héray,La Mothe-Sainte-Heraye,La Mothe-Sainte-Héraye,La Mothe-sur-Sevre,La Mothe-sur-Sèvre 46.35934 -0.11236 P PPL FR B7 79 792 79184 1860 79 Europe/Paris 2012-01-18
-3008041 Lamothe-Montravel Lamothe-Montravel Lamothe,Lamothe-Montravel 44.85 0.03333 P PPL FR 97 24 241 24226 1301 10 Europe/Paris 2012-01-18
-3008052 La Mothe-Achard La Mothe-Achard La Mothe-Achard 46.61586 -1.65938 P PPL FR B5 85 853 85152 2257 37 Europe/Paris 2012-01-18
-3008074 Lamorlaye Lamorlaye Lamorlaye 49.16246 2.44687 P PPL FR B6 60 604 60346 8540 60 Europe/Paris 2012-01-18
-3008080 Lamonzie-Saint-Martin Lamonzie-Saint-Martin Lamonzie,Lamonzie-Saint-Martin 44.84713 0.39102 P PPL FR 97 24 241 24225 2187 27 Europe/Paris 2012-01-18
-3008096 La Montagne La Montagne Ar Menez,La Montagne 47.18652 -1.68272 P PPL FR B5 44 442 44101 6012 31 Europe/Paris 2012-01-18
-3008107 La Monnerie-le-Montel La Monnerie-le-Montel 45.86667 3.6 P PPL FR 98 63 635 63231 2124 607 Europe/Paris 2007-11-20
-3008133 La Milesse La Milesse La Milesse 48.06314 0.13428 P PPL FR B5 72 723 72198 2372 58 Europe/Paris 2012-01-18
-3008140 La Mézière La Meziere La Meziere,La Mézière,Magoer 48.21828 -1.75514 P PPL FR A2 35 353 35177 3808 103 Europe/Paris 2012-01-18
-3008166 La Ménitré La Menitre 47.4 -0.26667 P PPL FR B5 49 491 49201 2020 21 Europe/Paris 2006-04-30
-3008176 La Membrolle-sur-Longuenée La Membrolle-sur-Longuenee La Membrolle,La Membrolle-sur-Longuenee,La Membrolle-sur-Longuenée 47.55991 -0.67236 P PPL FR B5 49 491 49200 1548 55 Europe/Paris 2012-01-18
-3008177 La Membrolle-sur-Choisille La Membrolle-sur-Choisille La Membrolle,La Membrolle-sur-Choisille 47.43719 0.63163 P PPL FR A3 37 372 37151 3085 92 Europe/Paris 2012-01-18
-3008185 La Meilleraye-de-Bretagne La Meilleraye-de-Bretagne La Meilleraye,La Meilleraye-de-Bretagne,Melereg-Breizh 47.55941 -1.402 P PPL FR B5 44 441 44095 1113 87 Europe/Paris 2012-01-18
-3008186 La Meilleraie-Tillay La Meilleraie-Tillay La Meilleraie,La Meilleraie-Tillay 46.74059 -0.845 P PPL FR B5 85 851 85140 1613 124 Europe/Paris 2012-01-18
-3008189 La Meignanne La Meignanne La Meignanne 47.517 -0.66861 P PPL FR B5 49 491 49196 2147 35 Europe/Paris 2012-01-18
-3008192 La Méaugon La Meaugon La Meaugon,La Méaugon,Lanvealgon,Meaugon 48.49933 -2.8385 P PPL FR A2 22 224 22144 1173 117 Europe/Paris 2012-01-18
-3008193 La Meauffe La Meauffe La Meauffe 49.17643 -1.11119 P PPL FR 99 50 504 50297 1069 11 Europe/Paris 2012-01-18
-3008198 Lambres-lez-Douai Lambres-lez-Douai Lambres,Lambres-lez-Douai 50.35 3.06667 P PPL FR B4 59 593 59329 5057 28 Europe/Paris 2007-11-20
-3008208 Lambesc Lambesc Lambesc 43.65311 5.26282 P PPL FR B8 13 131 13050 8084 211 Europe/Paris 2012-01-18
-3008218 Lambersart Lambersart Lambersar,Lambersart,Ламберсар 50.65 3.03333 P PPL FR B4 59 595 59328 28613 24 Europe/Paris 2012-01-18
-3008225 Lamballe Lamballe Lambal,Lamballe 48.46762 -2.51436 P PPL FR A2 22 224 22093 12344 50 Europe/Paris 2012-01-18
-3008249 Lamastre Lamastre Lamastre 44.98672 4.57975 P PPL FR B9 07 073 07129 2670 374 Europe/Paris 2011-01-14
-3008274 Lamarque Lamarque Lamarque 45.09536 -0.71892 P PPL FR 97 33 334 33220 1104 9 Europe/Paris 2012-01-18
-3008300 Lamarche-sur-Saône Lamarche-sur-Saone Lamarche,Lamarche-sur-Saone,Lamarche-sur-Saône 47.26946 5.38589 P PPL FR A1 21 212 21337 1246 189 Europe/Paris 2012-01-18
-3008303 Lamarche Lamarche Lamarche 48.06967 5.78141 P PPL FR B2 88 882 88258 1171 359 Europe/Paris 2012-01-18
-3008308 Lamanon Lamanon Lamanon 43.7006 5.08857 P PPL FR B8 13 132 13049 1815 110 Europe/Paris 2012-01-18
-3008321 Lamalou-les-Bains Lamalou-les-Bains Lamalou,Lamalou-les-Bains 43.59786 3.08052 P PPL FR A9 34 341 34126 2453 190 Europe/Paris 2012-01-18
-3008353 La Mailleraye-sur-Seine La Mailleraye-sur-Seine La Mailleraye,La Mailleraye-sur-Seine,Mailleraye-sur-Seine 49.48308 0.7703 P PPL FR A7 76 763 76401 1916 19 Europe/Paris 2012-01-18
-3008362 Lamagistère Lamagistere Lamagistere,Lamagistère 44.12488 0.82486 P PPL FR B3 82 821 82089 1262 55 Europe/Paris 2012-01-18
-3008377 La Madeleine-de-Nonancourt La Madeleine-de-Nonancourt La Madeleine,La Madeleine-de Nonencourt,La Madeleine-de-Nonancourt 48.77298 1.20252 P PPL FR A7 27 273 27378 1170 144 Europe/Paris 2012-01-18
-3008379 La Madeleine La Madeleine La Madeleine,La Madeleine-les-Lille,Madeleine,Madlen,Мадлен 50.64603 3.07585 P PPL FR B4 59 595 59368 23572 29 Europe/Paris 2011-11-02
-3008391 La Machine La Machine La Machine 46.89226 3.46426 P PPL FR A1 58 583 58151 3637 249 Europe/Paris 2012-01-18
-3008418 La Loupe La Loupe La Loupe 48.4732 1.01584 P PPL FR A3 28 284 28214 3918 216 Europe/Paris 2012-01-18
-3008421 La Loubière La Loubiere La Loubiere,La Loubière 44.37143 2.66825 P PPL FR B3 12 122 12131 1235 559 Europe/Paris 2012-01-18
-3008423 Laloubère Laloubere Laloubere,Laloubère 43.2043 0.07296 P PPL FR B3 65 653 65251 1450 338 Europe/Paris 2011-11-02
-3008426 La Longueville La Longueville 50.28939 3.85672 P PPL FR B4 59 591 59357 2256 145 Europe/Paris 2009-01-18
-3008432 La Londe-les-Maures La Londe-les-Maures La Londe,La Londe-les-Maures 43.13714 6.23499 P PPL FR B8 83 832 83071 9471 23 Europe/Paris 2012-01-18
-3008463 Lallaing Lallaing Lallaing 50.39012 3.16949 P PPL FR B4 59 593 59327 6573 20 Europe/Paris 2012-01-18
-3008469 Lalinde Lalinde Lalinde 44.83621 0.73075 P PPL FR 97 24 241 24223 3152 44 Europe/Paris 2012-01-18
-3008470 La Limouzinière La Limouziniere Kerlouevig,La Limouziniere,La Limouzinière 46.99274 -1.59722 P PPL FR B5 44 442 44083 1518 24 Europe/Paris 2012-01-18
-3008502 Lalbenque Lalbenque Lalbenque 44.33929 1.54501 P PPL FR B3 46 461 46148 1142 277 Europe/Paris 2012-01-18
-3008532 La Lande-Patry La Lande-Patry La Lande,La Lande-Patry 48.76202 -0.59876 P PPL FR 99 61 612 61218 1804 207 Europe/Paris 2012-01-18
-3008539 La Lande-de-Fronsac La Lande-de-Fronsac La Lande,La Lande-de-Fronsac 44.98036 -0.38048 P PPL FR 97 33 335 33219 2036 43 Europe/Paris 2012-01-18
-3008571 La Jumellière La Jumelliere La Jumeliere,La Jumelière,La Jumelliere,La Jumellière 47.27976 -0.72952 P PPL FR B5 49 492 49169 1122 88 Europe/Paris 2012-01-18
-3008576 La Jubaudière La Jubaudiere La Jubaudiere,La Jubaudière 47.17202 -0.89215 P PPL FR B5 49 492 49165 1161 105 Europe/Paris 2012-01-18
-3008607 La Jarrie La Jarrie La Jarrie 46.12879 -1.00896 P PPL FR B7 17 173 17194 2855 37 Europe/Paris 2012-01-18
-3008611 La Jarne La Jarne La Jarne 46.12773 -1.07259 P PPL FR B7 17 173 17193 2206 9 Europe/Paris 2012-01-18
-3008628 Laiz Laiz Laiz 46.24758 4.89202 P PPL FR B9 01 012 01203 1090 181 Europe/Paris 2012-01-18
-3008636 Laissac Laissac Laissac 44.38085 2.82154 P PPL FR B3 12 122 12120 1543 596 Europe/Paris 2012-01-18
-3008662 Lailly-en-Val Lailly-en-Val Lailly,Lailly-en-Val 47.76962 1.68657 P PPL FR A3 45 452 45179 2392 86 Europe/Paris 2012-01-18
-3008665 Laillé Laille Laille,Laillé,Lalieg 47.97848 -1.71676 P PPL FR A2 35 352 35139 3879 103 Europe/Paris 2012-01-18
-3008680 Laigneville Laigneville Laigneville 49.29149 2.44581 P PPL FR B6 60 602 60342 3964 40 Europe/Paris 2012-01-18
-3008684 Laigné-en-Belin Laigne-en-Belin Laigne,Laigne-en-Belin,Laigné,Laigné-en-Belin 47.87706 0.22796 P PPL FR B5 72 723 72155 2043 65 Europe/Paris 2012-01-18
-3008705 La Houssaye-en-Brie La Houssaye-en-Brie La Houssaye,La Houssaye-en-Brie 48.75381 2.86552 P PPL FR A8 77 773 77229 1589 114 Europe/Paris 2012-01-18
-3008719 Lahonce Lahonce Lahonce,Lehuntze 43.48248 -1.39101 P PPL FR 97 64 641 64304 2046 68 Europe/Paris 2012-01-18
-3008753 La Haye-Pesnel La Haye-Pesnel La Haye-Libre,La Haye-Pesnel 48.79561 -1.39655 P PPL FR 99 50 501 50237 1379 98 Europe/Paris 2011-01-20
-3008754 La Haye-Malherbe La Haye-Malherbe La Haye-Malherbe 49.22553 1.06774 P PPL FR A7 27 271 27322 1520 139 Europe/Paris 2012-01-18
-3008758 La Haye-du-Puits La Haye-du-Puits La Haye-du-Puits 49.28973 -1.54324 P PPL FR 99 50 503 50236 1810 43 Europe/Paris 2012-01-18
-3008759 Descartes Descartes La Haye-Descartes 46.96667 0.7 P PPL FR A3 37 373 37115 3872 37 46 Europe/Paris 2007-09-04
-3008809 La Haie-Fouassière La Haie-Fouassiere An Hae-Foazer,La Haie-Fouassiere,La Haie-Fouassière 47.15492 -1.39794 P PPL FR B5 44 442 44070 4047 35 Europe/Paris 2012-01-18
-3008820 La Guyonnière La Guyonniere La Guyonniere,La Guyonnière 46.96476 -1.2506 P PPL FR B5 85 852 85107 2629 68 Europe/Paris 2012-01-18
-3008825 Laguiole Laguiole Laguiole 44.68464 2.84666 P PPL FR B3 12 122 12119 1317 1008 Europe/Paris 2012-01-18
-3008854 La Guérinière La Gueriniere La Gaudiniere,La Gueriniere,La Guérinière,la gueriniere 46.96667 -2.23333 P PPL FR B5 85 853 85106 1559 4 Europe/Paris 2012-01-18
-3008857 La Guerche-de-Bretagne La Guerche-de-Bretagne Gwerc'h-Breizh,La Guerche,La Guerche-de-Bretagne,Montagne-de-la-Guerche 47.94112 -1.22869 P PPL FR A2 35 351 35125 4552 75 Europe/Paris 2012-01-18
-3008861 Laguenne Laguenne Laguemie,Laguenne 45.24257 1.78096 P PPL FR B1 19 192 19101 1545 220 Europe/Paris 2012-01-18
-3008884 La Grigonnais La Grigonnais Kerrigon,La Grigonnais 47.52724 -1.66781 P PPL FR B5 44 441 44224 1314 55 Europe/Paris 2012-01-18
-3008914 Lagrave Lagrave Lagrave 43.89734 1.99268 P PPL FR B3 81 811 81131 1315 157 Europe/Paris 2012-01-18
-3008977 La Grande-Paroisse La Grande-Paroisse La Grande-Paroisse 48.38682 2.90157 P PPL FR A8 77 773 77210 2474 115 Europe/Paris 2012-01-18
-3008981 La Grande-Motte La Grande-Motte 43.56667 4.08333 P PPL FR A9 34 343 34344 7335 4 Europe/Paris 2007-11-20
-3009015 La Grand-Croix La Grand-Croix 45.5 4.55 P PPL FR B9 42 423 42103 5045 378 Europe/Paris 2007-11-20
-3009038 La Gouesnière La Gouesniere Gouenaer,La Gouesniere,La Gouesnière 48.60467 -1.894 P PPL FR A2 35 354 35122 1164 21 Europe/Paris 2012-01-18
-3009050 La Gorgue La Gorgue La Gorgue 50.6379 2.71502 P PPL FR B4 59 594 59268 5327 19 Europe/Paris 2012-01-18
-3009052 Lagord Lagord Lagord 46.18822 -1.15355 P PPL FR B7 17 173 17200 6987 21 Europe/Paris 2012-01-18
-3009054 Lagorce Lagorce Lagorce 45.06667 -0.13333 P PPL FR 97 33 335 33218 1418 8 Europe/Paris 2012-01-18
-3009057 Lagor Lagor Lagor 43.38333 -0.65 P PPL FR 97 64 643 64301 1355 114 Europe/Paris 2011-09-11
-3009069 Lagny-le-Sec Lagny-le-Sec Lagny 49.08744 2.74502 P PPL FR B6 60 604 60341 1882 107 Europe/Paris 2006-03-11
-3009071 Lagny-sur-Marne Lagny-sur-Marne 48.86667 2.71667 P PPL FR A8 77 775 77243 20649 108 Europe/Paris 2011-11-02
-3009073 Lagnieu Lagnieu Fontaine-d'Or,Lagnieu 45.90038 5.3466 P PPL FR B9 01 011 01202 6454 203 Europe/Paris 2012-01-18
-3009078 Lagnes Lagnes Lagnes 43.89324 5.11346 P PPL FR B8 84 842 84062 1591 111 Europe/Paris 2012-01-18
-3009086 La Glacerie La Glacerie La Glacerie 49.60517 -1.58185 P PPL FR 99 50 502 50203 5117 138 Europe/Paris 2012-01-18
-3009125 La Génétouze La Genetouze 46.73333 -1.51667 P PPL FR B5 85 852 85098 1465 66 Europe/Paris 2007-11-15
-3009150 La Gaude La Gaude La Gaude 43.72235 7.15083 P PPL FR B8 06 061 06065 6626 268 Europe/Paris 2012-01-18
-3009153 La Gaubretière La Gaubretiere La Gaubretiere,La Gaubretière 46.94144 -1.06215 P PPL FR B5 85 852 85097 2689 156 Europe/Paris 2012-01-18
-3009163 Lagarrigue Lagarrigue Lagarrigue 43.57765 2.27784 P PPL FR B3 81 812 81130 1749 208 Europe/Paris 2012-01-18
-3009168 La Garnache La Garnache La Garnache 46.89176 -1.83163 P PPL FR B5 85 853 85096 3826 33 Europe/Paris 2011-08-26
-3009169 La Garenne-Colombes La Garenne-Colombes La Garenne,La Garenne-Colombes 48.90472 2.2469 P PPL FR A8 92 922 92035 26385 42 Europe/Paris 2012-01-18
-3009188 Lagardelle-sur-Lèze Lagardelle-sur-Leze Lagardelle,Lagardelle-sur-Leze,Lagardelle-sur-Lèze 43.41143 1.3892 P PPL FR B3 31 311 31263 2447 191 Europe/Paris 2012-01-18
-3009193 La Garde-Freinet La Garde-Freinet Garde-Freinet,La Garde-Freinet 43.31709 6.46881 P PPL FR B8 83 831 83063 1777 351 Europe/Paris 2012-01-18
-3009196 La Garde-Adhémar La Garde-Adhemar La Garde-Adhemar,La Garde-Adhémar 44.39553 4.75776 P PPL FR B9 26 262 26138 1169 188 Europe/Paris 2012-01-18
-3009223 La Garde La Garde La Garde,La Garde-pres-Toulon,La Garde-près-Toulon 43.12277 6.00745 P PPL FR B8 83 832 83062 28257 23 Europe/Paris 2012-01-18
-3009239 La Gacilly La Gacilly Gazilieg,La Gacilly 47.76562 -2.1322 P PPL FR A2 56 563 56061 2453 17 Europe/Paris 2012-01-18
-3009256 La Frette-sur-Seine La Frette-sur-Seine La Frette,La Frette-sur-Seine 48.98057 2.17866 P PPL FR A8 95 951 95257 4649 56 Europe/Paris 2012-01-18
-3009266 La Fresnais La Fresnais An Onneg,La Fresnais 48.59478 -1.84186 P PPL FR A2 35 354 35116 2143 7 Europe/Paris 2012-01-18
-3009287 La Francheville La Francheville La Francheville 49.72923 4.71273 P PPL FR A4 08 081 08180 1587 161 Europe/Paris 2012-01-18
-3009289 Lafrançaise Lafrancaise Lafrancaise,Lafrançaise 44.12791 1.24141 P PPL FR B3 82 822 82087 2799 186 Europe/Paris 2012-01-18
-3009313 La Fouillouse La Fouillouse La Fouillouse 45.502 4.31213 P PPL FR B9 42 423 42097 4335 411 Europe/Paris 2012-01-18
-3009315 La Fouillade La Fouillade La Fouillade 44.23072 2.03989 P PPL FR B3 12 123 12105 1099 418 Europe/Paris 2012-01-18
-3009348 La Forêt-sur-Sèvre La Foret-sur-Sevre La Foret,La Foret-sur-Sevre,La Forêt,La Forêt-sur-Sèvre 46.76905 -0.64964 P PPL FR B7 79 791 79123 2333 160 Europe/Paris 2012-01-18
-3009352 La Forêt-Fouesnant La Foret-Fouesnant Ar Forest-Fouenant,La Foret,La Foret-Fouesnant,La Forêt,La Forêt-Fouesnant 47.9101 -3.97858 P PPL FR A2 29 294 29057 2955 7 Europe/Paris 2012-01-18
-3009390 La Forest-Landerneau La Forest-Landerneau Ar Forest-Landerne,La Forest,La Forest-Landerneau 48.42589 -4.31578 P PPL FR A2 29 291 29056 1686 38 Europe/Paris 2012-01-18
-3009395 La Force La Force La Force 44.86902 0.37541 P PPL FR 97 24 241 24222 2500 65 Europe/Paris 2012-01-18
-3009436 La Flotte La Flotte La Flotte 46.1877 -1.32815 P PPL FR B7 17 173 17161 2933 6 Europe/Paris 2012-01-18
-3009438 La Flocellière La Flocelliere La Flocelliere,La Flocellière 46.83202 -0.86215 P PPL FR B5 85 851 85090 2001 212 Europe/Paris 2012-01-18
-3009443 La Flèche La Fleche 47.69815 -0.07553 P PPLA3 FR B5 72 721 72154 18536 33 Europe/Paris 2011-11-02
-3009445 La Flamengrie La Flamengrie La Flamengrie 50.00175 3.92081 P PPL FR B6 02 025 02312 1107 203 Europe/Paris 2012-01-18
-3009467 La Feuillie La Feuillie La Feuillie 49.46415 1.51463 P PPL FR A7 76 761 76263 1124 178 Europe/Paris 2012-01-18
-3009481 La Ferté-sous-Jouarre La Ferte-sous-Jouarre Jouarre-la-Montagne,La Ferte,La Ferte-sous-Jouarre,La Ferte-sur-Marne,La Ferté,La Ferté-sous-Jouarre,La Ferté-sur-Marne 48.9514 3.12724 P PPL FR A8 77 771 77183 9443 72 Europe/Paris 2012-01-18
-3009484 La Ferté-Saint-Aubin La Ferte-Saint-Aubin La Ferte-Cosson,La Ferte-Saint-Aubin,La Ferté-Cosson,La Ferté-Saint-Aubin 47.71695 1.93904 P PPL FR A3 45 452 45146 7178 107 Europe/Paris 2012-01-18
-3009485 La Ferté-Milon La Ferte-Milon La Ferte-Milon,La Ferte-sur-Ourcq,La Ferté-Milon,La Ferté-sur-Ourcq,la ferte Milon,la ferté Milon 49.17454 3.12885 P PPL FR B6 02 021 02307 2359 98 Europe/Paris 2012-01-18
-3009486 La Ferté-Macé La Ferte-Mace 48.58999 -0.358 P PPL FR 99 61 611 61168 7372 222 Europe/Paris 2007-02-09
-3009488 La Ferté-Imbault La Ferte-Imbault La Ferte-Imbault,La Ferté-Imbault 47.38467 1.95344 P PPL FR A3 41 413 41084 1072 99 Europe/Paris 2012-01-18
-3009490 La Ferté-Gaucher La Ferte-Gaucher La Ferte-Gaucher,La Ferte-sur-Morin,La Ferté-Gaucher,La Ferté-sur-Morin 48.7831 3.30678 P PPL FR A8 77 773 77182 4567 119 Europe/Paris 2012-01-18
-3009494 La Ferté-Bernard La Ferte-Bernard La Ferte-Bernard,La Ferte-les-Pres,La Ferte-sur-Huisne,La Ferté-Bernard,La Ferté-les-Prés,La Ferté-sur-Huisne 48.18633 0.65357 P PPL FR B5 72 722 72132 10201 86 Europe/Paris 2012-01-18
-3009496 La Ferté-Alais La Ferte-Alais La Ferte-Alais,La Ferté-Alais 48.48306 2.34802 P PPL FR A8 91 911 91232 4051 63 Europe/Paris 2012-01-18
-3009508 La Ferrière-aux-Étangs La Ferriere-aux-Etangs La Ferriere,La Ferrière 48.66227 -0.51955 P PPL FR 99 61 612 61163 1694 269 Europe/Paris 2007-02-11
-3009516 La Ferrière La Ferriere La Ferriere,La Ferrière 46.71453 -1.31417 P PPL FR B5 85 852 85089 4362 92 Europe/Paris 2012-01-18
-3009526 La Fère La Fere La Fere,La Fère 49.66286 3.36631 P PPL FR B6 02 022 02304 2880 52 Europe/Paris 2012-01-18
-3009566 La Farlède La Farlede La Farlade,La Farlede,La Farlède,Sollies Farlede,Solliés Farlède 43.1677 6.04266 P PPL FR B8 83 832 83054 6918 84 Europe/Paris 2012-01-18
-3009575 La Fare-les-Oliviers La Fare-les-Oliviers Fare-les-Oliviers,La Fare,La Fare-les-Oliviers 43.55104 5.1943 P PPL FR B8 13 131 13037 6646 57 Europe/Paris 2011-01-19
-3009638 Ladon Ladon Ladon 48.00259 2.53724 P PPL FR A3 45 451 45178 1203 98 Europe/Paris 2012-01-18
-3009639 La Dominelais La Dominelais Doveneleg,La Dominelais 47.76229 -1.68819 P PPL FR A2 35 352 35098 1123 57 Europe/Paris 2012-01-18
-3009652 Ladignac-le-Long Ladignac-le-Long Ladignac,Ladignac-le-Long 45.58256 1.11359 P PPL FR B1 87 872 87082 1116 394 Europe/Paris 2012-01-18
-3009663 La Destrousse La Destrousse La Destrousse 43.37505 5.6056 P PPL FR B8 13 133 13031 2596 208 Europe/Paris 2011-01-18
-3009683 La Daguenière La Dagueniere La Dagueniere,La Daguenière 47.41934 -0.43128 P PPL FR B5 49 491 49117 1310 21 Europe/Paris 2012-01-18
-3009699 Lacrouzette Lacrouzette Lacrouzette 43.6603 2.34838 P PPL FR B3 81 812 81128 1814 518 Europe/Paris 2012-01-18
-3009710 La Croix-Valmer La Croix-Valmer Croix-Valmer,La Croix,La Croix-Valmer 43.20795 6.56696 P PPL FR B8 83 831 83048 3050 121 Europe/Paris 2012-01-18
-3009716 Lacroix-Saint-Ouen Lacroix-Saint-Ouen Lacroix-Saint-Ouen 49.35685 2.78803 P PPL FR B6 60 603 60338 4649 39 Europe/Paris 2012-01-18
-3009731 Lacroix-Falgarde Lacroix-Falgarde Lacroix-Falgarde 43.49968 1.40985 P PPL FR B3 31 313 31259 1678 157 Europe/Paris 2012-01-18
-3009732 La Croix-en-Touraine La Croix-en-Touraine Croix-en-Touraine,La Croix,La Croix-en-Touraine 47.34031 0.99024 P PPL FR A3 37 372 37091 2094 60 Europe/Paris 2012-01-18
-3009791 La Crau La Crau La Crau 43.14981 6.07425 P PPL FR B8 83 832 83047 17905 45 Europe/Paris 2012-01-18
-3009804 La Couture-Boussey La Couture-Boussey La Couture,La Couture-Boussey 48.89581 1.40491 P PPL FR A7 27 273 27183 2069 127 Europe/Paris 2012-01-18
-3009805 La Couture La Couture La Couture 50.58212 2.7071 P PPL FR B4 62 622 62252 2581 18 Europe/Paris 2012-01-18
-3009815 La Courtine La Courtine La Courtine 45.7 2.26667 P PPL FR B1 23 231 23067 1130 781 Europe/Paris 2012-01-18
-3009822 La Couronne La Couronne La Palud 45.61128 0.09948 P PPL FR B7 16 161 16113 7590 47 Europe/Paris 2008-01-28
-3009824 La Courneuve La Courneuve La Courneuve,La-Kurnev,Ла-Курнев 48.92805 2.39627 P PPL FR A8 93 933 93027 37287 38 Europe/Paris 2012-01-18
-3009873 La Couarde-sur-Mer La Couarde-sur-Mer La Couarde,La Couarde-sur-Mer,La Fraternite,La Fraternité 46.19411 -1.42522 P PPL FR B7 17 173 17121 1272 5 Europe/Paris 2012-01-18
-3009879 La Côte-Saint-André La Cote-Saint-Andre Cote-Andre,Cote-Bonne-Eau,Cote-Eau-Bonne,Cote-Saint-Andre,Côte-André,Côte-Bonne-Eau,Côte-Eau-Bonne,Côte-Saint-André,La Cote-Saint-Andre,La Côte-Saint-André 45.39357 5.26055 P PPL FR B9 38 383 38130 4555 382 Europe/Paris 2012-01-18
-3009922 La Coquille La Coquille La Coquille 45.54202 0.97675 P PPL FR 97 24 242 24133 1393 343 Europe/Paris 2012-01-18
-3009978 La Colle-sur-Loup La Colle-sur-Loup La Colle,La Colle-sur-Loup 43.6875 7.10268 P PPL FR B8 06 061 06044 6987 99 Europe/Paris 2012-01-18
-3010000 La Cluse-et-Mijoux La Cluse-et-Mijoux Cluse et Mijoux 46.88333 6.38333 P PPL FR A6 25 253 25157 1171 1090 Europe/Paris 2007-11-21
-3010004 La Clusaz La Clusaz La Clusac,La Clusaz 45.9052 6.42376 P PPL FR B9 74 741 74080 2241 1038 Europe/Paris 2012-01-18
-3010014 La Clayette La Clayette La Clayette 46.29002 4.30422 P PPL FR A1 71 713 71133 2162 389 Europe/Paris 2012-01-18
-3010025 La Ciotat La Ciotat La Ciotat,Sans-Nom,Ville-sans-Nom 43.17476 5.60449 P PPL FR B8 13 133 13028 33113 12 Europe/Paris 2011-11-02
-3010040 La Chevrolière La Chevroliere Kerc'hevrel,La Chevroliere,La Chevrolière 47.09124 -1.60973 P PPL FR B5 44 442 44041 5220 10 Europe/Paris 2012-01-18
-3010092 La Chaussée-Saint-Victor La Chaussee-Saint-Victor La Chaussee,La Chaussee-Saint-Victor,La Chaussée,La Chaussée-Saint-Victor,Victoire,Victor,Victor-la-Chaussee,Victor-la-Chaussée 47.6162 1.36765 P PPL FR A3 41 411 41047 4253 99 Europe/Paris 2012-01-18
-3010154 La Châtre La Chatre Chatre,Châtre,La Chatre,La Châtre 46.58333 1.98333 P PPLA3 FR A3 36 363 36046 4687 220 Europe/Paris 2010-04-02
-3010161 La Châtaigneraie La Chataigneraie La Chataigneraie,La Châtaigneraie 46.64786 -0.73916 P PPL FR B5 85 851 85059 2649 157 Europe/Paris 2012-01-18
-3010181 La Chartre-sur-le-Loir La Chartre-sur-le-Loir La Chartre,La Chartre-sur-le-Loir 47.73117 0.56852 P PPL FR B5 72 721 72068 1633 62 Europe/Paris 2012-01-18
-3010201 La Charité-sur-Loire La Charite-sur-Loire Charite-sur-Loire,Charité-sur-Loire,La Charite,La Charite-sur-Loire,La Charité,La Charité-sur-Loire,Lja-Sharite-sjur-Luar,Ля-Шарите-сюр-Луар 47.18333 3.01667 P PPL FR FR A1 58 584 58059 5460 187 Europe/Paris 2011-11-02
-3010226 La Chapelle-Thouarault La Chapelle-Thouarault Bredual,La Chapelle-Thouarault 48.12486 -1.86619 P PPL FR A2 35 353 35065 2113 50 Europe/Paris 2012-01-18
-3010235 La Chapelle-sur-Loire La Chapelle-sur-Loire La Chapelle,Les Trois-Volets 47.25063 0.21887 P PPL FR A3 37 371 37058 1529 34 Europe/Paris 2007-09-08
-3010237 La Chapelle-sur-Erdre La Chapelle-sur-Erdre Chapel-Erzh,La Chapelle-sur-Erdre 47.29584 -1.55309 P PPL FR B5 44 442 44035 18481 38 Europe/Paris 2012-01-18
-3010239 La Chapelle-sur-Crécy La Chapelle-sur-Crecy La Chapelle 48.85862 2.93455 P PPL FR A8 77 771 77142 4249 86 Europe/Paris 2012-02-27
-3010252 Lachapelle-sous-Aubenas Lachapelle-sous-Aubenas Lachapelle,Lachapelle-sous-Aubenas 44.56417 4.36392 P PPL FR B9 07 071 07122 1350 211 Europe/Paris 2012-01-18
-3010254 La Chapelle-Saint-Ursin La Chapelle-Saint-Ursin La Chapelle-Saint-Ursin 47.06248 2.32447 P PPL FR A3 18 181 18050 3245 149 Europe/Paris 2012-01-18
-3010265 La Chapelle-Saint-Mesmin La Chapelle-Saint-Mesmin La Chapelle,La Chapelle-Saint-Mesmin 47.88648 1.8345 P PPL FR A3 45 452 45075 9532 102 Europe/Paris 2012-01-18
-3010271 La Chapelle-Saint-Luc La Chapelle-Saint-Luc La Chapelle,La Chapelle-Saint-Luc 48.31734 4.03988 P PPL FR A4 10 103 10081 14623 107 Europe/Paris 2011-11-02
-3010273 La Chapelle-Saint-Laurent La Chapelle-Saint-Laurent La Chapelle-Saint-Laurent 46.74643 -0.47643 P PPL FR B7 79 793 79076 1785 183 Europe/Paris 2012-01-18
-3010278 La Chapelle-Saint-Florent La Chapelle-Saint-Florent La Chapelle,La Chapelle-Saint-Florent 47.33393 -1.05631 P PPL FR B5 49 492 49075 1148 81 Europe/Paris 2012-01-18
-3010281 La Chapelle-Saint-Aubin La Chapelle-Saint-Aubin La Chapelle-Saint-Aubin 48.03595 0.15624 P PPL FR B5 72 723 72065 2201 97 Europe/Paris 2012-01-18
-3010285 La Chapelle-Réanville La Chapelle-Reanville La Chapelle-Reanville,La Chapelle-Réanville,la Chapelle 49.09752 1.38209 P PPL FR A7 27 273 27150 1067 125 Europe/Paris 2012-01-18
-3010312 La Chapelle-Launay La Chapelle-Launay Chapel-ar-Wern,La Chapelle,La Chapelle-Launay 47.37226 -1.97071 P PPL FR B5 44 443 44033 2467 57 Europe/Paris 2012-01-18
-3010315 La Chapelle-la-Reine La Chapelle-la-Reine Chapelle-la-Reine,La Chapelle-Sainte-Genevieve,La Chapelle-Sainte-Geneviève,La Chapelle-l'Egalite,La Chapelle-l'Egalité,La Chapelle-la-Reine 48.31814 2.57152 P PPL FR A8 77 774 77088 3042 122 Europe/Paris 2012-01-18
-3010316 La Chapelle-Janson La Chapelle-Janson Chapel-Yent,La Chapelle-Janson 48.34775 -1.10209 P PPL FR A2 35 351 35062 1268 122 Europe/Paris 2012-01-18
-3010321 La Chapelle-Heulin La Chapelle-Heulin Chapel-Huelin,La Chapelle-Heulin 47.17667 -1.34 P PPL FR B5 44 442 44032 1997 15 Europe/Paris 2012-01-18
-3010332 La Chapelle-Gauthier La Chapelle-Gauthier La Chapelle-Gauthier,La Chapelle-en-Brie 48.54947 2.89776 P PPL FR A8 77 772 77086 1358 105 Europe/Paris 2012-01-18
-3010344 La Chapelle-en-Serval La Chapelle-en-Serval La Chapelle,La Chapelle-en-Serval,Pierre-la-Montagne,Rameuse 49.12842 2.53405 P PPL FR B6 60 604 60142 2592 68 Europe/Paris 2012-01-18
-3010351 La Chapelle-du-Noyer La Chapelle-du-Noyer La Chapelle,La Chapelle-du-Noyer 48.03191 1.30953 P PPL FR A3 28 282 28075 1258 138 Europe/Paris 2012-01-18
-3010357 La Chapelle-du-Genêt La Chapelle-du-Genet La Chapelle,La Chapelle-du-Genet,La Chapelle-du-Genêt 47.18203 -1.01857 P PPL FR B5 49 492 49072 1165 91 Europe/Paris 2012-01-18
-3010368 La Chapelle-des-Marais La Chapelle-des-Marais Chapel-ar-Geuniou,Chapel-ar-Geunioù,La Chapelle,La Chapelle-des-Marais,La Reunion,La Réunion 47.44845 -2.23834 P PPL FR B5 44 443 44030 3183 6 Europe/Paris 2012-01-18
-3010369 La Chapelle-des-Fougeretz La Chapelle-des-Fougeretz Chapel-Felgeriz,La Chapelle,La Chapelle-des-Fougeretz 48.17705 -1.73143 P PPL FR A2 35 353 35059 3621 86 Europe/Paris 2012-01-18
-3010371 La Chapelle-de-la-Tour La Chapelle-de-la-Tour Chapelle-de-la-Tour,La Chapelle-de-la-Tour,Val-sur-Sonne,la Chapelle 45.58422 5.46611 P PPL FR B9 38 382 38076 1566 432 Europe/Paris 2012-01-18
-3010372 La Chapelle-de-Guinchay La Chapelle-de-Guinchay La Chapelle,La Chapelle-de-Guinchay 46.20841 4.76245 P PPL FR A1 71 715 71090 2626 193 Europe/Paris 2012-01-18
-3010396 La Chapelle-Basse-Mer La Chapelle-Basse-Mer Chapel-Baz-Meur,La Chapelle,La Chapelle-Basse-Mer 47.27086 -1.33913 P PPL FR B5 44 442 44029 4595 52 Europe/Paris 2012-01-18
-3010400 Lachapelle-aux-Pots Lachapelle-aux-Pots Lachapelle,Lachapelle-aux-Pots 49.44905 1.90228 P PPL FR B6 60 601 60333 1614 110 Europe/Paris 2012-01-18
-3010414 La Chapelle-Achard La Chapelle-Achard Belle-Chasse,La Chapelle-Achard 46.58862 -1.64757 P PPL FR B5 85 853 85052 1078 38 Europe/Paris 2012-01-18
-3010460 La Chambre La Chambre La Chambre 45.35866 6.30249 P PPL FR B9 73 733 73067 1205 477 Europe/Paris 2012-01-18
-3010483 La Chaize-le-Vicomte La Chaize-le-Vicomte Basse-Chaize,Haute-Chaize,La Chaize,La Chaize-le-Vicomte 46.67166 -1.29084 P PPL FR B5 85 852 85046 2858 82 Europe/Paris 2012-01-18
-3010515 La Cerlangue La Cerlangue La Cerlangue 49.50592 0.41332 P PPL FR A7 76 762 76169 1193 119 Europe/Paris 2012-01-18
-3010523 La Celle-sur-Morin La Celle-sur-Morin La Celle,La Celle-sur-Morin 48.81146 2.9692 P PPL FR A8 77 771 77063 1211 81 Europe/Paris 2012-01-18
-3010529 La Celle-Saint-Cloud La Celle-Saint-Cloud La Celle,La Celle-Saint-Cloud,La Celle-les-Bruyeres,La Celle-les-Bruyères 48.85029 2.14523 P PPL FR A8 78 783 78126 21539 158 Europe/Paris 2012-01-18
-3010530 La Celle-Saint-Avant La Celle-Saint-Avant La Celle,La Celle-Saint-Avant,La Selle-Avant,Lasselle-Avant 47.022 0.60488 P PPL FR A3 37 373 37045 1126 59 Europe/Paris 2012-01-18
-3010541 La Celle La Celle La Celle 43.39391 6.03484 P PPL FR B8 83 833 83037 1227 248 Europe/Paris 2012-01-18
-3010558 La Cavalerie La Cavalerie La Cavalerie 44.00961 3.1584 P PPL FR B3 12 121 12063 1048 794 Europe/Paris 2011-01-13
-3010566 Lacaune Lacaune Lacaune 43.7066 2.69293 P PPL FR B3 81 812 81124 2832 798 Europe/Paris 2012-01-18
-3010580 Lacasse Lacasse 43.39873 1.26951 P PPL FR B3 31 311 31287 2351 201 Europe/Paris 2012-02-27
-3010605 Lacapelle-Marival Lacapelle-Marival Lacapelle-Marival 44.72773 1.92465 P PPL FR B3 46 462 46143 1360 376 Europe/Paris 2012-01-18
-3010607 La Capelle-lès-Boulogne La Capelle-les-Boulogne La Capelle,La Capelle-les-Boulogne,La Capelle-lès-Boulogne 50.73302 1.70147 P PPL FR B4 62 623 62908 1591 110 Europe/Paris 2012-01-18
-3010609 La Capelle La Capelle La Capelle-en-Thierache,La Capelle-en-Thiérache 49.96667 3.91667 P PPL FR B6 02 025 02141 2107 221 Europe/Paris 2007-11-20
-3010619 La Canourgue La Canourgue La Canourgue 44.43133 3.21584 P PPL FR A9 48 482 48034 2126 565 Europe/Paris 2012-01-18
-3010626 Lacanau Lacanau Lacanau,Lacanau-Medoc,Lacanau-Médoc,Lacanau-Ville 44.97779 -1.0762 P PPL FR 97 33 334 33214 3410 18 Europe/Paris 2012-01-18
-3010634 La Calmette La Calmette La Calmette 43.92283 4.26617 P PPL FR A9 30 302 30061 1808 85 Europe/Paris 2012-01-18
-3010685 La Buisse La Buisse La Buisse 45.3354 5.62282 P PPL FR B9 38 381 38061 2596 221 Europe/Paris 2012-01-18
-3010694 Labry Labry Labry 49.17126 5.88003 P PPL FR B2 54 541 54286 1623 207 Europe/Paris 2012-01-18
-3010720 Labruguière Labruguiere Labruguiere,Labruguière 43.53858 2.26392 P PPL FR B3 81 812 81120 5846 191 Europe/Paris 2012-01-18
-3010726 La Bruffière La Bruffiere Brufer,La Bruffiere,La Bruffière 47.01492 -1.1973 P PPL FR B5 85 852 85039 3320 67 Europe/Paris 2012-01-18
-3010778 La Broque La Broque 48.47298 7.21639 P PPL FR C1 67 673 67066 2738 316 Europe/Paris 2011-11-02
-3010791 La Bridoire La Bridoire 45.52504 5.74073 P PPL FR B9 73 732 73058 1170 268 Europe/Paris 2009-08-17
-3010815 La Bresse La Bresse La Bresse 47.99974 6.86499 P PPL FR B2 88 881 88075 5096 617 Europe/Paris 2012-01-18
-3010854 La Boussac La Boussac La Boussac,Labouseg 48.5126 -1.66088 P PPL FR A2 35 354 35034 1062 40 Europe/Paris 2012-01-18
-3010855 Labourse Labourse Labourse 50.49883 2.68121 P PPL FR B4 62 622 62480 2063 24 Europe/Paris 2012-01-18
-3010882 La Bourboule La Bourboule Bourboule,La Bourboule 45.58837 2.73956 P PPL FR 98 63 632 63047 2162 855 Europe/Paris 2012-01-18
-3010905 La Bouilladisse La Bouilladisse La Bouilladisse 43.39619 5.59307 P PPL FR B8 13 133 13016 5122 242 Europe/Paris 2011-01-18
-3010908 Labouheyre Labouheyre 44.21297 -0.92062 P PPL FR 97 40 402 40134 2769 71 Europe/Paris 2009-03-23
-3010911 La Bouëxière La Bouexiere Beuzid-ar-C'hoadou,Beuzid-ar-C'hoadoù,La Bouexiere,La Bouëxière 48.18333 -1.43333 P PPL FR A2 35 353 35031 3960 106 Europe/Paris 2007-11-14
-3010985 Laboissière-en-Thelle Laboissiere-en-Thelle Laboissiere,Laboissiere-en-Thelle,Laboissière,Laboissière-en-Thelle 49.29329 2.1615 P PPL FR B6 60 601 60330 1309 198 Europe/Paris 2012-01-18
-3010989 La Boissière-des-Landes La Boissiere-des-Landes La Boissiere,La Boissiere-des-Landes,La Boissière,La Boissière-des-Landes 46.56398 -1.46172 P PPL FR B5 85 853 85026 1162 76 Europe/Paris 2012-01-18
-3010990 La Boissière-de-Montaigu La Boissiere-de-Montaigu La Boissiere,La Boissiere-de-Montaigu,La Boissière,La Boissière-de-Montaigu 46.95012 -1.19047 P PPL FR B5 85 852 85025 1683 80 Europe/Paris 2012-01-18
-3011008 La Boisse La Boisse 45.84278 5.03639 P PPL FR B9 01 012 01049 2958 189 Europe/Paris 2010-12-16
-3011010 La Bohalle La Bohalle La Bohalle 47.42095 -0.39723 P PPL FR B5 49 491 49032 1301 23 Europe/Paris 2012-01-18
-3011021 Lablachère Lablachere Lablachere,Lablachère 44.46595 4.2165 P PPL FR B9 07 071 07117 1602 257 Europe/Paris 2012-01-18
-3011031 La Biolle La Biolle La Biolle 45.75916 5.9307 P PPL FR B9 73 732 73043 1896 401 Europe/Paris 2012-01-18
-3011045 Labeuvrière Labeuvriere Labeuvriere,Labeuvrière 50.51915 2.56268 P PPL FR B4 62 622 62479 1759 35 Europe/Paris 2012-01-18
-3011090 La Bernerie-en-Retz La Bernerie-en-Retz Kerverner-Raez,La Bernerie,La Bernerie-en-Retz 47.0804 -2.03642 P PPL FR B5 44 443 44012 2296 9 Europe/Paris 2012-01-18
-3011093 La Bernardière La Bernardiere Kervernarzh,La Bernardiere,La Bernardière 47.04952 -1.26587 P PPL FR B5 85 852 85021 1252 46 Europe/Paris 2012-01-18
-3011123 Labenne Labenne Labenne 43.59464 -1.42559 P PPL FR 97 40 401 40133 3633 14 Europe/Paris 2012-01-18
-3011150 La Bégude-de-Mazenc La Begude-de-Mazenc Begude-de-Mazenc,Bégude-de-Mazenc,La Begude,La Begude-de-Mazenc,La Bégude,La Bégude-de-Mazenc,Neuf-Mazenc 44.54573 4.93608 P PPL FR B9 26 262 26045 1315 229 Europe/Paris 2012-01-18
-3011152 Labégude Labegude Labegude,Labégude 44.64656 4.369 P PPL FR B9 07 071 07116 1395 241 Europe/Paris 2012-01-18
-3011154 Labège Labege Labege,Labège 43.53039 1.53596 P PPL FR B3 31 313 31254 3690 158 Europe/Paris 2012-01-18
-3011187 La Bazoge La Bazoge La Bazoge 48.09689 0.15534 P PPL FR B5 72 723 72024 2995 98 Europe/Paris 2012-01-18
-3011188 La Bazoche-Gouet La Bazoche-Gouet La Bazoche,La Bazoche-Gouet 48.13986 0.98163 P PPL FR A3 28 284 28027 1286 191 Europe/Paris 2012-01-18
-3011209 Labatut Labatut Labatut 43.55 -0.98333 P PPL FR 97 40 401 40132 1206 48 Europe/Paris 2011-09-11
-3011218 La Bâtie-Neuve La Batie-Neuve La Batie-Neuve,La Bâtie-Neuve 44.56667 6.2 P PPL FR B8 05 052 05017 1821 865 Europe/Paris 2012-01-18
-3011220 La Bâtie-Montgascon La Batie-Montgascon La Batie,La Batie-Montgascon,La Bâtie,La Bâtie-Montgascon 45.57808 5.53024 P PPL FR B9 38 382 38029 1556 384 Europe/Paris 2012-01-18
-3011234 La Bâthie La Bathie Albine,La Bathie,La Bâthie 45.62813 6.45106 P PPL FR B9 73 731 73032 2215 365 Europe/Paris 2012-01-18
-3011245 Labastidette Labastidette Labastidette 43.45952 1.24525 P PPL FR B3 31 311 31253 1501 192 Europe/Paris 2012-01-18
-3011249 Labastide-Saint-Sernin Labastide-Saint-Sernin Labastide,Labastide-Saint-Sernin 43.73743 1.46985 P PPL FR B3 31 313 31252 1499 139 Europe/Paris 2011-01-09
-3011250 Labastide-Saint-Pierre Labastide-Saint-Pierre Labastide,Labastide-Saint-Pierre,Labastide-du-Tarn 43.91769 1.36628 P PPL FR B3 82 822 82079 3253 102 Europe/Paris 2012-01-18
-3011251 Labastide-Saint-Georges Labastide-Saint-Georges Labastide,Labastide-Saint-Georges 43.69962 1.84585 P PPL FR B3 81 812 81116 1312 145 Europe/Paris 2012-01-18
-3011252 Labastide-Rouairoux Labastide-Rouairoux Labasdite-Rouairoux,Labastide,Labastide-Rouairoux 43.47566 2.63929 P PPL FR B3 81 812 81115 1831 393 Europe/Paris 2012-01-18
-3011268 La Bastide-des-Jourdans La Bastide-des-Jourdans La Bastide,La Bastide-des-Jourdans 43.78707 5.63468 P PPL FR B8 84 841 84009 1110 415 Europe/Paris 2012-01-18
-3011288 Labastide-Beauvoir Labastide-Beauvoir La Bastide-de-Beauvoir,Labastide,Labastide-Beauvoir 43.48148 1.66543 P PPL FR B3 31 313 31249 1016 263 Europe/Paris 2012-01-18
-3011307 La Bassée La Bassee La Bassee,La Bassée 50.53424 2.8062 P PPL FR B4 59 595 59051 6027 27 Europe/Paris 2012-01-18
-3011312 Labarthe-sur-Lèze Labarthe-sur-Leze Labarthe,Labarthe-sur-Leze,Labarthe-sur-Lèze 43.45206 1.39968 P PPL FR B3 31 311 31248 5208 170 Europe/Paris 2012-01-18
-3011313 Labarthe-Rivière Labarthe-Riviere Labarthe,Labarthe-Riviere,Labarthe-Rivière 43.081 0.67134 P PPL FR B3 31 312 31247 1247 394 Europe/Paris 2012-01-18
-3011315 La Barthe-de-Neste La Barthe-de-Neste La Barthe,La Barthe-de-Neste 43.08123 0.38438 P PPL FR B3 65 652 65069 1173 580 Europe/Paris 2012-01-18
-3011332 La Barre-de-Monts La Barre-de-Monts La Barre,La Barre-de-Monts 46.88058 -2.12168 P PPL FR B5 85 853 85012 1922 3 Europe/Paris 2012-01-18
-3011353 Labaroche Labaroche La Broche 48.11076 7.19244 P PPL FR C1 68 685 68173 2099 758 Europe/Paris 2007-07-17
-3011386 La Balme-de-Sillingy La Balme-de-Sillingy La Balme,La Balme-de-Sillingy 45.9611 6.04251 P PPL FR B9 74 741 74026 4205 491 Europe/Paris 2012-01-18
-3011402 La Baconnière La Baconniere La Baconniere,La Baconnière,La Braconniere,La Braconnière 48.18012 -0.89202 P PPL FR B5 53 532 53015 1449 181 Europe/Paris 2012-01-18
-3011418 Kuntzig Kuntzig Kuntzig 49.34867 6.23381 P PPL FR B2 57 577 57372 1086 165 Europe/Paris 2012-01-18
-3011419 Kunheim Kunheim Kuenheim,Kunheim 48.07681 7.5343 P PPL FR C1 68 682 68172 1719 186 Europe/Paris 2012-01-18
-3011421 Kruth Kruth Kruth 47.93079 6.96475 P PPL FR C1 68 686 68171 1055 493 Europe/Paris 2012-01-18
-3011425 Krautergersheim Krautergersheim Krautergersheim 48.47634 7.56718 P PPL FR C1 67 675 67248 1586 155 Europe/Paris 2011-02-14
-3011437 Kœnigsmacker Koenigsmacker Freimacker,Koenigsmacher 49.4 6.28333 P PPL FR B2 57 577 57370 1952 147 Europe/Paris 2007-11-15
-3011440 Knutange Knutange Knutange 49.34308 6.03297 P PPL FR B2 57 578 57368 3767 212 Europe/Paris 2012-01-18
-3011455 Kintzheim Kintzheim 48.2548 7.39491 P PPL FR C1 67 675 67239 1587 209 Europe/Paris 2007-07-07
-3011456 Kingersheim Kingersheim Kingersheim 47.79259 7.33491 P PPL FR C1 68 684 68166 12690 232 Europe/Paris 2012-01-18
-3011458 Kilstett Kilstett 48.676 7.85471 P PPL FR C1 67 676 67237 2026 130 Europe/Paris 2007-07-05
-3011460 Killem Killem Killem 50.95779 2.56068 P PPL FR B4 59 594 59326 1031 10 Europe/Paris 2012-01-18
-3011467 Keskastel Keskastel Keskastel 48.97132 7.04412 P PPL FR C1 67 674 67234 1527 215 Europe/Paris 2011-02-14
-3011506 Kervignac Kervignac Kervignac,Kervignag 47.76289 -3.23778 P PPL FR A2 56 561 56094 4477 36 Europe/Paris 2012-01-18
-3011539 Kertzfeld Kertzfeld Kercfeld,Kertzfeld,Керцфелд 48.37934 7.57082 P PPL FR C1 67 675 67233 1179 159 Europe/Paris 2012-01-18
-3011563 Kersaint-Plabennec Kersaint-Plabennec Kersaint,Kersaint-Plabennec,Kersent-Plabenneg 48.47166 -4.37233 P PPL FR A2 29 291 29095 1166 93 Europe/Paris 2012-01-18
-3011624 Kernilis Kernilis Kernilis,Kerniliz 48.57075 -4.418 P PPL FR A2 29 291 29093 1174 62 Europe/Paris 2012-01-18
-3011686 Kerlouan Kerlouan Kerlouan 48.645 -4.36556 P PPL FR A2 29 291 29091 2405 10 Europe/Paris 2012-01-18
-3011920 Kerbach Kerbach Kerbach 49.16627 6.96744 P PPL FR B2 57 573 57360 1024 298 Europe/Paris 2012-01-18
-3011964 Kembs Kembs Kembs 47.68948 7.50323 P PPL FR C1 68 684 68163 3909 240 Europe/Paris 2012-01-18
-3011968 Kédange-sur-Canner Kedange-sur-Canner Kedange,Kedange-sur-Camer,Kedange-sur-Canner,Kédange-sur-Camer,Kédange-sur-Canner 49.30791 6.3372 P PPL FR B2 57 577 57358 1141 186 Europe/Paris 2012-01-18
-3011969 Kaysersberg Kaysersberg Kayserberg,Kaysersberg,Mont-Libre 48.13803 7.26385 P PPL FR C1 68 685 68162 2815 251 Europe/Paris 2007-09-08
-3011976 Kaltenhouse Kaltenhouse Kaltenhausen,Kaltenhouse 48.79102 7.83329 P PPL FR C1 67 672 67230 2000 146 Europe/Paris 2012-01-18
-3011978 Juziers Juziers Juziers 48.99137 1.8476 P PPL FR A8 78 781 78327 3545 43 Europe/Paris 2012-01-18
-3011988 Juvisy-sur-Orge Juvisy-sur-Orge Juvisy,Juvisy-sur-Orge 48.68333 2.38333 P PPL FR A8 91 913 91326 12376 38 Europe/Paris 2012-01-18
-3011996 Juvigny-sous-Andaine Juvigny-sous-Andaine Juvigny 48.55194 -0.50878 P PPL FR 99 61 611 61211 1071 194 Europe/Paris 2007-02-09
-3012003 Juvigné Juvigne Juvigne,Juvigné 48.22891 -1.03408 P PPL FR B5 53 532 53123 1405 166 Europe/Paris 2012-01-18
-3012004 Juvignac Juvignac Juvignac 43.61389 3.81056 P PPL FR A9 34 343 34123 6281 54 Europe/Paris 2010-12-24
-3012022 Jussy Jussy Jussy 49.71984 3.2327 P PPL FR B6 02 023 02397 1300 72 Europe/Paris 2012-01-18
-3012026 Jussey Jussey Jussey 47.82536 5.90193 P PPL FR A6 70 702 70292 1828 224 Europe/Paris 2012-01-18
-3012032 Jussac Jussac Jussac 44.98804 2.42445 P PPL FR 98 15 151 15083 1827 635 Europe/Paris 2012-01-18
-3012049 Jurançon Jurancon Jurancon,Jurançon 43.2883 -0.38694 P PPL FR 97 64 643 64284 7041 178 Europe/Paris 2011-01-02
-3012062 Jumilhac-le-Grand Jumilhac-le-Grand Jumilhac,Jumilhac-le-Grand 45.49432 1.06339 P PPL FR 97 24 242 24218 1344 283 Europe/Paris 2012-01-18
-3012066 Jumièges Jumieges Jumieges,Jumièges 49.43324 0.81918 P PPL FR A7 76 763 76378 1748 16 Europe/Paris 2012-01-18
-3012073 Jumelles Jumelles 47.4351 -0.1037 P PPL FR B5 49 493 49180 7328 37 Europe/Paris 2010-08-31
-3012085 Jullouville Jullouville Julloville,Julouville-les-Pins 48.77576 -1.56366 P PPL FR 99 50 501 50066 1517 12 Europe/Paris 2011-11-02
-3012094 Jujurieux Jujurieux Jujurieux 46.03976 5.41328 P PPL FR B9 01 014 01199 1871 357 Europe/Paris 2012-01-18
-3012099 Juilly Juilly Juilly 49.01375 2.70563 P PPL FR A8 77 771 77241 2195 87 Europe/Paris 2012-01-18
-3012109 Juillan Juillan Juillan 43.19937 0.0257 P PPL FR B3 65 653 65235 3759 329 Europe/Paris 2012-01-18
-3012113 Juillac Juillac Juillac 45.31875 1.32282 P PPL FR B1 19 191 19094 1130 309 Europe/Paris 2012-01-18
-3012119 Juigné-sur-Sarthe Juigne-sur-Sarthe Juigne-sur-Sarthe,Juigné-sur-Sarthe 47.86499 -0.28624 P PPL FR B5 72 721 72151 1232 49 Europe/Paris 2012-01-18
-3012120 Juigné-sur-Loire Juigne-sur-Loire Juigne,Juigne-sur-Loire,Juigné,Juigné-sur-Loire 47.40741 -0.47682 P PPL FR B5 49 491 49167 2412 25 Europe/Paris 2012-01-18
-3012124 Juigné Juigne 47.71878 -0.39405 P PPL FR B5 49 491 49220 7007 34 Europe/Paris 2012-02-27
-3012129 Jugon-les-Lacs Jugon-les-Lacs 48.41667 -2.33333 P PPL FR A2 22 221 22084 1416 63 Europe/Paris 2007-11-20
-3012148 Joyeuse Joyeuse Joyeuse 44.47972 4.23781 P PPL FR B9 07 071 07110 1559 177 Europe/Paris 2012-01-18
-3012155 Jouy-sur-Morin Jouy-sur-Morin Jouy,Jouy-sur-Morin 48.795 3.27238 P PPL FR A8 77 773 77240 2127 115 Europe/Paris 2012-01-18
-3012161 Jouy-le-Potier Jouy-le-Potier Jouy,Jouy-le-Potier 47.74553 1.81115 P PPL FR A3 45 452 45175 1404 115 Europe/Paris 2012-01-18
-3012162 Jouy-le-Moutier Jouy-le-Moutier Jouy,Jouy-le-Moutier 49.01068 2.04028 P PPL FR A8 95 953 95323 19087 88 Europe/Paris 2012-01-18
-3012163 Jouy-le-Châtel Jouy-le-Chatel Jouy,Jouy-le-Chatel,Jouy-le-Châtel 48.66651 3.13036 P PPL FR A8 77 773 77239 1525 125 Europe/Paris 2012-01-18
-3012165 Jouy-en-Josas Jouy-en-Josas Jouy,Jouy-en-Josas,Jouy-le-Peuple 48.75909 2.16966 P PPL FR A8 78 784 78322 8383 147 Europe/Paris 2012-01-18
-3012167 Jouy-aux-Arches Jouy-aux-Arches Jouy,Jouy-aux-Arches 49.06308 6.08023 P PPL FR B2 57 574 57350 1598 187 Europe/Paris 2012-01-18
-3012170 Jouy Jouy Jouy 48.51005 1.54501 P PPL FR A3 28 281 28201 1884 116 Europe/Paris 2012-01-18
-3012174 Joux-la-Ville Joux-la-Ville Joux,Joux-la-Ville 47.62241 3.86217 P PPL FR A1 89 892 89208 1112 227 Europe/Paris 2012-01-18
-3012200 Jouques Jouques Jouques 43.6375 5.64006 P PPL FR B8 13 131 13048 3500 278 Europe/Paris 2012-01-18
-3012211 Jougne Jougne Jougne 46.76291 6.38838 P PPL FR A6 25 253 25318 1249 993 Europe/Paris 2012-01-18
-3012216 Jouet-sur-l'Aubois Jouet-sur-l'Aubois Jouet,Jouet-sur-l'Aubois 47.04562 2.98725 P PPL FR A3 18 182 18118 1516 172 Europe/Paris 2010-10-25
-3012217 Joué-sur-Erdre Joue-sur-Erdre Joue,Joue-sur-Erdre,Joué,Joué-sur-Erdre,Yaoued 47.49596 -1.42047 P PPL FR B5 44 444 44077 1834 23 Europe/Paris 2012-01-18
-3012219 Joué-lés-Tours Joue-les-Tours Joue,Joue-les-Tours,Joué,Joué-lès-Tours,Joué-lés-Tours,Zhu-le-Tur,Жу-ле-Тур 47.35223 0.66906 P PPL FR A3 37 372 37122 37466 83 Europe/Paris 2012-01-18
-3012227 Joudreville Joudreville Joudreville 49.2856 5.77832 P PPL FR B2 54 541 54284 1095 273 Europe/Paris 2012-01-18
-3012234 Jouars-Pontchartrain Jouars-Pontchartrain Jouars,Jouars-Pontchartrain 48.78888 1.89898 P PPL FR A8 78 782 78321 5012 100 Europe/Paris 2012-01-18
-3012236 Jouarre Jouarre Jouarre 48.92661 3.13168 P PPL FR A8 77 771 77238 3742 143 Europe/Paris 2012-01-18
-3012248 Josselin Josselin Josilin,Josselin 47.9572 -2.54713 P PPL FR A2 56 562 56091 2756 63 Europe/Paris 2012-01-18
-3012262 Jonzieux Jonzieux Jonzieux 45.31582 4.36041 P PPL FR B9 42 423 42115 1263 896 Europe/Paris 2012-01-18
-3012266 Jonzac Jonzac 45.45 -0.43333 P PPLA3 FR B7 17 171 17197 4524 48 Europe/Paris 2011-11-02
-3012274 Jons Jons Jons 45.80797 5.08032 P PPL FR B9 69 691 69280 1235 222 Europe/Paris 2012-01-18
-3012275 Jonquières-Saint-Vincent Jonquieres-Saint-Vincent Jonquieres,Jonquières,Vincent-du-Gard 43.82809 4.56327 P PPL FR A9 30 302 30135 2930 38 Europe/Paris 2011-01-19
-3012277 Jonquières Jonquieres Joncquieres,Joncquières,Jonquieres,Jonquières 44.11431 4.90003 P PPL FR B8 84 842 84056 4195 55 Europe/Paris 2012-01-18
-3012282 Jonquerettes Jonquerettes Jonquerettes 43.94655 4.93286 P PPL FR B8 84 842 84055 1325 82 Europe/Paris 2011-01-18
-3012295 Jonchery-sur-Vesle Jonchery-sur-Vesle Jonchery,Jonchery-sur-Vesle 49.28952 3.81346 P PPL FR A4 51 513 51308 1928 80 Europe/Paris 2012-01-18
-3012298 Joncherey Joncherey Joncherey 47.52616 7.00158 P PPL FR A6 90 901 90056 1374 358 Europe/Paris 2012-01-18
-3012303 Jonage Jonage Jonage 45.7964 5.0453 P PPL FR B9 69 691 69279 5750 213 Europe/Paris 2012-01-18
-3012313 Joinville-le-Pont Joinville-le-Pont Joinville,Joinville-le-Pont,La Branche-du-Pont-de-Saint-Maur 48.82538 2.47458 P PPL FR A8 94 942 94042 18154 40 Europe/Paris 2012-01-18
-3012315 Joinville Joinville Joinville,Joinville-en-Vallage 48.44363 5.14144 P PPL FR A4 52 523 52250 4439 186 Europe/Paris 2012-01-18
-3012319 Joigny Joigny Joigny 47.98288 3.40096 P PPL FR A1 89 891 89206 11527 107 Europe/Paris 2012-01-18
-3012322 Jœuf Joeuf 49.23333 6.01667 P PPL FR B2 54 541 54280 7064 195 Europe/Paris 2007-11-15
-3012329 Job Job Job 45.61776 3.74602 P PPL FR 98 63 631 63179 1058 652 Europe/Paris 2012-01-18
-3012346 Jeumont Jeumont Jeumont 50.29658 4.10108 P PPL FR B4 59 591 59324 10964 132 Europe/Paris 2011-11-02
-3012361 Jenlain Jenlain Jenlain 50.31164 3.62872 P PPL FR B4 59 591 59323 1184 99 Europe/Paris 2012-01-18
-3012364 Jegun Jegun 43.76667 0.46667 P PPL FR B3 32 321 32162 1063 127 Europe/Paris 2007-11-14
-3012365 Jebsheim Jebsheim Jebsheim 48.12346 7.47549 P PPL FR C1 68 682 68157 1065 179 Europe/Paris 2012-01-18
-3012374 Jeanménil Jeanmenil Jeanmenil,Jeanménil 48.3356 6.68769 P PPL FR B2 88 881 88251 1169 332 Europe/Paris 2012-01-18
-3012399 Javené Javene Javene,Javené,Yaoueneg 48.31933 -1.2163 P PPL FR A2 35 351 35137 1682 91 Europe/Paris 2012-01-18
-3012404 Jaux Jaux Jaux 49.3912 2.77809 P PPL FR B6 60 603 60325 2253 32 Europe/Paris 2012-01-18
-3012406 Jausiers Jausiers Jausiers 44.41705 6.72947 P PPL FR B8 04 041 04096 1026 1214 Europe/Paris 2011-01-14
-3012417 Jaunay-Clan Jaunay-Clan Jaunay,Jaunay-Clan 46.68452 0.37128 P PPL FR B7 86 863 86115 6097 72 Europe/Paris 2012-01-18
-3012431 Jaujac Jaujac Jaujac 44.6354 4.2573 P PPL FR B9 07 071 07107 1124 413 Europe/Paris 2012-01-18
-3012441 Jasseron Jasseron Jasseron 46.21316 5.32579 P PPL FR B9 01 012 01195 1374 294 Europe/Paris 2011-01-14
-3012444 Jassans-Riottier Jassans-Riottier Jassans,Jassans-Riottier 45.98352 4.76004 P PPL FR B9 01 012 01194 5839 188 Europe/Paris 2012-01-18
-3012447 Jarzé Jarze Jarze,Jarze-Marat,Jarzé,Jarzé-Marat 47.55563 -0.23182 P PPL FR B5 49 491 49163 1468 65 Europe/Paris 2012-01-18
-3012449 Jarville-la-Malgrange Jarville-la-Malgrange Jarville,Jarville-la-Malgrange 48.66907 6.20636 P PPL FR B2 54 543 54274 10248 202 Europe/Paris 2012-01-18
-3012465 Jarrie Jarrie Jarrie 45.11732 5.75957 P PPL FR B9 38 381 38200 3904 394 Europe/Paris 2012-01-18
-3012467 Jarny Jarny Jarny 49.15736 5.87877 P PPL FR B2 54 541 54273 8704 200 Europe/Paris 2012-01-18
-3012477 Jarnac Jarnac Jarnac 45.6816 -0.17329 P PPL FR B7 16 162 16167 4878 30 Europe/Paris 2011-03-16
-3012483 Jargeau Jargeau Jargeau,ya er ruo,雅尔若 47.86316 2.12648 P PPL FR A3 45 452 45173 4237 103 Europe/Paris 2012-01-18
-3012484 Jard-sur-Mer Jard-sur-Mer Jard,Jard-la-Montagne,Jard-sur-Mer 46.41451 -1.5764 P PPL FR B5 85 853 85114 2368 12 Europe/Paris 2012-01-18
-3012487 Jardin Jardin Jardin 45.49617 4.90641 P PPL FR B9 38 383 38199 2019 276 Europe/Paris 2012-01-18
-3012495 Janzé Janze Gentieg,Janze,Janzé 47.95915 -1.49829 P PPL FR A2 35 353 35136 5927 86 Europe/Paris 2012-01-18
-3012499 Janville-sur-Juine Janville-sur-Juine Janville,Janville-sur-Juine 48.51352 2.27064 P PPL FR A8 91 911 91318 1962 95 Europe/Paris 2012-01-18
-3012502 Janville Janville Janville 48.20284 1.8802 P PPL FR A3 28 281 28199 1757 134 Europe/Paris 2012-01-18
-3012506 Jans Jans Hentieg,Jans 47.62028 -1.61438 P PPL FR B5 44 441 44076 1081 23 Europe/Paris 2012-01-18
-3012508 Janneyrias Janneyrias Janneyrias 45.75346 5.11027 P PPL FR B9 38 383 38197 1254 235 Europe/Paris 2012-01-18
-3012549 Jallais Jallais Jallais 47.19691 -0.86738 P PPL FR B5 49 492 49162 3130 83 Europe/Paris 2012-01-18
-3012576 Jacou Jacou Jacou 43.66139 3.91222 P PPL FR A9 34 343 34120 5111 64 Europe/Paris 2010-12-24
-3012577 Jacob-Bellecombette Jacob-Bellecombette Jacob,Jacob-Bellecombette 45.55275 5.9116 P PPL FR B9 73 732 73137 3861 382 Europe/Paris 2012-01-18
-3012593 Izon Izon Izon 44.92416 -0.36322 P PPL FR 97 33 335 33207 4317 6 Europe/Paris 2012-01-18
-3012604 Izernore Izernore Izernore 46.21686 5.55366 P PPL FR B9 01 014 01192 1822 466 Europe/Paris 2012-01-18
-3012611 Izeaux Izeaux Izeaux,Izeaux-aux Bois 45.33515 5.4251 P PPL FR B9 38 381 38194 1954 425 Europe/Paris 2012-01-18
-3012620 Iwuy Iwuy Iwuy 50.233 3.32058 P PPL FR B4 59 592 59322 3140 48 Europe/Paris 2012-01-18
-3012621 Ivry-sur-Seine Ivry-sur-Seine Ivri-sjur-Sen,Ivry,Ivry sobre Sena,Ivry-sur-Seine,ivuri=shuru=senu,Иври-сюр-Сен,イヴリー=シュル=セーヌ 48.81568 2.38487 P PPL FR A8 94 941 94041 57897 36 Europe/Paris 2012-01-18
-3012623 Ivry-la-Bataille Ivry-la-Bataille Ivry,Ivry-la-Bataille,Ivry-la-Hauteur,ivuri=ra=bataiyu,イヴリー=ラ=バタイユ 48.88333 1.45948 P PPL FR A7 27 273 27355 2661 65 Europe/Paris 2012-01-18
-3012636 Itxassou Itxassou Itsasu,Itxassou,Union 43.32893 -1.40617 P PPL FR 97 64 641 64279 1918 76 Europe/Paris 2012-01-18
-3012638 Itteville Itteville Itteville 48.51536 2.34377 P PPL FR A8 91 911 91315 5650 73 Europe/Paris 2012-01-18
-3012640 Ittenheim Ittenheim Ittenheim 48.60447 7.59471 P PPL FR C1 67 676 67226 2100 177 Europe/Paris 2012-01-18
-3012643 Iteuil Iteuil Iteuil 46.48808 0.31212 P PPL FR B7 86 863 86113 2995 117 Europe/Paris 2012-01-18
-3012644 Itancourt Itancourt Itancourt 49.80664 3.34427 P PPL FR B6 02 023 02387 1055 118 Europe/Paris 2012-01-18
-3012647 Istres Istres Istra,Istre,Istres,isutoru,Истра,イストル 43.51667 4.98333 P PPLA3 FR B8 13 134 13047 44373 24 Europe/Paris 2011-11-02
-3012649 Issy-les-Moulineaux Issy-les-Moulineaux Issi-le-Mulino,Issy,Issy-les-Moulineau,Issy-les-Moulineaux,L'Union,Исси-ле-Мулино 48.82104 2.27718 P PPL FR A8 92 923 92040 61447 70 Europe/Paris 2012-01-18
-3012652 Is-sur-Tille Is-sur-Tille Is,Is-sur-Tille 47.5267 5.1065 P PPL FR A1 21 212 21317 4082 278 Europe/Paris 2012-01-18
-3012655 Issoudun Issoudun Essaudun,Issoudun,Uxellodunum 46.95 2 P PPLA3 FR A3 36 364 36088 14385 138 Europe/Paris 2011-11-02
-3012656 Issou Issou Issou 48.98994 1.79292 P PPL FR A8 78 781 78314 4469 78 Europe/Paris 2012-01-18
-3012664 Issoire Issoire Issoire 45.55 3.25 P PPLA3 FR 98 63 633 63178 15984 386 Europe/Paris 2011-11-02
-3012671 Issenheim Issenheim Isenheim 47.90357 7.25235 P PPL FR C1 68 683 68156 3443 249 Europe/Paris 2007-07-07
-3012676 Issé Isse Isse,Issé,Izeg 47.62419 -1.45152 P PPL FR B5 44 441 44075 1937 38 Europe/Paris 2012-01-18
-3012688 Isques Isques Isques 50.67391 1.65445 P PPL FR B4 62 623 62474 1162 30 Europe/Paris 2012-01-18
-3012698 Isneauville Isneauville Isneauville 49.49832 1.15431 P PPL FR A7 76 763 76377 2375 148 Europe/Paris 2012-01-18
-3012709 Isle Isle Isla,Isle 45.80272 1.21213 P PPL FR B1 87 872 87075 8085 319 Europe/Paris 2012-01-18
-3012712 Isigny-sur-Mer Isigny-sur-Mer Isigny,Isigny-sur-Mer 49.31604 -1.10384 P PPL FR 99 14 141 14342 3137 6 Europe/Paris 2012-01-18
-3012713 Isigny-le-Buat Isigny-le-Buat Isigny,Isigny-le-Buat 48.61705 -1.16994 P PPL FR 99 50 501 50256 3136 109 Europe/Paris 2012-01-18
-3012725 Isbergues Isbergues Isbergues 50.62328 2.45902 P PPL FR B4 62 622 62473 10067 20 Europe/Paris 2012-01-18
-3012732 Irvillac Irvillac Irvilhag,Irvillac 48.37011 -4.21222 P PPL FR A2 29 291 29086 1064 100 Europe/Paris 2012-01-18
-3012738 Irodouër Irodouer Irodouer,Irodouër 48.24932 -1.94959 P PPL FR A2 35 353 35135 1523 103 Europe/Paris 2012-01-18
-3012739 Irmstett Irmstett Irmstett 48.58856 7.47747 P PPL FR C1 67 673 67442 1096 186 Europe/Paris 2012-02-27
-3012742 Irigny Irigny Irigny,L'Union-sur-Rhone,L'Union-sur-Rhône 45.67362 4.81753 P PPL FR B9 69 691 69100 8869 247 Europe/Paris 2012-01-18
-3012773 Innenheim Innenheim Innenheim 48.49659 7.57439 P PPL FR C1 67 675 67223 1076 153 Europe/Paris 2011-02-14
-3012777 Ingwiller Ingwiller Ingeweiler,Ingweiler 48.87284 7.4798 P PPL FR C1 67 674 67222 4098 191 Europe/Paris 2007-07-10
-3012778 Inguiniel Inguiniel An Ignel,Inguiniel 47.97658 -3.28072 P PPL FR A2 56 561 56089 2042 139 Europe/Paris 2012-01-18
-3012780 Ingré Ingre Ingre,Ingré 47.91995 1.82778 P PPL FR A3 45 452 45169 8001 119 Europe/Paris 2012-01-18
-3012783 Ingrandes Ingrandes Ingrandes,Ingrandes-sur-Loire 47.405 -0.92336 P PPL FR B5 49 491 49160 1503 23 Europe/Paris 2012-01-18
-3012790 Ingersheim Ingersheim 48.09803 7.30308 P PPL FR C1 68 685 68155 4368 217 Europe/Paris 2007-07-03
-3012814 Incheville Incheville Incheville 50.01239 1.49438 P PPL FR A7 76 761 76374 1475 30 Europe/Paris 2012-01-18
-3012821 Imphy Imphy Imphy 46.93619 3.26037 P PPL FR A1 58 583 58134 3823 181 Europe/Paris 2012-01-18
-3012829 Illzach Illzach Illzach 47.78088 7.34662 P PPL FR C1 68 684 68154 15457 232 Europe/Paris 2012-01-18
-3012834 Illkirch-Graffenstaden Illkirch-Graffenstaden Illkirch,Illkirch-Graffenstaden 48.52894 7.71523 P PPL FR C1 67 676 67218 27261 143 Europe/Paris 2011-11-02
-3012837 Illies Illies Illies 50.56144 2.83011 P PPL FR B4 59 595 59320 1281 27 Europe/Paris 2012-01-18
-3012845 Illfurth Illfurth Illfurth 47.6729 7.26539 P PPL FR C1 68 681 68152 2044 261 Europe/Paris 2012-01-18
-3012848 Ille-sur-Têt Ille-sur-Tet Illa,Ille,Ille-sur-Tet,Ille-sur-Têt,Ille-sur-la-Tet 42.67069 2.62162 P PPL FR A9 66 663 66088 5470 154 Europe/Paris 2012-01-18
-3012851 Illats Illats Illats 44.59714 -0.37238 P PPL FR 97 33 333 33205 1214 29 Europe/Paris 2012-01-18
-3012854 Illange Illange Illange 49.33084 6.18166 P PPL FR B2 57 577 57343 2190 193 Europe/Paris 2012-01-18
-3012885 Igoville Igoville Igoville 49.3199 1.14832 P PPL FR A7 27 271 27348 1549 12 Europe/Paris 2012-01-18
-3012887 Igon Igon Igon 43.16667 -0.23333 P PPL FR 97 64 643 64270 1026 271 Europe/Paris 2011-09-11
-3012889 Igny Igny Igny 48.74437 2.22428 P PPL FR A8 91 913 91312 9968 93 Europe/Paris 2012-01-18
-3012894 Igney Igney Igney 48.27358 6.39664 P PPL FR B2 88 881 88247 1107 308 Europe/Paris 2012-01-18
-3012903 Ifs Ifs Ifs 49.14 -0.34899 P PPL FR 99 14 142 14341 9617 32 Europe/Paris 2011-01-19
-3012905 Iffendic Iffendic Iffendic,Ilfentig 48.12981 -2.03486 P PPL FR A2 35 353 35133 3357 56 Europe/Paris 2012-01-18
-3012912 Idron Idron Idron 43.28333 -0.31667 P PPL FR 97 64 643 64269 3439 241 Europe/Paris 2012-01-18
-3012921 Ibos Ibos Ibos 43.23333 0 P PPL FR B3 65 653 65226 2643 321 Europe/Paris 2012-01-18
-3012937 Hyères Hyeres Hyeres,Hyerès,Hyères,Ier,Иер 43.11954 6.13897 P PPL FR B8 83 832 83069 50487 25 Europe/Paris 2012-01-18
-3012949 Huttenheim Huttenheim 48.35864 7.57833 P PPL FR C1 67 675 67216 2250 160 Europe/Paris 2007-07-07
-3012953 Hussigny-Godbrange Hussigny-Godbrange Hussigny,Hussigny-Godbrange 49.49119 5.86683 P PPL FR B2 54 541 54270 3160 411 Europe/Paris 2012-01-18
-3012954 Husseren-Wesserling Husseren-Wesserling Husseren,Husseren-Wesserling,Hüsseren 47.88297 6.99388 P PPL FR C1 68 686 68151 1017 433 Europe/Paris 2012-01-18
-3012961 Hurigny Hurigny Hurigny 46.34722 4.79676 P PPL FR A1 71 715 71235 1533 305 Europe/Paris 2012-01-18
-3012962 Huriel Huriel Huriel 46.37368 2.47793 P PPL FR 98 03 031 03128 2445 331 Europe/Paris 2012-01-18
-3012979 Huningue Huningue 47.60477 7.57782 P PPL FR C1 68 684 68149 6375 242 Europe/Paris 2011-11-02
-3012983 Hundling Hundling Hundling 49.10814 6.97809 P PPL FR B2 57 576 57340 1431 237 Europe/Paris 2012-01-18
-3013001 Hulluch Hulluch Hulluch 50.48961 2.81232 P PPL FR B4 62 627 62464 3019 33 Europe/Paris 2012-01-18
-3013006 Huisseau-sur-Mauves Huisseau-sur-Mauves Huisseau-sur-Mauve,Huisseau-sur-Mauves 47.89318 1.70274 P PPL FR A3 45 452 45167 1744 105 Europe/Paris 2012-01-18
-3013007 Huisseau-sur-Cosson Huisseau-sur-Cosson Huisseau,Huisseau-sur-Cosson,Huisseaux-sur-Cosson 47.59335 1.45333 P PPL FR A3 41 411 41104 1990 78 Europe/Paris 2012-01-18
-3013011 Huismes Huismes Huismes 47.23319 0.25116 P PPL FR A3 37 371 37118 1456 80 Europe/Paris 2012-01-18
-3013022 Huez Huez Huez,L'Huez 45.08252 6.05848 P PPL FR B9 38 381 38191 1795 1509 Europe/Paris 2012-01-18
-3013026 Huelgoat Huelgoat An Uhelgoad,Huelgoat 48.36112 -3.74578 P PPL FR A2 29 292 29081 1759 194 Europe/Paris 2012-01-18
-3013044 Hoymille Hoymille Hoymille 50.97187 2.44738 P PPL FR B4 59 594 59319 3275 4 Europe/Paris 2012-01-18
-3013058 Houssen Houssen Houssen 48.12581 7.37841 P PPL FR C1 68 682 68146 1650 183 Europe/Paris 2012-01-18
-3013069 Hourtin Hourtin Hourtin 45.1857 -1.05719 P PPL FR 97 33 334 33203 3485 17 Europe/Paris 2012-01-18
-3013080 Houppeville Houppeville Houppeville 49.51259 1.07962 P PPL FR A7 76 763 76367 2472 152 Europe/Paris 2012-01-18
-3013082 Houplines Houplines Houplines 50.69499 2.91518 P PPL FR B4 59 595 59317 8119 17 Europe/Paris 2012-01-18
-3013083 Houplin-Ancoisne Houplin-Ancoisne Houplin,Houplin-Ancoisne 50.56284 3.0025 P PPL FR B4 59 595 59316 3703 26 Europe/Paris 2012-01-18
-3013091 Houlgate Houlgate Houlgate 49.299 -0.08153 P PPL FR 99 14 143 14338 1927 7 Europe/Paris 2012-01-18
-3013096 Houlbec-Cocherel Houlbec-Cocherel Houlbec,Houlbec-Cocherel 49.0735 1.36563 P PPL FR A7 27 273 27343 1378 134 Europe/Paris 2012-01-18
-3013097 Houilles Houilles Houilles 48.92161 2.19263 P PPL FR A8 78 783 78311 31121 30 Europe/Paris 2012-01-18
-3013115 Houdemont Houdemont Hondimont 48.65 6.18333 P PPL FR B2 54 543 54265 2425 239 Europe/Paris 2007-11-17
-3013120 Houdan Houdan Houdan 48.79044 1.60007 P PPL FR A8 78 781 78310 3150 108 Europe/Paris 2012-01-18
-3013122 Houdain Houdain Houdain 50.4504 2.53777 P PPL FR B4 62 622 62457 7622 57 Europe/Paris 2012-01-18
-3013151 Hornoy-le-Bourg Hornoy-le-Bourg 49.85 1.9 P PPL FR B6 80 802 80443 1489 165 Europe/Paris 2007-11-14
-3013152 Hornaing Hornaing Hornaing 50.36835 3.33707 P PPL FR B4 59 593 59314 2998 22 Europe/Paris 2012-01-18
-3013153 Horgues Horgues Horgues 43.18865 0.08733 P PPL FR B3 65 653 65223 1040 360 Europe/Paris 2012-01-18
-3013154 Hordain Hordain Hordain 50.26306 3.31358 P PPL FR B4 59 596 59313 1214 39 Europe/Paris 2012-01-18
-3013155 Horbourg-Wihr Horbourg-Wihr 48.08106 7.3938 P PPL FR C1 68 682 68145 5358 188 Europe/Paris 2007-11-14
-3013173 Honfleur Honfleur Honfleur,Onfljor,onfururu,Онфлёр,オンフルール 49.41985 0.23294 P PPL FR 99 14 143 14333 8148 6 Europe/Paris 2011-11-02
-3013174 Hondschoote Hondschoote Hondschoote 50.978 2.58372 P PPL FR B4 59 594 59309 3742 5 Europe/Paris 2012-01-18
-3013195 Homécourt Homecourt Homecourt,Homécourt 49.22111 5.98445 P PPL FR B2 54 541 54263 6971 192 Europe/Paris 2012-01-18
-3013196 Hombourg-Haut Hombourg-Haut Hombourg-Haut,Hombourg-l'Eveque,Hombourg-l'Évéque,Hombourg-le-Haut 49.12359 6.77397 P PPL FR B2 57 573 57332 9702 231 Europe/Paris 2012-01-18
-3013200 Homblières Homblieres Homblieres,Homblières 49.85031 3.36456 P PPL FR B6 02 023 02383 1493 82 Europe/Paris 2012-01-18
-3013201 Hombleux Hombleux Hombleux 49.73942 2.98574 P PPL FR B6 80 804 80442 1043 65 Europe/Paris 2012-01-18
-3013204 Holving Holving Holving,Holvingen 49.00965 6.96529 P PPL FR B2 57 576 57330 1109 224 Europe/Paris 2012-01-18
-3013205 Holtzwihr Holtzwihr Holtzwihr 48.11278 7.42046 P PPL FR C1 68 682 68143 1129 180 Europe/Paris 2012-01-18
-3013206 Holtzheim Holtzheim Holtzheim 48.5582 7.64434 P PPL FR C1 67 676 67212 2900 149 Europe/Paris 2011-02-14
-3013208 Holnon Holnon Holnon 49.86086 3.21509 P PPL FR B6 02 023 02382 1348 115 Europe/Paris 2012-01-18
-3013225 Hœrdt Hoerdt 48.7 7.78333 P PPL FR C1 67 676 67205 4347 138 Europe/Paris 2011-11-02
-3013226 Hœnheim Hoenheim 48.62224 7.75549 P PPL FR C1 67 676 67204 10921 144 Europe/Paris 2011-02-14
-3013248 Hochstatt Hochstatt Hochstatt 47.70343 7.27584 P PPL FR C1 68 681 68141 1973 274 Europe/Paris 2012-01-18
-3013249 Hochfelden Hochfelden 48.75738 7.56769 P PPL FR C1 67 676 67202 3120 174 Europe/Paris 2007-07-07
-3013255 Hirtzfelden Hirtzfelden Hirtzfelden,Hirzfelden 47.91079 7.44669 P PPL FR C1 68 683 68140 1030 208 Europe/Paris 2012-01-18
-3013257 Hirtzbach Hirtzbach Hirtzbach 47.59618 7.22043 P PPL FR C1 68 681 68139 1239 312 Europe/Paris 2012-01-18
-3013258 Hirson Hirson Hirson 49.92262 4.08259 P PPL FR B6 02 025 02381 11133 173 Europe/Paris 2012-01-18
-3013259 Hirsingue Hirsingue Hirsingen,Hirsingue 47.58655 7.2513 P PPL FR C1 68 681 68138 2156 318 Europe/Paris 2012-01-18
-3013263 Hirel Hirel Hirel 48.60502 -1.80224 P PPL FR A2 35 354 35132 1288 7 Europe/Paris 2012-01-18
-3013268 Hinx Hinx Hinx 43.7019 -0.92591 P PPL FR 97 40 401 40126 1204 50 Europe/Paris 2012-01-18
-3013273 Hinges Hinges Hinges 50.56674 2.6216 P PPL FR B4 62 622 62454 2209 41 Europe/Paris 2012-01-18
-3013275 Hindisheim Hindisheim Hindisheim 48.46837 7.63859 P PPL FR C1 67 675 67197 1441 150 Europe/Paris 2011-02-14
-3013282 Hilsenheim Hilsenheim Hilsenheim 48.28756 7.56522 P PPL FR C1 67 675 67196 2244 164 Europe/Paris 2012-01-18
-3013283 Hillion Hillion Hilion,Hillion 48.51429 -2.66634 P PPL FR A2 22 224 22081 3943 27 Europe/Paris 2012-01-18
-3013294 Hiersac Hiersac Hiersac 45.66667 0 P PPL FR B7 16 161 16163 1037 74 Europe/Paris 2012-01-18
-3013297 Hières-sur-Amby Hieres-sur-Amby Hieres,Hieres-sur-Amby,Hières,Hières-sur-Amby 45.79783 5.29467 P PPL FR B9 38 382 38190 1082 217 Europe/Paris 2012-01-18
-3013305 Heyrieux Heyrieux Heyrieux 45.62853 5.05849 P PPL FR B9 38 383 38189 4475 286 Europe/Paris 2012-01-18
-3013321 Heuringhem Heuringhem Heuringhem 50.69638 2.28333 P PPL FR B4 62 625 62452 1327 43 Europe/Paris 2012-01-18
-3013334 Heugas Heugas Heugas 43.64334 -1.08143 P PPL FR 97 40 401 40125 1236 52 Europe/Paris 2012-01-18
-3013336 Heudreville-sur-Eure Heudreville-sur-Eure Heudreville,Heudreville-sur-Eure 49.14089 1.18813 P PPL FR A7 27 271 27335 1040 20 Europe/Paris 2012-01-18
-3013350 Hettange-Grande Hettange-Grande Hettange-Grande,Hettange-la-Grande 49.40639 6.15057 P PPL FR B2 57 577 57323 6922 178 Europe/Paris 2012-01-18
-3013361 Hésingue Hesingue Hesingen,Hesingue,Hésingue 47.57621 7.52244 P PPL FR C1 68 684 68135 2342 274 Europe/Paris 2012-01-18
-3013365 Hesdin Hesdin Hesdin 50.3735 2.0382 P PPL FR B4 62 624 62447 2790 30 Europe/Paris 2012-01-18
-3013370 Herzeele Herzeele Herzeele 50.88584 2.5351 P PPL FR B4 59 594 59305 1328 12 Europe/Paris 2012-01-18
-3013373 Héry Hery Hery,Héry 47.90146 3.62868 P PPL FR A1 89 891 89201 1813 111 Europe/Paris 2012-01-18
-3013380 Hersin-Coupigny Hersin-Coupigny Hersin,Hersin-Coupigny 50.44796 2.6494 P PPL FR B4 62 627 62443 6609 74 Europe/Paris 2012-01-18
-3013381 Herserange Herserange Herserange 49.51758 5.78163 P PPL FR B2 54 541 54261 4438 280 Europe/Paris 2012-01-18
-3013385 Herry Herry Herry 47.21667 2.95386 P PPL FR A3 18 181 18110 1026 161 Europe/Paris 2012-01-18
-3013386 Herrlisheim-près-Colmar Herrlisheim-pres-Colmar Herrlisheim 48.01835 7.32668 P PPL FR C1 68 682 68134 1624 193 Europe/Paris 2007-07-07
-3013387 Herrlisheim Herrlisheim Herrlisheim-pres-Colmar,Herrlisheim-près-Colmar 48.73049 7.90535 P PPL FR C1 67 672 67194 4428 125 Europe/Paris 2007-07-05
-3013402 Hérouvillette Herouvillette Herouvillette,Hérouvillette 49.2213 -0.24348 P PPL FR 99 14 142 14328 1168 15 Europe/Paris 2012-01-18
-3013403 Hérouville-Saint-Clair Herouville-Saint-Clair Ehruvil'-Sen-Kler,Herouville,Herouville Saint-Clair,Herouville-Saint-Clair,Hérouville,Hérouville Saint-Clair,Hérouville-Saint-Clair,Эрувиль-Сен-Клер 49.21088 -0.30653 P PPL FR 99 14 142 14327 24258 5 Europe/Paris 2012-01-18
-3013410 Hermonville Hermonville Hermonville 49.33654 3.91011 P PPL FR A4 51 513 51291 1250 106 Europe/Paris 2012-01-18
-3013416 Hermies Hermies Hermies 50.11126 3.04202 P PPL FR B4 62 621 62440 1159 115 Europe/Paris 2012-01-18
-3013424 Hermes Hermes Hermes 49.36032 2.24461 P PPL FR B6 60 601 60313 2407 58 Europe/Paris 2012-01-18
-3013433 Hermanville-sur-Mer Hermanville-sur-Mer Hermanville,Hermanville-sur-Mer 49.28464 -0.31544 P PPL FR 99 14 142 14325 2785 9 Europe/Paris 2012-01-18
-3013442 Herlies Herlies Herlies 50.57753 2.85285 P PPL FR B4 59 595 59303 2052 40 Europe/Paris 2012-01-18
-3013447 Hérin Herin Herin,Hérin 50.35557 3.4531 P PPL FR B4 59 596 59302 4025 45 Europe/Paris 2012-01-18
-3013448 Hérimoncourt Herimoncourt Herimoncourt,Hérimoncourt 47.44284 6.88242 P PPL FR A6 25 252 25304 4099 360 Europe/Paris 2012-01-18
-3013452 Héricy Hericy Hericy,Hericy-sur Seine,Héricy,Héricy-sur Seine 48.44848 2.76445 P PPL FR A8 77 774 77226 2842 51 Europe/Paris 2012-01-18
-3013456 Héricourt Hericourt Hericourt,Héricourt 47.57305 6.76139 P PPL FR A6 70 701 70285 10985 329 Europe/Paris 2012-01-18
-3013457 Héric Heric Heric,Hierig,Héric 47.41417 -1.65309 P PPL FR B5 44 441 44073 4286 35 Europe/Paris 2012-01-18
-3013459 Hergnies Hergnies Hergines,Hergnies 50.47287 3.52612 P PPL FR B4 59 596 59301 3930 23 Europe/Paris 2012-01-18
-3013462 Hérépian Herepian Herepian,Hérépian 43.593 3.11595 P PPL FR A9 34 341 34119 1550 191 Europe/Paris 2012-01-18
-3013477 Herblay Herblay Herblay 48.98994 2.1699 P PPL FR A8 95 951 95306 25153 68 Europe/Paris 2012-01-18
-3013478 Herbitzheim Herbitzheim Herbitzheim 49.01407 7.09022 P PPL FR C1 67 674 67191 1949 227 Europe/Paris 2012-01-18
-3013484 Herbignac Herbignac Erbigneg,Herbignac 47.44822 -2.3181 P PPL FR B5 44 443 44072 4724 19 Europe/Paris 2012-01-18
-3013486 Herbeys Herbeys Herbey,Herbeys 45.13735 5.79592 P PPL FR B9 38 381 38188 1239 515 Europe/Paris 2012-01-18
-3013496 Herbault Herbault Herbault 47.60501 1.13934 P PPL FR A3 41 411 41101 1175 136 Europe/Paris 2012-01-18
-3013504 Henvic Henvic Henvic,Henvig 48.63256 -3.92623 P PPL FR A2 29 293 29079 1247 71 Europe/Paris 2012-01-18
-3013510 Henrichemont Henrichemont Henrichement,Henrichemont 47.30333 2.52458 P PPL FR A3 18 181 18109 1847 286 Europe/Paris 2012-01-18
-3013512 Hénouville Henouville Henouville,Hénouville 49.4789 0.96367 P PPL FR A7 76 763 76354 1247 131 Europe/Paris 2012-01-18
-3013514 Hénon Henon Henon,Hénon 48.38433 -2.68334 P PPL FR A2 22 224 22079 1794 150 Europe/Paris 2012-01-18
-3013521 Hennebont Hennebont Henbont,Hennebont 47.80512 -3.27337 P PPL FR A2 56 561 56083 14288 22 Europe/Paris 2012-01-18
-3013525 Hénin-Beaumont Henin-Beaumont Ehnen-Bomon,Henin-Beaumont,Henin-Lietard,Hénin-Beaumont,Hénin-Liétard,L'Humanite,L'Humanité,Энен-Бомон 50.41359 2.96485 P PPL FR B4 62 627 62427 25371 31 Europe/Paris 2012-01-18
-3013534 Hendaye Hendaye Hendaia,Hendaya,Hendaye 43.37172 -1.77382 P PPL FR 97 64 641 64260 14415 8 Europe/Paris 2012-01-18
-3013536 Hénanbihen Henanbihen Henanbihen,Henant-Bihan,Hénanbihen 48.56072 -2.37602 P PPL FR A2 22 221 22076 1354 71 Europe/Paris 2012-01-18
-3013549 Hem Hem 50.65256 3.18681 P PPL FR B4 59 595 59299 19699 31 Europe/Paris 2010-01-11
-3013569 Helfaut Helfaut Helfaut,Helfaut-Bliques 50.69783 2.24234 P PPL FR B4 62 625 62423 1748 93 Europe/Paris 2012-01-18
-3013571 Hélesmes Helesmes Helesmes,Hélesmes 50.37036 3.35918 P PPL FR B4 59 596 59297 1856 21 Europe/Paris 2012-01-18
-3013578 Heimsbrunn Heimsbrunn Heimsbrunn 47.72647 7.22638 P PPL FR C1 68 684 68129 1284 280 Europe/Paris 2012-01-18
-3013585 Heillecourt Heillecourt Heillecourt 48.65854 6.20711 P PPL FR B2 54 543 54257 6327 228 Europe/Paris 2012-01-18
-3013592 Hégenheim Hegenheim Hegenheim,Hégenheim 47.56251 7.52684 P PPL FR C1 68 684 68126 2894 279 Europe/Paris 2012-01-18
-3013596 Hédé-Bazouges Hede-Bazouges Hazhou,Hazhoù,Hede,Hédé 48.3 -1.8 P PPL FR A2 35 353 35130 2076 52 Europe/Paris 2011-03-25
-3013619 Hazebrouck Hazebrouck Azebruk,Hazebroek,Hazebrouck,Oazebroek,Азебрук 50.72374 2.53729 P PPL FR B4 59 594 59295 23307 26 Europe/Paris 2012-01-18
-3013626 Haybes Haybes Haybes,Haybes-sur-Meuse 50.00458 4.70496 P PPL FR A4 08 081 08222 2101 165 Europe/Paris 2012-01-18
-3013627 Hayange Hayange Hayange,Hyange 49.33428 6.05268 P PPL FR B2 57 578 57306 15501 194 Europe/Paris 2012-01-18
-3013635 Haverskerque Haverskerque Haverskerque 50.64089 2.54162 P PPL FR B4 59 594 59293 1475 18 Europe/Paris 2012-01-18
-3013637 Haveluy Haveluy Haveluy 50.35289 3.40389 P PPL FR B4 59 596 59292 3136 29 Europe/Paris 2012-01-18
-3013644 Hauville Hauville Hauville 49.39645 0.77232 P PPL FR A7 27 272 27316 1172 143 Europe/Paris 2012-01-18
-3013673 Hautot-sur-Mer Hautot-sur-Mer Hautot,Hautot-sur-Mer 49.89789 1.02884 P PPL FR A7 76 761 76349 2193 100 Europe/Paris 2012-01-18
-3013681 Hautmont Hautmont 50.25077 3.92143 P PPL FR B4 59 591 59291 15540 141 Europe/Paris 2009-01-18
-3013701 Yutz Yutz Yutz Haute 49.35571 6.1926 P PPL FR B2 57 577 57757 15659 156 Europe/Paris 2011-11-02
-3013705 Hauteville-Lompnes Hauteville-Lompnes Hauteville,Hauteville-Lompnes 45.97794 5.60114 P PPL FR B9 01 011 01185 4096 804 Europe/Paris 2011-01-14
-3013706 Hauteville-lès-Dijon Hauteville-les-Dijon Hauteville,Hauteville-les-Dijon,Hauteville-lès-Dijon 47.36602 4.99375 P PPL FR A1 21 212 21315 1119 386 Europe/Paris 2012-01-18
-3013741 Haute-Rivoire Haute-Rivoire Haute-Rivoire 45.71526 4.39662 P PPL FR B9 69 691 69099 1244 595 Europe/Paris 2012-01-18
-3013742 Hauterives Hauterives Hauterives 45.2562 5.02572 P PPL FR B9 26 263 26148 1438 311 Europe/Paris 2012-01-18
-3013748 Hauterive Hauterive Hauterive 46.09005 3.44593 P PPL FR 98 03 033 03126 1072 259 Europe/Paris 2012-01-18
-3013766 Haute-Goulaine Haute-Goulaine Gorre-Goulen,Haute-Goulaine 47.19905 -1.42941 P PPL FR B5 44 442 44071 5290 24 Europe/Paris 2012-01-18
-3013769 Hautefort Hautefort Aignan-Haute-Vue,Hautefort 45.25953 1.14879 P PPL FR 97 24 243 24210 1244 204 Europe/Paris 2012-01-18
-3013830 Haussy Haussy Haussy 50.2183 3.47683 P PPL FR B4 59 592 59289 1704 57 Europe/Paris 2012-01-18
-3013845 Haulchin Haulchin Haulchin 50.3172 3.43599 P PPL FR B4 59 596 59288 2393 32 Europe/Paris 2012-01-18
-3013855 Haucourt-Moulaine Haucourt-Moulaine Haucourt,Haucourt-Moulaine 49.49022 5.80284 P PPL FR B2 54 541 54254 2891 377 Europe/Paris 2012-01-18
-3013862 Haubourdin Haubourdin Haubourdin 50.60826 2.99143 P PPL FR B4 59 595 59286 15694 27 Europe/Paris 2012-01-18
-3013875 Haspres Haspres Haspres 50.25829 3.41695 P PPL FR B4 59 596 59285 2812 44 Europe/Paris 2012-01-18
-3013877 Hasparren Hasparren Hasparren,Hazparne 43.38377 -1.30499 P PPL FR 97 64 641 64256 6250 88 Europe/Paris 2012-01-18
-3013878 Hasnon Hasnon Hasnon 50.42472 3.38657 P PPL FR B4 59 596 59284 3248 16 Europe/Paris 2012-01-18
-3013908 Harnes Harnes Harnes 50.44643 2.90481 P PPL FR B4 62 627 62413 13569 35 Europe/Paris 2012-01-18
-3013911 Harly Harly Harly 49.83766 3.31001 P PPL FR B6 02 023 02371 1839 95 Europe/Paris 2012-01-18
-3013921 Hargarten-aux-Mines Hargarten-aux-Mines Hargarten,Hargarten-aux-Mines 49.22429 6.60942 P PPL FR B2 57 571 57296 1168 229 Europe/Paris 2012-01-18
-3013922 Harfleur Harfleur Harfleur,Port de Harfleur 49.5066 0.19827 P PPL FR A7 76 762 76341 8286 4 Europe/Paris 2008-01-05
-3013926 Hardricourt Hardricourt Hardricourt 49.00779 1.89389 P PPL FR A8 78 781 78299 1941 61 Europe/Paris 2012-01-18
-3013935 Hardinghen Hardinghen Hardinghen 50.80414 1.82122 P PPL FR B4 62 626 62412 1030 115 Europe/Paris 2012-01-18
-3013955 Harbonnières Harbonnieres Harbonnieres,Harbonnières 49.84958 2.66812 P PPL FR B6 80 803 80417 1325 89 Europe/Paris 2012-01-18
-3013971 Hanvec Hanvec Hanvec,Hanveg,Hañveg 48.32692 -4.1595 P PPL FR A2 29 291 29078 1690 103 Europe/Paris 2012-01-18
-3013994 Hangenbieten Hangenbieten Hangenbieten 48.55985 7.61464 P PPL FR C1 67 676 67182 1472 150 Europe/Paris 2011-02-14
-3014001 Hanches Hanches Hanches 48.60115 1.65137 P PPL FR A3 28 281 28191 2583 112 Europe/Paris 2012-01-18
-3014006 Ham-sous-Varsberg Ham-sous-Varsberg Ham,Ham-sous-Varsberg 49.18031 6.64626 P PPL FR B2 57 571 57288 2790 224 Europe/Paris 2012-01-18
-3014014 Hames-Boucres Hames-Boucres Hames,Hames-Boucres 50.88178 1.84338 P PPL FR B4 62 626 62408 1221 6 Europe/Paris 2012-01-18
-3014023 Hambye Hambye Hambye 48.94798 -1.26417 P PPL FR 99 50 503 50228 1141 91 Europe/Paris 2012-01-18
-3014026 Hambach Hambach Hambach 49.06263 7.04246 P PPL FR B2 57 576 57289 2587 242 Europe/Paris 2012-01-18
-3014029 Ham Ham Ham,Sparte 49.74721 3.07301 P PPL FR B6 80 804 80410 5698 67 Europe/Paris 2012-01-18
-3014034 Halluin Halluin Halluin 50.78628 3.12611 P PPL FR B4 59 595 59279 20171 17 Europe/Paris 2012-01-18
-3014044 Hallines Hallines Hallines 50.71087 2.22629 P PPL FR B4 62 625 62403 1436 34 Europe/Paris 2012-01-18
-3014049 Hallennes-lez-Haubourdin Hallennes-lez-Haubourdin Hallennes,Hallennes-lez-Haubourdin 50.61667 2.96667 P PPL FR B4 59 595 59278 3872 25 Europe/Paris 2007-11-20
-3014050 Hallencourt Hallencourt Hallencourt 49.99201 1.87649 P PPL FR B6 80 801 80406 1372 113 Europe/Paris 2012-01-18
-3014060 Haisnes Haisnes Haisnes,Haisnes-lez la Bassee,Haisnes-lez la Bassée 50.50776 2.79416 P PPL FR B4 62 622 62401 4436 27 Europe/Paris 2012-01-18
-3014067 Haillicourt Haillicourt Haillicourt 50.47519 2.57458 P PPL FR B4 62 622 62400 5121 65 Europe/Paris 2012-01-18
-3014078 Haguenau Haguenau Agenu,Agijeno,Hagenau,Haguenau,Khaguenau,Агену,Агијено,Хагуенау 48.81557 7.79051 P PPLA3 FR C1 67 672 67180 38721 144 Europe/Paris 2011-11-02
-3014080 Hagondange Hagondange Hagondange 49.25134 6.16812 P PPL FR B2 57 574 57283 9039 162 Europe/Paris 2012-01-18
-3014084 Hagetmau Hagetmau 43.65893 -0.59172 P PPL FR 97 40 402 40119 4798 118 Europe/Paris 2011-11-02
-3014088 Hagenthal-le-Bas Hagenthal-le-Bas 47.52497 7.47783 P PPL FR C1 68 684 68120 1050 360 Europe/Paris 2008-12-23
-3014096 Hadol Hadol Hadol 48.08983 6.47662 P PPL FR B2 88 881 88225 2184 406 Europe/Paris 2012-01-18
-3014103 Habsheim Habsheim Habsheim 47.73087 7.41855 P PPL FR C1 68 684 68118 4534 237 Europe/Paris 2012-01-18
-3014114 Habas Habas Habas 43.5718 -0.92976 P PPL FR 97 40 401 40118 1470 110 Europe/Paris 2012-01-18
-3014128 Gy Gy Gy 47.40588 5.81226 P PPL FR A6 70 702 70282 1043 233 Europe/Paris 2012-01-18
-3014143 Guyancourt Guyancourt Guyancourt 48.77334 2.07393 P PPL FR A8 78 784 78297 31989 161 Europe/Paris 2012-01-18
-3014155 Gurgy Gurgy Gurgy 47.86712 3.56341 P PPL FR A1 89 891 89198 1718 90 Europe/Paris 2012-01-18
-3014167 Gundershoffen Gundershoffen Gundershoffen 48.90648 7.66096 P PPL FR C1 67 672 67176 3710 175 Europe/Paris 2012-01-18
-3014173 Gumbrechtshoffen Gumbrechtshoffen Niederbronn 48.9058 7.62915 P PPL FR C1 67 672 67174 1299 174 Europe/Paris 2007-07-13
-3014175 Gujan-Mestras Gujan-Mestras Gujan,Gujan-Mestras,Gujan-et-Mestras 44.63333 -1.06667 P PPL FR 97 33 336 33199 19184 7 Europe/Paris 2012-01-18
-3014185 Guîtres Guitres Guitres,Guîtres 45.03333 -0.18333 P PPL FR 97 33 335 33198 1607 9 Europe/Paris 2012-01-18
-3014192 Guissény Guisseny Guisseny,Guissény,Gwiseni 48.63292 -4.40884 P PPL FR A2 29 291 29077 1938 16 Europe/Paris 2012-01-18
-3014195 Guise Guise Beaupre,Beaupré,Giz,Guisa,Guise,Reunion-sur-Oise,Réunion-sur-Oise,ji si,Гиз,吉斯 49.90055 3.62801 P PPL FR B6 02 025 02361 6033 98 Europe/Paris 2012-01-18
-3014196 Guiscriff Guiscriff Guiscriff,Guiseriff,Gwiskri 48.04944 -3.64356 P PPL FR A2 56 562 56081 2554 192 Europe/Paris 2012-01-18
-3014197 Guiscard Guiscard Guiscard 49.6566 3.05127 P PPL FR B6 60 603 60291 1802 62 Europe/Paris 2012-01-18
-3014208 Guipry Guipry Guipry,Gwipri 47.82637 -1.84218 P PPL FR A2 35 352 35129 3281 43 Europe/Paris 2012-01-18
-3014212 Guipel Guipel Guipel,Gwipedel 48.29937 -1.71866 P PPL FR A2 35 353 35128 1557 75 Europe/Paris 2012-01-18
-3014213 Guipavas Guipavas Guipavas,Gwipavaz 48.43522 -4.39722 P PPL FR A2 29 291 29075 13755 85 Europe/Paris 2012-01-18
-3014221 Guingamp Guingamp Guingamp,Gwengamp 48.55 -3.15 P PPLA3 FR A2 22 222 22070 9023 86 Europe/Paris 2011-11-02
-3014224 Guînes Guines Guines,Guines-en-Calaisis,Guînes,Guînes-en-Calaisis 50.86708 1.87025 P PPL FR B4 62 626 62397 5342 13 Europe/Paris 2012-01-18
-3014239 Guilvinec Guilvinec Ar Gelveneg,Le Guilvinec 47.79861 -4.28111 P PPL FR A2 29 294 29072 3201 6 Europe/Paris 2009-09-07
-3014255 Guilliers Guilliers Guilliers,Gwiler-Porc'hoed 48.04286 -2.40562 P PPL FR A2 56 563 56080 1453 89 Europe/Paris 2012-01-18
-3014258 Guillestre Guillestre 44.6595 6.64948 P PPL FR B8 05 051 05065 2409 1000 1003 Europe/Paris 2008-01-24
-3014274 Guillac Guillac Gilieg,Guillac 47.91096 -2.46572 P PPL FR A2 56 562 56079 1170 61 Europe/Paris 2012-01-18
-3014277 Guilherand-Granges Guilherand-Granges Granges-les-Valence,Granges-lès-Valence 44.93278 4.87372 P PPL FR B9 07 073 07102 11365 112 Europe/Paris 2011-11-02
-3014280 Guilers Guilers Guilers,Gwiler-Leon 48.42545 -4.55801 P PPL FR A2 29 291 29069 7328 93 Europe/Paris 2012-01-18
-3014289 Guignicourt Guignicourt Guignicourt 49.43714 3.96756 P PPL FR B6 02 022 02360 2226 66 Europe/Paris 2012-01-18
-3014292 Guignes Guignes Guignes-Libre,Guignes-Rabutin 48.63333 2.8 P PPL FR A8 77 772 77222 2639 93 Europe/Paris 2007-11-14
-3014294 Guignen Guignen Guignen,Gwinien 47.92009 -1.86161 P PPL FR A2 35 352 35127 2645 72 Europe/Paris 2012-01-18
-3014304 Guiclan Guiclan Guiclan,Gwiglann 48.54967 -3.96211 P PPL FR A2 29 293 29068 2138 107 Europe/Paris 2012-01-18
-3014305 Guichen Guichen Guichen,Gwizien 47.96762 -1.79534 P PPL FR A2 35 352 35126 7142 81 Europe/Paris 2012-01-18
-3014327 Guewenheim Guewenheim 47.75283 7.09253 P PPL FR C1 68 686 68115 1229 333 Europe/Paris 2007-07-07
-3014330 Gueux Gueux Gueux 49.25048 3.91024 P PPL FR A4 51 513 51282 1453 96 Europe/Paris 2012-01-18
-3014334 Gueugnon Gueugnon Gueugnon 46.60357 4.06286 P PPL FR A1 71 713 71230 8486 243 Europe/Paris 2012-01-18
-3014340 Guéthary Guethary Getaria,Guethary,Guéthary 43.42285 -1.61073 P PPL FR 97 64 641 64249 1370 46 Europe/Paris 2012-01-18
-3014346 Guesnain Guesnain Guesnain 50.35 3.15 P PPL FR B4 59 593 59276 4987 23 Europe/Paris 2012-01-18
-3014351 Guerville Guerville Guerville 48.94388 1.73429 P PPL FR A8 78 781 78291 1990 92 Europe/Paris 2012-01-18
-3014365 Guern Guern Guern,Gwern 48.02964 -3.09145 P PPL FR A2 56 562 56076 1500 140 Europe/Paris 2012-01-18
-3014367 Guermantes Guermantes 48.85303 2.70495 P PPL FR A8 77 775 77221 1537 103 Europe/Paris 2007-11-04
-3014369 Guerlesquin Guerlesquin Guerlesquin,Gwerliskin 48.51758 -3.58583 P PPL FR A2 29 293 29067 1451 198 Europe/Paris 2012-01-18
-3014377 Guérigny Guerigny Guerigny,Guérigny 47.08703 3.20182 P PPL FR A1 58 583 58131 2486 226 Europe/Paris 2012-01-18
-3014383 Guéret Gueret 46.16667 1.86667 P PPLA2 FR B1 23 232 23096 15853 504 Europe/Paris 2011-11-02
-3014384 Guéreins Guereins Guereins,Guéreins 46.10628 4.77902 P PPL FR B9 01 012 01183 1165 175 Europe/Paris 2012-01-18
-3014391 Guérard Guerard Guerard,Guérard 48.82086 2.95969 P PPL FR A8 77 771 77219 2134 71 Europe/Paris 2012-01-18
-3014392 Guérande Guerande Guerande,Guérande,Gwenrann 47.32911 -2.42829 P PPL FR B5 44 443 44069 16523 52 Europe/Paris 2012-01-18
-3014393 Guer Guer Guer,Gwern-Porc'hoed 47.90619 -2.12314 P PPL FR A2 56 563 56075 6308 46 Europe/Paris 2012-01-18
-3014398 Guenrouet Guenrouet Guenrouet,Gwenred 47.51881 -1.95381 P PPL FR B5 44 443 44068 2601 35 Europe/Paris 2012-01-18
-3014402 Guénin Guenin Guenin,Guénin,Gwennin 47.90757 -2.97941 P PPL FR A2 56 562 56074 1304 70 Europe/Paris 2012-01-18
-3014403 Guengat Guengat Guengat,Gwengad 48.04193 -4.2047 P PPL FR A2 29 294 29066 1686 111 Europe/Paris 2012-01-18
-3014407 Guénange Guenange Guenange,Guénange 49.29946 6.20752 P PPL FR B2 57 577 57269 7409 180 Europe/Paris 2012-01-18
-3014412 Guémené-sur-Scorff Guemene-sur-Scorff Ar Gemene,Guemene,Guémene 48.06667 -3.2 P PPL FR A2 56 562 56073 1289 178 Europe/Paris 2007-11-17
-3014413 Guémené-Penfao Guemene-Penfao Guemene,Guemene-Pentao,Guéméne,Guéméné-Pentao,Gwenvenez-Penfaou 47.63333 -1.83333 P PPL FR B5 44 441 44067 4963 31 Europe/Paris 2007-11-17
-3014415 Guémar Guemar Guemer 48.18869 7.39706 P PPL FR C1 68 685 68113 1370 178 Europe/Paris 2007-07-03
-3014421 Guégon Guegon Guegon,Guégon,Gwegon 47.93707 -2.5645 P PPL FR A2 56 562 56070 2587 89 Europe/Paris 2012-01-18
-3014430 Guécélard Guecelard Guecelard,Guécélard 47.87751 0.1293 P PPL FR B5 72 721 72146 2734 40 Europe/Paris 2012-01-18
-3014433 Guebwiller Guebwiller Gebweiler,Guebwiller 47.91667 7.2 P PPLA3 FR C1 68 683 68112 12548 324 Europe/Paris 2011-11-02
-3014450 Guarbecque Guarbecque Guarbecque 50.61162 2.48895 P PPL FR B4 62 622 62391 1299 20 Europe/Paris 2012-01-18
-3014466 Gruson Gruson Gruson 50.59583 3.20777 P PPL FR B4 59 595 59275 1228 44 Europe/Paris 2012-01-18
-3014477 Gruissan Gruissan 43.10759 3.08651 P PPL FR A9 11 113 11170 3271 7 Europe/Paris 2011-01-11
-3014481 Gruffy Gruffy Gruffy 45.78716 6.05504 P PPL FR B9 74 741 74138 1365 588 Europe/Paris 2012-01-18
-3014490 Gruchet-le-Valasse Gruchet-le-Valasse Gruchet,Gruchet-le-Valass,Gruchet-le-Valasse 49.55466 0.48684 P PPL FR A7 76 762 76329 2788 26 Europe/Paris 2012-01-18
-3014517 Grosseto-Prugna Grosseto-Prugna Grosseto,Grosseto-Prugna 41.87097 8.96403 P PPL FR A5 2A 2A1 2A130 2628 442 Europe/Paris 2012-01-18
-3014527 Gros-Réderching Gros-Rederching Gros-Rederching,Gros-Réderching,Gross Rederchingen,Gross Réderchingen 49.06787 7.21889 P PPL FR B2 57 576 57261 1177 281 Europe/Paris 2012-01-18
-3014540 Groslay Groslay Groslay 48.98561 2.34736 P PPL FR A8 95 952 95288 7902 69 Europe/Paris 2012-01-18
-3014549 Grosbreuil Grosbreuil Grosbreuil 46.53946 -1.61655 P PPL FR B5 85 853 85103 1344 39 Europe/Paris 2012-01-18
-3014560 Grosbliederstroff Grosbliederstroff Gross-Blittersdorf,Grossbliederstroff 49.15808 7.02413 P PPL FR B2 57 576 57260 3433 215 Europe/Paris 2010-04-12
-3014574 Gron Gron Gron 48.15967 3.26345 P PPL FR A1 89 893 89195 1232 81 Europe/Paris 2011-01-06
-3014579 Groix Groix Enez-Groe,Groix 47.63887 -3.4543 P PPL FR A2 56 561 56069 2429 39 Europe/Paris 2012-01-18
-3014580 Groisy Groisy Groisy 46.01835 6.17083 P PPL FR B9 74 741 74137 3171 748 Europe/Paris 2012-01-18
-3014581 Groissiat Groissiat Groissiat 46.22213 5.60775 P PPL FR B9 01 014 01181 1011 566 Europe/Paris 2011-01-14
-3014587 Groffliers Groffliers Groffliers 50.38444 1.61474 P PPL FR B4 62 624 62390 1472 7 Europe/Paris 2012-01-18
-3014600 Grisy-Suisnes Grisy-Suisnes Grisy,Grisy-Suisnes 48.68538 2.66781 P PPL FR A8 77 772 77217 2200 99 Europe/Paris 2012-01-18
-3014606 Grisolles Grisolles Grisolles 43.8292 1.29673 P PPL FR B3 82 822 82075 3119 110 Europe/Paris 2011-01-09
-3014634 Grimaud Grimaud Athenople,Athènople,Athénople,Grimaud,Port Grimaud 43.27049 6.52491 P PPL FR B8 83 831 83068 4122 46 Europe/Paris 2012-01-18
-3014640 Grillon Grillon Grillon 44.39152 4.9304 P PPL FR B8 84 842 84053 1826 176 Europe/Paris 2012-01-18
-3014646 Grigny Grigny Grigny 48.65412 2.39343 P PPL FR A8 91 912 91286 24940 85 Europe/Paris 2011-11-02
-3014647 Grigny Grigny Grigny 45.61128 4.79589 P PPL FR B9 69 691 69096 8331 172 Europe/Paris 2012-01-18
-3014655 Grignon Grignon Brumaire,Grignon 45.65164 6.37727 P PPL FR B9 73 731 73130 1957 331 Europe/Paris 2012-01-18
-3014657 Grignols Grignols Grignols 44.38842 -0.04287 P PPL FR 97 33 333 33195 1148 152 Europe/Paris 2012-01-18
-3014661 Grignan Grignan Grignan 44.41976 4.90826 P PPL FR B9 26 262 26146 1443 204 Europe/Paris 2012-01-18
-3014663 Griesheim-près-Molsheim Griesheim-pres-Molsheim Griesheim,Griesheim-pres-Molsheim,Griesheim-près-Molsheim 48.50296 7.53027 P PPL FR C1 67 673 67172 1822 172 Europe/Paris 2011-02-14
-3014667 Gries Gries 48.7537 7.81403 P PPL FR C1 67 676 67169 2831 143 Europe/Paris 2007-07-13
-3014668 Grièges Grieges Grieges,Grièges 46.25583 4.85134 P PPL FR B9 01 012 01179 1785 181 Europe/Paris 2012-01-18
-3014671 Grez-sur-Loing Grez-sur-Loing Grez,Grez-sur-Loing 48.31754 2.68848 P PPL FR A8 77 774 77216 1347 71 Europe/Paris 2012-01-18
-3014672 Grez-Neuville Grez-Neuville Grez,Grez-Neuville 47.60288 -0.68193 P PPL FR B5 49 494 49155 1383 27 Europe/Paris 2012-01-18
-3014676 Grézieu-la-Varenne Grezieu-la-Varenne Grezieu,Grezieu-et-Craponne,Grezieu-la-Varenne,Grézieu,Grézieu-et-Craponne,Grézieu-la-Varenne 45.74833 4.69016 P PPL FR B9 69 691 69094 4369 341 Europe/Paris 2012-01-18
-3014697 Gretz-Armainvilliers Gretz-Armainvilliers Gretz,Gretz-Armainvilliers 48.7412 2.73105 P PPL FR A8 77 772 77215 7831 107 Europe/Paris 2012-01-18
-3014698 Grésy-sur-Isère Gresy-sur-Isere Gresy,Gresy-sur-Isere,Grésy,Grésy-sur-Isère 45.60172 6.25509 P PPL FR B9 73 731 73129 1128 364 Europe/Paris 2012-01-18
-3014699 Grésy-sur-Aix Gresy-sur-Aix Gresy,Gresy-sur-Aix,Grésy,Grésy-sur-Aix 45.72301 5.93412 P PPL FR B9 73 732 73128 3380 352 Europe/Paris 2012-01-18
-3014701 Gresswiller Gresswiller Gresswiller 48.53542 7.43251 P PPL FR C1 67 673 67168 1441 195 Europe/Paris 2011-02-14
-3014717 Gréoux-les-Bains Greoux-les-Bains Greoux,Greoux-les-Bains,Gréoux,Gréoux-les-Bains 43.75753 5.88169 P PPL FR B8 04 043 04094 2045 335 Europe/Paris 2012-01-18
-3014728 Grenoble Grenoble Grelibre,Grenobel,Grenobl',Grenoble,Grenoblo,Grenobul,Grenòble,ge lei nuo bu er,ghrwnwbl,grenobla,grnwbl,grwnwbl,gurunoburu,Грeнобль,Гренобль,Гренобъл,גרנובל,غرونوبل,گرونوبل,ग्रेनोब्ल,グルノーブル,格勒诺布尔 45.16667 5.71667 P PPLA2 FR B9 38 381 38185 158552 218 221 Europe/Paris 2011-11-02
-3014738 Grendelbruch Grendelbruch Grendelbruch 48.49272 7.32239 P PPL FR C1 67 673 67167 1222 519 Europe/Paris 2011-02-14
-3014739 Grenay Grenay Grenay 50.44962 2.75168 P PPL FR B4 62 627 62386 6491 67 Europe/Paris 2012-01-18
-3014740 Grenay Grenay Grenay 45.66317 5.07987 P PPL FR B9 38 383 38184 1286 300 Europe/Paris 2012-01-18
-3014745 Grenade Grenade Grenade-sur-Garonne 43.76667 1.28333 P PPL FR B3 31 313 31232 6486 107 Europe/Paris 2007-11-20
-3014767 Gréasque Greasque Greasque,Gréasque 43.4331 5.54449 P PPL FR B8 13 133 13046 3737 312 Europe/Paris 2011-01-18
-3014779 Gray-la-Ville Gray-la-Ville Gray-la-Ville 47.43932 5.57252 P PPL FR A6 70 702 70280 1133 192 Europe/Paris 2012-01-18
-3014784 Gray Gray Gray 47.44575 5.59215 P PPL FR A6 70 702 70279 7402 223 Europe/Paris 2012-01-18
-3014795 Gravigny Gravigny Gravigny 49.0531 1.16962 P PPL FR A7 27 273 27299 3954 61 Europe/Paris 2012-01-18
-3014803 Graveson Graveson Graveson 43.85134 4.77189 P PPL FR B8 13 132 13045 3331 16 Europe/Paris 2012-01-18
-3014816 Gravelines Gravelines Graelines,Gravelinas,Gravelines,Gravelingen,Grevelingen,Port-d'Aa 50.98651 2.12807 P PPL FR B4 59 594 59273 13137 7 Europe/Paris 2012-01-18
-3014828 Graulhet Graulhet Graulhe,Graulhet 43.76688 1.98938 P PPL FR B3 81 812 81105 13057 159 Europe/Paris 2011-11-02
-3014848 Gratentour Gratentour Cratentour,Gratenteur,Gratentour 43.7236 1.43234 P PPL FR B3 31 313 31230 3406 176 Europe/Paris 2011-01-09
-3014856 Grasse Grasse Gras,Grassa,Grasse,gurasu,Грас,グラース 43.66667 6.91667 P PPLA3 FR B8 06 061 06069 47581 555 Europe/Paris 2011-11-02
-3014867 Granville Granville Granville,Granville-la-Victoire 48.83792 -1.59714 P PPL FR 99 50 501 50218 14289 12 Europe/Paris 2011-11-02
-3014868 Grans Grans Grans 43.60357 5.06881 P PPL FR B8 13 131 13044 3999 61 Europe/Paris 2012-01-18
-3014878 Granges-sur-Vologne Granges-sur-Vologne Granges,Granges-sur-Vologne 48.14517 6.79095 P PPL FR B2 88 883 88218 2492 498 Europe/Paris 2012-01-18
-3014915 Grane Grane 44.73333 4.91667 P PPL FR B9 26 261 26144 1693 157 Europe/Paris 2007-11-17
-3014918 Grandvilliers Grandvilliers Grandvilliers 49.66547 1.94088 P PPL FR B6 60 601 60286 3013 196 Europe/Paris 2012-01-18
-3014928 Grandvillars Grandvillars Grandvillars 47.53921 6.96424 P PPL FR A6 90 901 90053 3092 344 Europe/Paris 2012-01-18
-3015000 Grandris Grandris Grandris 46.03871 4.47486 P PPL FR B9 69 692 69093 1090 475 Europe/Paris 2012-01-18
-3015119 Gallargues-le-Montueux Gallargues-le-Montueux 43.71667 4.16667 P PPL FR A9 30 302 30123 2527 14 Europe/Paris 2007-11-20
-3015123 Grandfresnoy Grandfresnoy Grandfresnoy 49.37218 2.65216 P PPL FR B6 60 603 60284 1538 89 Europe/Paris 2012-01-18
-3015125 Grand-Fougeray Grand-Fougeray Felgerieg-Veur,Fougeray,Grand-Fougeray,Le Grand-Fougeray 47.7239 -1.7321 P PPL FR A2 35 352 35124 2156 61 Europe/Paris 2012-01-18
-3015126 Grand-Fort-Philippe Grand-Fort-Philippe Grand-Fort-Philippe 50.99961 2.10784 P PPL FR B4 59 594 59272 6188 4 Europe/Paris 2012-01-18
-3015132 Grandfontaine Grandfontaine Grandfontaine 47.19763 5.90079 P PPL FR A6 25 251 25287 1440 250 Europe/Paris 2012-01-18
-3015160 Grande-Synthe Grande-Synthe Grande-Synthe 51.0154 2.29975 P PPL FR B4 59 594 59271 23213 2 Europe/Paris 2012-01-18
-3015267 Grand-Couronne Grand-Couronne Grand-Couronne,La Reunion,La Réunion 49.35563 1.00647 P PPL FR A7 76 763 76319 9569 17 Europe/Paris 2012-01-18
-3015292 Grand-Charmont Grand-Charmont Grand-Charmont 47.52674 6.82604 P PPL FR A6 25 252 25284 5347 335 Europe/Paris 2012-01-18
-3015305 Grand-Champ Grand-Champ Grand-Champ,Gregam 47.75804 -2.84636 P PPL FR A2 56 563 56067 4528 126 Europe/Paris 2012-01-18
-3015317 Grandcamp-Maisy Grandcamp-Maisy Grandcamp,Grandcamp-les-Bains 49.38333 -1.03333 P PPL FR 99 14 141 14312 1920 20 Europe/Paris 2007-11-20
-3015384 Grambois Grambois Grambois 43.76187 5.58725 P PPL FR B8 84 841 84052 1164 334 Europe/Paris 2012-01-18
-3015386 Gramat Gramat Gramat 44.78075 1.71957 P PPL FR B3 46 463 46128 3892 310 Europe/Paris 2012-01-18
-3015397 Grainville-sur-Odon Grainville-sur-Odon Grainville,Grainville-sur-Odon 49.13936 -0.53046 P PPL FR 99 14 142 14311 1010 99 Europe/Paris 2012-01-18
-3015398 Grainville-la-Teinturière Grainville-la-Teinturiere Grainville,Grainville-la-Teinturiere,Grainville-la-Teinturière 49.74773 0.64048 P PPL FR A7 76 761 76315 1068 37 Europe/Paris 2012-01-18
-3015412 Gragnague Gragnague Gragnague,Grapnague 43.68091 1.58461 P PPL FR B3 31 313 31228 1615 148 Europe/Paris 2011-01-09
-3015419 Gradignan Gradignan Gradignan,Gradin'jan,Градиньян 44.77262 -0.61393 P PPL FR 97 33 332 33192 24385 30 Europe/Paris 2012-01-18
-3015422 Grâces Graces Graces,Gras-Gwengamp,Grâces 48.55651 -3.18533 P PPL FR A2 22 222 22067 2549 125 Europe/Paris 2012-01-18
-3015423 Graçay Gracay Gracay,Graçay,La Liberte,La Liberté 47.14371 1.84734 P PPL FR A3 18 183 18103 1556 107 Europe/Paris 2012-01-18
-3015424 Grabels Grabels Grabels 43.64797 3.79864 P PPL FR A9 34 343 34116 6107 66 Europe/Paris 2012-01-18
-3015434 Goven Goven Goven 48.00638 -1.84629 P PPL FR A2 35 352 35123 3291 102 Europe/Paris 2012-01-18
-3015436 Gouzon Gouzon Gouzon 46.19286 2.23876 P PPL FR B1 23 232 23093 1410 379 Europe/Paris 2012-01-18
-3015438 Gouzeaucourt Gouzeaucourt Gouzeaucourt 50.05606 3.12351 P PPL FR B4 59 592 59269 1284 123 Europe/Paris 2012-01-18
-3015442 Gouy-sous-Bellonne Gouy-sous-Bellonne Gouy,Gouy-sous-Bellonne 50.3114 3.05657 P PPL FR B4 62 621 62383 1308 47 Europe/Paris 2012-01-18
-3015458 Gouville-sur-Mer Gouville-sur-Mer Gouville,Gouville-sur-Mer 49.09611 -1.57908 P PPL FR 99 50 503 50215 1722 23 Europe/Paris 2012-01-18
-3015460 Gouvieux Gouvieux Gouvieux 49.18705 2.41439 P PPL FR B6 60 604 60282 9526 32 Europe/Paris 2012-01-18
-3015463 Gouvernes Gouvernes Gouvernes 48.86007 2.69074 P PPL FR A8 77 775 77209 1132 53 Europe/Paris 2012-01-18
-3015490 Goussainville Goussainville Goussainville 49.01367 2.46595 P PPL FR A8 95 952 95280 30047 73 Europe/Paris 2012-01-18
-3015507 Gournay-sur-Marne Gournay-sur-Marne Gournay,Gournay-sur-Marne 48.86223 2.58452 P PPL FR A8 93 932 93033 6073 40 Europe/Paris 2012-01-18
-3015509 Gournay-en-Bray Gournay-en-Bray Consolation,Gournay,Gournay-en-Bray 49.48285 1.72471 P PPL FR A7 76 761 76312 6449 99 Europe/Paris 2012-01-18
-3015522 Gourin Gourin Gourin 48.13866 -3.60755 P PPL FR A2 56 562 56066 5005 155 Europe/Paris 2012-01-18
-3015546 Gourdon Gourdon Courdon,Gordon,Gourdon 44.73333 1.38333 P PPLA3 FR B3 46 463 46127 5342 208 Europe/Paris 2010-04-02
-3015549 Gourdan-Polignan Gourdan-Polignan Gourdan-Polignan 43.07092 0.57482 P PPL FR B3 31 312 31224 1754 430 Europe/Paris 2012-01-18
-3015571 Goult Goult Goult 43.8608 5.24247 P PPL FR B8 84 841 84051 1381 195 Europe/Paris 2012-01-18
-3015596 Gouézec Gouezec Gouezec,Gouezeg,Gouézec 48.16911 -3.97277 P PPL FR A2 29 292 29062 1033 103 Europe/Paris 2012-01-18
-3015601 Gouesnou Gouesnou Gouenou,Gouenoù,Gouesnou 48.45266 -4.46456 P PPL FR A2 29 291 29061 6388 87 Europe/Paris 2012-01-18
-3015602 Gouesnach Gouesnach Gouenac'h,Gouesnac'h,Gouesnach 47.9104 -4.1145 P PPL FR A2 29 294 29060 2396 40 Europe/Paris 2012-01-18
-3015614 Goudelin Goudelin Goudelin 48.60375 -3.01842 P PPL FR A2 22 222 22065 1521 93 Europe/Paris 2012-01-18
-3015618 Goudargues Goudargues Goudargues 44.21376 4.46652 P PPL FR A9 30 302 30131 1031 84 Europe/Paris 2012-01-18
-3015625 Gouarec Gouarec Gouarec,Gwareg 48.22725 -3.17994 P PPL FR A2 22 222 22064 1081 134 Europe/Paris 2008-01-13
-3015629 Gouaix Gouaix Gouaix 48.48539 3.29336 P PPL FR A8 77 773 77208 1582 79 Europe/Paris 2012-01-18
-3015635 Gosné Gosne Cosne,Cosné,Goneg,Gosne,Gosné 48.24674 -1.46558 P PPL FR A2 35 351 35121 1499 104 Europe/Paris 2012-01-18
-3015636 Gosnay Gosnay Gosnay 50.50622 2.58904 P PPL FR B4 62 622 62377 1215 35 Europe/Paris 2012-01-18
-3015639 Gorze Gorze Gorze 49.05335 6.00141 P PPL FR B2 57 574 57254 1424 214 Europe/Paris 2012-01-18
-3015642 Gorron Gorron Gorron 48.41095 -0.81267 P PPL FR B5 53 533 53107 3040 163 Europe/Paris 2012-01-18
-3015658 Gorges Gorges Gored,Gorge,Gorges 47.09917 -1.30024 P PPL FR B5 44 442 44064 3087 31 Europe/Paris 2012-01-18
-3015661 Gordes Gordes Gordes 43.91237 5.20089 P PPL FR B8 84 841 84050 2242 360 Europe/Paris 2012-01-18
-3015662 Gorcy Gorcy Gorcy-Cussigny 49.53333 5.7 P PPL FR B2 54 541 54234 2187 281 Europe/Paris 2007-11-20
-3015664 Gorbio Gorbio Gorbio 43.78681 7.4426 P PPL FR B8 06 062 06067 1201 369 Europe/Paris 2012-01-18
-3015669 Gontaud-de-Nogaret Gontaud-de-Nogaret 44.45 0.3 P PPL FR 97 47 472 47110 1626 61 Europe/Paris 2007-11-20
-3015677 Gonneville-la-Mallet Gonneville-la-Mallet Gonneville,Gonneville-la-Mallet 49.6395 0.22245 P PPL FR A7 76 762 76307 1165 131 Europe/Paris 2012-01-18
-3015681 Gonnehem Gonnehem Gonnehem 50.56062 2.57277 P PPL FR B4 62 622 62376 2257 21 Europe/Paris 2012-01-18
-3015686 Gonfaron Gonfaron Gonfaron 43.32067 6.28806 P PPL FR B8 83 833 83067 3636 176 Europe/Paris 2012-01-18
-3015689 Gonesse Gonesse Gones,Gonesse,Гонес 48.98693 2.44892 P PPL FR A8 95 952 95277 26758 50 Europe/Paris 2012-01-18
-3015690 Gondrin Gondrin Gondrin 43.88466 0.23737 P PPL FR B3 32 322 32149 1049 182 Europe/Paris 2012-01-18
-3015697 Gondreville Gondreville Gondreville,Gondreville-sur-Moselle 48.69436 5.96551 P PPL FR B2 54 544 54232 2270 209 Europe/Paris 2012-01-18
-3015701 Gondrecourt-le-Château Gondrecourt-le-Chateau Gondrecourt,Gondrecourt-le-Chateau,Gondrecourt-le-Château 48.51366 5.51058 P PPL FR B2 55 552 55215 1397 310 Europe/Paris 2012-01-18
-3015708 Gondecourt Gondecourt Gondecourt 50.54469 2.98378 P PPL FR B4 59 595 59266 3994 25 Europe/Paris 2012-01-18
-3015711 Goncelin Goncelin Goncelin 45.34453 5.97892 P PPL FR B9 38 381 38181 2084 277 Europe/Paris 2012-01-18
-3015723 Gommegnies Gommegnies Gommegnies 50.27155 3.70625 P PPL FR B4 59 591 59265 2065 127 Europe/Paris 2012-01-18
-3015727 Gometz-le-Châtel Gometz-le-Chatel Gometz-le-Chatel,Gometz-le-Châtel,Saint-Clair 48.67837 2.13792 P PPL FR A8 91 913 91275 1954 146 Europe/Paris 2012-01-18
-3015728 Gometz-la-Ville Gometz-la-Ville Gometz-la-Ville 48.67219 2.12868 P PPL FR A8 91 913 91274 1053 169 Europe/Paris 2012-01-18
-3015741 Golbey Golbey Golbey 48.19764 6.43966 P PPL FR B2 88 881 88209 8623 317 Europe/Paris 2012-01-18
-3015746 Goincourt Goincourt Goincourt 49.42614 2.03621 P PPL FR B6 60 601 60277 1196 76 Europe/Paris 2012-01-18
-3015755 Gœulzin Goeulzin 50.31667 3.1 P PPL FR B4 59 593 59263 1117 35 Europe/Paris 2007-11-20
-3015756 Goetzenbruck Goetzenbruck Goetzenbruck,Gotzenbruck,Götzenbrück 48.97778 7.3796 P PPL FR B2 57 576 57250 1810 368 Europe/Paris 2012-01-18
-3015758 Gœrsdorf Goersdorf 48.95 7.76667 P PPL FR C1 67 677 67160 1097 205 Europe/Paris 2007-11-20
-3015764 Godewaersvelde Godewaersvelde Godewaersvelde 50.79399 2.64456 P PPL FR B4 59 594 59262 1977 46 Europe/Paris 2012-01-18
-3015765 Goderville Goderville Goderville 49.64566 0.36593 P PPL FR A7 76 762 76302 2335 126 Europe/Paris 2012-01-18
-3015800 Glomel Glomel Glomel,Gronvel,Groñvel 48.223 -3.39696 P PPL FR A2 22 222 22061 1535 237 Europe/Paris 2012-01-18
-3015823 Gleizé Gleize Gleize,Gleizé 45.99082 4.70071 P PPL FR B9 69 692 69092 8749 215 Europe/Paris 2012-01-18
-3015894 Givry Givry Givry 46.78202 4.74262 P PPL FR A1 71 712 71221 3741 223 Europe/Paris 2012-01-18
-3015900 Givrand Givrand Givrand 46.67083 -1.88612 P PPL FR B5 85 853 85100 1400 12 Europe/Paris 2012-01-18
-3015902 Givors Givors Givors 45.58415 4.77256 P PPL FR B9 69 691 69091 18198 159 Europe/Paris 2012-01-18
-3015904 Givet Givet Fort-la-Montagne,Givet 50.13796 4.82545 P PPL FR A4 08 081 08190 7448 104 Europe/Paris 2012-01-18
-3015911 Givenchy-en-Gohelle Givenchy-en-Gohelle Givenchy,Givenchy-en-Gohelle 50.3908 2.7732 P PPL FR B4 62 621 62371 2114 85 Europe/Paris 2012-01-18
-3015926 Gisors Gisors Gisors 49.28178 1.7801 P PPL FR A7 27 271 27284 12363 52 Europe/Paris 2012-01-18
-3015937 Giroussens Giroussens Giroussens 43.76199 1.77608 P PPL FR B3 81 812 81104 1089 182 Europe/Paris 2012-01-18
-3015952 Gironde-sur-Dropt Gironde-sur-Dropt 44.58333 -0.08333 P PPL FR 97 33 333 33187 1122 16 Europe/Paris 2007-11-20
-3015958 Giromagny Giromagny Giromagny 47.74146 6.82671 P PPL FR A6 90 901 90052 3294 471 Europe/Paris 2012-01-18
-3015976 Giraumont Giraumont Giraumont 49.17313 5.91159 P PPL FR B2 54 541 54227 1191 219 Europe/Paris 2012-01-18
-3016009 Ginestas Ginestas Ginestas 43.26645 2.87038 P PPL FR A9 11 113 11164 1129 69 Europe/Paris 2012-01-18
-3016018 Ginasservis Ginasservis Ginasservis 43.67113 5.84925 P PPL FR B8 83 833 83066 1067 423 Europe/Paris 2012-01-18
-3016023 Gimont Gimont Gimont 43.62627 0.87655 P PPL FR B3 32 321 32147 2852 183 Europe/Paris 2012-01-18
-3016038 Gilly-sur-Isère Gilly-sur-Isere Gilly 45.65917 6.35096 P PPL FR B9 73 731 73124 2736 341 Europe/Paris 2009-01-31
-3016043 Gillonnay Gillonnay Gillonnay 45.3937 5.29586 P PPL FR B9 38 383 38180 1024 384 Europe/Paris 2012-01-18
-3016048 Gilley Gilley Gilley,Gilley-Gare 47.0474 6.48257 P PPL FR A6 25 253 25271 1310 885 Europe/Paris 2012-01-18
-3016053 Gilette Gilette Gilette 43.84788 7.16349 P PPL FR B8 06 062 06066 1302 333 Europe/Paris 2012-01-18
-3016070 Gignac-la-Nerthe Gignac-la-Nerthe Gignac,Gignac-la-Nerthe 43.39145 5.23348 P PPL FR B8 13 134 13043 9146 57 Europe/Paris 2012-01-18
-3016073 Gignac Gignac Gignac 43.652 3.5509 P PPL FR A9 34 342 34114 5025 80 Europe/Paris 2012-01-18
-3016076 Gigean Gigean Gigean 43.50028 3.71167 P PPL FR A9 34 343 34113 3977 41 Europe/Paris 2010-12-24
-3016078 Gif-sur-Yvette Gif-sur-Yvette Gif,Gif-sur-Yvette,Zhif sir Ivet,Жиф сир Ивет 48.68333 2.13333 P PPL FR A8 91 913 91272 23541 147 Europe/Paris 2012-01-18
-3016085 Gièvres Gievres Gievres,Gièvres 47.27847 1.66943 P PPL FR A3 41 413 41097 2214 93 Europe/Paris 2012-01-18
-3016089 Gières Gieres Gieres,Gières 45.18273 5.79179 P PPL FR B9 38 381 38179 6299 229 Europe/Paris 2012-01-18
-3016097 Gien Gien Gien 47.69332 2.63094 P PPL FR A3 45 451 45155 15966 153 Europe/Paris 2012-01-18
-3016101 Gidy Gidy Gidy 47.98539 1.83816 P PPL FR A3 45 452 45154 1580 122 Europe/Paris 2012-01-18
-3016113 Giberville Giberville Giberville 49.18158 -0.28386 P PPL FR 99 14 142 14301 4802 12 Europe/Paris 2012-01-18
-3016130 Ghyvelde Ghyvelde Ghyvelde,Gijvelde 51.05275 2.52642 P PPL FR B4 59 594 59260 3110 2 Europe/Paris 2012-01-18
-3016133 Ghisonaccia Ghisonaccia Ghisonaccia 42.01621 9.40412 P PPL FR A5 2B 2B3 2B123 3515 17 Europe/Paris 2012-01-18
-3016143 Gex Gex Gex 46.33333 6.06667 P PPLA3 FR B9 01 013 01173 9177 579 Europe/Paris 2011-11-02
-3016147 Gevrey-Chambertin Gevrey-Chambertin Gevrey-Chambertin 47.22614 4.96806 P PPL FR A1 21 212 21295 3356 281 Europe/Paris 2012-01-18
-3016152 Gévezé Geveze Geveze,Gevrezeg,Gévezé 48.21933 -1.78952 P PPL FR A2 35 353 35120 3287 73 Europe/Paris 2012-01-18
-3016158 Geudertheim Geudertheim 48.72415 7.75188 P PPL FR C1 67 676 67156 2364 150 Europe/Paris 2007-07-13
-3016162 Gétigné Getigne Getigne,Gétigné,Yestinieg 47.0765 -1.2481 P PPL FR B5 44 442 44063 3326 30 Europe/Paris 2012-01-18
-3016166 Gestel Gestel Gestel,Yestael 47.80361 -3.44245 P PPL FR A2 56 561 56063 2403 48 Europe/Paris 2012-01-18
-3016167 Gesté Geste Geste,Gesté 47.18179 -1.10917 P PPL FR B5 49 492 49151 2471 74 Europe/Paris 2012-01-18
-3016172 Gespunsart Gespunsart Gesponsart,Gespunsart 49.82143 4.82926 P PPL FR A4 08 081 08188 1114 202 Europe/Paris 2011-01-14
-3016177 Gerzat Gerzat Gerzat 45.82432 3.14404 P PPL FR 98 63 632 63164 9382 332 Europe/Paris 2012-01-18
-3016192 Gerstheim Gerstheim Gerstheim 48.38142 7.70308 P PPL FR C1 67 675 67154 2942 153 Europe/Paris 2012-01-18
-3016247 Gergy Gergy Gergy 46.87557 4.94527 P PPL FR A1 71 712 71215 2462 188 Europe/Paris 2012-01-18
-3016257 Gerde Gerde Gerde 43.05567 0.16688 P PPL FR B3 65 652 65198 1170 584 Europe/Paris 2012-01-18
-3016264 Gerbéviller Gerbeviller Gerbeviller,Gerbéviller 48.49462 6.51006 P PPL FR B2 54 542 54222 1443 247 Europe/Paris 2012-01-18
-3016274 Gérardmer Gerardmer Gerardmer,Gérardmer,Ormont 48.07346 6.87787 P PPL FR B2 88 883 88196 10084 663 Europe/Paris 2012-01-18
-3016282 Ger Ger Ger 43.25 -0.05 P PPL FR 97 64 643 64238 1777 409 Europe/Paris 2012-01-18
-3016292 Gentilly Gentilly Gentilly 48.81294 2.3417 P PPL FR A8 94 943 94037 15939 66 Europe/Paris 2012-01-18
-3016297 Gensac-la-Pallue Gensac-la-Pallue Gensac,Gensac-la-Pallue 45.65 -0.25 P PPL FR B7 16 162 16150 1687 19 Europe/Paris 2012-01-18
-3016321 Gennevilliers Gennevilliers Genneville,Gennevillers,Gennevilliers 48.93333 2.3 P PPL FR A8 92 922 92036 42294 31 Europe/Paris 2012-01-18
-3016330 Gennes Gennes 47.3401 -0.23149 P PPL FR B5 49 493 49149 2138 26 Europe/Paris 2007-07-04
-3016332 Genlis Genlis Genlis 47.24203 5.22415 P PPL FR A1 21 212 21292 5453 198 Europe/Paris 2012-01-18
-3016333 Génissieux Genissieux Genissieux,Génissieux 45.08426 5.08337 P PPL FR B9 26 263 26139 1958 200 Europe/Paris 2012-01-18
-3016337 Génissac Genissac Genissac,Génissac 44.85 -0.25 P PPL FR 97 33 335 33185 1471 42 Europe/Paris 2012-01-18
-3016340 Genillé Genille 47.18333 1.1 P PPL FR A3 37 373 37111 1526 88 Europe/Paris 2007-11-17
-3016371 Générac Generac Generac,Générac 43.7283 4.35 P PPL FR A9 30 302 30128 3488 84 Europe/Paris 2012-01-18
-3016375 Génelard Genelard Genelard,Génelard 46.58119 4.23619 P PPL FR A1 71 713 71212 1442 272 Europe/Paris 2012-01-18
-3016376 Genech Genech Genech 50.53122 3.21651 P PPL FR B4 59 595 59258 2762 46 Europe/Paris 2012-01-18
-3016385 Genay Genay Genay 45.89764 4.83729 P PPL FR B9 69 691 69278 4729 205 Europe/Paris 2012-01-18
-3016387 Genas Genas Genas 45.73215 4.99943 P PPL FR B9 69 691 69277 12878 231 Europe/Paris 2012-01-18
-3016392 Gémozac Gemozac Gemozac,Gémozac 45.56896 -0.67574 P PPL FR B7 17 174 17172 2542 40 Europe/Paris 2012-01-18
-3016398 Gémenos Gemenos Gemenos,Gémenos 43.29751 5.62843 P PPL FR B8 13 133 13042 5727 152 Europe/Paris 2011-11-02
-3016406 Gelos Gelos 43.28333 -0.36667 P PPL FR 97 64 643 64237 3728 185 Europe/Paris 2007-11-17
-3016409 Gelles Gelles Gelles 45.76937 2.76347 P PPL FR 98 63 632 63163 1032 858 Europe/Paris 2012-01-18
-3016424 Geispolsheim Geispolsheim Geispolsheim 48.51658 7.64667 P PPL FR C1 67 676 67152 7410 146 Europe/Paris 2012-01-18
-3016456 Gazeran Gazeran Gazeran 48.63264 1.77149 P PPL FR A8 78 782 78269 1219 161 Europe/Paris 2012-01-18
-3016474 Gavray Gavray Gavray 48.91108 -1.3506 P PPL FR 99 50 503 50197 1524 31 Europe/Paris 2012-01-18
-3016496 Gauriaguet Gauriaguet Gauriaguet 45.03904 -0.39191 P PPL FR 97 33 331 33183 1020 39 Europe/Paris 2012-01-18
-3016524 Gauchy Gauchy Gauchy 49.82765 3.27371 P PPL FR B6 02 023 02340 5676 76 Europe/Paris 2012-01-18
-3016534 Gattières Gattieres Gattieres,Gattières 43.76037 7.17799 P PPL FR B8 06 061 06064 3732 270 Europe/Paris 2012-01-18
-3016551 Gasville-Oisème Gasville-Oiseme 48.46973 1.53843 P PPL FR A3 28 281 28173 1189 130 Europe/Paris 2007-11-21
-3016561 Gassin Gassin Gassin 43.22874 6.5848 P PPL FR B8 83 831 83065 2949 182 Europe/Paris 2012-01-18
-3016564 Gasny Gasny Gasny 49.09184 1.60336 P PPL FR A7 27 271 27279 3093 27 Europe/Paris 2012-01-18
-3016595 Garons Garons Garons 43.7686 4.42753 P PPL FR A9 30 302 30125 4019 96 Europe/Paris 2012-01-18
-3016606 Garnay Garnay Garnay 48.70489 1.33706 P PPL FR A3 28 283 28171 1028 102 Europe/Paris 2012-01-18
-3016609 Garlin Garlin Garlin 43.55927 -0.27321 P PPL FR 97 64 643 64233 1251 206 Europe/Paris 2012-01-18
-3016618 Garidech Garidech Caridech,Garidech 43.71076 1.56036 P PPL FR B3 31 313 31212 1072 192 Europe/Paris 2011-01-09
-3016621 Garges-lès-Gonesse Garges-les-Gonesse Garges,Garges-les-Gonesse,Garges-lès-Gonesse 48.96791 2.39781 P PPL FR A8 95 952 95268 39847 64 Europe/Paris 2011-11-02
-3016622 Gargenville Gargenville Gargenville 48.98802 1.81176 P PPL FR A8 78 781 78267 6952 57 Europe/Paris 2012-01-18
-3016624 Gargas Gargas Gargas 43.90199 5.35781 P PPL FR B8 84 841 84047 3159 279 Europe/Paris 2012-01-18
-3016635 Garéoult Gareoult Gareoult,Garéoult 43.32858 6.04594 P PPL FR B8 83 833 83064 5268 311 Europe/Paris 2012-01-18
-3016637 Garennes-sur-Eure Garennes-sur-Eure Garennes,Garennes-sur-Eure 48.91116 1.43836 P PPL FR A7 27 273 27278 1825 58 Europe/Paris 2012-01-18
-3016645 Gardouch Gardouch Gardouch 43.39096 1.68313 P PPL FR B3 31 313 31210 1111 188 Europe/Paris 2012-01-18
-3016648 Gardonne Gardonne Gardonne 44.83333 0.35 P PPL FR 97 24 241 24194 1501 35 Europe/Paris 2012-01-18
-3016667 Gardanne Gardanne Gardanne 43.45491 5.46913 P PPL FR B8 13 131 13041 21140 216 Europe/Paris 2011-11-02
-3016674 Garchizy Garchizy Garchizy 47.04786 3.09625 P PPL FR A1 58 583 58121 3887 215 Europe/Paris 2012-01-18
-3016675 Garches Garches Garches 48.84226 2.18232 P PPL FR A8 92 922 92033 18930 134 Europe/Paris 2012-01-18
-3016686 Garat Garat Garat 45.63333 0.26667 P PPL FR B7 16 161 16146 1548 72 Europe/Paris 2012-01-18
-3016690 Garancières Garancieres Garancieres,Garancières 48.82271 1.75512 P PPL FR A8 78 782 78265 2381 103 Europe/Paris 2012-01-18
-3016702 Gap Gap Gap,gyappu,Гап,ギャップ 44.56667 6.08333 P PPLA2 FR B8 05 052 05061 42715 763 Europe/Paris 2011-11-02
-3016711 Gannat Gannat Gannat 46.10015 3.19886 P PPL FR 98 03 033 03118 6096 342 Europe/Paris 2012-01-18
-3016714 Ganges Ganges Ganges 43.9338 3.70784 P PPL FR A9 34 342 34111 3997 165 Europe/Paris 2012-01-18
-3016716 Gandrange Gandrange Gandrange 49.27071 6.12249 P PPL FR B2 57 578 57242 2502 184 Europe/Paris 2012-01-18
-3016726 Gan Gan Gan 43.23333 -0.38333 P PPL FR 97 64 643 64230 5373 244 Europe/Paris 2012-01-18
-3016730 Gambsheim Gambsheim Cambsheim 48.69209 7.88286 P PPL FR C1 67 676 67151 4071 126 Europe/Paris 2007-07-05
-3016733 Gambais Gambais Gambais 48.77351 1.67196 P PPL FR A8 78 781 78263 2166 120 Europe/Paris 2012-01-18
-3016737 Gamaches Gamaches Gamaches 49.98614 1.55624 P PPL FR B6 80 801 80373 3137 35 Europe/Paris 2012-01-18
-3016745 Galluis Galluis Galluis 48.79657 1.79414 P PPL FR A8 78 782 78262 1099 126 Europe/Paris 2012-01-18
-3016750 Gallardon Gallardon Gallardon 48.52622 1.69307 P PPL FR A3 28 281 28168 3625 118 Europe/Paris 2012-01-18
-3016764 Galgon Galgon Galgon-et-Queyrac,Galgor 44.98333 -0.26667 P PPL FR 97 33 335 33179 2665 27 Europe/Paris 2007-11-20
-3016800 Gainneville Gainneville Gainneville 49.51845 0.26164 P PPL FR A7 76 762 76296 2418 98 Europe/Paris 2012-01-18
-3016807 Gaillon Gaillon Gaillon 49.16104 1.34016 P PPL FR A7 27 271 27275 6818 17 Europe/Paris 2012-01-18
-3016812 Gaillefontaine Gaillefontaine Gaillefontaine 49.65371 1.61547 P PPL FR A7 76 761 76295 1496 170 Europe/Paris 2012-01-18
-3016817 Gaillard Gaillard 46.1853 6.20693 P PPL FR B9 74 743 74133 11660 421 Europe/Paris 2008-04-04
-3016820 Gaillan-en-Médoc Gaillan-en-Medoc Gaillan,Gaillan-en-Medoc,Gaillan-en-Médoc 45.32133 -0.95794 P PPL FR 97 33 334 33177 2092 8 Europe/Paris 2012-01-18
-3016822 Gaillac-Toulza Gaillac-Toulza Gaillac-Toulza,Gaillac-la-Montagne 43.25536 1.47141 P PPL FR B3 31 311 31206 1123 240 Europe/Paris 2012-01-18
-3016824 Gaillac Gaillac Gaillac 43.9016 1.89686 P PPL FR B3 81 811 81099 12600 148 Europe/Paris 2011-12-08
-3016830 Gagny Gagny Gagny 48.88333 2.53333 P PPL FR A8 93 932 93032 38134 60 Europe/Paris 2012-01-18
-3016837 Gagnac-sur-Garonne Gagnac-sur-Garonne Gagnac,Gagnac-sur-Garonne 43.6999 1.37535 P PPL FR B3 31 313 31205 1832 122 Europe/Paris 2011-01-09
-3016847 Gaël Gael Gael,Gaël,Gwazel 48.13209 -2.22267 P PPL FR A2 35 353 35117 1486 83 Europe/Paris 2012-01-18
-3016853 Gacé Gace 48.79344 0.29624 P PPL FR 99 61 612 61181 2163 198 Europe/Paris 2008-11-21
-3016871 Gabarret Gabarret Gabarret 43.98779 0.00978 P PPL FR 97 40 402 40102 1558 153 Europe/Paris 2012-01-18
-3016878 Fuveau Fuveau Fuveau 43.45578 5.56149 P PPL FR B8 13 131 13040 7845 257 Europe/Paris 2011-01-18
-3016882 Fussy Fussy Fussy 47.14372 2.42953 P PPL FR A3 18 181 18097 1977 155 Europe/Paris 2012-01-18
-3016890 Furiani Furiani Furiani 42.65814 9.41469 P PPL FR A5 2B 2B2 2B120 4337 204 Europe/Paris 2012-01-18
-3016894 Furdenheim Furdenheim 48.61129 7.561 P PPL FR C1 67 676 67150 1061 180 Europe/Paris 2007-07-06
-3016903 Fumel Fumel Fumel 44.49862 0.96506 P PPL FR 97 47 473 47106 5816 123 Europe/Paris 2012-01-18
-3016907 Fumay Fumay Fumay 49.99132 4.70771 P PPL FR A4 08 081 08185 4650 145 Europe/Paris 2012-01-18
-3016918 Fublaines Fublaines Fublaines 48.93816 2.93655 P PPL FR A8 77 771 77199 1117 99 Europe/Paris 2012-01-18
-3016931 Fruges Fruges Fruges 50.51501 2.13292 P PPL FR B4 62 624 62364 2862 101 Europe/Paris 2012-01-18
-3016940 Frouzins Frouzins Frollzins 43.51482 1.32523 P PPL FR B3 31 311 31203 6418 176 Europe/Paris 2009-10-26
-3016944 Frouard Frouard Frouard 48.75998 6.13163 P PPL FR B2 54 543 54215 7119 206 Europe/Paris 2012-01-18
-3016945 Frotey-lès-Vesoul Frotey-les-Vesoul Frotey,Frotey-les-Vesoul,Frotey-lès-Vesoul 47.62078 6.18831 P PPL FR A6 70 702 70261 1260 247 Europe/Paris 2012-01-18
-3016947 Frossay Frossay Frossay,Frozieg,Mont-Vineux 47.24451 -1.93557 P PPL FR B5 44 443 44061 2463 27 Europe/Paris 2009-09-01
-3016951 Frontonas Frontonas Frontas,Frontonas 45.64782 5.18341 P PPL FR B9 38 382 38176 1852 221 Europe/Paris 2012-01-18
-3016953 Fronton Fronton Fronton 43.83931 1.38931 P PPL FR B3 31 313 31202 4397 152 Europe/Paris 2012-01-18
-3016956 Frontignan Frontignan Frontignan,Frontin'jan,Фронтиньян 43.44848 3.754 P PPL FR A9 34 343 34108 22251 7 Europe/Paris 2012-01-18
-3016957 Frontenex Frontenex Frontenex-Villard-Rosset 45.63333 6.31667 P PPL FR B9 73 731 73121 1732 327 Europe/Paris 2007-11-20
-3016959 Frontenay-Rohan-Rohan Frontenay-Rohan-Rohan Frontenay 46.25276 -0.53833 P PPL FR B7 79 792 79130 2753 22 Europe/Paris 2009-11-08
-3016969 Fronsac Fronsac Fronsac 44.91667 -0.26667 P PPL FR 97 33 335 33174 1027 4 Europe/Paris 2012-01-18
-3016973 Froncles Froncles Froncles 48.29756 5.14586 P PPL FR A4 52 521 52211 1667 223 Europe/Paris 2012-01-18
-3016992 Fromelennes Fromelennes Fromelennes 50.12333 4.85952 P PPL FR A4 08 081 08183 1137 117 Europe/Paris 2012-01-18
-3017003 Froidfond Froidfond Froidfond 46.86898 -1.7574 P PPL FR B5 85 853 85095 1001 43 Europe/Paris 2012-01-18
-3017012 Froideconche Froideconche Froideconche 47.82121 6.41522 P PPL FR A6 70 701 70258 1959 303 Europe/Paris 2012-01-18
-3017017 Froges Froges Froges 45.27359 5.92159 P PPL FR B9 38 381 38175 3522 237 Europe/Paris 2012-01-18
-3017024 Friville-Escarbotin Friville-Escarbotin Friville,Friville-Escarbotin 50.08602 1.5456 P PPL FR B6 80 801 80368 4852 81 Europe/Paris 2012-01-18
-3017034 Frignicourt Frignicourt Frignicourt 48.69966 4.59153 P PPL FR A4 51 514 51262 1778 102 Europe/Paris 2012-01-18
-3017059 Freyming-Merlebach Freyming-Merlebach Freyming,Merlebach 49.15 6.78333 P PPL FR B2 57 573 57240 14507 267 Europe/Paris 2011-11-21
-3017080 Frévent Frevent Frevent,Frévent 50.27608 2.28725 P PPL FR B4 62 621 62361 4077 73 Europe/Paris 2012-01-18
-3017100 Fretin Fretin Fretin 50.55745 3.13668 P PPL FR B4 59 595 59256 3048 32 Europe/Paris 2012-01-18
-3017104 Fréthun Frethun Frethun,Fréthun 50.91729 1.82505 P PPL FR B4 62 626 62360 1229 5 Europe/Paris 2012-01-18
-3017124 Fresse-sur-Moselle Fresse-sur-Moselle Fresse,Fresse-sur-Moselle 47.87589 6.78589 P PPL FR B2 88 881 88188 2219 512 Europe/Paris 2012-01-18
-3017127 Fressenneville Fressenneville Fressenneville 50.06838 1.57816 P PPL FR B6 80 801 80360 2400 95 Europe/Paris 2012-01-18
-3017144 Fresnoy-le-Grand Fresnoy-le-Grand Fresnoy,Fresnoy-le-Grand 49.94757 3.41841 P PPL FR B6 02 023 02334 3013 116 Europe/Paris 2012-01-18
-3017167 Fresnes-sur-Escaut Fresnes-sur-Escaut Fresnes,Fresnes-sur-Escaut 50.43382 3.57752 P PPL FR B4 59 596 59253 7573 25 Europe/Paris 2012-01-18
-3017178 Fresnes Fresnes Fren,Френ 48.75568 2.32241 P PPL FR A8 94 943 94034 24803 68 Europe/Paris 2011-11-02
-3017189 Fresnay-sur-Sarthe Fresnay-sur-Sarthe Fresnay,Fresnay-sur-Sarthe 48.28199 0.02288 P PPL FR B5 72 722 72138 2443 97 Europe/Paris 2012-01-18
-3017208 Frépillon Frepillon Frepillon,Frépillon 49.05216 2.20528 P PPL FR A8 95 953 95256 2399 100 Europe/Paris 2012-01-18
-3017219 Freneuse Freneuse Freneuse 49.04832 1.60168 P PPL FR A8 78 781 78255 3634 24 Europe/Paris 2012-01-18
-3017248 Frelinghien Frelinghien 50.71667 2.93333 P PPL FR B4 59 595 59252 2361 15 Europe/Paris 2007-11-17
-3017249 Fréland Freland 48.17215 7.19167 P PPL FR C1 68 685 68097 1371 434 Europe/Paris 2007-07-17
-3017253 Fréjus Frejus Forum Iulii,Frejus,Frejús,Frezhjus,Fréjus,Фрежюс 43.43286 6.73524 P PPL FR B8 83 831 83061 53098 22 Europe/Paris 2012-01-18
-3017255 Fréjairolles Frejairolles Frejairolles,Fréjairolles 43.88094 2.23151 P PPL FR B3 81 811 81097 1143 283 Europe/Paris 2011-01-13
-3017259 Freigné Freigne Freigne,Freigné 47.54858 -1.12274 P PPL FR B5 49 494 49144 1045 51 Europe/Paris 2012-01-18
-3017306 Frasne Frasne Frasne 46.85641 6.1594 P PPL FR A6 25 253 25259 1696 856 Europe/Paris 2012-01-18
-3017320 Frans Frans Frans 45.99228 4.77582 P PPL FR B9 01 012 01166 2023 207 Europe/Paris 2012-01-18
-3017330 Franois Franois Franois 47.23055 5.92869 P PPL FR A6 25 251 25258 1844 269 Europe/Paris 2012-01-18
-3017334 Frangy Frangy Frangy 46.0187 5.93313 P PPL FR B9 74 743 74131 1779 324 Europe/Paris 2012-01-18
-3017341 Franconville Franconville Franconville,Franconville-la-Garenne,Franconville-la-Libre 48.98333 2.23333 P PPL FR A8 95 953 95252 34284 71 Europe/Paris 2012-01-18
-3017356 Francheville Francheville Francheville 48.78647 0.84962 P PPL FR A7 27 273 27265 1240 181 Europe/Paris 2012-01-18
-3017363 Francheville Francheville Franche-Commune,Francheville 45.73879 4.77218 P PPL FR B9 69 691 69089 12053 218 Europe/Paris 2012-01-18
-3017369 Francheleins Francheleins Francheleins 46.0744 4.8092 P PPL FR B9 01 012 01165 1090 217 Europe/Paris 2010-12-13
-3017400 Fraize Fraize Fraize,Fraze,Traize 48.1866 6.99786 P PPL FR B2 88 883 88181 3029 495 Europe/Paris 2012-01-18
-3017410 Fraisses Fraisses 45.38333 4.25 P PPL FR B9 42 423 42099 3982 709 Europe/Paris 2007-11-20
-3017416 Fraisans Fraisans Fraisans 47.14857 5.76051 P PPL FR A6 39 391 39235 1274 225 Europe/Paris 2012-01-18
-3017422 Frahier-et-Chatebier Frahier-et-Chatebier 47.66667 6.75 P PPL FR A6 70 701 70248 1070 420 Europe/Paris 2007-11-17
-3017456 Foussais-Payré Foussais-Payre 46.53333 -0.68333 P PPL FR B5 85 851 85094 1283 89 Europe/Paris 2007-11-20
-3017474 Fourqueux Fourqueux Fourqueux 48.88693 2.06367 P PPL FR A8 78 783 78251 4433 116 Europe/Paris 2012-01-18
-3017475 Fourques-sur-Garonne Fourques-sur-Garonne Fourques,Fourques-sur-Garonne 44.44798 0.15703 P PPL FR 97 47 472 47101 1254 36 Europe/Paris 2012-01-18
-3017477 Fourques Fourques Fourques 43.6945 4.60932 P PPL FR A9 30 302 30117 2791 7 Europe/Paris 2011-01-18
-3017491 Fournes-en-Weppes Fournes-en-Weppes Fournes,Fournes-en-Weppes 50.58497 2.88793 P PPL FR B4 59 595 59250 1997 43 Europe/Paris 2012-01-18
-3017512 Fourmies Fourmies Fourmies 50.01532 4.04784 P PPL FR B4 59 591 59249 14151 190 Europe/Paris 2012-01-18
-3017537 Fourchambault Fourchambault Fourchambau,Fourchambault 47.01667 3.08333 P PPL FR A1 58 583 58117 4874 180 Europe/Paris 2012-01-18
-3017546 Fouras Fouras Fouras 45.98736 -1.09275 P PPL FR B7 17 172 17168 4127 13 Europe/Paris 2012-01-18
-3017556 Fouquières-lès-Lens Fouquieres-les-Lens Fouquieres,Fouquieres-les-Lens,Fouquières,Fouquières-lès-Lens 50.42842 2.9132 P PPL FR B4 62 627 62351 7008 31 Europe/Paris 2012-01-18
-3017557 Fouquières-lès-Béthune Fouquieres-les-Bethune Fouquieres,Fouquieres-les-Bethune,Fouquières,Fouquières-lès-Béthune 50.51534 2.60999 P PPL FR B4 62 622 62350 1182 30 Europe/Paris 2012-01-18
-3017562 Fouquereuil Fouquereuil Fouquereuil 50.51885 2.60024 P PPL FR B4 62 622 62349 1045 31 Europe/Paris 2012-01-18
-3017576 Foulayronnes Foulayronnes Foulayronnes 44.24029 0.64516 P PPL FR 97 47 471 47100 5055 157 Europe/Paris 2012-01-18
-3017592 Fouillard Fouillard Fouillard,Fouillard-Thorigne,Fouillard-Thorigné 48.1582 -1.57914 P PPL FR A2 35 353 35334 6737 80 Europe/Paris 2012-02-27
-3017601 Fougerolles-du-Plessis Fougerolles-du-Plessis Fougerolles,Fougerolles-du-Plessis 48.47424 -0.97255 P PPL FR B5 53 533 53100 1646 186 Europe/Paris 2012-01-18
-3017602 Fougerolles Fougerolles Fougerolles 47.88542 6.40454 P PPL FR A6 70 701 70245 4242 306 Europe/Paris 2012-01-18
-3017609 Fougères Fougeres Felger,Fougeres,Fougères,Fuzher,Фужер 48.35 -1.2 P PPLA3 FR A2 35 351 35115 23719 113 Europe/Paris 2011-11-02
-3017622 Foug Foug Foug 48.68375 5.78691 P PPL FR B2 54 544 54205 2805 256 Europe/Paris 2012-01-18
-3017624 Fouesnant Fouesnant Fouen,Fouenant,Fouesnant 47.89187 -4.01484 P PPL FR A2 29 294 29058 8722 67 Europe/Paris 2012-01-18
-3017637 Foucherans Foucherans Foucherans 47.08094 5.45503 P PPL FR A6 39 391 39233 1827 209 Europe/Paris 2012-01-18
-3017647 Foucarmont Foucarmont Foucarmont 49.84682 1.56899 P PPL FR A7 76 761 76278 1072 127 Europe/Paris 2012-01-18
-3017651 Fos-sur-Mer Fos-sur-Mer Fos,Fos-sur-Mer,Fòs,fosu=shuru=meru,フォス=シュル=メール 43.43774 4.94457 P PPL FR B8 13 134 13039 17317 6 9 Europe/Paris 2011-11-02
-3017660 Fosses Fosses Fosses 49.09808 2.50957 P PPL FR A8 95 952 95250 10543 117 Europe/Paris 2012-01-18
-3017682 Fortschwihr Fortschwihr Fortschwihr 48.08647 7.45054 P PPL FR C1 68 682 68095 1015 185 Europe/Paris 2012-01-18
-3017686 Fort-Mardyck Fort-Mardyck Fort-Mardyck 51.02899 2.30724 P PPL FR B4 59 594 59183 3845 5 Europe/Paris 2012-01-18
-3017687 Fort-Mahon-Plage Fort-Mahon-Plage Fort-Mahon,Fort-Mahon-Plage 50.33955 1.55984 P PPL FR B6 80 801 80333 1158 11 Europe/Paris 2012-01-18
-3017704 Fors Fors Fors 46.2357 -0.40904 P PPL FR B7 79 792 79125 1406 51 Europe/Paris 2012-01-18
-3017717 Formerie Formerie Formerie 49.64928 1.73106 P PPL FR B6 60 601 60245 2272 226 Europe/Paris 2012-01-18
-3017727 Forges-les-Eaux Forges-les-Eaux Forges,Forges-les-Eaux 49.61391 1.54449 P PPL FR A7 76 761 76276 3775 167 Europe/Paris 2012-01-18
-3017728 Forges-les-Bains Forges-les-Bains Forges,Forges-les-Bains 48.62942 2.10264 P PPL FR A8 91 913 91249 3694 117 Europe/Paris 2012-01-18
-3017766 Forest-sur-Marque Forest-sur-Marque Forest,Forest-sur-Marque 50.63341 3.18939 P PPL FR B4 59 595 59247 1594 26 Europe/Paris 2012-01-18
-3017798 Forcalquier Forcalquier Forcalquier,Forcauquier 43.96667 5.78333 P PPLA3 FR B8 04 044 04088 4729 562 Europe/Paris 2011-11-02
-3017799 Forcalqueiret Forcalqueiret Forcalqueiret 43.33471 6.08238 P PPL FR B8 83 833 83059 1800 300 Europe/Paris 2012-01-18
-3017805 Forbach Forbach Forbach,Forbakh,Форбах 49.18333 6.9 P PPLA3 FR B2 57 573 57227 21358 291 Europe/Paris 2011-11-02
-3017816 Fontvieille Fontvieille Fontvieille 43.72806 4.70953 P PPL FR B8 13 132 13038 3332 18 Europe/Paris 2011-01-18
-3017829 Fontoy Fontoy Fensch,Fontoy 49.35624 5.99936 P PPL FR B2 57 578 57226 3250 239 Europe/Paris 2012-01-18
-3017850 Fontevraud-l'Abbaye Fontevraud-l'Abbaye Fontevraud,Fontevrault,Fontevro,Фонтевро 47.18333 0.05 P PPL FR FR B5 49 493 49140 1497 72 Europe/Paris 2011-11-21
-3017879 Fontenilles Fontenilles Fontenilles 43.55286 1.19096 P PPL FR B3 31 311 31188 3266 204 Europe/Paris 2012-01-18
-3017902 Fontenay-Trésigny Fontenay-Tresigny Fontenay-Tresigny,Fontenay-Trésigny 48.70647 2.87047 P PPL FR A8 77 773 77192 5047 103 Europe/Paris 2012-01-18
-3017906 Fontenay-sur-Loing Fontenay-sur-Loing Fontenay 48.10365 2.77542 P PPL FR A3 45 451 45148 1529 89 Europe/Paris 2008-05-14
-3017910 Fontenay-sous-Bois Fontenay-sous-Bois Fontenay,Fontenay-sous-Bois,Fontne su Boa,Фонтне су Боа 48.85442 2.48268 P PPL FR A8 94 942 94033 52075 71 Europe/Paris 2012-01-18
-3017916 Fontenay-lès-Briis Fontenay-les-Briis Fontenay,Fontenay-les-Briis,Fontenay-lès-Briis 48.61962 2.15276 P PPL FR A8 91 913 91243 1797 112 Europe/Paris 2012-01-18
-3017918 Fontenay-le-Marmion Fontenay-le-Marmion Fontenay,Fontenay-le-Marmion 49.09346 -0.35294 P PPL FR 99 14 142 14277 1530 53 Europe/Paris 2012-01-18
-3017919 Fontenay-le-Fleury Fontenay-le-Fleury Fontenay,Fontenay-le-Fleury 48.81253 2.04863 P PPL FR A8 78 784 78242 12611 122 Europe/Paris 2012-01-18
-3017921 Fontenay-le-Comte Fontenay-le-Comte Fontenay-le-Peuple 46.46667 -0.81667 P PPLA3 FR B5 85 851 85092 16316 33 Europe/Paris 2011-11-02
-3017922 Fontenay-en-Parisis Fontenay-en-Parisis Fontenay,Fontenay-en-Parisis 49.05371 2.45156 P PPL FR A8 95 952 95241 1806 102 Europe/Paris 2012-01-18
-3017924 Fontenay-aux-Roses Fontenay-aux-Roses Fontenay,Fontenay-aux-Roses,Fontne o Roz,Фонтне о Роз 48.79325 2.29275 P PPL FR A8 92 921 92032 24680 100 Europe/Paris 2012-01-18
-3017926 Fontenay Fontenay Fontenay 49.55993 0.1839 P PPL FR A7 76 762 76275 1069 40 Europe/Paris 2012-01-18
-3017938 Fontenailles Fontenailles 47.54988 3.46215 P PPLA4 FR A1 89 891 89174 70 230 Europe/Paris 2011-07-31
-3017945 Fontcouverte Fontcouverte Fontcouverte 45.76708 -0.58682 P PPL FR B7 17 174 17164 2100 65 Europe/Paris 2012-01-18
-3017967 Fontannes Fontannes Fontanes,Fontannes 45.30149 3.76366 P PPL FR 98 43 432 43108 1308 1035 Europe/Paris 2012-02-27
-3017971 Fontanil-Cornillon Fontanil-Cornillon Fontanil,Fontanil-Cornillon 45.24808 5.66434 P PPL FR B9 38 381 38170 2642 200 Europe/Paris 2012-01-18
-3017994 Fontaines-sur-Saône Fontaines-sur-Saone Fontaine,Fontaines,Fontaines-sur-Saone,Fontaines-sur-Saône 45.83377 4.84834 P PPL FR B9 69 691 69088 7129 174 Europe/Paris 2012-01-18
-3017996 Fontaines-Saint-Martin Fontaines-Saint-Martin Brutus-la-Fontaine,Fontaines-Saint-Martin 45.84478 4.85489 P PPL FR B9 69 691 69087 2873 205 Europe/Paris 2012-01-18
-3018011 Fontaines Fontaines Fontaines 46.84905 4.77036 P PPL FR A1 71 712 71202 2166 195 Europe/Paris 2012-01-18
-3018018 Fontaine-Notre-Dame Fontaine-Notre-Dame Cailloux-la-Montagne,Fontaine,Fontaine-Notre-Dame,Fontaine-la-Montagne 50.16681 3.15812 P PPL FR B4 59 592 59244 1693 71 Europe/Paris 2012-01-18
-3018028 Fontaine-lès-Luxeuil Fontaine-les-Luxeuil Fontaine,Fontaine-les-Luxeuil,Fontaine-lès-Luxeuil 47.85592 6.33482 P PPL FR A6 70 701 70240 1477 264 Europe/Paris 2012-01-18
-3018032 Fontaine-lès-Dijon Fontaine-les-Dijon Fontaine,Fontaine-les-Dijon,Fontaine-lès-Dijon 47.34238 5.02007 P PPL FR A1 21 212 21278 9234 293 Europe/Paris 2012-01-18
-3018042 Fontaine-le-Dun Fontaine-le-Dun Fontaine,Fontaine-le-Dun 49.81182 0.85095 P PPL FR A7 76 761 76272 1025 53 Europe/Paris 2012-01-18
-3018043 Fontaine-le-Comte Fontaine-le-Comte Fontaine,Fontaine-l'Egalite,Fontaine-l'Egalité,Fontaine-le-Comte 46.53217 0.26176 P PPL FR B7 86 863 86100 3316 143 Europe/Paris 2012-01-18
-3018044 Fontaine-le-Bourg Fontaine-le-Bourg Fontaine,Fontaine-le-Bourg 49.56451 1.16391 P PPL FR A7 76 763 76271 1492 84 Europe/Paris 2012-01-18
-3018050 Fontaine-la-Mallet Fontaine-la-Mallet Fontaine,Fontaine-la-Mallet 49.536 0.14625 P PPL FR A7 76 762 76270 2640 41 Europe/Paris 2012-01-18
-3018052 Fontaine-la-Guyon Fontaine-la-Guyon Fontaine,Fontaine-la-Guyon 48.4727 1.31417 P PPL FR A3 28 281 28154 1100 174 Europe/Paris 2012-01-18
-3018062 Fontaine-Étoupefour Fontaine-Etoupefour Fontaine,Fontaine-Etoupefour,Fontaine-Étoupefour 49.146 -0.45522 P PPL FR 99 14 142 14274 1762 53 Europe/Paris 2012-01-18
-3018074 Fontainebleau Fontainebleau Fontaine-la-Montagne,Fontaine-le-Vallon,Fontainebleau,Fontenblo,fontenuburo,Фонтенбло,フォンテヌブロー,フォンテーヌブロー 48.4 2.7 P PPLA3 FR A8 77 774 77186 19717 72 Europe/Paris 2011-11-02
-3018077 Fontaine-au-Pire Fontaine-au-Pire Fontaine,Fontaine-au-Pire 50.1325 3.37667 P PPL FR B4 59 592 59243 1130 117 Europe/Paris 2012-01-18
-3018095 Fontaine Fontaine Fontaine,Fontejn,Фонтейн 45.19839 5.68265 P PPL FR B9 38 381 38169 24588 210 Europe/Paris 2012-01-18
-3018103 Fonsorbes Fonsorbes Fonsorbes 43.53524 1.22937 P PPL FR B3 31 311 31187 7745 205 Europe/Paris 2012-01-18
-3018124 Fondettes Fondettes Fondettes 47.4035 0.59686 P PPL FR A3 37 372 37109 9684 80 Europe/Paris 2012-01-18
-3018142 Fonbeauzard Fonbeauzard Fombeauzard,Fonbeauzard 43.6783 1.4344 P PPL FR B3 31 313 31186 2914 132 Europe/Paris 2011-01-09
-3018145 Folschviller Folschviller Folschviller,Folschwiller 49.07062 6.68948 P PPL FR B2 57 573 57224 4777 279 Europe/Paris 2012-01-18
-3018154 Follainville-Dennemont Follainville-Dennemont Follainville,Follainville-Dennemont 49.02194 1.71331 P PPL FR A8 78 781 78239 2021 121 Europe/Paris 2012-01-18
-3018155 Folkling Folkling Folckling,Folkling 49.1472 6.895 P PPL FR B2 57 573 57222 1439 294 Europe/Paris 2012-01-18
-3018166 Folembray Folembray Folembray 49.54334 3.29118 P PPL FR B6 02 022 02318 1500 84 Europe/Paris 2012-01-18
-3018174 Foix Foix Foix-sur-Ariege,Foix-sur-Ariège 42.96667 1.6 P PPLA2 FR B3 09 091 09122 9860 420 Europe/Paris 2011-11-02
-3018178 Foissiat Foissiat Foissiat 46.37008 5.17573 P PPL FR B9 01 012 01163 1705 222 Europe/Paris 2012-01-18
-3018189 Foëcy Foecy Foecy,Foëcy 47.17618 2.16257 P PPL FR A3 18 183 18096 2053 116 Europe/Paris 2012-01-18
-3018210 Flourens Flourens Flourens 43.59273 1.56259 P PPL FR B3 31 313 31184 1703 225 Europe/Paris 2011-01-09
-3018231 Florensac Florensac Florensac 43.38301 3.46638 P PPL FR A9 34 341 34101 4428 14 Europe/Paris 2012-01-18
-3018235 Florange Florange Florange 49.32373 6.1212 P PPL FR B2 57 578 57221 10758 171 Europe/Paris 2012-01-18
-3018238 Florac Florac 44.31667 3.6 P PPLA3 FR A9 48 481 48061 0 550 Europe/Paris 2010-04-02
-3018246 Floirac Floirac Floirac 44.83238 -0.51411 P PPL FR 97 33 332 33167 16497 65 Europe/Paris 2012-01-18
-3018247 Floing Floing Floing 49.72216 4.92947 P PPL FR A4 08 083 08174 2462 159 Europe/Paris 2012-01-18
-3018248 Flogny-la-Chapelle Flogny-la-Chapelle 47.95 3.86667 P PPL FR A1 89 892 89169 1158 127 Europe/Paris 2007-11-20
-3018251 Flize Flize Flize 49.69875 4.77171 P PPL FR A4 08 081 08173 1272 160 Europe/Paris 2012-01-18
-3018252 Flixecourt Flixecourt Flixecourt 50.01465 2.08095 P PPL FR B6 80 802 80318 3104 18 Europe/Paris 2012-01-18
-3018255 Flins-sur-Seine Flins-sur-Seine Flins,Flins-sur-Seine 48.96523 1.87314 P PPL FR A8 78 781 78238 2328 42 Europe/Paris 2012-01-18
-3018257 Flines-lez-Raches Flines-lez-Raches Flines,Flines-les-Raohes,Flines-lez-Raches,Flines-lès-Râohes,L'Abbaye 50.41667 3.18333 P PPL FR B4 59 593 59239 5567 18 Europe/Paris 2007-11-20
-3018258 Flines-lès-Mortagne Flines-les-Mortagne Flines,Flines-les-Mortagne,Flines-lès-Mortagne 50.50282 3.46495 P PPL FR B4 59 596 59238 1559 20 Europe/Paris 2012-01-18
-3018270 Fléville-devant-Nancy Fleville-devant-Nancy Fleville,Fleville-devant-Nancy,Fléville,Fléville-devant-Nancy 48.62493 6.20499 P PPL FR B2 54 543 54197 2680 221 Europe/Paris 2012-01-18
-3018275 Fleury-sur-Orne Fleury-sur-Orne Fleury,Fleury-sur-Orne 49.14851 -0.37508 P PPL FR 99 14 142 14271 4457 36 Europe/Paris 2011-01-19
-3018277 Fleury-sur-Andelle Fleury-sur-Andelle Fleury,Fleury-sur-Andelle 49.36176 1.35599 P PPL FR A7 27 271 27246 1995 32 Europe/Paris 2012-01-18
-3018279 Fleury-Mérogis Fleury-Merogis Fleury-Merogis,Fleury-Mérogis 48.6373 2.36378 P PPL FR A8 91 912 91235 9241 80 Europe/Paris 2011-10-22
-3018280 Fleury-les-Aubrais Fleury-les-Aubrais Fleury-les-Aubrais,Les Aubrais 47.93328 1.91811 P PPL FR A3 45 452 45147 21085 120 Europe/Paris 2012-01-18
-3018282 Fleury-la-Vallée Fleury-la-Vallee Fleury,Fleury-Vallee-d'Aillant,Fleury-Vallée-d'Aillant,Fleury-la-Vallee,Fleury-la-Vallée 47.86672 3.44908 P PPL FR A1 89 891 89167 1053 137 Europe/Paris 2012-01-18
-3018292 Fleury Fleury Fleury 49.04002 6.19435 P PPL FR B2 57 574 57218 1164 204 Europe/Paris 2012-01-18
-3018296 Fleury Fleury Fleury,Fleury "Bouches de l'Aude,Fleury ”Bouches de l'Aude,Fleury-d'Aude,Perignan,Pérignan 43.23095 3.13745 P PPL FR A9 11 113 11145 2713 27 Europe/Paris 2011-01-11
-3018298 Fleurines Fleurines Fleurines 49.26318 2.58405 P PPL FR B6 60 604 60238 1901 116 Europe/Paris 2012-01-18
-3018303 Fleurieu-sur-Saône Fleurieu-sur-Saone Fleurieu,Fleurieu-sur-Saone,Fleurieu-sur-Saône 45.86381 4.84455 P PPL FR B9 69 691 69085 1361 178 Europe/Paris 2012-01-18
-3018306 Fleurie Fleurie Fleurie 46.19208 4.69733 P PPL FR B9 69 692 69084 1266 298 Europe/Paris 2012-01-18
-3018308 Fleurey-sur-Ouche Fleurey-sur-Ouche Fleurey,Fleurey-sur-Ouche 47.31182 4.85911 P PPL FR A1 21 212 21273 1297 287 Europe/Paris 2012-01-18
-3018318 Fleurbaix Fleurbaix Fleurbaix 50.65061 2.83305 P PPL FR B4 62 622 62338 2556 20 Europe/Paris 2012-01-18
-3018323 Fleurance Fleurance Fleurance,Pleurance 43.84824 0.66302 P PPL FR B3 32 322 32132 6564 104 Europe/Paris 2012-01-18
-3018332 Flesselles Flesselles Flesselles 50.00202 2.26119 P PPL FR B6 80 802 80316 2174 127 Europe/Paris 2012-01-18
-3018336 Flers-en-Escrebieux Flers-en-Escrebieux Flers,Flers-en-Escrebieux,Flers-en-Escribeus 50.38886 3.06842 P PPL FR B4 59 593 59234 5669 24 Europe/Paris 2012-01-18
-3018339 Flers Flers Flers,Flers-de-l'Orne 48.73722 -0.57466 P PPL FR 99 61 612 61169 17430 206 Europe/Paris 2012-01-18
-3018354 Fléac Fleac Fleac,Fléac 45.66667 0.1 P PPL FR B7 16 161 16138 3079 32 Europe/Paris 2012-01-18
-3018355 Flayosc Flayosc Flayosc 43.53253 6.39401 P PPL FR B8 83 831 83058 4290 337 Europe/Paris 2012-01-18
-3018358 Flaxlanden Flaxlanden Flaxlanden 47.69493 7.31343 P PPL FR C1 68 684 68093 1312 266 Europe/Paris 2012-01-18
-3018361 Flavy-le-Martel Flavy-le-Martel Flavy,Flavy-le-Martel 49.71299 3.1915 P PPL FR B6 02 023 02315 1529 71 Europe/Paris 2012-01-18
-3018362 Flavin Flavin Flavin 44.2889 2.60513 P PPL FR B3 12 122 12102 2019 648 Europe/Paris 2011-01-17
-3018364 Flavigny-sur-Moselle Flavigny-sur-Moselle Flavigny,Flavigny-sur-Moselle,La Basse Flavigny 48.56412 6.19113 P PPL FR B2 54 543 54196 1932 245 Europe/Paris 2012-01-18
-3018373 Flaviac Flaviac Flaviac 44.74777 4.67434 P PPL FR B9 07 072 07090 1149 152 Europe/Paris 2011-01-14
-3018389 Flassans-sur-Issole Flassans-sur-Issole Flassans,Flassans-sur-Issole 43.3702 6.22363 P PPL FR B8 83 833 83057 2681 231 Europe/Paris 2012-01-18
-3018409 Flamanville Flamanville Flamanville 49.53274 -1.8656 P PPL FR 99 50 502 50184 1722 74 Europe/Paris 2012-01-18
-3018448 Fitz-James Fitz-James Fitz-James 49.39113 2.4307 P PPL FR B6 60 602 60234 2533 61 Europe/Paris 2012-01-18
-3018450 Fitilieu Fitilieu Fitilieu 45.54744 5.56194 P PPL FR B9 38 382 38165 1390 383 Europe/Paris 2012-01-18
-3018453 Fismes Fismes Fismes 49.30773 3.68607 P PPL FR A4 51 513 51250 5395 74 Europe/Paris 2012-01-18
-3018455 Firminy Firminy Firminy 45.38732 4.29074 P PPL FR B9 42 423 42095 17902 503 Europe/Paris 2012-01-18
-3018456 Firmi Firmi Firmi,Firmy 44.54106 2.30764 P PPL FR B3 12 123 12100 2678 240 Europe/Paris 2011-01-12
-3018474 Finhan Finhan Finhan 43.91335 1.2212 P PPL FR B3 82 822 82062 1005 98 Europe/Paris 2011-01-09
-3018489 Fillinges Fillinges 46.15944 6.34237 P PPL FR B9 74 743 74128 2702 573 Europe/Paris 2008-04-23
-3018492 Fillé Fille Fille,Fille-sur-Sarthe,Fillé,Fillé-sur-Sarthe 47.90011 0.12543 P PPL FR B5 72 721 72133 1135 41 Europe/Paris 2012-01-18
-3018506 Figeac Figeac Ceint-d'Eau,Figeac 44.6 2.03333 P PPLA3 FR B3 46 462 46102 11491 335 Europe/Paris 2011-11-02
-3018513 Figanières Figanieres Figanieres,Figanières 43.57 6.5 P PPL FR B8 83 831 83056 2424 322 Europe/Paris 2012-01-18
-3018544 Feyzin Feyzin Feyzin 45.66728 4.85971 P PPL FR B9 69 691 69276 9539 190 Europe/Paris 2012-01-18
-3018545 Feytiat Feytiat Festiac,Feytiat 45.80905 1.33033 P PPL FR B1 87 872 87065 5437 338 Europe/Paris 2012-01-18
-3018560 Feurs Feurs Ferus,Feurs 45.73988 4.22706 P PPL FR B9 42 421 42094 7901 345 Europe/Paris 2012-01-18
-3018561 Feuquières-en-Vimeu Feuquieres-en-Vimeu Feuquieres,Feuquieres-en-Vimeu,Feuquières,Feuquières-en-Vimeu 50.05982 1.60465 P PPL FR B6 80 801 80308 2429 101 Europe/Paris 2012-01-18
-3018562 Feuquières Feuquieres Feuquieres,Feuquières 49.64676 1.84784 P PPL FR B6 60 601 60233 1638 195 Europe/Paris 2012-01-18
-3018586 Feuchy Feuchy Feuchy 50.29439 2.84335 P PPL FR B4 62 621 62331 1184 56 Europe/Paris 2012-01-18
-3018587 Feucherolles Feucherolles Feucherolles 48.87002 1.97402 P PPL FR A8 78 783 78233 2976 128 Europe/Paris 2012-01-18
-3018590 Féternes Feternes Feterne,Feternes,Féterne,Féternes 46.35259 6.5639 P PPL FR B9 74 744 74127 1269 783 Europe/Paris 2012-01-18
-3018591 Festubert Festubert Festubert 50.5425 2.73593 P PPL FR B4 62 622 62330 1147 20 Europe/Paris 2012-01-18
-3018601 Fessenheim Fessenheim Fessenheim 47.91744 7.53698 P PPL FR C1 68 683 68091 2219 206 Europe/Paris 2012-01-18
-3018605 Fesches-le-Châtel Fesches-le-Chatel Fesches,Fesches-le-Chatel,Fesches-le-Châtel 47.52415 6.90535 P PPL FR A6 25 252 25237 2245 328 Europe/Paris 2012-01-18
-3018633 Ferrières-en-Brie Ferrieres-en-Brie Ferrieres,Ferrieres-en-Brie,Ferrières,Ferrières-en-Brie 48.82352 2.70664 P PPL FR A8 77 775 77181 1810 118 Europe/Paris 2012-01-18
-3018650 Ferrière-la-Grande Ferriere-la-Grande Ferriere,Ferriere-la-Grande,Ferrieres-la-Grande,Ferrière,Ferrière-la-Grande,Ferrières-la-Grande 50.25521 3.99288 P PPL FR B4 59 591 59230 5834 140 Europe/Paris 2012-01-18
-3018659 Ferrette Ferrette Ferrette 47.49196 7.31937 P PPL FR C1 68 681 68090 1047 534 Europe/Paris 2012-01-18
-3018671 Ferrals-les-Corbières Ferrals-les-Corbieres Ferrals 43.15 2.73333 P PPL FR A9 11 113 11140 1071 68 Europe/Paris 2007-11-17
-3018672 Ferques Ferques Ferques 50.83002 1.75994 P PPL FR B4 62 623 62329 1834 93 Europe/Paris 2012-01-18
-3018675 Férolles-Attilly Ferolles-Attilly Ferolles-Attilly,Férolles-Attilly 48.73184 2.63088 P PPL FR A8 77 772 77180 1129 93 Europe/Paris 2012-01-18
-3018676 Férolles Ferolles Ferolles,Férolles 47.83475 2.11113 P PPL FR A3 45 452 45144 1198 101 Europe/Paris 2012-01-18
-3018679 Ferney-Voltaire Ferney-Voltaire Ferney,Ferney-Voltaire 46.25858 6.11063 P PPL FR B9 01 013 01160 7742 425 Europe/Paris 2011-11-02
-3018684 Fermanville Fermanville Fermanville 49.68673 -1.46284 P PPL FR 99 50 502 50178 1451 18 Europe/Paris 2012-01-18
-3018688 Férin Ferin Ferin,Férin 50.32732 3.07415 P PPL FR B4 59 593 59228 1390 34 Europe/Paris 2012-01-18
-3018692 Férel Ferel Ferel,Férel 47.48202 -2.34227 P PPL FR A2 56 563 56058 2189 39 Europe/Paris 2012-01-18
-3018693 Fère-en-Tardenois Fere-en-Tardenois Fere en Tardenais,Fere-en-Tardenois,Fere-sur-Ourcq,Fère-en-Tardenois,Fère-sur-Ourcq 49.2 3.51667 P PPL FR B6 02 021 02305 3370 123 Europe/Paris 2012-01-18
-3018694 Fère-Champenoise Fere-Champenoise Fere-Champenoise,Fère-Champenoise 48.75432 3.99069 P PPL FR A4 51 512 51248 2339 113 Europe/Paris 2012-01-18
-3018713 Fenouillet Fenouillet Fenouillet 43.68041 1.392 P PPL FR B3 31 313 31182 4504 129 Europe/Paris 2011-11-02
-3018730 Feneu Feneu Feneu 47.57211 -0.59422 P PPL FR B5 49 491 49135 1899 49 Europe/Paris 2012-01-18
-3018737 Fénay Fenay Fenay,Fénay 47.23185 5.06211 P PPL FR A1 21 212 21263 1272 228 Europe/Paris 2012-01-18
-3018739 Fenain Fenain Fenain 50.36667 3.3 P PPL FR B4 59 593 59227 5346 21 Europe/Paris 2012-01-18
-3018747 Felletin Felletin Felletin 45.88333 2.17431 P PPL FR B1 23 231 23079 2332 549 Europe/Paris 2012-01-18
-3018748 Fellering Fellering Fellering,Felleringen 47.89659 6.98552 P PPL FR C1 68 686 68089 1617 440 Europe/Paris 2012-01-18
-3018755 Félines Felines Felines,Félines 45.31693 4.73067 P PPL FR B9 07 073 07089 1167 388 Europe/Paris 2012-01-18
-3018776 Feillens Feillens Feillens 46.33515 4.88863 P PPL FR B9 01 012 01159 3015 178 Europe/Paris 2012-01-18
-3018778 Feignies Feignies 50.29806 3.91534 P PPL FR B4 59 591 59225 7370 149 Europe/Paris 2009-01-18
-3018780 Feigères Feigeres Feigeres,Feigères 46.11305 6.08041 P PPL FR B9 74 743 74124 1360 567 Europe/Paris 2012-01-18
-3018781 Fégréac Fegreac Fegerieg,Fegreac,Fégréac 47.58476 -2.0441 P PPL FR B5 44 441 44057 2156 33 Europe/Paris 2012-01-18
-3018782 Fegersheim Fegersheim 48.49016 7.68107 P PPL FR C1 67 676 67137 4919 148 Europe/Paris 2011-02-14
-3018793 Féchain Fechain Fechain,Féchain 50.26638 3.21024 P PPL FR B4 59 593 59224 1958 44 Europe/Paris 2012-01-18
-3018794 Fécamp Fecamp Fecamp,Fécamp,Secamp,Sècamp 49.75787 0.37457 P PPL FR A7 76 762 76259 22003 17 Europe/Paris 2011-11-02
-3018824 Fayl-Billot Fayl-Billot Fayl-Billot,Fays-Billot 47.78199 5.59917 P PPL FR A4 52 522 52197 1609 328 Europe/Paris 2012-01-18
-3018835 Fayence Fayence 43.6257 6.69531 P PPL FR B8 83 831 83055 4603 375 Europe/Paris 2008-04-02
-3018859 Fay-de-Bretagne Fay-de-Bretagne Faouell,Fay,Fay-de-Bretagne 47.41453 -1.79155 P PPL FR B5 44 441 44056 2687 48 Europe/Paris 2012-01-18
-3018861 Fay-aux-Loges Fay-aux-Loges Fay,Fay-aux-Loges 47.92724 2.14012 P PPL FR A3 45 452 45142 3082 104 Europe/Paris 2012-01-18
-3018880 Favières Favieres Favieres,Favières 48.76324 2.7747 P PPL FR A8 77 772 77177 1025 104 Europe/Paris 2012-01-18
-3018886 Faverolles-sur-Cher Faverolles-sur-Cher Faverolles,Faverolles-sur-Cher 47.31732 1.19045 P PPL FR A3 41 411 41080 1240 90 Europe/Paris 2012-01-18
-3018900 Faverney Faverney Faverney,Puvernay 47.76713 6.10428 P PPL FR A6 70 702 70228 1050 226 Europe/Paris 2012-01-18
-3018902 Faverges-de-la-Tour Faverges-de-la-Tour Faverges,Faverges-de-la-Tour 45.59096 5.52265 P PPL FR B9 38 382 38162 1195 395 Europe/Paris 2012-01-18
-3018903 Faverges Faverges Faverges 45.74752 6.29297 P PPL FR B9 74 741 74123 6580 519 Europe/Paris 2012-01-18
-3018928 Fauville-en-Caux Fauville-en-Caux Fauville,Fauville-en-Caux 49.65257 0.59197 P PPL FR A7 76 762 76258 2072 129 Europe/Paris 2012-01-18
-3018942 Faumont Faumont Faumont 50.46018 3.13713 P PPL FR B4 59 593 59222 1971 37 Europe/Paris 2012-01-18
-3018944 Faulx Faulx Faulx 48.79396 6.19448 P PPL FR B2 54 543 54188 1275 242 Europe/Paris 2012-01-18
-3018946 Faulquemont Faulquemont Faulquemont 49.04711 6.60314 P PPL FR B2 57 571 57209 5553 265 Europe/Paris 2012-01-18
-3019001 Farschviller Farschviller Farschviller,Farschwiller 49.09424 6.89534 P PPL FR B2 57 573 57208 1418 257 Europe/Paris 2012-01-18
-3019008 Farnay Farnay Farnay 45.49291 4.59643 P PPL FR B9 42 423 42093 1165 451 Europe/Paris 2012-01-18
-3019016 Fargues-Saint-Hilaire Fargues-Saint-Hilaire Fargues,Fargues-Saint-Hilaire 44.82304 -0.44676 P PPL FR 97 33 332 33165 1351 84 Europe/Paris 2012-01-18
-3019040 Faremoutiers Faremoutiers Faremoutiers,Mont-l'Egalite,Mont-l'Egalité 48.79962 2.99607 P PPL FR A8 77 771 77176 2527 126 Europe/Paris 2012-01-18
-3019042 Fareins Fareins Fareins 46.01793 4.75993 P PPL FR B9 01 012 01157 1862 196 Europe/Paris 2012-01-18
-3019044 Farébersviller Farebersviller Farebersviller,Farébersviller 49.11996 6.87201 P PPL FR B2 57 573 57207 7068 289 Europe/Paris 2012-01-18
-3019073 Fampoux Fampoux 50.30173 2.8731 P PPL FR B4 62 621 62323 1107 51 Europe/Paris 2006-10-12
-3019077 Fameck Fameck Fameck 49.30335 6.1086 P PPL FR B2 57 578 57206 12291 180 Europe/Paris 2012-01-18
-3019080 Famars Famars Famars 50.31743 3.51945 P PPL FR B4 59 596 59221 2536 71 Europe/Paris 2012-01-18
-3019088 Falleron Falleron Falleron 46.8816 -1.70208 P PPL FR B5 85 853 85086 1249 34 Europe/Paris 2012-01-18
-3019095 Falicon Falicon Falicon 43.74786 7.27764 P PPL FR B8 06 062 06060 1707 214 Europe/Paris 2012-01-18
-3019110 Falck Falck Falck 49.23134 6.63497 P PPL FR B2 57 571 57205 2714 220 Europe/Paris 2012-01-18
-3019113 Falaise Falaise Falaise 48.89217 -0.19527 P PPL FR 99 14 142 14258 9107 142 Europe/Paris 2012-01-18
-3019125 Fains-Véel Fains-Veel Fains-les-Sources 48.78333 5.13333 P PPL FR B2 55 551 55186 2361 242 Europe/Paris 2007-11-20
-3019139 Fagnières Fagnieres Fagnieres,Fagnières 48.96385 4.31692 P PPL FR A4 51 511 51242 4783 89 Europe/Paris 2012-01-18
-3019153 Faches-Thumesnil Faches-Thumesnil Faches 50.58333 3.06667 P PPL FR B4 59 595 59220 16163 40 Europe/Paris 2007-11-17
-3019157 Fabrezan Fabrezan Fabrezan 43.13581 2.69814 P PPL FR A9 11 113 11132 1207 79 Europe/Paris 2012-01-18
-3019160 Fabrègues Fabregues Fabregues,Fabrègues 43.55057 3.77638 P PPL FR A9 34 343 34095 6607 42 Europe/Paris 2012-01-18
-3019170 Ézy-sur-Eure Ezy-sur-Eure Ezy,Ezy-sur-Eure,Ézy,Ézy-sur-Eure 48.86667 1.41667 P PPL FR A7 27 273 27230 3248 64 Europe/Paris 2012-01-18
-3019174 Èze Eze Ehz,Eze,Eze-sur-Mer,Mer-d'Eze,Езе,Эз 43.71667 7.36667 P PPL FR B8 06 062 06059 2610 -9999 Europe/Paris 2008-05-10
-3019175 Ézanville Ezanville Ezanville,Ézanville 49.02794 2.36786 P PPL FR A8 95 952 95229 8950 81 Europe/Paris 2012-01-18
-3019176 Eyzin-Pinet Eyzin-Pinet Eyzin,Eyzin-Pinet 45.47241 4.99841 P PPL FR B9 38 383 38160 2087 282 Europe/Paris 2012-01-18
-3019181 Eyvigues-et-Eybènes Eyvigues-et-Eybenes Eyvignes,Eyvignes-et-Eybenes,Eyvignes-et-Eybènes,Eyvigues 44.93333 1.35 P PPL FR 97 24 244 24516 1164 269 Europe/Paris 2010-11-21
-3019193 Eysines Eysines Eysines 44.88352 -0.64686 P PPL FR 97 33 332 33162 21394 26 Europe/Paris 2012-01-18
-3019203 Eyragues Eyragues Eyragues 43.84103 4.84231 P PPL FR B8 13 132 13036 4146 28 Europe/Paris 2011-01-19
-3019209 Eymoutiers Eymoutiers Eymoutiers 45.7379 1.74189 P PPL FR B1 87 872 87064 2188 434 Europe/Paris 2012-01-18
-3019212 Eymet Eymet Eymet 44.66812 0.39961 P PPL FR 97 24 241 24167 2718 53 Europe/Paris 2012-01-18
-3019219 Eyguières Eyguieres Eyguieres,Eyguières 43.69481 5.03131 P PPL FR B8 13 132 13035 6475 98 Europe/Paris 2011-01-18
-3019229 Eygalières Eygalieres Eygalieres,Eygalières 43.76099 4.94968 P PPL FR B8 13 132 13034 1913 112 Europe/Paris 2011-01-18
-3019238 Eybens Eybens Eybens 45.14867 5.74926 P PPL FR B9 38 381 38158 10195 238 Europe/Paris 2012-01-18
-3019247 Exireuil Exireuil Exireuil 46.43382 -0.19252 P PPL FR B7 79 792 79114 1305 149 Europe/Paris 2012-01-18
-3019248 Exincourt Exincourt Exincourt 47.49465 6.83169 P PPL FR A6 25 252 25230 3452 320 Europe/Paris 2012-01-18
-3019249 Exideuil Exideuil Excideuil,Exideuil 45.88639 0.67318 P PPL FR B7 16 163 16134 1055 152 Europe/Paris 2012-01-18
-3019253 Excideuil Excideuil Excideuil 45.33636 1.04754 P PPL FR 97 24 243 24164 1444 162 Europe/Paris 2012-01-18
-3019256 Évry Evry Evry,Evry-Petit-Bourg,evuri,Évry,Évry-Petit-Bourg,エヴリー 48.63333 2.45 P PPLA2 FR FR A8 91 912 91228 51900 60 Europe/Paris 2011-12-08
-3019259 Évron Evron Evron,Évron 48.15642 -0.3997 P PPL FR B5 53 532 53097 7808 109 Europe/Paris 2012-01-18
-3019265 Évreux Evreux Aebura,Eburovici,Evre,Evreaux,Evreux,Evreux-le-Coudray,evuru,Évreux,Евре,エヴルー 49.02414 1.15082 P PPLA2 FR A7 27 273 27229 57795 71 Europe/Paris 2012-03-30
-3019267 Évrecy Evrecy Evrecy,Évrecy 49.09904 -0.50421 P PPL FR 99 14 142 14257 1365 95 Europe/Paris 2012-01-18
-3019271 Évran Evran Evran,Evrann,Évran 48.37987 -1.98076 P PPL FR A2 22 221 22056 1561 21 Europe/Paris 2012-01-18
-3019275 Évires Evires Evires,Évires 46.03783 6.22453 P PPL FR B9 74 741 74120 1304 827 Europe/Paris 2012-01-18
-3019276 Évin-Malmaison Evin-Malmaison Evin,Evin-Malmaison,Évin,Évin-Malmaison 50.43923 3.03138 P PPL FR B4 62 627 62321 4805 25 Europe/Paris 2012-01-18
-3019280 Évian-les-Bains Evian-les-Bains Evian,Evian-les-Bains,Evijan le Ben,ai wei ang lai ban,evu~ian=re=ban,Évian,Évian-les-Bains,Евијан ле Бен,エヴィアン=レ=バン,埃維昂萊班 46.40111 6.58793 P PPL FR B9 74 744 74119 8207 388 Europe/Paris 2011-11-02
-3019293 Évenos Evenos Evenos,Évenos 43.15863 5.84786 P PPL FR B8 83 832 83053 2062 160 Europe/Paris 2012-01-18
-3019299 Évaux-les-Bains Evaux-les-Bains Evaux,Evaux-les-Bains,Évaux-les-Bains 46.17346 2.48463 P PPL FR B1 23 231 23076 1592 462 Europe/Paris 2012-01-18
-3019308 Euville Euville 48.7503 5.62603 P PPL FR B2 55 552 55184 1450 234 Europe/Paris 2009-04-02
-3019314 Eurre Eurre Eurre 44.76088 4.99099 P PPL FR B9 26 261 26125 1087 219 Europe/Paris 2012-01-18
-3019320 Eulmont Eulmont Eulmont 48.75174 6.22593 P PPL FR B2 54 543 54186 1004 272 Europe/Paris 2012-01-18
-3019329 Eu Eu Eu 50.04606 1.42079 P PPL FR A7 76 761 76255 8425 15 Europe/Paris 2012-01-18
-3019330 Etzling Etzling Etzling 49.17856 6.96138 P PPL FR B2 57 573 57202 1215 299 Europe/Paris 2012-01-18
-3019335 Étupes Etupes Etupes,Étupes 47.50525 6.87075 P PPL FR A6 25 252 25228 3459 371 Europe/Paris 2012-01-18
-3019349 Étriché Etriche Etriche,Étriché 47.65087 -0.44377 P PPL FR B5 49 491 49132 1272 34 Europe/Paris 2012-01-18
-3019354 Étreux Etreux 49.98333 3.65 P PPL FR B6 02 025 02298 1645 138 Europe/Paris 2007-11-14
-3019355 Étretat Etretat Ehtreta,Etretat,Étretat,Этрета 49.70669 0.20523 P PPL FR A7 76 762 76254 1658 8 Europe/Paris 2012-01-18
-3019363 Étrépagny Etrepagny Etrepagny,Étrépagny 49.30623 1.6114 P PPL FR A7 27 271 27226 3761 86 Europe/Paris 2012-01-18
-3019364 Étrembières Etrembieres Etrembieres,Étrembières 46.17864 6.21774 P PPL FR B9 74 743 74118 1573 400 Europe/Paris 2012-01-18
-3019367 Étrelles Etrelles Etrelles,Stredell,Étrelles 48.06031 -1.19402 P PPL FR A2 35 351 35109 2395 92 Europe/Paris 2012-01-18
-3019369 Étreillers Etreillers Etreillers,Étreillers 49.83059 3.16029 P PPL FR B6 02 023 02296 1048 99 Europe/Paris 2012-01-18
-3019372 Étréchy Etrechy Etrechy,Etrechy-la-Montagne,Etréchy-la-Montagne,Étréchy 48.49465 2.19489 P PPL FR A8 91 911 91226 6461 79 Europe/Paris 2012-01-18
-3019391 Étoile-sur-Rhône Etoile-sur-Rhone Etoile,Etoile-sur-Rhone,Étoile-sur-Rhône 44.83812 4.89159 P PPL FR B9 26 263 26124 4345 154 Europe/Paris 2012-01-18
-3019401 Étival-lès-le-Mans Etival-les-le-Mans Etival,Étival 47.95 0.08333 P PPL FR B5 72 721 72127 2044 55 Europe/Paris 2008-07-05
-3019402 Étival-Clairefontaine Etival-Clairefontaine Etival,Etival-Clairefontaine,Étival,Étival-Clairefontaine 48.36519 6.86118 P PPL FR B2 88 883 88165 2445 314 Europe/Paris 2012-01-18
-3019406 Étiolles Etiolles Etiolles,Étiolles 48.63248 2.48226 P PPL FR A8 91 912 91225 2788 84 Europe/Paris 2012-01-18
-3019414 Éterville Eterville Eterville,Éterville 49.14423 -0.42512 P PPL FR 99 14 142 14254 1098 45 Europe/Paris 2012-01-18
-3019423 Étel Etel An Intel,Etel,Étel 47.65614 -3.20018 P PPL FR A2 56 561 56055 2068 6 Europe/Paris 2012-01-18
-3019433 Etaux Etaux Eteaux 46.06667 6.3 P PPL FR B9 74 742 74116 1212 604 Europe/Paris 2007-11-17
-3019434 Étauliers Etauliers Etauliers,Étauliers 45.22582 -0.57243 P PPL FR 97 33 331 33159 1514 8 Europe/Paris 2012-01-18
-3019436 Étaules Etaules Etaules,Étaules 45.73407 -1.09918 P PPL FR B7 17 172 17155 2009 23 Europe/Paris 2012-01-18
-3019441 Étaples Etaples Etaples,Etaples-sur-Mer,Montagne-sur-Mer,Étaples,Étaples-sur-Mer 50.52194 1.63319 P PPL FR B4 62 624 62318 11397 13 Europe/Paris 2008-04-18
-3019443 Étang-sur-Arroux Etang-sur-Arroux Etang,Etang-sur-Arroux,Étang,Étang-sur-Arroux 46.8656 4.18988 P PPL FR A1 71 711 71192 1929 273 Europe/Paris 2012-01-18
-3019458 Étampes-sur-Marne Etampes-sur-Marne Etampes,Etampes-sur-Marne,Étampes,Étampes-sur-Marne 49.03464 3.41893 P PPL FR B6 02 021 02292 1323 78 Europe/Paris 2012-01-18
-3019459 Étampes Etampes Ehtamp,Etampes,Étampes,Этамп 48.43333 2.15 P PPLA3 FR A8 91 911 91223 23012 104 Europe/Paris 2011-11-02
-3019468 Étalans Etalans Etalans,Étalans 47.15125 6.27315 P PPL FR A6 25 253 25222 1030 596 Europe/Paris 2012-01-18
-3019471 Étainhus Etainhus Etainhus,Étainhus 49.56648 0.31285 P PPL FR A7 76 762 76250 1027 114 Europe/Paris 2012-01-18
-3019474 Étain Etain Etain,Étain 49.21259 5.64022 P PPL FR B2 55 553 55181 3710 212 Europe/Paris 2012-01-18
-3019478 Étagnac Etagnac Etagnac,Étagnac 45.89506 0.77897 P PPL FR B7 16 163 16132 1012 241 Europe/Paris 2012-01-18
-3019480 Étables-sur-Mer Etables-sur-Mer Etables,Staol,Étables 48.63333 -2.83333 P PPL FR A2 22 224 22055 2623 41 Europe/Paris 2007-11-15
-3019485 Esvres Esvres Esvres 47.28537 0.78588 P PPL FR A3 37 372 37104 4492 74 Europe/Paris 2012-01-18
-3019500 Estrées-Saint-Denis Estrees-Saint-Denis Estrees-Franciade,Estrees-Saint-Denis,Estrées-Franciade,Estrées-Saint-Denis 49.42602 2.64293 P PPL FR B6 60 603 60223 3769 71 Europe/Paris 2012-01-18
-3019505 Estrées Estrees Estrees,Estrées 50.30079 3.0698 P PPL FR B4 59 593 59214 1047 54 Europe/Paris 2012-01-18
-3019515 Estrablin Estrablin Estrablin 45.51732 4.96626 P PPL FR B9 38 383 38157 3492 236 Europe/Paris 2012-01-18
-3019528 Estivareilles Estivareilles Estivareilles 46.42533 2.61828 P PPL FR 98 03 031 03111 1058 208 Europe/Paris 2012-01-18
-3019532 Estissac Estissac Estissac,Lyebault-sur-Vanne,Lyébault-sur-Vanne,Val-Libre 48.2692 3.80515 P PPL FR A4 10 103 10142 1746 131 Europe/Paris 2012-01-18
-3019536 Estillac Estillac Estillac 44.15766 0.56383 P PPL FR 97 47 471 47091 1374 159 Europe/Paris 2012-01-18
-3019545 Estevelles Estevelles Estevelles 50.47653 2.90928 P PPL FR B4 62 627 62311 1713 28 Europe/Paris 2012-01-18
-3019549 Esternay Esternay Esternay 48.73232 3.56159 P PPL FR A4 51 512 51237 1639 158 Europe/Paris 2012-01-18
-3019578 Estaires Estaires Estaires 50.64574 2.72782 P PPL FR B4 59 594 59212 5979 18 Europe/Paris 2012-01-18
-3019584 Estagel Estagel Estagel 42.77314 2.69665 P PPL FR A9 66 662 66071 2129 79 Europe/Paris 2012-01-18
-3019601 Essômes-sur-Marne Essomes-sur-Marne Essomes,Essomes-sur-Marne,Essômes,Essômes-sur-Marne 49.02881 3.37571 P PPL FR B6 02 021 02290 2483 63 Europe/Paris 2012-01-18
-3019604 Essigny-le-Grand Essigny-le-Grand Essigny,Essigny-le-Grand 49.77865 3.27774 P PPL FR B6 02 023 02287 1216 107 Europe/Paris 2012-01-18
-3019607 Essey-lès-Nancy Essey-les-Nancy Essey,Essey-les-Nancy,Essey-lès-Nancy 48.70179 6.22425 P PPL FR B2 54 543 54184 8090 200 Europe/Paris 2012-01-18
-3019621 Essert Essert Essert 47.63254 6.81539 P PPL FR A6 90 901 90039 2891 369 Europe/Paris 2012-01-18
-3019631 Essars Essars Essars,Essars-lez-Bethune,Essars-lez-Béthune 50.54868 2.6662 P PPL FR B4 62 622 62310 1672 18 Europe/Paris 2012-01-18
-3019638 Esquibien Esquibien An Eskevien,Esquibien 48.02506 -4.56139 P PPL FR A2 29 294 29052 1707 56 Europe/Paris 2008-06-04
-3019640 Esquerdes Esquerdes Esquerdes 50.70414 2.18851 P PPL FR B4 62 625 62309 1506 35 Europe/Paris 2012-01-18
-3019643 Esquelbecq Esquelbecq Esquelbecq 50.88694 2.43215 P PPL FR B4 59 594 59210 2181 16 Europe/Paris 2012-01-18
-3019644 Esquéhéries Esqueheries Esqueheries,Esquéhéries 49.98391 3.74743 P PPL FR B6 02 025 02286 1222 169 Europe/Paris 2012-01-18
-3019695 Espéraza Esperaza Esperasan,Esperaza,Espéraza 42.93225 2.22006 P PPL FR A9 11 112 11129 2175 249 Europe/Paris 2012-01-18
-3019699 Espelette Espelette Espelette,Ezpeleta 43.34015 -1.44737 P PPL FR 97 64 641 64213 2032 77 Europe/Paris 2012-01-18
-3019716 Espaly-Saint-Marcel Espaly-Saint-Marcel Espaly,Espaly-Saint-Marcel,Espaly-et-Marcel 45.0479 3.86557 P PPL FR 98 43 432 43089 3971 639 Europe/Paris 2010-11-19
-3019717 Espalion Espalion 44.52237 2.76265 P PPL FR B3 12 122 12096 4652 340 Europe/Paris 2009-06-23
-3019733 Esnandes Esnandes Esnandes 46.25033 -1.11566 P PPL FR B7 17 173 17153 1959 9 Europe/Paris 2012-01-18
-3019740 Eslettes Eslettes Eslettes 49.5482 1.05515 P PPL FR A7 76 763 76245 1431 147 Europe/Paris 2012-01-18
-3019755 Escoutoux Escoutoux Escoutoux 45.82075 3.56415 P PPL FR 98 63 635 63151 1201 395 Europe/Paris 2012-01-18
-3019766 La Baule-Escoublac La Baule-Escoublac Ar Baol-Skoubleg,Baule-Escoublac,Escoublac,Escoublac-la-Baule,La Baule,La Baule-Escoublac 47.29221 -2.36395 P PPL FR B5 44 443 44055 17775 28 Europe/Paris 2011-11-02
-3019810 Esches Esches Esches 49.22086 2.16595 P PPL FR B6 60 601 60218 1113 78 Europe/Paris 2012-01-18
-3019812 Eschentzwiller Eschentzwiller Eschentzwiller 47.71253 7.39806 P PPL FR C1 68 684 68084 1309 271 Europe/Paris 2012-01-18
-3019816 Eschbach Eschbach 48.87465 7.73609 P PPL FR C1 67 677 67132 1012 187 Europe/Paris 2007-07-13
-3019817 Eschau Eschau 48.48897 7.71644 P PPL FR C1 67 676 67131 4641 144 Europe/Paris 2007-07-07
-3019820 Escautpont Escautpont Escautpont 50.41875 3.55341 P PPL FR B4 59 596 59207 4324 24 Europe/Paris 2012-01-18
-3019825 Escaudœuvres Escaudoeuvres 50.2 3.26667 P PPL FR B4 59 592 59206 3375 50 Europe/Paris 2007-11-20
-3019827 Escaudain Escaudain Escaudain 50.33315 3.3443 P PPL FR B4 59 596 59205 9479 39 Europe/Paris 2012-01-18
-3019843 Escalquens Escalquens Escalquens 43.51744 1.55893 P PPL FR B3 31 313 31169 6162 171 Europe/Paris 2012-01-18
-3019854 Esbly Esbly Esbly 48.9052 2.81235 P PPL FR A8 77 771 77171 5609 56 Europe/Paris 2012-01-18
-3019858 Ervy-le-Châtel Ervy-le-Chatel Ervy,Ervy-le-Chatel,Ervy-le-Châtel 48.04116 3.90988 P PPL FR A4 10 103 10140 1200 156 Europe/Paris 2012-01-18
-3019865 Erstein Erstein Erstein 48.42373 7.66262 P PPL FR C1 67 675 67130 9647 156 Europe/Paris 2011-11-02
-3019870 Erre Erre Erre,Erre-en-Ostrevent 50.36252 3.31561 P PPL FR B4 59 593 59203 1359 23 Europe/Paris 2012-01-18
-3019875 Erquy Erquy Erge-ar-Mor,Erquy,Erquy-Plages 48.63186 -2.4628 P PPL FR A2 22 224 22054 3722 8 Europe/Paris 2012-01-18
-3019877 Erquinghem-Lys Erquinghem-Lys Erquinghem-Lys 50.67601 2.84505 P PPL FR B4 59 595 59202 4581 19 Europe/Paris 2012-01-18
-3019888 Ernolsheim-Bruche Ernolsheim-Bruche Ernolsheim,Ernolsheim-Bruche 48.56531 7.56503 P PPL FR C1 67 673 67128 1786 170 Europe/Paris 2011-02-14
-3019895 Ernée Ernee Ernee,Ernée 48.29764 -0.93143 P PPL FR B5 53 533 53096 6127 142 Europe/Paris 2012-01-18
-3019897 Ermont Ermont Ermont 48.99004 2.25804 P PPL FR A8 95 953 95219 28117 54 Europe/Paris 2012-01-18
-3019920 Ergué-Gabéric Ergue-Gaberic An Erge-Vras,Ergue-Gaberic,Ergué-Gabéric 47.99562 -4.02223 P PPL FR A2 29 294 29051 7326 79 Europe/Paris 2012-01-18
-3019930 Erdeven Erdeven An Ardeven,Erdeven 47.6421 -3.15706 P PPL FR A2 56 561 56054 2725 17 Europe/Paris 2012-01-18
-3019931 Ercuis Ercuis Ercuis 49.23465 2.30407 P PPL FR B6 60 604 60212 1486 149 Europe/Paris 2012-01-18
-3019940 Ercé-près-Liffré Erce-pres-Liffre Erce,Erce-pres-Liffre,Ercee-pres Liffre,Ercé,Ercé-près-Liffré,Ercée-près Liffré,Herzieg-Liverieg 48.25454 -1.5156 P PPL FR A2 35 353 35107 1493 60 Europe/Paris 2012-01-18
-3019941 Ercé-en-Lamée Erce-en-Lamee Erce,Erce-en-Lamee,Ercé,Ercé-en-Lamée,Herzieg-Mez 47.83048 -1.55867 P PPL FR A2 35 352 35106 1260 70 Europe/Paris 2012-01-18
-3019943 Erbrée Erbree Erbree,Erbrée,Ervored 48.09744 -1.12479 P PPL FR A2 35 351 35105 1655 120 Europe/Paris 2012-01-18
-3019944 Erbray Erbray Erbray,Ervoreg 47.65492 -1.31783 P PPL FR B5 44 441 44054 2609 61 Europe/Paris 2012-01-18
-3019952 Éragny Eragny Eragny,Éragny 49.01667 2.1 P PPL FR A8 95 953 95218 15385 54 Europe/Paris 2012-01-18
-3019957 Équihen-Plage Equihen-Plage Equihen,Equihen-Plage,Équihen-Plage 50.67557 1.57225 P PPL FR B4 62 623 62300 2986 70 Europe/Paris 2012-01-18
-3019960 Équeurdreville-Hainneville Equeurdreville-Hainneville Equeurdreville 49.64868 -1.65306 P PPL FR 99 50 502 50173 18862 21 Europe/Paris 2007-11-14
-3019962 Équemauville Equemauville Equemauville,Équemauville 49.39406 0.2076 P PPL FR 99 14 143 14243 1275 114 Europe/Paris 2012-01-18
-3019969 Épron Epron Epron,Épron 49.22174 -0.37085 P PPL FR 99 14 142 14242 1861 54 Europe/Paris 2012-01-18
-3019977 Eppeville Eppeville Eppeville 49.74069 3.05114 P PPL FR B6 80 804 80274 2108 63 Europe/Paris 2012-01-18
-3019981 Épouville Epouville Epouville,Épouville 49.56349 0.22372 P PPL FR A7 76 762 76238 3047 32 Europe/Paris 2012-01-18
-3019985 Épône Epone Epone,Épône 48.95476 1.82233 P PPL FR A8 78 781 78217 6770 36 Europe/Paris 2012-01-18
-3020002 Épinouze Epinouze Epinouze,Épinouze 45.30907 4.93376 P PPL FR B9 26 263 26118 1173 218 Europe/Paris 2012-01-18
-3020004 Epiniac Epiniac Epinac,Epiniac,Sperneg 48.5 -1.7 P PPL FR A2 35 354 35104 1133 88 Europe/Paris 2007-11-17
-3020020 Épinay-sur-Seine Epinay-sur-Seine Epinay,Epinay-sur-Seine,Epine sir Sen,Épinay-sur-Seine,Епине сир Сен 48.9535 2.31514 P PPL FR A8 93 933 93031 46145 37 Europe/Paris 2012-01-18
-3020021 Épinay-sur-Orge Epinay-sur-Orge Epinay,Epinay-sur-Orge,Spinetum,Épinay,Épinay-sur-Orge 48.67338 2.31074 P PPL FR A8 91 913 91216 9507 86 Europe/Paris 2012-01-18
-3020024 Épinay-sous-Sénart Epinay-sous-Senart Epinay,Epinay-sous-Senart,Épinay-sous-Sénart 48.6897 2.51186 P PPL FR A8 91 912 91215 12826 80 Europe/Paris 2012-01-18
-3020035 Épinal Epinal Epinal,Spinalium,Spinalo,abynal,epinaru,Épinal,Епинал,إبينال,エピナル 48.18333 6.45 P PPLA2 FR B2 88 881 88160 39518 351 Europe/Paris 2011-11-02
-3020036 Épinac Epinac Epinac-les-Mines,Épinac-les-Mines 46.98333 4.51667 P PPL FR A1 71 711 71190 2531 330 Europe/Paris 2007-11-15
-3020043 Épieds-en-Beauce Epieds-en-Beauce Epieds,Epieds-en-Beauce,Épieds-en-Beauce 47.95066 1.61732 P PPL FR A3 45 452 45134 1101 123 Europe/Paris 2012-01-18
-3020051 Epfig Epfig 48.35933 7.46427 P PPL FR C1 67 675 67125 2010 218 Europe/Paris 2007-07-07
-3020053 Épervans Epervans Epervans,Épervans 46.75246 4.8993 P PPL FR A1 71 712 71189 1478 182 Europe/Paris 2012-01-18
-3020057 Épernon Epernon Epernon,Épernon 48.61032 1.67218 P PPL FR A3 28 281 28140 5266 118 Europe/Paris 2012-01-18
-3020062 Épernay Epernay Epernay,Eperne,Épernay,Еперне 49.05 3.95 P PPLA3 FR A4 51 512 51230 27082 81 Europe/Paris 2011-11-02
-3020065 Éperlecques Eperlecques Eperlecques,Éperlecques 50.80566 2.15207 P PPL FR B4 62 625 62297 2964 16 Europe/Paris 2012-01-18
-3020077 Épehy Epehy 50 3.13333 P PPL FR B6 80 804 80271 1121 134 Europe/Paris 2007-11-14
-3020094 Épaignes Epaignes Epaignes,Épaignes 49.27945 0.4398 P PPL FR A7 27 272 27218 1228 157 Europe/Paris 2008-11-21
-3020097 Épagny Epagny Epagny,Épagny 45.93806 6.09095 P PPL FR B9 74 741 74112 3581 457 Europe/Paris 2012-01-18
-3020108 Envermeu Envermeu Aebura,Eburomagos,Envermeu 49.8956 1.26492 P PPL FR A7 76 761 76235 2218 44 Europe/Paris 2012-03-31
-3020113 Enval Enval Enval 45.89883 3.0497 P PPL FR 98 63 634 63150 1419 445 Europe/Paris 2012-01-18
-3020116 Entzheim Entzheim Entzheim 48.53224 7.63329 P PPL FR C1 67 676 67124 1961 153 Europe/Paris 2012-01-18
-3020131 Entre-deux-Guiers Entre-deux-Guiers Entre-deux-Guiers 45.43181 5.74911 P PPL FR B9 38 381 38155 1612 391 Europe/Paris 2012-01-18
-3020135 Entraygues-sur-Truyère Entraygues-sur-Truyere Entraygues,Entraygues-sur-Truyere,Entraygues-sur-Truyère 44.64606 2.56745 P PPL FR B3 12 122 12094 1417 258 Europe/Paris 2011-01-13
-3020138 Entrange Entrange Entrange 49.4159 6.1062 P PPL FR B2 57 577 57194 1263 239 Europe/Paris 2012-01-18
-3020139 Entrammes Entrammes Entrammes 47.99759 -0.71399 P PPL FR B5 53 532 53094 1951 59 Europe/Paris 2012-01-18
-3020142 Entraigues-sur-la-Sorgue Entraigues-sur-la-Sorgue Entraigues,Entraigues-sur-Sorgues 44 4.91667 P PPL FR B8 84 843 84043 7206 30 Europe/Paris 2007-11-20
-3020149 Ensuès-la-Redonne Ensues-la-Redonne Ensues,Ensues-la-Redonne,Ensuès,Ensuès-la-Redonne 43.35464 5.20357 P PPL FR B8 13 134 13033 4746 101 Europe/Paris 2011-01-19
-3020152 Ensisheim Ensisheim Ensisheim 47.86695 7.35212 P PPL FR C1 68 683 68082 6940 216 Europe/Paris 2012-01-18
-3020164 Ennezat Ennezat Ennezat 45.89768 3.22217 P PPL FR 98 63 634 63148 2194 315 Europe/Paris 2012-01-18
-3020165 Ennevelin Ennevelin Ennevelin,Ennevelin-Ardomprez 50.54121 3.12972 P PPL FR B4 59 595 59197 2015 33 Europe/Paris 2012-01-18
-3020166 Ennetières-en-Weppes Ennetieres-en-Weppes Ennetieres,Ennetieres-en-Weppes,Ennetières,Ennetières-en-Weppes 50.6353 2.94012 P PPL FR B4 59 595 59196 1154 42 Europe/Paris 2012-01-18
-3020168 Ennery Ennery Ennery 49.22621 6.21805 P PPL FR B2 57 574 57193 1804 170 Europe/Paris 2012-01-18
-3020169 Ennery Ennery Ennery 49.07505 2.10599 P PPL FR A8 95 953 95211 2170 94 Europe/Paris 2012-01-18
-3020184 Englefontaine Englefontaine Englefontaine 50.19091 3.64401 P PPL FR B4 59 591 59194 1355 145 Europe/Paris 2012-01-18
-3020188 Enghien-les-Bains Enghien-les-Bains Enghien,Enghien-les-Bains 48.96667 2.31667 P PPL FR A8 95 952 95210 10951 43 Europe/Paris 2012-01-18
-3020221 Enchenberg Enchenberg Enchenberg 49.01221 7.34049 P PPL FR B2 57 576 57192 1227 360 Europe/Paris 2012-01-18
-3020236 Emmerin Emmerin Emmerin 50.59475 3.00124 P PPL FR B4 59 595 59193 3085 26 Europe/Paris 2012-01-18
-3020245 Émerchicourt Emerchicourt Emerchicourt,Émerchicourt 50.30786 3.24537 P PPL FR B4 59 596 59192 1015 65 Europe/Paris 2012-01-18
-3020247 Émerainville Emerainville Emerainville,Émerainville 48.81276 2.62139 P PPL FR A8 77 775 77169 7002 107 Europe/Paris 2012-01-18
-3020251 Embrun Embrun Aebura,Ambrun,Eburodunum 44.56387 6.49526 P PPL FR B8 05 052 05046 7069 869 Europe/Paris 2012-03-30
-3020271 Elven Elven An Elven,Elven 47.7323 -2.58956 P PPL FR A2 56 563 56053 3824 86 Europe/Paris 2012-01-18
-3020275 Éloyes Eloyes Eloyes,Éloyes 48.09793 6.60653 P PPL FR B2 88 881 88158 3343 380 Europe/Paris 2012-01-18
-3020281 Elne Elne Elna,Elne 42.60031 2.97146 P PPL FR A9 66 662 66065 7007 28 Europe/Paris 2012-01-18
-3020283 Elliant Elliant Eliant,Elliant 47.99417 -3.88966 P PPL FR A2 29 294 29049 2929 103 Europe/Paris 2012-01-18
-3020300 Éleu-dit-Leauwette Eleu-dit-Leauwette Eleu,Eleu-dit-Leauwette,Éleu-dit-Leauwette 50.4234 2.81134 P PPL FR B4 62 627 62291 2962 50 Europe/Paris 2012-01-18
-3020307 Elbeuf Elbeuf Ehl'bef,Elbeuf,Эльбеф 49.28669 1.00288 P PPL FR A7 76 763 76231 17231 22 Europe/Paris 2012-01-18
-3020310 Élancourt Elancourt Elancourt,Elenkur,Élancourt,Еленкур 48.7842 1.9552 P PPL FR A8 78 782 78208 30831 133 Europe/Paris 2012-01-18
-3020314 Einville-au-Jard Einville-au-Jard Einville,Einville-au-Jard 48.65323 6.48786 P PPL FR B2 54 542 54176 1241 216 Europe/Paris 2012-01-18
-3020324 Eguisheim Eguisheim Eguisheim 48.0428 7.30617 P PPL FR C1 68 682 68078 1543 210 Europe/Paris 2007-07-07
-3020330 Éguilles Eguilles Eguilles,Éguilles 43.56867 5.35575 P PPL FR B8 13 131 13032 7480 271 Europe/Paris 2011-01-18
-3020334 Égriselles-le-Bocage Egriselles-le-Bocage Egriselles,Egriselles-le-Bocage,Égriselles-le-Bocage 48.12103 3.18233 P PPL FR A1 89 893 89151 1001 182 Europe/Paris 2012-01-18
-3020335 Égreville Egreville Egreville,Égreville 48.17606 2.87278 P PPL FR A8 77 774 77168 2020 123 Europe/Paris 2012-01-18
-3020346 Égly Egly Egly,Égly 48.57828 2.22416 P PPL FR A8 91 913 91207 5259 85 Europe/Paris 2012-01-18
-3020358 Égletons Egletons Egletons,Égletons 45.40336 2.05073 P PPL FR B1 19 192 19073 5316 615 Europe/Paris 2012-01-18
-3020374 Edern Edern Edern,Guellevain,Édern 48.1 -3.98333 P PPL FR A2 29 294 29048 1907 133 Europe/Paris 2011-11-25
-3020392 Écully Ecully Ecully,Écully 45.77726 4.77481 P PPL FR B9 69 691 69081 19437 244 Europe/Paris 2012-01-18
-3020396 Écuisses Ecuisses Ecuisses,Écuisses 46.75631 4.53845 P PPL FR A1 71 712 71187 1686 345 Europe/Paris 2012-01-18
-3020401 Écuelles Ecuelles Ecuelles,Écuelles 48.35636 2.82336 P PPL FR A8 77 774 77166 2815 52 Europe/Paris 2012-01-18
-3020405 Écueillé Ecueille Ecueille,Écueillé 47.08462 1.34668 P PPL FR A3 36 362 36069 1343 143 Europe/Paris 2012-01-18
-3020411 Écrouves Ecrouves Ecrouves,Écrouves 48.67937 5.84433 P PPL FR B2 54 544 54174 4410 234 Europe/Paris 2012-01-18
-3020425 Écrainville Ecrainville Ecrainville,Écrainville 49.64943 0.32488 P PPL FR A7 76 762 76224 1006 124 Europe/Paris 2012-01-18
-3020426 Ecquevilly Ecquevilly Ecquevilly 48.95192 1.92338 P PPL FR A8 78 781 78206 4172 60 Europe/Paris 2012-01-18
-3020429 Ecques Ecques Ecques 50.66998 2.28633 P PPL FR B4 62 625 62288 1834 35 Europe/Paris 2012-01-18
-3020432 Écoyeux Ecoyeux Ecoyeux,Écoyeux 45.8223 -0.50539 P PPL FR B7 17 174 17147 1008 56 Europe/Paris 2012-01-18
-3020437 Écourt-Saint-Quentin Ecourt-Saint-Quentin Ecourt-Saint-Quentin,Écourt-Saint-Quentin 50.25226 3.07331 P PPL FR B4 62 621 62284 1760 47 Europe/Paris 2012-01-18
-3020439 Écouflant Ecouflant Ecouflant,Écouflant 47.53101 -0.5278 P PPL FR B5 49 491 49129 3894 24 Europe/Paris 2012-01-18
-3020440 Écouen Ecouen Ecouen,Écouen 49.02062 2.38309 P PPL FR A8 95 952 95205 7583 107 Europe/Paris 2012-01-18
-3020441 Écouché Ecouche Ecouche,Écouché 48.71752 -0.12409 P PPL FR 99 61 612 61153 1413 154 Europe/Paris 2012-01-18
-3020462 Écommoy Ecommoy Ecommay,Ecommoy,Écommoy 47.82565 0.27422 P PPL FR B5 72 723 72124 4537 81 Europe/Paris 2012-01-18
-3020488 Eckwersheim Eckwersheim Eckwersheim 48.68167 7.69687 P PPL FR C1 67 676 67119 1337 150 Europe/Paris 2011-02-14
-3020489 Eckbolsheim Eckbolsheim 48.58075 7.68768 P PPL FR C1 67 676 67118 6253 146 Europe/Paris 2011-02-14
-3020495 Échirolles Echirolles Echirolles,Eshirol,Échirolles,Еширол 45.1439 5.72883 P PPL FR B9 38 381 38151 33088 226 Europe/Paris 2012-01-18
-3020497 Échiré Echire Echire,Échiré 46.38748 -0.41511 P PPL FR B7 79 792 79109 3042 37 Europe/Paris 2012-01-18
-3020500 Échillais Echillais Echillais,Échillais 45.90072 -0.95211 P PPL FR B7 17 172 17146 3046 9 Europe/Paris 2012-01-18
-3020510 Échenoz-la-Méline Echenoz-la-Meline Echenoz-la-Meline,Échenoz-la-Méline 47.60086 6.13544 P PPL FR A6 70 702 70207 2823 241 Europe/Paris 2012-01-18
-3020512 Échenevex Echenevex Echenevex,Échenevex 46.30963 6.0393 P PPL FR B9 01 013 01153 1321 580 Europe/Paris 2012-01-18
-3020548 Échalas Echalas Echalas,Échalas 45.5519 4.71645 P PPL FR B9 69 691 69080 1216 368 Europe/Paris 2012-01-18
-3020565 Écaillon Ecaillon Ecaillon,Écaillon 50.35034 3.21664 P PPL FR B4 59 593 59185 2045 28 Europe/Paris 2012-01-18
-3020569 Ébreuil Ebreuil Ebreuil,Ébreuil 46.11629 3.08771 P PPL FR 98 03 031 03107 1246 309 Europe/Paris 2012-01-18
-3020576 Ebersheim Ebersheim 48.30438 7.49903 P PPL FR C1 67 675 67115 1968 164 Europe/Paris 2007-07-07
-3020584 Eauze Eauze Eauze 43.86055 0.10199 P PPL FR B3 32 322 32119 4069 166 Europe/Paris 2012-01-18
-3020593 Eaunes Eaunes Eaunes 43.42079 1.35397 P PPL FR B3 31 311 31165 3831 215 Europe/Paris 2012-01-18
-3020601 Eaubonne Eaubonne Eaubonne 48.99712 2.28249 P PPL FR A8 95 953 95203 24096 55 Europe/Paris 2012-01-18
-3020614 Duttlenheim Duttlenheim 48.52553 7.56572 P PPL FR C1 67 673 67112 2526 162 Europe/Paris 2007-07-05
-3020620 Durtol Durtol Durtol 45.79622 3.05264 P PPL FR 98 63 632 63141 2127 517 Europe/Paris 2012-01-18
-3020621 Durtal Durtal 47.67247 -0.23393 P PPL FR B5 49 491 49127 3423 38 Europe/Paris 2007-07-04
-3020624 Durrenbach Durrenbach Durrenbach 48.89748 7.76733 P PPL FR C1 67 677 67110 1062 171 Europe/Paris 2012-01-18
-3020648 Durdat-Larequille Durdat-Larequille Durdat-Larequille,Larequille 46.25173 2.70112 P PPL FR 98 03 031 03106 1205 497 Europe/Paris 2012-01-18
-3020664 Duras Duras Duras 44.67618 0.18247 P PPL FR 97 47 472 47086 1195 107 Europe/Paris 2012-01-18
-3020671 Duppigheim Duppigheim 48.52866 7.59421 P PPL FR C1 67 676 67108 1575 160 Europe/Paris 2007-07-05
-3020678 Dun-sur-Auron Dun-sur-Auron Dun,Dun-sur-Auron 46.8849 2.57345 P PPL FR A3 18 182 18087 3829 175 Europe/Paris 2012-01-18
-3020681 Dun-le-Palestel Dun-le-Palestel Dun-le-Palestel,Dun-le-Palleteau,Dun-le-Pelletau 46.3 1.66667 P PPL FR B1 23 232 23075 1125 367 Europe/Paris 2012-01-18
-3020686 Dunkerque Dunkerque Djunkerk,Duenkirchen,Duinkerke,Dukark,Dun-Libre,Dune-Libre,Dunes-Libres,Dunkerque,Dunkierka,Dunkirk,Dunquerque,Duunkerke,Dünkirchen,Lungsod ng Dunkerque,dainkarka,dankeruku,dun ke er ke,Дюнкерк,ڈنکرک,दैंकर्क,ダンケルク,敦刻尔克 51.05 2.36667 P PPLA3 FR B4 59 594 59183 71287 2 Europe/Paris 2011-12-08
-3020688 Dunières Dunieres Dunieres,Dunières 45.21598 4.34579 P PPL FR 98 43 433 43087 3016 798 Europe/Paris 2012-01-18
-3020705 Duisans Duisans Duisans 50.30633 2.68653 P PPL FR B4 62 621 62279 1374 69 Europe/Paris 2012-01-18
-3020710 Dugny-sur-Meuse Dugny-sur-Meuse Dugny,Dugny-sur-Meuse 49.10953 5.3855 P PPL FR B2 55 553 55166 1319 211 Europe/Paris 2012-01-18
-3020712 Dugny Dugny Dugny 48.95371 2.41734 P PPL FR A8 93 931 93030 10709 44 Europe/Paris 2012-01-18
-3020720 Duclair Duclair Duclair 49.48385 0.87617 P PPL FR A7 76 763 76222 4248 9 Europe/Paris 2012-01-18
-3020722 Ducey Ducey Ducey 48.61842 -1.29052 P PPL FR 99 50 501 50168 2272 27 Europe/Paris 2012-01-18
-3020730 Dry Dry Dry 47.79612 1.7133 P PPL FR A3 45 452 45130 1256 91 Europe/Paris 2012-01-18
-3020736 Drusenheim Drusenheim Drusenheim 48.76428 7.95053 P PPL FR C1 67 672 67106 4966 123 Europe/Paris 2012-01-18
-3020737 Drumettaz-Clarafond Drumettaz-Clarafond Drumettaz,Drumettaz-Clarafond 45.66037 5.92146 P PPL FR B9 73 732 73103 2141 288 Europe/Paris 2012-01-18
-3020740 Drulingen Drulingen Drulingen 48.86834 7.18761 P PPL FR C1 67 674 67105 1571 286 Europe/Paris 2012-01-18
-3020747 Druelle Druelle Druelle 44.36006 2.50505 P PPL FR B3 12 122 12090 1775 597 Europe/Paris 2011-11-02
-3020770 Droue-sur-Drouette Droue-sur-Drouette Droue,Droue-sur-Drouette,Droué 48.60053 1.70113 P PPL FR A3 28 281 28135 1158 127 Europe/Paris 2012-01-18
-3020771 Droué Droue Droue,Droué 48.04023 1.07534 P PPL FR A3 41 412 41075 1143 151 Europe/Paris 2012-01-18
-3020792 Drocourt Drocourt Drocourt 50.39002 2.92425 P PPL FR B4 62 627 62277 3146 51 Europe/Paris 2012-01-18
-3020810 Dreux Dreux Dre,Dreux,Дре 48.73333 1.36667 P PPLA3 FR A3 28 283 28134 31058 92 Europe/Paris 2011-12-08
-3020813 Dreuil-lès-Amiens Dreuil-les-Amiens Dreuil,Dreuil-les-Amiens,Dreuil-lès-Amiens 49.91483 2.22893 P PPL FR B6 80 802 80256 1494 32 Europe/Paris 2012-01-18
-3020818 Dreslincourt Dreslincourt Dreslincourt 49.52809 2.92699 P PPL FR B6 60 603 60537 4395 71 Europe/Paris 2012-02-27
-3020825 Drémil-Lafage Dremil-Lafage Dremil,Dremil-Lafage,Drémil-Lafage 43.59624 1.60117 P PPL FR B3 31 313 31163 2894 198 Europe/Paris 2011-01-09
-3020828 Drefféac Dreffeac Devrieg,Dreffeac,Drefféac 47.47464 -2.05774 P PPL FR B5 44 443 44053 1452 8 Europe/Paris 2012-01-18
-3020832 Draveil Draveil Draveil,Dravej,Дравеј 48.68466 2.41418 P PPL FR A8 91 912 91201 29316 56 Europe/Paris 2012-01-18
-3020834 Drap Drap Drap 43.75614 7.3206 P PPL FR B8 06 062 06054 4504 92 Europe/Paris 2012-01-18
-3020839 Drancy Drancy Drancy,Dransi,Дранси,דראנסי 48.92578 2.44533 P PPL FR A8 93 931 93029 62488 47 Europe/Paris 2012-01-18
-3020847 Drain Drain Drain 47.33656 -1.20773 P PPL FR B5 49 492 49126 1757 79 Europe/Paris 2012-01-18
-3020850 Draguignan Draguignan Draginan,Draguignan,Draguinhan,Драгињан 43.53333 6.46667 P PPLA3 FR B8 83 831 83050 38573 185 Europe/Paris 2011-11-02
-3020855 Dracy-le-Fort Dracy-le-Fort Dracy,Dracy-le-Fort 46.7975 4.76215 P PPL FR A1 71 712 71182 1256 206 Europe/Paris 2012-01-18
-3020865 Dozulé Dozule Dozule,Dozulé 49.23132 -0.04454 P PPL FR 99 14 143 14229 1689 28 Europe/Paris 2012-01-18
-3020867 Doyet Doyet Doyet 46.33476 2.79707 P PPL FR 98 03 031 03104 1190 317 Europe/Paris 2012-01-18
-3020871 Douzy Douzy Douzy 49.6708 5.04156 P PPL FR A4 08 083 08145 1517 163 Europe/Paris 2012-01-18
-3020886 Douvrin Douvrin Douvrin 50.50916 2.83053 P PPL FR B4 62 622 62276 5199 27 Europe/Paris 2012-01-18
-3020887 Douvres-la-Délivrande Douvres-la-Delivrande Douvres,Douvres-la-Delivrande,Douvres-la-Délivrande 49.29472 -0.38039 P PPL FR 99 14 142 14228 5182 21 Europe/Paris 2012-01-18
-3020894 Douvaine Douvaine 46.30544 6.30375 P PPL FR B9 74 744 74105 4278 431 Europe/Paris 2008-04-16
-3020900 Doussard Doussard Doussard 45.77556 6.21941 P PPL FR B9 74 741 74104 3076 482 Europe/Paris 2012-01-18
-3020916 Dourgne Dourgne Dourgne 43.48382 2.13989 P PPL FR B3 81 812 81081 1288 270 Europe/Paris 2012-01-18
-3020917 Dourges Dourges Dourges,Dourques 50.43636 2.98589 P PPL FR B4 62 627 62274 5761 28 Europe/Paris 2012-01-18
-3020925 Dourdan Dourdan Dourdan,Durdan,Дурдан 48.52772 2.01113 P PPL FR A8 91 911 91200 10261 95 Europe/Paris 2012-01-18
-3020944 Doullens Doullens Doullens 50.15724 2.34019 P PPL FR B6 80 802 80253 6295 60 Europe/Paris 2012-01-18
-3020953 Doulaincourt-Saucourt Doulaincourt-Saucourt 48.31667 5.2 P PPL FR A4 52 523 52177 1051 256 Europe/Paris 2007-11-20
-3020964 Doué-la-Fontaine Doue-la-Fontaine Doue,Doue-la-Fontaine,Doué,Doué-la-Fontaine 47.19372 -0.27492 P PPL FR B5 49 493 49125 8089 77 Europe/Paris 2012-01-18
-3020968 Doue Doue Doue 48.86641 3.16269 P PPL FR A8 77 773 77162 1029 144 Europe/Paris 2012-01-18
-3020971 Doudeville Doudeville Doudeville 49.72268 0.78479 P PPL FR A7 76 763 76219 2611 122 Europe/Paris 2012-01-18
-3020980 Douchy-les-Mines Douchy-les-Mines Douchy,Douchy-les-Mines 50.3008 3.3927 P PPL FR B4 59 596 59179 10296 48 Europe/Paris 2012-01-18
-3020983 Douchy Douchy Douchy 47.94282 3.05392 P PPL FR A3 45 451 45129 1048 127 Europe/Paris 2012-01-18
-3020991 Doubs Doubs 46.92788 6.35104 P PPL FR A6 25 253 25204 2384 810 Europe/Paris 2008-11-13
-3020996 Douarnenez Douarnenez Douamenez,Douarnenez 48.09542 -4.32904 P PPL FR A2 29 294 29046 16590 23 Europe/Paris 2011-11-02
-3021000 Douai Douai Douai,Dowaai,Due,dwyh,Дуе,دويه 50.36667 3.06667 P PPLA3 FR B4 59 593 59178 46531 30 Europe/Paris 2011-11-02
-3021004 Dossenheim-sur-Zinsel Dossenheim-sur-Zinsel Dossenheim 48.8059 7.40273 P PPL FR C1 67 674 67103 1146 192 Europe/Paris 2007-07-10
-3021013 Dortan Dortan Dortan 46.31973 5.66028 P PPL FR B9 01 014 01148 2398 316 Europe/Paris 2011-01-14
-3021026 Dornes Dornes Dornes 46.716 3.35343 P PPL FR A1 58 583 58104 1220 224 Europe/Paris 2012-01-18
-3021034 Dormans Dormans 49.07392 3.63819 P PPL FR A4 51 512 51217 3177 73 Europe/Paris 2007-08-22
-3021035 Dorlisheim Dorlisheim Dorlisheim,Dorliskhajm,Дорлисхајм 48.52485 7.48624 P PPL FR C1 67 673 67101 2291 183 Europe/Paris 2007-07-05
-3021045 Dordives Dordives Dordives 48.14253 2.76775 P PPL FR A3 45 451 45127 2749 71 Europe/Paris 2012-01-18
-3021058 Donzy Donzy Donzy 47.37066 3.12548 P PPL FR A1 58 584 58102 1687 180 Europe/Paris 2007-06-20
-3021061 Donzère Donzere Donzere,Donzère 44.44089 4.71179 P PPL FR B9 26 262 26116 4700 71 Europe/Paris 2012-01-18
-3021062 Donzenac Donzenac Donzenac 45.22795 1.52375 P PPL FR B1 19 191 19072 2277 210 Europe/Paris 2012-01-18
-3021067 Donville-les-Bains Donville-les-Bains Donville,Donville-les-Bains 48.84608 -1.58315 P PPL FR 99 50 501 50165 3466 34 Europe/Paris 2011-01-20
-3021077 Donnery Donnery Donnery 47.91486 2.10299 P PPL FR A3 45 452 45126 2172 101 Europe/Paris 2012-01-18
-3021080 Donnemarie-Dontilly Donnemarie-Dontilly Donnemarie,Donnemarie-en-Montois 48.47719 3.13162 P PPL FR A8 77 773 77159 2879 75 Europe/Paris 2007-11-14
-3021093 Donges Donges Donez,Donges 47.31824 -2.07538 P PPL FR B5 44 443 44052 6749 10 Europe/Paris 2007-11-29
-3021097 Doncourt-lès-Conflans Doncourt-les-Conflans Doncourt,Doncourt-en-Jarnisy,Doncourt-les-Conflans,Doncourt-lès-Conflans 49.1436 5.93382 P PPL FR B2 54 541 54171 1247 228 Europe/Paris 2012-01-18
-3021100 Donchery Donchery Donchery 49.69584 4.87417 P PPL FR A4 08 083 08142 2369 151 Europe/Paris 2012-01-18
-3021105 Don Don Don 50.54912 2.91817 P PPL FR B4 59 595 59670 1164 24 Europe/Paris 2012-01-18
-3021124 Dompierre-sur-Yon Dompierre-sur-Yon Dompierre,Dompierre-sur-Yon 46.73857 -1.38463 P PPL FR B5 85 852 85081 3443 76 Europe/Paris 2012-01-18
-3021125 Dompierre-sur-Veyle Dompierre-sur-Veyle Dompierre,Dompierre-sur-Veyle 46.07179 5.20574 P PPL FR B9 01 012 01145 1058 286 Europe/Paris 2012-01-18
-3021128 Dompierre-sur-Mer Dompierre-sur-Mer Dompierre,Dompierre-sur-Mer 46.18817 -1.06351 P PPL FR B7 17 173 17142 5295 26 Europe/Paris 2012-01-18
-3021133 Dompierre-sur-Besbre Dompierre-sur-Besbre Dompierre,Dompierre-sur-Besbre,Source-Libre 46.51962 3.69905 P PPL FR 98 03 032 03102 3576 235 Europe/Paris 2012-01-18
-3021150 Domont Domont Domont 49.02782 2.32638 P PPL FR A8 95 952 95199 16684 138 Europe/Paris 2012-01-18
-3021156 Domme Domme Domme 44.80218 1.21459 P PPL FR 97 24 244 24152 1013 211 Europe/Paris 2007-07-14
-3021164 Dommartin-lès-Toul Dommartin-les-Toul Dommartin,Dommartin-les-Toul,Dommartin-lès-Toul 48.66981 5.90998 P PPL FR B2 54 544 54167 1688 220 Europe/Paris 2012-01-18
-3021165 Dommartin-lès-Remiremont Dommartin-les-Remiremont Dommartin,Dommartin-les-Remiremont,Dommartin-lès-Remiremont 47.99902 6.64048 P PPL FR B2 88 881 88148 1854 399 Europe/Paris 2012-01-18
-3021181 Dom-le-Mesnil Dom-le-Mesnil Dom,Dom-le-Mesnil 49.69012 4.80363 P PPL FR A4 08 081 08140 1046 162 Europe/Paris 2012-01-18
-3021190 Domgermain Domgermain Domgermain 48.64292 5.82582 P PPL FR B2 54 544 54162 1109 284 Europe/Paris 2012-01-18
-3021193 Domfront Domfront 48.59208 -0.64588 P PPL FR 99 61 611 61145 4402 198 Europe/Paris 2007-02-09
-3021204 Domessin Domessin Domessin 45.5343 5.70077 P PPL FR B9 73 732 73100 1479 298 Europe/Paris 2012-01-18
-3021209 Domérat Domerat Domerat,Domérat 46.36064 2.53426 P PPL FR 98 03 031 03101 9015 243 Europe/Paris 2012-01-18
-3021210 Domène Domene Domene,Domène 45.20345 5.83905 P PPL FR B9 38 381 38150 6882 241 Europe/Paris 2012-01-18
-3021221 Dombasle-sur-Meurthe Dombasle-sur-Meurthe Dombasle,Dombasle-sur-Meurthe 48.6252 6.34967 P PPL FR B2 54 543 54159 9256 213 Europe/Paris 2012-01-18
-3021230 Domart-en-Ponthieu Domart-en-Ponthieu Domart,Domart-en-Ponthieu 50.07437 2.12596 P PPL FR B6 80 802 80241 1140 56 Europe/Paris 2012-01-18
-3021231 Domarin Domarin Domarin 45.58556 5.24308 P PPL FR B9 38 382 38149 1557 265 Europe/Paris 2012-01-18
-3021233 Domancy Domancy Domancy 45.91418 6.6474 P PPL FR B9 74 742 74103 1904 597 Europe/Paris 2012-01-18
-3021235 Domalain Domalain Domalain,Domalan 47.99617 -1.2425 P PPL FR A2 35 351 35097 1628 96 Europe/Paris 2012-01-18
-3021240 Domagné Domagne Domagne,Domagné,Dovanieg 48.07081 -1.39291 P PPL FR A2 35 351 35096 1794 81 Europe/Paris 2012-01-18
-3021244 Dolus-d'Oléron Dolus-d'Oleron Dulus 45.91667 -1.26667 P PPL FR B7 17 172 17140 3114 4 Europe/Paris 2007-11-20
-3021247 Dolomieu Dolomieu Dolomieu,Dolomieux 45.61328 5.50016 P PPL FR B9 38 382 38148 2582 381 Europe/Paris 2012-01-18
-3021254 Dollon Dollon Dollon 48.03879 0.58686 P PPL FR B5 72 722 72118 1292 116 Europe/Paris 2012-01-18
-3021263 Dole Dole Dole,Dolja,Доля 47.1 5.5 P PPLA3 FR A6 39 391 39198 25878 224 Europe/Paris 2011-11-02
-3021264 Dol-de-Bretagne Dol-de-Bretagne Bro Zol,Dol,Dol-de-Bretagne 48.54765 -1.75018 P PPL FR A2 35 354 35095 5394 27 Europe/Paris 2012-01-18
-3021277 Doingt Doingt Doingt 49.92113 2.96766 P PPL FR B6 80 804 80240 1477 58 Europe/Paris 2012-01-18
-3021283 Dogneville Dogneville Dogneville 48.22251 6.45944 P PPL FR B2 88 881 88136 1552 315 Europe/Paris 2012-01-18
-3021288 Docelles Docelles Docelles 48.14475 6.61288 P PPL FR B2 88 881 88135 1043 374 Europe/Paris 2012-01-18
-3021293 Dizy Dizy Dizy 49.06667 3.96667 P PPL FR A4 51 512 51210 1857 82 Europe/Paris 2012-01-18
-3021296 Divonne-les-Bains Divonne-les-Bains Divonne,Divonne-les-Bains 46.35938 6.13574 P PPL FR B9 01 013 01143 6775 496 Europe/Paris 2012-01-18
-3021298 Divion Divion Divion,Divión 50.47169 2.50546 P PPL FR B4 62 622 62270 7290 61 Europe/Paris 2012-01-18
-3021301 Dives-sur-Mer Dives-sur-Mer Dives,Dives-sur-Mer 49.28176 -0.10125 P PPL FR 99 14 143 14225 5906 4 Europe/Paris 2012-01-18
-3021314 Distroff Distroff Distroff 49.33304 6.26448 P PPL FR B2 57 577 57179 1436 200 Europe/Paris 2012-01-18
-3021315 Distré Distre Distre,Distré 47.22281 -0.11071 P PPL FR B5 49 493 49123 1377 44 Europe/Paris 2012-01-18
-3021319 Dissay Dissay Dissais,Dissay 46.70007 0.43311 P PPL FR B7 86 863 86095 2806 98 Europe/Paris 2012-01-18
-3021328 Dirinon Dirinon Dirinon,Dirinonn 48.39775 -4.27016 P PPL FR A2 29 291 29045 2528 138 Europe/Paris 2012-01-18
-3021330 Dirac Dirac Dirac 45.6 0.25 P PPL FR B7 16 161 16120 1389 139 Europe/Paris 2012-01-18
-3021333 Diou Diou Diou 46.53333 3.75 P PPL FR 98 03 032 03100 1594 217 Europe/Paris 2012-01-18
-3021342 Dinsheim-sur-Bruche Dinsheim-sur-Bruche 48.54258 7.42727 P PPL FR C1 67 673 67098 1426 202 Europe/Paris 2011-02-14
-3021345 Dingy-Saint-Clair Dingy-Saint-Clair Dingy,Dingy-Parmelan,Dingy-Saint-Clair 45.90806 6.22452 P PPL FR B9 74 741 74102 1014 603 Europe/Paris 2012-01-18
-3021347 Dingsheim Dingsheim Dingsheim,Dingskhajm,Дингсхајм 48.63053 7.66932 P PPL FR C1 67 676 67097 1134 155 Europe/Paris 2011-02-14
-3021348 Dingé Dinge Dingad,Dinge,Dingé 48.35702 -1.71489 P PPL FR A2 35 353 35094 1452 89 Europe/Paris 2012-01-18
-3021349 Dinéault Dineault Dineault,Dineol,Dinéault 48.21922 -4.16411 P PPL FR A2 29 292 29044 1974 103 Europe/Paris 2012-01-18
-3021351 Dinard Dinard Dinard,Dinard-Saint-Enogat,Dinarzh 48.63143 -2.06144 P PPL FR A2 35 354 35093 11993 20 Europe/Paris 2012-01-18
-3021356 Dinan Dinan Dinan 48.45 -2.03333 P PPLA3 FR A2 22 221 22050 12237 52 Europe/Paris 2011-12-08
-3021372 Dijon Dijon Digione,Dijon,Dij·on,Divio,Diviodunum,Dizhon,Dizonas,Dižonas,Ntizon,di rong,dichng,dijam,dijom,dijon,dizhoni,dyjwn,dyz'wn,dyzhwn,Ντιζόν,Дижон,Діжон,דיז'ון,ديجون,دیجون,دیژون,दिजाँ,दीजों,ดีฌง,དི་ཇཱོན།,დიჟონი,ディジョン,第戎 47.31667 5.01667 P PPLA FR A1 21 212 21231 149782 242 Europe/Paris 2012-01-18
-3021376 Digosville Digosville Digosville 49.63104 -1.52627 P PPL FR 99 50 502 50162 1505 112 Europe/Paris 2012-01-18
-3021377 Digoin Digoin Digoin 46.48124 3.97946 P PPL FR A1 71 713 71176 8941 236 Europe/Paris 2012-01-18
-3021382 Digne-les-Bains Digne-les-Bains Digne 44.09252 6.23199 P PPLA2 FR B8 04 043 04070 18986 524 596 Europe/Paris 2011-11-02
-3021383 Dignac Dignac Dignac 45.55 0.28333 P PPL FR B7 16 161 16119 1294 177 Europe/Paris 2012-01-18
-3021387 Diges Diges Diges 47.72862 3.39786 P PPL FR A1 89 891 89139 1103 219 Europe/Paris 2012-01-18
-3021392 Dieuze Dieuze Dieuze 48.81263 6.7178 P PPL FR B2 57 572 57177 4140 208 Europe/Paris 2011-02-14
-3021394 Dieulouard Dieulouard Dieulouard,Scarpone 48.8414 6.06808 P PPL FR B2 54 543 54157 4851 191 Europe/Paris 2012-01-18
-3021397 Dieulefit Dieulefit Dieulefit,Mont-Jabron 44.52341 5.06425 P PPL FR B9 26 262 26114 3214 376 Europe/Paris 2012-01-18
-3021398 Dieue-sur-Meuse Dieue-sur-Meuse Dieue,Dieue-sur-Meuse 49.072 5.42248 P PPL FR B2 55 553 55154 1449 205 Europe/Paris 2012-01-18
-3021402 Dietwiller Dietwiller Dietwiller 47.6926 7.40222 P PPL FR C1 68 684 68072 1246 250 Europe/Paris 2012-01-18
-3021403 Diesen Diesen Diesen 49.178 6.68035 P PPL FR B2 57 573 57765 1183 223 Europe/Paris 2012-01-18
-3021411 Dieppe Dieppe D'ep,Dieppe,Dijep,Djep,Дијеп,Дьеп,Дјеп 49.93333 1.08333 P PPLA3 FR A7 76 761 76217 35707 7 Europe/Paris 2011-11-02
-3021419 Diémoz Diemoz Diemoz,Diémoz 45.58651 5.09397 P PPL FR B9 38 383 38144 2418 393 Europe/Paris 2012-01-18
-3021420 Diemeringen Diemeringen Diemeringen 48.93968 7.18556 P PPL FR C1 67 674 67095 1774 226 Europe/Paris 2012-01-18
-3021432 Diebling Diebling Diebling 49.10918 6.94034 P PPL FR B2 57 573 57176 1700 242 Europe/Paris 2012-01-18
-3021435 Die Die Dia,Die,Diá 44.75 5.36667 P PPLA3 FR B9 26 261 26113 4924 395 Europe/Paris 2010-04-02
-3021437 Didenheim Didenheim Didenheim 47.71737 7.3022 P PPL FR C1 68 684 68070 1842 244 Europe/Paris 2012-01-18
-3021458 Dhuizon Dhuizon Dhuison,Dhuizon 47.58724 1.65809 P PPL FR A3 41 413 41074 1294 111 Europe/Paris 2012-01-18
-3021472 Deyvillers Deyvillers Deyvillers 48.20013 6.51533 P PPL FR B2 88 881 88132 1480 343 Europe/Paris 2012-01-18
-3021484 Déville-lès-Rouen Deville-les-Rouen Deville,Deville-les-Rouen,Déville,Déville-lès-Rouen 49.46942 1.05214 P PPL FR A7 76 763 76216 10548 38 Europe/Paris 2012-01-18
-3021486 Deville Deville Deville 49.87893 4.7061 P PPL FR A4 08 081 08139 1171 147 Europe/Paris 2011-01-04
-3021493 Devecey Devecey Devecey 47.32169 6.019 P PPL FR A6 25 251 25200 1488 255 Europe/Paris 2012-01-18
-3021513 Deûlémont Deulemont Deulemont,Deûlemont,Deûlémont 50.73333 2.95 P PPL FR B4 59 595 59173 1494 17 Europe/Paris 2010-11-21
-3021516 Deuil-la-Barre Deuil-la-Barre Dej la Bar,Deuil,Deuil-la-Barre,Деј ла Бар 48.97674 2.32722 P PPL FR A8 95 952 95197 21560 54 Europe/Paris 2012-01-18
-3021518 Dettwiller Dettwiller Dettwiller,Detviler,Детвилер 48.75415 7.46633 P PPL FR C1 67 674 67089 2743 176 Europe/Paris 2007-07-10
-3021524 Desvres Desvres Desvres 50.66884 1.83478 P PPL FR B4 62 623 62268 5109 98 Europe/Paris 2012-01-18
-3021532 Dessenheim Dessenheim Dessenheim 47.9763 7.48886 P PPL FR C1 68 682 68069 1090 195 Europe/Paris 2012-01-18
-3021543 Désertines Desertines Desertines,Désertines 46.35521 2.62074 P PPL FR 98 03 031 03098 4760 242 Europe/Paris 2012-01-18
-3021550 Désaignes Desaignes Desaignes,Désaignes 44.99544 4.51413 P PPL FR B9 07 073 07079 1139 496 Europe/Paris 2012-01-18
-3021552 Derval Derval Derval,Derwal,Montagne-sur-Kurel 47.66724 -1.6699 P PPL FR B5 44 441 44051 3127 53 Europe/Paris 2012-01-18
-3021570 Déols Deols Cereale,Céréale,Deols,Déols 46.82934 1.70428 P PPL FR A3 36 362 36063 8635 149 Europe/Paris 2012-01-18
-3021591 Denicé Denice Denice,Denicé 46.00141 4.64523 P PPL FR B9 69 692 69074 1355 278 Europe/Paris 2012-01-18
-3021592 Denguin Denguin Denguin 43.36667 -0.5 P PPL FR 97 64 643 64198 1576 135 Europe/Paris 2011-09-11
-3021601 Denée Denee Denee,Denée 47.37885 -0.60816 P PPL FR B5 49 491 49120 1467 38 Europe/Paris 2012-01-18
-3021605 Denain Denain Danen,Denain,Данен 50.3293 3.3943 P PPL FR B4 59 596 59172 21412 36 Europe/Paris 2012-01-18
-3021609 Démouville Demouville Demouville,Démouville 49.18001 -0.26947 P PPL FR 99 14 142 14221 3238 18 Europe/Paris 2012-01-18
-3021611 Demigny Demigny Demigny 46.93048 4.83381 P PPL FR A1 71 712 71170 1552 198 Europe/Paris 2012-01-18
-3021629 Delle Delle Dattenried,Delle 47.51048 6.99963 P PPL FR A6 90 901 90033 6186 361 Europe/Paris 2012-01-18
-3021661 Decize Decize Decize,Decize-le-Rocher,Rocher-la-Montagne 46.82852 3.46192 P PPL FR A1 58 583 58095 6605 207 Europe/Paris 2012-01-18
-3021662 Décines-Charpieu Decines-Charpieu Decines,Decines-Charpieu,Décines,Décines-Charpieu 45.76899 4.97277 P PPL FR B9 69 691 69275 24674 194 Europe/Paris 2012-01-18
-3021663 Dechy Dechy 50.35 3.11667 P PPL FR B4 59 593 59170 5439 34 Europe/Paris 2006-06-20
-3021664 Decazeville Decazeville Decazeville 44.56045 2.25091 P PPL FR B3 12 123 12089 7268 211 Europe/Paris 2011-01-12
-3021668 Deauville Deauville Deauville,Deauville-les-Bains,Dovil',Довиль 49.357 0.06995 P PPL FR 99 14 143 14220 4677 5 8 Europe/Paris 2011-11-02
-3021670 Dax Dax Akize,Daks,Dax,Lepelletier,Дакс 43.71032 -1.05366 P PPLA3 FR 97 40 401 40088 22305 16 Europe/Paris 2011-11-02
-3021676 Davézieux Davezieux Davezieux,Davézieux 45.25732 4.70875 P PPL FR B9 07 073 07078 2810 460 Europe/Paris 2012-01-18
-3021682 Daux Daux Daux 43.69506 1.26892 P PPL FR B3 31 313 31160 1403 181 Europe/Paris 2011-01-09
-3021688 Daumeray Daumeray Daumeray 47.7007 -0.36119 P PPL FR B5 49 491 49119 1387 46 Europe/Paris 2012-01-18
-3021691 Dauendorf Dauendorf Dauendorf,Дауендорф 48.82987 7.65532 P PPL FR C1 67 672 67087 1504 231 Europe/Paris 2007-07-07
-3021705 Dasle Dasle Dasle 47.47843 6.89728 P PPL FR A6 25 252 25196 1409 385 Europe/Paris 2012-01-18
-3021706 Darvoy Darvoy Darvoy 47.85839 2.10033 P PPL FR A3 45 452 45123 1825 102 Europe/Paris 2012-01-18
-3021713 Darnieulles Darnieulles Darnieulles 48.1995 6.34929 P PPL FR B2 88 881 88126 1133 355 Europe/Paris 2012-01-18
-3021716 Darney Darney Darney 48.0866 6.04917 P PPL FR B2 88 881 88124 1433 271 Europe/Paris 2012-01-18
-3021717 Darnétal Darnetal Darnetal,Darnétal 49.44533 1.15144 P PPL FR A7 76 763 76212 9064 37 Europe/Paris 2012-01-18
-3021725 Dargnies Dargnies Dargnies 50.04144 1.52526 P PPL FR B6 80 801 80235 1362 115 Europe/Paris 2012-01-18
-3021729 Dardilly Dardilly Dardilly 45.80506 4.75342 P PPL FR B9 69 691 69072 8612 327 Europe/Paris 2012-01-18
-3021747 Daoulas Daoulas Daoulas,Daoulaz 48.36089 -4.25977 P PPL FR A2 29 291 29043 1896 5 Europe/Paris 2012-01-18
-3021757 Dannes Dannes Dannes 50.58799 1.61381 P PPL FR B4 62 623 62264 1286 31 Europe/Paris 2012-01-18
-3021760 Dannemarie-sur-Crête Dannemarie-sur-Crete Dannemarie,Dannemarie-sur-Crete,Dannemarie-sur-Crête 47.20488 5.87018 P PPL FR A6 25 251 25195 1441 259 Europe/Paris 2012-01-18
-3021762 Dannemarie Dannemarie Dannemarie 47.63031 7.12237 P PPL FR C1 68 681 68068 2078 319 Europe/Paris 2012-01-18
-3021767 Danjoutin Danjoutin Danjoutin 47.6156 6.86638 P PPL FR A6 90 901 90032 3527 349 Europe/Paris 2012-01-18
-3021778 Dangé-Saint-Romain Dange-Saint-Romain 46.93333 0.6 P PPL FR B7 86 861 86092 3373 42 Europe/Paris 2007-11-20
-3021795 Damville Damville Damville 48.8693 1.07458 P PPL FR A7 27 273 27198 2154 142 Europe/Paris 2012-01-18
-3021803 Damprichard Damprichard Damprichard 47.24413 6.88121 P PPL FR A6 25 252 25193 1865 820 Europe/Paris 2012-01-18
-3021806 Dampmart Dampmart Dampmart 48.88854 2.74095 P PPL FR A8 77 775 77155 3009 85 Europe/Paris 2012-01-18
-3021809 Dampierre-sur-Salon Dampierre-sur-Salon Dampierre,Dampierre-sur-Salon 47.55719 5.6797 P PPL FR A6 70 702 70198 1192 203 Europe/Paris 2012-01-18
-3021822 Dampierre-les-Bois Dampierre-les-Bois Dampierre,Dampierre-les-Bois 47.50638 6.91279 P PPL FR A6 25 252 25190 1524 362 Europe/Paris 2012-01-18
-3021829 Dampierre-en-Burly Dampierre-en-Burly Dampierre,Dampierre-en-Burly 47.76143 2.51962 P PPL FR A3 45 452 45122 1173 147 Europe/Paris 2012-01-18
-3021835 Dampierre-en-Yvelines Dampierre-en-Yvelines 48.7 1.98333 P PPL FR A8 78 782 78193 1145 96 Europe/Paris 2007-11-14
-3021839 Dampierre Dampierre Dampierre 47.15498 5.74166 P PPL FR A6 39 391 39190 1192 242 Europe/Paris 2012-01-18
-3021841 Damparis Damparis Damparis 47.07556 5.41398 P PPL FR A6 39 391 39189 2898 212 Europe/Paris 2012-01-18
-3021848 Dammartin-en-Goële Dammartin-en-Goele Dammartin 49.05423 2.67777 P PPL FR A8 77 771 77153 8552 171 Europe/Paris 2011-11-02
-3021852 Dammarie-les-Lys Dammarie-les-Lys Dammarie,Dammarie-les-Fontaines 48.51667 2.65 P PPL FR A8 77 772 77152 21066 61 Europe/Paris 2011-11-02
-3021854 Dammarie Dammarie Dammarie 48.34314 1.49444 P PPL FR A3 28 281 28122 1432 148 Europe/Paris 2012-01-18
-3021859 Damigny Damigny 48.45 0.06667 P PPL FR 99 61 611 61143 3020 147 Europe/Paris 2007-11-20
-3021861 Damgan Damgan Dagman,Damgan 47.51799 -2.57698 P PPL FR A2 56 563 56052 1415 8 Europe/Paris 2012-01-18
-3021866 Damery Damery Damery 49.07238 3.88036 P PPL FR A4 51 512 51204 1389 85 Europe/Paris 2012-01-18
-3021872 Damelevières Damelevieres Damelevieres,Damelevières 48.55736 6.38611 P PPL FR B2 54 542 54152 2860 217 Europe/Paris 2012-01-18
-3021888 Dambach-la-Ville Dambach-la-Ville Dambach,Dambch 48.32379 7.42547 P PPL FR C1 67 675 67084 2087 212 Europe/Paris 2007-07-07
-3021890 Damazan Damazan Damazan,Damazan-le-Republicain,Damazan-le-Républicain 44.29068 0.27694 P PPL FR 97 47 474 47078 1386 56 Europe/Paris 2012-01-18
-3021902 Dallet Dallet Dallet 45.77039 3.23906 P PPL FR 98 63 632 63133 1229 331 Europe/Paris 2012-01-18
-3021909 Daix Daix Daix 47.35081 5.00052 P PPL FR A1 21 212 21223 1452 329 Europe/Paris 2012-01-18
-3021911 Dainville Dainville Dainville 50.28098 2.72603 P PPL FR B4 62 621 62263 5587 67 Europe/Paris 2012-01-18
-3021927 Dagneux Dagneux Dagnieu 45.8514 5.0778 P PPL FR B9 01 012 01142 4098 203 Europe/Paris 2010-12-16
-3021930 Dadonville Dadonville Dadonville 48.15776 2.2715 P PPL FR A3 45 453 45119 2014 116 Europe/Paris 2012-01-18
-3021931 Dachstein Dachstein 48.56127 7.53233 P PPL FR C1 67 673 67080 1339 166 Europe/Paris 2007-07-10
-3021933 Dabo Dabo Dabo,Dagsburg 48.65371 7.23636 P PPL FR B2 57 575 57163 2875 470 Europe/Paris 2012-01-18
-3021935 Cysoing Cysoing Cysoing 50.56939 3.21627 P PPL FR B4 59 595 59168 4344 42 Europe/Paris 2012-01-18
-3021945 Cuzieu Cuzieu Cuzieu 45.6084 4.25858 P PPL FR B9 42 421 42081 1403 352 Europe/Paris 2012-01-18
-3021954 Cuxac-Cabardès Cuxac-Cabardes Cuxac,Cuxac-Cabardes,Cuxac-Cabardès 43.37087 2.28369 P PPL FR A9 11 111 11115 1016 519 Europe/Paris 2012-01-18
-3021965 Cuverville Cuverville Cuverville 49.18998 -0.26474 P PPL FR 99 14 142 14215 1860 31 Europe/Paris 2012-01-18
-3021976 Cuttoli-Corticchiato Cuttoli-Corticchiato 41.98333 8.91667 P PPL FR A5 2A 2A1 2A103 1533 760 Europe/Paris 2007-11-20
-3021978 Cusy Cusy Cusy 45.76633 6.02695 P PPL FR B9 74 741 74097 1402 562 Europe/Paris 2012-01-18
-3021980 Custines Custines Custines,Port-sur-Moselle 48.79363 6.14835 P PPL FR B2 54 543 54150 3056 196 Europe/Paris 2012-01-18
-3021993 Cusset Cusset Cusset 46.13002 3.45963 P PPL FR 98 03 033 03095 14562 271 Europe/Paris 2012-01-18
-3021999 Cussac Cussac Cussac 45.70666 0.85124 P PPL FR B1 87 873 87054 1234 347 Europe/Paris 2012-01-18
-3022002 Cussac-Fort-Médoc Cussac-Fort-Medoc 45.11667 -0.73333 P PPL FR 97 33 334 33146 1473 16 Europe/Paris 2010-09-13
-3022003 Cussac-sur-Loire Cussac-sur-Loire 44.98807 3.88416 P PPL FR 98 43 432 43084 1469 677 Europe/Paris 2010-11-19
-3022016 Curtin Curtin Curtin 45.64353 5.48982 P PPL FR B9 38 382 38543 1644 255 Europe/Paris 2012-02-27
-3022036 Curgy Curgy Curgy 46.98714 4.38452 P PPL FR A1 71 711 71162 1149 368 Europe/Paris 2012-01-18
-3022037 Curgies Curgies Curgies 50.32975 3.60299 P PPL FR B4 59 596 59166 1184 90 Europe/Paris 2012-01-18
-3022071 Cunlhat Cunlhat Cunlhat 45.63348 3.5598 P PPL FR 98 63 631 63132 1418 705 Europe/Paris 2012-01-18
-3022079 Cunac Cunac Cunac 43.9301 2.21878 P PPL FR B3 81 811 81074 1227 245 Europe/Paris 2012-01-18
-3022093 Culoz Culoz Culoz 45.84964 5.78081 P PPL FR B9 01 011 01138 2893 262 Europe/Paris 2012-01-18
-3022100 Culhat Culhat Culhat 45.86254 3.33566 P PPL FR 98 63 635 63131 1024 300 Europe/Paris 2012-01-18
-3022119 Cuisiat Cuisiat Cuisiat 46.30021 5.3881 P PPL FR B9 01 012 01426 2108 332 Europe/Paris 2012-02-27
-3022121 Cuisery Cuisery Cuisery 46.55696 4.99797 P PPL FR A1 71 714 71158 1638 211 Europe/Paris 2012-01-18
-3022123 Cuise-la-Motte Cuise-la-Motte Cuise,Cuise-la-Motte 49.38642 3.00588 P PPL FR B6 60 603 60188 2478 48 Europe/Paris 2012-01-18
-3022124 Cuiseaux Cuiseaux Cuiseaux 46.49473 5.38931 P PPL FR A1 71 714 71157 1762 283 Europe/Paris 2011-01-14
-3022133 Cuincy Cuincy Cuincy 50.37933 3.05301 P PPL FR B4 59 593 59165 7048 29 Europe/Paris 2012-01-18
-3022134 Cuinchy Cuinchy Cuinchy 50.5175 2.7488 P PPL FR B4 62 622 62262 1696 22 Europe/Paris 2012-01-18
-3022151 Cugnaux Cugnaux Cugnaux-Vingtcasses 43.53635 1.34428 P PPL FR B3 31 313 31157 15393 170 Europe/Paris 2009-10-26
-3022152 Cuges-les-Pins Cuges-les-Pins Cuges,Cuges-les-Pins 43.27585 5.69944 P PPL FR B8 13 133 13030 3919 197 Europe/Paris 2012-01-18
-3022153 Cugand Cugand Cugand,Kugant 47.06318 -1.2527 P PPL FR B5 85 852 85076 3189 42 Europe/Paris 2012-01-18
-3022154 Cuffy Cuffy Cuffy 46.96275 3.05238 P PPL FR A3 18 182 18082 1107 185 Europe/Paris 2012-01-18
-3022155 Cuffies Cuffies Cuffies 49.40358 3.32119 P PPL FR B6 02 024 02245 1649 64 Europe/Paris 2012-01-18
-3022158 Cuers Cuers Cuers 43.23731 6.07107 P PPL FR B8 83 832 83049 8869 150 Europe/Paris 2012-01-18
-3022164 Cucuron Cucuron Cucuron 43.77321 5.439 P PPL FR B8 84 841 84042 1927 352 Europe/Paris 2012-01-18
-3022167 Cucq Cucq Cucq 50.47733 1.62018 P PPL FR B4 62 624 62261 5050 5 Europe/Paris 2012-01-18
-3022177 Cubzac-les-Ponts Cubzac-les-Ponts Cubzac,Cubzac-les-Ponts 44.97119 -0.44976 P PPL FR 97 33 331 33143 1937 34 Europe/Paris 2012-01-18
-3022187 Cublize Cublize Cublize 46.0204 4.37953 P PPL FR B9 69 692 69070 1112 453 Europe/Paris 2012-01-18
-3022192 Cublac Cublac Cubiac 45.14488 1.30609 P PPL FR B1 19 191 19066 1540 111 Europe/Paris 2009-04-29
-3022215 Crusnes Crusnes Crusnes 49.43359 5.91536 P PPL FR B2 54 541 54149 1642 370 Europe/Paris 2012-01-18
-3022217 Cruseilles Cruseilles Cruseilles 46.03333 6.11667 P PPL FR B9 74 743 74096 3757 815 Europe/Paris 2012-01-18
-3022229 Cruet Cruet Cruet 45.5289 6.0922 P PPL FR B9 73 732 73096 1057 358 Europe/Paris 2010-12-13
-3022238 Cruas Cruas Cruas 44.65544 4.76144 P PPL FR B9 07 072 07076 2526 106 Europe/Paris 2012-01-18
-3022242 Crozon Crozon Crozon,Kraozon,Kroazon 48.24643 -4.48993 P PPL FR A2 29 292 29042 8123 82 Europe/Paris 2007-12-28
-3022267 Crouy-sur-Ourcq Crouy-sur-Ourcq Crouy,Crouy-sur-Ourcq 49.0898 3.0753 P PPL FR A8 77 771 77148 1681 65 Europe/Paris 2012-01-18
-3022269 Crouy-en-Thelle Crouy-en-Thelle Crouy,Crouy-en-Thelle 49.21487 2.32146 P PPL FR B6 60 604 60185 1023 124 Europe/Paris 2012-01-18
-3022271 Crouy Crouy Crouy 49.40274 3.35834 P PPL FR B6 02 024 02243 2643 51 Europe/Paris 2012-01-18
-3022282 Crottet Crottet Crottet 46.27778 4.89249 P PPL FR B9 01 012 01134 1629 203 Europe/Paris 2012-01-18
-3022285 Croth Croth Croth 48.84557 1.37861 P PPL FR A7 27 273 27193 1329 63 Europe/Paris 2012-01-18
-3022300 Crossac Crossac Crossac,Kraozieg 47.4112 -2.16952 P PPL FR B5 44 443 44050 2329 7 Europe/Paris 2012-01-18
-3022301 Crosne Crosne Crosne,Crosnes 48.71922 2.45728 P PPL FR A8 91 912 91191 8592 39 Europe/Paris 2012-01-18
-3022331 Crolles Crolles Crolles 45.28198 5.87824 P PPL FR B9 38 381 38140 9026 257 Europe/Paris 2012-01-18
-3022376 Croix Croix Croix 50.67846 3.1493 P PPL FR B4 59 595 59163 21361 34 Europe/Paris 2012-01-18
-3022380 Croissy-sur-Seine Croissy-sur-Seine Croissy,Croissy-sur-Seine 48.87925 2.13836 P PPL FR A8 78 783 78190 10751 32 Europe/Paris 2012-01-18
-3022382 Croissy-Beaubourg Croissy-Beaubourg Croissy-Beaubourg,Croissy-Beaucourt 48.8283 2.66964 P PPL FR A8 77 775 77146 2135 106 Europe/Paris 2012-01-18
-3022386 Croisilles Croisilles Croisilles 50.19978 2.87935 P PPL FR B4 62 621 62259 1176 81 Europe/Paris 2012-01-18
-3022433 Crissey Crissey Crissey 46.81652 4.88185 P PPL FR A1 71 712 71154 2166 180 Europe/Paris 2012-01-18
-3022438 Crisolles Crisolles Crisolles 49.6225 3.01451 P PPL FR B6 60 603 60181 1026 76 Europe/Paris 2012-01-18
-3022447 Criquebeuf-sur-Seine Criquebeuf-sur-Seine Criquebeuf,Criquebeuf-sur-Seine 49.30563 1.09964 P PPL FR A7 27 271 27188 1085 11 Europe/Paris 2012-01-18
-3022461 Criel-sur-Mer Criel-sur-Mer Criel,Criel-sur-Mer 50.01508 1.31459 P PPL FR A7 76 761 76192 2805 10 Europe/Paris 2012-01-18
-3022472 Crézancy Crezancy Crezancy,Crézancy 49.04833 3.51047 P PPL FR B6 02 021 02239 1257 77 Europe/Paris 2012-01-18
-3022480 Creysse Creysse Creysse 44.85474 0.56583 P PPL FR 97 24 241 24145 2390 38 Europe/Paris 2012-01-18
-3022482 Creys-Mépieu Creys-Mepieu Creys,Creys-Pusigneu 45.73333 5.48333 P PPL FR B9 38 382 38139 1180 299 Europe/Paris 2007-11-21
-3022491 Crevin Crevin Crevin,Crévin,Kreven 47.93333 -1.66667 P PPL FR A2 35 352 35090 1872 76 Europe/Paris 2007-11-20
-3022498 Crèvecœur-le-Grand Crevecoeur-le-Grand Crevecoeur,Crèvecoeur 49.6 2.08333 P PPL FR B6 60 601 60178 3176 176 Europe/Paris 2007-11-21
-3022509 Creuzier-le-Vieux Creuzier-le-Vieux Creuzier-le-Vieux 46.16253 3.43311 P PPL FR 98 03 033 03094 3099 339 Europe/Paris 2012-01-18
-3022513 Creutzwald Creutzwald Creutzwald-la-Croix,Kreuzwald 49.2 6.68333 P PPL FR B2 57 571 57160 14416 242 Europe/Paris 2007-11-21
-3022523 Creully Creully Creully 49.28478 -0.53976 P PPL FR 99 14 142 14200 1490 28 Europe/Paris 2012-01-18
-3022530 Créteil Creteil Creteil,Créteil,Kretej,kureteiyu,Кретей,Кретеј,クレテイユ 48.78333 2.46667 P PPLA2 FR A8 94 941 94028 84833 51 Europe/Paris 2011-11-02
-3022540 Crest Crest Crest 44.72836 5.02722 P PPL FR B9 26 261 26108 8517 190 Europe/Paris 2012-01-18
-3022549 Cresserons Cresserons Cresserons 49.28701 -0.35569 P PPL FR 99 14 142 14197 1255 30 Europe/Paris 2012-01-18
-3022559 Crespin Crespin 50.4211 3.66137 P PPL FR B4 59 596 59160 4361 26 Europe/Paris 2009-01-18
-3022562 Crespières Crespieres Crespieres,Crespières 48.88317 1.92151 P PPL FR A8 78 783 78189 1554 116 Europe/Paris 2012-01-18
-3022569 Crépy-en-Valois Crepy-en-Valois Bouillant-Germinal,Crepy,Crepy-en-Valois,Crépy,Crépy-en-Valois 49.23359 2.88807 P PPL FR B6 60 604 60176 15694 98 Europe/Paris 2012-01-18
-3022570 Crépy Crepy Crepy-en-Laonnois,Crépy-en-Laonnois 49.6 3.51667 P PPL FR B6 02 022 02238 1739 85 Europe/Paris 2010-12-13
-3022585 Créon Creon Creon,Créon 44.77457 -0.348 P PPL FR 97 33 332 33140 3139 104 Europe/Paris 2012-01-18
-3022588 Creney-près-Troyes Creney-pres-Troyes Creney 48.33333 4.13333 P PPL FR A4 10 103 10115 1551 122 Europe/Paris 2007-11-20
-3022600 Crémieu Cremieu Cremieu,Crémieu 45.72899 5.24839 P PPL FR B9 38 382 38138 3427 240 Europe/Paris 2012-01-18
-3022608 Creissels Creissels Creissels 44.08588 3.06071 P PPL FR B3 12 121 12084 1569 381 Europe/Paris 2012-01-18
-3022609 Creissan Creissan Creissan 43.37524 3.01196 P PPL FR A9 34 341 34089 1103 109 Europe/Paris 2012-01-18
-3022610 Creil Creil Creil,Krej,Крей,Креј 49.25672 2.48477 P PPL FR B6 60 604 60175 31863 73 Europe/Paris 2012-01-18
-3022611 Créhen Crehen Crehen,Créhen,Krehen 48.54546 -2.21307 P PPL FR A2 22 221 22049 1576 33 Europe/Paris 2012-01-18
-3022612 Créhange Crehange Crehange,Créhange,Grehange,Gréhange 49.04952 6.58012 P PPL FR B2 57 571 57159 4002 247 Europe/Paris 2012-01-18
-3022613 Crégy-lès-Meaux Cregy-les-Meaux Cregy,Cregy-les-Meaux,Crégy,Crégy-lès-Meaux 48.97648 2.87483 P PPL FR A8 77 771 77143 4061 87 Europe/Paris 2012-01-18
-3022619 Crédin Credin Credin,Crédin,Kerzhin 48.03462 -2.7663 P PPL FR A2 56 562 56047 1478 130 Europe/Paris 2012-01-18
-3022620 Crécy-sur-Serre Crecy-sur-Serre Crecy,Crecy-sur-Serre,Crécy,Crécy-sur-Serre 49.69594 3.62454 P PPL FR B6 02 022 02237 1581 67 Europe/Paris 2012-01-18
-3022622 Crécy-en-Ponthieu Crecy-en-Ponthieu Crecy,Crecy-en-Ponthie,Crecy-en-Ponthieu,Crécy,Crécy-en-Ponthie,Crécy-en-Ponthieu 50.25193 1.88085 P PPL FR B6 80 801 80222 1549 38 Europe/Paris 2012-01-18
-3022633 Crêches-sur-Saône Creches-sur-Saone Creches,Creches-sur-Saone,Crêches,Crêches-sur-Saône 46.24475 4.78678 P PPL FR A1 71 715 71150 2793 177 Europe/Paris 2012-01-18
-3022641 Créances Creances Creances,Créances 49.19874 -1.56938 P PPL FR 99 50 503 50151 2052 14 Europe/Paris 2012-01-18
-3022665 Cravanche Cravanche Cravanche 47.65644 6.83647 P PPL FR A6 90 901 90029 1947 371 Europe/Paris 2012-01-18
-3022679 Craponne-sur-Arzon Craponne-sur-Arzon Craponne,Craponne-sur-Arzon 45.33135 3.84802 P PPL FR 98 43 432 43080 2794 920 Europe/Paris 2012-01-18
-3022683 Craponne Craponne Craponne 45.74684 4.72661 P PPL FR B9 69 691 69069 8460 283 Europe/Paris 2012-01-18
-3022690 Craon Craon Craon 47.84688 -0.94929 P PPL FR B5 53 531 53084 5130 53 Europe/Paris 2012-01-18
-3022692 Cranves-Sales Cranves-Sales Cranves-Sales 46.18746 6.29108 P PPL FR B9 74 743 74094 4876 533 Europe/Paris 2012-01-18
-3022694 Cransac Cransac Cransac 44.52411 2.2837 P PPL FR B3 12 123 12083 1714 285 Europe/Paris 2011-01-12
-3022700 Cran-Gevrier Cran-Gevrier Gevrier,Gévrier 45.9 6.1 P PPL FR B9 74 741 74093 19354 510 Europe/Paris 2011-11-02
-3022726 Crach Crach Crach,Krac'h 47.617 -3.0017 P PPL FR A2 56 561 56046 3241 28 Europe/Paris 2012-01-18
-3022733 Cozes Cozes Cozes 45.58375 -0.83178 P PPL FR B7 17 174 17131 1966 39 Europe/Paris 2012-01-18
-3022739 Coye-la-Forêt Coye-la-Foret Coye,Coye-la-Foret,Coye-la-Forêt 49.14233 2.47038 P PPL FR B6 60 604 60172 3914 44 Europe/Paris 2012-01-18
-3022751 Couzeix Couzeix Coses,Cosés,Couzeix 45.87047 1.23828 P PPL FR B1 87 872 87050 6942 363 Europe/Paris 2012-01-18
-3022768 Coux Coux Coux 44.73484 4.62057 P PPL FR B9 07 072 07072 1581 225 Europe/Paris 2011-01-14
-3022770 Couvron-et-Aumencourt Couvron-et-Aumencourt Couvron,Couvron-et-Aumencourt 49.64476 3.51857 P PPL FR B6 02 022 02231 1682 77 Europe/Paris 2012-01-18
-3022799 Coutras Coutras Coutras 45.03333 -0.13333 P PPL FR 97 33 335 33138 7682 13 Europe/Paris 2012-01-18
-3022800 Coutouvre Coutouvre Coutouvre 46.07298 4.21243 P PPL FR B9 42 422 42074 1126 445 Europe/Paris 2012-01-18
-3022804 Coutiches Coutiches Coutiches 50.4552 3.20384 P PPL FR B4 59 593 59158 2286 27 Europe/Paris 2012-01-18
-3022811 Couternon Couternon Couternon 47.33333 5.15 P PPL FR A1 21 212 21209 1564 219 Europe/Paris 2012-01-18
-3022812 Couterne Couterne 48.51318 -0.41538 P PPL FR 99 61 611 61135 1050 133 Europe/Paris 2007-02-09
-3022826 Coutances Coutances 49.05 -1.43333 P PPLA3 FR 99 50 503 50147 9657 74 Europe/Paris 2011-11-02
-3022846 Coussac-Bonneval Coussac-Bonneval Coussac,Coussac-Bonneval,Coussac-sans-Culottes 45.51199 1.32261 P PPL FR B1 87 872 87049 1423 356 Europe/Paris 2012-01-18
-3022856 Cousance Cousance Cousance-du-Jura 46.53324 5.39214 P PPL FR A6 39 392 39173 1344 245 Europe/Paris 2011-01-14
-3022859 Courzieu Courzieu Courzieu 45.7431 4.57034 P PPL FR B9 69 691 69067 1205 380 Europe/Paris 2012-01-18
-3022862 Courville-sur-Eure Courville-sur-Eure Courville,Courville-sur-Eure 48.449 1.24085 P PPL FR A3 28 281 28116 2820 175 Europe/Paris 2012-01-18
-3022868 Courtry Courtry Courtry 48.91906 2.60431 P PPL FR A8 77 775 77139 6610 80 Europe/Paris 2012-01-18
-3022882 Courtisols Courtisols Courtisols 48.9867 4.517 P PPL FR A4 51 511 51193 2644 141 Europe/Paris 2012-01-18
-3022897 Courthézon Courthezon Courthezon,Courthézon 44.08731 4.88382 P PPL FR B8 84 842 84039 5723 51 Europe/Paris 2012-01-18
-3022911 Courtenay Courtenay Courtenay 48.03901 3.05851 P PPL FR A3 45 451 45115 3688 170 Europe/Paris 2012-01-18
-3022922 Courteilles Courteilles 48.77496 -0.19942 P PPL FR 99 61 612 61189 1041 223 Europe/Paris 2012-02-27
-3022943 Cours-les-Barres Cours-les-Barres Cours,Cours-les-Barres 47.02513 3.03167 P PPL FR A3 18 182 18075 1142 178 Europe/Paris 2012-01-18
-3022947 Courseulles-sur-Mer Courseulles-sur-Mer Courseulles,Courseulles-sur-Mer 49.33027 -0.45612 P PPL FR 99 14 142 14191 4061 7 Europe/Paris 2012-01-18
-3022953 Cours-de-Pile Cours-de-Pile Cours,Cours-de-Pile 44.83608 0.54656 P PPL FR 97 24 241 24140 1395 45 Europe/Paris 2012-01-18
-3022956 Coursan Coursan Coursan 43.2337 3.05712 P PPL FR A9 11 113 11106 5632 12 Europe/Paris 2011-01-11
-3022959 Coursac Coursac Coursac 45.12881 0.63919 P PPL FR 97 24 243 24139 1429 156 Europe/Paris 2012-01-18
-3022964 Cours-la-Ville Cours-la-Ville 46.1 4.31667 P PPL FR B9 69 692 69066 4501 505 Europe/Paris 2007-11-21
-3022969 Courrières Courrieres Courrieres,Courrières,Dampierre-les-Dunes 50.45701 2.94724 P PPL FR B4 62 627 62250 10330 29 Europe/Paris 2012-01-18
-3022977 Courpière Courpiere 45.75689 3.54216 P PPL FR 98 63 635 63125 4918 317 Europe/Paris 2009-06-24
-3022981 Courpalay Courpalay 48.64947 2.96116 P PPL FR A8 77 773 77135 1391 108 Europe/Paris 2008-07-05
-3022986 Cournonterral Cournonterral Cournonterral 43.55889 3.72 P PPL FR A9 34 343 34088 5682 49 Europe/Paris 2010-12-24
-3022987 Cournonsec Cournonsec Cournonsec 43.54944 3.70556 P PPL FR A9 34 343 34087 2205 70 Europe/Paris 2010-12-24
-3022988 Cournon-d'Auvergne Cournon-d'Auvergne Cournon,Cournon-d'Auvergne 45.73543 3.19608 P PPL FR 98 63 632 63124 18848 376 Europe/Paris 2012-01-18
-3023007 Courmelles Courmelles Courmelles 49.34596 3.31215 P PPL FR B6 02 024 02226 1671 61 Europe/Paris 2012-01-18
-3023010 Courlon-sur-Yonne Courlon-sur-Yonne Courlon,Courlon-sur-Yonne 48.33927 3.1666 P PPL FR A1 89 893 89124 1036 70 Europe/Paris 2012-01-18
-3023014 Courlay Courlay Courlay 46.77941 -0.56607 P PPL FR B7 79 791 79103 2330 207 Europe/Paris 2012-01-18
-3023044 Courdimanche Courdimanche Courdimanche 49.03513 2.00096 P PPL FR A8 95 953 95183 6256 156 Europe/Paris 2012-01-18
-3023051 Courcy Courcy Courcy 49.32362 4.00257 P PPL FR A4 51 513 51183 1453 80 Europe/Paris 2012-01-18
-3023056 Courcouronnes Courcouronnes Courcouronnes 48.61429 2.40762 P PPL FR A8 91 912 91182 14856 80 Europe/Paris 2012-01-18
-3023058 Courçon Courcon Courcon,Courçon,La Bonne-Foy 46.24389 -0.813 P PPL FR B7 17 173 17127 1173 20 Europe/Paris 2012-01-18
-3023061 Courcité Courcite Courcite,Courcité 48.30633 -0.24961 P PPL FR B5 53 533 53083 1042 181 Europe/Paris 2012-01-18
-3023063 Cour-Cheverny Cour-Cheverny Cour-Chaverny,Cour-Cheverny 47.51033 1.45583 P PPL FR A3 41 411 41067 2675 87 Europe/Paris 2012-01-18
-3023065 Courchevel Courchevel Courchevel,Courchevel 1850,Kurshevel',Куршевель 45.41538 6.63643 P PPL FR B9 73 731 73227 1700 1756 Europe/Paris 2012-02-27
-3023066 Courchelettes Courchelettes Courchelettes 50.34044 3.05938 P PPL FR B4 59 593 59156 2919 30 Europe/Paris 2012-01-18
-3023085 Courcelles-sur-Seine Courcelles-sur-Seine Courcelles,Courcelles-sur-Seine 49.18285 1.36008 P PPL FR A7 27 271 27180 1601 27 Europe/Paris 2012-01-18
-3023095 Courcelles-lès-Montbéliard Courcelles-les-Montbeliard Courcelles,Courcelles-les-Montbeliard,Courcelles-lès-Montbéliard 47.50113 6.78461 P PPL FR A6 25 252 25170 1073 341 Europe/Paris 2012-01-18
-3023097 Courcelles-lès-Lens Courcelles-les-Lens Courcelles 50.41667 3.01667 P PPL FR B4 62 627 62249 6205 29 Europe/Paris 2007-11-20
-3023107 Courcelles-Chaussy Courcelles-Chaussy Courcelles-Chaussy 49.10862 6.40391 P PPL FR B2 57 574 57155 2855 226 Europe/Paris 2012-01-18
-3023141 Courbevoie Courbevoie 48.89672 2.25666 P PPL FR A8 92 922 92026 85158 49 Europe/Paris 2011-12-08
-3023175 Coupvray Coupvray Coupvray 48.89289 2.7967 P PPL FR A8 77 775 77132 2964 82 Europe/Paris 2012-01-18
-3023214 Coulounieix-Chamiers Coulounieix-Chamiers Coulounieix,Coulounieix-Chamiers 45.15289 0.68852 P PPL FR 97 24 243 24138 9103 179 Europe/Paris 2012-01-18
-3023238 Coulon Coulon Coulon 46.32328 -0.5856 P PPL FR B7 79 792 79100 2203 6 Europe/Paris 2012-01-18
-3023240 Coulommiers Coulommiers Coulommiers 48.81451 3.08498 P PPL FR A8 77 771 77131 15274 79 Europe/Paris 2012-01-18
-3023249 Coulombs Coulombs Coulombs 48.65253 1.54646 P PPL FR A3 28 283 28113 1320 113 Europe/Paris 2012-01-18
-3023252 Coulombiers Coulombiers Coulombiers 46.48324 0.18494 P PPL FR B7 86 863 86083 1080 140 Europe/Paris 2012-01-18
-3023254 Coulogne Coulogne Coulogne 50.92463 1.88137 P PPL FR B4 62 626 62244 5979 8 Europe/Paris 2012-01-18
-3023260 Coullons Coullons Coullons 47.62104 2.49258 P PPL FR A3 45 451 45108 2423 165 Europe/Paris 2012-01-18
-3023279 Coulans-sur-Gée Coulans-sur-Gee Coulans,Coulans-sur-Gee,Coulans-sur-Gée 48.0207 0.00974 P PPL FR B5 72 721 72096 1313 99 Europe/Paris 2012-01-18
-3023281 Coulanges-lès-Nevers Coulanges-les-Nevers Coulanges,Coulanges-les-Nevers,Coulanges-lès-Nevers 47.00509 3.18756 P PPL FR A1 58 583 58088 3610 187 Europe/Paris 2012-01-18
-3023291 Coulaines Coulaines 48.02409 0.20411 P PPL FR B5 72 723 72095 7912 55 Europe/Paris 2009-02-10
-3023294 Couiza Couiza Couiza 42.94198 2.25453 P PPL FR A9 11 112 11103 1281 230 Europe/Paris 2012-01-18
-3023296 Couilly-Pont-aux-Dames Couilly-Pont-aux-Dames Couilly,Couilly-Pont,Couilly-Pont-aux-Dames 48.88473 2.85677 P PPL FR A8 77 771 77128 2033 48 Europe/Paris 2012-01-18
-3023301 Couhé Couhe Couche,Couché,Couhe,Couhe-Verac,Couhé,Couhé-Verac 46.29911 0.18174 P PPL FR B7 86 862 86082 1968 139 Europe/Paris 2012-01-18
-3023309 Coufouleux Coufouleux Couffouleux,Coufouleux 43.81713 1.73078 P PPL FR B3 81 811 81070 2135 118 Europe/Paris 2011-01-13
-3023315 Couffé Couffe Couffe,Couffé,Koufeg 47.3912 -1.29321 P PPL FR B5 44 444 44048 1936 27 Europe/Paris 2012-01-18
-3023324 Couëron Coueron Coueron,Couëron,Koeron 47.21508 -1.72171 P PPL FR B5 44 442 44047 19466 28 Europe/Paris 2012-01-18
-3023328 Coudun Coudun Coudun 49.46146 2.81248 P PPL FR B6 60 603 60166 1034 43 Europe/Paris 2012-01-18
-3023344 Coudoux Coudoux Coudeux,Coudoux 43.558 5.24889 P PPL FR B8 13 131 13118 3024 106 Europe/Paris 2011-01-19
-3023356 Coudekerque-Branche Coudekerque-Branche Coudekerque,Coudekerque-Branche,Couderkerque-Branche 51.02288 2.39359 P PPL FR B4 59 594 59155 25201 3 Europe/Paris 2012-01-18
-3023357 Coudekerque-Village Coudekerque-Village 51 2.41667 P PPL FR B4 59 594 59154 1147 2 Europe/Paris 2009-12-20
-3023363 Coucy-le-Château-Auffrique Coucy-le-Chateau-Auffrique Coucy-Auffrique,Coucy-la-Montagne,Coucy-le-Chateau,Coucy-le-Chateau-Auffrique,Coucy-le-Château,Coucy-le-Château-Auffrique 49.52083 3.3238 P PPL FR B6 02 022 02217 1082 122 Europe/Paris 2012-01-18
-3023370 Couchey Couchey Couchey 47.25991 4.98257 P PPL FR A1 21 212 21200 1224 278 Europe/Paris 2012-01-18
-3023371 Couches Couches Couches-les-Mines 46.86667 4.56667 P PPL FR A1 71 711 71149 1420 384 Europe/Paris 2007-11-21
-3023375 Coubron Coubron Coubron 48.91667 2.58333 P PPL FR A8 93 932 93015 4735 70 Europe/Paris 2012-01-18
-3023379 Coubon Coubon Coubon 44.99731 3.91783 P PPL FR 98 43 432 43078 2882 629 Europe/Paris 2010-11-19
-3023381 Coublevie Coublevie Coublevie 45.35624 5.61759 P PPL FR B9 38 381 38133 3992 344 Europe/Paris 2012-01-18
-3023389 Coubert Coubert Coubert 48.67186 2.69733 P PPL FR A8 77 772 77127 1459 94 Europe/Paris 2012-01-18
-3023410 Cotignac Cotignac Cotignac 43.52841 6.15 P PPL FR B8 83 833 83046 2186 239 Europe/Paris 2012-01-18
-3023466 Cossé-le-Vivien Cosse-le-Vivien Cosse-le-Vivien,Cossé-le-Vivien 47.94598 -0.91185 P PPL FR B5 53 531 53077 2862 84 Europe/Paris 2012-01-18
-3023476 Cosne-Cours-sur-Loire Cosne-Cours-sur-Loire Cosne-sur-Loire,Cours 47.41101 2.92528 P PPLA3 FR FR A1 58 584 58086 11613 149 Europe/Paris 2011-11-21
-3023477 Cosnes-et-Romain Cosnes-et-Romain Cosnes,Cosnes-et-Romain 49.51943 5.71765 P PPL FR B2 54 541 54138 2110 378 Europe/Paris 2012-01-18
-3023484 Cosnac Cosnac Cosnac 45.13516 1.58575 P PPL FR B1 19 191 19063 2412 228 Europe/Paris 2012-01-18
-3023492 Corzé Corze 47.55956 -0.39062 P PPL FR B5 49 491 49110 1591 25 Europe/Paris 2010-07-15
-3023506 Corte Corte Corte,Corti 42.3 9.15 P PPLA3 FR A5 2B 2B3 2B096 7217 411 Europe/Paris 2010-04-02
-3023511 Corseul Corseul Corseul,Kersaout 48.4818 -2.16947 P PPL FR A2 22 221 22048 1877 85 Europe/Paris 2012-01-18
-3023512 Corsept Corsept Corsept,Korzed 47.27703 -2.05904 P PPL FR B5 44 443 44046 2116 6 Europe/Paris 2012-01-18
-3023534 Corrèze Correze Correze,Corrèze 45.37274 1.87465 P PPL FR B1 19 192 19062 1176 477 Europe/Paris 2012-01-18
-3023543 Corquilleroy Corquilleroy Corquille-Libre,Corquilleroy,Curquilleroy 48.04212 2.70382 P PPL FR A3 45 451 45104 2272 89 Europe/Paris 2012-01-18
-3023545 Corps-Nuds Corps-Nuds Corps-Nuds,Kornuz 47.97915 -1.58409 P PPL FR A2 35 353 35088 2679 68 Europe/Paris 2012-01-18
-3023550 Corpeau Corpeau Corpeau 46.92917 4.75226 P PPL FR A1 21 211 21196 1049 228 Europe/Paris 2012-01-18
-3023557 Coron Coron Coron 47.12726 -0.64512 P PPL FR B5 49 493 49109 1384 129 Europe/Paris 2012-01-18
-3023560 Corny-sur-Moselle Corny-sur-Moselle Corny,Corny-sur-Moselle 49.03497 6.05971 P PPL FR B2 57 574 57153 1806 174 Europe/Paris 2012-01-18
-3023573 Cornimont Cornimont Cornimont 47.95998 6.83038 P PPL FR B2 88 881 88116 3966 505 Europe/Paris 2012-01-18
-3023576 Cornillon-Confoux Cornillon-Confoux Cornillon,Cornillon-Confoux 43.56667 5.06667 P PPL FR B8 13 131 13029 1234 70 Europe/Paris 2012-01-18
-3023587 Cornil Cornil Cornil 45.21168 1.69204 P PPL FR B1 19 192 19061 1392 253 Europe/Paris 2012-01-18
-3023589 Cornier Cornier Cornier 46.09378 6.29796 P PPL FR B9 74 742 74090 1039 507 Europe/Paris 2012-01-18
-3023590 Corneville-sur-Risle Corneville-sur-Risle Corneville,Corneville-sur-Risle 49.34128 0.58628 P PPL FR A7 27 272 27174 1177 24 Europe/Paris 2012-01-18
-3023599 Corneilla-la-Rivière Corneilla-la-Riviere Corneilla,Corneilla-de-la-Riviere,Corneilla-de-la-Rivière,Corneilla-la-Riviere,Corneilla-la-Rivière,Corneillà,Cornella de la Ribera,Cornellà de la Ribera 42.69675 2.72962 P PPL FR A9 66 662 66058 1538 90 Europe/Paris 2012-01-18
-3023600 Corneilla-del-Vercol Corneilla-del-Vercol Corneilla,Corneilla-del-Vercol,Cornella del Bercol,Cornellà del Bèrcol 42.6239 2.95216 P PPL FR A9 66 662 66059 1646 11 Europe/Paris 2012-01-18
-3023602 Corneilhan Corneilhan Corneilhan 43.39957 3.19147 P PPL FR A9 34 341 34084 1747 82 Europe/Paris 2012-01-18
-3023606 Cornebarrieu Cornebarrieu Cornebarrien,Cornebarrieu 43.64895 1.32407 P PPL FR B3 31 313 31150 5256 150 Europe/Paris 2012-01-18
-3023611 Corné Corne Corne,Corné 47.4709 -0.34992 P PPL FR B5 49 491 49106 2706 28 Europe/Paris 2012-01-18
-3023617 Cornas Cornas Cornas 44.96498 4.84806 P PPL FR B9 07 073 07070 2222 129 Europe/Paris 2012-01-18
-3023628 Cormontreuil Cormontreuil Cormontreuil 49.21667 4.05 P PPL FR A4 51 513 51172 6479 91 Europe/Paris 2012-01-18
-3023631 Cormicy Cormicy Cormicy 49.37071 3.89596 P PPL FR A4 51 513 51171 1071 86 Europe/Paris 2012-01-18
-3023637 Cormery Cormery Cormery 47.26812 0.83583 P PPL FR A3 37 372 37083 1606 66 Europe/Paris 2012-01-18
-3023638 Corme-Royal Corme-Royal Corme-Royal,Corme-la-Foret,Corme-la-Forêt 45.74395 -0.8147 P PPL FR B7 17 174 17120 1434 36 Europe/Paris 2012-01-18
-3023641 Cormeray Cormeray Cormeray 47.49196 1.4061 P PPL FR A3 41 411 41061 1293 101 Europe/Paris 2012-01-18
-3023643 Cormelles-le-Royal Cormelles-le-Royal Cormelles-le-Libre 49.15398 -0.33062 P PPL FR 99 14 142 14181 4808 30 Europe/Paris 2011-01-19
-3023645 Cormeilles-en-Parisis Cormeilles-en-Parisis Cormeilles,Cormeilles-en-Parisis 48.97111 2.20491 P PPL FR A8 95 951 95176 21973 79 Europe/Paris 2012-01-18
-3023647 Cormeilles Cormeilles Cormeilles 49.24803 0.37654 P PPL FR A7 27 272 27170 1273 70 Europe/Paris 2008-11-21
-3023661 Corlay Corlay Corlay,Korle 48.31725 -3.05733 P PPL FR A2 22 224 22047 1021 184 Europe/Paris 2012-01-18
-3023672 Corenc Corenc Corenc 45.21421 5.77152 P PPL FR B9 38 381 38126 4217 255 Europe/Paris 2012-01-18
-3023682 Cordon Cordon Cordon 45.92408 6.61237 P PPL FR B9 74 742 74089 1006 850 Europe/Paris 2012-01-18
-3023695 Cordes-sur-Ciel Cordes-sur-Ciel 44.06667 1.95 P PPL FR B3 81 811 81069 1081 183 Europe/Paris 2007-11-21
-3023697 Cordemais Cordemais Cordemais,Kordevez 47.29107 -1.87869 P PPL FR B5 44 442 44045 2747 16 Europe/Paris 2012-01-18
-3023709 Corcieux Corcieux Corcieux 48.17236 6.88148 P PPL FR B2 88 883 88115 1662 538 Europe/Paris 2012-01-18
-3023725 Corbreuse Corbreuse Corbreuse 48.50065 1.95913 P PPL FR A8 91 911 91175 1575 151 Europe/Paris 2012-01-18
-3023735 Corbigny Corbigny Corbigny 47.25678 3.68285 P PPL FR A1 58 582 58083 1879 200 Europe/Paris 2012-01-18
-3023742 Corbie Corbie Corbie 49.90672 2.50682 P PPL FR B6 80 802 80212 6486 32 Europe/Paris 2012-01-18
-3023756 Corbenay Corbenay Corbenay 47.89275 6.33047 P PPL FR A6 70 701 70171 1440 269 Europe/Paris 2012-01-18
-3023759 Corbelin Corbelin Corbelin 45.60868 5.54448 P PPL FR B9 38 382 38124 1912 277 Europe/Paris 2012-01-18
-3023762 Corbeilles Corbeilles Corbeilles,Corbeilles-en-Gatinais,Corbeilles-en-Gâtinais,Corbeilles-la-Montagne 48.07201 2.5503 P PPL FR A3 45 451 45103 1476 85 Europe/Paris 2012-01-18
-3023763 Corbeil-Essonnes Corbeil-Essonnes Corbeil,Corbeil-Essonnes,Corbeil-la-Montagne,Korbej Eson,Korbej-Ehsson,Корбей-Эссон,Корбеј Есон 48.60603 2.48757 P PPL FR A8 91 912 91174 40527 36 Europe/Paris 2012-01-18
-3023767 Corbehem Corbehem Corbehem 50.33141 3.04995 P PPL FR B4 62 621 62240 2355 33 Europe/Paris 2012-01-18
-3023771 Corbas Corbas Corbas 45.6679 4.89627 P PPL FR B9 69 691 69273 9753 193 Europe/Paris 2012-01-18
-3023772 Corbarieu Corbarieu Corbarieu 43.94415 1.36882 P PPL FR B3 82 822 82044 1348 92 Europe/Paris 2012-01-18
-3023777 Coray Coray Coray,Kore 48.05934 -3.83056 P PPL FR A2 29 292 29041 1704 221 Europe/Paris 2012-01-18
-3023787 Coquelles Coquelles 50.93461 1.7988 P PPL FR B4 62 626 62239 2439 8 Europe/Paris 2011-11-02
-3023804 Conty Conty Conty 49.741 2.1512 P PPL FR B6 80 802 80211 1727 63 Europe/Paris 2012-01-18
-3023808 Contrexéville Contrexeville Contrexeville,Contrexéville 48.18424 5.89572 P PPL FR B2 88 882 88114 4181 350 Europe/Paris 2012-01-18
-3023812 Contres Contres Contres 47.41754 1.42849 P PPL FR A3 41 411 41059 3406 99 Europe/Paris 2012-01-18
-3023842 Contes Contes Contes 43.81278 7.31444 P PPL FR B8 06 062 06048 6864 256 Europe/Paris 2011-11-02
-3023850 Contamine-sur-Arve Contamine-sur-Arve Contamine,Contamine-sur-Arve 46.12942 6.33839 P PPL FR B9 74 742 74087 1634 452 Europe/Paris 2012-01-18
-3023873 Conques-sur-Orbiel Conques-sur-Orbiel 43.26667 2.41667 P PPL FR A9 11 111 11099 2225 125 Europe/Paris 2007-11-21
-3023874 Conquereuil Conquereuil Conquereuil,Konkerel 47.62524 -1.75105 P PPL FR B5 44 441 44044 1029 32 Europe/Paris 2012-01-18
-3023880 Connerré Connerre Connerre,Connerré 48.05698 0.49344 P PPL FR B5 72 722 72090 2719 78 Europe/Paris 2012-01-18
-3023883 Connaux Connaux Connaux 44.08919 4.59387 P PPL FR A9 30 302 30092 1776 87 Europe/Paris 2012-01-18
-3023884 Connantre Connantre Connantre 48.72657 3.92403 P PPL FR A4 51 512 51165 1149 97 Europe/Paris 2012-01-18
-3023891 Conlie Conlie Conlie 48.12334 -0.01739 P PPL FR B5 72 722 72089 1746 117 Europe/Paris 2012-01-18
-3023907 Congrier Congrier Congrier 47.80989 -1.117 P PPL FR B5 53 531 53073 1087 83 Europe/Paris 2012-01-18
-3023908 Congis-sur-Thérouanne Congis-sur-Therouanne 49 2.98333 P PPL FR A8 77 771 77126 2011 52 Europe/Paris 2007-11-14
-3023911 Congénies Congenies 43.76667 4.16667 P PPL FR A9 30 302 30091 1168 56 Europe/Paris 2007-11-20
-3023919 Confolens Confolens 46.01667 0.66667 P PPLA3 FR B7 16 163 16106 3104 164 Europe/Paris 2010-04-02
-3023924 Conflans-Sainte-Honorine Conflans-Sainte-Honorine Conflans,Conflans-Sainte-Honorine,Confluent-de-Seine-et-Oise,Konflan Sent Onoren,Конфлан Сент Онорен 49.00158 2.09694 P PPL FR A8 78 783 78172 36358 48 Europe/Paris 2012-01-18
-3023925 Conflans-en-Jarnisy Conflans-en-Jarnisy Conflans,Conflans-en-Jarnisy 49.16768 5.84863 P PPL FR B2 54 541 54136 2619 196 Europe/Paris 2012-01-18
-3023937 Condrieu Condrieu Condrieu 45.46344 4.76848 P PPL FR B9 69 691 69064 3615 153 Europe/Paris 2012-01-18
-3023943 Condom Condom Condom 43.95816 0.37199 P PPLA3 FR B3 32 322 32107 7732 91 Europe/Paris 2010-04-02
-3023946 Condette Condette Condette 50.65817 1.63386 P PPL FR B4 62 623 62235 2764 73 Europe/Paris 2012-01-18
-3023947 Condé-sur-Vire Conde-sur-Vire Conde,Conde-sur-Vire,Condé-sur-Vire 49.05 -1.03333 P PPL FR 99 50 504 50139 3114 27 Europe/Paris 2011-09-11
-3023948 Condé-sur-Vesgre Conde-sur-Vesgre Conde,Conde-sur-Vesgre,Condé-sur-Vesgre 48.74199 1.66069 P PPL FR A8 78 781 78171 1095 110 Europe/Paris 2012-01-18
-3023951 Condé-sur-Sarthe Conde-sur-Sarthe Conde,Conde-sur-Sarthe,Condé,Condé-sur-Sarthe 48.43197 0.03398 P PPL FR 99 61 611 61117 2290 141 Europe/Paris 2012-01-18
-3023953 Condé-sur-Noireau Conde-sur-Noireau Conde,Conde-sur-Noireau,Condé-sur-Noireau,Noireau 48.84881 -0.55214 P PPL FR 99 14 144 14174 6364 83 Europe/Paris 2012-01-18
-3023955 Condé-sur-l'Escaut Conde-sur-l'Escaut Conde,Conde-sur-Escaut,Conde-sur-l'Escaut,Condé,Condé-sur-Escaut,Condé-sur-l'Escaut,Nord-Libre 50.45436 3.58884 P PPL FR B4 59 596 59153 10215 26 Europe/Paris 2012-01-18
-3023958 Condé-sur-Huisne Conde-sur-Huisne Conde,Conde-sur-Huine,Conde-sur-Huisne,Condé,Condé-sur-Huine,Condé-sur-Huisne 48.38103 0.85093 P PPL FR 99 61 613 61116 1202 124 Europe/Paris 2012-01-18
-3023960 Condé-Sainte-Libiaire Conde-Sainte-Libiaire Conde,Conde-Sainte-Libiaire,Conde-sur-Morin,Condé,Condé-Sainte-Libiaire,Condé-sur-Morin 48.89695 2.83904 P PPL FR A8 77 771 77125 1477 76 Europe/Paris 2012-01-18
-3023977 Condat-sur-Vienne Condat-sur-Vienne Condat,Condat-sur-Vienne 45.78648 1.28454 P PPL FR B1 87 872 87048 4372 356 Europe/Paris 2012-01-18
-3023984 Condat Condat Condat-en-Feniers,Condat-en-Féniers 45.34093 2.75791 P PPL FR 98 15 153 15054 1143 727 Europe/Paris 2007-11-14
-3024026 Conches-en-Ouche Conches-en-Ouche Conches,Conches-en-Ouche,La Montagne-de-Conches 48.95768 0.94052 P PPL FR A7 27 273 27165 4506 152 Europe/Paris 2012-01-18
-3024028 Conches-sur-Gondoire Conches-sur-Gondoire 48.85624 2.71783 P PPL FR A8 77 775 77124 1886 100 Europe/Paris 2007-11-14
-3024035 Concarneau Concarneau Concarneau,Konk-Kerne,Konkarno,Конкарно 47.87502 -3.92245 P PPL FR A2 29 294 29039 21397 21 Europe/Paris 2012-01-18
-3024057 Comps Comps Comps,Comps-Saint-Etienne,Comps-Saint-Étienne 43.85304 4.60567 P PPL FR A9 30 302 30089 1617 12 15 Europe/Paris 2011-01-19
-3024058 Compreignac Compreignac Compreignac 45.99162 1.27561 P PPL FR B1 87 871 87047 1492 401 Europe/Paris 2012-01-18
-3024066 Compiègne Compiegne Compiegne,Compiègne,Komp'en',Kompjen,Marat-sur-Oise,gong bi nie,Компьень,Компјењ,贡比涅 49.41794 2.82606 P PPLA3 FR B6 60 603 60159 44243 42 Europe/Paris 2011-11-02
-3024068 Compertrix Compertrix Compertrix 48.94179 4.34631 P PPL FR A4 51 511 51160 1051 108 Europe/Paris 2012-01-18
-3024074 Communay Communay Communay 45.60671 4.83988 P PPL FR B9 69 691 69272 4110 227 Europe/Paris 2012-01-18
-3024086 Commercy Commercy Commercy,Komersi,Комерси 48.76128 5.59067 P PPLA3 FR B2 55 552 55122 7138 235 Europe/Paris 2011-11-02
-3024087 Commer Commer Commer 48.23333 -0.61667 P PPL FR B5 53 533 53072 1142 134 Europe/Paris 2012-01-18
-3024088 Commequiers Commequiers Commequiers 46.76049 -1.83901 P PPL FR B5 85 853 85071 2441 21 Europe/Paris 2012-01-18
-3024090 Commentry Commentry Commentry 46.29211 2.7416 P PPL FR 98 03 031 03082 7461 379 Europe/Paris 2012-01-18
-3024094 Commelle-Vernay Commelle-Vernay Commelle,Commelle-Vernay 45.99439 4.06635 P PPL FR B9 42 422 42069 2868 352 Europe/Paris 2012-01-18
-3024102 Comines Comines Comines 50.7615 3.01063 P PPL FR B4 59 595 59152 12548 18 Europe/Paris 2012-01-18
-3024107 Combs-la-Ville Combs-la-Ville Combs,Combs-la-Ville,Komb la Vil,Комб ла Вил 48.66497 2.56957 P PPL FR A8 77 772 77122 22322 81 Europe/Paris 2012-01-18
-3024111 Combronde Combronde Combronde 45.98138 3.08768 P PPL FR 98 63 634 63116 1972 400 Europe/Paris 2012-01-18
-3024112 Combrit Combrit Combrit,Kombrid 47.88734 -4.15817 P PPL FR A2 29 294 29037 3339 33 Europe/Paris 2012-01-18
-3024126 Combrée Combree Combree,Combrée 47.70446 -1.03003 P PPL FR B5 49 494 49103 2685 55 Europe/Paris 2012-01-18
-3024131 Combrand Combrand Combrand 46.86405 -0.68869 P PPL FR B7 79 791 79096 1171 197 Europe/Paris 2012-01-18
-3024137 Combourg Combourg Combourg,Komborn 48.41267 -1.74424 P PPL FR A2 35 354 35085 5362 60 Europe/Paris 2012-01-18
-3024142 Combloux Combloux Combloux 45.89669 6.63444 P PPL FR B9 74 742 74083 2285 1043 Europe/Paris 2012-01-18
-3024195 Pontault-Combault Pontault-Combault 48.79813 2.60676 P PPL FR A8 77 775 77373 34798 107 Europe/Paris 2011-11-02
-3024200 Combaillaux Combaillaux Combaillaux 43.67192 3.76767 P PPL FR A9 34 343 34082 1446 143 Europe/Paris 2012-01-18
-3024210 Colpo Colpo Colpo,Kolpou,Kolpoù 47.81778 -2.81002 P PPL FR A2 56 563 56042 1922 105 Europe/Paris 2012-01-18
-3024223 Colomiers Colomiers Colomiers,Kolomje,Коломје 43.61247 1.33278 P PPL FR B3 31 313 31149 31363 186 Europe/Paris 2011-11-02
-3024231 Colombiès Colombies Colombies,Colombiès 44.34414 2.33772 P PPL FR B3 12 122 12068 1025 697 Europe/Paris 2012-01-18
-3024236 Colombiers Colombiers Colombiers 46.77158 0.42388 P PPL FR B7 86 861 86081 1376 98 Europe/Paris 2012-01-18
-3024239 Colombiers Colombiers Colombiers 43.31424 3.13947 P PPL FR A9 34 341 34081 2348 45 Europe/Paris 2012-01-18
-3024243 Colombier-Fontaine Colombier-Fontaine Colombier-Fontaine 47.45224 6.6901 P PPL FR A6 25 252 25159 1538 304 Europe/Paris 2012-01-18
-3024264 Colombey-les-Belles Colombey-les-Belles Colombey,Colombey-les-Belles 48.52766 5.89693 P PPL FR B2 54 544 54135 1414 325 Europe/Paris 2012-01-18
-3024266 Colombes Colombes Colombes,Kolomb,Коломб 48.91882 2.25404 P PPL FR A8 92 922 92025 82300 40 Europe/Paris 2012-01-18
-3024267 Colombelles Colombelles Colombelles 49.2049 -0.29571 P PPL FR 99 14 142 14167 6493 42 Europe/Paris 2012-01-18
-3024273 Colombe Colombe Colombe,Colombes 45.39912 5.45109 P PPL FR B9 38 382 38118 1544 486 Europe/Paris 2012-01-18
-3024276 Colomars Colomars Colomars 43.75406 7.2198 P PPL FR B8 06 062 06046 3185 319 Europe/Paris 2012-01-18
-3024297 Colmar Colmar Colmar,Kol'mar,Kolmar,korumaru,Колмар,Кольмар,コルマール 48.08333 7.36667 P PPLA2 FR C1 68 682 68066 65405 186 Europe/Paris 2011-11-02
-3024302 Collonges-sous-Salève Collonges-sous-Saleve Collonge-sous-Saleve,Collonge-sous-Salève,Collonges 46.1416 6.15372 P PPL FR B9 74 743 74082 3493 555 Europe/Paris 2008-04-04
-3024306 Collonges Collonges Collonges 46.13894 5.90334 P PPL FR B9 01 013 01109 1124 502 Europe/Paris 2012-01-18
-3024313 Collobrières Collobrieres Collobrieres,Collobrières 43.23735 6.30875 P PPL FR B8 83 832 83043 1651 158 Europe/Paris 2012-01-18
-3024314 Collioure Collioure Collioure,Cotlliure,Kolliur,Коллиур 42.52462 3.08235 P PPL FR A9 66 661 66053 3171 11 Europe/Paris 2011-02-27
-3024322 Colleville-Montgomery Colleville-Montgomery Colleville,Colleville-Montgomery,Colleville-sur-Orne,Kolevil Mongomeri,Колевил Монгомери 49.27528 -0.30052 P PPL FR 99 14 142 14166 2285 13 Europe/Paris 2012-01-18
-3024328 Collégien Collegien Collegien,Collégien 48.83571 2.67365 P PPL FR A8 77 775 77121 3261 103 Europe/Paris 2012-01-18
-3024351 Coligny Coligny Coligny,Nant-Coteau 46.38252 5.34554 P PPL FR B9 01 012 01108 1202 291 Europe/Paris 2011-01-14
-3024358 Colayrac-Saint-Cirq Colayrac-Saint-Cirq Colayrac,Colayrac-Saint-Cirq 44.22095 0.55061 P PPL FR 97 47 471 47069 2880 41 Europe/Paris 2012-01-18
-3024381 Coise-Saint-Jean-Pied-Gauthier Coise-Saint-Jean-Pied-Gauthier Coise,Coise-Saint-Jean-Pied-Gauthier 45.52578 6.14359 P PPL FR B9 73 732 73089 1018 297 Europe/Paris 2012-01-18
-3024396 Coincy Coincy Coincy 49.16036 3.42202 P PPL FR B6 02 021 02203 1198 107 Europe/Paris 2012-01-18
-3024406 Coignières Coignieres Coignieres,Coignières 48.7501 1.92082 P PPL FR A8 78 782 78168 4439 176 Europe/Paris 2012-01-18
-3024421 Cogolin Cogolin Cogolin 43.25221 6.53002 P PPL FR B8 83 831 83042 9838 33 Europe/Paris 2012-01-18
-3024423 Cogny Cogny Cogny 45.98732 4.62501 P PPL FR B9 69 692 69061 1004 348 Europe/Paris 2012-01-18
-3024426 Cognin Cognin Cognin 45.56377 5.89435 P PPL FR B9 73 732 73087 6577 289 Europe/Paris 2012-01-18
-3024438 Cognac-la-Forêt Cognac-la-Foret Cognac,Cognac-le-Froid 45.83333 1 P PPL FR B1 87 873 87046 1055 341 Europe/Paris 2007-11-21
-3024440 Cognac Cognac Cognac,Conhac,Kon'jak,Konjak,Коньяк 45.7 -0.33333 P PPLA3 FR B7 16 162 16102 20868 10 Europe/Paris 2011-11-02
-3024447 Coëx Coex Coex,Coëx 46.69808 -1.75956 P PPL FR B5 85 853 85070 2571 51 Europe/Paris 2012-01-18
-3024456 Coëtmieux Coetmieux Coetmieux,Coëtmieux,Koedmaeg 48.49117 -2.60067 P PPL FR A2 22 224 22044 1317 54 Europe/Paris 2012-01-18
-3024459 Coësmes Coesmes Coesmes,Coësmes,Koem 47.88325 -1.44074 P PPL FR A2 35 351 35082 1168 74 Europe/Paris 2012-01-18
-3024463 Codognan Codognan Codognan 43.73034 4.2212 P PPL FR A9 30 302 30083 2100 20 Europe/Paris 2012-01-18
-3024479 Cocheren Cocheren Cocheren 49.14604 6.8558 P PPL FR B2 57 573 57144 3378 202 Europe/Paris 2012-01-18
-3024525 Coarraze Coarraze Coarraze 43.16667 -0.23333 P PPL FR 97 64 643 64191 2440 271 Europe/Paris 2011-09-11
-3024532 Cluses Cluses Cluses,Kljuz,Клюз 46.06251 6.57497 P PPL FR B9 74 742 74081 19789 484 Europe/Paris 2011-11-02
-3024534 Cluny Cluny Chiny,Cluniacum,Cluny,Kljuni,klwny,Клюни,كلوني 46.43318 4.65845 P PPL FR A1 71 715 71137 4581 244 Europe/Paris 2012-01-18
-3024538 Cluis Cluis Cluis 46.54486 1.74933 P PPL FR A3 36 363 36056 1040 280 Europe/Paris 2012-01-18
-3024543 Cloyes-sur-le-Loir Cloyes-sur-le-Loir Cloyes,Cloyes-sur-le-Loir 47.99726 1.23711 P PPL FR A3 28 282 28103 2741 98 Europe/Paris 2012-01-18
-3024552 Clouange Clouange Clouange 49.2624 6.09723 P PPL FR B2 57 578 57143 3740 169 Europe/Paris 2012-01-18
-3024569 Clonas-sur-Varèze Clonas-sur-Vareze Clonas,Clonas-sur-Vareze,Clonas-sur-Varèze 45.41326 4.78996 P PPL FR B9 38 383 38114 1387 189 Europe/Paris 2012-01-18
-3024572 Clohars-Fouesnant Clohars-Fouesnant Clohars,Clohars-Fouesnant,Kloar-Fouenant 47.89657 -4.06396 P PPL FR A2 29 294 29032 1994 39 Europe/Paris 2012-01-18
-3024573 Clohars-Carnoët Clohars-Carnoet Clohars,Clohars-Carnoet,Clohars-Carnoët,Kloar-Karnoed 47.79606 -3.58502 P PPL FR A2 29 294 29031 4085 59 Europe/Paris 2012-01-18
-3024578 Clisson Clisson Clisson,Klison 47.08714 -1.28286 P PPL FR B5 44 442 44043 6480 38 Europe/Paris 2012-01-18
-3024585 Clion Clion Clion 46.94085 1.23214 P PPL FR A3 36 362 36055 1155 102 Europe/Paris 2012-01-18
-3024588 Clinchamps-sur-Orne Clinchamps-sur-Orne Clinchamps,Clinchamps-sur-Orne 49.07857 -0.40156 P PPL FR 99 14 142 14164 1025 60 Europe/Paris 2012-01-18
-3024596 Clichy-sous-Bois Clichy-sous-Bois Clichy,Clichy-sous-Bois,Klishi su Boa,Клиши су Боа 48.9102 2.55324 P PPL FR A8 93 932 93014 29062 115 Europe/Paris 2012-01-18
-3024597 Clichy Clichy Clichy,Clichy-la-Garenne,Clichy-sur-Seine,Clicy,Klishi,Клиши 48.90018 2.30952 P PPL FR A8 92 922 92024 57467 35 Europe/Paris 2012-01-18
-3024616 Cléry-Saint-André Clery-Saint-Andre Clery,Clery-Saint-Andre,Cléry,Cléry-Saint-André 47.82218 1.75091 P PPL FR A3 45 452 45098 2975 90 Europe/Paris 2012-01-18
-3024624 Clerval Clerval Clerval 47.39167 6.49925 P PPL FR A6 25 252 25156 1107 294 Europe/Paris 2012-01-18
-3024635 Clermont-Ferrand Clermont-Ferrand CFE,Clarmont,Clarmont-Ferrand,Clermont,Clermont-Ferrand,Cllarmont-Ferrand,Cllârmont-Fèrrand,Klermon Feran,Klermon-Ferran,Klermona-Ferana,Klermona-Ferāna,kurerumon=feran,Клермон Феран,Клермон-Ферран,クレルモン=フェラン 45.77966 3.08628 P PPLA FR 98 63 632 63113 138681 406 Europe/Paris 2012-01-18
-3024636 Clermont-en-Argonne Clermont-en-Argonne Clermont,Clermont-en-Argonne,Clermont-sur-Meuse 49.10711 5.07002 P PPL FR B2 55 553 55117 1621 221 Europe/Paris 2012-01-18
-3024641 Clermont-Créans Clermont-Creans Clermont 47.71831 -0.01459 P PPL FR B5 72 721 72084 1107 40 Europe/Paris 2007-07-04
-3024643 Clermont Clermont Clermont,Clermont-en-Beauvaisis 49.38333 2.4 P PPLA3 FR B6 60 602 60157 11025 62 Europe/Paris 2011-11-21
-3024651 Clérieux Clerieux Clerieux,Clérieux 45.07722 4.95937 P PPL FR B9 26 263 26096 1963 168 Europe/Paris 2012-01-18
-3024659 Clères Cleres Cleres,Clères 49.6 1.11667 P PPL FR A7 76 763 76179 1298 94 Europe/Paris 2007-11-20
-3024660 Cléré-les-Pins Clere-les-Pins Clere,Clere-les-Pins,Cléré,Cléré-les-Pins 47.4255 0.38963 P PPL FR A3 37 371 37081 1158 99 Europe/Paris 2012-01-18
-3024666 Clérac Clerac Clerac,Clérac 45.18333 -0.21667 P PPL FR B7 17 171 17110 1002 62 Europe/Paris 2012-01-18
-3024669 Cléon Cleon Cleon,Cléon 49.31235 1.0295 P PPL FR A7 76 763 76178 6164 13 Europe/Paris 2012-01-18
-3024681 Cléguérec Cleguerec Cleguerec,Cléguérec,Klegereg 48.12578 -3.07162 P PPL FR A2 56 562 56041 2790 156 Europe/Paris 2012-01-18
-3024682 Cléguer Cleguer Cleguer,Cléguer,Kleger 47.85407 -3.38219 P PPL FR A2 56 561 56040 3278 48 Europe/Paris 2012-01-18
-3024691 Cléder Cleder Cleder,Cléder,Kleder 48.663 -4.102 P PPL FR A2 29 293 29030 3837 48 Europe/Paris 2012-01-18
-3024692 Cléden-Poher Cleden-Poher Cleden-Poher,Cléden-Poher,Kledenn-Poc'her,Kledenn-Poc'hêr 48.23644 -3.66911 P PPL FR A2 29 292 29029 1115 152 Europe/Paris 2012-01-18
-3024695 Clécy Clecy Clecy,Clécy 48.91718 -0.4804 P PPL FR 99 14 142 14162 1311 67 Europe/Paris 2012-01-18
-3024701 Claye-Souilly Claye-Souilly Claye,Claye-Souilly 48.94492 2.68566 P PPL FR A8 77 775 77118 11069 52 Europe/Paris 2012-01-18
-3024705 Claville Claville Claville 49.04844 1.01954 P PPL FR A7 27 273 27161 1032 151 Europe/Paris 2012-01-18
-3024740 Clary Clary Clary 50.0779 3.39943 P PPL FR B4 59 592 59149 1128 128 Europe/Paris 2012-01-18
-3024745 Claret Claret 43.86244 3.90522 P PPL FR A9 34 343 34078 1324 169 Europe/Paris 2009-08-20
-3024746 Clarensac Clarensac Clarensac 43.82536 4.22047 P PPL FR A9 30 302 30082 3382 59 Europe/Paris 2010-12-25
-3024759 Clapiers Clapiers Clapiers 43.65833 3.88917 P PPL FR A9 34 343 34077 5237 82 Europe/Paris 2010-12-24
-3024782 Clamecy Clamecy Clamecy 47.45 3.51667 P PPLA3 FR A1 58 582 58079 4531 209 Europe/Paris 2011-11-02
-3024783 Clamart Clamart Clamart,Klamar,Le Vignoble,Кламар 48.80299 2.26692 P PPL FR A8 92 921 92023 51400 101 Europe/Paris 2012-01-18
-3024788 Claix Claix Claix 45.12254 5.67481 P PPL FR B9 38 381 38111 8127 292 Europe/Paris 2012-01-18
-3024796 Clairvaux-les-Lacs Clairvaux-les-Lacs Clairvaux,Clairvaux-les-Lacs 46.57473 5.74825 P PPL FR A6 39 392 39154 1520 536 Europe/Paris 2011-01-14
-3024801 Clairoix Clairoix Clairoix,Clairox 49.44264 2.84628 P PPL FR B6 60 603 60156 2076 37 Europe/Paris 2012-01-18
-3024816 Clairac Clairac Clairac 44.36011 0.37893 P PPL FR 97 47 472 47065 2532 55 Europe/Paris 2012-01-18
-3024817 Claira Claira Claira,Clairà,Klera,Клера 42.76036 2.95572 P PPL FR A9 66 662 66050 2866 15 Europe/Paris 2012-01-18
-3024840 Civrieux Civrieux Civrieux 45.92177 4.88548 P PPL FR B9 01 012 01105 1338 294 Europe/Paris 2012-01-18
-3024843 Civray-de-Touraine Civray-de-Touraine Civray,Civray-de-Touraine,Civray-sur-Cher 47.33253 1.04952 P PPL FR A3 37 372 37079 1589 65 Europe/Paris 2012-01-18
-3024846 Civray Civray Civray 46.1471 0.29509 P PPL FR B7 86 862 86078 3056 116 Europe/Paris 2012-01-18
-3024854 Civens Civens Civens 45.77987 4.2517 P PPL FR B9 42 421 42065 1171 383 Europe/Paris 2012-01-18
-3024865 Varennes-Vauzelles Varennes-Vauzelles Vauzelles 47.01678 3.14037 P PPL FR A1 58 583 58303 10464 220 Europe/Paris 2011-11-02
-3024886 Cissé Cisse Cisse,Cissé 46.64583 0.2287 P PPL FR B7 86 863 86076 2115 136 Europe/Paris 2012-01-18
-3024891 Ciry-le-Noble Ciry-le-Noble Ciry,Ciry-le-Noble 46.60607 4.29869 P PPL FR A1 71 713 71132 2504 280 Europe/Paris 2012-01-18
-3024906 Cires-lès-Mello Cires-les-Mello Cires,Cires-les-Mello,Cires-lès-Mello 49.27242 2.3584 P PPL FR B6 60 604 60155 3539 37 Europe/Paris 2012-01-18
-3024926 Cintré Cintre Cintre,Cintré,Kentreg 48.10504 -1.87162 P PPL FR A2 35 353 35080 1601 39 Europe/Paris 2012-01-18
-3024932 Cintegabelle Cintegabelle Cintegabelle 43.31316 1.53333 P PPL FR B3 31 311 31145 2516 221 Europe/Paris 2012-01-18
-3024934 Cinqueux Cinqueux Cinqueux 49.31739 2.52997 P PPL FR B6 60 602 60154 1624 41 Europe/Paris 2012-01-18
-3024937 Cinq-Mars-la-Pile Cinq-Mars-la-Pile Cinq-Mars,Cinq-Mars-la-Pile 47.34638 0.45873 P PPL FR A3 37 371 37077 2877 48 Europe/Paris 2012-01-18
-3024979 Ciboure Ciboure Ciboure,Ziburu 43.38286 -1.676 P PPL FR 97 64 641 64189 6814 70 Europe/Paris 2012-01-18
-3024991 Chuzelles Chuzelles Chuzelles 45.58484 4.87795 P PPL FR B9 38 383 38110 2119 236 Europe/Paris 2012-01-18
-3025006 Chouzy-sur-Cisse Chouzy-sur-Cisse Chouzy,Chouzy-sur-Cisse 47.52576 1.24661 P PPL FR A3 41 411 41055 1798 76 Europe/Paris 2012-01-18
-3025007 Chouzé-sur-Loire Chouze-sur-Loire Chouze,Chouzé 47.23673 0.12364 P PPL FR A3 37 371 37074 2191 31 Europe/Paris 2006-03-29
-3025033 Chorges Chorges Chorces,Chorges 44.5471 6.27752 P PPL FR B8 05 052 05040 2016 874 Europe/Paris 2012-01-18
-3025045 Chomérac Chomerac Chomerac,Chomérac 44.70752 4.66164 P PPL FR B9 07 072 07066 2696 198 Europe/Paris 2011-01-14
-3025053 Cholet Cholet Shole,Шоле 47.06667 -0.88333 P PPLA3 FR B5 49 492 49099 53160 117 Europe/Paris 2011-11-02
-3025055 Choisy-le-Roi Choisy-le-Roi Choisy,Choisy-le-Roi,Choisy-sur-Seine,Shoazi le Roa,Шоази ле Роа 48.76846 2.41874 P PPL FR A8 94 941 94022 35590 34 Europe/Paris 2012-01-18
-3025057 Choisy-en-Brie Choisy-en-Brie Choisy,Choisy-en-Brie 48.75867 3.21705 P PPL FR A8 77 773 77116 1273 144 Europe/Paris 2012-01-18
-3025058 Choisy-au-Bac Choisy-au-Bac Choisy 49.43777 2.87739 P PPL FR B6 60 603 60151 3839 38 Europe/Paris 2007-07-22
-3025059 Choisy Choisy Choisy 45.99305 6.05535 P PPL FR B9 74 741 74076 1509 600 Europe/Paris 2012-01-18
-3025062 Choisey Choisey Choisey 47.06389 5.45911 P PPL FR A6 39 391 39150 1032 215 Europe/Paris 2012-01-18
-3025071 Chocques Chocques Chocques,Choques 50.54084 2.57194 P PPL FR B4 62 622 62224 2981 25 Europe/Paris 2012-01-18
-3025088 Chitenay Chitenay Chitenay 47.49753 1.37139 P PPL FR A3 41 411 41052 1004 88 Europe/Paris 2012-01-18
-3025094 Chissay-en-Touraine Chissay-en-Touraine Chissay,Chissay-en-Touraine 47.33748 1.13362 P PPL FR A3 41 411 41051 1025 70 Europe/Paris 2012-01-18
-3025098 Chiry-Ourscamp Chiry-Ourscamp Chiry,Chiry-Ourscamp 49.54378 2.94721 P PPL FR B6 60 603 60150 1257 63 Europe/Paris 2012-01-18
-3025108 Chirens Chirens Chirens 45.4128 5.55707 P PPL FR B9 38 381 38105 2057 472 Europe/Paris 2012-01-18
-3025119 Chirac Chirac Chirac 44.52289 3.26652 P PPL FR A9 48 482 48049 1095 636 Europe/Paris 2012-01-18
-3025132 Chinon Chinon Chinon,Chinon-sur-Vienne,shinon cheng,xi nong,シノン城,希农 47.16667 0.25 P PPLA3 FR A3 37 371 37072 9405 36 Europe/Paris 2011-11-02
-3025136 Chindrieux Chindrieux Chindrieux 45.82132 5.85122 P PPL FR B9 73 732 73085 1190 310 Europe/Paris 2012-01-18
-3025141 Chimilin Chimilin Chimilin 45.57754 5.59819 P PPL FR B9 38 382 38104 1287 258 Europe/Paris 2012-01-18
-3025144 Chilly-Mazarin Chilly-Mazarin Chilly-Mazarin 48.71489 2.31638 P PPL FR A8 91 913 91161 18870 83 Europe/Paris 2012-01-18
-3025149 Chilly Chilly Chilly 45.99332 5.95335 P PPL FR B9 74 743 74075 1035 485 Europe/Paris 2012-01-18
-3025152 Chilleurs-aux-Bois Chilleurs-aux-Bois Chilleurs,Chilleurs-aux-Bois 48.0722 2.1354 P PPL FR A3 45 453 45095 1810 122 Europe/Paris 2012-01-18
-3025177 Chierry Chierry Chierry 49.0394 3.42976 P PPL FR B6 02 021 02187 1047 80 Europe/Paris 2012-01-18
-3025197 Chiché Chiche Chiche,Chiché 46.79643 -0.3556 P PPL FR B7 79 791 79088 1459 152 Europe/Paris 2012-01-18
-3025204 Chézy-sur-Marne Chezy-sur-Marne Chezy,Chezy-sur-Marne,Chézy,Chézy-sur-Marne 48.98881 3.36786 P PPL FR B6 02 021 02186 1361 63 Europe/Paris 2012-01-18
-3025270 Chevry-Cossigny Chevry-Cossigny Chevry,Chevry-Cossigny 48.72465 2.66106 P PPL FR A8 77 772 77114 3575 103 Europe/Paris 2012-01-18
-3025274 Chevry Chevry Chevry 46.27855 6.04008 P PPL FR B9 01 013 01103 1126 484 Europe/Paris 2012-01-18
-3025284 Chevrières Chevrieres Chevrieres,Chevrières 49.34645 2.68219 P PPL FR B6 60 603 60149 1763 39 Europe/Paris 2012-01-18
-3025294 Chevreuse Chevreuse Chevreuse 48.70662 2.03329 P PPL FR A8 78 782 78160 5687 92 Europe/Paris 2012-01-18
-3025298 Chèvremont Chevremont Chevremont,Chèvremont 47.62824 6.92164 P PPL FR A6 90 901 90026 1281 360 Europe/Paris 2012-01-18
-3025314 Chevilly-Larue Chevilly-Larue Chevilly,Chevilly-Larue 48.76476 2.3503 P PPL FR A8 94 943 94021 20125 89 Europe/Paris 2012-01-18
-3025315 Chevilly Chevilly Chevilly 48.02973 1.87402 P PPL FR A3 45 452 45093 2510 123 Europe/Paris 2012-01-18
-3025316 Chevillon-sur-Huillard Chevillon-sur-Huillard Chevillon,Chevillon-sur-Huillard 47.96197 2.62601 P PPL FR A3 45 451 45092 1201 99 Europe/Paris 2012-01-18
-3025318 Chevillon Chevillon Chevillon 48.52869 5.13086 P PPL FR A4 52 523 52123 1429 186 Europe/Paris 2012-01-18
-3025324 Chevigny-Saint-Sauveur Chevigny-Saint-Sauveur Alpha,Chevigny,Chevigny-Saint-Sauveur,Chevigny-Sauveur 47.29908 5.13367 P PPL FR A1 21 212 21171 10620 211 Europe/Paris 2012-01-18
-3025344 Cheverny Cheverny Cheverny 47.5008 1.45951 P PPL FR A3 41 411 41050 1019 95 Europe/Paris 2012-01-18
-3025356 Chevannes Chevannes Chevannes 48.53259 2.44388 P PPL FR A8 91 912 91159 1477 83 Europe/Paris 2012-01-18
-3025365 Chevanceaux Chevanceaux Chevanceaux 45.3 -0.23333 P PPL FR B7 17 171 17104 1284 103 Europe/Paris 2012-01-18
-3025375 Cheval-Blanc Cheval-Blanc Blanc-Montagne,Cheval-Blanc 43.80189 5.06229 P PPL FR B8 84 841 84038 3775 83 Europe/Paris 2011-01-18
-3025379 Chevaigné Chevaigne Chevaigne,Chevaigné,Kavaneg 48.21153 -1.62934 P PPL FR A2 35 353 35079 1756 69 Europe/Paris 2012-01-18
-3025383 Cheux Cheux Cheux 49.16611 -0.52544 P PPL FR 99 14 142 14157 1141 82 Europe/Paris 2012-01-18
-3025397 Chessy Chessy Chessy 48.88333 2.76667 P PPL FR A8 77 775 77111 2582 101 Europe/Paris 2012-01-18
-3025398 Chessy Chessy Chessy 45.88707 4.62366 P PPL FR B9 69 692 69056 1510 222 Europe/Paris 2012-01-18
-3025418 Cherveux Cherveux Cherveux 46.41543 -0.35706 P PPL FR B7 79 792 79086 1316 92 Europe/Paris 2012-01-18
-3025428 Cherrueix Cherrueix Cherrueix,Kerruer 48.60629 -1.70404 P PPL FR A2 35 354 35078 1043 7 Europe/Paris 2012-01-18
-3025430 Cherré Cherre 48.1729 0.65781 P PPL FR B5 72 722 72080 1448 96 Europe/Paris 2007-11-03
-3025432 Chéroy Cheroy Cheroy,Chéroy 48.20076 3.00011 P PPL FR A1 89 893 89100 1462 151 Europe/Paris 2012-01-18
-3025439 Chermignac Chermignac Chermignac 45.68578 -0.67349 P PPL FR B7 17 174 17102 1092 55 Europe/Paris 2012-01-18
-3025444 Cherisy Cherisy Cherizy 48.75 1.43333 P PPL FR A3 28 283 28098 1845 129 Europe/Paris 2007-11-20
-3025458 Chéreng Chereng Chereng,Chéreng 50.61058 3.20666 P PPL FR B4 59 595 59146 2988 35 Europe/Paris 2012-01-18
-3025466 Cherbourg-Octeville Cherbourg-Octeville Cherbourg 49.63984 -1.61636 P PPLA3 FR 99 50 502 50129 26655 6 Europe/Paris 2011-12-08
-3025472 Chéraute Cheraute Cheraute,Chéraute,Sohueta,Sohüta 43.23096 -0.86832 P PPL FR 97 64 642 64188 1325 139 Europe/Paris 2012-01-18
-3025478 Chérac Cherac Cherac,Chérac 45.70456 -0.43859 P PPL FR B7 17 174 17100 1094 60 Europe/Paris 2011-03-16
-3025482 Chépy Chepy Chepy,Chépy 50.06361 1.64694 P PPL FR B6 80 801 80190 1319 95 Europe/Paris 2012-01-18
-3025484 Cheptainville Cheptainville Cheptainville 48.5509 2.27665 P PPL FR A8 91 913 91156 1543 79 Europe/Paris 2012-01-18
-3025491 Cheny Cheny Cheny 47.95166 3.5334 P PPL FR A1 89 891 89099 2644 92 Europe/Paris 2012-01-18
-3025493 Chens-sur-Léman Chens-sur-Leman Chens,Chens-sur-Leman,Chens-sur-Léman 46.32906 6.26267 P PPL FR B9 74 744 74070 1408 382 Europe/Paris 2012-01-18
-3025496 Chenôve Chenove Chenove,Chenôve 47.29323 5.00457 P PPL FR A1 21 212 21166 15791 266 Europe/Paris 2012-01-18
-3025504 Chenoise Chenoise Chenoise 48.61462 3.19459 P PPL FR A8 77 773 77109 1240 146 Europe/Paris 2012-01-18
-3025509 Chennevières-sur-Marne Chennevieres-sur-Marne Chennevieres,Chennevieres-sur-Marne,Chennevières,Chennevières-sur-Marne 48.79702 2.54046 P PPL FR A8 94 942 94019 18314 104 Europe/Paris 2012-01-18
-3025519 Cheniménil Chenimenil Chenimenil,Cheniménil 48.1388 6.60346 P PPL FR B2 88 881 88101 1257 374 Europe/Paris 2012-01-18
-3025551 Chênehutte-Trèves-Cunault Chenehutte-Treves-Cunault Chenehutte-les-Tuffeaux,Chênehutte-les-Tuffeaux 47.31084 -0.16042 P PPL FR B5 49 493 49094 1164 73 Europe/Paris 2010-09-01
-3025602 Chemillé Chemille Chemille,Chemillé 47.21476 -0.72488 P PPL FR B5 49 492 49092 6683 86 Europe/Paris 2012-01-18
-3025609 Chéméré Chemere Chemere,Chéméré,Keverieg 47.11667 -1.91667 P PPL FR B5 44 443 44040 1707 12 Europe/Paris 2007-11-20
-3025612 Chemazé Chemaze Chemaze,Chemazé 47.7869 -0.77523 P PPL FR B5 53 531 53066 1072 88 Europe/Paris 2012-01-18
-3025614 Chemaudin Chemaudin Chemaudin 47.22392 5.89419 P PPL FR A6 25 251 25147 1270 277 Europe/Paris 2012-01-18
-3025622 Chelles Chelles Chelles 48.88109 2.59295 P PPL FR A8 77 775 77108 46947 44 Europe/Paris 2011-11-02
-3025635 Cheillé Cheille Cheille,Cheillé 47.26114 0.40553 P PPL FR A3 37 371 37067 1350 57 Europe/Paris 2012-01-18
-3025646 Chef-Boutonne Chef-Boutonne Chef-Boutonne 46.10859 -0.07083 P PPL FR B7 79 792 79083 2434 95 Europe/Paris 2012-01-18
-3025650 Chécy Checy Checy,Checy-lez-Orleans,Chécy,Chécy-lez-Orléans 47.89402 2.02304 P PPL FR A3 45 452 45089 7655 105 Europe/Paris 2012-01-18
-3025657 Chazey-sur-Ain Chazey-sur-Ain Chazey 45.893 5.25352 P PPL FR B9 01 011 01099 1305 238 Europe/Paris 2009-09-03
-3025668 Chazelles-sur-Lyon Chazelles-sur-Lyon Chazelles,Chazelles-la-Victoire,Chazelles-sur-Lyon 45.63806 4.3913 P PPL FR B9 42 421 42059 4911 623 Europe/Paris 2012-01-18
-3025673 Chazelles Chazelles Chazelles 45.64714 0.36748 P PPL FR B7 16 161 16093 1440 96 Europe/Paris 2012-01-18
-3025715 Chaville Chaville Chaville 48.80565 2.18864 P PPL FR A8 92 923 92022 18735 102 Europe/Paris 2012-01-18
-3025719 Chavigny Chavigny Chavigny 48.62887 6.12599 P PPL FR B2 54 543 54123 1673 285 Europe/Paris 2012-01-18
-3025732 Chavenay Chavenay Chavenay 48.85437 1.99163 P PPL FR A8 78 783 78152 1850 116 Europe/Paris 2012-01-18
-3025734 Chavelot Chavelot Chavelot 48.23458 6.43809 P PPL FR B2 88 881 88099 1514 317 Europe/Paris 2012-01-18
-3025741 Chavanoz Chavanoz Chavanoz 45.77643 5.17032 P PPL FR B9 38 383 38097 4265 231 Europe/Paris 2012-01-18
-3025745 Chavanod Chavanod Chavanod 45.88964 6.04235 P PPL FR B9 74 741 74067 2226 500 Europe/Paris 2012-01-18
-3025760 Chavanay Chavanay Chavanay 45.41437 4.73157 P PPL FR B9 42 423 42056 2330 161 Europe/Paris 2012-01-18
-3025772 Chavagnes-en-Paillers Chavagnes-en-Paillers Chavagnes,Chavagnes-en-Paillers 46.89167 -1.25214 P PPL FR B5 85 852 85065 3168 65 Europe/Paris 2012-01-18
-3025774 Chavagne Chavagne Chavagne,Kavan 48.05438 -1.78571 P PPL FR A2 35 353 35076 3378 32 Europe/Paris 2012-01-18
-3025809 Chauvigny Chauvigny Chauvigny 46.56747 0.64928 P PPL FR B7 86 862 86070 7526 70 Europe/Paris 2012-01-18
-3025826 Chauvé Chauve Chauve,Chauvé,Haxo-les-Landes,Kalveg 47.15174 -1.98489 P PPL FR B5 44 443 44038 1822 31 Europe/Paris 2012-01-18
-3025842 Chaussin Chaussin Chaussin 46.96612 5.4079 P PPL FR A6 39 391 39128 1632 189 Europe/Paris 2012-01-18
-3025853 Chauriat Chauriat Chauriat 45.75152 3.27946 P PPL FR 98 63 632 63106 1458 395 Europe/Paris 2012-01-18
-3025854 Chauray Chauray Chauray 46.35997 -0.37859 P PPL FR B7 79 792 79081 4858 85 Europe/Paris 2012-01-18
-3025860 Chauny Chauny Chauny 49.61514 3.21857 P PPL FR B6 02 022 02173 13176 49 Europe/Paris 2012-01-18
-3025862 Chaunay Chaunay Chaunay 46.2076 0.16084 P PPL FR B7 86 862 86068 1257 127 Europe/Paris 2012-01-18
-3025875 Chaumont-sur-Tharonne Chaumont-sur-Tharonne Chaumont,Chaumont-sur-Tharonne 47.61038 1.90514 P PPL FR A3 41 413 41046 1108 133 Europe/Paris 2012-01-18
-3025876 Chaumont-sur-Loire Chaumont-sur-Loire Chaumont,Chaumont-sur-Loire 47.48108 1.18929 P PPL FR A3 41 411 41045 1063 84 Europe/Paris 2012-01-18
-3025881 Chaumont-en-Vexin Chaumont-en-Vexin Chaumont,Chaumont-en-Vexin 49.26595 1.88597 P PPL FR B6 60 601 60143 3089 67 Europe/Paris 2012-01-18
-3025882 Chaumontel Chaumontel Chaumontel 49.1247 2.43237 P PPL FR A8 95 952 95149 3278 51 Europe/Paris 2012-01-18
-3025892 Chaumont Chaumont Chaumant,Chaumont,Chaumont Enbassigby,Chaumont-en-Bassigny,Shomon,shomon,Шомон,ショーモン 48.11667 5.13333 P PPLA2 FR A4 52 521 52121 28981 261 Europe/Paris 2011-11-04
-3025910 Chaumes-en-Brie Chaumes-en-Brie Chaumes,Chaumes-en-Brie 48.66853 2.84015 P PPL FR A8 77 772 77107 3100 101 Europe/Paris 2012-01-18
-3025942 Chaulnes Chaulnes Chaulnes 49.81699 2.80064 P PPL FR B6 80 804 80186 1957 103 Europe/Paris 2012-01-18
-3025944 Chaulgnes Chaulgnes Chaulgnes 47.12889 3.10348 P PPL FR A1 58 584 58067 1273 226 Europe/Paris 2012-01-18
-3025965 Chauffailles Chauffailles Chauffailles,Shofej,Шофеј 46.20726 4.33932 P PPL FR A1 71 713 71120 4184 405 Europe/Paris 2012-01-18
-3025972 Chaudron-en-Mauges Chaudron-en-Mauges Chaudron,Chaudron-en-Mauges 47.28809 -0.98548 P PPL FR B5 49 492 49083 1497 76 Europe/Paris 2012-01-18
-3025976 Chaudon Chaudon Chaudon 48.66276 1.4967 P PPL FR A3 28 283 28094 1461 92 Europe/Paris 2012-01-18
-3025983 Chaudes-Aigues Chaudes-Aigues Chaudes-Aigues 44.85344 3.00364 P PPL FR 98 15 153 15045 1012 760 Europe/Paris 2012-01-18
-3026002 Chauconin-Neufmontiers Chauconin-Neufmontiers 48.96667 2.85 P PPL FR A8 77 771 77335 1770 88 Europe/Paris 2007-11-20
-3026005 Chauché Chauche Chauche,Chauché 46.82963 -1.27178 P PPL FR B5 85 852 85064 2055 72 Europe/Paris 2012-01-18
-3026008 Chatuzange-le-Goubet Chatuzange-le-Goubet Chatuzange,Chatuzange-le-Goubet 45.00138 5.087 P PPL FR B9 26 263 26088 4278 219 Europe/Paris 2012-01-18
-3026013 Chatte Chatte Chatte 45.1431 5.28441 P PPL FR B9 38 381 38095 2787 285 Europe/Paris 2012-01-18
-3026019 Châtres-sur-Cher Chatres-sur-Cher Chatres,Chatres-sur-Cher,Chátres,Châtres-sur-Cher 47.26505 1.90591 P PPL FR A3 41 413 41044 1173 105 Europe/Paris 2012-01-18
-3026033 Chatou Chatou Chatou,Shatu,Шату 48.8898 2.15863 P PPL FR A8 78 783 78146 30091 36 Europe/Paris 2012-01-18
-3026039 Châtonnay Chatonnay Chatonnay,Châtonnay 45.48699 5.20368 P PPL FR B9 38 383 38094 1716 454 Europe/Paris 2012-01-18
-3026044 Châtillon-sur-Thouet Chatillon-sur-Thouet Chatillon,Chatillon-sur-Thouet,Châtillon,Châtillon-sur-Thouet 46.66176 -0.23489 P PPL FR B7 79 793 79080 2904 157 Europe/Paris 2012-01-18
-3026046 Châtillon-sur-Seine Chatillon-sur-Seine Chatillon,Chatillon-sur-Seine,Châtillon,Châtillon-sur-Seine 47.85851 4.57375 P PPL FR A1 21 213 21154 6939 220 Europe/Paris 2012-01-18
-3026047 Châtillon-sur-Seiche Chatillon-sur-Seiche Chatillon,Chatillon-sur-Seiche,Châtillon-sur-Seiche 48.03448 -1.67114 P PPL FR A2 35 353 35206 6152 23 Europe/Paris 2012-02-27
-3026051 Châtillon-sur-Marne Chatillon-sur-Marne Chatillon,Chatillon-sur-Marne,Châtillon,Châtillon-sur-Marne,Montagne-sur-Marne 49.10048 3.76023 P PPL FR A4 51 513 51136 1009 141 Europe/Paris 2012-01-18
-3026053 Châtillon-sur-Indre Chatillon-sur-Indre Chatillon,Chatillon-sur-Indre,Châtillon,Châtillon-sur-Indre,Indremont 46.98735 1.17218 P PPL FR A3 36 362 36045 2873 103 Europe/Paris 2012-01-18
-3026055 Châtillon-sur-Cluses Chatillon-sur-Cluses Chatillon,Chatillon-sur-Cluses,Châtillon-sur-Cluses 46.09108 6.58689 P PPL FR B9 74 742 74064 1105 746 Europe/Paris 2012-01-18
-3026056 Châtillon-sur-Cher Chatillon-sur-Cher Chatillon,Chatillon-sur-Cher,Châtillon,Châtillon-sur-Cher 47.27571 1.49424 P PPL FR A3 41 413 41043 1538 111 Europe/Paris 2012-01-18
-3026057 Châtillon-sur-Chalaronne Chatillon-sur-Chalaronne Chatillon,Chatillon-sur-Chalaronne,Châtillon,Châtillon-sur-Chalaronne 46.12019 4.95817 P PPL FR B9 01 012 01093 4660 227 Europe/Paris 2012-01-18
-3026065 Châtillon-le-Duc Chatillon-le-Duc Chatillon,Chatillon-le-Duc,Châtillon,Châtillon-le-Duc,Commune-du-Bellevue 47.30486 6.00792 P PPL FR A6 25 251 25133 1926 424 Europe/Paris 2012-01-18
-3026067 Châtillon-la-Palud Chatillon-la-Palud Chatillon,Chatillon-la-Palud,Châtillon-la-Palud 45.97473 5.24799 P PPL FR B9 01 012 01092 1396 312 Europe/Paris 2012-01-18
-3026070 Châtillon-en-Vendelais Chatillon-en-Vendelais Chatillon,Chatillon-en-Vendelais,Châtillon,Châtillon-en-Vendelais,Kastellan-Gwennel 48.22409 -1.17695 P PPL FR A2 35 351 35072 1709 134 Europe/Paris 2012-01-18
-3026073 Châtillon-en-Bazois Chatillon-en-Bazois Chatillon,Chatillon-en-Bazois,Chatillon-sur-Aron,Châtillon,Châtillon-en-Bazois,Châtillon-sur-Aron 47.05464 3.65893 P PPL FR A1 58 581 58065 1070 238 Europe/Paris 2012-01-18
-3026074 Châtillon-en-Michaille Chatillon-en-Michaille Chatillon,Chatillon en Michaille,Châtillon 46.1432 5.7995 P PPL FR FR B9 01 014 01091 2668 520 537 Europe/Paris 2007-11-14
-3026075 Châtillon Chatillon Chatillon-d'Azergues,Châtillon-d'Azergues 45.88333 4.61667 P PPL FR B9 69 692 69050 2021 238 Europe/Paris 2007-11-25
-3026076 Châtillon-Coligny Chatillon-Coligny Chatillon-Coligny,Châtillon-Coligny 47.82266 2.84563 P PPL FR A3 45 451 45085 1942 125 Europe/Paris 2012-01-18
-3026083 Châtillon Chatillon Chatillon,Chatillon-sous-Bagneux,Châtillon,Châtillon-sous-Bagneux,Fort Chatillon,Fort Châtillon,Montagne-l'Union 48.8024 2.29346 P PPL FR A8 92 921 92020 32383 104 Europe/Paris 2012-01-18
-3026089 Châtillon Chatillon 45.80091 5.84352 P PPL FR B9 73 732 73085 2880 255 Europe/Paris 2012-02-27
-3026094 Châtenoy-le-Royal Chatenoy-le-Royal Chatenoy,Chatenoy-le-National,Chatenoy-le-Royal,Châtenoy,Châtenoy-le-National,Châtenoy-le-Royal 46.79797 4.8119 P PPL FR A1 71 712 71118 6058 191 Europe/Paris 2012-01-18
-3026098 Châtenois-les-Forges Chatenois-les-Forges Chatenois,Chatenois-les-Forges,Châtenois,Châtenois-les-Forges 47.5598 6.84894 P PPL FR A6 90 901 90022 2798 343 Europe/Paris 2012-01-18
-3026099 Châtenois Chatenois Chatenois,Châtenois 48.30286 5.83125 P PPL FR B2 88 882 88095 1983 330 Europe/Paris 2012-01-18
-3026100 Châtenois Chatenois Chatenois,Châtenois,Kestenholz 48.27188 7.39927 P PPL FR C1 67 675 67073 3584 191 Europe/Paris 2012-01-18
-3026107 Châtenay-sur-Seine Chatenay-sur-Seine Chatenay,Chatenay-sur-Seine,Châtenay-sur-Seine 48.41839 3.09474 P PPL FR A8 77 773 77101 1042 51 Europe/Paris 2012-01-18
-3026108 Châtenay-Malabry Chatenay-Malabry Chatenay,Chatenay-Malabry,Chatenay-la-Montagne,Chatenay-les-Bagneux,Châtenay,Châtenay-Malabry,Châtenay-la-Montagne,Châtenay-lès-Bagneux,Shatne Malabri,Шатне Малабри 48.76507 2.26655 P PPL FR A8 92 921 92019 32715 116 Europe/Paris 2012-01-18
-3026130 Châtel-sur-Moselle Chatel-sur-Moselle Chatel,Chatel-sur-Moselle,Châtel,Châtel-sur-Moselle,Durbion-Moselle 48.3143 6.39403 P PPL FR B2 88 881 88094 1716 303 Europe/Paris 2012-01-18
-3026131 Châtel-Saint-Germain Chatel-Saint-Germain Chatel,Chatel-Saint-Germain,Châtel,Châtel-Saint-Germain 49.1229 6.08001 P PPL FR B2 57 574 57134 2231 201 Europe/Paris 2012-01-18
-3026141 Châtellerault Chatellerault Chatellerault,Châtellerault,Shatlero,Шатлеро 46.8 0.53333 P PPLA3 FR B7 86 861 86066 37210 57 Europe/Paris 2011-11-02
-3026145 Châtel-Guyon Chatel-Guyon Chatel Guyon,Chatel-Guyon les Bains,Chatelguyon,Châtelguyon 45.91667 3.06667 P PPL FR 98 63 634 63103 5681 451 Europe/Paris 2008-07-02
-3026172 Châtelaillon-Plage Chatelaillon-Plage Chatelaillon,Chatelaillon-Plage,Châtelaillon,Châtelaillon-Plage,Les Sablons 46.0719 -1.08926 P PPL FR B7 17 173 17094 6059 5 Europe/Paris 2012-01-18
-3026177 Châtel Chatel Chatel,Châtel 46.26658 6.84229 P PPL FR B9 74 744 74063 1309 1216 Europe/Zurich 2012-01-18
-3026183 Châteauvillain Chateauvillain Chateauvillain,Châteauvillain,Commune-sur-Aujon,Ville-sur-Aujon 48.03655 4.91823 P PPL FR A4 52 521 52114 1689 236 Europe/Paris 2012-01-18
-3026194 Château-Thierry Chateau-Thierry Chateau-Egalite,Chateau-Thierry,Château-Egalité,Château-Thierry,Egalite-sur-Marne,Egalité-sur-Marne,Faubourg-du-Puits-d'Amour,Puits-d'Amour 49.05 3.4 P PPLA3 FR B6 02 021 02168 15938 91 Europe/Paris 2011-11-02
-3026200 Château-Salins Chateau-Salins Chateau-Salins,Saline-Libre,Salzburgen 48.81885 6.51455 P PPLA3 FR B2 57 572 57132 2874 205 Europe/Paris 2011-02-14
-3026204 Châteauroux Chateauroux Chateauroux,Châteauroux,Indrelibre,Indreville,shatoru,シャトールー 46.81667 1.7 P PPLA2 FR A3 36 362 36044 53301 155 Europe/Paris 2011-11-02
-3026208 Château-Renault Chateau-Renault Chateau-Renault,Château-Renault,Mont-Braine 47.59188 0.91143 P PPL FR A3 37 372 37063 5789 94 Europe/Paris 2012-01-18
-3026211 Châteaurenard Chateaurenard Chateaurenard,Chateaurenard-Provence,Châteaurenard,Châteaurenard-Provence,Mont-Renard 43.88169 4.85493 P PPL FR B8 13 132 13027 14205 42 Europe/Paris 2011-11-02
-3026216 Château-Porcien Chateau-Porcien Chateau-Porcien,Château-Porcien,Marat-Fruvaine,Marat-sur-Aisne 49.5274 4.24533 P PPL FR A4 08 082 08107 1284 67 Europe/Paris 2012-01-18
-3026217 Châteauponsac Chateauponsac Chastel,Chastél,Chateauponsac,Châteauponsac,Ponsac-la-Montagne 46.13536 1.27623 P PPL FR B1 87 871 87041 2374 293 Europe/Paris 2012-01-18
-3026221 Châteauneuf-sur-Sarthe Chateauneuf-sur-Sarthe Chateauneuf,Chateauneuf-sur-Sarthe,Châteauneuf,Châteauneuf-sur-Sarthe,Mont-Sarthe 47.68145 -0.48652 P PPL FR B5 49 494 49080 2651 33 Europe/Paris 2012-01-18
-3026222 Châteauneuf-sur-Loire Chateauneuf-sur-Loire Chateauneuf,Chateauneuf-sur-Loire,Châteauneuf,Châteauneuf-sur-Loire 47.86575 2.21904 P PPL FR A3 45 452 45082 7446 122 Europe/Paris 2012-01-18
-3026223 Châteauneuf-sur-Cher Chateauneuf-sur-Cher Chateauneuf,Chateauneuf-sur-Cher,Châteauneuf,Châteauneuf-sur-Cher,Montagne-sur-Cher 46.85778 2.3171 P PPL FR A3 18 182 18058 1628 139 Europe/Paris 2012-01-18
-3026224 Châteauneuf-sur-Charente Chateauneuf-sur-Charente Chateauneuf,Chateauneuf-sur-Charente,Châteauneuf,Châteauneuf-sur-Charente,Val-Charente 45.6 -0.05 P PPL FR B7 16 162 16090 3523 21 Europe/Paris 2012-01-18
-3026227 Châteauneuf-les-Martigues Chateauneuf-les-Martigues Chateauneuf,Châteauneuf 43.38333 5.16667 P PPL FR B8 13 134 13026 11496 37 Europe/Paris 2011-11-02
-3026229 Châteauneuf-le-Rouge Chateauneuf-le-Rouge Chateauneuf,Chateauneuf-le-Rouge,Châteauneuf,Châteauneuf-le-Rouge,La Galiniere-Negrel,La Galinière-Négrel,Negrel 43.48936 5.56921 P PPL FR B8 13 131 13025 2114 230 Europe/Paris 2011-01-18
-3026230 Châteauneuf-la-Forêt Chateauneuf-la-Foret Chateauneuf,Chateauneuf-la-Foret,Châteauneuf,Châteauneuf-la-Forêt,Mont-Combade 45.71436 1.6061 P PPL FR B1 87 872 87040 1671 376 Europe/Paris 2012-01-18
-3026231 Châteauneuf-en-Thymerais Chateauneuf-en-Thymerais Chateauneuf,Chateauneuf-en Thimerais,Chateauneuf-en-Thymerais,Châteauneuf-en Thimerais,Châteauneuf-en-Thymerais,Puits-la-Montagne 48.58112 1.24085 P PPL FR A3 28 283 28089 2505 215 Europe/Paris 2012-01-18
-3026232 Châteauneuf-du-Rhône Chateauneuf-du-Rhone Bourg-le-Rhone,Bourg-le-Rhône,Chateauneuf,Chateauneuf-du-Rhone,Châteauneuf,Châteauneuf-du-Rhône 44.48779 4.71759 P PPL FR B9 26 262 26085 2262 82 Europe/Paris 2012-01-18
-3026233 Châteauneuf-du-Pape Chateauneuf-du-Pape Chateauneuf,Chateauneuf-du-Pape,Châteauneuf,Châteauneuf-du-Pape 44.05638 4.83244 P PPL FR B8 84 842 84037 2212 74 Europe/Paris 2011-11-02
-3026234 Châteauneuf-du-Faou Chateauneuf-du-Faou Chateauneuf,Chateauneuf-du-Faou,Châteauneuf,Châteauneuf-du-Faou,Mont-sur-Aulne 48.18755 -3.81789 P PPL FR A2 29 292 29027 3841 120 Europe/Paris 2012-01-18
-3026236 Châteauneuf-sur-Isère Chateauneuf-sur-Isere Chateauneuf,Chateauneuf-de-l'Isere,Châteauneuf,Châteauneuf-de-l'Isère 45.01667 4.93333 P PPL FR B9 26 263 26084 3646 128 Europe/Paris 2007-11-21
-3026241 Châteauneuf-de-Galaure Chateauneuf-de-Galaure Chateauneuf,Chateauneuf-de-Galaure,Châteauneuf,Châteauneuf-de-Galaure,Mivalon-de-Galaure 45.23096 4.9568 P PPL FR B9 26 263 26083 1941 255 Europe/Paris 2012-01-18
-3026242 Châteauneuf-de-Gadagne Chateauneuf-de-Gadagne Chateauneuf,Chateauneuf-de-Gadagne,Châteauneuf,Châteauneuf-de-Gadagne 43.92683 4.94453 P PPL FR B8 84 842 84036 3029 76 Europe/Paris 2011-01-18
-3026254 Châteauneuf Chateauneuf 45.52457 4.64044 P PPL FR B9 42 423 42053 1470 366 Europe/Paris 2007-11-21
-3026256 Châteauneuf-Grasse Chateauneuf-Grasse Chateauneuf de Grasse,Chateauneuf-le-Pre-du-Lac,Châteauneuf-le-Pre-du-Lac 43.66667 6.98333 P PPL FR B8 06 061 06038 3134 258 Europe/Paris 2007-11-21
-3026258 Châteaumeillant Chateaumeillant Chateaumeillant,Châteaumeillant,Tell-le-Grand 46.56219 2.19515 P PPL FR A3 18 182 18057 2089 241 Europe/Paris 2012-01-18
-3026262 Châteaulin Chateaulin Chateaulin,Châteaulin,Cite-sur-Aon,Cité-sur-Aôn,Kastellin,Montagne-sur-Aon,Montagne-sur-Aôn,Ville-sur-Aone,Ville-sur-Aône 48.2 -4.08333 P PPLA3 FR A2 29 292 29026 5379 36 Europe/Paris 2010-04-02
-3026266 Château-la-Vallière Chateau-la-Valliere Chateau-la-Valliere,Château-la-Vallière,Val-Joyeux 47.54665 0.32458 P PPL FR A3 37 372 37062 1615 97 Europe/Paris 2012-01-18
-3026268 Château-Landon Chateau-Landon Chateau-Landon,Château-Landon 48.14721 2.69754 P PPL FR A8 77 774 77099 3764 100 Europe/Paris 2012-01-18
-3026271 Château-Guibert Chateau-Guibert Chateau-Guibert,Château-Guibert,Fond-Guibert 46.5811 -1.23656 P PPL FR B5 85 852 85061 1186 43 Europe/Paris 2012-01-18
-3026273 Château-Gontier Chateau-Gontier Mont-Hardi 47.83333 -0.7 P PPLA3 FR B5 53 531 53062 12292 36 Europe/Paris 2011-11-02
-3026275 Châteaugiron Chateaugiron Chateaugiron,Châteaugiron,Kastell-Geron,Mont-Giron 48.04629 -1.50438 P PPL FR A2 35 353 35069 6274 54 Europe/Paris 2012-01-18
-3026276 Châteaugay Chateaugay Bel-Air,Chateaugay,Châteaugay 45.85134 3.08972 P PPL FR 98 63 634 63099 3138 459 Europe/Paris 2012-01-18
-3026280 Château-Gaillard Chateau-Gaillard Chateau,Chateau-Gaillard,Château-Gaillard 45.97359 5.30673 P PPL FR B9 01 011 01089 1658 239 Europe/Paris 2012-01-18
-3026281 Châteaufort Chateaufort Chateaufort,Châteaufort 48.73584 2.09054 P PPL FR A8 78 784 78143 1543 153 Europe/Paris 2012-01-18
-3026285 Châteaudun Chateaudun Chateaudun,Châteaudun,Dun-sur-Loir,syatodeong,샤토덩 48.08333 1.33333 P PPLA3 FR A3 28 282 28088 16006 109 Europe/Paris 2011-11-02
-3026286 Château-du-Loir Chateau-du-Loir Chateau-du-Loir,Château-du-Loir,Mont-du-Loir,Mont-sur-Loir,Vau-du-Loir 47.69492 0.41851 P PPL FR B5 72 721 72071 5567 59 Europe/Paris 2012-01-18
-3026291 Château-d'Olonne Chateau-d'Olonne Beau-Sejour,Beau-Séjour,Chateau-d'Olonne,Château-d'Olonne 46.50382 -1.74096 P PPL FR B5 85 853 85060 13420 25 Europe/Paris 2012-01-18
-3026298 Château-Chinon(Ville) Chateau-Chinon(Ville) Chateau-Chinon,Chateau-Chinon-Ville,Chinon-la-Montagne,Château-Chinon,Château-Chinon-Ville 47.06667 3.93333 P PPLA3 FR A1 58 581 58062 2673 556 Europe/Paris 2011-11-02
-3026303 Châteaubriant Chateaubriant Chateaubriant,Châteaubriant,Kastell-Briant,Montagne-sur-Chere,Montagne-sur-Chère 47.71667 -1.38333 P PPLA3 FR B5 44 441 44036 13024 58 Europe/Paris 2011-11-02
-3026306 Châteaubourg Chateaubourg Chateaubourg,Châteaubourg,Kastell-Bourc'h 48.11119 -1.40019 P PPL FR A2 35 351 35068 5362 50 Europe/Paris 2012-01-18
-3026310 Châteaubernard Chateaubernard Chateaubernard,Châteaubernard 45.66667 -0.33333 P PPL FR B7 16 162 16089 3890 19 Europe/Paris 2012-01-18
-3026352 Chassors Chassors Chassors 45.7 -0.21667 P PPL FR B7 16 162 16088 1096 43 Europe/Paris 2012-01-18
-3026374 Chassieu Chassieu 45.74584 4.97088 P PPL FR B9 69 691 69271 9412 236 Europe/Paris 2011-11-02
-3026384 Chasse-sur-Rhône Chasse-sur-Rhone Chasse,Chasse sobre Rodano,Chasse-sur-Rhone,Chasse-sur-Rhône 45.58339 4.79823 P PPL FR B9 38 383 38087 5229 178 Europe/Paris 2012-01-18
-3026391 Chasseneuil-du-Poitou Chasseneuil-du-Poitou Chasseneuil,Chasseneuil-du-Poitou 46.65112 0.3733 P PPL FR B7 86 863 86062 4306 77 Europe/Paris 2012-01-18
-3026394 Chasseneuil-sur-Bonnieure Chasseneuil-sur-Bonnieure 45.81667 0.45 P PPL FR B7 16 163 16085 3156 115 Europe/Paris 2007-11-21
-3026400 Chasselay Chasselay Chasselay 45.87524 4.7734 P PPL FR B9 69 691 69049 2746 233 Europe/Paris 2012-01-18
-3026419 Chassagny Chassagny Chassagny 45.6067 4.73214 P PPL FR B9 69 691 69048 1122 317 Europe/Paris 2012-01-18
-3026438 Chasné-sur-Illet Chasne-sur-Illet Chasne,Chasne-sur-Illet,Chasné,Chasné-sur-Illet,Kadeneg 48.24247 -1.56138 P PPL FR A2 35 353 35067 1236 57 Europe/Paris 2012-01-18
-3026451 Charvieu-Chavagneux Charvieu-Chavagneux 45.75 5.15 P PPL FR B9 38 383 38085 8506 226 Europe/Paris 2007-11-21
-3026464 Chartrettes Chartrettes Chartrettes 48.48808 2.70083 P PPL FR A8 77 772 77096 2647 80 Europe/Paris 2012-01-18
-3026465 Chartres-de-Bretagne Chartres-de-Bretagne Chartres,Chartres-de-Bretagne,Karnod 48.03924 -1.70533 P PPL FR A2 35 353 35066 7074 32 Europe/Paris 2012-01-18
-3026467 Chartres Chartres Autricum,Chartres,Chartrez,Shartr,sha te er,sharutoru,Шартр,שארטר,シャルトル,沙特尔 48.44685 1.48925 P PPLA2 FR A3 28 281 28085 43838 158 Europe/Paris 2011-11-02
-3026474 Chars Chars Chars 49.16032 1.93669 P PPL FR A8 95 953 95142 1716 64 Europe/Paris 2012-01-18
-3026478 Charroux Charroux Charroux 46.1441 0.40354 P PPL FR B7 86 862 86061 1413 140 Europe/Paris 2012-01-18
-3026480 Charron Charron Charron 46.29433 -1.10572 P PPL FR B7 17 173 17091 1756 6 Europe/Paris 2012-01-18
-3026500 Charquemont Charquemont Charquemont 47.21417 6.8198 P PPL FR A6 25 252 25127 2310 870 Europe/Paris 2012-01-18
-3026508 Chârost Charost Charost,Chârost 46.9939 2.11639 P PPL FR A3 18 181 18055 1081 126 Europe/Paris 2012-01-18
-3026515 Charolles Charolles Charolles 46.43333 4.28333 P PPLA3 FR A1 71 713 71106 3323 279 Europe/Paris 2010-04-02
-3026520 Charny Charny Charny 48.97098 2.76121 P PPL FR A8 77 771 77095 1272 105 Europe/Paris 2012-01-18
-3026521 Charny Charny Charny 47.88661 3.09583 P PPL FR A1 89 891 89086 1796 136 Europe/Paris 2012-01-18
-3026532 Charnècles Charnecles Charnecles,Charnècles 45.34467 5.52595 P PPL FR B9 38 381 38084 1476 392 Europe/Paris 2012-01-18
-3026534 Charnay-lès-Mâcon Charnay-les-Macon Charnay,Charnay-les-Macon,Charnay-lès-Mâcon 46.30751 4.78479 P PPL FR A1 71 715 71105 7019 257 Europe/Paris 2012-01-18
-3026538 Charnay Charnay Charnay 45.89112 4.66801 P PPL FR B9 69 692 69047 1018 415 Europe/Paris 2012-01-18
-3026574 Charmes-sur-Rhône Charmes-sur-Rhone Charmes,Charmes-sur-Rhone,Charmes-sur-Rhône 44.86393 4.84039 P PPL FR B9 07 072 07055 2380 107 Europe/Paris 2012-01-18
-3026587 Charmes Charmes Charmes 49.65345 3.37857 P PPL FR B6 02 022 02165 1806 55 Europe/Paris 2012-01-18
-3026588 Charmes Charmes Charmes 48.3722 6.29117 P PPL FR B2 88 881 88090 4825 282 Europe/Paris 2012-01-18
-3026603 Charly-sur-Marne Charly-sur-Marne Charly,Charly-sur-Marne 48.97749 3.28464 P PPL FR B6 02 021 02163 2754 66 Europe/Paris 2012-01-18
-3026606 Charly Charly Charly 45.65255 4.7961 P PPL FR B9 69 691 69046 4038 224 Europe/Paris 2012-01-18
-3026610 Charlieu Charlieu Charlieu 46.16014 4.17406 P PPL FR B9 42 422 42052 3758 275 Europe/Paris 2012-01-18
-3026613 Charleville-Mézières Charleville-Mezieres Charleville,Charleville-Mezieres,Charleville-Mézières,Libreville,Mezieres,Mézières,Sharlevil'-Mez'er,Sharlvil Mezijer,sharuruvu~iru=mejieru,Шарлвил Мезијер,Шарлевиль-Мезьер,シャルルヴィル=メジエール 49.76667 4.71667 P PPLA2 FR A4 08 081 08105 52415 147 Europe/Paris 2011-11-04
-3026615 Charleval Charleval Charleval 49.3729 1.38369 P PPL FR A7 27 271 27151 1969 36 Europe/Paris 2012-01-18
-3026616 Charleval Charleval Charleval,Charleval-de Provence 43.71864 5.24546 P PPL FR B8 13 131 13024 2184 151 Europe/Paris 2011-01-18
-3026630 Chargé Charge Charge,Chargé 47.4327 1.03037 P PPL FR A3 37 372 37060 1005 63 Europe/Paris 2012-01-18
-3026637 Charenton-le-Pont Charenton-le-Pont Charenton,Charenton-Republicain,Charenton-Républicain,Charenton-le-Pont,Le Republicain,Le Républicain,Sharanton le Pon,Sharonton-l-Pon,Шарантон ле Пон,Шаронтон-л-Пон 48.82209 2.41217 P PPL FR A8 94 941 94018 30910 53 Europe/Paris 2012-01-18
-3026638 Charenton-du-Cher Charenton-du-Cher Charenton,Charenton sur Cher,Charenton-du-Cher 46.73007 2.64438 P PPL FR A3 18 182 18052 1101 180 Europe/Paris 2012-01-18
-3026641 Charentilly Charentilly Charentilly 47.46981 0.60903 P PPL FR A3 37 372 37059 1039 91 Europe/Paris 2012-01-18
-3026648 Charentay Charentay Charentay 46.08906 4.67923 P PPL FR B9 69 692 69045 1122 207 Europe/Paris 2012-01-18
-3026691 Charbuy Charbuy Charbuy 47.82282 3.46617 P PPL FR A1 89 891 89083 1572 157 Europe/Paris 2012-01-18
-3026698 Charbonnières-les-Varennes Charbonnieres-les-Varennes Charbonnieres,Charbonnières 45.9 3 P PPL FR 98 63 634 63092 1341 758 Europe/Paris 2007-11-20
-3026700 Charbonnières-les-Bains Charbonnieres-les-Bains Charbonnieres,Charbonnieres-les-Bains,Charbonnières,Charbonnières-les-Bains 45.7842 4.7463 P PPL FR B9 69 691 69044 4580 278 Europe/Paris 2012-01-18
-3026720 Charavines Charavines Charavines,Charavines-les-Bains 45.43043 5.51602 P PPL FR B9 38 382 38082 1545 497 Europe/Paris 2012-01-18
-3026728 Charantonnay Charantonnay Charantonnay,Charentonnay 45.53671 5.11034 P PPL FR B9 38 383 38081 1883 370 Europe/Paris 2012-01-18
-3026741 Chaptelat Chaptelat Chaptelat 45.90962 1.26018 P PPL FR B1 87 872 87038 1506 354 Europe/Paris 2012-01-18
-3026748 Chappes Chappes Chappes 45.86831 3.22241 P PPL FR 98 63 634 63089 1398 313 Europe/Paris 2012-01-18
-3026757 Chaponost Chaponost Chaponost 45.70592 4.74441 P PPL FR B9 69 691 69043 8286 307 Europe/Paris 2012-01-18
-3026758 Chaponnay Chaponnay Chaponnay 45.63097 4.94299 P PPL FR B9 69 691 69270 3494 234 Europe/Paris 2012-01-18
-3026765 Chapet Chapet Chapet 48.96667 1.93333 P PPL FR A8 78 781 78140 1189 68 Europe/Paris 2012-01-18
-3026795 Chapdes-Beaufort Chapdes-Beaufort Chapdes,Chapdes-Beaufort 45.89225 2.8638 P PPL FR 98 63 634 63085 1008 789 Europe/Paris 2012-01-18
-3026797 Chapareillan Chapareillan Chapareillan 45.46513 5.99171 P PPL FR B9 38 381 38075 2329 284 Europe/Paris 2012-01-18
-3026804 Chaource Chaource Chaource 48.05915 4.13738 P PPL FR A4 10 103 10080 1109 147 Europe/Paris 2011-01-06
-3026816 Chanu Chanu Chanu 48.72914 -0.67603 P PPL FR 99 61 612 61093 1238 280 Europe/Paris 2012-01-18
-3026822 Chantraine Chantraine Chantraine 48.17158 6.43538 P PPL FR B2 88 881 88087 3140 384 Europe/Paris 2012-01-18
-3026823 Chantonnay Chantonnay Chantonnay,La Prairiale,La Resolue,La Résolue 46.68702 -1.05024 P PPL FR B5 85 852 85051 8375 61 Europe/Paris 2012-01-18
-3026824 Chantôme Chantome Chantome,Chantôme 46.41067 1.5559 P PPL FR A3 36 363 36070 1372 298 Europe/Paris 2012-02-27
-3026827 Chantilly Chantilly Champ-Libre,Chantilly 49.19461 2.47124 P PPL FR B6 60 604 60141 11085 53 Europe/Paris 2011-12-08
-3026842 Chantepie Chantepie Chantepie,Kantpig 48.08885 -1.61524 P PPL FR A2 35 353 35055 7560 52 Europe/Paris 2012-01-18
-3026846 Chantenay-Saint-Imbert Chantenay-Saint-Imbert Chantenay,Chantenay-Saint-Imbert 46.73333 3.18333 P PPL FR A1 58 583 58057 1190 218 Europe/Paris 2012-01-18
-3026862 Chanteloup-les-Vignes Chanteloup-les-Vignes Chanteloup,Chanteloup-les-Vignes 48.97614 2.03261 P PPL FR A8 78 783 78138 9521 76 Europe/Paris 2012-01-18
-3026867 Chanteloup-en-Brie Chanteloup-en-Brie 48.85478 2.73929 P PPL FR A8 77 775 77085 1943 120 Europe/Paris 2007-11-14
-3026870 Chanteloup Chanteloup Chanteloup,Kantlou 47.96574 -1.61517 P PPL FR A2 35 352 35054 1304 78 Europe/Paris 2012-01-18
-3026887 Chantelle Chantelle Chantelle 46.23592 3.15208 P PPL FR 98 03 032 03053 1056 330 Europe/Paris 2012-01-18
-3026890 Chanteheux Chanteheux Chanteheux 48.59938 6.5286 P PPL FR B2 54 542 54116 1664 233 Europe/Paris 2012-01-18
-3026898 Chanteau Chanteau Chanteau,Shanto,Шанто 47.96651 1.97129 P PPL FR A3 45 452 45072 1268 129 Europe/Paris 2012-01-18
-3026911 Chanos-Curson Chanos-Curson Chanos-Curson 45.06057 4.92381 P PPL FR B9 26 263 26071 1018 222 Europe/Paris 2012-01-18
-3026912 Chanonat Chanonat Chanonat 45.69299 3.09351 P PPL FR 98 63 632 63084 1487 527 Europe/Paris 2011-07-14
-3026925 Chaniers Chaniers Chaniers 45.71858 -0.55779 P PPL FR B7 17 174 17086 3488 12 Europe/Paris 2012-01-18
-3026927 Changy-les-Bois Changy-les-Bois Changy,Changy-les-Bois 47.85793 2.68543 P PPL FR A3 45 451 45332 1434 134 Europe/Paris 2012-02-27
-3026934 Changis-sur-Marne Changis-sur-Marne Changis,Changis-sur-Marne 48.95816 3.02191 P PPL FR A8 77 771 77084 1038 58 Europe/Paris 2012-01-18
-3026940 Changé Change Change,Changé 48.09918 -0.79292 P PPL FR B5 53 532 53054 5245 59 Europe/Paris 2012-01-18
-3026941 Changé Change Change,Changé 47.98499 0.28328 P PPL FR B5 72 723 72058 5546 57 Europe/Paris 2012-01-18
-3026953 Chandon Chandon Chandon 46.1496 4.21446 P PPL FR B9 42 422 42048 1413 343 Europe/Paris 2012-01-18
-3026965 Chancenay Chancenay Chancenay 48.67001 4.98716 P PPL FR A4 52 523 52104 1131 181 Europe/Paris 2012-01-18
-3026969 Chancelade Chancelade Chancelade 45.20049 0.67261 P PPL FR 97 24 243 24102 4144 83 Europe/Paris 2012-01-18
-3026971 Chanceaux-sur-Choisille Chanceaux-sur-Choisille Chanceaux,Chanceaux-sur-Choisille 47.47145 0.70539 P PPL FR A3 37 372 37054 2944 93 Europe/Paris 2012-01-18
-3026983 Chanas Chanas 45.31881 4.81849 P PPL FR B9 38 383 38072 2104 181 Europe/Paris 2008-10-10
-3026987 Chanac Chanac Chanac 44.46614 3.34326 P PPL FR A9 48 482 48039 1212 666 Europe/Paris 2012-01-18
-3026999 Champvans Champvans Champvans 47.10466 5.4376 P PPL FR A6 39 391 39101 1418 221 Europe/Paris 2012-01-18
-3027007 Champtocé-sur-Loire Champtoce-sur-Loire Champtoce,Champtoce-sur-Loire,Champtocé,Champtocé-sur-Loire 47.41238 -0.86452 P PPL FR B5 49 491 49068 1610 28 Europe/Paris 2012-01-18
-3027008 Champtoceaux Champtoceaux Champtoceaux 47.33476 -1.26131 P PPL FR B5 49 492 49069 1840 73 Europe/Paris 2012-01-18
-3027011 Champ-sur-Drac Champ-sur-Drac Champ,Champ-du Drac,Champ-sur-Drac 45.06912 5.73225 P PPL FR B9 38 381 38071 3511 318 Europe/Paris 2012-01-18
-3027013 Champs-sur-Tarentaine-Marchal Champs-sur-Tarentaine-Marchal Champs 45.4 2.56667 P PPL FR 98 15 152 15038 1061 538 Europe/Paris 2007-11-21
-3027014 Champs-sur-Marne Champs-sur-Marne Champs,Shan sir Marn,Шан сир Марн 48.85 2.6 P PPL FR A8 77 775 77083 27776 74 Europe/Paris 2007-11-21
-3027021 Champsecret Champsecret 48.60925 -0.55058 P PPL FR 99 61 611 61091 1055 213 Europe/Paris 2007-02-09
-3027030 Champs-sur-Yonne Champs-sur-Yonne 47.73333 3.6 P PPL FR A1 89 891 89077 1593 102 Europe/Paris 2007-11-21
-3027064 Champniers Champniers Champniers 45.71667 0.2 P PPL FR B7 16 161 16078 4997 73 Europe/Paris 2012-01-18
-3027081 Champlitte-la-Ville Champlitte-la-Ville Champlitte-la-Ville 47.61333 5.53191 P PPL FR A6 70 702 70122 1880 220 Europe/Paris 2012-02-27
-3027098 Champlan Champlan Champlan 48.70823 2.27975 P PPL FR A8 91 913 91136 2601 78 Europe/Paris 2012-01-18
-3027103 Champigny Champigny Champigny-sur-Yonne 48.31667 3.13333 P PPL FR A1 89 893 89074 2035 85 Europe/Paris 2009-09-07
-3027105 Champigny-sur-Marne Champigny-sur-Marne Champigny,Champigny-sur-Marne,Sampini sir Marn,Шампињи сир Марн 48.81642 2.49366 P PPL FR A8 94 942 94017 76726 42 Europe/Paris 2012-01-18
-3027126 Champigneulles Champigneulles Champigneulles 48.7342 6.16417 P PPL FR B2 54 543 54115 6947 208 Europe/Paris 2012-01-18
-3027129 Champignelles Champignelles Champignelles 47.78009 3.07457 P PPL FR A1 89 891 89073 1075 181 Europe/Paris 2012-01-18
-3027130 Champigné Champigne Champigne,Champigné 47.66332 -0.5716 P PPL FR B5 49 494 49065 1710 38 Europe/Paris 2012-01-18
-3027131 Champier Champier Champier 45.45638 5.29223 P PPL FR B9 38 383 38069 1048 511 Europe/Paris 2012-01-18
-3027134 Champhol Champhol Champhol 48.46813 1.50281 P PPL FR A3 28 281 28070 3091 152 Europe/Paris 2012-01-18
-3027147 Champforgeuil Champforgeuil Champforgeuil 46.81857 4.83357 P PPL FR A1 71 712 71081 2206 185 Europe/Paris 2012-01-18
-3027152 Champfleur Champfleur Champfleur 48.38668 0.12942 P PPL FR B5 72 722 72056 1193 147 Europe/Paris 2012-01-18
-3027162 Champenoux Champenoux Champenoux 48.74174 6.35032 P PPL FR B2 54 543 54113 1155 229 Europe/Paris 2012-01-18
-3027168 Champeix Champeix Champeix 45.5868 3.12866 P PPL FR 98 63 633 63080 1252 465 Europe/Paris 2012-01-18
-3027194 Champdieu Champdieu Champdieu 45.64478 4.04583 P PPL FR B9 42 421 42046 1513 402 Europe/Paris 2012-01-18
-3027197 Champdeniers-Saint-Denis Champdeniers-Saint-Denis 46.48333 -0.4 P PPL FR B7 79 792 79066 1542 76 Europe/Paris 2007-11-21
-3027200 Champcueil Champcueil Champcueil 48.51594 2.44674 P PPL FR A8 91 912 91135 2755 80 Europe/Paris 2012-01-18
-3027207 Champcevinel Champcevinel Champcevinel 45.2163 0.72796 P PPL FR 97 24 243 24098 2522 198 Europe/Paris 2012-01-18
-3027235 Champagnole Champagnole Champagnole 46.74452 5.91354 P PPL FR A6 39 392 39097 9239 540 Europe/Paris 2012-01-18
-3027236 Champagnier Champagnier Champagnier 45.11294 5.72654 P PPL FR B9 38 381 38068 1039 376 Europe/Paris 2012-01-18
-3027237 Champagney Champagney Champagney,Champagny 47.70504 6.68173 P PPL FR A6 70 701 70120 3526 367 Europe/Paris 2012-01-18
-3027242 Champagne-sur-Seine Champagne-sur-Seine Champagne,Champagne-sur-Seine 48.39794 2.79785 P PPL FR A8 77 774 77079 6608 52 Europe/Paris 2012-01-18
-3027243 Champagne-sur-Oise Champagne-sur-Oise Champagne,Champagne-sur-Oise 49.14052 2.24233 P PPL FR A8 95 953 95134 4124 34 Europe/Paris 2012-01-18
-3027247 Champagne-Mouton Champagne-Mouton Champagne-Mouton 45.99078 0.41051 P PPL FR B7 16 163 16076 1013 144 Europe/Paris 2012-01-18
-3027250 Champagné-les-Marais Champagne-les-Marais Champagne,Champagné 46.38081 -1.12112 P PPL FR B5 85 851 85049 1412 4 Europe/Paris 2010-04-06
-3027260 Champagné Champagne 48.02185 0.33096 P PPL FR B5 72 722 72054 3475 66 Europe/Paris 2009-02-10
-3027278 Champagnac Champagnac Champagnac,Champagnac-les-Mines 45.35 2.4 P PPL FR 98 15 152 15037 1201 614 Europe/Paris 2012-01-18
-3027301 Chamonix-Mont-Blanc Chamonix-Mont-Blanc Chamonix,Chamonix Mont Blanc,Chamonix Mont-Blanc,Chamonix-Mont-Blanc,Chamônix,Shamoni,shamoni,syamoni,xia mu ni,Шамони,シャモニー,夏慕尼,샤모니 45.92375 6.86933 P PPL FR B9 74 742 74056 10614 1060 1044 Europe/Paris 2011-11-02
-3027307 Chamigny Chamigny Chamigny 48.97242 3.15165 P PPL FR A8 77 771 77078 1326 71 Europe/Paris 2012-01-18
-3027308 Chameyrat Chameyrat Chameyrat 45.23481 1.69803 P PPL FR B1 19 192 19038 1603 366 Europe/Paris 2012-01-18
-3027335 Chambretaud Chambretaud Chambretaud 46.92166 -0.96405 P PPL FR B5 85 852 85048 1377 205 Europe/Paris 2012-01-18
-3027343 Chambray-lès-Tours Chambray-les-Tours Chambray,Chambray-les-Tours,Chambray-lès-Tours 47.33537 0.70286 P PPL FR A3 37 372 37050 10910 89 Europe/Paris 2012-01-18
-3027350 Chambourg-sur-Indre Chambourg-sur-Indre Chambourg,Chambourg-sur-Indre 47.18159 0.96863 P PPL FR A3 37 373 37049 1257 78 Europe/Paris 2012-01-18
-3027351 Chambourcy Chambourcy Chambourcy 48.90655 2.041 P PPL FR A8 78 783 78133 5372 91 Europe/Paris 2012-01-18
-3027353 Chamboulive Chamboulive Chamboulive 45.4329 1.70415 P PPL FR B1 19 192 19037 1169 433 Europe/Paris 2012-01-18
-3027367 Chambon-sur-Voueize Chambon-sur-Voueize Chambon,Chambon-sur-Voueize 46.18938 2.42568 P PPL FR B1 23 231 23045 1007 334 Europe/Paris 2012-01-18
-3027396 Chambœuf Chamboeuf 45.58333 4.31667 P PPL FR B9 42 421 42043 1384 386 Europe/Paris 2007-11-21
-3027397 Chambly Chambly Chambly 49.16667 2.25 P PPL FR B6 60 604 60139 9506 37 Europe/Paris 2012-01-18
-3027422 Chambéry Chambery Chamberi,Chambery,Chambery-le-Vieux,Chambèri,Chambéry,Chambéry-le-Vieux,Shamberi,shanberi,Шамбери,シャンベリ 45.56667 5.93333 P PPLA2 FR B9 73 732 73065 61640 281 Europe/Paris 2011-12-08
-3027426 Chamberet Chamberet Chamberet 45.58314 1.72124 P PPL FR B1 19 192 19036 1330 454 Europe/Paris 2012-01-18
-3027445 Chamarandes-Choignes Chamarandes-Choignes 48.08333 5.15 P PPL FR A4 52 521 52125 1196 339 Europe/Paris 2007-11-21
-3027446 Chamarande Chamarande Bonne-Commune,Chamarande 48.51715 2.2171 P PPL FR A8 91 911 91132 1075 98 Europe/Paris 2012-01-18
-3027447 Chamant Chamant Chamant 49.2199 2.61176 P PPL FR B6 60 604 60138 1023 74 Europe/Paris 2012-01-18
-3027453 Chamalières Chamalieres Chamalieres,Chamalières,Shamal'er,Шамальер 45.77559 3.0631 P PPL FR 98 63 632 63075 20298 412 Europe/Paris 2012-01-18
-3027456 Chamagnieu Chamagnieu Chamagnieu 45.68114 5.16392 P PPL FR B9 38 382 38067 1278 220 Europe/Paris 2012-01-18
-3027470 Châlus Chalus Chalus,Chasluc,Chasluç,Châlus,Shali,Shalju,Шали,Шалю 45.6544 0.98011 P PPL FR B1 87 872 87032 1867 385 Europe/Paris 2012-01-18
-3027480 Chalo-Saint-Mars Chalo-Saint-Mars Chalo-Saint-Marc,Chalo-la-Raison,Châlo-Saint-Marc 48.42328 2.06491 P PPL FR A8 91 911 91130 1163 94 Europe/Paris 2007-11-04
-3027482 Châlonvillars Chalonvillars Chalonvillars,Châlonvillars 47.64056 6.78407 P PPL FR A6 70 701 70117 1195 375 Europe/Paris 2012-01-18
-3027484 Chalon-sur-Saône Chalon-sur-Saone Chalon,Chalon-sur-Saone,Chalon-sur-Saône,Chalons,Chalons sur Saone,Chalons sur Saône,Come-la-Montagne,Côme-la-Montagne,La Montagne,Montagne-les-Chalon,Montagne-lès-Chalon,Port-la-Montagne,Rochefort-des-Vignes,Rochefort-la-Vigne,Shalon sir Saon,Шалон сир Саон 46.78333 4.85 P PPLA3 FR A1 71 712 71076 47251 184 Europe/Paris 2011-11-02
-3027487 Châlons-en-Champagne Chalons-en-Champagne Chalons,Chalons-en-Champagne,Chalons-sur-Marne,Châlons,Châlons-en-Champagne,Châlons-sur-Marne,Shalon-an-Shampan',Шалон-ан-Шампань 48.95393 4.36724 P PPLA FR A4 51 511 51108 51257 85 Europe/Paris 2012-01-23
-3027491 Chalonnes-sur-Loire Chalonnes-sur-Loire Chalonnes,Chalonnes-sur-Loire 47.3516 -0.7631 P PPL FR B5 49 491 49063 5950 25 Europe/Paris 2012-01-18
-3027501 Challuy Challuy Challuy,Chaluy 46.94971 3.14807 P PPL FR A1 58 583 58051 1675 199 Europe/Paris 2012-01-18
-3027505 Challex Challex Challeux,Challex,Challez 46.18458 5.97639 P PPL FR B9 01 013 01078 1158 508 Europe/Paris 2011-01-14
-3027507 Challes-les-Eaux Challes-les-Eaux Challes,Challes-les-Eaux 45.55195 5.98171 P PPL FR B9 73 732 73064 4436 300 Europe/Paris 2012-01-18
-3027508 Challes Challes Challes 47.93033 0.41511 P PPL FR B5 72 723 72053 1149 94 Europe/Paris 2012-01-18
-3027513 Challans Challans Challans 46.84363 -1.8749 P PPL FR B5 85 853 85047 18947 11 Europe/Paris 2012-01-18
-3027519 Chalindrey Chalindrey Chalindrey 47.80308 5.42797 P PPL FR A4 52 522 52093 2654 344 Europe/Paris 2012-01-18
-3027521 Chaligny Chaligny Chaligny 48.62406 6.08333 P PPL FR B2 54 543 54111 3002 287 Europe/Paris 2012-01-18
-3027524 Chalifert Chalifert Chalifert 48.88993 2.77339 P PPL FR A8 77 775 77075 1157 108 Europe/Paris 2012-01-18
-3027531 Châlette-sur-Loing Chalette-sur-Loing Chalette,Chalette-sur-Loing,Châlette,Châlette-sur-Loing 48.01337 2.73587 P PPL FR A3 45 451 45068 14268 85 Europe/Paris 2012-01-18
-3027551 Chaleins Chaleins Chaleins 46.03058 4.80417 P PPL FR B9 01 012 01075 1113 236 Europe/Paris 2012-01-18
-3027570 Chalampé Chalampe Chalampe,Chalampé 47.81941 7.54098 P PPL FR C1 68 684 68064 1018 213 Europe/Paris 2012-01-18
-3027572 Chalamont Chalamont Chalamont 45.99665 5.17014 P PPL FR B9 01 012 01074 1807 293 Europe/Paris 2012-01-18
-3027576 Chalais Chalais Chalais 45.27338 0.0388 P PPL FR B7 16 161 16073 1986 59 Europe/Paris 2011-03-16
-3027582 Chalabre Chalabre Chalabre 42.98248 2.00538 P PPL FR A9 11 112 11091 1251 375 Europe/Paris 2012-01-18
-3027598 Chaingy Chaingy Chaingy 47.88326 1.77058 P PPL FR A3 45 452 45067 3077 110 Europe/Paris 2012-01-18
-3027608 Chailly-en-Brie Chailly-en-Brie Chailly,Chailly-en-Brie 48.79006 3.12454 P PPL FR A8 77 771 77070 1485 141 Europe/Paris 2012-01-18
-3027609 Chailly-en-Bière Chailly-en-Biere Chailly,Chailly-en-Biere,Chailly-en-Bière 48.46701 2.60785 P PPL FR A8 77 772 77069 2334 82 Europe/Paris 2012-01-18
-3027621 Chaillevette Chaillevette Chaillevette 45.7303 -1.0581 P PPL FR B7 17 172 17079 1241 6 Europe/Paris 2012-01-18
-3027625 Chailles Chailles Chailles 47.5416 1.3122 P PPL FR A3 41 411 41032 2106 81 Europe/Paris 2012-01-18
-3027627 Chaillé-les-Marais Chaille-les-Marais Chaille,Chaille-les-Marais,Chaillé,Chaillé-les-Marais 46.39628 -1.02369 P PPL FR B5 85 851 85042 1707 16 Europe/Paris 2012-01-18
-3027629 Chailland Chailland Chailland 48.22516 -0.87387 P PPL FR B5 53 532 53048 1176 94 Europe/Paris 2012-01-18
-3027632 Chaillac Chaillac Chaillac 46.43382 1.29889 P PPL FR A3 36 361 36035 1172 186 Europe/Paris 2012-01-18
-3027642 Chagny Chagny Chagny 46.90953 4.7519 P PPL FR A1 71 712 71073 5684 210 Europe/Paris 2012-01-18
-3027653 Chadrac Chadrac Chadrac 45.06181 3.90261 P PPL FR 98 43 432 43046 3220 643 Europe/Paris 2010-11-19
-3027670 Chacé Chace 47.21435 -0.07179 P PPL FR B5 49 493 49060 1301 37 Europe/Paris 2007-08-08
-3027673 Chabris Chabris Chabris 47.25343 1.65181 P PPL FR A3 36 364 36034 2668 86 Europe/Paris 2012-01-18
-3027687 Chabreloche Chabreloche Chabreloche 45.87968 3.69519 P PPL FR 98 63 635 63072 1312 625 Europe/Paris 2012-01-18
-3027696 Châbons Chabons Chabons,Châbons 45.44093 5.4275 P PPL FR B9 38 382 38065 1609 517 Europe/Paris 2012-01-18
-3027699 Chablis Chablis Chablis,shaburi,シャブリ 47.81386 3.79835 P PPL FR A1 89 891 89068 2758 140 Europe/Paris 2012-01-18
-3027705 Chabeuil Chabeuil Chabeuil 44.89963 5.01884 P PPL FR B9 26 263 26064 6302 214 Europe/Paris 2012-01-18
-3027723 Chabanais Chabanais Chabanais 45.87339 0.71763 P PPL FR B7 16 163 16070 1889 155 Europe/Paris 2012-01-18
-3027726 Cézy Cezy Cezy,Cézy 47.99266 3.34067 P PPL FR A1 89 891 89067 1089 79 Europe/Paris 2012-01-18
-3027737 Cézac Cezac 45.09019 -0.41963 P PPL FR 97 33 331 33123 1850 35 Europe/Paris 2007-05-27
-3027740 Ceyzériat Ceyzeriat Ceyzeriat,Ceyzériat 46.1801 5.31972 P PPL FR B9 01 012 01072 2639 302 Europe/Paris 2012-01-18
-3027745 Ceyreste Ceyreste Ceyreste 43.2133 5.63111 P PPL FR B8 13 133 13023 3798 75 Europe/Paris 2012-01-18
-3027746 Ceyrat Ceyrat Ceyrat 45.73176 3.06335 P PPL FR 98 63 632 63070 5880 569 Europe/Paris 2012-01-18
-3027758 Ceton Ceton Ceton 48.22632 0.74968 P PPL FR 99 61 613 61079 1955 120 Europe/Paris 2012-01-18
-3027763 Cestas Cestas Cestas,Sesta,Сеста 44.74345 -0.67905 P PPL FR 97 33 332 33122 18036 54 Europe/Paris 2012-01-18
-3027765 Cessy Cessy Cessy 46.31662 6.06915 P PPL FR B9 01 013 01071 2513 534 Europe/Paris 2012-01-18
-3027767 Cesson-Sévigné Cesson-Sevigne Cesson-Sevigne,Cesson-Sévigné,Saozon-Sevigneg 48.1212 -1.603 P PPL FR A2 35 353 35051 16222 37 Europe/Paris 2011-11-02
-3027768 Cesson Cesson Cesson 48.56204 2.60816 P PPL FR A8 77 772 77067 7557 82 Europe/Paris 2012-01-18
-3027770 Cessieu Cessieu Cessieu 45.56576 5.37704 P PPL FR B9 38 382 38064 2292 306 Europe/Paris 2012-01-18
-3027783 Cessenon-sur-Orb Cessenon-sur-Orb 43.45011 3.05154 P PPL FR A9 34 341 34074 1966 61 Europe/Paris 2007-11-21
-3027802 Cerzat Cerzat 45.16149 3.47966 P PPLA4 FR 98 43 431 43044 211 599 Europe/Paris 2011-07-31
-3027804 Cervione Cervione Cervione,Cervioni 42.33096 9.49112 P PPL FR A5 2B 2B3 2B087 1589 323 Europe/Paris 2012-01-18
-3027816 Certines Certines Certines 46.13324 5.26496 P PPL FR B9 01 012 01069 1413 247 Europe/Paris 2012-01-18
-3027824 Cers Cers Cers 43.32352 3.3045 P PPL FR A9 34 341 34073 2037 12 Europe/Paris 2012-01-18
-3027830 Cérons Cerons Cerons,Cérons 44.63572 -0.33351 P PPL FR 97 33 333 33120 1461 10 Europe/Paris 2012-01-18
-3027836 Cerny Cerny Cerny 48.47796 2.32814 P PPL FR A8 91 911 91129 3365 69 Europe/Paris 2012-01-18
-3027850 Cernay-lès-Reims Cernay-les-Reims Cernay,Cernay-les-Reims,Cernay-lez-Reims,Cernay-lès-Reims 49.26375 4.10216 P PPL FR A4 51 513 51105 1233 128 Europe/Paris 2012-01-18
-3027852 Cernay-la-Ville Cernay-la-Ville Cernay,Cernay-la-Ville 48.67324 1.97422 P PPL FR A8 78 782 78128 1841 167 Europe/Paris 2012-01-18
-3027857 Cernay Cernay Cernay,Sennheim 47.8097 7.17699 P PPL FR C1 68 686 68063 11127 297 Europe/Paris 2011-11-02
-3027866 Cerizay Cerizay Cerizay 46.82154 -0.66726 P PPL FR B7 79 791 79062 4777 175 Europe/Paris 2012-01-18
-3027867 Cerisy-la-Salle Cerisy-la-Salle Cerisy,Cerisy-la-Salle 49.02622 -1.28283 P PPL FR 99 50 503 50111 1024 131 Europe/Paris 2011-01-20
-3027880 Cérilly Cerilly Cerilly,Cérilly 46.6179 2.8202 P PPL FR 98 03 031 03048 1597 333 Europe/Paris 2012-01-18
-3027883 Cergy Cergy Cergy,Serzhi,Сержи 49.03645 2.07613 P PPL FR A8 95 953 95127 57576 47 Europe/Paris 2012-01-18
-3027888 Ceret Ceret Ceret,Céret 42.48533 2.74804 P PPLA3 FR A9 66 661 66049 8171 181 Europe/Paris 2011-11-02
-3027889 Céreste Cereste Cereste,Céreste 43.85567 5.58452 P PPL FR B8 04 044 04045 1213 418 Europe/Paris 2012-01-18
-3027893 Cerelles Cerelles Cerelles 47.50168 0.68333 P PPL FR A3 37 372 37047 1196 99 Europe/Paris 2012-01-18
-3027898 Cerdon Cerdon Cerdon 47.63571 2.36276 P PPL FR A3 45 452 45063 1068 146 Europe/Paris 2012-01-18
-3027900 Cercy-la-Tour Cercy-la-Tour Cercy,Cercy-la-Tour,Cercy-sur-Aron,Cerey-la-Tour 46.86203 3.64652 P PPL FR A1 58 581 58046 2111 200 Europe/Paris 2012-01-18
-3027902 Cercoux Cercoux Cercoux 45.13333 -0.2 P PPL FR B7 17 171 17077 1132 65 Europe/Paris 2012-01-18
-3027915 Cervera de la Marenda Cervera de la Marenda Cerbere,Cerbère,Cervera,Cervera de la Marenda 42.44094 3.16518 P PPL FR A9 66 661 66048 1628 18 Europe/Paris 2011-11-02
-3027918 Cérans-Foulletourte Cerans-Foulletourte Cerans,Cerans-Fouilletourte,Cerans-Foulletourte,Cérans,Cérans-Fouilletourte,Cérans-Foulletourte 47.82651 0.07724 P PPL FR B5 72 721 72051 2561 70 Europe/Paris 2012-01-18
-3027923 Cepoy Cepoy Cepoy 48.04795 2.73782 P PPL FR A3 45 451 45061 2236 94 Europe/Paris 2012-01-18
-3027927 Cépet Cepet Cepet,Cépet 43.74885 1.43168 P PPL FR B3 31 313 31136 1471 131 Europe/Paris 2012-01-18
-3027949 Cenon-sur-Vienne Cenon-sur-Vienne Cenon,Cenon-sur-Vienne 46.77426 0.53698 P PPL FR B7 86 861 86046 1835 54 Europe/Paris 2012-01-18
-3027950 Cenon Cenon Cenon,Senon,Сенон 44.8559 -0.51839 P PPL FR 97 33 332 33119 22393 64 Europe/Paris 2012-01-18
-3027961 Cendras Cendras 44.15 4.06667 P PPL FR A9 30 301 30077 2155 215 Europe/Paris 2006-04-30
-3027965 Cénac-et-Saint-Julien Cenac-et-Saint-Julien Cenac,Cenac-et-Saint-Julien,Cénac,Cénac-et-Saint-Julien 44.79968 1.20536 P PPL FR 97 24 244 24091 1133 89 Europe/Paris 2012-01-18
-3027967 Cénac Cenac Cenac,Cénac 44.78003 -0.45999 P PPL FR 97 33 332 33118 1854 67 Europe/Paris 2012-01-18
-3027970 Cély Cely Cely-en-Biere,Cély-en-Bière 48.45959 2.53245 P PPL FR A8 77 772 77065 1086 59 Europe/Paris 2007-11-14
-3027980 Cellieu Cellieu Cellieu 45.5225 4.54076 P PPL FR B9 42 423 42032 1513 517 Europe/Paris 2012-01-18
-3027984 Cellettes Cellettes Cellettes 47.52758 1.38102 P PPL FR A3 41 411 41031 2199 77 Europe/Paris 2011-07-11
-3027988 Celles-sur-Durolle Celles-sur-Durolle Celles,Celles-sur-Durolle 45.85787 3.63534 P PPL FR 98 63 635 63066 2011 671 Europe/Paris 2012-01-18
-3027989 Celles-sur-Belle Celles-sur-Belle Celles,Celles-sur-Belle 46.26223 -0.21274 P PPL FR B7 79 792 79061 3600 120 Europe/Paris 2012-01-18
-3027999 Celle-Lévescault Celle-Levescault Celle,Celle-Levescault,Celle-Lévescault 46.42406 0.1881 P PPL FR B7 86 863 86045 1139 123 Europe/Paris 2012-01-18
-3028028 Cébazat Cebazat Cebazat,Cébazat 45.83405 3.10048 P PPL FR 98 63 632 63063 8114 351 Europe/Paris 2012-01-18
-3028037 Ceaucé Ceauce 48.49436 -0.62526 P PPL FR 99 61 611 61075 1279 142 Europe/Paris 2007-11-20
-3028039 Cazouls-lès-Béziers Cazouls-les-Beziers Cazouls,Cazouls-les-Beziers,Cazouls-lès-Béziers 43.39218 3.101 P PPL FR A9 34 341 34069 3837 92 Europe/Paris 2012-01-18
-3028044 Cazilhac Cazilhac Cazilhac 43.92031 3.70285 P PPL FR A9 34 342 34067 1257 165 Europe/Paris 2012-01-18
-3028045 Cazilhac Cazilhac Cazilhac 43.18205 2.36085 P PPL FR A9 11 111 11088 1545 140 Europe/Paris 2012-01-18
-3028048 Cazes-Mondenard Cazes-Mondenard Cazes-Mondenard 44.22689 1.20299 P PPL FR B3 82 821 82042 1318 150 Europe/Paris 2012-01-18
-3028050 Cazères Cazeres Cazeres,Cazères 43.2071 1.08633 P PPL FR B3 31 311 31135 3769 246 Europe/Paris 2012-01-18
-3028072 Cazaubon Cazaubon Cazaubon 43.93431 -0.06814 P PPL FR B3 32 322 32096 1628 143 Europe/Paris 2012-01-18
-3028092 Caylus Caylus Caylus 44.23607 1.77168 P PPL FR B3 82 822 82038 1550 231 Europe/Paris 2012-01-18
-3028095 Cayeux-sur-Mer Cayeux-sur-Mer Cayeux 50.182 1.494 P PPL FR B6 80 801 80182 2820 6 8 Europe/Paris 2007-11-29
-3028097 Cayenne Cayenne 49.55858 1.62803 P PPL FR A7 76 58492 130 Europe/Paris 2010-04-20
-3028107 Cavignac Cavignac Cavignac 45.10083 -0.38976 P PPL FR 97 33 331 33114 1296 64 Europe/Paris 2012-01-18
-3028110 Caveirac Caveirac Caveirac 43.82437 4.26664 P PPL FR A9 30 302 30075 3502 94 Europe/Paris 2010-12-25
-3028118 Cavan Cavan Cavan,Kawan 48.67242 -3.34606 P PPL FR A2 22 223 22034 1184 97 Europe/Paris 2012-01-18
-3028129 Cavalaire-sur-Mer Cavalaire-sur-Mer Cavalaire,Cavalaire-sur-Mer 43.17403 6.52715 P PPL FR B8 83 831 83036 5670 14 Europe/Paris 2012-01-18
-3028133 Cavaillon Cavaillon Cavaillon,Clavaillan 43.91667 5.28333 P PPL FR FR B8 84 841 84102 26305 208 Europe/Paris 2012-02-27
-3028134 Cavaillon Cavaillon Cavaillon,Kavajon,Кавајон 43.83125 5.03586 P PPL FR B8 84 841 84035 26689 71 Europe/Paris 2011-11-02
-3028143 Caux Caux Caux 43.50621 3.3671 P PPL FR A9 34 341 34063 2210 97 Europe/Paris 2012-01-18
-3028144 Cauville-sur-Mer Cauville-sur-Mer L'Unite-Nationale,L'Unité-Nationale,Saint-Pierre-de-Bonsecours 49.6 0.13333 P PPL FR A7 76 762 76167 1360 91 Europe/Paris 2007-11-21
-3028146 Cauvigny Cauvigny Cauvigny 49.3018 2.24844 P PPL FR B6 60 601 60135 1251 82 Europe/Paris 2012-01-18
-3028152 Cauterets Cauterets Cauterets 42.88333 -0.11667 P PPL FR B3 65 651 65138 1080 1135 Europe/Paris 2011-11-02
-3028162 Caussade Caussade Caussade 44.1608 1.53913 P PPL FR B3 82 822 82037 6333 118 Europe/Paris 2012-01-18
-3028169 Cauro Cauro Cauro 41.9179 8.91399 P PPL FR A5 2A 2A1 2A085 1123 361 Europe/Paris 2012-01-18
-3028179 Caunes-Minervois Caunes-Minervois Caunes,Caunes-Minervois 43.32555 2.52541 P PPL FR A9 11 111 11081 1593 186 Europe/Paris 2012-01-18
-3028185 Caumont-sur-Durance Caumont-sur-Durance Caumont,Caumont-sur-Durance 43.89356 4.94745 P PPL FR B8 84 841 84034 4472 50 Europe/Paris 2011-01-18
-3028190 Caumont Caumont Caumont 49.36642 0.89591 P PPL FR A7 27 272 27133 1043 128 Europe/Paris 2012-01-18
-3028198 Caulnes Caulnes Caulnes,Kaon 48.28804 -2.15518 P PPL FR A2 22 221 22032 2320 78 Europe/Paris 2012-01-18
-3028204 Cauffry Cauffry Cauffry 49.31978 2.44581 P PPL FR B6 60 602 60134 2257 47 Europe/Paris 2012-01-18
-3028205 Caudry Caudry Caudry 50.1249 3.41186 P PPL FR B4 59 592 59139 13862 115 Europe/Paris 2012-01-18
-3028214 Caudebec-lès-Elbeuf Caudebec-les-Elbeuf Caudebec,Caudebec-les-Elbeuf,Caudebec-lès-Elbeuf 49.28082 1.02195 P PPL FR A7 76 763 76165 10104 12 Europe/Paris 2012-01-18
-3028215 Caudebec-en-Caux Caudebec-en-Caux Caudebec,Caudebec-en-Caux 49.52577 0.72561 P PPL FR A7 76 763 76164 2408 9 Europe/Paris 2008-04-19
-3028217 Caudan Caudan Caudan,Kaodan 47.80877 -3.3425 P PPL FR A2 56 561 56036 7241 47 Europe/Paris 2012-01-18
-3028219 Cauchy-à-la-Tour Cauchy-a-la-Tour Cauchy,Cauchy-a-la-Tour,Cauchy-à-la-Tour 50.50394 2.44606 P PPL FR B4 62 622 62217 2920 106 Europe/Paris 2012-01-18
-3028236 Cattenom Cattenom Cattenom 49.40755 6.24426 P PPL FR B2 57 577 57124 2417 152 Europe/Paris 2012-01-18
-3028253 Catenoy Catenoy Catenoy 49.36824 2.51054 P PPL FR B6 60 602 60130 1172 60 Europe/Paris 2012-01-18
-3028258 Castries Castries Castries 43.67972 3.98222 P PPL FR A9 34 343 34058 5790 72 Europe/Paris 2010-12-24
-3028259 Castres-Gironde Castres-Gironde Castres,Castres-Gironde 44.69464 -0.44679 P PPL FR 97 33 332 33109 1642 21 Europe/Paris 2012-01-18
-3028263 Castres Castres Castras,Castres,Castres-sur-l'Agout,Kastras,kasutoru,カストル 43.6 2.25 P PPLA3 FR B3 81 812 81065 47275 196 Europe/Paris 2011-11-02
-3028269 Castillonnès Castillonnes Castillonnes,Castillonnès 44.65215 0.59222 P PPL FR 97 47 473 47057 1526 130 Europe/Paris 2012-01-18
-3028274 Castillon-du-Gard Castillon-du-Gard Castillon,Castillon-du-Gard 43.96456 4.55337 P PPL FR A9 30 302 30073 1078 61 Europe/Paris 2012-01-18
-3028295 Castets-en-Dorthe Castets-en-Dorthe Castets,Castets-en-Dorthe 44.56146 -0.15226 P PPL FR 97 33 333 33106 1219 35 Europe/Paris 2012-01-18
-3028296 Castets Castets Cap-de-la-Cote-Verte,Cap-de-la-Côte-Verte,Castets,Castets-des-Landes,Rameau-Vert 43.88233 -1.14572 P PPL FR 97 40 401 40075 1973 52 Europe/Paris 2012-01-18
-3028322 Castelsarrasin Castelsarrasin Mont-Sarrazin 44.03333 1.1 P PPLA3 FR B3 82 821 82033 13260 73 Europe/Paris 2011-11-02
-3028337 Castelnau-le-Lez Castelnau-le-Lez Castelnau,Castelnau-le-Lez 43.63333 3.9 P PPL FR A9 34 343 34057 18011 40 Europe/Paris 2011-11-02
-3028340 Castelnau-d'Estrétefonds Castelnau-d'Estretefonds Castelnau,Castelnau-d'Estretefonds,Castelnau-d'Estrétefonds 43.78367 1.35904 P PPL FR B3 31 313 31118 3155 124 Europe/Paris 2011-01-09
-3028341 Castelnau-Montratier Castelnau-Montratier Castelnau,Castelnau-la-Montagne,Castelnau-le-Montratier 44.26667 1.36667 P PPL FR B3 46 461 46063 1871 194 Europe/Paris 2007-11-21
-3028343 Castelnau-de-Médoc Castelnau-de-Medoc Castelnau,Castelnau-de-Medoc,Castelnau-de-Médoc 45.02934 -0.79828 P PPL FR 97 33 334 33104 3457 21 Europe/Paris 2012-01-18
-3028345 Castelnau-de-Lévis Castelnau-de-Levis Castelnau,Castelnau-de-Levis,Castelnau-de-Lévis 43.93975 2.08491 P PPL FR B3 81 811 81063 1496 204 Europe/Paris 2011-01-13
-3028346 Castelnau-de-Guers Castelnau-de-Guers Castelnau,Castelnau-de-Guers 43.43398 3.43708 P PPL FR A9 34 341 34056 1013 38 Europe/Paris 2012-01-18
-3028351 Castelnaudary Castelnaudary Castel Nou d'Arri,Castell nou d'Arri,Castelnaudary,Castelnou d'Arri,Castèl Nòu d'Arri,Castèlnòu d'Arri 43.31829 1.95449 P PPL FR A9 11 111 11076 12432 187 Europe/Paris 2012-01-18
-3028359 Castelmoron-sur-Lot Castelmoron-sur-Lot Castelmoron,Castelmoron-sur-Lot 44.3981 0.49572 P PPL FR 97 47 472 47054 1757 41 Europe/Paris 2012-01-18
-3028382 Castellane Castellane Castelana,Castellane 43.85 6.51667 P PPLA3 FR B8 04 042 04039 1612 855 Europe/Paris 2010-04-02
-3028387 Casteljaloux Casteljaloux Casteljaloux 44.31762 0.08605 P PPL FR 97 47 474 47052 5056 66 Europe/Paris 2012-01-18
-3028388 Castelginest Castelginest Castelginest 43.69382 1.4344 P PPL FR B3 31 313 31116 8709 131 Europe/Paris 2011-01-09
-3028392 Castelculier Castelculier Castelculier 44.17486 0.69142 P PPL FR 97 47 471 47051 1793 58 Europe/Paris 2012-01-18
-3028409 Castanet-Tolosan Castanet-Tolosan Castanet,Castanet-Tolosan,Castanet-Tolozan 43.51591 1.49864 P PPL FR B3 31 313 31113 11561 167 Europe/Paris 2012-01-18
-3028418 Castagniers Castagniers Castagniers 43.79321 7.23286 P PPL FR B8 06 062 06034 1407 398 Europe/Paris 2012-01-18
-3028425 Cast Cast Cast,Kast 48.15712 -4.13888 P PPL FR A2 29 292 29025 1469 103 Europe/Paris 2012-01-18
-3028428 Casson Casson Casson,Kazon 47.38761 -1.55654 P PPL FR B5 44 441 44027 1432 32 Europe/Paris 2012-01-18
-3028431 Cassis Cassis Cassis 43.21241 5.5451 P PPL FR B8 13 133 13022 8361 32 Europe/Paris 2012-01-18
-3028437 Casseneuil Casseneuil Casseneuil 44.4431 0.62095 P PPL FR 97 47 473 47049 2476 52 Europe/Paris 2012-01-18
-3028440 Cassel Cassel Cassel,Kassel 50.80109 2.48527 P PPL FR B4 59 594 59135 2438 166 Europe/Paris 2012-01-18
-3028448 Cassagnes-Bégonhès Cassagnes-Begonhes Cassagnes,Cassagnes-Begonhes,Cassagnes-Begonnes,Cassagnes-Bégonhès,Cassagnes-Bégonnès 44.16894 2.53084 P PPL FR B3 12 122 12057 1032 540 Europe/Paris 2012-01-18
-3028460 Casevecchie Casevecchie 42.13333 9.35 P PPLA4 FR A5 2B 2B3 2B075 0 482 Europe/Paris 2011-07-31
-3028486 Carvin Carvin 50.49235 2.95815 P PPL FR B4 62 627 62215 18561 30 Europe/Paris 2011-11-02
-3028493 Cartignies Cartignies Cartignies 50.0929 3.84473 P PPL FR B4 59 591 59134 1170 149 Europe/Paris 2012-01-18
-3028503 Carspach Carspach Carspach 47.61628 7.2115 P PPL FR C1 68 681 68062 1773 296 Europe/Paris 2012-01-18
-3028507 Carsac-Aillac Carsac-Aillac Carsac,Carsac-Aillac,Carsac-de-Carlux 44.83333 1.25 P PPL FR 97 24 244 24082 1451 104 Europe/Paris 2012-01-18
-3028509 Cars Cars Cars 45.12917 -0.61952 P PPL FR 97 33 331 33100 1301 53 Europe/Paris 2012-01-18
-3028510 Carry-le-Rouet Carry-le-Rouet Carry,Carry-le-Rouet,קארי-לה-רואה 43.33139 5.15237 P PPL FR B8 13 134 13021 6434 10 Europe/Paris 2011-01-19
-3028513 Carros Carros Carros 43.78941 7.18395 P PPL FR B8 06 061 06033 10883 358 Europe/Paris 2012-01-18
-3028520 Carrières-sur-Seine Carrieres-sur-Seine Carrieres,Carrieres-sur-Seine,Carrières,Carrières-sur-Seine 48.90687 2.1792 P PPL FR A8 78 783 78124 12829 41 Europe/Paris 2012-01-18
-3028521 Carrières-sous-Poissy Carrieres-sous-Poissy Carrieres,Carrieres sur Poissy,Carrieres-sous-Poissy,Carrières,Carrières-sous-Poissy 48.94952 2.04068 P PPL FR A8 78 783 78123 15465 35 Europe/Paris 2012-01-18
-3028534 Carqueiranne Carqueiranne Carqueiranne,Carquieranne 43.09531 6.07297 P PPL FR B8 83 832 83034 9175 19 31 Europe/Paris 2012-01-18
-3028535 Carquefou Carquefou Carquefou,Kerc'hfaou 47.29822 -1.49024 P PPL FR B5 44 442 44026 18056 29 Europe/Paris 2012-01-18
-3028537 Carpiquet Carpiquet Carpiquet 49.18522 -0.44623 P PPL FR 99 14 142 14137 2040 58 Europe/Paris 2012-01-18
-3028542 Carpentras Carpentras Carpentras,Carpentràs,Karpantras,karupantora,Карпантрас,カルパントラ 44.05 5.05 P PPLA3 FR B8 84 843 84031 29709 87 Europe/Paris 2011-11-02
-3028551 Caromb Caromb Caromb 44.11076 5.1058 P PPL FR B8 84 843 84030 3309 196 Europe/Paris 2012-01-18
-3028554 Caro Caro Caro,Karozh 47.86429 -2.31924 P PPL FR A2 56 563 56035 1164 111 Europe/Paris 2012-01-18
-3028558 Carnoules Carnoules Carnoules 43.30193 6.18804 P PPL FR B8 83 832 83033 2810 219 Europe/Paris 2012-01-18
-3028575 Carnac Carnac Alineamientos de Carnac,Carnac,Karnag 47.58351 -3.07884 P PPL FR A2 56 561 56034 4777 24 Europe/Paris 2012-01-18
-3028580 Carmaux Carmaux Carmaux,Karmo,Кармо 44.05099 2.15795 P PPL FR B3 81 811 81060 10413 245 Europe/Paris 2012-01-18
-3028590 Carling Carling Carling 49.16761 6.71596 P PPL FR B2 57 573 57123 3858 241 Europe/Paris 2012-01-18
-3028591 Carlepont Carlepont Carlepont 49.51438 3.02327 P PPL FR B6 60 603 60129 1436 56 Europe/Paris 2012-01-18
-3028600 Carignan Carignan Carignan,Ivoy 49.63159 5.16796 P PPL FR A4 08 083 08090 3249 174 Europe/Paris 2012-01-18
-3028601 Carignan-de-Bordeaux Carignan-de-Bordeaux 44.8 -0.48333 P PPL FR 97 33 332 33099 3343 62 Europe/Paris 2007-11-21
-3028603 Carhaix-Plouguer Carhaix-Plouguer Carhaix,Carhaix-Plouguer,Karaez,Karaez-Plouger,Karaez-Plougêr 48.27594 -3.57326 P PPL FR A2 29 292 29024 8270 145 Europe/Paris 2011-12-03
-3028606 Cargèse Cargese Cargese,Carghjese,Cargèse,Le Village de Cargese,Le Village de Cargèse 42.13629 8.59586 P PPL FR A5 2A 2A1 2A065 1032 87 88 Europe/Paris 2007-11-29
-3028608 Carentoir Carentoir Carentoir,Karantoer 47.81667 -2.13333 P PPL FR A2 56 563 56033 2752 48 Europe/Paris 2012-01-18
-3028610 Carentan Carentan Carantan,Carentan,Carenton 49.30312 -1.24806 P PPL FR 99 50 504 50099 6950 8 Europe/Paris 2012-01-18
-3028637 Carcès Carces Carces,Carcès 43.47632 6.18308 P PPL FR B8 83 833 83032 2767 152 Europe/Paris 2012-01-18
-3028641 Carcassonne Carcassonne Carcasona,Carcasonne,Carcassona,Carcassonne,Karkason,Karkasson,karukason'nu,Каркасон,Каркассон,カルカソンヌ 43.21667 2.35 P PPLA2 FR A9 11 111 11069 49600 112 Europe/Paris 2011-11-02
-3028647 Carcans Carcans Carcans 45.07869 -1.04429 P PPL FR 97 33 334 33097 1700 22 Europe/Paris 2012-01-18
-3028652 Carbonne Carbonne Carbonne 43.29857 1.2252 P PPL FR B3 31 311 31107 4215 211 Europe/Paris 2012-01-18
-3028653 Carbon-Blanc Carbon-Blanc Carbon-Blanc 44.89642 -0.50107 P PPL FR 97 33 332 33096 6760 27 Europe/Paris 2012-01-18
-3028667 Carantec Carantec Carantec,Karanteg 48.66811 -3.91545 P PPL FR A2 29 293 29023 2904 40 Europe/Paris 2012-01-18
-3028674 Caraman Caraman Caraman,Floreal,Floréal 43.53271 1.76002 P PPL FR B3 31 313 31106 2195 250 Europe/Paris 2012-01-18
-3028680 Capvern Capvern Capvern 43.10357 0.31604 P PPL FR B3 65 652 65127 1126 612 Europe/Paris 2012-01-18
-3028690 Cappelle-la-Grande Cappelle-la-Grande Cappelle,Cappelle-la-Grand,Cappelle-la-Grande 50.99979 2.35848 P PPL FR B4 59 594 59131 8293 5 Europe/Paris 2012-01-18
-3028691 Cappelle-en-Pévèle Cappelle-en-Pevele Cappelle,Cappelle-en-Pevele,Cappelle-en-Pévèle 50.51011 3.17133 P PPL FR B4 59 595 59129 1997 44 Europe/Paris 2012-01-18
-3028709 Capinghem Capinghem Capinghem 50.64551 2.96193 P PPL FR B4 59 595 59128 1557 46 Europe/Paris 2012-01-18
-3028720 Capestang Capestang Capestang 43.32791 3.04447 P PPL FR A9 34 341 34052 3392 26 Europe/Paris 2012-01-18
-3028722 Capendu Capendu Capendu 43.18596 2.55677 P PPL FR A9 11 111 11068 1525 77 Europe/Paris 2012-01-18
-3028739 Capdenac-Gare Capdenac-Gare Capdenac,Capdenac-Gare 44.57567 2.08079 P PPL FR B3 12 123 12052 1075 177 Europe/Paris 2011-11-02
-3028745 Capbreton Capbreton Capbreton,Capbrutus 43.64216 -1.42816 P PPL FR 97 40 401 40065 7387 7 Europe/Paris 2012-01-18
-3028754 Cany-Barville Cany-Barville Cany,Cany-Barville 49.78885 0.63704 P PPL FR A7 76 761 76159 3463 17 Europe/Paris 2012-01-18
-3028767 Cantin Cantin Cantin 50.30885 3.12766 P PPL FR B4 59 593 59126 1455 44 Europe/Paris 2012-01-18
-3028773 Cantenay-Épinard Cantenay-Epinard Cantenay,Cantenay-Epinard,Cantenay-Épinard,Epinard Cantenay 47.53503 -0.56899 P PPL FR B5 49 491 49055 1986 29 Europe/Paris 2012-01-18
-3028774 Cantenac Cantenac Cantenac 45.02816 -0.65312 P PPL FR 97 33 334 33091 1272 7 Europe/Paris 2012-01-18
-3028779 Canteleu Canteleu Canteleu 49.44065 1.02459 P PPL FR A7 76 763 76157 15742 115 Europe/Paris 2012-01-18
-3028783 Cantaron Cantaron Cantaron 43.75865 7.31876 P PPL FR B8 06 062 06031 1308 93 Europe/Paris 2012-01-18
-3028796 Canon Canon Canon 49.0738 -0.09219 P PPL FR 99 14 143 14431 4926 31 Europe/Paris 2012-02-27
-3028797 Canohès Canohes Canoes,Canohes,Canohès 42.65461 2.83633 P PPL FR A9 66 662 66038 4780 65 Europe/Paris 2012-01-18
-3028806 Cannes-Écluse Cannes-Ecluse Cannes-Ecluse,Cannes-Écluse 48.36303 2.98748 P PPL FR A8 77 773 77061 2842 60 Europe/Paris 2012-01-18
-3028808 Cannes Cannes Canas,Canes,Cannes,Chalier,Châlier,Kan,Kannes,Kanny,jia na,kan,kan'nu,kn,mdynt kan,Κάννες,Кан,Канны,קאן,مدينة كان,کان,کن,カンヌ,戛纳 43.55135 7.01275 P PPL FR B8 06 061 06029 70011 0 11 Europe/Paris 2011-11-02
-3028824 Cangey Cangey Cangey 47.46718 1.06051 P PPL FR A3 37 372 37043 1034 64 Europe/Paris 2012-01-18
-3028831 Canet Canet Canet 43.22744 2.848 P PPL FR A9 11 113 11067 1801 27 Europe/Paris 2012-01-18
-3028832 Canet-en-Roussillon Canet-en-Roussillon 42.7 3.01667 P PPL FR A9 66 662 66037 11148 2 Europe/Paris 2011-11-02
-3028838 Canéjan Canejan Canejan,Canéjan 44.76667 -0.63333 P PPL FR 97 33 332 33090 5513 40 Europe/Paris 2007-11-21
-3028844 Candillargues Candillargues Candillargues,Come-de-la-Palus,Côme-de-la-Palus 43.62052 4.06924 P PPL FR A9 34 343 34050 1273 4 Europe/Paris 2012-01-18
-3028846 Candé-sur-Beuvron Cande-sur-Beuvron Cande,Cande-sur-Beuvron,Candé,Candé-sur-Beuvron 47.49499 1.25937 P PPL FR A3 41 411 41029 1258 73 Europe/Paris 2012-01-18
-3028851 Candé Cande Cande,Candé 47.56158 -1.03619 P PPL FR B5 49 494 49054 2755 47 Europe/Paris 2012-01-18
-3028856 Cancon Cancon Cancon 44.53543 0.6252 P PPL FR 97 47 473 47048 1356 166 Europe/Paris 2012-01-18
-3028868 Cancale Cancale Cancale,Kankaven 48.67601 -1.85231 P PPL FR A2 35 354 35049 5751 10 47 Europe/Paris 2012-01-18
-3028902 Camps-la-Source Camps-la-Source Camps,Camps les Brignols,Camps-la-Source 43.38641 6.08661 P PPL FR B8 83 833 83030 1390 275 Europe/Paris 2012-01-18
-3028908 Campsas Campsas Campsas 43.89591 1.32677 P PPL FR B3 82 822 82027 1043 134 Europe/Paris 2011-01-09
-3028946 Camphin-en-Pévèle Camphin-en-Pevele Camphin,Camphin-Pevele,Camphin-Pevèle,Camphin-en-Pevele,Camphin-en-Pévèle 50.59561 3.26082 P PPL FR B4 59 595 59124 1605 52 Europe/Paris 2012-01-18
-3028947 Camphin-en-Carembault Camphin-en-Carembault Camphin,Camphin-en-Carembault 50.51196 2.9871 P PPL FR B4 59 595 59123 1574 31 Europe/Paris 2012-01-18
-3028954 Campénéac Campeneac Campeneac,Campénéac,Kempenieg 47.95733 -2.29277 P PPL FR A2 56 563 56032 1564 79 Europe/Paris 2012-01-18
-3028966 Campbon Campbon Campbon,Kambon 47.4131 -1.96857 P PPL FR B5 44 443 44025 3327 36 Europe/Paris 2012-01-18
-3028976 Campan Campan Campan 43.01587 0.17846 P PPL FR B3 65 652 65123 1585 662 Europe/Paris 2012-01-18
-3028983 Campagne-lès-Hesdin Campagne-les-Hesdin Campagne,Campagne-les-Hesdin,Campagne-lès-Hesdin,Le Pelletier-sur-Canche,Lepelletier-sur-Canche 50.39724 1.87494 P PPL FR B4 62 624 62204 1732 92 Europe/Paris 2012-01-18
-3029002 Camors Camors Camors,Kamorzh 47.84739 -2.99981 P PPL FR A2 56 561 56031 2508 113 Europe/Paris 2012-01-18
-3029003 Camon Camon Camon 49.88764 2.34486 P PPL FR B6 80 802 80164 4411 30 Europe/Paris 2012-01-18
-3029012 Camiers Camiers Camiers 50.57153 1.61325 P PPL FR B4 62 624 62201 2325 21 Europe/Paris 2012-01-18
-3029023 Cambronne-lès-Ribécourt Cambronne-les-Ribecourt Cambronne,Cambronne-les-Ribecourt,Cambronne-lès-Ribécourt 49.50711 2.89797 P PPL FR B6 60 603 60119 2064 68 Europe/Paris 2012-01-18
-3029024 Cambronne-lès-Clermont Cambronne-les-Clermont Cambronne,Cambronne-le-Mont-Brutus,Cambronne-les-Clermont,Cambronne-lès-Clermont 49.33022 2.39928 P PPL FR B6 60 602 60120 1034 124 Europe/Paris 2012-01-18
-3029027 Cambremer Cambremer Cambremer 49.15192 0.0476 P PPL FR 99 14 143 14126 1165 97 Europe/Paris 2012-01-18
-3029030 Cambrai Cambrai Cambrai,Cambria,Kambre,kanbure,Камбре,カンブレー 50.16667 3.23333 P PPLA3 FR B4 59 592 59122 36492 61 Europe/Paris 2011-11-02
-3029041 Cambo-les-Bains Cambo-les-Bains Cambo,Cambo-les-Bains,Kanbo,La Montagne 43.3585 -1.40105 P PPL FR 97 64 641 64160 4800 70 Europe/Paris 2012-01-18
-3029044 Camblanes-et-Meynac Camblanes-et-Meynac Camblanes,Camblanes-et-Meynac 44.76551 -0.48653 P PPL FR 97 33 332 33085 2430 46 Europe/Paris 2012-01-18
-3029046 Camblain-Châtelain Camblain-Chatelain Camblain-Chatelain,Camblain-Châtelain 50.48355 2.45521 P PPL FR B4 62 622 62197 1614 64 Europe/Paris 2012-01-18
-3029051 Cambes-en-Plaine Cambes-en-Plaine Cambes,Cambes-en-Plaine 49.23161 -0.3854 P PPL FR 99 14 142 14125 1550 57 Europe/Paris 2012-01-18
-3029052 Cambes Cambes Cambes 44.73179 -0.46261 P PPL FR 97 33 332 33084 1234 9 Europe/Paris 2012-01-18
-3029068 Camaret-sur-Mer Camaret-sur-Mer Camaret,Camaret-sur-Mer,Kameled 48.27497 -4.59615 P PPL FR A2 29 292 29022 2612 4 Europe/Paris 2007-12-28
-3029069 Camaret-sur-Aigues Camaret-sur-Aigues Camaret,Camaret-sur-Aigues,Camaret-sur-Eygues 44.16405 4.87424 P PPL FR B8 84 842 84029 3788 74 Europe/Paris 2012-01-18
-3029071 Camarès Camares Camares,Camares-sur-Dourdon,Camarès 43.82208 2.88005 P PPL FR B3 12 121 12044 1057 385 Europe/Paris 2011-01-13
-3029080 Calvisson Calvisson Calvisson 43.78696 4.19626 P PPL FR A9 30 302 30062 3890 53 Europe/Paris 2010-12-25
-3029090 Calvi Calvi Calvi,Kal'vi,Kalvi,calvi corse,ka er wei,Калви,Кальви,卡尔维 42.56604 8.75713 P PPLA3 FR A5 2B 2B5 2B050 5477 4 Europe/Paris 2011-05-02
-3029096 Caluire-et-Cuire Caluire-et-Cuire Caluire,Caluire-et-Cuire,Kalir e Kir,Scevola,Scévola,karyuiru=e=kyuiru,Калир е Кир,カリュイール=エ=キュイール 45.79041 4.84112 P PPL FR B9 69 691 69034 42763 251 Europe/Paris 2012-01-18
-3029098 Calonne-sur-la-Lys Calonne-sur-la-Lys Calonne,Calonne-sur-la-Lys 50.62292 2.61664 P PPL FR B4 62 622 62195 1556 16 Europe/Paris 2012-01-18
-3029099 Calonne-Ricouart Calonne-Ricouart Calonne,Calonne-Ricouart 50.48504 2.47335 P PPL FR B4 62 622 62194 6099 53 Europe/Paris 2012-01-18
-3029107 Calmont Calmont Calmont 44.24883 2.51201 P PPL FR B3 12 122 12043 1787 574 Europe/Paris 2011-01-17
-3029108 Calmont Calmont Calmont,Culmont 43.28718 1.63031 P PPL FR B3 31 313 31100 1810 215 Europe/Paris 2012-01-18
-3029118 Callian Callian Callian 43.6231 6.7519 P PPL FR B8 83 831 83029 2641 310 Europe/Paris 2012-01-18
-3029125 Callas Callas Callas 43.59237 6.53738 P PPL FR B8 83 831 83028 1497 385 Europe/Paris 2012-01-18
-3029126 Callac Callac Callac,Kallag 48.40292 -3.428 P PPL FR A2 22 222 22025 2564 160 Europe/Paris 2012-01-18
-3029140 Calenzana Calenzana Calenzana 42.50839 8.85594 P PPL FR A5 2B 2B5 2B049 1882 278 Europe/Paris 2012-01-18
-3029162 Calais Calais Calais,Caletum,Kale,Kales,jia lai,kare,Кале,קאלה,カレー,加来 50.9581 1.85205 P PPLA3 FR B4 62 626 62193 74433 5 Europe/Paris 2011-11-02
-3029168 Cajarc Cajarc Cajarc 44.48546 1.84261 P PPL FR B3 46 462 46045 1219 158 Europe/Paris 2009-06-23
-3029174 Caissargues Caissargues Caissargues 43.79509 4.37955 P PPL FR A9 30 302 30060 3858 31 Europe/Paris 2012-01-18
-3029178 Cairon Cairon Cairon 49.24017 -0.45046 P PPL FR 99 14 142 14123 1674 37 Europe/Paris 2012-01-18
-3029186 Cailloux-sur-Fontaines Cailloux-sur-Fontaines Cailloux,Cailloux-sur-Fontaines 45.85147 4.87585 P PPL FR B9 69 691 69033 2269 254 Europe/Paris 2012-01-18
-3029206 Cahuzac-sur-Vère Cahuzac-sur-Vere Cahusac-sur-Vere,Cahusac-sur-Vère,Cahuzac,Cahuzac-sur-Vere,Cahuzac-sur-Vère,Cuhuzac-sur-Vere 43.98268 1.91052 P PPL FR B3 81 811 81051 1084 213 Europe/Paris 2012-01-18
-3029213 Cahors Cahors Cahors,Caors,Divona Cadurcorum,Kagor,Kaor,kaoru,Кагор,Каор,カオール 44.4491 1.43663 P PPLA2 FR B3 46 461 46042 23331 142 Europe/Paris 2011-11-02
-3029221 Cahagnes Cahagnes Cahagnes 49.06631 -0.76869 P PPL FR 99 14 144 14120 1117 175 Europe/Paris 2012-01-18
-3029222 Cagny Cagny Cagny 49.86217 2.34266 P PPL FR B6 80 802 80160 1427 31 Europe/Paris 2012-01-18
-3029223 Cagny Cagny Cagny 49.1458 -0.2563 P PPL FR 99 14 142 14119 1653 21 Europe/Paris 2012-01-18
-3029227 Cagnes-sur-Mer Cagnes-sur-Mer Cagnes,Cagnes-sur-Mer,Kan sir Mer,Kan sjur Mer,Кан сюр Мер,Кањ сир Мер 43.6646 7.15339 P PPL FR B8 06 061 06027 46923 15 Europe/Paris 2012-01-18
-3029229 Cagnac-les-Mines Cagnac-les-Mines Bon-Air,Cagnac,Cagnac-les-Mines,Roc-la-Montagne 43.98445 2.14227 P PPL FR B3 81 811 81048 2195 312 Europe/Paris 2012-01-18
-3029234 Caëstre Caestre Caestre,Caëstre 50.75838 2.60274 P PPL FR B4 59 594 59120 1734 37 Europe/Paris 2012-01-18
-3029241 Caen Caen Caen,Kan,ka ang,kan,Кан,カーン,卡昂 49.18585 -0.35912 P PPLA FR 99 14 142 14118 110624 21 Europe/Paris 2011-12-08
-3029248 Cadolive Cadolive Cadolive 43.39694 5.54526 P PPL FR B8 13 133 13020 2165 367 Europe/Paris 2011-01-18
-3029253 Cadillac Cadillac Cadilhac,Cadillac 44.63631 -0.31702 P PPL FR 97 33 333 33081 2568 18 Europe/Paris 2012-01-18
-3029254 Caderousse Caderousse Caderousse 44.10252 4.75679 P PPL FR B8 84 842 84027 2663 32 Europe/Paris 2012-01-18
-3029256 Cadenet Cadenet Cadenet,kadone,カドネ 43.73445 5.37499 P PPL FR B8 84 841 84026 4150 178 Europe/Paris 2012-01-18
-3029257 Caden Caden Caden,Kaden 47.63124 -2.28704 P PPL FR A2 56 563 56028 1521 71 Europe/Paris 2012-01-18
-3029265 Cadaujac Cadaujac Cadaujac 44.75437 -0.53128 P PPL FR 97 33 332 33080 4826 10 Europe/Paris 2012-01-18
-3029271 Cadalen Cadalen Cadalen 43.84933 1.98089 P PPL FR B3 81 811 81046 1266 208 Europe/Paris 2012-01-18
-3029276 Cachan Cachan Cachan,Cachon,Kashan,Кашан 48.79632 2.33661 P PPL FR A8 94 943 94016 26540 47 Europe/Paris 2012-01-18
-3029282 Cabris Cabris Cabris 43.65317 6.87172 P PPL FR B8 06 061 06026 1549 444 Europe/Paris 2012-01-18
-3029283 Cabriès Cabries Cabries,Cabriès 43.44127 5.37884 P PPL FR B8 13 131 13019 8122 203 Europe/Paris 2011-11-02
-3029286 Cabrières Cabrieres Cabrieres,Cabrières 43.9039 4.47094 P PPL FR A9 30 302 30057 1215 143 Europe/Paris 2012-01-18
-3029297 Cabourg Cabourg 49.2911 -0.1133 P PPL FR 99 14 142 14117 3686 7 Europe/Paris 2008-07-17
-3029302 Cabestany Cabestany Cabestany 42.68132 2.94122 P PPL FR A9 66 662 66028 9103 41 Europe/Paris 2012-01-18
-3029306 Cabasse Cabasse Cabasse 43.42823 6.22091 P PPL FR B8 83 833 83026 1390 207 Europe/Paris 2012-01-18
-3029309 Cabariot Cabariot Cabariot,Cabarrot 45.92644 -0.85741 P PPL FR B7 17 172 17075 1158 10 Europe/Paris 2012-01-18
-3029312 Cabannes Cabannes Cabannes 43.86015 4.95192 P PPL FR B8 13 132 13018 4295 54 Europe/Paris 2011-01-18
-3029320 Cabanac-et-Villagrains Cabanac-et-Villagrains Cabanac-et-Villagrains 44.6 -0.55 P PPL FR 97 33 332 33077 1548 40 Europe/Paris 2012-01-18
-3029338 Buzet-sur-Tarn Buzet-sur-Tarn Buzet,Buzet-sur-Tarn 43.77977 1.63301 P PPL FR B3 31 313 31094 1820 114 Europe/Paris 2011-01-13
-3029339 Buzet-sur-Baïse Buzet-sur-Baise Buzet,Buzet-sur-Baise,Buzet-sur-Baïse 44.25811 0.29809 P PPL FR 97 47 474 47043 1307 48 Europe/Paris 2012-01-18
-3029345 Buzançais Buzancais Buzancais,Buzançais,La Fraternite-sur-Indre,La Fraternité-sur-Indre 46.88877 1.4195 P PPL FR A3 36 362 36031 4600 107 Europe/Paris 2012-01-18
-3029350 Buxy Buxy Buxy,Buxy-le-National,Grand-Buxy 46.71369 4.70427 P PPL FR A1 71 712 71070 2171 234 Europe/Paris 2012-01-18
-3029355 Buxières-les-Mines Buxieres-les-Mines Buxieres,Buxieres-les-Mines,Buxières-les-Mines,Buxiéres 46.46886 2.96143 P PPL FR 98 03 032 03046 1200 298 Europe/Paris 2012-01-18
-3029365 Buxerolles Buxerolles Buxerolles 46.61667 0.48333 P PPL FR B7 86 863 86041 9415 123 Europe/Paris 2012-01-18
-3029377 Butry-sur-Oise Butry-sur-Oise Butry,Butry-sur-Oise 49.08836 2.19916 P PPL FR A8 95 953 95120 2108 26 Europe/Paris 2012-01-18
-3029392 Bussy-Saint-Georges Bussy-Saint-Georges Bussy-Saint-Georges 48.84099 2.70165 P PPL FR A8 77 775 77058 10043 112 Europe/Paris 2012-01-18
-3029428 Bussières Bussieres Bussieres,Bussières 45.83621 4.26855 P PPL FR B9 42 422 42029 1326 593 Europe/Paris 2012-01-18
-3029429 Bussière-Poitevine Bussiere-Poitevine Bussiere,Bussiere-Poitevine,Bussiere-Portevine,Bussiere-l'Egalite,Bussière,Bussière-Poitevine,Bussière-Portevine,Bussière-l'Egalité 46.23543 0.9053 P PPL FR B1 87 871 87028 1007 220 Europe/Paris 2012-01-18
-3029432 Bussière-Galant Bussiere-Galant Bussiere-Galant,Bussière-Galant 45.62702 1.0364 P PPL FR B1 87 872 87027 1426 438 Europe/Paris 2012-01-18
-3029433 Bussière-Dunoise Bussiere-Dunoise Bussiere,Bussiere-Dunoise,Bussière,Bussière-Dunoise 46.25898 1.76216 P PPL FR B1 23 232 23036 1095 422 Europe/Paris 2012-01-18
-3029462 Bussang Bussang Bussang 47.88449 6.85272 P PPL FR B2 88 881 88081 1803 600 Europe/Paris 2012-01-18
-3029465 Bussac-sur-Charente Bussac-sur-Charente 45.78333 -0.63333 P PPL FR B7 17 174 17073 1215 11 Europe/Paris 2007-11-21
-3029473 Busnes Busnes 50.58781 2.51827 P PPL FR B4 62 622 62190 1335 20 Europe/Paris 2008-05-28
-3029477 Busigny Busigny Busigny 50.03424 3.46713 P PPL FR B4 59 592 59118 2489 148 Europe/Paris 2012-01-18
-3029483 Bury Bury Bury 49.31307 2.34401 P PPL FR B6 60 602 60116 3027 52 Europe/Paris 2012-01-18
-3029494 Buros Buros Buros 43.35 -0.3 P PPL FR 97 64 643 64152 1528 265 Europe/Paris 2011-09-11
-3029498 Burnhaupt-le-Haut Burnhaupt-le-Haut Burnhaupt-le-Haut 47.72945 7.1461 P PPL FR C1 68 686 68060 1562 302 Europe/Paris 2012-01-18
-3029499 Burnhaupt-le-Bas Burnhaupt-le-Bas Burnhaupt,Burnhaupt-le-Bas 47.71721 7.16149 P PPL FR C1 68 686 68059 1298 301 Europe/Paris 2012-01-18
-3029503 Burlats Burlats Burlats 43.63633 2.31879 P PPL FR B3 81 812 81042 1938 198 Europe/Paris 2012-01-18
-3029505 Burie Burie 45.77273 -0.42289 P PPL FR B7 17 174 17072 1355 62 Europe/Paris 2011-03-16
-3029522 Bures-sur-Yvette Bures-sur-Yvette Bures,Bures-Orsay,Bures-sur-Yvette 48.69981 2.17064 P PPL FR A8 91 913 91122 10411 62 Europe/Paris 2012-01-18
-3029548 Burbure Burbure Burbure 50.53663 2.46897 P PPL FR B4 62 622 62188 2898 47 Europe/Paris 2012-01-18
-3029566 Bully-les-Mines Bully-les-Mines Bully,Bully-les-Mines 50.4438 2.72703 P PPL FR B4 62 627 62186 11975 54 Europe/Paris 2012-01-18
-3029568 Bully Bully Bully 49.10154 -0.40825 P PPL FR 99 14 142 14266 1175 50 Europe/Paris 2012-02-27
-3029570 Bully Bully Bully 45.85205 4.58195 P PPL FR B9 69 691 69032 1906 335 Europe/Paris 2012-01-18
-3029572 Bullion Bullion Bullion 48.62285 1.99024 P PPL FR A8 78 782 78120 1931 105 Europe/Paris 2012-01-18
-3029580 Bulgnéville Bulgneville Bulgneville,Bulgnéville 48.20694 5.8343 P PPL FR B2 88 882 88079 1433 351 Europe/Paris 2012-01-18
-3029603 Buis-les-Baronnies Buis-les-Baronnies Buis,Buis-les-Baronnies,Le Buis-les-Baronnies 44.27373 5.2722 P PPL FR B9 26 262 26063 2497 367 Europe/Paris 2012-01-18
-3029606 Buironfosse Buironfosse Buironfosse 49.96658 3.83587 P PPL FR B6 02 025 02135 1209 204 Europe/Paris 2012-01-18
-3029620 Buhl Buhl Buhl 47.92806 7.18719 P PPL FR C1 68 683 68058 3223 341 Europe/Paris 2012-01-18
-3029637 Bugeat Bugeat Bugeat 45.59756 1.92887 P PPL FR B1 19 193 19033 1014 707 Europe/Paris 2012-01-18
-3029654 Buellas Buellas Buellas 46.2111 5.1322 P PPL FR B9 01 012 01065 1594 222 Europe/Paris 2010-12-14
-3029655 Bueil Bueil Bueil 48.9319 1.44257 P PPL FR A7 27 273 27119 1480 74 Europe/Paris 2012-01-18
-3029670 Bucy-le-Long Bucy-le-Long Bucy,Bucy-le-Long 49.39072 3.39582 P PPL FR B6 02 024 02131 1996 53 Europe/Paris 2012-01-18
-3029673 Bucquoy Bucquoy 50.13973 2.71036 P PPL FR B4 62 621 62181 1297 127 Europe/Paris 2009-03-25
-3029677 Buchy Buchy Buchy 49.58513 1.35852 P PPL FR A7 76 763 76146 1267 196 Europe/Paris 2012-01-18
-3029682 Buchères Bucheres Bucheres,Buchères 48.23508 4.1131 P PPL FR A4 10 103 10067 1375 112 Europe/Paris 2012-01-18
-3029684 Buchelay Buchelay Buchelay 48.97926 1.67026 P PPL FR A8 78 781 78118 2325 69 Europe/Paris 2012-01-18
-3029695 Buc Buc 48.77627 2.12577 P PPL FR A8 78 784 78117 6120 122 Europe/Paris 2011-11-02
-3029697 Bubry Bubry Bubri,Bubry 47.96336 -3.17108 P PPL FR A2 56 561 56026 2523 103 Europe/Paris 2012-01-18
-3029705 Bû Bu Bu,Bû 48.79705 1.49702 P PPL FR A3 28 283 28064 1790 136 Europe/Paris 2012-01-18
-3029706 Bry-sur-Marne Bry-sur-Marne Bry,Bry-sur-Marne 48.83811 2.52488 P PPL FR A8 94 942 94015 16226 54 Europe/Paris 2012-01-18
-3029713 Bruz Bruz Bruz 48.0242 -1.74591 P PPL FR A2 35 353 35047 14533 42 Europe/Paris 2012-01-18
-3029715 Bruyères-sur-Oise Bruyeres-sur-Oise Bruyeres,Bruyeres-sur-Oise,Bruyères,Bruyères-sur-Oise 49.15756 2.32577 P PPL FR A8 95 953 95116 3619 30 Europe/Paris 2012-01-18
-3029717 Bruyères-le-Châtel Bruyeres-le-Chatel Bruyeres,Bruyeres-Libre,Bruyeres-le-Chatel,Bruyères,Bruyères-Libre,Bruyères-le-Châtel 48.58868 2.18991 P PPL FR A8 91 913 91115 3184 82 Europe/Paris 2012-01-18
-3029718 Bruyères-et-Montbérault Bruyeres-et-Montberault Bruyeres,Bruyeres-et-Montberault,Bruyères,Bruyères-et-Montbérault 49.52535 3.66369 P PPL FR B6 02 022 02128 1558 86 Europe/Paris 2012-01-18
-3029725 Bruyères Bruyeres Bruerium,Bruyeres,Bruyères 48.20709 6.71845 P PPL FR B2 88 881 88078 3423 477 Europe/Paris 2012-01-18
-3029746 Brunstatt Brunstatt Brunstatt 47.72004 7.31784 P PPL FR C1 68 684 68056 5816 247 Europe/Paris 2012-01-18
-3029748 Brunoy Brunoy Brinoa,Brinoj,Brunoy,Бриноа,Бриној 48.6942 2.49223 P PPL FR A8 91 912 91114 24096 81 Europe/Paris 2012-01-18
-3029771 Brumath Brumath Brumath 48.73014 7.7121 P PPL FR C1 67 676 67067 9459 146 Europe/Paris 2012-01-18
-3029775 Brûlon Brulon Brulon,Brûlon 47.96667 -0.23333 P PPL FR B5 72 721 72050 1427 103 Europe/Paris 2012-01-18
-3029790 Bruille-Saint-Amand Bruille-Saint-Amand Bruille,Bruille-Saint-Amand 50.46605 3.50013 P PPL FR B4 59 596 59114 1499 26 Europe/Paris 2012-01-18
-3029791 Bruille-lez-Marchiennes Bruille-lez-Marchiennes Bruille,Bruille-les-Marchiennes,Bruille-lez-Marchiennes 50.36068 3.24424 P PPL FR B4 59 593 59113 1233 25 Europe/Paris 2012-01-18
-3029793 Bruguières Bruguieres Bruguieres,Bruguières 43.7272 1.40762 P PPL FR B3 31 313 31091 4340 120 Europe/Paris 2011-01-09
-3029797 Brugheas Brugheas Brugheas 46.07698 3.36754 P PPL FR 98 03 033 03044 1271 325 Europe/Paris 2012-01-18
-3029799 Bruges Bruges Bruges 44.87981 -0.61219 P PPL FR 97 33 332 33075 12650 22 Europe/Paris 2012-01-18
-3029824 Bruay-sur-l'Escaut Bruay-sur-l'Escaut Bruay,Bruay-sur-l'Escaut 50.39918 3.5438 P PPL FR B4 59 596 59112 11690 20 Europe/Paris 2012-01-18
-3029825 Bruay-la-Buissière Bruay-la-Buissiere Bruay-en-Artois 50.48333 2.55 P PPL FR B4 62 622 62178 24474 60 Europe/Paris 2011-11-02
-3029852 Broût-Vernet Brout-Vernet Brout-Vernet,Broût-Vernet 46.18756 3.27324 P PPL FR 98 03 033 03043 1124 306 Europe/Paris 2011-07-14
-3029855 Brou-sur-Chantereine Brou-sur-Chantereine Brou,Brou-sur-Chantereine 48.88333 2.63333 P PPL FR A8 77 775 77055 4682 51 Europe/Paris 2012-01-18
-3029890 Brouckerque Brouckerque Brouckercque,Brouckerque 50.95476 2.29378 P PPL FR B4 59 594 59110 1208 1 Europe/Paris 2012-01-18
-3029898 Brou Brou Brou 48.21719 1.16539 P PPL FR A3 28 282 28061 3848 157 Europe/Paris 2012-01-18
-3029925 Broons Broons Bronn,Broons 48.31748 -2.25952 P PPL FR A2 22 221 22020 2542 95 Europe/Paris 2012-01-18
-3029931 Bron Bron Bron,Брон 45.73333 4.91667 P PPL FR B9 69 691 69029 37825 207 Europe/Paris 2011-11-02
-3029951 Broglie Broglie Broglie,Chambrois 49.00911 0.52915 P PPL FR A7 27 272 27117 1190 148 Europe/Paris 2008-11-21
-3029967 Brix Brix Brix 49.54512 -1.58012 P PPL FR 99 50 502 50087 1984 147 Europe/Paris 2012-01-18
-3029970 Brives-Charensac Brives-Charensac Brives,Brives-Charensac 45.0478 3.92878 P PPL FR 98 43 432 43041 4721 610 Europe/Paris 2010-11-19
-3029974 Brive-la-Gaillarde Brive-la-Gaillarde Briv la Gajar,Briva,Brive,Brive-la-Gaillarde,Брив ла Гајар,Бриве-ла-Гаилларде 45.15 1.53333 P PPLA3 FR B1 19 191 19031 53466 145 Europe/Paris 2011-11-02
-3029984 Brissac-Quincé Brissac-Quince 47.35575 -0.44924 P PPL FR B5 49 491 49050 2531 64 Europe/Paris 2007-11-21
-3029986 Brison-Saint-Innocent Brison-Saint-Innocent Brison,Brison-Saint-Innocent 45.72186 5.89011 P PPL FR B9 73 732 73059 2023 289 Europe/Paris 2012-01-18
-3029987 Briscous Briscous Beskoitze,Briscous,Hiribery 43.45958 -1.33353 P PPL FR 97 64 641 64147 2160 41 Europe/Paris 2012-01-18
-3029991 Briouze Briouze Briouze-Saint-Gervais 48.69848 -0.36806 P PPL FR 99 61 612 61063 1597 216 Europe/Paris 2007-02-11
-3029992 Brioux-sur-Boutonne Brioux-sur-Boutonne Brioux,Brioux-sur-Boutonne 46.14171 -0.22182 P PPL FR B7 79 792 79057 1487 63 Europe/Paris 2012-01-18
-3029995 Brioude Brioude Brioude,Briude 45.3 3.4 P PPLA3 FR 98 43 431 43040 7451 421 Europe/Paris 2011-11-02
-3030007 Brionne Brionne Brionne 49.19553 0.7151 P PPL FR A7 27 272 27116 4288 58 Europe/Paris 2012-01-18
-3030011 Brion Brion Brion 47.44122 -0.15616 P PPL FR B5 49 491 49049 1085 48 Europe/Paris 2012-01-18
-3030020 Briollay Briollay Briollay 47.56478 -0.50681 P PPL FR B5 49 491 49048 2416 19 Europe/Paris 2012-01-18
-3030024 Brinon-sur-Sauldre Brinon-sur-Sauldre Brinon,Brinon-sur-Sauldre 47.566 2.25647 P PPL FR A3 18 183 18037 1094 135 Europe/Paris 2012-01-18
-3030029 Brindas Brindas Brindas,Brindas-sur-Roches 45.72181 4.68973 P PPL FR B9 69 691 69028 4859 337 Europe/Paris 2012-01-18
-3030044 Briis-sous-Forges Briis-sous-Forges Briis,Briis-sous-Forges 48.62399 2.12112 P PPL FR A8 91 913 91111 3391 101 Europe/Paris 2012-01-18
-3030047 Brigueuil Brigueuil Brigueuil 45.95337 0.86065 P PPL FR B7 16 163 16064 1044 291 Europe/Paris 2012-01-18
-3030057 Brignoles Brignoles Brignoles,Brinhola,Brinhòla 43.4 6.06667 P PPLA3 FR B8 83 833 83023 15027 264 Europe/Paris 2011-12-08
-3030063 Brignais Brignais Brignais 45.67358 4.75484 P PPL FR B9 69 691 69027 12427 209 Europe/Paris 2012-01-18
-3030071 Briey Briey Briey 49.25 5.93333 P PPLA3 FR B2 54 541 54099 5200 220 Europe/Paris 2011-11-02
-3030090 Brienon-sur-Armançon Brienon-sur-Armancon Brienon,Brienon-sur-Armancon,Brienon-sur-Armançon 47.9901 3.61628 P PPL FR A1 89 891 89055 3366 92 Europe/Paris 2012-01-18
-3030091 Briennon Briennon Briennon 46.15024 4.0872 P PPL FR B9 42 422 42026 1711 273 Europe/Paris 2012-01-18
-3030093 Brienne-le-Château Brienne-le-Chateau Brienne-le-Bourg,Brienne-le-Chateau,Brienne-le-Château 48.39319 4.52637 P PPL FR A4 10 101 10064 3473 127 Europe/Paris 2009-07-29
-3030100 Brié-et-Angonnes Brie-et-Angonnes Brie Augonnes,Brie-et-Angonnes,Brie-et-Augonnes,Brié Augonnes,Brié-et-Angonnes,Brié-et-Augonnes 45.12418 5.78374 P PPL FR B9 38 381 38059 1965 442 Europe/Paris 2012-01-18
-3030101 Brie-Comte-Robert Brie-Comte-Robert Brie-Comte-Robert,Brie-Libre,Brie-la-Ville,Brie-sur-Hieres,Brie-sur-Hières 48.68333 2.61667 P PPL FR A8 77 772 77053 15892 78 Europe/Paris 2011-11-02
-3030102 Briec Briec Briec,Briec-de-l'Odet,Brieg 48.10167 -3.99833 P PPL FR A2 29 294 29020 4880 157 Europe/Paris 2012-01-18
-3030108 Brie Brie Brie 45.73804 0.24106 P PPL FR B7 16 161 16061 3490 119 Europe/Paris 2012-01-18
-3030114 Bricy Bricy Bricy 47.99846 1.77937 P PPL FR A3 45 452 45055 1082 122 Europe/Paris 2012-01-18
-3030120 Bricquebec Bricquebec Bricquebec 49.47008 -1.63254 P PPL FR 99 50 502 50082 4475 47 Europe/Paris 2012-01-18
-3030127 Briatexte Briatexte Briatexte 43.75237 1.90879 P PPL FR B3 81 812 81039 1761 143 Europe/Paris 2011-01-13
-3030132 Briare Briare Briare 47.63343 2.7438 P PPL FR A3 45 451 45053 6455 140 Europe/Paris 2012-01-18
-3030142 Briançon Briancon Briancon,Briançon 44.9 6.65 P PPLA3 FR B8 05 051 05023 11577 1309 Europe/Paris 2011-11-02
-3030147 Brezolles Brezolles Brezol,Brezolles,Brézolles,Брезол 48.69033 1.07404 P PPL FR A3 28 283 28059 1762 164 Europe/Paris 2012-01-18
-3030148 Brézins Brezins Brezins,Brézins 45.35202 5.30692 P PPL FR B9 38 381 38058 1441 365 Europe/Paris 2012-01-18
-3030155 Brézé Breze Breze,Brézé 47.17357 -0.06059 P PPL FR B5 49 493 49046 1382 57 Europe/Paris 2012-01-18
-3030171 Bréviandes Breviandes Breviande,Breviandes,Bréviande,Bréviandes 48.25693 4.09531 P PPL FR A4 10 103 10060 2093 115 Europe/Paris 2012-01-18
-3030180 Bréval Breval Breval,Bréval 48.94545 1.53309 P PPL FR A8 78 781 78107 1735 127 Europe/Paris 2012-01-18
-3030191 Breuschwickersheim Breuschwickersheim 48.58007 7.60159 P PPL FR C1 67 676 67065 1155 166 Europe/Paris 2007-07-06
-3030195 Breuilpont Breuilpont Breuilpont 48.96398 1.4292 P PPL FR A7 27 273 27114 1173 75 Europe/Paris 2012-01-18
-3030197 Breuil-Magné Breuil-Magne Breuil-Magne,Breuil-Magné 45.98478 -0.96 P PPL FR B7 17 172 17065 1324 21 Europe/Paris 2012-01-18
-3030202 Breuil-le-Vert Breuil-le-Vert Breuil,Breuil-le-Vert 49.36176 2.43633 P PPL FR B6 60 602 60107 3074 56 Europe/Paris 2012-01-18
-3030203 Breuillet Breuillet Breuillet 48.57064 2.17424 P PPL FR A8 91 911 91105 7755 92 Europe/Paris 2012-01-18
-3030204 Breuillet Breuillet Breuillet 45.69144 -1.05175 P PPL FR B7 17 172 17064 2349 29 Europe/Paris 2012-01-18
-3030205 Breuil-le-Sec Breuil-le-Sec Breuil,Breuil-le-Sec 49.37135 2.45084 P PPL FR B6 60 602 60106 2178 51 Europe/Paris 2012-01-18
-3030233 Bretteville-sur-Odon Bretteville-sur-Odon Bretteville,Bretteville-sur-Odon 49.16627 -0.41662 P PPL FR 99 14 142 14101 4320 18 Europe/Paris 2011-01-19
-3030234 Bretteville-sur-Laize Bretteville-sur-Laize Bretteville,Bretteville-sur-Laize 49.04466 -0.32639 P PPL FR 99 14 142 14100 1572 57 Europe/Paris 2012-01-18
-3030240 Bretteville-du-Grand-Caux Bretteville-du-Grand-Caux Bretteville,La Nativite,La Nativité 49.66667 0.4 P PPL FR A7 76 762 76143 1271 97 Europe/Paris 2007-11-21
-3030242 Bretteville Bretteville Bretteville 49.6544 -1.52884 P PPL FR 99 50 502 50077 1036 19 Europe/Paris 2012-01-18
-3030245 Brette-les-Pins Brette-les-Pins Brette,Brette-les-Pins 47.91062 0.33649 P PPL FR B5 72 723 72047 1618 96 Europe/Paris 2012-01-18
-3030254 Bretoncelles Bretoncelles Bretoncelles 48.43122 0.88775 P PPL FR 99 61 613 61061 1367 155 Europe/Paris 2012-01-18
-3030257 Brétigny-sur-Orge Bretigny-sur-Orge Bretigny,Bretigny-sur-Orge,Bretini sir Orz,Brétigny-sur-Orge,Бретињи сир Орж 48.61135 2.30593 P PPL FR A8 91 913 91103 24317 69 Europe/Paris 2011-11-02
-3030264 Bretignolles-sur-Mer Bretignolles-sur-Mer Bretignolles 46.63333 -1.86667 P PPL FR B5 85 853 85035 3293 9 Europe/Paris 2007-11-20
-3030275 Breteuil Breteuil Breteuil-sur-Iton 48.83333 0.91667 P PPL FR A7 27 273 27112 3714 168 Europe/Paris 2010-12-13
-3030276 Breteuil Breteuil Breteuil,Breteuil-sur-Noye 49.63357 2.29509 P PPL FR B6 60 602 60104 4436 83 Europe/Paris 2012-01-18
-3030278 Bretenoux Bretenoux Bretenoux 44.91468 1.84008 P PPL FR B3 46 462 46038 1346 137 Europe/Paris 2012-01-18
-3030283 Breteil Breteil Breteil,Brezhiel 48.14534 -1.89886 P PPL FR A2 35 353 35040 3242 58 Europe/Paris 2012-01-18
-3030300 Brest Brest Brest,Brestia,braista,bu lei si te,buresuto,Брест,ब्रैस्त,ブレスト,布雷斯特 48.4 -4.48333 P PPLA3 FR A2 29 291 29019 144899 59 Europe/Paris 2011-11-02
-3030303 Bressuire Bressuire Bressjuir,Bressuire,Givre-en-Mai,Брессюир 46.85 -0.48333 P PPLA3 FR B7 79 791 79049 20743 176 Europe/Paris 2011-12-08
-3030308 Bressols Bressols Bressols 43.96796 1.33839 P PPL FR B3 82 822 82025 2862 95 Europe/Paris 2012-01-18
-3030323 Bresles Bresles Bresles 49.41044 2.25024 P PPL FR B6 60 601 60103 3934 61 Europe/Paris 2012-01-18
-3030338 Brens Brens Brens 43.88725 1.90716 P PPL FR B3 81 811 81038 1786 136 Europe/Paris 2011-01-13
-3030340 Brenouille Brenouille Brenouille 49.30551 2.54437 P PPL FR B6 60 602 60102 2316 38 Europe/Paris 2012-01-18
-3030374 Brêmes Bremes Bremes,Brêmes 50.85483 1.97688 P PPL FR B4 62 625 62174 1356 15 Europe/Paris 2012-01-18
-3030377 La Crèche La Creche Breloux 46.36667 -0.3 P PPL FR B7 79 792 79048 4883 43 Europe/Paris 2007-11-15
-3030387 Breil-sur-Roya Breil-sur-Roya Breil,Breil-sur-Roya,Brej sir Roaja,Brej sir Roja,Бреј сир Роаја,Бреј сир Роја 43.94341 7.51474 P PPL FR B8 06 062 06023 2138 307 Europe/Paris 2012-01-18
-3030403 Bréhand Brehand Brehand,Brehant-Monkontour,Bréhand 48.40333 -2.57412 P PPL FR A2 22 224 22015 1321 84 Europe/Paris 2012-01-18
-3030405 Bréhal Brehal Brehal,Bréhal 48.89915 -1.51225 P PPL FR 99 50 503 50076 2669 52 Europe/Paris 2011-01-20
-3030440 Brech Brech Brec'h,Brech 47.72134 -2.99862 P PPL FR A2 56 561 56023 5071 47 Europe/Paris 2012-01-18
-3030442 Brécey Brecey Brecey,Brécey 48.72413 -1.16647 P PPL FR 99 50 501 50074 2336 68 Europe/Paris 2012-01-18
-3030444 Brécé Brece Brec'heg,Brece,Brécé 48.10839 -1.48086 P PPL FR A2 35 353 35039 1572 46 Europe/Paris 2012-01-18
-3030446 Brebières Brebieres 50.33333 3.01667 P PPL FR B4 62 621 62173 4522 44 Europe/Paris 2007-11-20
-3030448 Bréauté Breaute Breaute,Bréauté,Le Bourg-Libre 49.62805 0.40005 P PPL FR A7 76 762 76141 1125 116 Europe/Paris 2012-01-18
-3030456 Bréal-sous-Montfort Breal-sous-Montfort Breal,Breal-Monforzh,Breal-Moñforzh,Breal-sous-Montfort,Bréal,Bréal-sous-Montfort 48.04876 -1.86438 P PPL FR A2 35 353 35037 4168 56 Europe/Paris 2012-01-18
-3030457 Brazey-en-Plaine Brazey-en-Plaine Brazey,Brazey-en-Plaine 47.13784 5.21538 P PPL FR A1 21 211 21103 2555 184 Europe/Paris 2012-01-18
-3030459 Bray-sur-Somme Bray-sur-Somme Bray,Bray-sur-Somme 49.94085 2.71847 P PPL FR B6 80 804 80136 1360 48 Europe/Paris 2012-01-18
-3030460 Bray-sur-Seine Bray-sur-Seine Bray,Bray-sur-Seine 48.41371 3.23852 P PPL FR A8 77 773 77051 2135 58 Europe/Paris 2012-01-18
-3030468 Bray-en-Val Bray-en-Val Bray,Bray-en-Val 47.82856 2.36644 P PPL FR A3 45 452 45051 1102 126 Europe/Paris 2012-01-18
-3030473 Bray-Dunes Bray-Dunes Bray,Bray-Dunes,Brayduinen 51.07786 2.51673 P PPL FR B4 59 594 59107 4681 6 Europe/Paris 2011-08-12
-3030484 Brax Brax Brax 44.20277 0.55162 P PPL FR 97 47 471 47040 1694 53 Europe/Paris 2012-01-18
-3030485 Brax Brax Brax 43.61793 1.23957 P PPL FR B3 31 313 31088 2314 190 Europe/Paris 2011-01-09
-3030503 Braud-et-Saint-Louis Braud-et-Saint-Louis Braud,Braud-et-Saint-Louis 45.24703 -0.62438 P PPL FR 97 33 331 33073 1424 8 Europe/Paris 2012-01-18
-3030517 Brassac-les-Mines Brassac-les-Mines Brassac,Brassac-les-Mines 45.41105 3.32915 P PPL FR 98 63 633 63050 3570 402 Europe/Paris 2012-01-18
-3030520 Brassac Brassac Brassac 43.62959 2.49763 P PPL FR B3 81 812 81037 1431 490 Europe/Paris 2012-01-18
-3030522 Brasparts Brasparts Brasparts,Brasparzh 48.30167 -3.95516 P PPL FR A2 29 292 29016 1071 129 Europe/Paris 2012-01-18
-3030524 Brasles Brasles Brasles 49.0481 3.43 P PPL FR B6 02 021 02114 1255 70 Europe/Paris 2012-01-18
-3030529 Bras Bras Bras 43.47183 5.95672 P PPL FR B8 83 833 83021 1888 276 Europe/Paris 2012-01-18
-3030534 Brantôme Brantome Brantome,Brantôme 45.36091 0.65398 P PPL FR 97 24 243 24064 2150 117 Europe/Paris 2012-01-18
-3030542 Branoux-les-Taillades Branoux-les-Taillades Branoux,Branoux-les-Taillades 44.21942 3.99647 P PPL FR A9 30 301 30051 1392 269 Europe/Paris 2012-01-18
-3030546 Branne Branne Branne 44.83333 -0.18333 P PPL FR 97 33 335 33071 1052 8 Europe/Paris 2012-01-18
-3030553 Branges Branges Branges 46.64441 5.18465 P PPL FR A1 71 714 71056 2098 191 Europe/Paris 2012-01-18
-3030561 Brando Brando Brando 42.76667 9.45 P PPL FR A5 2B 2B2 2B043 1682 405 Europe/Paris 2012-01-18
-3030565 Brandérion Branderion Branderion,Brandérion 47.79412 -3.19474 P PPL FR A2 56 561 56021 1030 44 Europe/Paris 2012-01-18
-3030589 Bram Bram 43.24376 2.11341 P PPL FR A9 11 111 11049 3255 137 Europe/Paris 2009-06-24
-3030600 Brain-sur-Allonnes Brain-sur-Allonnes Brain,Brain-sur-Allonnes 47.30325 0.06514 P PPL FR B5 49 493 49041 1826 44 Europe/Paris 2012-01-18
-3030603 Brains Brains Brains,Brenn 47.1685 -1.7229 P PPL FR B5 44 442 44024 2325 19 Europe/Paris 2012-01-18
-3030604 Braine Braine Braine,Braisne 49.34261 3.53262 P PPL FR B6 02 024 02110 2094 52 Europe/Paris 2012-01-18
-3030628 Bracieux Bracieux Bracieux 47.54895 1.5412 P PPL FR A3 41 411 41025 1203 80 Europe/Paris 2012-01-18
-3030640 Bozouls Bozouls Bozouls 44.4705 2.72432 P PPL FR B3 12 122 12033 2429 553 Europe/Paris 2012-01-18
-3030641 Bozel Bozel Frutitidor 45.44288 6.64896 P PPL FR B9 73 731 73055 2028 864 Europe/Paris 2009-01-31
-3030645 Boynes Boynes Boynes 48.11822 2.36006 P PPL FR A3 45 453 45050 1098 112 Europe/Paris 2012-01-18
-3030656 Boyard-Ville Boyard-Ville Bojardvil',Boyard-Ville,Боярдвиль 45.96717 -1.24289 P PPL FR B7 17 172 17337 2991 3 Europe/Paris 2012-02-27
-3030659 Boves Boves Boves 49.84645 2.39605 P PPL FR B6 80 802 80131 2826 35 Europe/Paris 2012-01-18
-3030663 Bouzy-la-Forêt Bouzy-la-Foret Bouzy,Bouzy-la-Foret,Bouzy-la-Forêt 47.8512 2.37773 P PPL FR A3 45 452 45049 1059 123 Europe/Paris 2012-01-18
-3030668 Bouzonville Bouzonville Bouzanville,Bouzonville,Busendorf 49.29188 6.53386 P PPL FR B2 57 571 57106 4293 203 Europe/Paris 2011-01-06
-3030675 Bouzillé Bouzille Bouzille,Bouzillé 47.3375 -1.11143 P PPL FR B5 49 492 49040 1353 78 Europe/Paris 2012-01-18
-3030676 Bouzigues Bouzigues Bouzigues 43.4481 3.6578 P PPL FR A9 34 343 34039 1352 9 Europe/Paris 2012-01-18
-3030708 Bouxwiller Bouxwiller Bouksviler,Bouxwiller,Buchsweiler,Buksvile,Боуксвилер,Буксвиље 48.82495 7.48117 P PPL FR C1 67 674 67061 3994 226 Europe/Paris 2007-07-10
-3030713 Bouxières-aux-Dames Bouxieres-aux-Dames Bouxieres,Bouxieres-aux-Dames,Bouxieres-sur-Mont,Bouxières,Bouxières-aux-Dames,Bouxières-sur-Mont 48.75194 6.16918 P PPL FR B2 54 543 54090 4205 243 Europe/Paris 2012-01-18
-3030714 Bouxières-aux-Chênes Bouxieres-aux-Chenes Bouxieres,Bouxieres-aux-Chenes,Bouxières,Bouxières-aux-Chênes 48.77115 6.2603 P PPL FR B2 54 543 54089 1343 301 Europe/Paris 2012-01-18
-3030718 Bouvron Bouvron Bolvronn,Bouvron,Bouyron 47.41726 -1.84679 P PPL FR B5 44 441 44023 2618 47 Europe/Paris 2012-01-18
-3030723 Bouville Bouville Bouville 49.56193 0.89514 P PPL FR A7 76 763 76135 1018 118 Europe/Paris 2012-01-18
-3030727 Bouvigny-Boyeffles Bouvigny-Boyeffles Bouvigny,Bouvigny-Boyeffles 50.42146 2.67209 P PPL FR B4 62 627 62170 2607 118 Europe/Paris 2012-01-18
-3030728 Bouvignies Bouvignies Bouvignies 50.43627 3.24361 P PPL FR B4 59 593 59105 1561 22 Europe/Paris 2012-01-18
-3030732 Bouvesse-Quirieu Bouvesse-Quirieu Bouvesse,Bouvesse-Quirieu 45.79503 5.41574 P PPL FR B9 38 382 38054 1056 238 Europe/Paris 2012-01-18
-3030742 Bouttencourt Bouttencourt Bouttencourt 49.93725 1.63431 P PPL FR B6 80 801 80126 1036 74 Europe/Paris 2012-01-18
-3030755 Boutigny-sur-Essonne Boutigny-sur-Essonne Boutigny 48.43333 2.38333 P PPL FR A8 91 911 91099 3171 119 Europe/Paris 2007-09-12
-3030757 Boutiers-Saint-Trojan Boutiers-Saint-Trojan Boutiers,Boutiers-Saint-Trojan 45.71667 -0.3 P PPL FR B7 16 162 16058 1430 13 Europe/Paris 2012-01-18
-3030772 Bout-du-Pont-de-Larn Bout-du-Pont-de-Larn Bout-du-Pont-de-Larn 43.49738 2.41642 P PPL FR B3 81 812 81036 1138 248 Europe/Paris 2012-01-18
-3030780 Boutavent Boutavent 49.59281 1.79916 P PPLA4 FR B6 60 601 60096 83 186 Europe/Paris 2011-07-31
-3030787 Boussy-Saint-Antoine Boussy-Saint-Antoine Boussy-Saint-Antoine,Boussy-sous-Senart,Boussy-sous-Sénart 48.69101 2.5306 P PPL FR A8 91 912 91097 6786 58 Europe/Paris 2012-01-18
-3030799 Boussois Boussois 50.28907 4.04117 P PPL FR B4 59 591 59104 3553 125 Europe/Paris 2009-01-18
-3030803 Boussières Boussieres Boussieres,Boussières 47.15866 5.90314 P PPL FR A6 25 251 25084 1065 286 Europe/Paris 2012-01-18
-3030819 Bousse Bousse Bousse 49.27925 6.19525 P PPL FR B2 57 577 57102 2306 165 Europe/Paris 2012-01-18
-3030822 Boussay Boussay Beuzid-Klison,Boussay 47.04476 -1.18476 P PPL FR B5 44 442 44022 2553 80 Europe/Paris 2012-01-18
-3030845 Bousies Bousies Bousies 50.15097 3.61752 P PPL FR B4 59 591 59099 1722 143 Europe/Paris 2012-01-18
-3030847 Bousbecque Bousbecque Bousbecque,Bousbecques 50.77123 3.08459 P PPL FR B4 59 595 59098 4245 21 Europe/Paris 2012-01-18
-3030857 Bourth Bourth Bourth,Burt,Бурт 48.76846 0.80911 P PPL FR A7 27 273 27108 1219 193 Europe/Paris 2012-01-18
-3030876 Bourron-Marlotte Bourron-Marlotte Bourron 48.34051 2.70041 P PPL FR A8 77 774 77048 3061 78 Europe/Paris 2008-10-16
-3030891 Bourogne Bourogne Bourogne 47.56287 6.91613 P PPL FR A6 90 901 90017 2105 348 Europe/Paris 2012-01-18
-3030895 Bournoncle-Saint-Pierre Bournoncle-Saint-Pierre Bournoncle,Bournoncle-Saint-Pierre 45.34301 3.31837 P PPL FR 98 43 431 43038 1016 464 Europe/Paris 2012-01-18
-3030902 Bournezeau Bournezeau Bournezeau 46.63714 -1.17107 P PPL FR B5 85 852 85034 2755 79 Europe/Paris 2012-01-18
-3030919 Bourlon Bourlon Bourlon 50.17692 3.11425 P PPL FR B4 62 621 62164 1276 80 Europe/Paris 2012-01-18
-3030944 Bourgueil Bourgueil Bourgueil 47.28333 0.16612 P PPL FR A3 37 371 37031 4359 47 Europe/Paris 2012-01-18
-3030945 Bourguébus Bourguebus Bourguebus,Bourguébus 49.12187 -0.29786 P PPL FR 99 14 142 14092 1118 50 Europe/Paris 2012-01-18
-3030946 Bourgtheroulde-Infreville Bourgtheroulde-Infreville 49.3 0.88333 P PPL FR A7 27 272 27105 2969 122 Europe/Paris 2007-11-21
-3030947 Bourg Bourg Bourg-sur-Gironde 45.04062 -0.55893 P PPL FR 97 33 331 33067 2323 -9999 Europe/Paris 2012-02-22
-3030949 Bourg-Saint-Maurice Bourg-Saint-Maurice Bourg-Saint-Maurice,Nargue-Sarde,Pente-Rude 45.61716 6.76902 P PPL FR B9 73 731 73054 8114 829 Europe/Paris 2012-01-18
-3030953 Bourg-Saint-Andéol Bourg-Saint-Andeol Bourg-Saint-Andeol,Bourg-Saint-Andéol,Bourg-sur-Rhone,Bourg-sur-Rhône,Commune-Libre 44.37566 4.64273 P PPL FR B9 07 072 07042 8301 69 Europe/Paris 2012-01-18
-3030960 Bourgoin Bourgoin 45.58333 5.28333 P PPL FR B9 38 382 38053 24790 289 Europe/Paris 2012-02-27
-3030965 Bourgogne Bourgogne Bourgogne,Burgundija,Бургундия 49.34962 4.07111 P PPL FR A4 51 513 51075 1018 91 Europe/Paris 2012-01-18
-3030970 Bourgneuf-en-Retz Bourgneuf-en-Retz Bourc'hnevez-Raez,Bourgneuf,Bourgneuf-en-Retz 47.04122 -1.9502 P PPL FR B5 44 443 44021 2591 6 Europe/Paris 2012-01-18
-3030979 Bourgneuf Bourgneuf Bourgneuf 46.16766 -1.02141 P PPL FR B7 17 173 17059 1120 40 Europe/Paris 2012-01-18
-3030983 la Guingueta d'Ix la Guingueta d'Ix Bourg-Madame,la Guingueta,la Guingueta d'Ix 42.43416 1.94391 P PPL FR A9 66 663 66025 1206 1143 Europe/Paris 2011-11-02
-3030985 Bourg-lès-Valence Bourg-les-Valence Bourg,Bourg-les-Valence,Bourg-lès-Valence 44.95601 4.91023 P PPL FR B9 26 263 26058 19770 149 Europe/Paris 2012-01-18
-3030990 Bourg-la-Reine Bourg-la-Reine Bourg-Egalite,Bourg-Egalité,Bourg-la-Reine,Bourge la Reine 48.77888 2.31781 P PPL FR A8 92 921 92014 18870 55 Europe/Paris 2012-01-18
-3030994 Bourghelles Bourghelles Bourghelles 50.56501 3.24448 P PPL FR B4 59 595 59096 1444 49 Europe/Paris 2012-01-18
-3031005 Bourges Bourges Borges,Bourges,Burzh,bu er ri,buruju,Бурж,ブールジュ,布尔日 47.08333 2.4 P PPLA2 FR A3 18 181 18033 67987 144 Europe/Paris 2011-11-02
-3031009 Bourg-en-Bresse Bourg-en-Bresse Borg,Bourg,Bourg-Regenere,Bourg-Regénéré,Bourg-en-Bresse,Burg an Bres,Bôrg,Epi-d'Ain,Epi-d'Or,buru=kan=buresu,Бург ан Брес,ブール=カン=ブレス 46.20574 5.2258 P PPLA2 FR B9 01 012 01053 45340 231 Europe/Paris 2011-11-02
-3031017 Bourg-de-Thizy Bourg-de-Thizy Bourg,Bourg-de-Thizy 46.03371 4.29904 P PPL FR B9 69 692 69025 2863 402 Europe/Paris 2012-01-18
-3031019 Bourg-des-Comptes Bourg-des-Comptes Bourg-des-Comptes,Bourg-la-Montagne,Gwikomm 47.92934 -1.74534 P PPL FR A2 35 352 35033 2188 36 Europe/Paris 2012-01-18
-3031020 Bourg-de-Péage Bourg-de-Peage Bourg-de-Peage,Bourg-de-Péage,Le Bourg-de-Peage,Le Bourg-du-Peage,Le Bourg-du-Péage,Unite-sur-Isere,Unité-sur-Isère 45.02825 5.07162 P PPL FR B9 26 263 26057 10090 173 Europe/Paris 2012-01-18
-3031027 Bourg-Blanc Bourg-Blanc Ar Vourc'h-Wenn,Bourg-Blanc 48.49867 -4.50406 P PPL FR A2 29 291 29015 3231 60 Europe/Paris 2012-01-18
-3031029 Bourgbarré Bourgbarre Bourgbarre,Bourgbarré,Bourvarred 47.99515 -1.61419 P PPL FR A2 35 353 35032 2521 49 Europe/Paris 2012-01-18
-3031030 Bourg-Argental Bourg-Argental Bourg-Argental 45.2959 4.56037 P PPL FR B9 42 423 42023 2835 540 Europe/Paris 2012-01-18
-3031032 Bourganeuf Bourganeuf Bourganeuf 45.95268 1.7552 P PPL FR B1 23 232 23030 3406 439 Europe/Paris 2012-01-18
-3031035 Bourg-Achard Bourg-Achard Bourg-Achard 49.35322 0.81623 P PPL FR A7 27 272 27103 2652 137 Europe/Paris 2012-01-18
-3031080 Bourcefranc-le-Chapus Bourcefranc-le-Chapus 45.85 -1.15 P PPL FR B7 17 172 17058 3275 4 Europe/Paris 2007-11-21
-3031081 Bourbriac Bourbriac Boulvriag,Bourbriac 48.47384 -3.18758 P PPL FR A2 22 222 22013 2349 209 Europe/Paris 2012-01-18
-3031085 Bourbourg Bourbourg Bourbourg 50.94783 2.19576 P PPL FR B4 59 594 59094 7059 4 Europe/Paris 2012-01-18
-3031086 Bourbonne-les-Bains Bourbonne-les-Bains Bourbonne,Bourbonne-les-Bains 47.95305 5.74801 P PPL FR A4 52 522 52060 2239 273 Europe/Paris 2012-01-18
-3031090 Bourbon-Lancy Bourbon-Lancy Bellevue-les-Bains,Bourbon-Lancy 46.62214 3.76953 P PPL FR A1 71 713 71047 5484 254 Europe/Paris 2012-01-18
-3031098 Bouray-sur-Juine Bouray-sur-Juine Bouray,Bouray-sur-Juine 48.51981 2.30001 P PPL FR A8 91 911 91095 1950 71 Europe/Paris 2012-01-18
-3031115 Boult-sur-Suippe Boult-sur-Suippe Boult,Boult-sur-Suippe 49.37149 4.14632 P PPL FR A4 51 513 51074 1366 71 Europe/Paris 2012-01-18
-3031129 Bouloire Bouloire Bouloire 47.97385 0.55009 P PPL FR B5 72 722 72042 2029 129 Europe/Paris 2012-01-18
-3031133 Boulogne-sur-Mer Boulogne-sur-Mer Bolonha-sobre-o-Mar,Bononia,Boulogne,Boulogne-sur-Mer,Bulon sir Mer,Bulon',Bulon'-sjur-Mer,Bulonjo,Bulonjo-ce-Maro,Bulonjo-sur-Maro,Bulonjo-ĉe-Maro,Gesoriacum,Itius Portus,Port-de-l'Union,Portus Itius,buronyu=shuru=meru,Булонь,Булонь-сюр-Мер,Булоњ сир Мер,ブローニュ=シュル=メール 50.71667 1.61667 P PPLA3 FR B4 62 623 62160 47013 25 Europe/Paris 2011-11-02
-3031135 Boulogne-sur-Gesse Boulogne-sur-Gesse Boulogne 43.3 0.65 P PPL FR B3 31 312 31080 1662 334 Europe/Paris 2007-11-21
-3031137 Boulogne-Billancourt Boulogne-Billancourt Billancourt,Boulogne,Boulogne-Billancourt,Boulogne-sur-Seine,Bulon Bijankur,buronyu=biyankuru,Булоњ Бијанкур,ブローニュ=ビヤンクール 48.83333 2.25 P PPLA3 FR A8 92 923 92012 108782 38 Europe/Paris 2011-11-04
-3031144 Bouloc Bouloc Bouloc 43.78163 1.40522 P PPL FR B3 31 313 31079 3280 204 Europe/Paris 2011-01-09
-3031146 Boulleret Boulleret Boulleret 47.42419 2.87342 P PPL FR A3 18 181 18032 1420 170 Europe/Paris 2012-01-18
-3031158 Bouligny Bouligny Bouligny 49.29189 5.74248 P PPL FR B2 55 553 55063 2758 262 Europe/Paris 2012-01-18
-3031161 Boulieu-lès-Annonay Boulieu-les-Annonay Boulieu,Boulieu-les-Annonay,Boulieu-lès-Annonay 45.27084 4.66718 P PPL FR B9 07 073 07041 2222 443 Europe/Paris 2012-01-18
-3031164 Bouliac Bouliac Bouliac 44.81724 -0.50248 P PPL FR 97 33 332 33065 3558 69 Europe/Paris 2012-01-18
-3031167 Bouleurs Bouleurs Bouleurs 48.88181 2.90728 P PPL FR A8 77 771 77047 1358 99 Europe/Paris 2012-01-18
-3031178 Boulbon Boulbon Boul-la-Montagne,Boulbon,Bourg-Montagne 43.86232 4.69391 P PPL FR B8 13 132 13017 1587 24 Europe/Paris 2011-01-19
-3031180 Boulazac Boulazac 45.11667 0.75 P PPLA4 FR 97 24 243 24053 6680 235 Europe/Paris 2011-07-31
-3031182 Boulay-Moselle Boulay-Moselle Boulay 49.18333 6.5 P PPLA3 FR B2 57 571 57097 4583 231 Europe/Paris 2010-04-02
-3031191 Boulange Boulange Boulange 49.38093 5.95231 P PPL FR B2 57 578 57096 1844 324 Europe/Paris 2012-01-18
-3031205 Boujan-sur-Libron Boujan-sur-Libron Boujan,Boujan-sur-Libron 43.36996 3.24759 P PPL FR A9 34 341 34037 3011 64 Europe/Paris 2012-01-18
-3031222 Bouin Bouin Bonn,Bouin 46.97314 -1.9983 P PPL FR B5 85 853 85029 2385 5 Europe/Paris 2012-01-18
-3031226 Bouilly Bouilly Bouilly 48.19674 4.00011 P PPL FR A4 10 103 10051 1144 156 Europe/Paris 2012-01-18
-3031238 Bouillé-Loretz Bouille-Loretz Bouille-Loretz,Bouillé-Loretz 47.07911 -0.27178 P PPL FR B7 79 791 79043 1103 46 Europe/Paris 2012-01-18
-3031240 Bouillargues Bouillargues Bouillargues 43.79733 4.42853 P PPL FR A9 30 302 30047 5714 70 Europe/Paris 2012-01-18
-3031268 Bouguenais Bouguenais Bougenais,Bouguenais,Kervegon 47.17762 -1.62143 P PPL FR B5 44 442 44020 16824 23 Europe/Paris 2012-01-18
-3031277 Bougival Bougival Bougivais,Bougival 48.86223 2.14148 P PPL FR A8 78 783 78092 8895 87 Europe/Paris 2012-01-18
-3031293 Boufféré Bouffere Bouffere,Boufféré 46.96179 -1.33965 P PPL FR B5 85 852 85027 1892 50 Europe/Paris 2012-01-18
-3031294 Bouffémont Bouffemont Bouffemont,Bouffémont 49.04377 2.29796 P PPL FR A8 95 952 95091 5652 121 Europe/Paris 2012-01-18
-3031315 Boué Boue Boue,Boué 50.01141 3.69608 P PPL FR B6 02 025 02103 1300 147 Europe/Paris 2012-01-18
-3031368 Bouchemaine Bouchemaine 47.42234 -0.60888 P PPL FR B5 49 491 49035 6534 26 Europe/Paris 2010-07-15
-3031380 Bouchain Bouchain Bouchain 50.28519 3.31491 P PPL FR B4 59 596 59092 4377 43 Europe/Paris 2012-01-18
-3031387 Bouc-Bel-Air Bouc-Bel-Air Bouc,Bouc-Bel-Air 43.45217 5.413 P PPL FR B8 13 131 13015 13184 253 Europe/Paris 2011-01-18
-3031389 Boucau Boucau Bokale,Boucau,Le Boucau 43.5277 -1.46556 P PPL FR 97 64 641 64140 7532 34 Europe/Paris 2008-07-27
-3031403 Bouaye Bouaye Bouaye,Bouez 47.14263 -1.69306 P PPL FR B5 44 442 44018 5673 18 Europe/Paris 2012-01-18
-3031409 Bouafle Bouafle Bouafle 48.96463 1.9012 P PPL FR A8 78 781 78090 2115 69 Europe/Paris 2012-01-18
-3031462 Bosmie-l'Aiguille Bosmie-l'Aiguille Bosmic 45.75 1.2 P PPL FR B1 87 872 87021 2300 250 Europe/Paris 2007-11-21
-3031469 Bosdarros Bosdarros Bosdarros 43.21667 -0.36667 P PPL FR 97 64 643 64139 1016 277 Europe/Paris 2012-01-18
-3031479 Bosc-le-Hard Bosc-le-Hard Bosc,Bosc-le-Hard 49.62734 1.17483 P PPL FR A7 76 761 76125 1445 161 Europe/Paris 2012-01-18
-3031501 Bort-les-Orgues Bort-les-Orgues Bort,Bort-les-Orgues 45.4 2.5 P PPL FR B1 19 193 19028 3703 437 Europe/Paris 2012-01-18
-3031516 Bornel Bornel Bornel 49.1982 2.20912 P PPL FR B6 60 601 60088 3433 49 Europe/Paris 2012-01-18
-3031532 Bormes-les-Mimosas Bormes-les-Mimosas Bormes,Bormes-les-Mimosas 43.14073 6.33863 P PPL FR B8 83 832 83019 6857 26 Europe/Paris 2012-01-18
-3031537 Borgo Borgo 42.55488 9.42636 P PPL FR A5 2B 2B2 2B042 5538 266 Europe/Paris 2008-05-13
-3031552 Bords Bords Bords 45.89722 -0.79528 P PPL FR B7 17 175 17053 1209 14 Europe/Paris 2012-01-18
-3031567 Bordes Bordes Bordes 43.23333 -0.28333 P PPL FR 97 64 643 64138 2093 221 Europe/Paris 2012-01-18
-3031582 Bordeaux Bordeaux BOD,Bordeaux,Bordele,Bordeos,Bordeu,Bordeus,Bordo,Bordox,Bordozo,Bordèu,Bordéus,Bordò,Bordôx,Bornto,Bourdel,Burdeos,Burdeus,Burdigala,Gorad Bardo,bo er duo,boleudo,bordo,bordu,borudo,bwrdw,bxr do,Μπορντό,Бордо,Горад Бардо,Բորդո,בורדו,بوردو,بورڈیکس,बोर्दू,बोर्दो,บอร์โด,ბორდო,ボルドー,波尔多,보르도 44.84044 -0.5805 P PPLA FR 97 33 332 33063 231844 20 Europe/Paris 2012-01-18
-3031605 Boran-sur-Oise Boran-sur-Oise Boran,Boran-sur-Oise 49.16715 2.35803 P PPL FR B6 60 604 60086 2203 39 Europe/Paris 2012-01-18
-3031612 Boos Boos Boos 49.38848 1.20348 P PPL FR A7 76 763 76116 3028 156 Europe/Paris 2012-01-18
-3031616 Boofzheim Boofzheim Boofzheim 48.33212 7.68035 P PPL FR C1 67 675 67055 1100 160 Europe/Paris 2012-01-18
-3031639 Bonson Bonson Bonson 45.52456 4.21659 P PPL FR B9 42 421 42022 3881 379 Europe/Paris 2012-01-18
-3031644 Bons-en-Chablais Bons-en-Chablais 46.26667 6.38333 P PPL FR B9 74 744 74043 4408 556 Europe/Paris 2007-11-21
-3031656 Bonny-sur-Loire Bonny-sur-Loire Bonny,Bonny-sur-Loire 47.56172 2.83933 P PPL FR A3 45 451 45040 2025 139 Europe/Paris 2012-01-18
-3031665 Bonnieux Bonnieux Bonnieux 43.82452 5.30739 P PPL FR B8 84 841 84020 1356 351 Europe/Paris 2012-01-18
-3031667 Bonnières-sur-Seine Bonnieres-sur-Seine Bonnieres,Bonnieres-sur-Seine,Bonnières,Bonnières-sur-Seine 49.03525 1.5783 P PPL FR A8 78 781 78089 4187 29 Europe/Paris 2012-01-18
-3031679 Bonneville Bonneville Bonneville,Mont-Mole,Mont-Molez 46.0802 6.40726 P PPLA3 FR B9 74 742 74042 11722 450 Europe/Paris 2011-11-02
-3031702 Bonneval Bonneval Bonneval 48.18312 1.38524 P PPL FR A3 28 282 28051 4213 125 Europe/Paris 2012-01-18
-3031709 Bonneuil-sur-Marne Bonneuil-sur-Marne Bonneuil,Bonneuil-sur-Marne 48.7695 2.4793 P PPL FR A8 94 941 94011 18723 48 Europe/Paris 2012-01-18
-3031710 Bonneuil-Matours Bonneuil-Matours Bonneuil-Matouis,Bonneuil-Matours 46.68155 0.57063 P PPL FR B7 86 861 86032 1927 62 Europe/Paris 2012-01-18
-3031723 Bonnétable Bonnetable Bonnetable,Bonnétable 48.17908 0.4257 P PPL FR B5 72 722 72039 4198 106 Europe/Paris 2012-01-18
-3031729 Bonne-sur-Ménoge Bonne-sur-Menoge Bonne,Bonne-sur-Menoge,Bonne-sur-Ménoge 46.166 6.32276 P PPL FR B9 74 743 74040 2481 496 Europe/Paris 2012-02-27
-3031732 Bonnes Bonnes Bonnes 46.60386 0.59791 P PPL FR B7 86 863 86031 1573 64 Europe/Paris 2012-01-18
-3031743 Bonnemain Bonnemain Bonmaen,Bonnemain 48.46652 -1.76774 P PPL FR A2 35 354 35029 1249 71 Europe/Paris 2012-01-18
-3031744 Bonnelles Bonnelles Bonnelles 48.61816 2.02922 P PPL FR A8 78 782 78087 2064 121 Europe/Paris 2012-01-18
-3031769 Bonnefamille Bonnefamille Bonnefamille 45.5959 5.13035 P PPL FR B9 38 382 38048 1052 335 Europe/Paris 2012-01-18
-3031783 Bonnat Bonnat Bonnat 46.33333 1.9 P PPL FR B1 23 232 23025 1293 327 Europe/Paris 2012-01-18
-3031789 Bonnac-la-Côte Bonnac-la-Cote Bonnac,Bonnac-la-Cote,Bonnac-la-Côte 45.94212 1.28417 P PPL FR B1 87 872 87020 1372 422 Europe/Paris 2012-01-18
-3031801 Bonifacio Bonifacio Bonifacho,Bonifacio,Bonifaziu,Bunifaziu,La Ville de Bonifacio,Бонифачо 41.3874 9.15942 P PPL FR A5 2A 2A4 2A041 2781 61 53 Europe/Paris 2007-11-29
-3031813 Bon-Encontre Bon-Encontre Bon-Encontre 44.18518 0.66759 P PPL FR 97 47 471 47032 6076 58 Europe/Paris 2012-01-18
-3031815 Bondy Bondy Bondi,Bondy,Бонди 48.9018 2.48931 P PPL FR A8 93 931 93010 48268 51 Europe/Paris 2012-01-18
-3031817 Bondues Bondues Bondues 50.70196 3.09497 P PPL FR B4 59 595 59090 11285 42 Europe/Paris 2012-01-18
-3031818 Bondoufle Bondoufle Bondoufle 48.61294 2.37775 P PPL FR A8 91 912 91086 9619 80 Europe/Paris 2012-01-18
-3031835 Bonchamp-lès-Laval Bonchamp-les-Laval Bonchamp,Bonchamp-les-Laval,Bonchamp-lès-Laval 48.07357 -0.7 P PPL FR B5 53 532 53034 5094 86 Europe/Paris 2012-01-18
-3031848 Bompas Bompas Bompas,Bompàs 42.73333 2.93333 P PPL FR A9 66 662 66021 7619 16 Europe/Paris 2012-01-18
-3031862 Bologne Bologne Bologne 48.20004 5.14209 P PPL FR A4 52 521 52058 1897 250 Europe/Paris 2012-01-18
-3031864 Bollwiller Bollwiller 47.85832 7.26179 P PPL FR C1 68 683 68043 3592 232 Europe/Paris 2007-07-07
-3031865 Bollezeele Bollezeele Bollezeele 50.86687 2.34751 P PPL FR B4 59 594 59089 1376 22 Europe/Paris 2012-01-18
-3031868 Bollène Bollene Bollene,Bollène 44.28476 4.75303 P PPL FR B8 84 842 84019 14703 58 Europe/Paris 2012-01-18
-3031871 Bolbec Bolbec Bolbec 49.57321 0.47339 P PPL FR A7 76 762 76114 13133 54 Europe/Paris 2012-01-18
-3031896 Boissy-sous-Saint-Yon Boissy-sous-Saint-Yon Boissy,Boissy-la-Montagne,Boissy-sous-Saint-Yon 48.55379 2.21212 P PPL FR A8 91 911 91085 3762 91 Europe/Paris 2012-01-18
-3031898 Boissy-Saint-Léger Boissy-Saint-Leger Boissy,Boissy-Saint-Leger,Boissy-Saint-Léger,Boissy-la-Montagne 48.7515 2.51163 P PPL FR A8 94 941 94004 15877 89 Europe/Paris 2012-01-18
-3031905 Boissy-le-Cutté Boissy-le-Cutte Boissy,Boissy-le-Cutte,Boissy-le-Cutté 48.4702 2.28326 P PPL FR A8 91 911 91080 1258 76 Europe/Paris 2012-01-18
-3031906 Boissy-le-Châtel Boissy-le-Chatel Boissy,Boissy-le-Chatel,Boissy-le-Châtel 48.82073 3.13651 P PPL FR A8 77 771 77042 2926 116 Europe/Paris 2012-01-18
-3031917 Boissise-le-Roi Boissise-le-Roi Boissise-la-Nation,Boissise-le-Roi 48.5248 2.56971 P PPL FR A8 77 772 77040 4021 68 Europe/Paris 2012-01-18
-3031930 Boisseuil Boisseuil Boisseuil 45.76977 1.33333 P PPL FR B1 87 872 87019 2066 381 Europe/Paris 2012-01-18
-3031941 Boisset-et-Gaujac Boisset-et-Gaujac Boisset,Boisset-et-Gaujac 44.0475 4.00861 P PPL FR A9 30 301 30042 2181 167 Europe/Paris 2012-01-18
-3031949 Boisseron Boisseron Boisseron 43.75795 4.0797 P PPL FR A9 34 343 34033 1315 45 Europe/Paris 2010-12-25
-3031998 Boismé Boisme Boisme,Boismé 46.77393 -0.43476 P PPL FR B7 79 791 79038 1123 154 Europe/Paris 2012-01-18
-3032008 Bois-le-Roi Bois-le-Roi Bois-la-Nation,Bois-le-Roi 48.47348 2.70464 P PPL FR A8 77 774 77037 5903 60 Europe/Paris 2012-01-18
-3032025 Bois-Guillaume Bois-Guillaume Bois-Guillaume 49.4602 1.12219 P PPL FR A7 76 763 76108 13711 160 Europe/Paris 2012-01-18
-3032027 Bois-Grenier Bois-Grenier Bois-Grenier 50.64985 2.87409 P PPL FR B4 59 595 59088 1491 19 Europe/Paris 2012-01-18
-3032033 Boisgervilly Boisgervilly Boisgervilly,Koad-Yarnvili 48.16692 -2.06426 P PPL FR A2 35 353 35027 1350 94 Europe/Paris 2012-01-18
-3032062 Bois-de-Cené Bois-de-Cene Bois-de-Cene,Bois-de-Cené,Koed-Keneg 46.93689 -1.88656 P PPL FR B5 85 853 85024 1364 9 Europe/Paris 2012-01-18
-3032064 Bois-d'Arcy Bois-d'Arcy Bois-d'Arcy 48.79966 2.02325 P PPL FR A8 78 784 78073 13475 167 Europe/Paris 2012-01-18
-3032069 Boiscommun Boiscommun Boiscommun 48.03576 2.38333 P PPL FR A3 45 453 45035 1104 137 Europe/Paris 2012-01-18
-3032070 Bois-Colombes Bois-Colombes Boa Kolomb,Boa Kolon,Bois-Colombes,Боа Коломб,Боа Колон 48.91936 2.27484 P PPL FR A8 92 922 92009 24300 30 Europe/Paris 2012-01-18
-3032118 Boigny-sur-Bionne Boigny-sur-Bionne Boigny 47.93333 2.01667 P PPL FR A3 45 452 45034 2107 111 Europe/Paris 2007-11-21
-3032125 Bohars Bohars Boc'harzh,Bohars 48.42984 -4.51292 P PPL FR A2 29 291 29011 3350 71 Europe/Paris 2012-01-18
-3032127 Bohain-en-Vermandois Bohain-en-Vermandois Bohain,Bohain-en-Vermandois 49.9873 3.453 P PPL FR B6 02 023 02095 6299 139 Europe/Paris 2012-01-18
-3032146 Boeschepe Boeschepe 50.8 2.7 P PPL FR B4 59 594 59086 2067 55 Europe/Paris 2007-11-20
-3032147 Bœrsch Boersch 48.47656 7.43998 P PPL FR C1 67 673 67052 2256 236 Europe/Paris 2007-11-14
-3032151 Boën Boen Boen,Boen-sur-Lignon,Boën,Boën-sur-Lignon 45.74618 4.00959 P PPL FR B9 42 421 42019 3163 446 Europe/Paris 2012-01-18
-3032153 Boeil-Bezing Boeil-Bezing Boeil,Boeil-Bezing 43.21667 -0.26667 P PPL FR 97 64 643 64133 1013 232 Europe/Paris 2012-01-18
-3032154 Boëge Boege Boege,Boëge 46.20954 6.40383 P PPL FR B9 74 744 74037 1574 740 Europe/Paris 2012-01-18
-3032156 Boé Boe Boe,Boé 44.16006 0.62905 P PPL FR 97 47 471 47031 4746 45 Europe/Paris 2012-01-18
-3032160 Bodilis Bodilis Bodilis,Bodiliz 48.52978 -4.11567 P PPL FR A2 29 293 29010 1439 113 Europe/Paris 2012-01-18
-3032179 Bobigny Bobigny Bobigny,Bobin'i,Bobini,bobini,Бобиньи,Бобињи,ボビニー 48.9 2.45 P PPLA2 FR A8 93 931 93008 44962 53 Europe/Paris 2011-12-08
-3032194 Blotzheim Blotzheim Blockhajm,Blotzheim,Блоцхајм 47.60205 7.4963 P PPL FR C1 68 684 68042 3623 268 Europe/Paris 2012-01-18
-3032202 Blonville-sur-Mer Blonville-sur-Mer Blonville,Blonville-sur-Mer 49.33709 0.02709 P PPL FR 99 14 143 14079 1412 7 Europe/Paris 2012-01-18
-3032213 Blois Blois Bleaz,Bloa,Blois,Blua,burowa,Блоа,Блуа,ブロワ 47.58333 1.33333 P PPLA2 FR A3 41 411 41018 53660 67 Europe/Paris 2011-11-02
-3032214 Blodelsheim Blodelsheim Blodelsheim 47.88411 7.53678 P PPL FR C1 68 683 68041 1468 208 Europe/Paris 2012-01-18
-3032228 Bligny-lès-Beaune Bligny-les-Beaune Bligny,Bligny-les-Beaune,Bligny-lès-Beaune 46.98631 4.8262 P PPL FR A1 21 211 21086 1230 220 Europe/Paris 2012-01-18
-3032238 Bliesbruck Bliesbruck Bliesbauchen,Bliesbruck,Bliesbrucken,Bliesbrücken 49.11517 7.18356 P PPL FR B2 57 576 57091 1024 227 Europe/Paris 2012-01-18
-3032251 Bletterans Bletterans Betterans,Bletterans 46.74673 5.45444 P PPL FR A6 39 392 39056 1427 201 Europe/Paris 2012-01-18
-3032267 Bléré Blere Blere,Bléré 47.32738 0.99186 P PPL FR A3 37 372 37027 4794 60 Europe/Paris 2012-01-18
-3032269 Blérancourt Blerancourt Blerancourt,Blérancourt,Dlerancourt,Dlérancourt 49.51667 3.15 P PPL FR B6 02 022 02093 1257 69 Europe/Paris 2012-01-18
-3032274 Blénod-lès-Toul Blenod-les-Toul Blenod,Blenod-les-Toul,Blénod,Blénod-lès-Toul 48.59814 5.83956 P PPL FR B2 54 544 54080 1033 272 Europe/Paris 2012-01-18
-3032275 Blénod-lès-Pont-à-Mousson Blenod-les-Pont-a-Mousson Blenod,Blenod-les-Pont-a-Mousson,Blénod,Blénod-lès-Pont-à-Mousson,Les-Pont-a-Mousson,Les-Pont-à-Mousson 48.88487 6.04844 P PPL FR B2 54 543 54079 5014 184 Europe/Paris 2012-01-18
-3032278 Bléneau Bleneau Bleneau,Bléneau 47.7 2.95 P PPL FR A1 89 891 89046 1500 166 Europe/Paris 2012-01-18
-3032279 Blendecques Blendecques Blendecques 50.71843 2.28601 P PPL FR B4 62 625 62139 5331 12 Europe/Paris 2012-01-18
-3032292 Blaye-les-Mines Blaye-les-Mines Blaye,Blaye-les-Mines 44.03073 2.13166 P PPL FR B3 81 811 81033 3282 342 Europe/Paris 2012-01-18
-3032296 Blavozy Blavozy Blavozy 45.0572 3.97993 P PPL FR 98 43 432 43032 1411 703 Europe/Paris 2010-11-19
-3032306 Blauzac Blauzac Blauzac 43.96151 4.3693 P PPL FR A9 30 302 30041 1031 116 Europe/Paris 2012-01-18
-3032308 Blausasc Blausasc Blausasc 43.8069 7.36883 P PPL FR B8 06 062 06019 1302 469 Europe/Paris 2012-01-18
-3032319 Blaringhem Blaringhem Blaringhem 50.6911 2.40321 P PPL FR B4 59 594 59084 2063 24 Europe/Paris 2012-01-18
-3032326 Blanzy Blanzy Blanzy,Blanzy-sur-Bourbince 46.70012 4.38833 P PPL FR A1 71 711 71040 7312 298 Europe/Paris 2012-01-18
-3032331 Blanzat Blanzat Blanzat 45.83137 3.08111 P PPL FR 98 63 632 63042 4096 381 Europe/Paris 2012-01-18
-3032340 Blanquefort Blanquefort Blanquefort 44.91248 -0.63663 P PPL FR 97 33 332 33056 16636 26 Europe/Paris 2012-01-18
-3032349 Blangy-sur-Bresle Blangy-sur-Bresle Blangy,Blangy-sur-Bresle 49.93211 1.62514 P PPL FR A7 76 761 76101 3527 47 Europe/Paris 2012-01-18
-3032403 Blancafort Blancafort Blancafort 47.53219 2.52981 P PPL FR A3 18 183 18030 1024 175 Europe/Paris 2012-01-18
-3032430 Blamont Blamont Blamont 47.38513 6.848 P PPL FR A6 25 252 25063 1121 564 Europe/Paris 2012-01-18
-3032440 Blaison-Gohier Blaison-Gohier 47.39951 -0.37723 P PPL FR B5 49 491 49029 1014 30 Europe/Paris 2007-11-14
-3032452 Blainville-sur-Orne Blainville-sur-Orne Blainville,Blainville-sur-Orne 49.22913 -0.30061 P PPL FR 99 14 142 14076 4598 21 Europe/Paris 2012-01-18
-3032453 Blainville-sur-Mer Blainville-sur-Mer Blainville,Blainville-sur-Mer 49.06599 -1.5834 P PPL FR 99 50 503 50058 1350 27 Europe/Paris 2012-01-18
-3032455 Blainville-Crevon Blainville-Crevon Blainville,Blainville-Crevon 49.50395 1.29952 P PPL FR A7 76 763 76100 1143 97 Europe/Paris 2012-01-18
-3032461 Blaincourt-lès-Précy Blaincourt-les-Precy 49.23333 2.35 P PPL FR B6 60 604 60074 1229 143 Europe/Paris 2007-11-21
-3032462 Blain Blain Blaen,Blain 47.47655 -1.76285 P PPL FR B5 44 441 44015 8274 27 Europe/Paris 2012-01-18
-3032468 Blagny Blagny Blagny 49.62167 5.19194 P PPL FR A4 08 083 08067 1267 169 Europe/Paris 2011-01-03
-3032469 Blagnac Blagnac Blagnac,Blanak,Блањак 43.63276 1.39399 P PPL FR B3 31 313 31069 24263 139 Europe/Paris 2012-01-18
-3032470 Blaesheim Blaesheim Blaesheim 48.50648 7.60923 P PPL FR C1 67 676 67049 1443 153 Europe/Paris 2011-02-14
-3032481 Blacé Blace Blace,Blacé 46.03185 4.64499 P PPL FR B9 69 692 69023 1290 299 Europe/Paris 2012-01-18
-3032492 Bize-Minervois Bize-Minervois Bize,Bize-Minervois 43.31656 2.87134 P PPL FR A9 11 113 11041 1055 59 Europe/Paris 2012-01-18
-3032496 Bizanos Bizanos Bizanons,Bizanos 43.28333 -0.35 P PPL FR 97 64 643 64132 5055 186 Europe/Paris 2012-01-18
-3032497 Bizanet Bizanet Bizanet 43.16419 2.87034 P PPL FR A9 11 113 11040 1158 58 Europe/Paris 2012-01-18
-3032505 Biviers Biviers Biviers 45.23333 5.8 P PPL FR B9 38 381 38045 2622 363 Europe/Paris 2012-01-18
-3032509 Bitschwiller-lès-Thann Bitschwiller-les-Thann Bischiville,Bitschwiller,Bitschwiller-les-Thann,Bitschwiller-lès-Thann 47.82863 7.08066 P PPL FR C1 68 686 68040 2213 355 Europe/Paris 2012-01-18
-3032518 Bitche Bitche Bitche,Bitsch,Bitsche 49.05009 7.42672 P PPL FR B2 57 576 57089 5668 293 Europe/Paris 2012-01-18
-3032544 Bischwiller Bischwiller Bischweiler,Bischwiller 48.76588 7.85831 P PPL FR C1 67 672 67046 12308 139 Europe/Paris 2012-01-18
-3032549 Bischoffsheim Bischoffsheim Bischoffsheim,Bischofsheim 48.48703 7.48967 P PPL FR C1 67 673 67045 3131 206 Europe/Paris 2011-02-14
-3032551 Bischheim Bischheim Bischheim 48.61612 7.75343 P PPL FR C1 67 676 67043 17434 147 Europe/Paris 2011-11-02
-3032556 Biscarrosse Biscarrosse Biscarosse,Biscarrosse,Biscarrosse-Bourg,Biskaros,Бискарос 44.39454 -1.16721 P PPL FR 97 40 402 40046 10716 28 Europe/Paris 2011-11-02
-3032579 Biot Biot Biot 43.62723 7.09645 P PPL FR B8 06 061 06018 7737 65 Europe/Paris 2012-01-18
-3032598 Bining Bining Bining,Bining-les-Rohrbach,Bining-lès-Rohrbach 49.03647 7.2522 P PPL FR B2 57 576 57083 1192 314 Europe/Paris 2012-01-18
-3032600 Binic Binic Binic,Binig 48.60416 -2.82692 P PPL FR A2 22 224 22007 3272 35 Europe/Paris 2012-01-18
-3032615 Billy-sur-Aisne Billy-sur-Aisne Billy,Billy-sur-Aisne 49.35632 3.38357 P PPL FR B6 02 024 02089 1203 67 Europe/Paris 2012-01-18
-3032618 Billy-Montigny Billy-Montigny Billy,Billy-Montigny 50.41711 2.90286 P PPL FR B4 62 627 62133 8533 28 Europe/Paris 2012-01-18
-3032622 Billy-Berclau Billy-Berclau Billy-Berclau 50.51783 2.86613 P PPL FR B4 62 622 62132 4338 26 Europe/Paris 2012-01-18
-3032629 Billom Billom Billom 45.72303 3.34243 P PPL FR 98 63 632 63040 4466 365 Europe/Paris 2012-01-18
-3032639 Billère Billere Billere,Billère 43.3 -0.4 P PPL FR 97 64 643 64129 14914 170 Europe/Paris 2012-01-18
-3032648 Bilieu Bilieu Bilieu,Billieu 45.44452 5.54624 P PPL FR B9 38 382 38043 1066 645 Europe/Paris 2012-01-18
-3032662 Bihorel Bihorel Bihorel 49.45468 1.1223 P PPL FR A7 76 763 76108 8589 152 Europe/Paris 2012-02-28
-3032668 Biguglia Biguglia Biguglia 42.62589 9.43324 P PPL FR A5 2B 2B2 2B037 5552 35 Europe/Paris 2012-01-18
-3032678 Bignoux Bignoux Bignoux 46.60008 0.46932 P PPL FR B7 86 863 86028 1052 119 Europe/Paris 2012-01-18
-3032685 Bignan Bignan Begnen,Bignan 47.87935 -2.77153 P PPL FR A2 56 562 56017 2532 120 Europe/Paris 2012-01-18
-3032688 Biganos Biganos Biganos 44.64504 -0.97367 P PPL FR 97 33 336 33051 7521 13 Europe/Paris 2012-01-18
-3032695 Bièvres Bievres Bievre,Bievre-la-Montagne,Bievres,Bièvre,Bièvre-la-Montagne,Bièvres 48.75772 2.21881 P PPL FR A8 91 913 91064 4310 102 Europe/Paris 2012-01-18
-3032711 Biesles Biesles Biesles 48.08597 5.29409 P PPL FR A4 52 521 52050 1398 389 Europe/Paris 2012-01-18
-3032712 Biesheim Biesheim Biesheim 48.04118 7.54474 P PPL FR C1 68 682 68036 2424 188 Europe/Paris 2012-01-18
-3032726 Bierne Bierne Bierne 50.96232 2.40963 P PPL FR B4 59 594 59082 1781 6 Europe/Paris 2012-01-18
-3032737 Bienville Bienville Bienville 48.57582 5.04579 P PPL FR A4 52 523 52194 2042 163 Europe/Paris 2012-02-27
-3032767 Bidart Bidart Bidart,Bidarte 43.4376 -1.59127 P PPL FR 97 64 641 64125 5021 29 Europe/Paris 2012-01-18
-3032771 Bidache Bidache Bidache,Bidaxune 43.48299 -1.1412 P PPL FR 97 64 641 64123 1152 36 Europe/Paris 2012-01-18
-3032791 Bias Bias Bias 44.41655 0.66977 P PPL FR 97 47 473 47027 3090 57 Europe/Paris 2012-01-18
-3032794 Biars-sur-Cère Biars-sur-Cere Biars,Biars-sur-Cere,Biars-sur-Cère 44.92629 1.85403 P PPL FR B3 46 462 46029 2165 141 Europe/Paris 2012-01-18
-3032797 Biarritz Biarritz Biarric,Biarritz,Biarriz,Bijaric,Miarritze,bi ya li ci,Биарриц,Бијариц,比亚里茨 43.48012 -1.55558 P PPL FR 97 64 641 64122 33188 40 Europe/Paris 2012-01-18
-3032802 Biard Biard Biard 46.57889 0.30812 P PPL FR B7 86 863 86027 1676 123 Europe/Paris 2012-01-18
-3032815 Biache-Saint-Vaast Biache-Saint-Vaast Biache-Saint-Waast,Biache-sous-Scarpe 50.30869 2.94777 P PPL FR B4 62 621 62128 4007 45 Europe/Paris 2007-09-08
-3032818 Bézu-Saint-Éloi Bezu-Saint-Eloi Bezu,Bezu-Saint-Eloi,Bézu-Saint-Éloi 49.29524 1.70404 P PPL FR A7 27 271 27067 1225 67 Europe/Paris 2012-01-18
-3032823 Bezouce Bezouce Bezouce 43.88229 4.49072 P PPL FR A9 30 302 30039 2116 75 Europe/Paris 2012-01-18
-3032824 Bezons Bezons Bezon,Bezons,Безон 48.92426 2.2128 P PPL FR A8 95 951 95063 27570 27 Europe/Paris 2012-01-18
-3032833 Béziers Beziers Baeterrae,Besiers,Besièrs,Bez'e,Beziers,Bezije,Bezje,Béziers,Безије,Безье,Безје 43.34762 3.21899 P PPLA3 FR A9 34 341 34032 74081 71 Europe/Paris 2011-11-02
-3032847 Bezannes Bezannes Bezannes,Bezannes-les-Reims 49.22339 3.98892 P PPL FR A4 51 513 51058 1286 81 Europe/Paris 2012-01-18
-3032869 Beynost Beynost Beynost 45.83809 5.00608 P PPL FR B9 01 012 01043 4182 186 Europe/Paris 2012-01-18
-3032872 Beynes Beynes Beynes 48.85626 1.87261 P PPL FR A8 78 782 78062 7914 54 Europe/Paris 2012-01-18
-3032880 Beychac-et-Caillau Beychac-et-Caillau Beychac,Beychac-et-Caillau 44.87781 -0.40219 P PPL FR 97 33 332 33049 1926 52 Europe/Paris 2012-01-18
-3032887 Béville-le-Comte Beville-le-Comte Beville,Beville-la-Fontaine,Beville-le-Comte,Béville,Béville-le-Comte 48.43558 1.71305 P PPL FR A3 28 281 28039 1388 142 Europe/Paris 2012-01-18
-3032892 Beuzeville-la-Grenier Beuzeville-la-Grenier Beuzeville,Beuzeville-la-Grenier,L'Ingenue,L'Ingénue,Saint-Martin-le-Genereux,Saint-Martin-le-Généreux 49.59157 0.42684 P PPL FR A7 76 762 76090 1067 118 Europe/Paris 2012-01-18
-3032896 Beuzeville Beuzeville Beuzeville 49.34483 0.34254 P PPL FR A7 27 272 27065 3257 134 Europe/Paris 2012-01-18
-3032898 Beuzec-Cap-Sizun Beuzec-Cap-Sizun Beuzec,Beuzec-Cap-Sizun,Beuzeg-ar-C'hab 48.07567 -4.512 P PPL FR A2 29 294 29008 1097 93 Europe/Paris 2012-01-18
-3032903 Beuvry Beuvry Beuvry 50.51674 2.68541 P PPL FR B4 62 622 62126 9052 24 Europe/Paris 2012-01-18
-3032915 Beuvrages Beuvrages Beuvrages 50.38414 3.4942 P PPL FR B4 59 596 59079 7834 29 Europe/Paris 2012-01-18
-3032917 Beuvillers Beuvillers Beuvillers 49.12961 0.25492 P PPL FR 99 14 143 14069 1130 47 Europe/Paris 2011-01-19
-3032919 Beuville Beuville 49.24364 -0.32585 P PPL FR 99 14 142 14068 2311 17 Europe/Paris 2012-02-27
-3032939 Beure Beure Beure 47.2069 6.00548 P PPL FR A6 25 251 25058 1430 251 Europe/Paris 2012-01-18
-3032957 Betz Betz Betz 49.15558 2.95584 P PPL FR B6 60 604 60069 1014 96 Europe/Paris 2012-01-18
-3032965 Betton Betton Betton,Bezhon 48.18048 -1.63829 P PPL FR A2 35 353 35024 9343 37 Europe/Paris 2012-01-18
-3032981 Bettancourt-la-Ferrée Bettancourt-la-Ferree Bettancourt,Bettancourt-la-Ferree,Bettancourt-la-Ferrée 48.64898 4.96971 P PPL FR A4 52 523 52045 2033 165 Europe/Paris 2012-01-18
-3033002 Béthune Bethune Beten,Bethune,Betin,Betjun,Béthune,Бетен,Бетин,Бетюн 50.53333 2.63333 P PPLA3 FR B4 62 622 62119 31568 22 Europe/Paris 2011-11-02
-3033006 Bethoncourt Bethoncourt Bethoncourt 47.53512 6.80504 P PPL FR A6 25 252 25057 7182 361 Europe/Paris 2012-01-18
-3033010 Béthisy-Saint-Pierre Bethisy-Saint-Pierre Bethisy-Saint-Pierre,Bethisy-la-Butte,Béthisy-Saint-Pierre,Béthisy-la-Butte 49.30482 2.79636 P PPL FR B6 60 604 60068 3272 64 Europe/Paris 2012-01-18
-3033011 Béthisy-Saint-Martin Bethisy-Saint-Martin Bethisy-Saint-Martin,Bethisy-sur-Autonne,Béthisy-Saint-Martin,Béthisy-sur-Autonne 49.2948 2.81743 P PPL FR B6 60 604 60067 1184 48 Europe/Paris 2012-01-18
-3033014 Bétheny Betheny Betheny,Bétheny 49.28498 4.05495 P PPL FR A4 51 513 51055 6002 91 Europe/Paris 2012-01-18
-3033018 Béthencourt-sur-Mer Bethencourt-sur-Mer Bethencourt,Bethencourt-sur-Mer,Béthencourt,Béthencourt-sur-Mer 50.07756 1.50348 P PPL FR B6 80 801 80096 1020 104 Europe/Paris 2012-01-18
-3033052 Bessines-sur-Gartempe Bessines-sur-Gartempe Becinas,Bessines,Bessines-sur-Gartempe 46.10799 1.36865 P PPL FR B1 87 871 87014 2836 321 Europe/Paris 2012-01-18
-3033053 Bessines Bessines Bessines 46.30207 -0.51294 P PPL FR B7 79 792 79034 1421 14 Europe/Paris 2012-01-18
-3033056 Bessières Bessieres Bessieres,Bessières 43.79861 1.60624 P PPL FR B3 31 313 31066 2685 109 Europe/Paris 2011-01-09
-3033065 Besse-sur-Issole Besse-sur-Issole Besse,Besse-sur-Issole 43.34957 6.17759 P PPL FR B8 83 833 83018 1923 252 Europe/Paris 2012-01-18
-3033066 Bessé-sur-Braye Besse-sur-Braye Besse,Besse-sur-Braye,Bessé,Bessé-sur-Braye 47.83333 0.75 P PPL FR B5 72 722 72035 2745 77 Europe/Paris 2012-01-18
-3033071 Bessenay Bessenay Bessenay 45.77721 4.55376 P PPL FR B9 69 691 69021 2138 408 Europe/Paris 2012-01-18
-3033073 Bessèges Besseges Besseges,Bessèges 44.2923 4.0966 P PPL FR A9 30 301 30037 3406 176 Europe/Paris 2012-01-18
-3033088 Bessay-sur-Allier Bessay-sur-Allier Bessay,Bessay-sur-Allier 46.44352 3.36248 P PPL FR 98 03 032 03025 1414 223 Europe/Paris 2012-01-18
-3033098 Bessancourt Bessancourt Bessancourt 49.03765 2.20936 P PPL FR A8 95 953 95060 8026 81 Europe/Paris 2012-01-18
-3033099 Bessan Bessan Bessan 43.36196 3.42288 P PPL FR A9 34 341 34031 4531 18 Europe/Paris 2012-01-18
-3033108 Besné Besne Besne,Besné,Gwennenid 47.4 -2.08976 P PPL FR B5 44 443 44013 2212 7 Europe/Paris 2012-01-18
-3033123 Besançon Besancon Becoinson,Besancon,Besanson,Besanzon,Besanzón,Besançon,Bezanson,Bezansona,Bezansonas,Vesuntio,bei sang song,bejhamsom,bexs xngsng,bezansoni,buzanson,bzanswn,Μπεζανσόν,Безансон,Бесансон,Բեզանսոն,בזאנסון,بزانسون,बेझाँसों,เบอซ็องซง,ბეზანსონი,ブザンソン,贝桑松 47.24878 6.01815 P PPLA FR A6 25 251 25056 128426 300 Europe/Paris 2012-01-18
-3033147 Béruges Beruges Beruges,Béruges 46.56738 0.20741 P PPL FR B7 86 863 86024 1177 130 Europe/Paris 2012-01-18
-3033149 Bertry Bertry Bertry 50.08718 3.44298 P PPL FR B4 59 592 59074 2312 142 Europe/Paris 2012-01-18
-3033163 Bertrange Bertrange Bertrange 49.30769 6.17893 P PPL FR B2 57 577 57067 2092 153 Europe/Paris 2012-01-18
-3033200 Berthecourt Berthecourt Berthecourt 49.35097 2.22471 P PPL FR B6 60 601 60065 1416 59 Europe/Paris 2012-01-18
-3033202 Bertheauville Bertheauville Bertheauville 49.75489 0.60194 P PPLA4 FR A7 76 761 76083 89 54 Europe/Paris 2011-07-31
-3033208 Berteaucourt-les-Dames Berteaucourt-les-Dames Berteaucourt,Berteaucourt-les-Dames 50.04697 2.1575 P PPL FR B6 80 802 80093 1123 42 Europe/Paris 2012-01-18
-3033219 Berstett Berstett 48.679 7.65721 P PPL FR C1 67 676 67034 1998 165 Europe/Paris 2007-07-07
-3033220 Berson Berson Berson 45.10679 -0.58774 P PPL FR 97 33 331 33047 1658 66 Europe/Paris 2012-01-18
-3033222 Bersée Bersee Bersee,Bersée 50.47978 3.14765 P PPL FR B4 59 595 59071 2178 54 Europe/Paris 2012-01-18
-3033232 Berrwiller Berrwiller Berrwiller 47.84911 7.21978 P PPL FR C1 68 683 68032 1109 259 Europe/Paris 2012-01-18
-3033236 Berrien Berrien Berrien 48.40278 -3.75266 P PPL FR A2 29 292 29007 1012 261 Europe/Paris 2012-01-18
-3033238 Berric Berric Berric,Berrig 47.63326 -2.5225 P PPL FR A2 56 563 56015 1100 80 Europe/Paris 2012-01-18
-3033241 Berre-l'Étang Berre-l'Etang Berre,Berre-l'Etang,Berre-l'Étang 43.47809 5.17044 P PPL FR B8 13 134 13014 14062 3 Europe/Paris 2011-11-02
-3033242 Berre-les-Alpes Berre-les-Alpes Berre,Berre-des Alpes 43.83333 7.33333 P PPL FR B8 06 062 06015 1284 505 Europe/Paris 2007-11-20
-3033268 Bernis Bernis Bernis 43.76913 4.28713 P PPL FR A9 30 302 30036 2882 27 Europe/Paris 2012-01-18
-3033269 Bernin Bernin Bernin 45.2714 5.86516 P PPL FR B9 38 381 38039 3129 296 Europe/Paris 2012-01-18
-3033272 Bernières-sur-Mer Bernieres-sur-Mer Bernieres,Bernieres-sur-Mer,Bernières,Bernières-sur-Mer 49.33057 -0.42299 P PPL FR 99 14 142 14066 1972 7 Europe/Paris 2012-01-18
-3033285 Berneval-le-Grand Berneval-le-Grand Berneval,Berneval-le-Grand 49.95328 1.18755 P PPL FR A7 76 761 76081 1089 105 Europe/Paris 2012-01-18
-3033294 Bernes-sur-Oise Bernes-sur-Oise Bernes,Bernes-sur-Oise 49.16128 2.3 P PPL FR A8 95 953 95058 2414 31 Europe/Paris 2012-01-18
-3033303 Berné Berne Berne,Berné 47.9947 -3.39421 P PPL FR A2 56 562 56014 1327 107 Europe/Paris 2012-01-18
-3033308 Bernay Bernay Bernay,Bernay-de-l'Eure 49.08888 0.59858 P PPLA3 FR A7 27 272 27056 12399 113 Europe/Paris 2011-11-02
-3033312 Bernaville Bernaville Bernaville 50.13232 2.163 P PPL FR B6 80 802 80086 1012 140 Europe/Paris 2012-01-18
-3033316 Bernardswiller Bernardswiller Bernardswiller 48.45208 7.46171 P PPL FR C1 67 675 67031 1296 224 Europe/Paris 2012-01-18
-3033355 Berlaimont Berlaimont Berlaimont 50.20155 3.81343 P PPL FR B4 59 591 59068 3314 143 Europe/Paris 2012-01-18
-3033363 Bergues Bergues Bergues,Bergues-sur-Colme,Sint-Winoksbergen 50.96882 2.43242 P PPL FR B4 59 594 59067 4355 7 Europe/Paris 2012-01-18
-3033380 Bergholtz Bergholtz Bergholtz 47.91595 7.24612 P PPL FR C1 68 683 68029 1069 246 Europe/Paris 2012-01-18
-3033382 Bergheim Bergheim Bergem,Bergheim,Bergkhajm,Бергем,Бергхајм 48.2054 7.36299 P PPL FR C1 68 685 68028 1857 210 Europe/Paris 2007-07-03
-3033391 Bergerac Bergerac Bergerac,Berzherak,Brageirac,Бержерак 44.85 0.48333 P PPLA3 FR 97 24 241 24037 28317 34 Europe/Paris 2011-11-02
-3033415 Berck Berck Berck-sur-Mer 50.4 1.6 P PPL FR FR B4 62 624 62108 15609 3 Europe/Paris 2011-11-02
-3033416 Berck-Plage Berck-Plage 50.40704 1.56446 P PPL FR B4 62 624 62108 15675 10 Europe/Paris 2012-02-27
-3033435 Bérat Berat Berat,Bérat 43.37857 1.17572 P PPL FR B3 31 311 31065 1589 249 Europe/Paris 2012-01-18
-3033453 Benquet Benquet Benquet 43.82992 -0.50102 P PPL FR 97 40 402 40037 1409 71 Europe/Paris 2012-01-18
-3033458 Bénouville Benouville Benouville,Benuvil,Bénouville,Бенувил 49.24151 -0.28246 P PPL FR 99 14 142 14060 1828 13 Europe/Paris 2012-01-18
-3033470 Bénodet Benodet Benode,Benoded,Benodet,Bénodet,Беноде 47.87531 -4.1058 P PPL FR A2 29 294 29006 2898 14 Europe/Paris 2010-01-12
-3033471 Bennwihr Bennwihr 48.14456 7.32445 P PPL FR C1 68 685 68026 1177 207 Europe/Paris 2011-11-02
-3033477 Bennecourt Bennecourt Bennecourt 49.04148 1.55468 P PPL FR A8 78 781 78057 1877 38 Europe/Paris 2012-01-18
-3033481 Béning-lès-Saint-Avold Bening-les-Saint-Avold Bening,Bening-les-Saint-Avold,Béning-lès-Saint-Avold 49.13716 6.82975 P PPL FR B2 57 573 57061 1232 211 Europe/Paris 2012-01-18
-3033488 Benfeld Benfeld Benfeld,Бенфелд 48.37062 7.5937 P PPL FR C1 67 675 67028 5199 161 Europe/Paris 2011-11-04
-3033495 Benet Benet Benet 46.36972 -0.59333 P PPL FR B5 85 851 85020 3471 26 Europe/Paris 2012-01-18
-3033500 Bénesse-Maremne Benesse-Maremne Benesse,Benesse-Maremne,Benesse-Marenne,Bénesse-Maremne 43.63678 -1.35773 P PPL FR 97 40 401 40036 1931 20 Europe/Paris 2012-01-18
-3033504 Bénéjacq Benejacq Benejacq,Bénéjacq 43.2 -0.21667 P PPL FR 97 64 643 64109 1724 254 Europe/Paris 2012-01-18
-3033534 Belz Belz Belz 47.67506 -3.168 P PPL FR A2 56 561 56013 3523 10 Europe/Paris 2012-01-18
-3033546 Belvès Belves Belves,Belvès 44.77632 1.00588 P PPL FR 97 24 244 24035 1494 174 Europe/Paris 2012-01-18
-3033565 Belpech Belpech Belpech 43.19957 1.75157 P PPL FR A9 11 111 11033 1237 246 Europe/Paris 2012-01-18
-3033574 Belmont-sur-Rance Belmont-sur-Rance Belmont,Belmont-sur-Rance 43.81981 2.75524 P PPL FR B3 12 121 12025 1041 482 Europe/Paris 2012-01-18
-3033579 Belmont-de-la-Loire Belmont-de-la-Loire Belmont,Belmont-de-la-Loire 46.1664 4.34732 P PPL FR B9 42 422 42015 1528 527 Europe/Paris 2012-01-18
-3033598 Belloy-en-France Belloy-en-France Belloy,Belloy-en-France 49.08836 2.37159 P PPL FR A8 95 952 95056 1629 120 Europe/Paris 2012-01-18
-3033618 Belligné Belligne Belenieg,Belligne,Belligné 47.46774 -1.0278 P PPL FR B5 44 444 44011 1690 60 Europe/Paris 2012-01-18
-3033619 Bellignat Bellignat Belignat,Bellignat 46.24237 5.62843 P PPL FR B9 01 014 01031 4128 528 Europe/Paris 2011-01-14
-3033625 Belley Belley 45.76667 5.68333 P PPLA3 FR B9 01 011 01034 9145 328 Europe/Paris 2011-11-02
-3033635 Belleville-sur-Vie Belleville-sur-Vie Belleville,Belleville-sur-Vie 46.78369 -1.42905 P PPL FR B5 85 852 85019 3200 71 Europe/Paris 2012-01-18
-3033636 Belleville Belleville Belleville,Belleville sobre Saona,Belleville-sur-Saone,Belleville-sur-Saône 46.1 4.75 P PPL FR B9 69 692 69019 6299 171 Europe/Paris 2011-11-02
-3033637 Belleville-sur-Meuse Belleville-sur-Meuse Belleville,Belleville-sur-Meuse 49.17863 5.3719 P PPL FR B2 55 553 55043 3202 220 Europe/Paris 2012-01-18
-3033645 Belleville Belleville Belleville 48.81902 6.10108 P PPL FR B2 54 543 54060 1306 188 Europe/Paris 2012-01-18
-3033647 Belleville-sur-Loire Belleville-sur-Loire 47.5 2.85 P PPL FR A3 18 181 18026 1094 141 Europe/Paris 2007-11-20
-3033653 Bellevaux Bellevaux Bellevaux 46.2598 6.53474 P PPL FR B9 74 744 74032 1273 875 Europe/Paris 2012-01-18
-3033657 Belleu Belleu Belleu 49.35917 3.33556 P PPL FR B6 02 024 02064 4071 69 Europe/Paris 2010-12-17
-3033666 Bellerive-sur-Allier Bellerive-sur-Allier Bellerive,Bellerive-sur-Allier 46.11633 3.40338 P PPL FR 98 03 033 03023 8841 275 Europe/Paris 2012-01-18
-3033673 Bellengreville Bellengreville Bellengreville 49.12425 -0.20961 P PPL FR 99 14 142 14057 1468 26 Europe/Paris 2012-01-18
-3033675 Belleneuve Belleneuve Belleneuve 47.36224 5.26393 P PPL FR A1 21 212 21060 1448 239 Europe/Paris 2012-01-18
-3033677 Bellenaves Bellenaves Bellenaves 46.19979 3.08215 P PPL FR 98 03 031 03022 1027 331 Europe/Paris 2012-01-18
-3033679 Bellême Belleme Belleme,Bellême 48.37329 0.57005 P PPL FR 99 61 613 61038 1803 220 Europe/Paris 2012-01-18
-3033681 Belle-Isle-en-Terre Belle-Isle-en-Terre Belle-Isle,Belle-Isle-en-Terre,Benac'h 48.54478 -3.395 P PPL FR A2 22 222 22005 1139 94 Europe/Paris 2012-01-18
-3033685 Bellegarde-sur-Valserine Bellegarde-sur-Valserine Bellegarde 46.10787 5.82421 P PPL FR B9 01 014 01033 11699 361 Europe/Paris 2011-11-02
-3033688 Bellegarde-en-Forez Bellegarde-en-Forez Bellegarde,Bellegarde-en-Forez 45.64662 4.29908 P PPL FR B9 42 421 42013 1490 403 Europe/Paris 2012-01-18
-3033691 Bellegarde Bellegarde Bellegarde-du-Loiret 47.98333 2.43333 P PPL FR A3 45 451 45031 1703 122 Europe/Paris 2007-11-20
-3033698 Bellegarde Bellegarde Bellegarde 43.75329 4.51654 P PPL FR A9 30 302 30034 5340 7 Europe/Paris 2012-01-18
-3033760 Bellaing Bellaing Bellaing 50.36811 3.42515 P PPL FR B4 59 596 59064 1338 41 Europe/Paris 2012-01-18
-3033766 Bellac Bellac Belac,Bellac 46.11667 1.05 P PPLA3 FR B1 87 871 87011 4973 189 Europe/Paris 2010-04-02
-3033773 Belin-Béliet Belin-Beliet 44.5 -0.78333 P PPL FR 97 33 336 33042 2991 50 Europe/Paris 2008-01-17
-3033775 Béligneux Beligneux Beligneux,Béligneux 45.86822 5.12683 P PPL FR B9 01 012 01032 2809 256 Europe/Paris 2012-01-18
-3033784 Belgentier Belgentier Belgentier 43.24594 6.00095 P PPL FR B8 83 832 83017 1867 158 Europe/Paris 2012-01-18
-3033791 Belfort Belfort Beffert,Bel'for,Belfor,Belfort,beruforu,Белфор,Бельфор,ベルフォール 47.63333 6.86667 P PPLA2 FR A6 90 901 90010 54562 379 Europe/Paris 2011-11-02
-3033799 Bélesta Belesta Belesta,Bélesta 42.90228 1.93325 P PPL FR B3 09 091 09047 1237 500 Europe/Paris 2012-01-18
-3033803 Belcodène Belcodene Belcodene,Belcodène 43.42612 5.58878 P PPL FR B8 13 133 13013 1533 396 Europe/Paris 2011-01-18
-3033811 Belbeuf Belbeuf Belbeuf 49.38766 1.14245 P PPL FR A7 76 763 76069 2077 144 Europe/Paris 2012-01-18
-3033813 Belberaud Belberaud Belberaud 43.50557 1.56725 P PPL FR B3 31 313 31057 1271 178 Europe/Paris 2012-01-18
-3033839 Bélâbre Belabre Belabre,Bélâbre 46.5512 1.15791 P PPL FR A3 36 361 36016 1042 106 Europe/Paris 2012-01-18
-3033851 Beignon Beignon Beignon,Benion 47.972 -2.16933 P PPL FR A2 56 563 56012 1074 122 Europe/Paris 2012-01-18
-3033853 Behren-lès-Forbach Behren-les-Forbach Behren,Behren-les-Forbach,Behren-lès-Forbach 49.1664 6.94336 P PPL FR B2 57 573 57058 10225 310 Europe/Paris 2012-01-18
-3033870 Bégrolles-en-Mauges Begrolles-en-Mauges Begrolles,Begrolles-en-Mauges,Bégrolles,Bégrolles-en-Mauges 47.14048 -0.94 P PPL FR B5 49 492 49027 1617 110 Europe/Paris 2012-01-18
-3033881 Bègles Begles Begles,Beglese,Bègles,Беглесе 44.80845 -0.54809 P PPL FR 97 33 332 33039 23504 6 Europe/Paris 2012-01-18
-3033884 Bégard Begard Bear,Begard,Bégard,Prajou 48.62754 -3.30067 P PPL FR A2 22 222 22004 4779 144 Europe/Paris 2012-01-18
-3033885 Béganne Beganne Beganne,Begaon,Béganne 47.5967 -2.24162 P PPL FR A2 56 563 56011 1407 59 Europe/Paris 2012-01-18
-3033887 Bégaar Begaar 43.82363 -0.84904 P PPL FR 97 40 401 40031 1018 15 Europe/Paris 2009-04-01
-3033900 Bédoin Bedoin Bedoin,Bedouin-l'Aneanti,Bédoin,Bédouin-l'Anéanti 44.12432 5.1804 P PPL FR B8 84 843 84017 3016 316 Europe/Paris 2007-09-08
-3033908 Bédée Bedee Bedee,Bezeg,Bédée 48.17953 -1.94476 P PPL FR A2 35 353 35023 3478 85 Europe/Paris 2012-01-18
-3033912 Bédarrides Bedarrides Bedarrides,Bédarrides 44.04022 4.89819 P PPL FR B8 84 842 84016 5014 29 Europe/Paris 2011-01-18
-3033913 Bédarieux Bedarieux Bedarieux,Bédarieux 43.61553 3.15714 P PPL FR A9 34 341 34028 6907 198 Europe/Paris 2012-01-18
-3033927 Bécon-les-Granits Becon-les-Granits Becon,Becon-les-Granits,Bécon,Bécon-les-Granits 47.50134 -0.8 P PPL FR B5 49 491 49026 2525 58 Europe/Paris 2012-01-18
-3033953 Beauzelle Beauzelle Beauzelle 43.66713 1.37518 P PPL FR B3 31 313 31056 6043 143 Europe/Paris 2011-01-09
-3033955 Beauzac Beauzac Bauzac,Beauzac 45.26001 4.09879 P PPL FR 98 43 433 43025 2162 554 Europe/Paris 2012-01-18
-3033959 Beauvoisin Beauvoisin Beauvoisin 43.71835 4.32338 P PPL FR A9 30 302 30033 3426 84 Europe/Paris 2012-01-18
-3033962 Beauvois-en-Cambrésis Beauvois-en-Cambresis Beauvois,Beauvois-en-Cambresis,Beauvois-en-Cambrésis 50.13735 3.3787 P PPL FR B4 59 592 59063 2047 114 Europe/Paris 2012-01-18
-3033967 Beauvoir-sur-Niort Beauvoir-sur-Niort Beauvoir,Beauvoir-sur-Niort 46.18017 -0.47178 P PPL FR B7 79 792 79031 1377 67 Europe/Paris 2012-01-18
-3033968 Beauvoir-sur-Mer Beauvoir-sur-Mer Beauvoir,Beauvoir-sur-Mer 46.91274 -2.04156 P PPL FR B5 85 853 85018 3625 9 Europe/Paris 2012-01-18
-3033971 Beauvoir-de-Marc Beauvoir-de-Marc Beauvoir,Beauvoir-de-Marc 45.51132 5.08249 P PPL FR B9 38 383 38035 1028 354 Europe/Paris 2012-01-18
-3033999 Beauvallon Beauvallon Beauvallon 44.85662 4.91155 P PPL FR B9 26 263 26042 1818 137 Europe/Paris 2012-01-18
-3034001 Beauval Beauval Beauval 50.10789 2.33269 P PPL FR B6 80 802 80071 2277 106 Europe/Paris 2012-01-18
-3034006 Beauvais Beauvais Beauvais,Bove,Bovoa,Duthil-la-Montagne,La Chaussee-de-la-Montagne,La Chaussée-de-la-Montagne,bo wei,bovu~e,Бове,Бовоа,ボーヴェ,博韦 49.43333 2.08333 P PPLA2 FR B6 60 601 60057 53393 71 Europe/Paris 2011-11-02
-3034023 Beautor Beautor Beautor 49.65214 3.34475 P PPL FR B6 02 022 02059 3005 51 Europe/Paris 2012-01-18
-3034024 Beautiran Beautiran Bautiran,Beautiran 44.70393 -0.45202 P PPL FR 97 33 332 33037 2202 10 Europe/Paris 2012-01-18
-3034041 Beausoleil Beausoleil Beausoleil 43.74904 7.41702 P PPL FR B8 06 062 06012 13376 48 328 Europe/Paris 2012-01-18
-3034044 Beausemblant Beausemblant Beausemblant 45.21784 4.82847 P PPL FR B9 26 263 26041 1246 145 Europe/Paris 2012-01-18
-3034054 Beaurevoir Beaurevoir Beaurevoir 49.99714 3.30855 P PPL FR B6 02 023 02057 1511 139 Europe/Paris 2012-01-18
-3034062 Beaurepaire Beaurepaire Beaurepaire 46.90977 -1.08928 P PPL FR B5 85 852 85017 1676 94 Europe/Paris 2012-01-18
-3034064 Beaurepaire Beaurepaire Beaurepaire 45.33674 5.05525 P PPL FR B9 38 383 38034 4213 259 Europe/Paris 2012-01-18
-3034101 Beaurainville Beaurainville Beaurain-sur-Canche,Beaurainville 50.42432 1.89938 P PPL FR B4 62 624 62100 2062 15 Europe/Paris 2012-01-18
-3034103 Beaurains Beaurains Beaurains 50.26599 2.79467 P PPL FR B4 62 621 62099 4801 98 Europe/Paris 2012-01-18
-3034106 Beauquesne Beauquesne Beauquesne 50.08526 2.39276 P PPL FR B6 80 802 80070 1273 141 Europe/Paris 2012-01-18
-3034107 Beaupuy Beaupuy 44.53549 0.149 P PPL FR 97 47 472 47024 1095 98 Europe/Paris 2009-09-05
-3034109 Beaupuy Beaupuy Beaupuy 43.64713 1.55517 P PPL FR B3 31 313 31053 1227 163 Europe/Paris 2011-01-09
-3034111 Beaupréau Beaupreau Beaupreau,Beaupréau 47.20464 -0.98703 P PPL FR B5 49 492 49023 6932 97 Europe/Paris 2012-01-18
-3034122 Beaune-la-Rolande Beaune-la-Rolande Beaune,Beaune-la-Rolande 48.07124 2.4314 P PPL FR A3 45 453 45030 2462 106 Europe/Paris 2012-01-18
-3034126 Beaune Beaune Beaune,Bon,bonu,Бон,ボーヌ 47.03333 4.83333 P PPLA3 FR A1 21 211 21054 24162 223 Europe/Paris 2011-11-02
-3034140 Beaumont-sur-Sarthe Beaumont-sur-Sarthe Beaumont,Beaumont-le-Vicomte,Beaumont-sur-Sarthe 48.22772 0.13186 P PPL FR B5 72 722 72029 2080 77 Europe/Paris 2012-01-18
-3034141 Beaumont-sur-Oise Beaumont-sur-Oise Beaumont,Beaumont-sur-Oise 49.14232 2.28705 P PPL FR A8 95 953 95052 9011 49 Europe/Paris 2012-01-18
-3034142 Beaumont-sur-Lèze Beaumont-sur-Leze Beaumont,Beaumont-sur-Leze,Beaumont-sur-Lèze 43.38095 1.35826 P PPL FR B3 31 311 31052 1590 201 Europe/Paris 2012-01-18
-3034148 Beaumont-Monteux Beaumont-Monteux Beaumont,Beaumont-Monteux 45.01942 4.92248 P PPL FR B9 26 263 26038 1016 134 Europe/Paris 2012-01-18
-3034149 Beaumont-lès-Valence Beaumont-les-Valence Beaumont,Beaumont-les-Valence,Beaumont-lès-Valence 44.86328 4.9457 P PPL FR B9 26 263 26037 3982 138 Europe/Paris 2012-01-18
-3034153 Beaumont-le-Roger Beaumont-le-Roger Beaumont,Beaumont-le-Roger 49.07839 0.78081 P PPL FR A7 27 272 27051 2981 90 Europe/Paris 2012-01-18
-3034155 Beaumont-la-Ronce Beaumont-la-Ronce Beaumont,Beaumont-la-Ronce 47.56948 0.67017 P PPL FR A3 37 372 37021 1034 118 Europe/Paris 2012-01-18
-3034158 Beaumont-Hague Beaumont-Hague Beaumont,Beaumont-Hague 49.66387 -1.83822 P PPL FR 99 50 502 50041 1413 163 Europe/Paris 2012-01-18
-3034159 Beaumont-en-Véron Beaumont-en-Veron Beaumont 47.19397 0.18436 P PPL FR A3 37 371 37022 2933 40 41 Europe/Paris 2006-04-29
-3034160 Beaumont-du-Gâtinais Beaumont-du-Gatinais Beaumont 48.1386 2.47913 P PPL FR A8 77 774 77027 1088 88 Europe/Paris 2007-11-14
-3034168 Beaumont-du-Périgord Beaumont-du-Perigord Beaumont,Beaumont-du-Perigord,Beaumont-du-Périgord 44.76662 0.76916 P PPL FR 97 24 241 24028 1222 140 Europe/Paris 2012-01-18
-3034169 Beaumont-de-Pertuis Beaumont-de-Pertuis Beaumont,Beaumont-de-Pertuis 43.73788 5.68618 P PPL FR B8 84 841 84014 1008 360 Europe/Paris 2012-01-18
-3034170 Beaumont-de-Lomagne Beaumont-de-Lomagne Beaumont,Beaumont-de-Lomagne 43.88286 0.98762 P PPL FR B3 82 821 82013 3655 121 Europe/Paris 2012-01-18
-3034192 Beaumont Beaumont Beaumont 46.73773 0.42961 P PPL FR B7 86 861 86019 1636 145 Europe/Paris 2012-01-18
-3034195 Beaumont Beaumont Beaumont 46.10156 6.11732 P PPL FR B9 74 743 74031 1432 733 Europe/Paris 2012-01-18
-3034198 Beaumont Beaumont Beaumont,Bourg-Montagne 45.75123 3.08355 P PPL FR 98 63 632 63032 12295 444 Europe/Paris 2012-01-18
-3034210 Beaumetz-lès-Loges Beaumetz-les-Loges 50.23897 2.65818 P PPL FR B4 62 621 62097 1010 136 Europe/Paris 2009-03-25
-3034218 Beaumes-de-Venise Beaumes-de-Venise Beaumes,Beaumes-de-Venise 44.11934 5.02426 P PPL FR B8 84 843 84012 2182 80 Europe/Paris 2012-01-18
-3034234 Beaulon Beaulon Beaulon 46.60178 3.67262 P PPL FR 98 03 032 03019 1581 213 Europe/Paris 2012-01-18
-3034238 Beaulieu-sur-Mer Beaulieu-sur-Mer Beaulieu,Beaulieu-sur-Mer 43.70758 7.33289 P PPL FR B8 06 062 06011 3824 18 Europe/Paris 2012-01-18
-3034240 Beaulieu-sur-Layon Beaulieu-sur-Layon Beaulieu,Beaulieu-sur-Layon 47.31096 -0.58988 P PPL FR B5 49 491 49022 1126 88 Europe/Paris 2012-01-18
-3034241 Beaulieu-sur-Dordogne Beaulieu-sur-Dordogne Beaulieu,Beaulieu-sur-Dordogne 44.97826 1.83835 P PPL FR B1 19 191 19019 1326 151 Europe/Paris 2012-01-18
-3034243 Beaulieu-sous-la-Roche Beaulieu-sous-la-Roche Beaulieu,Beaulieu-sous-la-Roche 46.67647 -1.61129 P PPL FR B5 85 853 85016 1843 47 Europe/Paris 2012-01-18
-3034245 Beaulieu-lès-Loches Beaulieu-les-Loches Beaulieu,Beaulieu-les-Loches,Beaulieu-lès-Loches 47.12526 1.01585 P PPL FR A3 37 373 37020 1824 76 Europe/Paris 2012-01-18
-3034274 Beaulieu Beaulieu Beaulieu 43.72861 4.02194 P PPL FR A9 34 343 34027 1573 103 Europe/Paris 2010-12-24
-3034287 Beaujeu Beaujeu Beaujeu,Bojor,Bôjor 46.15176 4.59243 P PPL FR B9 69 692 69018 2027 298 Europe/Paris 2012-01-18
-3034297 Beaugency Beaugency Beaugency,bo rang xi,博让西 47.78019 1.62705 P PPL FR A3 45 452 45028 7659 101 Europe/Paris 2012-01-18
-3034309 Beaufort-en-Vallée Beaufort-en-Vallee Beaufort,Beaufort-en-Vallee,Beaufort-en-Vallée 47.43965 -0.2189 P PPL FR B5 49 491 49021 5677 34 Europe/Paris 2012-01-18
-3034316 Beaufort Beaufort Beaufort,Beaufort-sur-Doron,Mont-Grand 45.71776 6.57391 P PPL FR B9 73 731 73034 2170 742 Europe/Paris 2012-01-18
-3034325 Beaufay Beaufay Beaufay 48.14664 0.36224 P PPL FR B5 72 723 72026 1305 94 Europe/Paris 2012-01-18
-3034338 Beaucroissant Beaucroissant Beaucroissant 45.34229 5.46942 P PPL FR B9 38 381 38030 1348 425 Europe/Paris 2012-01-18
-3034339 Beaucouzé Beaucouze Beaucouze,Beaucouzé 47.47444 -0.63016 P PPL FR B5 49 491 49020 4534 55 Europe/Paris 2012-01-18
-3034343 Beaucourt Beaucourt Beaucourt 47.4899 6.92407 P PPL FR A6 90 901 90009 5565 428 Europe/Paris 2012-01-18
-3034363 Beauchastel Beauchastel Beauchastel 44.82759 4.79696 P PPL FR B9 07 072 07027 1614 137 Europe/Paris 2012-01-18
-3034366 Beauchamps Beauchamps Beauchamps 50.01202 1.51764 P PPL FR B6 80 801 80063 1020 21 Europe/Paris 2012-01-18
-3034369 Beauchamp Beauchamp Beauchamp 49.01667 2.2 P PPL FR A8 95 953 95051 9532 69 Europe/Paris 2012-01-18
-3034374 Beaucé Beauce Beauce,Beaucé,Belzeg 48.3389 -1.15804 P PPL FR A2 35 351 35021 1178 83 Europe/Paris 2012-01-18
-3034376 Beaucamps-le-Vieux Beaucamps-le-Vieux Beaucamps-le-Vieu,Beaucamps-le-Vieux 49.84642 1.78272 P PPL FR B6 80 802 80062 1411 186 Europe/Paris 2012-01-18
-3034382 Beaucaire Beaucaire Beaucaire,Beucaire,Bèucaire,Pont-National 43.80806 4.64417 P PPL FR A9 30 302 30032 14766 22 Europe/Paris 2011-11-02
-3034411 Bazouges-sur-le-Loir Bazouges-sur-le-Loir Bazouges 47.68928 -0.16883 P PPL FR B5 72 721 72025 1197 30 Europe/Paris 2007-07-04
-3034413 Bazouges-la-Pérouse Bazouges-la-Perouse Bazeleg-ar-Veineg,Bazouges,Bazouges-la-Perouse,Bazouges-la-Pérouse 48.42606 -1.57431 P PPL FR A2 35 351 35019 1849 105 Europe/Paris 2012-01-18
-3034422 Bazoges-en-Pareds Bazoges-en-Pareds Bazoges,Bazoges en Pareds,Bazoges-en-Pareds 46.65702 -0.91654 P PPL FR B5 85 851 85014 1127 75 Europe/Paris 2012-01-18
-3034429 Bazoches-les-Gallerandes Bazoches-les-Gallerandes Bazoches,Bazoches-les-Gallerandes 48.1654 2.04319 P PPL FR A3 45 453 45025 1428 129 Europe/Paris 2012-01-18
-3034442 Baziège Baziege Baziege,Baziège 43.45454 1.61399 P PPL FR B3 31 313 31048 2468 162 Europe/Paris 2012-01-18
-3034446 Bazet Bazet Bazet 43.29145 0.06728 P PPL FR B3 65 653 65072 1331 271 Europe/Paris 2012-01-18
-3034451 Bazemont Bazemont Bazemont 48.92726 1.86651 P PPL FR A8 78 781 78049 1610 142 Europe/Paris 2012-01-18
-3034454 Bazeilles Bazeilles Bazeilles 49.6765 4.97752 P PPL FR A4 08 083 08053 2108 165 Europe/Paris 2012-01-18
-3034458 Bazas Bazas Bazas 44.43202 -0.21327 P PPL FR 97 33 333 33036 5131 89 Europe/Paris 2012-01-18
-3034461 Bazancourt Bazancourt Bazancourt 49.36562 4.17051 P PPL FR A4 51 513 51043 1954 73 Europe/Paris 2012-01-18
-3034463 Bazainville Bazainville Bazainville 48.80435 1.66732 P PPL FR A8 78 781 78048 1304 129 Europe/Paris 2012-01-18
-3034475 Bayonne Bayonne Baiona,Bajon,Bajono,Bayona,Bayonne,Байон,Бајон 43.48333 -1.48333 P PPLA3 FR 97 64 641 64102 44396 24 Europe/Paris 2011-11-02
-3034476 Bayon Bayon Bayon 48.47366 6.31583 P PPL FR B2 54 542 54054 1438 264 Europe/Paris 2012-01-18
-3034483 Bayeux Bayeux Baje,Bajjo,Bajocae,Bayeux,baiyu,Байё,Баје,バイユー 49.27732 -0.7039 P PPLA3 FR 99 14 141 14047 15963 52 Europe/Paris 2011-11-02
-3034506 Bavilliers Bavilliers Bavilliers 47.62255 6.8311 P PPL FR A6 90 901 90008 4807 350 Europe/Paris 2012-01-18
-3034509 Bavent Bavent Bavent 49.22996 -0.18675 P PPL FR 99 14 142 14046 1795 34 Europe/Paris 2012-01-18
-3034514 Bavay Bavay Bavai 50.29828 3.79372 P PPL FR B4 59 591 59053 3414 149 Europe/Paris 2009-01-18
-3034515 Bavans Bavans Bavans 47.48528 6.73324 P PPL FR A6 25 252 25048 4108 350 Europe/Paris 2012-01-18
-3034521 Bauvin Bauvin Beauvin 50.51714 2.89404 P PPL FR B4 59 595 59052 5426 25 Europe/Paris 2009-10-21
-3034529 Bauné Baune Baune,Bauné 47.49954 -0.31906 P PPL FR B5 49 491 49019 1384 29 Europe/Paris 2012-01-18
-3034535 Baume-les-Dames Baume-les-Dames Baume,Baume-sur-le-Doubs 47.35295 6.36117 P PPL FR A6 25 251 25047 5759 283 Europe/Paris 2011-11-02
-3034538 Baulon Baulon Baulon,Beloen 47.9859 -1.93114 P PPL FR A2 35 352 35016 1491 110 Europe/Paris 2012-01-18
-3034541 Baulne Baulne Baulne 48.49303 2.3623 P PPL FR A8 91 911 91047 1453 73 Europe/Paris 2012-01-18
-3034543 Baule Baule Baule 47.81084 1.67259 P PPL FR A3 45 452 45024 1802 104 Europe/Paris 2012-01-18
-3034548 Baugy Baugy Baugy 47.08181 2.72848 P PPL FR A3 18 181 18023 1145 170 Europe/Paris 2012-01-18
-3034554 Baugé Bauge Bauge,Baugé 47.54447 -0.10653 P PPL FR B5 49 493 49018 3403 65 Europe/Paris 2012-01-18
-3034582 Baud Baud Baod,Baud 47.87474 -3.0176 P PPL FR A2 56 562 56010 5206 70 Europe/Paris 2012-01-18
-3034585 Batz-sur-Mer Batz-sur-Mer Batz,Batz-sur-Mer,Bourc'h-Baz 47.2775 -2.48027 P PPL FR B5 44 443 44010 3243 18 Europe/Paris 2012-01-18
-3034595 Battenheim Battenheim Battenheim 47.82007 7.38303 P PPL FR C1 68 684 68022 1382 225 Europe/Paris 2012-01-18
-3034608 Batilly Batilly Batilly 49.17372 5.96889 P PPL FR B2 54 541 54051 1157 246 Europe/Paris 2012-01-18
-3034640 Bastia Bastia Bastia,Bastija,ba si di ya,basutia,Бастия,バスティア,巴斯蒂亚 42.70278 9.45 P PPLA2 FR A5 2B 2B2 2B033 41001 16 Europe/Paris 2011-05-22
-3034649 Bassussarry Bassussarry Bassussarry,Bassussary,Basusarri 43.44272 -1.51647 P PPL FR 97 64 641 64100 2429 70 Europe/Paris 2012-01-18
-3034665 Bassillac Bassillac Basilak,Bassilac,Bassillac,Басилак 45.19305 0.81528 P PPL FR 97 24 243 24026 1876 106 Europe/Paris 2012-01-18
-3034690 Bassens Bassens Bassens 45.58503 5.94349 P PPL FR B9 73 732 73031 4012 320 Europe/Paris 2012-01-18
-3034691 Bassens Bassens Bassens 44.90226 -0.51631 P PPL FR 97 33 332 33032 7521 28 Europe/Paris 2012-01-18
-3034697 Indre Indre Antr,Basse-Indre,Ehndr,Indre,La Basse-Indre,Эндр 47.2 -1.66667 P PPL FR B5 44 442 44074 3897 4 Europe/Paris 2010-01-29
-3034698 Basse-Ham Basse-Ham Basse-Ham 49.38713 6.24228 P PPL FR B2 57 577 57287 1940 149 Europe/Paris 2012-01-18
-3034699 Basse-Goulaine Basse-Goulaine Basse-Goulaine,Goueled-Goulen 47.21167 -1.46748 P PPL FR B5 44 442 44009 8160 23 Europe/Paris 2012-01-18
-3034713 Bassan Bassan Bassan,Bessan 43.4106 3.25396 P PPL FR A9 34 341 34025 1660 88 Europe/Paris 2012-01-18
-3034746 Bas-en-Basset Bas-en-Basset Bas,Bas-en-Basset 45.30654 4.10899 P PPL FR 98 43 433 43020 3506 465 Europe/Paris 2012-01-18
-3034797 Bartenheim Bartenheim Bartenheim,Bartenkhajm,Бартенхајм 47.63354 7.47712 P PPL FR C1 68 684 68021 3038 259 Europe/Paris 2012-01-18
-3034798 Bart Bart Bart 47.48861 6.7709 P PPL FR A6 25 252 25043 1949 312 Europe/Paris 2012-01-18
-3034800 Bar-sur-Seine Bar-sur-Seine Bar,Bar sir Sen,Bar-sur-Seine,Бар сир Сен 48.11294 4.37656 P PPL FR A4 10 103 10034 3838 151 Europe/Paris 2012-01-18
-3034802 Bar-sur-Aube Bar-sur-Aube Bar 48.23333 4.71667 P PPLA3 FR A4 10 101 10033 5387 166 Europe/Paris 2011-11-02
-3034807 Barsac Barsac Barsac 44.60745 -0.31527 P PPL FR 97 33 333 33030 2123 13 Europe/Paris 2012-01-18
-3034851 Barraux Barraux Barraux 45.43503 5.9789 P PPL FR B9 38 381 38027 1585 353 Europe/Paris 2012-01-18
-3034868 Barr Barr 48.40755 7.44873 P PPL FR C1 67 675 67021 6343 208 Europe/Paris 2011-11-02
-3034887 Barneville-Plage Barneville-Plage Barneville-Plage,Plage de Barneville 49.36786 -1.76512 P PPL FR 99 50 502 50031 2308 8 Europe/Paris 2012-02-27
-3034903 Barlin Barlin Barlin 50.45238 2.61955 P PPL FR B4 62 622 62083 7734 78 Europe/Paris 2012-01-18
-3034911 Bar-le-Duc Bar-le-Duc Bar,Bar le Dik,Bar-le-Duc,Bar-sur-Meurthe,Bar-sur-Ornain,baru=ru=de~yukku,Бар ле Дик,バル=ル=デュック 48.78333 5.16667 P PPLA2 FR B2 55 551 55029 18595 263 Europe/Paris 2011-11-04
-3034915 Barjouville Barjouville Barjouville,Barzhuvij,Barzhuvil,Баржувил,Баржувиј 48.41002 1.47639 P PPL FR A3 28 281 28024 1473 147 Europe/Paris 2012-01-18
-3034918 Barjols Barjols Barjols 43.55782 6.00783 P PPL FR B8 83 833 83012 2619 265 Europe/Paris 2012-01-18
-3034921 Barjac Barjac Barjac 44.30743 4.35146 P PPL FR A9 30 301 30029 1503 182 Europe/Paris 2012-01-18
-3034939 Bargemon Bargemon 43.61899 6.54957 P PPL FR B8 83 831 83011 1316 465 Europe/Paris 2010-04-25
-3034950 Barenton Barenton Barenton,Larenton 48.60027 -0.83258 P PPL FR 99 50 501 50029 1426 139 Europe/Paris 2012-01-18
-3034951 Barentin Barentin Baranten,Barentin,Барантен,Барентин 49.54533 0.95515 P PPL FR A7 76 763 76057 13441 44 Europe/Paris 2012-01-18
-3034964 Bardos Bardos Bardos,Bardoze 43.47392 -1.20347 P PPL FR 97 64 641 64094 1453 120 Europe/Paris 2012-01-18
-3034991 Barcelonnette Barcelonnette Barcelonnette,Barcilona de Provenca,Barcilona de Provença,Barselonet,baruseronetto,barusuronetto,Барселонет,バルスロネット,バルセロネット 44.38333 6.65 P PPLA3 FR B8 04 041 04019 3487 1136 Europe/Paris 2010-04-02
-3034992 Barcelonne-du-Gers Barcelonne-du-Gers Barcelonne,Barcelonne-du-Gers 43.7036 -0.23619 P PPL FR B3 32 323 32027 1379 85 Europe/Paris 2012-01-18
-3034998 Barby Barby Babri,Barby,Бабри 45.57083 5.98273 P PPL FR B9 73 732 73030 3360 313 Europe/Paris 2012-01-18
-3035009 Barbizon Barbizon Barbison,Barbizon,barubizon,Барбизон,バルビゾン 48.44346 2.60313 P PPL FR A8 77 772 77022 1629 91 Europe/Paris 2012-01-18
-3035016 Barbezieux-Saint-Hilaire Barbezieux-Saint-Hilaire 45.47265 -0.15218 P PPL FR B7 16 162 16028 5184 91 Europe/Paris 2011-03-18
-3035033 Barberaz Barberaz Barberaz 45.55 5.93333 P PPL FR B9 73 732 73029 5059 479 Europe/Paris 2012-01-18
-3035036 Barbentane Barbentane Barbantan,Barbentane,Barbontan,Барбантан,Барбонтан 43.89967 4.74921 P PPL FR B8 13 132 13010 3916 31 Europe/Paris 2012-01-18
-3035040 Barbechat Barbechat Barbechat,Bargazh 47.2775 -1.28524 P PPL FR B5 44 442 44008 1140 72 Europe/Paris 2012-01-18
-3035044 Barbazan-Debat Barbazan-Debat Barbazan-Debat 43.1958 0.1206 P PPL FR B3 65 653 65062 3399 358 Europe/Paris 2011-01-02
-3035046 Barbâtre Barbatre Barbatre,Barbâtre 46.94116 -2.17752 P PPL FR B5 85 853 85011 1517 5 Europe/Paris 2012-01-18
-3035049 Barbaste Barbaste Barbaste 44.16905 0.28659 P PPL FR 97 47 474 47021 1605 58 Europe/Paris 2012-01-18
-3035065 Baraqueville Baraqueville Baraque de Fraysse 44.27655 2.43184 P PPL FR B3 12 122 12056 2782 793 Europe/Paris 2011-01-17
-3035088 Bapaume Bapaume Bapaume,Bapom,Бапом 50.10379 2.84966 P PPL FR B4 62 621 62080 4157 124 Europe/Paris 2011-11-02
-3035092 Banyuls de la Marenda Banyuls de la Marenda Banyuls,Banyuls de la Marenda,Banyuls-sur-Mer 42.48375 3.12897 P PPL FR A9 66 661 66016 5006 20 Europe/Paris 2011-11-02
-3035093 Banyuls-dels-Aspres Banyuls-dels-Aspres Banyuls,Banyuls-dels-Aspres 42.56567 2.86667 P PPL FR A9 66 661 66015 1100 119 Europe/Paris 2012-01-18
-3035099 Bantzenheim Bantzenheim Bancenkhajm,Bantzenheim,Банценхајм 47.82561 7.51498 P PPL FR C1 68 684 68020 1649 218 Europe/Paris 2012-01-18
-3035139 Bannalec Bannalec Banaleg,Banalek,Bannalec,Баналек 47.93229 -3.69759 P PPL FR A2 29 294 29004 5068 94 Europe/Paris 2012-01-18
-3035142 Banize Banize 45.87479 2.06168 P PPLA4 FR B1 23 231 23016 164 611 Europe/Paris 2011-07-31
-3035156 Bandol Bandol Bandol,Bandol AOC,Бандол 43.13709 5.7316 P PPL FR B8 83 832 83009 8546 0 34 Europe/Paris 2012-01-18
-3035160 Ban-de-Laveline Ban-de-Laveline Ban-de-Laveline,Laveline 48.24498 7.06593 P PPL FR B2 88 883 88032 1234 425 Europe/Paris 2012-01-18
-3035181 Balzac Balzac Balzac 45.7 0.11667 P PPL FR B7 16 161 16026 1284 32 Europe/Paris 2012-01-18
-3035204 Balma Balma Balma 43.61111 1.49944 P PPL FR B3 31 313 31044 15553 160 Europe/Paris 2011-11-02
-3035206 Ballots Ballots Ballots 47.89616 -1.04759 P PPL FR B5 53 531 53018 1089 79 Europe/Paris 2012-01-18
-3035211 Ballon Ballon Ballon 48.17317 0.23814 P PPL FR B5 72 723 72023 1445 109 Europe/Paris 2012-01-18
-3035226 Ballan-Miré Ballan-Mire Ballan,Ballan-Mire,Ballan-Miré 47.34057 0.61466 P PPL FR A3 37 372 37018 7398 92 Europe/Paris 2012-01-18
-3035228 Ballancourt-sur-Essonne Ballancourt-sur-Essonne 48.52525 2.38604 P PPL FR A8 91 912 91045 7001 67 Europe/Paris 2011-11-02
-3035229 Ballaison Ballaison Ballaison 46.29943 6.33191 P PPL FR B9 74 744 74025 1207 627 Europe/Paris 2012-01-18
-3035230 Ballainvilliers Ballainvilliers Ballainvilliers 48.67481 2.30057 P PPL FR A8 91 913 91044 2907 72 Europe/Paris 2012-01-18
-3035254 Baldersheim Baldersheim Baldersheim 47.80158 7.3802 P PPL FR C1 68 684 68015 2318 229 Europe/Paris 2012-01-18
-3035260 Balbigny Balbigny Balbigny 45.81928 4.18756 P PPL FR B9 42 422 42011 2583 333 Europe/Paris 2012-01-18
-3035263 Balazé Balaze Balaze,Balazé,Belezeg 48.16797 -1.19157 P PPL FR A2 35 351 35015 2101 89 Europe/Paris 2012-01-18
-3035267 Balaruc-le-Vieux Balaruc-le-Vieux Balaruc-le-Vieux 43.4614 3.6853 P PPL FR A9 34 343 34024 2016 6 Europe/Paris 2010-12-24
-3035268 Balaruc-les-Bains Balaruc-les-Bains Balaruc-les-Bains 43.4417 3.6778 P PPL FR A9 34 343 34023 6387 4 Europe/Paris 2010-12-24
-3035278 Balan Balan Balan,Балан 49.68882 4.96478 P PPL FR A4 08 083 08043 1621 165 Europe/Paris 2012-01-18
-3035279 Balan Balan Balan,Балан 45.8343 5.09834 P PPL FR B9 01 012 01027 2610 195 Europe/Paris 2012-01-18
-3035286 Balagny-sur-Thérain Balagny-sur-Therain Balagny,Balagny-sur-Therain,Balagny-sur-Thérain 49.29605 2.33645 P PPL FR B6 60 604 60044 1492 40 Europe/Paris 2012-01-18
-3035295 Baixas Baixas Baixas,Baixàs,Beksa,Бекса 42.74969 2.81002 P PPL FR A9 66 662 66014 2419 87 Europe/Paris 2012-01-18
-3035304 Baisieux Baisieux Baisieux,Baizieux 50.60841 3.25251 P PPL FR B4 59 595 59044 4110 37 Europe/Paris 2012-01-18
-3035308 Bais Bais Bais 48.2528 -0.36493 P PPL FR B5 53 533 53016 1568 186 Europe/Paris 2012-01-18
-3035309 Bais Bais Baez,Bais 48.00959 -1.28983 P PPL FR A2 35 351 35014 2109 73 Europe/Paris 2012-01-18
-3035313 Bainville-sur-Madon Bainville-sur-Madon Bainville,Bainville-sur-Madon 48.58807 6.09582 P PPL FR B2 54 543 54043 1195 233 Europe/Paris 2012-01-18
-3035316 Bains-sur-Oust Bains-sur-Oust Baen-Ballon,Bains,Bains-sur-Oust 47.70362 -2.07047 P PPL FR A2 35 352 35013 3317 63 Europe/Paris 2012-01-18
-3035317 Bains-les-Bains Bains-les-Bains Bains,Bains-les-Bains 48.00113 6.26492 P PPL FR B2 88 881 88029 1597 309 Europe/Paris 2012-01-18
-3035322 Bains Bains Bains 45.00963 3.77465 P PPL FR 98 43 432 43018 1256 979 Europe/Paris 2012-01-18
-3035324 Bain-de-Bretagne Bain-de-Bretagne Baen-Veur,Bain,Bain-de-Bretagne,Ben de Bretan,Бен де Бретањ 47.84418 -1.68486 P PPL FR A2 35 352 35012 6098 105 Europe/Paris 2012-01-18
-3035325 Baincthun Baincthun Baincthun 50.70994 1.68075 P PPL FR B4 62 623 62075 1340 34 Europe/Paris 2012-01-18
-3035329 Bailly-Romainvilliers Bailly-Romainvilliers Bailly-Romainvilliers 48.84729 2.82352 P PPL FR A8 77 775 77018 3692 136 Europe/Paris 2012-01-18
-3035333 Bailly-Carrois Bailly-Carrois Bailly-Carrois 48.58029 2.99047 P PPL FR A8 77 772 77211 1044 120 Europe/Paris 2012-02-27
-3035340 Bailly Bailly Bailly 48.84168 2.07672 P PPL FR A8 78 783 78043 4300 147 Europe/Paris 2012-01-18
-3035349 Bailleval Bailleval Bailleval 49.34605 2.45695 P PPL FR B6 60 602 60042 1489 63 Europe/Paris 2012-01-18
-3035351 Bailleul-sur-Thérain Bailleul-sur-Therain Bailleul,Bailleul-sur-Therain,Bailleul-sur-Thérain 49.38526 2.22279 P PPL FR B6 60 601 60041 2045 53 Europe/Paris 2012-01-18
-3035352 Bailleul-Sir-Berthoult Bailleul-Sir-Berthoult Bailleul,Bailleul-Sir-Berthoult,Bailleul-la-Liberte,Bailleul-la-Liberté 50.33752 2.85129 P PPL FR B4 62 621 62073 1199 78 Europe/Paris 2012-01-18
-3035359 Bailleul Bailleul Bailleul,Bajel,Belle,Бајел 50.73592 2.73594 P PPL FR B4 59 594 59043 14884 34 Europe/Paris 2012-01-18
-3035362 Baillet-en-France Baillet-en-France Baillet,Baillet-en-France 49.06187 2.2988 P PPL FR A8 95 952 95042 1805 109 Europe/Paris 2012-01-18
-3035365 Bailleau-l'Évêque Bailleau-l'Eveque Bailleau,Bailleau-l'Eveque,Bailleau-l'Evêque,Bailleau-l'Évêque,Bailleau-les-Bois,Bajo l'Evek,Бајо л'Евек 48.4896 1.39665 P PPL FR A3 28 281 28022 1103 167 Europe/Paris 2012-01-18
-3035366 Bailleau-le-Pin Bailleau-le-Pin Bailleau,Bailleau-le-Pin,Bajo le Pen,Бајо ле Пен 48.36698 1.32948 P PPL FR A3 28 281 28021 1508 173 Europe/Paris 2012-01-18
-3035370 Baillargues Baillargues Baillargues 43.66267 4.01681 P PPL FR A9 34 343 34022 6570 30 Europe/Paris 2012-01-18
-3035376 Baignes-Sainte-Radegonde Baignes-Sainte-Radegonde Baignes,Baignes-Sainte-Radegonde 45.38333 -0.23333 P PPL FR B7 16 162 16025 1279 76 Europe/Paris 2012-01-18
-3035381 Baigneaux Baigneaux 48.13333 1.81667 P PPLA4 FR A3 28 282 28019 0 122 Europe/Paris 2011-07-31
-3035388 Baho Baho Baho,Bao,Baó 42.7 2.82204 P PPL FR A9 66 662 66012 2727 53 Europe/Paris 2012-01-18
-3035389 Baguer-Pican Baguer-Pican Bagar-Bihan,Baguer-Pican 48.55253 -1.69837 P PPL FR A2 35 354 35010 1080 38 Europe/Paris 2012-01-18
-3035390 Baguer-Morvan Baguer-Morvan Bagar-Morvan,Baguer,Baguer-Morvan 48.52531 -1.77332 P PPL FR A2 35 354 35009 1465 32 Europe/Paris 2012-01-18
-3035396 Bagnols-sur-Cèze Bagnols-sur-Ceze Bagnols,Bagnols-sur-Ceze,Bagnols-sur-Cèze 44.1599 4.61776 P PPL FR A9 30 302 30028 19640 76 Europe/Paris 2012-01-18
-3035398 Bagnols-en-Forêt Bagnols-en-Foret Bagnols,Bagnols-en-Foret,Bagnols-en-Forêt 43.53666 6.7019 P PPL FR B8 83 831 83008 1810 310 Europe/Paris 2012-01-18
-3035403 Bagnolet Bagnolet Bagnolet,Ban'ole,Banole,Баньоле,Бањоле 48.86667 2.41667 P PPL FR A8 93 931 93006 33504 82 Europe/Paris 2012-01-18
-3035409 Bagneux Bagneux Bagneux,Bano,Бањо 48.79564 2.30796 P PPL FR A8 92 921 92007 38900 111 Europe/Paris 2012-01-18
-3035416 Bagnères-de-Luchon Bagneres-de-Luchon Bagneres de Luchon,Bagneres-de-Luchon,Bagnères de Luchon,Bagnères-de-Luchon,Baner de Lison,Banheres de Luishon,Banhères de Luishon,Luchon,Бањер де Лишон 42.79079 0.59315 P PPL FR B3 31 312 31042 3380 632 Europe/Paris 2012-01-18
-3035418 Bagnères-de-Bigorre Bagneres-de-Bigorre Bagneres,Bagneres-de-Bigorre,Bagnères,Bagnères-de-Bigorre,Baner de Bigor,Banheras,Banheras de Bigorra,Banhèras de Bigòrra,Бањер де Бигор 43.06667 0.15 P PPLA3 FR B3 65 652 65059 8967 554 Europe/Paris 2011-11-02
-3035419 Bagneaux-sur-Loing Bagneaux-sur-Loing Bagneaux,Bagneaux-sur-Loing 48.2331 2.70675 P PPL FR A8 77 774 77016 1569 63 Europe/Paris 2012-01-18
-3035432 Bages Bages Bages,Bages del Rossello,Bages del Rosselló 42.60588 2.8935 P PPL FR A9 66 662 66011 3636 25 Europe/Paris 2012-01-18
-3035437 Bâgé-la-Ville Bage-la-Ville Bage-la-Ville,Bâgé-la-Ville 46.31654 4.94666 P PPL FR B9 01 012 01025 2581 212 Europe/Paris 2012-01-18
-3035441 Bagard Bagard Bagard 44.07126 4.05225 P PPL FR A9 30 301 30027 2200 152 Europe/Paris 2012-01-18
-3035459 Baden Baden Baden 47.61734 -2.91987 P PPL FR A2 56 563 56008 3611 31 Europe/Paris 2012-01-18
-3035471 Bacqueville-en-Caux Bacqueville-en-Caux Bacqueville,Bacqueville-en-Caux,Bakvil an Ko,Баквил ан Ко 49.78761 0.99927 P PPL FR A7 76 761 76051 1799 97 Europe/Paris 2012-01-18
-3035482 Bachy Bachy Bachy 50.55079 3.25976 P PPL FR B4 59 595 59042 1363 74 Europe/Paris 2012-01-18
-3035492 Bachant Bachant Bachant 50.2154 3.86835 P PPL FR B4 59 591 59041 2415 143 Europe/Paris 2012-01-18
-3035498 Baccarat Baccarat Baccarat,Bakara,Бакара 48.45086 6.73935 P PPL FR B2 54 542 54039 4871 265 Europe/Paris 2012-01-18
-3035525 Azille Azille Azille 43.27691 2.65981 P PPL FR A9 11 111 11022 1086 90 Europe/Paris 2012-01-18
-3035541 Azé Aze Aze,Azé 47.85141 0.99829 P PPL FR A3 41 412 41010 1022 100 Europe/Paris 2012-01-18
-3035542 Azé Aze Aze,Azé 47.8222 -0.68333 P PPL FR B5 53 531 53014 3336 45 Europe/Paris 2012-01-18
-3035547 Azay-sur-Cher Azay-sur-Cher Azay,Azay-sur-Cher,Aze sir Sher,Азе сир Шер 47.34966 0.84562 P PPL FR A3 37 372 37015 2873 64 Europe/Paris 2012-01-18
-3035548 Azay-le-Rideau Azay-le-Rideau Azay,Azay-le-Rideau,Aze le Rido,Azeh-ljo-Rido,Castello di Azay-le-Rideau,Castillo de Azay-le-Rideau,Chateau d'Azay-le-Rideau,Château d'Azay-le-Rideau,Kasteel van Azay-le-Rideau,Schloss Azay-le-Rideau,Slottet i Azay-le-Rideau,ajeleulido,aze=ru=rido cheng,Азе ле Ридо,Азэ-лё-Ридо,アゼ=ル=リドー城,아제르리도 47.26405 0.47132 P PPL FR A3 37 371 37014 3275 86 Europe/Paris 2012-01-18
-3035549 Azay-le-Ferron Azay-le-Ferron Azay,Azay-le-Feron,Azay-le-Ferron,Aze le Feron,Азе ле Ферон 46.85097 1.07084 P PPL FR A3 36 361 36010 1001 106 Europe/Paris 2012-01-18
-3035550 Azay-le-Brûlé Azay-le-Brule Azay,Azay-le-Brule,Azay-le-Brûlé 46.40011 -0.24914 P PPL FR B7 79 792 79024 1604 117 Europe/Paris 2012-01-18
-3035560 Aytré Aytre Aytre,Aytré 46.1357 -1.11452 P PPL FR B7 17 173 17028 8335 13 Europe/Paris 2012-01-18
-3035561 Ay-sur-Moselle Ay-sur-Moselle Ay,Ay-sur-Moselle 49.24139 6.2068 P PPL FR B2 57 574 57043 1563 159 Europe/Paris 2012-01-18
-3035563 Ayse Ayse Ayse,Ayze 46.08333 6.43333 P PPL FR B9 74 742 74024 2024 465 Europe/Paris 2012-01-18
-3035566 Ayron Ayron Ayron 46.66026 0.07545 P PPL FR B7 86 863 86017 1014 139 Europe/Paris 2012-01-18
-3035576 Ayguesvives Ayguesvives Aiguesvives,Ayguesvives 43.43636 1.59505 P PPL FR B3 31 313 31004 2030 191 Europe/Paris 2012-01-18
-3035577 Ayguemorte-les-Graves Ayguemorte-les-Graves Aiguemorte-les Graves,Ayguemorte,Ayguemorte-les-Graves 44.70988 -0.4806 P PPL FR 97 33 332 33023 1057 7 Europe/Paris 2012-01-18
-3035585 Aydoilles Aydoilles Aydoilles 48.21026 6.57389 P PPL FR B2 88 881 88026 1095 378 Europe/Paris 2012-01-18
-3035589 Aydat Aydat Ajda,Aydat,Eda,Ајда,Еда 45.66136 2.97391 P PPL FR 98 63 632 63026 1714 855 Europe/Paris 2012-01-18
-3035594 Ay Ay Ay,Aÿ,E,Е 49.05457 4.00343 P PPL FR A4 51 512 51030 4362 73 Europe/Paris 2012-01-18
-3035595 Ax-les-Thermes Ax-les-Thermes Aks le Term,Ax,Ax-les-Thermes,Акс ле Терм 42.71968 1.83845 P PPL FR B3 09 091 09032 1510 722 Europe/Paris 2012-01-18
-3035612 Avrillé Avrille Avrille,Avrillé 47.5 -0.58333 P PPL FR B5 49 491 49015 13723 53 Europe/Paris 2012-01-18
-3035613 Avrillé Avrille Avrille,Avrillé 46.4684 -1.48049 P PPL FR B5 85 853 85010 1075 44 Europe/Paris 2012-01-18
-3035634 Avrechy Avrechy Avrechy 49.44796 2.4271 P PPL FR B6 60 602 60034 1112 86 Europe/Paris 2012-01-18
-3035639 Avranches Avranches Avranches,Avransh,Авранш 48.68333 -1.36667 P PPLA3 FR 99 50 501 50025 9295 89 Europe/Paris 2011-11-02
-3035649 Avord Avord Avor,Avord,Авор 47.03514 2.65295 P PPL FR A3 18 181 18018 2957 169 Europe/Paris 2012-01-18
-3035654 Avon Avon Avon 48.4022 2.72022 P PPL FR A8 77 774 77014 15009 81 Europe/Paris 2012-01-18
-3035659 Avoine Avoine Avoen,Avoine,Авоен 47.20533 0.18253 P PPL FR A3 37 371 37011 1886 37 Europe/Paris 2007-02-18
-3035661 Avize Avize Avize 48.97352 4.01438 P PPL FR A4 51 512 51029 1848 130 Europe/Paris 2012-01-18
-3035663 Aviron Aviron Aviron,Авирон 49.05 1.11667 P PPL FR A7 27 273 27031 1279 138 Europe/Paris 2012-01-18
-3035667 Avion Avion Avion 50.41038 2.83053 P PPL FR B4 62 627 62065 18470 35 Europe/Paris 2012-01-18
-3035669 Avilly-Saint-Léonard Avilly-Saint-Leonard Avilly-Saint-Leonard,Avilly-Saint-Léonard 49.19449 2.54148 P PPL FR B6 60 604 60033 1016 50 Europe/Paris 2012-01-18
-3035675 Avignonet-Lauragais Avignonet-Lauragais Avignonet 43.36667 1.8 P PPL FR B3 31 313 31037 1201 209 Europe/Paris 2007-09-12
-3035681 Avignon Avignon Abinion,Avennio,Avignon,Avignone,Avin'on,Avinhao,Avinhon,Avinhão,Avinjonas,Avinjono,Avinon,Avinon - Avignon,Avinyo,Avinyon,Avinyó,Avinyón,Aviñón,Aviñón - Avignon,Awinion,abinyong,avinioni,avu~inyon,awynywn,ya wei nong,Αβινιόν,Авиньон,Авињон,Авіньйон,אביניון,آوینیون,ავინიონი,アヴィニョン,亞維農,아비뇽 43.94834 4.80892 P PPLA2 FR B8 84 842 84007 89769 31 Europe/Paris 2011-12-08
-3035687 Avèze Aveze Aveze,Avèze 43.97116 3.60097 P PPL FR A9 30 303 30026 1117 258 Europe/Paris 2012-01-18
-3035696 Avessac Avessac Avessac,Avezeg 47.65324 -1.98962 P PPL FR B5 44 441 44007 2346 54 Europe/Paris 2012-01-18
-3035698 Avesnes-sur-Helpe Avesnes-sur-Helpe Avesnes,Avesnes-sur-Helpe,Avne sir Elp,Авне сир Елп 50.11667 3.93333 P PPLA3 FR FR B4 59 591 59036 0 164 Europe/Paris 2011-11-02
-3035699 Avesnes-le-Sec Avesnes-le-Sec Avesnes,Avesnes-le-Sec 50.251 3.37768 P PPL FR B4 59 596 59038 1309 65 Europe/Paris 2012-01-18
-3035701 Avesnes-les-Aubert Avesnes-les-Aubert Avesnes,Avesnes-lez-Aubert 50.2 3.38333 P PPL FR B4 59 592 59037 3665 58 Europe/Paris 2007-11-15
-3035702 Avesnes-le-Comte Avesnes-le-Comte Avesne-l'Egalite,Avesne-l'Egalité,Avesnes-le-Comte 50.27767 2.52957 P PPL FR B4 62 621 62063 2039 136 Europe/Paris 2012-01-18
-3035707 Avesnelles Avesnelles Avesnelles 50.11782 3.94674 P PPL FR B4 59 591 59035 2643 164 Europe/Paris 2012-01-18
-3035719 Avermes Avermes Avermes 46.58666 3.30619 P PPL FR 98 03 032 03013 3833 209 Europe/Paris 2012-01-18
-3035727 Avensan Avensan Avensan 45.03444 -0.75568 P PPL FR 97 33 334 33022 1911 24 Europe/Paris 2012-01-18
-3035743 Avelin Avelin Avelin 50.53968 3.08222 P PPL FR B4 59 595 59034 2348 36 Europe/Paris 2012-01-18
-3035748 Aveizieux Aveizieux Aveizieux 45.5675 4.37136 P PPL FR B9 42 421 42010 1292 553 Europe/Paris 2012-01-18
-3035749 Aveize Aveize Aveize 45.68139 4.47646 P PPL FR B9 69 691 69014 1005 778 Europe/Paris 2012-01-18
-3035756 Avanton Avanton Avanton 46.66369 0.30862 P PPL FR B7 86 863 86016 1502 114 Europe/Paris 2012-01-18
-3035761 Avanne-Aveney Avanne-Aveney 47.2 5.96667 P PPL FR A6 25 251 25036 1975 234 Europe/Paris 2007-11-12
-3035768 Avallon Avallon Avallon,Avalon,Avalun,Авалон,Авалун 47.48333 3.9 P PPLA3 FR A1 89 892 89025 8740 200 Europe/Paris 2011-11-02
-3035776 Availles-Limouzine Availles-Limouzine Availles,Availles-Limouzine,Availles-la-Montagne 46.12104 0.65558 P PPL FR B7 86 862 86015 1399 132 Europe/Paris 2012-01-18
-3035786 Auzouer-en-Touraine Auzouer-en-Touraine Auzouer,Auzouer-en-Touraine 47.5423 0.92067 P PPL FR A3 37 372 37010 1459 96 Europe/Paris 2012-01-18
-3035801 Auzielle Auzielle Auzielle 43.54165 1.56574 P PPL FR B3 31 313 31036 1756 200 Europe/Paris 2012-01-18
-3035802 Auzeville-Tolosane Auzeville-Tolosane Auzeville,Auzeville-Tolosane 43.52778 1.4824 P PPL FR B3 31 313 31035 2933 193 Europe/Paris 2012-01-18
-3035808 Auzebosc Auzebosc Auzebosc 49.59565 0.7285 P PPL FR A7 76 763 76043 1242 135 Europe/Paris 2012-01-18
-3035812 Auzat-la-Combelle Auzat-la-Combelle Auzat-sur-Allier 45.45 3.31667 P PPL FR 98 63 633 63022 2036 391 Europe/Paris 2007-11-14
-3035816 Auzances Auzances Auzances 46.02849 2.50042 P PPL FR B1 23 231 23013 1435 561 Europe/Paris 2012-01-18
-3035824 Auxy Auxy Auxy 46.9494 4.4044 P PPL FR A1 71 711 71015 1059 515 Europe/Paris 2012-01-18
-3035828 Auxonne Auxonne Auxonne,Ukson,Уксон 47.19255 5.38726 P PPL FR A1 21 212 21038 7958 189 Europe/Paris 2012-01-18
-3035830 Auxon-Dessous Auxon-Dessous Auxon-Dessous,Okson Desu,Оксон Десу 47.3 5.95 P PPL FR A6 25 251 25034 1131 224 Europe/Paris 2012-01-18
-3035838 Auxi-le-Château Auxi-le-Chateau Auxi,Auxi-le-Chateau,Auxi-le-Château,Auxy-la-Reunion,Auxy-la-Réunion 50.23101 2.11593 P PPL FR B4 62 621 62060 2969 32 Europe/Paris 2012-01-18
-3035843 Auxerre Auxerre Auxerre,Okser,Oser,oseru,ou sai er,Оксер,Осер,オセール,欧塞尔 47.8 3.56667 P PPLA2 FR A1 89 891 89024 41516 122 Europe/Paris 2011-11-02
-3035859 Auvillar Auvillar Auvillar 44.06863 0.90192 P PPL FR B3 82 821 82008 1019 112 Europe/Paris 2012-01-18
-3035864 Auvers-sur-Oise Auvers-sur-Oise Auvers,Auvers-sur-Oise,Over sir Oaz,ovu~eru=shuru=owazu,Овер сир Оаз,オーヴェル=シュル=オワーズ 49.07158 2.16978 P PPL FR A8 95 953 95039 6972 31 Europe/Paris 2012-01-18
-3035866 Auvers-Saint-Georges Auvers-Saint-Georges Auvers,Auvers-Saint-Georges 48.49276 2.22045 P PPL FR A8 91 911 91038 1116 66 Europe/Paris 2012-01-18
-3035867 Auvers-le-Hamon Auvers-le-Hamon Auvers,Auvers-l'Union,Auvers-le-Hamon 47.90246 -0.3517 P PPL FR B5 72 721 72016 1445 63 Europe/Paris 2012-01-18
-3035883 Autun Autun Autun,Bibracte,Utan,otan,Утан,オータン 46.95 4.3 P PPLA3 FR A1 71 711 71014 18283 332 Europe/Paris 2011-11-02
-3035886 Autry-le-Châtel Autry-le-Chatel Autry,Autry-le-Chatel,Autry-le-Châtel 47.59886 2.602 P PPL FR A3 45 451 45016 1093 188 Europe/Paris 2012-01-18
-3035916 Autrans Autrans Autrans 45.17704 5.54424 P PPL FR B9 38 381 38021 1756 1046 Europe/Paris 2012-01-18
-3035938 Authon-du-Perche Authon-du-Perche Authon,Authon-du-Perche,Cinq-Fonds 48.19616 0.89189 P PPL FR A3 28 284 28018 1268 240 Europe/Paris 2012-01-18
-3035951 Authie Authie Authie 49.20615 -0.43191 P PPL FR 99 14 142 14030 1034 66 Europe/Paris 2012-01-18
-3035970 Auterive Auterive Auterive 43.35103 1.47797 P PPL FR B3 31 311 31033 7369 194 Europe/Paris 2012-01-18
-3035985 Aussonne Aussonne Aussonne 43.68162 1.31886 P PPL FR B3 31 313 31032 4749 151 Europe/Paris 2012-01-18
-3035991 Aussillon Aussillon Aussillon 43.50293 2.36792 P PPL FR B3 81 812 81021 7309 239 Europe/Paris 2012-01-18
-3036012 Auriol Auriol Auriol 43.37161 5.6341 P PPL FR B8 13 133 13007 9872 232 Europe/Paris 2011-01-18
-3036016 Aurillac Aurillac Aurillac,Orijak,Orilak,Orlhac,oriyakku,Оријак,Ориљак,オーリヤック 44.91667 2.45 P PPLA2 FR 98 15 151 15014 34724 727 Europe/Paris 2011-11-02
-3036018 Aurignac Aurignac Aurignac 43.21695 0.88176 P PPL FR B3 31 312 31028 1209 392 Europe/Paris 2012-01-18
-3036022 Auribeau-sur-Siagne Auribeau-sur-Siagne Auribeau,Auribeau-sur-Siagne 43.60441 6.90779 P PPL FR B8 06 061 06007 2736 51 Europe/Paris 2012-01-18
-3036027 Auriac-sur-Vendinelle Auriac-sur-Vendinelle Auriac,Auriac-sur-Vendinelle 43.52416 1.8264 P PPL FR B3 31 313 31026 1082 193 Europe/Paris 2012-01-18
-3036048 Aureille Aureille Aureille 43.70821 4.94728 P PPL FR B8 13 132 13006 1435 138 Europe/Paris 2011-01-18
-3036052 Aureilhan Aureilhan Aureilhan 43.24337 0.09581 P PPL FR B3 65 653 65047 7859 309 Europe/Paris 2012-01-18
-3036054 Aurec-sur-Loire Aurec-sur-Loire Aurec,Aurec-sur-Loire 45.36907 4.2049 P PPL FR 98 43 433 43012 5226 455 Europe/Paris 2012-01-18
-3036059 Auray Auray An Alre,Auray,Ure,Уре 47.67025 -2.99183 P PPL FR A2 56 561 56007 12269 42 Europe/Paris 2012-01-18
-3036067 Aups Aups Aups,Op,Up,Оп,Уп 43.62904 6.22553 P PPL FR B8 83 833 83007 2072 514 Europe/Paris 2012-01-18
-3036074 Auneuil Auneuil Auneuil 49.37026 1.99712 P PPL FR B6 60 601 60029 2891 126 Europe/Paris 2012-01-18
-3036079 Auneau Auneau Auneau 48.46361 1.77264 P PPL FR A3 28 281 28015 4007 145 Europe/Paris 2012-01-18
-3036081 Aunay-sur-Odon Aunay-sur-Odon Aunay,Aunay-sur-Odon 49.02012 -0.63238 P PPL FR 99 14 144 14027 3038 121 Europe/Paris 2012-01-18
-3036083 Aunay-sous-Auneau Aunay-sous-Auneau Aunay,Aunay-sous-Auneau 48.4414 1.81094 P PPL FR A3 28 281 28013 1378 135 Europe/Paris 2012-01-18
-3036097 Aumont-Aubrac Aumont-Aubrac Aumont,Aumont-Aubrac 44.72205 3.28466 P PPL FR A9 48 482 48009 1106 1059 Europe/Paris 2012-01-18
-3036107 Aumetz Aumetz Aumetz,Omec,Umetz,Омец,Уметз 49.41294 5.94916 P PPL FR B2 57 578 57041 2293 381 Europe/Paris 2012-01-18
-3036117 Aumale Aumale Aumale,Omal,Омал 49.76985 1.75587 P PPL FR A7 76 761 76035 2705 118 Europe/Paris 2012-01-18
-3036122 Ault Ault Ault,Bourg d'Ault 50.10404 1.45 P PPL FR B6 80 801 80039 1914 37 Europe/Paris 2012-01-18
-3036132 Aulnoye-Aymeries Aulnoye-Aymeries Aulnoye,Aulnoye-Aymeries 50.20141 3.83844 P PPL FR B4 59 591 59033 9242 149 Europe/Paris 2012-01-18
-3036133 Aulnoy-lez-Valenciennes Aulnoy-lez-Valenciennes 50.33333 3.53333 P PPL FR B4 59 596 59032 8172 37 Europe/Paris 2007-11-12
-3036137 Aulnois-sous-Laon Aulnois-sous-Laon Aulnois,Aulnois-sous-Laon 49.61429 3.60547 P PPL FR B6 02 022 02037 1320 68 Europe/Paris 2012-01-18
-3036142 Aulnay-sur-Mauldre Aulnay-sur-Mauldre Aulnay,Aulnay-sur-Mauldre 48.9295 1.84113 P PPL FR A8 78 781 78033 1160 29 Europe/Paris 2012-01-18
-3036145 Aulnay-sous-Bois Aulnay-sous-Bois Aulnay,Aulnay-sous-Bois,olne su boa,Олне су Боа 48.93814 2.49402 P PPL FR A8 93 932 93005 80615 45 Europe/Paris 2012-01-18
-3036153 Aulnay Aulnay Aulnay,Aulnay-de-Saintonge 46.02082 -0.34778 P PPL FR B7 17 175 17024 1620 58 Europe/Paris 2012-01-18
-3036154 Aulnat Aulnat Aulnat 45.79604 3.16498 P PPL FR 98 63 632 63019 4662 326 Europe/Paris 2012-01-18
-3036178 Augy Augy Augy 47.7664 3.61051 P PPL FR A1 89 891 89023 1182 100 Europe/Paris 2012-01-18
-3036184 Augny Augny Augny 49.06111 6.11835 P PPL FR B2 57 574 57039 2615 194 Europe/Paris 2012-01-18
-3036215 Augan Augan Algam,Augan 47.91943 -2.27905 P PPL FR A2 56 563 56006 1374 85 Europe/Paris 2012-01-18
-3036223 Auffargis Auffargis Auffargis 48.70049 1.88696 P PPL FR A8 78 782 78030 1983 157 Europe/Paris 2012-01-18
-3036226 Audun-le-Tiche Audun-le-Tiche Audun,Audun-le-Tiche,Daeitsch-Oth,Däitsch-Oth,Oden le Tish,Оден ле Тиш 49.47228 5.95694 P PPL FR B2 57 578 57038 5935 311 Europe/Paris 2012-01-18
-3036227 Audun-le-Roman Audun-le-Roman Audun,Audun-le-Roman 49.36878 5.89564 P PPL FR B2 54 541 54029 2122 361 Europe/Paris 2012-01-18
-3036229 Audruicq Audruicq Audruicq 50.87795 2.07975 P PPL FR B4 62 625 62057 4680 7 Europe/Paris 2012-01-18
-3036240 Audincourt Audincourt Audincourt 47.48327 6.85341 P PPL FR A6 25 252 25031 15577 334 Europe/Paris 2012-01-18
-3036247 Audierne Audierne Audierne,Gwaien,Odjerne,Одјерне 48.0164 -4.53838 P PPL FR A2 29 294 29003 2601 12 Europe/Paris 2008-06-04
-3036256 Audenge Audenge Audenge 44.68686 -1.01345 P PPL FR 97 33 336 33019 5522 8 Europe/Paris 2012-01-18
-3036270 Auchy-les-Mines Auchy-les-Mines Auchy,Auchy-les-Mines 50.51349 2.78283 P PPL FR B4 62 622 62051 4534 26 Europe/Paris 2012-01-18
-3036271 Auchy-lès-Hesdin Auchy-les-Hesdin Auchy,Auchy-les-Hesdin,Auchy-lès-Hesdin 50.40114 2.10145 P PPL FR B4 62 624 62050 1804 34 Europe/Paris 2012-01-18
-3036278 Auchel Auchel Auchel,Ushel,Ушел 50.50345 2.47346 P PPL FR B4 62 622 62048 11419 99 Europe/Paris 2012-01-18
-3036281 Auch Auch Auch,Aush,Auski,Osh,Ush,oshu,Ош,Уш,オーシュ 43.65 0.58333 P PPLA2 FR B3 32 321 32013 24494 152 Europe/Paris 2011-11-02
-3036287 Aucamville Aucamville Aucamville 43.6702 1.42808 P PPL FR B3 31 313 31022 6202 133 Europe/Paris 2012-01-18
-3036289 Auby Auby Auby,Auby-lez-Douai 50.41457 3.05396 P PPL FR B4 59 593 59028 7836 27 Europe/Paris 2012-01-18
-3036295 Aubusson Aubusson Aubusson,Lo Bucon,Lo Buçon,Obison,Обисон 45.95 2.16667 P PPLA3 FR B1 23 231 23008 4907 475 Europe/Paris 2010-04-02
-3036300 Aubry-du-Hainaut Aubry-du-Hainaut 50.36667 3.46667 P PPL FR B4 59 596 59027 1480 40 Europe/Paris 2007-11-12
-3036313 Auboué Auboue Auboue,Auboué 49.21309 5.978 P PPL FR B2 54 541 54028 2890 196 Europe/Paris 2012-01-18
-3036314 Aubord Aubord Aubord 43.75827 4.31105 P PPL FR A9 30 302 30020 2089 22 Europe/Paris 2012-01-18
-3036323 Aubin Aubin Aubin 44.52809 2.24439 P PPL FR B3 12 123 12013 4735 247 Europe/Paris 2011-01-12
-3036326 Aubigny-sur-Nère Aubigny-sur-Nere Aubigny,Aubigny-Ville,Aubigny-sur-Nere,Aubigny-sur-Nère,Obini sir Ner,Обињи сир Нер 47.48819 2.43895 P PPL FR A3 18 183 18015 5984 186 Europe/Paris 2012-01-18
-3036335 Aubigny-au-Bac Aubigny-au-Bac Aubigny,Aubigny-au-Bac 50.2637 3.16448 P PPL FR B4 59 593 59026 1041 45 Europe/Paris 2012-01-18
-3036338 Aubigny-en-Artois Aubigny-en-Artois 50.35 2.58333 P PPL FR B4 62 621 62045 1412 93 Europe/Paris 2007-11-12
-3036348 Aubigny Aubigny Aubigny 46.59653 -1.45364 P PPL FR B5 85 852 85008 2508 56 Europe/Paris 2012-01-18
-3036352 Aubigné-Racan Aubigne-Racan Aubigne,Aubigne-Racan,Aubigné,Aubigné-Racan 47.69091 0.2687 P PPL FR B5 72 721 72013 2211 59 Europe/Paris 2012-01-18
-3036359 Aubignan Aubignan Aubignan 44.09941 5.02409 P PPL FR B8 84 843 84004 4336 71 Europe/Paris 2012-01-18
-3036363 Aubiet Aubiet Aubiet 43.64631 0.78442 P PPL FR B3 32 321 32012 1046 184 Europe/Paris 2012-01-18
-3036364 Aubière Aubiere Aubiere,Aubière 45.75157 3.11251 P PPL FR 98 63 632 63014 11054 378 Europe/Paris 2012-01-18
-3036365 Aubie-et-Espessas Aubie-et-Espessas Aubie,Aubie-et-Espessas 45.01869 -0.40297 P PPL FR 97 33 331 33018 1043 43 Europe/Paris 2012-01-18
-3036371 Aubevoye Aubevoye Aubevoie,Aubevoye 49.17097 1.33537 P PPL FR A7 27 271 27022 4030 17 Europe/Paris 2012-01-18
-3036380 Aube-sur-Rîle Aube-sur-Rile Aube,Aube-sur-Rile,Aube-sur-Rîle 48.7392 0.55161 P PPL FR 99 61 613 61008 1628 245 Europe/Paris 2012-02-27
-3036386 Aubervilliers Aubervilliers Aubervilles,Aubervilliers 48.91667 2.38333 P PPL FR A8 93 933 93001 70914 38 Europe/Paris 2012-01-18
-3036394 Aubers Aubers Aubers 50.59543 2.82666 P PPL FR B4 59 595 59025 1634 29 Europe/Paris 2012-01-18
-3036399 Auberives-sur-Varèze Auberives-sur-Vareze Auberives 45.43333 4.83333 P PPL FR B9 38 383 38019 1393 207 Europe/Paris 2007-11-15
-3036402 Aubergenville Aubergenville Aubergenville 48.95996 1.85467 P PPL FR A8 78 781 78029 11934 46 Europe/Paris 2012-01-18
-3036406 Auberchicourt Auberchicourt Auberchicourt 50.33333 3.23333 P PPL FR B4 59 593 59024 4659 31 Europe/Paris 2012-01-18
-3036418 Aubenas Aubenas Aubenas,Ubena,Убена 44.62006 4.38994 P PPL FR B9 07 071 07019 13134 320 Europe/Paris 2012-01-18
-3036430 Aubais Aubais Aubais 43.75402 4.14567 P PPL FR A9 30 302 30019 2165 63 Europe/Paris 2012-01-18
-3036433 Aubagne Aubagne Aubagne,Aubagne en Provence,Oban,Oban',Obane,Obanė,Ubane,obanyu,Обан,Обань,Обањ,Убање,オーバーニュ 43.29276 5.57067 P PPL FR B8 13 133 13005 44844 120 Europe/Paris 2011-11-02
-3036436 Atur Atur Atir,Atur,Атир 45.14086 0.74702 P PPL FR 97 24 243 24013 1588 231 Europe/Paris 2012-01-18
-3036444 Attigny Attigny Atini,Attigny,Vieux-Pont,Атињи 49.47846 4.57803 P PPL FR A4 08 084 08025 1206 85 Europe/Paris 2012-01-18
-3036449 Attignat Attignat Atina,Attignat,Атиња 46.28815 5.16126 P PPL FR B9 01 012 01024 2114 222 Europe/Paris 2012-01-18
-3036450 Attichy Attichy Attichy 49.41121 3.04949 P PPL FR B6 60 603 60025 1954 42 Europe/Paris 2012-01-18
-3036451 Attiches Attiches Attiches 50.5222 3.06222 P PPL FR B4 59 595 59022 2269 59 Europe/Paris 2012-01-18
-3036456 Attainville Attainville Attainville 49.05779 2.34497 P PPL FR A8 95 952 95028 1834 95 Europe/Paris 2012-01-18
-3036460 Athis-Mons Athis-Mons Athis,Athis-Mons,Ati Mon,Ати Мон 48.70522 2.39147 P PPL FR A8 91 913 91027 31225 33 Europe/Paris 2012-01-18
-3036464 Athies-sous-Laon Athies-sous-Laon Athies,Athies-sous-Laon 49.57369 3.68417 P PPL FR B6 02 022 02028 2160 72 Europe/Paris 2012-01-18
-3036471 Athée-sur-Cher Athee-sur-Cher Athee,Athee-sur-Cher,Athée,Athée-sur-Cher 47.32023 0.91659 P PPL FR A3 37 372 37008 2114 91 Europe/Paris 2012-01-18
-3036495 Astaffort Astaffort Astaffort 44.06426 0.65141 P PPL FR 97 47 471 47015 2020 82 Europe/Paris 2012-01-18
-3036502 Asson Asson Asson 43.15 -0.25 P PPL FR 97 64 643 64068 1810 338 Europe/Paris 2011-09-11
-3036512 Assérac Asserac Asserac,Assérac,Azereg 47.42881 -2.38916 P PPL FR B5 44 443 44006 1466 15 Europe/Paris 2012-01-18
-3036522 Assat Assat Assat 43.25 -0.3 P PPL FR 97 64 643 64067 1592 213 Europe/Paris 2012-01-18
-3036524 Assas Assas Assas 43.70278 3.9 P PPL FR A9 34 343 34014 1471 116 Europe/Paris 2010-12-24
-3036540 Aspremont Aspremont Aprmon,Aspremon,Aspremont,Апрмон,Аспремон 43.78539 7.24458 P PPL FR B8 06 062 06006 2074 503 Europe/Paris 2012-01-18
-3036544 Aspiran Aspiran 43.56586 3.45031 P PPL FR A9 34 342 34013 1311 77 Europe/Paris 2009-06-23
-3036548 Aspet Aspet Aspet 43.01457 0.80294 P PPL FR B3 31 312 31020 1154 479 Europe/Paris 2012-01-18
-3036553 Aspach-le-Haut Aspach-le-Haut Aspach,Aspach-le-Haut 47.77653 7.13146 P PPL FR C1 68 686 68012 1180 311 Europe/Paris 2012-01-18
-3036554 Aspach-le-Bas Aspach-le-Bas Aspach,Aspach-le-Bas 47.76115 7.1509 P PPL FR C1 68 686 68011 1131 296 Europe/Paris 2012-01-18
-3036556 Aspach Aspach Aspach 47.64173 7.23324 P PPL FR C1 68 681 68010 1030 298 Europe/Paris 2012-01-18
-3036562 Asnières-sur-Oise Asnieres-sur-Oise Asnieres,Asnieres-sur-Oise,Asnières,Asnières-sur-Oise 49.13369 2.35551 P PPL FR A8 95 952 95026 2631 45 Europe/Paris 2012-01-18
-3036563 Asnières-sur-Nouère Asnieres-sur-Nouere Asnieres,Asnieres-sur-Nouere,Asnières,Asnières-sur-Nouère 45.71667 0.05 P PPL FR B7 16 161 16019 1052 99 Europe/Paris 2012-01-18
-3036572 Asnières-sur-Seine Asnieres-sur-Seine An'er-sjur-Sen,Asnieres,Asnières,Аньер-сюр-Сен 48.91667 2.28333 P PPL FR A8 92 922 92004 86742 35 Europe/Paris 2011-11-04
-3036590 Aschères-le-Marché Ascheres-le-Marche Ascheres,Ascheres-le-Marche,Aschères,Aschères-le-Marché 48.11008 2.00726 P PPL FR A3 45 453 45009 1166 123 Europe/Paris 2012-01-18
-3036596 Ascain Ascain Ascain,Azkaine 43.34521 -1.62073 P PPL FR 97 64 641 64065 3365 25 Europe/Paris 2012-01-18
-3036601 Arzon Arzon Arzhon-Rewiz,Arzon 47.54852 -2.88988 P PPL FR A2 56 563 56005 2193 12 Europe/Paris 2012-01-18
-3036604 Arzens Arzens Arzens 43.19838 2.20954 P PPL FR A9 11 111 11018 1074 198 Europe/Paris 2012-01-18
-3036609 Arzano Arzano An Arzhanaou,Arzano 47.90136 -3.44032 P PPL FR A2 29 294 29002 1398 89 Europe/Paris 2012-01-18
-3036625 Arveyres Arveyres Arveyres 44.88333 -0.28333 P PPL FR 97 33 335 33015 1793 25 Europe/Paris 2012-01-18
-3036628 Arvert Arvert Arvert 45.74486 -1.12573 P PPL FR B7 17 172 17021 3112 22 Europe/Paris 2012-01-18
-3036633 Arudy Arudy Arudy 43.11667 -0.43333 P PPL FR 97 64 642 64062 2417 392 Europe/Paris 2011-09-11
-3036637 Art-sur-Meurthe Art-sur-Meurthe Art,Art-sur-Meurthe 48.65589 6.26612 P PPL FR B2 54 543 54025 1660 213 Europe/Paris 2012-01-18
-3036638 Artres Artres Artres 50.29482 3.54012 P PPL FR B4 59 596 59019 1092 60 Europe/Paris 2012-01-18
-3036646 Artix Artix Artix 43.4 -0.55 P PPL FR 97 64 643 64061 3356 141 Europe/Paris 2011-09-11
-3036655 Artigues-près-Bordeaux Artigues-pres-Bordeaux Artigues,Artigues-pres-Bordeaux,Artigues-près-Bordeaux 44.85 -0.51667 P PPL FR 97 33 332 33013 6582 72 Europe/Paris 2012-01-18
-3036663 Artiguelouve Artiguelouve Artiguelouve 43.31667 -0.46667 P PPL FR 97 64 643 64060 1346 165 Europe/Paris 2012-01-18
-3036679 Arthon-en-Retz Arthon-en-Retz Arthon,Arthon-en-Retz,Arzhon-Raez 47.11586 -1.9426 P PPL FR B5 44 443 44005 2888 11 Europe/Paris 2012-01-18
-3036680 Arthon Arthon Arthon,Arton,Артон 46.69361 1.69857 P PPL FR A3 36 362 36009 1002 139 Europe/Paris 2012-01-18
-3036684 Arthez-de-Béarn Arthez-de-Bearn Arthez,Arthez-de-Bearn,Arthez-de-Béarn 43.46667 -0.6 P PPL FR 97 64 643 64057 1599 161 Europe/Paris 2012-01-18
-3036687 Arthès Arthes Arthes,Arthès 43.95745 2.2113 P PPL FR B3 81 811 81018 2301 210 Europe/Paris 2012-01-18
-3036693 Arthaz-Pont-Notre-Dame Arthaz-Pont-Notre-Dame Arthaz 46.15941 6.26598 P PPL FR B9 74 743 74021 1294 478 Europe/Paris 2008-04-04
-3036694 Artenay Artenay Artenay,Artene,Artne,Артене,Артне 48.08246 1.88098 P PPL FR A3 45 452 45008 1855 122 Europe/Paris 2012-01-18
-3036697 Artemare Artemare Artemar,Artemare,Artmar,Артемар,Артмар 45.87441 5.69366 P PPL FR B9 01 011 01022 1081 255 Europe/Paris 2009-11-09
-3036700 Artas Artas Artas 45.53555 5.16505 P PPL FR B9 38 383 38015 1446 407 Europe/Paris 2012-01-18
-3036702 Artannes-sur-Indre Artannes-sur-Indre Artannes,Artannes-sur-Indre 47.27451 0.60036 P PPL FR A3 37 372 37006 2283 53 Europe/Paris 2012-01-18
-3036711 Ars-sur-Moselle Ars-sur-Moselle Ars,Ars-sur-Moselle 49.07831 6.07275 P PPL FR B2 57 574 57032 5116 179 Europe/Paris 2012-01-18
-3036712 Ars-sur-Formans Ars-sur-Formans Ars,Ars-sur-Formans 45.99418 4.82313 P PPL FR B9 01 012 01021 1209 253 Europe/Paris 2012-01-18
-3036719 Ars-en-Ré Ars-en-Re Ars,Ars-en-Re,Ars-en-Ré,Il'de Re,Ile de Re,Ile-Republicaine,Ile-Républicaine,La Concorde,Re,Ré,Île de Ré,Иль де Ре 46.20554 -1.5272 P PPL FR B7 17 173 17019 1444 4 Europe/Paris 2012-01-18
-3036724 Arsac Arsac Arsac 44.99688 -0.68976 P PPL FR 97 33 334 33012 3059 22 Europe/Paris 2012-01-18
-3036736 Arrou Arrou Arrou 48.09768 1.12851 P PPL FR A3 28 282 28012 1830 161 Europe/Paris 2012-01-18
-3036784 Arras Arras Aras,Arras,Atrecht,a la si,arasu,Арас,Аррас,アラス,阿拉斯 50.29301 2.78186 P PPLA2 FR B4 62 621 62041 47052 73 Europe/Paris 2011-11-02
-3036791 Arradon Arradon Aradon,Arradon 47.6271 -2.8215 P PPL FR A2 56 563 56003 5206 33 Europe/Paris 2012-01-18
-3036797 Arques-la-Bataille Arques-la-Bataille Ark la Bataj,Arques,Arques-la-Bataille,Арк ла Батај 49.88122 1.12875 P PPL FR A7 76 761 76026 2594 8 Europe/Paris 2012-01-18
-3036800 Arques Arques Arques 50.73375 2.30237 P PPL FR B4 62 625 62040 9551 9 Europe/Paris 2012-01-18
-3036822 Arpajon-sur-Cère Arpajon-sur-Cere Arpajon,Arpajon-sur-Cere,Arpajon-sur-Cère,Arpazhon sir Ser,Арпажон сир Сер 44.90262 2.45809 P PPL FR 98 15 151 15012 5744 605 Europe/Paris 2012-01-18
-3036823 Arpajon Arpajon Arpajon 48.58875 2.24672 P PPL FR A8 91 913 91021 9742 50 Europe/Paris 2012-01-18
-3036837 Aron Aron Aron 48.298 -0.5598 P PPL FR B5 53 533 53008 1642 128 Europe/Paris 2012-01-18
-3036843 Arnouville Arnouville Arnouville,Arnouville-les-Gonesse,Arnouville-lès-Gonesse 48.98333 2.41667 P PPL FR A8 95 952 95019 12783 69 Europe/Paris 2010-12-19
-3036850 Arnières-sur-Iton Arnieres-sur-Iton Armeres,Armères,Arnieres,Arnieres-sur-Iton,Arnières,Arnières-sur-Iton 48.99678 1.10384 P PPL FR A7 27 273 27020 1607 84 Europe/Paris 2012-01-18
-3036856 Arnèke Arneke Arneke,Arnèke 50.8322 2.40942 P PPL FR B4 59 594 59018 1517 24 Europe/Paris 2012-01-18
-3036862 Arnay-le-Duc Arnay-le-Duc Arnay,Arnay-le-Duc,Arnay-sur-Arroux,Arne le Dik,Арне ле Дик 47.13202 4.48595 P PPL FR A1 21 211 21023 1986 372 Europe/Paris 2012-01-18
-3036870 Arnas Arnas Arnas 46.0239 4.70638 P PPL FR B9 69 692 69013 3332 189 Europe/Paris 2012-01-18
-3036876 Arnage Arnage Arnage 47.92616 0.18782 P PPL FR B5 72 723 72008 5991 42 Europe/Paris 2012-01-18
-3036878 Arnac-Pompadour Arnac-Pompadour Arnac,Arnac-Pompadour,Arnac-la-Prairie 45.40975 1.36993 P PPL FR B1 19 191 19011 1273 360 Europe/Paris 2012-01-18
-3036879 Arnac-la-Poste Arnac-la-Poste Arnac,Arnac-la-Poste 46.26597 1.37375 P PPL FR B1 87 871 87003 1021 309 Europe/Paris 2012-01-18
-3036881 Armoy Armoy Armoa,Armoj,Armoy,Армоа,Армој 46.34893 6.52 P PPL FR B9 74 744 74020 1049 638 Europe/Paris 2012-01-18
-3036893 Armissan Armissan Armissan 43.18778 3.0966 P PPL FR A9 11 113 11014 1309 38 Europe/Paris 2011-01-11
-3036902 Armentières-en-Brie Armentieres-en-Brie Armentieres,Armentieres-en-Brie,Armentières,Armentières-en-Brie 48.97775 3.02073 P PPL FR A8 77 771 77008 1321 64 Europe/Paris 2012-01-18
-3036903 Armentières Armentieres Armant'er,Armantjer,Armentieres,Armentiers,Armentières,Armontijer,Армантьер,Армантјер,Армонтијер 50.68568 2.88214 P PPL FR B4 59 595 59017 26646 21 Europe/Paris 2012-01-18
-3036905 Armenonville-les-Gâtineaux Armenonville-les-Gatineaux Armenonville,Armenonville-les-Gatineaux,Armenonville-les-Gâtineaux 48.54365 1.6475 P PPL FR A3 28 281 28023 1228 118 Europe/Paris 2012-02-27
-3036913 Armbouts-Cappel Armbouts-Cappel Armbouts-Cappel 50.97682 2.35352 P PPL FR B4 59 594 59016 2762 1 Europe/Paris 2012-01-18
-3036932 Arleux Arleux Arleux,Arleux-du-Nord 50.28037 3.10448 P PPL FR B4 59 593 59015 2637 41 Europe/Paris 2012-01-18
-3036935 Arles Arles Arl',Arles,Arles-sur-Tech,Арль 42.45654 2.63457 P PPL FR A9 66 661 66009 3028 291 Europe/Paris 2011-11-02
-3036938 Arles Arles Arelate,Arl,Arl',Arle,Arles,Arles-Trinquetaille,Arles-sur-Rhone,Arles-sur-Rhône,aruru,Арл,Арль,ארל,アルル 43.67681 4.63031 P PPLA3 FR B8 13 132 13004 53431 24 Europe/Paris 2011-11-02
-3036946 Arlanc Arlanc Arlan,Arlanc,Arlon,Арлан,Арлон 45.41389 3.72528 P PPL FR 98 63 631 63010 1895 609 Europe/Paris 2010-12-12
-3036957 Arinthod Arinthod Arinthod 46.39339 5.56616 P PPL FR A6 39 392 39016 1273 452 Europe/Paris 2011-01-14
-3037015 Argent-sur-Sauldre Argent-sur-Sauldre Argent,Argent-sur-Sauldre 47.55847 2.4441 P PPL FR A3 18 183 18011 2522 169 Europe/Paris 2012-01-18
-3037016 Argentré-du-Plessis Argentre-du-Plessis Argantred-ar-Genkiz,Argentre,Argentre-du-Plessis,Argentré,Argentré-du-Plessis 48.05697 -1.14601 P PPL FR A2 35 351 35006 4007 106 Europe/Paris 2012-02-20
-3037017 Argentré Argentre Argentre,Argentré 48.08362 -0.6415 P PPL FR B5 53 532 53007 2462 103 Europe/Paris 2012-01-18
-3037018 Argenton-sur-Creuse Argenton-sur-Creuse Argenton,Argenton-sur-Creuse,Arzhanton sir Krez,Аржантон сир Крез 46.58997 1.51981 P PPL FR A3 36 362 36006 5335 112 Europe/Paris 2012-01-18
-3037021 Argenton-les-Vallées Argenton-les-Vallees Argenton,Argenton-Chateau,Argenton-Château,Argenton-le-Peuple 46.98333 -0.45 P PPL FR B7 79 791 79013 1076 115 Europe/Paris 2008-07-02
-3037044 Argenteuil Argenteuil Argenteuil,Arzhantej,Arzhentoj,arujanto~uiyu,Аржантей,Аржантеј,Аржентој,アルジャントゥイユ 48.95 2.25 P PPLA3 FR A8 95 951 95018 101475 36 Europe/Paris 2011-11-02
-3037049 Argentat Argentat Argentat,Arzhenta,Аржента 45.09634 1.93987 P PPL FR B1 19 192 19010 3112 190 Europe/Paris 2012-01-18
-3037051 Argentan Argentan Argentan,Arzhantan,Аржантан 48.75 -0.01667 P PPLA3 FR 99 61 612 61006 18230 163 Europe/Paris 2011-11-02
-3037059 Argences Argences Argences 49.12635 -0.16644 P PPL FR 99 14 142 14020 3405 17 Europe/Paris 2012-01-18
-3037067 Argeliers Argeliers Argeliers 43.31217 2.91046 P PPL FR A9 11 113 11012 1321 45 Europe/Paris 2012-01-18
-3037068 Argelers Argelers Argelers,Argeles,Argelès 42.54714 3.02253 P PPL FR A9 66 661 66008 10044 20 Europe/Paris 2011-11-02
-3037070 Argelès-Gazost Argeles-Gazost Argeles,Argelès 43.01667 -0.1 P PPLA3 FR B3 65 651 65025 3516 532 Europe/Paris 2011-11-02
-3037075 Argancy Argancy Argancy 49.1967 6.20138 P PPL FR B2 57 574 57028 1130 172 Europe/Paris 2012-01-18
-3037089 Arette Arette Arette 43.1 -0.71667 P PPL FR 97 64 642 64040 1185 360 Europe/Paris 2011-09-11
-3037095 Arès Ares Ares,Arès 44.76667 -1.13333 P PPL FR 97 33 336 33011 5081 7 Europe/Paris 2012-01-18
-3037096 Arenthon Arenthon Arenthon 46.10466 6.33149 P PPL FR B9 74 742 74018 1271 447 Europe/Paris 2012-01-18
-3037113 Ardres Ardres Ardres 50.85786 1.98168 P PPL FR B4 62 625 62038 4240 13 Europe/Paris 2012-01-18
-3037123 Ardin Ardin Ardin 46.47512 -0.55416 P PPL FR B7 79 792 79012 1185 63 Europe/Paris 2012-01-18
-3037133 Ardentes Ardentes Ardant,Ardentes,Ardentes-les-Bois,Ardon,Ардант,Ардон 46.74191 1.83428 P PPL FR A3 36 362 36005 3356 164 Europe/Paris 2012-01-18
-3037157 Arcueil Arcueil Arcueil,Arkej,Аркеј 48.79993 2.33256 P PPL FR A8 94 943 94003 17308 45 Europe/Paris 2012-01-18
-3037158 Arc-sur-Tille Arc-sur-Tille Arc,Arc-sur-Tille 47.34348 5.18666 P PPL FR A1 21 212 21021 2412 219 Europe/Paris 2012-01-18
-3037168 Arçonnay Arconnay Arconnay,Arçonnay 48.39678 0.0862 P PPL FR B5 72 722 72006 2166 148 Europe/Paris 2012-01-18
-3037186 Arcis-sur-Aube Arcis-sur-Aube Arcis,Arcis-sur-Aube,Arsi sir Ob,Арси сир Об 48.53387 4.14085 P PPL FR A4 10 103 10006 2948 97 Europe/Paris 2012-01-18
-3037199 Archigny Archigny Archigny 46.67411 0.65372 P PPL FR B7 86 861 86009 1054 129 Europe/Paris 2012-01-18
-3037206 Archettes Archettes Archettes 48.1232 6.53724 P PPL FR B2 88 881 88012 1046 353 Europe/Paris 2012-01-18
-3037209 Arches Arches Arches 48.11856 6.52806 P PPL FR B2 88 881 88011 1815 352 Europe/Paris 2012-01-18
-3037218 Archamps Archamps Archamps 46.13651 6.13287 P PPL FR B9 74 743 74016 1368 525 Europe/Paris 2012-01-18
-3037221 Arcey Arcey Arcey 47.52258 6.66222 P PPL FR A6 25 252 25022 1218 379 Europe/Paris 2012-01-18
-3037224 Arc-et-Senans Arc-et-Senans Arc,Arc-et-Senans 47.03127 5.77027 P PPL FR A6 25 251 25021 1417 232 Europe/Paris 2012-01-18
-3037245 Arcangues Arcangues Arcangues,Arrangoitze 43.43124 -1.52237 P PPL FR 97 64 641 64038 2947 50 Europe/Paris 2012-01-18
-3037253 Arcachon Arcachon Arcachon,Arcaishon,Commune-Franklin,arkashon,Аркашон 44.65 -1.16667 P PPLA3 FR 97 33 336 33009 12321 29 Europe/Paris 2011-11-02
-3037263 Arc-lès-Gray Arc-les-Gray 47.45701 5.58547 P PPL FR A6 70 702 70026 2986 189 Europe/Paris 2007-11-23
-3037265 Arbus Arbus Arbus 43.33333 -0.5 P PPL FR 97 64 643 64037 1107 139 Europe/Paris 2011-09-11
-3037277 Arbouans Arbouans Arbouans 47.49944 6.79505 P PPL FR A6 25 252 25020 1009 347 Europe/Paris 2012-01-18
-3037281 Arbonne-la-Forêt Arbonne-la-Foret 48.41405 2.56677 P PPL FR A8 77 772 77006 1036 72 Europe/Paris 2007-11-04
-3037282 Arbonne Arbonne Arbonne,Constante 43.43248 -1.55118 P PPL FR 97 64 641 64035 1479 36 Europe/Paris 2012-01-18
-3037287 Arbois Arbois Arboa,Arbois,Arbua,Арбоа,Арбуа 46.90311 5.77454 P PPL FR A6 39 392 39013 4007 297 Europe/Paris 2012-01-18
-3037303 Arbent Arbent Arb,Arban,Arbent,Арб,Арбан 46.29221 5.6789 P PPL FR B9 01 014 01014 3986 579 Europe/Paris 2011-01-14
-3037331 Aramon Aramon Aramon 43.89174 4.68096 P PPL FR A9 30 302 30012 4101 19 Europe/Paris 2012-01-18
-3037345 Arâches-la-Frasse Araches-la-Frasse Araches,Arash,Arâches,Араш 46.04297 6.63145 P PPL FR B9 74 742 74014 1879 962 Europe/Paris 2007-11-14
-3037352 Apt Apt 43.88333 5.4 P PPLA3 FR B8 84 841 84003 11609 345 Europe/Paris 2011-11-02
-3037365 Apremont Apremont Apremont 46.7485 -1.74075 P PPL FR B5 85 853 85006 1199 17 Europe/Paris 2012-01-18
-3037368 Apprieu Apprieu Apprieu 45.39922 5.49628 P PPL FR B9 38 382 38013 2854 485 Europe/Paris 2012-01-18
-3037370 Appoigny Appoigny Appoigny 47.87467 3.52524 P PPL FR A1 89 891 89013 3137 94 Europe/Paris 2012-01-18
-3037372 Appietto Appietto Apieto,Apjeto,Appieto,Appietto,Appiettu,Апието,Апјето 42.01454 8.76789 P PPL FR A5 2A 2A1 2A017 1218 441 Europe/Paris 2012-01-18
-3037390 Aouste-sur-Sye Aouste-sur-Sye Aouste,Aouste-sur-Sye 44.71699 5.05516 P PPL FR B9 26 261 26011 2145 213 Europe/Paris 2012-01-18
-3037393 Aoste Aoste Aoste 45.58679 5.61014 P PPL FR B9 38 382 38012 1958 227 Europe/Paris 2012-01-18
-3037396 Anzin-Saint-Aubin Anzin-Saint-Aubin Anzin,Anzin-Saint-Aubin,Aubin-la-Fontaine,Commune-des-Freres-Unis,Commune-des-Frères-Unis,Mesnil-Marat 50.31313 2.74732 P PPL FR B4 62 621 62037 2586 77 Europe/Paris 2012-01-18
-3037397 Anzin Anzin Anzin 50.37201 3.50387 P PPL FR B4 59 596 59014 14443 50 Europe/Paris 2012-01-18
-3037417 Antran Antran Antran 46.8535 0.54317 P PPL FR B7 86 861 86007 1133 49 Europe/Paris 2012-01-18
-3037418 Antrain Antrain Antrain,Antrain-sur-Couesnon,Entraven 48.46031 -1.48354 P PPL FR A2 35 351 35004 1523 37 Europe/Paris 2012-01-18
-3037423 Antony Antony Antony,Ontoni,Онтони 48.75 2.3 P PPLA3 FR A8 92 921 92002 59845 50 Europe/Paris 2011-12-08
-3037424 Antonne-et-Trigonant Antonne-et-Trigonant Antonne-et-Trigonant 45.21271 0.83006 P PPL FR 97 24 243 24011 1150 109 Europe/Paris 2012-01-18
-3037442 Antigny Antigny Antigny 46.62095 -0.76988 P PPL FR B5 85 851 85005 1218 83 Europe/Paris 2012-01-18
-3037456 Antibes Antibes Antib,Antibes,Antipolis,Антиб 43.56241 7.12777 P PPL FR B8 06 061 06004 76393 45 Europe/Paris 2012-01-18
-3037457 Anthy-sur-Léman Anthy-sur-Leman 46.35534 6.42735 P PPL FR B9 74 744 74013 1879 406 Europe/Paris 2007-11-05
-3037481 Anstaing Anstaing Anstaing 50.60473 3.19079 P PPL FR B4 59 595 59013 1205 32 Europe/Paris 2012-01-18
-3037482 Ansouis Ansouis Ansouis,Onsui,ansuu~i,Онсуи,アンスウィ 43.73775 5.46401 P PPL FR B8 84 841 84002 1114 265 Europe/Paris 2012-01-18
-3037489 Anse Anse Anse 45.93023 4.71576 P PPL FR B9 69 692 69009 5099 174 Europe/Paris 2012-01-18
-3037490 Ansauvillers Ansauvillers Ansauvillers 49.56523 2.38742 P PPL FR B6 60 602 60017 1098 147 Europe/Paris 2012-01-18
-3037502 Anould Anould Anould 48.18526 6.94597 P PPL FR B2 88 883 88009 3029 460 Europe/Paris 2012-01-18
-3037506 Anor Anor Anor,Анор 49.98999 4.10049 P PPL FR B4 59 591 59012 3195 228 Europe/Paris 2012-01-18
-3037512 Annot Annot Annot,Ano,Anu,Ано,Ану 43.96566 6.66441 P PPL FR B8 04 042 04008 1073 704 Europe/Paris 2012-01-18
-3037514 Annonay Annonay Annonay,Anone,Аноне 45.2397 4.67075 P PPL FR B9 07 073 07010 18423 340 Europe/Paris 2012-01-18
-3037520 Annœullin Annoeullin 50.52925 2.9318 P PPL FR B4 59 595 59011 10528 25 Europe/Paris 2009-10-21
-3037521 Annezin Annezin Annezin,Annezin-les-Bethune,Annezin-lès-Béthune 50.53192 2.61785 P PPL FR B4 62 622 62035 5672 25 Europe/Paris 2012-01-18
-3037523 Anneyron Anneyron Anneyron 45.27265 4.88786 P PPL FR B9 26 263 26010 3697 207 Europe/Paris 2012-01-18
-3037531 Annet-sur-Marne Annet-sur-Marne Annet,Annet-sur-Marne 48.92669 2.71959 P PPL FR A8 77 775 77005 2759 52 Europe/Paris 2012-01-18
-3037532 Annesse-et-Beaulieu Annesse-et-Beaulieu Annesse-et-Baulieu,Annesse-et-Beaulieu 45.16416 0.57193 P PPL FR 97 24 243 24010 1349 73 Europe/Paris 2012-01-18
-3037534 Annequin Annequin Annequin 50.50525 2.72019 P PPL FR B4 62 622 62034 2198 29 Europe/Paris 2012-01-18
-3037538 Annemasse Annemasse Annemasse,anmas,Анмас 46.19439 6.23775 P PPL FR B9 74 743 74012 28275 441 Europe/Paris 2011-11-02
-3037540 Annecy-le-Vieux Annecy-le-Vieux Anesi le Vje,Annecy-le-Vieux,Annesi-le-V'e,Анеси ле Вје,Аннеси-ле-Вье 45.91972 6.14393 P PPL FR B9 74 741 74011 21521 498 Europe/Paris 2012-01-18
-3037543 Annecy Annecy Annecy,Ansi,Eneci,ansi,anushi,Èneci,Анси,アヌシー,안시 45.9 6.11667 P PPLA2 FR B9 74 741 74010 49232 452 Europe/Paris 2011-11-02
-3037548 Annay Annay Annay,Annay-sous-Lens 50.46303 2.88122 P PPL FR B4 62 627 62033 4797 32 Europe/Paris 2012-01-18
-3037564 Anizy-le-Château Anizy-le-Chateau Anisy-la-Riviere,Anisy-la-Rivière,Anizy,Anizy-le-Chateau,Anizy-le-Château 49.50678 3.45119 P PPL FR B6 02 022 02018 1917 75 Europe/Paris 2012-01-18
-3037571 Aniche Aniche Aniche,Aniches 50.32996 3.25346 P PPL FR B4 59 593 59008 10108 48 Europe/Paris 2012-01-18
-3037572 Aniane Aniane Aniane 43.68448 3.58747 P PPL FR A9 34 342 34010 2362 73 Europe/Paris 2012-01-18
-3037574 Anhiers Anhiers Anhiers 50.40737 3.15512 P PPL FR B4 59 593 59007 1004 20 Europe/Paris 2012-01-18
-3037576 Angy Angy Angy 49.32975 2.32854 P PPL FR B6 60 602 60015 1229 50 Europe/Paris 2012-01-18
-3037584 Angresse Angresse Angresse 43.65809 -1.37191 P PPL FR 97 40 401 40004 1207 15 Europe/Paris 2012-01-18
-3037585 Angres Angres Angres 50.40572 2.76054 P PPL FR B4 62 627 62032 4553 62 Europe/Paris 2012-01-18
-3037596 Angoulins Angoulins Angoulins-sur-Mer 46.10526 -1.10713 P PPL FR B7 17 173 17010 3682 5 Europe/Paris 2009-09-07
-3037598 Angoulême Angouleme An'nkoulem,Angouleme,Angoulême,Angulem,Angulema,Angulema - Angouleme,Angulema - Angoulême,Angulemo,Engoleime,Montagne-Charente,Ongulem,anguremu,Ανγκουλέμ,Ангулем,Онгулем,アングレーム 45.65 0.15 P PPLA2 FR B7 16 161 16015 49468 103 Europe/Paris 2011-12-08
-3037612 Anglet Anglet Angelu,Angl,Anglet,Ongle,Англ,Онгле 43.47664 -1.51346 P PPL FR 97 64 641 64024 40658 25 Europe/Paris 2012-01-18
-3037618 Angles Angles Angles 46.40839 -1.40389 P PPL FR B5 85 853 85004 1858 11 Europe/Paris 2012-01-18
-3037642 Angicourt Angicourt Angicourt 49.31176 2.50419 P PPL FR B6 60 602 60013 1601 46 Europe/Paris 2012-01-18
-3037644 Angevillers Angevillers Angevillers,Onzhevije,Онжевије 49.38459 6.03913 P PPL FR B2 57 578 57022 1227 362 Europe/Paris 2012-01-18
-3037648 Angervilliers Angervilliers Angervilliers 48.59263 2.06542 P PPL FR A8 91 911 91017 1458 115 Europe/Paris 2012-01-18
-3037654 Angerville Angerville Angerville 48.31354 1.99935 P PPL FR A8 91 911 91016 3457 142 Europe/Paris 2012-01-18
-3037656 Angers Angers Andecavis,Angero,Angers,Angieus,Anje,Anze,Anzhe,Anzher,Anĝero,Anžē,Anžė,Añje,Bonne-Terre,Fruits-Sucres,Fruits-Sucrés,ang re,anje,anzhe,anzhw,Анже,Анжер,אנז'ה,آنژو,ანჟე,アンジェ,昂热 47.46667 -0.55 P PPLA2 FR B5 49 491 49007 168279 50 Europe/Paris 2011-11-02
-3037672 Anetz Anetz Anetz,Arned 47.3806 -1.10583 P PPL FR B5 44 444 44004 1468 22 Europe/Paris 2012-01-18
-3037673 Anet Anet Ane,Anet,Ане 48.85642 1.43981 P PPL FR A3 28 283 28007 2833 71 Europe/Paris 2012-01-18
-3037682 Anduze Anduze Anduze 44.05409 3.98545 P PPL FR A9 30 301 30010 3295 140 Europe/Paris 2012-01-18
-3037689 Andrézieux-Bouthéon Andrezieux-Boutheon Andrezieux,Andrézieux 45.52625 4.26021 P PPL FR B9 42 421 42005 9452 387 Europe/Paris 2011-11-02
-3037691 Andrezé Andreze Andreze,Andrezé 47.17155 -0.95239 P PPL FR B5 49 492 49006 1905 96 Europe/Paris 2012-01-18
-3037692 Andrésy Andresy Andresy,Andrésy 48.98234 2.05687 P PPL FR A8 78 783 78015 12929 62 Europe/Paris 2012-01-18
-3037693 Andrest Andrest Andrest 43.31998 0.06405 P PPL FR B3 65 653 65007 1284 255 Europe/Paris 2012-01-18
-3037694 Andres Andres Andres 50.86556 1.92094 P PPL FR B4 62 626 62031 1476 4 Europe/Paris 2012-01-18
-3037701 Andouillé Andouille Andouille,Andouillé 48.17685 -0.78364 P PPL FR B5 53 532 53005 2177 85 Europe/Paris 2012-01-18
-3037706 Andolsheim Andolsheim 48.06179 7.41637 P PPL FR C1 68 682 68007 2107 189 Europe/Paris 2007-07-07
-3037708 Andlau Andlau Andlau,Ondlu,Ондлу 48.38607 7.41697 P PPL FR C1 67 675 67010 1819 231 Europe/Paris 2007-09-12
-3037713 Andilly Andilly Andilly 49.00935 2.3024 P PPL FR A8 95 952 95014 2138 170 Europe/Paris 2012-01-18
-3037715 Andilly Andilly Andilly,Andilly-les-Marais 46.25425 -1.02672 P PPL FR B7 17 173 17008 1838 9 Europe/Paris 2012-01-18
-3037721 Andeville Andeville Andeville 49.26078 2.16427 P PPL FR B6 60 601 60012 3113 158 Europe/Paris 2012-01-18
-3037726 Andernos-les-Bains Andernos-les-Bains Anderno le Ben,Andernos,Andernos-les-Bains,Андерно ле Бен 44.74572 -1.10355 P PPL FR 97 33 336 33005 10236 4 4 Europe/Paris 2008-01-17
-3037736 Andelnans Andelnans Andelnans 47.60223 6.8672 P PPL FR A6 90 901 90001 1250 347 Europe/Paris 2012-01-18
-3037745 Andé Ande Ande,Andé 49.23163 1.24088 P PPL FR A7 27 271 27015 1043 21 Europe/Paris 2012-01-18
-3037747 Andard Andard 47.45659 -0.39752 P PPL FR B5 49 491 49004 2302 22 Europe/Paris 2007-07-04
-3037748 Andancette Andancette Andancette 45.24242 4.80606 P PPL FR B9 26 263 26009 1229 137 Europe/Paris 2012-01-18
-3037749 Andance Andance Andance 45.24046 4.79798 P PPL FR B9 07 073 07009 1036 143 Europe/Paris 2012-01-18
-3037754 Ancy-sur-Moselle Ancy-sur-Moselle Ancy,Ancy-sur-Moselle 49.05693 6.05816 P PPL FR B2 57 574 57021 1455 173 Europe/Paris 2012-01-18
-3037757 Ancy-le-Franc Ancy-le-Franc Ancy-le-Franc 47.77586 4.16361 P PPL FR A1 89 892 89005 1089 183 Europe/Paris 2012-01-18
-3037770 Ancône Ancone Ancone,Ancône 44.5816 4.72711 P PPL FR B9 26 262 26008 1035 73 Europe/Paris 2012-01-18
-3037794 Ancerville Ancerville Ancerville,Ancerville-Gue,Ancerville-Güe 48.63574 5.02091 P PPL FR B2 55 551 55010 2771 196 Europe/Paris 2012-01-18
-3037797 Ancenis Ancenis Ancenis,Ankiniz 47.36667 -1.16667 P PPLA3 FR B5 44 444 44003 7840 7 Europe/Paris 2011-11-02
-3037813 Ampuis Ampuis Ampuis 45.48906 4.80879 P PPL FR B9 69 691 69007 2311 155 Europe/Paris 2012-01-18
-3037818 Amplepuis Amplepuis Amplepuis 45.9726 4.3316 P PPL FR B9 69 692 69006 5261 437 Europe/Paris 2012-01-18
-3037829 Amou Amou Amou 43.59258 -0.74676 P PPL FR 97 40 401 40002 1587 52 Europe/Paris 2012-01-18
-3037838 Amnéville Amneville Amnevij,Amnevil,Amneville,Amnéville,Амневил,Амневиј 49.2575 6.14203 P PPL FR B2 57 574 57019 10162 164 Europe/Paris 2012-01-18
-3037842 Ammerschwihr Ammerschwihr Ammerschweier,Ammerschweir 48.12548 7.28282 P PPL FR C1 68 685 68005 2009 239 Europe/Paris 2011-11-02
-3037845 Amilly Amilly Amilly 48.44333 1.39349 P PPL FR A3 28 281 28006 1942 163 Europe/Paris 2012-01-18
-3037846 Amilly Amilly Amilly 47.97281 2.77186 P PPL FR A3 45 451 45004 13106 115 Europe/Paris 2012-01-18
-3037854 Amiens Amiens Am'en,Amien,Amiens,Amijen,Amjen,Samarobriva,amian,ya mian,Ам'єн,Амиен,Амијен,Амьен,Амјен,אמיין,アミアン,亞眠 49.9 2.3 P PPLA FR B6 80 802 80021 143086 28 Europe/Paris 2012-01-18
-3037860 Amfreville-la-Mi-Voie Amfreville-la-Mi-Voie Amfreville,Amfreville-la-Mi-Voie 49.40755 1.13871 P PPL FR A7 76 763 76005 2927 150 Europe/Paris 2012-01-18
-3037863 Amfreville Amfreville 49.25 -0.23333 P PPL FR 99 14 142 14009 1198 53 Europe/Paris 2007-11-15
-3037875 els Banys d'Arles els Banys d'Arles Ameli le Ben,Amelie-les Bains,Amelie-les-Bains,Amélie-les Bains,Amélie-les-Bains,els Banys,els Banys d'Arles,Амели ле Бен 42.47289 2.66916 P PPL FR A9 66 661 66003 3829 231 Europe/Paris 2011-11-02
-3037884 Ambronay Ambronay Ambronay 46.0046 5.36107 P PPL FR B9 01 011 01007 2238 262 Europe/Paris 2012-01-18
-3037886 Ambrières-les-Vallées Ambrieres-les-Vallees Ambrieres,Ambrieres-le-Grand,Ambrières,Ambrières-le-Grand 48.4 -0.63333 P PPL FR B5 53 533 53003 2786 135 Europe/Paris 2007-11-12
-3037899 Ambon Ambon Ambon 47.55367 -2.55512 P PPL FR A2 56 563 56002 1341 16 Europe/Paris 2012-01-18
-3037902 Amboise Amboise Amboaz,Amboise,Ambuaz,Ombroz,Saint-Denis-Hors,Амбоаз,Амбуаз,Омброз 47.41249 0.98266 P PPL FR A3 37 372 37003 12685 61 Europe/Paris 2012-01-18
-3037915 Ambleteuse Ambleteuse 50.80729 1.60388 P PPL FR B4 62 623 62025 2023 9 Europe/Paris 2007-02-20
-3037919 Ambleny Ambleny Ambleny 49.3808 3.18448 P PPL FR B6 02 024 02011 1208 55 Europe/Paris 2012-01-18
-3037921 Amblainville Amblainville Amblainville 49.20443 2.12242 P PPL FR B6 60 601 60010 1757 90 Europe/Paris 2012-01-18
-3037927 Ambillou Ambillou Ambillou 47.451 0.4473 P PPL FR A3 37 372 37002 1359 100 Europe/Paris 2012-01-18
-3037929 Ambierle Ambierle Ambierle 46.10411 3.89386 P PPL FR B9 42 422 42003 1767 434 Europe/Paris 2012-01-18
-3037935 Ambès Ambes 45.01127 -0.53219 P PPL FR 97 33 332 33004 3058 4 Europe/Paris 2010-07-08
-3037937 Ambert Ambert Amber,Ambert,Амбер 45.55 3.75 P PPLA3 FR 98 63 631 63003 7901 536 Europe/Paris 2010-04-02
-3037941 Ambérieux-en-Dombes Amberieux-en-Dombes Amberieux,Amberieux-en-Dombes,Ambérieux,Ambérieux-en-Dombes 45.99432 4.90512 P PPL FR B9 01 012 01005 1529 297 Europe/Paris 2012-01-18
-3037943 Ambérieu-en-Bugey Amberieu-en-Bugey Amberieu,Amberieu-en-Bugey,Ambérieu,Ambérieu-en-Bugey,Omberju-on-Buzhi,Saint-Amberieu,Saint-Ambérieu,Омберју-он-Бужи 45.95885 5.3432 P PPL FR B9 01 011 01004 13260 243 Europe/Paris 2012-01-18
-3037954 Ambazac Ambazac Ambazac 45.95983 1.40063 P PPL FR B1 87 872 87002 5004 372 Europe/Paris 2012-01-18
-3037956 Ambarès-et-Lagrave Ambares-et-Lagrave Amoares,Amoarès 44.91667 -0.48333 P PPL FR FR 97 33 332 33003 12955 14 Europe/Paris 2010-06-18
-3037967 Amanvillers Amanvillers Amanviller,Amanvillers 49.16691 6.0422 P PPL FR B2 57 574 57017 1981 322 Europe/Paris 2012-01-18
-3037969 Amanlis Amanlis Amanlis,Amanliz 48.00752 -1.47677 P PPL FR A2 35 353 35002 1568 35 Europe/Paris 2012-01-18
-3037971 Amancy Amancy Amancy 46.07449 6.32973 P PPL FR B9 74 742 74007 1949 473 Europe/Paris 2012-01-18
-3037984 Alzonne Alzonne Alzonne 43.25338 2.17808 P PPL FR A9 11 111 11009 1308 125 Europe/Paris 2012-01-18
-3038008 Altorf Altorf Altdorf,Altorf,Алторф 48.52166 7.52787 P PPL FR C1 67 673 67008 1165 172 Europe/Paris 2007-07-05
-3038012 Altkirch Altkirch Altkirch,Altkirkh,Altkirsh,Алткирх,Алткирш 47.61667 7.25 P PPLA3 FR C1 68 681 68004 5564 366 Europe/Paris 2011-11-02
-3038020 Althen-des-Paluds Althen-des-Paluds Altan de Pali,Althen,Althen-des-Paluds,Althen-les-Paluds,Alton-des-Pali,Алтан де Пали,Алтон-дес-Пали 44.00405 4.95861 P PPL FR B8 84 843 84001 2125 33 Europe/Paris 2011-01-18
-3038029 Alsting Alsting Alsting 49.18152 6.99397 P PPL FR B2 57 573 57013 2744 262 Europe/Paris 2012-01-18
-3038075 Allouagne Allouagne Allouagne 50.53167 2.51194 P PPL FR B4 62 622 62023 3132 29 Europe/Paris 2012-01-18
-3038080 Allonzier-la-Caille Allonzier-la-Caille Allonzier-la-Caille 46.00352 6.11776 P PPL FR B9 74 743 74006 1188 664 Europe/Paris 2012-01-18
-3038086 Allonnes Allonnes Allones,Allonnes 47.9674 0.15807 P PPL FR B5 72 723 72003 11949 49 Europe/Paris 2012-01-18
-3038087 Allonnes Allonnes Allonnes 47.29338 0.02458 P PPL FR B5 49 493 49002 2761 29 Europe/Paris 2012-01-18
-3038088 Allonne Allonne Allonne 49.40863 2.11427 P PPL FR B6 60 601 60009 1332 81 Europe/Paris 2012-01-18
-3038099 Allinges Allinges Allinges 46.33658 6.46363 P PPL FR B9 74 744 74005 3355 529 Europe/Paris 2012-01-18
-3038106 Allières-et-Risset Allieres-et-Risset 45.09934 5.67924 P PPL FR B9 38 381 38524 6815 262 Europe/Paris 2012-02-27
-3038128 Allex Allex Allex 44.76454 4.91757 P PPL FR B9 26 261 26006 2245 182 Europe/Paris 2012-01-18
-3038132 Allevard Allevard Allevard 45.39337 6.0713 P PPL FR B9 38 381 38006 3680 481 Europe/Paris 2012-01-18
-3038142 Allennes-les-Marais Allennes-les-Marais Allennes 50.53754 2.95361 P PPL FR B4 59 595 59005 3488 22 Europe/Paris 2009-10-21
-3038156 Alleins Alleins Alleins 43.70387 5.16203 P PPL FR B8 13 132 13003 2176 163 Europe/Paris 2011-01-18
-3038157 Allègre Allegre Allegre,Allègre 45.20052 3.71276 P PPL FR 98 43 432 43003 1070 1052 Europe/Paris 2012-01-18
-3038159 Allauch Allauch Allauch 43.33573 5.48201 P PPL FR B8 13 133 13002 21406 220 Europe/Paris 2011-11-02
-3038160 Allassac Allassac Allassac 45.25816 1.47532 P PPL FR B1 19 191 19005 3476 170 Europe/Paris 2012-01-18
-3038169 Allanche Allanche Alansh,Allanche,Allanches,Alonsh,Аланш,Алонш 45.22798 2.93456 P PPL FR 98 15 153 15001 1122 983 Europe/Paris 2012-01-18
-3038173 Allan Allan Allan 44.49865 4.78752 P PPL FR B9 26 262 26005 1517 152 Europe/Paris 2012-01-18
-3038176 Allaire Allaire Alaer,Allaire 47.63752 -2.16324 P PPL FR A2 56 563 56001 3427 66 Europe/Paris 2012-01-18
-3038185 Alizay Alizay Alizay 49.32158 1.17854 P PPL FR A7 27 271 27008 1327 19 Europe/Paris 2012-01-18
-3038186 Alixan Alixan Alixan 44.97476 5.02641 P PPL FR B9 26 263 26004 2229 187 Europe/Paris 2012-01-18
-3038190 Alissas Alissas Alissas 44.71253 4.62936 P PPL FR B9 07 072 07008 1101 239 Europe/Paris 2011-01-14
-3038197 Alignan-du-Vent Alignan-du-Vent Alignan,Alignan-du-Vent 43.46945 3.34165 P PPL FR A9 34 341 34009 1293 105 Europe/Paris 2012-01-18
-3038204 Algrange Algrange Algrange 49.35863 6.04748 P PPL FR B2 57 578 57012 6375 250 Europe/Paris 2012-01-18
-3038205 Algolsheim Algolsheim Algolsheim,Algolshem,Алголшем 48.00629 7.55945 P PPL FR C1 68 682 68001 1084 192 Europe/Paris 2007-07-07
-3038213 Alfortville Alfortville Alfortvij,Alfortville,Alforvil,Алфорвил,Алфортвиј 48.80575 2.4204 P PPL FR A8 94 941 94002 37290 36 Europe/Paris 2012-01-18
-3038224 Alès Ales Alais,Ale,Ales,Alès,Auxon,Pont-Auzon,Але 44.13333 4.08333 P PPLA3 FR A9 30 301 30007 42410 150 Europe/Paris 2011-11-02
-3038225 Aléria Aleria Aleria,Alerija,Aléria,Алерија 42.1024 9.51575 P PPL FR A5 2B 2B3 2B009 2163 17 Europe/Paris 2012-01-18
-3038226 Alénya Alenya Alenija,Alenya,Alenyà,Alénya,Аленија 42.63874 2.98148 P PPL FR A9 66 662 66002 2532 7 Europe/Paris 2012-01-18
-3038230 Alençon Alencon Alanson,Alencon,Alenson,Alençon,Alonson,aranson,Алансон,Аленсон,Алонсон,アランソン 48.43333 0.08333 P PPLA2 FR 99 61 611 61001 30786 141 Europe/Paris 2011-11-02
-3038236 Alby-sur-Chéran Alby-sur-Cheran 45.81667 6.01667 P PPL FR B9 74 741 74002 1924 458 Europe/Paris 2007-11-05
-3038244 Albitreccia Albitreccia Albitreccia 41.86248 8.94182 P PPL FR A5 2A 2A1 2A008 1322 477 Europe/Paris 2012-01-18
-3038249 Albigny-sur-Saône Albigny-sur-Saone Albigny-sur-Saone 45.86667 4.83333 P PPL FR B9 69 691 69003 2814 171 Europe/Paris 2007-11-14
-3038257 Albias Albias Albias 44.09049 1.44821 P PPL FR B3 82 822 82002 2528 91 Europe/Paris 2012-01-18
-3038261 Albi Albi Al'bi,Albi,Albí,arubi,Алби,Альби,אלבי,アルビ 43.9298 2.148 P PPLA2 FR B3 81 811 81004 52409 177 Europe/Paris 2011-11-02
-3038266 Albertville Albertville Al'bervil',Albertville,Albervij,Albervil,Arbertvile,Arbèrtvile,Roc-Libre,Valbeau,aruberuvu~iru,Албервил,Албервиј,Альбервиль,Альбервіль,アルベールヴィル 45.67452 6.39061 P PPLA3 FR B9 73 731 73011 19113 346 Europe/Paris 2011-11-02
-3038271 Albert Albert Albert 50.00091 2.65096 P PPL FR B6 80 804 80016 10588 69 Europe/Paris 2012-01-18
-3038276 Albens Albens Albens 45.78463 5.94875 P PPL FR B9 73 732 73010 2854 352 Europe/Paris 2012-01-18
-3038302 Alba-la-Romaine Alba-la-Romaine 44.55537 4.59846 P PPL FR B9 07 072 07005 1194 211 Europe/Paris 2007-11-14
-3038305 Alata Alata Alata,Алата 41.97749 8.74232 P PPL FR A5 2A 2A1 2A006 2584 458 Europe/Paris 2012-01-18
-3038328 Ajain Ajain Ajain 46.20635 1.9985 P PPL FR B1 23 232 23002 1033 478 Europe/Paris 2012-01-18
-3038334 Ajaccio Ajaccio Aiacciu,Ajaccio,Ajacciu,Ajachcho,Ajachio,Azhaksio,a ya ke xiao,a ya ke xiu,ajagsio,ajakushio,Ажаксио,Аяччо,Ајачио,アジャクシオ,阿雅克修,阿雅克肖,아작시오 41.92723 8.73462 P PPLA FR A5 2A 2A1 2A004 54364 0 29 Europe/Paris 2012-01-18
-3038341 Aizenay Aizenay Aizenay,Alzenay 46.74004 -1.60834 P PPL FR B5 85 852 85003 6531 62 Europe/Paris 2012-01-18
-3038349 Aix-Noulette Aix-Noulette Aix,Aix-Noulette 50.42568 2.70554 P PPL FR B4 62 627 62019 3717 75 Europe/Paris 2012-01-18
-3038350 Aix-les-Bains Aix-les-Bains Aix-les-Bains,Eks le Ben,Eks-les-Bjan,ekusu=re=ban,Екс ле Бен,Екс-лес-Бјан,エクス=レ=バン 45.68338 5.92241 P PPL FR B9 73 732 73008 27651 359 Europe/Paris 2012-01-18
-3038352 Aixe-sur-Vienne Aixe-sur-Vienne Aixe,Aixe-sur-Vienna,Aixe-sur-Vienne 45.79862 1.13884 P PPL FR B1 87 872 87001 5661 206 Europe/Paris 2012-01-18
-3038354 Aix-en-Provence Aix-en-Provence Aikso Provenca,Ais de Provenca,Ais de Provença,Aix,Aix-en-Provence,Aquae Sextiae,Ehks-an-Provans,Eks an Provans,egsangpeulobangseu,ekusu=an=purovu~ansu,Екс ан Прованс,Экс-ан-Прованс,エクス=アン=プロヴァンス,엑상프로방스 43.5283 5.44973 P PPLA3 FR B8 13 131 13001 146821 205 Europe/Paris 2011-11-02
-3038355 Aix-en-Othe Aix-en-Othe Aix,Aix-en-Othe 48.22391 3.73425 P PPL FR A4 10 103 10003 2167 140 Europe/Paris 2012-01-18
-3038368 Aiton Aiton Aiton 45.56048 6.26053 P PPL FR B9 73 733 73007 1260 404 Europe/Paris 2012-01-18
-3038381 Aiserey Aiserey Aiserey 47.17229 5.1626 P PPL FR A1 21 212 21005 1180 194 Europe/Paris 2012-01-18
-3038384 Airvault Airvault Airvault 46.82533 -0.13634 P PPL FR B7 79 793 79005 3221 118 Europe/Paris 2012-01-18
-3038393 Aire-sur-la-Lys Aire-sur-la-Lys Aire,Aire-sur-la-Lys,Arien,Ariën,Er-sur-l-Lis,Morin-la-Montagne,Ер-сур-л-Лис 50.63871 2.39876 P PPL FR B4 62 625 62014 10397 24 Europe/Paris 2012-01-18
-3038400 Airaines Airaines Airaines 49.96826 1.94266 P PPL FR B6 80 802 80013 2132 24 Europe/Paris 2012-01-18
-3038419 Ainay-le-Château Ainay-le-Chateau Ainay,Ainay-le-Chateau,Ainay-le-Château,Ainay-sur-Sologne 46.71142 2.69245 P PPL FR 98 03 031 03003 1191 216 Europe/Paris 2012-01-18
-3038426 Aime Aime Cime-Belle,Les Antiquites,Les Antiquités 45.55559 6.65042 P PPL FR B9 73 731 73006 3507 678 Europe/Paris 2011-11-02
-3038427 Aimargues Aimargues Aimargues 43.68448 4.20999 P PPL FR A9 30 302 30006 4233 9 Europe/Paris 2012-01-18
-3038428 Ailly-sur-Somme Ailly-sur-Somme Ailly,Ailly-sur-Somme 49.92886 2.19615 P PPL FR B6 80 802 80011 3360 31 Europe/Paris 2012-01-18
-3038429 Ailly-sur-Noye Ailly-sur-Noye Ailly,Ailly-sur-Noye 49.75707 2.36367 P PPL FR B6 80 803 80010 2691 64 Europe/Paris 2012-01-18
-3038441 Aillevillers-et-Lyaumont Aillevillers-et-Lyaumont Aillevillers,Aillevillers-et-Lyaumont,Ajavije-e-LJumon,Ajvijers et Liomon,Ајавије-е-Љумон,Ајвијерс ет Лиомон 47.92033 6.33775 P PPL FR A6 70 701 70006 1651 278 Europe/Paris 2012-01-18
-3038449 Aillant-sur-Tholon Aillant-sur-Tholon Aillant,Aillant-sur-Tholon 47.87426 3.35049 P PPL FR A1 89 891 89003 1530 117 Europe/Paris 2012-01-18
-3038458 Aigurande Aigurande Agiron,Aigurande,Egiran,Агирон,Егиран 46.43398 1.83026 P PPL FR A3 36 363 36001 1689 435 Europe/Paris 2012-01-18
-3038466 Aiguillon Aiguillon Agvijon,Aiguillon,Egijon,Агвијон,Егијон 44.29893 0.3402 P PPL FR 97 47 471 47004 4576 45 Europe/Paris 2012-01-18
-3038488 Aigues-Vives Aigues-Vives Aigues-Vives 43.7379 4.18066 P PPL FR A9 30 302 30004 2525 51 Europe/Paris 2012-01-18
-3038493 Aigues-Mortes Aigues-Mortes Aiguees Mortes,Aigues-Mortes,Aigües Mortes,Egu-Mort,Fort-Peletier,Егу-Морт 43.56683 4.19068 P PPL FR A9 30 302 30003 6526 7 Europe/Paris 2008-03-24
-3038498 Aigueperse Aigueperse Aigueperse,Egeper,Егепер 46.02284 3.20231 P PPL FR 98 63 634 63001 2614 354 Europe/Paris 2012-01-18
-3038502 Aiguefonde Aiguefonde Aiguefonde 43.49394 2.31686 P PPL FR B3 81 812 81002 2786 345 Europe/Paris 2012-01-18
-3038505 Aigueblanche Aigueblanche Aigueblanche,Blanches-Eaux,Le Torrent,Sur-Vignes 45.50313 6.50806 P PPL FR B9 73 731 73003 2919 461 Europe/Paris 2012-01-18
-3038520 Aigrefeuille-sur-Maine Aigrefeuille-sur-Maine Aigrefeuille,Aigrefeuille-sur-Maine,Kelenneg-ar-Mewan 47.07888 -1.40254 P PPL FR B5 44 442 44002 2355 42 Europe/Paris 2012-01-18
-3038524 Aigre Aigre Aigre 45.89377 0.00963 P PPL FR B7 16 163 16005 1180 66 Europe/Paris 2012-01-18
-3038535 Aigné Aigne Aigne,Aigné 48.06471 0.11908 P PPL FR B5 72 723 72001 1411 69 Europe/Paris 2012-01-18
-3038546 Aiglemont Aiglemont Aiglemont,Ajglemon,Eglmon,Ајглемон,Еглмон 49.78031 4.76483 P PPL FR A4 08 081 08003 1725 255 Europe/Paris 2012-01-18
-3038555 Aiffres Aiffres Aiffres 46.29449 -0.42101 P PPL FR B7 79 792 79003 4815 34 Europe/Paris 2012-01-18
-3038561 Ahuy Ahuy Ahuy 47.36944 5.02089 P PPL FR A1 21 212 21003 1408 281 Europe/Paris 2012-01-18
-3038562 Ahun Ahun Ahun 46.08594 2.04479 P PPL FR B1 23 232 23001 1583 453 Europe/Paris 2012-01-18
-3038563 Ahuillé Ahuille Ahuille,Ahuillé 48.02086 -0.86906 P PPL FR B5 53 532 53001 1451 103 Europe/Paris 2012-01-18
-3038565 Ahetze Ahetze Ahetze 43.40432 -1.57192 P PPL FR 97 64 641 64009 1422 24 Europe/Paris 2012-01-18
-3038591 Agonac Agonac Agonac,Agonak,Агонак 45.29248 0.75024 P PPL FR 97 24 243 24002 1575 137 Europe/Paris 2012-01-18
-3038592 Agny Agny Agny 50.25914 2.76002 P PPL FR B4 62 621 62013 2018 75 Europe/Paris 2012-01-18
-3038604 Agnetz Agnetz Agnetz 49.38118 2.38621 P PPL FR B6 60 602 60007 2840 84 Europe/Paris 2012-01-18
-3038611 Agneaux Agneaux Agneaux 49.11905 -1.1061 P PPL FR 99 50 504 50002 5017 47 Europe/Paris 2011-01-20
-3038634 Agen Agen Agen,Azhan,Azhon,ajan,Ажан,Ажон,アジャン 44.2 0.63333 P PPLA2 FR 97 47 471 47001 34367 51 Europe/Paris 2011-12-07
-3038638 Agde Agde Agd,Agde,Агд 43.31083 3.47583 P PPL FR A9 34 341 34003 23001 16 Europe/Paris 2011-11-02
-3038653 Afa Afa Afa,Afà,Афа 41.98362 8.79469 P PPL FR A5 2A 2A1 2A001 2157 141 Europe/Paris 2012-01-18
-3038681 Acquigny Acquigny Acquigny,Akini,Akuini,Акињи,Акуини 49.1735 1.1765 P PPL FR A7 27 271 27003 1544 19 Europe/Paris 2012-01-18
-3038698 Acigné Acigne Acigne,Acigné,Egineg 48.13333 -1.53704 P PPL FR A2 35 353 35001 5746 45 Europe/Paris 2012-01-18
-3038702 Achiet-le-Grand Achiet-le-Grand Achiet-le-Grand 50.13067 2.78119 P PPL FR B4 62 621 62005 1031 120 Europe/Paris 2012-01-18
-3038703 Achicourt Achicourt Achicourt 50.27429 2.75779 P PPL FR B4 62 621 62004 7683 64 Europe/Paris 2012-01-18
-3038711 Achères-la-Forêt Acheres-la-Foret Acheres,Acheres-la-Foret,Achères,Achères-la-Forêt 48.35458 2.57035 P PPL FR A8 77 774 77001 1149 119 Europe/Paris 2012-01-18
-3038712 Achères Acheres Acheres,Achères 48.96116 2.06882 P PPL FR A8 78 783 78005 22555 29 Europe/Paris 2012-01-18
-3038715 Achenheim Achenheim Achenheim,Ashenkhajm,Ashenkhem,Ашенхајм,Ашенхем 48.5807 7.62803 P PPL FR C1 67 676 67001 2303 155 Europe/Paris 2007-07-06
-3038730 Abzac Abzac Abzac 45.01667 -0.13333 P PPL FR 97 33 335 33001 1732 24 Europe/Paris 2012-01-18
-3038731 Abscon Abscon Abscon 50.33333 3.3 P PPL FR B4 59 596 59002 4204 57 Europe/Paris 2012-01-18
-3038735 Abrest Abrest Abrest 46.09907 3.448 P PPL FR 98 03 033 03001 2503 309 Europe/Paris 2012-01-18
-3038738 Abreschviller Abreschviller Abreschviller,Abreschwiller,Abreshvije,Абрешвије 48.63647 7.09466 P PPL FR B2 57 575 57003 1332 294 Europe/Paris 2012-01-18
-3038744 Abondant Abondant Abondant 48.7859 1.44006 P PPL FR A3 28 283 28001 1807 135 Europe/Paris 2012-01-18
-3038745 Abondance Abondance Abondance 46.28031 6.72026 P PPL FR B9 74 744 74001 1498 925 Europe/Paris 2012-01-18
-3038754 Ablon-sur-Seine Ablon-sur-Seine Ablon,Ablon-sur-Seine 48.72732 2.42686 P PPL FR A8 94 941 94001 5174 34 Europe/Paris 2012-01-18
-3038755 Ablon Ablon Ablon 49.39214 0.29584 P PPL FR 99 14 143 14001 1094 106 Europe/Paris 2012-01-18
-3038756 Ablis Ablis Ablis 48.5172 1.83624 P PPL FR A8 78 782 78003 2845 156 Europe/Paris 2012-01-18
-3038759 Ableiges Ableiges Ableiges 49.08932 1.98154 P PPL FR A8 95 953 95002 1024 54 Europe/Paris 2012-01-18
-3038763 Ablain-Saint-Nazaire Ablain-Saint-Nazaire Abla-Sant-Nazer,Ablain,Ablain-Saint-Nazaire,Ablain-la-Montagne,Ablen Sen Nazer,Абла-Сант-Назер,Аблен Сен Назер 50.3932 2.7088 P PPL FR B4 62 621 62001 1891 94 Europe/Paris 2012-01-18
-3038768 Abilly Abilly Abiji,Abili,Abilly,Abilly-sur-Claise,Абили,Абији 46.93333 0.73333 P PPL FR A3 37 373 37001 1158 72 Europe/Paris 2007-09-12
-3038782 Abeilhan Abeilhan Abeilhan 43.44925 3.29529 P PPL FR A9 34 341 34001 1201 97 Europe/Paris 2012-01-18
-3038789 Abbeville Abbeville Abbatis villa,Abbeville,Abbéville,Abevil,Abeville,Abvij,Abvil,Abvil',Абвил,Абвиль,Абвиј,Абевил 50.1 1.83333 P PPLA3 FR B6 80 801 80001 26461 6 Europe/Paris 2011-11-02
-3038799 Abbaretz Abbaretz Abarrez,Abbaretz 47.55314 -1.532 P PPL FR B5 44 441 44001 1627 72 Europe/Paris 2012-01-18
-3225344 Lugon-et-l'Île-du-Carnay Lugon-et-l'Ile-du-Carnay 44.95556 -0.33611 P PPL FR 97 33 335 33259 1060 50 Europe/Paris 2007-11-13
-3232493 Guidel-Plage Guidel-Plage 47.76768 -3.5218 P PPL FR A2 56 561 56078 9800 17 Europe/Paris 2012-02-27
-6354942 Les Deux Alpes Les Deux Alpes Le Dezal'p,Ле Дезальп 45.0116 6.12548 P PPL FR B9 38 381 38253 1520 1650 1655 Europe/Paris 2012-02-27
-6543862 Villeneuve-d'Ascq Villeneuve-d'Ascq 50.61669 3.16664 P PPL FR B4 59 595 59009 62400 32 Europe/Paris 2011-11-02
-6544556 Val Thorens Val Thorens Val'Torans,Валь Торанс 45.29777 6.58377 P PPLL FR B9 73 731 73257 2500 2333 Europe/Paris 2012-02-27
-6615509 Castelmaurou Castelmaurou 43.67778 1.53222 P PPL FR B3 31 313 31117 3261 132 230 Europe/Paris 2007-08-31
-6615510 Geneston Geneston 47.05639 -1.51139 P PPL FR B5 44 442 44223 2217 14 28 Europe/Paris 2007-08-31
-6615511 Le Ban Saint-Martin Le Ban Saint-Martin 49.1225 6.15111 P PPL FR B2 57 574 57049 4332 165 166 Europe/Paris 2010-09-09
-6615523 Le Sequestre Le Sequestre 43.91076 2.11804 P PPL FR B3 81 811 81284 1336 162 174 Europe/Paris 2011-01-13
-6615536 Les Ulis Les Ulis 48.68167 2.16944 P PPL FR A8 91 913 91692 25785 87 163 Europe/Paris 2007-11-04
-6615537 Carnoux-en-Provence Carnoux-en-Provence 43.25639 5.56444 P PPL FR B8 13 133 13119 7042 180 251 Europe/Paris 2011-11-02
-6615538 Saint-Manvieu-Norrey Saint-Manvieu-Norrey 49.18139 -0.5 P PPL FR 99 14 142 14610 1417 89 78 Europe/Paris 2007-09-04
-6615539 Bourgoin-Jallieu Bourgoin-Jallieu 45.58611 5.27361 P PPL FR B9 38 382 38053 23517 210 248 Europe/Paris 2011-11-02
-6619659 Val-de-Reuil Val-de-Reuil Le Vaudreuil-Ville Nouvelle 49.27385 1.21021 P PPL FR A7 27 271 27701 13824 13 Europe/Paris 2011-11-02
-6620445 Belle-Plagne Belle-Plagne Bel'-Plan',Бель-Плань 45.50932 6.70685 P PPL FR B9 73 731 73150 1100 2079 Europe/Paris 2012-02-27
-7626220 University of Technology of Compiègne University of Technology of Compiegne 49.4148 2.81683 P PPLX FR B6 60 603 60159 5350 34 Europe/Paris 2012-02-27
-2396253 Tchibanga Tchibanga Tchibanga -2.85 11.03333 P PPLA GA 05 19365 269 Africa/Libreville 2012-01-18
-2396518 Port-Gentil Port-Gentil Port Gentil,Port Zhantil,Port-Gentil,Порт Жантил -0.71933 8.78151 P PPLA GA 08 109163 4 Africa/Libreville 2011-08-25
-2396646 Oyem Oyem 1.5995 11.57933 P PPLA GA 09 30870 656 Africa/Libreville 2011-08-25
-2396853 Omboué Omboue Fernan Vaz,Fernand-Vaz,Omboue,Omboué -1.57464 9.26184 P PPL GA 08 1667 8 Africa/Libreville 2012-01-18
-2396898 Okondja Okondja Okandja,Okondi,Okondja -0.65487 13.67533 P PPL GA 02 7155 347 Africa/Libreville 2012-01-18
-2397169 Ntoum Ntoum 0.38333 9.78333 P PPL GA 01 8569 33 Africa/Libreville 2011-01-14
-2397614 Ndendé Ndende -2.40077 11.35813 P PPL GA 04 6200 130 Africa/Libreville 2006-01-17
-2397674 Ndjolé Ndjole Ndjole,Ndjolé,Njole -0.17827 10.76488 P PPL GA 03 5098 53 Africa/Libreville 2011-10-20
-2397978 Mounana Mounana Mounana -1.4085 13.15857 P PPL GA 02 8780 459 Africa/Libreville 2012-01-18
-2398073 Mouila Mouila -1.86846 11.05594 P PPLA GA 04 22469 92 Africa/Libreville 2011-08-25
-2398269 Moanda Moanda Moanda,Moanga,Mouanda,Mouenda -1.55746 13.21775 P PPL GA 02 30151 414 Africa/Libreville 2011-04-07
-2398283 Mitzic Mitzic Midzik,Mitsig,Mitzic,Mitzick,Mitzig,Mitzik 0.78206 11.54904 P PPL GA 09 3886 583 Africa/Libreville 2012-01-18
-2398430 Mimongo Mimongo Mimongo -1.61952 11.60675 P PPL GA 04 3307 539 Africa/Libreville 2012-02-02
-2398929 Mbigou Mbigou M'bigou,Mbigou,M’bigou -1.90046 11.906 P PPL GA 04 4134 667 Africa/Libreville 2011-10-20
-2399001 Mayumba Mayumba Mavumba,Mayoumba,Mayumba -3.43198 10.6554 P PPL GA 05 3996 17 Africa/Libreville 2012-01-18
-2399371 Makokou Makokou Makokou,Makokou Fortifie,Makokou Fortifié,Makoku,Макоку 0.57381 12.86419 P PPLA GA 06 13571 489 Africa/Libreville 2012-01-18
-2399697 Libreville Libreville Librevil,Librevil',Librevilis,Libreville,Liburvil,Limprebil,li bo wei er,libeuleubil,lybrwwyl,lybrwyl,Λιμπρεβίλ,Либревиль,Либървил,Լիբրևիլ,ליברוויל,لیبرویل,ሊብረቪል,利伯维尔,리브르빌 0.3925 9.45365 P PPLC GA 01 578156 8 Africa/Libreville 2011-08-25
-2399831 Lékoni Lekoni Fortifie du Lekoni,Fortifie du Liconi,Fortifié du Liconi,Fortifié du Lékoni,Leconi,Lecori,Lekoni,Liconi,Léconi,Lékoni -1.58431 14.25905 P PPL GA 02 3583 502 Africa/Libreville 2012-01-18
-2399870 Lastoursville Lastoursville Bonda,Lastoursville,Lastourville -0.83132 12.77934 P PPL GA 07 8340 264 Africa/Libreville 2012-01-18
-2399888 Lambaréné Lambarene Lambarene,Lambaréné,Ламбарене -0.7001 10.24055 P PPLA GA 03 20714 26 Africa/Libreville 2011-08-25
-2399959 Koulamoutou Koulamoutou Koula Moubou,Koula Mouta,Koula Moutou,Koulamotou,Koulamoutou,Kulamutu,Куламуту -1.13032 12.47359 P PPLA GA 07 16222 299 Africa/Libreville 2012-01-18
-2400547 Gamba Gamba Gamba -2.65 10 P PPL GA 08 9928 43 Africa/Libreville 2012-01-18
-2400555 Franceville Franceville Franceville,Fransvil,Франсвил -1.63333 13.58357 P PPLA GA 02 42967 405 Africa/Libreville 2011-03-18
-2400578 Fougamou Fougamou Fougamou -1.21038 10.59022 P PPL GA 04 5649 75 Africa/Libreville 2012-01-18
-2401357 Cocobeach Cocobeach Cocoabeach,Cocobeach,Ukoko 1.00019 9.58228 P PPL GA 01 1653 18 Africa/Libreville 2012-01-18
-2401495 Booué Booue Booue,Booué,Boque,Boue,Boué -0.09207 11.93846 P PPL GA 06 5787 217 Africa/Libreville 2012-01-18
-2401578 Bitam Bitam Bitam 2.07597 11.50065 P PPL GA 09 10297 575 Africa/Libreville 2012-02-28
-2633332 Ystrad Mynach Ystrad Mynach 51.64276 -3.2362 P PPLA2 GB WLS X4 00PK012 0 115 Europe/London 2011-03-03
-2633334 Ystradgynlais Ystradgynlais Ystradgunlais,Ystradgynlais 51.76667 -3.76667 P PPLA3 GB GB WLS Y8 00NN110 0 68 Europe/London 2011-07-31
-2633337 Ystalyfera Ystalyfera Ystalfera,Ystalyfera 51.76716 -3.78082 P PPL GB WLS Y5 00NZ031 10218 74 Europe/London 2011-03-03
-2633352 York York Aebura,Eboracum,Efrog,Everoui,Jork,Jorvik,Jórvík,York,yoku,yue ke,ywrq,Évèroui,Йорк,יורק,ヨーク,約克 53.95763 -1.08271 P PPLA2 GB ENG Q5 144202 17 Europe/London 2012-03-30
-2633373 Yeovil Yeovil Jeovil',Yeovil,Йеовиль 50.94159 -2.63211 P PPL GB ENG M3 40UD 43733 55 Europe/London 2011-03-03
-2633394 Yealmpton Yealmpton Yealmpton 50.34856 -3.99877 P PPL GB ENG D4 18UG 1621 36 Europe/London 2011-03-03
-2633397 Yeadon Yeadon 53.86437 -1.68743 P PPL GB ENG 00 37379 165 Europe/London 2012-03-29
-2633398 Yazor Yazor Yazor 52.11667 -2.86667 P PPLA3 GB ENG F7 00GA238 0 194 Europe/London 2011-07-31
-2633399 Yaxley Yaxley Yaxley 52.51768 -0.25852 P PPL GB ENG C3 12UE 7578 23 Europe/London 2011-02-13
-2633403 Yatton Yatton 51.96667 -2.53333 P PPLA3 GB ENG F7 00GA237 7356 134 Europe/London 2011-07-31
-2633404 Yatton Yatton Yatton 51.38333 -2.81667 P PPLA3 GB ENG J4 00HC037 0 14 Europe/London 2011-07-31
-2633406 Yate Yate 51.54074 -2.41839 P PPL GB ENG M6 00HD044 21789 80 Europe/London 2012-03-26
-2633412 Yarnton Yarnton Yarnton 51.80986 -1.30694 P PPL GB ENG K2 38UB 2579 62 Europe/London 2011-02-21
-2633414 Yarmouth Yarmouth Jarmut,Yarmouth,Ярмут 50.70529 -1.49929 P PPLA3 GB ENG G2 00MW026 855 2 Europe/London 2011-07-31
-2633415 Yarm Yarm Yarm,Yarm on Tees 54.50364 -1.35793 P PPLA3 GB ENG N3 00EF018 0 24 Europe/London 2011-07-31
-2633445 Wymondham Wymondham 52.75978 -0.74055 P PPL GB ENG H5 31UG 11674 108 Europe/London 2010-05-24
-2633453 Wylam Wylam Wylam 54.97654 -1.82187 P PPL GB ENG J6 00EM164 1584 26 Europe/London 2011-03-03
-2633460 Wye Wye 51.18249 0.93678 P PPL GB ENG G5 29UB 2112 43 Europe/London 2010-05-24
-2633474 Wroxall Wroxall 52.33791 -1.66898 P PPL GB ENG P3 44UF 1927 131 Europe/London 2011-03-07
-2633476 Wroughton Wroughton 51.52411 -1.79559 P PPL GB ENG N9 00HX015 7003 118 Europe/London 2011-03-03
-2633481 Writtle Writtle Writtle 51.72906 0.42938 P PPL GB ENG E4 22UF 4749 38 Europe/London 2011-02-12
-2633482 Wrington Wrington 51.36173 -2.76319 P PPL GB ENG J4 00HC036 2039 24 Europe/London 2011-03-03
-2633485 Wrexham Wrexham Wrecsam,Wrexham 53.04664 -2.99132 P PPLA2 GB WLS Z4 00NL007 43649 87 Europe/London 2011-03-03
-2633511 Wotton-under-Edge Wotton-under-Edge Wotton-under-Edge 51.63242 -2.34512 P PPL GB ENG E6 23UF 5260 82 Europe/London 2011-03-03
-2633513 Worton Worton 51.31611 -2.04111 P PPLA3 GB ENG P8 00HY256 0 59 Europe/London 2011-07-31
-2633514 Wortley Wortley 53.48333 -1.53333 P PPLA3 GB ENG A3 00CC018 0 220 Europe/London 2011-07-31
-2633521 Worthing Worthing Worthing,washingu,ワーシング 50.81448 -0.37126 P PPL GB ENG P6 45UH 99110 12 Europe/London 2011-02-14
-2633549 Worlaby Worlaby 53.6 -0.46667 P PPLA3 GB ENG J3 00FD055 0 7 Europe/London 2011-07-31
-2633551 Worksop Worksop Worksop 53.30182 -1.12404 P PPL GB ENG J9 37UC 40443 46 Europe/London 2011-03-03
-2633553 Workington Workington 54.6425 -3.54413 P PPL GB ENG C9 16UB 20618 20 Europe/London 2011-03-03
-2633563 Worcester Worcester Caerwrangon,Worcester,Worcester UK,vuster,Вустер 52.18935 -2.22001 P PPLA2 GB ENG Q4 47UE 100023 29 Europe/London 2010-10-16
-2633571 Royal Wootton Bassett Royal Wootton Bassett Wooton Bassett,Wootton Bassett 51.5419 -1.9045 P PPL GB ENG P8 00HY254 11180 129 Europe/London 2012-03-29
-2633572 Wootton Wootton 53.61667 -0.36667 P PPLA3 GB ENG J3 00FD054 0 39 Europe/London 2011-07-31
-2633575 Wootton Wootton 52.09525 -0.53494 P PPLA3 GB ENG Z5 00KB045 4572 48 Europe/London 2011-07-31
-2633577 Wootton Wootton Wooton,Wootton 51.1738 1.1794 P PPL GB ENG G5 29UE 4467 132 Europe/London 2010-08-03
-2633583 Woolwich Woolwich 51.491 0.0648 P PPLA3 GB ENG GLA E7 0 20 Europe/London 2010-10-17
-2633595 Woolpit Woolpit 52.22454 0.88826 P PPL GB ENG N5 42UE 1781 65 Europe/London 2010-05-24
-2633598 Woolley Woolley 53.61339 -1.51457 P PPLA3 GB ENG 45 00DB030 0 117 Europe/London 2011-07-31
-2633606 Wooler Wooler Wooler 55.54755 -2.01186 P PPL GB ENG J6 00EM163 1898 56 Europe/London 2011-03-03
-2633609 Wool Wool Wool 50.67966 -2.2189 P PPL GB ENG D6 19UG 2284 18 Europe/London 2011-03-03
-2633618 Woodstock Woodstock Woodstock 51.8485 -1.35132 P PPL GB ENG K2 38UF 2442 97 Europe/London 2010-08-03
-2633624 Woodsetts Woodsetts Woodsetts 53.34804 -1.17204 P PPL GB ENG L3 00CF027 1842 62 Europe/London 2011-03-03
-2633633 Woodley Woodley 51.45 -0.88333 P PPLA3 GB ENG Q2 00MF017 0 44 Europe/London 2011-07-31
-2633651 Woodhall Spa Woodhall Spa Woodhall Spa 53.15215 -0.21453 P PPL GB ENG H7 32UC 4225 15 Europe/London 2011-03-03
-2633653 Wood Green Wood Green 51.6 -0.11667 P PPLA3 GB ENG GLA F3 0 38 Europe/London 2010-10-17
-2633659 Woodford Woodford 51.11667 -1.83333 P PPLA3 GB ENG P8 00HY253 0 85 Europe/London 2011-07-31
-2633664 Woodcote Woodcote Woodcote 52.73333 -2.33333 P PPL GB ENG L6 2775 112 Europe/London 2010-08-03
-2633671 Woodbridge Woodbridge Woodbridge 52.09332 1.32042 P PPL GB ENG N5 42UG 11200 8 Europe/London 2010-08-03
-2633673 Woodborough Woodborough 51.33333 -1.83333 P PPLA3 GB ENG P8 00HY252 0 118 Europe/London 2011-07-31
-2633681 Wombwell Wombwell Wombwell 53.52189 -1.39698 P PPL GB ENG 00 15518 53 Europe/London 2010-08-03
-2633691 Wolverhampton Wolverhampton Uulvurkhjamptun,Wolverhampton,wwlbrhmptwn,Уулвърхямптън,וולברהמפטון 52.58547 -2.12296 P PPLA2 GB ENG Q3 41UF 252791 160 Europe/London 2011-03-03
-2633692 Wolston Wolston 52.37717 -1.39544 P PPL GB ENG P3 44UD 2725 75 Europe/London 2010-05-24
-2633694 Wolsingham Wolsingham 54.73085 -1.88319 P PPL GB ENG D8 00EJ130 2065 142 Europe/London 2011-03-03
-2633705 Wold Newton Wold Newton 54.13333 -0.4 P PPLA3 GB ENG E1 00FB162 0 60 Europe/London 2011-07-31
-2633706 Wold Newton Wold Newton 53.45 -0.13333 P PPLA3 GB ENG J2 00FC020 0 91 Europe/London 2011-07-31
-2633707 Woldingham Woldingham 51.28527 -0.03372 P PPL GB ENG N7 43UK 1646 230 Europe/London 2011-03-03
-2633708 Wokingham Wokingham Uokingkhem,Уокингхем 51.4112 -0.83565 P PPLA2 GB ENG Q2 41143 72 Europe/London 2010-10-16
-2633709 Woking Woking Uokinge,Woking,Уокинге 51.31903 -0.55893 P PPL GB ENG N7 43UM 103932 39 Europe/London 2010-08-03
-2633710 Woburn Sands Woburn Sands 52.01579 -0.64982 P PPLA3 GB ENG I6 00MG036 5074 90 Europe/London 2011-07-31
-2633712 Woburn Woburn 51.98865 -0.61903 P PPLA3 GB ENG Z6 00KC077 0 122 Europe/London 2011-07-31
-2633717 Wivenhoe Wivenhoe Winehoe,Wivenhoe,Wyvenhoe 51.85553 0.95796 P PPL GB ENG E4 22UG 7382 10 Europe/London 2010-08-03
-2633720 Wiveliscombe Wiveliscombe Wiveliscombe 51.04139 -3.31278 P PPL GB ENG M3 40UE 2130 122 Europe/London 2012-02-01
-2633723 Witton Gilbert Witton Gilbert Witton Gilbert 54.80572 -1.63686 P PPL GB ENG D8 00EJ128 2339 108 Europe/London 2011-03-03
-2633727 Wittering Wittering Wittering 52.60972 -0.44151 P PPLA3 GB ENG K3 00JA028 2348 67 Europe/London 2011-07-31
-2633729 Witney Witney Uitni,Witney,Уитни 51.7836 -1.4854 P PPL GB ENG K2 38UF 24103 87 Europe/London 2011-03-03
-2633738 Withington Withington 52.71667 -2.6 P PPLA3 GB ENG L6 00GG197 0 48 Europe/London 2011-07-31
-2633739 Withington Withington 52.1 -2.63333 P PPLA3 GB ENG F7 00GA232 0 72 Europe/London 2011-07-31
-2633744 Withernsea Withernsea 53.7311 0.03347 P PPLA3 GB ENG E1 00FB160 6113 8 Europe/London 2011-07-31
-2633749 Witham Witham 51.80007 0.64038 P PPL GB ENG E4 22UC 22995 25 Europe/London 2010-05-24
-2633751 Witchford Witchford 52.38699 0.20602 P PPL GB ENG C3 2396 10 Europe/London 2010-01-20
-2633757 Wiston Wiston Wiston 51.82583 -4.87 P PPLA3 GB WLS Y7 00NS078 0 109 Europe/London 2011-07-31
-2633765 Wishaw Wishaw 55.76667 -3.91667 P PPL GB SCT 00 27627 138 Europe/London 2006-01-17
-2633771 Wisbech Wisbech Vizbich,Wisbech,Визбич 52.66622 0.15938 P PPL GB ENG C3 12UD 20200 6 Europe/London 2011-03-03
-2633774 Wirksworth Wirksworth Wirksworth 53.08232 -1.57391 P PPL GB ENG D3 17UF 4277 170 Europe/London 2011-03-03
-2633775 Winwick Winwick Winwick 53.43333 -2.6 P PPLA3 GB ENG P2 00EU017 0 31 Europe/London 2011-07-31
-2633786 Winterton Winterton 53.65497 -0.59885 P PPL GB ENG J3 00FD053 4834 30 Europe/London 2011-03-03
-2633791 Winterbourne Stoke Winterbourne Stoke 51.16729 -1.89806 P PPLA3 GB ENG P8 00HY250 0 93 Europe/London 2011-07-31
-2633797 Winterbourne Winterbourne Winterbourn,Winterbourne 51.44609 -1.3466 P PPLA3 GB ENG P4 00MB058 2168 97 Europe/London 2011-07-31
-2633803 Winston Winston 54.54519 -1.78854 P PPLA3 GB ENG D8 00EJ127 0 137 Europe/London 2011-07-31
-2633808 Winslow Winslow 51.94284 -0.88131 P PPL GB ENG B9 11UB 4620 119 Europe/London 2011-02-16
-2633810 Winsford Winsford 53.18333 -2.51667 P PPLA3 GB ENG Z8 00EW163 30812 37 Europe/London 2011-07-31
-2633814 Winnersh Winnersh Winnersh 51.42747 -0.87994 P PPLA3 GB ENG Q2 00MF014 0 50 Europe/London 2011-07-31
-2633823 Wingfield Wingfield Wingfield,Winkfield 51.30889 -2.25278 P PPLA3 GB GB ENG P8 00HY245 0 51 Europe/London 2011-07-31
-2633824 Wingerworth Wingerworth 53.20194 -1.43974 P PPL GB ENG D3 17UJ 6430 142 Europe/London 2011-03-03
-2633827 Wingate Wingate 54.73242 -1.37896 P PPL GB ENG D8 00EJ126 4761 132 Europe/London 2011-03-03
-2633829 Wing Wing 52.61775 -0.6827 P PPLA3 GB ENG L4 00FP058 0 120 Europe/London 2011-07-31
-2633834 Winford Winford 51.38333 -2.66111 P PPLA3 GB ENG J4 00HC033 0 107 Europe/London 2011-07-31
-2633842 Windsor Windsor New Windsor,Vindzor,Windlesora,Windlesōra,Windsor,u~inza,Виндзор,ウィンザー 51.48333 -0.6 P PPL GB GB ENG P4 28324 49 Europe/London 2010-08-03
-2633849 Windlesham Windlesham 51.36509 -0.65476 P PPL GB ENG N7 43UJ 4194 54 Europe/London 2011-03-03
-2633851 Windermere Windermere 54.38086 -2.90709 P PPL GB ENG C9 16UG 8118 120 120 Europe/London 2011-03-21
-2633858 Winchester Winchester Uinchest"r,Vincester,Vinchester,Winchester,u~inchesuta,Винчестер,Вінчестер,Уинчестър,ウィンチェスター 51.06513 -1.3187 P PPLA2 GB ENG F2 24UP 40000 61 Europe/London 2010-10-16
-2633860 Winchcombe Winchcombe Winchcomb,Winchcombe 51.95363 -1.96398 P PPL GB ENG E6 23UG 3764 103 118 Europe/London 2012-03-01
-2633861 Wincanton Wincanton Wincanton 51.05676 -2.40574 P PPL GB ENG M3 40UD 4910 110 Europe/London 2011-03-03
-2633863 Wimborne Minster Wimborne Minster Wimborne,Wimborne Minster 50.78333 -1.98333 P PPL GB ENG D6 14884 47 Europe/London 2012-03-02
-2633874 Wilton Wilton 51.07926 -1.8621 P PPLA3 GB ENG P8 00HY244 0 55 Europe/London 2011-07-31
-2633878 Wilshamstead Wilshamstead Wilhamstead,Willshamstead,Wilstead 52.08088 -0.44889 P PPLA3 GB ENG Z5 00KB044 2013 41 Europe/London 2011-07-31
-2633879 Wilsford Wilsford Wilsford 51.3 -1.85 P PPLA3 GB ENG P8 00HY242 0 164 Europe/London 2011-07-31
-2633880 Wilsden Wilsden Wilsden 53.82084 -1.85959 P PPL GB ENG B4 00CX012 3779 216 Europe/London 2011-03-03
-2633883 Wilmslow Wilmslow 53.32803 -2.23148 P PPL GB ENG Z7 00EQ004 36617 79 Europe/London 2011-03-03
-2633894 Williton Williton Williton 51.16083 -3.32083 P PPL GB ENG M3 40UF 2657 32 Europe/London 2012-02-01
-2633898 Willington Willington 52.13409 -0.37235 P PPLA3 GB ENG Z5 00KB043 0 27 Europe/London 2011-07-31
-2633899 Willingham Willingham 53.35 -0.68333 P PPL GB ENG H7 32UH 3513 15 Europe/London 2010-05-24
-2633911 Willerby Willerby 53.76099 -0.44186 P PPLA3 GB ENG E1 00FB171 0 16 Europe/London 2011-07-31
-2633912 Willenhall Willenhall Willenhall 52.6 -2.03333 P PPL GB ENG 00 27500 141 Europe/London 2012-03-29
-2633915 Willaston Willaston 53.06667 -2.48333 P PPLA3 GB ENG Z7 00EQ136 2540 53 Europe/London 2011-07-31
-2633917 Wilden Wilden 52.18272 -0.39645 P PPLA3 GB ENG Z5 00KB042 0 45 Europe/London 2011-07-31
-2633926 Wilberfoss Wilberfoss 53.94854 -0.88945 P PPL GB ENG E1 00FB159 1896 15 Europe/London 2011-03-03
-2633933 Wigton Wigton 54.82482 -3.16114 P PPL GB ENG C9 16UB 5479 33 Europe/London 2010-05-24
-2633936 Wigston Magna Wigston Magna Great Wigston,Wigston,Wigston Magna,Wigston Two Steeples 52.58128 -1.09248 P PPL GB ENG H5 31UJ 33720 104 Europe/London 2012-03-29
-2633937 Wigmore Wigmore 52.31667 -2.85 P PPLA3 GB ENG F7 00GA229 0 118 Europe/London 2011-07-31
-2633942 Wigginton Wigginton 54.01917 -1.08696 P PPLA3 GB ENG Q5 00FF032 0 20 Europe/London 2011-07-31
-2633948 Wigan Wigan Uigan,Wigan,wei gan,Уиган,维甘 53.53333 -2.61667 P PPLA2 GB ENG P7 80788 41 Europe/London 2010-10-16
-2633954 Widnes Widnes Widnes 53.3618 -2.73406 P PPLA2 GB ENG E9 00ET005 56097 13 Europe/London 2011-03-03
-2633966 Wickwar Wickwar Wickwar 51.59404 -2.39968 P PPL GB ENG M6 00HD042 1736 83 Europe/London 2011-03-03
-2633971 Wickham Market Wickham Market Wickham Market 52.15298 1.36299 P PPL GB ENG N5 42UG 2253 34 Europe/London 2010-08-03
-2633974 Wickham Wickham 51.44342 -1.432 P PPL GB ENG P4 00MB055 1958 149 Europe/London 2011-02-23
-2633976 Wickford Wickford 51.61101 0.52331 P PPL GB ENG E4 22UB 32975 8 Europe/London 2010-05-24
-2633982 Wick Wick Wick 58.43333 -3.08333 P PPL GB SCT V3 2654041 7147 35 Europe/London 2012-01-17
-2633985 Wick Wick 51.43944 -3.54944 P PPLA3 GB WLS Z3 00PD027 0 99 Europe/London 2011-07-31
-2633997 Whitworth Whitworth Whitworth 53.65601 -2.1771 P PPL GB ENG H2 30UM 5798 222 Europe/London 2011-03-03
-2633999 Whitwell Whitwell Whitwell 53.28333 -1.21667 P PPL GB ENG D3 17UC 3846 106 Europe/London 2012-02-01
-2634006 Whitton Whitton 53.7 -0.63333 P PPLA3 GB ENG J3 00FD051 0 13 Europe/London 2011-07-31
-2634007 Whitton Whitton 52.3 -3.06667 P PPLA3 GB WLS Y8 00NN107 0 205 Europe/London 2011-07-31
-2634010 Whittlesey Whittlesey Whittlesea,Whittlesey 52.55804 -0.13016 P PPL GB ENG C3 12UD 12719 8 Europe/London 2011-01-16
-2634014 Whittington Whittington 52.86667 -3 P PPLA3 GB ENG L6 00GG193 0 91 Europe/London 2011-07-31
-2634015 Whittington Whittington Whittington 52.68333 -1.76667 P PPL GB ENG M9 41UD 2085 59 Europe/London 2012-02-01
-2634018 Whittingham Whittingham 55.38333 -1.88333 P PPLA3 GB ENG J6 00EM158 0 136 Europe/London 2011-07-31
-2634021 Whitstable Whitstable Uitstabl,Whitstable,Уитстабл 51.3607 1.0257 P PPL GB ENG G5 30195 5 Europe/London 2010-08-03
-2634032 Whitley Bay Whitley Bay Whitley,Whitley Bay 55.03973 -1.44713 P PPL GB ENG J5 00EM167 38055 29 Europe/London 2011-03-03
-2634035 Whitland Whitland Hendy Gwyn,Whitland 51.81889 -4.61528 P PPLA3 GB WLS X7 00NU073 0 20 Europe/London 2011-07-31
-2634046 Whitford Whitford 53.28333 -3.28333 P PPLA3 GB WLS Y1 00NJ033 0 210 Europe/London 2011-07-31
-2634053 White Waltham White Waltham 51.48833 -0.77844 P PPLA3 GB ENG P9 00ME014 0 38 Europe/London 2011-07-31
-2634065 Whiteparish Whiteparish Whiteparish 51.01041 -1.64855 P PPLA3 GB ENG P8 00HY240 0 74 Europe/London 2011-07-31
-2634091 Whitehills Whitehills Whitehills 57.66667 -2.58333 P PPL GB SCT T6 1019 51 Europe/London 2012-01-17
-2634095 Whitehead Whitehead 54.75371 -5.70933 P PPL GB NIR 00 3697 12 Europe/London 2007-04-13
-2634096 Whitehaven Whitehaven 54.54897 -3.58412 P PPL GB ENG C9 16UE 24803 19 Europe/London 2010-05-24
-2634103 Whitefield Whitefield 53.55 -2.3 P PPL GB ENG 00 23545 124 Europe/London 2006-01-17
-2634124 Whitchurch Whitchurch 52.96667 -2.68333 P PPL GB ENG L6 8944 101 Europe/London 2012-03-29
-2634126 Whitchurch Whitchurch 51.85 -2.65 P PPLA3 GB ENG F7 00GA227 0 69 Europe/London 2011-07-31
-2634129 Whitchurch Whitchurch 51.40694 -2.55583 P PPLA3 GB ENG A4 00HA049 0 80 Europe/London 2011-07-31
-2634135 Whitby Whitby Whitby 54.48774 -0.61498 P PPL GB ENG J7 36UG 13897 14 Europe/London 2010-08-03
-2634137 Whitburn Whitburn Whitburn 55.86667 -3.68333 P PPL GB SCT W9 10137 173 Europe/London 2012-01-17
-2634138 Whitburn Whitburn 54.95333 -1.36861 P PPL GB ENG 00 5352 40 Europe/London 2006-01-17
-2634143 Whiston Whiston 53.40851 -1.3151 P PPLA3 GB ENG L3 00CF025 0 66 Europe/London 2011-07-31
-2634155 Whickham Whickham 54.94561 -1.67635 P PPL GB ENG E5 00CH002 16625 119 Europe/London 2011-03-03
-2634165 Wheldrake Wheldrake 53.89624 -0.96303 P PPL GB ENG Q5 00FF031 1820 17 Europe/London 2011-03-03
-2634170 Wheaton Aston Wheaton Aston Wheaton Aston 52.71145 -2.22064 P PPL GB ENG M9 41UF 2107 112 Europe/London 2011-03-03
-2634171 Wheatley Wheatley Wheatley 51.74731 -1.13936 P PPL GB ENG K2 38UD 5574 79 Europe/London 2011-02-21
-2634172 Wheathampstead Wheathampstead 51.81148 -0.29371 P PPL GB ENG F8 6615330 4086 91 Europe/London 2010-05-24
-2634192 Whalley Whalley 53.82209 -2.40712 P PPL GB ENG H2 30UL 3302 51 Europe/London 2010-05-24
-2634194 Whaley Bridge Whaley Bridge Whaley Bridge 53.33031 -1.9826 P PPL GB ENG D3 17UH 4754 170 Europe/London 2010-10-24
-2634202 Weymouth Weymouth 50.61136 -2.45334 P PPL GB ENG D6 19UJ 50253 5 Europe/London 2011-03-03
-2634204 Weybridge Weybridge Weybridge 51.37216 -0.45297 P PPL GB ENG N7 43UB 19463 25 Europe/London 2012-03-01
-2634208 Wetwang Wetwang 54.0175 -0.57738 P PPLA3 GB ENG E1 00FB158 0 66 Europe/London 2011-07-31
-2634217 Wetherby Wetherby 53.92836 -1.38672 P PPLA3 GB ENG H3 00DA028 10797 30 Europe/London 2011-07-31
-2634228 Westwood Westwood 51.33111 -2.27389 P PPLA3 GB ENG P8 00HY239 0 77 Europe/London 2011-07-31
-2634234 West Wickham West Wickham Vest-Uikkhehm,West Wickham,Вест-Уикхэм 51.36667 -0.01667 P PPL GB ENG GLA B8 14276 88 Europe/London 2012-01-17
-2634236 West Wellow West Wellow 50.97273 -1.58293 P PPL GB ENG F2 24UN 2116 25 Europe/London 2011-03-03
-2634251 West Thurrock West Thurrock 51.47828 0.27672 P PPL GB ENG G5 7795 14 Europe/London 2012-03-29
-2634288 West Rainton West Rainton 54.81667 -1.5 P PPLA3 GB ENG D8 00EJ121 2305 88 Europe/London 2011-07-31
-2634300 Westonzoyland Westonzoyland 51.10854 -2.92843 P PPL GB ENG M3 40UC 1754 10 Europe/London 2011-03-03
-2634304 Weston Underwood Weston Underwood 52.14574 -0.73862 P PPLA3 GB ENG I6 00MG035 0 76 Europe/London 2011-07-31
-2634307 Weston Turville Weston Turville Weston Turville 51.79168 -0.75767 P PPL GB ENG B9 11UB 2317 99 Europe/London 2010-08-21
-2634308 Weston-super-Mare Weston-super-Mare Uest"n sjup"r Me"r,Uestun-Sjupur-Meur,Weston super Mare,Weston-super-Mare,Уестън сюпър Меър,Уестън-Сюпър-Меър 51.34603 -2.97665 P PPLA2 GB ENG J4 00HC038 82903 13 Europe/London 2011-03-03
-2634317 Westoning Westoning 51.9814 -0.49698 P PPLA3 GB ENG Z6 00KC075 2046 78 Europe/London 2011-07-31
-2634322 Weston Weston 53.06667 -2.4 P PPLA3 GB ENG Z7 00EQ134 0 68 Europe/London 2011-07-31
-2634341 City of Westminster City of Westminster Westminster 51.5 -0.11667 P PPLA3 GB GB ENG GLA H1 0 10 Europe/London 2010-10-17
-2634345 West Mersea West Mersea 51.77798 0.91873 P PPL GB ENG E4 22UG 6943 15 Europe/London 2010-05-24
-2634349 West Malling West Malling 51.29273 0.40907 P PPL GB ENG G5 29UP 2192 49 Europe/London 2010-05-24
-2634360 West Linton West Linton 55.74972 -3.35607 P PPL GB SCT T9 1578 235 Europe/London 2007-06-16
-2634375 West Kirby West Kirby Kirby,West Kirby 53.37302 -3.18417 P PPL GB ENG Q1 00NJ020 7680 11 Europe/London 2012-03-29
-2634378 West Kilbride West Kilbride 55.68333 -4.85 P PPL GB SCT 00 4321 80 Europe/London 2006-01-17
-2634387 Westhoughton Westhoughton Westhoughton 53.54899 -2.52464 P PPL GB ENG B1 00BL003 22994 107 Europe/London 2011-03-03
-2634405 West Hallam West Hallam 52.97093 -1.35846 P PPL GB ENG D3 17UG 6314 86 Europe/London 2011-03-03
-2634413 Westgate on Sea Westgate on Sea Vestgejt-on-Si,Westgate on Sea,Вестгейт-он-Си 51.38239 1.33673 P PPL GB ENG G5 29UE 6594 18 Europe/London 2010-08-03
-2634418 Westfield Westfield 51.88333 -1.86667 P PPL GB ENG E6 23UC 1543 217 Europe/London 2010-05-24
-2634434 Westerham Westerham Westerham 51.26632 0.06892 P PPL GB ENG G5 43UK 3048 116 Europe/London 2011-02-05
-2634447 West End West End 50.92741 -1.33282 P PPL GB ENG F2 24UD 4227 54 Europe/London 2011-02-22
-2634451 West Drayton West Drayton West Drayton 51.5 -0.46667 P PPL GB ENG GLA F9 12156 29 Europe/London 2012-01-17
-2634467 West Cornforth West Cornforth Cornforth,West Cornforth 54.70286 -1.51938 P PPL GB ENG D8 00EJ022 2463 112 Europe/London 2011-03-03
-2634477 West Calder West Calder 55.85188 -3.56981 P PPL GB SCT W9 2769 177 Europe/London 2011-03-03
-2634478 West Byfleet West Byfleet West Byfleet 51.33946 -0.49338 P PPL GB ENG N7 43UM 5054 23 Europe/London 2012-03-29
-2634481 Westbury Westbury 52.68333 -2.95 P PPLA3 GB ENG L6 00GG187 0 125 Europe/London 2011-07-31
-2634483 Westbury Westbury 51.26 -2.1875 P PPLA3 GB ENG P8 00HY238 0 65 Europe/London 2011-07-31
-2634491 West Bromwich West Bromwich West Bromwich 52.51868 -1.9945 P PPL GB ENG L7 47UB 135618 165 Europe/London 2011-03-03
-2634493 West Bridgford West Bridgford West Bridgeford,West Bridgford 52.92979 -1.12537 P PPL GB ENG J9 37UJ 48314 28 Europe/London 2011-03-03
-2634499 West Bergholt West Bergholt 51.91221 0.84986 P PPL GB ENG E4 22UG 3234 52 Europe/London 2011-03-03
-2634521 Werrington Werrington 50.66667 -4.36667 P PPLA3 GB ENG C6 00HE210 0 102 Europe/London 2011-07-31
-2634527 Wentworth Wentworth 53.46667 -1.41667 P PPLA3 GB ENG L3 00CF024 0 66 Europe/London 2011-07-31
-2634537 Wendron Wendron Wendron 50.13333 -5.25 P PPLA3 GB ENG C6 00HE209 0 135 Europe/London 2011-07-31
-2634538 Wendover Wendover 51.76301 -0.74149 P PPL GB ENG B9 11UB 7549 126 Europe/London 2010-08-21
-2634545 Wemyss Bay Wemyss Bay Wemyss Bay 55.87614 -4.8895 P PPL GB SCT V4 2838 10 Europe/London 2011-03-03
-2634548 Wembury Wembury Wembury 50.32272 -4.07529 P PPL GB ENG D4 18UG 1819 71 Europe/London 2011-03-03
-2634549 Wembley Wembley 51.55242 -0.29686 P PPLA3 GB ENG GLA B5 0 46 Europe/London 2011-03-03
-2634550 Wem Wem 52.85835 -2.71826 P PPL GB ENG L6 5257 82 Europe/London 2007-06-16
-2634552 Welwyn Garden City Welwyn Garden City Garden City,Welwyn Garden,Welwyn Garden City 51.80174 -0.20691 P PPL GB ENG F8 26UL 44725 92 Europe/London 2011-03-03
-2634557 Welton Welton Welton,Welton, East Yorkshire 53.73211 -0.55232 P PPLA3 GB ENG E1 00FB156 0 24 Europe/London 2011-07-31
-2634560 Welshpool Welshpool Welshpool,Y Trallwng 52.65973 -3.1471 P PPL GB WLS Y8 00NN106 5600 84 Europe/London 2012-03-29
-2634567 Wells-next-the-Sea Wells-next-the-Sea Wells,Wells-next-the-Sea,Wells-on-Sea 52.95164 0.8511 P PPL GB ENG I9 33UF 2506 8 Europe/London 2010-05-24
-2634569 Wells Wells Wells 51.20794 -2.64896 P PPL GB ENG M3 40UB 10638 42 Europe/London 2011-03-03
-2634571 Wellow Wellow 51.32444 -2.37417 P PPLA3 GB ENG A4 00HA047 0 84 Europe/London 2011-07-31
-2634573 Wellington Wellington Vellington,Wellington,Веллингтон 52.7 -2.51667 P PPLA3 GB ENG O2 00GF026 22816 101 Europe/London 2011-07-31
-2634574 Wellington Wellington 52.13333 -2.75 P PPLA3 GB ENG F7 00GA218 0 69 Europe/London 2011-07-31
-2634578 Wellingborough Wellingborough Vellingboro,Wellingborough,Веллингборо 52.30273 -0.69446 P PPL GB ENG J1 34UH 49783 70 Europe/London 2011-03-03
-2634581 Wellesbourne Mountford Wellesbourne Mountford 52.18333 -1.58333 P PPL GB ENG P3 44UE 6007 49 Europe/London 2010-05-24
-2634590 Welford Welford Welford 51.45727 -1.41131 P PPLA3 GB ENG P4 00MB055 0 106 Europe/London 2011-07-31
-2634603 Weeting Weeting Weeting 52.4644 0.61485 P PPL GB ENG I9 33UB 1790 11 Europe/London 2010-08-03
-2634616 Wednesfield Wednesfield 52.6 -2.08333 P PPL GB ENG 00 33555 148 Europe/London 2012-03-29
-2634617 Wednesbury Wednesbury 52.5514 -2.02355 P PPL GB ENG L7 41UF 24337 136 Europe/London 2012-03-29
-2634623 Weaverham Weaverham 53.26018 -2.57291 P PPL GB ENG Z8 00EW154 6433 46 Europe/London 2011-03-03
-2634648 Waverton Waverton 53.16667 -2.8 P PPLA3 GB ENG Z8 00EW153 0 34 Europe/London 2011-07-31
-2634653 Wavendon Wavendon 52.02541 -0.67411 P PPLA3 GB ENG I6 00MG034 0 93 Europe/London 2011-07-31
-2634660 Watton at Stone Watton at Stone Watton,Watton at Stone 51.85842 -0.11381 P PPL GB ENG F8 26UD 2323 62 Europe/London 2010-08-03
-2634661 Watton Watton 53.93333 -0.45 P PPLA3 GB ENG E1 00FB154 7601 8 Europe/London 2011-07-31
-2634663 Wattisham Wattisham 52.12543 0.93864 P PPL GB ENG N5 42UB 1539 87 Europe/London 2010-05-24
-2634671 Watlington Watlington 51.64327 -1.00448 P PPL GB ENG K2 38UD 2187 109 Europe/London 2010-05-24
-2634672 Wath upon Dearne Wath upon Dearne Wath,Wath upon Dearne,Wath-on-Dearne 53.50291 -1.3458 P PPL GB ENG L3 00CF003 17161 35 Europe/London 2011-03-03
-2634677 Watford Watford Uotford,Watford,wtpwrd,wwtpwrd,Уотфорд,ווטפורד,וטפורד 51.65531 -0.39602 P PPL GB ENG F8 26UK 125707 77 Europe/London 2010-08-03
-2634682 Water Orton Water Orton 52.51575 -1.74005 P PPL GB ENG P3 44UB 3653 86 Europe/London 2010-05-24
-2634686 Waterlooville Waterlooville Uoterluvil',Waterloo,Waterlooville,Уотерлувиль 50.88067 -1.0304 P PPL GB ENG F2 24UH 64350 54 Europe/London 2010-08-03
-2634690 Wateringbury Wateringbury 51.25543 0.42317 P PPL GB ENG G5 29UP 2372 41 Europe/London 2010-05-24
-2634701 Waterbeach Waterbeach 52.26553 0.19123 P PPL GB ENG C3 12UG 4299 10 Europe/London 2010-05-24
-2634704 Watchet Watchet Watchet 51.18189 -3.33079 P PPL GB ENG M3 40UF 3793 11 Europe/London 2011-03-03
-2634715 Washington Washington Vashington,Washington,Washington New Town,Вашингтон 54.9 -1.51667 P PPL GB ENG 41 53526 59 Europe/London 2010-08-03
-2634716 Washington Washington 50.90487 -0.40649 P PPL GB ENG P6 45UF 1930 59 Europe/London 2010-05-24
-2634725 Warwick Warwick Uorik,Warwick,Уорик 52.28333 -1.58333 P PPLA2 GB ENG P3 44UF 24040 57 Europe/London 2010-10-16
-2634727 Warton Warton Warton 53.76667 -2.88333 P PPL GB ENG H2 30UF 1833 21 Europe/London 2012-01-17
-2634736 Warsop Warsop 53.21402 -1.15091 P PPL GB ENG J9 37UF 9766 61 Europe/London 2011-03-03
-2634739 Warrington Warrington Uorrington,Warrington,Уоррингтон 53.39254 -2.58024 P PPLA2 GB ENG P2 81238 15 Europe/London 2010-10-16
-2634740 Warrington Warrington 52.18446 -0.68759 P PPLA3 GB ENG I6 00MG033 0 81 Europe/London 2011-07-31
-2634743 Warrenpoint Warrenpoint 54.09947 -6.25088 P PPL GB NIR 00 7670 9 Europe/London 2007-04-13
-2634755 Warminster Warminster Warminster 51.20434 -2.17873 P PPL GB ENG P8 00HY231 17875 120 Europe/London 2011-03-03
-2634762 Warkworth Warkworth Warkworth 55.35 -1.61667 P PPLA3 GB ENG J6 00EM154 0 27 Europe/London 2011-07-31
-2634768 Waringstown Waringstown 54.43431 -6.29929 P PPL GB NIR 00 2856 50 Europe/London 2007-04-13
-2634772 Wargrave Wargrave Wagrave,Wargrave 51.50068 -0.86577 P PPLA3 GB ENG Q2 00MF013 2940 49 Europe/London 2011-07-31
-2634773 Warfield Warfield Warfield 51.44213 -0.72802 P PPLA3 GB ENG B3 00MA005 0 60 Europe/London 2011-07-31
-2634776 Wareham Wareham Wareham 50.68886 -2.1104 P PPL GB ENG D6 19UG 2625 18 Europe/London 2012-02-15
-2634777 Ware Ware 51.81265 -0.02832 P PPL GB ENG F8 26UD 17576 37 Europe/London 2010-05-24
-2634782 Wardle Wardle 53.65 -2.13333 P PPL GB ENG 00 7250 200 Europe/London 2006-01-17
-2634790 Warden Warden 54.98333 -2.13333 P PPLA3 GB ENG J6 00EM152 0 45 Europe/London 2011-07-31
-2634796 Warboys Warboys Warboys 52.40352 -0.07931 P PPL GB ENG C3 12UE 3786 32 Europe/London 2010-08-03
-2634801 Wantage Wantage Wantage 51.58846 -1.42565 P PPL GB ENG K2 38UE 9767 95 Europe/London 2012-03-29
-2634805 Wansford Wansford 52.58333 -0.41667 P PPLA3 GB ENG K3 00JA027 0 35 Europe/London 2011-07-31
-2634812 Wandsworth Wandsworth London Borough of Wandsworth,Wandsworth 51.45722 -0.19278 P PPLA3 GB ENG GLA P1 0 9 Europe/London 2010-10-17
-2634815 Wanborough Wanborough Wanborough 51.54263 -1.69837 P PPLA3 GB ENG N9 00HX014 1631 151 Europe/London 2011-07-31
-2634822 Walworth Walworth 54.56667 -1.65 P PPLA3 GB ENG D1 00EH025 0 93 Europe/London 2011-07-31
-2634838 Walthamstow Walthamstow 51.59669 -0.03296 P PPLA3 GB ENG GLA O9 0 20 Europe/London 2010-10-17
-2634842 Waltham Cross Waltham Cross 51.68905 -0.0333 P PPL GB ENG F8 26UB 10000 23 Europe/London 2012-03-29
-2634843 Waltham Abbey Waltham Abbey Waltham Abbey 51.687 -0.00421 P PPL GB ENG E4 22UH 18069 20 Europe/London 2011-02-12
-2634844 Waltham Waltham 53.51667 -0.1 P PPLA3 GB ENG J2 00FC018 6563 19 Europe/London 2011-07-31
-2634853 Walsall Walsall Uolsol,Wallsall,Walsall,Уолсол 52.58528 -1.98396 P PPLA2 GB ENG O8 41UF 172141 129 Europe/London 2011-03-03
-2634864 Wallsend Wallsend Uolsend,Wallsend-on-Tyne,Уолсенд 54.99111 -1.53397 P PPLA2 GB ENG J5 42739 30 Europe/London 2010-10-16
-2634869 Wallingford Wallingford Wallingford 51.59982 -1.1248 P PPL GB ENG K2 38UD 8198 51 Europe/London 2011-03-03
-2634873 Wallasey Wallasey Uollasi,Wallasey,Уолласи 53.42324 -3.06497 P PPLA2 GB ENG Q1 00CA009 58794 14 Europe/London 2011-03-03
-2634877 Wall Wall 55 -2.13333 P PPLA3 GB ENG J6 00EM150 0 49 Europe/London 2011-07-31
-2634879 Walkington Walkington 53.81667 -0.05 P PPL GB ENG 00 1891 -9999 Europe/London 2006-01-17
-2634887 Walkden Walkden Walkden 53.51667 -2.4 P PPL GB ENG L5 35937 68 Europe/London 2012-01-17
-2634890 Walford Walford 51.88333 -2.6 P PPLA3 GB ENG F7 00GA215 0 35 Europe/London 2011-07-31
-2634894 Wales Wales Uehl's,Wales,Уэльс 53.34061 -1.28162 P PPLA3 GB ENG L3 00CF023 5956 110 Europe/London 2011-07-31
-2634906 Walberton Walberton Walberton 50.84475 -0.62013 P PPL GB ENG P6 45UC 1778 15 Europe/London 2010-08-03
-2634910 Wakefield Wakefield Wakefield 53.68331 -1.49768 P PPLA2 GB ENG O7 78978 50 Europe/London 2010-10-15
-2634914 Wainfleet All Saints Wainfleet All Saints Wainfleet,Wainfleet All Saints 53.1057 0.23583 P PPL GB ENG H7 32UC 2009 6 Europe/London 2011-03-03
-2634918 Wadhurst Wadhurst 51.0623 0.33929 P PPL GB ENG E2 21UH 3768 152 Europe/London 2011-02-05
-2634920 Wadebridge Wadebridge Wadebridge 50.51734 -4.83633 P PPL GB ENG C6 00HE205 6361 3 Europe/London 2011-03-03
-2634923 Waddington Waddington Waddington 53.16667 -0.53333 P PPL GB ENG H7 32UE 4081 78 Europe/London 2012-01-17
-2634925 Waddesdon Waddesdon Waddesdon 51.84675 -0.92105 P PPL GB ENG B9 11UB 1907 100 Europe/London 2010-08-03
-2634930 Wacton Wacton 52.21667 -2.56667 P PPLA3 GB ENG F7 00GA214 0 173 Europe/London 2011-07-31
-2634966 Victoria Victoria 51.75 -3.2 P PPL GB WLS X2 6688 301 Europe/London 2010-09-22
-2634975 Verwood Verwood 50.87575 -1.87023 P PPL GB ENG D6 19UD 12338 33 Europe/London 2011-03-03
-2634985 Ventnor Ventnor Jentnor,Ventnor 50.59479 -1.20369 P PPL GB ENG G2 00MW023 6396 35 Europe/London 2011-02-17
-2635022 Valley Valley 53.2849 -4.56644 P PPL GB WLS X1 00NA040 2440 8 Europe/London 2011-03-03
-2635042 Uxbridge Uxbridge 51.54619 -0.47961 P PPLA3 GB ENG GLA F9 0 45 Europe/London 2010-10-17
-2635043 Uttoxeter Uttoxeter 52.89838 -1.86488 P PPL GB ENG M9 41UC 12291 92 Europe/London 2011-03-03
-2635052 Usk Usk Brynbuga,Usk 51.70347 -2.90332 P PPL GB WLS Y4 00PP033 2344 19 Europe/London 2011-03-03
-2635054 Ushaw Moor Ushaw Moor Ushaw Moor 54.77803 -1.6472 P PPL GB ENG D8 00EJ014 5502 116 Europe/London 2011-03-03
-2635062 Urmston Urmston Urmston 53.44852 -2.35419 P PPL GB ENG O6 00BU001 41198 26 Europe/London 2011-03-03
-2635080 Upton upon Severn Upton upon Severn Upton,Upton upon Severn,Upton-on-Severn 52.06258 -2.21802 P PPL GB ENG Q4 47UC 1829 16 Europe/London 2011-03-03
-2635082 Upton Scudamore Upton Scudamore 51.23 -2.19333 P PPLA3 GB ENG P8 00HY229 0 135 Europe/London 2011-07-31
-2635090 Upton Upton 53.61466 -1.28677 P PPLA3 GB ENG 45 00DB024 0 64 Europe/London 2011-07-31
-2635095 Upton Upton 52.59061 -0.36935 P PPLA3 GB ENG K3 00JA026 0 40 Europe/London 2011-07-31
-2635101 Uppingham Uppingham 52.58803 -0.72272 P PPL GB ENG L4 00FP054 4035 150 Europe/London 2011-03-03
-2635150 Upminster Upminster 51.55594 0.2556 P PPL GB ENG GLA F6 10000 19 Europe/London 2012-03-29
-2635183 Ulverston Ulverston Ulverston,Ulverstone 54.19594 -3.09626 P PPL GB ENG C9 16UG 11460 30 Europe/London 2010-08-03
-2635189 Ulrome Ulrome 53.99198 -0.22968 P PPLA3 GB ENG E1 00FB151 0 11 Europe/London 2011-07-31
-2635194 Ulley Ulley 53.382 -1.30222 P PPLA3 GB ENG L3 00CF022 0 112 Europe/London 2011-07-31
-2635199 Ullapool Ullapool Allapul,Ulapul,Ulapulis,Ullapool,Аллапул 57.89872 -5.16039 P PPL GB SCT V3 1327 16 Europe/London 2011-03-03
-2635205 Ulceby Ulceby 53.61667 -0.33333 P PPLA3 GB ENG J3 00FD048 0 38 Europe/London 2011-07-31
-2635230 Ufford Ufford 52.62379 -0.38435 P PPLA3 GB ENG K3 00JA025 0 41 Europe/London 2011-07-31
-2635234 Uffculme Uffculme Uffculme 50.90604 -3.32746 P PPL GB ENG D4 18UD 1822 92 Europe/London 2011-03-03
-2635239 Uddingston Uddingston Uddingston 55.81971 -4.08362 P PPL GB SCT W5 5609 47 Europe/London 2011-03-03
-2635243 Uckfield Uckfield 50.96948 0.09589 P PPL GB ENG E2 21UH 15716 19 Europe/London 2010-05-24
-2635256 Tytherington Tytherington Tytherington 51.5925 -2.47972 P PPLA3 GB ENG M6 00HD039 0 70 Europe/London 2011-07-31
-2635269 Tynemouth Tynemouth Tynemouth 55.01788 -1.42559 P PPL GB ENG J5 00EM167 17436 35 Europe/London 2011-03-03
-2635281 Tyldesley Tyldesley 53.51393 -2.46754 P PPL GB ENG P7 00BL003 35932 58 Europe/London 2011-03-03
-2635294 Twyford Twyford Twyford 51.47518 -0.86037 P PPLA3 GB ENG Q2 00MF012 7192 51 Europe/London 2011-07-31
-2635308 Twickenham Twickenham 51.4454 -0.32968 P PPLA3 GB ENG GLA L1 0 9 Europe/London 2010-10-17
-2635321 Tuxford Tuxford Tuxford 53.23004 -0.89325 P PPL GB ENG J9 37UC 2572 55 Europe/London 2011-03-03
-2635329 Turriff Turriff 57.5384 -2.45932 P PPL GB SCT T6 4711 55 Europe/London 2011-03-03
-2635343 Turnastone Turnastone 52.01667 -2.93333 P PPLA3 GB ENG F7 00GA208 0 108 Europe/London 2011-07-31
-2635412 Truro Truro Truro,Truru,Труро 50.26526 -5.05436 P PPLA2 GB ENG C6 00HE202 22044 15 Europe/London 2011-03-03
-2635427 Trowbridge Trowbridge Troubridzhe,Trowbridge,Троубридже 51.31889 -2.20861 P PPLA2 GB ENG P8 36922 41 Europe/London 2010-10-16
-2635442 Troon Troon 55.54359 -4.66335 P PPL GB SCT W4 14900 5 Europe/London 2010-05-17
-2635459 Tring Tring Tring 51.79471 -0.65824 P PPL GB ENG F8 26UC 12099 134 Europe/London 2010-08-21
-2635465 Trimdon Trimdon 54.69878 -1.42881 P PPL GB ENG D8 00EJ115 3074 144 Europe/London 2011-03-03
-2635470 Trewen Trewen 50.61667 -4.46667 P PPLA3 GB ENG C6 00HE201 0 191 Europe/London 2011-07-31
-2635496 Treorchy Treorchy Treorci,Treorky 51.65958 -3.50587 P PPL GB WLS Y9 00PF032 8105 161 Europe/London 2012-03-29
-2635520 Trelech Trelech Trelech,Ty-newydd-trelech 51.94444 -4.5 P PPLA3 GB GB WLS X7 00NU071 0 190 Europe/London 2011-07-31
-2635523 Treherbert Treherbert 51.67139 -3.52972 P PPLA3 GB WLS Y9 00PF030 0 187 Europe/London 2011-07-31
-2635529 Tregoney Tregoney 50.26667 -4.91667 P PPLA3 GB ENG C6 00HE195 0 16 Europe/London 2011-07-31
-2635535 Trefnant Trefnant Trefnant 53.21667 -3.43333 P PPLA3 GB WLS X9 00NG038 0 98 Europe/London 2011-07-31
-2635540 Treeton Treeton 53.38564 -1.35189 P PPL GB ENG L3 00CF021 2570 59 Europe/London 2011-03-03
-2635547 Tredegar Tredegar Tredegar 51.77251 -3.24679 P PPL GB WLS X2 00PL008 14966 321 Europe/London 2011-03-03
-2635557 Trawsfynydd Trawsfynydd Trawsfynydd 52.90212 -3.92289 P PPLA3 GB WLS Y2 00NC060 0 230 Europe/London 2011-07-31
-2635563 Tranent Tranent Tranent 55.94439 -2.95412 P PPL GB SCT 00 9042 90 Europe/London 2011-01-06
-2635571 Trafford Park Trafford Park 53.46879 -2.31194 P PPL GB ENG O6 3060 28 Europe/London 2010-09-22
-2635587 Townhill Townhill Townhill 56.08333 -3.43333 P PPL GB SCT V1 1190 125 Europe/London 2012-01-17
-2635590 Tow Law Tow Law Tow Law 54.74456 -1.81434 P PPL GB ENG D8 00EJ114 1995 306 Europe/London 2011-03-03
-2635597 Towcester Towcester 52.13359 -0.99057 P PPL GB ENG J1 34UG 8253 94 Europe/London 2010-05-24
-2635603 Totton Totton 50.91877 -1.49037 P PPL GB ENG F2 24UJ 29260 5 Europe/London 2011-03-03
-2635604 Tottington Tottington 53.61326 -2.34071 P PPL GB ENG C1 00EX003 7713 150 Europe/London 2011-03-03
-2635606 Totternhoe Totternhoe 51.88555 -0.57343 P PPLA3 GB ENG Z6 00KC074 0 111 Europe/London 2011-07-31
-2635610 Totnes Totnes Totnes 50.43107 -3.6843 P PPL GB ENG D4 18UG 8106 6 Europe/London 2011-03-03
-2635613 Totland Totland Totland 50.68466 -1.53688 P PPLA3 GB ENG G2 00MW022 0 25 Europe/London 2011-07-31
-2635650 Torquay Torquay Torcaium,Torkej,Torkvej,Torquay,toki,Торквей,Торкей,トーキー 50.46384 -3.51434 P PPLA2 GB ENG O4 65388 49 Europe/London 2010-10-16
-2635651 Torpoint Torpoint Torpoint 50.37505 -4.19566 P PPL GB ENG C6 00HE193 8825 14 Europe/London 2011-03-03
-2635652 Torphins Torphins Torphins 57.10561 -2.62398 P PPL GB SCT T6 1245 132 Europe/London 2011-03-03
-2635680 Topsham Topsham 50.68596 -3.46696 P PPL GB ENG D4 18UC 3624 10 Europe/London 2010-05-24
-2635689 Tonyrefail Tonyrefail 51.58402 -3.43041 P PPL GB WLS Y9 00PF028 9018 143 Europe/London 2011-03-03
-2635698 Tong Tong 52.66667 -2.3 P PPLA3 GB ENG L6 00GG178 0 94 Europe/London 2011-07-31
-2635703 Tonbridge Tonbridge Tonbridge,Tonbridzh,Тонбридж 51.19242 0.27532 P PPL GB ENG G5 29UP 36894 26 Europe/London 2011-03-03
-2635720 Tollesbury Tollesbury 51.75913 0.83462 P PPL GB ENG E4 22UK 2740 25 Europe/London 2010-05-24
-2635742 Todwick Todwick 53.35373 -1.25673 P PPLA3 GB ENG L3 00CF020 1673 108 Europe/London 2011-07-31
-2635744 Todmorden Todmorden Todmorden 53.71434 -2.09701 P PPL GB ENG C2 00CY006 11812 129 Europe/London 2011-03-03
-2635748 Toddington Toddington 51.94922 -0.53277 P PPLA3 GB ENG Z6 00KC073 0 150 Europe/London 2011-07-31
-2635761 Tiverton Tiverton 53.13333 -2.66667 P PPLA3 GB ENG Z8 00EW149 0 41 Europe/London 2011-07-31
-2635762 Tiverton Tiverton Tiverton 50.9 -3.48333 P PPL GB ENG D4 18UD 16799 88 Europe/London 2012-01-17
-2635774 Tisbury Tisbury 51.06283 -2.08058 P PPL GB ENG P8 00HY223 2086 96 Europe/London 2011-03-03
-2635783 Tiptree Tiptree 51.81259 0.74887 P PPL GB ENG E4 22UG 8490 53 Europe/London 2010-05-24
-2635785 Tipton Tipton 52.52956 -2.06773 P PPL GB ENG L7 41UF 47000 144 Europe/London 2012-03-29
-2635787 Tinwell Tinwell Tinwell 52.64629 -0.51498 P PPLA3 GB ENG L4 00FP052 0 38 Europe/London 2011-07-31
-2635801 Timsbury Timsbury 51.32444 -2.47917 P PPLA3 GB ENG A4 00HA045 0 141 Europe/London 2011-07-31
-2635829 Tillicoultry Tillicoultry 56.15251 -3.74015 P PPL GB SCT U1 5404 21 Europe/London 2011-03-03
-2635833 Tilehurst Tilehurst 51.45647 -1.0437 P PPLA3 GB ENG P4 00MB052 0 95 Europe/London 2011-07-31
-2635836 Tilbury Tilbury Tilbury,Tilbury Fort 51.46248 0.35856 P PPL GB ENG O3 11717 2 Europe/London 2010-08-03
-2635851 Tideswell Tideswell 53.27807 -1.77292 P PPL GB ENG D3 17UF 1719 297 Europe/London 2011-03-03
-2635859 Tickhill Tickhill 53.43194 -1.10859 P PPLA3 GB ENG D5 00CE041 5226 18 Europe/London 2011-07-31
-2635860 Tickencote Tickencote Tickencote 52.67503 -0.53696 P PPLA3 GB ENG L4 00FP051 0 63 Europe/London 2011-07-31
-2635864 Tibshelf Tibshelf Tibshelf 53.14436 -1.34056 P PPL GB ENG D3 17UC 3627 173 Europe/London 2011-03-03
-2635871 Thwing Thwing 54.11547 -0.3895 P PPLA3 GB ENG E1 00FB147 0 107 Europe/London 2011-07-31
-2635877 Thurston Thurston Thurston 52.25244 0.80749 P PPL GB ENG N5 42UE 2963 46 Europe/London 2011-03-03
-2635881 Thurso Thurso Thurso 58.59271 -3.52594 P PPL GB SCT V3 7492 22 Europe/London 2011-03-03
-2635907 Thruxton Thruxton 52 -2.81667 P PPLA3 GB ENG F7 00GA204 0 103 Europe/London 2011-07-31
-2635927 Three Legged Cross Three Legged Cross 50.85 -1.88333 P PPL GB ENG D6 19UD 1648 29 Europe/London 2010-05-24
-2635937 Thrapston Thrapston 52.39675 -0.5392 P PPL GB ENG J1 34UD 4393 35 Europe/London 2011-03-03
-2635955 Thorp Arch Thorp Arch Thorp Arch,Thorpe Arch 53.91081 -1.34282 P PPLA3 GB ENG H3 00DA026 0 29 Europe/London 2011-07-31
-2635964 Thornton Dale Thornton Dale Thornton Dale,Thornton-le-Dale 54.23333 -0.71667 P PPL GB ENG J7 36UF 1886 34 Europe/London 2012-01-17
-2635969 Thornton Thornton Thornton 56.16667 -3.15 P PPL GB SCT V1 1743 56 Europe/London 2012-01-17
-2635971 Thornton Thornton 53.9 -0.85 P PPLA3 GB ENG E1 00FB146 0 10 Europe/London 2011-07-31
-2635974 Thornton Thornton 53.5 -3 P PPLA3 GB ENG L8 00CA008 0 19 Europe/London 2011-07-31
-2635978 Thornley Thornley 54.75 -1.43333 P PPLA3 GB ENG D8 00EJ113 2582 146 Europe/London 2011-07-31
-2635981 Thornhill Thornhill Thornhill 55.23333 -3.76667 P PPL GB SCT U2 1504 52 Europe/London 2012-01-17
-2635983 Thornhaugh Thornhaugh Thornhaugh 52.59252 -0.42418 P PPLA3 GB ENG K3 00JA024 0 38 Europe/London 2011-07-31
-2635988 Thorngumbald Thorngumbald Thorngumbald,Thorngumbold 53.721 -0.17175 P PPL GB ENG E1 00FB145 2853 6 Europe/London 2011-03-03
-2635994 Thorney Thorney 52.62147 -0.10815 P PPLA3 GB ENG K3 00JA023 0 6 Europe/London 2011-07-31
-2635996 Thorner Thorner 53.86093 -1.42676 P PPLA3 GB ENG H3 00DA025 0 87 Europe/London 2011-07-31
-2636001 Thornbury Thornbury 52.23333 -2.55 P PPLA3 GB ENG F7 00GA203 0 173 Europe/London 2011-07-31
-2636002 Thornbury Thornbury 51.60889 -2.52028 P PPLA2 GB ENG M6 0 42 Europe/London 2010-10-16
-2636005 Thornaby-on-Tees Thornaby-on-Tees Thornaby,Thornaby on Tees 54.53333 -1.3 P PPL GB ENG K9 22356 20 Europe/London 2012-03-29
-2636021 Thirsk Thirsk 54.23298 -1.34411 P PPL GB ENG J7 36UC 9302 37 Europe/London 2010-05-24
-2636031 Theydon Bois Theydon Bois 51.67426 0.09781 P PPL GB ENG E4 22UH 3840 60 Europe/London 2011-03-03
-2636032 Thetford Thetford Tetford,Thetford,Тетфорд 52.41667 0.75 P PPL GB ENG I9 33UB 21588 24 Europe/London 2012-01-17
-2636045 Theale Theale 51.43694 -1.077 P PPL GB ENG P4 00MB050 2833 47 Europe/London 2011-02-18
-2636047 Thaxted Thaxted 51.95326 0.34478 P PPL GB ENG E4 22UQ 2112 86 Europe/London 2010-05-24
-2636049 Thatcham Thatcham Thatcham 51.40366 -1.26049 P PPL GB ENG P4 00MB049 24274 78 Europe/London 2011-02-21
-2636066 Thame Thame Thame 51.7484 -0.97624 P PPL GB ENG K2 38UD 11128 72 Europe/London 2011-02-16
-2636069 Teynham Teynham 51.33045 0.80526 P PPL GB ENG G5 29UM 2786 14 Europe/London 2010-05-24
-2636071 Tewkesbury Tewkesbury Tewkesbury 51.99453 -2.15681 P PPL GB ENG E6 23UG 10200 18 Europe/London 2011-03-03
-2636080 Tetney Tetney Tetney 53.49239 -0.02106 P PPL GB ENG H7 32UC 1602 7 Europe/London 2011-03-03
-2636083 Tetbury Tetbury Tetbury 51.63944 -2.16222 P PPL GB ENG E6 23UC 5367 118 Europe/London 2012-02-01
-2636091 Terrington Saint John Terrington Saint John 52.70546 0.27389 P PPL GB ENG I9 33UE 1740 2 Europe/London 2010-05-24
-2636092 Terrington Saint Clement Terrington Saint Clement Terrington,Terrington Saint Clement 52.75 0.3 P PPL GB ENG I9 33UE 3176 5 Europe/London 2012-01-17
-2636101 Tenterden Tenterden Tenterden 51.06845 0.68776 P PPL GB ENG G5 29UB 7132 61 Europe/London 2010-08-03
-2636104 Tenby Tenby Dinbych-y-pysgod,Tenby 51.67268 -4.70263 P PPL GB WLS Y7 00NS072 4989 31 Europe/London 2011-10-14
-2636105 Tenbury Tenbury Tenbury,Tenbury Wells 52.3 -2.58333 P PPL GB ENG Q4 47UC 3390 87 Europe/London 2012-01-17
-2636106 Tempsford Tempsford 52.17051 -0.29586 P PPLA3 GB ENG Z6 00KC070 0 22 Europe/London 2011-07-31
-2636110 Templeton Templeton Templeton 51.77194 -4.73778 P PPLA3 GB WLS Y7 00NS071 0 110 Europe/London 2011-07-31
-2636113 Templepatrick Templepatrick Templepatrick 54.68333 -6.08333 P PPL GB NIR Q6 1627 145 Europe/London 2012-01-17
-2636132 Teignmouth Teignmouth Teignmouth 50.54768 -3.49637 P PPL GB ENG D4 18UH 15498 10 Europe/London 2011-03-03
-2636158 Tayport Tayport Ferry Port-on-Craig 56.44699 -2.87966 P PPL GB SCT V1 4093 19 Europe/London 2011-03-03
-2636174 Tavistock Tavistock 50.54944 -4.14418 P PPL GB ENG D4 18UL 11493 85 Europe/London 2011-03-03
-2636177 Taunton Taunton Taunton 51.02111 -3.10472 P PPLA2 GB ENG M3 40UE 60433 18 Europe/London 2010-10-16
-2636183 Tattenhall Tattenhall 53.12188 -2.76746 P PPL GB ENG Z8 00EW144 1901 38 Europe/London 2011-03-03
-2636190 Tarvin Tarvin 53.19737 -2.76548 P PPL GB ENG Z8 00EW143 2358 40 Europe/London 2011-03-03
-2636209 Tarporley Tarporley 53.15918 -2.66867 P PPL GB ENG Z8 00EW142 2693 98 Europe/London 2011-03-03
-2636215 Tarleton Tarleton Tarleton 53.68005 -2.82968 P PPL GB ENG H2 30UP 8393 19 Europe/London 2011-03-03
-2636231 Tarbolton Tarbolton Tarbolton 55.51292 -4.48648 P PPL GB SCT W4 1649 98 Europe/London 2011-03-03
-2636241 Tarbert Tarbert 55.86277 -5.41622 P PPL GB SCT 00 1364 11 Europe/London 2009-08-08
-2636267 Tanfield Tanfield 54.89288 -1.71316 P PPL GB ENG D8 00EJ110 1659 191 Europe/London 2011-03-03
-2636271 Tandragee Tandragee Tanderagee 54.35486 -6.41396 P PPL GB NIR 00 3122 63 Europe/London 2007-04-13
-2636276 Tamworth Tamworth Tamworth 52.63399 -1.69587 P PPL GB ENG M9 41UK 74129 73 Europe/London 2011-03-03
-2636315 Takeley Takeley 51.87089 0.26583 P PPL GB ENG E4 22UQ 1860 98 Europe/London 2011-03-03
-2636321 Tain Tain Tain 57.80903 -4.05991 P PPL GB SCT V3 3409 47 Europe/London 2011-03-03
-2636333 Tadley Tadley 51.35045 -1.1285 P PPL GB ENG F2 24UB 15990 84 Europe/London 2011-02-18
-2636335 Tadcaster Tadcaster Tadcaster 53.88322 -1.26344 P PPL GB ENG J7 36UH 6694 14 Europe/London 2011-03-03
-2636341 Syston Syston Syston 52.68333 -1.06667 P PPL GB ENG H5 31UC 11508 63 Europe/London 2012-02-01
-2636373 Swinton Swinton 53.5 -2.35 P PPL GB ENG L5 20000 46 Europe/London 2012-03-29
-2636385 Swineshead Swineshead 52.28029 -0.4501 P PPLA3 GB ENG Z5 00KB039 0 51 Europe/London 2011-07-31
-2636389 Swindon Swindon Svindon,Swindon,suu~indon,Свиндон,スウィンドン 51.55797 -1.78116 P PPLA2 GB ENG N9 00HX015 155432 113 Europe/London 2010-10-16
-2636394 Swillington Swillington 53.76846 -1.4175 P PPL GB ENG H3 00DA024 3279 59 Europe/London 2011-03-03
-2636408 Sway Sway Sway 50.78685 -1.60294 P PPL GB ENG F2 24UJ 2345 40 Europe/London 2011-03-03
-2636409 Swavesey Swavesey 52.30155 -0.00476 P PPL GB ENG C3 12UG 2535 10 Europe/London 2010-05-24
-2636432 Swansea Swansea Abertawe,Suonsi,Suonzi,Swansea,si wang xi,suu~onji,Суонзи,Суонси,スウæォンジ,スウォンジ,斯旺西 51.62079 -3.94323 P PPLA2 GB WLS Z1 170883 18 Europe/London 2010-10-16
-2636433 Swanscombe Swanscombe Swanscombe 51.44713 0.31028 P PPL GB ENG G5 29UD 15732 30 Europe/London 2011-02-12
-2636438 Swanmore Swanmore 50.94404 -1.18021 P PPL GB ENG F2 24UP 2586 60 Europe/London 2011-02-18
-2636439 Swanley Swanley 51.39717 0.17321 P PPL GB ENG G5 20986 81 Europe/London 2012-03-29
-2636445 Swanage Swanage 50.60923 -1.9626 P PPL GB ENG D6 19UG 11344 4 Europe/London 2010-05-24
-2636448 Swallowfield Swallowfield 51.37875 -0.95804 P PPLA3 GB ENG Q2 00MF011 0 44 Europe/London 2011-07-31
-2636464 Swaffham Swaffham 52.64692 0.68871 P PPL GB ENG I9 33UB 6884 77 Europe/London 2010-05-24
-2636465 Swadlincote Swadlincote Swadlincote 52.774 -1.55744 P PPL GB ENG D3 17UK 40960 98 Europe/London 2011-03-03
-2636468 Sutton upon Derwent Sutton upon Derwent Sutton,Sutton upon Derwent 53.91314 -0.92465 P PPLA3 GB ENG E1 00FB141 0 9 Europe/London 2011-07-31
-2636484 Sutton in Ashfield Sutton in Ashfield Sutton in Ashfield 53.12542 -1.26135 P PPL GB ENG J9 37UB 43912 157 Europe/London 2011-03-03
-2636485 Sutton Courtenay Sutton Courtenay Sutton Courtenay 51.6413 -1.27682 P PPL GB ENG K2 38UE 2467 53 Europe/London 2010-08-03
-2636486 Sutton Coldfield Sutton Coldfield Sutton Coldfield 52.56667 -1.81667 P PPL GB ENG 00 107030 119 Europe/London 2010-08-03
-2636487 Sutton Bridge Sutton Bridge Sutton Bridge 52.76995 0.1855 P PPL GB ENG H7 32UF 3119 6 Europe/London 2011-03-03
-2636488 Sutton Bonington Sutton Bonington Sutton Bonington 52.82144 -1.24969 P PPL GB ENG J9 37UJ 1558 48 Europe/London 2010-08-03
-2636499 Sutton Sutton 52.1 -2.68333 P PPLA3 GB ENG F7 00GA199 0 52 Europe/London 2011-07-31
-2636500 Sutton Sutton 52.11078 -0.2138 P PPLA3 GB ENG Z6 00KC069 0 40 Europe/London 2011-07-31
-2636503 Sutton Sutton London Borough of Sutton,Sutton,Sutton keruelet,Sutton kerület 51.35 -0.2 P PPLA3 GB ENG GLA N8 187600 83 Europe/London 2010-10-17
-2636520 Sunningdale Sunningdale 51.39878 -0.62944 P PPLA3 GB ENG P9 00ME011 0 48 Europe/London 2011-07-31
-2636522 Sunk Island Sunk Island 53.65168 -0.08407 P PPLA3 GB ENG E1 00FB140 0 4 Europe/London 2011-07-31
-2636531 Sunderland Sunderland Sanderlend,Sanderlenda,Sunderland,Сандерленд 54.90465 -1.38222 P PPLA2 GB ENG N6 177965 36 Europe/London 2010-10-16
-2636534 Sunbury Sunbury Lower Sunbury,Sunbury,Sunbury-on-Thames 51.40606 -0.4137 P PPL GB ENG N7 43UB 27784 14 Europe/London 2011-02-14
-2636564 Sudbury Sudbury 52.0389 0.73117 P PPL GB ENG N5 42UB 12080 36 Europe/London 2012-03-29
-2636566 Sudbrooke Sudbrooke Sudbrooke 53.26667 -0.45 P PPL GB ENG H7 32UH 1640 19 Europe/London 2012-01-17
-2636582 Sturry Sturry 51.30132 1.12155 P PPL GB ENG G5 4843 13 Europe/London 2009-12-13
-2636583 Sturminster Newton Sturminster Newton 50.92681 -2.30515 P PPL GB ENG D6 19UE 2369 62 Europe/London 2011-03-03
-2636616 Stroud Stroud Straud,Stroud,Страуд 51.75 -2.2 P PPL GB ENG E6 23UF 30600 83 Europe/London 2012-01-17
-2636619 Strood Strood 51.39594 0.49361 P PPL GB ENG G5 33381 8 Europe/London 2008-04-19
-2636638 Stromness Stromness Hamnavoe,Straumnes,Stromnes,Strømnes 58.96498 -3.29601 P PPL GB SCT V9 1564 7 Europe/London 2008-12-08
-2636658 Stretton Stretton 53.33333 -2.56667 P PPLA3 GB ENG P2 00EU015 0 80 Europe/London 2011-07-31
-2636661 Stretham Stretham Stretham 52.34709 0.21852 P PPL GB ENG C3 1723 8 Europe/London 2010-08-03
-2636663 Stretford Stretford Stretford,Стретфорд 53.45 -2.31667 P PPLA2 GB ENG O6 41953 27 Europe/London 2010-10-16
-2636667 Strensall Strensall 54.03999 -1.03512 P PPL GB ENG J7 5601 18 Europe/London 2009-09-07
-2636671 Street Street Street 51.12472 -2.74 P PPL GB ENG M3 40UB 11929 22 Europe/London 2012-01-17
-2636672 Streatley Streatley 51.94628 -0.44374 P PPLA3 GB ENG Z6 00KC066 0 151 Europe/London 2011-07-31
-2636697 Strathkinness Strathkinness Strathkinness 56.33333 -2.86667 P PPL GB SCT V1 1018 58 Europe/London 2012-01-17
-2636707 Strathblane Strathblane 55.98596 -4.30658 P PPL GB SCT W6 1803 78 Europe/London 2011-03-03
-2636710 Strathaven Strathaven Strathaven 55.6771 -4.0668 P PPL GB SCT W5 8190 182 Europe/London 2011-03-03
-2636713 Stratford-upon-Avon Stratford-upon-Avon Stratford,Stratford na Ejv"n,Stratford on Avon,Stratford-na-Ehjvone,Stratford-upon-Avon,Stratfordia super Avonam,seuteulaespeodeu eopeon eibeon,Стратфорд на Ейвън,Стратфорд-на-Эйвоне,ストラットフォード・アポン・エイヴォン,스트랫퍼드 어펀 에이번 52.19166 -1.70734 P PPL GB ENG P3 44UE 22576 44 Europe/London 2011-03-03
-2636716 Stratfield Mortimer Stratfield Mortimer Mortimer,Stratfield Mortimer 51.37339 -1.03495 P PPLA3 GB ENG P4 00MB045 3168 51 Europe/London 2011-07-31
-2636719 Stranraer Stranraer Stanraer,Stranraer 54.90234 -5.02731 P PPL GB SCT U2 10581 12 Europe/London 2011-03-03
-2636744 Strabane Strabane 54.82373 -7.46916 P PPLA2 GB NIR T4 14198 7 Europe/London 2010-10-16
-2636748 Stow on the Wold Stow on the Wold Stow on the Wold 51.93008 -1.72382 P PPL GB ENG E6 23UC 2120 235 Europe/London 2010-08-03
-2636749 Stowmarket Stowmarket 52.18893 0.99774 P PPL GB ENG N5 42UE 15394 32 Europe/London 2010-05-24
-2636767 Stourport-on-Severn Stourport-on-Severn Stourport,Stourport On Severn 52.35 -2.26667 P PPLA4 GB ENG Q4 47UG 19713 25 Europe/London 2012-03-29
-2636769 Stourbridge Stourbridge Stourbridge,Stourbridzh,Стоурбридж 52.45608 -2.14317 P PPL GB ENG D7 47UB 56284 86 Europe/London 2011-03-03
-2636782 Stotfold Stotfold 52.01632 -0.23209 P PPLA3 GB ENG Z6 00KC065 6245 48 Europe/London 2011-07-31
-2636786 Storrington Storrington Storrington 50.91765 -0.45473 P PPL GB ENG P6 45UF 7899 42 Europe/London 2011-02-14
-2636790 Stornoway Stornoway Steornabhagh,Steòrnabhagh,Stornovejus,Stornovėjus,Stornoway 58.20925 -6.38649 P PPLA2 GB SCT W8 5423 12 Europe/London 2011-08-21
-2636795 Stony Stratford Stony Stratford Stony Stratford 52.05682 -0.85281 P PPLA3 GB ENG I6 00MG045 0 71 Europe/London 2011-07-31
-2636802 Stoney Stanton Stoney Stanton Stoney Stanton 52.54839 -1.2793 P PPL GB ENG H5 31UB 3531 96 Europe/London 2011-03-03
-2636804 Stone Stone 51.45032 0.2647 P PPL GB ENG G5 29UD 6100 28 Europe/London 2011-02-12
-2636805 Stonesfield Stonesfield Stonesfield 51.85142 -1.4296 P PPL GB ENG K2 38UF 1572 122 Europe/London 2011-02-23
-2636810 Stonehouse Stonehouse 55.66667 -3.98333 P PPL GB SCT 00 4950 223 Europe/London 2006-01-17
-2636811 Stonehouse Stonehouse Stonehouse 51.75 -2.28333 P PPL GB ENG E6 23UF 7481 42 Europe/London 2012-01-17
-2636814 Stonehaven Stonehaven 56.96365 -2.21177 P PPL GB SCT T6 9592 11 Europe/London 2007-10-09
-2636822 Stone Stone 52.9059 -2.15409 P PPL GB ENG M9 41UG 14258 94 Europe/London 2010-09-22
-2636824 Stone Stone 51.80246 -0.87032 P PPL GB ENG B9 11UB 2473 111 Europe/London 2010-09-22
-2636826 Stone Stone 51 0.76667 P PPL GB ENG G5 29UB 6100 2 Europe/London 2010-09-22
-2636827 Stondon Stondon 52.0015 -0.31933 P PPLA3 GB ENG Z6 00KC064 0 61 Europe/London 2011-07-31
-2636829 Stoke upon Tern Stoke upon Tern Stoke,Stoke upon Tern 52.85 -2.53333 P PPLA3 GB GB ENG L6 00GG172 0 64 Europe/London 2011-07-31
-2636830 Stokesley Stokesley 54.46998 -1.1933 P PPL GB ENG J7 36UC 4830 69 Europe/London 2011-03-03
-2636840 Stoke Poges Stoke Poges Stoke Poges 51.54441 -0.5888 P PPL GB ENG B9 11UE 4204 54 Europe/London 2010-08-03
-2636841 Stoke-on-Trent Stoke-on-Trent Stok-on-Trent,Stoke,Stoke-on-Trent,Stoke-upon-Trent,The Potteries,Сток-он-Трент 53.00415 -2.18538 P PPLA2 GB ENG N4 260419 114 Europe/London 2012-01-08
-2636844 Stokenchurch Stokenchurch 51.65831 -0.8974 P PPL GB ENG B9 11UF 4037 223 Europe/London 2010-10-07
-2636852 Stoke Goldington Stoke Goldington Stoke Goldington 52.13133 -0.77814 P PPLA3 GB ENG I6 00MG031 0 68 Europe/London 2011-07-31
-2636853 Stoke Golding Stoke Golding Stoke Golding 52.5706 -1.41124 P PPL GB ENG H5 31UE 1742 113 Europe/London 2011-03-03
-2636854 Stoke Gifford Stoke Gifford Stoke Gifford 51.51686 -2.54053 P PPL GB ENG M6 00HD035 13560 65 Europe/London 2011-03-03
-2636868 Stoke Stoke 53.25 -2.86667 P PPLA3 GB ENG Z8 00EW139 0 13 Europe/London 2011-07-31
-2636869 Stoke Stoke 51.44815 0.62141 P PPLA3 GB ENG I3 00LC011 0 16 Europe/London 2011-07-31
-2636876 Stockton-on-Tees Stockton-on-Tees Stockton,Stockton on Tees,Stockton-on-Tees,Stokton-on-Tis,Стоктон-он-Тис 54.56848 -1.3187 P PPLA2 GB ENG N3 79957 15 Europe/London 2010-10-16
-2636881 Stocksbridge Stocksbridge 53.48249 -1.59373 P PPL GB ENG L9 00CG003 13613 164 Europe/London 2011-03-03
-2636882 Stockport Stockport Stockport,Stokport,Стокпорт 53.40979 -2.15761 P PPLA2 GB ENG N2 139052 59 Europe/London 2010-10-16
-2636896 Stock Stock 51.66351 0.44263 P PPL GB ENG E4 22UF 1579 97 Europe/London 2010-05-24
-2636910 Stirling Stirling Srivling,Sruighle,Sruighlea,Sterling,Stirling,Stirlingum,astyrlyng,shi te ling,Стерлинг,استیرلینگ,史特靈 56.11903 -3.93682 P PPLA2 GB SCT W6 33012 24 Europe/London 2011-03-03
-2636914 Stilton Stilton Stilton 52.48788 -0.28894 P PPL GB ENG C3 12UE 2556 19 Europe/London 2011-03-03
-2636928 Steyning Steyning 50.88744 -0.32787 P PPL GB ENG P6 45UF 9713 17 Europe/London 2010-05-24
-2636930 Stewkley Stewkley Stewkley 51.92585 -0.76132 P PPL GB ENG B9 11UB 1770 151 Europe/London 2011-02-16
-2636932 Stewarton Stewarton Stewarton 55.66667 -4.5 P PPL GB SCT 00 6615 129 Europe/London 2010-08-03
-2636935 Stevington Stevington 52.16848 -0.55515 P PPLA3 GB ENG Z5 00KB037 0 49 Europe/London 2011-07-31
-2636938 Stevenston Stevenston 55.6397 -4.75339 P PPL GB SCT V7 8749 9 Europe/London 2011-03-03
-2636940 Stevenage Stevenage Stevenage,Stivenedzh,Стивенедж 51.90224 -0.20256 P PPL GB ENG F8 26UH 84651 95 Europe/London 2010-08-03
-2636945 Stepps Stepps Stepps,Steps 55.88899 -4.1521 P PPL GB SCT V8 4711 85 Europe/London 2011-03-03
-2636947 Steppingley Steppingley 52.00758 -0.52855 P PPLA3 GB ENG Z6 00KC063 0 105 Europe/London 2011-07-31
-2636963 Steeton Steeton Steeton 53.88333 -1.95 P PPL GB ENG B4 4196 244 Europe/London 2012-02-01
-2636967 Steeple Claydon Steeple Claydon Claydon,Steeple Claydon 51.93643 -0.98328 P PPL GB ENG B9 11UB 2312 101 Europe/London 2011-02-16
-2636995 Staveley Staveley 53.26667 -1.35 P PPL GB ENG D3 17UD 25719 67 Europe/London 2010-05-24
-2637005 Startforth Startforth Startforth 54.53851 -1.93016 P PPLA3 GB ENG D8 00EJ111 0 163 Europe/London 2011-07-31
-2637008 Starcross Starcross Starcross 50.62734 -3.44797 P PPL GB ENG D4 18UH 1820 3 Europe/London 2011-03-03
-2637016 Staplehurst Staplehurst 51.1611 0.55249 P PPL GB ENG G5 29UH 5217 33 Europe/London 2011-02-03
-2637025 Stapleford Stapleford 51.11667 -1.9 P PPLA3 GB ENG P8 00HY207 0 116 Europe/London 2011-07-31
-2637034 Stanwick Stanwick Stanwick 52.33198 -0.56348 P PPL GB ENG J1 34UD 1967 53 Europe/London 2010-08-03
-2637052 Stansted Stansted Stansted 51.9 0.2 P PPL GB ENG E4 22UQ 5429 83 Europe/London 2010-05-24
-2637057 Stannington Stannington 55.10862 -1.66855 P PPLA3 GB ENG J6 00EM142 0 63 Europe/London 2011-07-31
-2637071 Stanley Stanley 56.46667 -3.45 P PPL GB SCT W1 1491 17 Europe/London 2006-01-17
-2637078 Stanhope Stanhope Stanhope 54.75 -2.01667 P PPL GB ENG D8 1681 208 Europe/London 2012-01-17
-2637088 Stanford in the Vale Stanford in the Vale Stanford in the Vale 51.63969 -1.50652 P PPL GB ENG K2 38UE 1865 77 Europe/London 2011-02-24
-2637093 Standon Standon 52.91667 -2.28333 P PPL GB ENG M9 41UG 3429 129 Europe/London 2010-05-24
-2637100 Stanbridge Stanbridge 51.90864 -0.59815 P PPLA3 GB ENG Z6 00KC062 0 111 Europe/London 2011-07-31
-2637102 Stamford Bridge Stamford Bridge 53.9885 -0.91547 P PPLA3 GB ENG E1 00FB139 0 21 Europe/London 2011-07-31
-2637104 Stamford Stamford Stamford 52.65 -0.48333 P PPL GB ENG H7 32UG 20526 28 Europe/London 2012-02-01
-2637106 Stalybridge Stalybridge Stalibridzh,Stalybridge,Сталибридж 53.48414 -2.05908 P PPL GB ENG O1 00BT001 22748 114 Europe/London 2011-03-03
-2637110 Stalham Stalham 52.77079 1.51783 P PPL GB ENG I9 33UF 3956 4 Europe/London 2010-05-24
-2637111 Stalbridge Stalbridge 50.95807 -2.37548 P PPL GB ENG D6 19UE 2311 76 Europe/London 2011-03-03
-2637120 Stainton Stainton 53.43333 -1.16667 P PPLA3 GB ENG D5 00CE037 0 63 Europe/London 2011-07-31
-2637124 Stainforth Stainforth 53.6 -1.03333 P PPLA3 GB ENG D5 00CE036 6483 10 Europe/London 2011-07-31
-2637126 Staines Staines Staines 51.43092 -0.50606 P PPL GB ENG N7 43UH 51040 16 Europe/London 2011-03-03
-2637127 Staindrop Staindrop Staindrop 54.58102 -1.80708 P PPLA3 GB ENG D8 00EJ108 0 114 Europe/London 2011-07-31
-2637131 Stainburn Stainburn Stainburn 53.93333 -1.61667 P PPL GB ENG J7 36UD 1666 148 Europe/London 2012-01-17
-2637132 Stainborough Stainborough 53.52623 -1.518 P PPLA3 GB ENG A3 00CC015 0 157 Europe/London 2011-07-31
-2637136 Stagsden Stagsden 52.13046 -0.56678 P PPLA3 GB ENG Z5 00KB035 0 62 Europe/London 2011-07-31
-2637142 Stafford Stafford Staefford,Stafford,Stæfford,Стаффорд 52.80521 -2.11636 P PPLA2 GB ENG M9 41UG 65290 77 Europe/London 2011-03-03
-2637189 Springside Springside 55.61667 -4.6 P PPL GB SCT 00 1114 17 Europe/London 2006-01-17
-2637214 Spixworth Spixworth 52.68529 1.32027 P PPL GB ENG I9 33UC 3766 20 Europe/London 2011-03-03
-2637218 Spittal Spittal Spittal 51.86889 -4.9425 P PPLA3 GB WLS Y7 00NS069 0 97 Europe/London 2011-07-31
-2637224 Spilsby Spilsby 53.17363 0.09373 P PPL GB ENG H7 32UC 2807 50 Europe/London 2010-05-24
-2637235 Spennymoor Spennymoor Spennymoor 54.6988 -1.60229 P PPL GB ENG D8 00EJ107 17655 111 Europe/London 2011-03-03
-2637265 Spalding Spalding 52.78709 -0.15141 P PPL GB ENG H7 32UF 22357 11 Europe/London 2010-05-24
-2637277 Southwold Southwold Southwold 52.32752 1.67979 P PPL GB ENG N5 42UH 3944 12 Europe/London 2010-08-03
-2637287 Southwick Southwick Southwick 51.29694 -2.2325 P PPLA3 GB ENG P8 00HY203 1739 46 Europe/London 2011-07-31
-2637296 Southwell Southwell Southwell 53.07804 -0.95538 P PPL GB ENG J9 37UG 6425 42 Europe/London 2011-03-09
-2637298 Southwater Southwater Southwater 51.02369 -0.35173 P PPL GB ENG P6 45UF 8483 44 Europe/London 2011-02-08
-2637310 South Tidworth South Tidworth 51.23142 -1.66324 P PPL GB ENG P8 00HY221 6690 110 Europe/London 2011-03-03
-2637329 South Shields South Shields Shields,South Shields 54.99859 -1.4323 P PPLA2 GB ENG M7 00EM167 83655 12 Europe/London 2011-03-03
-2637330 Southsea Southsea 50.79205 -1.08593 P PPLX GB ENG K6 18514 6 Europe/London 2012-03-29
-2637343 Southport Southport Southport 53.64779 -3.00648 P PPLA2 GB ENG L8 93044 12 Europe/London 2010-10-16
-2637347 South Petherton South Petherton 50.94829 -2.80708 P PPL GB ENG M3 40UD 2571 41 Europe/London 2011-03-03
-2637350 Southowram Southowram 53.70988 -1.83181 P PPL GB ENG C2 00CY005 2003 227 Europe/London 2011-03-03
-2637353 Southorpe Southorpe 52.61055 -0.40512 P PPLA3 GB ENG K3 00JA020 0 34 Europe/London 2011-07-31
-2637355 South Ockendon South Ockendon South Ockedon,South Ockendon 51.50799 0.28333 P PPL GB ENG E4 18069 18 Europe/London 2010-08-03
-2637356 South Nutfield South Nutfield 51.01667 -0.13333 P PPL GB ENG P6 45UG 1920 130 Europe/London 2010-05-24
-2637373 South Molton South Molton South Molton 51.01667 -3.83333 P PPL GB ENG D4 18UE 4184 131 Europe/London 2012-01-17
-2637374 Southminster Southminster 51.66228 0.82968 P PPL GB ENG E4 22UK 3860 27 Europe/London 2010-05-24
-2637380 South Luffenham South Luffenham South Luffenham 52.60857 -0.61232 P PPLA3 GB ENG L4 00FP045 0 56 Europe/London 2011-07-31
-2637382 South Littleton South Littleton Littleton,South Littleton 52.11416 -1.89014 P PPL GB ENG Q4 47UF 1564 43 Europe/London 2011-03-03
-2637398 Southill Southill 52.06431 -0.32358 P PPLA3 GB ENG Z6 00KC061 0 45 Europe/London 2011-07-31
-2637404 South Hill South Hill 50.53333 -4.35 P PPLA3 GB ENG C6 00HE126 0 137 Europe/London 2011-07-31
-2637405 South Hetton South Hetton South Hetton 54.79906 -1.40671 P PPL GB ENG D8 00EJ106 2561 119 Europe/London 2011-03-03
-2637433 Southend-on-Sea Southend-on-Sea Sautend-on-Si,Southend,Southend-on-Sea,Саутенд-он-Си 51.53782 0.71433 P PPLA2 GB ENG M5 163377 31 Europe/London 2010-10-16
-2637435 South Elmsall South Elmsall 53.59709 -1.28034 P PPLA3 GB ENG 45 00DB020 18835 67 Europe/London 2011-07-31
-2637450 South Collingham South Collingham 53.13333 -0.76667 P PPL GB ENG J9 37UG 2637 13 Europe/London 2010-05-24
-2637461 South Cave South Cave 53.76987 -0.60107 P PPLA3 GB ENG E1 00FB135 3178 32 Europe/London 2011-07-31
-2637471 South Brent South Brent Brent,South Brent 50.42654 -3.83426 P PPL GB ENG D4 18UG 2184 124 Europe/London 2011-03-03
-2637476 South Benfleet South Benfleet Benfleet,South Benfleet 51.55295 0.55962 P PPL GB ENG E4 22UE 48824 10 Europe/London 2010-08-03
-2637483 South Bank South Bank South Bank in Normanby,South Bank-on-Tees 54.56667 -1.15 P PPLA2 GB GB ENG K9 0 22 Europe/London 2010-10-16
-2637487 Southampton Southampton Hantonne,Sautgempton,Sautkhempt"n,Southampton,sausuhanputon,Саутгемптон,Саутхемптън,サウスハンプトン 50.90395 -1.40428 P PPLA2 GB ENG M4 24UJ 246201 19 Europe/London 2011-03-03
-2637488 Southam Southam Southam 52.25266 -1.3884 P PPL GB ENG P3 44UE 6509 87 Europe/London 2011-02-23
-2637522 Sonning Sonning Sonning 51.47411 -0.91212 P PPLA3 GB ENG Q2 00MF010 0 43 Europe/London 2011-07-31
-2637526 Somerton Somerton 51.95421 -1.27613 P PPL GB ENG K2 38UB 4225 112 Europe/London 2011-02-21
-2637528 Somersham Somersham Somersham 52.38333 0 P PPL GB ENG C3 12UE 3575 12 Europe/London 2012-01-17
-2637546 Solihull Solihull Solihull 52.41426 -1.78094 P PPLA2 GB ENG M2 00CT008 96267 132 Europe/London 2011-03-03
-2637554 Soham Soham 52.33177 0.33869 P PPL GB ENG C3 8635 8 Europe/London 2009-12-28
-2637571 Snodland Snodland Snodland 51.32971 0.44305 P PPL GB ENG G5 29UP 9537 11 Europe/London 2011-03-03
-2637580 Snettisham Snettisham 52.87781 0.50292 P PPL GB ENG I9 33UE 2193 17 Europe/London 2010-05-24
-2637599 Snaith Snaith 53.69112 -1.02859 P PPL GB ENG 00 2806 11 Europe/London 2007-02-07
-2637607 Smethwick Smethwick Smethwick 52.49699 -1.97305 P PPL GB ENG L7 47UB 12842 154 Europe/London 2012-03-29
-2637627 Slough Slough Slau,Slough,Слау 51.50949 -0.59541 P PPLA2 GB ENG M1 134072 33 Europe/London 2011-05-28
-2637652 Sleights Sleights 54.45506 -0.66484 P PPL GB ENG J7 36UG 2039 60 Europe/London 2011-03-03
-2637659 Sleaford Sleaford Sleaford 52.99826 -0.40941 P PPL GB ENG H7 32UE 15558 17 Europe/London 2010-08-03
-2637670 Slamannan Slamannan 55.93729 -3.83311 P PPL GB SCT U9 1195 156 Europe/London 2011-03-03
-2637671 Slaley Slaley 54.91368 -2.03711 P PPLA3 GB ENG J6 00EM139 0 209 Europe/London 2011-07-31
-2637702 Skipton Skipton Skipton 53.96144 -2.01676 P PPL GB ENG J7 36UB 14632 113 Europe/London 2010-08-03
-2637703 Skipsea Skipsea 53.97674 -0.22084 P PPLA3 GB ENG E1 00FB130 0 5 Europe/London 2011-07-31
-2637747 Skelton Skelton 54 -1.13333 P PPLA3 GB ENG Q5 00FF026 0 19 Europe/London 2011-07-31
-2637748 Skelton Skelton 53.71667 -0.83333 P PPL GB ENG 00 6538 3 Europe/London 2006-01-17
-2637751 Skelmorlie Skelmorlie Skelmorlie 55.8695 -4.88475 P PPL GB SCT V7 1859 63 Europe/London 2011-03-03
-2637752 Skelmersdale Skelmersdale Skelmersdale 53.55024 -2.77348 P PPL GB ENG H2 30UP 38944 71 Europe/London 2011-03-03
-2637756 Skellingthorpe Skellingthorpe Skellingthorpe 53.23531 -0.61905 P PPL GB ENG H7 32UE 3414 15 Europe/London 2011-03-03
-2637762 Skegness Skegness 53.14362 0.3363 P PPL GB ENG H7 32UC 17072 6 Europe/London 2011-03-03
-2637802 Sittingbourne Sittingbourne 51.34128 0.73282 P PPL GB ENG G5 29UM 41148 16 Europe/London 2010-05-24
-2637805 Siston Siston Siston 51.47444 -2.45 P PPLA3 GB ENG M6 00HD033 0 79 Europe/London 2011-07-31
-2637809 Sion Mills Sion Mills Sion Mill 54.78752 -7.47276 P PPL GB NIR 00 2212 30 Europe/London 2007-04-13
-2637819 Simpson Simpson 52.01667 -0.7 P PPLA3 GB ENG I6 00MG044 0 77 Europe/London 2011-07-31
-2637827 Silverstone Silverstone Silverstone 52.09216 -1.02602 P PPL GB ENG J1 34UG 1742 119 Europe/London 2011-02-16
-2637832 Silsoe Silsoe 52.00854 -0.42484 P PPLA3 GB ENG Z6 00KC059 1768 68 Europe/London 2011-07-31
-2637833 Silsden Silsden Silsden 53.91443 -1.93802 P PPL GB ENG B4 00CX006 7616 115 Europe/London 2011-03-03
-2637836 Silloth Silloth 54.8687 -3.38448 P PPL GB ENG C9 16UB 2997 11 Europe/London 2010-07-18
-2637841 Silkstone Silkstone 53.54808 -1.56381 P PPL GB ENG A3 00CC014 1823 114 Europe/London 2011-03-03
-2637845 Sileby Sileby 52.73286 -1.10773 P PPL GB ENG H5 31UC 7261 52 Europe/London 2010-05-24
-2637853 Sidmouth Sidmouth Sidmouth 50.69094 -3.2397 P PPL GB ENG D4 18UB 11853 40 Europe/London 2011-03-03
-2637858 Siddington Siddington 53.23333 -2.23333 P PPLA3 GB ENG Z7 00EQ115 0 99 Europe/London 2011-07-31
-2637871 Sible Hedingham Sible Hedingham Sible Hedingham 51.97772 0.59262 P PPL GB ENG E4 22UC 3263 53 Europe/London 2010-08-03
-2637878 Shurdington Shurdington Shurdington 51.86264 -2.1206 P PPL GB ENG E6 23UG 1829 70 Europe/London 2011-03-03
-2637889 Shrivenham Shrivenham Shrivenham 51.59853 -1.65461 P PPL GB ENG K2 38UE 4676 101 Europe/London 2011-03-03
-2637890 Shrewton Shrewton 51.19194 -1.90264 P PPL GB ENG P8 00HY199 1685 85 Europe/London 2011-03-03
-2637891 Shrewsbury Shrewsbury Amwythig,Shrewsbury,Shrjusburi,Shrusberi,Шрусбери,Шрюсбъри 52.71009 -2.75208 P PPLA2 GB ENG L6 69519 75 Europe/London 2010-10-16
-2637898 Shotwick Shotwick 53.23938 -2.99056 P PPLA3 GB ENG Z8 00EW134 0 15 Europe/London 2011-07-31
-2637901 Shotton Shotton 54.78333 -1.36667 P PPLA3 GB ENG D8 00EJ104 0 127 Europe/London 2011-07-31
-2637906 Shotley Gate Shotley Gate 51.95791 1.26871 P PPL GB ENG N5 42UB 1566 19 Europe/London 2010-05-24
-2637916 Shoreham-by-Sea Shoreham-by-Sea New Shoreham,Shoreham,Shoreham-by-Sea 50.83413 -0.27431 P PPL GB ENG P6 45UB 45UB002 19175 7 Europe/London 2012-03-29
-2637917 Shoreham Shoreham 51.3334 0.17801 P PPL GB ENG G5 B8 17928 57 Europe/London 2011-02-05
-2637936 Shirland Shirland Shirland 53.12155 -1.40464 P PPL GB ENG D3 17UJ 3447 136 Europe/London 2011-03-03
-2637941 Shirebrook Shirebrook 53.20333 -1.21336 P PPL GB ENG D3 17UC 10644 87 Europe/London 2011-03-03
-2637948 Shipton under Wychwood Shipton under Wychwood Shipton,Shipton under Wychwood 51.86035 -1.59847 P PPL GB ENG K2 38UF 2535 104 Europe/London 2011-03-05
-2637954 Shipston on Stour Shipston on Stour 52.06057 -1.62778 P PPL GB ENG P3 44UE 4555 72 Europe/London 2010-05-24
-2637958 Shipley Shipley 53.83333 -1.76667 P PPL GB ENG 00 28544 93 Europe/London 2006-01-17
-2637962 Shipdham Shipdham 52.62771 0.89294 P PPL GB ENG I9 33UB 1984 67 Europe/London 2011-03-03
-2637968 Shinfield Shinfield Shinfield 51.40542 -0.94534 P PPLA3 GB ENG Q2 00MF009 0 46 Europe/London 2011-07-31
-2637977 Shillington Shillington 51.99344 -0.36006 P PPLA3 GB ENG Z6 00KC058 0 54 Europe/London 2011-07-31
-2637983 Shildon Shildon 54.62997 -1.64295 P PPL GB ENG D8 00EJ102 10299 132 Europe/London 2011-03-03
-2637985 Shifnal Shifnal Shifnal 52.67043 -2.37248 P PPL GB ENG L6 00GG160 6057 91 Europe/London 2011-03-03
-2638009 Shevington Shevington 53.57236 -2.69316 P PPL GB ENG P7 00BW002 5195 61 Europe/London 2011-03-03
-2638017 Sherington Sherington Sherington 52.11172 -0.69973 P PPLA3 GB ENG I6 00MG029 0 76 Europe/London 2011-07-31
-2638019 Sheringham Sheringham 52.94078 1.20931 P PPL GB ENG I9 33UF 7302 26 Europe/London 2010-05-24
-2638027 Sherburn in Elmet Sherburn in Elmet Sherburn,Sherburn in Elmet 53.79519 -1.2466 P PPL GB ENG J7 36UH 6360 12 Europe/London 2011-03-03
-2638033 Sherborne Sherborne Sherborne,Sherbourne 50.95 -2.5 P PPL GB ENG D6 19UH 9558 70 Europe/London 2012-01-17
-2638035 Shepton Mallet Shepton Mallet Shepton Mallet,Shepun 51.18972 -2.54722 P PPL GB ENG M3 40UB 9027 144 Europe/London 2012-01-17
-2638036 Shepshed Shepshed Sheepshed,Shepshed 52.7657 -1.29021 P PPL GB ENG H5 31UC 13169 81 Europe/London 2010-08-03
-2638039 Shepperton Shepperton Shepperton 51.39546 -0.44889 P PPL GB ENG N7 43UH 10106 14 Europe/London 2011-02-14
-2638041 Shepherdswell Shepherdswell Shepherdswell,Sibertswold 51.18713 1.23049 P PPL GB ENG G5 29UE 1576 93 Europe/London 2010-08-03
-2638047 Shenstone Shenstone Shenstone 52.63333 -1.83333 P PPL GB ENG M9 41UD 2179 99 Europe/London 2012-01-17
-2638049 Shenley Church End Shenley Church End Shenley,Shenley Church End 52.02522 -0.78994 P PPLA3 GB GB ENG I6 00MG028 0 92 Europe/London 2011-07-31
-2638051 Shenley AV Shenley AV 51.69054 -0.28067 P PPL GB ENG F8 26UE 4143 134 Europe/London 2010-06-25
-2638065 Shelley Shelley 53.6 -1.68333 P PPL GB ENG 00 5359 217 Europe/London 2006-01-27
-2638077 Sheffield Sheffield Sefilda,Sefildas,Sheffield,Sheffild,Shefild,she fei er de,shefirudo,Šefildas,Šefīlda,Шефилд,Шеффилд,シェフィールド,设菲尔德 53.38297 -1.4659 P PPLA2 GB ENG L9 447047 75 Europe/London 2010-10-16
-2638081 Sheerness Sheerness Sheerness 51.43946 0.76029 P PPL GB ENG G5 29UM 11914 1 Europe/London 2010-08-03
-2638111 Shawbury Shawbury Shawbury 52.78333 -2.65 P PPLA3 GB ENG L6 00GG157 2412 59 Europe/London 2011-07-31
-2638113 Shaw Shaw 53.56667 -2.08333 P PPL GB ENG 1001 245 Europe/London 2012-03-29
-2638122 Sharnbrook Sharnbrook 52.22606 -0.54425 P PPLA3 GB ENG Z5 00KB034 0 56 Europe/London 2011-07-31
-2638138 Shanklin Shanklin 50.62613 -1.1785 P PPL GB ENG G2 00MW020 8055 47 Europe/London 2012-03-29
-2638151 Shalfleet Shalfleet Shalfleet 50.7014 -1.415 P PPLA3 GB ENG G2 00MW019 0 12 Europe/London 2011-07-31
-2638153 Shalbourne Shalbourne Shalbourn,Shalbourne 51.36358 -1.55053 P PPLA3 GB ENG P8 00HY196 0 136 Europe/London 2011-07-31
-2638156 Shafton Shafton Shafton 53.59286 -1.40925 P PPLA3 GB ENG A3 00CC013 0 82 Europe/London 2011-07-31
-2638157 Shaftesbury Shaftesbury Shaftesbury 51.00528 -2.19333 P PPL GB ENG D6 19UE 6813 207 Europe/London 2012-01-17
-2638185 Seven Sisters Seven Sisters 51.76667 -3.71667 P PPLA3 GB WLS Y5 00NZ028 1744 166 Europe/London 2011-07-31
-2638187 Sevenoaks Sevenoaks 51.26997 0.19278 P PPL GB ENG G5 27871 154 Europe/London 2010-05-09
-2638192 Settle Settle Settle 54.06865 -2.2772 P PPL GB ENG J7 36UB 3702 158 Europe/London 2011-03-03
-2638204 Sennen Sennen Sennan,Sennen 50.07777 -5.70117 P PPLA3 GB ENG C6 00HE123 0 23 Europe/London 2011-07-31
-2638207 Send Send 51.28875 -0.52666 P PPL GB ENG N7 43UD 6597 32 Europe/London 2011-02-14
-2638219 Selsey Selsey Selsey 50.73501 -0.78979 P PPL GB ENG P6 45UD 9942 7 Europe/London 2011-03-03
-2638226 Sellack Sellack 51.95 -2.63333 P PPLA3 GB ENG F7 00GA188 0 38 Europe/London 2011-07-31
-2638229 Selkirk Selkirk 55.54738 -2.83911 P PPL GB SCT T9 5629 178 Europe/London 2010-06-29
-2638235 Selby Selby Selby 53.78333 -1.06667 P PPL GB ENG J7 36UH 16159 9 Europe/London 2012-01-17
-2638248 Seghill Seghill 55.06225 -1.55027 P PPL GB ENG J6 2992 41 Europe/London 2010-04-24
-2638252 Seend Seend 51.34806 -2.08472 P PPLA3 GB ENG P8 00HY194 0 95 Europe/London 2011-07-31
-2638259 Sedgefield Sedgefield 54.65329 -1.44952 P PPL GB ENG D8 00EJ098 4263 112 Europe/London 2011-03-03
-2638264 Seaview Seaview 50.71956 -1.11164 P PPL GB ENG G2 00MW013 2337 22 Europe/London 2012-01-31
-2638273 Seaton Delaval Seaton Delaval 55.07196 -1.52609 P PPL GB ENG J6 00EM167 7219 38 Europe/London 2011-03-03
-2638277 Seaton Seaton 52.57489 -0.66759 P PPLA3 GB ENG L4 00FP044 5240 93 Europe/London 2011-07-31
-2638282 Seascale Seascale Seascale 54.39831 -3.47961 P PPL GB ENG C9 16UE 1786 20 Europe/London 2011-03-03
-2638302 Seaham Seaham Seaham,Seaham Harbour,Sikhem,Сихем 54.83903 -1.34575 P PPL GB ENG D8 00EJ096 21170 43 Europe/London 2011-03-03
-2638311 Seaford Seaford 50.77141 0.10268 P PPL GB ENG E2 21UF 22338 10 Europe/London 2011-03-03
-2638312 Seafield Seafield 55.96667 -3.15 P PPL GB SCT 00 1386 23 Europe/London 2006-01-17
-2638324 Scunthorpe Scunthorpe Scunthorpe,Skantorpe,si ken suo pu,Сканторпе,斯肯索普 53.57905 -0.65437 P PPLA2 GB ENG J3 72514 46 Europe/London 2012-01-08
-2638348 Scotter Scotter 53.49652 -0.67429 P PPL GB ENG H7 32UH 2424 15 Europe/London 2010-05-24
-2638365 Scotby Scotby 54.89004 -2.87464 P PPL GB ENG C9 16UD 1575 30 Europe/London 2010-05-24
-2638386 Scholes Scholes 53.82346 -1.42805 P PPL GB ENG 00 2457 101 Europe/London 2007-02-07
-2638391 Scawby Scawby Scawby 53.53787 -0.54085 P PPL GB ENG J3 00FD044 1699 26 Europe/London 2011-03-03
-2638417 Scarcroft Scarcroft Scarcroft 53.86667 -1.45 P PPLA3 GB ENG H3 00DA022 0 123 Europe/London 2011-07-31
-2638419 Scarborough Scarborough Scarborough,Skarb"ro,Скарбъро 54.27966 -0.40443 P PPL GB ENG J7 36UG 38909 48 Europe/London 2010-08-03
-2638448 Scalby Scalby 53.76667 -0.71667 P PPL GB ENG 00 9462 6 Europe/London 2006-01-17
-2638464 Saxmundham Saxmundham 52.21497 1.48805 P PPL GB ENG N5 42UG 2772 23 Europe/London 2010-05-24
-2638467 Saxilby Saxilby Saxilby 53.26746 -0.66253 P PPL GB ENG H7 32UH 3742 10 Europe/London 2011-03-03
-2638473 Sawtry Sawtry Sawtry 52.43984 -0.28422 P PPL GB ENG C3 12UE 5692 15 Europe/London 2010-08-03
-2638474 Sawston Sawston 52.12089 0.16943 P PPL GB ENG C3 12UG 7309 27 Europe/London 2010-05-24
-2638490 Saundersfoot Saundersfoot Saundersfoot 51.71184 -4.70069 P PPL GB WLS Y7 00NS065 2979 19 Europe/London 2011-03-03
-2638495 Saughall Saughall Great Saughall 53.22618 -2.95649 P PPL GB ENG Z8 00EW132 2726 27 Europe/London 2011-03-03
-2638515 Sapcote Sapcote Sapcote 52.53707 -1.279 P PPL GB ENG H5 31UB 2458 96 Europe/London 2011-03-03
-2638520 Sanquhar Sanquhar Sanquhar 55.36527 -3.9216 P PPL GB SCT U2 1987 141 Europe/London 2011-03-03
-2638530 Sandy Sandy 52.12927 -0.28925 P PPLA3 GB ENG Z6 00KC056 11129 30 Europe/London 2011-07-31
-2638534 Sandwick Sandwick 60 -1.25 P PPL GB SCT W3 1217 14 Europe/London 2006-01-17
-2638542 Sandwich Sandwich Sandwich 51.27223 1.33776 P PPL GB ENG G5 29UE 4496 3 Europe/London 2010-08-03
-2638568 Sandown Sandown Sandown 50.65158 -1.16103 P PPL GB ENG G2 00MW018 20155 37 Europe/London 2011-02-17
-2638580 Sandhurst Sandhurst Sandhurst 51.34675 -0.78655 P PPLA3 GB ENG B3 00MA004 0 66 Europe/London 2011-07-31
-2638593 Sandford Sandford 51.33228 -2.83122 P PPL GB ENG J4 2135 23 Europe/London 2007-11-23
-2638600 Sandbach Sandbach 53.14515 -2.36251 P PPL GB ENG Z7 00EQ113 18023 69 Europe/London 2011-03-03
-2638639 Saltford Saltford 51.40139 -2.45944 P PPLA3 GB ENG A4 00HA039 4245 44 Europe/London 2011-07-31
-2638648 Saltcoats Saltcoats 55.61667 -4.8 P PPL GB SCT 00 10949 -9999 Europe/London 2006-01-17
-2638650 Saltburn-by-the-Sea Saltburn-by-the-Sea Saltburn,Saltburn-by-the-Sea 54.58237 -0.97367 P PPL GB ENG K9 00EE004 6044 52 Europe/London 2011-03-03
-2638651 Saltash Saltash Saltash 50.40959 -4.22514 P PPL GB ENG C6 00HE121 14439 64 Europe/London 2011-03-03
-2638664 Salisbury Salisbury New Sarum,Salisbury,Solsb"ri,Solsberi,soruzuberi,swlsbry,Солсбери,Солсбъри,סולסברי,ソールズベリー 51.06931 -1.79569 P PPLA3 GB ENG P8 00HY261 45600 50 Europe/London 2011-07-31
-2638665 Saline Saline Saline 56.11399 -3.57034 P PPL GB SCT V1 1161 134 Europe/London 2011-03-03
-2638669 Salfords Salfords 51.20434 -0.16744 P PPL GB ENG N7 43UF 4534 57 Europe/London 2011-03-03
-2638671 Salford Salford Salford 53.48771 -2.29042 P PPLA2 GB ENG L5 72750 44 Europe/London 2010-10-16
-2638678 Sale Sale 53.42519 -2.32443 P PPL GB ENG O6 00BU001 55689 30 Europe/London 2011-03-03
-2638682 Salcombe Salcombe 50.23743 -3.76874 P PPL GB ENG D4 18UG 1935 18 Europe/London 2010-07-21
-2638698 Saint Stephen Saint Stephen 50.33333 -4.9 P PPL GB ENG C6 2252 91 Europe/London 2007-06-15
-2638708 Saint Osyth Saint Osyth 51.8 1.08333 P PPL GB ENG E4 22UN 2093 17 Europe/London 2010-05-24
-2638717 Saint Neots Saint Neots Saint Neots,St Neots 52.21667 -0.26667 P PPL GB ENG C3 12UE 15270 18 Europe/London 2012-01-17
-2638719 Saint Monance Saint Monance Saint Monans 56.20651 -2.76821 P PPL GB SCT V1 1447 19 Europe/London 2009-09-11
-2638757 Saint Leonards Saint Leonards 50.83333 -1.85 P PPL GB ENG D6 19UD 6392 18 Europe/London 2010-05-24
-2638767 Saint Just Saint Just 50.11667 -5.7 P PPL GB ENG C6 1932 22 Europe/London 2007-06-15
-2638778 St Ives St Ives 50.20861 -5.4875 P PPL GB ENG C6 11165 83 Europe/London 2009-09-19
-2638785 Saint Helens Saint Helens Helens,Saint Helens,Sent-Khelens,St Helens,St. Helens,Сент-Хеленс 53.45 -2.73333 P PPLA2 GB ENG N1 102555 31 Europe/London 2010-10-15
-2638800 Saintfield Saintfield 54.46046 -5.83065 P PPL GB NIR 00 3327 74 Europe/London 2007-04-13
-2638817 Saint Dennis Saint Dennis Saint Denis,Saint Dennis 50.38333 -4.88333 P PPL GB ENG C6 2206 168 Europe/London 2012-01-17
-2638819 St. Day St. Day 50.23958 -5.18572 P PPLA3 GB ENG C6 00HE141 700 128 Europe/London 2011-07-31
-2638822 Saint David’s Saint David's Saint David's,Saint David’s,Sent-Dehvidz,Tyddewi,Сент-Дэвидз 51.88333 -5.26667 P PPL GB WLS Y7 1800 44 Europe/London 2012-01-17
-2638828 Saint Columb Major Saint Columb Major Saint Columb,Saint Columb Major 50.43333 -4.93333 P PPL GB ENG C6 3170 91 Europe/London 2012-01-17
-2638833 Saint Clears Saint Clears Sancler,Sanclêr 51.81989 -4.49783 P PPL GB WLS X7 1605 7 Europe/London 2008-06-11
-2638848 Saint Boswells Saint Boswells 55.57301 -2.6441 P PPL GB SCT T9 1062 96 Europe/London 2008-04-02
-2638853 Saint Austell Saint Austell Saint Austell,St Austell 50.33833 -4.76583 P PPL GB ENG C6 23432 58 Europe/London 2012-01-17
-2638855 Saint Asaph Saint Asaph Llanelwy,Saint Asaph 53.26667 -3.45 P PPL GB WLS 00 3530 26 Europe/London 2010-08-03
-2638864 Saint Andrews Saint Andrews Saint Andrews,Sejnt Andrjus,Sent-Ehndrjus,St Andrews,St. Andrews,Сейнт Андрюс,Сент-Эндрюс,セント・アンドリュース 56.33871 -2.79902 P PPL GB SCT V1 15435 22 Europe/London 2009-09-11
-2638867 Saint Albans Saint Albans Saint Albans,Sent-Ehlbans,Sent-Olbans,St Albans,St. Albans,Сент-Олбанс,Сент-Элбанс 51.75 -0.33333 P PPL GB ENG F8 6615330 84561 98 Europe/London 2012-01-17
-2638870 Saint Agnes Saint Agnes Saint Agnes 50.31363 -5.20452 P PPL GB ENG C6 2820 99 Europe/London 2010-08-03
-2638878 Saffron Walden Saffron Walden 52.02337 0.24234 P PPL GB ENG E4 22UQ 14632 59 Europe/London 2010-05-24
-2638888 Sacriston Sacriston Sacriston 54.81769 -1.6241 P PPL GB ENG D8 00EJ093 4169 154 Europe/London 2011-03-03
-2638892 Ryton on Dunsmore Ryton on Dunsmore Ryton on Dunsmore 52.36667 -1.43333 P PPL GB ENG P3 44UD 1709 80 Europe/London 2012-02-01
-2638894 Ryton Ryton 52.61667 -2.35 P PPLA3 GB ENG L6 00GG155 16093 66 Europe/London 2011-07-31
-2638901 Ryhill Ryhill 53.62204 -1.41071 P PPLA3 GB ENG 45 00DB017 0 99 Europe/London 2011-07-31
-2638902 Ryhall Ryhall 52.68585 -0.46846 P PPLA3 GB ENG L4 00FP043 0 34 Europe/London 2011-07-31
-2638909 Rye Rye Rye 50.95114 0.7337 P PPL GB ENG E2 21UG 4288 19 Europe/London 2010-08-03
-2638911 Ryde Ryde 50.72999 -1.1621 P PPL GB ENG G2 00MW032 24107 31 Europe/London 2011-02-17
-2638925 Rhuthun Rhuthun Rhuthun,Ruthin 53.11368 -3.31782 P PPLA2 GB WLS X9 00NG036 5344 60 Europe/London 2011-03-03
-2638926 Rutherglen Rutherglen An Ruadh-Ghleann,Ruglen 55.82885 -4.21376 P PPL GB SCT W5 25000 23 Europe/London 2012-03-29
-2638930 Rustington Rustington Rustington 50.81027 -0.50674 P PPL GB ENG P6 45UC 13210 6 Europe/London 2012-03-29
-2638938 Ruskington Ruskington Buskington,Ruskington 53.04544 -0.38692 P PPL GB ENG H7 32UE 5060 14 Europe/London 2010-08-03
-2638946 Rushden Rushden 52.29139 -0.59923 P PPL GB ENG J1 34UD 26307 59 Europe/London 2010-05-24
-2638951 Rushall Rushall 51.28333 -1.81667 P PPLA3 GB ENG P8 00HY190 0 145 Europe/London 2011-07-31
-2638960 Runcorn Runcorn Runcorn 53.34174 -2.73124 P PPL GB ENG E9 00ET005 59679 18 Europe/London 2011-03-03
-2638977 Rugeley Rugeley 52.7593 -1.93694 P PPL GB ENG M9 41UB 22937 78 Europe/London 2011-03-03
-2638978 Rugby Rugby 52.37092 -1.26417 P PPL GB ENG P3 44UD 63323 120 Europe/London 2011-03-03
-2638992 Rudgwick Rudgwick 51.08735 -0.45164 P PPL GB ENG P6 45UF 1678 41 Europe/London 2010-05-24
-2638995 Ruddington Ruddington 52.89254 -1.14953 P PPL GB ENG J9 37UJ 6404 41 Europe/London 2010-05-24
-2639014 Ruabon Ruabon Ruabon 52.9878 -3.03883 P PPL GB WLS Z4 00NL031 3091 120 Europe/London 2011-03-03
-2639015 Royton Royton 53.56507 -2.12267 P PPL GB ENG K1 00BP002 22848 160 Europe/London 2011-03-03
-2639017 Royston Royston 53.6 -1.45 P PPL GB ENG 00 9584 69 Europe/London 2006-01-17
-2639018 Royston Royston 52.04832 -0.02438 P PPL GB ENG F8 26UF 14895 65 Europe/London 2010-05-24
-2639020 Roydon Roydon 51.7718 0.0403 P PPL GB ENG E4 22UH 1588 44 Europe/London 2010-05-24
-2639022 Royal Tunbridge Wells Royal Tunbridge Wells Royal Tunbridge Wells,Tunbridge Wells,Turnbridge Wells 51.13245 0.26333 P PPL GB ENG G5 29UQ 61075 118 Europe/London 2010-08-03
-2639029 Roxton Roxton 52.17756 -0.31594 P PPLA3 GB ENG Z5 00KB033 0 26 Europe/London 2011-07-31
-2639039 Rowlstone Rowlstone 51.93333 -2.91667 P PPLA3 GB ENG F7 00GA183 0 149 Europe/London 2011-07-31
-2639040 Rowley Regis Rowley Regis Rowley Regis 52.48292 -2.04376 P PPL GB ENG L7 47UB 1001 210 Europe/London 2012-03-29
-2639042 Rowlands Gill Rowlands Gill 54.91922 -1.74489 P PPL GB ENG E5 00EJ110 5541 58 Europe/London 2011-03-03
-2639045 Rowhedge Rowhedge 51.85738 0.94534 P PPL GB ENG E4 22UG 1626 14 Europe/London 2010-05-24
-2639069 Rottingdean Rottingdean 50.80984 -0.05939 P PPLA3 GB ENG B6 00ML001 21756 37 Europe/London 2011-07-31
-2639074 Rothwell Rothwell Rothwell,Rowell 52.41667 -0.8 P PPL GB ENG J1 34UE 7266 101 Europe/London 2012-01-17
-2639075 Rothley Rothley 55.18333 -1.91667 P PPLA3 GB ENG J6 00EM133 0 172 Europe/London 2011-07-31
-2639083 Rothesay Rothesay Baile Bhoid,Baile Bhòid,Rothesay,Rothesay, Bute 55.83648 -5.05508 P PPL GB SCT 00 4912 9 Europe/London 2010-08-03
-2639086 Rothes Rothes Rothes 57.52624 -3.20663 P PPL GB SCT V6 1132 72 Europe/London 2010-08-09
-2639093 Rotherham Rotherham Roterem,Rotherdam,Rotherham,Ротерем 53.43012 -1.35678 P PPLA2 GB ENG L3 00CF004 117618 41 Europe/London 2011-03-03
-2639101 Rothbury Rothbury 55.31059 -1.90845 P PPLA3 GB ENG J6 00EM132 2007 84 Europe/London 2011-07-31
-2639104 Rosyth Rosyth Rosyth 56.03689 -3.438 P PPL GB SCT V1 12003 32 Europe/London 2011-03-03
-2639106 Rostrevor Rostrevor Rosstrevor,Rostrevor 54.1 -6.2 P PPL GB NIR 00 2515 8 Europe/London 2010-08-09
-2639110 Ross on Wye Ross on Wye Rhosan ar Wy,Ross,Ross on Wye 51.91667 -2.56667 P PPL GB ENG 00 10310 39 Europe/London 2011-09-19
-2639119 Rossington Rossington 53.47931 -1.0619 P PPLA3 GB ENG D5 00CE034 0 14 Europe/London 2011-07-31
-2639123 Rossett Rossett Rosset,Rossett 53.10921 -2.94478 P PPL GB WLS Z4 00NL030 2099 20 Europe/London 2011-03-03
-2639144 Rosehearty Rosehearty Rosehearty 57.697 -2.11322 P PPL GB SCT T6 1320 8 Europe/London 2011-03-03
-2639166 Roos Roos 53.75292 -0.04463 P PPLA3 GB ENG E1 00FB118 0 15 Europe/London 2011-07-31
-2639186 Romsley Romsley 52.45 -2.31667 P PPLA3 GB ENG L6 00GG150 0 133 Europe/London 2011-07-31
-2639189 Romsey Romsey Romsey 50.98906 -1.49989 P PPL GB ENG F2 24UN 17773 20 Europe/London 2011-02-24
-2639192 Romford Romford 51.57515 0.18582 P PPLA3 GB ENG GLA F6 0 20 Europe/London 2010-10-17
-2639199 Romaldkirk Romaldkirk Romaldkirk 54.5944 -2.01058 P PPLA3 GB ENG D8 00EJ092 0 228 Europe/London 2011-07-31
-2639207 Rokeby Rokeby 54.51667 -1.86667 P PPLA3 GB ENG D8 00EJ091 0 128 Europe/London 2011-07-31
-2639239 Rode Heath Rode Heath 53.11667 -2.28333 P PPL GB ENG C5 2198 95 Europe/London 2007-06-15
-2639265 Rochford Rochford 51.58198 0.70673 P PPL GB ENG E4 22UL 16739 14 Europe/London 2010-05-24
-2639267 Rochester Rochester 55.3 -2.25 P PPLA3 GB ENG J6 00EM130 0 340 Europe/London 2011-07-31
-2639268 Rochester Rochester Rochester,Rotsester,Ρότσεστερ,Рочестер 51.38764 0.50546 P PPLA2 GB ENG I3 28671 8 Europe/London 2012-01-08
-2639270 Roche Roche Roche 50.40808 -4.83373 P PPLA3 GB ENG C6 00HE119 1723 184 Europe/London 2011-07-31
-2639272 Rochdale Rochdale Rochdale,Rochdejl,Рочдейл 53.61766 -2.1552 P PPLA2 GB ENG L2 30UM 97550 127 Europe/London 2011-03-03
-2639282 Robertsbridge Robertsbridge 50.98569 0.47253 P PPL GB ENG E2 21UG 2031 11 Europe/London 2011-03-03
-2639296 Roade Roade Roade 52.15824 -0.89745 P PPL GB ENG J1 34UG 2304 114 Europe/London 2010-08-03
-2639310 Rishton Rishton 53.76806 -2.41444 P PPL GB ENG H2 30UG 7514 137 Europe/London 2011-03-03
-2639313 Riseley Riseley 52.25213 -0.47928 P PPLA3 GB ENG Z5 00KB032 0 58 Europe/London 2011-07-31
-2639317 Risca Risca Risca 51.60799 -3.10081 P PPL GB WLS X4 00PK023 20443 49 Europe/London 2011-03-03
-2639320 Ripponden Ripponden 53.67449 -1.94183 P PPL GB ENG C2 00CY005 3868 135 Europe/London 2011-03-03
-2639323 Ripon Ripon Ripon,Рипон 54.13521 -1.52122 P PPL GB ENG J7 36UD 16835 37 Europe/London 2010-08-03
-2639325 Ripley Ripley Ripley 53.03333 -1.4 P PPL GB ENG D3 17UB 21097 126 Europe/London 2012-02-01
-2639326 Ripley Ripley 51.29907 -0.49164 P PPL GB ENG N7 43UD 2041 27 Europe/London 2010-09-22
-2639334 Ringwood Ringwood 50.8465 -1.79214 P PPL GB ENG F2 24UJ 13685 17 Europe/London 2011-03-03
-2639335 Ringway Ringway 53.35 -2.28333 P PPLA3 GB ENG I2 00BN001 0 71 Europe/London 2011-07-31
-2639343 Ringmer Ringmer 50.89307 0.05545 P PPL GB ENG E2 21UF 3004 29 Europe/London 2011-02-02
-2639350 Rimswell Rimswell 53.74079 -0.01742 P PPLA3 GB ENG E1 00FB115 0 12 Europe/London 2011-07-31
-2639367 Ridlington Ridlington 52.61337 -0.756 P PPLA3 GB ENG L4 00FP042 0 164 Europe/London 2011-07-31
-2639371 Ridgmont Ridgmont 52.01532 -0.57871 P PPLA3 GB ENG Z6 00KC055 0 122 Europe/London 2011-07-31
-2639381 Rickmansworth Rickmansworth Rickmansworth 51.63928 -0.47295 P PPL GB ENG F8 26UJ 12043 51 Europe/London 2011-03-03
-2639389 Richmond Richmond 51.46005 -0.30075 P PPL GB ENG GLA L1 8360 20 Europe/London 2010-05-24
-2639393 Riccall Riccall Riccall 53.83331 -1.0573 P PPL GB ENG J7 36UH 2241 11 Europe/London 2011-03-03
-2639407 Rhymney Rhymney Rhymney 51.75998 -3.28553 P PPL GB WLS X4 00PK022 7089 283 Europe/London 2011-03-03
-2639409 Rhyl Rhyl Rhyl,Ril,Y Rhyl,Рил 53.31955 -3.48862 P PPL GB WLS X9 00NG035 25874 7 Europe/London 2011-03-03
-2639425 Rhuddlan Rhuddlan Rhuddlan,Rhyddlan 53.28333 -3.46667 P PPLA3 GB WLS X9 00NG034 3837 5 Europe/London 2011-07-31
-2639426 Rhu Rhu Rhu,Row 56.01667 -4.76667 P PPL GB SCT T8 1896 56 Europe/London 2012-01-17
-2639436 Rhosllanerchrugog Rhosllanerchrugog Rhos,Rhosllanerchrugog 53.00974 -3.05814 P PPL GB WLS Z4 00NL029 13393 175 Europe/London 2011-03-03
-2639444 Rhoose Rhoose Rhoose 51.38818 -3.3543 P PPL GB WLS Z3 00PD018 4258 46 Europe/London 2011-03-03
-2639447 Rhondda Rhondda Rhondda,Y Rhondda 51.65896 -3.44885 P PPL GB WLS Y9 00PF007 59450 256 Europe/London 2011-03-03
-2639470 Rhayader Rhayader Rhayader 52.30154 -3.51146 P PPL GB WLS Y8 00NN095 1803 219 Europe/London 2011-03-03
-2639482 Resolven Resolven 51.71193 -3.69745 P PPL GB WLS Y5 00NZ025 2106 28 Europe/London 2011-03-03
-2639489 Repton Repton Repton 52.83983 -1.55061 P PPL GB ENG D3 17UK 2517 53 Europe/London 2011-03-03
-2639492 Renton Renton 55.972 -4.58399 P PPL GB SCT W7 2145 12 Europe/London 2011-03-03
-2639495 Renfrew Renfrew 55.87197 -4.39253 P PPL GB SCT W2 19894 7 Europe/London 2011-03-03
-2639500 Remenham Remenham 51.55189 -0.89084 P PPLA3 GB ENG Q2 00MF006 0 34 Europe/London 2011-07-31
-2639506 Reigate Reigate Rajgejt,Reigate,Райгейт 51.23758 -0.2078 P PPL GB ENG N7 43UF 52123 85 Europe/London 2011-02-05
-2639511 Reepham Reepham Reepham 53.23333 -0.43333 P PPL GB ENG H7 32UH 2172 6 Europe/London 2012-02-01
-2639520 Reed Reed 52.00829 -0.01905 P PPL GB ENG F8 26UF 2328 156 Europe/London 2010-05-24
-2639522 Redwick Redwick Redwick 51.55278 -2.85 P PPLA3 GB WLS Y6 00PR021 0 7 Europe/London 2011-07-31
-2639524 Redruth Redruth Ryd Ruth 50.23315 -5.22434 P PPLA3 GB ENG C6 00HE118 0 135 Europe/London 2011-07-31
-2639536 Redlynch Redlynch Redlynch 51.09861 -2.42667 P PPL GB ENG M3 40UD 2674 150 Europe/London 2012-01-17
-2639545 Redhill Redhill Redhill 51.24048 -0.17044 P PPL GB ENG N7 43UF 51559 89 Europe/London 2011-02-05
-2639557 Redditch Redditch Radditch,Redditch,reditchi,Реддитч,レディッチ 52.3065 -1.94569 P PPL GB ENG Q4 47UD 77128 115 Europe/London 2011-03-03
-2639563 Redcar Redcar 54.61657 -1.05999 P PPL GB ENG K9 00EE004 37203 9 Europe/London 2011-03-03
-2639566 Redbourne Redbourne Redbourne 53.48728 -0.53567 P PPLA3 GB ENG J3 00FD041 0 21 Europe/London 2011-07-31
-2639567 Redbourn Redbourn 51.79896 -0.39594 P PPL GB ENG F8 6615330 4784 102 Europe/London 2010-05-24
-2639577 Reading Reading Reading,Reding,Рединг 51.45625 -0.97113 P PPLA2 GB ENG K7 244070 51 Europe/London 2010-08-13
-2639582 Rayne Rayne Rayne 51.86667 0.58333 P PPL GB ENG E4 22UC 2018 69 Europe/London 2012-02-01
-2639583 Rayleigh Rayleigh Rayleigh 51.58571 0.60459 P PPL GB ENG E4 22UL 30196 67 Europe/London 2012-03-29
-2639586 Rawtenstall Rawtenstall Rawtenstall 53.70076 -2.28442 P PPL GB ENG H2 30UM 22114 171 Europe/London 2011-03-03
-2639588 Rawmarsh Rawmarsh 53.46062 -1.34437 P PPL GB ENG L3 00CF024 18616 81 Europe/London 2011-03-03
-2639590 Rawcliffe Rawcliffe 53.68333 -0.95 P PPLA3 GB ENG E1 00FB113 0 4 Europe/London 2011-07-31
-2639597 Ravenstone Ravenstone 52.14934 -0.75874 P PPLA3 GB ENG I6 00MG026 0 88 Europe/London 2011-07-31
-2639600 Raunds Raunds 52.34428 -0.53657 P PPL GB ENG J1 34UD 8459 54 Europe/London 2010-05-24
-2639615 Ratho Ratho Ratho 55.92164 -3.38028 P PPL GB SCT U8 1515 89 Europe/London 2011-03-03
-2639621 Rathfriland Rathfriland Rathfriland,Rathfryland 54.25 -6.16667 P PPL GB NIR 00 2063 84 Europe/London 2010-08-09
-2639653 Randalstown Randalstown 54.75 -6.3 P PPL GB NIR 00 5378 40 Europe/London 2006-01-17
-2639660 Ramsgate Ramsgate Ramsgate,Ramsgejt,Рамсгейт 51.33576 1.41552 P PPL GB ENG G5 2636057 29UN010 38624 24 Europe/London 2012-01-07
-2639664 Ramsey Ramsey 52.44816 -0.10703 P PPL GB ENG C3 12UE 8220 8 Europe/London 2010-05-24
-2639667 Ramsbury Ramsbury 51.44373 -1.60257 P PPL GB ENG P8 00HY186 1574 121 Europe/London 2011-03-03
-2639668 Ramsbottom Ramsbottom 53.64789 -2.31683 P PPL GB ENG 00 17738 133 Europe/London 2007-12-05
-2639687 Rainworth Rainworth 53.11883 -1.11852 P PPL GB ENG J9 37UG 8003 99 Europe/London 2011-03-03
-2639691 Rainham Rainham 51.36323 0.60893 P PPL GB ENG G5 6394 41 Europe/London 2012-03-29
-2639693 Rainford Rainford 53.50223 -2.78839 P PPL GB ENG N1 00BZ004 6131 44 Europe/London 2011-03-03
-2639710 Radyr Radyr Radir,Radyr 51.51864 -3.25829 P PPL GB WLS X5 00PT021 4710 68 Europe/London 2011-03-03
-2639715 Radstock Radstock 51.28862 -2.46003 P PPL GB ENG A4 00HA033 5275 110 Europe/London 2012-03-29
-2639719 Radley Radley Radley 51.68746 -1.24025 P PPL GB ENG K2 38UD 1948 60 Europe/London 2011-02-18
-2639720 Radlett Radlett Radlett 51.68593 -0.31868 P PPL GB ENG F8 26UE 8213 74 Europe/London 2011-03-03
-2639727 Radcliffe on Trent Radcliffe on Trent Radcliffe,Radcliffe on Trent 52.94802 -1.03855 P PPL GB ENG J9 37UJ 7349 30 Europe/London 2010-08-03
-2639728 Radcliffe Radcliffe 53.55 -2.33333 P PPL GB ENG 00 35638 105 Europe/London 2006-01-17
-2639755 Quorndon Quorndon 52.74461 -1.17348 P PPL GB ENG H5 31UC 5071 51 Europe/London 2010-05-24
-2639779 Queniborough Queniborough Queniboro,Queniborough 52.70591 -1.04749 P PPL GB ENG H5 31UC 2307 62 Europe/London 2011-03-03
-2639788 Queensferry Queensferry Queensferry,South Queensferry 55.98333 -3.4 P PPL GB SCT 00 9477 48 Europe/London 2010-08-03
-2639789 Queensferry Queensferry 53.2 -3.03333 P PPLA3 GB WLS Y1 00NJ027 0 25 Europe/London 2011-07-31
-2639792 Queensbury Queensbury 53.76667 -1.91667 P PPL GB ENG 00 8912 333 Europe/London 2006-01-17
-2639796 Queenborough Queenborough 51.4162 0.74767 P PPL GB ENG G5 29UM 3548 5 Europe/London 2010-05-24
-2639823 Pyle Pyle Pyle 51.51667 -3.7 P PPLA3 GB WLS X3 00PB021 12604 37 Europe/London 2011-07-31
-2639828 Pwllheli Pwllheli Pwllbeli,Pwllheli 52.8899 -4.41451 P PPL GB WLS Y2 00NC058 3904 7 Europe/London 2011-03-03
-2639840 Purton Purton Purton 51.58333 -1.86667 P PPLA3 GB ENG P8 00HY184 0 115 Europe/London 2011-07-31
-2639844 Puriton Puriton 51.16933 -2.97198 P PPL GB ENG M3 40UC 1775 14 Europe/London 2011-03-03
-2639856 Pulloxhill Pulloxhill 51.99487 -0.45316 P PPLA3 GB ENG Z6 00KC054 0 94 Europe/London 2011-07-31
-2639864 Pulborough Pulborough Pulborough,Pulborough village hall 50.95735 -0.49902 P PPL GB ENG P6 45UF 3993 23 Europe/London 2010-08-03
-2639866 Pudsey Pudsey 53.79538 -1.66134 P PPL GB ENG 00 33109 163 Europe/London 2007-02-07
-2639871 Publow Publow 51.37694 -2.54028 P PPLA3 GB ENG A4 00HA037 0 47 Europe/London 2011-07-31
-2639874 Prudhoe Prudhoe 54.96154 -1.85168 P PPL GB ENG J6 00EM128 10669 99 Europe/London 2011-03-03
-2639880 Probus Probus Probus 50.29267 -4.95401 P PPL GB ENG C6 00HE116 1825 73 Europe/London 2011-03-03
-2639883 Priston Priston 51.34306 -2.43917 P PPLA3 GB ENG A4 00HA036 0 86 Europe/London 2011-07-31
-2639888 Princes Risborough Princes Risborough 51.72549 -0.83144 P PPL GB ENG B9 11UF 8302 112 Europe/London 2010-05-24
-2639896 Prestwick Prestwick 55.48333 -4.61667 P PPL GB SCT 00 15401 14 Europe/London 2006-01-17
-2639897 Prestwich Prestwich 53.53333 -2.28333 P PPL GB ENG 00 32125 97 Europe/London 2006-01-17
-2639902 Prestonpans Prestonpans Prestonpans 55.95939 -2.98038 P PPL GB SCT 00 7145 18 Europe/London 2011-01-06
-2639912 Preston Preston Preston,prstwn,pu lei si dun,Престон,פרסטון,普雷斯顿 53.76667 -2.71667 P PPLA2 GB ENG H2 30UK 190687 22 Europe/London 2010-10-16
-2639913 Preston Preston 53.75663 -0.19775 P PPLA3 GB ENG E1 00FB112 0 9 Europe/London 2011-07-31
-2639914 Preston Preston 52.61264 -0.71437 P PPLA3 GB ENG L4 00FP041 0 140 Europe/London 2011-07-31
-2639924 Presteign Presteign Presteigh,Presteign,Presteigne 52.28333 -3 P PPL GB ENG 00 1890 203 Europe/London 2010-08-03
-2639925 Prestbury Prestbury Prestburg 53.28333 -2.15 P PPLA3 GB ENG Z7 00EQ108 3342 136 Europe/London 2011-07-31
-2639926 Prestatyn Prestatyn 53.33748 -3.40776 P PPL GB WLS X9 00NG033 18701 8 Europe/London 2011-03-03
-2639928 Prescot Prescot Prescot,Prescott 53.42948 -2.80031 P PPLA3 GB ENG G9 00BX004 40889 81 Europe/London 2011-07-31
-2639934 Preesall Preesall 53.9182 -2.96633 P PPL GB ENG H2 30UQ 4889 19 Europe/London 2011-03-03
-2639935 Prees Prees Precs,Prees 52.89689 -2.66401 P PPLA3 GB ENG L6 00GG146 0 100 Europe/London 2011-07-31
-2639941 Poynton Poynton 53.35 -2.11667 P PPL GB ENG C5 14351 97 Europe/London 2007-06-15
-2639954 Poundstock Poundstock Poundstock,Pounstock 50.76667 -4.55 P PPLA3 GB GB ENG C6 00HE115 0 70 Europe/London 2011-07-31
-2639958 Poulton le Fylde Poulton le Fylde Poulton,Poulton le Fylde 53.83333 -2.98333 P PPL GB ENG H2 30UQ 19914 14 Europe/London 2012-01-17
-2639962 Pott Shrigley Pott Shrigley 53.30957 -2.08405 P PPLA3 GB ENG Z7 00EQ106 0 198 Europe/London 2011-07-31
-2639964 Potton Potton 52.12911 -0.21561 P PPLA3 GB ENG Z6 00KC053 4573 46 Europe/London 2011-07-31
-2639970 Potters Bar Potters Bar Potters Bar 51.69353 -0.17835 P PPLA4 GB ENG F8 26UE 22192 125 Europe/London 2012-02-20
-2639975 Potsgrove Potsgrove 51.95939 -0.61755 P PPLA3 GB ENG Z6 00KC052 0 150 Europe/London 2011-07-31
-2639989 Port Talbot Port Talbot 51.59241 -3.78019 P PPLA2 GB WLS Y5 00NZ024 0 10 Europe/London 2011-03-03
-2639991 Portstewart Portstewart 55.18132 -6.71402 P PPL GB NIR 00 8394 26 Europe/London 2007-04-13
-2639992 Portsoy Portsoy Portsoy 57.68144 -2.68956 P PPL GB SCT T6 1688 24 Europe/London 2011-03-03
-2639996 Portsmouth Portsmouth Porchemue,Porchémue,Portsmouth,Portsmut,potsumasu,pu ci mao si,Портсмут,ポーツマス,朴次茅斯 50.79899 -1.09125 P PPLA2 GB ENG K6 00MR001 194150 6 Europe/London 2011-02-17
-2639998 Portslade Portslade 50.84335 -0.21544 P PPL GB ENG E2 20000 43 Europe/London 2011-02-06
-2640004 Portrush Portrush 55.19592 -6.6493 P PPL GB NIR 00 6684 11 Europe/London 2007-04-13
-2640006 Portree Portree Portree 57.41288 -6.19418 P PPL GB SCT V3 1886 15 Europe/London 2011-03-03
-2640030 Portlethen Portlethen 57.05474 -2.13066 P PPL GB SCT T6 6841 78 Europe/London 2006-09-29
-2640035 Portknockie Portknockie Portknockie 57.70248 -2.85989 P PPL GB SCT V6 1179 42 Europe/London 2011-03-03
-2640037 Portishead Portishead Portishead 51.48199 -2.76973 P PPL GB ENG J4 00HC027 17512 13 Europe/London 2011-03-03
-2640044 Portscatho Portscatho 50.17271 -4.97356 P PPL GB ENG C6 00HE040 1500 -9999 Europe/London 2011-03-03
-2640045 Porthmadog Porthmadog Porthmadog,Portmadoc 52.92924 -4.13137 P PPLA3 GB WLS Y2 00NC057 3041 4 Europe/London 2011-07-31
-2640046 Porthleven Porthleven Porthleven 50.08618 -5.31501 P PPL GB ENG C6 00HE113 3261 12 Europe/London 2011-03-03
-2640054 Porthcawl Porthcawl Porthcawl 51.47903 -3.70362 P PPL GB WLS X3 00PB017 15813 12 Europe/London 2011-03-03
-2640056 Porth Porth Porth 51.61306 -3.40361 P PPLA3 GB WLS Y9 00PF024 0 147 Europe/London 2011-07-31
-2640059 Portglenone Portglenone 54.87147 -6.47146 P PPL GB NIR 00 1230 32 Europe/London 2007-04-13
-2640060 Port Glasgow Port Glasgow Port Glasgow 55.93464 -4.6895 P PPL GB SCT V4 15543 7 Europe/London 2011-03-03
-2640064 Port Erroll Port Erroll Cruden Bay,Port Errol,Port Erroll 57.41667 -1.83333 P PPL GB SCT T6 1620 24 Europe/London 2012-01-17
-2640076 Port Bannatyne Port Bannatyne Kamesburgh,Port Bannatyne 55.8566 -5.06503 P PPL GB SCT T8 1331 9 Europe/London 2011-03-03
-2640078 Portavogie Portavogie 54.45916 -5.44304 P PPL GB NIR 00 1639 7 Europe/London 2007-04-13
-2640084 Portaferry Portaferry Portaferry 54.38333 -5.55 P PPL GB NIR 00 2525 20 Europe/London 2010-08-09
-2640090 Poringland Poringland Poringland 52.56756 1.34961 P PPL GB ENG I9 33UH 4675 49 Europe/London 2011-03-03
-2640091 Poplar Poplar 51.51113 -0.01565 P PPLA3 GB ENG GLA O5 0 7 Europe/London 2011-03-03
-2640101 Poole Poole Poole,Pul,Пул 50.71667 -2 P PPLA2 GB ENG K5 150092 1 Europe/London 2010-10-16
-2640102 Pool Pool Pool,Pool-in-Wharfedale,Poole 53.9 -1.61667 P PPLA3 GB GB ENG H3 00DA021 0 57 Europe/London 2011-07-31
-2640104 Pontypridd Pontypridd Pontiprite,Pontypridd,Понтиприте 51.6021 -3.34211 P PPL GB WLS Y9 00PF023 30420 68 Europe/London 2011-03-03
-2640106 Pontypool Pontypool Pont-y-pwl,Pont-y-pŵl 51.70111 -3.04444 P PPLA2 GB WLS Z2 35686 173 Europe/London 2012-03-29
-2640109 Pontycymer Pontycymer Pont y Cymmer,Pontycymer 51.61118 -3.58421 P PPL GB WLS X3 00PB008 4424 159 Europe/London 2011-03-03
-2640110 Pontyberem Pontyberem Pont-y-Berem,Pontyberem 51.77826 -4.1689 P PPL GB WLS X7 00NU066 2037 50 Europe/London 2011-03-03
-2640127 Ponthir Ponthir Panthir,Pont-hir,Ponthir 51.63222 -2.97611 P PPLA3 GB GB WLS Z2 00PM012 0 27 Europe/London 2011-07-31
-2640129 Pontesbury Pontesbury Pontesbury 52.64826 -2.89035 P PPL GB ENG L6 00GG145 1713 108 Europe/London 2011-03-03
-2640131 Ponteland Ponteland 55.05024 -1.74532 P PPL GB ENG J6 00EM127 10045 63 Europe/London 2011-03-03
-2640132 Pontefract Pontefract 53.69107 -1.31269 P PPL GB ENG 45 28620 69 Europe/London 2010-05-11
-2640134 Pontardulais Pontardulais 51.71423 -4.03859 P PPL GB WLS Z1 00NX030 8013 15 Europe/London 2011-03-03
-2640155 Polmont Polmont Polmont,Polmonte,Полмонте 55.9905 -3.70737 P PPL GB SCT U9 20069 46 Europe/London 2011-03-03
-2640166 Pollington Pollington 53.67093 -1.07237 P PPLA3 GB ENG E1 00FB111 0 8 Europe/London 2011-07-31
-2640184 Podington Podington Puddington 52.25387 -0.62227 P PPLA3 GB GB ENG Z5 00KB029 0 78 Europe/London 2011-07-31
-2640185 Pocklington Pocklington 53.93335 -0.78106 P PPLA3 GB ENG E1 00FB110 7802 37 Europe/London 2011-07-31
-2640190 Plymstock Plymstock Plymstock 50.35999 -4.09049 P PPL GB ENG K4 18UG 24103 27 Europe/London 2012-03-29
-2640192 Plympton Plympton Plympton,Plympton Erle,Plympton Maurice,Plympton Saint Mary,Plympton Saint Maurice,Plymton,Ridgeway 50.39074 -4.06022 P PPL GB ENG D4 8892 22 Europe/London 2012-03-29
-2640194 Plymouth Plymouth Aberplymm,Pliemue,Plimut,Pliémue,Plymouth,pu li mao si,purimasu,Плимут,プリマス,普利茅斯 50.37153 -4.14305 P PPLA2 GB ENG K4 247297 14 Europe/London 2010-10-16
-2640219 Plean Plean 56.06516 -3.87596 P PPL GB SCT W6 1752 41 Europe/London 2011-03-03
-2640241 Pittington Pittington Pittington 54.8 -1.48333 P PPLA3 GB ENG D8 00EJ089 0 129 Europe/London 2011-07-31
-2640242 Pittenweem Pittenweem 56.21406 -2.72839 P PPL GB SCT V1 1807 26 Europe/London 2009-09-11
-2640246 Pitsea Pitsea 51.56387 0.50859 P PPL GB ENG E4 22UB 25000 22 Europe/London 2012-03-29
-2640253 Pitmedden Pitmedden Pitmedden 57.33691 -2.18022 P PPL GB SCT T6 1246 62 Europe/London 2011-03-03
-2640255 Pitlochry Pitlochry Pitlochry 56.70514 -3.73432 P PPL GB SCT W1 2551 120 Europe/London 2010-08-18
-2640273 Pinxton Pinxton 53.09062 -1.31767 P PPL GB ENG D3 17UC 14357 102 Europe/London 2010-05-24
-2640279 Pinchbeck Pinchbeck Pinchbeck 52.81303 -0.16256 P PPL GB ENG H7 32UF 3918 6 Europe/London 2010-08-03
-2640285 Pilsley Pilsley Pilsley 53.15 -1.36667 P PPL GB ENG D3 17UJ 3183 141 Europe/London 2012-01-17
-2640291 Pillaton Pillaton 50.45 -4.3 P PPLA3 GB ENG C6 00HE112 0 43 Europe/London 2011-07-31
-2640307 Pickworth Pickworth 52.71311 -0.53318 P PPLA3 GB ENG L4 00FP039 0 76 Europe/London 2011-07-31
-2640312 Pickering Pickering Pickering 54.25 -0.76667 P PPL GB ENG J7 36UF 6763 62 Europe/London 2012-02-01
-2640327 Pewsey Pewsey 51.33855 -1.76545 P PPLA3 GB ENG P8 00HY179 3309 115 Europe/London 2011-07-31
-2640332 Petworth Petworth 50.98669 -0.61 P PPL GB ENG P6 45UD 2349 60 Europe/London 2010-05-24
-2640334 Petton Petton 52.83333 -2.83333 P PPLA3 GB ENG L6 00GG142 0 119 Europe/London 2011-07-31
-2640348 Petersfield Petersfield Petersfield 51.00495 -0.93375 P PPL GB ENG F2 24UC 13384 62 Europe/London 2011-02-16
-2640349 Peterlee Peterlee Peterlee,Peterli,Петерли 54.76032 -1.33649 P PPL GB ENG D8 00EJ088 29979 101 Europe/London 2011-03-03
-2640351 Peterhead Peterhead 57.50584 -1.79806 P PPL GB SCT T6 17627 19 Europe/London 2011-03-03
-2640354 Peterborough Peterborough Peterborough,Peterbrough,Petersborough,Petroburgum,Piterboro,pitaboro,Питерборо,ピーターボロー 52.57364 -0.24777 P PPLA2 GB ENG K3 00JA016 140141 12 Europe/London 2011-03-03
-2640358 Perth Perth P"rt,Peairt,Pert,Perth,Перт,Пърт 56.39522 -3.43139 P PPLA2 GB SCT W1 43633 10 Europe/London 2011-03-03
-2640359 Pertenhall Pertenhall 52.27934 -0.41448 P PPLA3 GB ENG Z5 00KB028 0 40 Europe/London 2011-07-31
-2640360 Pershore Pershore Pershore 52.11163 -2.07586 P PPL GB ENG Q4 47UF 7262 22 Europe/London 2011-03-03
-2640367 Perranporth Perranporth 50.34377 -5.15558 P PPL GB ENG C6 00HE110 3134 12 Europe/London 2011-03-03
-2640375 Peover Superior Peover Superior Peover 53.25 -2.35 P PPLA3 GB GB ENG Z7 00EQ102 0 65 Europe/London 2011-07-31
-2640377 Penzance Penzance Pennsans,Penzance 50.11861 -5.53715 P PPLA3 GB ENG C6 00HE107 20812 32 Europe/London 2011-07-31
-2640389 Penybont Penybont Penybont 52.26667 -3.3 P PPLA3 GB WLS Y8 00NN092 0 226 Europe/London 2011-07-31
-2640393 Pentyrch Pentyrch Pentyrch 51.52889 -3.295 P PPLA3 GB WLS X5 00PT019 2438 142 Europe/London 2011-07-31
-2640413 Penryn Penryn 50.16812 -5.10416 P PPL GB ENG C6 00HE105 7326 29 Europe/London 2011-03-03
-2640416 Penrith Penrith Penrith 54.66579 -2.75757 P PPL GB ENG C9 16UF 14793 146 Europe/London 2010-08-03
-2640455 Penllyn Penllyn Penlline,Penllyn 51.47444 -3.47889 P PPLA3 GB GB WLS Z3 00PD016 0 95 Europe/London 2011-07-31
-2640460 Penkridge Penkridge Penkridge 52.72556 -2.1156 P PPL GB ENG M9 41UF 7341 82 Europe/London 2011-03-03
-2640463 Penistone Penistone 53.52572 -1.63027 P PPLA3 GB ENG A3 00CC012 8921 231 Europe/London 2011-07-31
-2640465 Penicuik Penicuik 55.83166 -3.22423 P PPL GB SCT 00 17011 185 Europe/London 2007-06-07
-2640470 Pengam Pengam Pengam 51.66528 -3.22694 P PPLA3 GB WLS X4 00PK018 0 134 Europe/London 2011-07-31
-2640482 Pencoyd Pencoyd 51.93333 -2.7 P PPLA3 GB ENG F7 00GA169 0 108 Europe/London 2011-07-31
-2640484 Pencoed Pencoed 51.52371 -3.50016 P PPL GB WLS X3 00PB016 8586 33 Europe/London 2011-03-03
-2640490 Pencaitland Pencaitland 55.90727 -2.8949 P PPL GB SCT 00 1671 90 Europe/London 2011-01-06
-2640496 Penarth Penarth 51.43942 -3.17609 P PPL GB WLS Z3 00PD014 23437 49 Europe/London 2011-03-03
-2640498 Pembury Pembury 51.14296 0.32187 P PPL GB ENG G5 29UQ 5749 132 Europe/London 2011-02-03
-2640502 Pembroke Dock Pembroke Dock Doc Penfro,Pater,Paterchurch,Pembroke Dock 51.69161 -4.94036 P PPL GB WLS Y7 00NS054 8772 21 Europe/London 2011-03-03
-2640503 Pembroke Pembroke Pembroke,Penfro 51.67464 -4.91286 P PPL GB WLS Y7 00NS053 7294 19 Europe/London 2011-03-03
-2640511 Pelton Pelton 54.87305 -1.6095 P PPLA3 GB ENG D8 00EJ087 5366 87 Europe/London 2011-07-31
-2640512 Pelsall Pelsall Pelsall 52.6291 -1.96738 P PPL GB ENG O8 41UB 10758 146 Europe/London 2011-03-03
-2640517 Pegswood Pegswood 55.1793 -1.64525 P PPL GB ENG J6 00EM125 3245 58 Europe/London 2011-03-03
-2640526 Peebles Peebles Peebles 55.6519 -3.1888 P PPL GB SCT T9 8403 170 Europe/London 2011-03-03
-2640545 Peakirk Peakirk 52.64567 -0.27294 P PPLA3 GB ENG K3 00JA018 0 10 Europe/London 2011-07-31
-2640559 Paulton Paulton 51.30472 -2.50028 P PPLA3 GB ENG A4 00HA034 4873 124 Europe/London 2011-07-31
-2640561 Paull Paull 53.72008 -0.23303 P PPLA3 GB ENG E1 00FB109 0 2 Europe/London 2011-07-31
-2640566 Pattingham Pattingham Pattingham 52.5891 -2.26538 P PPL GB ENG M9 41UF 1817 121 Europe/London 2011-03-03
-2640571 Patrington Patrington 53.68395 -0.0133 P PPLA3 GB ENG E1 00FB108 0 14 Europe/London 2011-07-31
-2640574 Patna Patna 55.3637 -4.50457 P PPL GB SCT U4 2088 168 Europe/London 2011-03-03
-2640589 Partridge Green Partridge Green 50.9594 -0.30796 P PPL GB ENG P6 45UF 2054 11 Europe/London 2011-02-06
-2640593 Partington Partington 53.41884 -2.42815 P PPLA3 GB ENG O6 00BU003 7895 20 Europe/London 2011-07-31
-2640601 Parkstone Parkstone 50.72994 -1.94492 P PPL GB ENG D6 9593 60 Europe/London 2012-03-29
-2640621 Parbold Parbold 53.59145 -2.77028 P PPL GB ENG H2 30UP 2762 17 Europe/London 2011-03-03
-2640623 Par Par Par 50.35392 -4.71085 P PPL GB ENG C6 00HE133 9462 10 Europe/London 2011-03-03
-2640624 Papworth Everard Papworth Everard Papworth,Papworth Everard 52.24893 -0.11827 P PPL GB ENG C3 12UG 2057 40 Europe/London 2010-08-03
-2640646 Pant Pant Pant 52.78333 -3.06667 P PPL GB ENG L6 1831 65 Europe/London 2012-01-17
-2640651 Pannal Pannal Pannal 53.96031 -1.53573 P PPL GB ENG J7 36UD 2301 88 Europe/London 2011-03-03
-2640654 Pangbourne Pangbourne Pangbourne 51.4837 -1.08519 P PPL GB ENG P4 00MB039 3822 42 Europe/London 2011-03-03
-2640677 Paisley Paisley Pejsli,Пейсли 55.83173 -4.43254 P PPLA2 GB SCT W2 73074 50 Europe/London 2011-03-03
-2640678 Painswick Painswick Painswick 51.78568 -2.19555 P PPL GB ENG E6 23UF 1703 148 Europe/London 2010-08-03
-2640681 Paignton Paignton Paignton,Pehjnton,Пэйнтон 50.43565 -3.56789 P PPL GB ENG O4 18UG 49886 8 Europe/London 2011-03-03
-2640685 Padstow Padstow 50.53885 -4.93664 P PPLA3 GB ENG C6 00HE102 2504 12 Europe/London 2011-07-31
-2640687 Padiham Padiham 53.80187 -2.31511 P PPL GB ENG H2 30UD 11338 88 Europe/London 2010-05-24
-2640690 Paddock Wood Paddock Wood 51.17942 0.38547 P PPL GB ENG G5 29UQ 8016 18 Europe/London 2011-02-03
-2640717 Oxted Oxted 51.25687 -0.00601 P PPL GB ENG N7 43UK 12856 108 Europe/London 2011-02-05
-2640729 Oxford Oxford OXF,Oksford,Oksfordas,Oksfordo,Oxford,Oxonia,Oxphorde,Rhydychen,Rysoghen,aksfwrd,ogseupeodeu,okkusufodo,Οξφόρδη,Оксфорд,אוקספורד,أكسفورد,オックスフォード,옥스퍼드 51.75222 -1.25596 P PPLA2 GB ENG K2 38UC 154566 72 Europe/London 2012-03-27
-2640731 Oxenhope Oxenhope Oxenhope 53.81233 -1.95196 P PPLA3 GB ENG B4 00CX005 1858 212 Europe/London 2011-07-31
-2640762 Overtown Overtown 55.75 -3.91667 P PPL GB SCT 00 2519 126 Europe/London 2006-01-17
-2640764 Overton Overton 52.96667 -2.93333 P PPLA3 GB WLS Z4 00NL026 0 67 Europe/London 2011-07-31
-2640765 Overton Overton Overton 51.24389 -1.26154 P PPL GB ENG F2 24UB 3392 87 Europe/London 2011-02-21
-2640777 Over Over 53.18333 -2.55 P PPL GB ENG C5 2804 53 Europe/London 2007-06-15
-2640781 Outwell Outwell 52.60946 0.23333 P PPL GB ENG I9 33UE 3320 4 Europe/London 2011-03-03
-2640825 Oundle Oundle Oundle 52.48093 -0.46732 P PPL GB ENG J1 34UD 5335 35 Europe/London 2011-03-03
-2640832 Oughtibridge Oughtibridge 53.43612 -1.53902 P PPL GB ENG L9 00CG001 3299 98 Europe/London 2011-03-03
-2640833 Ottringham Ottringham 53.70092 -0.07909 P PPLA3 GB ENG E1 00FB107 0 6 Europe/London 2011-07-31
-2640834 Ottery Saint Mary Ottery Saint Mary OTTERY ST MARY,OTTERY ST. MARY,Ottery Saint Mary 50.75 -3.26667 P PPL GB ENG D4 18UB 4463 81 Europe/London 2012-01-17
-2640840 Ottershaw Ottershaw Ottershaw 51.36262 -0.52752 P PPL GB ENG N7 43UG 3451 31 Europe/London 2011-02-14
-2640852 Otterburn Otterburn 55.21667 -2.16667 P PPLA3 GB ENG J6 00EM122 0 147 Europe/London 2011-07-31
-2640857 Otley Otley Otley 53.90553 -1.69383 P PPLA3 GB ENG H3 00DA019 14668 65 Europe/London 2011-07-31
-2640861 Oswestry Oswestry Croesoswallt,Oswestry 52.86195 -3.05497 P PPL GB ENG L6 00GG140 17031 136 Europe/London 2011-03-03
-2640869 Ossett Ossett 53.67978 -1.58006 P PPL GB ENG 00 21616 105 Europe/London 2007-01-12
-2640894 Orpington Orpington 51.37457 0.09785 P PPL GB ENG GLA B8 15248 62 Europe/London 2012-03-29
-2640908 Ormskirk Ormskirk Ormskirk 53.56685 -2.88178 P PPL GB ENG H2 30UP 23792 52 Europe/London 2011-03-03
-2640910 Ormiston Ormiston 55.91302 -2.93985 P PPL GB SCT U6 2062 88 Europe/London 2011-03-03
-2640912 Ormesby Saint Margaret Ormesby Saint Margaret Great Ormesby,Ormesby Saint Margaret 52.66667 1.7 P PPL GB ENG I9 33UD 2939 12 Europe/London 2012-01-17
-2640920 Orleton Orleton Orleton 52.3 -2.75 P PPLA3 GB ENG F7 00GA166 0 92 Europe/London 2011-07-31
-2640928 Orgreave Orgreave 53.38333 -1.36667 P PPLA3 GB ENG L3 00CF015 0 226 Europe/London 2011-07-31
-2640967 Omagh Omagh An Oghmagh,An Omaigh,An Ómaigh,Oma,Ома 54.6 -7.3 P PPLA2 GB NIR T3 21056 72 Europe/London 2010-10-16
-2640972 Olney Olney 52.15345 -0.70201 P PPLA3 GB ENG I6 00MG025 6166 53 Europe/London 2011-07-31
-2640981 Old Windsor Old Windsor Old Windsor 51.45807 -0.58674 P PPLA3 GB ENG P9 00ME009 7168 19 Europe/London 2011-07-31
-2641007 Oldmeldrum Oldmeldrum Oldmeldrum 57.33492 -2.3199 P PPL GB SCT T6 2023 116 Europe/London 2011-03-03
-2641014 Old Kilpatrick Old Kilpatrick Kilpatrick,Old Kilpatrick,West Kilpatrick 55.92241 -4.45567 P PPL GB SCT W7 3528 26 Europe/London 2011-03-03
-2641022 Oldham Oldham Oldem,Oldham,Олдем 53.54051 -2.1183 P PPLA2 GB ENG K1 104782 204 Europe/London 2010-10-16
-2641036 Oldbury Oldbury 52.5 -2.01667 P PPLA2 GB ENG L7 10830 145 Europe/London 2010-10-16
-2641049 Okehampton Okehampton Okehampton 50.73841 -4.0016 P PPL GB ENG D4 18UL 5976 156 Europe/London 2010-08-03
-2641079 Odiham Odiham Odiham 51.25407 -0.93933 P PPL GB ENG F2 24UG 2973 96 Europe/London 2011-02-16
-2641084 Odell Odell 52.20937 -0.5888 P PPLA3 GB ENG Z5 00KB026 0 48 Europe/London 2011-07-31
-2641088 Ocle Pychard Ocle Pychard 52.11667 -2.6 P PPLA3 GB ENG F7 00GA164 0 80 Europe/London 2011-07-31
-2641108 Oban Oban An t-Oban,An t-Òban,Oban,Oub"n,Обан,Оубън 56.41269 -5.47062 P PPL GB SCT T8 8081 11 Europe/London 2011-03-03
-2641120 Oakley Oakley Oakley 56.06667 -3.55 P PPL GB SCT V1 4067 56 Europe/London 2012-01-17
-2641121 Oakley Oakley 52.16862 -0.52649 P PPLA3 GB ENG Z5 00KB025 0 43 Europe/London 2011-07-31
-2641128 Oakham Oakham 52.66667 -0.73333 P PPLA2 GB ENG L4 10150 111 Europe/London 2010-10-16
-2641130 Oakengates Oakengates 52.69501 -2.45036 P PPL GB ENG O2 00GF018 8517 120 Europe/London 2012-03-29
-2641134 Oadby Oadby Oadby 52.60621 -1.08354 P PPL GB ENG H5 31UJ 23184 104 Europe/London 2011-03-03
-2641148 Nunthorpe Nunthorpe 54.5288 -1.18438 P PPLA3 GB ENG I5 00EC001 0 76 Europe/London 2011-07-31
-2641157 Nuneaton Nuneaton Naniton,Nuneaton,Нанитон 52.52323 -1.46523 P PPL GB ENG P3 44UC 73555 85 Europe/London 2011-03-03
-2641167 Notton Notton 53.6 -1.48333 P PPLA3 GB ENG 45 00DB016 0 89 Europe/London 2011-07-31
-2641170 Nottingham Nottingham NQT,Nottigham,Nottingem,Nottingham,nottingamu,nuo ding han,nuo ding xian,nwtnghham,Ноттингем,Ноттингҳам,נוטינגהאם,نوتنغهام,ノッティンガム,諾定咸,诺丁汉 52.9536 -1.15047 P PPLA2 GB ENG J8 246654 61 Europe/London 2012-03-22
-2641181 Norwich Norwich Noridzh,Norwich,nwrwytsh,Норидж,نورويتش 52.62783 1.29834 P PPLA2 GB ENG I9 33UG 177636 19 Europe/London 2010-10-16
-2641193 Norton Canes Norton Canes Norton Canes 52.67142 -1.96262 P PPL GB ENG M9 41UB 6536 151 Europe/London 2011-03-03
-2641199 Norton Norton 53.63333 -1.18333 P PPLA3 GB ENG D5 00CE032 0 21 Europe/London 2011-07-31
-2641207 Norton Norton 51.55944 -2.165 P PPLA3 GB ENG P8 00HY171 0 97 Europe/London 2011-07-31
-2641217 Northwood Northwood 50.74102 -1.31192 P PPLA3 GB ENG G2 00MW031 0 64 Europe/London 2011-07-31
-2641224 Northwich Northwich Northwick,Nortvich,Нортвич 53.26138 -2.51225 P PPL GB ENG Z8 00EW119 42113 18 Europe/London 2011-03-03
-2641233 North Walsham North Walsham North Walsham 52.82121 1.38746 P PPL GB ENG I9 33UF 12109 39 Europe/London 2011-03-03
-2641253 North Sunderland North Sunderland North Sunderland 55.57688 -1.66436 P PPL GB ENG J6 00EM119 1843 20 Europe/London 2011-03-03
-2641267 North Shields North Shields 55.01646 -1.44925 P PPL GB ENG 00 39747 42 Europe/London 2010-11-21
-2641280 North Queensferry North Queensferry 56.00899 -3.39134 P PPL GB SCT V1 1112 7 Europe/London 2007-11-09
-2641284 North Petherton North Petherton North Petherton 51.09243 -3.01549 P PPL GB ENG M3 40UC 3210 39 Europe/London 2011-03-03
-2641287 Northorpe Northorpe 53.46667 -0.65 P PPL GB ENG H7 32UH 2184 19 Europe/London 2010-05-24
-2641310 North Luffenham North Luffenham North Luffenham 52.62108 -0.61987 P PPLA3 GB ENG L4 00FP037 0 92 Europe/London 2011-07-31
-2641315 North Leigh North Leigh North Leigh 51.81432 -1.44144 P PPL GB ENG K2 38UF 1574 139 Europe/London 2011-03-05
-2641318 Northleach Northleach Northleach 51.82994 -1.83712 P PPL GB ENG E6 23UC 1966 167 Europe/London 2010-08-03
-2641319 Lancing Lancing Lancing,North Lancing 50.82882 -0.32247 P PPL GB ENG P6 45UB 18692 7 Europe/London 2012-03-29
-2641331 Northiam Northiam 50.99439 0.60026 P PPL GB ENG E2 21UG 1838 48 Europe/London 2010-05-24
-2641337 North Hill North Hill 50.55 -4.43333 P PPLA3 GB ENG C6 00HE098 0 123 Europe/London 2011-07-31
-2641356 North Ferriby North Ferriby Ferriby,North Ferriby 53.72124 -0.5052 P PPLA3 GB ENG E1 00FB104 7416 20 Europe/London 2011-07-31
-2641369 North Elmsall North Elmsall 53.60885 -1.28214 P PPLA3 GB ENG 45 00DB015 0 59 Europe/London 2011-07-31
-2641370 North Elmham North Elmham 52.7464 0.94611 P PPL GB ENG I9 33UB 2096 29 Europe/London 2010-05-24
-2641404 North Cave North Cave 53.78012 -0.64965 P PPLA3 GB ENG E1 00FB102 0 16 Europe/London 2011-07-31
-2641413 North Bradley North Bradley North Bradley 51.295 -2.20472 P PPLA3 GB ENG P8 00HY168 0 51 Europe/London 2011-07-31
-2641416 Northborough Northborough Northborough 52.65868 -0.29818 P PPLA3 GB ENG K3 00JA015 0 7 Europe/London 2011-07-31
-2641419 North Berwick North Berwick North Berwick 56.05825 -2.7229 P PPL GB SCT U6 6439 8 Europe/London 2011-03-03
-2641430 Northampton Northampton Nortgempton,Northampton,Nortkhempton,Nortkhemptun,Нортгемптон,Нортхемптон,Нортхемптън 52.25 -0.88333 P PPLA2 GB ENG J1 34UF 197322 97 Europe/London 2010-10-16
-2641434 Northam Northam Northam 51.03333 -4.21667 P PPL GB ENG D4 18UK 7668 62 Europe/London 2012-01-17
-2641435 Northallerton Northallerton 54.33901 -1.43243 P PPLA2 GB ENG J7 36UC 16480 43 Europe/London 2011-03-03
-2641443 Normanton Normanton 53.7 -1.41667 P PPLA3 GB ENG 45 00DB014 0 46 Europe/London 2011-07-31
-2641447 Normandy Normandy 51.25751 -0.67472 P PPL GB ENG N7 43UD 1563 55 Europe/London 2011-02-14
-2641465 Norbury Norbury 52.53333 -2.95 P PPLA3 GB ENG L6 00GG137 0 267 Europe/London 2011-07-31
-2641480 Niton Niton Najton,Niton,Найтон 50.58702 -1.28489 P PPL GB ENG G2 1142 111 Europe/London 2010-08-03
-2641506 Neyland Neyland New Milford,Neyland 51.71014 -4.95155 P PPL GB WLS Y7 00NS051 3567 44 Europe/London 2011-03-03
-2641510 New Tredegar New Tredegar New Tredegar 51.72051 -3.2413 P PPL GB WLS X4 00PK017 4217 217 Europe/London 2011-03-03
-2641511 Newtownstewart Newtownstewart 54.71778 -7.37886 P PPL GB NIR 00 1465 53 Europe/London 2007-04-13
-2641513 Newtown Saint Boswells Newtown Saint Boswells 55.58333 -2.68333 P PPLA2 GB SCT T9 1225 141 Europe/London 2010-10-16
-2641519 Newtownards Newtownards 54.59236 -5.69092 P PPLA2 GB NIR Q7 29363 9 Europe/London 2010-10-16
-2641520 Newtownabbey Newtownabbey N'jutonehbbej,Newtownabbey,Ньютонэббей 54.65983 -5.90858 P PPLA2 GB NIR T1 63860 15 Europe/London 2010-10-16
-2641523 Newtown Newtown Newtown,Tre-Newydd,Y Drenewydd 52.51667 -3.3 P PPL GB WLS Y8 12783 111 Europe/London 2012-03-29
-2641528 Newton Stewart Newton Stewart 54.95784 -4.48315 P PPL GB SCT U2 3548 17 Europe/London 2011-03-03
-2641536 Newton Poppleford Newton Poppleford 50.7 -3.29586 P PPL GB ENG D4 18UB 1684 37 Europe/London 2011-03-03
-2641544 Newton Mearns Newton Mearns Newton Mearns 55.77334 -4.33339 P PPL GB SCT U7 23808 137 Europe/London 2011-03-03
-2641545 Newton Longville Newton Longville Newton Longville 51.976 -0.76595 P PPL GB ENG B9 11UB 1892 107 Europe/London 2011-02-16
-2641546 Newton-le-Willows Newton-le-Willows 53.45 -2.6 P PPL GB ENG 00 21782 35 Europe/London 2006-01-17
-2641549 Newtonhill Newtonhill Newtonhill 57.03333 -2.15 P PPL GB SCT T6 3284 64 Europe/London 2012-01-17
-2641555 Newton Aycliffe Newton Aycliffe Newton Aycliffe 54.61842 -1.5719 P PPL GB ENG D8 00EJ045 26269 95 Europe/London 2011-03-03
-2641557 Newton Abbot Newton Abbot Newton Abbot 50.52858 -3.61186 P PPL GB ENG D4 18UH 25789 14 Europe/London 2011-03-03
-2641577 New Scone New Scone New Scone 56.41942 -3.40507 P PPL GB SCT W1 4355 52 Europe/London 2011-03-03
-2641581 Newry Newry An tiur,An tïúr,Iubhar Cinn Tragha,Iubhar Cinn Trágha,N'juri,Ньюри 54.17841 -6.33739 P PPLA2 GB NIR S9 27757 6 Europe/London 2010-10-16
-2641588 New Quay New Quay New Quay,Y Cei Newydd 52.21515 -4.35887 P PPLA3 GB WLS X6 00NQ039 0 21 Europe/London 2011-07-31
-2641589 Newquay Newquay Newquay 50.41317 -5.08186 P PPLA3 GB ENG C6 00HE097 19998 38 Europe/London 2011-07-31
-2641591 Newport Pagnell Newport Pagnell Newport Pagnell 52.08731 -0.72218 P PPLA3 GB ENG I6 00MG022 15067 63 Europe/London 2011-07-31
-2641593 Newport-On-Tay Newport-On-Tay Newport 56.43911 -2.9367 P PPL GB SCT V1 4203 43 Europe/London 2006-07-02
-2641594 Newport Newport 53.76333 -0.69986 P PPLA3 GB ENG E1 00FB100 0 3 Europe/London 2011-07-31
-2641595 Newport Newport N'juport,Newport,Ньюпорт 52.78333 -2.38333 P PPLA3 GB ENG O2 00GF017 10814 81 Europe/London 2011-07-31
-2641596 Newport Newport 52.01667 -4.83333 P PPLA3 GB WLS Y7 00NS050 0 32 Europe/London 2011-07-31
-2641598 Newport Newport Casnewydd,N'juport,Newport,Novus Burgus,Ньюпорт 51.58774 -2.99835 P PPLA2 GB WLS Y6 117326 16 Europe/London 2011-09-19
-2641599 Newport Newport N'juport,Ньюпорт 50.70146 -1.29124 P PPLA2 GB ENG G2 24200 6 Europe/London 2010-10-16
-2641609 New Milton New Milton 50.75601 -1.6658 P PPL GB ENG F2 24UJ 23753 40 Europe/London 2012-03-29
-2641610 Newmilns Newmilns 55.60751 -4.32416 P PPL GB SCT U4 2941 73 Europe/London 2011-03-03
-2641612 New Mills New Mills 53.36592 -1.99986 P PPL GB ENG D3 17UH 9114 156 Europe/London 2010-05-24
-2641616 Newmarket Newmarket Newmarket 52.24467 0.40418 P PPL GB ENG N5 42UC 17324 28 Europe/London 2010-08-03
-2641618 Newmains Newmains 55.76667 -3.88333 P PPL GB SCT 00 5094 166 Europe/London 2006-01-17
-2641629 Newington Newington 51.35217 0.66768 P PPL GB ENG G5 29UM 2935 37 Europe/London 2010-05-24
-2641630 Newick Newick 50.97518 0.01579 P PPL GB ENG E2 21UF 2176 44 Europe/London 2011-02-03
-2641637 Newhaven Newhaven Newhaven 50.79693 0.05545 P PPL GB ENG E2 21UF 12549 2 Europe/London 2011-02-03
-2641649 New Ferry New Ferry 53.36046 -2.99377 P PPLX GB ENG Q1 00EW114 5300 24 Europe/London 2012-03-29
-2641651 Newent Newent 51.93365 -2.40815 P PPL GB ENG E6 23UD 4342 41 Europe/London 2011-03-03
-2641658 New Cumnock New Cumnock New Cumnock 55.39563 -4.18458 P PPL GB SCT U4 2884 187 Europe/London 2011-03-03
-2641673 Newcastle upon Tyne Newcastle upon Tyne N'jukasl,N'jukasl-apon-Tajn,NCL,Neuchate,Neuchâté,Newcastle,Newcastle upon Tyne,Newcastle-on-Tyne,Newcastle-upon-Tyne,nywkasl,nywkasl abwn tayn,tai en he pan niu ka si er,Ньюкасл,Ньюкасл-апон-Тайн,ניוקאסל,نيوكاسل أبون تاين,نیوکاسل,ニューカッスル・アポン・タイン,泰恩河畔纽卡斯尔 54.97328 -1.61396 P PPLA2 GB ENG I7 192382 54 Europe/London 2012-02-20
-2641674 Newcastle under Lyme Newcastle under Lyme Newcastle under Lyme,Newcastle-under-Lyme 53 -2.23333 P PPL GB ENG M9 41UE 75794 160 Europe/London 2012-01-17
-2641676 Newcastle Emlyn Newcastle Emlyn Castell Newydd Emlyn,Newcastle Emlyn 52.04056 -4.4667 P PPL GB WLS X6 00NQ018 1719 31 Europe/London 2011-03-03
-2641689 Newbury Newbury N'juberi,Ньюбери 51.40033 -1.32059 P PPLA2 GB ENG P4 00MB062 33065 80 Europe/London 2011-02-23
-2641690 Newburn Newburn 54.9876 -1.74415 P PPL GB ENG I7 00EM073 41347 40 Europe/London 2011-03-03
-2641691 Newburgh Newburgh Newburgh 57.3 -2 P PPL GB SCT T6 1377 11 Europe/London 2012-01-17
-2641692 Newburgh Newburgh Newburgh 56.33333 -3.25 P PPL GB SCT V1 1909 167 Europe/London 2012-01-17
-2641698 Newbridge Newbridge 55.93333 -3.4 P PPL GB SCT 00 1013 62 Europe/London 2010-09-03
-2641700 Newbridge Newbridge Cefn Bychan,Newbridge 51.66667 -3.13333 P PPLA3 GB GB WLS X4 00PK016 0 164 Europe/London 2011-07-31
-2641708 Newborough Newborough 52.6389 -0.22333 P PPLA3 GB ENG K3 00JA014 0 5 Europe/London 2011-07-31
-2641710 Newbold Verdon Newbold Verdon Newbold Verdon 52.62959 -1.3422 P PPL GB ENG H5 31UE 3124 136 Europe/London 2011-03-03
-2641718 Newbiggin-by-the-Sea Newbiggin-by-the-Sea 55.18532 -1.51469 P PPL GB ENG J6 00EM113 6090 11 Europe/London 2011-03-03
-2641722 Newbiggin Newbiggin 54.64171 -2.13555 P PPLA3 GB ENG D8 00EJ083 0 251 Europe/London 2011-07-31
-2641729 Newarthill Newarthill Newarthill 55.8151 -3.93733 P PPL GB SCT V8 6892 155 Europe/London 2011-03-03
-2641731 Newark on Trent Newark on Trent Newark,Newark on Trent,Newark upon Trent 53.06667 -0.81667 P PPL GB ENG J9 37UG 25376 16 Europe/London 2010-08-03
-2641745 Nefyn Nefyn Nefyn,Nevin 52.93333 -4.5 P PPLA3 GB GB WLS Y2 00NC052 0 223 Europe/London 2011-07-31
-2641747 Nevern Nevern Nevern 52.02387 -4.80068 P PPLA3 GB WLS Y7 00NS048 0 31 Europe/London 2011-07-31
-2641758 Nettleton Nettleton 51.50222 -2.2625 P PPLA3 GB ENG P8 00HY166 0 130 Europe/London 2011-07-31
-2641760 Nettleham Nettleham 53.26603 -0.48866 P PPL GB ENG H7 32UH 3592 27 Europe/London 2011-03-03
-2641765 Netley Netley Netley,Netley Marsh 50.87634 -1.35398 P PPL GB ENG F2 24UD 6287 16 Europe/London 2010-08-03
-2641773 Netherton Netherton 52.48333 -2.08333 P PPL GB ENG 00 2587 132 Europe/London 2006-01-17
-2641776 Nether Poppleton Nether Poppleton Nether Poppleton 53.98793 -1.15062 P PPL GB ENG Q5 00FF021 3504 12 Europe/London 2011-03-03
-2641795 Neston Neston 53.28333 -3.05 P PPLA3 GB ENG Z8 00EW114 0 49 Europe/London 2011-07-31
-2641810 Nelson Nelson Nelson 53.83333 -2.2 P PPL GB ENG H2 30UJ 29317 170 Europe/London 2012-01-17
-2641811 Nelson Nelson 51.65333 -3.28444 P PPLA3 GB WLS X4 00PK015 12857 149 Europe/London 2011-07-31
-2641815 Neilston Neilston Neilston 55.78574 -4.42637 P PPL GB SCT 00 5091 136 Europe/London 2010-08-03
-2641827 Needingworth Needingworth Needingworth 52.33051 -0.03116 P PPL GB ENG C3 12UE 2287 15 Europe/London 2010-08-03
-2641828 Needham Market Needham Market 52.1555 1.0516 P PPL GB ENG N5 42UE 4676 25 Europe/London 2010-05-24
-2641833 Necton Necton 52.64994 0.77539 P PPL GB ENG I9 33UB 1761 50 Europe/London 2010-05-24
-2641843 Neath Neath Castell Nedd,Castell-nedd,Neath,Nit,Нит 51.66317 -3.80443 P PPL GB WLS Y5 00NZ020 46126 13 Europe/London 2011-03-03
-2641861 Navenby Navenby Navenby 53.1068 -0.52494 P PPL GB ENG H7 32UE 2438 67 Europe/London 2010-08-03
-2641873 Nash Nash 51.54889 -2.94611 P PPLA3 GB WLS Y6 00PR018 0 6 Europe/London 2011-07-31
-2641884 Narborough Narborough Narborough 52.56667 -1.2 P PPL GB ENG H5 31UB 6321 70 Europe/London 2012-01-17
-2641885 Narberth Narberth Arberth,Narberth 51.79784 -4.74275 P PPL GB WLS Y7 00NS047 1890 82 Europe/London 2011-03-03
-2641892 Nantwich Nantwich 53.06878 -2.52051 P PPL GB ENG Z7 00EQ091 13746 40 Europe/London 2011-03-03
-2641910 Nairn Nairn Nairn 57.58094 -3.87973 P PPL GB SCT V3 8551 20 Europe/London 2011-03-03
-2641912 Nailsworth Nailsworth Nailsworth 51.69382 -2.2199 P PPL GB ENG E6 23UF 5394 67 Europe/London 2011-03-03
-2641913 Nailsea Nailsea Nailsea 51.43239 -2.75847 P PPL GB ENG J4 00HC025 16537 31 Europe/London 2011-03-03
-2641915 Nafferton Nafferton 54.01917 -0.38976 P PPLA3 GB ENG E1 00FB098 2233 22 Europe/London 2011-07-31
-2641922 Mytholmroyd Mytholmroyd 53.73065 -1.98258 P PPL GB ENG C2 00CY003 3813 94 Europe/London 2011-03-03
-2641942 Musselburgh Musselburgh 55.9417 -3.04991 P PPL GB SCT 00 22656 9 Europe/London 2011-01-06
-2641945 Murton Murton 54.81667 -1.41667 P PPLA3 GB ENG D8 00EJ081 0 123 Europe/London 2011-07-31
-2641965 Mundford Mundford Mundford 52.51246 0.65682 P PPL GB ENG I9 33UB 1626 16 Europe/London 2010-08-15
-2641966 Mundesley Mundesley Mundersley 52.86219 1.39552 P PPL GB ENG I9 33UF 2755 42 Europe/London 2010-05-24
-2641976 Mullion Mullion 50.02706 -5.24248 P PPL GB ENG C6 00HE095 1875 69 Europe/London 2011-03-03
-2641997 Mulbarton Mulbarton 52.55913 1.23327 P PPL GB ENG I9 33UH 2702 43 Europe/London 2011-03-03
-2642001 Muir of Ord Muir of Ord Muir of Ord 57.51976 -4.45939 P PPL GB SCT V3 1807 35 Europe/London 2011-03-03
-2642005 Muirkirk Muirkirk Muirkirk 55.52272 -4.06551 P PPL GB SCT U4 1539 228 Europe/London 2011-03-03
-2642006 Muirhead Muirhead Muirhead,Muirhead of Liff 56.5 -3.06667 P PPL GB SCT T7 1542 125 Europe/London 2012-01-17
-2642015 Muggleswick Muggleswick Muggleswick 54.83333 -1.93333 P PPLA3 GB ENG D8 00EJ080 0 248 Europe/London 2011-07-31
-2642054 Much Wenlock Much Wenlock Much Wenlock 52.59582 -2.55749 P PPL GB ENG L6 00GG128 2003 157 Europe/London 2011-03-03
-2642061 Much Birch Much Birch 51.97108 -2.72349 P PPLA3 GB ENG F7 00GA155 0 163 Europe/London 2011-07-31
-2642077 Moy Moy Moy 54.45 -6.66667 P PPL GB NIR 00 1234 19 Europe/London 2012-01-17
-2642096 Mountsorrel Mountsorrel Mountsorrel 52.71667 -1.15 P PPL GB ENG H5 31UC 11558 72 Europe/London 2012-01-17
-2642116 Mountain Ash Mountain Ash Aberpennar 51.68361 -3.38008 P PPL GB WLS Y9 00PF017 7039 116 Europe/London 2012-03-29
-2642126 Moulsoe Moulsoe Moulsoe 52.0688 -0.67326 P PPLA3 GB ENG I6 00MG021 0 81 Europe/London 2011-07-31
-2642130 Mouldsworth Mouldsworth 53.23333 -2.73333 P PPLA3 GB ENG Z8 00EW112 0 68 Europe/London 2011-07-31
-2642135 Motherwell Motherwell Mazervell,Мазервелл 55.78924 -3.99187 P PPLA2 GB SCT V8 29908 83 Europe/London 2011-03-03
-2642137 Mostyn Mostyn 53.31271 -3.26765 P PPL GB WLS Y1 00NJ020 1726 62 Europe/London 2011-03-03
-2642143 Mossley Mossley 53.51454 -2.03462 P PPLA3 GB ENG O1 00BT001 9929 144 Europe/London 2011-07-31
-2642148 Moss Moss 53.61667 -1.1 P PPLA3 GB ENG D5 00CE031 0 8 Europe/London 2011-07-31
-2642180 Morriston Morriston Morriston,Treforys 51.66995 -3.92941 P PPLA3 GB WLS Z1 00NX022 0 71 Europe/London 2011-07-31
-2642182 Morpeth Morpeth 55.16765 -1.6912 P PPLA2 GB ENG J6 00EM110 13857 31 Europe/London 2011-03-03
-2642189 Morley Morley 53.74013 -1.59877 P PPLA3 GB ENG H3 00DA030 57385 148 Europe/London 2011-07-31
-2642200 Moreton in Marsh Moreton in Marsh Moreton in Marsh,Moreton in the Marsh 51.98964 -1.70297 P PPL GB ENG E6 23UC 3269 129 Europe/London 2010-08-03
-2642204 Moreton Moreton 53.4 -3.11667 P PPL GB ENG Q1 17670 13 Europe/London 2012-03-29
-2642214 Morecambe Morecambe Morecambe,Morecombe,Morkam,Моркам 54.06835 -2.86108 P PPL GB ENG H2 30UH 51644 10 Europe/London 2010-08-03
-2642233 Morden Morden Morden 51.39822 -0.19837 P PPLA3 GB ENG GLA I4 0 22 Europe/London 2010-08-13
-2642235 Morcott Morcott Morcott 52.59669 -0.63704 P PPLA3 GB ENG L4 00FP035 0 78 Europe/London 2011-07-31
-2642302 Montrose Montrose Montrose 56.7 -2.45 P PPL GB SCT T7 10620 34 Europe/London 2012-01-17
-2642313 Monmouth Monmouth Monmouth,Monmut,Trefynwy,Монмут 51.81265 -2.71363 P PPL GB WLS Y4 00PP025 8547 27 Europe/London 2011-09-19
-2642336 Monk Fryston Monk Fryston Monk Fryston 53.7616 -1.23751 P PPL GB ENG J7 36UH 1582 17 Europe/London 2010-08-03
-2642349 Moneymore Moneymore 54.69229 -6.66956 P PPL GB NIR 00 1426 48 Europe/London 2007-04-13
-2642363 Mollington Mollington 53.23333 -2.91667 P PPLA3 GB ENG Z8 00EW110 0 30 Europe/London 2011-07-31
-2642372 Mold Mold Mold,Yr Wyddgrug 53.16674 -3.14143 P PPLA2 GB WLS Y1 00NJ019 9995 115 Europe/London 2012-03-29
-2642376 Moira Moira 54.48021 -6.22822 P PPL GB NIR 00 4098 69 Europe/London 2007-04-13
-2642384 Moffat Moffat 55.33227 -3.44542 P PPL GB SCT U2 2077 109 Europe/London 2007-11-12
-2642391 Moelfre Moelfre Moelfre 53.35 -4.23333 P PPLA3 GB WLS X1 00NA031 0 -9999 Europe/London 2011-07-31
-2642395 Modbury Modbury Modbury 50.34957 -3.88684 P PPL GB ENG D4 18UG 1454 37 Europe/London 2012-03-29
-2642401 Mochdre Mochdre 53.28333 -3.75 P PPLA3 GB WLS X8 00NE029 0 132 Europe/London 2011-07-31
-2642402 Mochdre Mochdre 52.48333 -3.36667 P PPLA3 GB WLS Y8 00NN085 0 204 Europe/London 2011-07-31
-2642404 Mobberley Mobberley Mobberley 53.31667 -2.31667 P PPLA3 GB ENG Z7 00EQ087 0 58 Europe/London 2011-07-31
-2642410 Mitchel Troy Mitchel Troy 51.78728 -2.73731 P PPLA3 GB WLS Y4 00PP024 0 50 Europe/London 2011-07-31
-2642412 Mitcheldean Mitcheldean Milcheldean,Mitcheldean 51.8644 -2.4895 P PPL GB ENG E6 23UD 2148 154 Europe/London 2011-03-03
-2642416 Mistley Mistley Mistley 51.94331 1.08254 P PPL GB ENG E4 22UN 1722 17 Europe/London 2010-08-03
-2642417 Misterton Misterton Misterton 53.45 -0.85 P PPL GB ENG J9 37UC 2060 12 Europe/London 2012-01-17
-2642423 Mirfield Mirfield 53.67343 -1.69636 P PPLA3 GB ENG G8 00CZ005 18800 47 Europe/London 2011-07-31
-2642430 Mintlaw Mintlaw 57.52414 -2.00099 P PPL GB SCT T6 2673 54 Europe/London 2011-03-03
-2642448 Minety Minety 51.61667 -1.95 P PPLA3 GB ENG P8 00HY162 0 91 Europe/London 2011-07-31
-2642450 Minehead Minehead Minehead 51.20565 -3.47875 P PPL GB ENG M3 40UF 11960 20 Europe/London 2011-03-03
-2642452 Minchinhampton Minchinhampton Minchinhampton 51.70675 -2.18502 P PPL GB ENG E6 23UF 2500 191 Europe/London 2011-03-03
-2642465 Milton Keynes Milton Keynes MK,Milton Keynes,Milton-Kins,Милтон-Кинс 52.04172 -0.75583 P PPLA2 GB ENG I6 184506 114 Europe/London 2010-10-16
-2642470 Milton Bryan Milton Bryan 51.95 -0.58333 P PPLA3 GB ENG Z6 00KC048 0 136 Europe/London 2011-07-31
-2642480 Milston Milston 51.20621 -1.76901 P PPLA3 GB ENG P8 00HY160 0 77 Europe/London 2011-07-31
-2642482 Milnthorpe Milnthorpe Milnthorpe 54.21667 -2.76667 P PPL GB ENG C9 16UG 2153 39 Europe/London 2012-02-01
-2642483 Milnrow Milnrow 53.61115 -2.11266 P PPL GB ENG L2 00BP002 13061 148 Europe/London 2011-03-03
-2642484 Milngavie Milngavie Milguy,Milngavie 55.94071 -4.32311 P PPL GB SCT U5 12999 66 Europe/London 2011-03-03
-2642486 Milnathort Milnathort Milnathort 56.22688 -3.4193 P PPL GB SCT W1 1885 118 Europe/London 2011-03-03
-2642503 Millport Millport 55.75348 -4.92559 P PPL GB SCT V7 1260 6 Europe/London 2011-03-03
-2642505 Millom Millom 54.21072 -3.272 P PPL GB ENG C9 16UE 6239 12 Europe/London 2011-03-03
-2642511 Millisle Millisle 54.60638 -5.52973 P PPL GB NIR 00 1914 14 Europe/London 2007-04-13
-2642512 Millington Millington 53.95 -0.73333 P PPLA3 GB ENG E1 00FB096 0 91 Europe/London 2011-07-31
-2642525 Millbrook Millbrook 52.03882 -0.52438 P PPLA3 GB ENG Z6 00KC047 0 82 Europe/London 2011-07-31
-2642526 Millbrook Millbrook 50.36667 -4.18333 P PPLA3 GB ENG C6 00HE091 0 5 Europe/London 2011-07-31
-2642533 Milford on Sea Milford on Sea Milford,Milford on Sea 50.72561 -1.59004 P PPL GB ENG F2 24UJ 4323 7 Europe/London 2011-03-03
-2642534 Milford Haven Milford Haven Aberdaugleddau,Milford,Milford Haven 51.71278 -5.0341 P PPL GB WLS Y7 00NS045 12972 33 Europe/London 2011-03-03
-2642537 Milford Milford 51.17272 -0.65042 P PPL GB ENG N7 43UL 6220 57 Europe/London 2011-02-14
-2642544 Mildenhall Mildenhall Cunetio 51.4256 -1.69988 P PPLA3 GB ENG P8 00HY159 11535 133 Europe/London 2012-03-30
-2642549 Milborne Port Milborne Port 50.96605 -2.46248 P PPL GB ENG M3 40UD 2703 82 Europe/London 2011-03-03
-2642557 Midsomer Norton Midsomer Norton 51.28567 -2.48591 P PPL GB ENG A4 00HA033 10458 95 Europe/London 2012-03-29
-2642567 Midhurst Midhurst Midhurst 50.98559 -0.74003 P PPL GB ENG P6 45UD 6256 33 Europe/London 2011-02-16
-2642573 Middlewich Middlewich Middlewick 53.19296 -2.44402 P PPL GB ENG Z7 00EQ084 13393 30 Europe/London 2011-03-03
-2642593 Middleton Middleton 53.55 -2.2 P PPL GB ENG 00 45589 87 Europe/London 2006-01-17
-2642603 Middlestown Middlestown Middlestown,Middletown 53.65079 -1.59762 P PPL GB ENG 45 00DB019 2402 109 Europe/London 2011-03-03
-2642607 Middlesbrough Middlesbrough Middlebrough,Middlesborough,Middlesbrough,Midulsbro,mydlsbrw,Мидълсбро,מידלסברו 54.57623 -1.23483 P PPLA2 GB ENG I5 00EF019 142707 15 Europe/London 2011-03-03
-2642632 Mid Calder Mid Calder Mid Calder 55.89261 -3.48002 P PPL GB SCT 00 2954 110 Europe/London 2010-08-03
-2642637 Mickle Trafford Mickle Trafford 53.22146 -2.83225 P PPL GB ENG Z8 00EW109 1872 17 Europe/London 2011-03-03
-2642638 Mickleton Mickleton 54.60807 -2.04998 P PPLA3 GB ENG D8 00EJ074 0 241 Europe/London 2011-07-31
-2642639 Mickleton Mickleton 52.08333 -1.76667 P PPL GB ENG E6 23UC 1554 94 Europe/London 2010-05-24
-2642683 Mexborough Mexborough Mexborough 53.49389 -1.29243 P PPL GB ENG D5 00CE017 15079 28 Europe/London 2011-03-03
-2642687 Mevagissey Mevagissey Mevagissey,Mevegissey 50.27324 -4.79166 P PPL GB ENG C6 00HE089 2270 10 Europe/London 2011-03-03
-2642691 Methven Methven 56.41512 -3.58273 P PPL GB SCT W1 1161 66 Europe/London 2011-03-03
-2642695 Metheringham Metheringham 53.14015 -0.40368 P PPL GB ENG H7 32UE 3459 20 Europe/London 2011-03-03
-2642697 Messingham Messingham 53.52828 -0.65385 P PPL GB ENG J3 00FD037 3565 34 Europe/London 2011-03-03
-2642705 Merthyr Tydfil Merthyr Tydfil M"rt"r Tidfil,Merthyr Tudful,Merthyr Tydfil,Mertir Tidfil,Mertir Tidvil,Mertyr Tydfil,Мертир Тидвил,Мертир Тидфил,Мъртър Тидфил 51.74794 -3.37779 P PPLA2 GB WLS Y3 00PH009 30821 186 Europe/London 2011-03-03
-2642727 Meriden Meriden 52.4377 -1.64366 P PPLA3 GB ENG M2 00CT011 1841 121 Europe/London 2011-07-31
-2642729 Mere Mere 53.33333 -2.41667 P PPLA3 GB ENG Z7 00EQ083 0 68 Europe/London 2011-07-31
-2642730 Mere Mere 51.08889 -2.26694 P PPLA3 GB ENG P8 00HY158 0 105 Europe/London 2011-07-31
-2642731 Meppershall Meppershall 52.01713 -0.33991 P PPLA3 GB ENG Z6 00KC046 1584 71 Europe/London 2011-07-31
-2642733 Meopham Meopham 51.36844 0.36007 P PPL GB ENG G5 29UG 4361 137 Europe/London 2011-02-12
-2642743 Menston Menston 53.89041 -1.74395 P PPL GB ENG B4 00CX015 4764 144 Europe/London 2011-03-03
-2642755 Menai Bridge Menai Bridge Menai,Menai Bridge,Porthaethwy 53.22775 -4.16926 P PPL GB WLS X1 00NA030 4790 34 Europe/London 2011-03-03
-2642763 Melton Mowbray Melton Mowbray Melton Mowbray 52.76588 -0.88693 P PPL GB ENG H5 31UG 26405 79 Europe/London 2011-03-03
-2642766 Meltham Meltham 53.58333 -1.85 P PPLA3 GB ENG G8 00CZ004 7546 232 Europe/London 2011-07-31
-2642769 Melrose Melrose Melrose 55.59969 -2.7277 P PPL GB SCT T9 1640 97 Europe/London 2010-08-03
-2642782 Melling Melling 53.48333 -2.91667 P PPLA3 GB ENG L8 00CA006 0 19 Europe/London 2011-07-31
-2642786 Melksham Melksham Melksham 51.37281 -2.14002 P PPL GB ENG P8 00HY156 14692 41 Europe/London 2011-03-03
-2642792 Meldreth Meldreth 52.09396 0.00807 P PPL GB ENG C3 12UG 1678 24 Europe/London 2010-05-24
-2642793 Meldon Meldon 55.13333 -1.8 P PPLA3 GB ENG J6 00EM105 0 118 Europe/London 2011-07-31
-2642800 Melbourne Melbourne 53.88755 -0.85925 P PPLA3 GB ENG E1 00FB094 0 10 Europe/London 2011-07-31
-2642801 Melbourne Melbourne 52.8219 -1.42522 P PPL GB ENG D3 17UK 4404 57 Europe/London 2011-02-15
-2642802 Melbourn Melbourn Melborn,Melbourn 52.08128 0.01514 P PPL GB ENG C3 12UG 4394 27 Europe/London 2011-03-03
-2642843 Measham Measham Measham 52.70644 -1.50637 P PPL GB ENG H5 31UE 4957 105 Europe/London 2011-03-03
-2642876 Mayfield Mayfield 53 -1.76667 P PPL GB ENG M9 41UC 2158 113 Europe/London 2010-05-24
-2642882 Maybole Maybole Maybole 55.35503 -4.68026 P PPL GB SCT W4 4447 84 Europe/London 2011-03-03
-2642902 Maulden Maulden 52.03063 -0.46975 P PPLA3 GB ENG Z6 00KC045 2306 78 Europe/London 2011-07-31
-2642904 Mauchline Mauchline Mauchline 55.51604 -4.37928 P PPL GB SCT U4 4137 145 Europe/London 2011-03-03
-2642905 Mattishall Mattishall Mattishall 52.65905 1.0325 P PPL GB ENG I9 33UB 2428 50 Europe/London 2011-03-03
-2642910 Matlock Matlock 53.13838 -1.5556 P PPLA2 GB ENG D3 17UF 11516 97 Europe/London 2011-03-07
-2642911 Mathry Mathry Mathry 51.94639 -5.08667 P PPLA3 GB WLS Y7 00NS043 0 126 Europe/London 2011-07-31
-2642927 Maryport Maryport Maryport 54.71434 -3.49509 P PPL GB ENG C9 16UB 9854 11 Europe/London 2011-03-03
-2642947 Martock Martock 50.97361 -2.76684 P PPL GB ENG M3 40UD 4405 21 Europe/London 2011-03-03
-2642959 Martham Martham Martham 52.70464 1.63636 P PPL GB ENG I9 33UD 3089 8 Europe/London 2011-03-03
-2642962 Marstow Marstow 51.86667 -2.65 P PPLA3 GB ENG F7 00GA146 0 47 Europe/London 2011-07-31
-2642963 Marston Moretaine Marston Moretaine 52.0641 -0.54932 P PPLA3 GB ENG Z6 00KC044 3109 44 Europe/London 2011-07-31
-2642970 Marston Marston 53.26667 -2.5 P PPLA3 GB ENG Z8 00EW108 0 16 Europe/London 2011-07-31
-2642974 Marske-by-the-Sea Marske-by-the-Sea Marske,Marske by the Sea,Marske-by-the-Sea 54.59147 -1.01959 P PPL GB ENG K9 00EE004 9120 22 Europe/London 2011-03-03
-2642980 Marshfield Marshfield Marshfield,Marshfields 51.53389 -3.07306 P PPLA3 GB WLS Y6 00PR016 2665 8 Europe/London 2011-07-31
-2642981 Marshfield Marshfield 51.46194 -2.32 P PPLA3 GB ENG M6 00HD024 0 186 Europe/London 2011-07-31
-2642992 Marsden Marsden 53.6 -1.91667 P PPL GB ENG 00 3577 251 Europe/London 2006-01-17
-2642998 Marr Marr 53.54296 -1.22051 P PPLA3 GB ENG D5 00CE030 138 53 Europe/London 2011-07-31
-2642999 Marple Marple 53.39452 -2.06292 P PPL GB ENG N2 00EQ047 18886 147 Europe/London 2011-03-03
-2643003 Marlow Marlow Great Marlow,Marlow 51.56933 -0.77415 P PPL GB ENG B9 11UF 17912 32 Europe/London 2010-08-03
-2643009 Marldon Marldon 50.45512 -3.59678 P PPL GB ENG D4 18UG 1838 149 Europe/London 2011-03-03
-2643010 Marlborough Marlborough 51.42062 -1.72751 P PPLA3 GB ENG P8 00HY153 7885 128 Europe/London 2011-07-31
-2643011 Markyate Markyate Markyate,Markyatestreet 51.83846 -0.46345 P PPL GB ENG F8 26UC 2826 133 Europe/London 2011-03-03
-2643012 Marks Tey Marks Tey 51.87628 0.76424 P PPL GB ENG E4 22UG 3679 42 Europe/London 2010-05-24
-2643016 Markinch Markinch Markinch 56.20214 -3.13517 P PPL GB SCT V1 2309 69 Europe/London 2011-03-03
-2643019 Markfield Markfield Markfield 52.68747 -1.27476 P PPL GB ENG H5 31UE 5080 179 Europe/London 2010-08-03
-2643021 Market Weighton Market Weighton 53.8631 -0.66505 P PPL GB ENG E1 00FB093 4712 26 Europe/London 2011-03-03
-2643023 Market Rasen Market Rasen Market Rasen 53.38764 -0.33781 P PPL GB ENG H7 32UH 3569 28 Europe/London 2011-03-03
-2643024 Market Overton Market Overton Market Overton 52.73806 -0.6863 P PPLA3 GB ENG L4 00FP033 0 145 Europe/London 2011-07-31
-2643025 Market Lavington Market Lavington Lavington,Market Lavington 51.28756 -1.97729 P PPL GB ENG P8 00HY152 1963 93 Europe/London 2011-03-03
-2643027 Market Harborough Market Harborough Market Harborough 52.4776 -0.92053 P PPL GB ENG H5 31UD 20575 81 Europe/London 2011-03-03
-2643028 Market Drayton Market Drayton 52.90538 -2.49012 P PPLA3 GB ENG L6 00GG117 10639 105 Europe/London 2011-07-31
-2643029 Market Deeping Market Deeping 52.67654 -0.31629 P PPL GB ENG H7 32UG 13891 10 Europe/London 2010-05-24
-2643030 Market Bosworth Market Bosworth 52.62428 -1.40174 P PPL GB ENG H5 31UE 1948 134 Europe/London 2010-05-24
-2643039 Marholm Marholm 52.60469 -0.30824 P PPLA3 GB ENG K3 00JA012 0 19 Europe/London 2011-07-31
-2643044 Margate Margate Margate 51.38132 1.38617 P PPL GB ENG G5 60134 24 Europe/London 2010-08-03
-2643060 Marden Marden Marden 51.17482 0.48855 P PPL GB ENG G5 29UH 2466 22 Europe/London 2011-02-03
-2643064 Marchwood Marchwood Marchwood 50.88966 -1.4544 P PPL GB ENG F2 24UJ 5710 10 Europe/London 2011-02-22
-2643070 Marcham Marcham Marcham 51.66862 -1.34428 P PPL GB ENG K2 38UE 1696 63 Europe/London 2010-08-03
-2643071 March March 52.55131 0.08828 P PPL GB ENG C3 12UD 18442 3 Europe/London 2010-05-24
-2643076 Marazion Marazion Marazion,Marghas Yow 50.12556 -5.47505 P PPLA3 GB ENG C6 00HE083 0 17 Europe/London 2011-07-31
-2643079 Mappleton Mappleton Mapleton,Mappleton 53.87687 -0.13664 P PPLA3 GB ENG E1 00FB092 0 19 Europe/London 2011-07-31
-2643089 Manton Manton 53.51667 -0.6 P PPLA3 GB ENG J3 00FD035 0 24 Europe/London 2011-07-31
-2643090 Manton Manton 52.63223 -0.70038 P PPLA3 GB ENG L4 00FP032 0 119 Europe/London 2011-07-31
-2643095 Manston Manston 50.95 -2.26667 P PPL GB ENG D6 19UE 5261 51 Europe/London 2010-05-24
-2643096 Mansfield Woodhouse Mansfield Woodhouse 53.16495 -1.19384 P PPL GB ENG J9 37UF 18330 88 Europe/London 2011-03-03
-2643097 Mansfield Mansfield Mansfield,Mehnsfild,Мэнсфилд 53.13333 -1.2 P PPL GB ENG J9 37UF 70447 122 Europe/London 2012-01-17
-2643104 Manorbier Manorbier Manorbier 51.64583 -4.79583 P PPLA3 GB WLS Y7 00NS039 0 38 Europe/London 2011-07-31
-2643107 Manningtree Manningtree 51.94538 1.06112 P PPL GB ENG E4 22UN 5753 8 Europe/London 2010-05-24
-2643116 Mangotsfield Mangotsfield 51.4878 -2.50403 P PPL GB ENG M6 00HD045 36427 74 Europe/London 2011-03-03
-2643121 Manea Manea 52.48304 0.17857 P PPL GB ENG C3 12UD 1614 4 Europe/London 2010-05-24
-2643123 Manchester Manchester MAN,Mamucium,Manceinion,Mancesteris,Manchain,Manchester,Manchestur,Mančesteris,man che si te,manchesuta,mantshstr,mnchstr,mnz'str,Манчестер,Манчестър,מנצ'סטר,مانتشستر,مانچېستېر,منچستر,แมนเชสเตอร์,მანჩესტერი,マンチェスター,曼彻斯特 53.48095 -2.23743 P PPLA2 GB ENG I2 395515 51 Europe/London 2011-06-16
-2643142 Malton Malton Malton 54.13454 -0.79669 P PPL GB ENG J7 36UF 5135 24 Europe/London 2011-03-03
-2643144 Maltby Maltby 53.41667 -1.2 P PPLA3 GB ENG L3 00CF029 18380 90 Europe/London 2011-07-31
-2643145 Malpas Malpas 53.01667 -2.76667 P PPLA3 GB ENG Z8 00EW105 0 100 Europe/London 2011-07-31
-2643146 Malmesbury Malmesbury Malmesbury,Malmsbury 51.58175 -2.09708 P PPL GB ENG P8 00HY149 5207 82 Europe/London 2011-03-03
-2643160 Maldon Maldon Malden,Maldon,Meldona,Мелдона 51.7311 0.67463 P PPL GB ENG E4 22UK 21193 34 Europe/London 2010-08-03
-2643172 Mainstone Mainstone 52.48333 -3.08333 P PPLA3 GB ENG L6 00GG116 0 385 Europe/London 2011-07-31
-2643179 Maidstone Maidstone Maidstone,Mejdston,Мейдстон 51.26667 0.51667 P PPLA2 GB ENG G5 29UH 90894 9 Europe/London 2010-10-16
-2643186 Maidenhead Maidenhead Maidenhead 51.52279 -0.71986 P PPLA2 GB ENG P9 59463 32 Europe/London 2010-10-16
-2643196 Magor Magor Magor 51.57944 -2.83139 P PPL GB WLS Y4 5941 10 Europe/London 2012-01-17
-2643198 Maghull Maghull 53.51619 -2.94117 P PPL GB ENG L8 00CA005 22225 22 Europe/London 2012-03-29
-2643205 Magheralin Magheralin 54.46695 -6.2598 P PPL GB NIR 00 1172 38 Europe/London 2007-04-13
-2643208 Magherafelt Magherafelt 54.75356 -6.60656 P PPLA2 GB NIR S7 9157 76 Europe/London 2010-10-16
-2643211 Maghera Maghera 54.8439 -6.67145 P PPL GB NIR 00 4085 74 Europe/London 2007-04-13
-2643216 Maesycwmmer Maesycwmmer Maes y Cwmmer,Maesycwmmer 51.63528 -3.23222 P PPLA3 GB GB WLS X4 00PK014 0 102 Europe/London 2011-07-31
-2643218 Maesteg Maesteg Maesteg 51.60926 -3.65823 P PPL GB WLS X3 00PB012 17829 129 Europe/London 2011-03-03
-2643222 Maerdy Maerdy Maerdy,Mardy 51.67528 -3.48667 P PPLA3 GB GB WLS Y9 00PF016 0 307 Europe/London 2011-07-31
-2643224 Maentwrog Maentwrog Maentwrog 52.946 -3.98787 P PPLA3 GB WLS Y2 00NC050 0 52 Europe/London 2011-07-31
-2643235 Madeley Madeley 52.63333 -2.43333 P PPLA3 GB ENG O2 00GF016 0 107 Europe/London 2011-07-31
-2643247 Macmerry Macmerry 55.94045 -2.90503 P PPL GB SCT 00 1082 95 Europe/London 2011-01-06
-2643251 Machynlleth Machynlleth Machynlleth 52.59097 -3.85051 P PPL GB WLS Y8 00NN080 2171 17 Europe/London 2011-03-03
-2643259 Machen Machen Machen 51.59599 -3.1419 P PPL GB WLS X4 00PK005 2301 55 Europe/London 2011-03-03
-2643262 Macduff Macduff 57.67012 -2.49686 P PPL GB SCT T6 3747 17 Europe/London 2011-03-03
-2643266 Macclesfield Macclesfield 53.26023 -2.12564 P PPL GB ENG Z7 00EQ124 51739 156 Europe/London 2011-03-03
-2643276 Lytchett Matravers Lytchett Matravers Lytchett Matravers 50.75826 -2.07806 P PPL GB ENG D6 19UG 3271 86 Europe/London 2011-03-03
-2643298 Lyneham Lyneham Lyneham 51.51667 -1.96667 P PPL GB ENG P8 5437 120 Europe/London 2012-01-17
-2643304 Lyndhurst Lyndhurst 50.87259 -1.57662 P PPL GB ENG F2 24UJ 2332 47 Europe/London 2011-03-05
-2643309 Lymm Lymm 53.38105 -2.47763 P PPLA3 GB ENG P2 00EU010 9767 29 Europe/London 2011-07-31
-2643312 Lymington Lymington Lymington 50.75767 -1.5443 P PPL GB ENG F2 24UJ 14544 22 Europe/London 2011-03-03
-2643313 Lyminge Lyminge 51.12951 1.08896 P PPL GB ENG G5 29UB 1965 103 Europe/London 2011-03-03
-2643314 Lyme Regis Lyme Regis Lyme Regis 50.72654 -2.93477 P PPL GB ENG D6 19UH 4504 15 Europe/London 2011-03-03
-2643318 Lydney Lydney Lydney 51.72598 -2.52605 P PPL GB ENG E6 23UD 9160 16 Europe/London 2011-03-03
-2643321 Lydiard Tregoze Lydiard Tregoze 51.55 -1.85 P PPLA3 GB ENG P8 00HY146 0 117 Europe/London 2011-07-31
-2643323 Lydham Lydham 52.51476 -2.9797 P PPLA3 GB ENG L6 00GG115 0 182 Europe/London 2011-07-31
-2643327 Lydd Lydd Lydd 50.95226 0.9074 P PPL GB ENG G5 3403 7 Europe/London 2010-08-03
-2643329 Lydbrook Lydbrook Lydbrook 51.83763 -2.57818 P PPL GB ENG E6 23UD 2331 86 Europe/London 2010-08-03
-2643337 Lutterworth Lutterworth Lutterworth 52.45634 -1.20218 P PPL GB ENG H5 31UD 8947 131 Europe/London 2011-03-03
-2643339 Luton Luton Luton,Лутон 51.87967 -0.41748 P PPLA2 GB ENG I1 00KC039 193669 117 Europe/London 2010-10-16
-2643385 Lundin Links Lundin Links Lundin Links 56.2124 -2.95296 P PPL GB SCT V1 2124 25 Europe/London 2011-03-03
-2643390 Lund Lund 53.9192 -0.52211 P PPLA3 GB ENG E1 00FB091 0 38 Europe/London 2011-07-31
-2643391 Luncarty Luncarty 56.45308 -3.47007 P PPL GB SCT W1 1236 27 Europe/London 2011-03-03
-2643425 Ludlow Ludlow Llwydlo,Ludlow 52.37431 -2.71311 P PPL GB ENG L6 00GG113 9761 117 Europe/London 2011-03-03
-2643437 Luddenden Foot Luddenden Foot 53.71873 -1.94582 P PPL GB ENG 00 2283 114 Europe/London 2009-08-26
-2643443 Luckington Luckington Luckington 51.55444 -2.24222 P PPLA3 GB ENG P8 00HY143 0 124 Europe/London 2011-07-31
-2643482 Lowick Lowick 55.63333 -1.96667 P PPLA3 GB ENG J6 00EM102 0 109 Europe/London 2011-07-31
-2643490 Lowestoft Lowestoft Loustoft,Lowestoft,Лоустофт 52.4752 1.75159 P PPL GB ENG N5 42UH 71479 7 Europe/London 2011-03-03
-2643533 Lower Bullingham Lower Bullingham Lower Bullingham 52.03333 -2.7 P PPLA3 GB ENG F7 00GA136 0 56 Europe/London 2011-07-31
-2643543 Lowdham Lowdham 53.01205 -1.00483 P PPL GB ENG J9 37UG 2136 25 Europe/London 2011-03-03
-2643548 Low Ackworth Low Ackworth 53.65023 -1.32334 P PPL GB ENG 45 1500 28 Europe/London 2010-04-02
-2643553 Louth Louth Laut,Louth,Лаут 53.36664 -0.00438 P PPL GB ENG H7 32UC 16635 32 Europe/London 2010-08-03
-2643557 Loughton Loughton 52.03037 -0.78642 P PPLA3 GB ENG I6 00MG019 0 78 Europe/London 2011-07-31
-2643567 Loughborough Loughborough Loughborough 52.76667 -1.2 P PPL GB ENG H5 31UC 59317 49 Europe/London 2012-01-17
-2643583 Lostwithiel Lostwithiel Lostwithiel 50.40784 -4.67023 P PPL GB ENG C6 00HE076 2660 11 Europe/London 2011-03-03
-2643587 Lossiemouth Lossiemouth Lossiemouth 57.72136 -3.28341 P PPL GB SCT V6 6841 22 Europe/London 2011-03-03
-2643618 Longtown Longtown 51.95 -2.98333 P PPLA3 GB ENG F7 00GA135 2064 137 Europe/London 2011-07-31
-2643620 Longton Longton 52.98333 -2.13333 P PPL GB ENG M9 12794 150 Europe/London 2007-06-16
-2643625 Long Sutton Long Sutton Long Sutton 51.21667 -0.93333 P PPL GB ENG F2 24UG 4633 129 Europe/London 2012-01-17
-2643628 Long Stratton Long Stratton Long Stratton 52.48803 1.23478 P PPL GB ENG I9 33UH 3722 42 Europe/London 2011-03-03
-2643646 Longridge Longridge Longridge 53.83333 -2.58333 P PPL GB ENG H2 30UL 7658 110 Europe/London 2012-01-17
-2643651 Longnor Longnor 52.6 -2.75 P PPLA3 GB ENG L6 00GG110 0 124 Europe/London 2011-07-31
-2643652 Longniddry Longniddry Longniddry 55.97543 -2.89593 P PPL GB SCT 00 2482 22 Europe/London 2011-01-06
-2643661 Long Melford Long Melford 52.07481 0.71639 P PPL GB ENG N5 42UB 2795 36 Europe/London 2010-05-24
-2643673 Long Lawford Long Lawford Long Lawford 52.38176 -1.30716 P PPL GB ENG P3 44UD 2745 92 Europe/London 2011-02-23
-2643674 Long Itchington Long Itchington 52.28396 -1.39243 P PPL GB ENG P3 44UE 1777 75 Europe/London 2011-02-23
-2643677 Longhorsley Longhorsley 55.24586 -1.76914 P PPLA3 GB ENG J6 00EM100 0 122 Europe/London 2011-07-31
-2643696 Longfield Longfield 51.3969 0.30212 P PPL GB ENG G5 29UD 16808 58 Europe/London 2011-02-05
-2643697 Long Eaton Long Eaton Long Eaton 52.89855 -1.27136 P PPL GB ENG D3 17UG 47898 34 Europe/London 2011-03-03
-2643704 Longdendale Longdendale 53.46667 -2 P PPL GB ENG 00 8873 203 Europe/London 2006-01-17
-2643707 Long Crendon Long Crendon Long Crendon 51.77294 -0.99684 P PPL GB ENG B9 11UB 2436 108 Europe/London 2011-02-16
-2643714 Long Buckby Long Buckby 52.3026 -1.08113 P PPL GB ENG J1 34UC 3911 141 Europe/London 2011-03-03
-2643720 Long Bennington Long Bennington 52.99314 -0.75803 P PPL GB ENG H7 32UG 1884 32 Europe/London 2011-03-03
-2643726 Long Ashton Long Ashton 51.42997 -2.66098 P PPL GB ENG J4 00HC023 4032 56 Europe/London 2011-03-03
-2643734 Londonderry County Borough Londonderry County Borough 54.99721 -7.30917 P PPLX GB NIR 00 87153 24 Europe/London 2007-04-13
-2643736 Derry Derry Derri,Derry,Derry / Londonderry,Derry City,Dhoire,Doire,Doire Choluim Chille,Ker Dherow,Londonderry,dry,rondonderi,Дерри,דרי,ロンドンデリー 54.9981 -7.30934 P PPLA2 GB GB NIR S6 83652 24 Europe/London 2010-10-16
-2643741 City of London City of London Ker Londrez,Kêr Londrez 51.51279 -0.09184 P PPLX GB ENG GLA H9 7556900 27 Europe/London 2011-12-03
-2643743 London London City of London,LON,Ljondan,Llundain,Londain,Londan,Londe,Londen,Londinium,Londino,London,London City,Londona,Londonas,Londoni,Londono,Londra,Londres,Londres - London,Londrez,Londyn,Londýn,Lontoo,Loundres,Luan GJon,Lunden,Lundunir,Lundúnir,Lunnainn,Lunnon,Luân Đôn,The City,ilantan,landana,leondeon,lndn,londoni,lun dun,lwndwn,lxndxn,rondon,Λονδίνο,Лондан,Лондон,Лёндан,Լոնդոն,לאנדאן,לונדון,لندن,لوندون,ܠܘܢܕܘܢ,लंडन,लंदन,লন্ডন,લંડન,இலண்டன்,ลอนดอน,ლონდონი,ለንደን,ロンドン,伦敦,런던 51.50853 -0.12574 P PPLC GB ENG GLA P5 7556900 25 Europe/London 2012-02-10
-2643745 Londesborough Londesborough 53.88333 -0.68333 P PPLA3 GB ENG E1 00FB090 0 34 Europe/London 2011-07-31
-2643773 Loftus Loftus 54.55543 -0.89459 P PPL GB ENG K9 00EE003 5606 75 Europe/London 2011-03-03
-2643776 Lofthouse Lofthouse 53.72947 -1.49697 P PPL GB ENG 00 23458 85 Europe/London 2008-06-24
-2643783 Loddon Loddon Loddon 52.5327 1.48183 P PPL GB ENG I9 33UH 3532 14 Europe/London 2011-03-03
-2643788 Lockington Lockington 53.91415 -0.48572 P PPLA3 GB ENG E1 00FB089 0 16 Europe/London 2011-07-31
-2643791 Lockerbie Lockerbie Lockerbie,Lokerbi,lwkrby,lxk ke xrbi,lxkh ke xrbi,Локерби,لوكربي,ล็อกเกอร์บี,ล็อคเกอร์บี 55.12302 -3.35635 P PPL GB SCT U2 16UB 3985 85 Europe/London 2011-03-03
-2643797 Lochwinnoch Lochwinnoch Lochwinnoch 55.79521 -4.63034 P PPL GB SCT W2 2684 36 Europe/London 2011-03-03
-2643812 Lochmaben Lochmaben Lochmaben 55.13011 -3.44286 P PPL GB SCT U2 1910 57 Europe/London 2011-03-03
-2643825 Lochgilphead Lochgilphead 56.03796 -5.43206 P PPLA2 GB SCT T8 2272 8 Europe/London 2011-03-03
-2643827 Lochgelly Lochgelly Lochgelly 56.12826 -3.30964 P PPL GB SCT V1 6586 143 Europe/London 2011-03-03
-2643853 Locharbriggs Locharbriggs Locharbriggs 55.10337 -3.58438 P PPL GB SCT U2 6333 21 Europe/London 2011-03-03
-2643862 Loanhead Loanhead Loanhead 55.87945 -3.15874 P PPL GB SCT 00 6358 152 Europe/London 2010-08-03
-2643867 Llysfaen Llysfaen Llysfaen 53.28333 -3.66667 P PPLA3 GB WLS X8 00NE028 0 173 Europe/London 2011-07-31
-2643889 Lledrod Lledrod Llanfihangel Lledrod,Lledrod 52.3 -3.98333 P PPLA3 GB GB WLS X6 00NQ036 0 204 Europe/London 2011-07-31
-2643913 Llanwnda Llanwnda Llanwnda 53.09959 -4.27832 P PPLA3 GB WLS Y2 00NC047 0 56 Europe/London 2011-07-31
-2643915 Llanwinio Llanwinio Llanwinio 51.90861 -4.53056 P PPLA3 GB WLS X7 00NU055 0 184 Europe/London 2011-07-31
-2643916 Llanwern Llanwern Llanwern 51.58889 -2.91361 P PPLA3 GB WLS Y6 00PR014 0 9 Europe/London 2011-07-31
-2643925 Llanveynoe Llanveynoe 51.96667 -3 P PPLA3 GB ENG F7 00GA133 0 251 Europe/London 2011-07-31
-2643929 Llanvaches Llanvaches Llanvaches 51.62111 -2.81833 P PPLA3 GB WLS Y6 00PR013 0 66 Europe/London 2011-07-31
-2643933 Llantwit Major Llantwit Major Llanilltud Fawr,Llantwit Major 51.4107 -3.48632 P PPL GB WLS Z3 00PD012 13514 48 Europe/London 2011-03-03
-2643934 Llantwit Fardre Llantwit Fardre Llanilltud Faerdref,Llantwit Fardre,Llantwitt-fardre,Llantwitvairdre 51.5546 -3.33241 P PPL GB WLS Y9 00PF013 3992 76 Europe/London 2011-03-03
-2643937 Llantrisant Llantrisant Llantrisant,Llantrissant 51.54028 -3.37389 P PPLA3 GB WLS Y9 00PF012 11001 101 Europe/London 2011-07-31
-2643942 Llansteffan Llansteffan Llansteffan,Llanstephan 51.77222 -4.39139 P PPLA3 GB GB WLS X7 00NU054 0 32 Europe/London 2011-07-31
-2643947 Llansawel Llansawel 52 -4.01667 P PPLA3 GB WLS X7 00NU053 0 169 Europe/London 2011-07-31
-2643951 Llansantffraid Glan Conwy Llansantffraid Glan Conwy Llansantffraid,Llansantffraid-Glan-Conway 53.26667 -3.8 P PPL GB WLS 90 1862 1 Europe/London 2006-01-17
-2643955 Llansadwrn Llansadwrn Llansadwrn 51.95 -3.9 P PPLA3 GB WLS X7 00NU052 0 54 Europe/London 2011-07-31
-2643957 Llanrwst Llanrwst Llanrwst,Llanwrst 53.14021 -3.79527 P PPL GB WLS X8 00NE025 3071 17 Europe/London 2011-03-03
-2643958 Llanrug Llanrug 53.1487 -4.1952 P PPL GB WLS Y2 00NC046 1842 119 Europe/London 2011-03-03
-2643959 Llanrothal Llanrothal 51.86667 -2.76667 P PPLA3 GB ENG F7 00GA132 0 57 Europe/London 2011-07-31
-2643960 Llanrhian Llanrhian Llanrhian,Llanrian 51.9375 -5.17389 P PPLA3 GB GB WLS Y7 00NS035 0 56 Europe/London 2011-07-31
-2643979 Llanllwchaiarn Llanllwchaiarn 52.18333 -4.36667 P PPLA3 GB WLS X6 00NQ031 0 149 Europe/London 2011-07-31
-2643990 Llanidloes Llanidloes Llanidloes 52.44977 -3.53997 P PPL GB WLS Y8 00NN069 2838 169 Europe/London 2011-03-03
-2643993 Llanharry Llanharry Llanharry,Llanhary 51.51422 -3.4324 P PPL GB WLS Y9 00PF011 2550 90 Europe/London 2011-03-03
-2643994 Llanharan Llanharan 51.53805 -3.43906 P PPL GB WLS Y9 00PF010 5755 76 Europe/London 2011-03-03
-2643997 Llangynog Llangynog 52.83333 -3.4 P PPLA3 GB WLS Y8 00NN068 0 515 Europe/London 2011-07-31
-2644006 Llangybi Llangybi 52.15 -4.05 P PPLA3 GB WLS X6 00NQ028 0 134 Europe/London 2011-07-31
-2644010 Llangwm Llangwm Llangwm,Llangwm-isaf 51.69611 -2.83 P PPLA3 GB GB WLS Y4 00PP015 0 52 Europe/London 2011-07-31
-2644011 Llangwm Llangwm 52.98333 -3.53333 P PPLA3 GB WLS X8 00NE023 0 409 Europe/London 2011-07-31
-2644021 Llangollen Llangollen Llangollen 52.96829 -3.17127 P PPLA3 GB WLS X9 00NG026 2962 99 Europe/London 2011-07-31
-2644022 Llangoed Llangoed Llangoed 53.28333 -4.08333 P PPLA3 GB WLS X1 00NA025 0 18 Europe/London 2011-07-31
-2644025 Llangybi Llangybi Llangibby,Llangybi 51.66583 -2.90806 P PPLA3 GB GB WLS Y4 00PP016 0 26 Europe/London 2011-07-31
-2644037 Llangefni Llangefni 53.25561 -4.31063 P PPLA2 GB WLS X1 00NA024 4361 15 Europe/London 2011-03-03
-2644042 Llangathen Llangathen Llangathen 51.87972 -4.05611 P PPLA3 GB WLS X7 00NU041 0 103 Europe/London 2011-07-31
-2644044 Llangan Llangan 51.48694 -3.50056 P PPLA3 GB WLS Z3 00PD010 0 42 Europe/London 2011-07-31
-2644046 Llangain Llangain Llangain 51.81833 -4.3475 P PPLA3 GB WLS X7 00NU040 0 97 Europe/London 2011-07-31
-2644052 Llanfynydd Llanfynydd Llanfyndd,Llanfynydd 51.92806 -4.09889 P PPLA3 GB GB WLS X7 00NU038 0 157 Europe/London 2011-07-31
-2644053 Llanfyllin Llanfyllin 52.7657 -3.27187 P PPLA3 GB WLS Y8 00NN059 0 126 Europe/London 2011-07-31
-2644075 Llanfechain Llanfechain Llanfechain,Llanfechan 52.77463 -3.20273 P PPLA3 GB WLS Y8 00NN054 0 95 Europe/London 2011-07-31
-2644080 Llanfairpwllgwyngyll Llanfairpwllgwyngyll Lanfairpwll,Llanfair Pwllgwyngyll,Llanfairpwllgwyngyll,Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch,Llanfairpwllgwyngyllgogerychwyrndrobwyll-llantysiliogogogoch,Llanvajr Pullgvingill,laenbaieopuheulgwingiheul,lan wei er pu er gu yin ji er ge ge li hui er en de luo bu er lan di xi li ao ge ge ge he,Лланвайр Пуллгвингилл,ランヴァイル・プルグウィンギル・ゴゲリフウィルンドロブル・ランティシリオゴゴゴホ,兰韦尔普尔古因吉尔戈格里惠尔恩德罗布尔兰蒂西利奥戈戈戈赫,랜바이어푸흘귄기흘 53.22141 -4.20329 P PPL GB WLS X1 00NA021 3074 42 Europe/London 2011-03-03
-2644081 Llanfairfechan Llanfairfechan Llanfairfechan 53.25779 -3.97423 P PPL GB WLS X8 00NE019 3694 22 Europe/London 2011-03-03
-2644086 Llanfair Llanfair 52.84415 -4.11541 P PPLA3 GB WLS Y2 00NC037 0 78 Europe/London 2011-07-31
-2644087 Llanfaethlu Llanfaethlu Llanfaethlu,Llanfaethly 53.3524 -4.53418 P PPLA3 GB WLS X1 00NA019 0 73 Europe/London 2011-07-31
-2644093 Llanfachraeth Llanfachraeth Llanfachraeth,Llanfachreth 53.31206 -4.53092 P PPLA3 GB WLS X1 00NA017 0 10 Europe/London 2011-07-31
-2644100 Llanelli Llanelli Llanelli,Llanelly,Лланелли 51.68195 -4.16191 P PPL GB WLS X7 00NU032 47206 13 Europe/London 2011-03-03
-2644115 Llandybie Llandybie Llandebie,Llandybie 51.82044 -4.0071 P PPL GB WLS X7 00NU028 2664 60 Europe/London 2011-03-03
-2644120 Llandudno Llandudno Llandudno 53.32498 -3.83148 P PPLA3 GB WLS X8 00NE018 15037 10 Europe/London 2011-07-31
-2644122 Llandrindod Wells Llandrindod Wells 52.24164 -3.37868 P PPLA2 GB WLS Y8 00NN047 5350 216 Europe/London 2011-03-03
-2644124 Llandrillo Llandrillo 52.92277 -3.4376 P PPLA3 GB WLS X9 00NG021 0 162 Europe/London 2011-07-31
-2644125 Llanddowror Llanddowror Llanddowror,Llandowror 51.80167 -4.53139 P PPLA3 GB GB WLS X7 00NU025 0 9 Europe/London 2011-07-31
-2644127 Llandovery Llandovery Llandovery,Llanymddyfri 51.99415 -3.79637 P PPL GB WLS X7 00NU027 2260 68 Europe/London 2011-03-03
-2644135 Llandeilo Llandeilo Llandeilo,Llandilo 51.88459 -3.99154 P PPL GB WLS X7 00NU026 1750 59 Europe/London 2011-03-03
-2644138 Llandegla Llandegla Llandegla 53.05901 -3.19882 P PPLA3 GB WLS X9 00NG020 0 271 Europe/London 2011-07-31
-2644155 Llanddeusant Llanddeusant Llanddausaint,Llanddeusant 51.9 -3.78333 P PPLA3 GB GB WLS X7 00NU024 0 193 Europe/London 2011-07-31
-2644158 Llanddarog Llanddarog 51.82722 -4.17444 P PPLA3 GB WLS X7 00NU023 0 114 Europe/London 2011-07-31
-2644162 Llancillo Llancillo 51.91667 -2.93333 P PPLA3 GB ENG F7 00GA129 0 106 Europe/London 2011-07-31
-2644167 Llanbradach Llanbradach Llanbradach 51.60639 -3.23028 P PPL GB WLS X4 3699 95 Europe/London 2012-01-17
-2644168 Llanboidy Llanboidy Llanboidy 51.87889 -4.59278 P PPLA3 GB WLS X7 00NU022 0 92 Europe/London 2011-07-31
-2644172 Llanberis Llanberis Llanberis 53.11922 -4.13017 P PPLA3 GB WLS Y2 00NC029 1862 131 Europe/London 2011-07-31
-2644176 Llanbedr Llanbedr Llanbedr 52.81667 -4.1 P PPLA3 GB WLS Y2 00NC027 0 66 Europe/London 2011-07-31
-2644180 Llanbadoc Llanbadoc Llanbaddock,Llanbadoc 51.695 -2.90361 P PPLA3 GB GB WLS Y4 00PP011 0 17 Europe/London 2011-07-31
-2644187 Llanarth Llanarth 52.18333 -4.3 P PPLA3 GB WLS X6 00NQ015 0 164 Europe/London 2011-07-31
-2644188 Llanarth Llanarth 51.78333 -2.9 P PPLA3 GB WLS Y4 00PP010 0 51 Europe/London 2011-07-31
-2644204 Livingston Livingston Livingston,Ливингстон 55.90288 -3.52261 P PPLA2 GB SCT W9 53798 157 Europe/London 2011-03-03
-2644210 Liverpool Liverpool LPL,Learpholl,Lerpwl,Liberpoul,Liverpool,Liverpul,Liverpul',Liverpule,Liverpulis,Liverpūle,Livurpul,Poll a' Ghruthain,li wu pu,libeopul,liwexrphul,lybrpwl,lyfrbwl,lywrpwl,rivu~apuru,Λίβερπουλ,Ливерпул,Ливерпуль,Ливърпул,ליברפול,لىۋېرپۇل,ليفربول,لیورپول,ܠܝܒܪܦܘܠ,ลิเวอร์พูล,ლივერპული,リヴァプール,利物浦,리버풀 53.41058 -2.97794 P PPLA2 GB ENG H8 468945 30 Europe/London 2011-06-16
-2644268 Littleport Littleport 52.45784 0.30603 P PPL GB ENG C3 6877 7 Europe/London 2010-01-08
-2644271 Little Paxton Little Paxton Little Paxton 52.25045 -0.25801 P PPL GB ENG C3 12UE 3073 16 Europe/London 2010-08-03
-2644299 Little Lever Little Lever 53.55 -2.36667 P PPL GB ENG 00 11329 89 Europe/London 2006-01-17
-2644307 Little Houghton Little Houghton 53.54576 -1.35999 P PPLA3 GB ENG A3 00CC010 0 50 Europe/London 2011-07-31
-2644319 Littlehampton Littlehampton Littlehampton 50.80691 -0.53782 P PPL GB ENG P6 45UC 58714 4 Europe/London 2010-08-03
-2644333 Little Eaton Little Eaton Little Eaton 52.97028 -1.4595 P PPL GB ENG D3 17UG 2060 59 Europe/London 2011-03-03
-2644350 Little Clacton Little Clacton 51.82557 1.14215 P PPL GB ENG E4 22UN 2826 22 Europe/London 2010-05-24
-2644378 Little Barford Little Barford 52.19898 -0.2729 P PPLA3 GB ENG Z5 00KB021 0 20 Europe/London 2011-07-31
-2644381 Little Amwell Little Amwell 51.78333 -0.03333 P PPL GB ENG F8 26UD 2606 96 Europe/London 2010-05-24
-2644386 Litherland Litherland Litherland 53.46993 -2.99809 P PPL GB ENG L8 00CA007 22971 22 Europe/London 2011-03-03
-2644398 Liss Liss Liss 51.04396 -0.89393 P PPL GB ENG F2 24UC 6584 63 Europe/London 2011-02-16
-2644400 Lisnaskea Lisnaskea 54.25 -7.45 P PPL GB NIR 00 2895 56 Europe/London 2006-01-17
-2644409 Liskeard Liskeard Liskeard 50.4545 -4.46517 P PPL GB ENG C6 00HE074 8667 129 Europe/London 2011-03-03
-2644411 Lisburn Lisburn Lios na gCearrbhach,Lisbern,Lisburn,Лисберн 54.52337 -6.03527 P PPLA2 GB NIR S5 77506 53 Europe/London 2010-10-16
-2644419 Liphook Liphook Liphook 51.07716 -0.8032 P PPL GB ENG F2 24UC 6165 109 Europe/London 2010-08-03
-2644435 Linton Linton 51.93333 -2.5 P PPLA3 GB ENG F7 00GA123 0 105 Europe/London 2011-07-31
-2644437 Linthwaite Linthwaite Linthwaite 53.62418 -1.85017 P PPL GB ENG 45 3835 190 Europe/London 2010-08-03
-2644444 Linlithgow Linlithgow Linlithgow 55.97639 -3.60364 P PPL GB SCT W9 13863 50 51 Europe/London 2010-08-03
-2644451 Lingwood Lingwood 52.62104 1.48616 P PPL GB ENG I9 33UC 2427 27 Europe/London 2010-05-24
-2644455 Lingfield Lingfield 51.17482 -0.01287 P PPL GB ENG N7 43UK 3081 61 Europe/London 2011-02-06
-2644456 Lingen Lingen 52.3 -2.93333 P PPLA3 GB ENG F7 00GA121 0 152 Europe/London 2011-07-31
-2644487 Lincoln Lincoln Lincoln,Linkol'n,lingkeon,rinkan,Линкольн,リンカン,링컨 53.22683 -0.53792 P PPLA2 GB ENG H7 32UD 89228 9 Europe/London 2011-03-03
-2644495 Limekilns Limekilns Limekilns 56.03336 -3.47713 P PPL GB SCT V1 1329 16 Europe/London 2011-01-06
-2644501 Limavady Limavady Newtown Limavady 55.05045 -6.95074 P PPLA2 GB NIR S4 12970 20 Europe/London 2010-10-16
-2644522 Lidlington Lidlington 52.04154 -0.55914 P PPLA3 GB ENG Z6 00KC043 0 63 Europe/London 2011-07-31
-2644531 Lichfield Lichfield Letocetum,Lichfield,Lichfild,Личфилд 52.68154 -1.82549 P PPL GB ENG M9 41UD 28973 87 Europe/London 2011-03-03
-2644540 Lhanbryd Lhanbryd Lhanbryd,Lhanbryde 57.61667 -3.21667 P PPL GB SCT V6 1845 73 Europe/London 2012-01-17
-2644544 Leysdown-on-Sea Leysdown-on-Sea Leysdown,Leysdown-on-Sea 51.3973 0.92156 P PPL GB ENG G5 29UM 2565 12 Europe/London 2010-08-03
-2644547 Leyland Leyland 53.69786 -2.68758 P PPL GB ENG H2 30UN 37614 39 Europe/London 2011-03-03
-2644548 Leyburn Leyburn Leyburn 54.31004 -1.83041 P PPL GB ENG J7 36UE 1885 199 Europe/London 2011-03-03
-2644559 Lewes Lewes 50.87363 0.01133 P PPLA2 GB ENG E2 21UF 16479 24 Europe/London 2010-10-16
-2644577 Leven Leven 56.2 -3 P PPL GB SCT V1 7887 13 Europe/London 2006-01-17
-2644578 Leven Leven 53.88333 -0.31667 P PPLA3 GB ENG E1 00FB088 2290 2 Europe/London 2011-07-31
-2644581 Leuchars Leuchars Leuchars 56.38174 -2.88253 P PPL GB SCT V1 2341 18 Europe/London 2011-03-03
-2644594 Letham Letham Letham 56.61667 -2.76667 P PPL GB SCT T7 1591 134 Europe/London 2012-01-17
-2644597 Letchworth Letchworth Lechuort,Letchworth,Letchworth Garden,Лечуорт 51.97944 -0.2284 P PPL GB ENG F8 26UF 33955 87 Europe/London 2010-08-03
-2644600 Lesmahagow Lesmahagow Lesmahagow 55.63668 -3.88736 P PPL GB SCT W5 3823 176 Europe/London 2011-03-03
-2644605 Lerwick Lerwick Leruik,Lervikas,Lerwick,rau~ikku,Леруик,ラーウィック 60.15453 -1.14941 P PPLA2 GB SCT W3 6594 -9999 Europe/London 2011-03-03
-2644613 Leominster Leominster Llanllieni 52.22652 -2.73907 P PPL GB ENG F7 00GA119 10673 80 Europe/London 2011-09-19
-2644622 Lennoxtown Lennoxtown Lennoxtown 55.97263 -4.20001 P PPL GB SCT U5 3795 65 Europe/London 2011-03-03
-2644624 Lenham Lenham Lenham 51.23705 0.71892 P PPL GB ENG G5 29UH 2240 117 Europe/London 2011-02-12
-2644642 Leiston Leiston 52.20611 1.57757 P PPL GB ENG N5 42UG 5537 15 Europe/London 2010-05-24
-2644652 Leighton Buzzard Leighton Buzzard 51.91722 -0.65802 P PPL GB ENG Z6 00KC042 33467 97 Europe/London 2011-03-03
-2644658 Leigh-on-Sea Leigh-on-Sea Leigh,Leigh-on-Sea 51.54297 0.64905 P PPLA3 GB ENG M5 00KF001 0 38 Europe/London 2011-07-31
-2644660 Leigh Leigh 53.48333 -2.51667 P PPL GB ENG 00 43626 19 Europe/London 2006-01-17
-2644663 Leigh Leigh 51.61667 -1.9 P PPLA3 GB ENG P8 00HY138 0 91 Europe/London 2011-07-31
-2644668 Leicester Leicester Caerlyr,Caerlŷr,Leicester,Leiscester,Lester,laystr,lstr,lystr,resuta,Лестер,לסטר,لايستر,ليستر,レスター 52.6386 -1.13169 P PPLA2 GB ENG H4 31UC 339239 65 Europe/London 2011-03-03
-2644676 Leeswood Leeswood 53.13347 -3.09466 P PPL GB WLS Y1 00NJ016 2243 163 Europe/London 2011-03-03
-2644680 Lee-on-the-Solent Lee-on-the-Solent Lee on Solent,Lee-on-the-Solent 50.80169 -1.20174 P PPL GB ENG F2 24UF 7224 8 Europe/London 2011-03-03
-2644684 Leek Leek Leek 53.10434 -2.02207 P PPL GB ENG M9 41UH 19186 197 Europe/London 2011-03-03
-2644688 Leeds Leeds Leeds,Lids,Lidsa,Lijds,Lydsas,Līdsa,lyds,lydz,rizu,Лидс,Лийдс,לידס,ليدز,لیدز,リーズ 53.79648 -1.54785 P PPLA2 GB ENG H3 455123 50 Europe/London 2010-08-13
-2644701 Ledston Ledston Ledston,Ledstone 53.75254 -1.34355 P PPLA3 GB ENG H3 00DA016 0 26 Europe/London 2011-07-31
-2644702 Ledsham Ledsham 53.76322 -1.30857 P PPLA3 GB ENG H3 00DA015 162 50 Europe/London 2011-07-31
-2644703 Ledsham Ledsham 53.26667 -2.96667 P PPLA3 GB ENG Z8 00EW097 0 45 Europe/London 2011-07-31
-2644707 Ledbury Ledbury 52.03639 -2.42635 P PPLA3 GB ENG F7 00GA116 8680 67 Europe/London 2011-07-31
-2644710 Leconfield Leconfield Leckonfield,Leconfield 53.8773 -0.45729 P PPL GB ENG E1 00FB087 2034 12 Europe/London 2011-03-03
-2644719 Lechlade Lechlade 51.69403 -1.69128 P PPL GB ENG E6 23UC 2469 79 Europe/London 2011-03-03
-2644726 Leatherhead Leatherhead Leatherhead 51.29593 -0.3259 P PPL GB ENG N7 43UE 43544 53 Europe/London 2011-02-08
-2644731 Leasingham Leasingham Heasingham,Leasingham 53.02573 -0.42606 P PPL GB ENG H7 32UE 1631 28 Europe/London 2010-08-03
-2644737 Royal Leamington Spa Royal Leamington Spa Leamington,Leamington Spa,Limingtone,Royal Leamington Spa,Лимингтоне 52.3 -1.53333 P PPL GB ENG P3 44UF 64640 69 Europe/London 2012-03-29
-2644766 Lea Lea 51.9 -2.5 P PPLA3 GB ENG F7 00GA115 0 112 Europe/London 2011-07-31
-2644771 Layer de la Haye Layer de la Haye 51.84593 0.85745 P PPL GB ENG E4 22UG 1806 40 Europe/London 2010-05-24
-2644773 Laxton Laxton 53.71667 -0.8 P PPLA3 GB ENG E1 00FB086 0 4 Europe/London 2011-07-31
-2644795 Law Law 55.75 -3.88333 P PPL GB SCT 00 2994 170 Europe/London 2006-01-17
-2644803 Lavenham Lavenham 52.10861 0.79617 P PPL GB ENG N5 42UB 1800 66 Europe/London 2010-05-24
-2644809 Laurencekirk Laurencekirk Laurencekirk 56.83338 -2.4654 P PPL GB SCT T6 1916 85 Europe/London 2011-03-03
-2644811 Launceston Launceston 50.63699 -4.36006 P PPLA3 GB ENG C6 00HE068 7294 135 Europe/London 2011-07-31
-2644818 Lauder Lauder Lauder 55.71908 -2.74755 P PPL GB SCT T9 1078 184 Europe/London 2011-03-03
-2644826 Lathbury Lathbury Lathbury 52.09881 -0.72132 P PPLA3 GB ENG I6 00MG016 0 59 Europe/London 2011-07-31
-2644841 Lartington Lartington Lartington 54.55415 -1.97239 P PPLA3 GB ENG D8 00EJ069 0 213 Europe/London 2011-07-31
-2644849 Larne Larne 54.85 -5.81667 P PPLA2 GB NIR S3 18421 4 Europe/London 2010-10-16
-2644853 Larkhall Larkhall Darkhall,Larkhall 55.73333 -3.96667 P PPL GB SCT 00 15410 117 Europe/London 2010-08-03
-2644860 Largs Largs Largs 55.79629 -4.86337 P PPL GB SCT V7 11126 13 Europe/London 2011-03-03
-2644892 Llangwm Llangwm Langwm,Llangwm 51.74833 -4.91361 P PPLA3 GB GB WLS Y7 00NS081 0 27 Europe/London 2011-07-31
-2644905 Langtoft Langtoft Langfoft,Langtoft 52.69834 -0.3404 P PPL GB ENG H7 32UG 1967 9 Europe/London 2010-08-03
-2644914 Langport Langport Langport 51.03778 -2.82806 P PPL GB ENG M3 40UD 2914 15 Europe/London 2012-01-17
-2644917 Langley Park Langley Park 54.79979 -1.67005 P PPL GB ENG D8 00EJ036 4210 102 Europe/London 2011-03-03
-2644927 Langholm Langholm 55.15101 -2.99889 P PPL GB SCT U2 16UD 2213 80 Europe/London 2011-03-03
-2644929 Langho Langho 53.80217 -2.45076 P PPL GB ENG H2 30UL 2060 110 Europe/London 2011-03-03
-2644932 Langham Langham 52.69152 -0.75385 P PPLA3 GB ENG L4 00FP027 0 128 Europe/London 2011-07-31
-2644937 Langford Langford 52.0546 -0.27165 P PPLA3 GB ENG Z6 00KC041 0 36 Europe/London 2011-07-31
-2644963 Landore Landore Landore 51.64396 -3.94143 P PPLA3 GB WLS Z1 00NX014 0 43 Europe/London 2011-07-31
-2644967 Landewednack Landewednack Landewednack 49.96991 -5.21035 P PPLA3 GB ENG C6 00HE056 0 63 Europe/London 2011-07-31
-2644968 Lanchester Lanchester 54.82108 -1.74256 P PPL GB ENG D8 00EJ066 3750 116 Europe/London 2011-03-03
-2644972 Lancaster Lancaster Lancaster,Lankaster,Ланкастер 54.06667 -2.83333 P PPL GB ENG H2 30UH 47162 8 Europe/London 2012-01-17
-2644976 Lanark Lanark 55.67371 -3.7817 P PPL GB SCT 00 8151 199 Europe/London 2007-01-21
-2644981 Lampeter Lampeter Lampeter,Llanbedr Pont Steffan 52.11285 -4.08039 P PPL GB WLS X6 00NQ014 2926 123 Europe/London 2011-03-03
-2644984 Lamlash Lamlash 55.53358 -5.12956 P PPL GB SCT V7 1046 8 Europe/London 2011-03-03
-2644993 Lambourn Lambourn 51.50805 -1.53105 P PPL GB ENG P4 00MB035 3021 130 Europe/London 2011-02-24
-2645020 Lakenheath Lakenheath Lake Heath,Lakenheath 52.41755 0.52211 P PPL GB ENG N5 42UC 8590 15 Europe/London 2010-08-03
-2645064 Ladybank Ladybank Ladybank 56.27421 -3.1239 P PPL GB SCT V1 1519 40 Europe/London 2011-03-03
-2645072 Lacock Lacock Lacock,Laycock 51.41528 -2.12194 P PPLA3 GB GB ENG P8 00HY132 0 48 Europe/London 2011-07-31
-2645080 Laceby Laceby Laceby 53.54092 -0.1683 P PPL GB ENG J2 00FC015 2952 15 Europe/London 2011-03-03
-2645093 Knutsford Knutsford 53.30289 -2.37482 P PPL GB ENG Z7 00EQ072 12938 68 Europe/London 2011-03-03
-2645097 Knowsley Knowsley 53.45401 -2.85396 P PPLA2 GB ENG G9 00BX003 0 33 Europe/London 2011-03-03
-2645099 Knowle Knowle Knowle 52.38333 -1.73333 P PPL GB ENG 00 10823 124 Europe/London 2012-03-29
-2645102 Knottingley Knottingley Knottingley,Knottingly 53.70778 -1.25639 P PPL GB ENG 00 13804 28 Europe/London 2010-08-03
-2645155 Knighton Knighton Knighton,Trefyclo 52.35 -3.05 P PPL GB ENG L6 2773 283 Europe/London 2012-01-17
-2645161 Knebworth Knebworth Knebworth 51.86674 -0.18394 P PPL GB ENG F8 26UF 4168 92 Europe/London 2010-08-03
-2645163 Knaresborough Knaresborough Knaresborough,Nejrsboro,Нейрсборо 54.0091 -1.46851 P PPL GB ENG J7 36UD 14740 77 Europe/London 2011-03-03
-2645180 Kirton in Lindsey Kirton in Lindsey Kirton,Kirton in Lindsey 53.47548 -0.59566 P PPLA3 GB ENG J3 00FD033 2754 33 Europe/London 2011-07-31
-2645181 Kirton Kirton 52.92774 -0.06008 P PPL GB ENG H7 32UB 3546 6 Europe/London 2010-05-24
-2645191 Kirriemuir Kirriemuir Kirriemuir 56.67398 -3.00343 P PPL GB SCT T7 6108 133 Europe/London 2011-03-03
-2645198 Kirkwall Kirkwall Kirkvelas,Kirkwall 58.98479 -2.95873 P PPLA2 GB SCT V9 8500 3 Europe/London 2010-10-16
-2645232 Kirk Sandall Kirk Sandall 53.56211 -1.06876 P PPL GB ENG D5 00CE007 13572 12 Europe/London 2011-03-03
-2645241 Kirknewton Kirknewton 55.88754 -3.41898 P PPL GB SCT 00 1755 171 Europe/London 2007-06-07
-2645242 Kirknewton Kirknewton 55.55 -2.13333 P PPLA3 GB ENG J6 00EM092 0 322 Europe/London 2011-07-31
-2645249 Kirkliston Kirkliston Kirkliston 55.95364 -3.40288 P PPL GB SCT U8 3139 37 Europe/London 2011-03-03
-2645261 Kirkintilloch Kirkintilloch Kirkintillock 55.93933 -4.15262 P PPLA2 GB SCT U5 19489 51 Europe/London 2011-03-03
-2645280 Kirkham Kirkham Kirkham 53.78244 -2.87189 P PPL GB ENG H2 30UF 10603 24 Europe/London 2011-03-03
-2645283 Kirk Ella Kirk Ella 53.75399 -0.4549 P PPLA3 GB ENG E1 00FB170 0 41 Europe/London 2011-07-31
-2645287 Kirkcudbright Kirkcudbright Kircudbright,Kirkcudbright 54.8383 -4.04908 P PPL GB SCT U2 3367 4 Europe/London 2011-03-03
-2645291 Kirkconnel Kirkconnel Kirkconnel 55.38561 -3.99836 P PPL GB SCT U2 1993 153 Europe/London 2011-03-03
-2645298 Kirkcaldy Kirkcaldy Kirkcaldy,Kirkcaudy 56.10982 -3.16149 P PPL GB SCT V1 46912 25 Europe/London 2011-03-03
-2645301 Kirkby Stephen Kirkby Stephen Kirkby Stephen 54.47229 -2.34865 P PPL GB ENG C9 16UF 1873 176 Europe/London 2011-03-03
-2645309 Kirkby in Ashfield Kirkby in Ashfield Kirkby,Kirkby in Ashfield 53.09982 -1.24379 P PPL GB ENG J9 37UB 27539 162 Europe/London 2011-03-03
-2645313 Kirkby Kirkby 53.48333 -2.9 P PPL GB ENG 00 39208 28 Europe/London 2006-01-17
-2645314 Kirkburton Kirkburton 53.61047 -1.70292 P PPL GB ENG G8 00CZ003 3786 129 Europe/London 2011-03-03
-2645329 Kircubbin Kircubbin 54.48333 -5.53333 P PPL GB NIR 00 1237 10 Europe/London 2006-01-17
-2645333 Kirby Underdale Kirby Underdale Kirby Underdale,Kirkby Underdale 54.01544 -0.76355 P PPLA3 GB ENG E1 00FB083 0 120 Europe/London 2011-07-31
-2645335 Kirby Muxloe Kirby Muxloe Kirby Muxloe 52.63338 -1.23322 P PPL GB ENG H5 31UB 9712 88 Europe/London 2010-08-03
-2645358 Kintore Kintore Ceann-an-Tor,Kintore 57.23721 -2.3454 P PPL GB SCT T6 2170 51 Europe/London 2011-03-03
-2645361 Kintbury Kintbury 51.39958 -1.44865 P PPL GB ENG P4 00MB034 2132 101 Europe/London 2011-02-24
-2645363 Kinsham Kinsham Kinsham,Upper Kinsham 52.28333 -2.93333 P PPLA3 GB GB ENG F7 00GA112 0 198 Europe/London 2011-07-31
-2645365 Kinross Kinross Kinross 56.20466 -3.42138 P PPL GB SCT W1 4691 121 Europe/London 2011-03-03
-2645374 Kinnersley Kinnersley 52.13333 -2.95 P PPLA3 GB ENG F7 00GA111 0 74 Europe/London 2011-07-31
-2645388 Kinloss Kinloss 57.63494 -3.57012 P PPL GB SCT V6 2011 7 Europe/London 2011-03-03
-2645409 Kingussie Kingussie Kingussie 57.07996 -4.05231 P PPL GB SCT V3 1442 235 Europe/London 2011-03-03
-2645410 Kington Kington 52.20408 -3.02553 P PPLA3 GB ENG F7 00GA109 0 156 Europe/London 2011-07-31
-2645411 Kington Kington Ceintun,Kington 52.2 -2.01667 P PPL GB ENG Q4 47UF 2655 59 Europe/London 2012-01-17
-2645413 Kings Worthy Kings Worthy Kings Worthy 51.08862 -1.2978 P PPL GB ENG F2 24UP 4388 47 Europe/London 2011-02-21
-2645418 Kingswood Kingswood Kingsvud,Kingswood,Кингсвуд 51.45278 -2.50833 P PPL GB ENG M6 64793 104 Europe/London 2012-01-17
-2645420 Kingswinford Kingswinford Kingswinford 52.49755 -2.16889 P PPL GB ENG D7 41UF 20000 85 Europe/London 2012-03-29
-2645425 Hull Hull Hull,Kingston upon Hull,Kingston-apon-Khall,Kingston-upon-Hull,he er,Кингстон-апон-Халл,האל,赫爾 53.7446 -0.33525 P PPLA2 GB ENG G6 302296 8 Europe/London 2010-10-16
-2645426 Kingston Seymour Kingston Seymour 51.39833 -2.86111 P PPLA3 GB ENG J4 00HC021 0 6 Europe/London 2011-07-31
-2645430 Kingstone Kingstone 52.01667 -2.83333 P PPLA3 GB ENG F7 00GA108 0 90 Europe/London 2011-07-31
-2645442 Kingsteignton Kingsteignton Kingsteignton 50.55 -3.58333 P PPL GB ENG D4 18UH 11360 55 Europe/London 2012-01-17
-2645456 King's Lynn King's Lynn Kings Lynn,Kingslinn,Lynn,Lynn Regis,Кингслинн 52.75172 0.39516 P PPL GB GB ENG I9 33UE 34564 10 Europe/London 2010-12-08
-2645457 Kingsley Kingsley 53.26667 -2.66667 P PPLA3 GB ENG Z8 00EW092 0 42 Europe/London 2011-07-31
-2645460 Kings Langley Kings Langley Kings Langley 51.71395 -0.45044 P PPL GB ENG F8 26UC 7230 93 Europe/London 2010-08-03
-2645461 Kingsland Kingsland 52.25 -2.8 P PPLA3 GB ENG F7 00GA107 0 84 Europe/London 2011-07-31
-2645464 Kingskerswell Kingskerswell 50.49915 -3.58195 P PPL GB ENG D4 18UH 4727 34 Europe/London 2011-03-03
-2645479 Kingsclere Kingsclere 51.32487 -1.24339 P PPL GB ENG F2 24UB 3360 109 Europe/London 2011-02-21
-2645483 Kingsbury Kingsbury 52.56106 -1.67936 P PPL GB ENG P3 44UB 4261 77 Europe/London 2010-05-24
-2645486 Kingsbridge Kingsbridge Kingsbridge 50.28451 -3.77638 P PPL GB ENG D4 18UG 5644 7 Europe/London 2010-08-03
-2645494 Kinglassie Kinglassie Kinglassie 56.17371 -3.24241 P PPL GB SCT V1 1274 77 Europe/London 2011-03-03
-2645500 Kinghorn Kinghorn Kinghorn 56.06896 -3.17607 P PPL GB SCT V1 2776 33 Europe/London 2011-03-03
-2645525 Kincardine Kincardine Kincardine 56.06667 -3.71667 P PPL GB SCT V1 3014 4 Europe/London 2012-01-17
-2645537 Kimbolton Kimbolton 52.25 -2.7 P PPLA3 GB ENG F7 00GA104 0 101 Europe/London 2011-07-31
-2645539 Kimberley Kimberley Kimberley 52.98333 -1.26667 P PPL GB ENG J9 37UD 11273 93 Europe/London 2012-02-01
-2645541 Kilwinning Kilwinning 55.65333 -4.70666 P PPL GB SCT V7 16000 22 Europe/London 2011-03-03
-2645548 Kilsyth Kilsyth 55.97596 -4.05916 P PPL GB SCT V8 9662 56 Europe/London 2011-03-03
-2645555 Kilrea Kilrea 54.95091 -6.55695 P PPL GB NIR 00 1616 49 Europe/London 2007-04-13
-2645558 Kilpin Kilpin 53.7316 -0.83118 P PPLA3 GB ENG E1 00FB082 0 7 Europe/London 2011-07-31
-2645591 Kilmington Kilmington 51.12694 -2.32694 P PPLA3 GB ENG P8 00HY127 0 213 Europe/London 2011-07-31
-2645599 Kilmaurs Kilmaurs Kilmaurs 55.63801 -4.5273 P PPL GB SCT U4 2528 61 Europe/London 2011-03-03
-2645605 Kilmarnock Kilmarnock Cill Mhearnag,Cill Mheàrnag,Kilmarnok,Килмарнок 55.61171 -4.49581 P PPLA2 GB SCT U4 42904 39 Europe/London 2010-10-16
-2645611 Kilmacolm Kilmacolm 55.8947 -4.62643 P PPL GB SCT V4 3887 101 Europe/London 2011-03-03
-2645613 Killyleagh Killyleagh Killyleagh 54.4 -5.71667 P PPL GB NIR 00 2591 27 Europe/London 2010-08-09
-2645645 Killearn Killearn Killearn 56.04239 -4.3684 P PPL GB SCT W6 1753 95 Europe/London 2011-03-03
-2645653 Killamarsh Killamarsh 53.32395 -1.31688 P PPL GB ENG D3 17UJ 9625 50 Europe/London 2011-03-03
-2645660 Kilkeel Kilkeel 54.06196 -6.00308 P PPL GB NIR 00 6447 16 Europe/London 2007-04-13
-2645662 Kilham Kilham 54.05 -0.36667 P PPLA3 GB ENG E1 00FB081 0 22 Europe/London 2011-07-31
-2645684 Kilcreggan Kilcreggan Kilcreggan 55.9846 -4.821 P PPL GB SCT T8 1343 13 Europe/London 2011-03-03
-2645703 Kilburn Kilburn Kilbourn,Kilbourne,Kilburn 53.0058 -1.43869 P PPL GB ENG D3 17UB 4450 93 Europe/London 2011-03-07
-2645712 Kilbirnie Kilbirnie 55.75082 -4.68791 P PPL GB SCT V7 6972 56 Europe/London 2011-03-03
-2645714 Kilbarchan Kilbarchan Kilbarchan 55.8362 -4.55356 P PPL GB SCT W2 3560 54 Europe/London 2011-03-03
-2645720 Kidwelly Kidwelly Cydweli,Kidwelly 51.73639 -4.30333 P PPLA3 GB WLS X7 00NU019 2721 16 Europe/London 2011-07-31
-2645721 Kidsgrove Kidsgrove Kidsgrove 53.08691 -2.23777 P PPL GB ENG M9 41UE 29480 148 Europe/London 2011-03-03
-2645722 Kidlington Kidlington Kidlington 51.82166 -1.2886 P PPL GB ENG K2 38UB 15278 64 Europe/London 2011-03-03
-2645724 Kidderminster Kidderminster Kidderminster 52.38819 -2.25 P PPL GB ENG Q4 47UG 56657 37 Europe/London 2011-03-03
-2645728 Kibworth Harcourt Kibworth Harcourt Kibworth,Kibworth Harcourt 52.54439 -0.99491 P PPL GB ENG H5 31UD 4895 120 Europe/London 2011-03-03
-2645733 Keynsham Keynsham Keynsham 51.41387 -2.4978 P PPL GB ENG A4 00HA026 15879 25 Europe/London 2011-03-03
-2645734 Keyingham Keyingham 53.70961 -0.11325 P PPLA3 GB ENG E1 00FB080 2353 12 Europe/London 2011-07-31
-2645741 Ketton Ketton Ketton 52.62804 -0.55459 P PPLA3 GB ENG L4 00FP026 1703 48 Europe/London 2011-07-31
-2645753 Kettering Kettering Kettering,Кеттеринг 52.39836 -0.72571 P PPL GB ENG J1 34UE 53329 95 Europe/London 2011-03-03
-2645756 Keswick Keswick Kesvik,Keswick,Koswick,Кесвик 54.59947 -3.13256 P PPL GB ENG C9 16UB 4281 93 Europe/London 2010-08-03
-2645761 Kessingland Kessingland Kessingland 52.41987 1.70878 P PPL GB ENG N5 42UH 4305 21 Europe/London 2011-03-03
-2645778 Keresley Keresley Keresley 52.45156 -1.53319 P PPLA3 GB ENG C7 00CQ002 2432 124 Europe/London 2011-07-31
-2645800 Kensworth Kensworth 51.85173 -0.50386 P PPL GB ENG Z6 00KC040 1537 188 Europe/London 2011-03-03
-2645801 Kensington Kensington Kensington 51.50094 -0.19175 P PPLA3 GB ENG GLA G4 0 26 Europe/London 2010-10-17
-2645803 Kennoway Kennoway Kennoway 56.21081 -3.04917 P PPL GB SCT V1 4596 75 Europe/London 2011-03-03
-2645804 Kennington Kennington 51.1674 0.88491 P PPL GB ENG G5 29UB 4178 48 Europe/London 2010-05-24
-2645815 Kenn Kenn 51.41667 -2.85 P PPLA3 GB ENG J4 00HC019 0 6 Europe/London 2011-07-31
-2645820 Kenley Kenley 52.6 -2.63333 P PPLA3 GB ENG L6 00GG099 0 149 Europe/London 2011-07-31
-2645822 Kenilworth Kenilworth Kenilworth 52.34286 -1.58015 P PPL GB ENG P3 44UF 22799 86 Europe/London 2011-03-03
-2645826 Kendal Kendal Kendal,Kendall,Кендал 54.32681 -2.74757 P PPL GB ENG C9 16UG 29468 55 Europe/London 2011-01-29
-2645830 Kemsing Kemsing 51.30604 0.22917 P PPL GB ENG G5 29UP 6889 98 Europe/London 2011-02-05
-2645831 Kempston Kempston 52.11599 -0.50044 P PPLA3 GB ENG Z5 00KB018 19873 32 Europe/London 2011-07-31
-2645833 Kempsey Kempsey 52.13936 -2.21751 P PPL GB ENG Q4 47UC 2570 18 Europe/London 2011-03-03
-2645836 Kemnay Kemnay Kemnay 57.23573 -2.44395 P PPL GB SCT T6 6000 88 Europe/London 2011-03-03
-2645840 Kelvedon Hatch Kelvedon Hatch 51.66739 0.26814 P PPL GB ENG E4 22UD 2479 103 Europe/London 2011-02-12
-2645841 Kelvedon Kelvedon 51.84007 0.7057 P PPL GB ENG E4 22UC 4695 25 Europe/London 2010-05-24
-2645843 Kelty Kelty Kelty 56.13362 -3.3869 P PPL GB SCT V1 5644 157 Europe/London 2011-03-03
-2645849 Kelso Kelso Kelso 55.59814 -2.43382 P PPL GB SCT T9 00EM033 5154 40 Europe/London 2010-08-03
-2645853 Kelsall Kelsall 53.20775 -2.71242 P PPL GB ENG Z8 00EW090 2413 85 Europe/London 2011-03-03
-2645880 Keith Keith Keith,Kieth 57.53633 -2.94811 P PPL GB SCT V6 4396 152 Europe/London 2010-08-09
-2645889 Keighley Keighley Keighley,Kejli,Кейли 53.86791 -1.90664 P PPLA3 GB ENG B4 00CX009 50171 108 Europe/London 2011-07-31
-2645891 Kegworth Kegworth 52.83482 -1.28042 P PPL GB ENG H5 3412 49 Europe/London 2007-06-15
-2645898 Keelby Keelby Keelby 53.5758 -0.24701 P PPL GB ENG H7 32UH 2220 20 Europe/London 2011-03-03
-2645900 Kedington Kedington 52.09282 0.48675 P PPL GB ENG N5 42UF 1855 62 Europe/London 2010-05-24
-2645911 Kearsley Kearsley 53.53333 -2.38333 P PPL GB ENG 00 10127 100 Europe/London 2006-01-17
-2645917 Keady Keady Keady 54.25 -6.7 P PPL GB NIR 00 3171 148 Europe/London 2010-08-09
-2645951 Johnstone Johnstone Johnstone 55.82906 -4.51605 P PPL GB SCT W2 15705 36 Europe/London 2011-03-03
-2645952 Johnston Johnston Johnston 51.75556 -4.99667 P PPLA3 GB WLS Y7 00NS027 1798 69 Europe/London 2011-07-31
-2645967 Jeffreyston Jeffreyston Jefferston,Jeffreston,Jeffreyston 51.725 -4.7675 P PPLA3 GB GB WLS Y7 00NS026 0 71 Europe/London 2011-07-31
-2645970 Jedburgh Jedburgh Jedburg,Jedburgh 55.47997 -2.552 P PPL GB SCT T9 4045 77 Europe/London 2010-08-03
-2645972 Jarrow Jarrow Dzharrou,Jarrow,Jarrow-on-Tyne,Джарроу 54.98036 -1.48423 P PPL GB ENG M7 00EM167 27264 15 Europe/London 2011-03-03
-2645979 Jacobstow Jacobstow Jacobstow 50.73333 -4.55 P PPLA3 GB ENG C6 00HE051 0 99 Europe/London 2011-07-31
-2645983 Ixworth Ixworth 52.29893 0.8341 P PPL GB ENG N5 42UF 2283 39 Europe/London 2010-05-24
-2645988 Ivybridge Ivybridge 50.39039 -3.91914 P PPL GB ENG D4 18UG 13277 63 Europe/London 2011-03-03
-2645989 Ivinghoe Ivinghoe Ivinghoe 51.83602 -0.62983 P PPL GB ENG B9 11UB 2939 120 Europe/London 2010-08-21
-2645990 Iver Iver 51.5 -0.5 P PPL GB ENG B9 11UE 7492 25 Europe/London 2010-05-24
-2646003 Islington Islington 51.53622 -0.10304 P PPLA3 GB ENG GLA G3 319143 37 Europe/London 2010-10-17
-2646012 Isleham Isleham 52.34289 0.41212 P PPL GB ENG C3 2251 12 Europe/London 2009-12-28
-2646029 Irvinestown Irvinestown Irvinestown,Lowtherstown 54.46667 -7.63333 P PPL GB NIR 00 1765 89 Europe/London 2010-08-09
-2646032 Irvine Irvine 55.6194 -4.65508 P PPLA2 GB SCT V7 32748 14 Europe/London 2011-03-03
-2646034 Irthlingborough Irthlingborough 52.32674 -0.61129 P PPL GB ENG J1 34UD 6317 61 Europe/London 2010-05-24
-2646039 Ironbridge Ironbridge Ironbridge 52.62795 -2.48465 P PPL GB ENG O2 00GF023 1595 71 Europe/London 2011-03-03
-2646042 Irlam Irlam 53.44253 -2.42323 P PPL GB ENG L5 00BU001 19442 22 Europe/London 2011-03-03
-2646055 Irchester Irchester 52.28108 -0.6451 P PPL GB ENG J1 34UH 4610 77 Europe/London 2010-05-24
-2646057 Ipswich Ipswich Ipsuich,Ipswich,abswytsh,Ипсуич,إبسويتش 52.05917 1.15545 P PPLA2 GB ENG N5 42UD 143767 18 Europe/London 2010-10-16
-2646062 Ipplepen Ipplepen 50.48919 -3.639 P PPL GB ENG D4 18UH 2172 62 Europe/London 2011-03-03
-2646073 Inverurie Inverurie Inverurie 57.28446 -2.37736 P PPL GB SCT T6 11323 63 Europe/London 2011-03-03
-2646088 Inverness Inverness Inbhir Nis,Innerness,Inverness,Invurnes,aynwrns,in'vu~anesu,yin wei nei si,Инвернесс,Инвърнес,اینورنس,インヴァネス,印威內斯 57.47908 -4.22398 P PPLA2 GB SCT V3 40755 15 Europe/London 2011-03-03
-2646102 Inverkip Inverkip Inverkip 55.90831 -4.87051 P PPL GB SCT V4 1733 9 Europe/London 2011-03-03
-2646104 Inverkeithing Inverkeithing Inverkeithing 56.03297 -3.39555 P PPL GB SCT V1 5163 20 Europe/London 2011-01-06
-2646115 Invergordon Invergordon Invergordon 57.6886 -4.16745 P PPL GB SCT V3 3949 9 Europe/London 2011-03-03
-2646134 Inverbervie Inverbervie Bervie,Inverbervie 56.84463 -2.27997 P PPL GB SCT T6 2162 30 Europe/London 2011-03-03
-2646157 Insch Insch 57.34273 -2.61321 P PPL GB SCT T6 1504 129 Europe/London 2011-03-03
-2646172 Innerleithen Innerleithen 55.61927 -3.06301 P PPL GB SCT T9 2591 148 Europe/London 2011-03-03
-2646187 Innellan Innellan Inellan,Innellan 55.89195 -4.9616 P PPL GB SCT T8 1132 46 Europe/London 2011-03-03
-2646190 Inkberrow Inkberrow 52.21284 -1.98093 P PPL GB ENG Q4 47UF 1537 86 Europe/London 2011-03-03
-2646202 Ingoldmells Ingoldmells Ingoldmells 53.19414 0.33358 P PPL GB ENG H7 32UC 3975 3 Europe/London 2011-03-03
-2646207 Ingleton Ingleton 54.57952 -1.73532 P PPL GB ENG D8 00EJ063 1678 115 Europe/London 2010-08-21
-2646208 Ingleby Greenhow Ingleby Greenhow 54.44983 -1.10687 P PPL GB ENG J7 36UC 14608 128 Europe/London 2010-12-09
-2646219 Ingatestone Ingatestone Ingatestone 51.67027 0.38359 P PPL GB ENG E4 22UD 4538 64 Europe/London 2011-03-03
-2646243 Inchinnan Inchinnan Inchinnan 55.88995 -4.43842 P PPL GB SCT W2 1564 16 Europe/London 2011-03-03
-2646253 Ince-in-Makerfield Ince-in-Makerfield Ince,Ince-in-Makerfield 53.53333 -2.61667 P PPL GB ENG 00 11185 41 Europe/London 2010-08-03
-2646254 Ince Blundell Ince Blundell 53.52429 -3.02733 P PPLA3 GB ENG L8 00CA002 0 8 Europe/London 2011-07-31
-2646255 Ince Ince 53.28333 -2.83333 P PPLA3 GB ENG Z8 00EW089 0 23 Europe/London 2011-07-31
-2646256 Immingham Immingham 53.61239 -0.22219 P PPL GB ENG J2 00FC013 11337 10 Europe/London 2011-03-03
-2646265 Ilminster Ilminster 50.92684 -2.91009 P PPL GB ENG M3 40UD 4550 47 Europe/London 2010-05-24
-2646272 Ilkley Ilkley 53.92449 -1.82326 P PPL GB ENG B4 00CX004 13772 102 Europe/London 2011-03-03
-2646274 Ilkeston Ilkeston Ilkeston 52.97055 -1.30951 P PPL GB ENG D3 17UG 38587 103 Europe/London 2011-03-03
-2646276 Ilfracombe Ilfracombe Ilfracombe,Iltracombe 51.2093 -4.11344 P PPL GB ENG D4 18UE 10486 14 Europe/London 2010-08-03
-2646277 Ilford Ilford 51.55765 0.07278 P PPLA3 GB ENG GLA K8 0 15 Europe/London 2010-10-17
-2646279 Ilchester Ilchester 51.00587 -2.67981 P PPL GB ENG M3 40UD 2170 17 Europe/London 2010-05-24
-2646311 Ibstock Ibstock Ibstock 52.68554 -1.39965 P PPL GB ENG H5 31UE 5643 134 Europe/London 2011-03-03
-2646316 Hythe Hythe Hythe,Khajt,Хайт 51.0715 1.08421 P PPL GB ENG G5 14170 8 Europe/London 2010-08-03
-2646317 Hythe Hythe 50.86004 -1.40162 P PPL GB ENG F2 24UJ 20036 29 Europe/London 2010-05-24
-2646327 Hyde Hyde 53.45131 -2.07943 P PPL GB ENG 00 31926 112 Europe/London 2008-03-29
-2646329 Huyton Huyton Huyton,Huyton with Roby,Khejton,Хейтон 53.4115 -2.83935 P PPL GB ENG G9 00BX006 54738 40 Europe/London 2011-03-03
-2646333 Hutton Magna Hutton Magna Great Hutton,Hutton Magna 54.50992 -1.80622 P PPLA3 GB ENG D8 00EJ062 0 132 Europe/London 2011-07-31
-2646342 Hutton Hutton 51.32417 -2.93028 P PPLA3 GB ENG J4 00HC018 0 17 Europe/London 2011-07-31
-2646352 Hurworth Hurworth 54.49008 -1.53294 P PPLA3 GB ENG D1 00EH013 0 37 Europe/London 2011-07-31
-2646355 Hurstpierpoint Hurstpierpoint 50.93388 -0.18007 P PPL GB ENG P6 45UG 11391 49 Europe/London 2010-05-24
-2646369 Hurley Hurley 51.54644 -0.80921 P PPLA3 GB ENG P9 00ME008 0 34 Europe/London 2011-07-31
-2646384 Huntly Huntly Huntly 57.44741 -2.78608 P PPL GB SCT T6 4390 127 Europe/London 2011-03-03
-2646386 Huntington Huntington 54 -1.05 P PPLA3 GB ENG Q5 00FF017 0 17 Europe/London 2011-07-31
-2646393 Huntingdon Huntingdon Huntingdon 52.33049 -0.18651 P PPL GB ENG C3 12UE 12UE046 21059 18 Europe/London 2012-01-08
-2646403 Hunstanton Hunstanton Hunstanton 52.95 0.5 P PPL GB ENG I9 33UE 4605 24 Europe/London 2012-02-01
-2646406 Hunmanby Hunmanby Hunmanby 54.17957 -0.32007 P PPL GB ENG J7 36UG 3352 61 Europe/London 2011-03-03
-2646411 Hungerford Hungerford 51.41513 -1.51556 P PPL GB ENG P4 00MB032 5048 103 Europe/London 2011-03-05
-2646431 Humbleton Humbleton 53.78333 -0.15 P PPLA3 GB ENG E1 00FB077 0 12 Europe/London 2011-07-31
-2646435 Humberston Humberston Humberston,Humberstone 53.53036 -0.02465 P PPL GB ENG J2 00FC012 8216 11 Europe/London 2011-03-03
-2646439 Humber Humber 52.2 -2.66667 P PPLA3 GB ENG F7 00GA098 0 129 Europe/London 2011-07-31
-2646448 Huish Huish Huish 51.37114 -1.79266 P PPLA3 GB ENG P8 00HY123 0 152 Europe/London 2011-07-31
-2646458 Huddersfield Huddersfield Huddersfield,Khaddersfild,Хаддерсфилд 53.64904 -1.78416 P PPLA2 GB ENG G8 00CZ003 149017 90 Europe/London 2011-03-03
-2646460 Hucknall Hucknall Hucknall Torkard 53.03333 -1.2 P PPL GB ENG J9 37UB 29728 80 Europe/London 2012-03-29
-2646471 Hoyland Nether Hoyland Nether Hoyland,Hoyland Nether 53.5 -1.45 P PPL GB ENG 00 15842 162 Europe/London 2010-08-03
-2646472 Hoylake Hoylake 53.39046 -3.18066 P PPL GB ENG Q1 00NJ020 5710 12 Europe/London 2012-03-29
-2646480 Howwood Howwood 55.8 -4.55 P PPL GB SCT 00 1712 187 Europe/London 2006-01-17
-2646499 Howden Howden 53.74206 -0.86569 P PPLA3 GB ENG E1 00FB075 3895 5 Europe/London 2011-07-31
-2646504 Hove Hove Hove,Khouv,Хоув 50.83088 -0.1672 P PPLA2 GB ENG B6 45UG 75174 24 Europe/London 2012-01-08
-2646507 Houston Houston 55.86859 -4.55201 P PPL GB SCT W2 7031 41 Europe/London 2011-03-03
-2646517 Hounslow Hounslow Hounslow,Hounslow keruelet,Hounslow kerület,London Borough of Hounslow,hwnslw,هونسلو 51.46839 -0.36092 P PPLA3 GB ENG GLA G1 0 25 Europe/London 2010-10-17
-2646523 Houghton Regis Houghton Regis 51.90441 -0.52125 P PPLA3 GB ENG Z6 00KC036 0 134 Europe/London 2011-07-31
-2646524 Houghton on the Hill Houghton on the Hill Houghton,Houghton on the Hill 52.62663 -0.99546 P PPL GB ENG H5 31UD 1582 173 Europe/London 2011-03-09
-2646525 Houghton-le-Spring Houghton-le-Spring 54.84034 -1.46427 P PPL GB ENG D8 37840 79 Europe/London 2011-05-31
-2646526 Houghton Conquest Houghton Conquest 52.06178 -0.47756 P PPLA3 GB ENG Z6 00KC035 0 52 Europe/London 2011-07-31
-2646537 Hotham Hotham 53.79583 -0.64253 P PPLA3 GB ENG E1 00FB074 0 31 Europe/London 2011-07-31
-2646542 Horwich Horwich 53.60126 -2.54975 P PPL GB ENG B1 00BL002 18696 135 Europe/London 2011-03-03
-2646547 Horton Horton 51.55833 -2.3525 P PPLA3 GB ENG M6 00HD020 0 110 Europe/London 2011-07-31
-2646548 Horton Horton 51.47315 -0.54245 P PPLA3 GB ENG P9 00ME007 0 19 Europe/London 2011-07-31
-2646553 Horsley Horsley 54.98333 -1.85 P PPLA3 GB ENG J6 00EM086 0 93 Europe/London 2011-07-31
-2646557 Horsham Horsham Horsham,Khorshehm,West Horsham,Хоршэм 51.06395 -0.32719 P PPL GB ENG P6 45UF 50680 51 Europe/London 2011-02-05
-2646558 Horsforth Horsforth 53.83797 -1.64036 P PPL GB ENG H3 00DA032 19350 137 Europe/London 2011-03-03
-2646559 Horsford Horsford 52.70153 1.24015 P PPL GB ENG I9 33UC 3688 33 Europe/London 2011-03-03
-2646578 Horrabridge Horrabridge Horrabridge 50.50843 -4.10042 P PPL GB ENG D4 18UL 3728 99 Europe/London 2011-03-03
-2646583 Hornsea Hornsea 53.91041 -0.16806 P PPLA3 GB ENG E1 00FB073 8427 7 Europe/London 2011-07-31
-2646590 Horndon on the Hill Horndon on the Hill 51.52358 0.40491 P PPL GB ENG E4 1648 39 Europe/London 2011-02-12
-2646595 Horncastle Horncastle Banovallum,Horncastle 53.20775 -0.1172 P PPL GB ENG H7 32UC 6226 33 Europe/London 2010-08-03
-2646606 Horley Horley 51.17423 -0.15919 P PPL GB ENG N7 43UF 21232 56 Europe/London 2012-03-29
-2646613 Horbury Horbury Horbury 53.66051 -1.56014 P PPL GB ENG O7 10225 77 Europe/London 2010-08-03
-2646615 Horam Horam Horam,Horeham 50.93523 0.24436 P PPL GB ENG E2 21UH 1870 70 Europe/London 2011-02-02
-2646620 Hopton on Sea Hopton on Sea Hopton,Hopton on Sea 52.53333 1.73333 P PPL GB ENG I9 33UD 2331 18 Europe/London 2012-01-17
-2646623 Hope under Dinmore Hope under Dinmore Hope under Dinmore 52.18333 -2.71667 P PPLA3 GB ENG F7 00GA096 0 77 Europe/London 2011-07-31
-2646630 Hopeman Hopeman Hopeman 57.70681 -3.42911 P PPL GB SCT V6 1675 28 Europe/London 2010-08-09
-2646641 Hope Hope 53.11667 -3.03333 P PPLA3 GB WLS Y1 00NJ015 0 87 Europe/London 2011-07-31
-2646648 Hook Norton Hook Norton Hook Norton 51.99564 -1.48277 P PPL GB ENG K2 38UB 1879 158 Europe/London 2011-02-24
-2646652 Hook Hook 53.72053 -0.84792 P PPLA3 GB ENG E1 00FB072 0 6 Europe/London 2011-07-31
-2646654 Hook Hook 51.28425 -0.95967 P PPL GB ENG F2 24UG 7321 82 Europe/London 2011-02-16
-2646656 Hoo Hoo 51.41752 0.5652 P PPL GB ENG 00 5377 10 Europe/London 2011-02-12
-2646658 Honiton Honiton Honiton 50.7996 -3.18899 P PPL GB ENG D4 18UB 11463 113 Europe/London 2011-03-03
-2646670 Holywood Holywood 54.63863 -5.82473 P PPL GB NIR 00 13109 44 Europe/London 2008-01-28
-2646673 Holywell Holywell Holywell,Treffynnon 53.27466 -3.22895 P PPLA3 GB WLS Y1 00NJ014 6969 140 Europe/London 2011-07-31
-2646675 Holytown Holytown 55.82011 -3.9727 P PPL GB SCT V8 5377 102 Europe/London 2011-03-03
-2646686 Holyhead Holyhead Caergybi,Holyhead 53.30621 -4.63211 P PPLA3 GB WLS X1 00NA010 11362 8 Europe/London 2011-07-31
-2646688 Holwick Holwick Holwick 54.6358 -2.14371 P PPLA3 GB ENG D8 00EJ056 0 271 Europe/London 2011-07-31
-2646694 Holton le Clay Holton le Clay 53.5052 -0.063 P PPL GB ENG H7 32UC 3961 19 Europe/London 2010-05-24
-2646699 Holtby Holtby Holtby 53.97876 -0.97255 P PPLA3 GB ENG Q5 00FF016 0 29 Europe/London 2011-07-31
-2646700 Holt Holt Holt 53.06667 -2.88333 P PPLA3 GB WLS Z4 00NL018 0 10 Europe/London 2011-07-31
-2646703 Holt Holt 51.35556 -2.19722 P PPLA3 GB ENG P8 00HY121 0 41 Europe/London 2011-07-31
-2646704 Holsworthy Holsworthy 50.81196 -4.35383 P PPL GB ENG D4 18UK 2306 138 Europe/London 2011-03-03
-2646712 Holmpton Holmpton 53.68771 0.06583 P PPLA3 GB ENG E1 00FB071 0 22 Europe/London 2011-07-31
-2646720 Holmes Chapel Holmes Chapel 53.2014 -2.35742 P PPL GB ENG Z7 00EQ066 5795 62 Europe/London 2011-03-03
-2646736 Hollym Hollym 53.70402 0.04008 P PPLA3 GB ENG E1 00FB069 0 9 Europe/London 2011-07-31
-2646787 Holbeach Holbeach 52.80401 0.01442 P PPL GB ENG H7 32UF 7408 6 Europe/London 2010-05-24
-2646807 Hoddesdon Hoddesdon Hoddesdon,Khoddsdon,Ходдсдон 51.76148 -0.01144 P PPL GB ENG F8 26UB 35174 46 Europe/London 2010-08-03
-2646813 Hockliffe Hockliffe 51.93109 -0.58652 P PPLA3 GB ENG Z6 00KC034 0 101 Europe/London 2011-07-31
-2646814 Hockley Hockley 52.5 -1.91667 P PPLX GB ENG 00 13919 131 Europe/London 2006-01-17
-2646826 Hitchin Hitchin Hitchin 51.95314 -0.26519 P PPL GB ENG F8 26UF 33830 70 Europe/London 2011-03-03
-2646828 Histon Histon 52.25166 0.10643 P PPL GB ENG C3 12UG 7592 14 Europe/London 2010-05-24
-2646830 Hirwaun Hirwaun Hirwain,Hirwaun 51.73917 -3.51028 P PPLA3 GB GB WLS Y9 00PF009 0 189 Europe/London 2011-07-31
-2646846 Hinton Charterhouse Hinton Charterhouse 51.32222 -2.32917 P PPLA3 GB ENG A4 00HA024 0 145 Europe/London 2011-07-31
-2646850 Hinton Hinton 51.48972 -2.38472 P PPL GB ENG M6 3533 110 Europe/London 2006-01-17
-2646856 Hingham Hingham Hingham 52.57969 0.98422 P PPL GB ENG I9 33UH 1963 61 Europe/London 2010-08-15
-2646858 Hindon Hindon Hindon 51.09222 -2.12583 P PPLA3 GB ENG P8 00HY120 0 131 Europe/London 2011-07-31
-2646862 Hindley Hindley 53.53333 -2.58333 P PPL GB ENG 00 24169 42 Europe/London 2006-01-17
-2646863 Hindhead Hindhead 51.11381 -0.73351 P PPL GB ENG N7 43UL 6187 252 Europe/London 2010-05-24
-2646867 Hinckley Hinckley Hinckley,Khinkli,Хинкли 52.5389 -1.37613 P PPL GB ENG H5 31UE 45130 113 Europe/London 2011-03-03
-2646890 Hillsborough Hillsborough 54.46345 -6.07664 P PPL GB NIR 00 3872 113 Europe/London 2007-04-13
-2646900 Hill Hill 51.65139 -2.51556 P PPLA3 GB ENG M6 00HD019 0 7 Europe/London 2011-07-31
-2646914 High Wycombe High Wycombe Chepping,High Wycombe,Wycombe 51.62907 -0.74934 P PPL GB ENG B9 11UF 80357 76 Europe/London 2011-02-16
-2646916 Highworth Highworth Highworth 51.63051 -1.711 P PPL GB ENG N9 00HX008 8174 135 Europe/London 2011-03-03
-2646921 High Valleyfield High Valleyfield High Valleyfield,Valleyfield 56.06357 -3.59913 P PPL GB SCT V1 2837 31 Europe/London 2011-03-03
-2646922 Hightown Hightown 53.51667 -3.05 P PPLA3 GB ENG L8 00CA009 2297 6 Europe/London 2011-07-31
-2646941 Highley Highley Highley 52.44866 -2.38251 P PPL GB ENG L6 00GG086 3371 108 Europe/London 2011-03-03
-2646953 High Halstow High Halstow 51.44863 0.5609 P PPLA3 GB ENG I3 00LC007 1660 59 Europe/London 2011-07-31
-2646963 High Etherley High Etherley Etherley,High Etherley 54.65391 -1.74363 P PPL GB ENG D8 00EJ037 2119 164 Europe/London 2011-03-03
-2646970 High Coniscliffe High Coniscliffe High Coniscliffe 54.53333 -1.65 P PPLA3 GB ENG D1 00EH011 0 59 Europe/London 2011-07-31
-2646972 Highclere Highclere Highclere 51.3386 -1.37569 P PPL GB ENG F2 24UB 2463 135 Europe/London 2011-02-23
-2646979 High Blantyre High Blantyre Blantyre,High Blantyre 55.78438 -4.10007 P PPL GB SCT W5 16739 78 Europe/London 2011-03-03
-2646981 High Bentham High Bentham Bentham,High Bentham 54.11823 -2.51199 P PPL GB ENG J7 36UB 1999 102 Europe/London 2011-03-03
-2646985 Higham Ferrers Higham Ferrers 52.30596 -0.59342 P PPL GB ENG J1 34UD 6222 74 Europe/London 2011-03-03
-2646994 Hibaldstow Hibaldstow Hibaldstow 53.51133 -0.52082 P PPLA3 GB ENG J3 00FD028 1809 10 Europe/London 2011-07-31
-2647007 Hexham Hexham Hexham 54.96986 -2.104 P PPL GB ENG J6 00EM080 10920 61 Europe/London 2011-03-03
-2647021 Hetton le Hole Hetton le Hole 54.81667 -1.45 P PPL GB ENG D8 13100 91 Europe/London 2010-06-07
-2647023 Hethersett Hethersett Hethersett 52.59761 1.17359 P PPL GB ENG I9 33UH 4109 52 Europe/London 2011-03-03
-2647026 Heswall Heswall 53.32733 -3.09648 P PPL GB ENG Q1 00EW114 30065 88 Europe/London 2011-03-03
-2647034 Hessle Hessle 53.72454 -0.43842 P PPLA3 GB ENG E1 00FB068 0 11 Europe/London 2011-07-31
-2647037 Heslington Heslington Heslington 53.94636 -1.04919 P PPLA3 GB ENG Q5 00FF013 0 16 Europe/London 2011-07-31
-2647044 Hertford Hertford Khertford,Хертфорд 51.79588 -0.07854 P PPLA2 GB ENG F8 26UD 25847 45 Europe/London 2010-10-16
-2647057 Herne Bay Herne Bay Herne Bay 51.373 1.12857 P PPL GB ENG G5 36642 1 Europe/London 2010-08-03
-2647062 Hermitage Hermitage 51.4554 -1.26823 P PPL GB ENG P4 00MB031 1571 121 Europe/London 2011-02-21
-2647074 Hereford Hereford Henffordd,Hereford,Khereforde,Херефорде 52.05684 -2.71482 P PPLA2 GB ENG F7 00GA240 58281 61 Europe/London 2011-03-03
-2647075 Herbrandston Herbrandston 51.72639 -5.08667 P PPLA3 GB WLS Y7 00NS024 0 58 Europe/London 2011-07-31
-2647097 Henlow Henlow 52.03021 -0.28599 P PPLA3 GB ENG Z6 00KC033 12320 43 Europe/London 2011-07-31
-2647099 Henllan Henllan 53.2 -3.46667 P PPLA3 GB WLS X9 00NG017 0 107 Europe/London 2011-07-31
-2647101 Henley on Thames Henley on Thames Henley on Thames 51.53333 -0.9 P PPL GB ENG K2 38UD 10747 34 Europe/London 2012-01-17
-2647102 Henley in Arden Henley in Arden 52.29032 -1.77807 P PPL GB ENG P3 44UE 2859 74 Europe/London 2010-05-24
-2647111 Henfield Henfield Henfield 50.93204 -0.27328 P PPL GB ENG P6 45UF 4628 30 Europe/London 2010-08-03
-2647116 Hendon Hendon 51.6 -0.21667 P PPLA3 GB ENG GLA A2 0 63 Europe/London 2010-10-17
-2647120 Hemsworth Hemsworth Hemsworth 53.61267 -1.35424 P PPLA3 GB ENG 45 00DB010 9349 62 Europe/London 2011-07-31
-2647123 Hemsby Hemsby 52.69714 1.69181 P PPL GB ENG I9 33UD 5444 9 Europe/London 2010-05-24
-2647125 Hempstead Hempstead 52.01653 0.37886 P PPL GB ENG E4 22UQ 5000 95 Europe/London 2012-03-26
-2647133 Hemingford Grey Hemingford Grey Hemingford,Hemingford Grey 52.31756 -0.10029 P PPL GB ENG C3 12UE 3163 10 Europe/London 2010-08-03
-2647136 Hemingbrough Hemingbrough 53.76863 -0.97673 P PPL GB ENG J7 36UH 1667 9 Europe/London 2011-03-03
-2647138 Hemel Hempstead Hemel Hempstead Hemel,Hemel Hempstead 51.75369 -0.47517 P PPL GB ENG F8 26UC 85629 88 Europe/London 2011-03-03
-2647143 Helston Helston Hellys,Helstone,Henlys 50.10319 -5.27045 P PPL GB ENG C6 00HE049 9780 60 Europe/London 2012-03-29
-2647145 Helsby Helsby 53.27396 -2.76905 P PPL GB ENG Z8 00EW081 4806 19 Europe/London 2011-03-03
-2647146 Helpston Helpston Helpston,Helpstone 52.63233 -0.34676 P PPLA3 GB ENG K3 00JA011 0 19 Europe/London 2011-07-31
-2647149 Helmsley Helmsley 54.24577 -1.05683 P PPL GB ENG J7 36UF 1594 55 Europe/London 2010-12-09
-2647171 Helland Helland 50.5 -4.71667 P PPLA3 GB ENG C6 00HE048 0 168 Europe/London 2011-07-31
-2647178 Helensburgh Helensburgh Helensburgh 56.00614 -4.72648 P PPL GB SCT T8 14108 27 Europe/London 2011-03-03
-2647186 Heighington Heighington 54.6 -1.6 P PPLA3 GB ENG D1 00EH010 0 114 Europe/London 2011-07-31
-2647187 Heighington Heighington 53.21241 -0.45902 P PPL GB ENG H7 32UE 6414 16 Europe/London 2010-05-24
-2647191 Hedon Hedon 53.73962 -0.19655 P PPLA3 GB ENG E1 00FB067 7115 4 Europe/London 2011-07-31
-2647198 Heckmondwike Heckmondwike 53.70646 -1.67747 P PPL GB ENG 00 11542 61 Europe/London 2007-02-07
-2647200 Heckington Heckington Heckington 52.98183 -0.29903 P PPL GB ENG H7 32UE 3467 16 Europe/London 2010-08-03
-2647202 Hebron Hebron 55.18333 -1.68333 P PPLA3 GB ENG J6 00EM072 0 68 Europe/London 2011-07-31
-2647207 Hebden Bridge Hebden Bridge 53.74093 -2.01337 P PPL GB ENG C2 00CY003 4177 102 Europe/London 2011-03-03
-2647218 Heathfield Heathfield 50.96718 0.25612 P PPL GB ENG E2 21UH 1001 148 Europe/London 2012-03-29
-2647227 Heanor Heanor 53.01372 -1.35383 P PPL GB ENG D3 17UB 23122 127 Europe/London 2011-03-03
-2647229 Healing Healing 53.58101 -0.16202 P PPL GB ENG J2 00FC011 2664 7 Europe/London 2011-03-03
-2647230 Healey Healey 54.91667 -1.96667 P PPLA3 GB ENG J6 00EM071 0 203 Europe/London 2011-07-31
-2647232 Heage Heage Heage 53.0505 -1.44688 P PPL GB ENG D3 17UB 2698 118 Europe/London 2011-03-03
-2647240 Headcorn Headcorn 51.16966 0.62433 P PPL GB ENG G5 29UH 2479 23 Europe/London 2010-05-24
-2647242 Heacham Heacham 52.90782 0.49387 P PPL GB ENG I9 33UE 4714 8 Europe/London 2010-05-24
-2647246 Hazel Grove Hazel Grove 53.38333 -2.11667 P PPL GB ENG I2 15265 88 Europe/London 2012-03-29
-2647248 Haywards Heath Haywards Heath Baywards Heath,Haywards Heath 50.99769 -0.10313 P PPL GB ENG P6 45UG 29660 78 Europe/London 2011-02-06
-2647250 Hayton Hayton 53.9 -0.75 P PPLA3 GB ENG E1 00FB066 0 20 Europe/London 2011-07-31
-2647254 Haynes Haynes 52.06646 -0.39946 P PPLA3 GB ENG Z6 00KC031 0 90 Europe/London 2011-07-31
-2647258 Hayle Hayle Hayle,Heyl 50.18392 -5.42137 P PPL GB ENG C6 00HE047 8019 6 Europe/London 2011-03-03
-2647260 Hayfield Hayfield 53.37893 -1.94544 P PPL GB ENG D3 17UH 2056 193 Europe/London 2010-05-24
-2647261 Hayes Hayes 51.51579 -0.4234 P PPL GB ENG GLA F9 50000 39 Europe/London 2012-03-01
-2647265 Haydock Haydock 53.46723 -2.68166 P PPL GB ENG N1 00EU003 17333 41 Europe/London 2011-03-03
-2647267 Hay Hay Hay,Hay-on-wye 52.07049 -3.12741 P PPLA3 GB WLS Y8 00NN035 0 97 Europe/London 2011-07-31
-2647268 Haxey Haxey 53.48937 -0.8402 P PPL GB ENG J3 00FD027 1817 18 Europe/London 2011-03-03
-2647269 Haxby Haxby Haxby 54.01635 -1.0768 P PPL GB ENG Q5 00FF012 12601 20 Europe/London 2011-03-03
-2647274 Hawthorn Hawthorn 54.8 -1.35 P PPLA3 GB ENG D8 00EJ051 0 80 Europe/London 2011-07-31
-2647278 Haworth Haworth Haworth 53.82905 -1.94827 P PPL GB ENG 45 6213 177 Europe/London 2010-08-03
-2647289 Hawkinge Hawkinge 51.11276 1.16176 P PPL GB ENG G5 4390 155 Europe/London 2009-10-14
-2647291 Hawkhurst Hawkhurst 51.0479 0.51095 P PPL GB ENG G5 29UQ 3197 77 Europe/London 2010-05-24
-2647297 Hawick Hawick Haaick,Hamhaig 55.42273 -2.78666 P PPL GB SCT T9 14053 116 Europe/London 2012-03-29
-2647303 Hawarden Hawarden Hawarden,Khavarden,Penarlag,Penarlâg,Хаварден 53.18478 -3.02578 P PPL GB WLS Y1 00NJ012 25513 78 Europe/London 2011-03-03
-2647310 Haverhill Haverhill 52.08226 0.43891 P PPL GB ENG N5 42UF 22500 70 Europe/London 2011-03-03
-2647311 Haverfordwest Haverfordwest Hwlffordd 51.80169 -4.96914 P PPLA2 GB WLS Y7 00NS022 13469 17 Europe/London 2012-03-29
-2647317 Havant Havant Havant,Khavant,Хавант 50.8567 -0.98559 P PPL GB ENG F2 24UH 45574 12 Europe/London 2010-08-03
-2647338 Hathersage Hathersage Hathersage 53.3303 -1.65398 P PPL GB ENG D3 17UF 1617 160 Europe/London 2011-03-03
-2647340 Hathern Hathern Hathern 52.79548 -1.25644 P PPL GB ENG H5 31UC 1967 47 Europe/London 2011-03-03
-2647343 Hatfield Peverel Hatfield Peverel 51.77591 0.59489 P PPL GB ENG E4 22UC 3331 46 Europe/London 2010-05-24
-2647345 Hatfield Heath Hatfield Heath 51.81233 0.21243 P PPL GB ENG E4 22UQ 1548 82 Europe/London 2010-05-24
-2647347 Hatfield Hatfield 53.57788 -0.99924 P PPLA3 GB ENG D5 00CE024 0 10 Europe/London 2011-07-31
-2647349 Hatfield Hatfield Bishops Hatfield,Hatfield 51.76338 -0.22419 P PPL GB ENG F8 26UL 27883 84 Europe/London 2010-09-21
-2647354 Haswell Haswell 54.78333 -1.41667 P PPLA3 GB ENG D8 00EJ050 0 141 Europe/London 2011-07-31
-2647356 Hastings Hastings Gastings,Hastings,Khejstings,hystnghs,Гастингс,Хейстингс,هيستنغس 50.85519 0.57292 P PPL GB ENG E2 21UD 89100 29 Europe/London 2011-05-17
-2647362 Haslingfield Haslingfield Haslingfield 52.15016 0.05579 P PPL GB ENG C3 12UG 1585 24 Europe/London 2010-08-03
-2647363 Haslingden Haslingden Haslingden 53.70326 -2.32382 P PPL GB ENG H2 30UM 15204 244 Europe/London 2011-03-03
-2647365 Haslemere Haslemere 51.09015 -0.70785 P PPL GB ENG N7 43UL 11923 157 Europe/London 2010-05-24
-2647383 Harwich Harwich Harwich,Harwick,Kharvich,Харвич 51.94194 1.28437 P PPL GB ENG E4 22UN 20578 1 Europe/London 2010-08-03
-2647385 Harwell Harwell Harwell,Kharvel,Харвел 51.59947 -1.29175 P PPL GB ENG K2 38UE 2400 80 Europe/London 2010-08-03
-2647386 Harvington Harvington Harvington 52.13333 -1.91667 P PPL GB ENG Q4 47UF 1672 37 Europe/London 2012-01-17
-2647388 Hartwell Hartwell 52.14616 -0.85376 P PPL GB ENG J1 34UG 1855 121 Europe/London 2010-05-24
-2647391 Hartshill Hartshill Hartshill 52.54203 -1.52006 P PPL GB ENG P3 44UB 44UB017 12479 145 Europe/London 2011-03-05
-2647400 Hartlepool Hartlepool Hartlepool,Khartlpul,Хартлпул 54.68611 -1.2125 P PPLA2 GB ENG F5 86713 14 Europe/London 2010-10-16
-2647406 Harthill Harthill Harthill 55.86667 -3.75 P PPL GB SCT 00 3464 179 Europe/London 2010-08-03
-2647407 Harthill Harthill 53.31667 -1.26667 P PPL GB ENG 00 1766 107 Europe/London 2006-01-17
-2647408 Harthill Harthill 53.08333 -2.75 P PPLA3 GB ENG Z8 00EW079 0 98 Europe/London 2011-07-31
-2647409 Hartford Hartford 53.23333 -2.55 P PPLA3 GB ENG Z8 00EW078 0 42 Europe/London 2011-07-31
-2647416 Hartburn Hartburn Hartburn 55.16667 -1.85 P PPLA3 GB ENG J6 00EM067 0 129 Europe/London 2011-07-31
-2647419 Harston Harston 52.13691 0.07999 P PPL GB ENG C3 12UG 1730 17 Europe/London 2010-05-24
-2647421 Harrow on the Hill Harrow on the Hill Harrow,Harrow keruelet,Harrow kerület,Harrow on the Hill 51.57142 -0.33371 P PPL GB ENG GLA F4 10632 72 Europe/London 2010-09-21
-2647425 Harrow Harrow 51.57835 -0.33208 P PPLA3 GB ENG GLA F4 0 69 Europe/London 2010-10-17
-2647427 Harrold Harrold 52.20127 -0.61038 P PPLA3 GB ENG Z5 00KB017 0 48 Europe/London 2011-07-31
-2647428 Harrogate Harrogate Harrogate,Kharrogejt,Харрогейт 53.99078 -1.5373 P PPL GB ENG J7 36UD 87024 127 Europe/London 2011-03-03
-2647437 Harrietsham Harrietsham 51.24252 0.6706 P PPL GB ENG G5 29UH 1537 85 Europe/London 2010-05-24
-2647451 Harpenden Harpenden 51.81684 -0.35706 P PPL GB ENG F8 6615330 28966 107 Europe/London 2010-05-24
-2647461 Harlow Harlow Harlow,Kharlou,Харлоу 51.77655 0.11158 P PPL GB ENG E4 22UJ 94365 68 Europe/London 2010-08-03
-2647464 Harlington Harlington 51.96288 -0.49241 P PPLA3 GB ENG Z6 00KC030 0 107 Europe/London 2011-07-31
-2647465 Harley Harley Harley 52.6 -2.6 P PPLA3 GB ENG L6 00GG084 0 95 Europe/London 2011-07-31
-2647467 Harleston Harleston Harleston 52.40121 1.29815 P PPL GB ENG I9 33UH 3986 32 Europe/London 2010-08-03
-2647487 Harefield Harefield Harefield 51.6 -0.48333 P PPL GB ENG GLA F9 6683 87 Europe/London 2012-01-17
-2647497 Hardingstone Hardingstone 52.21358 -0.88582 P PPL GB ENG J1 34UF 7897 106 Europe/London 2011-02-16
-2647502 Harbury Harbury 52.23537 -1.45706 P PPL GB ENG P3 44UE 2264 126 Europe/London 2011-02-24
-2647518 Hanslope Hanslope 52.11425 -0.82672 P PPLA3 GB ENG I6 00MG013 1867 119 Europe/London 2011-07-31
-2647519 Hannington Hannington 51.63333 -1.75 P PPLA3 GB ENG N9 00HX006 0 118 Europe/London 2011-07-31
-2647526 Hankerton Hankerton 51.61444 -2.045 P PPLA3 GB ENG P8 00HY114 0 93 Europe/London 2011-07-31
-2647542 Hamsterley Hamsterley 54.68333 -1.81667 P PPLA3 GB ENG D8 00EJ049 0 121 Europe/London 2011-07-31
-2647546 Hampton in Arden Hampton in Arden Hampton in Arden 52.4254 -1.70271 P PPLA3 GB ENG M2 00CT008 1692 123 Europe/London 2011-07-31
-2647567 Hammersmith Hammersmith Hammersmith 51.49384 -0.22882 P PPLA3 GB ENG GLA F1 0 8 Europe/London 2010-10-17
-2647570 Hamilton Hamilton Gamil'ton,Гамильтон 55.76667 -4.03333 P PPLA2 GB SCT W5 47615 68 Europe/London 2012-01-10
-2647580 Hambleton Hambleton Hambleton 53.76667 -1.16667 P PPL GB ENG J7 36UH 1749 13 Europe/London 2012-01-17
-2647585 Hamble Hamble Hample 50.85966 -1.32432 P PPL GB ENG F2 24UD 3939 16 Europe/London 2011-02-21
-2647593 Haltwhistle Haltwhistle 54.97101 -2.45682 P PPLA3 GB ENG J6 00EM065 3896 124 Europe/London 2011-07-31
-2647599 Halton Halton 53.31667 -2.7 P PPL GB ENG C5 2218 50 Europe/London 2007-06-15
-2647605 Halstead Halstead Fort Halstead,Halstead,Halsted 51.32796 0.13269 P PPL GB ENG G5 B8 11299 168 Europe/London 2011-02-05
-2647606 Halsham Halsham 53.72985 -0.0745 P PPLA3 GB ENG E1 00FB063 0 3 Europe/London 2011-07-31
-2647616 Halling Halling 51.35142 0.4452 P PPLA3 GB ENG I3 00LC006 1848 12 Europe/London 2011-07-31
-2647629 Halkyn Halkyn Halkin,Halkyn 53.22556 -3.19016 P PPLA3 GB WLS Y1 00NJ011 0 271 Europe/London 2011-07-31
-2647632 Halifax Halifax Galifaks,Halifax,Галифакс 53.71667 -1.85 P PPLA2 GB ENG C2 82624 150 Europe/London 2010-10-16
-2647638 Halesworth Halesworth 52.3464 1.5029 P PPL GB ENG N5 42UH 5575 22 Europe/London 2010-05-24
-2647639 Halesowen Halesowen Halesowen,Khejlsoven,Хейлсовен 52.44859 -2.04938 P PPL GB ENG D7 47UB 55265 128 Europe/London 2011-03-03
-2647643 Hale Hale 53.33333 -2.8 P PPLA3 GB ENG E9 00ET002 0 16 Europe/London 2011-07-31
-2647644 Hale Hale Hale 51.21667 -0.78333 P PPL GB ENG N7 43UL 15657 64 Europe/London 2012-01-17
-2647655 Hailsham Hailsham Hailsham 50.8622 0.25775 P PPL GB ENG E2 21UH 19604 28 Europe/London 2011-02-02
-2647658 Haigh Haigh 53.6 -2.58333 P PPLA3 GB ENG P7 00BW001 0 110 Europe/London 2011-07-31
-2647662 Hagley Hagley Hagley 52.4262 -2.12819 P PPL GB ENG Q4 47UB 5850 133 Europe/London 2011-03-03
-2647675 Hadlow Hadlow 51.22417 0.33914 P PPL GB ENG G5 29UP 2845 30 Europe/London 2011-02-03
-2647677 Hadley Hadley 52.7 -2.48333 P PPL GB ENG L6 14829 107 Europe/London 2007-06-16
-2647679 Hadleigh Hadleigh 51.55269 0.60983 P PPL GB ENG E4 22UE 18300 74 Europe/London 2012-03-29
-2647686 Haddington Haddington 55.95612 -2.78332 P PPLA2 GB SCT U6 8779 55 Europe/London 2011-01-06
-2647688 Haddenham Haddenham Haddenham 51.77326 -0.92628 P PPL GB ENG B9 11UB 2864 79 Europe/London 2011-02-16
-2647694 Hackney Hackney 51.55 -0.05 P PPLA3 GB ENG GLA E8 0 19 Europe/London 2010-10-17
-2647752 Gurnard Gurnard Gurnard 50.76057 -1.32411 P PPLA3 GB ENG G2 00MW011 0 7 Europe/London 2011-07-31
-2647759 Gunnislake Gunnislake Gunnislake 50.52441 -4.21333 P PPL GB ENG C6 00HE014 3025 53 Europe/London 2011-03-03
-2647761 Gunness Gunness Gunhouse,Gunness 53.5908 -0.72834 P PPL GB ENG J3 00FD025 2253 6 Europe/London 2011-03-03
-2647778 Gullane Gullane 56.03539 -2.82951 P PPL GB SCT U6 2133 29 Europe/London 2011-03-03
-2647784 Guiseley Guiseley Guiseley 53.87561 -1.71232 P PPL GB ENG H3 21000 140 Europe/London 2012-03-29
-2647785 Guisborough Guisborough 54.53478 -1.05606 P PPLA3 GB ENG K9 00EE001 17569 95 Europe/London 2011-07-31
-2647793 Guildford Guildford Gilford,Guildford,Guilford,jylfwrd,Гилфорд,جيلفورد 51.23536 -0.57427 P PPL GB ENG N7 43UD 71873 45 46 Europe/London 2010-08-03
-2647837 Grove Grove 51.60954 -1.42187 P PPL GB ENG K2 38UE 18312 76 Europe/London 2010-10-07
-2647840 Grosmont Grosmont Grosmont,Grosmount 51.91667 -2.86667 P PPLA3 GB GB WLS Y4 00PP008 0 117 Europe/London 2011-07-31
-2647854 Griston Griston 52.5572 0.86436 P PPL GB ENG I9 33UB 1206 55 Europe/London 2010-08-15
-2647865 Grindon Grindon 54.61667 -1.38333 P PPLA3 GB ENG N3 00EF006 0 67 Europe/London 2011-07-31
-2647870 Grindale Grindale 54.12453 -0.27363 P PPLA3 GB ENG E1 00FB062 0 55 Europe/London 2011-07-31
-2647874 Grimston Grimston 52.79011 -0.98656 P PPL GB ENG H5 31UG 1848 137 Europe/London 2011-03-09
-2647878 Grimsby Grimsby Great Grimsby,Grimsby 53.56539 -0.07553 P PPLA2 GB GB ENG J2 00FC005 0 4 Europe/London 2012-01-07
-2647905 Greyabbey Greyabbey 54.53333 -5.56667 P PPL GB NIR 64 1030 1 Europe/London 2006-01-17
-2647910 Gretna Gretna 54.9938 -3.06594 P PPL GB SCT U2 16UD 2692 17 Europe/London 2011-03-03
-2647919 Gresford Gresford Gresford 53.08539 -2.97062 P PPL GB WLS Z4 00NL015 5393 76 Europe/London 2011-03-03
-2647934 Greetham Greetham 52.72059 -0.63068 P PPLA3 GB ENG L4 00FP022 0 115 Europe/London 2011-07-31
-2647948 Greenock Greenock Greenock,Grijnok,Grinok,Грийнок,Гринок 55.94838 -4.76121 P PPLA2 GB SCT V4 43495 12 Europe/London 2011-03-03
-2647957 Greenisland Greenisland 54.7 -5.86667 P PPL GB NIR 00 5073 33 Europe/London 2006-01-17
-2647967 Greenhead Greenhead Greenhead 54.96667 -2.51667 P PPLA3 GB ENG J6 00EM063 0 180 Europe/London 2011-07-31
-2647975 Greenfield Greenfield Greenfield 53.28333 -3.21667 P PPL GB WLS Y1 2446 55 Europe/London 2012-01-17
-2647983 Great Yeldham Great Yeldham Great Yeldham,Yeldham 52.01347 0.5654 P PPL GB ENG E4 22UC 1637 55 Europe/London 2011-03-03
-2647984 Great Yarmouth Great Yarmouth Yarmouth 52.60831 1.73052 P PPL GB ENG I9 33UD 59601 6 Europe/London 2010-05-24
-2647985 Great Wyrley Great Wyrley Great Wyrley,Wyrley 52.66277 -2.01111 P PPL GB ENG M9 41UF 19193 135 Europe/London 2011-03-03
-2648003 Great Totham Great Totham Great Totham,Totham 51.77354 0.68932 P PPL GB ENG E4 22UK 3648 52 Europe/London 2011-03-03
-2648004 Great Torrington Great Torrington Great Torrington,Torrington 50.95309 -4.14401 P PPL GB ENG D4 18UK 5590 99 Europe/London 2011-03-03
-2648010 Great Stukeley Great Stukeley 52.35657 -0.21071 P PPL GB ENG C3 12UE 1586 42 Europe/London 2010-05-24
-2648026 Great Sankey Great Sankey Great Sankey,Sankey 53.39234 -2.63994 P PPL GB ENG P2 00EU008 43793 17 Europe/London 2011-03-03
-2648051 Great Ness Great Ness Great Ness 52.76667 -2.9 P PPLA3 GB ENG L6 00GG080 0 96 Europe/London 2011-07-31
-2648057 Great Missenden Great Missenden Great Missenden 51.70419 -0.70797 P PPL GB ENG B9 11UC 7227 132 Europe/London 2010-08-21
-2648063 Great Malvern Great Malvern Great Malvern,Malvern 52.11161 -2.32515 P PPL GB ENG Q4 47UC 37663 118 Europe/London 2011-03-03
-2648074 Great Houghton Great Houghton Great Houghton,Houghton 53.55352 -1.34952 P PPLA3 GB ENG A3 00CC005 0 62 Europe/London 2011-07-31
-2648079 Great Horkesley Great Horkesley Great Horkesley,Horkesley 51.93821 0.87551 P PPL GB ENG E4 22UG 1853 53 Europe/London 2011-03-03
-2648084 Great Harwood Great Harwood 53.78512 -2.40865 P PPL GB ENG H2 30UG 11467 125 Europe/London 2011-03-03
-2648087 Great Hanwood Great Hanwood Great Hanwood,Hanwood 52.68333 -2.81667 P PPLA3 GB GB ENG L6 00GG079 0 76 Europe/London 2011-07-31
-2648089 Greatham Greatham 54.64183 -1.23806 P PPLA3 GB ENG F5 00EB005 0 19 Europe/London 2011-07-31
-2648096 Great Gonerby Great Gonerby 52.93507 -0.66685 P PPL GB ENG H7 32UG 5853 106 Europe/London 2011-03-03
-2648097 Great Glen Great Glen Great Glen 52.57548 -1.0349 P PPL GB ENG H5 31UD 3066 99 Europe/London 2011-03-03
-2648113 Great Eccleston Great Eccleston Eccleston,Great Eccleston 53.85315 -2.87026 P PPL GB ENG H2 30UQ 1683 19 Europe/London 2011-03-03
-2648117 Great Dunmow Great Dunmow Dunmow,Great Dunmow 51.8723 0.36255 P PPL GB ENG E4 22UQ 6075 74 Europe/London 2010-08-03
-2648120 Driffield Driffield Driffield 54.00489 -0.43872 P PPLA3 GB ENG E1 00FB038 11495 19 Europe/London 2011-07-31
-2648133 Great Coates Great Coates Great Coates 53.5707 -0.13905 P PPLA3 GB ENG J2 00FC021 0 10 Europe/London 2011-07-31
-2648162 Great Bentley Great Bentley 51.85333 1.06379 P PPL GB ENG E4 22UN 1649 26 Europe/London 2010-05-24
-2648163 Great Bedwyn Great Bedwyn Bedwyn,Great Bedwyn 51.3795 -1.60151 P PPLA3 GB ENG P8 00HY107 0 125 Europe/London 2011-07-31
-2648164 Great Barton Great Barton Great Barton 52.27257 0.76679 P PPL GB ENG N5 42UF 1546 67 Europe/London 2011-03-03
-2648168 Great Barford Great Barford 52.15791 -0.35235 P PPL GB ENG Z5 00KB015 1906 25 Europe/London 2011-03-03
-2648172 Great Ayton Great Ayton 54.49148 -1.13623 P PPL GB ENG J7 36UC 4550 93 Europe/London 2010-05-24
-2648182 Grays Grays Grays,Grays Thurrock 51.47566 0.32521 P PPLA2 GB ENG O3 29UG 70934 13 Europe/London 2011-02-12
-2648187 Gravesend Gravesend Gravesend 51.44138 0.37371 P PPL GB ENG G5 29UG 54263 18 Europe/London 2011-02-05
-2648190 Gravenhurst Gravenhurst 52.00854 -0.36982 P PPLA3 GB ENG Z6 00KC028 0 49 Europe/London 2011-07-31
-2648205 Grantown on Spey Grantown on Spey Grantown,Grantown on Spey 57.31667 -3.61667 P PPL GB SCT V3 2122 202 Europe/London 2012-01-17
-2648208 Grantham Grantham Grantham,Granty,Гранты 52.91149 -0.64184 P PPL GB ENG H7 32UG 35720 64 Europe/London 2010-08-03
-2648215 Grangemouth Grangemouth Grangemouth 56.01141 -3.72183 P PPL GB SCT U9 17349 6 Europe/London 2011-03-03
-2648253 Goxhill Goxhill Goxhill 53.67635 -0.33759 P PPL GB ENG J3 00FD024 2038 11 Europe/London 2011-03-03
-2648259 Gourock Gourock 55.96157 -4.81789 P PPL GB SCT V4 11390 10 Europe/London 2011-03-03
-2648265 Gotham Gotham Gotham 52.86799 -1.20558 P PPL GB ENG J9 37UJ 1668 36 Europe/London 2010-08-03
-2648272 Gosport Gosport Gosport 50.79509 -1.12902 P PPL GB ENG F2 24UF 70793 5 Europe/London 2011-02-14
-2648273 Gosforth Gosforth 55 -1.61667 P PPL GB ENG 00 23975 67 Europe/London 2006-01-17
-2648279 Gosberton Gosberton Gosberton 52.86913 -0.16102 P PPL GB ENG H7 32UF 1730 6 Europe/London 2010-08-03
-2648290 Gorseinon Gorseinon 51.66931 -4.04163 P PPL GB WLS Z1 00NX009 19478 23 Europe/London 2011-03-03
-2648299 Gorleston-on-Sea Gorleston-on-Sea Gorleston 52.57301 1.73069 P PPL GB ENG I9 33UD 5882 4 Europe/London 2012-03-29
-2648300 Goring-by-Sea Goring-by-Sea Goring,Goring by Sea 50.81239 -0.42194 P PPL GB ENG P6 45UH 1001 7 Europe/London 2012-03-29
-2648301 Goring Goring 51.52322 -1.13342 P PPL GB ENG K2 38UD 4022 54 Europe/London 2011-02-18
-2648308 Gorebridge Gorebridge Gorebridge 55.84594 -3.04563 P PPL GB SCT V5 5874 187 Europe/London 2011-03-03
-2648314 Goostrey Goostrey 53.22731 -2.33919 P PPL GB ENG Z7 00EQ055 2074 68 Europe/London 2011-03-03
-2648315 Goosnargh Goosnargh 53.822 -2.67017 P PPL GB ENG H2 30UK 1574 72 Europe/London 2011-03-03
-2648319 Goole Goole 53.71667 -0.86667 P PPLA3 GB ENG E1 00FB059 19158 3 Europe/London 2011-07-31
-2648325 Goodwick Goodwick Wdig 52.00491 -4.99511 P PPL GB WLS Y7 1871 25 Europe/London 2008-07-21
-2648341 Golspie Golspie Golspie 57.97266 -3.97798 P PPL GB SCT V3 1381 7 Europe/London 2011-03-03
-2648354 Goldcliff Goldcliff Goldcliff 51.54222 -2.91778 P PPLA3 GB WLS Y6 00PR009 0 7 Europe/London 2011-07-31
-2648356 Golborne Golborne 53.47693 -2.59651 P PPL GB ENG P7 00EU017 24021 40 Europe/London 2011-03-03
-2648363 Godstone Godstone 51.24843 -0.06781 P PPL GB ENG N7 43UK 2498 108 Europe/London 2011-02-05
-2648370 Godmanchester Godmanchester Durolipons,Godmanchester 52.31939 -0.17509 P PPL GB ENG C3 12UE 5965 12 Europe/London 2010-08-03
-2648372 Godalming Godalming Godalming,Godalminge,Goldaming,Годалминге 51.18462 -0.61725 P PPL GB ENG N7 43UL 22199 47 Europe/London 2011-02-14
-2648373 Gobowen Gobowen Gobowen 52.89615 -3.03686 P PPL GB ENG L6 00GG156 3302 110 Europe/London 2011-03-03
-2648383 Gnosall Gnosall Gnosall,Gnossall 52.78558 -2.25483 P PPL GB ENG M9 41UG 4171 102 Europe/London 2011-03-03
-2648385 Glyn-neath Glyn-neath Glyn Neath,Glyn-neath 51.7475 -3.61833 P PPL GB WLS Y5 4194 62 Europe/London 2012-01-17
-2648390 Glyncorrwg Glyncorrwg Glyncorrwg,Glyncorwg 51.67944 -3.62806 P PPLA3 GB GB WLS Y5 00NZ015 0 218 Europe/London 2011-07-31
-2648396 Glusburn Glusburn Glusburn 53.9 -2 P PPL GB ENG J7 36UB 7425 116 Europe/London 2012-01-17
-2648404 Gloucester Gloucester Caerloyw,Gloster,Gloucester,ge luo si te,ghlwshstr,gurosuta,Глостер,غلوشستر,グロスター,格洛斯特 51.86568 -2.2431 P PPLA2 GB ENG E6 23UE 128721 24 Europe/London 2010-10-16
-2648405 Glossop Glossop Glossop 53.44325 -1.949 P PPL GB ENG D3 17UH 33243 156 Europe/London 2011-03-03
-2648409 Glinton Glinton 52.63921 -0.29629 P PPLA3 GB ENG K3 00JA010 1791 14 Europe/London 2011-07-31
-2648438 Glenrothes Glenrothes 56.19514 -3.17316 P PPLA2 GB SCT V1 38734 92 Europe/London 2011-03-03
-2648523 Glenboig Glenboig 55.89422 -4.04619 P PPL GB SCT V8 1468 89 Europe/London 2011-03-03
-2648529 Glenavy Glenavy Glenavy 54.58333 -6.21667 P PPL GB NIR 00 1089 68 Europe/London 2010-08-09
-2648538 Glenariff Glenariff Glenariff,Glenariffe,Warren,Waterfoot 55.05 -6.06667 P PPL GB NIR 00 1286 4 Europe/London 2010-08-09
-2648549 Glemsford Glemsford 52.10351 0.66912 P PPL GB ENG N5 42UB 3359 70 Europe/London 2011-03-03
-2648559 Glastonbury Glastonbury Glastonbury,glstwnbwry,גלסטונבורי 51.14729 -2.71797 P PPL GB ENG M3 40UB 8617 20 Europe/London 2011-03-03
-2648579 Glasgow Glasgow GLA,Glaschu,Glaschú,Glasgovia,Glasgovo,Glasgow,Glaskobe,Glazgas,Glazgo,Glazgou,Glazgov,Glazgova,Glesca,Glāzgova,ge la si ge,geullaeseugo,glasago,glasgw,glasgwv,glazgo,gurasugo,klas kow,Γλασκώβη,Глазго,Глазгов,Глазгоу,גלאזגו,گلاسگو,گلاسگوۋ,ग्लासगो,กลาสโกว์,გლაზგო,グラスゴー,格拉斯哥,글래스고 55.86515 -4.25763 P PPLA2 GB SCT V2 610268 40 Europe/London 2011-06-16
-2648603 Glanamman Glanamman 51.8 -3.93333 P PPL GB WLS 00 4168 107 Europe/London 2006-01-27
-2648626 Girvan Girvan 55.24255 -4.85551 P PPL GB SCT W4 6821 12 Europe/London 2011-03-03
-2648627 Girton Girton Girton 52.23333 0.08333 P PPL GB ENG C3 12UG 3836 22 Europe/London 2012-01-17
-2648642 Gilwern Gilwern 51.82475 -3.09355 P PPL GB WLS Y4 00PP012 2346 105 Europe/London 2011-03-03
-2648657 Gillingham Gillingham Dzhillingem,Gillingham,Джиллингем,ג'ילינגהאם 51.38914 0.54863 P PPL GB ENG G5 101187 31 Europe/London 2010-08-03
-2648658 Gillingham Gillingham 51.03833 -2.27611 P PPL GB ENG D6 19UE 8822 73 Europe/London 2010-05-24
-2648669 Gilford Gilford 54.37256 -6.36126 P PPL GB NIR 00 1583 28 Europe/London 2007-04-13
-2648670 Gilfach Goch Gilfach Goch 51.59213 -3.47296 P PPL GB WLS Y9 00PF008 2532 208 Europe/London 2011-03-03
-2648673 Gildersome Gildersome Gildersome,Home of the Gilders 53.7614 -1.63147 P PPLA3 GB ENG H3 00DA036 0 139 Europe/London 2011-07-31
-2648683 Giffnock Giffnock Giffneck 55.80373 -4.29488 P PPLA2 GB SCT U7 16038 45 Europe/London 2011-03-03
-2648715 Germoe Germoe Germoe,Germol 50.11539 -5.37881 P PPLA3 GB ENG C6 00HE039 0 76 Europe/London 2011-07-31
-2648728 Gelligaer Gelligaer Gelligaer 51.66444 -3.25611 P PPLA3 GB WLS X4 00PK012 17376 233 Europe/London 2011-07-31
-2648739 Geddington Geddington Geddington 52.43757 -0.68965 P PPL GB ENG J1 34UE 1537 74 Europe/London 2011-03-03
-2648758 Gayhurst Gayhurst Gayhurst 52.11362 -0.76278 P PPLA3 GB ENG I6 00MG011 0 70 Europe/London 2011-07-31
-2648773 Gateshead Gateshead Gateshead,Gateshead-on-Tyne,Gejtskhed,gyytshd,Гейтсхед,גייטסהד 54.96209 -1.60168 P PPLA2 GB ENG E5 00CH002 77649 53 Europe/London 2011-03-03
-2648803 Garvagh Garvagh Garvagh 54.98333 -6.66667 P PPL GB NIR 00 1372 66 Europe/London 2010-08-09
-2648829 Garstang Garstang 53.90081 -2.77417 P PPL GB ENG H2 30UQ 6433 19 22 Europe/London 2010-09-16
-2648873 Gargrave Gargrave 53.98353 -2.10459 P PPL GB ENG J7 36UB 1851 112 Europe/London 2011-03-03
-2648875 Garforth Garforth 53.79173 -1.38067 P PPL GB ENG 00 15737 77 Europe/London 2007-02-07
-2648877 Garelochhead Garelochhead Garelochhead 56.08203 -4.82909 P PPL GB SCT T8 1296 21 Europe/London 2011-03-03
-2648899 Gamlingay Gamlingay 52.15561 -0.19303 P PPL GB ENG C3 12UG 3024 55 Europe/London 2010-05-24
-2648909 Galston Galston 55.60093 -4.38172 P PPL GB SCT U4 4902 52 Europe/London 2011-03-03
-2648924 Galgate Galgate Galgate 53.98333 -2.78333 P PPL GB ENG H2 30UH 1612 39 Europe/London 2012-01-17
-2648928 Galashiels Galashiels Gafashiels,Galashiels 55.61458 -2.80695 P PPL GB SCT T9 14351 119 Europe/London 2011-03-03
-2648945 Gainsborough Gainsborough Gainesborough,Gainsborough 53.38333 -0.76667 P PPL GB ENG H7 32UH 19871 11 Europe/London 2012-01-17
-2648970 Fylde Fylde Borough of Fylde,Fylde,Fylde Borough,Fylde Coast 53.83333 -2.91667 P PPL GB ENG H2 30UF 76500 22 Europe/London 2010-08-03
-2648972 Fyfield Fyfield Fyfield 51.41667 -1.78333 P PPLA3 GB ENG P8 00HY105 0 137 Europe/London 2011-07-31
-2648998 Fulford Fulford Fulford,Gate Fulford 53.93333 -1.06667 P PPLA3 GB GB ENG Q5 00FF011 0 12 Europe/London 2011-07-31
-2649000 Fulbourn Fulbourn Fulbourn,Fulbourne 52.18325 0.22213 P PPL GB ENG C3 12UG 3725 21 Europe/London 2010-08-03
-2649024 Frome Frome Frome 51.22834 -2.32211 P PPL GB ENG M3 40UB 24948 104 Europe/London 2011-03-03
-2649029 Frodsham Frodsham 53.29485 -2.72745 P PPL GB ENG Z8 00EW068 9106 14 Europe/London 2011-03-03
-2649033 Frizington Frizington Frizington 54.54185 -3.4946 P PPL GB ENG C9 16UE 1938 142 Europe/London 2010-08-03
-2649049 Frinton-on-Sea Frinton-on-Sea Frinton,Frinton-on-Sea 51.83877 1.24625 P PPL GB ENG E4 22UN 16941 24 Europe/London 2011-03-03
-2649052 Frimley Frimley 51.30288 -0.72527 P PPL GB ENG N7 43UJ 12739 73 Europe/London 2012-03-29
-2649059 Freystrop Freystrop Freyston,Freystrop 51.76333 -4.96028 P PPLA3 GB GB WLS Y7 00NS021 0 72 Europe/London 2011-07-31
-2649062 Freuchie Freuchie Freuchie 56.24829 -3.15865 P PPL GB SCT V1 1120 58 Europe/London 2011-03-03
-2649069 Freshwater Freshwater 50.692 -1.50787 P PPLA3 GB ENG G2 00MW008 8224 4 Europe/London 2011-07-31
-2649070 Freshford Freshford 51.33917 -2.30306 P PPLA3 GB ENG A4 00HA021 0 49 Europe/London 2011-07-31
-2649076 Fremington Fremington Fremington 51.06667 -4.11667 P PPL GB ENG D4 18UE 4010 27 Europe/London 2012-01-17
-2649083 Freckleton Freckleton 53.75433 -2.86489 P PPL GB ENG H2 30UF 8576 21 Europe/London 2011-03-03
-2649089 Fraserburgh Fraserburgh Fraserburgh 57.68744 -2.01844 P PPL GB SCT T6 12249 25 Europe/London 2011-03-03
-2649104 Framlingham Framlingham 52.22117 1.34205 P PPL GB ENG N5 42UG 2902 31 Europe/London 2010-05-24
-2649126 Fowey Fowey Fowey 50.33634 -4.6386 P PPL GB ENG C6 00HE038 2110 46 Europe/London 2011-03-03
-2649132 Four Marks Four Marks Four Marks 51.10735 -1.04945 P PPL GB ENG F2 24UC 4153 179 Europe/London 2010-08-03
-2649169 Fort William Fort William An Gearasdan,Fort Vil'jam,Fort William,Форт Вильям,פורט ויליאם 56.81648 -5.11208 P PPL GB SCT V3 2646086 9652 24 Europe/London 2010-04-08
-2649170 Fortuneswell Fortuneswell Fortuneswell 50.5603 -2.44243 P PPL GB ENG D6 19UJ 4446 56 Europe/London 2011-03-03
-2649171 Fortrose Fortrose Fortrose 57.58087 -4.13263 P PPL GB SCT V3 1206 25 Europe/London 2011-03-03
-2649179 Forth Forth 55.76502 -3.68874 P PPL GB SCT W5 2087 281 Europe/London 2011-03-03
-2649192 Forres Forres Forres 57.61125 -3.61078 P PPL GB SCT V6 9134 23 Europe/London 2011-03-03
-2649198 Formby Formby 53.55364 -3.06816 P PPL GB ENG L8 00CA010 24225 12 Europe/London 2011-03-03
-2649207 Forfar Forfar 56.64313 -2.89026 P PPLA2 GB SCT T7 13237 66 Europe/London 2011-03-03
-2649210 Forest Row Forest Row Forest Row 51.09641 0.03262 P PPL GB ENG E2 21UH 3704 74 Europe/London 2010-08-03
-2649228 Fordingbridge Fordingbridge 50.92747 -1.79029 P PPL GB ENG F2 24UJ 5883 27 Europe/London 2011-03-03
-2649236 Ford Ford 55.63333 -2.08333 P PPLA3 GB ENG J6 00EM061 0 88 Europe/London 2011-07-31
-2649237 Ford Ford Ford 52.71667 -2.85 P PPLA3 GB ENG L6 00GG076 0 71 Europe/London 2011-07-31
-2649258 Folkestone Folkestone Folkestone,Folkston,Фолкстон 51.08333 1.18333 P PPL GB ENG G5 6945806 45992 23 Europe/London 2012-01-17
-2649269 Fochabers Fochabers 57.61362 -3.09565 P PPL GB SCT V6 1494 42 Europe/London 2011-03-03
-2649295 Flitwick Flitwick 52.00338 -0.49472 P PPLA3 GB ENG Z6 00KC027 12983 78 Europe/London 2011-07-31
-2649301 Flint Flint Flint,Y Fflint 53.24488 -3.13231 P PPLA3 GB WLS Y1 00NJ008 12068 29 Europe/London 2011-07-31
-2649304 Flimby Flimby Flimby 54.68956 -3.52092 P PPL GB ENG C9 16UB 1672 7 Europe/London 2011-03-03
-2649312 Fleetwood Fleetwood Fleetwood 53.92527 -3.01085 P PPL GB ENG H2 30UQ 27077 10 Europe/London 2010-08-03
-2649322 Fleet Fleet Fleet 51.28333 -0.83333 P PPL GB ENG F2 24UG 34218 74 Europe/London 2012-01-17
-2649337 Flamborough Flamborough 54.11487 -0.12274 P PPLA3 GB ENG E1 00FB051 1866 46 Europe/London 2011-07-31
-2649347 Fivemiletown Fivemiletown 54.38333 -7.3 P PPL GB NIR 00 1109 117 Europe/London 2006-01-17
-2649349 Fitzwilliam Fitzwilliam 53.63288 -1.3769 P PPL GB ENG 00 4259 65 Europe/London 2007-04-07
-2649372 Fishguard Fishguard Abergwaun,Fishguard 51.99376 -4.97631 P PPL GB WLS Y7 3228 63 Europe/London 2008-07-21
-2649376 Fishburn Fishburn Fishburn 54.68296 -1.43631 P PPLA3 GB ENG D8 00EJ040 2509 118 Europe/London 2011-07-31
-2649398 Fintona Fintona 54.5 -7.31667 P PPL GB NIR 00 1373 117 Europe/London 2006-01-17
-2649403 Finningley Finningley Finningley 53.48696 -0.99083 P PPL GB ENG D5 00CE009 4138 8 Europe/London 2011-03-03
-2649428 Finedon Finedon Finedon 52.33917 -0.65008 P PPL GB ENG J1 34UH 4281 85 Europe/London 2010-08-03
-2649432 Findon Findon 50.86816 -0.40735 P PPL GB ENG P6 45UC 1758 56 Europe/London 2010-05-24
-2649433 Findochty Findochty Findochty 57.69735 -2.90104 P PPL GB SCT V6 1102 25 Europe/London 2011-03-03
-2649438 Findhorn Findhorn Findhorn 57.65718 -3.60846 P PPL GB SCT V6 1040 6 Europe/London 2011-03-03
-2649439 Findern Findern Findern 52.87037 -1.54409 P PPL GB ENG D3 17UK 1728 59 Europe/London 2010-08-03
-2649445 Finchampstead Finchampstead 51.36149 -0.85728 P PPLA3 GB ENG Q2 00MF005 0 68 Europe/London 2011-07-31
-2649451 Fimber Fimber 54.03328 -0.633 P PPLA3 GB ENG E1 00FB050 0 105 Europe/London 2011-07-31
-2649463 Filey Filey Filey 54.21 -0.28917 P PPL GB ENG J7 36UG 6612 36 Europe/London 2012-01-17
-2649493 Ffestiniog Ffestiniog Ffestiniog 52.95996 -3.93242 P PPLA3 GB WLS Y2 00NC023 0 189 Europe/London 2011-07-31
-2649516 Ferryhill Ferryhill 54.68333 -1.55 P PPLA3 GB ENG D8 00EJ039 10789 122 Europe/London 2011-07-31
-2649518 Ferrybridge Ferrybridge 53.71058 -1.27948 P PPL GB ENG 45 1491 18 Europe/London 2010-03-30
-2649527 Fernhurst Fernhurst Fernhurst 51.04873 -0.71789 P PPL GB ENG P6 45UD 1756 83 Europe/London 2011-02-16
-2649528 Fernhill Heath Fernhill Heath Fernhill Heath 52.23002 -2.19659 P PPL GB ENG Q4 47UF 2922 51 Europe/London 2011-03-03
-2649531 Ferndale Ferndale Ferndale 51.66056 -3.4475 P PPLA3 GB WLS Y9 00PF007 7947 236 Europe/London 2011-07-31
-2649544 Fenwick Fenwick 53.63868 -1.0976 P PPLA3 GB ENG D5 00CE020 0 9 Europe/London 2011-07-31
-2649568 Feltwell Feltwell 52.48581 0.51945 P PPL GB ENG I9 33UE 2545 12 Europe/London 2010-05-24
-2649569 Felton Felton 55.28333 -1.7 P PPLA3 GB ENG J6 00EM060 0 48 Europe/London 2011-07-31
-2649578 Felling Felling 54.95297 -1.57152 P PPL GB ENG E5 00CH002 34355 42 Europe/London 2011-03-03
-2649579 Felixstowe Felixstowe Felixstowe 51.96375 1.3511 P PPL GB ENG N5 42UG 29349 22 Europe/London 2011-03-03
-2649593 Featherstone Featherstone Featherstone 53.67688 -1.35647 P PPLA3 GB ENG 45 00DB008 10613 48 Europe/London 2011-07-31
-2649609 Fazeley Fazeley Fazeley 52.61443 -1.6985 P PPL GB ENG M9 41UD 7522 64 Europe/London 2011-03-03
-2649622 Faversham Faversham Faversham 51.3148 0.88856 P PPL GB ENG G5 29UM 18628 11 Europe/London 2011-03-03
-2649624 Fauldhouse Fauldhouse 55.82749 -3.70741 P PPL GB SCT W9 4610 230 Europe/London 2011-03-03
-2649650 Farnworth Farnworth Farnworth 53.55 -2.4 P PPL GB ENG 00 25680 102 Europe/London 2010-08-03
-2649652 Farnsfield Farnsfield Farnsfield 53.10223 -1.0332 P PPL GB ENG J9 37UG 2599 58 Europe/London 2011-03-03
-2649657 Farnham Royal Farnham Royal 51.54208 -0.61584 P PPL GB ENG B9 11UE 6187 54 Europe/London 2011-03-03
-2649660 Farnham Farnham Farnham 51.21433 -0.79587 P PPL GB ENG N7 43UL 36971 66 Europe/London 2011-02-14
-2649665 Farndon Farndon Farndon 53.08361 -2.87464 P PPLA3 GB ENG Z8 00EW066 0 28 Europe/London 2011-07-31
-2649666 Farndon Farndon 53.05 -0.85 P PPL GB ENG J9 37UG 2506 13 Europe/London 2010-05-24
-2649670 Farnborough Farnborough 51.53333 -1.36667 P PPLA3 GB ENG P4 00MB024 0 211 Europe/London 2011-07-31
-2649672 Farnborough Farnborough Farnboro,Farnborough,Фарнборо 51.29424 -0.75565 P PPL GB ENG F2 24UL 59902 69 Europe/London 2010-08-03
-2649686 Faringdon Faringdon Faringdon 51.65644 -1.58676 P PPL GB ENG K2 38UE 6325 109 Europe/London 2011-03-03
-2649692 Fareham Fareham 50.85162 -1.17929 P PPL GB ENG F2 24UE 57390 10 Europe/London 2011-03-03
-2649715 Falmouth Falmouth Aberfal,Falmouth,Falmut,Фалмут 50.15441 -5.07113 P PPLA3 GB ENG C6 00HE035 22222 34 Europe/London 2011-07-31
-2649722 Falkland Falkland Falkland 56.25053 -3.20552 P PPL GB SCT V1 1168 83 Europe/London 2011-03-03
-2649723 Falkirk Falkirk Falkirk,Фалкирк 55.99917 -3.78713 P PPLA2 GB SCT U9 32479 37 Europe/London 2011-03-03
-2649725 Falfield Falfield Falfield 51.63694 -2.46056 P PPLA3 GB ENG M6 00HD014 0 30 Europe/London 2011-07-31
-2649730 Fakenham Fakenham 52.82996 0.8477 P PPL GB ENG I9 33UF 7902 42 Europe/London 2010-05-24
-2649737 Fairlight Fairlight Fairlight 50.87902 0.65236 P PPL GB ENG E2 21UG 1548 104 Europe/London 2011-02-02
-2649738 Fairlie Fairlie 55.75602 -4.85564 P PPL GB SCT V7 1568 6 Europe/London 2011-03-03
-2649741 Fairford Fairford 51.70816 -1.78128 P PPL GB ENG E6 23UC 3026 92 Europe/London 2011-03-03
-2649750 Failsworth Failsworth 53.51667 -2.13333 P PPL GB ENG 00 20209 127 Europe/London 2006-01-17
-2649768 Eyton upon the Weald Moors Eyton upon the Weald Moors Eyton,Eyton upon the Weald Moors 52.73333 -2.51667 P PPLA3 GB GB ENG O2 00GF007 0 55 Europe/London 2011-07-31
-2649769 Eyton Eyton 52.25 -2.75 P PPLA3 GB ENG F7 00GA077 0 100 Europe/London 2011-07-31
-2649774 Eynsham Eynsham Ensham,Eynsham 51.78077 -1.37454 P PPL GB ENG K2 38UF 4769 70 Europe/London 2011-02-23
-2649775 Eynsford Eynsford Eynsford 51.36765 0.21132 P PPL GB ENG G5 29UD 2788 43 Europe/London 2011-02-05
-2649784 Eyemouth Eyemouth Eyemouth 55.8713 -2.0901 P PPL GB SCT T9 00EM020 3395 11 Europe/London 2011-03-03
-2649788 Eye Eye Eye 52.608 -0.19209 P PPLA3 GB ENG K3 00JA009 2875 13 Europe/London 2011-07-31
-2649796 Exton Exton 52.69106 -0.63463 P PPLA3 GB ENG L4 00FP019 0 113 Europe/London 2011-07-31
-2649799 Exning Exning Exning 52.26642 0.37439 P PPL GB ENG N5 42UC 1688 21 Europe/London 2010-08-03
-2649800 Exmouth Exmouth Exmouth 50.61723 -3.40233 P PPL GB ENG D4 18UB 32972 33 Europe/London 2012-03-29
-2649803 Exminster Exminster Exminster 50.68075 -3.49706 P PPL GB ENG D4 18UH 3153 16 Europe/London 2011-03-03
-2649805 Exhall Exhall 52.46464 -1.48144 P PPL GB ENG P3 44UC 2317 104 Europe/London 2010-05-24
-2649808 Exeter Exeter Ehkseter,Exeter,Exonia,Karesk,ai xi te,aksytr,ekuseta,xek se texr,xek si texr,Эксетер,إكسيتر,เอกเซเตอร์,เอ็กซีเตอร์,エクセター,艾希特 50.7236 -3.52751 P PPLA2 GB ENG D4 18UC 113118 46 Europe/London 2010-10-08
-2649833 Evesham Evesham Evesham 52.09237 -1.94887 P PPL GB ENG Q4 47UF 22673 35 Europe/London 2010-10-20
-2649834 Evesbatch Evesbatch 52.13333 -2.45 P PPLA3 GB ENG F7 00GA074 0 146 Europe/London 2011-07-31
-2649836 Everton Everton 52.14581 -0.24616 P PPLA3 GB ENG Z6 00KC024 0 67 Europe/London 2011-07-31
-2649838 Eversholt Eversholt 51.98702 -0.55983 P PPLA3 GB ENG Z6 00KC023 420 105 Europe/London 2011-07-31
-2649842 Evercreech Evercreech Evercreech 51.14806 -2.50556 P PPL GB ENG M3 40UB 1830 87 Europe/London 2012-01-17
-2649843 Evenwood Evenwood Evenwood 54.62213 -1.76133 P PPL GB ENG D8 00EJ038 1716 165 Europe/London 2010-08-21
-2649851 Evanton Evanton Evanton 57.66385 -4.34004 P PPL GB SCT V3 1138 40 Europe/London 2011-03-03
-2649852 Euxton Euxton 53.6699 -2.67615 P PPL GB ENG H2 30UE 7863 52 Europe/London 2011-03-03
-2649863 Etwall Etwall Etwall 52.88353 -1.60023 P PPL GB ENG D3 17UK 2397 76 Europe/London 2010-08-03
-2649868 Etton Etton 53.86667 -0.51667 P PPLA3 GB ENG E1 00FB047 0 47 Europe/London 2011-07-31
-2649873 Eton Eton Eton,Iton,Итон 51.48833 -0.60905 P PPL GB ENG P4 P1 3025 23 Europe/London 2010-08-03
-2649892 Essendine Essendine 52.70187 -0.4525 P PPLA3 GB ENG L4 00FP018 0 38 Europe/London 2011-07-31
-2649911 Esher Esher Ehsher,Esher,Эшер 51.36926 -0.36572 P PPL GB ENG N7 43UB 52392 40 Europe/London 2011-02-08
-2649921 Errol Errol Errol 56.39234 -3.21275 P PPL GB SCT W1 1039 34 Europe/London 2011-03-03
-2649936 Erlestoke Erlestoke Erlestoke 51.28472 -2.05444 P PPLA3 GB ENG P8 00HY095 0 94 Europe/London 2011-07-31
-2649955 Epworth Epworth 53.52602 -0.82399 P PPL GB ENG J3 00FD021 3817 15 Europe/London 2011-03-03
-2649957 Epsom Epsom Ehpsom,Epsom,Эпсом 51.3305 -0.27011 P PPL GB ENG N7 43UC 27065 57 Europe/London 2011-02-06
-2649963 Epping Epping Epping 51.69815 0.11055 P PPL GB ENG E4 22UH 10109 110 Europe/London 2010-08-03
-2649984 Enniskillen Enniskillen Enniskillen,Inis Ceithlann 54.34615 -7.64133 P PPLA2 GB NIR S2 14472 52 Europe/London 2010-10-16
-2649997 Enfield Enfield Endfield 51.65147 -0.08497 P PPLA3 GB GB ENG GLA E3 0 33 Europe/London 2011-02-12
-2650000 Enderby Enderby Enderby 52.58778 -1.20619 P PPL GB ENG H5 31UB 8113 95 Europe/London 2011-03-03
-2650004 Emsworth Emsworth 50.84779 -0.93697 P PPL GB ENG F2 24UH 18543 7 Europe/London 2010-05-24
-2650006 Empingham Empingham Empingham 52.66722 -0.59601 P PPLA3 GB ENG L4 00FP017 0 73 Europe/London 2011-07-31
-2650007 Emneth Emneth 52.64244 0.20857 P PPL GB ENG I9 33UE 2257 4 Europe/London 2010-05-24
-2650009 Embsay Embsay 53.97664 -1.99282 P PPL GB ENG J7 36UB 1582 147 Europe/London 2010-05-24
-2650016 Embleton Embleton Embleton 55.49592 -1.63619 P PPLA3 GB ENG J6 00EM056 0 44 Europe/London 2011-09-26
-2650019 Emberton Emberton Emberton 52.13691 -0.70673 P PPLA3 GB ENG I6 00MG010 0 66 Europe/London 2011-07-31
-2650023 Ely Ely Ely,yi li,伊利 52.39857 0.25811 P PPL GB ENG C3 2650488 14265 23 Europe/London 2012-01-08
-2650027 Elwick Elwick 54.68333 -1.28333 P PPLA3 GB ENG F5 00EB004 0 73 Europe/London 2011-07-31
-2650029 Elvington Elvington 53.92087 -0.93495 P PPLA3 GB ENG Q5 00FF010 0 11 Europe/London 2011-07-31
-2650035 Elton Elton 54.55 -1.36667 P PPLA3 GB ENG N3 00EF005 0 19 Europe/London 2011-07-31
-2650036 Elton Elton 53.26667 -2.81667 P PPLA3 GB ENG Z8 00EW065 0 13 Europe/London 2011-07-31
-2650040 Elton Elton 52.33333 -2.8 P PPLA3 GB ENG F7 00GA073 0 142 Europe/London 2011-07-31
-2650047 Elstree Elstree Elstree 51.6403 -0.29693 P PPL GB ENG F8 26UE 1835 129 Europe/London 2012-01-17
-2650048 Elstow Elstow 52.10727 -0.4649 P PPLA3 GB ENG Z5 00KB013 0 33 Europe/London 2011-07-31
-2650051 Elstead Elstead 51.18311 -0.70724 P PPL GB ENG N7 43UL 2229 53 Europe/London 2011-02-16
-2650059 Elsenham Elsenham 51.91431 0.22934 P PPL GB ENG E4 22UQ 2302 95 Europe/London 2010-05-24
-2650068 Elmswell Elmswell 52.23616 0.91247 P PPL GB ENG N5 42UE 3239 70 Europe/London 2010-05-24
-2650086 Ellon Ellon 57.36405 -2.07313 P PPL GB SCT T6 8750 12 Europe/London 2011-03-03
-2650093 Ellingham Ellingham 55.51667 -1.71667 P PPLA3 GB ENG J6 00EM053 0 52 Europe/London 2011-07-31
-2650096 Ellesmere Port Ellesmere Port Ellesmere Port 53.27875 -2.90134 P PPL GB ENG Z8 00EW100 67768 26 Europe/London 2011-03-03
-2650097 Ellesmere Ellesmere 52.91667 -2.88333 P PPL GB ENG L6 3295 103 Europe/London 2012-03-29
-2650099 Ellerton Ellerton 53.85 -0.93333 P PPLA3 GB ENG E1 00FB044 0 10 Europe/London 2011-07-31
-2650100 Ellerker Ellerker 53.75323 -0.60416 P PPLA3 GB ENG E1 00FB043 0 12 Europe/London 2011-07-31
-2650110 Elland Elland 53.6851 -1.83878 P PPL GB ENG C2 00CY005 14878 105 Europe/London 2011-03-03
-2650122 Elgin Elgin Ehlgin,Elgin,Елгин,Элгин 57.65 -3.33333 P PPLA2 GB SCT V6 21236 20 Europe/London 2010-10-16
-2650128 Elderslie Elderslie Elderslie 55.83327 -4.48598 P PPL GB SCT W2 5142 32 Europe/London 2011-03-03
-2650174 Egremont Egremont 54.47941 -3.52756 P PPL GB ENG C9 16UE 6130 41 Europe/London 2010-05-24
-2650184 Eglinton Eglinton 55.01667 -7.18333 P PPL GB NIR 00 3818 26 Europe/London 2006-01-17
-2650188 Egham Egham Egham,Ehgkhem,Эгхем 51.43158 -0.55239 P PPL GB ENG N7 43UG 29663 20 Europe/London 2011-03-03
-2650190 Eggleston Eggleston Eggleston 54.60916 -2.00312 P PPLA3 GB ENG D8 00EJ033 0 248 Europe/London 2011-07-31
-2650199 Edworth Edworth 52.05597 -0.21715 P PPLA3 GB ENG Z6 00KC021 0 46 Europe/London 2011-07-31
-2650200 Edwinstowe Edwinstowe 53.19454 -1.06439 P PPL GB ENG J9 37UG 5069 62 Europe/London 2011-03-03
-2650217 Edith Weston Edith Weston Edith Weston 52.63786 -0.63189 P PPLA3 GB ENG L4 00FP015 1811 107 Europe/London 2011-07-31
-2650218 Edington Edington 51.27583 -2.10639 P PPLA3 GB ENG P8 00HY093 0 113 Europe/London 2011-07-31
-2650225 Edinburgh Edinburgh Caeredin,Dinedin,Dun Eideann,Dùn Èideann,Dún Éideann,EDI,Edimborg,Edimbourg,Edimbourgo,Edimburg,Edimburgo,Edimburgo - Dun Eideann,Edimburgo - Dùn Èideann,Edimburgu,Edimburgum,Edinborg,Edinburg,Edinburga,Edinburgas,Edinburgh,Edinburgo,Edinburrie,Edynburg,Ehdinburg,Embra,adynbwrg,ai ding bao,edeunbeoleo,edinabara,edinbara,xedinbara,Édimbourg,Εδιμβούργο,Единбург,Эдинбург,אדינבורו,ئېدىنبۇرگ,ادینبورگ,एडिनबरा,এডিনবরা,เอดินบะระ,エディンバラ,爱丁堡,에든버러 55.95206 -3.19648 P PPLA GB SCT U8 435791 66 Europe/London 2011-06-16
-2650244 Edenfield Edenfield 53.66674 -2.30481 P PPL GB ENG H2 30UM 2126 193 Europe/London 2010-05-24
-2650246 Edenbridge Edenbridge 51.19172 0.06729 P PPL GB ENG G5 43UK 7282 46 Europe/London 2011-02-06
-2650272 Eccleston Eccleston 53.45 -2.78333 P PPLA3 GB ENG N1 00BZ003 0 45 Europe/London 2011-07-31
-2650273 Eccleston Eccleston 53.15 -2.88333 P PPLA3 GB ENG Z8 00EW062 0 34 Europe/London 2011-07-31
-2650274 Eccleshall Eccleshall Eccleshall 52.85789 -2.24971 P PPL GB ENG M9 41UG 2766 98 Europe/London 2010-08-03
-2650278 Eccles Eccles 53.48333 -2.33333 P PPL GB ENG 00 37275 32 Europe/London 2006-01-17
-2650285 Ebbw Vale Ebbw Vale Glyn Ebwy 51.77714 -3.20792 P PPLA2 GB WLS X2 00PL005 18345 311 Europe/London 2011-09-19
-2650293 Eaton Socon Eaton Socon Eaton Socon 52.21752 -0.28925 P PPL GB ENG C3 12UE 12712 24 Europe/London 2011-03-03
-2650295 Eaton Bray Eaton Bray 51.87697 -0.59167 P PPL GB ENG B9 11UB 4231 102 Europe/London 2010-08-21
-2650297 Eaton Eaton 53.18333 -2.2 P PPLA3 GB ENG Z7 00EQ050 0 118 Europe/London 2011-07-31
-2650309 Eastwood Eastwood 53 -1.3 P PPL GB ENG J9 37UD 18612 58 Europe/London 2010-09-22
-2650311 East Wittering East Wittering East Wittering 50.76969 -0.87444 P PPL GB ENG P6 45UD 5241 3 Europe/London 2010-08-03
-2650314 East Wemyss East Wemyss East Wemyss 56.16018 -3.06422 P PPL GB SCT V1 1856 16 Europe/London 2011-03-03
-2650341 Eastry Eastry 51.24639 1.30776 P PPL GB ENG G5 29UE 2017 26 Europe/London 2010-05-24
-2650344 Eastrington Eastrington 53.76038 -0.79325 P PPLA3 GB ENG E1 00FB041 0 7 Europe/London 2011-07-31
-2650346 Retford Retford East Retford 53.32213 -0.94315 P PPL GB ENG J9 37UC 21897 19 Europe/London 2012-03-29
-2650357 East Peckham East Peckham 51.21234 0.38624 P PPL GB ENG G5 29UP 2475 14 Europe/London 2011-02-03
-2650368 Easton Easton 50.53333 -2.45 P PPL GB ENG D6 19UJ 7800 61 Europe/London 2010-05-24
-2650369 Eastoft Eastoft Eastoft 53.63624 -0.78492 P PPLA3 GB ENG J3 00FD019 0 5 Europe/London 2011-07-31
-2650392 East Linton East Linton East Linton 55.98737 -2.65682 P PPL GB SCT U6 2008 25 Europe/London 2011-03-03
-2650396 Eastleigh Eastleigh Eastleigh 50.96667 -1.35 P PPL GB ENG F2 24UD 54225 11 Europe/London 2012-01-17
-2650397 East Leake East Leake 52.83015 -1.18103 P PPL GB ENG J9 37UJ 6244 52 Europe/London 2010-05-24
-2650405 East Kilbride East Kilbride East Kilbride,East Kilbridge 55.76667 -4.16667 P PPL GB SCT W5 74231 172 Europe/London 2012-01-17
-2650411 East Horsley East Horsley East Horsley,Horsley 51.27358 -0.43207 P PPL GB ENG N7 43UD 5787 72 Europe/London 2011-02-14
-2650422 East Harptree East Harptree 51.30111 -2.62167 P PPLA3 GB ENG A4 00HA017 0 107 Europe/London 2011-07-31
-2650424 East Harling East Harling East Harling 52.43843 0.93353 P PPL GB ENG I9 33UB 2139 24 Europe/London 2011-03-03
-2650430 East Ham East Ham 51.53333 0.05 P PPLA3 GB ENG GLA I8 0 12 Europe/London 2010-10-17
-2650435 East Grinstead East Grinstead East Grinstead 51.12382 -0.0061 P PPL GB ENG P6 45UG 26523 137 Europe/London 2011-03-03
-2650470 East Dereham East Dereham Dereham,East Dereham 52.68333 0.93333 P PPL GB ENG I9 33UB 18175 41 Europe/London 2012-01-17
-2650471 East Dean East Dean East Dean 51.03979 -1.60941 P PPL GB ENG F2 24UN 1613 38 Europe/London 2011-03-05
-2650484 East Chevington East Chevington 55.28333 -1.58333 P PPLA3 GB ENG J6 00EM050 1751 14 Europe/London 2011-07-31
-2650489 East Calder East Calder East Calder 55.89186 -3.46372 P PPL GB SCT 00 5695 125 Europe/London 2010-08-03
-2650495 East Bridgford East Bridgford East Bridgford 52.97954 -0.96563 P PPL GB ENG J9 37UJ 1853 52 Europe/London 2011-03-03
-2650497 Eastbourne Eastbourne Eastbourne,Istborn,Истборн 50.76871 0.28453 P PPL GB ENG E2 21UC 112906 8 Europe/London 2010-08-03
-2650499 East Bergholt East Bergholt 51.97785 1.01761 P PPL GB ENG N5 42UB 1633 44 Europe/London 2010-05-24
-2650517 Easingwold Easingwold Easingwold 54.1191 -1.19225 P PPL GB ENG J7 36UC 4064 31 Europe/London 2011-03-03
-2650519 Easington Easington 53.65359 0.11501 P PPLA3 GB ENG E1 00FB039 7636 10 Europe/London 2011-07-31
-2650541 Earlston Earlston Earlston 55.63856 -2.67495 P PPL GB SCT T9 1728 108 Europe/London 2011-03-03
-2650550 Earls Colne Earls Colne 51.92744 0.70107 P PPL GB ENG E4 22UC 3582 54 Europe/London 2010-05-24
-2650552 Earls Barton Earls Barton 52.26627 -0.75248 P PPL GB ENG J1 34UH 5472 94 Europe/London 2011-02-16
-2650555 Earley Earley 51.44085 -0.92384 P PPLA3 GB ENG Q2 00MF004 0 61 Europe/London 2011-07-31
-2650558 Earith Earith Earith 52.35422 0.03056 P PPL GB ENG C3 12UE 1714 10 Europe/London 2010-08-03
-2650563 Earby Earby 53.91546 -2.14285 P PPL GB ENG H2 30UJ 5377 138 Europe/London 2010-05-24
-2650567 Ealing Ealing Ealing,Ealing keruelet,Ealing kerület,London Borough of Ealing,イーリング・ロンドン特別区 51.51216 -0.30204 P PPLA3 GB ENG GLA D9 0 38 Europe/London 2010-10-17
-2650572 Eaglesham Eaglesham 55.74119 -4.27459 P PPL GB SCT U7 3077 163 Europe/London 2011-03-03
-2650584 Dyserth Dyserth Dyserth 53.30032 -3.41262 P PPL GB WLS X9 00NG014 2594 83 Europe/London 2011-03-03
-2650589 Dymchurch Dymchurch Dymchurch 51.02544 0.99392 P PPL GB ENG G5 5820 2 Europe/London 2010-08-03
-2650601 Dyce Dyce Dyce 57.20522 -2.17676 P PPL GB SCT T5 5375 53 Europe/London 2011-03-03
-2650605 Duxford Duxford Duxford 52.09393 0.15917 P PPL GB ENG C3 12UG 1877 32 Europe/London 2010-08-03
-2650613 Dursley Dursley Dursley 51.68139 -2.35333 P PPL GB ENG E6 23UF 13652 73 Europe/London 2012-01-17
-2650615 Durrington Durrington Durrington 51.19871 -1.77185 P PPLA3 GB ENG P8 00HY086 0 80 Europe/London 2011-07-31
-2650619 Durnford Durnford 51.13333 -1.81667 P PPLA3 GB ENG P8 00HY085 0 70 Europe/London 2011-07-31
-2650628 Durham Durham Darem,Dunelm,Dunholm,Durham,Dūnholm,Дарем,เดอแรม 54.77676 -1.57566 P PPLA2 GB ENG D8 45696 52 Europe/London 2010-10-16
-2650646 Duntocher Duntocher Duntocher 55.92437 -4.41545 P PPL GB SCT W7 7036 57 Europe/London 2011-03-03
-2650649 Dunswell Dunswell 53.80106 -0.37139 P PPL GB ENG 00 1682 2 Europe/London 2009-10-06
-2650657 Dunstable Dunstable Dunstable 51.886 -0.52099 P PPLA3 GB ENG Z6 00KC018 51973 150 Europe/London 2011-07-31
-2650673 Duns Duns Duns 55.77704 -2.34575 P PPL GB SCT T9 00EM033 2630 134 Europe/London 2011-03-03
-2650681 Dunoon Dunoon 55.94698 -4.92303 P PPL GB SCT T8 7981 10 Europe/London 2011-03-03
-2650686 Dunnington Dunnington 53.95 -0.25 P PPL GB ENG 00 2987 17 Europe/London 2006-01-17
-2650709 Dunloy Dunloy 55.011 -6.41087 P PPL GB NIR 00 1091 114 Europe/London 2007-04-13
-2650712 Dunkirk Dunkirk 51.29169 0.97929 P PPL GB ENG G5 29UM 2159 118 Europe/London 2010-05-24
-2650718 Dunipace Dunipace Dunipace 56.027 -3.91471 P PPL GB SCT U9 2428 44 Europe/London 2011-03-03
-2650721 Dunholme Dunholme Dunholm,Dunholme 53.30067 -0.46541 P PPL GB ENG H7 32UH 5625 16 Europe/London 2011-03-03
-2650726 Dungiven Dungiven Dungiven 54.93333 -6.91667 P PPL GB NIR 00 3066 75 Europe/London 2010-08-09
-2650729 Dungannon Dungannon 54.50344 -6.76723 P PPLA2 GB NIR S1 11935 105 Europe/London 2010-10-16
-2650732 Dunfermline Dunfermline Danfermlin,Dunfermline,Данфермлин 56.07156 -3.45887 P PPL GB SCT V1 38960 107 Europe/London 2011-03-03
-2650737 Dundry Dundry 51.40028 -2.6375 P PPLA3 GB ENG J4 00HC015 0 194 Europe/London 2011-07-31
-2650739 Dundrum Dundrum 54.2575 -5.84455 P PPL GB NIR 00 1090 6 Europe/London 2007-04-13
-2650748 Dundonald Dundonald 55.56667 -4.58333 P PPL GB SCT 00 2399 69 Europe/London 2006-01-17
-2650752 Dundee Dundee Dandi,Dun Deagh,Dundee,Dundi,Dùn Dèagh,dandi,dandy,deng di,Данди,Дънди,داندی,ダンディー,邓迪 56.5 -2.96667 P PPLA2 GB SCT U3 151592 122 Europe/London 2010-10-16
-2650761 Dunchurch Dunchurch Dunchurch 52.33757 -1.29136 P PPL GB ENG P3 44UD 2271 122 Europe/London 2011-03-03
-2650769 Dunblane Dunblane Dunblane 56.18843 -3.96417 P PPL GB SCT W6 8056 64 Europe/London 2011-03-03
-2650776 Dunbar Dunbar Dunbar 56.00062 -2.51418 P PPL GB SCT U6 6414 21 Europe/London 2011-03-03
-2650798 Dumfries Dumfries 55.06959 -3.61139 P PPLA2 GB SCT U2 0 21 Europe/London 2011-03-03
-2650802 Dumbarton Dumbarton Dambarton,Dumbarton,Дамбартон 55.94433 -4.57061 P PPLA2 GB SCT W7 19878 4 Europe/London 2011-03-03
-2650806 Duloe Duloe 50.38333 -4.48333 P PPLA3 GB ENG C6 00HE032 0 116 Europe/London 2011-07-31
-2650815 Dukinfield Dukinfield 53.47497 -2.08809 P PPL GB ENG 00 19306 128 Europe/London 2008-06-02
-2650833 Dufftown Dufftown Dufftown 57.43333 -3.13333 P PPL GB SCT V6 1384 212 Europe/London 2012-01-17
-2650836 Duffield Duffield Duffield 52.98627 -1.48865 P PPL GB ENG D3 17UB 4687 61 Europe/London 2010-08-03
-2650839 Dudley Dudley Dadli,Dudley,Дадли 52.5 -2.08333 P PPLA2 GB ENG D7 199059 161 Europe/London 2010-10-16
-2650848 Ducklington Ducklington 51.76763 -1.48418 P PPL GB ENG K2 38UF 1608 80 Europe/London 2011-02-24
-2650901 Drybrook Drybrook Drybrook 51.8555 -2.51681 P PPL GB ENG E6 23UD 1647 194 Europe/London 2010-08-03
-2650962 Droylsden Droylsden Droylesden,Droylsden 53.48005 -2.14543 P PPL GB ENG O1 00BS001 23689 100 Europe/London 2011-03-03
-2650967 Dronfield Dronfield Dronfield 53.30221 -1.47507 P PPL GB ENG D3 17UJ 20942 159 Europe/London 2011-03-03
-2650976 Dromore Dromore 54.51667 -7.46667 P PPL GB NIR 00 5641 105 Europe/London 2006-01-17
-2650983 Droitwich Droitwich 52.26667 -2.15 P PPL GB ENG Q4 47UF 23588 42 Europe/London 2010-05-24
-2650987 Drighlington Drighlington Drighlington,Drightlington,Driglington 53.75592 -1.66443 P PPLA3 GB ENG H3 00DA035 0 182 Europe/London 2011-07-31
-2650996 Dreghorn Dreghorn Dreghorn 55.6 -4.61667 P PPL GB SCT 00 4191 11 Europe/London 2010-08-03
-2651013 Draperstown Draperstown Draperstown 54.8 -6.76667 P PPL GB NIR 00 1734 73 Europe/London 2010-08-09
-2651019 Downton Downton 52.36667 -2.83333 P PPLA3 GB ENG F7 00GA064 0 211 Europe/London 2011-07-31
-2651020 Downton Downton 51 -1.73333 P PPLA3 GB ENG P8 00HY084 2584 68 Europe/London 2011-07-31
-2651023 Downpatrick Downpatrick 54.32633 -5.70345 P PPLA2 GB NIR R9 10507 49 Europe/London 2010-10-16
-2651030 Downham Market Downham Market 52.60289 0.37899 P PPL GB ENG I9 33UE 6880 37 Europe/London 2010-05-24
-2651047 Dovercourt Dovercourt 51.93649 1.27831 P PPL GB ENG E4 22UN 1001 16 Europe/London 2012-03-29
-2651048 Dover Dover Dofere,Douvres,Dover,Dovero,Dubris,Duvr,doba,dobeo,duo fu er,dwbr,dwfr,Дувр,דובר,آبنائے ڈوور,دوفر,ドーバー,多佛尔,도버 51.13333 1.3 P PPL GB ENG G5 29UE 28156 22 Europe/London 2012-01-17
-2651060 Doune Doune 56.18995 -4.05288 P PPL GB SCT W6 1616 40 Europe/London 2011-03-03
-2651073 Douglas Douglas 55.55 -3.85 P PPL GB SCT W5 1685 206 Europe/London 2012-03-02
-2651078 Dorstone Dorstone 52.06667 -3 P PPLA3 GB ENG F7 00GA063 0 156 Europe/London 2011-07-31
-2651088 Dornoch Dornoch Dornoch 57.8805 -4.02879 P PPL GB SCT V3 1261 13 Europe/London 2011-03-03
-2651095 Dorking Dorking Dorking 51.2329 -0.32942 P PPL GB ENG N7 43UE 16429 68 Europe/London 2011-02-05
-2651101 Dorchester Dorchester Dorchester,Dornwara ceaster 50.71667 -2.43333 P PPLA2 GB ENG D6 19UH 16879 55 Europe/London 2010-10-16
-2651113 Donnington Donnington 52 -2.41667 P PPLA3 GB ENG F7 00GA061 0 60 Europe/London 2011-07-31
-2651117 Donisthorpe Donisthorpe Donisthorpe 52.72401 -1.538 P PPL GB ENG H5 17UK 4372 107 Europe/London 2011-03-03
-2651119 Donington Donington 52.90461 -0.20505 P PPL GB ENG H7 32UF 2286 7 Europe/London 2010-05-24
-2651123 Doncaster Doncaster Doncaster,Donkaster,donkasuta,dxn khas texr,Донкастер,ดอนคาสเตอร์,ドンカスター 53.52327 -1.13691 P PPLA2 GB ENG D5 67670 23 Europe/London 2010-10-16
-2651133 Donaghadee Donaghadee 54.63333 -5.53333 P PPL GB NIR 00 7369 8 Europe/London 2006-01-17
-2651151 Dollar Dollar 56.16245 -3.67135 P PPL GB SCT U1 2845 45 Europe/London 2011-03-03
-2651154 Dolgellau Dolgellau Dolgellau,Dolgelley,Dolgelly 52.7432 -3.88508 P PPL GB WLS Y2 00NC021 2434 12 Europe/London 2011-03-03
-2651172 Dodworth Dodworth Dodworth 53.54306 -1.52779 P PPL GB ENG 37 5870 141 Europe/London 2010-08-03
-2651179 Doddington Doddington 55.56667 -2 P PPLA3 GB ENG J6 00EM045 0 37 Europe/London 2011-07-31
-2651181 Doddington Doddington 52.49671 0.06017 P PPL GB ENG C3 12UD 3235 10 Europe/London 2010-05-24
-2651198 Doagh Doagh Doagh 54.75 -6.08333 P PPL GB NIR 00 1151 141 Europe/London 2010-08-09
-2651210 Ditchingham Ditchingham Ditchingham 52.46729 1.4437 P PPL GB ENG I9 33UH 1747 12 Europe/London 2011-03-03
-2651213 Distington Distington 54.59733 -3.5388 P PPL GB ENG C9 16UE 1668 76 Europe/London 2010-06-07
-2651214 Diss Diss Diss 52.37675 1.1091 P PPL GB ENG I9 33UH 7610 31 Europe/London 2010-08-03
-2651215 Disley Disley Disley 53.35865 -2.03848 P PPLA3 GB ENG Z7 00EQ047 3159 191 Europe/London 2011-07-31
-2651236 Dinton Dinton Dinton 51.08333 -1.98333 P PPLA3 GB ENG P8 00HY081 0 89 Europe/London 2011-07-31
-2651240 Dinnington Dinnington 55.05428 -1.67542 P PPLA3 GB ENG I7 00CJ002 0 68 Europe/London 2011-07-31
-2651241 Dinnington Dinnington Dinnington 53.36667 -1.2 P PPL GB ENG L3 1607 116 Europe/London 2012-01-17
-2651243 Dinmore Dinmore 52.15 -2.75 P PPLA3 GB ENG F7 00GA059 0 153 Europe/London 2011-07-31
-2651245 Dingwall Dingwall Dingwall 57.59531 -4.42721 P PPL GB SCT V3 5025 9 Europe/London 2011-03-03
-2651248 Dinas Powys Dinas Powys Dinas Powis,Dinas Powys 51.43486 -3.21398 P PPL GB WLS Z3 00PD004 7738 15 Europe/London 2011-03-03
-2651263 Diggle Diggle 53.56744 -1.99723 P PPL GB ENG K1 00BP001 1716 195 Europe/London 2011-03-03
-2651269 Didcot Didcot 51.60928 -1.24214 P PPL GB ENG K2 38UD 25793 58 Europe/London 2010-05-24
-2651286 Dewsbury Dewsbury D'jusberi,Dewsbury,Drewsbury,Дьюсбери 53.69076 -1.62907 P PPL GB ENG 00 56640 44 Europe/London 2010-08-03
-2651294 Devizes Devizes Devizes 51.35084 -1.99421 P PPL GB ENG P8 00HY079 14699 130 Europe/London 2011-03-03
-2651309 Desford Desford Desford 52.62598 -1.29395 P PPL GB ENG H5 31UE 3220 134 Europe/London 2011-03-03
-2651311 Desborough Desborough Desborough 52.44183 -0.82126 P PPL GB ENG J1 34UE 8253 126 Europe/London 2011-03-03
-2651321 Derwen Derwen 53.03333 -3.4 P PPLA3 GB WLS X9 00NG013 0 284 Europe/London 2011-07-31
-2651324 Dersingham Dersingham Dersingham 52.84549 0.50339 P PPL GB ENG I9 33UE 4602 13 Europe/London 2011-03-03
-2651347 Derby Derby Derbi,Derby,dabi,dyrby,Дерби,ديربي,ダービー 52.92277 -1.47663 P PPLA2 GB ENG D2 235029 55 Europe/London 2010-10-16
-2651355 Denton Denton 54.56667 -1.66667 P PPLA3 GB ENG D1 00EH006 0 86 Europe/London 2011-07-31
-2651357 Denton Denton 53.45678 -2.11822 P PPL GB ENG 00 27464 101 Europe/London 2008-04-11
-2651366 Denny Denny Denny 56.0235 -3.90812 P PPL GB SCT U9 9535 49 Europe/London 2011-03-03
-2651374 Denholme Denholme Denholme 53.80189 -1.89503 P PPL GB ENG B4 00CX003 2469 289 Europe/London 2011-03-03
-2651378 Denham Denham Denham 51.56667 -0.5 P PPL GB ENG B9 11UE 6548 43 Europe/London 2012-01-17
-2651382 Denby Dale Denby Dale 53.57228 -1.65895 P PPL GB ENG G8 00CZ001 2763 166 Europe/London 2011-03-03
-2651386 Denbigh Denbigh Denbigh,Dinbych 53.18333 -3.41667 P PPLA3 GB WLS X9 00NG012 8364 85 Europe/London 2011-07-31
-2651405 Deighton Deighton 53.9 -1.05 P PPLA3 GB ENG Q5 00FF007 0 12 Europe/London 2011-07-31
-2651407 Deganwy Deganwy Deganwy 53.30446 -3.82735 P PPL GB WLS X8 00NE010 9429 47 Europe/London 2011-03-03
-2651435 Deddington Deddington Deddington 51.9806 -1.32055 P PPL GB ENG K2 38UB 1631 128 Europe/London 2011-02-23
-2651436 Debenham Debenham Debenham 52.22422 1.18172 P PPL GB ENG N5 42UE 1766 44 Europe/London 2010-08-03
-2651446 Dearham Dearham 54.71175 -3.44364 P PPL GB ENG C9 16UB 1784 61 Europe/London 2011-03-03
-2651461 Deanshanger Deanshanger Deanshanger,Denshanger 52.04996 -0.88663 P PPL GB ENG B9 2741 73 Europe/London 2010-08-10
-2651468 Deal Deal 51.22322 1.40432 P PPL GB ENG G5 29UE 29248 4 Europe/London 2012-03-29
-2651474 Dawlish Dawlish Dawlish 50.58118 -3.46644 P PPL GB ENG D4 18UH 10676 7 Europe/London 2011-03-03
-2651485 Daventry Daventry Daventri,Daventry,Давентри 52.25688 -1.16066 P PPL GB ENG J1 34UC 22215 152 Europe/London 2011-03-03
-2651492 Datchet Datchet 51.4839 -0.57893 P PPLA3 GB ENG P9 00ME005 4749 20 Europe/London 2011-07-31
-2651495 Darwen Darwen Darven,Darwen,Дарвен 53.69803 -2.46494 P PPL GB ENG A8 00EX001 32566 172 Europe/London 2011-03-03
-2651496 Darvel Darvel 55.60976 -4.28142 P PPL GB SCT U4 3225 104 Europe/London 2011-03-03
-2651497 Darton Darton Darton 53.58705 -1.52676 P PPL GB ENG 00 15259 69 Europe/London 2010-08-03
-2651498 Dartmouth Dartmouth Dartmouth 50.3522 -3.5794 P PPL GB ENG D4 18UG 5635 6 Europe/London 2010-08-03
-2651500 Dartford Dartford Dartford,Dartforde,Дартфорде 51.44352 0.21964 P PPL GB ENG G5 29UD 56694 8 Europe/London 2011-02-12
-2651503 Darrington Darrington 53.67566 -1.26901 P PPLA3 GB ENG 45 00DB006 0 45 Europe/London 2011-07-31
-2651513 Darlington Darlington Darlington,Дарлингтон 54.52429 -1.55039 P PPLA2 GB ENG D1 00EH013 87204 40 Europe/London 2011-03-03
-2651518 Darlaston Darlaston Darlaston 52.56667 -2.03333 P PPL GB ENG 00 1001 141 Europe/London 2012-03-29
-2651520 Darfield Darfield Darfield,Darsfield 53.5339 -1.37595 P PPL GB ENG A3 00CC010 8246 64 Europe/London 2011-03-03
-2651521 Daresbury Daresbury Daresbury,Dehrsbjori,Дэрсбёри 53.34184 -2.635 P PPLA3 GB ENG E9 00ET001 4122 72 Europe/London 2011-07-31
-2651532 Danbury Danbury 51.71645 0.58245 P PPL GB ENG E4 22UF 6456 106 Europe/London 2010-05-24
-2651551 Dalton in Furness Dalton in Furness Dalton,Dalton in Furness 54.15 -3.16667 P PPL GB ENG C9 16UC 8236 78 Europe/London 2012-01-17
-2651559 Dalrymple Dalrymple Dalrymple 55.39757 -4.59169 P PPL GB SCT U4 1264 56 Europe/London 2011-03-03
-2651561 Dalry Dalry 55.68333 -4.71667 P PPL GB SCT 00 5234 42 Europe/London 2006-01-17
-2651587 Dalkeith Dalkeith Dalkeith,Dalkit,Далкит 55.89341 -3.06381 P PPLA2 GB SCT V5 11502 50 Europe/London 2010-10-16
-2651600 Dale Dale Dale 51.70917 -5.17333 P PPLA3 GB WLS Y7 00NS016 0 25 Europe/London 2011-07-31
-2651609 Dalbeattie Dalbeattie Dalbeattie 54.93278 -3.82271 P PPL GB SCT U2 4205 12 Europe/London 2011-03-03
-2651621 Dagenham Dagenham 51.55 0.16667 P PPLA3 GB ENG GLA A1 0 13 Europe/London 2010-10-17
-2651654 Cwmbran Cwmbran Cwm-bran,Cwm-brân 51.65446 -3.02281 P PPLA3 GB WLS Z2 00PM004 48157 66 Europe/London 2011-03-04
-2651658 Cwm Cwm 53.28333 -3.4 P PPLA3 GB WLS X9 00NG009 0 130 Europe/London 2011-07-31
-2651659 Cwm Cwm 51.74 -3.18028 P PPLA3 GB WLS X2 00PL004 0 219 Europe/London 2011-07-31
-2651662 Cuxton Cuxton 51.3743 0.45688 P PPLA3 GB ENG I3 00LC004 2894 6 Europe/London 2011-07-31
-2651676 Cushendall Cushendall 55.08033 -6.06291 P PPL GB NIR 00 1226 16 Europe/London 2007-04-13
-2651680 Curry Rivel Curry Rivel 51.02306 -2.86753 P PPL GB ENG M3 40UD 1847 43 Europe/London 2011-03-03
-2651685 Currie Currie Currie 55.8964 -3.30845 P PPL GB SCT 00 6500 146 Europe/London 2010-08-03
-2651698 Cupar Cupar Cupar 56.31876 -3.01204 P PPL GB SCT V1 8822 28 Europe/London 2011-03-03
-2651706 Cumnock Cumnock Cumnock 55.45445 -4.26644 P PPL GB SCT U4 9189 115 Europe/London 2011-03-03
-2651715 Cumbernauld Cumbernauld 55.94685 -3.99051 P PPL GB SCT V8 49392 149 Europe/London 2011-03-03
-2651732 Culmore Culmore Culmore 55.05 -7.26667 P PPL GB NIR 00 3645 5 Europe/London 2010-08-09
-2651738 Cullybackey Cullybackey Cullybacky 54.88875 -6.34701 P PPL GB NIR 00 2502 72 Europe/London 2007-04-13
-2651739 Cullompton Cullompton Cullompton 50.8553 -3.39268 P PPL GB ENG D4 18UD 7193 59 Europe/London 2011-03-03
-2651748 Cullingworth Cullingworth 53.82444 -1.8973 P PPL GB ENG B4 00CX002 2491 205 Europe/London 2011-03-03
-2651753 Cullen Cullen Cullen 57.69045 -2.81818 P PPL GB SCT V6 1283 41 Europe/London 2011-03-03
-2651763 Culcheth Culcheth 53.4511 -2.52104 P PPL GB ENG P2 00EU006 6879 32 Europe/London 2011-03-03
-2651777 Cuffley Cuffley 51.70799 -0.11209 P PPL GB ENG F8 26UL 4402 69 Europe/London 2010-05-24
-2651778 Cudworth Cudworth 53.57131 -1.41595 P PPL GB ENG 00 11903 68 Europe/London 2007-04-07
-2651780 Cuddington Cuddington 53.23333 -2.6 P PPLA3 GB ENG Z8 00EW052 0 78 Europe/London 2011-07-31
-2651788 Cuckfield Cuckfield 51.01073 -0.14068 P PPL GB ENG P6 45UG 3339 113 Europe/London 2011-02-06
-2651795 Crynant Crynant 51.72889 -3.74806 P PPLA3 GB WLS Y5 00NZ011 1563 112 Europe/London 2011-07-31
-2651796 Crymych Crymych Crymmych,Crymmych Arms,Crymych 51.97361 -4.64722 P PPLA3 GB GB WLS Y7 00NS014 0 226 Europe/London 2011-07-31
-2651804 Crumlin Crumlin 54.62432 -6.2156 P PPL GB NIR 00 5149 71 Europe/London 2008-01-28
-2651805 Crumlin Crumlin Crumlin 51.67778 -3.13528 P PPLA3 GB WLS X4 00PK010 0 215 Europe/London 2011-07-31
-2651817 Croydon Croydon Croydon,Croydon Grants 51.38333 -0.1 P PPLA3 GB ENG GLA C8 0 54 Europe/London 2010-10-17
-2651821 Croxton Croxton 53.6 -0.35 P PPLA3 GB ENG J3 00FD016 0 24 Europe/London 2011-07-31
-2651831 Crowthorne Crowthorne Crowthorne 51.37027 -0.79219 P PPL GB ENG B3 00MA003 25522 97 Europe/London 2011-03-03
-2651841 Crowle Crowle 53.60753 -0.83256 P PPLA3 GB ENG J3 00FD015 0 10 Europe/London 2011-07-31
-2651843 Crowland Crowland Crowland,Croyland 52.67571 -0.16849 P PPL GB ENG H7 32UF 3320 8 Europe/London 2010-08-03
-2651852 Crowborough Crowborough 51.06044 0.16171 P PPL GB ENG E2 21UH 20733 208 Europe/London 2011-02-03
-2651857 Croston Croston 53.66217 -2.77523 P PPL GB ENG H2 30UE 2739 11 Europe/London 2011-03-03
-2651864 Crossmaglen Crossmaglen Crossmaglen 54.08333 -6.6 P PPL GB NIR 00 1415 126 Europe/London 2010-08-09
-2651866 Crosskeys Crosskeys Crosskeys 51.61917 -3.12361 P PPLA3 GB WLS X4 00PK009 0 63 Europe/London 2011-07-31
-2651870 Crosshouse Crosshouse Crosshouse 55.61258 -4.55091 P PPL GB SCT 00 2418 33 Europe/London 2010-08-03
-2651872 Cross Hands Cross Hands Cross Hands 51.79306 -4.0875 P PPL GB WLS X7 4549 139 Europe/London 2012-01-17
-2651873 Crossgates Crossgates Crossgates 56.06667 -3.38333 P PPL GB SCT V1 2200 98 Europe/London 2012-01-17
-2651876 Crossgar Crossgar 54.4 -5.7 P PPL GB NIR 00 1667 22 Europe/London 2006-01-17
-2651878 Crossford Crossford Crossford 56.05 -3.5 P PPL GB SCT V1 2448 42 Europe/London 2012-01-17
-2651896 Cropwell Bishop Cropwell Bishop Cropwell Bishop 52.9148 -0.98482 P PPL GB ENG J9 37UJ 1831 39 Europe/London 2010-08-03
-2651915 Crook Crook 54.7 -1.73333 P PPL GB ENG D8 8573 162 Europe/London 2012-03-29
-2651927 Cromford Cromford 53.10848 -1.56014 P PPL GB ENG D3 17UF 2251 101 Europe/London 2011-03-03
-2651930 Cromer Cromer 52.93123 1.29892 P PPL GB ENG I9 33UF 9033 22 Europe/London 2010-05-24
-2651948 Crofton Crofton 53.65639 -1.42968 P PPLA3 GB ENG 45 00DB005 5417 64 Europe/London 2011-07-31
-2651952 Croft Croft Croft 53.43333 -2.55 P PPLA3 GB ENG P2 00EU004 1548 20 Europe/London 2011-07-31
-2651954 Croft Croft Croft 52.55668 -1.24643 P PPL GB ENG H5 31UD 1770 77 Europe/London 2011-03-09
-2651971 Cringleford Cringleford 52.60482 1.24334 P PPL GB ENG I9 33UH 2105 19 Europe/London 2010-05-24
-2651980 Crigglestone Crigglestone 53.6424 -1.52916 P PPLA3 GB ENG 45 00DB004 0 71 Europe/London 2011-07-31
-2651983 Crieff Crieff 56.37268 -3.83891 P PPL GB SCT W1 6685 84 Europe/London 2011-03-03
-2651985 Cricklade Cricklade 51.64061 -1.85738 P PPLA3 GB ENG P8 00HY076 4050 91 Europe/London 2011-07-31
-2651994 Criccieth Criccieth 52.92053 -4.2346 P PPL GB WLS Y2 00NC019 1846 39 Europe/London 2011-03-03
-2652000 Crewkerne Crewkerne Crewkerne 50.88298 -2.79588 P PPL GB ENG M3 40UD 7687 74 Europe/London 2011-03-03
-2652002 Crewe Crewe Crewe,Krju,Крю 53.09787 -2.44161 P PPL GB ENG Z7 00EQ114 70455 60 Europe/London 2011-03-03
-2652007 Creswell Creswell Cresswell,Creswell 53.25 -1.21667 P PPL GB ENG D3 17UC 4748 109 Europe/London 2012-01-17
-2652009 Cresswell Cresswell 55.21667 -1.55 P PPLA3 GB ENG J6 00EM043 0 18 Europe/London 2011-07-31
-2652030 Creech Saint Michael Creech Saint Michael 51.02333 -3.03833 P PPL GB ENG M3 40UE 1795 11 Europe/London 2010-05-24
-2652034 Crediton Crediton Crediton 50.78333 -3.65 P PPL GB ENG D4 18UD 7250 43 Europe/London 2012-01-17
-2652035 Credenhill Credenhill Credenhill 52.08351 -2.80804 P PPLA3 GB ENG F7 00GA053 2033 76 Europe/London 2011-07-31
-2652048 Cray Cray 51.9 -3.61667 P PPLA3 GB WLS Y8 00NN020 0 309 Europe/London 2011-07-31
-2652053 Crawley Crawley Crawley,Krouli,Кроули 51.11303 -0.18312 P PPL GB ENG P6 45UE 107061 84 Europe/London 2011-02-05
-2652061 Craven Arms Craven Arms 52.44308 -2.83562 P PPL GB ENG L6 00GG062 2076 123 Europe/London 2011-03-03
-2652082 Cranleigh Cranleigh 51.14209 -0.48374 P PPL GB ENG N7 43UL 9247 60 Europe/London 2010-05-24
-2652087 Cranfield Cranfield 52.06869 -0.60884 P PPLA3 GB ENG Z6 00KC017 4909 112 Europe/London 2011-07-31
-2652088 Cranbrook Cranbrook 51.09662 0.53567 P PPL GB ENG G5 29UQ 4319 77 Europe/London 2011-02-03
-2652095 Cramlington Cramlington Cramlington,Kramlington,Крамлингтон 55.08652 -1.58598 P PPLA3 GB ENG J6 00EM166 29985 78 Europe/London 2011-07-31
-2652176 Coylton Coylton 55.44528 -4.5195 P PPL GB SCT 00 2607 73 Europe/London 2009-10-09
-2652181 Coxhoe Coxhoe Coxhoe 54.71475 -1.50356 P PPL GB ENG D8 00EJ025 3469 108 Europe/London 2011-03-03
-2652191 Cowley Cowley 51.73139 -1.20742 P PPL GB ENG K2 38UC 16500 75 Europe/London 2012-03-29
-2652198 Cowie Cowie 56.06667 -3.86667 P PPL GB SCT W6 2506 31 Europe/London 2006-01-17
-2652204 Cowes Cowes Cowes,Kaus,West Cowes,Каус 50.76306 -1.29772 P PPLA3 GB ENG G2 00MW007 17000 5 Europe/London 2011-07-31
-2652207 Cowdenbeath Cowdenbeath Cowdenbeath 56.11194 -3.34426 P PPL GB SCT V1 11350 128 Europe/London 2011-03-03
-2652209 Cowbridge Cowbridge Cowbridge,Pontfaen,Y Bont-faen 51.46028 -3.44167 P PPL GB WLS Z3 3656 35 Europe/London 2012-01-17
-2652221 Coventry Coventry Coventry,Koventri,kao wen chui,kovu~entori,kwfntry,qwbntry,Ковентри,קובנטרי,كوفنتري,コヴェントリー,考文垂 52.40656 -1.51217 P PPLA2 GB ENG C7 308313 89 Europe/London 2010-10-16
-2652236 Coupar Angus Coupar Angus Coupar Angus 56.54552 -3.26774 P PPL GB SCT W1 2160 57 Europe/London 2011-03-03
-2652239 Countesthorpe Countesthorpe Countesthorpe 52.55379 -1.14526 P PPL GB ENG H5 31UB 6535 95 Europe/London 2011-03-03
-2652262 Cottingham Cottingham 53.78057 -0.41542 P PPLA3 GB ENG E1 00FB167 0 11 Europe/London 2011-07-31
-2652264 Cottesmore Cottesmore 52.71384 -0.6633 P PPLA3 GB ENG L4 00FP014 0 134 Europe/London 2011-07-31
-2652269 Cottenham Cottenham 52.28743 0.1254 P PPL GB ENG C3 12UG 5600 13 Europe/London 2010-05-24
-2652282 Cotgrave Cotgrave 52.90859 -1.03752 P PPL GB ENG J9 37UJ 7537 47 Europe/London 2010-05-24
-2652289 Costessey Costessey Costessey 52.65914 1.2097 P PPL GB ENG I9 33UH 2381 9 Europe/London 2011-03-03
-2652294 Cosham Cosham 50.84654 -1.06344 P PPL GB ENG K6 10226 14 Europe/London 2012-03-29
-2652298 Cosby Cosby Cosby 52.55127 -1.19395 P PPL GB ENG H5 31UB 3728 75 Europe/London 2011-03-03
-2652313 Corston Corston 51.385 -2.44028 P PPLA3 GB ENG A4 00HA015 0 35 Europe/London 2011-07-31
-2652316 Corsley Corsley Corsley 51.21889 -2.24806 P PPLA3 GB ENG P8 00HY074 0 101 Europe/London 2011-07-31
-2652318 Corsham Corsham Corsham 51.43433 -2.18437 P PPL GB ENG P8 00HY073 11570 96 Europe/London 2011-03-03
-2652320 Corsenside Corsenside 55.18333 -2.16667 P PPLA3 GB ENG J6 00EM041 0 152 Europe/London 2011-07-31
-2652330 Corris Corris Corris 52.65145 -3.84315 P PPLA3 GB WLS Y2 00NC018 0 111 Europe/London 2011-07-31
-2652360 Cornholme Cornholme Cornholme 53.7323 -2.13851 P PPL GB ENG C2 00CY006 1551 190 Europe/London 2011-03-03
-2652381 Corby Corby Corby,Korbi,Корби 52.49637 -0.68939 P PPL GB ENG J1 34UB 50029 114 Europe/London 2010-08-03
-2652382 Corbridge Corbridge Corbridge 54.97365 -2.01798 P PPL GB ENG J6 00EM039 2862 38 Europe/London 2011-03-03
-2652389 Coppull Coppull 53.62527 -2.65854 P PPL GB ENG H2 30UE 7417 75 Europe/London 2011-03-03
-2652396 Copmanthorpe Copmanthorpe Copmanthorpe 53.91419 -1.14209 P PPL GB ENG Q5 00FF006 3871 19 Europe/London 2011-03-03
-2652398 Cople Cople 52.12342 -0.38933 P PPLA3 GB ENG Z5 00KB010 0 28 Europe/London 2011-07-31
-2652414 Cooling Cooling 51.45474 0.52395 P PPLA3 GB ENG I3 00LC003 0 8 Europe/London 2011-07-31
-2652417 Cookstown Cookstown 54.64305 -6.74595 P PPLA2 GB NIR R7 11081 78 Europe/London 2010-10-16
-2652422 Cookley Cookley 52.31667 1.45 P PPL GB ENG N5 42UG 1637 41 Europe/London 2010-05-24
-2652423 Cookham Cookham Cookham 51.55936 -0.7081 P PPLA3 GB ENG P9 00ME003 5422 29 Europe/London 2011-07-31
-2652426 Conwy Conwy Aberconway,Conway,Conwy,Konui,Конуи 53.28077 -3.83039 P PPLA2 GB WLS X8 00NE010 3890 18 Europe/London 2011-03-03
-2652437 Consett Consett Consett,Consetti,Konsett,Консетт 54.85404 -1.8316 P PPL GB ENG D8 00EJ053 21016 272 Europe/London 2011-03-03
-2652439 Conon Bridge Conon Bridge Conan Bridge,Conon Bridge 57.5663 -4.43678 P PPL GB SCT V3 2665 8 Europe/London 2011-03-03
-2652445 Connor Connor 54.8 -6.2 P PPL GB NIR 00 1778 100 Europe/London 2006-01-27
-2652458 Conisbrough Conisbrough Conisborough,Conisbrough 53.48188 -1.23214 P PPL GB ENG D5 00CE016 15703 72 Europe/London 2011-03-03
-2652461 Coningsby Coningsby 53.10598 -0.17595 P PPL GB ENG H7 32UC 4388 10 Europe/London 2010-05-24
-2652463 Congresbury Congresbury 51.37135 -2.81018 P PPLA3 GB ENG J4 00HC014 3078 6 Europe/London 2011-07-31
-2652464 Congleton Congleton Konglton,Конглтон 53.16314 -2.21253 P PPL GB ENG Z7 00EQ043 26030 90 Europe/London 2011-03-03
-2652478 Comrie Comrie 56.3791 -3.9949 P PPL GB SCT W1 2033 110 Europe/London 2012-02-22
-2652481 Compton Martin Compton Martin 51.31056 -2.65528 P PPLA3 GB ENG A4 00HA014 0 100 Europe/London 2011-07-31
-2652483 Compton Dando Compton Dando 51.37944 -2.50972 P PPLA3 GB ENG A4 00HA013 0 26 Europe/London 2011-07-31
-2652491 Compton Compton 51.02019 -1.33992 P PPL GB ENG F2 24UP 2311 69 Europe/London 2011-02-22
-2652502 Comberton Comberton 52.18709 0.01905 P PPL GB ENG C3 12UG 2238 33 Europe/London 2010-05-24
-2652505 Comber Comber 54.54937 -5.74379 P PPL GB NIR 00 9190 8 Europe/London 2007-04-13
-2652508 Combe Martin Combe Martin Combe Martin 51.19873 -4.02343 P PPL GB ENG D4 18UE 2709 30 Europe/London 2011-03-03
-2652511 Colyton Colyton 50.74006 -3.07021 P PPL GB ENG D4 18UB 1878 29 Europe/London 2011-03-03
-2652513 Colwyn Bay Colwyn Bay Bae Colwyn,Colwyn Bay 53.29483 -3.72674 P PPL GB WLS X8 00NE009 30829 25 Europe/London 2011-03-03
-2652516 Colwich Colwich Colwich 52.78764 -1.98206 P PPL GB ENG M9 41UG 2485 78 Europe/London 2011-03-03
-2652525 Coltishall Coltishall Coltishall 52.72804 1.36653 P PPL GB ENG I9 33UC 2209 16 Europe/London 2011-03-03
-2652544 Colne Colne 53.85713 -2.16851 P PPL GB ENG H2 30UJ 20118 191 Europe/London 2012-03-29
-2652546 Colnbrook Colnbrook 51.48384 -0.52142 P PPL GB ENG N7 5528 20 Europe/London 2008-06-10
-2652548 Colmworth Colmworth 52.21681 -0.37826 P PPLA3 GB ENG Z5 00KB009 0 69 Europe/London 2011-07-31
-2652557 Collington Collington 52.25 -2.51667 P PPLA3 GB ENG F7 00GA048 0 110 Europe/London 2011-07-31
-2652558 Collingham Collingham 53.91167 -1.41174 P PPLA3 GB ENG H3 00DA011 3033 22 Europe/London 2011-07-31
-2652559 Collingbourne Kingston Collingbourne Kingston Collingbourne Kingston 51.30105 -1.65876 P PPLA3 GB ENG P8 00HY069 0 144 Europe/London 2011-07-31
-2652577 Colinton Colinton Colinton 55.90739 -3.25609 P PPL GB SCT 00 7637 112 Europe/London 2010-08-03
-2652585 Colerne Colerne Colerne 51.43833 -2.2628 P PPL GB ENG P8 00HY067 2564 164 Europe/London 2011-03-03
-2652586 Coleraine Coleraine Colepaine,Cuil Rathain,Cúil Rathain,Kolrehjn,Колрэйн 55.13333 -6.66667 P PPLA2 GB NIR R6 25681 5 Europe/London 2010-10-16
-2652591 Coleford Coleford 51.8 -2.6 P PPL GB ENG E6 23UD 10371 223 Europe/London 2010-05-24
-2652601 Coldstream Coldstream Coldstream 55.65111 -2.25295 P PPL GB SCT T9 00EM040 1823 27 Europe/London 2011-03-03
-2652615 Cold Ashton Cold Ashton 51.45083 -2.36139 P PPLA3 GB ENG M6 00HD009 0 201 Europe/London 2011-07-31
-2652617 Cold Ash Cold Ash Cold Ash 51.42426 -1.26463 P PPL GB ENG P4 00MB017 2224 139 Europe/London 2011-02-21
-2652618 Colchester Colchester Colchester,Kolchest"r,Колчестър 51.88921 0.90421 P PPL GB ENG E4 22UG 109414 29 Europe/London 2011-03-03
-2652622 Coity Coity Coity,Coyty 51.522 -3.55531 P PPL GB WLS X3 00PB004 41352 64 Europe/London 2011-03-03
-2652640 Coggeshall Coggeshall Coggeshall 51.87077 0.68536 P PPL GB ENG E4 22UC 4006 31 Europe/London 2010-08-03
-2652648 Coedpoeth Coedpoeth 53.05391 -3.06234 P PPL GB WLS Z4 00NL011 5847 205 Europe/London 2011-03-03
-2652653 Codsall Codsall Codsall 52.62989 -2.20148 P PPL GB ENG M9 41UF 11548 125 Europe/London 2011-03-03
-2652656 Codicote Codicote Codicote 51.85052 -0.2367 P PPL GB ENG F8 26UF 10938 106 Europe/London 2011-03-03
-2652659 Codford Codford 51.15 -2.05 P PPLA3 GB ENG P8 00HY066 0 87 Europe/London 2011-07-31
-2652660 Coddington Coddington 53.08333 -2.81667 P PPLA3 GB ENG Z8 00EW044 0 22 Europe/London 2011-07-31
-2652676 Cockermouth Cockermouth Cockermouth 54.66209 -3.36086 P PPL GB ENG C9 16UB 7612 55 Europe/London 2011-03-03
-2652681 Cockenzie Cockenzie Cockenzie,Cockenzie and Port Seton 55.96823 -2.96562 P PPL GB SCT 00 5962 7 Europe/London 2011-01-06
-2652689 Cobham Cobham Church Cobham,Cobham 51.32997 -0.4113 P PPL GB ENG N7 43UB 16724 24 Europe/London 2010-08-03
-2652695 Coates Coates Coates 51.7075 -2.03389 P PPL GB ENG E6 23UC 2148 145 Europe/London 2012-01-17
-2652696 Coatbridge Coatbridge Coatbridge 55.86216 -4.02469 P PPL GB SCT V8 41170 88 Europe/London 2012-03-29
-2652698 Coalville Coalville Coalville 52.71667 -1.36667 P PPL GB ENG H5 6896157 33288 161 Europe/London 2012-01-17
-2652703 Coalisland Coalisland 54.5418 -6.70166 P PPL GB NIR 00 5416 34 Europe/London 2007-04-13
-2652707 Coalburn Coalburn 55.58333 -3.9 P PPL GB SCT 00 1267 254 Europe/London 2006-01-17
-2652730 Clydebank Clydebank Clydebank 55.90137 -4.4057 P PPL GB SCT W7 29867 9 Europe/London 2011-03-03
-2652734 Clydach Clydach 51.68333 -3.9 P PPLA3 GB WLS Z1 00NX005 19307 12 Europe/London 2011-07-31
-2652739 Clutton Clutton 51.32944 -2.54306 P PPLA3 GB ENG A4 00HA011 2739 120 Europe/London 2011-07-31
-2652771 Clowne Clowne 53.27449 -1.26406 P PPL GB ENG D3 17UC 7613 134 Europe/London 2011-03-03
-2652790 Clophill Clophill 52.02727 -0.42377 P PPLA3 GB ENG Z6 00KC016 1924 56 Europe/London 2011-07-31
-2652818 Clive Clive Clive 52.8 -2.71667 P PPLA3 GB ENG L6 00GG053 0 85 Europe/London 2011-07-31
-2652819 Clitheroe Clitheroe Clitheroe 53.86667 -2.4 P PPL GB ENG H2 30UL 15024 76 Europe/London 2012-02-28
-2652823 Clipsham Clipsham Clipsham 52.73608 -0.56545 P PPLA3 GB ENG L4 00FP013 0 98 Europe/London 2011-07-31
-2652842 Clifton Clifton 52.0399 -0.30051 P PPLA3 GB ENG Z6 00KC015 0 44 Europe/London 2011-07-31
-2652844 Clifford Clifford 52.1 -3.1 P PPLA3 GB ENG F7 00GA046 0 128 Europe/London 2011-07-31
-2652849 Cliffe Cliffe Cliffe,Cliffe-at-Hoo 51.46224 0.49833 P PPL GB ENG G5 1989 14 Europe/London 2011-02-12
-2652857 Cleveleys Cleveleys 53.8775 -3.03987 P PPL GB ENG H2 30UQ 15000 7 Europe/London 2012-03-29
-2652861 Clevedon Clevedon Clevedon 51.44057 -2.85745 P PPL GB ENG J4 00HC013 22413 28 Europe/London 2011-03-03
-2652874 Cleobury Mortimer Cleobury Mortimer Cleobury Mortimer 52.37853 -2.48196 P PPL GB ENG L6 00GG051 2324 133 Europe/London 2011-03-03
-2652876 Clenchwarton Clenchwarton Clenchwarton 52.75604 0.3579 P PPL GB ENG I9 33UE 2041 2 Europe/London 2011-03-03
-2652877 Cleland Cleland 55.80243 -3.9142 P PPL GB SCT V8 2733 149 Europe/London 2011-03-03
-2652885 Cleethorpes Cleethorpes Cleethorpes,Klitkhorps,Клитхорпс 53.56047 -0.03225 P PPL GB ENG J2 00FC016 32017 13 Europe/London 2011-03-03
-2652890 Cleckheaton Cleckheaton 53.72405 -1.71294 P PPL GB ENG G8 00CZ005 27393 92 Europe/London 2011-03-03
-2652891 Cleator Moor Cleator Moor 54.52143 -3.5159 P PPL GB ENG C9 16UE 6507 92 Europe/London 2011-03-03
-2652898 Clayton West Clayton West Clayton,Clayton West 53.59501 -1.61107 P PPL GB ENG G8 00CZ001 8109 127 Europe/London 2011-03-03
-2652899 Clayton le Moors Clayton le Moors Clayton le Moor,Clayton le Moors 53.76667 -2.38333 P PPL GB ENG H2 30UG 8474 133 Europe/London 2012-01-17
-2652900 Clayton Clayton 53.76667 -1.81667 P PPLA3 GB ENG B4 00CX010 0 291 Europe/London 2011-07-31
-2652908 Claydon Claydon 52.14813 -1.33295 P PPL GB ENG K2 38UB 3983 137 Europe/London 2011-02-23
-2652941 Clare Clare 52.07861 0.58167 P PPL GB ENG N5 42UF 2019 50 Europe/London 2010-05-24
-2652950 Clapham Clapham 52.16085 -0.49529 P PPLA3 GB ENG Z5 00KB008 3724 33 Europe/London 2011-07-31
-2652974 Clacton-on-Sea Clacton-on-Sea Clacton,Clacton-on-Sea 51.78967 1.15597 P PPL GB ENG E4 22UN 54674 17 Europe/London 2010-08-03
-2652976 Clackmannan Clackmannan Clackmannan 56.10743 -3.75098 P PPL GB SCT U1 3432 39 Europe/London 2011-03-03
-2652995 Cirencester Cirencester Cicester,Cirencester 51.71708 -1.96825 P PPL GB ENG E6 23UC 16214 116 Europe/London 2011-03-03
-2652997 Cinderford Cinderford 51.82421 -2.4987 P PPL GB ENG E6 23UD 10293 210 Europe/London 2010-05-24
-2653021 Church Stretton Church Stretton Church Stretton 52.53778 -2.80149 P PPL GB ENG L6 00GG048 3927 189 Europe/London 2011-03-03
-2653034 Churchill Churchill 51.33399 -2.79941 P PPLA3 GB ENG J4 00HC010 0 54 Europe/London 2011-07-31
-2653043 Churchdown Churchdown 51.88711 -2.18163 P PPL GB ENG E6 23UG 13287 26 Europe/London 2011-03-03
-2653049 Church Church Church 53.75177 -2.39121 P PPL GB ENG H2 30UG 4077 130 Europe/London 2011-03-03
-2653056 Chudleigh Chudleigh Chudleigh 50.60496 -3.60031 P PPL GB ENG D4 18UH 3634 74 Europe/London 2011-03-03
-2653060 Chryston Chryston Chryston 55.9028 -4.10759 P PPL GB SCT V8 2495 89 Europe/London 2011-03-03
-2653075 Christchurch Christchurch Krajstcherch,Крайстчерч 50.73306 -1.77567 P PPL GB ENG D6 19UC 42396 5 Europe/London 2010-05-24
-2653085 Chorleywood Chorleywood Chorleywood 51.65 -0.48333 P PPL GB ENG F8 26UJ 11917 89 Europe/London 2012-02-01
-2653086 Chorley Chorley 53.65 -2.61667 P PPL GB ENG H2 30UE 33888 105 Europe/London 2010-05-24
-2653095 Cholsey Cholsey Cholsey 51.5728 -1.15356 P PPL GB ENG K2 38UD 3102 48 Europe/London 2010-08-03
-2653109 Chobham Chobham 51.34584 -0.60459 P PPL GB ENG N7 43UJ 2835 27 Europe/London 2010-05-24
-2653128 Chirnside Chirnside Chirnside 55.80215 -2.20927 P PPL GB SCT T9 00EM117 1176 127 Europe/London 2011-03-03
-2653131 Chirk Chirk Chirk,Y Waun 52.93586 -3.05738 P PPL GB WLS Z4 00NL010 3926 107 Europe/London 2011-03-03
-2653137 Chipping Sodbury Chipping Sodbury 51.53813 -2.39379 P PPL GB ENG M6 00HD034 36108 99 Europe/London 2011-03-03
-2653138 Chipping Ongar Chipping Ongar 51.70379 0.24548 P PPL GB ENG E4 22UH 6055 55 Europe/London 2010-05-24
-2653139 Chipping Norton Chipping Norton 51.94109 -1.5453 P PPL GB ENG K2 38UF 5815 205 Europe/London 2011-02-24
-2653140 Chipping Campden Chipping Campden 52.04964 -1.7767 P PPL GB ENG E6 23UC 1986 139 Europe/London 2010-05-24
-2653144 Chippenham Chippenham Chippenem,Chippenham,Чиппенем 51.46 -2.12472 P PPLA3 GB ENG P8 00HY056 36890 61 Europe/London 2011-07-31
-2653145 Chinnor Chinnor Chinnor 51.70177 -0.91161 P PPL GB ENG K2 38UD 5527 120 Europe/London 2010-08-03
-2653147 Chinley Chinley 53.34025 -1.939 P PPL GB ENG D3 17UH 1635 208 Europe/London 2010-10-24
-2653149 Chilworth Chilworth Chilworth,Saint Martha 51.21635 -0.53129 P PPL GB ENG N7 43UD 1803 50 Europe/London 2010-08-03
-2653152 Chilton Foliat Chilton Foliat Chilton Foliat 51.43245 -1.53912 P PPLA3 GB ENG P8 00HY055 0 107 Europe/London 2011-07-31
-2653175 Chilcompton Chilcompton 51.26391 -2.50502 P PPL GB ENG M3 40UB 1670 143 Europe/London 2011-03-03
-2653178 Chigwell Chigwell Chigwell 51.61999 0.07596 P PPL GB ENG E4 22UH 10354 36 Europe/London 2011-02-12
-2653183 Chiddingfold Chiddingfold 51.11866 -0.62262 P PPL GB ENG N7 43UL 2175 51 Europe/London 2011-02-14
-2653187 Chicklade Chicklade 51.10917 -2.12667 P PPLA3 GB ENG P8 00HY053 0 144 Europe/London 2011-07-31
-2653188 Chickerell Chickerell Chickerell,West Chickerel 50.62429 -2.5028 P PPL GB ENG D6 19UH 2966 29 Europe/London 2011-03-03
-2653192 Chichester Chichester Chichester,Чичестер 50.83673 -0.78003 P PPLA2 GB ENG P6 45UD 28222 20 Europe/London 2010-10-16
-2653193 Chicheley Chicheley Chicheley 52.10303 -0.68647 P PPLA3 GB ENG I6 00MG007 0 82 Europe/London 2011-07-31
-2653197 Chew Magna Chew Magna Chew Magna,Great Chew 51.36611 -2.61028 P PPLA3 GB GB ENG A4 00HA008 0 50 Europe/London 2011-07-31
-2653207 Chetwynd Chetwynd 52.78333 -2.4 P PPLA3 GB ENG O2 00GF001 0 87 Europe/London 2011-07-31
-2653224 Chester-le-Street Chester-le-Street 54.85862 -1.57408 P PPL GB ENG D8 00EJ084 36917 13 Europe/London 2011-03-03
-2653225 Chesterfield Chesterfield Chesterfield 53.25 -1.41667 P PPL GB ENG D3 17UD 70679 89 Europe/London 2012-01-17
-2653228 Chester Chester Caer,Chester,Chestur,Честер,Честър 53.1905 -2.89189 P PPLA2 GB ENG Z8 77040 34 Europe/London 2011-10-14
-2653232 Cheshunt Cheshunt Cheshunt 51.70791 -0.03739 P PPL GB ENG F8 26UB 57374 28 Europe/London 2011-03-03
-2653235 Chesham Chesham Chesham 51.7 -0.6 P PPL GB ENG B9 11UC 20649 147 Europe/London 2012-01-17
-2653239 Chertsey Chertsey Chertsey 51.38812 -0.50782 P PPL GB ENG N7 43UG 10553 14 Europe/London 2011-02-14
-2653243 Cherry Burton Cherry Burton 53.86667 -0.5 P PPLA3 GB ENG E1 00FB033 0 30 Europe/London 2011-07-31
-2653256 Chepstow Chepstow Chepstow 51.64087 -2.67683 P PPL GB WLS Y4 00PP004 11062 45 Europe/London 2011-03-03
-2653261 Cheltenham Cheltenham Cheltenham,cherutonamu,チェルトナム 51.9 -2.08333 P PPL GB ENG E6 23UB 103249 62 Europe/London 2012-01-17
-2653265 Chelsea Chelsea Chelsea 51.48755 -0.16936 P PPLX GB ENG GLA G4 60000 12 Europe/London 2011-03-03
-2653266 Chelmsford Chelmsford Chelmsford,Челмсфорд 51.73575 0.46958 P PPLA2 GB ENG E4 22UF 102671 33 Europe/London 2011-02-12
-2653279 Cheddleton Cheddleton 53.0691 -2.04228 P PPL GB ENG M9 41UH 2780 162 Europe/London 2011-03-03
-2653280 Cheddington Cheddington 51.84784 -0.66429 P PPL GB ENG B9 11UB 1768 107 Europe/London 2010-08-21
-2653281 Cheddar Cheddar 51.27537 -2.77662 P PPL GB ENG M3 40UC 5724 12 Europe/London 2010-05-24
-2653290 Cheadle Hulme Cheadle Hulme 53.3761 -2.1897 P PPL GB ENG 00 28952 68 Europe/London 2010-09-22
-2653292 Cheadle Cheadle 52.98333 -1.98333 P PPL GB ENG M9 41UH 12158 159 Europe/London 2012-03-01
-2653298 Chatteris Chatteris 52.45405 0.05006 P PPL GB ENG C3 12UD 8655 11 Europe/London 2010-05-24
-2653305 Chatham Chatham Chatem,Chatham,Чатем 51.37891 0.52786 P PPL GB ENG G5 75509 21 Europe/London 2010-08-03
-2653307 Chasetown Chasetown Chasetown 52.67232 -1.92535 P PPL GB ENG M9 41UD 9000 156 Europe/London 2010-08-03
-2653310 Chartham Chartham 51.2562 1.01836 P PPL GB ENG G5 29UB 2836 18 Europe/London 2011-03-03
-2653324 Charlton Kings Charlton Kings 51.88374 -2.04239 P PPL GB ENG E6 23UB 11700 95 Europe/London 2011-03-03
-2653327 Charlton Charlton 51.59917 -2.05639 P PPLA3 GB ENG P8 00HY048 0 92 Europe/London 2011-07-31
-2653339 Charlbury Charlbury Charlbury 51.8727 -1.48247 P PPL GB ENG K2 38UF 3050 111 Europe/London 2011-02-24
-2653343 Charfield Charfield Charfield 51.62722 -2.40667 P PPLA3 GB ENG M6 00HD008 2472 49 Europe/London 2011-07-31
-2653346 Chard Chard Chard 50.8727 -2.96597 P PPL GB ENG M3 40UD 12275 118 Europe/London 2011-03-03
-2653353 Chapletown Chapletown 53.46506 -1.47217 P PPL GB ENG 00 22785 111 Europe/London 2008-06-13
-2653357 Chapel Saint Leonards Chapel Saint Leonards 53.21667 0.31667 P PPL GB ENG H7 32UC 3481 2 Europe/London 2010-05-24
-2653366 Chapelhall Chapelhall 55.84349 -3.94881 P PPL GB SCT V8 5507 139 Europe/London 2011-03-03
-2653368 Chapel en le Frith Chapel en le Frith 53.32407 -1.91291 P PPL GB ENG D3 17UH 6728 225 Europe/London 2011-03-03
-2653391 Chalgrove Chalgrove 51.66476 -1.0764 P PPL GB ENG K2 38UD 2974 68 Europe/London 2010-10-07
-2653392 Chalford Chalford Chalford 51.72583 -2.15139 P PPL GB ENG E6 23UF 6776 160 Europe/London 2012-01-17
-2653393 Chalfont Saint Peter Chalfont Saint Peter Chalfont Saint Peter 51.60885 -0.55618 P PPL GB ENG B9 11UC 20059 66 Europe/London 2010-08-21
-2653394 Chalfont Saint Giles Chalfont Saint Giles 51.63184 -0.57026 P PPL GB ENG B9 11UC 4815 75 Europe/London 2010-08-21
-2653396 Chale Chale 50.59561 -1.31836 P PPLA3 GB ENG G2 00MW006 0 84 Europe/London 2011-07-31
-2653417 Chacewater Chacewater Chacewater 50.25 -5.16667 P PPLA3 GB ENG C6 00HE021 0 112 Europe/London 2011-07-31
-2653424 Ceres Ceres Ceres 56.29382 -2.97357 P PPL GB SCT V1 1023 74 Europe/London 2011-03-03
-2653463 Cawthorne Cawthorne 53.56667 -1.58333 P PPLA3 GB ENG A3 00CC003 1108 96 Europe/London 2011-07-31
-2653499 Catterick Catterick 54.37542 -1.63328 P PPL GB ENG J7 36UE 2804 56 Europe/London 2011-03-03
-2653500 Catterall Catterall 53.87965 -2.76478 P PPL GB ENG H2 30UQ 2029 20 Europe/London 2010-09-16
-2653504 Catrine Catrine Catrine 55.50422 -4.33026 P PPL GB SCT U4 1973 96 Europe/London 2011-03-03
-2653505 Caton Caton 54.06667 -2.71667 P PPL GB ENG H2 30UH 2481 45 Europe/London 2010-05-24
-2653516 Catford Catford 51.44491 -0.02043 P PPLA3 GB ENG GLA H6 0 22 Europe/London 2010-10-17
-2653530 Castor Castor Castor 52.57319 -0.34603 P PPLA3 GB ENG K3 00JA006 0 15 Europe/London 2011-07-31
-2653534 Castlewellan Castlewellan Castlewellan 54.26667 -5.93333 P PPL GB NIR 00 2499 82 Europe/London 2010-08-09
-2653545 Castlethorpe Castlethorpe Castlethorpe 52.0923 -0.83539 P PPLA3 GB ENG I6 00MG006 0 88 Europe/London 2011-07-31
-2653550 Castleside Castleside Castleside 54.83429 -1.87849 P PPL GB ENG D8 00EJ053 4728 229 Europe/London 2011-03-03
-2653554 Castlerock Castlerock Castlerock 55.15 -6.78333 P PPL GB NIR 00 1477 54 Europe/London 2010-08-09
-2653558 Castlereagh Castlereagh 54.5735 -5.88472 P PPLA2 GB NIR R5 56679 29 Europe/London 2010-10-16
-2653568 Castlemartin Castlemartin Castlemartin 51.64528 -5.01694 P PPLA3 GB WLS Y7 00NS010 0 54 Europe/London 2011-07-31
-2653584 Castleford Castleford 53.72587 -1.36256 P PPL GB ENG O7 37713 15 Europe/London 2007-01-16
-2653590 Castle Douglas Castle Douglas Castle Douglas 54.94095 -3.92784 P PPL GB SCT U2 3631 59 Europe/London 2011-03-03
-2653591 Castle Donington Castle Donington Castle Donington,Castle Donnington 52.84291 -1.34188 P PPL GB ENG H5 6896157 6110 69 Europe/London 2012-01-09
-2653594 Castlederg Castlederg Castlederg 54.7 -7.6 P PPL GB NIR 00 2822 55 Europe/London 2010-08-09
-2653595 Castledawson Castledawson 54.77723 -6.56227 P PPL GB NIR 00 2263 33 Europe/London 2007-04-13
-2653601 Castle Cary Castle Cary Castle Cary 51.09 -2.51417 P PPL GB ENG M3 40UD 3124 91 Europe/London 2012-02-01
-2653634 Carterton Carterton 51.75905 -1.59435 P PPL GB ENG K2 38UF 13247 93 Europe/London 2011-03-03
-2653656 Carryduff Carryduff 54.51799 -5.88713 P PPL GB NIR 00 7798 118 Europe/London 2007-04-13
-2653673 Carrington Carrington 53.43333 -2.38333 P PPLA3 GB ENG O6 00BU001 0 21 Europe/London 2011-07-31
-2653680 Carrickfergus Carrickfergus 54.7158 -5.8058 P PPLA2 GB NIR R4 29208 7 Europe/London 2010-10-16
-2653701 Carnwath Carnwath Carnwath 55.70036 -3.62579 P PPL GB SCT W5 1471 218 Europe/London 2011-03-03
-2653704 Carnoustie Carnoustie Carn Fheusda,Carnoustie,Càrn Fheusda,Karnousti,Karnusti,Карноусті,Карнусти 56.50136 -2.70905 P PPL GB SCT T7 10500 13 Europe/London 2011-03-03
-2653712 Carnlough Carnlough 54.99185 -5.99038 P PPL GB NIR S3 1427 3 Europe/London 2010-05-18
-2653715 Carnforth Carnforth Carnforth 54.11667 -2.76667 P PPL GB ENG H2 30UH 5469 49 Europe/London 2012-02-28
-2653742 Carnaby Carnaby 54.07258 -0.24934 P PPLA3 GB ENG E1 00FB030 0 27 Europe/London 2011-07-31
-2653745 Carmunnock Carmunnock Carmunnock 55.79062 -4.23584 P PPL GB SCT V2 1080 138 Europe/London 2011-03-03
-2653755 Carmarthen Carmarthen Caerfyrddin,Caermarthen,Carmarthen 51.85552 -4.30535 P PPLA2 GB WLS X7 00NU006 15244 23 Europe/London 2011-03-03
-2653756 Carluke Carluke Carluke 55.73595 -3.83019 P PPL GB SCT W5 13465 210 Europe/London 2011-03-03
-2653762 Carlton Carlton 54.58333 -1.4 P PPLA3 GB ENG N3 00EF002 0 55 Europe/London 2011-07-31
-2653775 Carlisle Carlisle Caerliwelydd,Carlisle,Cathair Luail,Karlajl,Карлайл 54.8951 -2.9382 P PPLA2 GB ENG C9 16UD 72633 29 Europe/London 2010-10-16
-2653806 Cardross Cardross 55.96667 -4.63333 P PPL GB SCT 00 1897 77 Europe/London 2006-01-17
-2653812 Cardington Cardington 52.55 -2.73333 P PPLA3 GB ENG L6 00GG039 0 212 Europe/London 2011-07-31
-2653813 Cardington Cardington 52.11742 -0.41289 P PPLA3 GB ENG Z5 00KB006 0 29 Europe/London 2011-07-31
-2653818 Cardigan Cardigan Aberteifi,Cardigan 52.08473 -4.65906 P PPLA3 GB WLS X6 00NQ007 0 13 Europe/London 2011-07-31
-2653822 Cardiff Cardiff Caerdydd,Cardiff,Kardiff,Kerdiz,Кардифф 51.48 -3.18 P PPLA GB WLS X5 302139 17 Europe/London 2011-12-03
-2653824 Cardenden Cardenden Cardenden 56.1431 -3.25687 P PPL GB SCT V1 4913 71 Europe/London 2011-03-03
-2653825 Carcroft Carcroft 53.58282 -1.17648 P PPL GB ENG 37 8584 8 Europe/London 2010-03-19
-2653845 Capel Saint Mary Capel Saint Mary Capel,Capel Saint Mary 52.00369 1.04482 P PPL GB ENG N5 42UB 2940 48 Europe/London 2010-08-03
-2653873 Cantley Cantley 53.5 -1.05 P PPLA3 GB ENG D5 00CE014 0 6 Europe/London 2011-07-31
-2653877 Canterbury Canterbury Caergaint,Canterbury,Cantorbery,Cantorbéry,Cantuaria,Cantuária,Cantwarebyrig,Dorwitceaster,Durovernum,Durovernum Canticorum,Kantaraborg,Kenterberi,kan te bo lei,kantaberi,kantrbyry,qntrbry,Кентербери,קנטרברי,كانتربيري,カンタベリー,堪特伯雷 51.27904 1.07992 P PPL GB ENG G5 46978 19 Europe/London 2010-08-03
-2653883 Cannock Cannock Cannock,Kannok,Каннок 52.69045 -2.03085 P PPL GB ENG M9 41UB 68067 154 Europe/London 2011-03-03
-2653901 Camrose Camrose 51.84139 -5.01 P PPLA3 GB WLS Y7 00NS008 0 48 Europe/London 2011-07-31
-2653910 Campsall Campsall 53.61917 -1.18002 P PPL GB ENG D5 00CE032 2041 15 Europe/London 2011-03-03
-2653915 Campbeltown Campbeltown Campbeltown 55.42583 -5.60764 P PPL GB SCT T8 4939 5 Europe/London 2011-03-03
-2653924 Camerton Camerton 51.31611 -2.45611 P PPLA3 GB ENG A4 00HA005 0 109 Europe/London 2011-07-31
-2653927 Camelford Camelford Camelford 50.62185 -4.67963 P PPL GB ENG C6 00HE016 1649 199 Europe/London 2011-03-03
-2653941 Cambridge Cambridge Caergrawnt,Cambridge,Cantabrigia,Grantanbrycg,Kejmbridzh,Kembridz,Kembridzas,Kembridzh,Kembridžas,Kembrigo,Kembriĝo,jian qiao,kambrydj,keimbeuliji,kenburijji,khem bridc,kmbryj,qyymbrydg',Кеймбридж,Кембридж,Кембриџ,Кембрідж,קיימברידג',كامبريدج,کمبریج,เคมบริดจ์,ケンブリッジ,劍橋,케임브리지 52.2 0.11667 P PPLA2 GB ENG C3 12UB 128488 12 Europe/London 2010-10-16
-2653945 Camborne Camborne Kamm-Bron 50.21306 -5.29731 P PPL GB ENG C6 00HE015 22500 101 Europe/London 2012-03-29
-2653947 Camberley Camberley Camberley,Camberly,Kemberli,Кемберли 51.33705 -0.74261 P PPL GB ENG N7 43UJ 30155 84 Europe/London 2010-08-03
-2653961 Calverton Calverton 52.04119 -0.85041 P PPLA3 GB ENG I6 00MG040 0 73 Europe/London 2011-07-31
-2653974 Calne Calne Calne 51.43879 -2.00571 P PPL GB ENG P8 00HY044 14096 77 Europe/London 2011-03-03
-2653978 Callow Callow 52.01667 -2.73333 P PPLA3 GB ENG F7 00GA041 0 77 Europe/London 2011-07-31
-2653989 Callander Callander Callander 56.2441 -4.21637 P PPL GB SCT W6 2782 75 Europe/London 2011-03-03
-2654014 Caldicot Caldicot Caldicot 51.58661 -2.75736 P PPL GB WLS Y4 00PP003 11373 11 Europe/London 2011-03-03
-2654020 Caldercruix Caldercruix 55.88886 -3.88664 P PPL GB SCT V8 1980 190 Europe/London 2011-03-03
-2654043 Caistor Caistor Caistor 53.49673 -0.31538 P PPL GB ENG H7 32UH 2471 99 Europe/London 2011-03-03
-2654044 Caister-on-Sea Caister-on-Sea Caister,Caister next Yarmouth 52.64809 1.72648 P PPL GB ENG I9 33UD 8951 2 Europe/London 2010-05-24
-2654054 Cairnryan Cairnryan Cairnryan 54.97104 -5.01982 P PPL GB SCT U2 3757 5 Europe/London 2011-03-03
-2654066 Cairneyhill Cairneyhill Cairneyhill 56.05908 -3.53518 P PPL GB SCT V1 2660 38 Europe/London 2011-03-03
-2654089 Caerphilly Caerphilly Caerffili,Caerphilly,Kerfili,Керфили 51.57452 -3.218 P PPL GB WLS X4 00PK007 31060 94 Europe/London 2011-09-20
-2654092 Caernarfon Caernarfon Caernarfon,Carnarvon 53.14126 -4.27016 P PPLA2 GB WLS Y2 9836 33 Europe/London 2010-10-16
-2654093 Caerleon Caerleon Caerleon,Caerllion 51.60952 -2.95378 P PPL GB WLS Y6 00PR006 9496 19 Europe/London 2011-03-03
-2654095 Caergwrle Caergwrle 53.10953 -3.03808 P PPL GB WLS Y1 00NJ015 4673 91 Europe/London 2011-03-03
-2654107 Cadnam Cadnam 50.92047 -1.5797 P PPL GB ENG F2 24UJ 1917 30 Europe/London 2011-03-03
-2654115 Caddington Caddington 51.86621 -0.45679 P PPLA3 GB ENG Z6 00KC011 3169 176 Europe/London 2011-07-31
-2654141 Buxton Buxton 53.25741 -1.90982 P PPL GB ENG D3 17UH 21300 316 Europe/London 2010-11-07
-2654169 Butcombe Butcombe 51.35194 -2.69778 P PPLA3 GB ENG J4 00HC009 0 85 Europe/London 2011-07-31
-2654175 Bushmills Bushmills 55.20493 -6.51918 P PPL GB NIR 00 1309 12 Europe/London 2007-04-13
-2654179 Bushey Bushey Bushey 51.64316 -0.36053 P PPL GB ENG F8 26UE 17380 99 Europe/London 2011-02-08
-2654184 Busby Busby 55.78159 -4.26738 P PPL GB SCT U7 1654 86 Europe/London 2011-03-03
-2654186 Bury St Edmunds Bury St Edmunds Bury Saint Edmunds,Bury St,Bury St Edmunds 52.2463 0.71111 P PPL GB ENG N5 42UF 38622 52 Europe/London 2010-08-03
-2654187 Bury Bury Bury 53.6 -2.3 P PPLA2 GB ENG C1 61044 93 Europe/London 2010-10-16
-2654194 Burwell Burwell 53.29305 0.03463 P PPL GB ENG H7 32UC 5963 57 Europe/London 2010-05-24
-2654199 Burtonwood Burtonwood 53.42948 -2.65852 P PPL GB ENG 00 3266 29 Europe/London 2008-06-17
-2654200 Burton upon Trent Burton upon Trent Burton upon Trent,Burton-on-Trent 52.80728 -1.64263 P PPL GB ENG M9 41UC 40039 49 Europe/London 2010-08-03
-2654201 Burton upon Stather Burton upon Stather Burton,Burton upon Stather 53.64911 -0.68453 P PPL GB ENG J3 00FD013 2489 64 Europe/London 2011-03-03
-2654203 Burton Pidsea Burton Pidsea 53.76327 -0.10703 P PPLA3 GB ENG E1 00FB029 0 8 Europe/London 2011-07-31
-2654208 Burton Latimer Burton Latimer Burton Latimer 52.36368 -0.67853 P PPL GB ENG J1 34UE 6890 74 Europe/London 2011-03-03
-2654209 Burton Joyce Burton Joyce 52.98825 -1.03407 P PPL GB ENG J9 37UE 3814 22 Europe/London 2011-03-03
-2654211 Burton Constable Burton Constable 53.81667 -0.2 P PPLA3 GB ENG E1 00FB027 0 15 Europe/London 2011-07-31
-2654216 Burton Burton 53.26667 -0.56667 P PPL GB ENG H7 32UH 4106 37 Europe/London 2010-05-24
-2654218 Burton Burton Burton 51.71556 -4.92222 P PPLA3 GB WLS Y7 00NS006 0 54 Europe/London 2011-07-31
-2654220 Burstwick Burstwick 53.73211 -0.13956 P PPLA3 GB ENG E1 00FB025 1853 7 Europe/London 2011-07-31
-2654226 Bursledon Bursledon 50.88658 -1.31596 P PPL GB ENG F2 24UD 6894 38 Europe/London 2010-05-24
-2654229 Burry Port Burry Port Burry Port 51.68435 -4.24687 P PPL GB WLS X7 00NU007 7860 8 Europe/London 2011-03-03
-2654233 Burrington Burrington 52.35 -2.81667 P PPLA3 GB ENG F7 00GA038 0 163 Europe/London 2011-07-31
-2654234 Burrington Burrington 51.33084 -2.74896 P PPLA3 GB ENG J4 00HC008 0 71 Europe/London 2011-07-31
-2654252 Burntwood Burntwood 52.68075 -1.92759 P PPL GB ENG M9 41UD 29766 173 Europe/London 2010-05-24
-2654255 Burntisland Burntisland Burntisland 56.06248 -3.23176 P PPL GB SCT V1 5518 13 Europe/London 2011-03-03
-2654260 Burnopfield Burnopfield Burnopfield 54.90624 -1.72486 P PPL GB ENG D8 00EJ110 3860 182 Europe/London 2011-03-03
-2654264 Burnley Burnley Bernli,Burnley,brnly,Бернли,ברנלי 53.8 -2.23333 P PPL GB ENG H2 30UD 73480 140 Europe/London 2012-01-17
-2654265 Burniston Burniston Burniston 54.32385 -0.44813 P PPL GB ENG J7 36UG 2147 54 Europe/London 2011-03-03
-2654269 Burnham-on-Sea Burnham-on-Sea Burnham 51.23862 -2.9978 P PPL GB ENG M3 40UC 18401 9 Europe/London 2012-03-29
-2654270 Burnham on Crouch Burnham on Crouch Burnham,Burnham on Crouch 51.63272 0.81488 P PPL GB ENG E4 22UK 7806 16 Europe/London 2010-08-03
-2654285 Burley in Wharfedale Burley in Wharfedale Burley,Burley in Wharfedale 53.9102 -1.75798 P PPL GB ENG 00 5996 109 Europe/London 2010-08-03
-2654286 Burley Burley Burley,Burley-on-the-Hill 52.68512 -0.69609 P PPLA3 GB ENG L4 00FP011 0 152 Europe/London 2011-07-31
-2654298 Burgh le Marsh Burgh le Marsh 53.16158 0.24484 P PPL GB ENG H7 32UC 2061 9 Europe/London 2011-03-03
-2654303 Burghead Burghead Burghead 57.70113 -3.48992 P PPL GB SCT V6 1684 9 Europe/London 2011-03-03
-2654308 Burgess Hill Burgess Hill Burgess Hill,burgess hill, west sussex 50.95843 -0.13287 P PPL GB ENG P6 45UG 31183 45 Europe/London 2011-02-03
-2654320 Burbage Burbage Burbage 51.35184 -1.67087 P PPLA3 GB ENG P8 00HY041 0 166 Europe/London 2011-07-31
-2654323 Buntingford Buntingford 51.94612 -0.01841 P PPL GB ENG F8 26UD 4927 93 Europe/London 2010-05-24
-2654327 Bungay Bungay 52.45434 1.43818 P PPL GB ENG N5 42UH 5004 14 Europe/London 2010-05-24
-2654356 Bulkington Bulkington 51.32361 -2.08361 P PPLA3 GB ENG P8 00HY040 0 48 Europe/London 2011-07-31
-2654357 Bulford Bulford Bulford 51.1893 -1.76009 P PPLA3 GB ENG P8 00HY039 9519 80 Europe/London 2011-07-31
-2654359 Builth Wells Builth Wells Builth,Builth Wells,Llanfair-ym-Muallt 52.1494 -3.40469 P PPL GB WLS Y8 00NN011 2669 130 Europe/London 2011-03-03
-2654370 Bugthorpe Bugthorpe 54.01082 -0.8226 P PPLA3 GB ENG E1 00FB024 0 49 Europe/London 2011-07-31
-2654371 Bugle Bugle 50.39577 -4.79334 P PPL GB ENG C6 00HE200 2293 148 Europe/London 2011-03-03
-2654372 Bugbrooke Bugbrooke Bugbrooke 52.21006 -1.01304 P PPL GB ENG J1 34UG 2835 81 Europe/London 2011-03-03
-2654376 Budleigh Salterton Budleigh Salterton Budleigh,Budleigh Salterton 50.62983 -3.32181 P PPL GB ENG D4 18UB 4908 22 Europe/London 2011-03-03
-2654380 Bude Bude 50.82435 -4.5413 P PPL GB ENG C6 6113 10 Europe/London 2010-02-13
-2654389 Bucknell Bucknell 52.36667 -2.95 P PPLA3 GB ENG L6 00GG035 0 209 Europe/London 2011-07-31
-2654394 Buckley Buckley Buckley 53.16667 -3.08333 P PPLA3 GB WLS Y1 00NJ004 18471 157 Europe/London 2011-07-31
-2654410 Buckingham Buckingham Buckingham 51.99968 -0.98779 P PPL GB ENG B9 11UB 12791 89 Europe/London 2011-03-03
-2654411 Buckie Buckie Buckie 57.6757 -2.96238 P PPL GB SCT V6 7860 28 Europe/London 2011-03-03
-2654415 Buckhaven Buckhaven Buckhaven 56.17149 -3.03377 P PPL GB SCT V1 16063 28 Europe/London 2011-03-03
-2654416 Buckfastleigh Buckfastleigh 50.48132 -3.77913 P PPL GB ENG D4 18UH 3743 42 Europe/London 2010-05-24
-2654419 Buckden Buckden 52.29415 -0.24912 P PPL GB ENG C3 12UE 2438 26 Europe/London 2010-05-24
-2654430 Bubwith Bubwith 53.81905 -0.91968 P PPLA3 GB ENG E1 00FB023 0 9 Europe/London 2011-07-31
-2654437 Brynmawr Brynmawr Brynmawr 51.8 -3.18333 P PPLA3 GB WLS X2 00PL003 14924 382 Europe/London 2011-07-31
-2654444 Bryneglwys Bryneglwys 53.01667 -3.28333 P PPLA3 GB WLS X9 00NG005 0 247 Europe/London 2011-07-31
-2654447 Brynamman Brynamman 51.8 -3.86667 P PPL GB WLS 00 5693 214 Europe/London 2006-01-27
-2654449 Bryn Bryn 51.61639 -3.71167 P PPLA3 GB WLS Y5 00NZ007 0 132 Europe/London 2011-07-31
-2654450 Brymbo Brymbo Brymbo 53.06667 -3.06667 P PPLA3 GB WLS Z4 00NL006 18111 248 Europe/London 2011-07-31
-2654454 Bruton Bruton Bruton 51.1125 -2.45278 P PPL GB ENG M3 40UD 3048 66 Europe/London 2012-01-17
-2654461 Brundall Brundall 52.62268 1.43876 P PPL GB ENG I9 33UC 5962 21 Europe/London 2010-05-24
-2654480 Broxburn Broxburn 55.93415 -3.47133 P PPL GB SCT W9 13288 70 Europe/London 2011-03-03
-2654490 Brownhills Brownhills Braunkhills,Brownhills,Браунхиллс 52.63333 -1.93333 P PPL GB ENG 00 20308 143 Europe/London 2010-08-03
-2654502 Broughton Astley Broughton Astley Broughton Astley 52.52787 -1.21768 P PPL GB ENG H5 31UD 8475 93 Europe/London 2010-08-03
-2654506 Broughton Broughton 53.56667 -0.55 P PPLA3 GB ENG J3 00FD011 0 34 Europe/London 2011-07-31
-2654509 Broughton Broughton 52.36667 -0.76667 P PPL GB ENG J1 34UE 2093 108 Europe/London 2010-05-24
-2654510 Broughton Broughton 52.05038 -0.69351 P PPLA3 GB ENG I6 00MG005 0 66 Europe/London 2011-07-31
-2654515 Broughshane Broughshane 54.8926 -6.20899 P PPL GB NIR 00 2581 65 Europe/London 2007-04-13
-2654532 Brough Brough 53.7 -0.58333 P PPL GB ENG 00 8764 -9999 Europe/London 2006-01-17
-2654539 Broseley Broseley Broseley 52.61321 -2.48269 P PPL GB ENG L6 00GG034 5644 155 Europe/London 2011-03-03
-2654545 Brora Brora Brora 58.00989 -3.85182 P PPL GB SCT V3 1095 18 Europe/London 2011-03-03
-2654549 Broomfleet Broomfleet 53.73333 -0.66667 P PPLA3 GB ENG E1 00FB022 0 5 Europe/London 2011-07-31
-2654566 Brooke Brooke 52.64317 -0.74638 P PPLA3 GB ENG L4 00FP010 0 114 Europe/London 2011-07-31
-2654578 Bromyard Bromyard Bromyard 52.19019 -2.50875 P PPL GB ENG 00 3997 128 Europe/London 2010-08-03
-2654579 Bromsgrove Bromsgrove 52.33574 -2.05983 P PPL GB ENG Q4 47UB 29237 90 Europe/London 2012-03-26
-2654588 Bromley Bromley Bromley,Bromley keruelet,Bromley kerület,Distretto di Bromley,London Borough of Bromley,Londonska opshtina Bromli,Лондонска општина Бромли 51.40606 0.01519 P PPLA3 GB ENG GLA B8 0 72 Europe/London 2011-02-05
-2654589 Bromham Bromham 52.14508 -0.52906 P PPLA3 GB ENG Z5 00KB005 4701 38 Europe/London 2011-07-31
-2654591 Bromfield Bromfield 52.38333 -2.76667 P PPLA3 GB ENG L6 00GG033 0 99 Europe/London 2011-07-31
-2654608 Brockley Brockley 51.4 -2.76667 P PPLA3 GB ENG J4 00HC007 0 25 Europe/London 2011-07-31
-2654612 Brockhampton Brockhampton 51.98333 -2.58333 P PPLA3 GB ENG F7 00GA033 0 97 Europe/London 2011-07-31
-2654615 Brockenhurst Brockenhurst Brockenhurst 50.81936 -1.57303 P PPL GB ENG F2 24UJ 2929 16 Europe/London 2011-03-03
-2654628 Broadway Broadway Broadway 52.03333 -1.85 P PPL GB ENG Q4 47UF 2552 127 Europe/London 2012-01-17
-2654630 Broadwater Broadwater 50.81667 -0.36667 P PPLX GB ENG P6 45UH 8442 7 Europe/London 2012-03-29
-2654634 Broadstone Broadstone 50.75 -1.98333 P PPL GB ENG D6 10256 15 Europe/London 2012-03-29
-2654635 Broadstairs Broadstairs Broadstairs 51.35908 1.43938 P PPL GB ENG G5 23283 36 Europe/London 2011-11-06
-2654657 Broad Blunsdon Broad Blunsdon 51.61339 -1.7787 P PPL GB ENG N9 00HX002 1803 142 Europe/London 2011-03-03
-2654660 Brixworth Brixworth Brixworth 52.32912 -0.9035 P PPL GB ENG J1 34UC 5277 125 Europe/London 2011-03-03
-2654663 Brixham Brixham Brixham 50.39431 -3.51585 P PPL GB ENG O4 00HH001 17846 13 Europe/London 2011-03-03
-2654668 Briton Ferry Briton Ferry Briton Ferry,Llansawel 51.63106 -3.81898 P PPL GB WLS Y5 00NZ006 35179 25 Europe/London 2011-03-03
-2654673 Briston Briston Briston 52.85369 1.05899 P PPL GB ENG I9 33UF 1796 56 Europe/London 2011-03-03
-2654675 Bristol Bristol BRS,Bricgstoƿ,Bricgstōƿ,Briosto,Briostó,Bristo,Bristol,Bristol',Bristole,Bristolis,Bristolium,Briston,Bristul,Bristullu,Bristón,Bryste,beuliseuteul,bristala,brystwl,bu li si tuo er,burisutoru,Μπρίστολ,Бристол,Бристоль,Бристъл,בריסטאל,בריסטול,برسٹل نگر,بريستول,بریستول,ब्रिस्टल,ಬ್ರಿಸ್ಟಲ್,ბრისტოლი,ブリストル,布里斯托尔,브리스틀 51.45523 -2.59665 P PPLA2 GB ENG B7 00HC023 430713 21 Europe/London 2011-06-16
-2654695 Brimscombe Brimscombe 51.71973 -2.18553 P PPL GB ENG E6 23UF 1554 98 Europe/London 2011-03-03
-2654705 Brignall Brignall Brignall 54.50534 -1.88896 P PPLA3 GB ENG D8 00EJ015 0 199 Europe/London 2011-07-31
-2654710 Brighton Brighton Brajton,Brajtono,Brighton,bra'itana,braytwn,bryytwn,bu lai dun,buraiton,Брайтон,ברייטון,برايتون,ব্রাইটন,ブライトン,布赖顿 50.82838 -0.13947 P PPL GB ENG E2 139001 29 Europe/London 2010-08-03
-2654711 Brightlingsea Brightlingsea 51.81164 1.02336 P PPL GB ENG E4 22UN 8327 10 Europe/London 2010-05-24
-2654715 Brighouse Brighouse 53.70322 -1.78428 P PPL GB ENG C2 00CZ003 32872 80 Europe/London 2011-03-03
-2654721 Brigg Brigg 53.55201 -0.49214 P PPL GB ENG J3 00FD010 5988 7 Europe/London 2011-03-03
-2654724 Brierley Hill Brierley Hill Brierley Hill 52.48173 -2.12139 P PPL GB ENG D7 28000 152 Europe/London 2012-03-29
-2654725 Brierfield Brierfield 53.82468 -2.23415 P PPL GB ENG H2 30UJ 10271 156 Europe/London 2011-03-03
-2654726 Bridport Bridport 50.7338 -2.75831 P PPL GB ENG D6 19UH 13266 16 Europe/London 2011-03-03
-2654728 Bridlington Bridlington 54.08306 -0.19192 P PPLA3 GB ENG E1 00FB169 35057 14 Europe/London 2011-07-31
-2654730 Bridgwater Bridgwater Bridgewater,Bridgwater,Bridzhuoter,Бриджуотер 51.12837 -3.00356 P PPL GB ENG M3 40UC 38020 15 Europe/London 2011-03-03
-2654731 Bridgnorth Bridgnorth Bridgnorth 52.53661 -2.42033 P PPL GB ENG L6 00GG032 12156 74 Europe/London 2011-03-03
-2654736 Bridge of Weir Bridge of Weir Bridge of Weir 55.85 -4.58333 P PPL GB SCT 00 4418 106 Europe/London 2010-08-03
-2654742 Bridge of Earn Bridge of Earn Bridge of Earn 56.34842 -3.4065 P PPL GB SCT W1 2231 11 Europe/London 2011-03-03
-2654747 Bridge of Allan Bridge of Allan Bridge of Allan 56.15402 -3.94631 P PPL GB SCT W6 5073 13 Europe/London 2011-03-03
-2654755 Bridgend Bridgend Bridgend,Pen-y-bont ar Ogwr 51.50583 -3.57722 P PPLA2 GB WLS X3 39429 23 Europe/London 2012-04-02
-2654767 Brewood Brewood Brewood 52.67712 -2.17414 P PPL GB ENG M9 41UF 2532 113 Europe/London 2011-03-03
-2654782 Brentwood Brentwood Brentwood 51.62127 0.30556 P PPL GB ENG E4 22UD 47606 108 Europe/London 2010-08-03
-2654787 Brentford Brentford Brentford 51.48619 -0.3083 P PPL GB ENG GLA D9 10750 15 Europe/London 2012-03-01
-2654795 Bremhill Bremhill Bremhill 51.45667 -2.03028 P PPLA3 GB ENG P8 00HY029 0 101 Europe/London 2011-07-31
-2654807 Bredon Bredon 52.03046 -2.11 P PPL GB ENG Q4 47UF 1957 32 Europe/London 2011-03-03
-2654817 Brecon Brecon Aberhonddu,Brecknock,Brecon,Brycheiniog 51.94612 -3.38887 P PPL GB WLS Y8 00NN009 7989 136 Europe/London 2012-03-29
-2654824 Brechin Brechin Brechin 56.72993 -2.65729 P PPL GB SCT T7 6977 40 Europe/London 2011-03-03
-2654832 Bream Bream Bream 51.74822 -2.57747 P PPL GB ENG E6 23UD 3061 158 Europe/London 2011-03-03
-2654848 Brayton Brayton Brajton,Brayton,Брайтон 53.7651 -1.08921 P PPL GB ENG J7 36UH 2913 8 Europe/London 2011-03-03
-2654853 Bray Bray 51.5034 -0.68768 P PPLA3 GB ENG P9 00ME002 0 23 Europe/London 2011-07-31
-2654858 Braunton Braunton Braunton 51.10847 -4.16131 P PPL GB ENG D4 18UE 8608 14 Europe/London 2011-03-03
-2654866 Bratton Bratton 51.27056 -2.12444 P PPLA3 GB ENG P8 00HY027 0 102 Europe/London 2011-07-31
-2654877 Brantingham Brantingham 53.75181 -0.57704 P PPLA3 GB ENG E1 00FB021 0 33 Europe/London 2011-07-31
-2654883 Bransgore Bransgore Bransgore 50.78153 -1.73771 P PPL GB ENG F2 24UJ 3605 24 Europe/London 2011-03-03
-2654897 Brandon Brandon 52.38199 -1.39956 P PPL GB ENG P3 44UD 8440 76 Europe/London 2010-05-24
-2654922 Bramley Bramley 53.41667 -1.26667 P PPLA3 GB ENG L3 00CF002 0 132 Europe/London 2011-07-31
-2654924 Bramley Bramley 51.19451 -0.55927 P PPL GB ENG N7 43UL 4107 46 Europe/London 2010-05-24
-2654925 Bramhope Bramhope Bramhope 53.88489 -1.61641 P PPL GB ENG H3 00DA008 3361 163 Europe/London 2011-03-03
-2654926 Bramham Bramham 53.88118 -1.35452 P PPL GB ENG H3 00DA007 1606 35 Europe/London 2011-03-03
-2654927 Bramhall Bramhall 53.35801 -2.16539 P PPL GB ENG N2 00EQ107 25506 83 Europe/London 2012-03-29
-2654928 Bramford Bramford Bramford 52.07631 1.09687 P PPL GB ENG N5 42UE 1899 14 Europe/London 2010-08-03
-2654938 Braintree Braintree Braintree 51.87819 0.55292 P PPL GB ENG E4 22UC 46765 68 Europe/London 2010-08-03
-2654974 Bradwell Bradwell 52.04857 -0.78771 P PPLA3 GB ENG I6 00MG003 0 80 Europe/London 2011-07-31
-2654979 Bradninch Bradninch Bradninch 50.83333 -3.41667 P PPL GB ENG D4 18UD 1673 116 Europe/London 2012-01-17
-2654984 Bradley Bradley 53.55 -0.13333 P PPLA3 GB ENG J2 00FC005 0 18 Europe/London 2011-07-31
-2654990 Brading Brading Brading 50.67971 -1.14258 P PPL GB ENG G2 00MW003 1834 11 Europe/London 2011-02-17
-2654991 Bradford-on-Avon Bradford-on-Avon Bradford-on-Avon 51.34772 -2.25065 P PPL GB ENG P8 00HY026 9274 33 Europe/London 2011-03-03
-2654993 Bradford Bradford Bradford,Brehdford,Брэдфорд 53.79391 -1.75206 P PPLA2 GB ENG B4 299310 110 Europe/London 2012-01-09
-2654996 Bradfield Bradfield 53.41667 -1.6 P PPLA3 GB ENG L9 00CG001 0 223 Europe/London 2011-07-31
-2655009 Bracknell Bracknell Bracknell 51.41363 -0.75054 P PPLA2 GB ENG B3 00MA002 76103 81 Europe/London 2011-03-03
-2655012 Brackley Brackley Brackley 52.03333 -1.15 P PPL GB ENG J1 34UG 13628 145 Europe/London 2012-01-17
-2655026 Bozeat Bozeat Bozeat 52.2227 -0.67326 P PPL GB ENG J1 34UH 1748 84 Europe/London 2010-08-03
-2655028 Boyton Boyton 50.7 -4.38333 P PPLA3 GB ENG C6 00HE008 0 133 Europe/London 2011-07-31
-2655029 Boynton Boynton 54.09746 -0.26479 P PPLA3 GB ENG E1 00FB019 0 31 Europe/London 2011-07-31
-2655043 Boxgrove Boxgrove Boxgrove 50.85884 -0.7136 P PPL GB ENG P6 45UD 3134 26 Europe/London 2010-08-03
-2655046 Box Box Box 51.41472 -2.24556 P PPLA3 GB ENG P8 00HY024 0 90 Europe/London 2011-07-31
-2655047 Bow Street Bow Street 52.44213 -4.02783 P PPL GB WLS X6 00NQ042 1556 29 Europe/London 2011-03-03
-2655062 Bowes Bowes 54.5164 -2.01599 P PPLA3 GB ENG D8 00EJ011 0 292 Europe/London 2011-07-31
-2655067 Bower Chalke Bower Chalke 51 -1.96667 P PPLA3 GB ENG P8 00HY023 0 208 Europe/London 2011-07-31
-2655069 Bowdon Bowdon 53.37644 -2.36532 P PPL GB ENG C5 6214 58 Europe/London 2008-06-02
-2655073 Bow Brickhill Bow Brickhill Bow Brickhill 52.0028 -0.68064 P PPLA3 GB ENG I6 00MG002 0 102 Europe/London 2011-07-31
-2655078 Bovington Camp Bovington Camp 50.69782 -2.23506 P PPL GB ENG D6 19UG 1926 41 Europe/London 2011-03-03
-2655079 Bovingdon Bovingdon Bovingdon 51.72312 -0.5367 P PPL GB ENG F8 26UC 4698 160 Europe/London 2010-08-03
-2655081 Bovey Tracey Bovey Tracey 50.59259 -3.67543 P PPL GB ENG D4 18UH 4615 32 Europe/London 2011-03-03
-2655087 Bourton on the Water Bourton on the Water Bourton on the Water 51.86667 -1.75 P PPL GB ENG E6 23UC 3162 131 Europe/London 2012-02-28
-2655095 Bournemouth Bournemouth Bornmut,Bournemouth,bonmasu,Борнмут,ボーンマス 50.72048 -1.8795 P PPLA2 GB ENG B2 19UC 163600 19 Europe/London 2011-03-03
-2655099 Bourne Bourne Bourn,Bourne 52.76667 -0.38333 P PPL GB ENG H7 32UG 12060 16 Europe/London 2012-01-17
-2655117 Boughton Boughton Boughton 53.2 -0.98333 P PPL GB ENG J9 37UG 10120 39 Europe/London 2012-01-17
-2655123 Bottisham Bottisham Bottisham 52.2228 0.25878 P PPL GB ENG C3 2027 17 Europe/London 2010-08-03
-2655124 Bottesford Bottesford 53.55 -0.65 P PPLA3 GB ENG J3 00FD009 0 25 Europe/London 2011-07-31
-2655128 Botley Botley Botley 50.91433 -1.26984 P PPL GB ENG F2 24UP 2562 9 Europe/London 2011-02-21
-2655130 Bothwell Bothwell Bothwell 55.80272 -4.06835 P PPL GB SCT W5 6266 59 Europe/London 2011-03-03
-2655134 Botesdale Botesdale Botesdale 52.34216 1.00405 P PPL GB ENG N5 42UE 1742 34 Europe/London 2010-08-03
-2655136 Boston Spa Boston Spa 53.90419 -1.34523 P PPL GB ENG H3 00DA006 6085 29 Europe/London 2011-03-03
-2655138 Boston Boston Boston,Бостон 52.97633 -0.02664 P PPL GB ENG H7 32UB 35859 9 Europe/London 2011-03-03
-2655143 Bosham Bosham Bosham 50.83088 -0.85384 P PPL GB ENG P6 45UD 2662 5 Europe/London 2010-08-03
-2655168 Borrowash Borrowash 52.90673 -1.38411 P PPL GB ENG D3 17UG 5746 52 Europe/London 2010-05-24
-2655172 Borough Green Borough Green 51.29158 0.30478 P PPL GB ENG G5 29UP 4342 92 Europe/London 2011-02-05
-2655173 Boroughbridge Boroughbridge 54.0895 -1.4011 P PPL GB ENG J7 36UD 3385 23 Europe/London 2010-05-24
-2655186 Borehamwood Borehamwood Borehamwood 51.65468 -0.27762 P PPL GB ENG F8 26UE 32176 92 Europe/London 2011-03-03
-2655188 Boreham Boreham 51.19944 -2.16556 P PPL GB ENG P8 3259 120 Europe/London 2006-01-17
-2655198 Bootle Bootle Bootle,Butl,Бутл 53.46667 -3.01667 P PPL GB ENG 00 57791 15 Europe/London 2010-08-03
-2655210 Bonnyrigg Bonnyrigg 55.87329 -3.1051 P PPL GB SCT 00 14694 103 Europe/London 2011-01-06
-2655211 Bonnybridge Bonnybridge Bonnybridge 56.00152 -3.8886 P PPL GB SCT U9 7123 29 Europe/London 2011-03-03
-2655214 Bonhill Bonhill Bonhill 55.97944 -4.5638 P PPL GB SCT W7 9418 59 Europe/London 2011-03-03
-2655230 Bolton upon Dearne Bolton upon Dearne 53.51667 -1.31667 P PPL GB ENG 00 13236 31 Europe/London 2006-01-17
-2655232 Bolton le Sands Bolton le Sands Bolton le Sands 54.08333 -2.78333 P PPL GB ENG H2 30UH 7166 74 Europe/London 2012-02-01
-2655237 Bolton Bolton Bolton,Болтон 53.58333 -2.43333 P PPLA2 GB ENG B1 141331 105 Europe/London 2010-10-16
-2655242 Bolsover Bolsover 53.22846 -1.29204 P PPL GB ENG D3 17UC 11825 175 Europe/London 2011-03-03
-2655245 Bollington Bollington 53.29446 -2.10963 P PPLA3 GB ENG Z7 00EQ022 7033 143 Europe/London 2011-07-31
-2655250 Boldon Boldon 54.9426 -1.45349 P PPL GB ENG M7 00EJ010 13567 53 Europe/London 2011-03-03
-2655262 Bognor Regis Bognor Regis Bognor,Bognor Regis 50.78206 -0.67978 P PPL GB ENG P6 45UC 65391 5 Europe/London 2010-08-03
-2655273 Bodmin Bodmin 50.47151 -4.7243 P PPL GB ENG C6 00HE006 13063 98 Europe/London 2011-03-03
-2655282 Bodenham Bodenham Bodenham 52.15 -2.68333 P PPLA3 GB ENG F7 00GA019 0 60 Europe/London 2011-07-31
-2655283 Bodelwyddan Bodelwyddan Bodelwyddan 53.2686 -3.50481 P PPLA3 GB WLS X9 00NG003 1822 17 Europe/London 2011-07-31
-2655288 Boddam Boddam Boddam 57.46667 -1.78333 P PPL GB SCT T6 1327 26 Europe/London 2012-01-17
-2655315 Blyth Blyth Blit,Blyth,Blythe,Блит 55.12708 -1.50856 P PPLA3 GB ENG J6 00EM165 36355 5 Europe/London 2011-07-31
-2655322 Blunham Blunham 52.14695 -0.32178 P PPLA3 GB ENG Z6 00KC009 0 36 Europe/London 2011-07-31
-2655329 Bloxwich Bloxwich Bloxwich 52.61806 -2.00431 P PPL GB ENG O8 41UF 40000 166 Europe/London 2012-03-29
-2655331 Bloxham Bloxham 52.01812 -1.37527 P PPL GB ENG K2 38UB 3202 123 Europe/London 2010-05-24
-2655341 Blisworth Blisworth 52.17498 -0.94131 P PPL GB ENG J1 34UG 1599 97 Europe/London 2010-05-24
-2655346 Blidworth Blidworth 53.09849 -1.11689 P PPL GB ENG J9 37UG 4452 111 Europe/London 2011-03-03
-2655348 Blewbury Blewbury Blewbury 51.5688 -1.23261 P PPL GB ENG K2 38UE 1562 67 Europe/London 2010-08-03
-2655351 Bletchley Bletchley 51.99334 -0.73471 P PPL GB ENG B9 50193 82 Europe/London 2011-02-16
-2655352 Bletchingley Bletchingley 51.24059 -0.10038 P PPL GB ENG N7 43UK 2338 143 Europe/London 2011-03-03
-2655365 Blean Blean 51.30679 1.04301 P PPL GB ENG G5 29UM 1536 79 Europe/London 2011-02-12
-2655367 Bleadon Bleadon 51.30861 -2.9475 P PPLA3 GB ENG J4 00HC006 0 19 Europe/London 2011-07-31
-2655369 Blaydon Blaydon 54.96461 -1.71392 P PPL GB ENG E5 00CJ005 14974 10 Europe/London 2011-03-03
-2655378 Blandford Forum Blandford Forum Blandford,Blandford Forum 50.86073 -2.16174 P PPL GB ENG D6 19UE 10073 52 Europe/London 2011-03-03
-2655394 Blairgowrie Blairgowrie 56.59157 -3.34045 P PPL GB SCT W1 8081 80 Europe/London 2011-03-03
-2655407 Blagdon Blagdon 51.32688 -2.71731 P PPLA3 GB ENG J4 00HC005 0 121 Europe/London 2011-07-31
-2655413 Blaenavon Blaenavon 51.77402 -3.08537 P PPL GB WLS Z2 00PM002 5688 334 Europe/London 2011-03-03
-2655414 Blaenau-Ffestiniog Blaenau-Ffestiniog Blaenau Festiniog,Blaenau-Ffestiniog 52.99464 -3.93697 P PPL GB WLS Y2 4005 231 Europe/London 2010-08-03
-2655418 Blackwood Blackwood 55.66667 -3.91667 P PPL GB SCT 00 1901 175 Europe/London 2006-01-17
-2655420 Blackwell Blackwell 53.11667 -1.33333 P PPL GB ENG D3 17UC 3037 119 Europe/London 2010-05-24
-2655454 Blackrod Blackrod 53.59229 -2.58026 P PPL GB ENG B1 00BL001 5086 155 Europe/London 2011-03-03
-2655459 Blackpool Blackpool Blackpool,Blehkpul,Blekpulis,burakkupuru,hei tan,Блэкпул,ব্ল্যাক্পুল,ブラックプール,黑潭 53.81667 -3.05 P PPLA2 GB ENG A9 143101 21 Europe/London 2010-10-16
-2655522 Blackburn Blackburn Blackburn 57.2 -2.3 P PPL GB SCT T6 1136 76 Europe/London 2012-01-17
-2655523 Blackburn Blackburn 55.86667 -3.63333 P PPL GB SCT 00 4631 160 Europe/London 2006-01-17
-2655524 Blackburn Blackburn Blackburn,Blehkbern,bu lai ke ben,Блэкберн,布莱克本,布萊克本 53.75 -2.48333 P PPLA2 GB ENG A8 106154 121 Europe/London 2010-10-16
-2655532 Blaby Blaby Blaby 52.57577 -1.16403 P PPL GB ENG H5 31UB 6300 72 Europe/London 2011-03-03
-2655536 Bitton Bitton 51.42479 -2.45965 P PPLA3 GB ENG M6 00HD006 0 19 Europe/London 2011-07-31
-2655546 Bishton Bishton Bishton 51.58194 -2.87833 P PPLA3 GB WLS Y6 00PR005 0 5 Europe/London 2011-07-31
-2655548 Bishopton Bishopton 55.90969 -4.5056 P PPL GB SCT 00 5029 31 Europe/London 2012-01-30
-2655549 Bishopton Bishopton 54.58333 -1.43333 P PPLA3 GB ENG D1 00EH003 0 45 Europe/London 2011-07-31
-2655550 Bishopthorpe Bishopthorpe Bishopthorne,Bishopthorpe 53.9191 -1.09915 P PPLA3 GB ENG Q5 00FF004 3296 11 Europe/London 2011-07-31
-2655551 Bishops Waltham Bishops Waltham 50.95 -1.21667 P PPL GB ENG F2 24UP 6221 42 Europe/London 2010-05-24
-2655552 Bishopstrow Bishopstrow Bishopstrow 51.19306 -2.15528 P PPLA3 GB ENG P8 00HY022 0 114 Europe/London 2011-07-31
-2655553 Bishopstone Bishopstone 51.5513 -1.64701 P PPLA3 GB ENG N9 00HX001 0 129 Europe/London 2011-07-31
-2655554 Bishopstone Bishopstone 51.01667 -1.9 P PPLA3 GB ENG P8 00HY021 0 114 Europe/London 2011-07-31
-2655556 Bishopston Bishopston Bishopston 51.5775 -4.04806 P PPLA3 GB WLS Z1 00NX002 3647 73 Europe/London 2011-07-31
-2655557 Bishopstoke Bishopstoke 50.96643 -1.32832 P PPL GB ENG F2 24UD 17667 11 Europe/London 2011-02-22
-2655558 Bishopsteignton Bishopsteignton Bishopsteignton 50.55193 -3.53852 P PPL GB ENG D4 18UH 2094 52 Europe/London 2011-03-03
-2655562 Bishops Stortford Bishops Stortford Bishop's Stortford,Bishops Stortford,Bishops Strotford 51.87113 0.15868 P PPL GB ENG F8 26UD 45001 70 Europe/London 2010-08-03
-2655564 Bishops Lydeard Bishops Lydeard Bishops Lydeard 51.05917 -3.18778 P PPL GB ENG M3 40UE 2019 56 Europe/London 2012-01-17
-2655578 Bishop Middleham Bishop Middleham Bishop Middleham 54.67778 -1.48826 P PPLA3 GB ENG D8 00EJ007 0 98 Europe/London 2011-07-31
-2655582 Bishopbriggs Bishopbriggs 55.90669 -4.21869 P PPL GB SCT U5 22668 60 Europe/London 2011-03-03
-2655583 Bishop Auckland Bishop Auckland Bishop Auckland,Bishop-Oklend,Бишоп-Окленд 54.65554 -1.67706 P PPL GB ENG D8 00EJ006 25665 110 Europe/London 2011-03-03
-2655585 Bisham Bisham 51.55704 -0.77557 P PPLA3 GB ENG P9 00ME001 0 29 Europe/London 2011-07-31
-2655588 Birtley Birtley 55.08333 -2.18333 P PPLA3 GB ENG J6 00EM023 0 168 Europe/London 2011-07-31
-2655603 Birmingham Birmingham BHX,Birmin'gxam,Birmingam,Birmingamas,Birmingem,Birmingema,Birmingham,Birminghamia,Mpermincham,bamingamu,barming'hyam,barmingahama,barmingahema,barminghama,beoming-eom,birmingemi,bo ming han,bo ming han shi,brmngm,brmynghham,byrmngam,parminkam,Μπέρμιγχαμ,Бирмингам,Бирмингем,Бірмінгем,בירמינגהאם,ברמינגהאם,برمنگم,برمينغهام,بیرمنگام,बर्मिंगहॅम,बर्मिंघम,બર્મિંગહામ,பர்மிங்காம்,బర్మింగ్హామ్,ಬರ್ಮಿಂಗ್ಹ್ಯಾಮ್,เบอร์มิงแฮม,ბირმინგემი,バーミンガム,伯明翰,伯明翰市,버밍엄 52.48142 -1.89983 P PPLA2 GB ENG A7 47UB 984333 149 Europe/London 2011-06-16
-2655613 Birkenhead Birkenhead Birkenhead,Birkenkhed,Penbedw,Биркенхед 53.39337 -3.01479 P PPL GB ENG Q1 00EW114 81805 22 Europe/London 2011-03-03
-2655618 Birdwell Birdwell 53.51398 -1.47929 P PPL GB ENG 00 3056 126 Europe/London 2007-04-07
-2655622 Birdham Birdham Birdham 50.79606 -0.83067 P PPL GB ENG P6 45UD 1896 5 Europe/London 2010-08-03
-2655624 Bircotes Bircotes Bircotes 53.41933 -1.04905 P PPL GB ENG J9 37UC 7607 37 Europe/London 2011-03-03
-2655642 Bingley Bingley 53.84861 -1.83857 P PPL GB ENG B4 00CX017 20327 91 Europe/London 2011-03-03
-2655643 Bingham Bingham 52.94978 -0.95907 P PPL GB ENG J9 37UJ 8878 33 Europe/London 2010-05-24
-2655644 Binfield Binfield 51.43159 -0.7881 P PPLA3 GB ENG B3 00MA001 0 74 Europe/London 2011-07-31
-2655654 Bilston Bilston Bilston 52.56667 -2.06667 P PPL GB ENG 00 5000 136 Europe/London 2012-03-29
-2655655 Bilsthorpe Bilsthorpe Bilsthorpe 53.14024 -1.03392 P PPL GB ENG J9 37UG 3260 77 Europe/London 2011-03-03
-2655662 Billingshurst Billingshurst 51.01921 -0.45413 P PPL GB ENG P6 45UF 5587 30 Europe/London 2011-02-14
-2655663 Billinghay Billinghay Billinghay 53.07959 -0.27689 P PPL GB ENG H7 32UE 1702 9 Europe/London 2011-02-13
-2655664 Billingham Billingham Billingem,Billingham,Billingham-on-Tees,Биллингем 54.60828 -1.29214 P PPL GB ENG N3 00EF019 35708 18 Europe/London 2011-03-03
-2655666 Billinge Billinge 53.49795 -2.7081 P PPL GB ENG N1 00BZ001 6700 111 Europe/London 2011-03-03
-2655672 Billericay Billericay Billericay,Billerikej,Биллерикей 51.62867 0.41963 P PPL GB ENG E4 22UB 34467 87 Europe/London 2010-08-03
-2655689 Biggleswade Biggleswade 52.08652 -0.26493 P PPL GB ENG Z6 00KC008 15726 32 Europe/London 2011-03-03
-2655690 Biggin Hill Biggin Hill 51.41629 -0.10947 P PPL GB ENG N7 43UK 13535 72 Europe/London 2010-05-24
-2655692 Biggar Biggar 55.61667 -3.51667 P PPL GB SCT 00 2120 200 Europe/London 2006-01-17
-2655707 Bideford Bideford Bideford 51.01787 -4.20458 P PPL GB ENG D4 18UK 16624 7 Europe/London 2011-03-03
-2655708 Biddulph Biddulph 53.11724 -2.17584 P PPL GB ENG M9 41UH 17625 173 Europe/London 2011-03-03
-2655710 Biddestone Biddestone Biddestone,Biddlestone 51.46083 -2.19833 P PPLA3 GB GB ENG P8 00HY019 0 120 Europe/London 2011-07-31
-2655712 Biddenham Biddenham 52.13847 -0.50687 P PPLA3 GB ENG Z5 00KB001 0 40 Europe/London 2011-07-31
-2655715 Bicton Bicton 52.73333 -2.81667 P PPLA3 GB ENG L6 00GG025 0 73 Europe/London 2011-07-31
-2655718 Bicknacre Bicknacre Bickacre,Bicknacre 51.69403 0.58519 P PPL GB ENG E4 22UF 2378 51 Europe/London 2010-08-03
-2655720 Bickley Bickley 53.03333 -2.7 P PPLA3 GB ENG Z8 00EW017 0 87 Europe/London 2011-07-31
-2655728 Bickenhill Bickenhill Bickenhill 52.43974 -1.72545 P PPLA3 GB ENG M2 00CT004 0 114 Europe/London 2011-07-31
-2655729 Bicester Bicester 51.89998 -1.15357 P PPL GB ENG K2 38UB 35902 75 Europe/London 2011-03-03
-2655774 Bexleyheath Bexleyheath 51.46291 0.13943 P PPLA3 GB ENG GLA A6 0 52 Europe/London 2011-02-12
-2655777 Bexhill Bexhill Bexhill on Sea,Bexhill-on-Sea 50.85023 0.47095 P PPL GB ENG E2 21UG 40478 15 Europe/London 2011-02-03
-2655781 Bewdley Bewdley Bewdley 52.37539 -2.31717 P PPL GB ENG Q4 47UG 9168 38 Europe/London 2010-08-03
-2655785 Beverley Beverley Beverley 53.84587 -0.42332 P PPLA2 GB ENG E1 31968 10 Europe/London 2010-10-16
-2655793 Betws-y-Coed Betws-y-Coed Bettws-y-coed 53.09382 -3.80668 P PPLA3 GB WLS X8 00NE002 1200 30 Europe/London 2011-07-31
-2655800 Betws Betws Bettws,Betws 51.56917 -3.58833 P PPL GB WLS X3 2057 136 Europe/London 2012-01-17
-2655804 Bethesda Bethesda Bethesda 53.16667 -4.08333 P PPLA3 GB WLS Y2 00NC009 4565 267 Europe/London 2011-07-31
-2655819 Berwick-Upon-Tweed Berwick-Upon-Tweed Bervik-apon-Tvid,Berwick,Berwick on Tweed,Berwick-Upon-Tweed,Berwick-upon-Tweed,Бервик-апон-Твид 55.78333 -2 P PPL GB ENG J6 26000 -9999 Europe/London 2012-03-29
-2655839 Berrington Berrington 52.65 -2.7 P PPLA3 GB ENG L6 00GG023 0 65 Europe/London 2011-07-31
-2655854 Berkswell Berkswell Berkeswell,Berkswell 52.40902 -1.6422 P PPLA3 GB ENG M2 00CT003 0 108 Europe/London 2011-07-31
-2655858 Berkhamsted Berkhamsted Berkhampstead 51.7604 -0.56528 P PPL GB ENG F8 26UC 26UC002 16243 113 Europe/London 2012-03-29
-2655861 Berkeley Berkeley Berkeley 51.69111 -2.45917 P PPL GB ENG E6 23UF 1907 21 Europe/London 2012-01-17
-2655864 Bere Alston Bere Alston Bere Alston 50.48233 -4.19034 P PPL GB ENG D4 18UL 2267 139 Europe/London 2011-03-03
-2655882 Bentley Bentley 53.53333 -1.15 P PPL GB ENG 00 34821 11 Europe/London 2006-01-17
-2655886 Benson Benson 51.62073 -1.10979 P PPL GB ENG K2 38UD 5691 52 Europe/London 2010-05-24
-2655923 Bempton Bempton 54.13036 -0.17853 P PPLA3 GB ENG E1 00FB012 0 66 Europe/London 2011-07-31
-2655925 Bembridge Bembridge 50.68634 -1.08275 P PPLA3 GB ENG G2 00MW002 3570 18 Europe/London 2011-07-31
-2655932 Belton Belton 53.55 -0.81667 P PPLA3 GB ENG J3 00FD007 0 9 Europe/London 2011-07-31
-2655942 Belper Belper Belper,Белпер 53.0233 -1.48119 P PPL GB ENG D3 17UB 22427 81 Europe/London 2011-03-03
-2655952 Bellshill Bellshill Bellshill 55.81667 -4.01667 P PPL GB SCT 00 20201 76 Europe/London 2010-08-03
-2655974 Bellaghy Bellaghy 54.8087 -6.51918 P PPL GB NIR 00 1072 26 Europe/London 2007-04-13
-2655981 Belford Belford Belford 55.6 -1.83333 P PPLA3 GB ENG J6 00EM017 0 56 Europe/London 2011-07-31
-2655984 Belfast Belfast BFS,Beal Feirste,Behlfast,Belfast,Belfast City,Belfasta,Belfasto,Belffast,Belfāsta,Beul-Feirste,Béal Feirste,Mpelphast,baelpaseuteu,bei er fa si te,belpaseuteu,berufasuto,blfast,Μπέλφαστ,Белфаст,Бэлфаст,בלפאסט,بلفاست,ベルファスト,貝爾法斯特,贝尔法斯特,밸파스트,벨파스트 54.58333 -5.93333 P PPLA GB NIR R3 274770 17 Europe/London 2012-01-17
-2655994 Beith Beith 55.74923 -4.6368 P PPL GB SCT V7 6288 93 Europe/London 2011-03-03
-2656000 Beighton Beighton 53.33333 -1.33333 P PPL GB ENG 00 10914 52 Europe/London 2006-01-17
-2656013 Beeston Beeston 53.11667 -2.68333 P PPLA3 GB ENG Z8 00EW016 0 82 Europe/London 2011-07-31
-2656031 Bedworth Bedworth Bedvors,Bedworth,Бедворс 52.4791 -1.46909 P PPL GB ENG P3 44UC 29981 112 Europe/London 2011-03-03
-2656033 Bedwas Bedwas Bedwas 51.59183 -3.19886 P PPL GB WLS X4 00PK005 8242 67 Europe/London 2011-03-03
-2656039 Bedlington Bedlington 55.13061 -1.59319 P PPL GB ENG J6 16831 49 Europe/London 2008-09-14
-2656046 Bedford Bedford Bedford,Бедфорд 52.13459 -0.46632 P PPLA2 GB ENG Z5 86658 30 Europe/London 2010-10-22
-2656051 Bedale Bedale Bedale 54.28811 -1.59181 P PPL GB ENG J7 36UC 4537 43 Europe/London 2011-03-03
-2656067 Beccles Beccles 52.4535 1.56401 P PPL GB ENG N5 42UH 13205 15 Europe/London 2010-05-24
-2656070 Bebington Bebington Bebington,Bebington and Bromborough 53.35 -3.01667 P PPL GB ENG 00 56803 43 Europe/London 2010-08-03
-2656073 Beaumaris Beaumaris 53.26315 -4.09233 P PPL GB WLS X1 00NA003 1530 10 Europe/London 2011-03-03
-2656076 Beauly Beauly 57.48396 -4.45873 P PPL GB SCT V3 1169 7 Europe/London 2007-04-13
-2656086 Bearsden Bearsden Bearsden,New Kilpatrick 55.91536 -4.33279 P PPL GB SCT U5 27839 49 Europe/London 2011-03-03
-2656100 Beaminster Beaminster 50.809 -2.7391 P PPL GB ENG D6 19UH 2853 58 Europe/London 2011-03-03
-2656119 Beadnell Beadnell 55.5567 -1.6325 P PPLA3 GB ENG J6 00EM016 0 8 Europe/London 2011-07-31
-2656120 Beaconsfield Beaconsfield Beaconsfield 51.61219 -0.64732 P PPL GB ENG B9 11UE 12566 106 Europe/London 2011-03-03
-2656129 Bayston Hill Bayston Hill 52.67638 -2.77216 P PPLA3 GB ENG L6 00GG020 0 101 Europe/London 2011-07-31
-2656144 Bawtry Bawtry Bawtry 53.43146 -1.01878 P PPL GB ENG D5 00CE008 3859 12 Europe/London 2011-03-03
-2656158 Battlesden Battlesden 51.94814 -0.59564 P PPLA3 GB ENG Z6 00KC007 0 124 Europe/London 2011-07-31
-2656161 Battle Battle Battl,Battle,Баттл 50.91732 0.48417 P PPL GB ENG E2 21UG 6171 83 Europe/London 2010-10-16
-2656168 Batley Batley Batley 53.70291 -1.6337 P PPL GB ENG 00 50807 58 Europe/London 2010-08-03
-2656169 Bathgate Bathgate Bathgate 55.90204 -3.64398 P PPL GB SCT W9 15337 141 Europe/London 2011-03-03
-2656173 Bath Bath Aquae Sulis,Ba,Badanceaster,Bat,Bath,Baðanceaster,Caerfaddon,ba si,basu,bath,Бат,באת',باث,バース,巴斯 51.37795 -2.35907 P PPLA2 GB ENG A4 00HA001 93238 24 Europe/London 2011-03-03
-2656184 Bassingbourn Bassingbourn 52.07821 -0.0539 P PPL GB ENG C3 12UG 2517 30 Europe/London 2010-05-24
-2656192 Basingstoke Basingstoke Basingstoke 51.26249 -1.08708 P PPL GB ENG F2 24UB 96348 96 Europe/London 2011-03-03
-2656193 Basing Basing 51.26667 -1.03333 P PPL GB ENG F2 24UB 3876 79 Europe/London 2010-05-24
-2656194 Basildon Basildon Basildon,Басилдон 51.56844 0.45782 P PPL GB ENG E4 22UB 101362 31 Europe/London 2011-03-03
-2656195 Basildon Basildon 51.5 -1.11667 P PPLA3 GB ENG P4 00MB004 0 55 Europe/London 2011-07-31
-2656206 Barton upon Humber Barton upon Humber Barton,Barton upon Humber 53.68004 -0.43765 P PPL GB ENG 00 9542 17 Europe/London 2010-08-03
-2656207 Barton under Needwood Barton under Needwood Barton,Barton under Needwood 52.76268 -1.724 P PPL GB ENG M9 41UC 3888 60 Europe/London 2010-08-03
-2656212 Barton-le-Clay Barton-le-Clay Barton 51.96598 -0.42731 P PPLA3 GB ENG Z6 00KC006 4900 70 Europe/London 2011-07-31
-2656227 Barston Barston Barston 52.39991 -1.6955 P PPLA3 GB ENG M2 00CT002 0 118 Europe/London 2011-07-31
-2656235 Barry Barry Barri,Barry,Y Barri,Барри 51.40667 -3.26944 P PPLA2 GB WLS Z3 51681 36 Europe/London 2011-10-14
-2656239 Barrow upon Soar Barrow upon Soar Barrow,Barrow upon Soar 52.75178 -1.14601 P PPL GB ENG H5 31UC 5196 61 Europe/London 2010-08-03
-2656240 Barrow upon Humber Barrow upon Humber Barrow,Barrow upon Humber,Barrow-on-Humber 53.6755 -0.38062 P PPL GB ENG J3 00FD005 2611 11 Europe/London 2011-03-03
-2656241 Barrow in Furness Barrow in Furness Barrow,Barrow in Furness,Barrow-in-Furness 54.11667 -3.23333 P PPL GB ENG C9 16UC 47264 17 Europe/London 2012-01-17
-2656243 Barrowford Barrowford Barrowford 53.8465 -2.21838 P PPL GB ENG H2 30UJ 5378 117 Europe/London 2011-03-03
-2656246 Barrowby Barrowby Barrowby 52.91636 -0.69094 P PPL GB ENG H7 32UG 2040 107 Europe/London 2010-08-03
-2656258 Barrhead Barrhead 55.79916 -4.39285 P PPL GB SCT U7 17285 58 Europe/London 2011-03-03
-2656277 Barnt Green Barnt Green Barnt Green 52.35902 -2.00715 P PPL GB ENG Q4 47UB 5366 196 Europe/London 2011-03-03
-2656281 Barnstaple Barnstaple Barnstaple 51.08022 -4.05808 P PPL GB ENG D4 18UE 32532 12 Europe/London 2011-03-03
-2656284 Barnsley Barnsley Barnsley,Barnsli,Барнсли 53.55 -1.48333 P PPLA2 GB ENG A3 71447 112 Europe/London 2010-10-16
-2656287 Barnoldswick Barnoldswick Barnoldswick 53.91711 -2.18705 P PPL GB ENG H2 30UJ 11101 161 Europe/London 2011-03-03
-2656289 Barningham Barningham 54.48809 -1.87008 P PPLA3 GB ENG D8 00EJ003 0 217 Europe/London 2011-07-31
-2656293 Barnham Barnham 50.8312 -0.63789 P PPL GB ENG P6 45UC 11881 4 Europe/London 2010-05-24
-2656294 Barnetby le Wold Barnetby le Wold Barnetby,Barnetby le Wold 53.5748 -0.40607 P PPL GB ENG J3 00FD004 1628 20 Europe/London 2011-03-03
-2656305 Barnard Castle Barnard Castle 54.5415 -1.919 P PPLA3 GB ENG D8 00EJ002 6864 164 Europe/London 2011-07-31
-2656307 Barnack Barnack Barnack 52.63181 -0.40821 P PPLA3 GB ENG K3 00JA003 0 34 Europe/London 2011-07-31
-2656308 Barmston Barmston 54.01412 -0.22857 P PPLA3 GB ENG E1 00FB009 0 10 Europe/London 2011-07-31
-2656311 Barmouth Barmouth Abermaw,Barmouth 52.72377 -4.05748 P PPL GB WLS Y2 00NC007 2276 17 Europe/London 2011-10-14
-2656315 Barmby on the Marsh Barmby on the Marsh Barmby,Barmby on the Marsh 53.74896 -0.95607 P PPLA3 GB ENG E1 00FB008 0 8 Europe/London 2011-07-31
-2656322 Barlestone Barlestone Barlestone 52.64718 -1.37013 P PPL GB ENG H5 31UE 2666 132 Europe/London 2011-03-03
-2656324 Barlborough Barlborough Barlborough 53.28795 -1.28815 P PPL GB ENG D3 17UC 2778 141 Europe/London 2010-08-03
-2656325 Barlaston Barlaston 52.942 -2.1705 P PPL GB ENG M9 41UG 1845 106 Europe/London 2011-03-03
-2656334 Barkham Barkham Barkham 51.39805 -0.8759 P PPLA3 GB ENG Q2 00MF002 0 71 Europe/London 2011-07-31
-2656340 Bargoed Bargoed Bargoed 51.68333 -3.23333 P PPLA3 GB WLS X4 00PK004 13412 231 Europe/London 2011-07-31
-2656354 Bardsey Bardsey 53.88492 -1.44539 P PPL GB ENG 45 3097 73 Europe/London 2010-03-19
-2656357 Bardon Mill Bardon Mill Bardon Mill 54.97547 -2.34309 P PPLA3 GB ENG J6 00EM014 0 100 Europe/London 2011-07-31
-2656378 Banwell Banwell 51.32894 -2.86914 P PPL GB ENG J4 00HC003 2043 13 Europe/London 2011-03-03
-2656379 Banstead Banstead 51.32503 -0.19569 P PPL GB ENG N7 43UF 46280 160 Europe/London 2012-03-29
-2656382 Bannockburn Bannockburn Bannockburn 56.08978 -3.91092 P PPL GB SCT W6 8033 41 Europe/London 2011-03-03
-2656388 Banks Banks Banks 53.68333 -2.91667 P PPL GB ENG H2 30UP 3434 4 Europe/London 2012-01-17
-2656391 Bankfoot Bankfoot Bankfoot 56.5 -3.5 P PPL GB SCT W1 1178 94 Europe/London 2012-01-17
-2656396 Bangor Bangor Bangor,Beannchar,Бангор 54.65338 -5.66895 P PPLA2 GB NIR T2 60385 45 Europe/London 2010-10-16
-2656397 Bangor Bangor Bangon,Bangor,Бангор 53.22647 -4.13459 P PPL GB WLS Y2 00NC006 15449 60 Europe/London 2011-03-03
-2656402 Banff Banff 57.66477 -2.52964 P PPL GB SCT T6 3914 51 Europe/London 2011-03-03
-2656405 Banchory Banchory Banchory 57.05168 -2.48824 P PPL GB SCT T6 5978 60 Europe/London 2011-03-03
-2656406 Banbury Banbury Banberi,Banbury,Банбери 52.0602 -1.34029 P PPL GB ENG K2 38UB 46075 107 Europe/London 2010-08-03
-2656407 Banbridge Banbridge 54.35 -6.28333 P PPLA2 GB NIR R2 16173 94 Europe/London 2010-10-16
-2656421 Bampton Bampton 51.72634 -1.54547 P PPL GB ENG K2 38UF 2561 73 Europe/London 2010-05-24
-2656425 Bamburgh Bamburgh Bamburgh 55.60652 -1.71704 P PPLA3 GB ENG J6 00EM013 0 26 Europe/London 2011-07-31
-2656433 Balsham Balsham 52.13238 0.31586 P PPL GB ENG C3 12UG 1678 113 Europe/London 2010-05-24
-2656447 Balmullo Balmullo 56.37694 -2.9294 P PPL GB SCT V1 1085 43 Europe/London 2009-09-11
-2656454 Balmedie Balmedie 57.25052 -2.06163 P PPL GB SCT T6 1814 34 Europe/London 2011-03-03
-2656465 Ballywalter Ballywalter 54.54329 -5.48475 P PPL GB NIR 00 1572 9 Europe/London 2007-04-13
-2656483 Ballynahinch Ballynahinch 54.4 -5.88333 P PPL GB NIR 00 5701 71 Europe/London 2006-01-17
-2656488 Ballymoney Ballymoney 55.0708 -6.51009 P PPLA2 GB NIR R1 9625 43 Europe/London 2010-10-16
-2656490 Ballymena Ballymena Behllimena,Бэллимена 54.86357 -6.27628 P PPLA2 GB NIR Q9 28932 49 Europe/London 2010-10-16
-2656500 Ballykelly Ballykelly 55.05 -7.01667 P PPL GB NIR 00 1735 3 Europe/London 2006-01-17
-2656509 Ballygowan Ballygowan 54.50165 -5.79168 P PPL GB NIR 00 2832 58 Europe/London 2007-04-13
-2656528 Ballyclare Ballyclare Ballyclare 54.76667 -6.01667 P PPL GB NIR 00 9472 117 Europe/London 2010-08-09
-2656531 Ballycastle Ballycastle Baile an Chaistil,Ballycastle 55.20444 -6.24298 P PPLA2 GB NIR S8 5566 11 Europe/London 2010-10-16
-2656545 Balloch Balloch Balloch 56 -4.58333 P PPL GB SCT W7 1743 14 Europe/London 2012-01-17
-2656551 Ballingry Ballingry 56.16392 -3.32841 P PPL GB SCT V1 5758 122 Europe/London 2011-03-03
-2656557 Ballinamallard Ballinamallard Ballanamallard,Ballinamallard 54.4 -7.58333 P PPL GB NIR 00 1365 109 Europe/London 2010-08-09
-2656565 Ballater Ballater Ballater 57.0493 -3.04023 P PPL GB SCT T6 1466 202 Europe/London 2011-03-03
-2656575 Balintore Balintore Balintore 57.75564 -3.91232 P PPL GB SCT V3 1045 7 Europe/London 2011-03-03
-2656584 Balfron Balfron Balfron 56.06809 -4.33559 P PPL GB SCT W6 1605 71 Europe/London 2011-03-03
-2656586 Balerno Balerno 55.88437 -3.33975 P PPL GB SCT 00 6000 165 Europe/London 2007-06-07
-2656594 Baldock Baldock Baldock 51.98781 -0.18835 P PPL GB ENG F8 26UF 10086 68 Europe/London 2011-03-03
-2656615 Bala Bala 52.91111 -3.59722 P PPL GB WLS Y2 00NC005 2002 168 Europe/London 2011-03-03
-2656617 Bakewell Bakewell 53.21338 -1.67481 P PPL GB ENG D3 17UF 3758 126 Europe/London 2010-05-24
-2656619 Bainton Bainton 53.95 -0.53333 P PPLA3 GB ENG E1 00FB006 0 45 Europe/London 2011-07-31
-2656627 Baildon Baildon 53.84711 -1.78785 P PPLA3 GB ENG B4 00CX016 15710 155 Europe/London 2011-07-31
-2656632 Bagshot Bagshot 51.36069 -0.68802 P PPL GB ENG N7 43UJ 5364 57 Europe/London 2010-01-11
-2656636 Bagillt Bagillt Bagillt,Bagilt 53.2654 -3.16551 P PPL GB WLS Y1 00NJ001 2749 22 Europe/London 2011-03-03
-2656641 Badsworth Badsworth 53.62876 -1.30128 P PPLA3 GB ENG 45 00DB002 583 57 Europe/London 2011-07-31
-2656642 Badsey Badsey 52.08819 -1.89925 P PPL GB ENG Q4 47UF 2479 37 Europe/London 2011-03-03
-2656666 Bacup Bacup 53.70336 -2.2007 P PPL GB ENG H2 30UM 13047 257 Europe/London 2010-05-24
-2656669 Bacton Bacton 51.98333 -2.91667 P PPLA3 GB ENG F7 00GA012 0 137 Europe/London 2011-07-31
-2656672 Backworth Backworth 55.04229 -1.52779 P PPL GB ENG J6 1533 59 Europe/London 2010-04-24
-2656708 Ayr Ayr Ajr,Ayr,Ayr - Inbhir Air,Ayr - Inbhir Àir,Ehjr,Айр,Эйр 55.46273 -4.63393 P PPLA2 GB SCT W4 45513 13 Europe/London 2011-03-03
-2656713 Aylsham Aylsham 52.79512 1.25178 P PPL GB ENG I9 33UC 5627 35 Europe/London 2011-03-03
-2656719 Aylesbury Aylesbury AEgeles burg,Aylesbury,Ehjlsberi,ai er si bo li,Ægeles burg,Эйлсбери,艾爾斯伯里 51.81665 -0.81458 P PPLA2 GB ENG B9 11UB 74565 93 Europe/London 2010-10-16
-2656725 Axminster Axminster Axminster 50.78259 -2.99787 P PPL GB ENG D4 18UB 5062 44 Europe/London 2011-03-03
-2656730 Axbridge Axbridge Axbridge 51.28694 -2.81694 P PPL GB ENG M3 40UC 2070 19 Europe/London 2012-02-01
-2656731 Awsworth Awsworth Awsworth 52.98912 -1.28354 P PPL GB ENG J9 37UD 2634 88 Europe/London 2011-03-03
-2656752 Aviemore Aviemore 57.19553 -3.8259 P PPL GB SCT V3 2545 216 Europe/London 2009-10-17
-2656759 Aveley Aveley 51.49987 0.25174 P PPL GB ENG E4 7653 32 Europe/London 2008-06-20
-2656760 Avebury Avebury Avebury,Aveburyn kivikehae,Aveburyn kivikehä,SU 103699 51.41667 -1.86667 P PPLA3 GB ENG P8 00HY011 0 153 Europe/London 2011-07-31
-2656792 Audley Audley Audley 53.05 -2.3 P PPL GB ENG M9 41UE 5638 143 Europe/London 2012-01-17
-2656794 Auckley Auckley 53.50386 -1.02174 P PPL GB ENG D5 00CE004 1880 7 Europe/London 2011-03-03
-2656799 Auchtermuchty Auchtermuchty 56.29158 -3.23428 P PPL GB SCT V1 2023 63 Europe/London 2011-03-03
-2656803 Auchterarder Auchterarder Auchterarder 56.29612 -3.70692 P PPL GB SCT W1 4220 108 Europe/London 2011-03-03
-2656818 Auchinleck Auchinleck Auchinleck 55.47157 -4.29337 P PPL GB SCT U4 3282 157 Europe/London 2011-03-03
-2656833 Atworth Atworth Atworth 51.39234 -2.19297 P PPL GB ENG P8 00HY010 1920 67 Europe/London 2011-03-03
-2656834 Atwick Atwick 53.94012 -0.189 P PPLA3 GB ENG E1 00FB005 0 12 Europe/London 2011-07-31
-2656837 Attleborough Attleborough 52.51293 -1.45487 P PPL GB ENG P3 44UC 9817 87 Europe/London 2011-03-05
-2656847 Atherton Atherton 53.52371 -2.49354 P PPL GB ENG P7 00BL003 20149 60 Europe/London 2011-03-03
-2656848 Atherstone Atherstone Atherstone 52.57536 -1.54693 P PPL GB ENG P3 44UB 11304 89 Europe/London 2010-08-03
-2656855 Astwood Bank Astwood Bank Astwood Bank 52.25993 -1.93754 P PPL GB ENG Q4 47UD 2717 145 Europe/London 2011-03-03
-2656856 Astwood Astwood Astwood 52.1 -0.6 P PPLA3 GB ENG I6 00MG001 0 89 Europe/London 2011-07-31
-2656857 Astwick Astwick 52.0323 -0.23127 P PPLA3 GB ENG Z6 00KC005 0 43 Europe/London 2011-07-31
-2656864 Aston Clinton Aston Clinton 51.8002 -0.7254 P PPL GB ENG B9 11UB 4128 100 Europe/London 2010-08-21
-2656877 Astley Astley 52.76667 -2.7 P PPLA3 GB ENG L6 00GG012 0 71 Europe/London 2011-07-31
-2656889 Aspley Guise Aspley Guise 52.01199 -0.633 P PPLA3 GB ENG Z6 00KC003 0 116 Europe/London 2011-07-31
-2656891 Aspatria Aspatria Aspatria 54.76574 -3.32783 P PPL GB ENG C9 16UB 2429 72 Europe/London 2010-08-03
-2656902 Askham Richard Askham Richard 53.92491 -1.18481 P PPLA3 GB ENG Q5 00FF003 0 30 Europe/London 2011-07-31
-2656907 Askern Askern 53.61639 -1.15237 P PPL GB ENG D5 00CE003 5555 13 Europe/London 2011-03-03
-2656908 Askam in Furness Askam in Furness Askam,Askam in Furness 54.18333 -3.21667 P PPL GB ENG C9 16UC 3499 -9999 Europe/London 2012-01-17
-2656910 Ashwell Ashwell 52.71404 -0.71918 P PPLA3 GB ENG L4 00FP001 0 110 Europe/London 2011-07-31
-2656914 Ashurst Ashurst 50.93236 -0.32375 P PPL GB ENG P6 45UF 3185 19 Europe/London 2010-05-24
-2656915 Ashton-under-Lyne Ashton-under-Lyne Ashton,Ashton-under-Lyne,Ehshton-ander-Lajn,Эштон-андер-Лайн 53.48876 -2.0989 P PPLA2 GB ENG O1 43675 108 Europe/London 2010-10-16
-2656918 Ashton in Makerfield Ashton in Makerfield Ashton,Ashton in Makerfield 53.48333 -2.65 P PPL GB ENG 00 29039 64 Europe/London 2010-08-03
-2656924 Ashtead Ashtead 51.30873 -0.29972 P PPL GB ENG N7 43UE 13494 75 Europe/London 2012-03-29
-2656937 Ashley Ashley 53.35 -2.33333 P PPLA3 GB ENG Z7 00EQ008 0 46 Europe/London 2011-07-31
-2656946 Ashington Ashington Ashington 55.16389 -1.58639 P PPLA3 GB ENG J6 00EM012 0 26 Europe/London 2011-07-31
-2656947 Ashington Ashington 50.93312 -0.39087 P PPL GB ENG P6 45UF 2403 32 Europe/London 2010-05-24
-2656952 Ashfordby Ashfordby 52.75 -0.95 P PPL GB ENG H5 31UG 2403 93 Europe/London 2010-05-24
-2656955 Ashford Ashford Ashford,Ehshford,Эшфорд 51.14586 0.87281 P PPL GB ENG G5 29UB 62787 45 Europe/London 2010-08-03
-2656970 Ashby de la Zouch Ashby de la Zouch 52.74632 -1.4732 P PPL GB ENG H5 17UK 11663 126 Europe/London 2011-02-15
-2656977 Ashburton Ashburton Ashburton 50.51559 -3.75572 P PPL GB ENG D4 18UH 3383 76 Europe/London 2011-03-03
-2656981 Ashbourne Ashbourne Ashbourne 53.01667 -1.73333 P PPL GB ENG D3 17UF 5132 126 Europe/London 2012-01-17
-2656985 Ash Ash 52.95 -2.65 P PPL GB ENG L6 2108 112 Europe/London 2007-06-16
-2656992 Ascot Ascot Ascot 51.41082 -0.6748 P PPL GB ENG P4 17899 86 Europe/London 2011-02-14
-2656997 Arundel Arundel Arundel 50.85423 -0.55393 P PPL GB ENG P6 45UC 3370 7 Europe/London 2011-03-03
-2657029 Arnside Arnside 54.20179 -2.83374 P PPL GB ENG C9 16UG 2352 25 Europe/London 2011-03-03
-2657030 Arnold Arnold Arnol'd,Arnold,Арнольд 53 -1.13333 P PPL GB ENG J9 37UE 37873 66 Europe/London 2012-01-17
-2657051 Armthorpe Armthorpe 53.53518 -1.05341 P PPL GB ENG D5 00CE002 12911 10 Europe/London 2011-03-03
-2657054 Armitage Armitage Armitage 52.74193 -1.88266 P PPL GB ENG M9 41UD 5090 84 Europe/London 2011-03-03
-2657060 Armagh Armagh Ard Mhacha,Armagh,ama,アーマー 54.35 -6.66667 P PPLA2 GB NIR Q8 14801 37 Europe/London 2010-10-16
-2657067 Armadale Armadale 55.88333 -3.7 P PPL GB SCT 00 9026 187 Europe/London 2006-01-17
-2657073 Arlesey Arlesey Arlesley 52.00713 -0.26565 P PPLA3 GB ENG Z6 00KC002 4847 43 Europe/London 2011-07-31
-2657125 Ardrossan Ardrossan Ardrossan 55.65018 -4.80659 P PPL GB SCT V7 10000 21 Europe/London 2011-03-03
-2657126 Ardrishaig Ardrishaig Ardrishaig 56.01566 -5.44806 P PPL GB SCT T8 1261 6 Europe/London 2011-03-03
-2657182 Ardglass Ardglass 54.26312 -5.60981 P PPL GB NIR 00 1676 6 Europe/London 2007-04-13
-2657215 Arbroath Arbroath Arbroath 56.56317 -2.58736 P PPL GB SCT T7 22291 10 Europe/London 2011-03-03
-2657216 Arborfield Arborfield Aberfield,Arborfield 51.40143 -0.92006 P PPL GB ENG P4 2782 48 Europe/London 2011-02-16
-2657224 Appley Bridge Appley Bridge 53.57781 -2.7209 P PPL GB ENG H2 30UP 5270 21 Europe/London 2011-03-03
-2657227 Appleton Appleton 53.3524 -2.57183 P PPLA3 GB ENG P2 00EU001 0 72 Europe/London 2011-07-31
-2657233 Appledore Appledore 51.05 -4.2 P PPL GB ENG D4 18UK 2161 51 Europe/London 2010-05-24
-2657240 Appleby Appleby 53.61667 -0.56667 P PPLA3 GB ENG J3 00FD003 2926 17 Europe/London 2011-07-31
-2657255 Antrim Antrim 54.7 -6.2 P PPLA2 GB NIR Q6 19661 42 Europe/London 2010-10-16
-2657267 Anstruther Anstruther Anster,Anstruther,West Anstruther 56.22315 -2.70229 P PPL GB SCT V1 3527 13 Europe/London 2011-03-03
-2657268 Anstey Anstey Anstey,Ansty 52.65 -1.18333 P PPL GB ENG H5 5951 101 Europe/London 2012-01-17
-2657270 Ansty Ansty Anstey,Ansty 51.03639 -2.06389 P PPLA3 GB GB ENG P8 00HY008 0 124 Europe/London 2011-07-31
-2657282 Annfield Plain Annfield Plain 54.85749 -1.73827 P PPL GB ENG D8 00EJ110 10356 237 Europe/London 2011-03-03
-2657293 Annan Annan Annan 54.98839 -3.25647 P PPL GB SCT U2 16UB 8231 20 Europe/London 2011-03-03
-2657295 Annalong Annalong 54.10823 -5.89966 P PPL GB NIR 00 1760 15 Europe/London 2007-04-13
-2657297 Annahilt Annahilt Annahilt 54.43333 -6 P PPL GB NIR 00 1170 92 Europe/London 2010-08-09
-2657324 Andover Andover Andover 51.20828 -1.48246 P PPL GB ENG F2 24UN 39951 60 Europe/London 2011-03-03
-2657328 Ancroft Ancroft 55.7 -2 P PPLA3 GB ENG J6 00EM011 0 30 Europe/London 2011-07-31
-2657337 Ampthill Ampthill 52.02694 -0.49567 P PPLA3 GB ENG Z6 00KC001 6918 95 Europe/London 2011-07-31
-2657345 Ammanford Ammanford Ammanford,Rhydaman 51.79279 -3.98833 P PPL GB WLS X7 00NU003 12755 39 Europe/London 2011-03-03
-2657347 Amlwch Amlwch 53.40986 -4.34712 P PPL GB WLS X1 00NA002 2115 34 Europe/London 2011-03-03
-2657355 Amesbury Amesbury Amesbury 51.17172 -1.77897 P PPLA3 GB ENG P8 00HY007 8497 69 Europe/London 2011-07-31
-2657356 Amersham Amersham Amersham,Амершам 51.66667 -0.61667 P PPL GB ENG B9 11UC 21731 95 Europe/London 2012-01-17
-2657360 Ambleside Ambleside Ambleside 54.43261 -2.96167 P PPL GB ENG C9 16UG 3132 68 Europe/London 2010-08-03
-2657362 Amble Amble Amble 55.33333 -1.58333 P PPL GB ENG J6 6179 8 Europe/London 2012-01-17
-2657374 Alyth Alyth Alyth 56.62209 -3.23005 P PPL GB SCT W1 2354 99 Europe/London 2011-03-03
-2657388 Alveston Alveston Alveston 51.58806 -2.53139 P PPLA3 GB ENG M6 00HD003 0 93 Europe/London 2011-07-31
-2657393 Alveley Alveley Alveley 52.45709 -2.35434 P PPL GB ENG L6 00GG009 1685 115 Europe/London 2011-03-03
-2657395 Alvechurch Alvechurch Alvechurch 52.35173 -1.96531 P PPL GB ENG Q4 47UB 3647 123 Europe/London 2011-03-03
-2657397 Alva Alva Alva 56.15284 -3.80505 P PPL GB SCT U1 5130 22 Europe/London 2011-03-03
-2657402 Altrincham Altrincham Altrincham 53.38752 -2.34848 P PPL GB ENG O6 00EQ008 41548 42 Europe/London 2011-03-03
-2657408 Alton Alton Alton 51.14931 -0.97469 P PPL GB ENG F2 24UC 16584 104 Europe/London 2010-08-03
-2657430 Alsager Alsager 53.09617 -2.30649 P PPL GB ENG Z7 00EQ006 14494 95 Europe/London 2011-03-03
-2657432 Alrewas Alrewas 52.73278 -1.74968 P PPL GB ENG M9 41UD 2805 56 Europe/London 2011-03-03
-2657433 Alresford Alresford 51.85389 1.00203 P PPL GB ENG E4 22UN 5216 29 Europe/London 2010-05-24
-2657438 Alnwick Alnwick Almwick,Alnwick 55.41318 -1.70563 P PPL GB ENG J6 00EM008 7940 62 Europe/London 2011-03-03
-2657441 Alnmouth Alnmouth Alnmouth 55.4 -1.6 P PPLA3 GB ENG J6 00EM007 0 22 Europe/London 2011-07-31
-2657445 Alness Alness 57.69596 -4.2551 P PPL GB SCT V3 4921 26 Europe/London 2011-03-03
-2657450 Almondsbury Almondsbury 51.55407 -2.57114 P PPLA3 GB ENG M6 00HD002 1812 57 Europe/London 2011-07-31
-2657471 Alloa Alloa Alloa,Aloa,Аллоа,Алоа 56.11586 -3.78997 P PPLA2 GB SCT U1 18885 22 Europe/London 2011-03-03
-2657474 Allington Allington 51.15 -1.7 P PPLA3 GB ENG P8 00HY004 0 103 Europe/London 2011-07-31
-2657476 Allhallows Allhallows 51.4675 0.64133 P PPL GB ENG I3 00LC001 1686 22 Europe/London 2011-03-03
-2657494 Allanton Allanton Allanton 55.78333 -2.21667 P PPL GB SCT T9 1266 53 Europe/London 2012-01-17
-2657508 Alfreton Alfreton Alfreton,Алфретон 53.0961 -1.38832 P PPL GB ENG D3 17UB 22550 130 Europe/London 2011-03-03
-2657509 Alford Alford Alford 57.23257 -2.70298 P PPL GB SCT T6 2237 149 Europe/London 2011-10-30
-2657513 Alexandria Alexandria Alexandria 55.99379 -4.5864 P PPL GB SCT W7 13079 23 Europe/London 2011-03-03
-2657528 Aldridge Aldridge Aldridge 52.60549 -1.91715 P PPL GB ENG O8 41UD 16008 162 Europe/London 2011-03-03
-2657536 Aldford Aldford Aldford 53.12762 -2.86812 P PPLA3 GB ENG Z8 00EW004 0 16 Europe/London 2011-07-31
-2657540 Aldershot Aldershot Aldershot 51.24827 -0.76389 P PPL GB ENG F2 24UL 61339 99 Europe/London 2011-03-03
-2657546 Alderley Edge Alderley Edge 53.30393 -2.23773 P PPL GB ENG Z7 00EQ004 4408 87 Europe/London 2011-03-03
-2657548 Alderholt Alderholt Alderholt 50.91667 -1.83333 P PPL GB ENG D6 19UD 2855 45 Europe/London 2012-01-17
-2657551 Alderbury Alderbury 51.04354 -1.73382 P PPL GB ENG P8 00HY002 2191 94 Europe/London 2011-03-03
-2657557 Aldeburgh Aldeburgh Aldeburgh 52.15259 1.60124 P PPL GB ENG N5 42UG 2713 12 Europe/London 2011-03-03
-2657561 Aldbrough Aldbrough 53.82893 -0.11467 P PPLA3 GB ENG E1 00FB002 0 17 Europe/London 2011-07-31
-2657562 Aldbourne Aldbourne Aldbourne 51.48098 -1.61827 P PPL GB ENG P8 00HY001 1652 134 Europe/London 2011-03-03
-2657566 Alcester Alcester Alcester 52.21667 -1.86667 P PPL GB ENG P3 44UE 7225 45 Europe/London 2012-01-17
-2657571 Albrighton Albrighton 52.63333 -2.26667 P PPLA3 GB ENG L6 00GG007 7885 111 Europe/London 2011-07-31
-2657592 Airth Airth 56.06834 -3.76993 P PPL GB SCT U9 1414 11 Europe/London 2011-03-03
-2657594 Airmyn Airmyn 53.72074 -0.89959 P PPLA3 GB ENG E1 00FB001 0 5 Europe/London 2011-07-31
-2657613 Airdrie Airdrie Airdrie 55.86602 -3.98025 P PPL GB SCT V8 35440 130 Europe/London 2011-03-03
-2657634 Ahoghill Ahoghill Ahoghill 54.86667 -6.36667 P PPL GB NIR 00 3633 85 Europe/London 2010-08-09
-2657668 Adlington Adlington 53.61323 -2.60676 P PPL GB ENG H2 30UE 7965 94 Europe/London 2010-05-24
-2657676 Addlestone Addlestone Addlestone 51.37135 -0.49353 P PPL GB ENG N7 43UG 14978 19 Europe/London 2011-02-14
-2657680 Addingham Addingham 53.94452 -1.88424 P PPLA3 GB ENG B4 00CX001 3287 108 Europe/London 2011-07-31
-2657684 Adderbury Adderbury Adderbury 52.0169 -1.31192 P PPL GB ENG K2 38UB 2552 104 Europe/London 2011-02-23
-2657696 Acton Acton Acton 52.45 -3.01667 P PPL GB ENG L6 1475 254 Europe/London 2012-01-17
-2657697 Acton Acton 51.50901 -0.2762 P PPL GB ENG GLA D9 53689 30 Europe/London 2010-09-22
-2657700 Acomb Acomb 54.98333 -2.1 P PPLA3 GB ENG J6 00EM002 0 66 Europe/London 2011-07-31
-2657704 Acle Acle 52.63681 1.54757 P PPL GB ENG I9 33UC 2280 6 Europe/London 2010-05-24
-2657705 Acklington Acklington Acklington 55.3 -1.63333 P PPLA3 GB ENG J6 00EM001 0 33 Europe/London 2011-07-31
-2657770 Accrington Accrington 53.75379 -2.35863 P PPL GB ENG H2 30UG 35318 148 Europe/London 2010-05-24
-2657774 Abram Abram 53.50855 -2.59266 P PPL GB ENG P7 00BL003 10074 38 Europe/London 2011-03-03
-2657775 Aboyne Aboyne Aboine,Aboyne 57.07546 -2.78023 P PPL GB SCT T6 2236 128 Europe/London 2010-08-09
-2657780 Abingdon Abingdon Abingdon,Abingdon-on-Thames,Абингдон 51.67109 -1.28278 P PPL GB ENG K2 38UE 37192 57 Europe/London 2010-08-03
-2657782 Aberystwyth Aberystwyth Aberistuit,Aberystwyth,a bo li si te wei si,Аберистуит,阿伯里斯特威斯 52.41548 -4.08292 P PPLA3 GB WLS X6 00NQ003 18392 10 Europe/London 2011-07-31
-2657784 Abertillery Abertillery Abertillery,Abertyleri 51.72981 -3.13432 P PPL GB WLS X2 00PL001 11318 228 Europe/London 2011-09-19
-2657789 Aberporth Aberporth 52.13248 -4.54173 P PPL GB WLS X6 00NQ002 1711 34 Europe/London 2011-03-03
-2657792 Abernethy Abernethy 56.33247 -3.31226 P PPL GB SCT W1 1010 36 Europe/London 2011-03-03
-2657793 Abernant Abernant 51.88139 -4.41556 P PPLA3 GB WLS X7 00NU002 0 84 Europe/London 2011-07-31
-2657804 Aberkenfig Aberkenfig Aberkenfig 51.54 -3.59556 P PPL GB WLS X3 10083 39 Europe/London 2012-01-17
-2657812 Abergele Abergele 53.28436 -3.5822 P PPL GB WLS X8 00NE001 17769 18 Europe/London 2011-03-03
-2657815 Abergavenny Abergavenny Abergavenny,Y Fenni 51.82098 -3.01743 P PPL GB WLS Y4 00PP001 14211 60 Europe/London 2011-03-03
-2657817 Aberford Aberford Aberford 53.82604 -1.34231 P PPLA3 GB ENG H3 00DA001 1059 47 Europe/London 2011-07-31
-2657820 Aberfeldy Aberfeldy Aberfeldy 56.62 -3.86453 P PPL GB SCT W1 1937 96 Europe/London 2010-08-18
-2657829 Aberdour Aberdour Aberdour 56.05 -3.3 P PPL GB SCT V1 1742 19 Europe/London 2012-01-17
-2657832 Aberdeen Aberdeen Aberdeen,Aberdin,Aberdonia,Aburdijn,Aiberdeen,Devanha,Ehberdin,Obar Dheathain,a bo ding,abadin,abrdyn,Абердин,Абърдийн,Эбердин,ابردین,アバディーン,阿伯丁 57.14369 -2.09814 P PPLA2 GB SCT T5 183790 13 Europe/London 2011-03-03
-2657835 Aberdare Aberdare Aberdar,Aberdare,Aberdare - Aberdar,Aberdare - Aberdâr,Aberdehjr,Aberdâr,Абердэйр 51.71438 -3.44918 P PPL GB WLS Y9 00PF003 32756 135 Europe/London 2011-03-03
-2657839 Aberchirder Aberchirder 57.56012 -2.62856 P PPL GB SCT T6 1159 144 Europe/London 2011-03-03
-2657844 Abercarn Abercarn Abercarn,Aberearne 51.64733 -3.13476 P PPL GB WLS X4 00PK001 10118 103 Europe/London 2011-03-03
-2657845 Abercanaid Abercanaid Abercanaid 51.72361 -3.36611 P PPL GB WLS Y3 5061 160 Europe/London 2012-01-17
-2657850 Aberaeron Aberaeron Aberaeron,Aberayron 52.24247 -4.25871 P PPLA2 GB WLS X6 00NQ001 1537 7 Europe/London 2011-03-03
-2657857 Aber Aber 53.23333 -4.01667 P PPLA3 GB WLS Y2 00NC001 0 33 Europe/London 2011-07-31
-2657859 Abbotts Ann Abbotts Ann Abbots Ann,Abbotts Ann 51.18986 -1.53126 P PPL GB ENG F2 24UN 2112 64 Europe/London 2011-02-24
-2657876 Abbey Dore Abbey Dore Abbey Dore 51.96667 -2.9 P PPLA3 GB ENG F7 00GA001 0 161 Europe/London 2011-07-31
-3209552 Benllech Benllech Benllech 53.32044 -4.22607 P PPL GB WLS X1 00NA020 2332 43 Europe/London 2011-03-03
-3209584 Crosby Crosby 53.47778 -3.03333 P PPL GB ENG 00 52140 14 Europe/London 2006-01-17
-3209953 Overcombe Overcombe Overcombe 50.63509 -2.43207 P PPL GB ENG D6 19UJ 4971 7 Europe/London 2011-03-03
-3210207 Lynemouth Lynemouth Lynemouth 55.21306 -1.5425 P PPLA3 GB ENG J6 00EM103 1873 20 Europe/London 2011-07-31
-3236250 Shiremoor Shiremoor Shiremoor 55.03535 -1.5095 P PPL GB ENG 00 4889 62 Europe/London 2010-08-03
-3345093 Looe Looe 50.35778 -4.45418 P PPL GB ENG C6 00HE075 5398 40 Europe/London 2010-08-24
-3345095 Pensilva Pensilva 50.50302 -4.41491 P PPL GB ENG C6 00HE157 1601 232 Europe/London 2011-03-03
-3345096 Flexbury Flexbury 50.83509 -4.54499 P PPL GB ENG C6 00HE011 2287 13 Europe/London 2011-03-03
-3345123 Hundleton Hundleton 51.66694 -4.94917 P PPLA3 GB WLS Y7 00NS025 0 68 Europe/London 2011-07-31
-3345150 Glandwr Glandwr 51.92833 -4.63333 P PPL GB WLS Y7 1586 130 Europe/London 2006-01-17
-3345176 Trimsaran Trimsaran 51.71988 -4.24168 P PPL GB WLS X7 00NU072 1627 56 Europe/London 2011-03-03
-3345189 Tumble Tumble Tumble,y Tymbl 51.78361 -4.10972 P PPL GB WLS X7 4040 197 Europe/London 2012-01-20
-3345216 Llangynog Llangynog 51.82111 -4.40972 P PPLA3 GB WLS X7 00NU047 0 114 Europe/London 2011-07-31
-3345233 Pennard Pennard Pennard 51.57861 -4.06722 P PPLA3 GB WLS Z1 00NX027 0 70 Europe/London 2011-07-31
-3345234 Southgate Southgate 51.56944 -4.08972 P PPL GB WLS Z1 1976 64 Europe/London 2006-01-17
-3345241 Pontlliw Pontlliw 51.69139 -4.01056 P PPL GB WLS Z1 1535 44 Europe/London 2006-01-17
-3345250 Ambleston Ambleston Ambleston 51.89583 -4.90722 P PPLA3 GB WLS Y7 00NS001 0 137 Europe/London 2011-07-31
-3345252 Scleddau Scleddau 51.96833 -4.99333 P PPLA3 GB WLS Y7 00NS066 0 97 Europe/London 2011-07-31
-3345259 Hook Hook 51.765 -4.93167 P PPLA3 GB WLS Y7 00NS082 0 38 Europe/London 2011-07-31
-3345277 Croeserw Croeserw Croeserw 51.64472 -3.64028 P PPL GB WLS Y5 1595 271 Europe/London 2012-01-20
-3345278 Pont Rhyd-y-cyff Pont Rhyd-y-cyff 51.58694 -3.63639 P PPL GB WLS X3 1589 136 Europe/London 2006-01-17
-3345279 Price Town Price Town 51.61832 -3.53662 P PPL GB WLS X3 00PB015 2348 183 Europe/London 2011-03-03
-3345280 Ogmore Vale Ogmore Vale 51.6023 -3.54217 P PPL GB WLS X3 00PB015 2436 148 Europe/London 2011-03-03
-3345283 Tonypandy Tonypandy 51.62202 -3.45544 P PPL GB WLS Y9 00PF027 3495 154 Europe/London 2012-03-29
-3345284 Clydach Vale Clydach Vale 51.62665 -3.48015 P PPLA2 GB WLS Y9 00PF005 0 249 Europe/London 2011-03-03
-3345289 Cefn Cribwr Cefn Cribwr 51.53167 -3.65278 P PPLA3 GB WLS X3 00PB003 0 128 Europe/London 2011-07-31
-3345291 Merthyr Mawr Merthyr Mawr Merthyr Mawr 51.48611 -3.60861 P PPLA3 GB WLS X3 00PB013 0 12 Europe/London 2011-07-31
-3345315 Abertridwr Abertridwr Abertridwr 51.59583 -3.26833 P PPL GB WLS X4 6177 145 Europe/London 2012-01-20
-3345316 Beddau Beddau 51.55398 -3.35814 P PPL GB WLS Y9 00PF012 8134 116 Europe/London 2011-03-03
-3345317 Blackwood Blackwood 51.66778 -3.2075 P PPLA3 GB WLS X4 00PK006 15476 227 Europe/London 2011-07-31
-3345319 Cwmbach Cwmbach 51.70556 -3.40944 P PPLA3 GB WLS Y9 00PF004 4330 174 Europe/London 2011-07-31
-3345333 New Inn New Inn New Inn 51.69056 -3.00917 P PPLA3 GB WLS Z2 00PM009 0 110 Europe/London 2011-07-31
-3345337 Rogiet Rogiet Rogiet 51.58854 -2.77868 P PPL GB WLS Y4 00PP028 1638 13 Europe/London 2011-03-03
-3345375 Woolavington Woolavington 51.16493 -2.93814 P PPL GB ENG M3 40UC 2211 48 Europe/London 2011-03-03
-3345387 Kewstoke Kewstoke 51.3653 -2.95901 P PPLA3 GB ENG J4 00HC020 0 22 Europe/London 2011-07-31
-3345395 Pucklechurch Pucklechurch Pucklechurch 51.48583 -2.43389 P PPLA3 GB ENG M6 00HD030 2612 113 Europe/London 2011-07-31
-3345396 Peasedown Saint John Peasedown Saint John 51.31667 -2.42417 P PPL GB ENG A4 6263 165 Europe/London 2006-01-17
-3345400 Severn Beach Severn Beach Severn Beach 51.56036 -2.66279 P PPL GB ENG M6 00HD029 2075 6 Europe/London 2011-03-03
-3345403 Easton-in-Gordano Easton-in-Gordano 51.47592 -2.69987 P PPL GB ENG J4 00HC016 4824 23 Europe/London 2011-03-03
-3345420 Chapmanslade Chapmanslade Chapmanslade 51.22917 -2.24889 P PPLA3 GB ENG P8 00HY047 0 125 Europe/London 2011-07-31
-3345423 Stockton Stockton 51.14528 -2.03194 P PPLA3 GB ENG P8 00HY212 0 82 Europe/London 2011-07-31
-3345425 Boyton Boyton 51.155 -2.07111 P PPLA3 GB ENG P8 00HY025 0 95 Europe/London 2011-07-31
-3345429 Marston Marston 51.31083 -2.04972 P PPLA3 GB ENG P8 00HY154 0 57 Europe/London 2011-07-31
-3345432 Neston Neston 51.41222 -2.20056 P PPL GB ENG P8 15352 119 Europe/London 2006-01-17
-3345437 Camden Town Camden Town 51.54057 -0.14334 P PPLA3 GB ENG GLA C4 26122 32 Europe/London 2010-10-17
-3345438 Camberwell Camberwell 51.4739 -0.09381 P PPLA3 GB ENG GLA M8 0 8 Europe/London 2010-10-17
-3345439 Telford Telford Telford,Телфорд 52.67659 -2.44926 P PPLA2 GB ENG O2 138241 163 Europe/London 2010-10-16
-3345440 Craigavon Craigavon Craigavon,Krejgavon,Крейгавон 54.44709 -6.387 P PPLA2 GB NIR R8 59236 34 Europe/London 2010-10-16
-6269323 Hazlerigg Hazlerigg Hazelrigg,Hazlerigg 55.04135 -1.63912 P PPL GB ENG I7 00CJ003 1053 70 Europe/London 2011-03-03
-6269326 Lamesley Lamesley 54.91567 -1.60945 P PPLA3 GB ENG E5 00CH002 3928 12 Europe/London 2011-07-31
-6269409 Walton Walton 53.92501 -1.32746 P PPLA3 GB ENG H3 00DA027 0 35 Europe/London 2011-07-31
-6269410 Clifford Clifford 53.89513 -1.34557 P PPLA3 GB ENG H3 00DA010 0 28 Europe/London 2011-07-31
-6269412 East Keswick East Keswick 53.8943 -1.45221 P PPL GB ENG H3 00DA012 1224 58 Europe/London 2011-03-03
-6269414 Shadwell Shadwell 53.8546 -1.4726 P PPLA3 GB ENG H3 00DA033 0 127 Europe/London 2011-07-31
-6269591 Barlby Barlby 53.79964 -1.04061 P PPL GB ENG J7 36UH 3860 8 9 Europe/London 2010-05-24
-6301921 Kesgrave Kesgrave 52.06241 1.2365 P PPL GB ENG N5 42UG 11020 35 Europe/London 2011-03-03
-6301958 Blackmoorfoot Blackmoorfoot 53.61423 -1.85588 P PPL GB ENG G8 00CZ004 3835 249 Europe/London 2011-03-03
-6301962 Meltham Mills Meltham Mills 53.59388 -1.83989 P PPLL GB ENG G8 00CZ004 9000 171 Europe/London 2011-03-03
-6324514 Polzeath Polzeath 50.56956 -4.91759 P PPL GB ENG C6 00HE177 1449 5 55 Europe/London 2011-03-03
-6324759 Camblesforth Camblesforth 53.7268 -1.01998 P PPL GB ENG J7 36UH 1526 10 Europe/London 2011-03-03
-6453268 Breighton Breighton Breighton 53.79688 -0.92415 P PPL GB ENG E1 4934 7 Europe/London 2010-03-22
-6457269 Fontwell Fontwell 50.8552 -0.64831 P PPL GB ENG P6 45UC 1941 31 Europe/London 2011-03-03
-6458917 Sharlston Sharlston 53.66956 -1.41294 P PPLA3 GB ENG 45 00DB018 0 65 Europe/London 2011-07-31
-6545174 Kennington Kennington 51.48796 -0.10566 P PPLL GB ENG GLA M8 4000 8 Europe/London 2010-05-24
-6545175 Holborn Holborn 51.52124 -0.11347 P PPLX GB ENG GLA C4 22000 31 Europe/London 2010-05-24
-6545177 Camden Town Camden Town 51.54377 -0.1399 P PPLX GB ENG GLA C4 26122 34 Europe/London 2010-05-24
-6545243 Bayswater Bayswater 51.51116 -0.18426 P PPLX GB ENG GLA P5 17500 35 Europe/London 2011-03-03
-6545250 Lambeth Lambeth Lambeth,Waterloo 51.49635 -0.11152 P PPLX GB ENG GLA H1 6000 10 Europe/London 2011-03-03
-6559494 Tywyn Tywyn 52.58578 -4.09276 P PPLA3 GB WLS Y2 00NC062 0 10 Europe/London 2011-07-31
-6615508 Tankerton Tankerton 51.3637 1.04913 P PPL GB ENG G5 29UM 4900 22 Europe/London 2011-03-03
-6615542 Thorpe Hamlet Thorpe Hamlet Thorpe 52.63032 1.31337 P PPLL GB ENG I9 33UG 8109 39 Europe/London 2011-03-03
-6615590 Cheadle Heath Cheadle Heath 53.40186 -2.19088 P PPLX GB ENG N2 00EQ107 1901 49 Europe/London 2011-03-03
-6619695 Cameley Cameley 51.31616 -2.56079 P PPL GB ENG A4 00HA004 1286 110 Europe/London 2011-03-03
-6619766 Bradley Cross Bradley Cross 51.27488 -2.76256 P PPL GB ENG M3 40UC 3000 54 Europe/London 2010-05-24
-6619985 Copthorne Copthorne 51.13929 -0.11742 P PPL GB ENG P6 45UG 5000 76 Europe/London 2010-05-24
-6620300 Oakmere Oakmere 53.21996 -2.64054 P PPLA3 GB ENG Z8 00EW120 0 81 Europe/London 2011-07-31
-6620306 East Ayton East Ayton 54.2548 -0.47483 P PPL GB ENG J7 36UG 1687 56 Europe/London 2011-03-03
-6620308 Westcliff-on-Sea Westcliff-on-Sea Westcliff,Westcliff-on-Sea 51.54424 0.69179 P PPLX GB ENG M5 22UE 1001 38 Europe/London 2012-03-29
-6620310 Didsbury Didsbury 53.41698 -2.23145 P PPL GB ENG I2 00BN001 14292 40 Europe/London 2011-03-03
-6620337 Hellaby Hellaby 53.42257 -1.24125 P PPL GB ENG L3 00CF002 1100 105 Europe/London 2011-03-03
-6620345 Langstone Langstone 51.60554 -2.91206 P PPLA3 GB WLS Y6 00PR011 0 32 Europe/London 2011-07-31
-6620349 Tintern Tintern Tintern,Тинтерн 51.69677 -2.68142 P PPLA3 GB WLS Y4 00PP031 750 57 Europe/London 2011-07-31
-6620354 Barham Barham 51.2057 1.15734 P PPL GB ENG G5 1187 53 Europe/London 2010-03-22
-6620355 Bowthorpe Bowthorpe 52.63884 1.21885 P PPL GB ENG I9 33UG 20000 26 Europe/London 2011-03-03
-6620360 Hedge End Hedge End 50.91234 -1.30076 P PPL GB ENG F2 24UD 17978 28 Europe/London 2010-05-24
-6620426 Churt Churt 51.13603 -0.77534 P PPL GB ENG N7 43UL 1098 111 Europe/London 2011-03-03
-6620428 Danby Danby 54.46606 -0.91073 P PPL GB ENG J7 36UG 1515 128 Europe/London 2011-03-03
-6620444 Gerrards Cross Gerrards Cross 51.5861 -0.55543 P PPL GB ENG B9 11UE 7342 89 Europe/London 2011-03-03
-6621541 Maidenbower Maidenbower 51.10781 -0.15286 P PPL GB ENG P6 45UE 8070 72 74 Europe/London 2010-05-24
-6621542 Furnace Green Furnace Green 51.10742 -0.16889 P PPL GB ENG P6 45UE 6737 74 Europe/London 2010-05-24
-6621545 Broadfield Broadfield 51.09714 -0.20664 P PPL GB ENG P6 45UE 13000 92 Europe/London 2010-05-24
-6621546 Bewbush Bewbush 51.10329 -0.22312 P PPL GB ENG P6 45UE 9081 75 Europe/London 2010-05-24
-6621547 Gossops Green Gossops Green 51.11105 -0.21728 P PPL GB ENG P6 45UE 6000 83 Europe/London 2011-03-03
-6621548 Langley Green Langley Green 51.12817 -0.19835 P PPL GB ENG P6 45UE 7000 63 Europe/London 2010-05-24
-6621656 St. Buryan St. Buryan 50.07441 -5.6226 P PPLA3 GB ENG C6 00HE136 0 120 Europe/London 2011-07-31
-6640028 Hale Hale 53.37831 -2.33271 P PPL GB ENG I2 15315 47 Europe/London 2010-04-01
-6640065 Bidford-on-avon Bidford-on-avon 52.16725 -1.85652 P PPL GB ENG P3 44UE 4830 39 Europe/London 2010-05-24
-6640069 Clarkston Clarkston 55.78594 -4.27651 P PPL GB SCT U7 4778 95 Europe/London 2012-03-29
-6690167 Kings Hill Kings Hill Kings Hill, Kent 51.27437 0.40237 P PPL GB ENG G5 29UP 2638 89 Europe/London 2010-05-24
-6690171 Boars Hill Boars Hill 51.71581 -1.29252 P PPLL GB ENG K2 38UE 1554 145 Europe/London 2010-05-24
-6690565 Crouch End Crouch End 51.57971 -0.12373 P PPLX GB ENG GLA F3 10075 49 Europe/London 2010-05-25
-6690574 Clerkenwell Clerkenwell 51.52438 -0.11022 P PPL GB ENG GLA G3 4934 25 Europe/London 2011-03-03
-6690581 Belsize Park Belsize Park 51.54767 -0.17228 P PPL GB ENG GLA C4 11600 67 Europe/London 2011-03-03
-6690590 Barnsbury Barnsbury 51.54067 -0.11675 P PPL GB ENG GLA G3 10000 32 Europe/London 2011-03-03
-6690591 Little Chalfont Little Chalfont 51.66829 -0.57038 P PPL GB ENG B7 11UC 4497 133 Europe/London 2011-03-03
-6690592 Amersham on the Hill Amersham on the Hill 51.67468 -0.60742 P PPL GB ENG B9 11UC 17719 152 Europe/London 2010-05-25
-6690593 Barbican Barbican 51.51988 -0.09446 P PPLX GB ENG GLA H9 4000 31 Europe/London 2010-05-25
-6690602 Battersea Battersea 51.47475 -0.15547 P PPLX GB ENG GLA P1 75651 7 Europe/London 2011-03-03
-6690801 Grange Hill Grange Hill 51.61185 0.08612 P PPL GB ENG E4 22UH 12449 70 Europe/London 2011-03-03
-6690802 Collier Row Collier Row 51.59893 0.166 P PPLX GB ENG GLA F6 10100 37 Europe/London 2010-05-25
-6690805 Elm Park Elm Park 51.5497 0.20136 P PPLX GB ENG GLA F6 12048 12 Europe/London 2010-05-25
-6690806 Cranham Cranham 51.56565 0.2659 P PPLX GB ENG GLA F6 2836 23 Europe/London 2010-05-25
-6690808 Chafford Hundred Chafford Hundred 51.4892 0.2944 P PPLX GB ENG O3 29UD 13466 16 Europe/London 2011-03-03
-6690812 Chadwell St Mary Chadwell St Mary 51.4814 0.36343 P PPLX GB ENG O3 29UG 9631 28 Europe/London 2011-03-03
-6690830 Ditton Hill Ditton Hill 51.38624 -0.32495 P PPLX GB ENG N7 43UB 3024 13 Europe/London 2010-05-24
-6690831 Hinchley Wood Hinchley Wood 51.37461 -0.33838 P PPL GB ENG N7 43UB 3674 18 Europe/London 2011-03-03
-6690863 Hornchurch Hornchurch 51.55685 0.21664 P PPLX GB ENG GLA F6 25470 27 Europe/London 2010-05-25
-6690865 Hainault Hainault 51.60836 0.10716 P PPLX GB ENG GLA K8 7071 44 Europe/London 2011-03-03
-6690866 Surbiton Surbiton 51.39148 -0.29825 P PPL GB ENG GLA G7 38158 40 Europe/London 2012-03-01
-6690867 Ewell Ewell 51.34948 -0.2494 P PPLX GB ENG N7 43UC 39994 38 Europe/London 2011-03-03
-6690868 Harold Wood Harold Wood 51.59462 0.23294 P PPLX GB ENG GLA F6 12443 34 Europe/London 2010-05-25
-6690869 Chadwell Heath Chadwell Heath 51.57121 0.13271 P PPLX GB ENG GLA A1 9598 20 Europe/London 2011-03-03
-6690870 Becontree Becontree 51.5529 0.129 P PPLX GB ENG GLA A1 100000 11 Europe/London 2010-05-25
-6690871 Dagenham Dagenham 51.54062 0.14801 P PPLX GB ENG GLA A1 108368 12 Europe/London 2011-03-03
-6690877 Brixton Brixton 51.46593 -0.10652 P PPLX GB ENG GLA H1 66300 14 Europe/London 2010-05-25
-6690989 Bethnal Green Bethnal Green 51.52718 -0.06109 P PPLX GB ENG GLA O5 17590 20 Europe/London 2011-03-03
-6691216 Cheetham Hill Cheetham Hill 53.49862 -2.23846 P PPLX GB ENG I2 12846 58 Europe/London 2010-03-29
-6691219 Failsworth Failsworth 53.50484 -2.16568 P PPLX GB ENG I2 20555 97 Europe/London 2010-03-30
-6691221 Crumpsall Crumpsall 53.51827 -2.24447 P PPLX GB ENG I2 11363 80 Europe/London 2010-03-29
-6691222 Blackley Blackley 53.51765 -2.21443 P PPLX GB ENG I2 10196 81 Europe/London 2010-03-29
-6691227 Radcliffe Radcliffe 53.56178 -2.32455 P PPLX GB ENG C1 34239 76 Europe/London 2010-04-02
-6691228 Little Lever Little Lever 53.56144 -2.36934 P PPLX GB ENG B1 00EX003 11505 95 Europe/London 2011-03-03
-6691235 Heywood Heywood Heywood,Monkey Town 53.59245 -2.21941 P PPLX GB ENG I2 28024 121 Europe/London 2010-04-01
-6691237 Hollingworth Hollingworth 53.63288 -2.11083 P PPLX GB ENG O1 2447 154 Europe/London 2010-04-01
-6691238 Littleborough Littleborough 53.64581 -2.09684 P PPLX GB ENG I2 13807 148 Europe/London 2010-04-02
-6691248 Chorlton cum Hardy Chorlton cum Hardy Chorlton,Chorlton cum Hardy,Chorlton-cum-Hardy 53.43505 -2.2631 P PPLX GB ENG I2 4741 33 Europe/London 2010-03-29
-6691251 Burnage Burnage 53.43265 -2.19967 P PPLX GB ENG I2 13706 51 Europe/London 2010-03-29
-6691252 Fallowfield Fallowfield 53.43981 -2.21572 P PPLX GB ENG I2 14132 44 Europe/London 2010-03-30
-6691253 Heaton Chapel Heaton Chapel 53.43015 -2.17538 P PPLX GB ENG I2 3296 67 Europe/London 2010-04-01
-6691255 Haughton Green Haughton Green 53.44118 -2.09827 P PPLX GB ENG O1 00BS001 9000 113 Europe/London 2011-03-03
-6691257 Hulme Hulme 53.46572 -2.24885 P PPLX GB ENG I2 8932 36 Europe/London 2010-04-01
-6691766 Longsight Longsight 53.45801 -2.20104 P PPLX GB ENG I2 16007 54 Europe/London 2010-04-02
-6691884 Heavitree Heavitree 50.72044 -3.49646 P PPLX GB ENG D4 18UC 22000 36 Europe/London 2011-03-03
-6691927 Ferndown Ferndown 50.80743 -1.89975 P PPL GB ENG D6 19UD 17650 23 Europe/London 2011-03-03
-6691951 Clayton-le-Woods Clayton-le-Woods 53.69689 -2.66818 P PPL GB ENG H2 30UE 14528 63 Europe/London 2011-03-03
-6692308 Coatham Mundeville Coatham Mundeville 54.58002 -1.55645 P PPLA3 GB ENG D1 00EH005 0 74 Europe/London 2011-07-31
-6692336 Billington Billington 53.8157 -2.4236 P PPL GB ENG H2 30UL 1458 62 Europe/London 2010-05-25
-6692466 Brixton Hill Brixton Hill 51.45213 -0.123 P PPL GB ENG GLA H1 12458 33 Europe/London 2010-05-25
-6692918 Featherstone Featherstone 52.64483 -2.09315 P PPL GB ENG M9 41UF 14175 129 Europe/London 2010-05-24
-6692919 Belmont Belmont 52.04272 -2.74169 P PPL GB ENG F7 3382 63 Europe/London 2010-03-29
-6692920 Calcot Calcot Calcot,Calcot Row 51.44058 -1.05091 P PPL GB ENG P4 9093 53 Europe/London 2010-03-29
-6693001 Benwell Benwell 54.97296 -1.66926 P PPL GB ENG I7 00CJ006 6500 93 Europe/London 2011-03-03
-6693007 Earl Shilton Earl Shilton 52.57682 -1.31536 P PPL GB ENG H5 31UE 9000 117 Europe/London 2010-05-25
-6693023 St. Georges St. Georges 51.36224 -2.89799 P PPLA3 GB ENG J4 00HC039 0 7 Europe/London 2011-07-31
-6693025 Carden Carden 53.07214 -2.79735 P PPLA3 GB ENG Z8 00EW029 0 66 Europe/London 2011-07-31
-6693100 Bay Horse Bay Horse 53.96867 -2.77603 P PPL GB ENG H2 30UH 2239 28 Europe/London 2011-03-03
-6693201 Adlington Adlington 53.32042 -2.13658 P PPLA3 GB ENG Z7 00EQ002 1081 105 Europe/London 2011-07-31
-6693203 Colden Common Colden Common 50.99483 -1.31143 P PPL GB ENG F2 24UP 3681 39 Europe/London 2011-03-03
-6693205 Winterbourne Winterbourne 51.52327 -2.50437 P PPLA3 GB ENG M6 00HD043 0 70 Europe/London 2011-07-31
-6693236 Charvil Charvil 51.47573 -0.88591 P PPL GB ENG Q2 00MF003 2000 38 Europe/London 2011-03-03
-6693239 Essington Essington 52.6291 -2.0577 P PPL GB ENG M9 41UF 4829 183 Europe/London 2010-05-24
-6693242 Bordon Bordon 51.11357 -0.86245 P PPL GB ENG F2 24UC 15000 93 Europe/London 2010-05-24
-6693245 Knaphill Knaphill 51.31892 -0.61541 P PPL GB ENG N7 43UM 8635 55 Europe/London 2010-05-24
-6693470 Lytham St Annes Lytham St Annes Lytham,Lytham St Annes,St Annes 53.7426 -2.997 P PPL GB ENG H2 30UF 41327 10 Europe/London 2012-03-29
-6693491 Curdworth Curdworth 52.53382 -1.73687 P PPL GB ENG P3 44UB 1500 89 Europe/London 2010-05-24
-6693494 Chorlton Chorlton 53.05029 -2.40541 P PPLA3 GB ENG Z7 00EQ040 113 59 Europe/London 2011-07-31
-6693510 Little Hallingbury Little Hallingbury 51.83324 0.18151 P PPL GB ENG E4 22UQ 1500 63 Europe/London 2011-03-03
-6693608 Hoole Hoole 53.1998 -2.87689 P PPL GB ENG Z8 00EW072 1180 25 Europe/London 2011-03-03
-6693626 Eight Ash Green Eight Ash Green 51.89587 0.8228 P PPL GB ENG E4 22UG 1106 46 Europe/London 2011-03-03
-6693668 Larkfield Larkfield 51.29456 0.42615 P PPL GB ENG G5 29UP 7000 39 Europe/London 2010-05-24
-6693717 Catcliffe Catcliffe 53.39316 -1.36207 P PPL GB ENG L3 00CF005 1766 46 Europe/London 2011-03-03
-6693735 Walton Walton 53.64886 -1.46582 P PPLA3 GB ENG 45 00DB025 0 50 Europe/London 2011-07-31
-6693771 Hadley Wood Hadley Wood 51.66669 -0.16981 P PPL GB ENG GLA E3 21639 104 Europe/London 2011-03-03
-6693776 Greenhill Greenhill 51.58342 -0.3386 P PPL GB ENG GLA F4 9324 64 Europe/London 2010-05-25
-6693989 Grappenhall Grappenhall 53.37204 -2.54675 P PPL GB ENG P2 00EU007 9377 36 Europe/London 2011-03-03
-6694342 Great Marton Great Marton 53.81185 -3.02261 P PPL GB ENG H2 1603 12 Europe/London 2010-04-01
-6694788 Whiston Whiston 53.41997 -2.78907 P PPLA3 GB ENG G9 00BX007 0 62 Europe/London 2011-07-31
-6694830 Eaglescliffe Eaglescliffe 54.52521 -1.35043 P PPL GB ENG N3 00EF004 7900 28 Europe/London 2011-03-03
-6695071 Mottram St. Andrew Mottram St. Andrew 53.30616 -2.18147 P PPLA3 GB ENG Z7 00EQ090 0 115 Europe/London 2011-07-31
-6695204 Barnwood Barnwood 51.86393 -2.20087 P PPL GB ENG E6 23UE 2500 29 Europe/London 2010-05-24
-6695247 Chapel Allerton Chapel Allerton Chapel A,Chapel Allerton 53.82901 -1.53834 P PPL GB ENG H3 18206 117 Europe/London 2008-07-24
-6695249 Ash Ash 51.27883 1.27974 P PPL GB ENG G5 29UE 2767 22 Europe/London 2010-05-24
-6695618 Byram Byram Byram,Byram cum Sutton 53.72394 -1.26128 P PPL GB ENG J7 36UH 1406 26 Europe/London 2010-05-25
-6696027 Chiseldon Chiseldon 51.51606 -1.73206 P PPLA3 GB ENG N9 00HX004 2599 161 Europe/London 2011-07-31
-6696635 Southchurch Village Southchurch Village 51.54049 0.72935 P PPL GB ENG M5 2000 28 Europe/London 2010-01-12
-6696772 Darras Hall Darras Hall 55.0356 -1.76425 P PPLX GB ENG J6 15000 82 Europe/London 2010-03-29
-6697318 Bodle Street Bodle Street Bodle Street,Bodle Street Green 50.91299 0.34332 P PPL GB ENG E2 21UH 1359 54 Europe/London 2010-05-24
-6697375 Donnington Donnington 51.95135 -1.72142 P PPL GB ENG E6 23UC 4477 221 194 Europe/London 2010-05-24
-6697497 Babworth Babworth 53.31799 -0.97583 P PPL GB ENG J9 37UC 1329 22 Europe/London 2010-05-25
-6698329 Appleton Thorn Appleton Thorn 53.35045 -2.54488 P PPL GB ENG C5 10477 76 Europe/London 2010-03-22
-6698330 Guilden Sutton Guilden Sutton 53.20809 -2.82984 P PPLA3 GB ENG Z8 00EW074 1525 31 Europe/London 2011-07-31
-6698331 Blacon Blacon 53.20832 -2.9253 P PPL GB ENG Z8 00EW110 13495 21 Europe/London 2011-03-03
-6698373 Chelmsley Wood Chelmsley Wood 52.4781 -1.73813 P PPL GB ENG M2 00CT006 13010 93 Europe/London 2011-03-03
-6930866 Crawley Down Crawley Down 51.12061 -0.0773 P PPL GB ENG P6 45UG 4300 118 Europe/London 2011-03-03
-6931071 Grange-over-Sands Grange-over-Sands 54.19647 -2.90433 P PPL GB ENG C9 16UG 4042 13 Europe/London 2011-03-03
-6940294 Gotherington Gotherington 51.96474 -2.05496 P PPL GB ENG E6 23UG 1200 62 Europe/London 2010-05-24
-6940296 Cowplain Cowplain 50.89411 -1.01824 P PPL GB ENG F2 24UH 8775 60 Europe/London 2011-03-03
-6940518 Canford Heath Canford Heath 50.751 -1.96862 P PPLX GB ENG K5 19UD 14418 13 Europe/London 2011-03-03
-6941037 High Barnet High Barnet 51.65621 -0.20768 P PPLX GB ENG GLA A2 7062 133 Europe/London 2011-03-03
-6941086 Balsall Common Balsall Common 52.39186 -1.6504 P PPL GB ENG M2 00CT001 6234 124 Europe/London 2011-03-03
-6941089 Ingleton Ingleton 54.15392 -2.46849 P PPL GB ENG J7 36UB 2050 130 Europe/London 2010-05-25
-6946746 Penparcau Penparcau 52.40333 -4.07417 P PPL GB WLS X6 00NQ003 3088 35 23 Europe/London 2011-03-03
-6946886 Chalton Chalton 51.9279 -0.50147 P PPLA3 GB ENG Z6 00KC014 0 105 108 Europe/London 2011-07-31
-6946923 Husborne Crawley Husborne Crawley 52.01637 -0.61056 P PPLA3 GB ENG Z6 00KC038 190 99 100 Europe/London 2011-07-31
-6947041 Blackheath Blackheath 51.4647 0.0079 P PPL GB ENG GLA H6 25116 33 Europe/London 2010-05-25
-6947164 Stewartby Stewartby 52.07044 -0.5149 P PPLA3 GB ENG Z5 00KB038 1212 42 Europe/London 2011-07-31
-6947168 Kempston Hardwick Kempston Hardwick 52.08956 -0.49908 P PPL GB ENG Z5 00KB038 20000 35 37 Europe/London 2011-03-03
-6947729 Bilsdale Bilsdale 54.37356 -1.11923 P PPLL GB ENG J7 36UC 1841 300 Europe/London 2010-05-25
-6947746 Alderney Alderney 49.7136 -2.19958 P PPL GB ENG 2400 80 Europe/London 2010-03-22
-6947750 Hameldon Hill Hameldon Hill 53.7557 -2.2919 P PPLX GB ENG H2 30UD 1500 401 Europe/London 2010-05-24
-6947756 Mendip Mendip 51.2372 -2.6266 P PPLX GB ENG M3 40UB 110000 293 Europe/London 2010-05-25
-6950979 Eversley Eversley 51.35387 -0.88888 P PPL GB ENG F2 24UG 2600 49 Europe/London 2011-03-03
-6955370 Murton Murton 53.96607 -1.0107 P PPLA3 GB ENG Q5 00FF019 423 18 Europe/London 2011-07-31
-7287966 Easington Colliery Easington Colliery 54.78792 -1.32819 P PPLA3 GB ENG D8 00EJ029 0 89 Europe/London 2011-07-31
-7289682 Llanrhaeadr-ym-Mochnant Llanrhaeadr-ym-Mochnant 52.82507 -3.30225 P PPLA3 GB WLS Y8 00NN111 0 155 Europe/London 2011-07-31
-7290015 Lower Earley Lower Earley 51.42708 -0.91979 P PPL GB ENG Q2 00MF004 32000 50 43 Europe/London 2011-03-03
-7290614 Bassetlaw District Bassetlaw District Bassetlaw,Bassetlaw District 53.34914 -0.9785 P PPL GB ENG J9 37UC 112200 13 Europe/London 2010-05-26
-7291632 Thurmaston Thurmaston 52.67701 -1.09283 P PPL GB ENG H5 31UC 8945 63 Europe/London 2011-03-03
-7302130 Bartley Green Bartley Green 52.43532 -1.99707 P PPL GB ENG A7 47UB 25473 189 Europe/London 2010-05-27
-7302133 Grimethorpe Grimethorpe 53.5765 -1.37688 P PPL GB ENG A3 00CC002 1873 49 Europe/London 2010-05-27
-7302135 Abbey Wood Abbey Wood 51.48688 0.10746 P PPL GB ENG GLA E7 13000 9 Europe/London 2010-05-27
-7302937 Ovington Ovington 54.52791 -1.79824 P PPLA3 GB ENG D8 00EJ086 0 135 Europe/London 2011-07-31
-7303225 Headwood Bolevad Headwood Bolevad 51.67708 -0.43825 P PPL GB ENG F8 26UJ 2589 1000 92 Europe/London 2012-03-02
-7304130 Grimbsy Grimbsy 53.55989 -0.09888 P PPLA4 GB ENG J2 00FC021 0 5 Europe/London 2010-07-29
-7521855 Summerhouse Summerhouse 54.56728 -1.68923 P PPLA3 GB ENG D1 00EH024 0 86 Europe/London 2011-07-31
-7521859 Seer Green Seer Green 51.61796 -0.60592 P PPL GB ENG B9 11UC 2200 102 Europe/London 2010-08-21
-7535661 London Borough of Harrow London Borough of Harrow Harrow,London Borough of Harrow 51.56667 -0.33333 P PPL GB ENG GLA F4 216200 93 Europe/London 2010-09-21
-7732704 Netherseal Netherseal 52.7154 -1.57722 P PPLA4 GB ENG D3 17UK 17UK031 0 79 Europe/London 2011-04-01
-7911271 Canvey Island Canvey Island 51.52199 0.5809 P PPLA4 GB ENG E4 22UE 22UE001 0 3 Europe/London 2011-08-08
-8063096 Earlsfield Earlsfield 51.4439 -0.1854 P PPL GB ENG GLA P1 15562 13 Europe/London 2011-11-14
-8128721 Peacehaven Peacehaven New Anzac-on-Sea 50.7927 -0.00652 P PPL GB ENG E2 21UF 21UF015 13268 35 Europe/London 2012-03-29
-8224207 Appleby-in-Westmorland Appleby-in-Westmorland 54.57704 -2.48978 P PPL GB ENG C9 16UF 16UF003 2862 152 Europe/London 2012-03-29
-8224780 Cradley Heath Cradley Heath 52.47214 -2.08212 P PPL GB ENG L7 5001 138 Europe/London 2012-03-29
-8224782 Shirley Shirley 52.41074 -1.81952 P PPLX GB ENG M2 32000 133 Europe/London 2012-03-29
-8224783 Stanley Stanley 54.86796 -1.69846 P PPL GB ENG D8 00EJ110 16200 163 Europe/London 2012-03-29
-8224784 Stockton Heath Stockton Heath 53.37084 -2.57406 P PPLA3 GB ENG P2 00EU014 6396 37 Europe/London 2012-03-29
-8224785 Waterloo Waterloo 53.47454 -3.03017 P PPLX GB ENG L8 1001 3 Europe/London 2012-03-29
-3579833 Victoria Victoria Grand Pauve,Grand Pauvre,Saint Mark,Saint Mark Village,Saint Marks 12.19021 -61.70677 P PPL GD 05 2256 70 America/Grenada 2007-06-22
-3579891 Sauteurs Sauteurs Sauteurs,Sautiers 12.21667 -61.63333 P PPLA GD 06 1320 44 America/Grenada 2012-02-19
-3579925 Saint George's Saint George's Fort Royal,Georgetown,Grenada City,Lewis,Port Louis,Port Royal,Saint George,Saint George's,Saint George.s,Saint-Georges,Sent Dzordzas,Sent Džordžas,Sent Tzortzes,Sent-Dzhorzhes,St Georges,St. George's,seinteujojiseu,sentojojizu,snt g'wrg',Σεντ Τζόρτζες,Сент-Джоржес,סנט ג'ורג',セントジョージズ,세인트조지스 12.05644 -61.74849 P PPLC GD GD 03 7500 6 33 America/Grenada 2010-12-07
-3579931 Saint David’s Saint David's 12.03333 -61.66667 P PPL GD 02 1321 59 America/Grenada 2006-01-17
-3580236 Grenville Grenville Grenville,La Baye 12.11667 -61.61667 P PPL GD 01 2476 1 America/Grenada 2012-01-18
-3580279 Gouyave Gouyave Charlotte Town,Gouave,Gouyave,Goyave,Guyave 12.16462 -61.72965 P PPLA GD 04 3378 19 America/Grenada 2012-02-19
-584502 Abastumani Abastumani Abastumani 41.7075 42.84572 P PPL GE 00 1285 1203 Asia/Tbilisi 2012-01-17
-610824 Zugdidi Zugdidi Sugdidi,ZUGDIDI,Zugdidi,Zugdidis,Zygdidi,zwgdydy,ЗУГДИДИ,Зугдиди,זוגדידי,ზუგდიდი 42.5088 41.87088 P PPLA2 GE 71 610823 73006 111 Asia/Tbilisi 2011-03-02
-610849 Zhinvali Zhinvali ZHINVALI,Zhinvali,Zhinvani,ЖИНВАЛИ 42.13181 44.77264 P PPL GE 00 3446 754 Asia/Tbilisi 2012-01-17
-610864 Zestap’oni Zestap'oni Dshugeli,Dzhugeli,Kvirily,Namaneva,Sestafoni,ZESTAFONI,Zestafoni,Zestap'oni,Zestap’oni,Zetaponi,Zistafoni,ЗЕСТАФОНИ 42.11 43.0525 P PPLA2 GE 66 25891 201 Asia/Tbilisi 2011-01-29
-611093 Zahesi Zahesi Zages,Zahesi 41.82458 44.75361 P PPL GE 00 1933 487 Asia/Tbilisi 2012-01-17
-611219 Vani Vani Bzvani,VANI,Vani,ВАНИ 42.0832 42.52163 P PPL GE 66 4265 70 Asia/Tbilisi 2012-01-17
-611230 Vale Vale VALE,Vale,ВАЛЕ 41.61558 42.87224 P PPL GE 00 4733 1172 Asia/Tbilisi 2012-01-17
-611274 Urek’i Urek'i UREKI,Urek'i,Ureki,Urek’i,УРЕКИ,ურეკი 41.99556 41.77861 P PPL GE 65 1625 6 Asia/Tbilisi 2012-01-17
-611373 Tsnori Tsnori CNORI,Sakobosubani,Tsnori,Tsnoristskali,ЦНОРИ 41.62088 45.96943 P PPL GE 00 6609 296 Asia/Tbilisi 2012-01-17
-611398 Tsqnet’i Tsqnet'i CKHNETI,Tskhneti,Tskneti,Tsqnet'i,Tsqnet’i,ЦХНЕТИ 41.69472 44.69861 P PPL GE 00 4172 947 Asia/Tbilisi 2012-01-17
-611403 Ts’khinvali Ts'khinvali Ckhinvali,Stalinir,Staliniri,Stavinir,Ts'khinvali,Ts’khinvali,Цхинвали 42.22764 43.96861 P PPL GE 22 30000 874 Asia/Tbilisi 2012-01-17
-611492 Tsinandali Tsinandali Cinandali,Tsinandali,Tsinondali,Цинандали 41.89315 45.57129 P PPL GE 00 3800 605 Asia/Tbilisi 2012-01-17
-611548 Tsalka Tsalka Barmaksiz,Barmaksus,Barmaksys,CALKA,Khram,Tsalka,ЦАЛКА 41.5946 44.08909 P PPLA2 GE 68 7667714 1570 1482 Asia/Tbilisi 2011-02-27
-611551 Tsalenjikha Tsalenjikha CALENDZHIKHA,Tsalendzhikha,Tsalenjikha,ЦАЛЕНДЖИХА,წალენჯიხა 42.60444 42.06825 P PPL GE 71 8879 179 Asia/Tbilisi 2012-01-17
-611564 Tsaghveri Tsaghveri CAGVERI,Kurgan Tsagveri,Tsaghveri,Tsagveri,ЦАГВЕРИ,წაღვერი 41.80365 43.48194 P PPL GE 72 2745 1082 Asia/Tbilisi 2012-01-17
-611583 Tqvarch'eli Tqvarch'eli Tkuarchal,Tkvarcheli,Tkvarchely,Tkwartscheli,Ткуарчал 42.84035 41.68007 P PPL GE 00 17847 227 Asia/Tbilisi 2010-06-07
-611584 Tqibuli Tqibuli TKIBULI,Tkbuli,Tkibuli,Tkvibeli,Tkvibuli,Tkwibuli,Tqibuli,ТКИБУЛИ 42.35121 42.99874 P PPL GE 00 13201 565 Asia/Tbilisi 2012-01-17
-611669 T’ianet’i T'ianet'i T'ianet'i,TIANETI,Tianety,Tioneti,Tionety,T’ianet’i,ТИАНЕТИ 42.10833 44.96389 P PPLA2 GE 69 611668 0 1107 Asia/Tbilisi 2011-02-27
-611674 T’et’ri Tsqaro T'et'ri Tsqaro Agbulag,Agbulak,Agbulakh,Agbularh,Baly Kluch,Belyy-Klyuch,T'et'ri Tsqaro,Tetri-Ckaro,Tetri-Tskaro,T’et’ri Tsqaro,Тетри-Цкаро 41.54448 44.46153 P PPL GE 68 3624 1174 Asia/Tbilisi 2012-01-17
-611694 T’elavi T'elavi T'elavi,TELAVI,Telav,Telavi,Telavis,Telawi,Telev,Thelavi,T’elavi,telavi,ТЕЛАВИ,Телави,თელავი 41.91978 45.47315 P PPLA GE 67 7667581 21800 722 Asia/Tbilisi 2012-01-14
-611717 Tbilisi Tbilisi Kalak,TBILISI,Tbilisi,Tbilisi - tbilisi,Tbilisi - თბილისი,Tbilisis,Tbilissi,Tbilsi,Tblisi,Thbilisi,Tiblisi,Tiblîsî,Tiflis,Tiphlida,Tpilisi,Tíflis,di bi li si,tbilisi,tblysy,tbylysy,teubillisi,tflys,tobirishi,Τιφλίδα,Калак,ТБИЛИСИ,Тбилиси,Тбилисӣ,Тбілісі,טביליסי,تبليسي,تفلیس,তিবিলিসি,თბილისი,ትብሊሲ,トビリシ,第比利斯,트빌리시 41.69411 44.83368 P PPLC GE 51 1049498 491 Asia/Tbilisi 2012-02-01
-611809 Surami Surami SURAMI,Ssuromi,Suram,Surami,СУРАМИ 42.02431 43.55556 P PPL GE 28 10091 745 Asia/Tbilisi 2012-01-17
-611847 Sokhumi Sokhumi Akva,SUKHUMI,Sochumi,Sohumi,Sohumkale,Sokhumi,Soukhoumi,Ssuchum,Suchum,Suchumi,Suhhumi,Suhumi,Suhumo,Sujumi,Sukhum,Sukhumi,Suĥumo,su hu mi,sufumi,suhumi,swhwmy,Аҟəа,СУХУМИ,Сухум,Сухуми,סוחומי,スフミ,苏呼米,수후미 43.00697 40.9893 P PPLA GE 02 81546 21 Asia/Tbilisi 2012-01-14
-611902 Sighnaghi Sighnaghi SIGNAKHI,Sighnaghi,Signagi,Signakh,Signakhi,Ssignachi,СИГНАХИ 41.62046 45.92198 P PPL GE 67 1923 779 Asia/Tbilisi 2012-01-17
-611964 Shorapani Shorapani Schorapani,Schorpani,Sharadan',Sharadan’,Shorapan',Shorapani,Shorapan’,Shorpani 42.0898 43.08662 P PPL GE 61 1699 273 Asia/Tbilisi 2012-01-17
-612012 Naghvarevi Naghvarevi Naghvarevi,SHAUMJANI,Saulaveri,Schaumjani,Shaumiani,Shaumyani,Shulaveri,Shulavery,ШАУМЯНИ 41.35272 44.76178 P PPL GE 00 5238 493 Asia/Tbilisi 2012-01-17
-612053 Senaki Senaki Achal Senaki,Akhalsenaki,Micha-Zchakaja,Mikha Tskhakaya,Novo-Senaki,SENAKI,Senaki,Tskhakaya,Tskhakuya,СЕНАКИ,სენაკი 42.27042 42.0675 P PPL GE 71 27752 36 Asia/Tbilisi 2012-01-17
-612126 Samtredia Samtredia SAMTREDIA,Samtredia,Ssamtredia,САМТРЕДИА 42.1537 42.33517 P PPL GE 00 28748 23 Asia/Tbilisi 2010-08-09
-612230 Sagarejo Sagarejo SAGAREDZHO,Sagaredzho,Sagarejo,САГАРЕДЖО 41.73397 45.33148 P PPL GE 67 12173 748 Asia/Tbilisi 2012-01-17
-612287 Rust’avi Rust'avi RUSTAVI,Roustavi,Rust'avi,Rustavi,Rustavis,Rustawi,Rusthavi,Rust’avi,rustavi,rwstwwy,РУСТАВИ,Рустави,רוסתווי,რუსთავი 41.54949 44.99323 P PPL GE 00 50000 338 Asia/Tbilisi 2012-01-17
-612338 Qvareli Qvareli KVARELI,Kvareli,Kvarely,Qvareli,КВАРЕЛИ 41.95492 45.81716 P PPL GE 67 8612 442 Asia/Tbilisi 2012-01-17
-612366 P’ot’i P'ot'i P'ot'i,Poti,P’ot’i,poti,Поти,ფოთი 42.14616 41.67197 P PPL GE 71 47149 1 Asia/Tbilisi 2012-01-17
-612502 P’asanauri P'asanauri P'asanauri,PASANAURI,Pasanaur,Pasanauri,Pasanuri,Passanauri,P’asanauri,ПАСАНАУРИ 42.3506 44.68912 P PPL GE 69 7667575 2904 1070 Asia/Tbilisi 2012-01-17
-612592 Oni Oni ONI,Oni,ОНИ 42.57944 43.4425 P PPLA2 GE 70 3012 838 Asia/Tbilisi 2010-08-20
-612648 Ochkhamuri Ochkhamuri OCHKHAMURI,Och'khamuri,Ochkamuri,Ochkhamuri,ochkhamuri,ОЧХАМУРИ,ოჩხამური 41.85975 41.85309 P PPL GE 04 2061 22 Asia/Tbilisi 2012-02-01
-612652 Och’amch’ire Och'amch'ire OCHAMCHIRA,Och'amch'ire,Ochamchira,Ochemchiri,Ochemchiry,Ochemechiri,Och’amch’ire,Otschemtschiri,ОЧАМЧИРА 42.71232 41.46863 P PPL GE 00 15517 5 Asia/Tbilisi 2012-01-17
-612691 Ninotsminda Ninotsminda Bogdanovka,NINOCMINDA,Ninotsminda,НИНОЦМИНДА,ეიეოწმინდა 41.26458 43.5916 P PPLA2 GE 72 7667662 6141 1944 Asia/Tbilisi 2011-02-27
-612890 Mts’khet’a Mts'khet'a Mckheta,Mts'khet'a,Mtskhera,Mtskheta,Mts’khet’a,Mtzkhet,Mzcheta,Мцхета 41.84514 44.71875 P PPLA GE 69 7423 476 Asia/Tbilisi 2012-01-14
-612987 Mestia Mestia MESTIA,Mestia,Mestiya,Mestno,Seti,МЕСТИА,მესტია 43.04581 42.7278 P PPL GE 71 3187 1412 Asia/Tbilisi 2012-01-17
-613065 Martvili Martvili Gegechkari,Gegechkori,MARTVILI,Martvili,МАРТВИЛИ,მარტვილი 42.41436 42.37924 P PPL GE 71 5483 194 Asia/Tbilisi 2012-01-17
-613074 Marneuli Marneuli Borchalo,MARNEULI,Marneuli,Sarvan,Sarwan,МАРНЕУЛИ 41.47588 44.80894 P PPL GE 68 7667578 18755 408 Asia/Tbilisi 2012-01-17
-613093 Manglisi Manglisi MANGLISI,Manglis,Manglisi,МАНГЛИСИ 41.69698 44.38448 P PPL GE 68 7667683 4817 1195 Asia/Tbilisi 2012-01-17
-613125 Makhinjauri Makhinjauri MAKHINDZHAURI,Makhindzhauri,Makhinjauri,МАХИНДЖАУРИ 41.67385 41.69401 P PPL GE 04 2736 19 Asia/Tbilisi 2012-01-17
-613226 Lentekhi Lentekhi LENTEKHI,Leksura,Lentekhi,ЛЕНТЕХИ 42.78556 42.72611 P PPL GE 70 10442 826 Asia/Tbilisi 2011-02-01
-613342 Lagodekhi Lagodekhi LAGODEKHI,Lagodechis,Lagodekhi,lagodekhi,lgwdhy,ЛАГОДЕХИ,לגודחי,ლაგოდეხი 41.82681 46.27667 P PPL GE 67 6550 469 Asia/Tbilisi 2012-01-17
-613559 K’veda Ch’khorotsqu K'veda Ch'khorotsqu K'veda Ch'khorotsqu,Kveda Chkhorotsku,K’veda Ch’khorotsqu,ქვედა ჩხოროწყუ 42.48103 42.09661 P PPL GE 71 4357 125 Asia/Tbilisi 2012-01-17
-613607 K'ut'aisi K'ut'aisi KUTAISI,Khuthaisi,Kutais,Kutaisi,Kutaisk,Kutaissi,Kutayis,Kutayıs,Kutaïsi,kutaishi,kutaisi,КУТАИСИ,Кутаиси,Кутаїсі,כותאיסי,קוטאיסי,ქუთაისი,クタイシ,쿠타이시 42.24961 42.69974 P PPLA GE 66 178338 132 Asia/Tbilisi 2010-10-01
-613641 Kulashi Kulashi KULASHI,Kulashi,КУЛАШИ 42.20444 42.34944 P PPL GE 00 2691 38 Asia/Tbilisi 2012-01-17
-613762 Kobuleti Kobuleti K'obulet'i,Kobuleti,Kobulyety,Кобулети 41.82 41.77528 P PPL GE GE 04 18600 9 Asia/Tbilisi 2008-11-04
-613902 Khoni Khoni Choni,KHONI,Khoni,Tsulukidze,Zulukidse,ХОНИ 42.3226 42.42061 P PPL GE 66 10796 118 Asia/Tbilisi 2012-01-17
-613918 Khobi Khobi KHOBI,Khobi,Khopi,khobi,ХОБИ,ხობი 42.31558 41.89871 P PPL GE 71 5375 15 Asia/Tbilisi 2012-01-17
-613988 Khashuri Khashuri Chaschuri,KHASHURI,Khachuri,Khashuri,Khasuri,Mikhailovo,Mikhaylovo,Stalinissi,ХАШУРИ,ხაშური 41.99414 43.59994 P PPLA2 GE 73 613987 27811 700 Asia/Tbilisi 2011-02-26
-614087 Step’antsminda Step'antsminda KAZBEGI,Kasbek,Kazbeg,Kazbegi,Kazbek,Qazbegi,Step'antsminda,Step’antsminda,КАЗБЕГИ 42.65667 44.64333 P PPL GE 69 2628 1767 Asia/Tbilisi 2012-01-17
-614104 Kaspi Kaspi KASPI,Kasni,Kaspi,КАСПИ 41.9252 44.42568 P PPL GE 73 14734 549 Asia/Tbilisi 2012-01-17
-614217 Java Java Chvrivi,DZHAVA,Dzhava,Java,ДЖАВА 42.39972 43.93667 P PPLA2 GE 24 426 1084 Asia/Tbilisi 2010-08-20
-614351 Gurjaani Gurjaani GURDZHAANI,Gurdjaani,Gurdzhaani,Gurdzhani,Gurjaani,ГУРДЖААНИ 41.74292 45.80111 P PPL GE 67 7667580 9466 400 Asia/Tbilisi 2012-01-17
-614409 Gudaut’a Gudaut'a Gudaut'a,Gudauta,Gudauti,Gudauty,Gudaut’a,gudauta,Гудаута,გუდაუთა 43.10547 40.62067 P PPL GE 02 7700 9 Asia/Tbilisi 2012-01-17
-614455 Gori Gori GORI,Gori,Goris,ge li,goli,gori,gwry,ГОРИ,Гори,גורי,گوری,გორი,ゴリ,哥里,고리 41.98422 44.11578 P PPL GE 73 46676 600 Asia/Tbilisi 2012-01-17
-614575 Gardabani Gardabani GARDABANI,Gardabani,Karaya,Karayazi,Karayazy,ГАРДАБАНИ 41.46054 45.09283 P PPL GE 68 7667577 10972 306 Asia/Tbilisi 2012-01-17
-614580 Gant’iadi Gant'iadi Candrypsh,Gant'iadi,Gantiandi,Gant’iadi,Pilenkova,Pilenkovo,Pilyenkovo,Seleniye Pilenkovo,gantiadi,Гантианди,Цандрыпш,განთიადი 43.38111 40.07944 P PPL GE 00 10000 6 Asia/Tbilisi 2012-01-17
-614613 Gali Gali GALI,Gali,gali,ГАЛИ,გალი 42.62655 41.73808 P PPL GE 02 11861 61 Asia/Tbilisi 2012-01-17
-614622 Gagra Gagra GAGRA,Gagra,Gagrae,Gagri,Gagry,Nkankra,gageula,gagra,gagura,ggrh,ghaghra,jia ge la,kak ra,Γκάγκρα,ГАГРА,Гагрæ,Гагра,גגרה,غاغرا,গাগ্রা,กากรา,გაგრა,ガグラ,加格拉,가그라 43.30387 40.25614 P PPL GE 02 8266 17 Asia/Tbilisi 2012-01-17
-614740 Jvari Jvari DZHVARI,Dzhvara,Dzhvari,Dzhvary,Dzhvarzeni,Jvari,jvari,ДЖВАРИ,ჯვარი 42.71692 42.052 P PPL GE 71 4756 335 Asia/Tbilisi 2012-01-17
-614890 Dmanisi Dmanisi Dmanisi,Dumanisi,Дманиси 41.52514 44.3472 P PPL GE 00 3038 1168 Asia/Tbilisi 2012-01-17
-614897 Dioknisi Dioknisi 41.62933 42.39171 P PPL GE 00 7725 1086 Asia/Tbilisi 2006-01-17
-614934 Didi Lilo Didi Lilo Didi Lilo,Didi-Lilo,Lilo,Диди-Лило 41.73611 44.96472 P PPL GE 00 3349 789 Asia/Tbilisi 2012-01-17
-615403 Borjomi Borjomi BORZHOMI,Borcomi,Bordschomi,Bordzomi,Bordžomi,Borjam,Borjomi,Borjomi - borjomi,Borjomi - ბორჯომი,Borshom,Borzhomi,Borzomi,Borżomi,boleujomi,borjomi,borujomi,БОРЖОМИ,Боржоми,ბორჯომი,ボルジョミ,보르조미 41.85272 43.41284 P PPL GE 72 13825 810 Asia/Tbilisi 2012-01-17
-615419 Bolnisi Bolnisi Bolnisi,Bolnissi,Katharinenfeld,Luxemburg,Luxemburgi,Lyuksemburg,Lyuksemburg-Gruzinskiy,Lyuksemburgi,Lyuksemburi,Yekaterinofel'd,Yekaterinofel’d,bolnisi,bwlnysy,Болниси,בולניסי,ბოლნისი 41.44794 44.53838 P PPL GE 00 13800 524 Asia/Tbilisi 2012-01-17
-615460 Bichvint’a Bichvint'a Bichvint'a,Bichvinta,Bichvint’a,Bitchvinta,PICUNDA,Picunda,Pitsoenda,Pitsunda,Pitsundo,Pitsundskiy,Pitunda,Piţunda,byz'wynth,ПИЦУНДА,Пицунда,ביצ'וינתה,ბიჭვინთა 43.16198 40.34102 P PPL GE 02 8401 1 Asia/Tbilisi 2012-01-17
-615532 Bat’umi Bat'umi BATUMI,Bat'umi,Bathumi,Batoemi,Batoumi,Batum,Batumi,Batumis,Batûm,Bat’umi,bato~umi,batumi,btwmy,БАТУМИ,Батуми,בטומי,בתומי,ბათუმი,バトゥミ,바투미 41.64159 41.63593 P PPLA GE 04 121806 5 Asia/Tbilisi 2012-01-14
-615583 Bakuriani Bakuriani BAKURIANI,Bakuiani,Bakuriani,БАКУРИАНИ 41.74972 43.5325 P PPL GE 13 2392 1674 Asia/Tbilisi 2012-01-17
-615611 Bagdadi Bagdadi 41.81667 46.03333 P PPL GE 00 4564 251 Asia/Tbilisi 2007-05-30
-615660 Aspindza Aspindza ASPINDZA,Aspindza,АСПИНДЗА,ასპინძა 41.57389 43.24826 P PPL GE 72 3940 1084 Asia/Tbilisi 2012-01-17
-615776 Ambrolauri Ambrolauri AMBROLAURI,Ambralauri,Ambrolauri,АМБРОЛАУРИ 42.52111 43.16222 P PPLA2 GE 70 2408 609 Asia/Tbilisi 2010-08-20
-615844 Akhmeta Akhmeta AKHMETA,Akhmeta,Akhmeti,Akhmety,АХМЕТА 42.03111 45.2075 P PPLA2 GE 67 8569 582 Asia/Tbilisi 2010-08-20
-615860 Akhalts’ikhe Akhalts'ikhe AKHALCIKHE,Achalziche,Achalzych,Akhalts'ikhe,Akhaltsikh,Akhaltsykha,Akhaltsykhe,Akhalts’ikhe,АХАЛЦИХЕ 41.63901 42.98262 P PPL GE 00 17298 984 Asia/Tbilisi 2012-01-17
-615893 Akhalk’alak’i Akhalk'alak'i Achalkalaki,Akhalk'alak'i,Akhalkalak,Akhalkalaki,Arkhalkalaki,Ахалкалаки 41.40514 43.48629 P PPL GE 06 9800 1717 Asia/Tbilisi 2010-06-18
-615912 Stantsiya Novyy Afon Stantsiya Novyy Afon Novyj Afon,Novyy Afon,Psirtskha,Psyrtskha,Stantsiya Akhali-Afoni,Новый Афон 43.08056 40.83833 P PPL GE GE 00 26636 8 Asia/Tbilisi 2008-09-03
-615914 Akhalgori Akhalgori Akhalgori,LENINGORI,Leningori,ЛЕНИНГОРИ 42.12597 44.48333 P PPL GE 69 1420 822 Asia/Tbilisi 2012-01-17
-615921 Akhaldaba Akhaldaba Akhaldaba,akhaldaba,Ахалдаба,ახალდაბა 41.65395 42.15163 P PPL GE 04 3640 748 Asia/Tbilisi 2012-01-17
-615943 Agara Agara AGARA,Agara,АГАРА 42.03761 43.82382 P PPL GE 25 5811 642 Asia/Tbilisi 2012-01-17
-615973 Adigeni Adigeni ADIGENI,Adigeni,АДИГЕНИ 41.6819 42.69867 P PPL GE 72 1313 1253 Asia/Tbilisi 2012-01-17
-616022 Abasha Abasha ABASHA,Abacha,Abascha,Abasha,abasha,АБАША,აბაშა 42.20959 42.22111 P PPL GE 71 6221 26 Asia/Tbilisi 2012-01-17
-824288 Tsqaltubo Tsqaltubo CKHALTUBO,Tskaltubo,Tskhaltubo,Tsqaltubo,ЦХАЛТУБО 42.34129 42.5976 P PPL GE 66 16736 142 Asia/Tbilisi 2012-01-19
-824385 Naruja Naruja Naruja,Sovkhoz Narudzhskiy,naruja,ნარუჯა 41.90694 41.95417 P PPL GE 65 3065 144 Asia/Tbilisi 2012-01-19
-824613 Bakurianis Andeziti Bakurianis Andeziti BAKURIANSKIJ ANDEZIT,Bakurianis Andeziti,БАКУРИАНСКИЙ АНДЕЗИТ 41.73371 43.47242 P PPL GE 13 1085 1568 Asia/Tbilisi 2012-01-19
-6324644 Meria Meria 41.69278 44.80154 P PPLG GE 0 433 Asia/Tbilisi 2007-02-01
-6940391 Tskhinvali Tskhinvali 42.23 43.97 P PPLA2 GE 15000 860 877 Asia/Tbilisi 2010-08-20
-7667751 Kharagauli Kharagauli 42.02137 43.19773 P PPLA2 GE 66 0 310 Asia/Tbilisi 2011-02-16
-3380290 Sinnamary Sinnamary Sinamary,Sinnama,Sinnamari,Sinnamary 5.38333 -52.95 P PPL GF GF 973 9731 97312 3180 2 America/Cayenne 2012-01-18
-3380387 Saint-Laurent-du-Maroni Saint-Laurent-du-Maroni Laurent,Maroni,Saint Laurent,Sainte Laurent,Sen-Loran-dju-Maroni,Сен-Лоран-дю-Марони 5.5 -54.03333 P PPL GF GF 973 9732 97311 24287 6 America/Cayenne 2011-12-14
-3380402 Saint-Georges-de-l'Oyapock Saint-Georges-de-l'Oyapock Oyapock 3.9 -51.8 P PPL GF GF 973 9731 97308 2742 11 America/Cayenne 2011-11-02
-3380450 Roura Roura Roura 4.72629 -52.32742 P PPL GF GF 973 9731 97310 2229 9 America/Cayenne 2012-01-18
-3380892 Rémire-Montjoly Remire-Montjoly Montjoli 4.91667 -52.26667 P PPL GF GF 973 9731 97309 19029 7 America/Cayenne 2011-12-14
-3380965 Matoury Matoury Matoary,Matoury 4.847 -52.32156 P PPL GF GF 973 9731 97307 26350 28 America/Cayenne 2012-02-28
-3381041 Mana Mana Mana 5.65919 -53.77666 P PPL GF GF 973 9732 97306 5885 1 America/Cayenne 2012-01-18
-3381117 Macouria Macouria 4.91164 -52.37632 P PPL GF 00 8773 2 America/Cayenne 2012-02-28
-3381303 Kourou Kourou Bourg de Kourou,Kouro,Kourou,Kur,Кур 5.15518 -52.64779 P PPL GF GF 973 9731 97304 24029 5 America/Cayenne 2012-02-02
-3381428 Iracoubo Iracoubo Iracoubo 5.48024 -53.20109 P PPL GF GF 973 9731 97303 1536 3 America/Cayenne 2012-01-18
-3381538 Grand-Santi Grand-Santi Grand-Santi 4.25 -54.38333 P PPL GF GF 973 9732 97357 3941 60 America/Cayenne 2012-01-18
-3382160 Cayenne Cayenne Caiena,Caienna,Cayene,Cayenne,Kajenas,Kajenna,kaien'nu,Кайенна,קאיין,カイエンヌ 4.93333 -52.33333 P PPLC GF GF 973 9731 97302 61550 7 America/Cayenne 2012-02-03
-3382226 Camopi Camopi Camopi 3.16548 -52.31575 P PPL GF GF 973 9731 97356 1295 119 America/Cayenne 2012-01-18
-3382527 Apatou Apatou Apatou 5.155 -54.34722 P PPL GF GF 973 9732 97360 4752 5 America/Cayenne 2012-01-18
-3042287 Saint Peter Port Saint Peter Port Saint Peter Port,Saint Pierre Port,Saint-Pierre-Port,Sent Piter Port,Sent-Piter-Port,St Peter Port,St. Peter Port,Сент Питер Порт,Сент-Питер-Порт,セント・ピーター・ポート 49.45981 -2.53527 P PPLC GG 00 16488 10 Europe/Guernsey 2010-05-30
-2293801 Yendi Yendi Jendi,Yendi 9.44272 -0.00991 P PPL GH 00 42972 208 Africa/Accra 2012-01-18
-2294034 Winneba Winneba Simpa,Vinnebe,Winneba,Winnebah,Виннебе 5.35113 -0.62313 P PPL GH 00 44254 25 Africa/Accra 2011-02-04
-2294086 Wenchi Wenchi 7.73916 -2.10456 P PPL GH 00 31411 308 Africa/Accra 2011-06-05
-2294206 Wa Wa Va,Wa,Ва 10.06069 -2.50192 P PPLA GH 11 78107 326 Africa/Accra 2012-01-18
-2294665 Teshi Teshi Tassi,Teshhi,Teshi,Teshie,Тещи 5.58365 -0.10722 P PPL GH 00 144013 13 Africa/Accra 2012-01-18
-2294700 Tema Tema Tema,Temma,Toma,Тема 5.66698 -0.01657 P PPL GH 00 155782 25 Africa/Accra 2011-11-01
-2294727 Techiman Techiman Takyiman,Techiman,Tekyiman,Tekyiman-Brong 7.58616 -1.94137 P PPL GH 00 69720 398 Africa/Accra 2012-01-18
-2294768 Tarkwa Tarkwa Tarkwa,Tarquah 5.30644 -1.98474 P PPL GH 00 33466 86 Africa/Accra 2012-01-18
-2294877 Tamale Tamale Tamale,Тамале 9.40078 -0.8393 P PPLA GH 06 360579 196 Africa/Accra 2012-01-18
-2294915 Takoradi Takoradi 4.88447 -1.75536 P PPL GH 00 232919 22 Africa/Accra 2011-06-05
-2294938 Tafo Tafo Old Tafo,Tafo 6.73453 -1.61275 P PPL GH 00 50457 291 Africa/Accra 2012-01-18
-2294962 Swedru Swedru Agona,Agona Swedru,Jwewuhu,Swedru 5.53711 -0.69984 P PPL GH 00 50293 74 Africa/Accra 2012-01-18
-2295021 Sunyani Sunyani Sunyani 7.33991 -2.32676 P PPLA GH 03 70299 298 Africa/Accra 2012-01-18
-2295065 Suhum Suhum Suhum 6.04089 -0.45004 P PPL GH 00 34995 182 Africa/Accra 2012-01-18
-2295385 Shama Junction Shama Junction Shama,Shama Junction 5.00872 -1.63011 P PPL GH 00 20946 12 Africa/Accra 2012-01-18
-2295458 Sekondi Sekondi Sekondi,Sekondi-Takoradi,Sékondi,Секонди 4.934 -1.7137 P PPLA GH 09 138872 10 Africa/Accra 2011-03-29
-2295517 Savelugu Savelugu Saveluga,Savelugu 9.62441 -0.8253 P PPL GH 06 29310 169 Africa/Accra 2012-01-18
-2295672 Saltpond Saltpond Achimfu,Saltpond 5.20913 -1.06058 P PPL GH 00 18794 14 Africa/Accra 2012-01-18
-2295684 Salaga Salaga Salaga 8.55083 -0.51875 P PPL GH 00 19609 163 Africa/Accra 2012-01-18
-2295840 Prestea Prestea Esamang,Prestea 5.43274 -2.14284 P PPL GH 00 31607 59 Africa/Accra 2012-01-18
-2296458 Oduponkpehe Oduponkpehe 5.53302 -0.4224 P PPL GH 00 44227 26 Africa/Accra 2011-06-05
-2296564 Oda Oda Akim Oda,Insuaim,Nsuaem,Oda,Ода 5.92313 -0.99507 P PPL GH 00 43399 133 Africa/Accra 2012-01-18
-2296606 Obuasi Obuasi Oboase,Obuasi,Obuassi 6.20602 -1.66191 P PPL GH 00 137856 233 Africa/Accra 2012-01-18
-2296969 Nungua Nungua Nungoa,Nungua,Nungwa 5.60106 -0.07713 P PPL GH 00 70483 28 Africa/Accra 2012-01-18
-2297141 Nsawam Nsawam 5.80893 -0.35026 P PPL GH 00 32950 61 Africa/Accra 2011-06-05
-2297313 Nkawkaw Nkawkaw Nkawkaw,Nkokoo 6.55121 -0.7662 P PPL GH 00 47162 236 Africa/Accra 2012-01-18
-2297505 Navrongo Navrongo Navrongo 10.89557 -1.0921 P PPL GH 10 25470 198 Africa/Accra 2012-01-18
-2297810 Mumford Mumford Gamma,Gammah,Jumba,Mumford,Mumfort 5.26176 -0.75897 P PPL GH 00 13983 33 Africa/Accra 2012-01-18
-2297834 Mpraeso Mpraeso Mpraeso 6.5932 -0.73462 P PPL GH 00 9007 477 Africa/Accra 2012-02-02
-2298264 Mampong Mampong Mampon,Mampon Asante,Mampong 7.06273 -1.4001 P PPL GH 00 35887 395 Africa/Accra 2012-01-18
-2298330 Madina Madina 5.68234 -0.16413 P PPL GH 00 101207 69 Africa/Accra 2011-06-05
-2298890 Kumasi Kumasi Coomassie,Kumase,Kumasi,Kumasis,Kumassi,ku ma xi,kumasi,Кумаси,库马西,쿠마시 6.68848 -1.62443 P PPLA GH 02 1468609 270 Africa/Accra 2011-11-01
-2299233 Kpandu Kpandu Gabi,Kpando,Kpandu,Tsakpe 6.99536 0.29306 P PPL GH 00 22525 153 Africa/Accra 2012-01-18
-2299236 Kpandae Kpandae Kpandae,Kpandai 8.46885 -0.01127 P PPL GH 00 8652 183 Africa/Accra 2012-01-18
-2299349 Konongo Konongo Konongo 6.61667 -1.21667 P PPL GH 00 32130 230 Africa/Accra 2012-01-18
-2299522 Koforidua Koforidua Koforidua,Кофоридуа 6.09408 -0.25913 P PPLA GH 05 96266 172 Africa/Accra 2012-01-18
-2299625 Kintampo Kintampo Kintampo 8.05627 -1.73058 P PPL GH 00 22731 343 Africa/Accra 2012-01-18
-2299636 Kibi Kibi Kibbi,Kibi,Kyebi 6.16494 -0.55376 P PPL GH 00 9399 318 Africa/Accra 2012-01-18
-2299642 Kete Krachi Kete Krachi Kete Krachi,Kete Krakye,Kete-Kratschi,Kete-Ktachi,Krachi,Krete Kratschi 7.79391 -0.0498 P PPL GH 00 9182 117 Africa/Accra 2012-01-18
-2299645 Keta Keta Keta,Kitta,Kwitta,Quittah 5.91793 0.9879 P PPL GH 00 18077 0 Africa/Accra 2012-01-18
-2300372 Hohoe Hohoe Chochoe,Chokhoe,Hohoe,Khokhoe 7.15181 0.47362 P PPL GH 00 40383 173 Africa/Accra 2012-01-18
-2300379 Ho Ho Ho,Hohoe,Kho,Хо 6.6 0.46667 P PPLA GH 08 69998 165 Africa/Accra 2012-01-18
-2300721 Gbawe Gbawe 5.57714 -0.31035 P PPL GH 00 44645 31 Africa/Accra 2011-06-05
-2300883 Foso Foso 5.70119 -1.28657 P PPL GH 00 15637 148 Africa/Accra 2011-06-05
-2301190 Elmina Elmina Dena,Edina,Ehlmina,Elmina,Saint George Del Mina,Sao Jorge da Mina,São Jorge da Mina,Элмина 5.08981 -1.34804 P PPL GH 00 25560 6 Africa/Accra 2012-01-18
-2301217 Ejura Ejura Ejura 7.38558 -1.35617 P PPL GH 00 43403 224 Africa/Accra 2012-01-18
-2301400 Dunkwa Dunkwa 5.96562 -1.77995 P PPL GH 00 25410 136 Africa/Accra 2011-06-05
-2301464 Duayaw Nkwanta Duayaw Nkwanta Duayaw Nkwanta,Nkwanta 7.17242 -2.1028 P PPL GH 00 14227 331 Africa/Accra 2012-01-18
-2301639 Dom Dom Dam,Dom,Dome,Дом 5.65003 -0.2361 P PPL GH 00 47260 35 Africa/Accra 2012-01-18
-2302357 Cape Coast Cape Coast Cabo Corso,Cape Coast,Cape Coast Castle,Igua Ogwa,Ogwa 5.10535 -1.2466 P PPLA GH 04 143015 21 Africa/Accra 2011-02-04
-2302821 Bolgatanga Bolgatanga Bolagatanga,Bolgatanga,Bolgatange,Болгатанге 10.78556 -0.85139 P PPLA GH 10 54430 191 Africa/Accra 2012-01-18
-2303060 Bibiani Bibiani Babianeha,Bebiani,Bebianiha,Bibiani 6.46346 -2.31938 P PPL GH 00 19076 223 Africa/Accra 2012-01-18
-2303125 Berekum Berekum Berekum 7.4534 -2.58404 P PPL GH 00 46287 330 Africa/Accra 2012-01-18
-2303224 Bekwai Bekwai Bekawi,Bekwai 6.45335 -1.57741 P PPL GH 00 4260 231 Africa/Accra 2012-01-18
-2303236 Begoro Begoro Begoro 6.38706 -0.37738 P PPL GH 00 23759 460 Africa/Accra 2012-01-18
-2303258 Bechem Bechem 7.09034 -2.02498 P PPL GH 00 14391 296 Africa/Accra 2011-06-05
-2303287 Bawku Bawku Bawku 11.0616 -0.24168 P PPL GH 10 56830 252 Africa/Accra 2012-01-18
-2303611 Axim Axim Axim 4.86992 -2.24046 P PPL GH 09 24500 15 Africa/Accra 2012-01-18
-2304220 Asamankese Asamankese 5.86006 -0.6635 P PPL GH 00 36589 147 Africa/Accra 2011-06-05
-2304389 Apam Apam Apam,Appam,Апам 5.28483 -0.73711 P PPL GH 00 20147 12 Africa/Accra 2012-01-18
-2304548 Anloga Anloga Anloga,Awunaga 5.79473 0.89728 P PPL GH 00 29748 6 Africa/Accra 2012-01-18
-2304931 Akwatia Akwatia Akwatia 6.04024 -0.80876 P PPL GH 00 20451 138 Africa/Accra 2012-02-02
-2305027 Akropong Akropong Akropong,Akropong-Akwapim,Akuropon 5.97462 -0.08542 P PPL GH 00 11096 454 Africa/Accra 2012-01-18
-2305164 Akim Swedru Akim Swedru Akim Swedru 5.8938 -1.01636 P PPL GH 00 8355 140 Africa/Accra 2012-02-02
-2305537 Agogo Agogo Agogo 6.80004 -1.08193 P PPL GH 00 31554 418 Africa/Accra 2012-01-18
-2306079 Achiaman Achiaman 5.7 -0.33333 P PPL GH 00 202932 39 Africa/Accra 2006-01-27
-2306104 Accra Accra Accra,Acra,Akkra,Akkrae,Akra,Akrao,Nkran,a ke la,akeula,akra,akura,΄Aκκρα,Аккрæ,Аккра,Акра,אקרה,आक्रा,አክራ,アクラ,阿克拉,아크라 5.55602 -0.1969 P PPLC GH 01 1963264 33 Africa/Accra 2010-05-28
-2306119 Aburi Aburi Aburi 5.84718 -0.17754 P PPL GH 00 15053 425 Africa/Accra 2012-01-18
-2306224 Aboso Aboso Aboso,Abosso 5.3617 -1.94732 P PPL GH 00 8790 98 Africa/Accra 2012-01-18
-2411585 Gibraltar Gibraltar Calpe,Cebelitarik,Cebelitarık,Djibraltar,Gibbilterra,Gibilterra,Gibraltar,Gibraltaras,Gibraltaro,Gibraltár,Gíbraltar,Kamaka,Xibraltar,Xibraltar - Gibraltar,gybrltr,jibeulolteo,jiburarutaru,mhmyt jbl tarq,zhi bu luo tuo,Ĝibraltaro,Γιβραλτάρ,Гибралтар,Ґібралтар,גיברלטר,جبلالطارق,محمية جبل طارق,ジブラルタル,直布罗陀,지브롤터 36.14474 -5.35257 P PPLC GI 00 26544 11 Europe/Gibraltar 2010-08-16
-3418910 Upernavik Upernavik Summer Place,Upernavik,Upernivik 72.78684 -56.15485 P PPL GL 05 1129 -9999 America/Godthab 2011-02-16
-3419842 Sisimiut Sisimiut Amerdlok,Holsteinborg,Holsteinsborg,Holstenborg,Holstensborg,Sisimiut 66.93946 -53.6735 P PPLA GL 06 5227 -9999 America/Godthab 2011-02-16
-3420768 Qasigiannguit Qasigiannguit Christianshaab,Christianshab,Christianshåb,Kasigianguit,Qasigianguit,Qasigiannguit 68.81926 -51.19221 P PPL GL 05 1341 13 America/Godthab 2011-02-16
-3420846 Qaqortoq Qaqortoq Julian Haab,Julianehaab,Julianehab,Julianehåb,Kakortak,Kakortok,Qaqortoq,kakotokku,Какорток,カコトック 60.71667 -46.03333 P PPLA GL 04 3224 -9999 America/Godthab 2012-01-18
-3421193 Paamiut Paamiut Frederikshaab,Frederikshab,Frederikshåb,Paamiut,Pamiut 61.99402 -49.66776 P PPL GL 07 1862 1 America/Godthab 2011-02-16
-3421319 Nuuk Nuuk Godthaab,Godthab,Godthåb,Nououk,Nuk,Nuuk,Nuuk (Godthab),Nuuk (Godthåb),nu ke,nukeu,nuku,Νουούκ,Нук,Нуук,נאוק,ヌーク,努克,누크 64.18347 -51.72157 P PPLC GL 07 14798 5 1 America/Godthab 2011-09-24
-3421719 Narsaq Narsaq Narsak,Narsaq,Narssaq 60.91667 -46.05 P PPL GL 04 1633 164 America/Godthab 2012-01-18
-3421765 Nanortalik Nanortalik Ilivileq,Nanortalik 60.14317 -45.23715 P PPL GL 04 1509 -9999 America/Godthab 2011-02-16
-3421982 Maniitsoq Maniitsoq Maitsoq,Maniitsoq,Manitsok,Manitsoq,Sukkertoppen 65.41667 -52.9 P PPL GL 06 2866 -9999 America/Godthab 2012-01-18
-3423146 Ilulissat Ilulissat Ilulisat,Ilulissat,Jakobshavn,irurisatto,yi lu li sa te,イルリサット,伊卢利萨特 69.21667 -51.1 P PPLA GL 05 4413 11 America/Godthab 2012-01-18
-3424607 Tasiilaq Tasiilaq Ammassalik,Angmagssalik,Angmagsslik,Angmassalik 65.61451 -37.63676 P PPL GL 07 1829 -9999 America/Godthab 2011-02-16
-3424901 Aasiaat Aasiaat Aasiaat,Ausiait,Egedesminde 68.70981 -52.86988 P PPL GL 03 3115 1 America/Godthab 2011-02-16
-3426193 Uummannaq Uummannaq Umanak,Umanaq,Ũmánaq 70.67472 -52.12639 P PPL GL 05 1299 -9999 America/Godthab 2011-02-16
-2411692 Wellingara Ba Wellingara Ba Sitafuma,Wellingara Ba,Willingara 13.41667 -15.4 P PPL GM 02 1476 28 Africa/Banjul 2012-01-18
-2411703 Wassu Wassu 13.69094 -14.87884 P PPL GM 03 1380 11 Africa/Banjul 2011-08-02
-2411765 Toniataba Toniataba Toniataba,Tonitaba 13.43333 -15.58333 P PPL GM 02 1755 4 Africa/Banjul 2012-01-18
-2411862 Sutukung Sutukung Surukung,Sutukung 13.46667 -15.26667 P PPL GM 02 1506 11 Africa/Banjul 2012-01-18
-2411863 Sutukoba Sutukoba Sutuko,Sutukoba 13.5 -14.01667 P PPL GM 04 2693 29 Africa/Banjul 2012-01-18
-2411866 Sun Kunda Sun Kunda Song Kunda,Sun Kunda 13.38333 -13.85 P PPL GM 04 1306 29 Africa/Banjul 2012-01-18
-2411877 Sukuta Sukuta Sukuta,Sukutta 13.61667 -14.91667 P PPL GM 03 1364 13 Africa/Banjul 2012-01-18
-2411880 Sukuta Sukuta Dembadu,Sabiji,Sukuta,Sukuto,Sukutta 13.41033 -16.70815 P PPL GM 05 15131 27 Africa/Banjul 2011-02-02
-2411885 Sudowol Sudowol 13.36667 -13.96667 P PPL GM 04 1502 23 Africa/Banjul 2006-01-17
-2411903 Somita Somita 13.20583 -16.30556 P PPL GM 05 2541 27 Africa/Banjul 2006-01-17
-2411905 Soma Soma Soma 13.43333 -15.53333 P PPL GM 02 9869 21 Africa/Banjul 2012-01-18
-2411970 Si Kunda Si Kunda 13.43333 -15.56667 P PPL GM 02 1344 28 Africa/Banjul 2006-01-17
-2411999 Saruja Saruja 13.55 -14.91667 P PPL GM 03 1959 11 Africa/Banjul 2006-01-17
-2412135 Sara Kunda Sara Kunda Sara Kunda,Sarra Kunda 13.53333 -15.41667 P PPL GM 07 1316 20 Africa/Banjul 2012-01-18
-2412158 Sankwia Sankwia Sankuia,Sankwia 13.46667 -15.51667 P PPL GM 02 1831 4 Africa/Banjul 2012-01-18
-2412199 Sami Sami 13.58333 -15.2 P PPL GM 03 2794 19 Africa/Banjul 2006-01-17
-2412248 Sabi Sabi 13.23333 -14.2 P PPL GM 04 7738 39 Africa/Banjul 2006-01-17
-2412252 Saba Saba 13.51639 -16.04917 P PPL GM 07 1974 15 Africa/Banjul 2006-01-17
-2412272 Perai Perai Perai,Pirai,Priakunda 13.38333 -14.03333 P PPL GM 04 1026 14 Africa/Banjul 2012-01-18
-2412279 Pateh Sam Pateh Sam Pate,Pateh Sam 13.61667 -15.06667 P PPL GM 03 1164 22 Africa/Banjul 2012-01-18
-2412344 Nyamanari Nyamanari 13.33333 -13.86667 P PPL GM 04 2090 48 Africa/Banjul 2006-01-17
-2412355 No Kunda No Kunda 13.56667 -15.83333 P PPL GM 07 1913 14 Africa/Banjul 2006-01-17
-2412408 Nioro Nioro 13.35 -15.75 P PPL GM 02 1746 38 Africa/Banjul 2006-01-17
-2412605 Mansa Konko Mansa Konko Mansa Konko 13.46667 -15.55 P PPLA GM 02 1978 21 Africa/Banjul 2012-01-18
-2412749 Lamin Lamin 13.35222 -16.43389 P PPL GM 07 24797 15 Africa/Banjul 2006-01-17
-2412775 Kunting Kunting 13.53333 -14.66667 P PPL GM 03 1204 14 Africa/Banjul 2006-01-17
-2412778 Kuntaur Kuntaur Kuntaur 13.66667 -14.88333 P PPL GM 03 2534 4 Africa/Banjul 2012-01-18
-2412807 Kumbija Kumbija Kumbija,Kumbita 13.26667 -14.18333 P PPL GM 04 1760 38 Africa/Banjul 2012-01-18
-2412868 Koina Koina 13.48333 -13.86667 P PPL GM 04 3870 17 Africa/Banjul 2006-01-17
-2412992 Kerewan Kerewan Kerevane,Kerewan 13.4898 -16.08879 P PPLA GM 07 2751 16 Africa/Banjul 2011-02-02
-2413023 Keneba Keneba Keneba,Kenniba 13.32889 -16.015 P PPL GM 02 1775 22 Africa/Banjul 2012-01-18
-2413041 Katchang Katchang Kashan,Katchang 13.5 -15.75 P PPL GM 07 1741 20 Africa/Banjul 2012-01-18
-2413052 Kass Wollof Kass Wollof Kass,Kass Wollof,Samba N'Yang,Samba N’Yang 13.78333 -14.93333 P PPL GM 03 1109 44 Africa/Banjul 2012-01-18
-2413070 Karantaba Karantaba Gunjur,Karantaba 13.66667 -15.03333 P PPL GM 03 1753 11 Africa/Banjul 2012-01-18
-2413073 Karantaba Karantaba 13.43333 -15.51667 P PPL GM 02 1372 37 Africa/Banjul 2006-01-17
-2413160 Kaiaf Kaiaf 13.4 -15.61667 P PPL GM 02 1819 29 Africa/Banjul 2006-01-17
-2413235 Jifarong Jifarong Jifarong,Jiffarong 13.3 -15.86667 P PPL GM 02 1038 28 Africa/Banjul 2012-01-18
-2413246 Jenoi Jenoi Ginoi,Jenoi 13.48333 -15.56667 P PPL GM 02 1254 8 Africa/Banjul 2012-01-18
-2413265 Jarreng Jarreng 13.61667 -15.18333 P PPL GM 03 2705 15 Africa/Banjul 2006-01-17
-2413344 Jali Jali 13.35 -15.96667 P PPL GM 02 1024 31 Africa/Banjul 2006-01-17
-2413365 Jakhaly Jakhaly 13.55 -14.96667 P PPL GM 03 1793 11 Africa/Banjul 2006-01-17
-2413417 Gunjur Kuta Gunjur Kuta 13.53333 -14.11667 P PPL GM 04 1566 48 Africa/Banjul 2006-01-17
-2413418 Gunjur Gunjur Gunjur,Kungeru 13.52278 -16.02778 P PPL GM 07 1327 15 Africa/Banjul 2012-01-18
-2413419 Gunjur Gunjur 13.20194 -16.73389 P PPL GM 05 14088 25 Africa/Banjul 2006-01-17
-2413437 Georgetown Georgetown Georgetown,Janjanbureh,Old Fort George 13.53333 -14.76667 P PPLA GM 03 3584 7 Africa/Banjul 2012-01-18
-2413456 Galleh Manda Galleh Manda Galleh Manda,Manda 13.43333 -14.78333 P PPL GM 03 1872 46 Africa/Banjul 2012-01-18
-2413515 Farafenni Farafenni Farafenni 13.56667 -15.6 P PPL GM 07 29867 15 Africa/Banjul 2012-01-18
-2413533 Essau Essau Essau 13.48389 -16.53472 P PPL GM 07 5907 12 Africa/Banjul 2012-01-18
-2413579 Diabugu Basilla Diabugu Basilla 13.33333 -13.95 P PPL GM 04 1199 19 Africa/Banjul 2006-01-27
-2413580 Diabugu Diabugu Diabugu,Dirboko 13.38333 -14.4 P PPL GM 04 3722 17 Africa/Banjul 2012-01-18
-2413588 Denton Denton Denton,Sare Ram 13.5 -14.93333 P PPL GM 03 1712 18 Africa/Banjul 2012-01-18
-2413598 Demba Kunda Demba Kunda Demba Kunda,Morbugu 13.25 -14.26667 P PPL GM 04 4817 39 Africa/Banjul 2012-01-18
-2413623 Daru Rilwan Daru Rilwan 13.55 -15.98333 P PPL GM 07 1045 37 Africa/Banjul 2006-01-17
-2413645 Dankunku Dankunku Dankunko,Dankunku 13.56667 -15.31667 P PPL GM 03 1641 26 Africa/Banjul 2012-01-18
-2413653 Daba Kunda Daba Kunda Daba Kunda,Doba Kunda,Dula Kunda 13.31667 -14.3 P PPL GM 04 1302 20 Africa/Banjul 2012-01-18
-2413660 Chilla Chilla 13.55 -16.28333 P PPL GM 07 1249 36 Africa/Banjul 2006-01-17
-2413703 Bureng Bureng Buraing,Bureng 13.41667 -15.28333 P PPL GM 02 1472 6 Africa/Banjul 2012-01-18
-2413746 Brikama Nding Brikama Nding 13.53333 -14.93333 P PPL GM 03 1092 16 Africa/Banjul 2006-01-17
-2413753 Brikama Brikama Brikama,Brikame,Брикаме 13.27136 -16.64944 P PPLA GM 05 77700 24 Africa/Banjul 2011-02-02
-2413755 Brifu Brifu Brifu 13.5 -13.93333 P PPL GM 04 1292 27 Africa/Banjul 2012-01-18
-2413818 Basse Santa Su Basse Santa Su Basse,Basse Santa Su 13.30995 -14.21373 P PPLA GM 04 14380 15 Africa/Banjul 2011-02-02
-2413827 Barra Barra Barra 13.48278 -16.54556 P PPL GM 07 5323 1 Africa/Banjul 2012-01-18
-2413830 Baro Kunda Baro Kunda Baro Kunda,Barukunda 13.48333 -15.26667 P PPL GM 02 1991 16 Africa/Banjul 2012-01-18
-2413856 Bantanto Bantanto Bantanto 13.41667 -14.65 P PPL GM 03 1201 20 Africa/Banjul 2012-01-18
-2413866 Bansang Bansang Bansang,Bansang Tenda,Barsangsang 13.43333 -14.65 P PPL GM 03 7615 9 Africa/Banjul 2012-01-18
-2413876 Banjul Banjul Bandzul,Bandzulis,Bandżul,Bandžulis,Banjul,Banjulo,Banzhul,Banĵulo,Bathurst,Mpanzoul,ban zhu er,banjul,banjuru,banjwl,bng'wl,Μπανζούλ,Банжул,Банџул,Բանջուլ,בנג'ול,بانجول,ባንጁል,バンジュール,班珠尔,班珠爾,반줄 13.45274 -16.57803 P PPLC GM 01 34589 5 Africa/Banjul 2010-08-16
-2413895 Bambali Bambali Bambale,Bambali,Bombale 13.48333 -15.33333 P PPL GM 07 1255 17 Africa/Banjul 2012-01-18
-2413920 Bakau Bakau Bakau 13.47806 -16.68194 P PPL GM 01 43098 22 Africa/Banjul 2012-01-18
-2413926 Bakadagy Bakadagy Bakadagy,Bakadaji 13.3 -14.38333 P PPL GM 04 1979 18 Africa/Banjul 2012-01-18
-2413990 Abuko Abuko Abuko 13.40417 -16.65583 P PPL GM 05 6572 15 Africa/Banjul 2012-01-18
-2414055 Youkounkoun Youkounkoun Youkounkoun 12.53333 -13.13333 P PPL GN 18 7952 71 Africa/Conakry 2012-01-18
-2414079 Yomou Yomou Yomou 7.56028 -9.26528 P PPLA GN 29 3614 398 Africa/Conakry 2012-02-02
-2414545 Tougué Tougue Tongue,Tougue,Tougué 11.45 -11.68333 P PPLA GN 28 25531 898 Africa/Conakry 2012-01-18
-2414616 Tondon Tondon Tendon,Tondon 10.36667 -13.35 P PPL GN 31 12235 113 Africa/Conakry 2012-01-18
-2414659 Tokonou Tokonou 9.65 -9.78333 P PPL GN 32 6729 562 Africa/Conakry 2006-01-17
-2414926 Télimélé Telimele Telimele,Télimélé 10.9 -13.03333 P PPLA GN 27 30311 610 Africa/Conakry 2012-01-18
-2415703 Siguiri Siguiri Sigiri,Siguiri,Сигири 11.42282 -9.16852 P PPLA GN 39 43601 368 Africa/Conakry 2011-08-22
-2416061 Sanguéya Sangueya Sanguea,Sangueya,Sanguéa,Sanguéya 10.7 -14.36667 P PPL GN 03 6117 18 Africa/Conakry 2012-01-18
-2416443 Pita Pita 11.08333 -12.4 P PPLA GN 25 20052 942 Africa/Conakry 2006-01-17
-2416969 Nzérékoré Nzerekore Nzerekore,Nzérékoré,Нзерекоре 7.75624 -8.8179 P PPLA GN 38 132728 482 Africa/Conakry 2011-08-22
-2417795 Mandiana Mandiana Mandiana 10.63333 -8.68333 P PPLA GN 37 10609 362 Africa/Conakry 2012-01-18
-2417833 Mamou Mamou 10.37546 -12.09148 P PPLA GN 23 41619 720 Africa/Conakry 2011-08-22
-2417886 Mali Mali Mali,Meli 12.079 -12.2982 P PPLA GN 22 5479 1440 Africa/Conakry 2012-01-18
-2417988 Macenta Macenta Macenta,Magenta,Masenta,Масента 8.54351 -9.47099 P PPLA GN 21 43102 546 Africa/Conakry 2011-08-22
-2418092 Lola Lola Lola 7.8 -8.53333 P PPLA GN 36 1982 468 Africa/Conakry 2012-01-18
-2418362 Labé Labe Laba,Labe,Labé,Лаба 11.31823 -12.28332 P PPLA GN 34 46510 1026 Africa/Conakry 2011-08-22
-2418437 Kouroussa Kouroussa Kouroussa,Kurussa 10.65 -9.88333 P PPLA GN 19 14223 383 Africa/Conakry 2012-01-18
-2418596 Koundara Koundara Koundara 12.48333 -13.3 P PPLA GN 18 13990 77 Africa/Conakry 2012-01-18
-2418764 Koubia Koubia Koubia 11.58333 -11.9 P PPLA GN 33 9909 756 Africa/Conakry 2012-01-18
-2419472 Kissidougou Kissidougou Kisidugu,Kissidougou,Kissidugu,Кисидугу 9.1848 -10.09987 P PPLA GN 17 47099 530 Africa/Conakry 2011-08-22
-2419533 Kindia Kindia Kindia,Kindla,Киндиа 10.05692 -12.86576 P PPLA GN 16 117062 415 Africa/Conakry 2011-08-22
-2419538 Kimbo Kimbo 10.4 -13.55 P PPL GN 11 9326 262 Africa/Conakry 2006-01-17
-2419622 Kérouané Kerouane Kerouane,Kérouané 9.26667 -9.01667 P PPLA GN 15 7228 533 Africa/Conakry 2012-01-18
-2419992 Kankan Kankan Kankan,Канкан 10.38542 -9.30568 P PPLA GN 32 114009 381 Africa/Conakry 2011-08-22
-2420056 Kamsar Kamsar Kamissar,Kamsar,Kansar 10.66667 -14.6 P PPL GN GN 03 61527 5 Africa/Conakry 2012-01-18
-2420562 Guéckédou Gueckedou Gueckedou,Guekedou,Guéckédou,Guékédou 8.5625 -10.1325 P PPLA GN GN 13 79140 439 Africa/Conakry 2012-01-18
-2420826 Gaoual Gaoual Gaoual 11.75 -13.2 P PPLA GN 12 7461 79 Africa/Conakry 2012-01-18
-2420884 Fria Fria Firiya,Fria,Фриа 10.45 -13.53333 P PPLA GN GN 11 44369 69 Africa/Conakry 2012-01-18
-2420985 Forécariah Forecariah Forecaria,Forecariah,Forikaria,Forécariah 9.43056 -13.08806 P PPLA GN 10 12358 32 Africa/Conakry 2012-01-18
-2421273 Faranah Faranah Faranah 10.04036 -10.74343 P PPLA GN 09 9350 433 Africa/Conakry 2011-08-22
-2421535 Dubréka Dubreka Debreeka,Dubreka,Dubréka 9.79111 -13.52333 P PPLA GN 31 10363 19 Africa/Conakry 2012-01-18
-2421903 Dinguiraye Dinguiraye Dinguiray,Dinguiraye 11.3 -10.71667 P PPLA GN 07 6062 550 Africa/Conakry 2012-01-18
-2422383 Dalaba Dalaba Dalaba 10.7 -12.25 P PPLA GN 06 7036 1221 Africa/Conakry 2012-01-18
-2422442 Dabola Dabola Dabola,Дабола 10.75 -11.11667 P PPLA GN 05 13057 448 Africa/Conakry 2012-01-18
-2422457 Coyah Coyah Coya,Coyah,Koyah 9.70556 -13.37694 P PPLA GN 30 77103 15 Africa/Conakry 2012-01-18
-2422465 Conakry Conakry Conacri,Conakry,Konakri,Konakrio,Konakris,Konakry,ke na ke li,konakeuli,konakuri,Κόνακρι,Конакри,קונאקרי,コナクリ,科納克里,코나크리 9.53795 -13.67729 P PPLC GN 04 1767200 13 Africa/Conakry 2010-05-30
-2422488 Camayenne Camayenne Camayen,Camayenne 9.535 -13.68778 P PPL GN 04 1871242 6 Africa/Conakry 2012-01-18
-2422924 Boké Boke Boke,Boké,Boque,Boqué 10.94094 -14.29665 P PPLA GN 03 15460 20 Africa/Conakry 2011-08-22
-2422968 Boffa Boffa Boffa,Bomma 10.16667 -14.03333 P PPLA GN 02 2332 0 Africa/Conakry 2012-01-18
-2423126 Beyla Beyla Beyla 8.68333 -8.63333 P PPLA GN 01 11566 666 Africa/Conakry 2012-01-18
-2578880 Lélouma Lelouma Lelouma,Lélouma 11.18333 -12.93333 P PPLA GN 35 4777 763 Africa/Conakry 2012-01-19
-3578278 Vieux-Habitants Vieux-Habitants Les Habitants,Vieux-Habitants 16.0589 -61.76595 P PPL GP GP 971 9711 97134 7728 14 America/Guadeloupe 2012-01-18
-3578324 Trois-Rivières Trois-Rivieres Les Trois Rivieres,Les Trois Rivières,Trois-Rivieres,Trois-Rivières 15.97567 -61.64509 P PPL GP GP 971 9711 97132 8812 110 America/Guadeloupe 2012-01-18
-3578351 Terre-de-Bas Terre-de-Bas Le Bourg,Terre-de-Bas 15.85011 -61.64417 P PPL GP GP 971 9711 97130 1314 44 America/Guadeloupe 2012-01-18
-3578441 Saint-François Saint-Francois Saint-Francois,Saint-François 16.25264 -61.27414 P PPL GP GP 971 9712 97125 12732 2 America/Guadeloupe 2012-01-18
-3578447 Sainte-Rose Sainte-Rose Sainte-Rose,Sent-Roz,Сент-Роз 16.33238 -61.69793 P PPL GP GP 971 9711 97129 20192 20 America/Guadeloupe 2012-01-18
-3578466 Sainte-Anne Sainte-Anne Sainte-Anne 16.22636 -61.37919 P PPL GP GP 971 9712 97128 22859 3 America/Guadeloupe 2012-01-18
-3578467 Saint-Claude Saint-Claude Saint-Claude 16.02409 -61.70215 P PPL GP GP 971 9711 97124 10134 423 America/Guadeloupe 2012-01-18
-3578575 Port-Louis Port-Louis Port-Louis 16.41901 -61.53131 P PPL GP GP 971 9712 97122 5515 5 America/Guadeloupe 2012-01-18
-3578594 Pointe-Noire Pointe-Noire La Pointe-Noire,Point Noire,Pointe-Noire 16.23086 -61.78783 P PPL GP GP 971 9711 97121 7749 16 America/Guadeloupe 2012-01-18
-3578599 Pointe-à-Pitre Pointe-a-Pitre La Pointe a Pitre,La Pointe à Pitre,Pointe-a-Pitre,Pointe-à-Pitre 16.2422 -61.5343 P PPL GP GP 971 9712 97120 18264 10 America/Guadeloupe 2012-01-18
-3578681 Petit-Canal Petit-Canal Petit Canat,Petit-Canal 16.37836 -61.48788 P PPL GP GP 971 9712 97119 8554 14 America/Guadeloupe 2012-01-18
-3578682 Petit-Bourg Petit-Bourg Petit-Bourg,Pti-Burg,Пти-Бург 16.19135 -61.59159 P PPL GP GP 971 9711 97118 24994 7 America/Guadeloupe 2012-01-18
-3578959 Les Abymes Les Abymes Abeymes,Abymes,Les Abymes 16.27095 -61.50451 P PPL GP GP 971 9712 97101 63058 28 America/Guadeloupe 2012-01-18
-3578967 Le Moule Le Moule Le Moule,Moule 16.33315 -61.34728 P PPL GP GP 971 9712 97117 22692 4 America/Guadeloupe 2012-01-18
-3578978 Le Gosier Le Gosier Gosier,Gozier,Le Gosier 16.20685 -61.49329 P PPL GP GP 971 9712 97113 28698 26 America/Guadeloupe 2012-01-18
-3579023 Lamentin Lamentin Lamentin,Le Lamentin 16.27105 -61.63124 P PPL GP GP 971 9711 97115 14891 10 America/Guadeloupe 2012-01-18
-3579232 Grande Anse Grande Anse Grande Anse,La Grande Anse 16.30351 -61.07406 P PPL GP 00 1716 8 America/Guadeloupe 2012-01-18
-3579250 Grand-Bourg Grand-Bourg Grand-Bourg 15.88346 -61.31484 P PPL GP GP 971 9712 97112 5867 9 America/Guadeloupe 2012-01-18
-3579267 Gourbeyre Gourbeyre Gourbevre,Gourbeyre 15.99378 -61.69138 P PPL GP GP 971 9711 97109 8571 339 America/Guadeloupe 2012-01-18
-3579585 Capesterre-Belle-Eau Capesterre-Belle-Eau Capesterre,Capesterre-Belle-Eau 16.04322 -61.56596 P PPL GP GP 971 9711 97107 19821 18 America/Guadeloupe 2012-01-18
-3579642 Bouillante Bouillante Bouillante 16.13041 -61.76919 P PPL GP GP 971 9711 97106 7540 5 America/Guadeloupe 2012-01-18
-3579732 Basse-Terre Basse-Terre Bas-Ter,Basse Terre,Basse-Terre,Бас-Тер 15.99854 -61.72548 P PPLC GP GP 971 9711 97105 11472 59 America/Guadeloupe 2011-12-08
-3579761 Baillif Baillif Baillif,Le Baillif 16.02018 -61.74632 P PPL GP GP 971 9711 97104 5705 8 America/Guadeloupe 2012-01-18
-3579767 Baie-Mahault Baie-Mahault Baie-Mahault,La Baie Mahault 16.26738 -61.58543 P PPL GP GP 971 9711 97103 30551 18 America/Guadeloupe 2012-01-18
-3579789 Anse-Bertrand Anse-Bertrand Anse-Bertrand 16.47206 -61.50778 P PPL GP GP 971 9712 97102 5146 20 America/Guadeloupe 2012-01-18
-2306722 Santiago de Baney Santiago de Baney Baney,Bany,Laka-Baney,Santiago de Baney 3.6992 8.9084 P PPL GQ 00 2365 284 Africa/Malabo 2012-01-18
-2306774 Palé Pale Ambo,Annobon,Annobón,Ano Bom,Pagalu,Pale,Palé,San Antonio,San Antonio de Pale,San Antonio de Palé,an'nobon dao,アンノボン島 -1.40139 5.6325 P PPLA GQ 03 4433 -9999 Africa/Malabo 2012-01-18
-2306819 Río Campo Rio Campo Rio Campo,Río Campo 2.33812 9.82212 P PPL GQ 00 1105 28 Africa/Malabo 2012-01-18
-2306824 Rebola Rebola Rebola 3.71667 8.83333 P PPL GQ 00 5450 394 Africa/Malabo 2012-02-02
-2307145 Nsok Nsok Ensorc,N'Zork,Nsoc,Nsok,Nsorc,Nsork,N’Zork 1.12985 11.26603 P PPL GQ 00 3769 552 Africa/Malabo 2012-01-18
-2307197 Nsang Nsang Ensang,Nsang 2.02475 10.94599 P PPL GQ 00 2122 589 Africa/Malabo 2012-01-18
-2307502 Ncue Ncue Ncue,Nkue,Nkue Mision,Nkue Misión,San Francisco Javier 2.01643 10.47066 P PPL GQ 00 1683 399 Africa/Malabo 2011-10-27
-2307795 Mongomo Mongomo Margomo,Mongomo,Mongomo de Guadalupe 1.62742 11.31346 P PPLA GQ 09 6393 630 Africa/Malabo 2012-01-18
-2307970 Mikomeseng Mikomeseng Mekomeseng,Micomeseng,Mikamesen,Mikomesen,Mikomeseng 2.13609 10.61322 P PPL GQ 00 5813 542 Africa/Malabo 2012-01-18
-2308278 Mbini Mbini Benito,Mbini,Rio Benito,Río Benito,San Benito 1.57402 9.61341 P PPL GQ 00 4062 16 Africa/Malabo 2012-01-18
-2308626 Machinda Machinda Machinda 1.88262 9.95133 P PPL GQ 00 2897 174 Africa/Malabo 2012-01-18
-2308994 Evinayong Evinayong Ebinayon,Ebinayong,Ebineyon,Ebinoyon,Evinayong 1.43677 10.55124 P PPLA GQ 06 8462 669 Africa/Malabo 2012-01-18
-2309332 Ebebiyín Ebebiyin Ebebiyin,Ebebiyín,Ebibeyin,Ebibeying,Ehbebijina,Эбебийина 2.15106 11.33528 P PPLA GQ 07 24831 561 Africa/Malabo 2012-01-18
-2309527 Malabo Malabo Ciudad de Malabo,Malaba,Malabas,Malabo,Malampo,Port Clarence,Rev Malebo,Santa Isabel,ma la bo,malabw,mallabo,marabo,Μαλάμπο,Малабо,מלאבו,مالابو,ማላቦ,マラボ,馬拉博,말라보 3.75 8.78333 P PPLC GQ 04 155963 40 Africa/Malabo 2012-01-18
-2309528 Luba Luba Ciudad de Luba,Luba,San Carlos 3.45683 8.55465 P PPLA GQ 05 8655 72 Africa/Malabo 2012-01-18
-2309744 Bitica Bitica Bitica,Bitika 1.4261 9.62316 P PPL GQ 00 1464 28 Africa/Malabo 2012-01-18
-2309890 Bicurga Bicurga Bicurga,Bikurga 1.58113 10.46716 P PPL GQ 00 2318 641 Africa/Malabo 2012-01-18
-2310046 Bata Bata Bata,Kokapipa,ba ta,bata,Бата,バタ,巴塔 1.86391 9.76582 P PPLA GQ 08 173046 13 Africa/Malabo 2011-10-27
-2310134 Ayene Ayene Ayene,Ayene-Enduguensan 1.85592 10.68994 P PPL GQ 00 3482 443 Africa/Malabo 2012-01-18
-2310309 Añisoc Anisoc Anisoc,Anisok,Añisoc,Añisok 1.8658 10.76892 P PPL GQ 00 10191 456 Africa/Malabo 2011-10-27
-2310533 Acurenam Acurenam Acurenam,Acurenan,Acurnam,Akourenam,Akournam,Akurenam,Akurenan,Akurnam 1.03225 10.64882 P PPL GQ 00 2736 661 Africa/Malabo 2012-01-18
-2310547 Aconibe Aconibe Aconibe,Akonebe 1.29683 10.93691 P PPL GQ 00 11192 683 Africa/Malabo 2012-01-18
-251187 Zonianá Zoniana Zoniana,Zonianá,Ζωνιανά 35.29502 24.82944 P PPL GR ESYE43 44 9317 1703 615 Europe/Athens 2012-03-27
-251250 Zarós Zaros Zaros,Zarós,Ζαρός 35.13163 24.90463 P PPL GR ESYE43 45 9308 2205 284 Europe/Athens 2012-03-26
-251253 Zárkos Zarkos Zarko,Zarkon,Zarkos,Zárkon,Zárkos,Ζάρκος 39.61667 22.13333 P PPL GR ESYE14 22 9115 1407 213 Europe/Athens 2012-01-18
-251280 Zákynthos Zakynthos Zakinthos,Zakynthos,Zante,Zákinthos,Zákynthos,Ζάκυνθος 37.79139 20.89528 P PPLA2 GR ESYE22 28 9116 11541 94 Europe/Athens 2012-02-28
-251283 Zacháro Zacharo Zacharo,Zacháro,Zakharo,Zakháro,Ζαχάρω 37.48333 21.65 P PPLA3 GR ESYE23 39 9138 5894 17 Europe/Athens 2012-03-04
-251292 Zagorá Zagora Zagora,Zagorá,Ζαγορά 39.45 23.1 P PPL GR ESYE14 24 9106 2385 487 Europe/Athens 2012-01-18
-251297 Gýtheion Gytheion Githion,Gytheio,Gytheion,Gythelon,Gythion,Gýtheio,Gýtheion,Gýthelon,Yithio,Yithion,Yíthio,Yíthion,Γύθειον 36.755 22.56417 P PPL GR ESYE25 42 9248 4576 168 Europe/Athens 2012-02-28
-251317 Yimnón Yimnon Gymnon,Yimnon,Yimnón,Γυμνόν 38.43333 23.88333 P PPL GR ESYE24 34 9149 2041 102 Europe/Athens 2012-01-18
-251332 Yiánnouli Yiannouli Giannoule,Yiannouli,Yiánnouli,Γιάννουλη 39.66667 22.38333 P PPL GR ESYE14 21 9100 7030 74 Europe/Athens 2012-01-18
-251366 Yéryeri Yeryeri Gergere,Yeryeri,Yéryeri,Γέργερη 35.13333 24.95 P PPL GR ESYE43 45 9304 1444 531 Europe/Athens 2012-01-18
-251411 Yerákion Yerakion Gerakion,Ybraki,Yeraki,Yerakion,Yeráki,Yerákion,Γεράκιον 37 22.7 P PPL GR ESYE25 42 9250 1323 344 Europe/Athens 2012-01-18
-251465 Géfyra Gefyra Gefyra,Géfyra,Yefira,Yéfira,Γέφυρα 36.6869 23.03642 P PPL GR ESYE25 42 9251 1465 10 Europe/Athens 2012-01-17
-251525 Xylókastron Xylokastron Xilokastron,Xilókastron,Xylokastro,Xylokastron,Xylókastro,Ξυλόκαστρον 38.07762 22.63166 P PPL GR ESYE25 37 9246 5256 8 Europe/Athens 2012-01-17
-251606 Vrontádos Vrontados Brontados,Vrondadhes,Vrondadhos,Vrondhades,Vrondhádes,Vrondádhes,Vrondádhos,Vrontados,Vrontádos,Βροντάδος 38.40889 26.13278 P PPL GR ESYE41 50 9266 4600 19 Europe/Athens 2012-02-28
-251681 Vrachnaíika Vrachnaiika Ayios Vasilios,Brachnaiika,Vrachnaiika,Vrachnaíika,Vrakhnaiika,Vrakhnaíika,Vrakhneika,Vrakhnéïka,Áyios Vasílios,Βραχναίικα 38.16667 21.66667 P PPL GR ESYE23 2780 -9999 Europe/Athens 2012-02-28
-251685 Vrakhátion Vrakhation Brachation,Vrakhati,Vrakhation,Vrakháti,Vrakhátion,Βραχάτιον 37.95895 22.80573 P PPL GR ESYE25 37 9242 3252 9 Europe/Athens 2012-01-17
-251773 Vouliagméni Vouliagmeni Vouliagmeni,Vouliagméni,Βουλιαγμένη 37.81667 23.78333 P PPL GR ESYE31 445406 9216 7717 27 Europe/Athens 2012-01-18
-251780 Voúla Voula Voula,Voúla,Vule,Βούλα,Вуле 37.84221 23.77651 P PPLA3 GR ESYE31 445406 9216 29033 54 Europe/Athens 2012-03-04
-251823 Vónitsa Vonitsa Bonitsa,Vonitsa,Vónitsa,Βόνιτσα 38.91639 20.88639 P PPLA3 GR ESYE23 31 9124 3770 0 Europe/Athens 2012-03-04
-251833 Vólos Volos Bolos,Iolcus,Volo,Volos,Vólos,Wolos,wwlws,Βόλος,Волос,וולוס 39.36667 22.94583 P PPLA2 GR ESYE14 24 9105 84425 10 Europe/Athens 2012-01-17
-251888 Vlakhópoulon Vlakhopoulon Blachopoulon,Vlakhopoulon,Vlakhópoulon,Βλαχόπουλον 37.03333 21.78333 P PPL GR ESYE25 40 9257 1446 416 Europe/Athens 2012-01-18
-251896 Vlakhiótis Vlakhiotis Blachiotes,Vlakhioti,Vlakhiotika,Vlakhiotis,Vlakhióti,Vlakhiótika,Vlakhiótis,Βλαχιώτης 36.86667 22.7 P PPL GR ESYE25 42 9250 2404 22 Europe/Athens 2012-01-18
-251948 Výronas Vyronas Byron,Viron,Vyronas,Víron,Výronas,Βύρων,Βύρωνας 37.96667 23.75 P PPLA3 GR ESYE31 445408 9186 61888 124 Europe/Athens 2012-03-04
-251959 Vília Vilia Bilia,Vilia,Villia,Vília,Βίλια 38.16667 23.33333 P PPL GR ESYE31 445407 9230 1967 509 Europe/Athens 2012-02-28
-252030 Verdikoússa Verdikoussa Berdikoussa,Verdhikousa,Verdhikoussa,Verdhikoúsa,Verdhikoússa,Verdikoussa,Verdikoússa,Βερδικούσσα 39.78028 21.97222 P PPL GR ESYE14 21 9098 1602 956 Europe/Athens 2012-02-28
-252062 Vélon Velon Belon,Vello,Vellon,Velon,Véllo,Véllon,Vélon,Βέλον 37.96667 22.76667 P PPL GR ESYE25 37 9242 3018 27 Europe/Athens 2012-01-18
-252074 Velestínon Velestinon Belestinon,Velestina,Velestinon,Velestínon,Βελεστίνον 39.38333 22.75 P PPL GR ESYE14 24 9108 3211 102 Europe/Athens 2012-01-18
-252101 Vágia Vagia Bagia,Vagia,Vayia,Vágia,Váyia,Βάγια 38.31667 23.18333 P PPL GR ESYE24 33 9144 4535 225 Europe/Athens 2012-02-28
-252164 Vathí Vathi Bathy,Vathi,Vathi Avlidhos,Vathy,Vathí,Vathí Avlídhos,Βαθύ 38.4 23.6 P PPL GR ESYE24 34 9155 2575 24 Europe/Athens 2012-01-18
-252165 Vathí Vathi Vathi,Vathy,Vathí,Βαθύ 37.76567 23.4812 P PPL GR ESYE31 406101 9208 1615 48 Europe/Athens 2012-01-18
-252166 Vathý Vathy Ano Vathi,Vathi,Vathy,Vathí,Vathý,Áno Vathí 37.75 26.98333 P PPL GR GR ESYE41 48 9264 2160 71 Europe/Athens 2012-01-18
-252190 Vasilikón Vasilikon Basilikon,Vasiliko,Vasilikon,Vasilikón,Βασιλικόν 38.43333 23.66667 P PPL GR ESYE24 34 9155 7039 19 Europe/Athens 2012-01-18
-252200 Vasilikí Vasiliki Basilike,Vasiliki,Vasilikí,Voivoda,Voïvóda,Βασιλική 39.63889 21.70472 P PPL GR ESYE14 22 9112 1388 150 Europe/Athens 2012-02-28
-252232 Varvásaina Varvasaina Barbasaina,Varvasaina,Varvásaina,Βαρβάσαινα 37.68333 21.5 P PPL GR ESYE23 39 9141 1280 85 Europe/Athens 2012-01-18
-252239 Vartholomió Vartholomio Vartholomi,Vartholomio,Vartholomion,Vartholomió,Vartholomión,Βαρθολομιό 37.86667 21.2 P PPL GR ESYE23 39 9140 3068 16 Europe/Athens 2012-02-28
-252244 Varnávas Varnavas Barnabas,Varnavas,Varnávas,Βαρνάβας 38.21667 23.91667 P PPL GR ESYE31 445406 9220 1516 384 Europe/Athens 2012-02-28
-252267 Vareiá Vareia Bareia,Vareia,Vareiá,Varia,Variá,Varyia,Varyiá,Βαρειά 39.08333 26.56667 P PPL GR ESYE41 51 9261 1518 53 Europe/Athens 2012-01-18
-252270 Vári Vari Vari,Vári,Βάρη 37.8312 23.80809 P PPL GR ESYE31 445406 9216 12090 18 Europe/Athens 2012-01-18
-252271 Vári Vari 37.4 24.95 P PPL GR ESYE42 49 9300 1266 47 Europe/Athens 2012-01-17
-252291 Várda Varda Ano Manolas,Varda,Vardha,Várda,Várdha,Áno Manolás,Βάρδα 38.03333 21.36667 P PPL GR ESYE23 39 9135 3307 15 Europe/Athens 2012-02-28
-252303 Vamvakoú Vamvakou Bairakli,Bambakou,Baïraklí,Βαμβακού 39.33333 22.41667 P PPL GR ESYE14 21 9103 1104 140 Europe/Athens 2012-01-17
-252327 Valsamáta Valsamata Balsamata,Valsamata,Valsamáta,Βαλσαμάτα 38.16667 20.6 P PPL GR ESYE22 27 9120 1008 509 Europe/Athens 2012-01-18
-252486 Tsikalariá Tsikalaria Tsikalaria,Tsikalariá,Tsikalaryia,Tsikalaryiá,Τσικαλαριά 35.48333 24.06667 P PPL GR ESYE43 43 9325 1204 11 Europe/Athens 2012-01-18
-252523 Tsarítsani Tsaritsani Tsaritsane,Tsaritsani,Tsarítsani,Τσαρίτσανη 39.88333 22.23333 P PPL GR ESYE14 21 9098 2514 410 Europe/Athens 2012-01-18
-252601 Trípoli Tripoli Tripole,Tripole Arkadias,Tripoli,Tripolis,Tripolitza,Tripolizza,Trípoli,Trípolis,Τρίπολη,Τρίπολη Αρκαδίας,Триполи 37.50889 22.37944 P PPLA GR ESYE25 41 9241 26561 660 Europe/Athens 2012-02-28
-252655 Tríkeri Trikeri Trikeri,Trikerion,Trikkeri,Tríkeri,Tríkerion,Tríkkeri 39.1 23.08333 P PPL GR ESYE14 24 9107 1182 219 Europe/Athens 2012-01-18
-252664 Tríkala Trikala Nomos Trikalon,Tirhala,Trikala,Trikalon,Trikkaion,Trikkala,Trikkaíon,Trikálon,Tríkala,Tríkkala,Tırhala,trhalh,Νομός Τρικάλων,Τρίκαλα,Трикала,ترحاله 39.55528 21.7675 P PPLA2 GR ESYE14 22 9114 49809 117 Europe/Athens 2012-01-17
-252685 Triánta Trianta Ialisos,Ialissos,Ialisós,Ialysos,Ialysou,Ialyssos,Ialyssós,Ialysós,Lalisos,Trianda,Trianta,Triánda,Triánta,Ιαλυσού,Ιαλυσός,Τριάντα,Лалисос,Трианта 36.41043 28.16552 P PPL GR ESYE42 47 9296 11473 15 Europe/Athens 2012-01-18
-252747 Traganón Traganon Traganon,Traganón,Τραγανόν 37.89789 21.31245 P PPL GR ESYE25 2414 23 Europe/Athens 2011-02-22
-252750 Tragána Tragana Tragana,Tragána,Τραγάνα 38.61667 23.11667 P PPL GR ESYE24 29 9161 1320 58 Europe/Athens 2012-01-18
-252833 Tolón Tolon Tolo,Tolon,Tolos,Tolón,Tolós,Τολo,Τολόν 37.52021 22.8586 P PPL GR ESYE25 36 9236 2322 10 Europe/Athens 2012-01-17
-252848 Týrnavos Tyrnavos Tirnavos,Tyrnabos,Tyrnavo,Tyrnavos,Tírnavos,Týrnavos,Τύρναβος 39.73778 22.28917 P PPL GR ESYE14 21 9102 10796 94 Europe/Athens 2012-01-18
-252854 Tínos Tinos Saint Nicholas,Tenos,Tinos,Tínos,Τήνος 37.53753 25.16343 P PPLA3 GR ESYE42 49 9301 4573 7 Europe/Athens 2012-03-04
-252862 Tympáki Tympaki Dhivaki,Dhiváki,Timbakion,Timbákion,Tybaki,Tympaki,Tympakion,Tympáki,Tympákion,Τυμπάκι,Τυμπάκιον 35.07286 24.76851 P PPL GR ESYE43 45 9308 4923 37 Europe/Athens 2012-03-26
-252864 Tílisos Tilisos Tilisos,Tilissos,Tylisos,Tylissos,Tílisos,Tílissos,Τύλισος 35.29607 25.01587 P PPL GR ESYE43 45 9306 1026 222 Europe/Athens 2012-03-25
-252889 Thrapsanón Thrapsanon Thrapsano,Thrapsanon,Thrapsanos,Thrapsanó,Thrapsanón,Thrapsanós,Θραψανόν 35.18798 25.28091 P PPL GR ESYE43 45 9307 1499 358 Europe/Athens 2012-03-27
-252891 Thouría Thouria Thouria,Thouría,Θουρία 37.08333 22.05 P PPL GR ESYE25 40 9254 1302 26 Europe/Athens 2012-01-18
-252910 Thívai Thivai Teba,Tebas,Tebo,Teboj,Theba,Thebae,Thebai,Theben,Thebes,Thiva,Thivai,Thíva,Thívai,Thēbai,Θήβα,Θήβαι,Θηβαι 38.325 23.31889 P PPL GR ESYE24 33 9144 22026 170 Europe/Athens 2012-01-18
-252920 Firá Fira FIRA,Fira,Firá,Thera,Thira,Thíra,Θήρα,Θηρα,ΦΗΡΑ,Φηρά,Фира 36.42107 25.43087 P PPLA3 GR ESYE42 49 9270 2376 244 Europe/Athens 2012-03-04
-252927 Thymianá Thymiana Chorio Thymiana,Chorió Thymianá,Effymiana,Effymianá,Evfimiana,Evfimianá,Thimiana,Thimianá,Thymiana,Thymianá,Θυμιανά 38.315 26.13361 P PPL GR ESYE41 50 9266 1483 28 Europe/Athens 2012-02-28
-252939 Thesprotikón Thesprotikon Dhelovon,Dhélovon,Thesprotiko,Thesprotikon,Thesprotikó,Thesprotikón,Θεσπρωτικόν 39.25 20.78472 P PPL GR ESYE21 19 9088 1718 55 Europe/Athens 2012-02-28
-252942 Thespiés Thespies Erimokastron,Erimókastron,Thespiai,Thespiaí,Thespies,Thespiés,Θεσπιές,Θεσπιαί 38.3 23.15 P PPL GR ESYE24 33 9142 1437 350 Europe/Athens 2012-02-28
-252946 Thérmo Thermo Kefalovrison,Kefalóvrison,Thermo,Thermon,Thérmo,Thérmon,Θέρμο,Θέρμον 38.58333 21.66667 P PPLA3 GR ESYE23 31 9126 1957 396 Europe/Athens 2012-03-04
-252989 Terpsithéa Terpsithea Baislar,Baïslár,Kaislar,Kaïslár,Terpsithea,Terpsithéa,Τερψιθέα 39.61667 22.36667 P PPL GR ESYE14 21 9100 1308 93 Europe/Athens 2012-01-18
-253003 Témeni Temeni Temene,Temeni,Témeni,Τέμενη 38.23333 22.11667 P PPL GR ESYE23 38 9130 1125 22 Europe/Athens 2012-01-18
-253130 Strátos Stratos Sorovigli,Sorovígli,Stratos,Strátos,Στράτος 38.66667 21.31667 P PPL GR ESYE23 31 9123 1110 48 Europe/Athens 2012-02-28
-253158 Stírion Stirion Steirion,Stiri,Stirion,Stíri,Stírion,Στείριον 38.4 22.71667 P PPL GR ESYE24 33 9143 1056 718 Europe/Athens 2012-01-18
-253164 Stýpsi Stypsi Stipsi,Stipsos,Stypse,Stypsi,Stípsi,Stýpsi,Στύψη 39.31167 26.21972 P PPL GR ESYE41 51 9261 1020 403 Europe/Athens 2012-01-18
-253170 Stilís Stilis Stilis,Stilís,Stylis,Στυλίς 38.91667 22.61667 P PPL GR ESYE24 29 9164 5132 52 Europe/Athens 2012-01-18
-253218 Stefanavíkion Stefanavikion Hajimisi,Hajímisi,Stefanavikion,Stefanavíkion,Stefanovikion,Stefanovíkion,Stephanobikeion,Στεφανοβίκειον 39.46667 22.73333 P PPL GR ESYE14 24 9108 2016 56 Europe/Athens 2012-01-18
-253286 Stános Stanos Stano,Stanos,Stáno,Stános,Στάνος 38.8 21.16667 P PPL GR ESYE23 31 9125 1132 311 Europe/Athens 2012-01-18
-253302 Stamáta Stamata Stamata,Stamáta,Σταμάτα 38.13333 23.88333 P PPL GR ESYE31 445406 9217 2904 355 Europe/Athens 2012-02-28
-253305 Stalís Stalis Stalida,Stalis,Σταλίς,Σταλιδα 35.29257 25.43292 P PPL GR ESYE43 45 9309 1182 5 Europe/Athens 2012-01-17
-253356 Spétses Spetses Spetsai,Spetses,Spezzia,Spétsai,Spétses,Σπέτες,Σπέτσαι 37.26191 23.15943 P PPLA3 GR ESYE31 406101 9212 3972 14 Europe/Athens 2012-03-04
-253357 Sperkhóyia Sperkhoyia Sperchogeia,Sperkhoyia,Sperkhóyia,Σπερχόγεια 37.06667 22.06667 P PPL GR ESYE25 40 9254 1004 38 Europe/Athens 2012-01-18
-253360 Sperkhiás Sperkhias Spercheias,Sperkhias,Sperkhiás,Σπερχειάς 38.9 22.11667 P PPL GR ESYE24 29 9162 2844 337 Europe/Athens 2012-01-18
-253376 Spáta Spata Spata,Spáta,Σπάτα 37.96163 23.91514 P PPLA3 GR ESYE31 445406 9226 8137 142 Europe/Athens 2012-03-04
-253394 Sparta Sparta Esparta,Lacedaemon,Lacedemon,Lacedemonia,Lacédémon,Lakedaimon,Lakedaímon,Lakedemon,Sparte,Sparti,Sparto,Spartē,Spárti,Λακεδαιμων,Σπάρτη,Σπαρτη,Лакедемон 37.07333 22.42972 P PPLA2 GR ESYE25 42 9252 15497 207 Europe/Athens 2012-01-17
-253419 Soúrpi Sourpi Sourpe,Sourpi,Soúrpi,Σούρπη 39.1 22.9 P PPL GR ESYE14 24 9104 2137 38 Europe/Athens 2012-01-18
-253456 Soúda Souda Souda,Soudha,Soúda,Soúdha,Σούδα 35.48444 24.07444 P PPL GR ESYE43 43 9325 6729 24 Europe/Athens 2012-02-28
-253494 Sofikón Sofikon Sofikon,Sofikón,Sophiko,Sophikon,Σοφικόν 37.8 23.05 P PPL GR ESYE25 37 9243 1799 563 Europe/Athens 2012-01-18
-253581 Skópelos Skopelos Skopelos,Skópelos,Σκόπελος 39.12472 23.72472 P PPL GR ESYE14 24 9111 2886 89 Europe/Athens 2012-02-28
-253582 Skópelos Skopelos 39.02972 26.44833 P PPL GR ESYE41 51 9261 1728 144 Europe/Athens 2012-01-17
-253614 Skýros Skyros Skiros,Skyros,Skíros,Skýros,Σκύρος 38.90417 24.56306 P PPLA3 GR ESYE24 34 9154 1732 49 Europe/Athens 2012-03-04
-253643 Skíathos Skiathos Skiathos,Σκίαθος 39.16227 23.49089 P PPL GR ESYE14 24 9110 5187 4 Europe/Athens 2012-01-17
-253666 Skhísma Skhisma Schisma,Skhisma,Skhísma,Σχίσμα 35.26667 25.71667 P PPL GR ESYE43 46 9310 1968 21 Europe/Athens 2012-01-18
-253673 Schimatári Schimatari Schematarion,Schimatari,Schimatári,Skhimatari,Skhimatarion,Skhimatári,Skhimatárion,Skimatari,Σχηματάρι,Σχηματάριον 38.35 23.58333 P PPLA3 GR ESYE24 33 9147 5006 172 Europe/Athens 2012-03-04
-253716 Skála Oropoú Skala Oropou Scalaorapou,Skala Oropou,Skála Oropoú,Σκάλα Όρωπού 38.31991 23.79124 P PPL GR ESYE31 445406 9227 1284 11 Europe/Athens 2012-01-17
-253717 Skalánion Skalanion Skalani,Skalanion,Skaláni,Skalánion,Σκαλάνιον 35.28262 25.18684 P PPL GR ESYE43 45 9305 1012 241 Europe/Athens 2012-03-26
-253739 Skála Skala Skala,Skála,Σκάλα 36.85 22.66667 P PPL GR ESYE25 42 9250 2817 14 Europe/Athens 2012-01-18
-253759 Siteía Siteia Seteia,Siteia,Siteía,Sitia,Sitía,Σητεία 35.2 26.09861 P PPL GR ESYE43 46 9313 8707 29 Europe/Athens 2012-02-28
-253817 Sinoikismós Khavárion Sinoikismos Khavarion Sinoikismos Khavarion,Sinoikismós Khavárion,Sionoikizmos Khavari,Sionoikizmós Khávari 37.85 21.38333 P PPL GR ESYE23 39 9139 1466 86 Europe/Athens 2012-01-18
-253858 Sými Symi Simi,Sombeki,Symi,Sími,Sými,Σύμη 36.61246 27.8378 P PPLA3 GR ESYE42 47 9297 2508 131 Europe/Istanbul 2012-03-04
-253866 Siliveniótika Siliveniotika Silivaina,Silivainiotika,Silivainiótika,Siliveniotika,Siliveniótika,Silívaina,Sklivaina,Sklívaina,Sylibainiotika,Συλιβαινιώτικα 38.16667 22.33333 P PPL GR ESYE23 38 9130 1595 11 Europe/Athens 2012-01-18
-253871 Sykoúrion Sykourion Mega Keserli,Méga Keserlí,Sikourion,Sikoúrion,Sykourio,Sykourion,Sykoúrio,Sykoúrion,Συκούριον 39.75833 22.57861 P PPL GR ESYE14 21 9101 2318 147 Europe/Athens 2012-02-28
-253878 SiKyona SiKyona Sikion,Sikión,Sikyon,Vasilikon,Vasilikón,Σικυών 37.98333 22.73333 P PPL GR ESYE25 37 9247 1131 55 Europe/Athens 2012-03-05
-253880 Síkinos Sikinos Kastro Sikinou,Kastron,Kástro Sikínou,Kástron,Sikinos,Síkinos,Σίκινος 36.7 25.11667 P PPLA3 GR ESYE42 49 9272 0 101 Europe/Athens 2012-03-04
-253908 Sykéa Sykea Sikea,Sikéa,Sykea,Sykéa,Συκέα 36.76556 22.94878 P PPL GR ESYE25 42 9251 1031 118 Europe/Athens 2012-01-17
-253996 Sérifos Serifos Serifos,Seriphos,Sérifos,Σέριφος 37.15 24.5 P PPLA3 GR ESYE42 49 9288 0 26 Europe/Athens 2012-03-04
-254030 Selínia Selinia Selinia,Selínia,Σελήνια 37.93361 23.53361 P PPL GR ESYE31 406101 9211 2331 10 Europe/Athens 2012-01-17
-254032 Selianítika Selianitika Selianitika,Selianítika,Σελιανίτικα 38.28333 22.03333 P PPL GR ESYE23 38 9130 1210 63 Europe/Athens 2012-01-18
-254045 Savália Savalia Sabalia,Savallia,Savvalia,Savvália,Savállia,Σαβάλια 37.82158 21.29425 P PPL GR ESYE23 39 9139 1339 14 Europe/Athens 2012-01-17
-254064 Sardínia Sardinia Sardhinia,Sardhinina,Sardhínia,Sardhínina,Sardinia,Sardínia,Σαρδίνια 38.88333 21.2 P PPL GR ESYE23 31 9125 1064 72 Europe/Athens 2012-02-28
-254115 Sámos Samos Liman Vatheos,Liman Vathéos,Limen Vatheos,Limin Vatheos,Limén Vathéos,Limín Vathéos,Port Vathi,Samos,Vathy,Vathy harbor,Σάμος 37.75722 26.97694 P PPLA2 GR ESYE41 48 9264 1885 25 Europe/Athens 2012-01-17
-254123 Sámi Sami Aigialos,Aigialós,Aiyialos,Aiyialós,Gialos,Same,Sami,Samos,Sámi,Yialos,Yialós,Γιαλός,Σάμη 38.25417 20.65139 P PPL GR ESYE22 27 9120 1347 7 Europe/Athens 2012-02-28
-254144 Salamís Salamis Koulouri,Koúlouri,Salamina,Salamis,Salamís,Σαλαμίς,Саламина 37.96427 23.49649 P PPL GR ESYE31 406101 9211 26964 5 Europe/Athens 2012-01-17
-254165 Royítika Royitika Rogitika,Roitika,Royitika,Royítika,Roḯtika,Ρογίτικα 38.18333 21.68333 P PPL GR ESYE23 38 9134 1206 10 Europe/Athens 2012-01-18
-254170 Roviaí Roviai Robiai,Roviai,Roviais,Roviaí,Roviaís,Rovies,Roviés,Ροβιαί 38.81667 23.23333 P PPL GR ESYE24 34 9153 1206 75 Europe/Athens 2012-01-18
-254253 Rodotópion Rodotopion Rodhotopi,Rodhotopion,Rodhotovi,Rodhotópi,Rodhotópion,Rodhotóvi,Rodotopi,Rodotopion,Rodotópi,Rodotópion,Ροδοτόπιον 39.70833 20.72583 P PPL GR ESYE21 17 9083 1130 503 Europe/Athens 2012-02-28
-254283 Rizómilos Rizomilos Rizomilos,Rizomylos,Rizómilos,Ριζόμυλος 39.43333 22.75 P PPL GR ESYE14 24 9108 1594 56 Europe/Athens 2012-01-18
-254286 Rízoma Rizoma Rizoma,Rízoma,Sklataina,Sklátaina,Ρίζωμα 39.665 21.735 P PPL GR ESYE14 22 9114 1410 163 Europe/Athens 2012-02-28
-254315 Río Rio Rhion,Rio,Rion,Río,Ríon,Ρίο,Ρίον 38.3 21.78333 P PPL GR ESYE23 38 9134 6083 20 Europe/Athens 2012-02-28
-254352 Réthymnon Rethymnon Nomos Rethymnes,PLATANIAS RETHYMNO,Prefectura Rethimno,Prefettura di Rethymno,Resmo,Rethimno,Rethimnon,Rethymne,Rethymno,Rethymnon,Rethymnon prefektur,Rethýmne,Retimno,Retimo,Retino,Réthimnon,Réthymno,Réthymnon,Rétino,Νομός Ρεθύμνης,ΠΛΑΤΑΝΙΑΣ ΡΕΘΥΜΝΟ,Ρέθυμνο,Ρέθυμνον,Ретимно 35.36472 24.47139 P PPLA2 GR ESYE43 44 9318 29907 17 Europe/Athens 2012-01-17
-254425 Rafína Rafina Arafin,Aráfin,Rafina,Rafína,Triglia,Tríglia,Αράφην,Ραφήνα 38.01812 24.00599 P PPLA3 GR ESYE31 445406 9224 12745 11 Europe/Athens 2012-03-04
-254442 Pteleós Pteleos Ftelio,Ftelió,Pteleon,Pteleos,Pteleón,Pteleós,Πτελεός 39.05 22.95 P PPL GR ESYE14 24 9104 1349 99 Europe/Athens 2012-01-18
-254505 Psychikó Psychiko Psichiko,Psikhiko,Psikhikon,Psikhikó,Psikhikón,Psychico,Psychiko,Psychikon,Psychikó,Psykiko,Ψυχικό,Ψυχικόν 38.01667 23.76667 P PPLA3 GR ESYE31 445408 9177 10995 229 Europe/Athens 2012-03-04
-254546 Psachná Psachna Psachna,Psachná,Psakhna,Psakhná,Ψαχνά 38.58333 23.63333 P PPLA3 GR ESYE24 34 9148 5828 21 Europe/Athens 2012-03-04
-254584 Prokópion Prokopion Prokopion,Prokópion,Προκόπιον 38.73333 23.48333 P PPL GR ESYE24 34 9153 1108 90 Europe/Athens 2012-01-18
-254599 Profítis Ilías Profitis Ilias Kami Kasteli,Kanli Kastellion,Kanlí Kastéllion,Profitis Ilias,Profítis Ilías,Prophetes Elias,Προφήτης Ηλίας 35.20555 25.09985 P PPL GR ESYE43 45 9305 1482 310 Europe/Athens 2012-03-26
-254698 Préveza Preveza Prebeza,Prevesa,Preveza,Preveze,Preweza,Prévéza,prwzh,Πρέβεζα,پروزه 38.95 20.75 P PPLA2 GR ESYE21 19 9090 17283 7 Europe/Athens 2012-01-17
-254746 Prámanta Pramanta Pramanda,Pramanta,Prámanda,Prámanta,Πράμαντα 39.52306 21.10139 P PPL GR ESYE21 17 9080 1570 808 Europe/Athens 2012-02-28
-254842 Pórto Chéli Porto Cheli Kheli,Khéli,Porto Cheli,Porto Chelion,Porto-Kheli,Portocheli,Portochelion,Portochéli,Portochélion,Portokhelion,Portokhélion,Pórto Chéli,Pórto Chélion,Pórto-Khéli,Πορτοχέλιον,Πόρτο Χέλι,Πόρτο Χέλιον 37.32483 23.14152 P PPL GR ESYE25 36 9235 2219 11 Europe/Athens 2012-01-17
-254849 Portariá Portaria Portaria,Portariá 39.38333 23 P PPL GR ESYE14 24 9105 1429 502 Europe/Athens 2012-01-18
-254864 Póros Poros POROS,Poros,Póros,ΠΟΡΟΣ 38.15 20.78333 P PPL GR ESYE22 1059 1 Europe/Athens 2012-01-18
-254865 Póros Poros Poros,Póros,Πόρος 37.49944 23.45361 P PPLA3 GR ESYE31 406101 9210 4454 23 Europe/Athens 2012-03-04
-254898 Politiká Politika Politika,Politiká,Πολιτικά 38.6 23.55 P PPL GR ESYE24 34 9148 1498 78 Europe/Athens 2012-01-18
-254917 Polichnítos Polichnitos Polichnitos,Polichnítos,Polikhnitos,Polikhnítos,Πολιχνίτος 39.08111 26.18333 P PPL GR ESYE41 51 9261 2667 94 Europe/Athens 2012-01-18
-254949 Plomárion Plomarion Plomari,Plomarion,Plomári,Plomárion,Ploumarion,Potamos,Potamós,Πλωμάριον 38.97667 26.36806 P PPL GR ESYE41 51 9261 3338 18 Europe/Athens 2012-02-28
-254990 Platíkambos Platikambos Kato Platikambos,Káto Platíkambos,Platikambos,Platykampos,Platíkambos,Topuslar,Topuslár,Πλατύκαμπος 39.61667 22.53333 P PPL GR ESYE14 21 9099 1889 66 Europe/Athens 2012-01-18
-255013 Platariá Plataria Plataria,Platariá,Πλαταριά 39.4525 20.27611 P PPL GR ESYE21 18 1044 255 Europe/Athens 2012-02-28
-255030 Plátanos Platanos Platanos,Plátanos,Πλάτανος 37.66667 21.61667 P PPL GR ESYE23 39 9137 1764 113 Europe/Athens 2012-02-28
-255036 Plátanos Platanos 35.46667 23.6 P PPL GR ESYE43 43 9322 1077 256 Europe/Athens 2012-01-17
-255096 Plános Planos Planos,Plános,Πλάνος 37.81667 20.85 P PPL GR ESYE22 28 9116 1033 53 Europe/Athens 2012-01-18
-255138 Pigí Pigi Megali Poliana,Megali Poliána,Megali Pouliana,Megáli Pouliána,Pigi,Pigí,Piyi,Piyí,Poliana Megali,Poliána Megáli 39.51194 21.70111 P PPL GR ESYE14 22 9113 1158 119 Europe/Athens 2012-02-28
-255161 Pithárion Pitharion Pithari,Pitharion,Pithári,Pithárion,Πιθάριον 35.51667 24.08333 P PPL GR ESYE43 43 9325 1302 164 Europe/Athens 2012-01-18
-255163 Pythagóreion Pythagoreion Pithagorion,Pithagórion,Pythagoreio,Pythagoreion,Pythagoria,Pythagorio,Pythagorion,Pythagóreio,Pythagóreion,Teganion,Tegánion,Tiganian,Tiganion,Tigánian,Tigánion 37.69194 26.94833 P PPL GR GR ESYE41 48 9264 1360 34 Europe/Athens 2012-02-29
-255188 Pyrgíon Pyrgion Pirgi,Piryi,Piryion,Piryí,Piryíon,Pyrgi,Pyrgion,Pyrgíon,Πυργί,Πυργίον 38.22583 25.99528 P PPL GR ESYE41 50 9266 1002 149 Europe/Athens 2012-02-28
-255195 Pyrgetós Pyrgetos Piryetos,Piryetós,Pyrgetos,Pyrgetós,Πυργετός 39.91861 22.59278 P PPL GR ESYE14 21 9101 1681 132 Europe/Athens 2012-02-28
-255196 Pyrgetós Pyrgetos Piryetos,Piryetós,Pyrgetos,Pyrgetós 39.55194 21.74806 P PPL GR GR ESYE14 22 9114 1179 114 Europe/Athens 2012-01-18
-255229 Pýrgos Pyrgos Pirgos,Pyrgos,Pírgos,Πύργος,Пиргос 37.67513 21.44102 P PPLA2 GR ESYE23 39 9141 22399 25 Europe/Athens 2012-01-17
-255242 Pýrgos Pyrgos Pirgos,Pyrgos,Pírgos,Pýrgos,Πύργος 35 25.15 P PPL GR ESYE43 45 9302 1134 452 Europe/Athens 2012-02-28
-255274 Piraeus Piraeus El Pireo,El Pireu,Le Piree,Le Pirée,Peiraeus,Peiraia,Peiraias,Peiraiefs,Peiraieus,Peiraievs,Peiraiá,Peiraiás,Peiraiéfs,Piraeus,Piraievs,Piraiévs,Piraus,Pire,Pireefs,Pirej,Pireja,Pirejas,Pireo,Pireu,Pireus,Pireusz,Piräus,Piréefs,Pirėjas,bi lei ai fu si,byrayws,pireusu,Πειραιάς,Πειραιεύς,Пирей,Пирея,Пірей,פיראוס,بيرايوس,ピレウス,比雷埃夫斯 37.94745 23.63708 P PPL GR ESYE31 35 172429 12 Europe/Athens 2008-02-08
-255293 Pýlos Pylos Navarino,Neon Kastrov,Néon Kastrov,Pilos,Pylos,Pílos,Πύλος 36.91344 21.69639 P PPL GR ESYE25 40 9257 5402 3 9 Europe/Athens 2012-01-17
-255301 Pylíon Pylion Pili,Pilion,Pilí,Pilíon,Pylion,Pylli,Pylíon,Πυλίον 36.84778 27.16139 P PPL GR ESYE42 47 9284 2430 68 Europe/Athens 2012-02-28
-255305 Pýli Pyli Pili,Porta Pazar,Porta Pazari,Pyli,Píli,Pórta Pazár,Pórta Pazári,Pýli 39.45806 21.61889 P PPL GR ESYE14 22 9113 1790 225 Europe/Athens 2012-02-28
-255319 Pikérmi Pikermi Kato Pikermi,Káto Pikérmi,Passadhes,Passádhes,Pikermi,Pikermion,Pikérmi,Pikérmion,Πικέρμι,Πικέρμιον 38 23.95 P PPL GR ESYE31 445406 9224 1384 118 Europe/Athens 2012-02-28
-255377 Petroúpolis Petroupolis Kipoupolis,Kipoúpolis,Petroupolis,Петроуполис 38.04187 23.68494 P PPL GR ESYE31 445408 9184 52609 144 Europe/Athens 2012-01-17
-255439 Pétra Petra Petra,Petras,Πέτρα 39.33333 26.18333 P PPL GR ESYE41 51 9261 1299 6 Europe/Athens 2012-01-17
-255458 Péta Peta Peta,Petas,Péta,Pétas,Πέτα 39.16667 21.03472 P PPLA3 GR ESYE21 20 9076 1952 175 Europe/Athens 2012-03-04
-255495 Periyiálion Periyialion Perigialion,Periyiali,Periyialion,Periyiáli,Periyiálion,Περιγιάλιον 37.95 22.83333 P PPL GR ESYE25 37 9243 2042 3 Europe/Athens 2012-01-18
-255498 Perivólion Perivolion Peribolion,Perivoli,Perivolion,Perivóli,Perivólion,Περιβόλιον 39.42056 20.01472 P PPL GR ESYE22 25 9118 1432 45 Europe/Athens 2012-02-28
-255507 Perivólia Perivolia Peribolia,Perivolia,Perivólia,Περιβόλια 35.48333 23.98333 P PPL GR ESYE43 43 9325 3320 53 Europe/Athens 2012-01-18
-255524 Peristéri Peristeri Peristeri,Peristeri Attikes,Peristerion,Peristéri,Peristérion,Περιστέρι,Περιστέρι Αττικής,Περιστέριον,Перистерион 38.01667 23.7 P PPLA3 GR ESYE31 445408 9183 137659 61 Europe/Athens 2012-03-04
-255562 Pérdika Perdika Arpitsa,Arpítsa,Perdhika,Perdika,Perdikas,Pérdhika,Pérdika,Pérdikas,Πέρδικα 39.36889 20.30389 P PPL GR ESYE21 18 9077 1875 246 Europe/Athens 2012-02-28
-255585 Pérama Perama Perama,Pérama 39.69528 20.84861 P PPL GR ESYE21 17 9084 3066 471 Europe/Athens 2012-02-28
-255588 Pérama Perama Perama,Pérama,Πέραμα,Перама 37.96775 23.5721 P PPLA3 GR ESYE31 406101 9206 26288 71 Europe/Athens 2012-03-04
-255589 Pérama Perama Perama,Pérama,Перама 35.3703 24.70345 P PPL GR ESYE43 44 9317 1655 36 Europe/Athens 2012-03-27
-255594 Perakhóra Perakhora Perachora,Perakhora,Perakhóra,Περαχώρα 38.03333 22.95 P PPL GR ESYE25 37 9244 1246 331 Europe/Athens 2012-01-18
-255621 Pelópion Pelopion Krekouki,Krekoúki,Pelopion,Pelópion,Πελόπιον 37.68333 21.58333 P PPL GR ESYE23 39 9137 1073 67 Europe/Athens 2012-01-18
-255638 Pelasyía Pelasyia Gardhiki,Gardhíki,Pelasgia,Pelasyia,Pelasyía,Πελασγία 38.95 22.83333 P PPL GR ESYE24 29 9164 1586 303 Europe/Athens 2012-01-18
-255646 Pediní Pedini Pedhini,Pedhiní,Pedine,Pedini,Pediní,Πεδινή 39.59972 20.84333 P PPL GR ESYE21 17 9084 2128 490 Europe/Athens 2012-02-28
-255683 Pátra Patra Patra,Patrae,Patrai,Patras,Patrasse,Patrasso,Patres,Patrás,Pátra,Pátrai,Pátras,pa te lei,patora,ptrs,Πάτρα,Πάτραι,Πατραι,Патра,פטרס,パトラ,帕特雷 38.24444 21.73444 P PPLA GR ESYE23 38 9134 163360 20 Europe/Athens 2012-02-28
-255689 Patitírion Patitirion Pateterion,Patitiri,Patitirion,Patitíri,Patitírion,Πατητήριον 39.15 23.86667 P PPL GR ESYE14 24 9109 1647 53 Europe/Athens 2012-01-18
-255709 Pásion Pasion Pasion,Paso,Pasó,Pásion,Πάσιον 38.01667 22.73333 P PPL GR ESYE25 37 9247 1150 10 Europe/Athens 2012-01-18
-255721 Páros Paros Paroikia,Paroikía,Paros,Páros,Πάρος 37.08333 25.15 P PPLA3 GR ESYE42 49 9294 5289 10 Europe/Athens 2012-03-04
-255736 Párga Parga Barga,Parga,Párga,barghh,parghh,Πάργα,Парга,بارغه,پارغه 39.28306 20.39639 P PPL GR ESYE21 19 9089 2379 25 Europe/Athens 2012-02-28
-255739 Paravóla Paravola Parabola,Paravola,Paravóla,Παραβόλα 38.61667 21.51667 P PPL GR ESYE23 31 9123 1215 76 Europe/Athens 2012-02-28
-255750 Proástion Proastion Paraprastaina,Paraprástaina,Proastio,Proastion,Proástio,Proástion,Προάστιον 39.48861 21.9025 P PPL GR ESYE14 23 9095 1766 95 Europe/Athens 2012-02-28
-255753 Parapótamos Parapotamos Parapotamos,Parapótamos,Varfani,Várfani,Παραπόταμος 39.54917 20.32278 P PPL GR ESYE21 18 9077 1126 126 Europe/Athens 2012-02-28
-255760 Paramythiá Paramythia Paramithia,Paramithiá,Paramythia,Paramythiá,Paramythía,Παραμυθιά 39.47111 20.51111 P PPLA3 GR ESYE21 18 9078 2568 304 Europe/Athens 2012-03-04
-255777 Paralía Paralia Paralia,Paralía,Παραλία 38.2 21.7 P PPL GR ESYE23 38 9134 7298 255 Europe/Athens 2012-02-28
-255798 Pappádos Pappados Pappadhos,Pappados,Pappádhos,Pappádos,Παππάδος 39.03944 26.45472 P PPL GR ESYE41 51 9261 1534 77 Europe/Athens 2012-01-18
-255807 Pappadátai Pappadatai Papadatai,Papadhates,Papadhátes,Papadátai,Pappadatai,Pappadates,Pappadhatai,Pappadhátai,Pappadátai,Pappadátes,Παππαδάται 39.31333 20.7925 P PPL GR ESYE21 19 9088 1313 281 Europe/Athens 2012-02-28
-255849 Pánormos Panormos Kastelli Milopotamou,Kastélli Milopotámou,Panormon,Panormos,Pánormon,Pánormos,Πάνορμος 35.41815 24.69091 P PPL GR ESYE43 44 9317 1157 1 1 Europe/Athens 2012-03-26
-255945 Panaitólion Panaitolion Moustafouli,Moustafoulion,Moustafoúli,Moustafóulion,Panaitolion,Panaitólion,Παναιτώλιον 38.58333 21.45 P PPL GR ESYE23 31 9123 2915 37 Europe/Athens 2012-01-18
-255959 Pámfylla Pamfylla Pafla,Pamfila,Pamfilla,Pamfylla,Pamphila,Páfla,Pámfila,Pámfilla,Pámfylla,Πάμφιλα 39.15667 26.52167 P PPL GR ESYE41 51 9261 1251 21 Europe/Athens 2012-01-18
-255971 Pallíni Pallini Ano Kharvati,Pallini,Pallíni,Áno Kharváti,Παλλήνη 37.99702 23.87723 P PPL GR ESYE31 445406 9223 14808 176 Europe/Athens 2012-01-18
-256047 Palamás Palamas Palamas,Palamás,Παλαμάς 39.46667 22.08333 P PPL GR ESYE14 23 9095 5719 92 Europe/Athens 2012-01-18
-256054 Pálairos Palairos Palairos,Pálairos,Zavedha,Zavédha,Πάλαιρος 38.78333 20.88333 P PPL GR ESYE23 31 9124 2589 32 Europe/Athens 2012-02-28
-256066 Palaiópyrgos Palaiopyrgos Palaiopirgos,Palaiopyrgos,Palaiópirgos,Palaiópyrgos,Paliopirgos,Paliópirgos,Zavlania,Zavlánia 39.60722 21.81722 P PPL GR ESYE14 22 9114 1035 101 Europe/Athens 2012-02-28
-256075 Palaió Fáliro Palaio Faliro Alt Phaleron,Old Faliron,Palaio Faliro,Palaion Faliron,Palaió Fáliro,Palaión Fáliron,Παλαιό Φάληρο,Παλαιόν Φάληρον 37.92066 23.70916 P PPLA3 GR ESYE31 445408 9201 66292 28 Europe/Athens 2012-03-04
-256079 Palaiomonástiron Palaiomonastiron Beletsi,Belétsi,Palaiomonasteron,Palaiomonastiro,Palaiomonastiron,Palaiomonástiro,Palaiomonástiron,Paliomonastiri,Paliomonastirion,Paliomonastíri,Paliomonastírion,Παλαιομονάστηρον 39.4625 21.65861 P PPL GR ESYE14 22 9113 1182 176 Europe/Athens 2012-02-28
-256093 Palaiókipos Palaiokipos Palaiokepos,Palaiokipos,Palaiókipos,Παλαιόκηπος 39.05583 26.45111 P PPL GR ESYE41 51 9261 1184 76 Europe/Athens 2012-01-18
-256131 Palaiochóra Palaiochora Palaiochora,Palaiochóra,Palaiokhora,Palaiokhóra,Paleochora,Selino Kasteli,Selino Kastelli,Sélino Kastélli 35.23333 23.68333 P PPL GR ESYE43 43 9321 2372 5 Europe/Athens 2012-01-18
-256155 Palaíkastron Palaikastron Palaikastro,Palaikastron,Palaiokastro,Palaiokastron,Palaiókastro,Palaiókastron,Palaíkastro,Palaíkastron,Palekastro,Palékastro,Παλαίκαστρο,Παλαίκαστρον 35.2 26.25 P PPL GR ESYE43 46 9313 1094 33 Europe/Athens 2012-01-18
-256173 Palaiá Fókaia Palaia Fokaia Fokaia,Fókaia,Palaia Fokaia,Palaiá Fókaia,Παλαιά Φώκαια 37.71995 23.94626 P PPL GR ESYE31 445406 9225 2824 4 Europe/Athens 2012-01-18
-256197 Paianía Paiania Liopesi,Liópesi,Paiania,Paianía,Παιανία 37.95527 23.85443 P PPLA3 GR ESYE31 445406 9222 14246 183 Europe/Athens 2012-03-04
-256210 Oxílithos Oxilithos Oxilithos,Oxylithos,Oxílithos,Οξύλιθος 38.58333 24.11667 P PPL GR ESYE24 34 9152 1061 192 Europe/Athens 2012-01-18
-256223 Ovriá Ovria Obria,Obrya,Ovria,Ovriá,Οβριά,Οβρυά 38.18333 21.71667 P PPL GR ESYE23 38 9134 5838 75 Europe/Athens 2012-01-18
-256257 Oropós Oropos Oropos,Oropus,Oropós,Ωρωπός 38.3 23.75 P PPLA3 GR ESYE31 445406 9227 0 48 Europe/Athens 2012-03-04
-256268 Orchomenós Orchomenos Adamas,Adhamas,Adhámas,Adámas,Athamas,Athámas,Orchomene,Orchomenos,Orchomenus,Orchomenós,Orchomène,Orcomeno,Orcómeno,Orkhomen,Orkhomenos,Orkhomenós,Skripou,Skripoú,Αδάμας,Ορχομενός,Орхомен 38.4929 22.97962 P PPL GR ESYE24 33 9146 5919 104 Europe/Athens 2012-01-17
-256284 Oreoí Oreoi Oreoi,Oreoí,Ωρεοί 38.95 23.1 P PPL GR ESYE24 34 9150 1293 18 Europe/Athens 2012-02-28
-256296 Omvriakí Omvriaki Ombriake,Omvriaki,Omvriakí,Ομβριακή 39.1 22.26667 P PPL GR ESYE24 29 9159 1213 567 Europe/Athens 2012-01-18
-256329 Oinoússai Oinoussai Chorio Oinoussai,Chorió Oinoússai,Mandraki,Mandráki,Oinousa,Oinousai,Oinoussai,Oinoúsai,Oinoússai,Οινούσσαι 38.51417 26.22028 P PPL GR ESYE41 50 9265 1182 15 Europe/Athens 2012-02-28
-256339 Oinófyta Oinofyta Oinofita,Oinofyta,Oinophyta,Oinófita,Oinófyta,Staniates,Staniátes,Οινόφυτα 38.31667 23.63333 P PPL GR ESYE24 33 9147 2971 132 Europe/Athens 2012-02-28
-256342 Oikismós Papágou Oikismos Papagou Oikismos Papagou,Oikismós Papágou,Papagos,Papagou,Papágos,Papágou 37.98333 23.81667 P PPLX GR ESYE31 445408 9175 12903 398 Europe/Athens 2012-01-18
-256428 Níkaia Nikaia Nebegler,Nebeglér,Nikaia,Níkaia 39.56667 22.46667 P PPL GR ESYE14 21 9099 3274 89 Europe/Athens 2012-01-18
-256429 Níkaia Nikaia Nea Kokkinia,Neokokinis,Nikaia,Néa Kokkiniá,Níkaia,Νίκαια 37.96667 23.65 P PPLA3 GR ESYE31 406101 9204 94608 30 Europe/Athens 2012-03-04
-256449 Nerokoúros Nerokouros Nerokouros,Nerokourou,Nerokoúros,Nerokoúrou,Νεροκούρος 35.48333 24.03333 P PPL GR ESYE43 43 9325 4388 25 Europe/Athens 2012-01-18
-256485 Néon Monastírion Neon Monastirion Neon Monasterion,Neon Monastirion,Néon Monastírion,Tsomba,Tsómba,Νέον Μοναστήριον 39.23333 22.25 P PPL GR ESYE24 29 9159 1497 113 Europe/Athens 2012-01-18
-256492 Néon Karlovásion Neon Karlovasion Karlovasi,Neon Karlobasion,Neon Karlovasi,Neon Karlovasion,Néon Karlovásion,Néon Karlóvasi,Νέον Καρλοβάσιον 37.79028 26.70444 P PPL GR ESYE41 48 9264 5924 26 Europe/Athens 2012-02-28
-256499 Neochorópoulon Neochoropoulon Neochoropoulo,Neochoropoulon,Neochorópoulo,Neochorópoulon,Neokhori,Neokhoropoulon,Neokhorópoulon,Neokhóri,Νεοχωρόπουλον 39.62861 20.83417 P PPL GR ESYE21 17 9084 1088 549 Europe/Athens 2012-02-28
-256504 Oichalía Oichalia Neochori,Neochorion,Neochóri,Neochórion,Neokhori,Neokhorion,Neokhórion,Niokhori,Niokhóri,Oichalia,Oichalía 39.60667 21.98083 P PPL GR GR ESYE14 22 9115 3271 109 Europe/Athens 2012-01-18
-256508 Neochórion Neochorion Neochori,Neochorion,Neochóri,Neochórion,Neokhorion,Neokhórion 39.27694 21.73306 P PPL GR ESYE14 23 9093 1121 943 Europe/Athens 2012-02-28
-256509 Neochórion Neochorion Neochori,Neochorion,Neochóri,Neochórion,Neokhori,Neokhorion,Neokhóri,Neokhórion 39.06944 21.01889 P PPL GR ESYE21 20 9076 2102 2 Europe/Athens 2012-02-28
-256520 Neochórion Neochorion Neochori,Neochorion,Neochóri,Neochórion,Neokhori,Neokhorion,Neokhóri,Neokhórion 38.41667 21.28333 P PPL GR ESYE23 31 9127 3116 6 Europe/Athens 2012-02-28
-256527 Neochórion Neochorion Neochori,Neochorion,Neochóri,Neochórion,Neokhori,Neokhorion,Neokhóri,Neokhórion 37.91667 21.2 P PPL GR ESYE23 39 9135 1105 2 Europe/Athens 2012-02-28
-256554 Nénita Nenita Neneta,Nenita,Nénita,Νένητα 38.23889 26.09306 P PPL GR ESYE41 50 9266 1032 146 Europe/Athens 2012-02-28
-256558 Neméa Nemea Ayios Yeoryios,Nemea,Neméa,Áyios Yeóryios,Νεμηα 37.81667 22.66667 P PPL GR ESYE25 37 9245 4344 323 Europe/Athens 2012-01-18
-256571 Néa Tírins Nea Tirins Kofini,Kofinion,Kofíni,Kofínion,Nea Tirins,Nea Tiryns,Néa Tírins,Νέα Τίρυνς 37.6 22.81667 P PPL GR ESYE25 36 9236 1305 135 Europe/Athens 2012-01-18
-256572 Néa Stíra Nea Stira Nea Stira,Nea Styra,Néa Stíra,Νέα Στύρα 38.18333 24.2 P PPL GR ESYE24 1061 -9999 Europe/Athens 2012-01-18
-256575 Néa Smýrni Nea Smyrni Nea Smirni,Nea Smyrne,Nea Smyrni,Néa Smírni,Néa Smýrni,Νέα Σμύρνη 37.95 23.71667 P PPLA3 GR ESYE31 445408 9200 75421 60 Europe/Athens 2012-03-04
-256580 Néa Seléfkeia Nea Selefkeia Nea Selefkeia,Nea Selevkia,Néa Seléfkeia,Néa Selévkia 39.52556 20.25861 P PPL GR GR ESYE21 18 9077 1213 42 Europe/Athens 2012-01-18
-256589 Neápolis Neapolis Neapole,Neapoli,Neapolis,Neápoli,Neápolis,Νεάπολη,Νεάπολις 35.25389 25.60972 P PPL GR ESYE43 46 9310 2809 242 Europe/Athens 2012-02-28
-256592 Néa Péramos Nea Peramos Nea Peramos,Néa Péramos,Νέα Πέραμος 38.00763 23.42295 P PPL GR ESYE31 445407 9231 7705 17 Europe/Athens 2012-01-18
-256593 Néa Palátia Nea Palatia Nea Palatia,Néa Palátia,Νέα Παλάτια 38.31667 23.8 P PPL GR ESYE31 445406 9227 2400 44 Europe/Athens 2012-01-18
-256596 Néa Manolás Nea Manolas Nea Manolas,Néa Manolás,Νέα Μανολάς 38.05 21.38333 P PPL GR ESYE23 39 9135 2219 16 Europe/Athens 2012-01-18
-256598 Néa Mákri Nea Makri Ayios Konstandinos,Nea Makre,Nea Makri,Néa Mákri,Áyios Konstandínos,Νέα Μάκρη 38.08333 23.98333 P PPL GR ESYE31 445406 9220 14723 11 Europe/Athens 2012-02-28
-256601 Ílion Ilion Ilion,Kato Liosia,Káto Liósia,Nea Liosia,Néa Liósia,Ílion,Ίλιον,Νέα Λιόσια 38.03333 23.7 P PPLA3 GR ESYE31 445408 9182 81647 90 Europe/Athens 2012-03-04
-256606 Néa Kíos Nea Kios Nea Kios,Néa Kíos,Νέα Κίος 37.59102 22.74144 P PPL GR ESYE25 36 9233 4214 2 Europe/Athens 2012-01-17
-256614 Néa Ionía Nea Ionia Nea Ionia,Néa Ionía,Podharadhes,Podharádhes,Νέα Ιωνία 38.03333 23.75 P PPLA3 GR ESYE31 445408 9174 67835 135 Europe/Athens 2012-03-04
-256621 Néa Filadélfeia Nea Filadelfeia Filadelfia,Nea Filadelfeia,Nea Filadhelfia,Néa Filadhélfia,Néa Filadélfeia,Podhoniftis,Podhoníftis,Νέα Φιλαδέλφεια 38.03333 23.73333 P PPLA3 GR ESYE31 445408 9193 23644 93 Europe/Athens 2012-03-04
-256622 Néa Erythraía Nea Erythraia Nea Erithraia,Nea Erythraia,Néa Erithraía,Néa Erythraía,Νέα Ερυθραία 38.1 23.81667 P PPL GR ESYE31 445408 9171 16432 274 Europe/Athens 2012-02-28
-256626 Néa Artáki Nea Artaki Nea Artaki,Néa Artáki,Νέα Αρτάκη 38.51667 23.63333 P PPL GR ESYE24 34 9155 9193 5 Europe/Athens 2012-02-28
-256627 Néa Ankhíalos Nea Ankhialos Nea Anchialos,Nea Ankhialos,Néa Ankhíalos,Νέα Αγχίαλος 39.28333 22.81667 P PPL GR ESYE14 24 9105 5908 56 Europe/Athens 2012-01-18
-256632 Naxos Naxos Naxia,Naxos,Náxia,Náxos,Νάξος 37.10556 25.37639 P PPL GR ESYE42 49 9292 7574 32 Europe/Athens 2012-01-17
-256637 Náfplio Nafplio Anabolu,Mora Yenisehri,Mora Yenişehri,Nafplio,Nafplion,Napoli di Romania,Nauplia,Nauplie,Nauplio,Nauplion,Navplio,Navplion,Náfplio,Náfplion,Návplio,Návplion,anabwly,nafupurio,Ναύπλιο,Ναύπλιον,Нафплион,انابولی,ナフプリオ 37.56828 22.80528 P PPLA2 GR ESYE25 36 9236 14582 1 Europe/Athens 2012-01-17
-256639 Náfpaktos Nafpaktos Epakhtos,Inebahti,Inebahtı,Lepanto,Nafpaktos,Naupaetus,Navpaktos,Náfpaktos,Návpaktos,aynh bhty,Ναύπακτος,اینه بحتی 38.39167 21.8275 P PPLA3 GR ESYE23 31 9128 18000 3 Europe/Athens 2012-03-04
-256653 Náousa Naousa Naousa,Nausa,Náousa 37.11667 25.23333 P PPL GR ESYE42 49 9294 2596 28 Europe/Athens 2012-01-18
-256660 Mouzourás Mouzouras Mouzouras,Mouzourás,Muzuras,Μουζουράς 35.53333 24.15 P PPL GR ESYE43 43 9325 1462 135 Europe/Athens 2012-01-18
-256662 Mouzákion Mouzakion Mouzaki,Mouzakion,Mouzáki,Mouzákion,Μουζάκι,Μουζάκιον 39.42972 21.66361 P PPL GR ESYE14 23 9094 2127 182 Europe/Athens 2012-02-28
-256664 Mouzaki Mouzaki Mouzaki,Mouzáki,Μουζάκι 37.73333 20.81667 P PPL GR ESYE22 28 9116 1545 192 Europe/Athens 2012-01-17
-256696 Mourniaí Mourniai Mourniai,Mourniaí,Mournies,Mournion,Mourniés,Mournión,Μουρνιές 35.47639 24.00917 P PPL GR GR ESYE43 43 9325 5318 72 Europe/Athens 2012-01-18
-256728 Moúlkion Moulkion Moulki,Moulkion,Moúlki,Moúlkion 38 22.73333 P PPL GR ESYE25 37 9247 1316 41 Europe/Athens 2012-01-18
-256750 Moskháton Moskhaton 37.95 23.66667 P PPL GR ESYE31 406101 9205 23533 12 Europe/Athens 2012-01-17
-256757 Mória Moria Morea,Moria,Mória,Μόρια 39.13333 26.51667 P PPL GR ESYE41 51 9261 1176 27 Europe/Athens 2012-01-18
-256759 Morfovoúnion Morfovounion Morfovouni,Morfovounion,Morfovoúni,Morfovoúnion,Morphobounion,Vounesi,Vounési,Μορφοβούνιον 39.3525 21.75 P PPL GR ESYE14 23 9093 1271 822 Europe/Athens 2012-02-28
-256808 Monastirákion Monastirakion Monasterakion,Monastiraki,Monastirakion,Monastiráki,Monastirákion,Μοναστηράκιον 38.85 20.95 P PPL GR ESYE23 31 9124 1299 303 Europe/Athens 2012-01-18
-256824 Mólos Molos Molos,Mólos,Μώλος 38.81667 22.65 P PPL GR ESYE24 29 9163 3280 19 Europe/Athens 2012-01-18
-256833 Moláoi Molaoi Mola,Molaoi,Moláoi,Μολάοι 36.80757 22.85132 P PPL GR ESYE25 42 9251 3018 208 Europe/Athens 2012-01-17
-256838 Mokhós Mokhos Mochos,Mokho,Mokhos,Mokhós,Μοχός 35.26342 25.42305 P PPL GR ESYE43 45 9309 1132 397 Europe/Athens 2012-03-26
-256842 Moíres Moires Mires,Moirai,Moirais,Moires,Moírai,Moírais,Moíres,Míres,Μοίραι,Μοίρες 35.05319 24.87442 P PPLA3 GR ESYE43 45 9308 6450 107 Europe/Athens 2012-03-26
-256860 Mitrópolis Mitropolis Metropole,Mitropoli,Mitropolis,Mitrópoli,Mitrópolis,Paliokastron,Paliókastron,Μητρόπολη 39.33944 21.83694 P PPL GR ESYE14 23 9092 1572 148 Europe/Athens 2012-02-28
-256865 Mytilinioí Mytilinioi Mitilinioi,Mitilinioí,Mitilinoi,Mitilinoí,Mytilenioi,Mytilinioi,Mytilinioí,Μυτιληνιοί 37.72861 26.90833 P PPL GR ESYE41 48 9264 2255 118 Europe/Athens 2012-02-28
-256866 Mytilíni Mytilini Kastro,Mitilini,Mitilíni,Mitylene,Mytilene,Mytilini,Mytilíni,Μυτιλήνη,Митилини 39.11 26.55472 P PPLA GR ESYE41 51 9261 28322 12 Europe/Athens 2012-02-28
-256872 Mytikas Mytikas Mitikas,Mytikas,Mítikas,Μύτικας 38.44373 23.65365 P PPL GR ESYE24 34 9155 1632 21 Europe/Athens 2012-01-17
-256879 Míthymna Mithymna Methymna,Mithimna,Molivdhos,Molivos,Molova,Molyvos,Míthimna,Mólivdhos,Mólivos,mwlwh,Μήθυμνα,مولوه 39.36781 26.17639 P PPL GR ESYE41 51 9261 1558 69 Europe/Athens 2012-01-17
-256914 Mirsíni Mirsini Mirsini,Mirsíni,Myrsine,Souleimanaga,Souleïmánaga,Suleimanaga,Suleïmánaga,Μυρσίνη 37.91667 21.23333 P PPL GR ESYE23 39 9135 1213 0 Europe/Athens 2012-01-18
-256930 Mýrina Myrina Kastro,Kastron,Kástron,Mirina,Myrina,Mírina,Mýrina,Μύρινα 39.87972 25.07417 P PPL GR ESYE41 51 9263 5406 78 Europe/Athens 2012-02-28
-256952 Mílos Milos Milos,Mílos,Plaka,Μήλος 36.75 24.43333 P PPLA3 GR ESYE42 49 9287 844 96 Europe/Athens 2012-03-04
-256985 Milésion Milesion Milesi,Milesion,Milésion,Mílesi,Μιλέσιον 38.28333 23.8 P PPL GR ESYE31 445406 9227 1121 154 Europe/Athens 2012-01-18
-257056 Mykonos Mykonos Chora,Kamenaki,Khora,Khóra,Mikonos,Mykoni,Mykonos,Míkonos,Μύκονος,Χωρα,Χώρα 37.44529 25.32872 P PPL GR ESYE42 49 9290 7739 9 Europe/Athens 2012-01-17
-257080 Megísti Megisti Castelrosso,Kastellorizon,Kastellórizon,Kastelorizo,Megisti,Megísti,Meyisti,Meyísti,Μεγίστη 36.14889 29.59361 P PPLA3 GR ESYE42 47 9295 0 19 Europe/Athens 2012-03-04
-257083 Metsovo Metsovo Metsovo,Metsovon,Mezzovo,Μέτσοβο,Μέτσοβον 39.76944 21.18222 P PPL GR ESYE21 17 9086 3304 1145 Europe/Athens 2012-01-17
-257122 Methóni Methoni Methone,Modo,Modó,Μεθώνη 36.81973 21.70486 P PPL GR ESYE25 40 9257 1165 20 Europe/Athens 2012-01-17
-257126 Méthana Methana Methana,Méthana,Μέθανα 37.58234 23.39142 P PPL GR ESYE31 406101 9213 1183 11 Europe/Athens 2012-01-18
-257141 Metamórfosi Metamorfosi Metamorfosi,Metamorfosis,Metamórfosi,Metamórfosis,Psagnoi,Psagnoí,Valarion,Valarión,Μεταμόρφωση 37.53333 23.35 P PPLA3 GR ESYE31 406101 9213 0 70 Europe/Athens 2012-03-04
-257152 Messíni Messini Messene,Messeni,Messini,Messíni,Nisi,Nision,Nisíon,Μεσσήνη 37.05111 22.00778 P PPL GR ESYE25 40 9255 6773 21 Europe/Athens 2012-02-28
-257186 Mesolóngi Mesolongi Mesolonghi,Mesolongi,Mesolongion,Mesolónghi,Mesolóngi,Mesolóngion,Messolonghi,Messolongi,Messolóngi,Missolonghi,Μεσολόγγι,Μεσολόγγιον 38.36917 21.42917 P PPLA2 GR ESYE23 31 9127 12701 5 Europe/Athens 2012-02-28
-257224 Mesariá Mesaria Mesaria,Mesariá,Messaria,Messariá,Μεσαριά 36.39848 25.44589 P PPL GR ESYE42 49 9270 1233 162 Europe/Athens 2012-01-18
-257258 Agía Triás Agia Trias Agia Triada,Agia Trias,Agía Triáda,Agía Triás,Merichovon,Merikhovon,Meríchovon,Meríkhovon,Mirikhovon,Miríkhovon 39.46333 21.89861 P PPL GR GR ESYE14 23 9095 1030 94 Europe/Athens 2012-01-18
-257268 Menídi Menidi Menidhi,Menidhion,Menidi,Menidion,Menídhion,Menídi,Menídion,Μενίδι,Μενίδιον 39.04194 21.11778 P PPL GR ESYE23 31 9125 1110 4 Europe/Athens 2012-02-28
-257282 Melívoia Melivoia Athanati,Athanaton,Athánati,Athánaton,Meliboia,Melivoia,Melívoia,Μελίβοια 39.75 22.8 P PPL GR ESYE14 21 9097 1248 343 Europe/Athens 2012-01-18
-257302 Melíssia Melissia Melissia,Melissija,Melíssia,Μελίσσια,Мелиссия 38.05 23.83333 P PPLA3 GR ESYE31 445408 9176 22385 273 Europe/Athens 2012-03-04
-257322 Meligalás Meligalas Meligala,Meligalas,Meligalá,Meligalás,Μελιγαλάς 37.21667 21.96667 P PPL GR ESYE25 40 9256 1431 82 Europe/Athens 2012-01-18
-257365 Mégara Megara Megara,Megare,Mégara,Mégare,megala,Μέγαρα,Мегара,메가라 38 23.34556 P PPLA3 GR ESYE31 445407 9231 24047 50 Europe/Athens 2012-03-04
-257395 Megalópoli Megalopoli Megalopole,Megalopoli,Megalopolis,Megalópoli,Megalópolis,mglwpwlys,Μεγαλόπολη,מגלופוליס 37.40111 22.14222 P PPLA3 GR ESYE25 41 9239 5283 429 Europe/Athens 2012-03-04
-257400 Megálo Chorió Megalo Chorio Megalo Chorio,Megalo Chorion,Megalo Khorio,Megalocorio,Megalon Chorion,Megalon Khorion,Megálo Chorió,Megálo Chorión,Megálo Khorió,Megálon Choríon,Megálon Khoríon,Μεγάλο Χωριό 36.44917 27.34833 P PPLA3 GR ESYE42 47 9298 0 33 Europe/Athens 2012-03-04
-257406 Megalochórion Megalochorion Boukhounitsa,Boukhounítsa,Megalo Khorio,Megalochori,Megalochorion,Megalochóri,Megalochórion,Megalokhorion,Megalokhórion,Megálo Khorió 39.55944 21.84083 P PPL GR ESYE14 22 9114 1564 102 Europe/Athens 2012-02-28
-257434 Megáli Khóra Megali Khora Megale Chora,Megali Khora,Megáli Khóra,Zapandi,Zapandion,Zapándi,Zapándion,Μεγάλη Χώρα 38.63333 21.36667 P PPL GR ESYE23 31 9123 1191 38 Europe/Athens 2012-01-18
-257448 Megála Kalývia Megala Kalyvia Megala Kalivia,Megala Kalybia,Megala Kalyvia,Megála Kalívia,Megála Kalývia,Μεγάλα Καλύβια 39.5 21.7875 P PPL GR ESYE14 22 9114 2091 105 Europe/Athens 2012-02-28
-257535 Mavrommátion Mavrommation Mavromati,Mavrommati,Mavrommation,Mavrommáti,Mavrommátion,Mavromáti 39.42389 21.69556 P PPL GR GR ESYE14 23 9094 1426 157 Europe/Athens 2012-01-18
-257621 Martínon Martinon Martino,Martinon,Martínon,Μαρτίνον 38.56667 23.21667 P PPL GR ESYE24 29 9161 3038 222 Europe/Athens 2012-01-18
-257643 Marmárion Marmarion Marmari,Marmarion,Marmári,Μαρμάρι,Μαρμάριον 38.04839 24.32039 P PPL GR 1013 7 Europe/Athens 2010-05-22
-257669 Markópoulo Oropoú Markopoulo Oropou Markopoulo Oropou,Markopoulon,Markopoulon Oropion,Markopoulon Oropou,Markópoulo Oropoú,Markópoulon,Markópoulon Oropoú,Markópoulon Óropion,Μαρκόπουλο Ωρωπού 38.28333 23.83333 P PPL GR ESYE31 445406 9227 4214 298 Europe/Athens 2012-02-28
-257671 Markópoulo Markopoulo Markopoulo,Markopoulon,Markopulo,Markópoulo,Markópoulon,Mavrovouni,Mavrovoúni,Μαρκόπουλο,Μαρκόπουλον 37.88333 23.93333 P PPLA3 GR ESYE31 445406 9221 7962 95 Europe/Athens 2012-03-04
-257717 Marathóna Marathona Marathon,Marathona,Marathón,Marathóna,Μαραθών,Μαραθώνα 38.15 23.96667 P PPLA3 GR ESYE31 445406 9220 4051 35 Europe/Athens 2012-03-04
-257721 Marathókampos Marathokampos Marathocampos,Marathokambos,Marathokambou,Marathokampos,Marathokámbou,Marathókambos,Marathókampos,Μαραθόκαμπος 37.72639 26.69 P PPL GR ESYE41 48 9264 1268 240 Europe/Athens 2012-02-28
-257762 Manolás Manolas Manolada,Manolas,Manoláda,Manolás,Μανολάς 38.05 21.35 P PPL GR ESYE23 39 9135 1650 5 Europe/Athens 2012-02-28
-257804 Mandráki Mandraki Mandracchio,Mandrakhi,Mandraki,Mandrakion,Mandrákhi,Mandráki,Mandrákion,Μανδράκι,Мандраки 36.61139 27.13333 P PPLA3 GR ESYE42 47 9285 682 7 Europe/Athens 2012-03-04
-257811 Mándra Mandra Mandhra,Mandra,Mándhra,Mándra,Μάνδρα 38.06667 23.5 P PPLA3 GR ESYE31 445407 9230 11294 79 Europe/Athens 2012-03-04
-257814 Mantoúdi Mantoudi Mandoudhion,Mandoúdhion,Mantoudi,Mantoudion,Mantoúdi,Mantoúdion,Mantudi,Μαντούδι,Μαντούδιον 38.8 23.48333 P PPL GR ESYE24 34 9153 1794 54 Europe/Athens 2012-02-28
-257827 Mantamádos Mantamados Mandamadhos,Mandamado,Mandamados,Mandamádhos,Mandamádos,Mandhamadhos,Mandhamádhos,Mantamados,Mantamádos,Μανταμάδος 39.31167 26.33389 P PPL GR ESYE41 51 9261 1120 156 Europe/Athens 2012-01-18
-257859 Mália Malia Malia,Mallia,Mália,Mállia,Μάλια 35.28333 25.46667 P PPL GR ESYE43 45 9309 4343 29 Europe/Athens 2012-01-18
-257868 Malesína Malesina Malesina,Malesína,Μαλεσίνα 38.61667 23.23333 P PPL GR ESYE24 29 9161 4281 249 Europe/Athens 2012-01-18
-257923 Makrísia Makrisia Makrisia,Makrísia,Μακρίσια 37.61667 21.6 P PPL GR ESYE23 39 9136 1902 50 Europe/Athens 2012-01-18
-257936 Makrinítsa Makrinitsa Makrinitsa,Makrinítsa,Makrynitza,Μακρινίτσα 39.4 22.98333 P PPL GR ESYE14 24 9105 1014 525 Europe/Athens 2012-01-18
-257948 Makrikhórion Makrikhorion Makrikhori,Makrikhorion,Makrikhóri,Makrikhórion,Makrychorion,Μακρυχώριον 39.8 22.48333 P PPL GR ESYE14 21 9101 1835 153 Europe/Athens 2012-01-18
-257949 Makrychórion Makrychorion Makrikhori,Makrikhorion,Makrikhóri,Makrikhórion,Makrychori,Makrychorion,Makrychóri,Makrychórion 39.44 21.96639 P PPL GR ESYE14 23 9092 1188 92 Europe/Athens 2012-02-28
-257975 Makrakómi Makrakomi Makrakome,Makrakomi,Makrakómi,Varibopi,Varibópi,Μακρακώμη 38.93333 22.11667 P PPL GR ESYE24 29 9162 2065 126 Europe/Athens 2012-01-18
-258004 Magoúla Magoula 38.41667 23.83333 P PPL GR ESYE24 34 9149 1552 46 Europe/Athens 2012-01-17
-258007 Magoúla Magoula Magoula,Magoúla,Μαγούλα 38.08333 23.51667 P PPL GR ESYE31 445407 9229 4219 88 Europe/Athens 2012-02-28
-258011 Magoúla Magoula 37.08333 22.41667 P PPL GR ESYE25 42 9252 1545 228 Europe/Athens 2012-01-17
-258066 Loutrákion Loutrakion LOUTRAKI,Loutraki,Loutrakion,Loutráki,Loutrákion,Lutraki,ΛΟΥΤΡΑΚΙ,Λουτράκιον 37.9783 22.97781 P PPL GR ESYE25 37 9244 12275 11 Europe/Athens 2012-01-18
-258076 Loutrá Loutra Loutra,Loutrá,Λουτρά 39.05694 26.545 P PPL GR ESYE41 51 9261 1116 72 Europe/Athens 2012-01-18
-258091 Loúros Louros Louron,Louros,Loúron,Loúros,Λούρος 39.16278 20.75194 P PPL GR ESYE21 19 9090