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 Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動