मैं चापलूस एपीआई में कुछ भी नहीं जानता हूं जो आपके लिए स्केलिंग करेगा, लेकिन ऐसा करने के लिए एक फ़ंक्शन लिखना अपेक्षाकृत सरल होगा।
नीचे दिया गया कोड 2 डी सुविधाओं के लिए स्केलिंग करता है, और एम या जेड मूल्यों को ध्यान में नहीं रखता है:
import arcpy
import math
def scale_geom(geom, scale, reference=None):
"""Returns geom scaled to scale %"""
if geom is None: return None
if reference is None:
# we'll use the centroid if no reference point is given
reference = geom.centroid
refgeom = arcpy.PointGeometry(reference)
newparts = []
for pind in range(geom.partCount):
part = geom.getPart(pind)
newpart = []
for ptind in range(part.count):
apnt = part.getObject(ptind)
if apnt is None:
# polygon boundaries and holes are all returned in the same part.
# A null point separates each ring, so just pass it on to
# preserve the holes.
newpart.append(apnt)
continue
bdist = refgeom.distanceTo(apnt)
bpnt = arcpy.Point(reference.X + bdist, reference.Y)
adist = refgeom.distanceTo(bpnt)
cdist = arcpy.PointGeometry(apnt).distanceTo(bpnt)
# Law of Cosines, angle of C given lengths of a, b and c
angle = math.acos((adist**2 + bdist**2 - cdist**2) / (2 * adist * bdist))
scaledist = bdist * scale
# If the point is below the reference point then our angle
# is actually negative
if apnt.Y < reference.Y: angle = angle * -1
# Create a new point that is scaledist from the origin
# along the x axis. Rotate that point the same amount
# as the original then translate it to the reference point
scalex = scaledist * math.cos(angle) + reference.X
scaley = scaledist * math.sin(angle) + reference.Y
newpart.append(arcpy.Point(scalex, scaley))
newparts.append(newpart)
return arcpy.Geometry(geom.type, arcpy.Array(newparts), geom.spatialReference)
आप इसे एक ज्यामिति ऑब्जेक्ट, एक स्केल फैक्टर (1 = समान आकार, 0.5 = आधा आकार, 5 = 5 बार बड़े, आदि), और एक वैकल्पिक संदर्भ बिंदु के साथ कह सकते हैं:
scale_geom(some_geom, 1.5)
डेस्टिनेशन फ़ीचर क्लास के पहले से मौजूद होने का अनुमान लगाते हुए, संपूर्ण फीचर क्लास को बनाने के लिए कर्सर के साथ इसका उपयोग करें:
incur = arcpy.da.SearchCursor('some_folder/a_fgdb.gdb/orig_fc', ['OID@','SHAPE@'])
outcur = arcpy.da.InsertCursor('some_folder/a_fgdb.gdb/dest_fc', ['SHAPE@'])
for row in incur:
# Scale each feature by 0.5 and insert into dest_fc
outcur.insertRow([scale_geom(row[1], 0.5)])
del incur
del outcur
संपादित करें: यहाँ 0.5 और 5 बार के लिए अपने परीक्षण ज्यामिति के एक अनुमान का उपयोग कर एक उदाहरण है:
मल्टी-रिंग पॉलीगन्स (छेद) के साथ भी परीक्षण किया गया!
एक स्पष्टीकरण, अनुरोध के रूप में:
scale_geom
एक एकल बहुभुज लेता है और प्रत्येक शीर्ष के माध्यम से छोरों, एक संदर्भ बिंदु से दूरी को मापने (डिफ़ॉल्ट रूप से, बहुभुज का केंद्रक)।
उस दूरी को फिर नए 'स्केल्ड' वर्टेक्स बनाने के लिए दिए गए पैमाने से बढ़ाया जाता है।
स्केलिंग मूल रेखा के माध्यम से संदर्भ बिंदु से स्केल की गई लंबाई पर अनिवार्य रूप से रेखा खींचकर की जाती है, रेखा के अंत में स्केल की गई शीर्ष रेखा बनती है।
कोण और घुमाव का सामान होता है क्योंकि यह एक अक्ष के साथ रेखा के अंत की स्थिति की गणना करने के लिए अधिक सीधा होता है और फिर इसे 'जगह' में घुमाता है।