不具合 ID 番号 |
BUG-000178347 |
送信されました | July 30, 2025 |
最終更新日 | August 25, 2025 |
適用対象 | ArcGIS Online |
見つかったバージョン | N/A |
オペレーティング システム | Windows OS |
オペレーティング システムのバージョン | 11.0 64 bit |
ステータス | Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
|
参考情報
This is caused by the initial creation of the DataFrame. If it is changed from pd.Series to the `list` object. It will work:
df = pd.DataFrame({
"str_field": [None, None, "test_string"],
"int_field": [None, None, 0],
'x': [-122.3321, -120.7401, -117.4260], # Longitudes
'y': [47.6062, 46.8523, 48.7519] # Latitudes
})
By doing this, Pandas can handle the null integer values.
対処法
Utilize a string field instead of an integer field to prevent the issue.
再現の手順