I am using zos api at python
The api is very good interface to expand my works.
But, there are some questions.
I want general information of the lens from prescriptionReport.
I find a way to get the data from the code below.
prescriptionReport = TheSystem.Analyses.New_Analysis(ZOSAPI.Analysis.AnalysisIDM.PrescriptionDataSettings)
prescriptionReport.ApplyAndWaitForCompletion()
prescriptionResults = prescriptionReport.GetResults()
However, i cannot find extract data from the “prescriptionResults.”
The only way i know is export the prescriptionResults to a text file and read it.
i want some way to access the results of prescriptionResults .
I am calculating Hygens PSF. It was not difficult to caluculate PSF map form zos-api
There are important data in header to utilze the PSF.
I used “headdata=result.get_HeaderData()”, but headdata does not have any data.
I want headerdata of PSF.
Thank you all