C# 调用 python脚本
摘要:https://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//000100000m0s000000 C# 调用 python脚本 1 // Executes a shell command synchro
阅读全文
arcgis中的几何操作与坐标系
摘要:多源数据综合分析时,最好先将坐标系进行统一(投影坐标系为佳) ArcObjects 10 .NET SDK Help Understanding coordinate management in ArcGIS To achieve precise and predictable results us
阅读全文
多进程运行arcpy脚本中内存空间是否互相影响?
摘要:每个进程了都有 删除内存空间的操作,目前试验是互不影响。
阅读全文
python2 保留几位小数
摘要:自带函数 round(0.115,2) > 0.11,与预期不符 自定义: def round2(num,scale): return round(num*10**scale)*10**(-scale)
阅读全文