AMBER frame data to ASCII export
This recipe exports data stored in an AMBER OI product into ASCII files, two export methods are present
Create an object for the recipe amber_ascii_export.
import cpl
amber_ascii_export = cpl.Recipe("amber_ascii_export")
Export methods (str; default: ‘Export SNR, Vis2’) [default=”Export SNR, Vis2”].
The following code snippet shows the default settings for the available parameters.
import cpl
amber_ascii_export = cpl.Recipe("amber_ascii_export")
amber_ascii_export.param.export_method = "Export SNR, Vis2"
You may also set or overwrite some or all parameters by the recipe parameter param, as shown in the following example:
import cpl
amber_ascii_export = cpl.Recipe("amber_ascii_export")
[...]
res = amber_ascii_export( ..., param = {"export_method":"Export SNR, Vis2"})
See also
cpl.Recipe for more information about the recipe object.
Please report any problems to Klara Shabun. Alternatively, you may send a report to the ESO User Support Department.