Markus,
we are talking python :-) "keywords" is obviously not the right term
here, it should read 'keys'.
Take this line:
data, metadata = wrl.io.readDX(filename)
This means, the radar data is available as numpy array "data".
Metadata is extracted into the "metadata" python dictionary. You can
inspect this with:
> print(metadata.keys())
dict_keys(['datetime', 'message', 'elevprofile', 'azim', 'version',
'statfilter', 'radarid', 'producttype', 'bytes', 'cluttermap', 'elev',
'clutter', 'dopplerfilter'])
> print(metadata['datetime'])
2008-06-02 16:55:00+00:00
So, mostly we are referring to the python code and variables.
HTH!
Cheers,
Kai