漏洞 ID 编号 |
BUG-000163466 |
已提交 | December 5, 2023 |
上次修改时间 | December 12, 2024 |
适用范围 | ArcGIS Online |
找到的版本 | Oct 2023 |
操作系统 | N/A |
操作系统版本 | N/A |
状态 | Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
|
附加信息
The development team has considered the issue or request and concluded it will not be addressed in the current release cycle. If this is still a concern, contact Esri Support Services.
解决办法
Workaround 1: Using the ArcGIS API for Python.
- Upload the GeoJSON to ArcGIS Online (API: gis.content.add).
- Publish the uploaded GeoJSON (API: <item>.publish).
- Export the published GeoJSON as FeatureCollection (<item>.export("title", export_format="Feature Collection", wait=True).
- Use the FeatureCollection item in the Upsert statement:
append_result = <layer>.append(
item_id=<FeatureCollectionId>,
upload_format="featureCollection")
Workaround 2: Using ArcGIS Online.
- Update data using a different file type than GeoJSON (e.g., an XLSX file).
重现步骤