El siguiente código combina las otras respuestas y agrega un poco para numerar los vértices.
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)
Los puntos están etiquetados en orden de dibujo. El último punto (debajo del primero) no tendrá etiqueta y puede eliminarse seleccionando todos los puntos que tengan valores "DRAW_ORDER" nulos o únicos, si no son necesarios para la reconstrucción. Se puede utilizar una consulta de definición para eliminar los puntos superpuestos de la pantalla.
Los datos XY están presentes, pero lo dejaré a sus deseos de etiquetado / visualización. Vea la respuesta de Aaron sobre agregar un campo XY para etiquetar.
También estaba jugando con FeatureClass en una matriz numpy, pero terminé esto primero.