laptop and a wrench

漏洞

The 3D Objects folder does not display any 3D models when using ArcGIS Pro on Windows 11.

上次发布: March 17, 2022 ArcGIS Pro
漏洞 ID 编号 BUG-000145495
已提交December 22, 2021
上次修改时间April 21, 2025
适用范围ArcGIS Pro
找到的版本2.9
操作系统Windows OS
操作系统版本11.0 64 bit
状态Known Limit

附加信息

This is a known limitation and is fixed in ArcGIS Pro 3.5 on Windows 11.

解决办法

Use the following script to extract 3D models from the 3DOAT table if the only requirement is to obtain a copy of the 3D models:

##

from arcpy import da

import os

table = arcpy.GetParameterAsText(0)

result_folder = arcpy.GetParameterAsText(1)

with da.SearchCursor(table,['ESRI3DO_DATA','ESRI3DO_ASSET']) as cursor:

  for row in cursor:

   binaryRep = row[0]

   fileName0 = row[1]

   fileName = fileName0[15:]

   if fileName0[-4:] != ".bin":

     # write to disk

     open(result_folder + os.sep + fileName, 'wb').write(binaryRep.tobytes())

   else:

     pass

   del row

   del binaryRep

   del fileName

   del fileName0

##

重现步骤

漏洞 ID: BUG-000145495

软件:

  • ArcGIS Pro

当漏洞状态发生变化时获得通知

下载 Esri 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项