IODA
07-ObsSpaceClass.py
Go to the documentation of this file.
1 #
2 # (C) Copyright 2021 NOAA NWS NCEP EMC
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 opens and reads a sample ioda output file (v2 format) using the ObsSpace class.
9 
10 import os
11 import sys
12 import numpy as np
13 
14 if os.environ.get('LIBDIR') is not None:
15  sys.path.append(os.environ['LIBDIR'])
16 
17 import ioda
18 
19 # grab arguments
20 print(sys.argv)
21 InFile = sys.argv[1]
22 
23 # create an obsspace object
24 obsspace = ioda.ObsSpace(InFile, mode='r', name='IODA Test ObsSpace')
25 
26 # print some info about this file
27 print(f"INFO: nlocs={obsspace.nlocs}")
28 print(f"INFO: list of dimensions:{obsspace.dimensions}")
29 print(f"INFO: all available variables in {obsspace}: {obsspace.variables}")
30 
31 # read a sample variable from the file
32 testvar = obsspace.Variable('hofx/brightness_temperature')
33 
34 # grab the actual values for this variable
35 testdata = testvar.read_data()
36 
37 # print some stats from the testdata
38 print(f"INFO: hofx/brightness_temperature min: {np.nanmin(testdata)}")
39 print(f"INFO: hofx/brightness_temperature max: {np.nanmax(testdata)}")
40 print(f"INFO: hofx/brightness_temperature mean: {np.nanmean(testdata)}")