Número de ID del error |
BUG-000163466 |
Enviado | December 5, 2023 |
Última modificación | December 12, 2024 |
Relacionado con | ArcGIS Online |
Versión encontrada | Oct 2023 |
Sistema operativo | N/A |
Versión de sistema operativo | N/A |
Estado | Will Not Be Addressed
El equipo de desarrollo ha considerado el problema o la solicitud y ha llegado a la conclusión de que no se va a solucionar. La sección Información adicional del problema puede contener más explicaciones.
|
Información adicional
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.
Solución alternativa
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).
Pasos para reproducir