ExportBug_CE2017.0

1043
1
01-12-2018 09:07 AM
VivacityPlatform
New Contributor

Hi community,

I have tried to narrow down an export bug I encountered a week ago. I would like to know if anybody else has spotted this bug. Basically, the export GDB drops all attributes for models that consistently report geometry.area and other strings. If I export one model, it works fine, but when I export 2k to 3k models then the attributes of ALL models get corrupted and report as either NaNs or NULLS.

Best,

H

0 Kudos
1 Reply
ThomasFuchs
Esri Regular Contributor

There is an issue with reporting NaN values to FileGDB.
As a workaround, please add a value validation to you CGA code.

validate(value) = 
     case isnan(value): -1
     else: value

report("FAR",validate(FAR))
0 Kudos