| Número de ID del error |
BUG-000130651 |
| Enviado | May 6, 2020 |
| Última modificación | June 5, 2024 |
| Relacionado con | ArcGIS Online |
| Versión encontrada | 8.1 |
| Sistema operativo | Windows OS |
| Versión de sistema operativo | 10.0 64 Bit |
| Estado | Known Limit
Después de la revisión por parte del equipo de desarrollo, se ha determinado que este problema está relacionado con una limitación conocida del software que está fuera del control de Esri. La sección Información adicional del problema puede contener más explicaciones.
|
Información adicional
- pivot_table results in a MulitLevel index, which is not supported in feature classes.
- The maximum records message results because to_featurelayer() has to geocode the results in this case, which can only be accomplished 1000 records at a time.
- Flattening the multilevel index with df.stack().reset_index() creates individual records with the multilevel index appropriately transposed for each record.
- With some data engineering of column names and using the GeoAccessor.from_xy() method a valid spatial data frame can be created and the to_featurelayer() method used (Although this simply recreates the original feature layer in this case).
Solución alternativa
Use the commented out syntax of the last kernel to convert the DataFrame to a CSV file, and publish it. However, this does not always work correctly. Refer to BUG-000129950 for more information.
Pasos para reproducir