Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 911 Bytes

File metadata and controls

39 lines (27 loc) · 911 Bytes

OSM-city-and-town

في هذه الصفحة استخراج للمدن المضاف عليها عدد السكان بالوسمين:

place=city المدن الكبيرة place=city

و

place=town المدن الغير كبيرة place=town

على شبكة خرائط الشارع المفتوحة

وذلك عبر الاستعلام التالي الذي تم تنفذيه بواسطة محرر جوسم

[out:xml][timeout:9999];

(
  nwr["place"="city"]["population"];
);
(._;>;);
out ids;`

[out:xml][timeout:9999];

(
  nwr["place"="town"]["population"];
);
(._;>;);
out ids;`

image