El proceso para esto parece haber cambiado entre ArcGIS 10.0 y 10.1. Incluiré una muestra para ambos.
Aquí está el documento de ayuda sobre la lectura de geometrías en 10.1 usando arcpy: Reading Geometries 10.1
Este documento discute los parámetros para un tipo de geometría de polilínea : Polyline (arcpy)
10,1
import arcpy
infc = arcpy.GetParameterAsText(0)
# Enter for loop for each feature
#
for row in arcpy.da.SearchCursor(infc, ["OID@", "SHAPE@"]):
# Print the current line ID
print("Feature {0}:".format(row[0]))
#Set start point
startpt = row[1].firstPoint
#Set Start coordinates
startx = startpt.X
starty = startpt.Y
#Set end point
endpt = row[1].lastPoint
#Set End coordinates
endx = endpt.X
endy = endpt.Y
10,0
Aquí está el documento de ayuda sobre la lectura de geometrías en 10.0 usando arcpy: Reading Geometries 10.0
Este documento discute los parámetros para un objeto Geometry : Geometry
import arcpy
infc = arcpy.GetParameterAsText(0)
# Identify the geometry field
#
desc = arcpy.Describe(infc)
shapefieldname = desc.ShapeFieldName
# Create search cursor
#
rows = arcpy.SearchCursor(infc)
# Enter for loop for each feature/row
#
for row in rows:
# Create the geometry object
#
feat = row.getValue(shapefieldname)
# Print the current line ID
#
print "Feature %i:" % row.getValue(desc.OIDFieldName)
#Set start point
startpt = feat.firstPoint
#Set Start coordinates
startx = startpt.X
starty = startpt.Y
#Set end point
endpt = feat.lastPoint
#Set End coordinates
endx = endpt.X
endy = endpt.Y
La diferencia entre los dos radica básicamente en cómo acceder a la geometría de la entidad. Se han agregado algunos accesos directos en 10.1 para que sea más fácil llegar al objeto de geometría.