Процес цього, схоже, змінився між ArcGIS 10.0 та 10.1. Я включу зразок для обох.
Ось довідковий документ про зчитування геометрій у 10.1 за допомогою arcpy: Reading Geometries 10.1
У цьому документі розглядаються параметри для типу полілінійної геометрії: 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
Ось довідковий документ про зчитування геометрій у 10.0 за допомогою arcpy: Reading Geometries 10.0
У цьому документі розглядаються параметри об’єкта 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
Різниця між ними в основному полягає в тому, як ви отримуєте доступ до геометрії функції. У 10.1 було додано кілька ярликів для полегшення доступу до об’єкта геометрії.