Arcgis pro crash (Arcsdm issue 44)

preview_player
Показать описание
Demonstration on how to crash ArcGis pro 2.0 with Addjoin management geoprocessing tool

# How to reproduce on ArcPro 2.0
# 1. Start new project
# 2. Insert map
# 3. Under analysis environment, set output coordinate system to current map default (Should be WGS_1984 ...)
# 4. Paste following code with correct path to python console - press enter
# 5. X
# 6. Profit

import arcpy;

Input_Raster = path + r"\lithoname200k"
Wts_Table = path + r"\lithoname200k_WC"

RasterLayer = "OutRas_lyr";

arcpy.MakeRasterLayer_management(Input_Raster,RasterLayer);
arcpy.AddJoin_management(RasterLayer,"VALUE",Wts_Table,"CLASS")

You need to download or create similar demodata:
- raster with different coordinate system than map
- Joinable table
Рекомендации по теме
Комментарии
Автор

Crash happens when the screen goes black - my capture software was for app screen only

Dinokkio