【工作遇到的问题】TypeError: unsupported operand type(s) for -: ‘map‘ and ‘map‘

博客讲述了如何计算列表中90%的响应时间,初始尝试直接使用map对象导致了TypeError。解决方法是将map对象转换为list,然后使用numpy.percentile函数计算P90。修复后的代码成功输出了90%响应时间。

需求:
求列表中90%的响应时间是多少
在这里插入图片描述
步骤:
将列表添加到空字典中

#计算90%的响应时间
            #定义一个空字典
            time_dict={}
            time_dict["time"]=time_list
            print(time_dict)
            for i in time_dict.values():
                print(f"P90的响应时间为:{numpy.percentile(map(int, i), 90)}")

在这里插入图片描述
执行后报错:

TypeError: unsupported operand type(s) for -: 'map' and 'map'

解决方法:转为list

#定义一个空字典
            time_dict={}
            time_dict["time"]=time_list
            print(time_dict)
            for i in time_dict.values():
                t=list(map(int, i))
                print(f"p90:{numpy.percentile(t,90)}")

批量按地图系列(正在修改版) ===================== 工具路径 I:\arcgispro工具箱\自制工具箱.atbx\PLCT11 ===================== 参数 布局名称 问题图斑占用“三区三线”叠加分析图 选择布局中的地图框 地图框 索引图层 问题图斑范围 选择要参与出图的图层 房屋建筑图斑;附房;庭院;问题图斑范围 底图图层 三调 输出文件夹 C:\Users\Administrator\Desktop\新建文件夹 文件名字段 TBBH 输出格式 JPEG 比例尺 300 DPI 150 要素重叠度百分比(0-100) 90 ===================== 消息 开始时间: 2025年11月27日 14:43:12 找到 4 个操作图层和 1 个底图图层 开始批量导出地图... 为图层 '庭院' 创建临时副本 为图层 '附房' 创建临时副本 为图层 '房屋建筑图斑' 创建临时副本 为图层 '问题图斑范围' 创建临时副本 底图图层 '三调' 已启用 处理要素 533124102Z00443 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00444 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00452 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00448 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00808 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00441 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00439 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00447 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00440 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00449 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00450 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00451 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00371 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00345 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00752 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00331 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00282 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00316 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00400 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00397 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00415 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00416 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00417 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00409 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00407 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00729 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00394 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00412 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00411 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00312 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00313 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00296 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00336 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00342 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00341 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00327 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00330 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00322 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00319 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00337 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00321 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00308 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00307 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00303 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00304 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00299 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00297 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00300 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00294 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00302 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00325 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00328 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00310 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00821 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00359 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00363 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00361 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00344 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00332 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00364 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00334 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00358 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00350 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00349 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00351 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00520 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00692 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00660 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00659 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00356 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00473 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00474 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00693 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00521 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00519 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00329 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00354 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00355 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00360 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00822 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00347 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00353 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00320 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00281 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00305 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00285 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00685 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00697 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00622 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00464 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00458 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00514 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00717 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00480 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00484 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00482 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00658 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00421 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00655 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00652 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00654 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00418 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00283 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00315 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00288 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00287 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00279 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00362 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00657 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00650 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00489 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00488 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00483 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00485 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00486 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00716 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00463 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00461 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00460 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00695 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00467 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00688 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00466 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00503 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00468 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00687 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00518 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00686 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00445 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00446 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00442 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00456 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00335 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00753 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00745 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00387 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00391 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 处理要素 533124102Z00339 失败: unsupported operand type(s) for /: 'str' and 'int' Traceback (most recent call last): File "I:\arcgispro工具箱\自制工具箱.atbx\PLCT11.tool\tool.script.execute.py", line 113, in batch_export_maps TypeError: unsupported operand type(s) for /: 'str' and 'int' 清理临时资源... 脚本 批量按地图系列(正在修改版) 失败... 执行(PLCT11)失败。 运行 失败,结束时间: 2025年11月27日 14:43:14 (历时: 1.88 秒)
最新发布
11-28
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

姑娘别秃头

你的鼓励是为我创作最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值