解释这段代码:import arcpy ## input parameters mxd = arcpy.mapping.MapDocument("CURRENT") polygons = arcpy.mapping.ListLayers(mxd,"PGONS")[0] points = arcpy.mapping.ListLayers(mxd,"POINTS")[0] ##truncated coordinate as string def truncate(f, n): s = '{}'.format(f) i, p, d = s.partition('.') return '.'.join([i, (d+'0'*n)[:n]]) with arcpy.da.SearchCursor(polygons,["SHAPE@","MB2013"]) as cursor: for shp,idL in cursor: ## get extent NW corner ext=shp.extent UL=arcpy.PointGeometry(ext.upperLeft) Q='"MB2013" = %s'%("'"+idL+"'") points.definitionQuery=Q aList=[];pLine=shp.boundary() ## order points along boundary at new start dMin=1e6 with arcpy.da.SearchCursor(points,"SHAPE@") as pCur: for line in pCur: pnt=line[0].firstPoint L=pLine.measureOnLine(pnt) d=UL.distanceTo(pnt) if d<dMin: dMin=d;lMin=L aList.append([L,pnt]) for i,(L,pnt) in enumerate(aList): if L>=lMin: aList[i][0]=L-lMin else:aList[i][0]=L+pLine.length-lMin ## dictionary of points signatures and chainage newList=sorted(aList) aDict={} for i,(L,pnt) in enumerate(newList): aKey=truncate(pnt.X,2)+truncate(pnt.Y,2) aDict[aKey]=i+1 ## transfer new order to points table with arcpy.da.UpdateCursor(points,("SHAPE@","GroupNo")) as pCur: for pnt,no in pCur: aKey=truncate(pnt.firstPoint.X,2)+truncate(pnt.firstPoint.Y,2) pCur.updateRow((pnt,aDict[aKey]))
时间: 2024-02-14 16:31:33 浏览: 158
这段代码是使用 arcpy 库来处理地理空间数据的脚本。它的功能是对指定的多边形图层和点图层进行处理,并按一定规则对点进行排序和编号。
首先,代码导入了 arcpy 库,然后定义了一些输入参数,包括地图文档(mxd)、多边形图层(polygons)和点图层(points)。
接下来,代码定义了一个名为 truncate 的函数,用来将浮点数截断为指定位数的字符串表示。
然后,代码使用 arcpy.da.SearchCursor 遍历多边形图层,获取每个多边形的范围(ext),并创建一个新的点几何对象(UL)表示范围的左上角。然后,根据多边形的属性(MB2013),设置点图层的查询条件,并将查询结果赋值给变量 Q。接着,创建一个空列表 aList 和一个表示多边形边界的折线几何对象(pLine)。
在下一个循环中,使用 arcpy.da.SearchCursor 遍历点图层,对每个点计算其在边界上的位置(L)和到左上角点的距离(d)。同时,将位置和点添加到 aList 列表中,并记录最小距离(dMin)和最小位置(lMin)。
接下来,对 aList 列表进行排序,得到一个新的列表 newList。然后,使用 truncate 函数将每个点的坐标截断为两位小数,并将截断后的坐标作为键,位置作为值,构建一个字典 aDict。
最后,使用 arcpy.da.UpdateCursor 遍历点图层,对每个点更新其位置编号(GroupNo),通过查询字典 aDict,根据截断后的坐标找到对应的位置,并更新到点图层中。
总体来说,这段代码的作用是按照一定的规则对点图层中的点进行排序和编号,以便后续处理和分析。
阅读全文