不具合 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).
再現の手順