Null values in a Date field of a feature service are converted to ‘1/1/2001’ when exported to a feature class using a spatially enabled data frame with ArcGIS API for Python.
上次发布: February 26, 2019ArcGIS API for Python
漏洞 ID 编号
BUG-000119016
已提交
December 22, 2018
上次修改时间
June 30, 2025
适用范围
ArcGIS API for Python
找到的版本
1.4.1
操作系统
Windows OS
操作系统版本
10.0 64 Bit
修正版本
1.6
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
Export the feature service as a file geodatabase item using the item export method and then download the file geodatabase item. From arcgis.gis, import GIS:gis = GIS(url="https://www.arcgis.com", username =" ",password= " ")item = gis.content.get(itemid=" ")result = item.export(title =' ', export_format = 'File Geodatabase' )result.download(save_path=r' ')result.delete()