14 import matplotlib.pyplot
as plt
15 import cartopy.crs
as ccrs
20 name =
"Example-05a-python.hdf5",
21 mode = ioda.Engines.BackendOpenModes.Read_Only)
24 tbName =
"ObsValue/brightness_temperature"
25 latName =
"MetaData/latitude"
26 lonName =
"MetaData/longitude"
28 tbVar = og.vars.open(tbName)
29 latVar = og.vars.open(latName)
30 lonVar = og.vars.open(lonName)
32 tbData = tbVar.readNPArray.float()
33 latData = latVar.readVector.float()
34 lonData = lonVar.readVector.float()
37 ax = plt.axes(projection=ccrs.PlateCarree())
39 ax.set_extent([-20, 40, -20, 45], crs=ccrs.PlateCarree())
41 ax.scatter(lonData, latData, c=tbData[:,0], transform=ccrs.PlateCarree(), cmap=
'nipy_spectral')
43 plt.savefig(
'plotting-Example-05a-python.jpg')
47 print(
'<DartMeasurementFile name=\"plotting-05-ObsGroup-example.jpg\" type=\"image/jpeg\">' + os.getcwd() +
'/plotting-Example-05a-python.jpg</DartMeasurementFile>')
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.