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 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项