मैं जानने की कोशिश कर रहा हूं कि देश और आबादी वाले स्थानों के डेटा का उपयोग करते हुए http://www.naturalearthdata.com/downloads/50m-cultural-vectors/ पर अजगरों का उपयोग कैसे करें?। मैं एक नामित देश के निर्दिष्ट बफ़र (ne_50m_admin_0 -countries.shp में फ़ीचर वर्ग ADMIN से फ़िल्टर्ड) के भीतर अंक (ne_50m_populated_places.shp) खोजने के लिए फ़िल्टर और बफ़र्स का उपयोग करने का प्रयास कर रहा हूं। समस्या यह प्रतीत होती है कि मुझे समझ में नहीं आ रहा है कि बफर () का उपयोग करने के लिए कौन सी इकाइयाँ हैं। यदि स्क्रिप्ट काम करती है, तो मैंने स्क्रिप्ट का केवल 10 के मनमाने मूल्य का उपयोग किया है। स्क्रिप्ट चलती है लेकिन नामित देश 'अंगोला' के लिए कैरिबियन क्षेत्र के आसपास से आबादी वाले स्थानों पर लौटती है। आदर्श रूप से, मैं एक बफर दूरी निर्दिष्ट करने में सक्षम होना चाहता हूं, 500 किमी कहता हूं, लेकिन यह काम नहीं कर सकता कि यह कैसे करना है क्योंकि मेरी समझ बफर है () देशों की इकाइयों का उपयोग कर रही है। जो कि wgs84 lat / long प्रारूप में होगी । इसे प्राप्त करने के लिए विधि पर सलाह बहुत सराहना की जाएगी।
# 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()