मैं प्रोग्रामेटिक रूप से एक आकृति से बहुभुज का उपयोग करके एक जेजेन्सन फ़ाइल बनाना चाहता हूं, लेकिन अपने स्वयं के एप्लिकेशन से विशेषताओं को जोड़ना।
यह आसानी से एक आकृति के लिए किया जाता है:
def create_data_dayer(self,varlist, data):
"""
Creates a new shape to contain data about nodes.
varlist is the list of fields names associated with
the nodes.
data is a list of lists whose first element is the geocode
and the remaining elements are values of the fields, in the
same order as they appear in varlist.
"""
if os.path.exists(os.path.join(self.outdir,'Data.shp')):
os.remove(os.path.join(self.outdir,'Data.shp'))
os.remove(os.path.join(self.outdir,'Data.shx'))
os.remove(os.path.join(self.outdir,'Data.dbf'))
# Creates a new shape file to hold the data
if not self.datasource:
dsd = self.driver.CreateDataSource(os.path.join(self.outdir,'Data.shp'))
self.datasource = dsd
dl = dsd.CreateLayer("sim_results",geom_type=ogr.wkbPolygon)
#Create the fields
fi1 = ogr.FieldDefn("geocode",field_type=ogr.OFTInteger)
dl.CreateField(fi1)
for v in varlist:
#print "creating data fields"
fi = ogr.FieldDefn(v,field_type=ogr.OFTString)
fi.SetPrecision(12)
dl.CreateField(fi)
#Add the features (points)
for n,l in enumerate(data):
#Iterate over the lines of the data matrix.
gc = l[0]
try:
geom = self.geomdict[gc]
if geom.GetGeometryType() != 3: continue
#print geom.GetGeometryCount()
fe = ogr.Feature(dl.GetLayerDefn())
fe.SetField('geocode',gc)
for v,d in zip (varlist,l[1:]):
#print v,d
fe.SetField(v,str(d))
#Add the geometry
#print "cloning geometry"
clone = geom.Clone()
#print geom
#print "setting geometry"
fe.SetGeometry(clone)
#print "creating geom"
dl.CreateFeature(fe)
except: #Geocode not in polygon dictionary
pass
dl.SyncToDisk()
चूँकि मेरे पास जियोकोड (self.geomdict) के शब्दकोश में सभी ज्यामिति हैं, मैं केवल सुविधाएँ बनाता हूँ, फ़ील्ड सेट करता हूँ और ज्यामितीयों को पहले से मौजूद परत से कोडित करता हूँ (कोड लोडिंग कि परत सरलता के लिए छोड़ दी जाती है)। सभी को अब मुझे खेतों और भू-भागों के संयोजन से स्वाभाविक रूप से जेजेन्सन उत्पन्न करने का एक तरीका है, स्वाभाविक रूप से ओजीआर की मदद से शेष फ़ाइल अधिकार (सीआरएस, आदि जैसे स्रोत मानचित्र से) प्राप्त करने के लिए
उपरोक्त के रूप में उत्पन्न फीचर संग्रह को कैसे निर्यात करें?