|
IODA
|
Variables | |
| g | |
| og = ioda.ObsGroup(g) | |
| string | tbName = "ObsValue/brightness_temperature" |
| string | latName = "MetaData/latitude" |
| string | lonName = "MetaData/longitude" |
| tbVar = og.vars.open(tbName) | |
| latVar = og.vars.open(latName) | |
| lonVar = og.vars.open(lonName) | |
| tbData = tbVar.readNPArray.float() | |
| latData = latVar.readVector.float() | |
| lonData = lonVar.readVector.float() | |
| ax = plt.axes(projection=ccrs.PlateCarree()) | |
| crs | |
| c | |
| transform | |
| cmap | |
| plotting-05-ObsGroup.ax = plt.axes(projection=ccrs.PlateCarree()) |
Definition at line 37 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.c |
Definition at line 41 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.cmap |
Definition at line 41 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.crs |
Definition at line 39 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.g |
Definition at line 19 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.latData = latVar.readVector.float() |
Definition at line 33 of file plotting-05-ObsGroup.py.
| string plotting-05-ObsGroup.latName = "MetaData/latitude" |
Definition at line 25 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.latVar = og.vars.open(latName) |
Definition at line 29 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.lonData = lonVar.readVector.float() |
Definition at line 34 of file plotting-05-ObsGroup.py.
| string plotting-05-ObsGroup.lonName = "MetaData/longitude" |
Definition at line 26 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.lonVar = og.vars.open(lonName) |
Definition at line 30 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.og = ioda.ObsGroup(g) |
Definition at line 22 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.tbData = tbVar.readNPArray.float() |
Definition at line 32 of file plotting-05-ObsGroup.py.
| string plotting-05-ObsGroup.tbName = "ObsValue/brightness_temperature" |
Definition at line 24 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.tbVar = og.vars.open(tbName) |
Definition at line 28 of file plotting-05-ObsGroup.py.
| plotting-05-ObsGroup.transform |
Definition at line 41 of file plotting-05-ObsGroup.py.