আমি কীভাবে দেশ এবং জনবহুল জায়গাগুলির ডেটাসেটগুলি http://www.naturalearthdata.com/downloads/50m-cultural-vectors/ থেকে অজগরটিতে অগ্রে কীভাবে ব্যবহার করতে হয় তা শিখার চেষ্টা করছি। আমি একটি নির্দিষ্ট দেশের নির্দিষ্ট বাফারের মধ্যে (ne_50m_admin_0_countries.shp এডমিন বৈশিষ্ট্যযুক্ত ক্লাস থেকে ফিল্টার করা) একটি নির্দিষ্ট দেশের বাফারের মধ্যে পয়েন্টগুলি (ne_50m_populated_places.shp) সন্ধান করতে ফিল্টার এবং বাফার ব্যবহার করার চেষ্টা করছি। সমস্যাটি মনে হচ্ছে যে আমি বাফার () এর জন্য কী ইউনিটগুলি ব্যবহার করব তা বুঝতে পারছি না। স্ক্রিপ্টটিতে আমি স্ক্রিপ্টটি কাজ করে কিনা তা পরীক্ষা করার জন্য 10 এর একটি নির্বিচার মান ব্যবহার করেছি। স্ক্রিপ্টটি চলতে থাকে তবে ক্যারিবীয় অঞ্চল থেকে নামী দেশ 'অ্যাঙ্গোলা' এর জন্য আশেপাশের জনবহুল স্থানগুলি ফিরিয়ে দেয়। আদর্শভাবে, আমি একটি বাফার দূরত্ব নির্দিষ্ট করতে সক্ষম হতে চাই, 500 কিলোমিটার বলি, তবে কীভাবে এটি করা যায় তা বুঝতে আমার কাজটি বুঝতে পারছে না কারণ আমার বোঝার বিষয়টি বাফার () দেশগুলির ইউনিট ব্যবহার করছে .shp যা wgs84 ল্যাট / দীর্ঘ বিন্যাসে থাকবে । এটি অর্জনের জন্য পদ্ধতি সম্পর্কে পরামর্শ অনেক প্রশংসা হবে।
# import modules
import ogr, os, sys
## data source
os.chdir('C:/data/naturalearth/50m_cultural')
# get the shapefile driver
driver = ogr.GetDriverByName('ESRI Shapefile')
# open ne_50m_admin_0_countries.shp and get the layer
admin = driver.Open('ne_50m_admin_0_countries.shp')
if admin is None:
print 'Could not open ne_50m_admin_0_countries.shp'
sys.exit(1)
adminLayer = admin.GetLayer()
# open ne_50m_populated_places.shp and get the layer
pop = driver.Open('ne_50m_populated_places.shp')
if pop is None:
print 'could not open ne_50m_populated_places.shp'
sys.exit(1)
popLayer = pop.GetLayer()
# use an attribute filter to restrict ne_50m_admin_0_countries.shp to "Angola"
adminLayer.SetAttributeFilter("ADMIN = ANGOLA")
# get the Angola geometry and buffer it by 10 units
adminFeature = adminLayer.GetFeature(0)
adminGeom = adminFeature.GetGeometryRef()
bufferGeom = adminGeom.Buffer(10)
# use bufferGeom as a spatial filter on ne_50m_populated_places.shp to get all places
# within 10 units of Angola
popLayer.SetSpatialFilter(bufferGeom)
# loop through the remaining features in ne_50m_populated_places.shp and print their
# id values
popFeature = popLayer.GetNextFeature()
while popFeature:
print popFeature.GetField('NAME')
popFeature.Destroy()
popFeature = popLayer.GetNextFeature()
# close the shapefiles
admin.Destroy()
pop.Destroy()