03 ArcPython实战篇一

1.自增计算 (字段计算器)

   

   

total = 0

def accumulate(increment):  

     global total  

     if total:  

         total += increment  

     else:  

          total = increment  

     return total

   

2.记录地块权属人变更的要素(字段计算器)

   

   

   

3.桩号数据处理(字段计算器)

   

参考:
esrichina易智瑞中国公开课

猜你喜欢

转载自www.cnblogs.com/xlfcjx/p/12810148.html
03