Numéro d’ID de bogue |
BUG-000163466 |
Envoi | December 5, 2023 |
Dernière modification | December 12, 2024 |
S’applique à | ArcGIS Online |
Version trouvée | Oct 2023 |
Système d’exploitation | N/A |
Version du système d’exploitation | N/A |
Statut | Will Not Be Addressed
L’équipe de développement a examiné le problème ou la demande et a décidé qu’ils ne seraient pas traités. Pour d’autres explications, reportez-vous à la section Informations supplémentaires correspondant au problème.
|
Informations supplémentaires
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.
Solution de contournement
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).
Étapes pour reproduire