ReadXMLIndexed
- Workspace.ReadXMLIndexed(self, output: object | None = None, file_index: pyarts.arts.Index | None = None, filename: pyarts.arts.String | None = None, digits: pyarts.arts.Index | None = None) None
As
ReadXML()
, but reads indexed file names.The variable is read from a file with name:
<filename>.<file_index>.xml.
where <file_index> is the value of
file_index
.This means that
filename
shall here not include the .xml extension. Omitting filename works as forReadXML()
.Author(s): Oliver Lemke
- Parameters:
output (Any) – Workspace variable to be read. Defaults to create and/or use
self.output
:Any
. [OUT]file_index (Index) – Index of the file to read. [IN]
filename (String, optional) – File name. See above. Defaults to
""
[IN]digits (Index, optional) – Equalize the widths of all numbers by padding with zeros as necessary. 0 means no padding (default). Defaults to
0
[IN]