Description
Interface used to define the export to data file options.
Object Model
Public Methods
Example
Export an ephemeris file to scenario folder
[MATLAB] | Copy Code |
---|
% IAgStkObjectRoot root: STK Object Model Root % IAgSatellite satellite: Satellite object scenPath = root.ExecuteCommand('GetDirectory / Scenario').Item(0); satelliteFilePath = [scenPath '\' satellite.InstanceName '.e']; satellite.ExportTools.GetEphemerisStkExportTool.Export(satelliteFilePath);
|
|
Export an ephemeris file to scenario folder
[Python] | Copy Code |
---|
# IAgStkObjectRoot root: STK Object Model Root # IAgSatellite satellite: Satellite object scenPath = root.ExecuteCommand('GetDirectory / Scenario').Item(0) satelliteFilePath = '#s\#s.e' # (scenPath,satellite.InstanceName) satelliteFilePath = satelliteFilePath.replace("\\", "\\\\") satellite.ExportTools.GetEphemerisStkExportTool().Export(satelliteFilePath)
|
|