laptop and a wrench

Bug

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

Zuletzt veröffentlicht: October 5, 2022 ArcGIS Pro
Bug-ID-Nummer BUG-000150733
EingereichtJuly 13, 2022
Zuletzt geändertJune 5, 2024
Gilt fürArcGIS Pro
Gefunden in Version3.0
BetriebssystemWindows OS
BetriebssystemversionN/A
StatusWill Not Be Addressed

Zusätzliche Informationen

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.

Workaround

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()

Schritte zur Reproduzierung

Bug-ID: BUG-000150733

Software:

  • ArcGIS Pro

Benachrichtigung erhalten, wenn sich der Status eines Bugs ändert

Esri Support App herunterladen

Weitere Informationen zu diesem Thema erkunden

Unterstützung durch ArcGIS-Experten anfordern

An den technischen Support wenden

Esri Support App herunterladen

Zu Download-Optionen wechseln