IODA
plotting-05-ObsGroup.py
Go to the documentation of this file.
1 #
2 # (C) Copyright 2020-2021 UCAR
3 #
4 # This software is licensed under the terms of the Apache Licence Version 2.0
5 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 #
7 
8 # This example plots the outputs of Example 5a using Cartopy.
9 # For this to successfully run, you need Cartopy, Matplotlib and NumPy.
10 
11 import os
12 import sys
13 import numpy as np
14 import matplotlib.pyplot as plt
15 import cartopy.crs as ccrs
16 
17 import ioda
18 
20  name = "Example-05a-python.hdf5",
21  mode = ioda.Engines.BackendOpenModes.Read_Only)
23 
24 tbName = "ObsValue/brightness_temperature"
25 latName = "MetaData/latitude"
26 lonName = "MetaData/longitude"
27 
28 tbVar = og.vars.open(tbName)
29 latVar = og.vars.open(latName)
30 lonVar = og.vars.open(lonName)
31 
32 tbData = tbVar.readNPArray.float()
33 latData = latVar.readVector.float()
34 lonData = lonVar.readVector.float()
35 
36 #fig = plt.figure(figsize=(10, 5))
37 ax = plt.axes(projection=ccrs.PlateCarree())
38 #ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
39 ax.set_extent([-20, 40, -20, 45], crs=ccrs.PlateCarree())
40 ax.stock_img()
41 ax.scatter(lonData, latData, c=tbData[:,0], transform=ccrs.PlateCarree(), cmap='nipy_spectral')
42 ax.coastlines()
43 plt.savefig('plotting-Example-05a-python.jpg') # Has to be called before show().
44 plt.show()
45 
46 # Ignore this line. Used for uploads of test results to cdash.jcsda.org.
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...
Definition: ObsGroup.h:32
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:147