ppathWriteXMLPartial
- Workspace.ppathWriteXMLPartial(self: pyarts.arts._Workspace, output_file_format: pyarts.arts.WorkspaceVariable | pyarts.arts.String | None = self.output_file_format, ppath: pyarts.arts.WorkspaceVariable | pyarts.arts.Ppath | None = self.ppath, filename: pyarts.arts.WorkspaceVariable | pyarts.arts.String | None = '', file_index: pyarts.arts.WorkspaceVariable | pyarts.arts.Index | None = -1, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None
WSM to only write a reduced Ppath, omitting grid positions.
The following fields are set to be empty: gp_p, gp_lat and gp_lon. This cam drastically decrease the time for reading the structure by some external software.
If
file_index
is >= 0, the variable is written to 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 forWriteXML()
.Author(s): Oliver Lemke
- Parameters:
output_file_format (String, optional) – Output file format. See
output_file_format
, defaults toself.output_file_format
[IN]ppath (Ppath, optional) – The propagation path for one line-of-sight. See
ppath
, defaults toself.ppath
[IN]filename (String, optional) – File name. See above. Defaults to
""
[IN]file_index (Index, optional) – Optional file index to append to filename. Defaults to
-1
[IN]verbosity (Verbosity) – ARTS verbosity. See
verbosity
, defaults toself.verbosity
[IN]