El proceso para esto parece haber cambiado entre ArcGIS 10.0 y 10.1. Voy a incluir una muestra para ambos.
Aquí está el documento de ayuda sobre la lectura de geometrías en 10.1 usando arcpy: Lectura de geometrías 10.1
Este documento trata de los parámetros de un tipo de geometría Polilínea: Polilínea (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: Lectura de geometrías 10.0
Este documento trata de los parámetros de un objeto Geometría: Geometría
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 ambos radica básicamente en cómo se accede a la geometría de la característica. Se han añadido algunos atajos en 10.1 para facilitar el acceso al objeto geométrico.