The warnings you are seeing from the
pyart.io.read function indicate that your file contains some radar
fields which Py-ART does not support, the other fields are still
available just not those mentioned. Support for reading sigmet
type 18 data, SQI, was added to Py-ART two months ago [1] but may
not be in the version of Py-ART you have installed. Py-ART does
not support type 55 data, HCLASS, at this time.
Having read in data from the file you can display the data
visually using the RadarDisplay class. The Py-ART documentation
have an example which shows how to do exactly this,
http://arm-doe.github.io/pyart/dev/auto_examples/plotting/plot_ppi_sigmet.html.
If you want to quickly display information about the data you can
use
radar.info() to print out a description of the data.
The _sigmetfile.pyx module is a Cython module which must be
compiled, it cannot be used like a Python module. You can read
more about Cython at,
http://cython.org/. Your installation of
Py-ART should include a compiled version from which you can use
the SigmetFile class as follows:
import pyart
sfile =
pyart.io._sigmetfile.SigmetFile('XSW110520105408.RAW7HHF')
sfile is an instance of the SigmetFile class which provides low
level access to data from Sigmet/IRIS files which is documented in
the Developers Reference Manual [2]. Access data from Sigmet
files in this manner is not the preferred method within Py-ART,
using pyart.io.read_sigmet which returns a Radar instance in much
preferred.
Cheers,
- Jonathan Helmus
[1]
https://github.com/ARM-DOE/pyart/pull/332
[2]
http://arm-doe.github.io/pyart-docs-travis/dev_reference/generated/pyart.io._sigmetfile.SigmetFile.html