मैं एक फ़ंक्शन बनाने की कोशिश कर रहा हूं जो मूल रूप से एक ही काम करता है कि क्यूजीआईएस "भंग" फ़ंक्शन। मुझे लगा कि यह सुपर आसान होगा लेकिन स्पष्ट रूप से नहीं। इसलिए मैंने जो कुछ भी चारों ओर इकट्ठा किया है, उसमें आकार के साथ फियोना का उपयोग सबसे अच्छा विकल्प होना चाहिए। मैं बस सदिश फ़ाइलों के साथ गड़बड़ करना शुरू कर दिया है, इसलिए यह दुनिया मेरे लिए बहुत नया है और अजगर भी।
इन उदाहरणों के लिए, मैं यहां स्थापित काउंटी शेपफाइल के साथ काम कर रहा हूं। http://tinyurl.com/odfbanu तो यहां कुछ कोड हैं जिन्हें मैंने इकट्ठा किया है, लेकिन उन्हें एक साथ काम करने का तरीका नहीं मिल रहा है
अभी के लिए मेरी सबसे अच्छी विधि निम्नलिखित पर आधारित है: https://sgillies.net/2009/01/27/a-more-perfect-union-continued.html । यह ठीक काम करता है और मुझे 52 राज्यों की एक सूची मिलती है शैप्ली ज्यामिति के रूप में। कृपया टिप्पणी करने के लिए स्वतंत्र महसूस करें यदि इस भाग को करने के लिए अधिक सीधे आगे रास्ता है।
from osgeo import ogr
from shapely.wkb import loads
from numpy import asarray
from shapely.ops import cascaded_union
ds = ogr.Open('counties.shp')
layer = ds.GetLayer(0)
#create a list of unique states identifier to be able
#to loop through them later
STATEFP_list = []
for i in range(0 , layer.GetFeatureCount()) :
feature = layer.GetFeature(i)
statefp = feature.GetField('STATEFP')
STATEFP_list.append(statefp)
STATEFP_list = set(STATEFP_list)
#Create a list of merged polygons = states
#to be written to file
polygons = []
#do the actual dissolving based on STATEFP
#and append polygons
for i in STATEFP_list :
county_to_merge = []
layer.SetAttributeFilter("STATEFP = '%s'" %i )
#I am not too sure why "while 1" but it works
while 1:
f = layer.GetNextFeature()
if f is None: break
g = f.geometry()
county_to_merge.append(loads(g.ExportToWkb()))
u = cascaded_union(county_to_merge)
polygons.append(u)
#And now I am totally stuck, I have no idea how to write
#this list of shapely geometry into a shapefile using the
#same properties that my source.
इसलिए जो मैंने देखा है उससे लेखन वास्तव में सीधे आगे नहीं है, मैं वास्तव में केवल वही आकार चाहता हूं जो केवल देश राज्यों में भंग हो, मुझे विशेषता तालिका की बहुत आवश्यकता नहीं है लेकिन मुझे यह देखने की उत्सुकता है कि आप कैसे पास कर सकते हैं यह स्रोत से नए बनाए गए शेपफाइल पर है।
मुझे फियोना के साथ लिखने के लिए कोड के कई टुकड़े मिले लेकिन मैं इसे अपने डेटा के साथ काम करने में सक्षम नहीं हूं। उदाहरण के लिए शेपलीज को शेपली ज्यामिति कैसे लिखें? :
from shapely.geometry import mapping, Polygon
import fiona
# Here's an example Shapely geometry
poly = Polygon([(0, 0), (0, 1), (1, 1), (0, 0)])
# Define a polygon feature geometry with one attribute
schema = {
'geometry': 'Polygon',
'properties': {'id': 'int'},
}
# Write a new Shapefile
with fiona.open('my_shp2.shp', 'w', 'ESRI Shapefile', schema) as c:
## If there are multiple geometries, put the "for" loop here
c.write({
'geometry': mapping(poly),
'properties': {'id': 123},
})
यहां समस्या यह है कि ज्यामिति की सूची के साथ कैसे किया जाए और स्रोत की तुलना में समान गुणों को कैसे बनाया जाए।