laptop and a wrench

Bogue

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

Dernière publication: March 17, 2022 ArcGIS Pro
Numéro d’ID de bogue BUG-000145495
EnvoiDecember 22, 2021
Dernière modificationApril 21, 2025
S’applique àArcGIS Pro
Version trouvée2.9
Système d’exploitationWindows OS
Version du système d’exploitation11.0 64 bit
StatutKnown Limit

Informations supplémentaires

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

Solution de contournement

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

##

Étapes pour reproduire

ID de bogue: BUG-000145495

Logiciel:

  • ArcGIS Pro

Recevoir une notification lorsque le statut d’un bogue change

Télécharger l’application Esri Support

En savoir plus sur ce sujet

Obtenir de l’aide auprès des experts ArcGIS

Contacter le support technique

Télécharger l’application Esri Support

Accéder aux options de téléchargement