รหัสด้านล่างรวมคำตอบอื่น ๆ และเพิ่มจำนวนจุดยอด
import arcpy
arcpy.env.workspace = "in_memory"
#paths
fc = r"...\polygons"
fc_out = r"...\vertices"
arcpy.MakeFeatureLayer_management(fc, "lyr")
# add fields if needed
for FIELD in ["DRAW_ORDER", "COUNT"]:
if FIELD not in [field.name for field in arcpy.ListFields(fc)]:
try:
arcpy.AddField_management("lyr", FIELD, "SHORT")
except Exception as e:
print e
# get the number of points minus overlapping (@dmahr - GSE)
arcpy.CalculateField_management("lyr", "COUNT", "!Shape!.pointCount-!Shape!.partCount", "PYTHON")
# dict to iterate and check count
OIDS = {}
for row in arcpy.da.SearchCursor("lyr", ["OBJECTID", "COUNT"]):
OIDS[row[0]] = row[1]
del row
# get vertices as points and add XY (@Aaron - GSE)
arcpy.FeatureVerticesToPoints_management("lyr", fc_out)
arcpy.AddXY_management(fc_out)
# start adding a number to the points
for OID in OIDS:
order_count = 1
rows = arcpy.da.UpdateCursor(fc_out, ["DRAW_ORDER", "COUNT"], "ORIG_FID = %d"%OID)
for row in rows:
# will leave the overlapping as NULL
if order_count <= OIDS[OID]:
row[0] = order_count
rows.updateRow(row)
order_count += 1
## # this can set the overlapping to 0 or some unique value (999)
## else:
## row[0] = 0
## rows.updateRow(row)
คะแนนจะถูกระบุไว้ในลำดับการวาด จุดสุดท้าย (ใต้จุดแรก) จะไม่มีป้ายกำกับและสามารถลบได้โดยเลือกจุดทั้งหมดที่มีค่า Null หรือไม่ซ้ำกัน "DRAW_ORDER" หากไม่จำเป็นสำหรับการสร้างใหม่ สามารถใช้แบบสอบถามความหมายเพื่อลบจุดที่ทับซ้อนกันออกจากจอแสดงผล
มีข้อมูล XY อยู่ แต่ฉันจะปล่อยให้สิ่งที่คุณต้องการติดฉลาก / แสดง ดูคำตอบของ Aaron เกี่ยวกับการเพิ่มฟิลด์ XY สำหรับการติดฉลาก
ฉันยังเล่นกับ FeatureClass ไปยังแถวที่มีจำนวนมาก แต่ฉันทำมันเสร็จก่อน