laptop and a wrench

不具合

Unable to add and view network Common Data Form (NetCDF) files in ArcGIS Pro.

最後に公開された状態: October 5, 2022 ArcGIS Pro
不具合 ID 番号 BUG-000150733
送信されましたJuly 13, 2022
最終更新日June 5, 2024
適用対象ArcGIS Pro
見つかったバージョン3.0
オペレーティング システムWindows OS
オペレーティング システムのバージョンN/A
ステータスWill Not Be Addressed

参考情報

Even though the provided data is in netCDF format, it is not fully Climate and Forecast (CF) compliant. Coordinate variables are not properly connected with the data variables. This is resolved when the data is created.

対処法

Use the following python script to augment the coordinate information:

import netCDF4 ds = netCDF4.Dataset(r'C:\test.nc', 'r+')# Open the netCDF file and set the mode to write varList = ds.variables.keys() # Get a list of all of the variables in the file for v in varList: if v not in ['latitude', 'longitude']: # Excludes variables that do not need coordinates information attached ds.variables[v].coordinates = 'latitude longitude' ds.close()

再現の手順

不具合 ID: BUG-000150733

ソフトウェア:

  • ArcGIS Pro

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動