├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── custom.md └── pull_request_template.md ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── StkAutomation ├── CSharp │ ├── General_Utilities │ │ ├── DataProviderExplorer │ │ │ ├── Stk11.DataProviderExplorer │ │ │ │ ├── DataProviderExplorer.sln │ │ │ │ └── DataProviderExplorer │ │ │ │ │ ├── DataExplorerForm.Designer.cs │ │ │ │ │ ├── DataExplorerForm.cs │ │ │ │ │ ├── DataExplorerForm.resx │ │ │ │ │ ├── DataProviderExplorer.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── StkDataProviders.cs │ │ │ │ │ └── app.config │ │ │ └── Stk12.DataProviderExplorer │ │ │ │ ├── DataProviderExplorer.sln │ │ │ │ └── DataProviderExplorer │ │ │ │ ├── ANSYS_EnggData.cs │ │ │ │ ├── DataExplorerForm.Designer.cs │ │ │ │ ├── DataExplorerForm.cs │ │ │ │ ├── DataExplorerForm.resx │ │ │ │ ├── DataProviderExplorer.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── StkDataProviders.cs │ │ │ │ └── app.config │ │ ├── GetObjectsByType.cs │ │ ├── GetSegmentsByType.cs │ │ ├── PullDataFromSTKExample │ │ │ ├── PullDataFromSTKExample.sln │ │ │ └── PullDataFromSTKExample │ │ │ │ ├── COMExample.Designer.cs │ │ │ │ ├── COMExample.cs │ │ │ │ ├── COMExample.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ └── PullDataFromSTKExample.csproj │ │ ├── README.md │ │ └── SendEphemerisToSTK │ │ │ └── Stk11.SendEphemerisToStk │ │ │ ├── SendEphemerisToSTK.sln │ │ │ └── SendEphemerisToSTK │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SendEphemerisToSTK.csproj │ │ │ └── SendToStk.cs │ └── Problem_Specific │ │ ├── CDMComparison │ │ ├── SampleCdms │ │ │ ├── CDM_36411_15484_ID5507411_2019-08-30T1400.xml │ │ │ ├── CDM_36411_15484_ID5516908_2019-08-31T1500.xml │ │ │ ├── CDM_36411_23713_ID5507396_2019-08-30T1400.xml │ │ │ ├── CDM_36411_23713_ID5517539_2019-08-31T1500.xml │ │ │ ├── CDM_37237_35494_ID5507272_2019-08-30T1400.xml │ │ │ ├── CDM_37237_35494_ID5517531_2019-08-31T1500.xml │ │ │ ├── CDM_Summary.txt │ │ │ ├── Countable_Under_50 │ │ │ │ ├── CDM_36411_23713_ID5507396_2019-08-30T1400.xml │ │ │ │ ├── CDM_36411_23713_ID5517539_2019-08-31T1500.xml │ │ │ │ ├── CDM_37237_35494_ID5507272_2019-08-30T1400.xml │ │ │ │ └── CDM_37237_35494_ID5517531_2019-08-31T1500.xml │ │ │ └── Reportable_Under_15 │ │ │ │ ├── CDM_36411_15484_ID5507411_2019-08-30T1400.xml │ │ │ │ └── CDM_36411_15484_ID5516908_2019-08-31T1500.xml │ │ └── Stk11.CdmComparison │ │ │ ├── CDMComparison.sln │ │ │ ├── CDMComparison │ │ │ ├── App.config │ │ │ ├── CDMComparison.csproj │ │ │ ├── CdmCollectionPreview.Designer.cs │ │ │ ├── CdmCollectionPreview.cs │ │ │ ├── CdmCollectionPreview.resx │ │ │ ├── CdmCollectionViewer.Designer.cs │ │ │ ├── CdmCollectionViewer.cs │ │ │ ├── CdmCollectionViewer.resx │ │ │ ├── CdmTrendViewer.Designer.cs │ │ │ ├── CdmTrendViewer.cs │ │ │ ├── CdmTrendViewer.resx │ │ │ ├── CdmViewer.Designer.cs │ │ │ ├── CdmViewer.cs │ │ │ ├── CdmViewer.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── Resources │ │ │ │ ├── Camera.png │ │ │ │ ├── Import.png │ │ │ │ └── folder.png │ │ │ ├── ComspocDownloader │ │ │ ├── ComspocDownloader.csproj │ │ │ ├── ComspocHelper.cs │ │ │ ├── ConjunctionEvent.Custom.cs │ │ │ ├── JspocHelper.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Service References │ │ │ │ └── ConjunctionAssessment │ │ │ │ │ ├── CAService.wsdl │ │ │ │ │ ├── ComspocDownloader.ConjunctionAssessment.CAJobSpaceObject.datasource │ │ │ │ │ ├── ComspocDownloader.ConjunctionAssessment.ConjunctionEvent.datasource │ │ │ │ │ ├── ComspocDownloader.ConjunctionAssessment.JobCount.datasource │ │ │ │ │ ├── ComspocDownloader.ConjunctionAssessment.JobSequence.datasource │ │ │ │ │ ├── ComspocDownloader.ConjunctionAssessment.ProcessorStatus.datasource │ │ │ │ │ ├── ComspocDownloader.ConjunctionAssessment.QueryFilter.datasource │ │ │ │ │ ├── Reference.cs │ │ │ │ │ ├── Reference.svcmap │ │ │ │ │ ├── configuration.svcinfo │ │ │ │ │ └── configuration91.svcinfo │ │ │ └── app.config │ │ │ ├── StkCdmLibrary │ │ │ ├── CdmConjunction.cs │ │ │ ├── CdmReader.cs │ │ │ ├── CdmSatellite.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── StateCompare.cs │ │ │ ├── StkAssistant.cs │ │ │ ├── StkCdmLibrary.csproj │ │ │ └── ZedGraphAssistant.cs │ │ │ └── ThirdParty │ │ │ └── zedgraph_dll_5.0.1 │ │ │ ├── License-LGPL.txt │ │ │ ├── ZedGraph.Web.dll │ │ │ ├── ZedGraph.dll │ │ │ ├── de │ │ │ └── ZedGraph.resources.dll │ │ │ ├── es │ │ │ └── ZedGraph.resources.dll │ │ │ ├── fr │ │ │ └── ZedGraph.resources.dll │ │ │ ├── ja │ │ │ └── ZedGraph.resources.dll │ │ │ ├── readme.txt │ │ │ └── sv │ │ │ └── ZedGraph.resources.dll │ │ ├── FlowerConstellationBuilder │ │ └── Stk11.FlowerConstellationBuilder │ │ │ ├── FlowerConstellationBuilder.sln │ │ │ └── FlowerConstellationBuilder │ │ │ ├── App.config │ │ │ ├── FlowerConstellationBuilder.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Routines │ │ │ ├── ErrorType.cs │ │ │ ├── FlightDynamics.cs │ │ │ └── STK.cs │ │ │ ├── frmMain.Designer.cs │ │ │ ├── frmMain.cs │ │ │ └── frmMain.resx │ │ ├── README.md │ │ ├── RealTimeAircraftController │ │ └── Stk11.RealTimeAircraftController │ │ │ ├── AircraftController.cs │ │ │ ├── ControlForm.Designer.cs │ │ │ ├── ControlForm.cs │ │ │ ├── ControlForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── RealtimeAircraftControl.csproj │ │ │ ├── RealtimeAircraftControl.sln │ │ │ └── app.config │ │ ├── ReentryCalculator │ │ ├── Stk11.ReentryCalculator │ │ │ ├── ReentryCalculator.sln │ │ │ └── ReentryCalculator │ │ │ │ ├── App.config │ │ │ │ ├── App.ico │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── ReentryCalculator.csproj │ │ │ │ ├── Utility │ │ │ │ ├── Data.cs │ │ │ │ ├── InitialState.cs │ │ │ │ ├── PropagationResults.cs │ │ │ │ ├── STK.cs │ │ │ │ ├── TLE.cs │ │ │ │ └── Uncertainty.cs │ │ │ │ ├── frmMain.Designer.cs │ │ │ │ ├── frmMain.cs │ │ │ │ ├── frmMain.resx │ │ │ │ ├── frmSatcat.Designer.cs │ │ │ │ ├── frmSatcat.cs │ │ │ │ └── frmSatcat.resx │ │ └── Stk12.ReentryCalculator │ │ │ ├── ReentryCalculator.sln │ │ │ └── ReentryCalculator │ │ │ ├── App.config │ │ │ ├── App.ico │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ReentryCalculator.csproj │ │ │ ├── Utility │ │ │ ├── Data.cs │ │ │ ├── InitialState.cs │ │ │ ├── PropagationResults.cs │ │ │ ├── STK.cs │ │ │ ├── TLE.cs │ │ │ └── Uncertainty.cs │ │ │ ├── frmMain.Designer.cs │ │ │ ├── frmMain.cs │ │ │ ├── frmMain.resx │ │ │ ├── frmSatcat.Designer.cs │ │ │ ├── frmSatcat.cs │ │ │ └── frmSatcat.resx │ │ └── XPlaneUDPToSTK12 │ │ ├── README.md │ │ ├── XPlaneUDPToSTK12.sln │ │ └── XPlaneUDPToSTK12 │ │ ├── BinaryHelperClass.cs │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── XPlaneUDPToSTK12.csproj │ │ └── app.config ├── Html │ ├── General_Utilities │ │ ├── APIDemo.htm │ │ ├── ConFile Utility.html │ │ ├── CreateAreaTargetFromCSV │ │ │ ├── AreaTarget1_Boundary_Points.csv │ │ │ └── CreateAreaTargetFromCSV.html │ │ ├── Data Read.htm │ │ ├── ExternalEphemerisToMto.htm │ │ ├── One-Step Graphics Settings.htm │ │ ├── README.md │ │ ├── RealTime.htm │ │ ├── SGP4toJ4.html │ │ └── StkKmlExporter │ │ │ ├── AGILogo.png │ │ │ ├── KMLExporter_Utility_ReadMe.pdf │ │ │ ├── StkKmlExporter.htm │ │ │ ├── gelogoicon.gif │ │ │ ├── leaf.gif │ │ │ ├── legend.gif │ │ │ ├── minus.gif │ │ │ └── plus.gif │ ├── Problem_Specific │ │ ├── CameraPathZoom.htm │ │ ├── ExplodeSatellite.html │ │ ├── MTO Track Generator │ │ │ ├── TrackGen.htm │ │ │ └── US ATS.csv │ │ ├── MultiSat.htm │ │ ├── README.md │ │ ├── RectangularSensorCornerPoints.html │ │ ├── ScanningSensor_Utility │ │ │ ├── ScanningSensor_Utility.htm │ │ │ └── images │ │ │ │ ├── a1.bmp │ │ │ │ ├── a2.bmp │ │ │ │ ├── a3.bmp │ │ │ │ ├── a4.bmp │ │ │ │ ├── b1.bmp │ │ │ │ ├── b2.bmp │ │ │ │ ├── b3.bmp │ │ │ │ ├── b4.bmp │ │ │ │ └── info.bmp │ │ ├── SimGen_UMT_Exporter │ │ │ ├── createUMT_MOT.htm │ │ │ └── output-config-EXAMPLE.txt │ │ └── VectorCB_Intersect_GroundVehicle.html │ └── Scenario_Analysis │ │ ├── README.md │ │ └── VolumetricSatisfactionIntervalUtility.htm ├── Java │ └── Scenario_Building │ │ ├── BasicAccess │ │ ├── BasicAccess.iml │ │ └── src │ │ │ ├── Main.java │ │ │ └── StkExample.java │ │ └── README.md ├── Matlab │ ├── General_Utilities │ │ ├── Clutter Simulator │ │ │ ├── README.md │ │ │ ├── SSA_Clutter_Interference_Visualizer.fig │ │ │ ├── SSA_Clutter_Interference_Visualizer.m │ │ │ ├── create_clutter_map.m │ │ │ ├── create_satellite_train_layer.m │ │ │ ├── create_star_info.m │ │ │ ├── create_star_map.m │ │ │ ├── draw_antialias_line.m │ │ │ ├── generate_2d_gaussian_psf.m │ │ │ ├── mouse_figure.m │ │ │ └── trim_or_pad.m │ │ ├── FOMDataPrv.m │ │ ├── FilterSegmentsByType.m │ │ ├── Normalize_EOIR_Images │ │ │ ├── README.md │ │ │ ├── create_normalized_frame_sequence.m │ │ │ └── save_colormapped_image.m │ │ ├── README.md │ │ ├── StkHelp.m │ │ ├── convertTleState.m │ │ ├── createCommSystemPointingIntervals.m │ │ ├── createEphemerisFile.m │ │ ├── filterObjectsByType.m │ │ ├── generateSensorPointingFile.m │ │ ├── getAllObjectHandles.m │ │ ├── getDCM.m │ │ ├── intervalListFromTimeArray.m │ │ ├── makeEllipticalSensor.m │ │ ├── persistentAccessLines.m │ │ ├── printRootEvents.m │ │ ├── pullDataProvider.m │ │ ├── pushSat2STK.m │ │ ├── rgb2StkColor.m │ │ └── vgtImporterExporter.m │ ├── Problem_Specific │ │ ├── AST_output_Acceleration_Data.m │ │ ├── AccumulatedPower_CreateUserSuppliedData.m │ │ ├── AttitudeUsingAScheduledVector.m │ │ ├── ChangeSTMComponents.m │ │ ├── ClosestGrazingAngle.m │ │ ├── ConstrainSatelliteAttitude.m │ │ ├── ConvertAERtoLLA │ │ │ ├── ConvertAERtoLLA.m │ │ │ └── MOTR-To-GSLV-AER.csv │ │ ├── Create3DCoverageFromAreaTarget.m │ │ ├── DebrisModel.m │ │ ├── DynamicSensorMask │ │ │ ├── DynamicSensorBodyMaskAnalysis.m │ │ │ ├── GetSensorAzElMask.m │ │ │ └── SetSensorAzElMask.m │ │ ├── EOIRTextureMaps │ │ │ ├── H5TexMap.mlx │ │ │ └── HDF4TexMap.mlx │ │ ├── High_Altitude_Balloon.m │ │ ├── LambertSolver_EarthToMars.m │ │ ├── LinkBudgetLLA │ │ │ ├── Aircraft Conus Ephemeris 5 deg.e │ │ │ ├── Ground Vehicle Conus Ephemeris 5 deg.e │ │ │ └── LinkBudgetLatLonChain.m │ │ ├── README.md │ │ ├── SatelliteAttitudeControl │ │ │ ├── Gyroscope.png │ │ │ ├── Satellite.png │ │ │ ├── SatelliteAttitudeControl.slx │ │ │ └── SatelliteAttitudeControl_sFunction.m │ │ ├── SatelliteMonteCarlo.m │ │ ├── SimulinkAccess │ │ │ ├── AGI-Logo.png │ │ │ ├── InitFcn_TestCode.m │ │ │ ├── ReadMe.docx │ │ │ ├── STK_SatelliteAccess_sFunction.m │ │ │ └── SimulinkAccess.slx │ │ ├── SimulinkAttitudeControlLoop │ │ │ ├── AttitudeControl.slx │ │ │ ├── InitCode.m │ │ │ ├── SFunctionClosedLoop.m │ │ │ └── UsingSimulink_v4.pdf │ │ ├── SimulinkAttitudeFile │ │ │ ├── Gyroscope.png │ │ │ ├── Readme.docx │ │ │ ├── Satellite.png │ │ │ ├── SatelliteAttitudeControl.slx │ │ │ ├── SatelliteAttitudeControl_FullInitFunction.m │ │ │ ├── SatelliteAttitudeControl_InitFcn.m │ │ │ └── SatelliteAttitudeControl_sFunction.m │ │ ├── SolarEnergySimulink │ │ │ ├── InitFcn_TestCode.m │ │ │ ├── Readme_SolarEnergy.docx │ │ │ ├── SolarEnergy.slx │ │ │ └── stk_level2_mfile.m │ │ ├── TETK_Automation_Tutorial.m │ │ ├── TETK_SatisfactionIntervalsExample.m │ │ ├── TLE_Deorbit_Estimation.m │ │ ├── advcatTradeStudy.m │ │ ├── coverageAccumPercent.m │ │ ├── multiSegmentAttitude.m │ │ ├── satStepWiseTracking.m │ │ └── sensorPointingAndAER.m │ ├── Scenario_Analysis │ │ ├── AccessByMetric.m │ │ ├── CoverageGridInspectorAutomate.m │ │ ├── CreateGrazingAngle.m │ │ ├── README.md │ │ ├── accessAtEveryCoveragePoint.m │ │ ├── addArrowsAlongPath.m │ │ ├── astgCheckPassiveSafety.m │ │ ├── astgVisualizeDeltaVVectors.m │ │ ├── automateLifetimeTool.m │ │ ├── coverageDurationPerDay.m │ │ ├── getEOIRSensorLLA.m │ │ ├── quiverPlotRelativeGroundVelocity.m │ │ ├── regroupByAsset.m │ │ └── valueByGridPointAtTime.m │ └── Scenario_Building │ │ ├── Analysis_Workbench_Components.m │ │ ├── AstrogatorAPI_Training │ │ ├── AstrogatorAPI_LEOtoGEO.m │ │ ├── AstrogatorAPI_LEOtoGEO_Complete.m │ │ └── README.md │ │ ├── Aviator_ObjectModel_CarrierLanding.m │ │ ├── Coverage_FOM_GridInspector_CodeHelp.m │ │ ├── FigureEight.m │ │ ├── FigureEightCircle.m │ │ ├── ImportAreaTarget │ │ ├── ImportAreaTarget.m │ │ └── USA.xlsx │ │ ├── ImportFacilities │ │ ├── GroundSitesExamples.xlsx │ │ └── ImportFacilities.m │ │ ├── MissilePropagation.m │ │ ├── MultiSegmentAttitude.m │ │ ├── MultiSegmentAttitudeLoop.m │ │ ├── ObjectLines.m │ │ ├── ObjectModelTutorial.m │ │ ├── PNT_and_Object_Coverage_Automation.m │ │ ├── README.md │ │ ├── RealTimePropagation │ │ ├── FighterAttitude.txt │ │ ├── FighterPosition.txt │ │ ├── MissileAttitude.txt │ │ ├── MissilePosition.txt │ │ ├── ReadMe.txt │ │ ├── SatelliteAttitude.txt │ │ ├── SatellitePosition.txt │ │ ├── realtimeAircraft.m │ │ ├── realtimeMissileWithArticulations.m │ │ ├── realtimeSatellite.m │ │ └── realtimeSatellite_MatlabClock.m │ │ ├── SensorSweepSOLIS │ │ ├── Bearing.m │ │ ├── GenerateScan.m │ │ ├── SOL_API_ConnectToRunningSTK.m │ │ └── SensorSweepSOLIS.m │ │ ├── SimpleSimulinkExample │ │ ├── README.md │ │ ├── Simple Simulink and STK Tutorial.docx │ │ ├── SimpleSTK_S_block.m │ │ ├── SimpleSTK_Simulink.slx │ │ └── initFcn.m │ │ ├── astgSlewToManeuvers.m │ │ ├── chainAutomationExample.m │ │ ├── makeEllipticalSensor.m │ │ └── solisCreateSequenceFromAccess.m ├── Perl │ └── Problem_Specific │ │ └── TETK │ │ ├── README.md │ │ └── STK_TE_Automation_Tutorial.pl ├── Python │ ├── General_Utilities │ │ ├── AnalyzerPlots │ │ │ ├── Analyzer Plotting and Data Analysis.ipynb │ │ │ ├── README.md │ │ │ ├── data1.csv │ │ │ ├── data2.csv │ │ │ └── data3.csv │ │ ├── AzElPolarPlot │ │ │ ├── AzElPolarPlot_comtypes.ipynb │ │ │ └── AzElPolarPlot_win32com.ipynb │ │ ├── CombineEphemeris.py │ │ ├── CustomAdjacentSatRouting.py │ │ ├── FilterObjectsByType.py │ │ ├── HFSS_RCS_Complex_Export_AEDTLib.py │ │ ├── ImportFacilities │ │ │ ├── GroundSitesExamples.xlsx │ │ │ └── ImportFacilities.py │ │ ├── KmlToStkEphemeris.py │ │ ├── LatLonGridProjection.py │ │ ├── OneStepGraphicsSettings.py │ │ ├── README.md │ │ ├── convertTleState.py │ │ ├── eventSub.py │ │ ├── getAllObjectHandles.py │ │ ├── stkMetaDataExtractor.py │ │ ├── stkSocket.py │ │ ├── sunObscuration.py │ │ ├── writeComplexBistaticRCS.py │ │ └── writeCsvToPg │ │ │ ├── LLA.csv │ │ │ └── writeCsvToPg.py │ ├── Problem_Specific │ │ ├── AnnotationsOnAVehicle2D.py │ │ ├── ChainTimingDelay.py │ │ ├── ConstellationWizard │ │ │ ├── ConstellationWizardNotebook.ipynb │ │ │ ├── ConstellationWizardTradeStudy.py │ │ │ ├── ConstellationWizardUI.ipynb │ │ │ ├── ConstellationsParameters.xlsx │ │ │ ├── CreateConstellationsUtilities.ipynb │ │ │ ├── DeckAccessReader.py │ │ │ ├── DeckAccessReaderGUI.py │ │ │ ├── Files │ │ │ │ ├── ChildrenObjects │ │ │ │ │ ├── OneWebReceiver.r │ │ │ │ │ ├── OneWebReceiver.r3 │ │ │ │ │ ├── OneWebTransmitter.x │ │ │ │ │ ├── OneWebTransmitter.x3 │ │ │ │ │ ├── StarLinkReceiver.r │ │ │ │ │ ├── StarLinkReceiver.r3 │ │ │ │ │ ├── StarLinkTransmitter.x │ │ │ │ │ ├── StarLinkTransmitter.x3 │ │ │ │ │ ├── TeleSatReceiver.r │ │ │ │ │ ├── TeleSatReceiver.r3 │ │ │ │ │ ├── TeleSatTransmitter.x │ │ │ │ │ └── TeleSatTransmitter.x3 │ │ │ │ ├── ConstellationPlanes │ │ │ │ │ ├── OnewebPlane1.tce │ │ │ │ │ ├── OnewebPlane10.tce │ │ │ │ │ ├── OnewebPlane11.tce │ │ │ │ │ ├── OnewebPlane12.tce │ │ │ │ │ ├── OnewebPlane13.tce │ │ │ │ │ ├── OnewebPlane14.tce │ │ │ │ │ ├── OnewebPlane15.tce │ │ │ │ │ ├── OnewebPlane16.tce │ │ │ │ │ ├── OnewebPlane17.tce │ │ │ │ │ ├── OnewebPlane18.tce │ │ │ │ │ ├── OnewebPlane2.tce │ │ │ │ │ ├── OnewebPlane3.tce │ │ │ │ │ ├── OnewebPlane4.tce │ │ │ │ │ ├── OnewebPlane5.tce │ │ │ │ │ ├── OnewebPlane6.tce │ │ │ │ │ ├── OnewebPlane7.tce │ │ │ │ │ ├── OnewebPlane8.tce │ │ │ │ │ ├── OnewebPlane9.tce │ │ │ │ │ ├── SpaceXPlane1.tce │ │ │ │ │ ├── SpaceXPlane10.tce │ │ │ │ │ ├── SpaceXPlane11.tce │ │ │ │ │ ├── SpaceXPlane12.tce │ │ │ │ │ ├── SpaceXPlane13.tce │ │ │ │ │ ├── SpaceXPlane14.tce │ │ │ │ │ ├── SpaceXPlane15.tce │ │ │ │ │ ├── SpaceXPlane16.tce │ │ │ │ │ ├── SpaceXPlane17.tce │ │ │ │ │ ├── SpaceXPlane18.tce │ │ │ │ │ ├── SpaceXPlane19.tce │ │ │ │ │ ├── SpaceXPlane2.tce │ │ │ │ │ ├── SpaceXPlane20.tce │ │ │ │ │ ├── SpaceXPlane21.tce │ │ │ │ │ ├── SpaceXPlane22.tce │ │ │ │ │ ├── SpaceXPlane23.tce │ │ │ │ │ ├── SpaceXPlane24.tce │ │ │ │ │ ├── SpaceXPlane25.tce │ │ │ │ │ ├── SpaceXPlane26.tce │ │ │ │ │ ├── SpaceXPlane27.tce │ │ │ │ │ ├── SpaceXPlane28.tce │ │ │ │ │ ├── SpaceXPlane29.tce │ │ │ │ │ ├── SpaceXPlane3.tce │ │ │ │ │ ├── SpaceXPlane30.tce │ │ │ │ │ ├── SpaceXPlane31.tce │ │ │ │ │ ├── SpaceXPlane32.tce │ │ │ │ │ ├── SpaceXPlane33.tce │ │ │ │ │ ├── SpaceXPlane34.tce │ │ │ │ │ ├── SpaceXPlane35.tce │ │ │ │ │ ├── SpaceXPlane36.tce │ │ │ │ │ ├── SpaceXPlane37.tce │ │ │ │ │ ├── SpaceXPlane38.tce │ │ │ │ │ ├── SpaceXPlane39.tce │ │ │ │ │ ├── SpaceXPlane4.tce │ │ │ │ │ ├── SpaceXPlane40.tce │ │ │ │ │ ├── SpaceXPlane41.tce │ │ │ │ │ ├── SpaceXPlane42.tce │ │ │ │ │ ├── SpaceXPlane43.tce │ │ │ │ │ ├── SpaceXPlane44.tce │ │ │ │ │ ├── SpaceXPlane45.tce │ │ │ │ │ ├── SpaceXPlane46.tce │ │ │ │ │ ├── SpaceXPlane47.tce │ │ │ │ │ ├── SpaceXPlane48.tce │ │ │ │ │ ├── SpaceXPlane49.tce │ │ │ │ │ ├── SpaceXPlane5.tce │ │ │ │ │ ├── SpaceXPlane50.tce │ │ │ │ │ ├── SpaceXPlane51.tce │ │ │ │ │ ├── SpaceXPlane52.tce │ │ │ │ │ ├── SpaceXPlane53.tce │ │ │ │ │ ├── SpaceXPlane54.tce │ │ │ │ │ ├── SpaceXPlane55.tce │ │ │ │ │ ├── SpaceXPlane56.tce │ │ │ │ │ ├── SpaceXPlane57.tce │ │ │ │ │ ├── SpaceXPlane58.tce │ │ │ │ │ ├── SpaceXPlane59.tce │ │ │ │ │ ├── SpaceXPlane6.tce │ │ │ │ │ ├── SpaceXPlane60.tce │ │ │ │ │ ├── SpaceXPlane61.tce │ │ │ │ │ ├── SpaceXPlane62.tce │ │ │ │ │ ├── SpaceXPlane63.tce │ │ │ │ │ ├── SpaceXPlane64.tce │ │ │ │ │ ├── SpaceXPlane65.tce │ │ │ │ │ ├── SpaceXPlane66.tce │ │ │ │ │ ├── SpaceXPlane67.tce │ │ │ │ │ ├── SpaceXPlane68.tce │ │ │ │ │ ├── SpaceXPlane69.tce │ │ │ │ │ ├── SpaceXPlane7.tce │ │ │ │ │ ├── SpaceXPlane70.tce │ │ │ │ │ ├── SpaceXPlane71.tce │ │ │ │ │ ├── SpaceXPlane72.tce │ │ │ │ │ ├── SpaceXPlane73.tce │ │ │ │ │ ├── SpaceXPlane74.tce │ │ │ │ │ ├── SpaceXPlane75.tce │ │ │ │ │ ├── SpaceXPlane76.tce │ │ │ │ │ ├── SpaceXPlane77.tce │ │ │ │ │ ├── SpaceXPlane78.tce │ │ │ │ │ ├── SpaceXPlane79.tce │ │ │ │ │ ├── SpaceXPlane8.tce │ │ │ │ │ ├── SpaceXPlane80.tce │ │ │ │ │ ├── SpaceXPlane81.tce │ │ │ │ │ ├── SpaceXPlane82.tce │ │ │ │ │ ├── SpaceXPlane83.tce │ │ │ │ │ ├── SpaceXPlane9.tce │ │ │ │ │ ├── TelesatPlane1.tce │ │ │ │ │ ├── TelesatPlane10.tce │ │ │ │ │ ├── TelesatPlane11.tce │ │ │ │ │ ├── TelesatPlane2.tce │ │ │ │ │ ├── TelesatPlane3.tce │ │ │ │ │ ├── TelesatPlane4.tce │ │ │ │ │ ├── TelesatPlane5.tce │ │ │ │ │ ├── TelesatPlane6.tce │ │ │ │ │ ├── TelesatPlane7.tce │ │ │ │ │ ├── TelesatPlane8.tce │ │ │ │ │ └── TelesatPlane9.tce │ │ │ │ ├── Constellations │ │ │ │ │ ├── Celestrak100OrSoBrightest.tce │ │ │ │ │ ├── CelestrakARGOS.tce │ │ │ │ │ ├── CelestrakActive.tce │ │ │ │ │ ├── CelestrakActiveGEO.tce │ │ │ │ │ ├── CelestrakAmateurRadio.tce │ │ │ │ │ ├── CelestrakAnalyst.tce │ │ │ │ │ ├── CelestrakBREEZE-MRBBreakUp.tce │ │ │ │ │ ├── CelestrakBeidou.tce │ │ │ │ │ ├── CelestrakCOSMOS2251Debris.tce │ │ │ │ │ ├── CelestrakCubeSats.tce │ │ │ │ │ ├── CelestrakDisasterMonitoring.tce │ │ │ │ │ ├── CelestrakEarthResources.tce │ │ │ │ │ ├── CelestrakEducation.tce │ │ │ │ │ ├── CelestrakEngineering.tce │ │ │ │ │ ├── CelestrakExperimental.tce │ │ │ │ │ ├── CelestrakFENGYUN1CDebris.tce │ │ │ │ │ ├── CelestrakGLONASSOperational.tce │ │ │ │ │ ├── CelestrakGOES.tce │ │ │ │ │ ├── CelestrakGPSOperational.tce │ │ │ │ │ ├── CelestrakGalileo.tce │ │ │ │ │ ├── CelestrakGeodetic.tce │ │ │ │ │ ├── CelestrakGlobalStar.tce │ │ │ │ │ ├── CelestrakGorizont.tce │ │ │ │ │ ├── CelestrakIndianASATTestDebris.tce │ │ │ │ │ ├── CelestrakIntelsat.tce │ │ │ │ │ ├── CelestrakIridium.tce │ │ │ │ │ ├── CelestrakIridium33Debris.tce │ │ │ │ │ ├── CelestrakIridiumNEXT.tce │ │ │ │ │ ├── CelestrakLast30DaysLaunches.tce │ │ │ │ │ ├── CelestrakMiscMilitary.tce │ │ │ │ │ ├── CelestrakMolniya.tce │ │ │ │ │ ├── CelestrakNNSS.tce │ │ │ │ │ ├── CelestrakNOAA.tce │ │ │ │ │ ├── CelestrakOrbcomm.tce │ │ │ │ │ ├── CelestrakOther.tce │ │ │ │ │ ├── CelestrakOtherComm.tce │ │ │ │ │ ├── CelestrakPlanet.tce │ │ │ │ │ ├── CelestrakRadarCalibration.tce │ │ │ │ │ ├── CelestrakRaduga.tce │ │ │ │ │ ├── CelestrakRusssianLEONavigation.tce │ │ │ │ │ ├── CelestrakSBAS.tce │ │ │ │ │ ├── CelestrakSES.tce │ │ │ │ │ ├── CelestrakSatNOGs.tce │ │ │ │ │ ├── CelestrakSearch&Rescue.tce │ │ │ │ │ ├── CelestrakSpace&EarthScience.tce │ │ │ │ │ ├── CelestrakSpaceStations.tce │ │ │ │ │ ├── CelestrakSpire.tce │ │ │ │ │ ├── CelestrakStarlink.tce │ │ │ │ │ ├── CelestrakTDRSS.tce │ │ │ │ │ ├── CelestrakWeather.tce │ │ │ │ │ ├── Oneweb.tce │ │ │ │ │ ├── Oneweb27000.tce │ │ │ │ │ ├── OnewebDeckAccess.tce │ │ │ │ │ ├── SpaceX.tce │ │ │ │ │ ├── SpaceX23000.tce │ │ │ │ │ ├── SpaceXDeckAccess.tce │ │ │ │ │ ├── SpaceXwAccess.tce │ │ │ │ │ ├── Telesat.tce │ │ │ │ │ ├── Telesat26000.tce │ │ │ │ │ ├── TelesatDeckAccess.tce │ │ │ │ │ ├── Test.tce │ │ │ │ │ └── deckAccessTLE.tce │ │ │ │ └── Misc │ │ │ │ │ ├── ConstellationWizardIcon.ico │ │ │ │ │ └── deckAccessRpt.txt │ │ │ ├── Images │ │ │ │ ├── notebookView.png │ │ │ │ ├── stkView.png │ │ │ │ └── uiView.png │ │ │ └── README.md │ │ ├── DeckAccess │ │ │ ├── DeckAccess.ipynb │ │ │ ├── DeckAccess.py │ │ │ └── DeckAccessReader.py │ │ ├── DutyCycleMultiSat.py │ │ ├── EOIRTextureMaps │ │ │ ├── H5TexMap.ipynb │ │ │ └── HDF4TexMap.ipynb │ │ ├── EOIRTrackingInTheLoop │ │ │ ├── EOIRInTheLoop.ipynb │ │ │ ├── EOIRProcessingLib.py │ │ │ ├── ExampleBuildingReflectanceMaps.ipynb │ │ │ ├── LEOLaunchTracker.gif │ │ │ └── README.md │ │ ├── EditIntervalFile.py │ │ ├── ExternalWindModel │ │ │ ├── HWM93STKpy.ipynb │ │ │ └── readme.md │ │ ├── LKtoFFDConverter │ │ │ ├── ConvertLKtoFFD.py │ │ │ ├── GenerateTestLK.py │ │ │ └── README.md │ │ ├── LoadCDMs │ │ │ ├── AddSatellite.py │ │ │ ├── LoadCDM.py │ │ │ ├── ParseCdm.py │ │ │ └── readme.md │ │ ├── NumberOfPassesUntilRepeatGroundTrace.ipynb │ │ ├── PrimaryAreaTargetOnly.py │ │ ├── README.md │ │ ├── RPOSimulatorGame │ │ │ └── RPOSim.py │ │ ├── SatelliteConflictFreePassesUsingIntervalTree │ │ │ ├── ConflictFreeOrbits.py │ │ │ └── README.md │ │ ├── TargetedSensorPointingClosestFacility.py │ │ ├── createCovariancePoints.py │ │ └── solisRealtimeExample.py │ ├── Scenario_Analysis │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Aviator_ObjectModel_FuelConsumptionStudy.py │ │ ├── ConstellationAndNetworkRouting │ │ │ ├── ConstellationAnalysisMultiDomainAndMultiHop.ipynb │ │ │ ├── ConstellationAnalysisTransRec.ipynb │ │ │ ├── ConstellationAnalysisUsingPrebuiltChains.ipynb │ │ │ ├── CycleIllustration.JPG │ │ │ ├── DataTransfer.JPG │ │ │ ├── DataTransfer.ipynb │ │ │ ├── MultiConstellationMultiHopMultiPath.ipynb │ │ │ ├── MultiDomain.JPG │ │ │ ├── MultipleConstellations.JPG │ │ │ ├── README.md │ │ │ ├── TransmitterAndReceiver.JPG │ │ │ ├── chainPathLib2.py │ │ │ └── chainPaths.JPG │ │ ├── EOIR_Synthetic_Scene_and_Data_Generation │ │ │ ├── EOIR_Image_Generation.ipynb │ │ │ ├── Generalized_EOIR_Image_Data_Generation.ipynb │ │ │ ├── Images_to_video.ipynb │ │ │ └── README.md │ │ ├── ForceComparison.py │ │ ├── Lifetime Analysis │ │ │ ├── Common Lifetime Questions.ipynb │ │ │ ├── GEODecay.gif │ │ │ ├── LifeTimeLib.py │ │ │ ├── LifetimeOfGTOs.ipynb │ │ │ ├── README.md │ │ │ ├── RunLifetimeAnalysis.ipynb │ │ │ ├── SolarFluxFilesPredict.png │ │ │ └── Unexpectedly Short Lifetimes.ipynb │ │ ├── README.md │ │ └── Volumetric_Percent_Satisfied.py │ └── Scenario_Building │ │ ├── AstrogatorObjectModel │ │ ├── AstrogatorOMWalkthroughPython.ipynb │ │ ├── Astrogator_OM_Tutorial.ipynb │ │ ├── Astrogator_OM_Tutorial_Completed.ipynb │ │ └── README.md │ │ ├── AstrogatorSingleSegmentMode │ │ └── SingleSegmentModeExample.ipynb │ │ ├── Aviator_ObjectModel_CarrierLanding.py │ │ ├── LaunchVehicleTradeStudiesAviator.py │ │ ├── PythonAPI12.2_Demo │ │ ├── Aircraft_PythonAPI.py │ │ └── cessna_206.glb │ │ ├── README.md │ │ ├── STK_OM_Tutorial │ │ ├── STK_OM_Tutorial.ipynb │ │ └── STK_OM_Tutorial_Complete.ipynb │ │ └── VolumetricSensorCoverage │ │ ├── VolumetricSensorCoverage_comtypes.py │ │ └── VolumetricSensorCoverage_pythonapi.py ├── README.md └── VbScript │ ├── General_Utilities │ ├── AttitudeEuler.vbs │ ├── AttitudeYPR.vbs │ ├── AviatorWaypointsConnect.vbs │ ├── CovDP_PlusComments.vbs │ ├── Excel_Command_Sender_Example.xlsb │ ├── README.md │ ├── STK_Excel.xlsm │ └── TerrainConverter │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── TerrainConverter.sln │ │ ├── TerrainConverter.vbproj │ │ ├── TerrainConverter │ │ └── TerrainConverter.sln │ │ └── app.config │ ├── Problem_Specific │ ├── ASCOM Telescope Utility_STK11 │ │ ├── ASCOM Telescope Utility README.docx │ │ ├── STK11.ASCOM_Utility.sln │ │ └── STK11.ASCOM_Utility_proj │ │ │ ├── ASCOMUtilityUI.Designer.vb │ │ │ ├── ASCOMUtilityUI.vb │ │ │ ├── App.config │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── STK11.ASCOM_Telescope_Utility.vbproj │ ├── AdvCatAutomation.xlsm │ ├── README.md │ ├── dataProviderToScalarFile.VBS │ └── panorama.vbs │ ├── Scenario_Analysis │ ├── AdvCatAutomation.xlsm │ ├── CATS Angle Analysis Tool.xlsm │ ├── README.md │ ├── STK12_SolarPanelTool_Automation.vbs │ └── volumetricSatisfactionIntervals.vbs │ └── Scenario_Building │ ├── AviatorConnect.vbs │ ├── COES_TLE_Reader.xlsm │ ├── CreateNewSTKApplication.vbs │ └── README.md ├── StkEngineApplications ├── CSharp │ ├── OrbitSwitcher │ │ ├── OrbitSwitcher.sln │ │ └── OrbitSwitcher │ │ │ ├── OrbitSwitcher.csproj │ │ │ └── Program.cs │ ├── README.md │ ├── StkMetaDataExtractor │ │ ├── README.md │ │ ├── Stk11.StkMetadataExtrator │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Stk11.StkMetadataExtractor.csproj │ │ │ ├── Stk11.StkMetadataExtractor.sln │ │ │ ├── StkMetadataExtractor.cs │ │ │ └── StkObjectSummary.cs │ │ └── Stk12.StkMetadataExtrator │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── StkMetadataExtractor.cs │ │ │ ├── StkMetadataExtractor.csproj │ │ │ ├── StkMetadataExtractor.sln │ │ │ └── StkObjectSummary.cs │ └── WindowsFormsStarter │ │ ├── Stk11.EngineWindowsFormsStarter │ │ ├── OverlayToolbar │ │ │ ├── OverlayButton.cs │ │ │ ├── OverlayToolbar.cs │ │ │ ├── OverlayToolbar_VS2015.csproj │ │ │ ├── OverlayToolbar_VS2017.csproj │ │ │ ├── OverlayToolbar_VS2019.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── ToolbarImages │ │ │ │ ├── decreasedelta.png │ │ │ │ ├── home.png │ │ │ │ ├── increasedelta.png │ │ │ │ ├── invisible.png │ │ │ │ ├── moon.png │ │ │ │ ├── pan.png │ │ │ │ ├── panpressed.png │ │ │ │ ├── pause.png │ │ │ │ ├── playforward.png │ │ │ │ ├── playreverse.png │ │ │ │ ├── reset.png │ │ │ │ ├── rotate.png │ │ │ │ ├── scale.png │ │ │ │ ├── stepforward.png │ │ │ │ ├── stepreverse.png │ │ │ │ ├── visible.png │ │ │ │ ├── zoom.png │ │ │ │ └── zoompressed.png │ │ ├── StkEngineWindowsFormsStarter.sln │ │ └── StkEngineWindowsFormsStarter │ │ │ ├── App.config │ │ │ ├── CommonData.cs │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── StkEngineWindowsFormsStarter.csproj │ │ │ └── StkObjectsLibrary.cs │ │ ├── Stk11.EngineWindowsFormsStarterLight │ │ ├── StkEngineWindowsFormsStarterLight.sln │ │ └── StkEngineWindowsFormsStarterLight │ │ │ ├── App.config │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── StkEngineWindowsFormsStarterLight.csproj │ │ ├── Stk12.EngineWindowsFormsStarter │ │ ├── OverlayToolbar │ │ │ ├── OverlayButton.cs │ │ │ ├── OverlayToolbar.cs │ │ │ ├── OverlayToolbar_VS2015.csproj │ │ │ ├── OverlayToolbar_VS2017.csproj │ │ │ ├── OverlayToolbar_VS2019.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── ToolbarImages │ │ │ │ ├── decreasedelta.png │ │ │ │ ├── home.png │ │ │ │ ├── increasedelta.png │ │ │ │ ├── invisible.png │ │ │ │ ├── moon.png │ │ │ │ ├── pan.png │ │ │ │ ├── panpressed.png │ │ │ │ ├── pause.png │ │ │ │ ├── playforward.png │ │ │ │ ├── playreverse.png │ │ │ │ ├── reset.png │ │ │ │ ├── rotate.png │ │ │ │ ├── scale.png │ │ │ │ ├── stepforward.png │ │ │ │ ├── stepreverse.png │ │ │ │ ├── visible.png │ │ │ │ ├── zoom.png │ │ │ │ └── zoompressed.png │ │ ├── StkEngineWindowsFormsStarter.sln │ │ └── StkEngineWindowsFormsStarter │ │ │ ├── App.config │ │ │ ├── CommonData.cs │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── StkEngineWindowsFormsStarter.csproj │ │ │ └── StkObjectsLibrary.cs │ │ └── Stk12.EngineWindowsFormsStarterLight │ │ ├── StkEngineWindowsFormsStarterLight.sln │ │ └── StkEngineWindowsFormsStarterLight │ │ ├── App.config │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── StkEngineWindowsFormsStarterLight.csproj ├── Java │ ├── README.md │ └── STKEngineNoGraphics │ │ ├── STKEngineNoGraphics.iml │ │ └── src │ │ ├── Main.java │ │ └── STKEngine.java ├── Kotlin │ ├── README.md │ └── Stk12.StkEngine_NoGraphics │ │ ├── Kotlin.iml │ │ └── src │ │ └── stkengine │ │ ├── Main.kt │ │ └── StkEngine.kt └── Python │ ├── PythonEngineExample.py │ └── README.md ├── StkEngineContainerization ├── linux │ ├── README.md │ ├── configuration │ │ └── licensing.env │ ├── custom-environment │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── trusted-certificates │ │ │ └── README.md │ │ └── yum-repositories │ │ │ └── README.md │ ├── stk-engine-baseline │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── distributions │ │ │ └── README.md │ │ └── docker-compose.yml │ ├── stk-engine-connect │ │ ├── Dockerfile │ │ ├── README.md │ │ └── docker-compose.yml │ ├── stk-engine-jupyter │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── docker-entrypoint.sh │ │ └── notebooks │ │ │ └── AccessExample.ipynb │ ├── stk-engine-python │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ └── docker-entrypoint.sh │ ├── stk-engine-webservice │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── access-webservice.py │ │ └── docker-compose.yml │ └── stk-parallel-computing-server │ │ ├── README.md │ │ ├── agent │ │ ├── Dockerfile │ │ └── distributions │ │ │ └── README.md │ │ ├── client_example.py │ │ ├── coordinator │ │ ├── Dockerfile │ │ └── distributions │ │ │ └── README.md │ │ ├── docker-compose.python.yml │ │ ├── docker-compose.yml │ │ └── python │ │ ├── Dockerfile │ │ └── distributions │ │ └── README.md └── windows │ ├── README.md │ ├── configuration │ └── licensing.env │ ├── custom-environment │ ├── Dockerfile │ ├── README.md │ └── docker-compose.yml │ ├── stk-engine-baseline │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ └── scripts │ │ └── install.ps1 │ ├── stk-engine-connect │ ├── Dockerfile │ ├── README.md │ └── docker-compose.yml │ ├── stk-engine-jupyter │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── docker-entrypoint.ps1 │ └── notebooks │ │ └── AccessExample.ipynb │ ├── stk-engine-python │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ └── scripts │ │ └── install.ps1 │ ├── stk-engine-webservice │ ├── Dockerfile │ ├── README.md │ ├── access-webservice.py │ └── docker-compose.yml │ └── stk-parallel-computing-server │ ├── README.md │ ├── agent │ ├── Dockerfile │ └── scripts │ │ └── install.ps1 │ ├── client_example.py │ ├── coordinator │ ├── Dockerfile │ └── scripts │ │ └── install.ps1 │ ├── docker-compose.python.yml │ ├── docker-compose.yml │ └── python │ └── Dockerfile ├── StkExtensionPlugins ├── AccessConstraints │ ├── CSharp │ │ ├── ImageDetection │ │ │ ├── AssemblyInfo.cs │ │ │ ├── IParameters.cs │ │ │ ├── ImageDetection.cs │ │ │ ├── ImageDetectionConstraintRegistration.xml │ │ │ ├── ReadMe.txt │ │ │ ├── StkAccessConstraint.ImageDetection.csproj │ │ │ └── StkAccessConstraint.ImageDetection.sln │ │ ├── ObjectDetectionExample │ │ │ └── Stk12.ObjectDetectionExample │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── IParameters.cs │ │ │ │ ├── ObjectDetection.cs │ │ │ │ ├── ObjectDetectionConstraintRegistration.xml │ │ │ │ ├── Payload │ │ │ │ ├── Payload.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── ThePayload.cs │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Stk12.AccessConstraint.ObjectDetection.csproj │ │ │ │ └── Stk12.AccessConstraint.ObjectDetection.sln │ │ ├── ReadFromFile │ │ │ └── Stk11.ReadFromFile │ │ │ │ ├── AGI.Access.Constraint.Plugin.CSharp.ReadFromFile.csproj │ │ │ │ ├── AGI.Access.Constraint.Plugin.CSharp.ReadFromFile.sln │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ExternalValue.cs │ │ │ │ ├── FileReader.cs │ │ │ │ ├── IParameters.cs │ │ │ │ └── ReadMe.txt │ │ └── SunPhaseAngleAccessConstraint │ │ │ ├── AGI.Access.Constraint.Plugin.Examples.CSharp.SunPhaseAngleExample.csproj │ │ │ ├── Access Constraints.xml │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ISunPhaseAngleExample.cs │ │ │ ├── ReadMe.txt │ │ │ ├── SunPhaseAngleConstraint.sln │ │ │ └── SunPhaseAngleExample.cs │ ├── Matlab │ │ └── Matlab_ChannelCapacity.m │ ├── Python │ │ └── COM_PY_RangeLightingConstraint.py │ └── VBScript │ │ ├── NIIRS_Constraint.vbs │ │ ├── README.md │ │ └── VB_UProp_LOS_Check.vbs ├── Astrogator.AttitudeControllers │ ├── Attitude Controls.xml │ └── WSC │ │ ├── Constant Rates Attitude Controller.xml │ │ ├── JScript.Example1.AttitudeController.js │ │ ├── JScript.Example1.AttitudeController.wsc │ │ ├── Matlab.Example1.AttitudeController.vbs │ │ ├── Matlab.Example1.AttitudeController.wsc │ │ ├── ReadMe.txt │ │ ├── VBScript.ConstantRates.AttitudeController.vbs │ │ ├── VBScript.ConstantRates.AttitudeController.wsc │ │ ├── VBScript.Example1.AttitudeController.vbs │ │ ├── VBScript.Example1.AttitudeController.wsc │ │ └── example1AttCtrl.m ├── Astrogator.EOMFunctions │ ├── EOM Plugins.xml │ ├── VB.NET │ │ └── Gen │ │ │ ├── Agi.As.EOMFunc.Plugin.VB_NET.Examples_VS2015.vbproj │ │ │ ├── Agi.As.EOMFunc.Plugin.VB_NET.Examples_VS2017.vbproj │ │ │ ├── Agi.As.EOMFunc.Plugin.VB_NET.Examples_VS2019.vbproj │ │ │ ├── AssemblyInfo.vb │ │ │ ├── IMyEOMPlugin.vb │ │ │ ├── MyEOMPlugin.vb │ │ │ └── ReadMe.txt │ └── WSC │ │ ├── JScript.Example1.EOMFunc.js │ │ ├── JScript.Example1.EOMFunc.wsc │ │ ├── ReadMe.txt │ │ ├── VBScript.Example1.EOMFunc.vbs │ │ └── VBScript.Example1.EOMFunc.wsc ├── Astrogator.EngineModels │ ├── Engine Models.xml │ └── WSC │ │ ├── Constant Rate Engine Model.xml │ │ ├── JScript.Example1.EngineModel.js │ │ ├── JScript.Example1.EngineModel.wsc │ │ ├── Matlab.Example1.EngineModel.vbs │ │ ├── Matlab.Example1.EngineModel.wsc │ │ ├── ReadMe.txt │ │ ├── VBScript.ConstantThrustRate.EngineModel.vbs │ │ ├── VBScript.ConstantThrustRate.EngineModel.wsc │ │ ├── VBScript.Example1.EngineModel.vbs │ │ ├── VBScript.Example1.EngineModel.wsc │ │ └── example1EngineModel.m ├── Astrogator.Search │ ├── Search.xml │ └── WSC │ │ ├── JScript.SearchControlRealExample.js │ │ ├── JScript.SearchControlRealExample.wsc │ │ ├── JScript.SearchExample.js │ │ ├── JScript.SearchExample.wsc │ │ ├── JScript.SearchResultExample.js │ │ ├── JScript.SearchResultExample.wsc │ │ ├── ReadMe.txt │ │ ├── VBScript.SearchControlRealExample.vbs │ │ ├── VBScript.SearchControlRealExample.wsc │ │ ├── VBScript.SearchExample.vbs │ │ ├── VBScript.SearchExample.wsc │ │ ├── VBScript.SearchResultExample.vbs │ │ └── VBScript.SearchResultExample.wsc ├── AttitudeSimulatorPlugin │ ├── DetumbleCubeSat │ │ ├── AngularVelocity(VVLH).rsg │ │ ├── Cubesat.a │ │ ├── Cubesat.sa │ │ ├── Cubesat.sa3 │ │ ├── Detumble1 STK ScenarioWB.wsp │ │ ├── Detumble1 STK ScenarioWB.wsptb │ │ ├── Detumble1.sc │ │ ├── Detumble1.sc3 │ │ ├── Detumble1TimelinePrefs.xml │ │ ├── Scripting │ │ │ └── Attitude │ │ │ │ ├── MATLAB_DetumbleTorque.m │ │ │ │ ├── PY_DetumbleTorque.py │ │ │ │ └── VB_DetumbleTorque.vbs │ │ └── cubesat.mdl │ ├── FeedbackControl │ │ ├── AttitudeRates.rsg │ │ ├── EulerAngles.rsg │ │ ├── FeedbackControl STK ScenarioWB.wsp │ │ ├── FeedbackControl STK ScenarioWB.wsptb │ │ ├── FeedbackControl.sc │ │ ├── FeedbackControl.sc3 │ │ ├── FeedbackControlTimelinePrefs.xml │ │ ├── Scripting │ │ │ └── Attitude │ │ │ │ ├── MATLAB_feedback.m │ │ │ │ ├── PY_feedback.py │ │ │ │ └── VB_feedback.vbs │ │ ├── feedback.a │ │ ├── feedback.sa │ │ └── feedback.sa3 │ ├── FeedbackControl_Targeting │ │ ├── AngularVelocity.rsg │ │ ├── AttitudeSimulator.a │ │ ├── AttitudeSimulator.sa │ │ ├── AttitudeSimulator.sa3 │ │ ├── Boston_MA.plc │ │ ├── Boston_MA.plc3 │ │ ├── Camera.sn │ │ ├── Camera.sn3 │ │ ├── Cape_Canaveral.f │ │ ├── Cape_Canaveral.f3 │ │ ├── CentralBodies │ │ │ ├── Ceres │ │ │ │ ├── Analytic_Orbit.CBOrbitModel │ │ │ │ ├── CERES18C.grv │ │ │ │ ├── CERES18D.grv │ │ │ │ ├── Ceres.cb │ │ │ │ ├── CeresAttitude2009.rot │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── Oblate_Spheroid.CBShapeModel │ │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ │ └── ZonalsToJ4.grv │ │ │ ├── Hyperion │ │ │ │ ├── Hyperion.cb │ │ │ │ ├── IAU_1994.CBSpinModel │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ │ └── ZonalsToJ4.grv │ │ │ ├── Iapetus │ │ │ │ ├── Iapetus.cb │ │ │ │ ├── IapetusAttitude2009.rot │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── Oblate_Spheroid.CBShapeModel │ │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ │ └── ZonalsToJ4.grv │ │ │ ├── Mimas │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── Mimas.cb │ │ │ │ ├── MimasAttitude2009.rot │ │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ │ └── ZonalsToJ4.grv │ │ │ ├── Phoebe │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── Phoebe.cb │ │ │ │ ├── PhoebeAttitude2006.rot │ │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ │ └── ZonalsToJ4.grv │ │ │ ├── Rhea │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── Rhea.cb │ │ │ │ ├── RheaAttitude2006.rot │ │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ │ └── ZonalsToJ4.grv │ │ │ └── Tethys │ │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ │ ├── Tethys.cb │ │ │ │ ├── TethysAttitude2009.rot │ │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ │ └── ZonalsToJ4.grv │ │ ├── Charleston_SC.plc │ │ ├── Charleston_SC.plc3 │ │ ├── EulerAngles.rsg │ │ ├── FeedbackTargetingControl STK ScenarioWB.wsp │ │ ├── FeedbackTargetingControl STK ScenarioWB.wsptb │ │ ├── FeedbackTargetingControl.SQR.flight │ │ ├── FeedbackTargetingControl.SQR.guid │ │ ├── FeedbackTargetingControl.atmosphere.flight │ │ ├── FeedbackTargetingControl.atmosphere.guid │ │ ├── FeedbackTargetingControl.mtline │ │ ├── FeedbackTargetingControl.sc │ │ ├── FeedbackTargetingControl.sc3 │ │ ├── FeedbackTargetingControl.wind.flight │ │ ├── FeedbackTargetingControl.wind.guid │ │ ├── FeedbackTargetingControlTimelinePrefs.xml │ │ ├── New_York_City_NY.plc │ │ ├── New_York_City_NY.plc3 │ │ ├── PerfectCamera.sn │ │ ├── PerfectCamera.sn3 │ │ ├── PerfectPointing.sa │ │ ├── PerfectPointing.sa3 │ │ ├── Philadelphia_PA.plc │ │ ├── Philadelphia_PA.plc3 │ │ ├── Scripting │ │ │ └── Attitude │ │ │ │ ├── MATLAB_feedbackTargeting.m │ │ │ │ ├── PY_feedbackTargeting.py │ │ │ │ └── VB_feedbackTargeting.vbs │ │ ├── Washington_DC.plc │ │ └── Washington_DC.plc3 │ ├── ReadMe.docx │ └── Tracking │ │ ├── Ar_Riyad.t │ │ ├── Ar_Riyad.t3 │ │ ├── Baghdad.f │ │ ├── Baghdad.f3 │ │ ├── CentralBodies │ │ ├── Ceres │ │ │ ├── Analytic_Orbit.CBOrbitModel │ │ │ ├── CERES18C.grv │ │ │ ├── CERES18D.grv │ │ │ ├── Ceres.cb │ │ │ ├── CeresAttitude2009.rot │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── Oblate_Spheroid.CBShapeModel │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ └── ZonalsToJ4.grv │ │ ├── Hyperion │ │ │ ├── Hyperion.cb │ │ │ ├── IAU_1994.CBSpinModel │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ └── ZonalsToJ4.grv │ │ ├── Iapetus │ │ │ ├── Iapetus.cb │ │ │ ├── IapetusAttitude2009.rot │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── Oblate_Spheroid.CBShapeModel │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ └── ZonalsToJ4.grv │ │ ├── Mimas │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── Mimas.cb │ │ │ ├── MimasAttitude2009.rot │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ └── ZonalsToJ4.grv │ │ ├── Phoebe │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── Phoebe.cb │ │ │ ├── PhoebeAttitude2006.rot │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ └── ZonalsToJ4.grv │ │ ├── Rhea │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── Rhea.cb │ │ │ ├── RheaAttitude2006.rot │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ └── ZonalsToJ4.grv │ │ └── Tethys │ │ │ ├── JPL_SPICE.CBOrbitModel │ │ │ ├── RotationCoefficientsFile.CBSpinModel │ │ │ ├── Tethys.cb │ │ │ ├── TethysAttitude2009.rot │ │ │ ├── Triaxial_Ellipsoid.CBShapeModel │ │ │ └── ZonalsToJ4.grv │ │ ├── Readme.txt │ │ ├── Reference.sa │ │ ├── Reference.sa3 │ │ ├── Scripting │ │ └── Attitude │ │ │ ├── QuatToMtx.m │ │ │ ├── buildCross.m │ │ │ ├── buildMtx.m │ │ │ ├── buildPlus.m │ │ │ ├── buildVec.m │ │ │ ├── gains.m │ │ │ ├── track.m │ │ │ └── trackt.m │ │ ├── Tracking STK ScenarioWB.wsp │ │ ├── Tracking STK ScenarioWB.wsptb │ │ ├── Tracking.SQR.flight │ │ ├── Tracking.SQR.guid │ │ ├── Tracking.atmosphere.flight │ │ ├── Tracking.atmosphere.guid │ │ ├── Tracking.sa │ │ ├── Tracking.sa3 │ │ ├── Tracking.sc │ │ ├── Tracking.sc3 │ │ ├── Tracking.wind.flight │ │ ├── Tracking.wind.guid │ │ ├── TrackingTimelinePrefs.xml │ │ ├── Tracking_kq_10.a │ │ ├── Tracking_kq_100.a │ │ ├── fov.sn │ │ ├── fov.sn3 │ │ ├── laser.sn │ │ ├── laser.sn3 │ │ ├── ref_sensor.sn │ │ ├── ref_sensor.sn3 │ │ ├── scud.mi │ │ └── scud.mi3 ├── AviatorStrategy │ ├── CSharp │ │ ├── AGI.AgFlight.BasicManeuverExamples.xml │ │ ├── BasicManeuverExamplesCSharp │ │ │ ├── Basic Maneuver Source │ │ │ │ ├── BasicManeuverStrategy3dExampleNav.cs │ │ │ │ ├── BasicManeuverStrategy3dExampleProfile.cs │ │ │ │ ├── BasicManeuverStrategyFactory3dExampleNav.cs │ │ │ │ └── BasicManeuverStrategyFactory3dExampleProfile.cs │ │ │ ├── BasicManeuverExamplesCSharp.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── CSharp.sln │ │ └── README.md │ └── Cpp │ │ ├── AGI.AgFlight.BasicManeuverExamples.xml │ │ ├── BasicManeuverExamplesCPP │ │ ├── BasicManeuverExamplesCPP.cpp │ │ ├── BasicManeuverExamplesCPP.def │ │ ├── BasicManeuverExamplesCPP.idl │ │ ├── BasicManeuverExamplesCPP.rc │ │ ├── BasicManeuverExamplesCPP.rgs │ │ ├── BasicManeuverExamplesCPP.vcxproj │ │ ├── BasicManeuverExamplesCPP.vcxproj.filters │ │ ├── BasicManeuverExamplesCPP_i.h │ │ ├── BasicManeuverExamplesCPPps.def │ │ ├── BasicManeuverStrategy3dExampleNavCPP.cpp │ │ ├── BasicManeuverStrategy3dExampleNavCPP.h │ │ ├── BasicManeuverStrategy3dExampleNavCPP.rgs │ │ ├── BasicManeuverStrategy3dExampleProfileCPP.cpp │ │ ├── BasicManeuverStrategy3dExampleProfileCPP.h │ │ ├── BasicManeuverStrategy3dExampleProfileCPP.rgs │ │ ├── BasicManeuverStrategyFactory3dExampleNavCPP.cpp │ │ ├── BasicManeuverStrategyFactory3dExampleNavCPP.h │ │ ├── BasicManeuverStrategyFactory3dExampleNavCPP.rgs │ │ ├── BasicManeuverStrategyFactory3dExampleProfileCPP.cpp │ │ ├── BasicManeuverStrategyFactory3dExampleProfileCPP.h │ │ ├── BasicManeuverStrategyFactory3dExampleProfileCPP.rgs │ │ ├── Resource.h │ │ ├── dllmain.cpp │ │ ├── dllmain.h │ │ ├── framework.h │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── targetver.h │ │ ├── Cpp.sln │ │ └── README.md ├── DensityModels │ ├── CSharp │ │ └── AGI.Density.Exponential.CSharp.Example │ │ │ ├── AGI.Density.Exponential.CSharp.Example_VS2017.csproj │ │ │ ├── AGI.Density.Exponential.CSharp.Example_VS2019.csproj │ │ │ ├── DensityExponentialExample.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadMe.txt │ │ │ └── RegisterDebug.bat │ ├── DensityModels.xml │ ├── Python │ │ └── VenusGRAMSuite_AtmosPlugin.py │ └── WSC │ │ ├── Density.Exponential.JScript.js │ │ ├── Density.Exponential.JScript.wsc │ │ ├── Density.Exponential.Perl.pl │ │ └── Density.Exponential.Perl.wsc ├── DragModels │ ├── CSharp │ │ └── AGI.Drag.Lift.CSharp.Example │ │ │ ├── AGI.Drag.Lift.CSharp.Example__VS2017.csproj │ │ │ ├── AGI.Drag.Lift.CSharp.Example__VS2019.csproj │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DragLiftExample.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadMe.txt │ │ │ └── RegisterDebug.bat │ ├── DragModels.xml │ └── WSC │ │ ├── Drag.Lift.Perl.pl │ │ ├── Drag.Lift.Perl.wsc │ │ ├── Drag.N-Plate_Cube.Perl.pl │ │ ├── Drag.N-Plate_Cube.Perl.wsc │ │ ├── Drag.Scripting.Examples.sln │ │ ├── Drag.Scripting.Examples.vcxproj │ │ ├── Drag.Spherical.Perl.pl │ │ └── Drag.Spherical.Perl.wsc ├── EphemerisFileReader │ ├── CSharp │ │ ├── AGI.EphemerisFileReader.Plugin.Examples.CSharp.Examples_VS2015.csproj │ │ ├── AGI.EphemerisFileReader.Plugin.Examples.CSharp.Examples_VS2017.csproj │ │ ├── AGI.EphemerisFileReader.Plugin.Examples.CSharp.Examples_VS2019.csproj │ │ ├── AssemblyInfo.cs │ │ ├── Example.cs │ │ └── ReadMe.txt │ ├── EphemerisFileReader.xml │ └── WSC │ │ ├── JScript.Example.EphemerisFileReader.js │ │ ├── JScript.Example.EphemerisFileReader.wsc │ │ ├── ReadMe.txt │ │ ├── VBScript.Example.EphemerisFileReader.vbs │ │ └── VBScript.Example.EphemerisFileReader.wsc ├── Graphics │ ├── CSharp │ │ ├── OpenStreetMapPlugin │ │ │ ├── OpenStreetMapPlugin.cs │ │ │ ├── OpenStreetMapPlugin_VS2015.csproj │ │ │ ├── OpenStreetMapPlugin_VS2017.csproj │ │ │ ├── OpenStreetMapPlugin_VS2019.csproj │ │ │ ├── OpenStreetMapTilePlugin.cs │ │ │ ├── OpenStreetMapTilerPlugin.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadMe.txt │ │ │ └── app.config │ │ └── ProjectionRasterStreamPlugin │ │ │ ├── GifProvider.cs │ │ │ ├── ProjectionPositionOrientation.cs │ │ │ ├── ProjectionRasterStreamPlugin.cs │ │ │ ├── ProjectionRasterStreamPlugin_VS2015.csproj │ │ │ ├── ProjectionRasterStreamPlugin_VS2017.csproj │ │ │ ├── ProjectionRasterStreamPlugin_VS2019.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── ReadMe.txt │ ├── Graphics.xml │ ├── Java │ │ ├── Common │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── ReadMe.txt │ │ │ └── common.xml │ │ ├── CustomImageGlobeOverlay │ │ │ └── OpenStreetMap │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── build.xml │ │ │ │ ├── src │ │ │ │ └── agi │ │ │ │ │ └── stk │ │ │ │ │ └── plugin │ │ │ │ │ └── graphics │ │ │ │ │ └── cigo │ │ │ │ │ └── osm │ │ │ │ │ ├── JavaExample.java │ │ │ │ │ ├── OpenStreetMapTile.java │ │ │ │ │ ├── OpenStreetMapTiler.java │ │ │ │ │ └── OpenStreetMapWebSvcClient.java │ │ │ │ └── src_test │ │ │ │ ├── ConvertToOpenGLCoordinatesTest.java │ │ │ │ ├── OpenStreetMapTileViewerTest.java │ │ │ │ └── WriteTileToFileTest.java │ │ ├── ProjectionStream │ │ │ └── Basic │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── build.xml │ │ │ │ └── src │ │ │ │ └── agi │ │ │ │ └── stk │ │ │ │ └── plugin │ │ │ │ └── graphics │ │ │ │ └── projectionstream │ │ │ │ └── basic │ │ │ │ ├── JavaExample.java │ │ │ │ └── ProjectionPositionOrientation.java │ │ ├── RasterStream │ │ │ └── Basic │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── Extend_STK_Plugin_Graphics_RasterStream_Basic_GifProviderTest.launch │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── build.xml │ │ │ │ ├── src │ │ │ │ └── agi │ │ │ │ │ └── stk │ │ │ │ │ └── plugin │ │ │ │ │ └── graphics │ │ │ │ │ └── rasterstream │ │ │ │ │ └── basic │ │ │ │ │ ├── BitmapData.java │ │ │ │ │ ├── GifProvider.java │ │ │ │ │ └── JavaExample.java │ │ │ │ └── src_test │ │ │ │ └── agi │ │ │ │ └── stk │ │ │ │ └── plugin │ │ │ │ └── graphics │ │ │ │ └── rasterstream │ │ │ │ └── basic │ │ │ │ └── test │ │ │ │ └── GifProviderTest.java │ │ └── build.xml │ └── VB.Net │ │ ├── OpenStreetMapPlugin │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── OpenStreetMapPlugin.vb │ │ ├── OpenStreetMapPlugin_VS2015.vbproj │ │ ├── OpenStreetMapPlugin_VS2017.vbproj │ │ ├── OpenStreetMapPlugin_VS2019.vbproj │ │ ├── OpenStreetMapTilePlugin.vb │ │ ├── OpenStreetMapTilerPlugin.vb │ │ └── ReadMe.txt │ │ └── ProjectionRasterStreamPlugin │ │ ├── GifProvider.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── ProjectionPositionOrientation.vb │ │ ├── ProjectionRasterStreamPlugin.vb │ │ ├── ProjectionRasterStreamPlugin_VS2015.vbproj │ │ ├── ProjectionRasterStreamPlugin_VS2017.vbproj │ │ ├── ProjectionRasterStreamPlugin_VS2019.vbproj │ │ └── ReadMe.txt ├── Hpop.ForceModels │ ├── CSharp │ │ ├── Gen │ │ │ ├── Agi.As.Hpop.Plugin.CSharp.Examples_VS2015.csproj │ │ │ ├── Agi.As.Hpop.Plugin.CSharp.Examples_VS2017.csproj │ │ │ ├── Agi.As.Hpop.Plugin.CSharp.Examples_VS2019.csproj │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Example1.cs │ │ │ ├── IExample1.cs │ │ │ └── ReadMe.txt │ │ ├── MyPlugin │ │ │ ├── AGI.HPOP.MyPlugin_VS2015.csproj │ │ │ ├── AGI.HPOP.MyPlugin_VS2017.csproj │ │ │ ├── AGI.HPOP.MyPlugin_VS2019.csproj │ │ │ ├── AssemblyInfo.cs │ │ │ ├── IMyPlugin.cs │ │ │ ├── MyPlugin.cs │ │ │ └── ReadMe.txt │ │ └── Srp │ │ │ ├── Agi.As.Hpop.FrcMdl.Srp.Plugin.CSharp.Examples_VS2015.csproj │ │ │ ├── Agi.As.Hpop.FrcMdl.Srp.Plugin.CSharp.Examples_VS2017.csproj │ │ │ ├── Agi.As.Hpop.FrcMdl.Srp.Plugin.CSharp.Examples_VS2019.csproj │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Example1.cs │ │ │ ├── IExample1.cs │ │ │ └── ReadMe.txt │ ├── Hpop Plugins.xml │ ├── VB.NET │ │ ├── Gen │ │ │ ├── Agi.As.Hpop.FrcMdl.Plugin.VB_NET.Examples_VS2015.vbproj │ │ │ ├── Agi.As.Hpop.FrcMdl.Plugin.VB_NET.Examples_VS2017.vbproj │ │ │ ├── Agi.As.Hpop.FrcMdl.Plugin.VB_NET.Examples_VS2019.vbproj │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Example1.vb │ │ │ ├── IExample1.vb │ │ │ └── ReadMe.txt │ │ └── Srp │ │ │ ├── Agi.As.Hpop.FrcMdl.Srp.Plugin.VB_NET.Examples_VS2015.vbproj │ │ │ ├── Agi.As.Hpop.FrcMdl.Srp.Plugin.VB_NET.Examples_VS2017.vbproj │ │ │ ├── Agi.As.Hpop.FrcMdl.Srp.Plugin.VB_NET.Examples_VS2019.vbproj │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Example1.vb │ │ │ ├── IExample1.vb │ │ │ └── ReadMe.txt │ └── WSC │ │ ├── JScript.Example1.Hpop.js │ │ ├── JScript.Example1.Hpop.wsc │ │ ├── Matlab.Example1.Hpop.vbs │ │ ├── Matlab.Example1.Hpop.wsc │ │ ├── MyPlugin.Hpop.JScript.js │ │ ├── MyPlugin.Hpop.Perl.pl │ │ ├── MyPlugin.Hpop.VBScript.vbs │ │ ├── MyPlugin.Hpop.wsc │ │ ├── Perl.Example1.Hpop.pl │ │ ├── Perl.Example1.Hpop.wsc │ │ ├── Perl.SRPExample1.Hpop.pl │ │ ├── Perl.SRPExample1.Hpop.wsc │ │ ├── ReadMe.txt │ │ ├── VBScript.Example1.Hpop.vbs │ │ ├── VBScript.Example1.Hpop.wsc │ │ └── example1Hpop.m ├── PluginScripts │ ├── Matlab │ │ ├── AbsorpModel.m │ │ ├── AntMultiBeamSelStrat.m │ │ ├── BeamDirectionProvider.m │ │ ├── BeamDirectionProvider_MultipleBeams.m │ │ ├── Beamformer.m │ │ ├── CommConstraint.m │ │ ├── CommSysSatSelStrat.m │ │ ├── Constraint.m │ │ ├── CustomScalar.m │ │ ├── CustomVector.m │ │ ├── DynamicDemodulator.m │ │ ├── DynamicFilter.m │ │ ├── DynamicModulator_CustomPSD.m │ │ ├── DynamicModulator_IdealPSD.m │ │ ├── GaussianAntennaGain.m │ │ ├── NullDirectionProvider.m │ │ ├── PhasedArrayAntGain.m │ │ ├── README.md │ │ ├── RadarCrossSection.m │ │ ├── RadarSARNIIRSConstraint.m │ │ ├── RadarSrchTrkConstraint.m │ │ ├── RainLossModel.m │ │ ├── ReceiverModel.m │ │ └── TransmitterModel.m │ ├── Perl │ │ ├── AbsorpModel.pl │ │ ├── AntMultiBeamSelStrat.pl │ │ ├── BeamDirectionProvider.pl │ │ ├── BeamDirectionProvider_MultipleBeams.pl │ │ ├── Beamformer.pl │ │ ├── CommConstraint.pl │ │ ├── CommSysSatSelStrat.pl │ │ ├── Constraint.pl │ │ ├── CustomScalar.pl │ │ ├── CustomVector.pl │ │ ├── DynamicDemodulator.pl │ │ ├── DynamicFilter.pl │ │ ├── DynamicModulator_CustomPSD.pl │ │ ├── DynamicModulator_IdealPSD.pl │ │ ├── EngineModel_Eval.pl │ │ ├── EngineModel_SegStart.pl │ │ ├── GaussianAntennaGain.pl │ │ ├── NullDirectionProvider.pl │ │ ├── PhasedArrayAntGain.pl │ │ ├── README.md │ │ ├── RadarCrossSection.pl │ │ ├── RadarSARNIIRSConstraint.pl │ │ ├── RadarSrchTrkConstraint.pl │ │ ├── RainLossModel.pl │ │ ├── ReceiverModel.pl │ │ └── TransmitterModel.pl │ ├── Python │ │ ├── CalcObject.py │ │ ├── Constraint.py │ │ └── README.md │ ├── README.md │ └── VbScript │ │ ├── AbsorpModel.vbs │ │ ├── AntMultiBeamSelStrat.vbs │ │ ├── BeamDirectionProvider.vbs │ │ ├── BeamDirectionProvider_MultipleBeams.vbs │ │ ├── Beamformer.vbs │ │ ├── CommConstraint.vbs │ │ ├── CommSysSatSelStrat.vbs │ │ ├── Constraint.vbs │ │ ├── CustomVector.vbs │ │ ├── DynamicDemodulator.vbs │ │ ├── DynamicFilter.vbs │ │ ├── DynamicModulator_CustomPSD.vbs │ │ ├── DynamicModulator_IdealPSD.vbs │ │ ├── GaussianAntennaGain.vbs │ │ ├── NullDirectionProvider.vbs │ │ ├── PhasedArrayAntGain.vbs │ │ ├── README.md │ │ ├── RadarCrossSection.vbs │ │ ├── RadarSARNIIRSConstraint.vbs │ │ ├── RadarSrchTrkConstraint.vbs │ │ ├── RainLossModel.vbs │ │ ├── ReceiverModel.vbs │ │ ├── TransmitterModel.vbs │ │ └── TransmitterModel_TimeDynamic.vbs ├── PostProcessing │ ├── Batch │ │ ├── README.md │ │ └── pps_simple.bat │ ├── Perl │ │ ├── README.md │ │ ├── pps_DeckAccess-SSCtoCommonName.pl │ │ ├── pps_LLAPos2GA.pl │ │ ├── pps_Ordered_Lighting_Times.pl │ │ ├── pps_TimeLLA-to-ephemeris.pl │ │ └── pps_simple.pl │ ├── Python │ │ ├── README.md │ │ └── pps_simple.py │ ├── README.md │ └── vbScript │ │ ├── AccelHist.vbs │ │ ├── AccessDurationPerDay.vbs │ │ ├── README.md │ │ └── pps_simple.vbs ├── README.md ├── RT3 │ ├── CSharp │ │ ├── AGI.Realtime.Examples.Actions │ │ │ ├── AGI.Realtime.Examples.Actions.reg │ │ │ ├── AGI.Realtime.Examples.Actions_VS2015.csproj │ │ │ ├── AGI.Realtime.Examples.Actions_VS2017.csproj │ │ │ ├── AGI.Realtime.Examples.Actions_VS2019.csproj │ │ │ ├── EmailAction.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── AGI.Realtime.Examples.Output │ │ │ ├── AGI.Realtime.Examples.Output.reg │ │ │ ├── AGI.Realtime.Examples.Output_VS2015.csproj │ │ │ ├── AGI.Realtime.Examples.Output_VS2017.csproj │ │ │ ├── AGI.Realtime.Examples.Output_VS2019.csproj │ │ │ ├── OutputEntity.Designer.cs │ │ │ ├── OutputEntity.cs │ │ │ ├── OutputEntity.resx │ │ │ ├── OutputTextFile.cs │ │ │ ├── OutputTextFileForm.Designer.cs │ │ │ ├── OutputTextFileForm.cs │ │ │ ├── OutputTextFileForm.resx │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── AGI.Realtime.Examples.Providers │ │ │ ├── AGI.Realtime.Examples.Providers.reg │ │ │ ├── AGI.Realtime.Examples.Providers_VS2015.csproj │ │ │ ├── AGI.Realtime.Examples.Providers_VS2017.csproj │ │ │ ├── AGI.Realtime.Examples.Providers_VS2019.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ProvideEntitiesFromTextFile.cs │ │ │ ├── ProvideEntitiesFromTextFileForm.Designer.cs │ │ │ ├── ProvideEntitiesFromTextFileForm.cs │ │ │ └── ProvideEntitiesFromTextFileForm.resx │ │ └── AGI.Realtime.Examples.Queries │ │ │ ├── AGI.Realtime.Examples.Queries.reg │ │ │ ├── AGI.Realtime.Examples.Queries_VS2015.csproj │ │ │ ├── AGI.Realtime.Examples.Queries_VS2017.csproj │ │ │ ├── AGI.Realtime.Examples.Queries_VS2019.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── QueryByAltitude.cs │ └── VB.NET │ │ ├── AGI.Realtime.Examples.Actions │ │ ├── AGI.Realtime.Examples.Actions.VBNet_VS2015.vbproj │ │ ├── AGI.Realtime.Examples.Actions.VBNet_VS2017.vbproj │ │ ├── AGI.Realtime.Examples.Actions.VBNet_VS2019.vbproj │ │ ├── AGI.Realtime.Examples.Actions.reg │ │ ├── EmailAction.vb │ │ └── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── AGI.Realtime.Examples.Output │ │ ├── AGI.Realtime.Examples.Output.VBNet_VS2015.vbproj │ │ ├── AGI.Realtime.Examples.Output.VBNet_VS2017.vbproj │ │ ├── AGI.Realtime.Examples.Output.VBNet_VS2019.vbproj │ │ ├── AGI.Realtime.Examples.Output.reg │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── OutputEntity.Designer.vb │ │ ├── OutputEntity.resx │ │ ├── OutputEntity.vb │ │ ├── OutputTextFile.vb │ │ ├── OutputTextFileForm.designer.vb │ │ ├── OutputTextFileForm.resx │ │ └── OutputTextFileForm.vb │ │ ├── AGI.Realtime.Examples.Providers │ │ ├── AGI.Realtime.Examples.Providers.VBNet_VS2015.vbproj │ │ ├── AGI.Realtime.Examples.Providers.VBNet_VS2017.vbproj │ │ ├── AGI.Realtime.Examples.Providers.VBNet_VS2019.vbproj │ │ ├── AGI.Realtime.Examples.Providers.reg │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── ProvideEntitiesFromTextFile.vb │ │ ├── ProvideEntitiesFromTextFileForm.Designer.vb │ │ ├── ProvideEntitiesFromTextFileForm.resx │ │ └── ProvideEntitiesFromTextFileForm.vb │ │ └── AGI.Realtime.Examples.Queries │ │ ├── AGI.Realtime.Examples.Queries.VBNet_VS2015.vbproj │ │ ├── AGI.Realtime.Examples.Queries.VBNet_VS2017.vbproj │ │ ├── AGI.Realtime.Examples.Queries.VBNet_VS2019.vbproj │ │ ├── AGI.Realtime.Examples.Queries.reg │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── QueryByAltitude.vb ├── Radar │ ├── ClutterGeometry │ │ ├── CPP │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example.cpp │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example.def │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example.idl │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example.rc │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example.rgs │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example_VS2015.vcxproj │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example_VS2017.vcxproj │ │ │ ├── Agi.Radar.ClutterGeometry.CPP.Example_VS2019.vcxproj │ │ │ ├── Example1.cpp │ │ │ ├── Example1.h │ │ │ ├── Example1.rgs │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── CSharp │ │ │ ├── Agi.Radar.ClutterGeometry.CSharp.Example_VS2015.csproj │ │ │ ├── Agi.Radar.ClutterGeometry.CSharp.Example_VS2017.csproj │ │ │ ├── Agi.Radar.ClutterGeometry.CSharp.Example_VS2019.csproj │ │ │ ├── Example1.cs │ │ │ ├── IExample1.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── ReadMe.txt │ │ └── WSC │ │ │ ├── Agi.Radar.ClutterGeometry.WSC.Example.vbs │ │ │ ├── Agi.Radar.ClutterGeometry.WSC.Example.wsc │ │ │ └── ReadMe.txt │ ├── ClutterMap │ │ ├── CPP │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example.cpp │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example.def │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example.idl │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example.rc │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example.rgs │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example_VS2015.vcxproj │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example_VS2017.vcxproj │ │ │ ├── Agi.Radar.ClutterMap.CPP.Example_VS2019.vcxproj │ │ │ ├── Example1.cpp │ │ │ ├── Example1.h │ │ │ ├── Example1.rgs │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── CSharp │ │ │ ├── Agi.Radar.ClutterMap.CSharp.Example_VS2015.csproj │ │ │ ├── Agi.Radar.ClutterMap.CSharp.Example_VS2017.csproj │ │ │ ├── Agi.Radar.ClutterMap.CSharp.Example_VS2019.csproj │ │ │ ├── Example1.cs │ │ │ ├── IExample1.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── ReadMe.txt │ │ └── WSC │ │ │ ├── Agi.Radar.ClutterMap.WSC.Example.vbs │ │ │ ├── Agi.Radar.ClutterMap.WSC.Example.wsc │ │ │ └── ReadMe.txt │ ├── RCS │ │ ├── CPP │ │ │ ├── Agi.Radar.RCS.CPP.Example.cpp │ │ │ ├── Agi.Radar.RCS.CPP.Example.def │ │ │ ├── Agi.Radar.RCS.CPP.Example.idl │ │ │ ├── Agi.Radar.RCS.CPP.Example.rc │ │ │ ├── Agi.Radar.RCS.CPP.Example.rgs │ │ │ ├── Agi.Radar.RCS.CPP.Example_VS2015.vcxproj │ │ │ ├── Agi.Radar.RCS.CPP.Example_VS2017.vcxproj │ │ │ ├── Agi.Radar.RCS.CPP.Example_VS2019.vcxproj │ │ │ ├── Example1.cpp │ │ │ ├── Example1.h │ │ │ ├── Example1.rgs │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── CSharp │ │ │ ├── Agi.Radar.RCS.CSharp.Example_VS2015.csproj │ │ │ ├── Agi.Radar.RCS.CSharp.Example_VS2017.csproj │ │ │ ├── Agi.Radar.RCS.CSharp.Example_VS2019.csproj │ │ │ ├── Example1.cs │ │ │ ├── IExample1.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── ReadMe.txt │ │ └── WSC │ │ │ ├── Agi.Radar.RCS.WSC.Example.vbs │ │ │ ├── Agi.Radar.RCS.WSC.Example.wsc │ │ │ └── ReadMe.txt │ ├── Radar Clutter Geometry Plugins.xml │ ├── Radar Clutter Map Plugins.xml │ └── Radar RCS Plugins.xml ├── SRP.LightReflection │ ├── CSharp │ │ ├── ISRP.LightReflection.Spherical.CSharp.cs │ │ ├── ReadMe.txt │ │ ├── SRP.LightReflection.Spherical.CSharp.AssemblyInfo.cs │ │ ├── SRP.LightReflection.Spherical.CSharp.Example_VS2015.csproj │ │ ├── SRP.LightReflection.Spherical.CSharp.Example_VS2017.csproj │ │ ├── SRP.LightReflection.Spherical.CSharp.Example_VS2019.csproj │ │ └── SRP.LightReflection.Spherical.CSharp.cs │ ├── SRP.LightReflection.xml │ └── WSC │ │ ├── SRP.LightReflection.Scripting.Examples.sln │ │ ├── SRP.LightReflection.Scripting.Examples.vcxproj │ │ ├── SRP.Reflection.N-Plate.2Parameter.Perl.pl │ │ ├── SRP.Reflection.N-Plate.2Parameter.Perl.wsc │ │ ├── SRP.Reflection.Spherical.Perl.pl │ │ └── SRP.Reflection.Spherical.Perl.wsc ├── Scalar │ └── CSharp │ │ └── External Data Static FOM │ │ ├── ExternalDataStaticFOM │ │ ├── ExternalDataStaticFOM.sln │ │ ├── ExternalDataStaticFOM │ │ │ ├── ExternalDataItems.cs │ │ │ ├── ExternalDataStaticFOM.csproj │ │ │ ├── ExternalFOMCalcScalar.cs │ │ │ ├── IExternalFOMCalcScalar.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── ExternalFOMScalarPlugin.xml │ │ └── README.md └── VGT.Plugins │ ├── CSharp │ ├── Axes │ │ ├── Agi.VGT.Axes.Plugin.Examples.CSharp.Example_VS2015.csproj │ │ ├── Agi.VGT.Axes.Plugin.Examples.CSharp.Example_VS2017.csproj │ │ ├── Agi.VGT.Axes.Plugin.Examples.CSharp.Example_VS2019.csproj │ │ ├── Example1.cs │ │ ├── IExample1.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── ReadMe.txt │ ├── CalcScalar │ │ ├── Agi.VGT.CalcScalar.Plugin.Examples.CSharp.Example_VS2015.csproj │ │ ├── Agi.VGT.CalcScalar.Plugin.Examples.CSharp.Example_VS2017.csproj │ │ ├── Agi.VGT.CalcScalar.Plugin.Examples.CSharp.Example_VS2019.csproj │ │ ├── Example1.cs │ │ ├── IExample1.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── ReadMe.txt │ ├── Point │ │ ├── Agi.VGT.Point.Plugin.Examples.CSharp.Example_VS2015.csproj │ │ ├── Agi.VGT.Point.Plugin.Examples.CSharp.Example_VS2017.csproj │ │ ├── Agi.VGT.Point.Plugin.Examples.CSharp.Example_VS2019.csproj │ │ ├── Example1.cs │ │ ├── IExample1.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── ReadMe.txt │ └── Vector │ │ ├── Agi.VGT.Vector.Plugin.Examples.CSharp.Example_VS2015.csproj │ │ ├── Agi.VGT.Vector.Plugin.Examples.CSharp.Example_VS2017.csproj │ │ ├── Agi.VGT.Vector.Plugin.Examples.CSharp.Example_VS2019.csproj │ │ ├── Example1.cs │ │ ├── IExample1.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ReadMe.txt │ ├── VB.NET │ ├── Axes │ │ ├── Agi.VGT.Axes.Plugin.Examples.VB_NET.Example_VS2015.vbproj │ │ ├── Agi.VGT.Axes.Plugin.Examples.VB_NET.Example_VS2017.vbproj │ │ ├── Agi.VGT.Axes.Plugin.Examples.VB_NET.Example_VS2019.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── Example1.vb │ │ ├── IExample1.vb │ │ └── ReadMe.txt │ ├── CalcScalar │ │ ├── Agi.VGT.CalcScalar.Plugin.Examples.VB_NET.Example_VS2015.vbproj │ │ ├── Agi.VGT.CalcScalar.Plugin.Examples.VB_NET.Example_VS2017.vbproj │ │ ├── Agi.VGT.CalcScalar.Plugin.Examples.VB_NET.Example_VS2019.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── Example1.vb │ │ ├── IExample1.vb │ │ └── ReadMe.txt │ ├── Point │ │ ├── Agi.VGT.Point.Plugin.Examples.VB_NET.Example_VS2015.vbproj │ │ ├── Agi.VGT.Point.Plugin.Examples.VB_NET.Example_VS2017.vbproj │ │ ├── Agi.VGT.Point.Plugin.Examples.VB_NET.Example_VS2019.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── Example1.vb │ │ ├── IExample1.vb │ │ └── ReadMe.txt │ └── Vector │ │ ├── Agi.VGT.Vector.Plugin.Examples.VB_NET_VS2015.vbproj │ │ ├── Agi.VGT.Vector.Plugin.Examples.VB_NET_VS2017.vbproj │ │ ├── Agi.VGT.Vector.Plugin.Examples.VB_NET_VS2019.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── Example1.vb │ │ ├── IExample1.vb │ │ └── ReadMe.txt │ ├── VGT Plugins.xml │ └── WSC │ ├── ReadMe.txt │ ├── VGT.Axes.JScript.Example1.js │ ├── VGT.Axes.JScript.Example1.wsc │ ├── VGT.Axes.Perl.Example1.pl │ ├── VGT.Axes.Perl.Example1.wsc │ ├── VGT.Axes.VBScript.Example1.vbs │ ├── VGT.Axes.VBScript.Example1.wsc │ ├── VGT.CalcScalar.JScript.Example1.js │ ├── VGT.CalcScalar.JScript.Example1.wsc │ ├── VGT.CalcScalar.Perl.Example1.pl │ ├── VGT.CalcScalar.Perl.Example1.wsc │ ├── VGT.CalcScalar.VBScript.Example1.vbs │ ├── VGT.CalcScalar.VBScript.Example1.wsc │ ├── VGT.Point.JScript.Example1.js │ ├── VGT.Point.JScript.Example1.wsc │ ├── VGT.Point.Perl.Example1.pl │ ├── VGT.Point.Perl.Example1.wsc │ ├── VGT.Point.VBScript.Example1.vbs │ ├── VGT.Point.VBScript.Example1.wsc │ ├── VGT.Vector.JScript.Example1.js │ ├── VGT.Vector.JScript.Example1.wsc │ ├── VGT.Vector.Perl.Example1.pl │ ├── VGT.Vector.Perl.Example1.wsc │ ├── VGT.Vector.VBScript.Example1.vbs │ └── VGT.Vector.VBScript.Example1.wsc ├── StkUiPlugins ├── CSharp │ ├── Articulations │ │ └── Stk12.UiPlugin.Articulations │ │ │ ├── Stk12.UiPlugin.Articulations.sln │ │ │ └── Stk12.UiPlugin.Articulations │ │ │ ├── AddArticForm.Designer.cs │ │ │ ├── AddArticForm.cs │ │ │ ├── AddArticForm.resx │ │ │ ├── ArticFunctions.cs │ │ │ ├── CommonData.cs │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ ├── CustomUserInterface.cs │ │ │ ├── CustomUserInterface.resx │ │ │ ├── EditArticForm.Designer.cs │ │ │ ├── EditArticForm.cs │ │ │ ├── EditArticForm.resx │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Images │ │ │ ├── Aircraft.png │ │ │ ├── Antenna.png │ │ │ ├── Building.png │ │ │ ├── CheckList.png │ │ │ ├── Clock.png │ │ │ ├── Globe.png │ │ │ ├── Home.png │ │ │ ├── Missile.png │ │ │ ├── Orbit.png │ │ │ ├── STK.ico │ │ │ ├── Satellite.png │ │ │ └── Target.png │ │ │ ├── LinkToListForm.Designer.cs │ │ │ ├── LinkToListForm.cs │ │ │ ├── LinkToListForm.resx │ │ │ ├── LinkToTimeForm.Designer.cs │ │ │ ├── LinkToTimeForm.cs │ │ │ ├── LinkToTimeForm.resx │ │ │ ├── LinkedListSection.cs │ │ │ ├── MatrixFunctions.cs │ │ │ ├── OlePictureHelper.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── Section.cs │ │ │ ├── Setup.cs │ │ │ ├── Stk12.UiPlugin.Articulations.csproj │ │ │ ├── Stk12.UiPlugin.RENAME.xml │ │ │ └── StkObjectsLibrary.cs │ ├── AstroDynUi │ │ └── Stk12.AstroDynUi │ │ │ ├── AstroDynUi.sln │ │ │ └── AstroDynUi │ │ │ ├── AstroDynUi.csproj │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ ├── CustomUserInterface.cs │ │ │ ├── CustomUserInterface.resx │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── Setup.cs │ ├── CameraControlAutomator │ │ ├── Camera Control Automator Documentation.pdf │ │ ├── CameraControlAutomator.xml │ │ └── Stk12.CameraControlAutomator │ │ │ ├── CameraControlAutomator.sln │ │ │ └── CameraControlAutomator │ │ │ ├── CameraControlAutomator.csproj │ │ │ ├── CommonData.cs │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ ├── CustomUserInterface.cs │ │ │ ├── CustomUserInterface.resx │ │ │ ├── Images │ │ │ ├── Aircraft.png │ │ │ ├── Antenna.png │ │ │ ├── Building.png │ │ │ ├── CheckList.png │ │ │ ├── Clock.png │ │ │ ├── Globe.png │ │ │ ├── Home.png │ │ │ ├── Missile.png │ │ │ ├── Orbit.png │ │ │ ├── STK.ico │ │ │ ├── Satellite.png │ │ │ └── Target.png │ │ │ ├── MatrixFunctions.cs │ │ │ ├── OlePictureHelper.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── Setup.cs │ │ │ ├── Stk11.UiPlugin.RENAME.xml │ │ │ └── StkObjectsLibrary.cs │ ├── ConstrainedAttitude │ │ └── Stk12.ConstrainedAttitude │ │ │ ├── ConstrainedAttitude.UiPlugin.sln │ │ │ └── ConstrainedAttitude.UiPlugin │ │ │ ├── CommonData.cs │ │ │ ├── ConstrainedAttitude.UiPlugin.csproj │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ ├── CustomUserInterface.cs │ │ │ ├── CustomUserInterface.resx │ │ │ ├── Images │ │ │ ├── Aircraft.png │ │ │ ├── Antenna.png │ │ │ ├── Axes.png │ │ │ ├── Building.png │ │ │ ├── CheckList.png │ │ │ ├── Clock.png │ │ │ ├── Globe.png │ │ │ ├── Home.png │ │ │ ├── Missile.png │ │ │ ├── Orbit.png │ │ │ ├── STK.ico │ │ │ ├── Satellite.png │ │ │ └── Target.png │ │ │ ├── OlePictureHelper.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── Setup.cs │ │ │ ├── Stk11.ConstrainedAttitude.UiPlugin.csproj │ │ │ ├── Stk12.UiPlugin.RENAME.xml │ │ │ ├── StkObjectsLibrary.cs │ │ │ └── UserInputs.cs │ ├── CustomFrameEphemeris │ │ └── Stk12.UiPlugin.CustomFrameEphemeris │ │ │ ├── Stk12.UiPlugin.CustomFrameEphemeris.sln │ │ │ └── Stk12.UiPlugin.CustomFrameEphemeris │ │ │ ├── CommonData.cs │ │ │ ├── EphemGenForm.Designer.cs │ │ │ ├── EphemGenForm.cs │ │ │ ├── EphemGenForm.resx │ │ │ ├── Images │ │ │ ├── Aircraft.png │ │ │ ├── Antenna.png │ │ │ ├── Building.png │ │ │ ├── CheckList.png │ │ │ ├── Clock.png │ │ │ ├── Globe.png │ │ │ ├── Home.png │ │ │ ├── Missile.png │ │ │ ├── Orbit.png │ │ │ ├── STK.ico │ │ │ ├── Satellite.png │ │ │ └── Target.png │ │ │ ├── OlePictureHelper.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── Setup.cs │ │ │ ├── Stk12.UiPlugin.CustomFrameEphemeris.csproj │ │ │ ├── Stk12.UiPlugin.CustomFrameEphemeris.xml │ │ │ └── StkObjectsLibrary.cs │ ├── DataImporter │ │ ├── Freq.csc │ │ ├── Freq.csv │ │ ├── Stk12.DataImporter │ │ │ ├── DataImporter.sln │ │ │ └── DataImporter │ │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ │ ├── CustomConfigPage.cs │ │ │ │ ├── CustomConfigPage.resx │ │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ │ ├── CustomUserInterface.cs │ │ │ │ ├── CustomUserInterface.resx │ │ │ │ ├── DataImporter.csproj │ │ │ │ ├── DataImporter.xml │ │ │ │ ├── OlePictureHelper.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── STK.ico │ │ │ │ ├── STK_backup.ico │ │ │ │ ├── STK_orig.ico │ │ │ │ ├── Setup.cs │ │ │ │ └── StkObjectsLibrary.cs │ │ ├── Test_LLA_YPR_Heading.csv │ │ └── sampleData.txt │ ├── ExternalCoverageData │ │ ├── CoverageDefinitionFromFile.ico │ │ ├── ExternalCoverageDataPlugins.md │ │ ├── ExternalCoverageDataPlugins │ │ │ ├── ExternalCoverageDataAccessPlugin │ │ │ │ ├── AGI.Access.Constraint.Plugin.ExternalCoverageData.sln │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ExternalCoverageDataAccessPlugin.csproj │ │ │ │ ├── IParameters.cs │ │ │ │ ├── LoadExternalCoverageData.RegFree.xml │ │ │ │ ├── LoadExternalCoverageData.xml │ │ │ │ └── LoadExternalDataIntoCoverage.cs │ │ │ ├── ExternalCoverageDataPlugins.sln │ │ │ └── ExternalCoverageDataUiPlugin │ │ │ │ ├── CoverageDefinitionFromFile.ico │ │ │ │ ├── CreatePntFile.cs │ │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ │ ├── CustomConfigPage.cs │ │ │ │ ├── CustomConfigPage.resx │ │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ │ ├── CustomUserInterface.cs │ │ │ │ ├── CustomUserInterface.resx │ │ │ │ ├── ExternalCoverageDataUiPlugin.sln │ │ │ │ ├── ExternalCoverageDataUiPlugin.xml │ │ │ │ ├── LoadExternalCoverageDataPlugin.cs │ │ │ │ ├── LoadExternalCoverageDataPlugin.csproj │ │ │ │ └── STK.ico │ │ └── TestData10deg.csv │ ├── FomGfxUpdater │ │ └── Stk10.UiPlugin.FomGfxUpdater │ │ │ ├── Stk10.UiPlugin.FomGfxUpdater.sln │ │ │ └── Stk10.UiPlugin.FomGfxUpdater │ │ │ ├── CoverageClass.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── STK.ico │ │ │ ├── Stk10.UiPlugin.FomGfxUpdater.csproj │ │ │ ├── Stk10.UiPlugin.FomGfxUpdater.xml │ │ │ └── StkPluginPoint.cs │ ├── GroundVehicleFromDirections │ │ └── Stk12.GroundVehicleFromDirections │ │ │ ├── Agi.Ui.Directions.csproj │ │ │ ├── Agi.Ui.Directions.sln │ │ │ ├── BasicCSharpPlugin.cs │ │ │ ├── BingMapsKey.config │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ ├── CustomUserInterface.cs │ │ │ ├── CustomUserInterface.resx │ │ │ ├── Directions.RegFree.xml │ │ │ ├── Directions.xml │ │ │ ├── DirectionsUIPlugin.png │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ └── direction64.ico │ │ │ ├── Service References │ │ │ ├── BingGeocodeService │ │ │ │ ├── Agi.Ui.Directions.BingGeocodeService.GeocodeResponse.datasource │ │ │ │ ├── Arrays.xsd │ │ │ │ ├── Reference.cs │ │ │ │ ├── Reference.svcmap │ │ │ │ ├── common.xsd │ │ │ │ ├── configuration.svcinfo │ │ │ │ ├── contracts.wsdl │ │ │ │ ├── contracts.xsd │ │ │ │ ├── geocode.wsdl │ │ │ │ ├── geocode.xsd │ │ │ │ └── service.xsd │ │ │ └── BingRouteService │ │ │ │ ├── Agi.Ui.Directions.BingRouteService.MajorRoutesResponse.datasource │ │ │ │ ├── Agi.Ui.Directions.BingRouteService.RouteResponse.datasource │ │ │ │ ├── Reference.cs │ │ │ │ ├── Reference.svcmap │ │ │ │ ├── common.xsd │ │ │ │ ├── configuration.svcinfo │ │ │ │ ├── contracts.wsdl │ │ │ │ ├── contracts.xsd │ │ │ │ ├── route.wsdl │ │ │ │ ├── route.xsd │ │ │ │ └── service.xsd │ │ │ ├── app - Copy.config │ │ │ ├── app.config │ │ │ ├── direction32.ico │ │ │ └── direction64.ico │ ├── HorizonsEphemImporter │ │ └── Stk12.UiPlugin.HorizonsEphemImporter │ │ │ ├── Stk12.UiPlugin.HorizonsEphemImporter.sln │ │ │ └── Stk12.UiPlugin.HorizonsEphemImporter │ │ │ ├── HorizonsEphemImporter.cs │ │ │ ├── ImporterGUI.Designer.cs │ │ │ ├── ImporterGUI.cs │ │ │ ├── ImporterGUI.resx │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── Stk12.UiPlugin.HorizonsEphemImporter.csproj │ ├── ModelPixelUpdater │ │ └── Stk12.UiPlugin.ModelPixelUpdater │ │ │ ├── Stk12.UiPlugin.ModelPixelUpdater.sln │ │ │ └── Stk12.UiPlugin.ModelPixelUpdater │ │ │ ├── Images │ │ │ ├── Aircraft.png │ │ │ ├── Antenna.png │ │ │ ├── Building.png │ │ │ ├── CheckList.png │ │ │ ├── Clock.png │ │ │ ├── Globe.png │ │ │ ├── Home.png │ │ │ ├── Missile.png │ │ │ ├── Orbit.png │ │ │ ├── STK.ico │ │ │ ├── Satellite.png │ │ │ └── Target.png │ │ │ ├── ModelUpdateClass.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── ScaleFactorForm.cs │ │ │ ├── ScaleFactorForm.designer.cs │ │ │ ├── ScaleFactorForm.resx │ │ │ ├── Setup.cs │ │ │ ├── Stk12.UiPlugin.ModelPixelUpdater.csproj │ │ │ ├── Stk12.UiPlugin.ModelPixelUpdater.xml │ │ │ └── StkObjectsLibrary.cs │ ├── MoveMtoTime │ │ └── Stk12.MoveMtoTime │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ ├── CustomUserInterface.cs │ │ │ ├── CustomUserInterface.resx │ │ │ ├── MTO.bmp │ │ │ ├── MoveMtoTime.cs │ │ │ ├── MoveMtoTime.csproj │ │ │ ├── MoveMtoTime.sln │ │ │ ├── MoveMtoTime.xml │ │ │ ├── OlePictureHelper.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ObjectModelTutorial │ │ ├── Stk12.UiPlugin.ObjectModelTutorial │ │ │ ├── Stk12.UiPlugin.ObjectModelTutorial.sln │ │ │ └── Stk12.UiPlugin.ObjectModelTutorial │ │ │ │ ├── CommonData.cs │ │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ │ ├── CustomConfigPage.cs │ │ │ │ ├── CustomConfigPage.resx │ │ │ │ ├── CustomUserInterface.Designer.cs │ │ │ │ ├── CustomUserInterface.cs │ │ │ │ ├── CustomUserInterface.resx │ │ │ │ ├── Images │ │ │ │ ├── Aircraft.png │ │ │ │ ├── Antenna.png │ │ │ │ ├── Building.png │ │ │ │ ├── CheckList.png │ │ │ │ ├── Clock.png │ │ │ │ ├── Globe.png │ │ │ │ ├── Home.png │ │ │ │ ├── Missile.png │ │ │ │ ├── Orbit.png │ │ │ │ ├── STK.ico │ │ │ │ ├── Satellite.png │ │ │ │ └── Target.png │ │ │ │ ├── OlePictureHelper.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── Setup.cs │ │ │ │ ├── Stk12.UiPlugin.ObjectModelTutorial.csproj │ │ │ │ ├── Stk12.UiPlugin.ObjectModelTutorial.xml │ │ │ │ ├── Stk12.UiPluginRegFree.ObjectModelTutorial.xml │ │ │ │ └── StkObjectsLibrary.cs │ │ └── UIPluginOMTutorial.JPG │ ├── OrbitTuner │ │ ├── Stk11.OrbitTuner │ │ │ ├── CSharpPlugin.cs │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── OrbitTunerUiPlugin.csproj │ │ │ ├── OrbitTunerUiPlugin.sln │ │ │ ├── OrbitTunerUiPlugin.xml │ │ │ ├── OrbitTunerUserPage.Designer.cs │ │ │ ├── OrbitTunerUserPage.cs │ │ │ ├── OrbitTunerUserPage.resx │ │ │ ├── OrbitWizard.ico │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── STK - Copy.ico │ │ │ ├── STK.Plugin.Reg.OrbitTuner.xml │ │ │ ├── STK.ico │ │ │ ├── STKHelper.cs │ │ │ └── Wizard.ico │ │ ├── Stk12.OrbitTuner │ │ │ ├── CSharpPlugin.cs │ │ │ ├── CustomConfigPage.Designer.cs │ │ │ ├── CustomConfigPage.cs │ │ │ ├── CustomConfigPage.resx │ │ │ ├── OrbitTunerUiPlugin.csproj │ │ │ ├── OrbitTunerUiPlugin.sln │ │ │ ├── OrbitTunerUiPlugin.xml │ │ │ ├── OrbitTunerUserPage.Designer.cs │ │ │ ├── OrbitTunerUserPage.cs │ │ │ ├── OrbitTunerUserPage.resx │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── STK.ico │ │ │ └── STKHelper.cs │ │ └── oirbitTunerUi.png │ ├── PlanetsToggle │ │ └── Stk10.PlanetsToggle │ │ │ ├── PlanetsToggle.xml │ │ │ ├── PlanetsToggle_10.cs │ │ │ ├── PlanetsToggle_10.csproj │ │ │ ├── PlanetsToggle_10.sln │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ └── Resources │ │ │ ├── addPlanets.png │ │ │ ├── solarButton.bmp │ │ │ ├── solarSystem.png │ │ │ ├── solarZoomButton.bmp │ │ │ └── zoomSolarSystem.png │ ├── README.md │ ├── SensorBoresightView │ │ ├── Stk10.SensorBoresightView │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Readme.txt │ │ │ ├── Ruler.ppm │ │ │ ├── Ruler2.ppm │ │ │ ├── STK.ico │ │ │ ├── Sensor.bmp │ │ │ ├── SensorBoresightView.xml │ │ │ ├── SensorBoresightViewPlugin.cs │ │ │ ├── SensorBoresightViewPlugin.csproj │ │ │ ├── SensorBoresightViewPlugin.sln │ │ │ ├── SensorViewClass.cs │ │ │ ├── SensorViewSetup.Designer.cs │ │ │ ├── SensorViewSetup.cs │ │ │ ├── SensorViewSetup.resx │ │ │ ├── boresight.bmp │ │ │ ├── boresight.ico │ │ │ ├── boresight.png │ │ │ ├── crosshairs-circular.ppm │ │ │ ├── crosshairs-grid.ppm │ │ │ └── crosshairs-square.ppm │ │ ├── Stk11.SensorBoresightView │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Readme.txt │ │ │ ├── Ruler.ppm │ │ │ ├── Ruler2.ppm │ │ │ ├── STK.ico │ │ │ ├── Sensor.bmp │ │ │ ├── SensorBoresightView.xml │ │ │ ├── SensorBoresightViewPlugin.cs │ │ │ ├── SensorBoresightViewPlugin.csproj │ │ │ ├── SensorBoresightViewPlugin.sln │ │ │ ├── SensorViewClass.cs │ │ │ ├── SensorViewSetup.Designer.cs │ │ │ ├── SensorViewSetup.cs │ │ │ ├── SensorViewSetup.resx │ │ │ ├── boresight.bmp │ │ │ ├── boresight.ico │ │ │ ├── boresight.png │ │ │ ├── crosshairs-circular.ppm │ │ │ ├── crosshairs-grid.ppm │ │ │ └── crosshairs-square.ppm │ │ └── Stk12.SensorBoresightView │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── Readme.txt │ │ │ ├── Ruler.ppm │ │ │ ├── Ruler2.ppm │ │ │ ├── STK.ico │ │ │ ├── Sensor.bmp │ │ │ ├── SensorBoresightView.xml │ │ │ ├── SensorBoresightViewPlugin.cs │ │ │ ├── SensorBoresightViewPlugin.csproj │ │ │ ├── SensorBoresightViewPlugin.sln │ │ │ ├── SensorViewClass.cs │ │ │ ├── SensorViewSetup.Designer.cs │ │ │ ├── SensorViewSetup.cs │ │ │ ├── SensorViewSetup.resx │ │ │ ├── boresight.bmp │ │ │ ├── boresight.ico │ │ │ ├── boresight.png │ │ │ ├── crosshairs-circular.ppm │ │ │ ├── crosshairs-grid.ppm │ │ │ └── crosshairs-square.ppm │ ├── SimGEN_UMTExporter │ │ ├── README.docx │ │ └── Stk12.SimGEN_UMTExporter │ │ │ ├── AGI.SimGEN_UMTExporter.sln │ │ │ └── AGI.SimGEN_UMTExporter │ │ │ ├── AGI.SimGEN_UMTExporter.csproj │ │ │ ├── AGI.SimGEN_UMTExporter.xml │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── UMTExporterPluginSetup.cs │ └── TETK_Example_UI_Plugin │ │ └── Stk12.UiPlugin.TetkExample │ │ ├── Stk12.UiPlugin.TetkExample.sln │ │ └── Stk12.UiPlugin.TetkExample │ │ ├── CommandList.cs │ │ ├── CommonData.cs │ │ ├── FilterTracksUserInterface.cs │ │ ├── FilterTracksUserInterface.designer.cs │ │ ├── FilterTracksUserInterface.resx │ │ ├── Images │ │ ├── Aircraft.png │ │ ├── Antenna.png │ │ ├── Building.png │ │ ├── CheckList.png │ │ ├── Clock.png │ │ ├── Globe.png │ │ ├── Home.png │ │ ├── Missile.png │ │ ├── Orbit.png │ │ ├── STK.ico │ │ ├── Satellite.png │ │ └── Target.png │ │ ├── LoadDataUserInterface.cs │ │ ├── LoadDataUserInterface.designer.cs │ │ ├── LoadDataUserInterface.resx │ │ ├── OlePictureHelper.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ │ ├── Setup.cs │ │ ├── Stk12.UiPlugin.RENAME.xml │ │ ├── Stk12.UiPlugin.TetkExample.csproj │ │ ├── StkObjectsLibrary.cs │ │ ├── TestConnectUserInterface.cs │ │ ├── TestConnectUserInterface.designer.cs │ │ ├── TestConnectUserInterface.resx │ │ ├── TrackComparisonUserInterface.cs │ │ ├── TrackComparisonUserInterface.designer.cs │ │ └── TrackComparisonUserInterface.resx └── VB │ ├── README.md │ └── ReentryHeatingPlugin │ ├── Reentry_Heating_Plugin_README.doc │ ├── Reentry_Heating_Plugin_README.pdf │ └── Stk12.ReentryHeatingPlugin │ ├── Agi.Ui.Plugins.VB_Net.ReentryHeating.sln │ ├── Agi.Ui.Plugins.VB_Net.ReentryHeating.vbproj │ ├── CustomConfigPage.Designer.vb │ ├── CustomConfigPage.resx │ ├── CustomConfigPage.vb │ ├── CustomUserInterface.Designer.vb │ ├── CustomUserInterface.resx │ ├── CustomUserInterface.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── ReentryHeatingPlugin.vb │ ├── ReentryHeatingPlugin_RegFree.xml │ ├── ReentryHelp.Designer.vb │ ├── ReentryHelp.resx │ ├── ReentryHelp.vb │ ├── Research_Documents │ ├── 781px-Apollo_cm.jpg │ ├── BluntBodyHeating_NASA.pdf │ └── Samareh.pdf │ ├── Resources │ ├── Apollo_Capsule.dae │ ├── Capsule_Diagram.gif │ ├── Reentry Deceleration.rsg │ ├── Reentry Deceleration.rst │ ├── Reentry.gif │ ├── ReentryDiagram.jpg │ ├── Stagnation Point Heating.rsg │ └── Stagnation Point Heating.rst │ ├── STK.ico │ ├── SpacecraftParameterHelp.Designer.vb │ ├── SpacecraftParameterHelp.resx │ └── SpacecraftParameterHelp.vb ├── SupportingScenarios ├── DynamicSenAzElMask.zip ├── EOIR_Clouds_AirToAir.vdf ├── MarsSatSTM.vdf ├── NetworkExampleScenarios.zip ├── QuiverExample.vdf ├── SimulinkAttitudeControlLoop.zip ├── SingaporeLOSplugin.zip └── TransponderLB.vdf └── icons ├── AGI-Logo_2C-K.svg ├── AGI-Logo_2C-W.svg ├── STK-on-black.svg └── STK-on-white.svg /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/README.md -------------------------------------------------------------------------------- /StkAutomation/CSharp/General_Utilities/GetObjectsByType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/CSharp/General_Utilities/GetObjectsByType.cs -------------------------------------------------------------------------------- /StkAutomation/CSharp/General_Utilities/GetSegmentsByType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/CSharp/General_Utilities/GetSegmentsByType.cs -------------------------------------------------------------------------------- /StkAutomation/CSharp/General_Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/CSharp/General_Utilities/README.md -------------------------------------------------------------------------------- /StkAutomation/CSharp/Problem_Specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/CSharp/Problem_Specific/README.md -------------------------------------------------------------------------------- /StkAutomation/CSharp/Problem_Specific/XPlaneUDPToSTK12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/CSharp/Problem_Specific/XPlaneUDPToSTK12/README.md -------------------------------------------------------------------------------- /StkAutomation/CSharp/Problem_Specific/XPlaneUDPToSTK12/XPlaneUDPToSTK12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/CSharp/Problem_Specific/XPlaneUDPToSTK12/XPlaneUDPToSTK12.sln -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/APIDemo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/APIDemo.htm -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/ConFile Utility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/ConFile Utility.html -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/Data Read.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/Data Read.htm -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/ExternalEphemerisToMto.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/ExternalEphemerisToMto.htm -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/One-Step Graphics Settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/One-Step Graphics Settings.htm -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/README.md -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/RealTime.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/RealTime.htm -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/SGP4toJ4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/SGP4toJ4.html -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/AGILogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/AGILogo.png -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/StkKmlExporter.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/StkKmlExporter.htm -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/gelogoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/gelogoicon.gif -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/leaf.gif -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/legend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/legend.gif -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/minus.gif -------------------------------------------------------------------------------- /StkAutomation/Html/General_Utilities/StkKmlExporter/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/General_Utilities/StkKmlExporter/plus.gif -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/CameraPathZoom.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/CameraPathZoom.htm -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ExplodeSatellite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ExplodeSatellite.html -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/MTO Track Generator/TrackGen.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/MTO Track Generator/TrackGen.htm -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/MTO Track Generator/US ATS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/MTO Track Generator/US ATS.csv -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/MultiSat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/MultiSat.htm -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/README.md -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/RectangularSensorCornerPoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/RectangularSensorCornerPoints.html -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a1.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a2.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a3.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/a4.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b1.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b2.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b3.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/b4.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/ScanningSensor_Utility/images/info.bmp -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/SimGen_UMT_Exporter/createUMT_MOT.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/SimGen_UMT_Exporter/createUMT_MOT.htm -------------------------------------------------------------------------------- /StkAutomation/Html/Problem_Specific/VectorCB_Intersect_GroundVehicle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Problem_Specific/VectorCB_Intersect_GroundVehicle.html -------------------------------------------------------------------------------- /StkAutomation/Html/Scenario_Analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Html/Scenario_Analysis/README.md -------------------------------------------------------------------------------- /StkAutomation/Java/Scenario_Building/BasicAccess/BasicAccess.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Java/Scenario_Building/BasicAccess/BasicAccess.iml -------------------------------------------------------------------------------- /StkAutomation/Java/Scenario_Building/BasicAccess/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Java/Scenario_Building/BasicAccess/src/Main.java -------------------------------------------------------------------------------- /StkAutomation/Java/Scenario_Building/BasicAccess/src/StkExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Java/Scenario_Building/BasicAccess/src/StkExample.java -------------------------------------------------------------------------------- /StkAutomation/Java/Scenario_Building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Java/Scenario_Building/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/Clutter Simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/Clutter Simulator/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/Clutter Simulator/create_star_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/Clutter Simulator/create_star_info.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/Clutter Simulator/create_star_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/Clutter Simulator/create_star_map.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/Clutter Simulator/mouse_figure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/Clutter Simulator/mouse_figure.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/Clutter Simulator/trim_or_pad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/Clutter Simulator/trim_or_pad.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/FOMDataPrv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/FOMDataPrv.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/FilterSegmentsByType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/FilterSegmentsByType.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/Normalize_EOIR_Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/Normalize_EOIR_Images/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/StkHelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/StkHelp.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/convertTleState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/convertTleState.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/createCommSystemPointingIntervals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/createCommSystemPointingIntervals.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/createEphemerisFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/createEphemerisFile.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/filterObjectsByType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/filterObjectsByType.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/generateSensorPointingFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/generateSensorPointingFile.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/getAllObjectHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/getAllObjectHandles.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/getDCM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/getDCM.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/intervalListFromTimeArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/intervalListFromTimeArray.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/makeEllipticalSensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/makeEllipticalSensor.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/persistentAccessLines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/persistentAccessLines.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/printRootEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/printRootEvents.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/pullDataProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/pullDataProvider.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/pushSat2STK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/pushSat2STK.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/rgb2StkColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/rgb2StkColor.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/General_Utilities/vgtImporterExporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/General_Utilities/vgtImporterExporter.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/AST_output_Acceleration_Data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/AST_output_Acceleration_Data.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/AttitudeUsingAScheduledVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/AttitudeUsingAScheduledVector.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/ChangeSTMComponents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/ChangeSTMComponents.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/ClosestGrazingAngle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/ClosestGrazingAngle.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/ConstrainSatelliteAttitude.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/ConstrainSatelliteAttitude.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/ConvertAERtoLLA/ConvertAERtoLLA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/ConvertAERtoLLA/ConvertAERtoLLA.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/ConvertAERtoLLA/MOTR-To-GSLV-AER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/ConvertAERtoLLA/MOTR-To-GSLV-AER.csv -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/Create3DCoverageFromAreaTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/Create3DCoverageFromAreaTarget.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/DebrisModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/DebrisModel.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/DynamicSensorMask/GetSensorAzElMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/DynamicSensorMask/GetSensorAzElMask.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/DynamicSensorMask/SetSensorAzElMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/DynamicSensorMask/SetSensorAzElMask.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/EOIRTextureMaps/H5TexMap.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/EOIRTextureMaps/H5TexMap.mlx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/EOIRTextureMaps/HDF4TexMap.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/EOIRTextureMaps/HDF4TexMap.mlx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/High_Altitude_Balloon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/High_Altitude_Balloon.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/LambertSolver_EarthToMars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/LambertSolver_EarthToMars.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/LinkBudgetLLA/LinkBudgetLatLonChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/LinkBudgetLLA/LinkBudgetLatLonChain.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SatelliteMonteCarlo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SatelliteMonteCarlo.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAccess/AGI-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAccess/AGI-Logo.png -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAccess/InitFcn_TestCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAccess/InitFcn_TestCode.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAccess/ReadMe.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAccess/ReadMe.docx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAccess/SimulinkAccess.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAccess/SimulinkAccess.slx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAttitudeFile/Gyroscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAttitudeFile/Gyroscope.png -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAttitudeFile/Readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAttitudeFile/Readme.docx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SimulinkAttitudeFile/Satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SimulinkAttitudeFile/Satellite.png -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/SolarEnergySimulink/SolarEnergy.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/SolarEnergySimulink/SolarEnergy.slx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/TETK_Automation_Tutorial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/TETK_Automation_Tutorial.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/TETK_SatisfactionIntervalsExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/TETK_SatisfactionIntervalsExample.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/TLE_Deorbit_Estimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/TLE_Deorbit_Estimation.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/advcatTradeStudy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/advcatTradeStudy.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/coverageAccumPercent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/coverageAccumPercent.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/multiSegmentAttitude.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/multiSegmentAttitude.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/satStepWiseTracking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/satStepWiseTracking.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Problem_Specific/sensorPointingAndAER.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Problem_Specific/sensorPointingAndAER.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/AccessByMetric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/AccessByMetric.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/CoverageGridInspectorAutomate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/CoverageGridInspectorAutomate.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/CreateGrazingAngle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/CreateGrazingAngle.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/accessAtEveryCoveragePoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/accessAtEveryCoveragePoint.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/addArrowsAlongPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/addArrowsAlongPath.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/astgCheckPassiveSafety.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/astgCheckPassiveSafety.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/astgVisualizeDeltaVVectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/astgVisualizeDeltaVVectors.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/automateLifetimeTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/automateLifetimeTool.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/coverageDurationPerDay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/coverageDurationPerDay.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/getEOIRSensorLLA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/getEOIRSensorLLA.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/quiverPlotRelativeGroundVelocity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/quiverPlotRelativeGroundVelocity.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/regroupByAsset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/regroupByAsset.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Analysis/valueByGridPointAtTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Analysis/valueByGridPointAtTime.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/Analysis_Workbench_Components.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/Analysis_Workbench_Components.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/AstrogatorAPI_Training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/AstrogatorAPI_Training/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/Aviator_ObjectModel_CarrierLanding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/Aviator_ObjectModel_CarrierLanding.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/FigureEight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/FigureEight.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/FigureEightCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/FigureEightCircle.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/ImportAreaTarget/ImportAreaTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/ImportAreaTarget/ImportAreaTarget.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/ImportAreaTarget/USA.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/ImportAreaTarget/USA.xlsx -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/ImportFacilities/ImportFacilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/ImportFacilities/ImportFacilities.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/MissilePropagation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/MissilePropagation.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/MultiSegmentAttitude.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/MultiSegmentAttitude.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/MultiSegmentAttitudeLoop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/MultiSegmentAttitudeLoop.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/ObjectLines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/ObjectLines.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/ObjectModelTutorial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/ObjectModelTutorial.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/PNT_and_Object_Coverage_Automation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/PNT_and_Object_Coverage_Automation.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/RealTimePropagation/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/RealTimePropagation/ReadMe.txt -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/SensorSweepSOLIS/Bearing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/SensorSweepSOLIS/Bearing.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/SensorSweepSOLIS/GenerateScan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/SensorSweepSOLIS/GenerateScan.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/SensorSweepSOLIS/SensorSweepSOLIS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/SensorSweepSOLIS/SensorSweepSOLIS.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/SimpleSimulinkExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/SimpleSimulinkExample/README.md -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/SimpleSimulinkExample/initFcn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/SimpleSimulinkExample/initFcn.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/astgSlewToManeuvers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/astgSlewToManeuvers.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/chainAutomationExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/chainAutomationExample.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/makeEllipticalSensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/makeEllipticalSensor.m -------------------------------------------------------------------------------- /StkAutomation/Matlab/Scenario_Building/solisCreateSequenceFromAccess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Matlab/Scenario_Building/solisCreateSequenceFromAccess.m -------------------------------------------------------------------------------- /StkAutomation/Perl/Problem_Specific/TETK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Perl/Problem_Specific/TETK/README.md -------------------------------------------------------------------------------- /StkAutomation/Perl/Problem_Specific/TETK/STK_TE_Automation_Tutorial.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Perl/Problem_Specific/TETK/STK_TE_Automation_Tutorial.pl -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/AnalyzerPlots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/AnalyzerPlots/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/AnalyzerPlots/data1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/AnalyzerPlots/data1.csv -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/AnalyzerPlots/data2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/AnalyzerPlots/data2.csv -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/AnalyzerPlots/data3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/AnalyzerPlots/data3.csv -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/CombineEphemeris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/CombineEphemeris.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/CustomAdjacentSatRouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/CustomAdjacentSatRouting.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/FilterObjectsByType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/FilterObjectsByType.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/HFSS_RCS_Complex_Export_AEDTLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/HFSS_RCS_Complex_Export_AEDTLib.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/ImportFacilities/ImportFacilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/ImportFacilities/ImportFacilities.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/KmlToStkEphemeris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/KmlToStkEphemeris.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/LatLonGridProjection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/LatLonGridProjection.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/OneStepGraphicsSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/OneStepGraphicsSettings.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/convertTleState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/convertTleState.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/eventSub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/eventSub.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/getAllObjectHandles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/getAllObjectHandles.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/stkMetaDataExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/stkMetaDataExtractor.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/stkSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/stkSocket.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/sunObscuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/sunObscuration.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/writeComplexBistaticRCS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/writeComplexBistaticRCS.py -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/writeCsvToPg/LLA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/writeCsvToPg/LLA.csv -------------------------------------------------------------------------------- /StkAutomation/Python/General_Utilities/writeCsvToPg/writeCsvToPg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/General_Utilities/writeCsvToPg/writeCsvToPg.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/AnnotationsOnAVehicle2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/AnnotationsOnAVehicle2D.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/ChainTimingDelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/ChainTimingDelay.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/ConstellationWizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/ConstellationWizard/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/DeckAccess/DeckAccess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/DeckAccess/DeckAccess.ipynb -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/DeckAccess/DeckAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/DeckAccess/DeckAccess.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/DeckAccess/DeckAccessReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/DeckAccess/DeckAccessReader.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/DutyCycleMultiSat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/DutyCycleMultiSat.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/EOIRTextureMaps/H5TexMap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/EOIRTextureMaps/H5TexMap.ipynb -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/EOIRTextureMaps/HDF4TexMap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/EOIRTextureMaps/HDF4TexMap.ipynb -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/EOIRTrackingInTheLoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/EOIRTrackingInTheLoop/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/EditIntervalFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/EditIntervalFile.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/ExternalWindModel/HWM93STKpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/ExternalWindModel/HWM93STKpy.ipynb -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/ExternalWindModel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/ExternalWindModel/readme.md -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LKtoFFDConverter/ConvertLKtoFFD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LKtoFFDConverter/ConvertLKtoFFD.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LKtoFFDConverter/GenerateTestLK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LKtoFFDConverter/GenerateTestLK.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LKtoFFDConverter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LKtoFFDConverter/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LoadCDMs/AddSatellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LoadCDMs/AddSatellite.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LoadCDMs/LoadCDM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LoadCDMs/LoadCDM.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LoadCDMs/ParseCdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LoadCDMs/ParseCdm.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/LoadCDMs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/LoadCDMs/readme.md -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/PrimaryAreaTargetOnly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/PrimaryAreaTargetOnly.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/RPOSimulatorGame/RPOSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/RPOSimulatorGame/RPOSim.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/createCovariancePoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/createCovariancePoints.py -------------------------------------------------------------------------------- /StkAutomation/Python/Problem_Specific/solisRealtimeExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Problem_Specific/solisRealtimeExample.py -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/.vscode/settings.json -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/ForceComparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/ForceComparison.py -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/Lifetime Analysis/GEODecay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/Lifetime Analysis/GEODecay.gif -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/Lifetime Analysis/LifeTimeLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/Lifetime Analysis/LifeTimeLib.py -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/Lifetime Analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/Lifetime Analysis/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Analysis/Volumetric_Percent_Satisfied.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Analysis/Volumetric_Percent_Satisfied.py -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Building/AstrogatorObjectModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Building/AstrogatorObjectModel/README.md -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Building/PythonAPI12.2_Demo/cessna_206.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Building/PythonAPI12.2_Demo/cessna_206.glb -------------------------------------------------------------------------------- /StkAutomation/Python/Scenario_Building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/Python/Scenario_Building/README.md -------------------------------------------------------------------------------- /StkAutomation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/README.md -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/AttitudeEuler.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/AttitudeEuler.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/AttitudeYPR.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/AttitudeYPR.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/AviatorWaypointsConnect.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/AviatorWaypointsConnect.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/CovDP_PlusComments.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/CovDP_PlusComments.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/README.md -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/STK_Excel.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/STK_Excel.xlsm -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/TerrainConverter/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/TerrainConverter/Form1.resx -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/TerrainConverter/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/TerrainConverter/Form1.vb -------------------------------------------------------------------------------- /StkAutomation/VbScript/General_Utilities/TerrainConverter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/General_Utilities/TerrainConverter/app.config -------------------------------------------------------------------------------- /StkAutomation/VbScript/Problem_Specific/AdvCatAutomation.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Problem_Specific/AdvCatAutomation.xlsm -------------------------------------------------------------------------------- /StkAutomation/VbScript/Problem_Specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Problem_Specific/README.md -------------------------------------------------------------------------------- /StkAutomation/VbScript/Problem_Specific/dataProviderToScalarFile.VBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Problem_Specific/dataProviderToScalarFile.VBS -------------------------------------------------------------------------------- /StkAutomation/VbScript/Problem_Specific/panorama.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Problem_Specific/panorama.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Analysis/AdvCatAutomation.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Analysis/AdvCatAutomation.xlsm -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Analysis/CATS Angle Analysis Tool.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Analysis/CATS Angle Analysis Tool.xlsm -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Analysis/README.md -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Building/AviatorConnect.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Building/AviatorConnect.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Building/COES_TLE_Reader.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Building/COES_TLE_Reader.xlsm -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Building/CreateNewSTKApplication.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Building/CreateNewSTKApplication.vbs -------------------------------------------------------------------------------- /StkAutomation/VbScript/Scenario_Building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkAutomation/VbScript/Scenario_Building/README.md -------------------------------------------------------------------------------- /StkEngineApplications/CSharp/OrbitSwitcher/OrbitSwitcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/CSharp/OrbitSwitcher/OrbitSwitcher.sln -------------------------------------------------------------------------------- /StkEngineApplications/CSharp/OrbitSwitcher/OrbitSwitcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/CSharp/OrbitSwitcher/OrbitSwitcher/Program.cs -------------------------------------------------------------------------------- /StkEngineApplications/CSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/CSharp/README.md -------------------------------------------------------------------------------- /StkEngineApplications/CSharp/StkMetaDataExtractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/CSharp/StkMetaDataExtractor/README.md -------------------------------------------------------------------------------- /StkEngineApplications/Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Java/README.md -------------------------------------------------------------------------------- /StkEngineApplications/Java/STKEngineNoGraphics/STKEngineNoGraphics.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Java/STKEngineNoGraphics/STKEngineNoGraphics.iml -------------------------------------------------------------------------------- /StkEngineApplications/Java/STKEngineNoGraphics/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Java/STKEngineNoGraphics/src/Main.java -------------------------------------------------------------------------------- /StkEngineApplications/Java/STKEngineNoGraphics/src/STKEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Java/STKEngineNoGraphics/src/STKEngine.java -------------------------------------------------------------------------------- /StkEngineApplications/Kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Kotlin/README.md -------------------------------------------------------------------------------- /StkEngineApplications/Kotlin/Stk12.StkEngine_NoGraphics/Kotlin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Kotlin/Stk12.StkEngine_NoGraphics/Kotlin.iml -------------------------------------------------------------------------------- /StkEngineApplications/Python/PythonEngineExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Python/PythonEngineExample.py -------------------------------------------------------------------------------- /StkEngineApplications/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineApplications/Python/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/configuration/licensing.env: -------------------------------------------------------------------------------- 1 | ANSYSLMD_LICENSE_FILE=<>@<> -------------------------------------------------------------------------------- /StkEngineContainerization/linux/custom-environment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/custom-environment/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/linux/custom-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/custom-environment/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/custom-environment/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/custom-environment/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-baseline/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-baseline/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-baseline/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-baseline/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-baseline/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-connect/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-connect/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-connect/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-connect/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-connect/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-jupyter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-jupyter/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-jupyter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-jupyter/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-jupyter/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-jupyter/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-jupyter/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-jupyter/docker-entrypoint.sh -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-python/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-python/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-python/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-python/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-python/docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python3 3 | -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-webservice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-webservice/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-webservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-webservice/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-engine-webservice/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-engine-webservice/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-parallel-computing-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/linux/stk-parallel-computing-server/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-parallel-computing-server/agent/distributions/README.md: -------------------------------------------------------------------------------- 1 | Copy the `STK_Parallel_Computing_Agent${version}.tgz` to this folder. -------------------------------------------------------------------------------- /StkEngineContainerization/linux/stk-parallel-computing-server/python/distributions/README.md: -------------------------------------------------------------------------------- 1 | Copy the `agiparallel-${version}-py3-none-any.whl` to this folder. -------------------------------------------------------------------------------- /StkEngineContainerization/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/windows/configuration/licensing.env: -------------------------------------------------------------------------------- 1 | ANSYSLMD_LICENSE_FILE=<>@<> 2 | -------------------------------------------------------------------------------- /StkEngineContainerization/windows/custom-environment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/custom-environment/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/windows/custom-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/custom-environment/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/windows/custom-environment/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/custom-environment/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-baseline/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-baseline/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-baseline/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-baseline/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-baseline/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-connect/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-connect/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-connect/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-connect/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-connect/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-jupyter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-jupyter/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-jupyter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-jupyter/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-jupyter/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-jupyter/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-python/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-python/README.md -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-python/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-python/docker-compose.yml -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-python/scripts/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-python/scripts/install.ps1 -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-webservice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-webservice/Dockerfile -------------------------------------------------------------------------------- /StkEngineContainerization/windows/stk-engine-webservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkEngineContainerization/windows/stk-engine-webservice/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/AccessConstraints/CSharp/ImageDetection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AccessConstraints/CSharp/ImageDetection/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/AccessConstraints/Matlab/Matlab_ChannelCapacity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AccessConstraints/Matlab/Matlab_ChannelCapacity.m -------------------------------------------------------------------------------- /StkExtensionPlugins/AccessConstraints/VBScript/NIIRS_Constraint.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AccessConstraints/VBScript/NIIRS_Constraint.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/AccessConstraints/VBScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AccessConstraints/VBScript/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/AccessConstraints/VBScript/VB_UProp_LOS_Check.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AccessConstraints/VBScript/VB_UProp_LOS_Check.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.AttitudeControllers/Attitude Controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.AttitudeControllers/Attitude Controls.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.AttitudeControllers/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.AttitudeControllers/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.AttitudeControllers/WSC/example1AttCtrl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.AttitudeControllers/WSC/example1AttCtrl.m -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EOMFunctions/EOM Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EOMFunctions/EOM Plugins.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/IMyEOMPlugin.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/IMyEOMPlugin.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/MyEOMPlugin.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/MyEOMPlugin.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EOMFunctions/VB.NET/Gen/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EOMFunctions/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EOMFunctions/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EngineModels/Engine Models.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EngineModels/Engine Models.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EngineModels/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EngineModels/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.EngineModels/WSC/example1EngineModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.EngineModels/WSC/example1EngineModel.m -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/Search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/Search.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/WSC/JScript.SearchExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/WSC/JScript.SearchExample.js -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/WSC/JScript.SearchExample.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/WSC/JScript.SearchExample.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/WSC/JScript.SearchResultExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/WSC/JScript.SearchResultExample.js -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/WSC/VBScript.SearchExample.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/WSC/VBScript.SearchExample.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/Astrogator.Search/WSC/VBScript.SearchExample.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Astrogator.Search/WSC/VBScript.SearchExample.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Cubesat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Cubesat.a -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Cubesat.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Cubesat.sa -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Cubesat.sa3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Cubesat.sa3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Detumble1.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/Detumble1.sc -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/cubesat.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/DetumbleCubeSat/cubesat.mdl -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/FeedbackControl/feedback.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/FeedbackControl/feedback.a -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/FeedbackControl/feedback.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/FeedbackControl/feedback.sa -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/FeedbackControl/feedback.sa3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/FeedbackControl/feedback.sa3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/ReadMe.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/ReadMe.docx -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Ar_Riyad.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Ar_Riyad.t -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Ar_Riyad.t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Ar_Riyad.t3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Baghdad.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Baghdad.f -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Baghdad.f3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Baghdad.f3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Readme.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Reference.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Reference.sa -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Reference.sa3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Reference.sa3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.SQR.flight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.SQR.flight -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.SQR.guid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.SQR.guid -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sa -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sa3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sa3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sc -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.sc3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.wind.guid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking.wind.guid -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking_kq_10.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking_kq_10.a -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking_kq_100.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/Tracking_kq_100.a -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/fov.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/fov.sn -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/fov.sn3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/fov.sn3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/laser.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/laser.sn -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/laser.sn3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/laser.sn3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/ref_sensor.sn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/ref_sensor.sn -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/ref_sensor.sn3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/ref_sensor.sn3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/scud.mi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/scud.mi -------------------------------------------------------------------------------- /StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/scud.mi3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AttitudeSimulatorPlugin/Tracking/scud.mi3 -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/CSharp/CSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AviatorStrategy/CSharp/CSharp.sln -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/CSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AviatorStrategy/CSharp/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/Cpp/BasicManeuverExamplesCPP/BasicManeuverExamplesCPP.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/Cpp/BasicManeuverExamplesCPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AviatorStrategy/Cpp/BasicManeuverExamplesCPP/pch.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/Cpp/BasicManeuverExamplesCPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AviatorStrategy/Cpp/BasicManeuverExamplesCPP/pch.h -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/Cpp/Cpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AviatorStrategy/Cpp/Cpp.sln -------------------------------------------------------------------------------- /StkExtensionPlugins/AviatorStrategy/Cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/AviatorStrategy/Cpp/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/DensityModels/DensityModels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DensityModels/DensityModels.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/DensityModels/Python/VenusGRAMSuite_AtmosPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DensityModels/Python/VenusGRAMSuite_AtmosPlugin.py -------------------------------------------------------------------------------- /StkExtensionPlugins/DensityModels/WSC/Density.Exponential.JScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DensityModels/WSC/Density.Exponential.JScript.js -------------------------------------------------------------------------------- /StkExtensionPlugins/DensityModels/WSC/Density.Exponential.JScript.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DensityModels/WSC/Density.Exponential.JScript.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/DensityModels/WSC/Density.Exponential.Perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DensityModels/WSC/Density.Exponential.Perl.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/DensityModels/WSC/Density.Exponential.Perl.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DensityModels/WSC/Density.Exponential.Perl.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/DragModels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/DragModels.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.Lift.Perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.Lift.Perl.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.Lift.Perl.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.Lift.Perl.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.N-Plate_Cube.Perl.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.Scripting.Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.Scripting.Examples.sln -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.Scripting.Examples.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.Scripting.Examples.vcxproj -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.Spherical.Perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.Spherical.Perl.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/DragModels/WSC/Drag.Spherical.Perl.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/DragModels/WSC/Drag.Spherical.Perl.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/EphemerisFileReader/CSharp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/EphemerisFileReader/CSharp/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/EphemerisFileReader/CSharp/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/EphemerisFileReader/CSharp/Example.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/EphemerisFileReader/CSharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/EphemerisFileReader/CSharp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/EphemerisFileReader/EphemerisFileReader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/EphemerisFileReader/EphemerisFileReader.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/EphemerisFileReader/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/EphemerisFileReader/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/CSharp/OpenStreetMapPlugin/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/CSharp/OpenStreetMapPlugin/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/CSharp/OpenStreetMapPlugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/CSharp/OpenStreetMapPlugin/app.config -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Graphics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Graphics.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/Common/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/Common/.classpath -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/Common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/Common/.project -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/Common/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/Common/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/Common/common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/Common/common.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/.classpath -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/.project -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/ProjectionStream/Basic/build.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/RasterStream/Basic/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/RasterStream/Basic/.classpath -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/RasterStream/Basic/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/RasterStream/Basic/.project -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/RasterStream/Basic/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/RasterStream/Basic/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/RasterStream/Basic/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/RasterStream/Basic/build.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/Java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/Java/build.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Graphics/VB.Net/OpenStreetMapPlugin/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Graphics/VB.Net/OpenStreetMapPlugin/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Gen/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/IMyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/IMyPlugin.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/MyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/MyPlugin.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/MyPlugin/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/CSharp/Srp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/Hpop Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/Hpop Plugins.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/Example1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/Example1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/IExample1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/IExample1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Gen/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/Example1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/Example1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/IExample1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/IExample1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/VB.NET/Srp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/JScript.Example1.Hpop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/JScript.Example1.Hpop.js -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/JScript.Example1.Hpop.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/JScript.Example1.Hpop.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/Matlab.Example1.Hpop.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/Matlab.Example1.Hpop.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/Matlab.Example1.Hpop.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/Matlab.Example1.Hpop.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.JScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.JScript.js -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.Perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.Perl.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.VBScript.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.VBScript.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/MyPlugin.Hpop.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.Example1.Hpop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.Example1.Hpop.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.Example1.Hpop.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.Example1.Hpop.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.SRPExample1.Hpop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.SRPExample1.Hpop.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.SRPExample1.Hpop.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/Perl.SRPExample1.Hpop.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/VBScript.Example1.Hpop.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/VBScript.Example1.Hpop.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/VBScript.Example1.Hpop.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/VBScript.Example1.Hpop.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Hpop.ForceModels/WSC/example1Hpop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Hpop.ForceModels/WSC/example1Hpop.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/AbsorpModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/AbsorpModel.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/AntMultiBeamSelStrat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/AntMultiBeamSelStrat.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/BeamDirectionProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/BeamDirectionProvider.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/Beamformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/Beamformer.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/CommConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/CommConstraint.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/CommSysSatSelStrat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/CommSysSatSelStrat.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/Constraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/Constraint.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/CustomScalar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/CustomScalar.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/CustomVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/CustomVector.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/DynamicDemodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/DynamicDemodulator.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/DynamicFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/DynamicFilter.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/DynamicModulator_CustomPSD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/DynamicModulator_CustomPSD.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/DynamicModulator_IdealPSD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/DynamicModulator_IdealPSD.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/GaussianAntennaGain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/GaussianAntennaGain.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/NullDirectionProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/NullDirectionProvider.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/PhasedArrayAntGain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/PhasedArrayAntGain.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/RadarCrossSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/RadarCrossSection.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/RadarSARNIIRSConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/RadarSARNIIRSConstraint.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/RadarSrchTrkConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/RadarSrchTrkConstraint.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/RainLossModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/RainLossModel.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/ReceiverModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/ReceiverModel.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Matlab/TransmitterModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Matlab/TransmitterModel.m -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/AbsorpModel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/AbsorpModel.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/AntMultiBeamSelStrat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/AntMultiBeamSelStrat.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/BeamDirectionProvider.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/BeamDirectionProvider.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/Beamformer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/Beamformer.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/CommConstraint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/CommConstraint.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/CommSysSatSelStrat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/CommSysSatSelStrat.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/Constraint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/Constraint.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/CustomScalar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/CustomScalar.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/CustomVector.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/CustomVector.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/DynamicDemodulator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/DynamicDemodulator.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/DynamicFilter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/DynamicFilter.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/DynamicModulator_CustomPSD.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/DynamicModulator_CustomPSD.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/DynamicModulator_IdealPSD.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/DynamicModulator_IdealPSD.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/EngineModel_Eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/EngineModel_Eval.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/EngineModel_SegStart.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/EngineModel_SegStart.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/GaussianAntennaGain.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/GaussianAntennaGain.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/NullDirectionProvider.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/NullDirectionProvider.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/PhasedArrayAntGain.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/PhasedArrayAntGain.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/RadarCrossSection.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/RadarCrossSection.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/RadarSARNIIRSConstraint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/RadarSARNIIRSConstraint.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/RadarSrchTrkConstraint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/RadarSrchTrkConstraint.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/RainLossModel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/RainLossModel.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/ReceiverModel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/ReceiverModel.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Perl/TransmitterModel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Perl/TransmitterModel.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Python/CalcObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Python/CalcObject.py -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Python/Constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Python/Constraint.py -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/Python/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/AbsorpModel.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/AbsorpModel.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/AntMultiBeamSelStrat.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/AntMultiBeamSelStrat.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/BeamDirectionProvider.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/BeamDirectionProvider.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/Beamformer.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/Beamformer.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/CommConstraint.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/CommConstraint.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/CommSysSatSelStrat.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/CommSysSatSelStrat.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/Constraint.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/Constraint.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/CustomVector.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/CustomVector.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/DynamicDemodulator.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/DynamicDemodulator.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/DynamicFilter.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/DynamicFilter.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/DynamicModulator_IdealPSD.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/DynamicModulator_IdealPSD.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/GaussianAntennaGain.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/GaussianAntennaGain.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/NullDirectionProvider.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/NullDirectionProvider.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/PhasedArrayAntGain.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/PhasedArrayAntGain.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/RadarCrossSection.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/RadarCrossSection.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/RadarSARNIIRSConstraint.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/RadarSARNIIRSConstraint.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/RadarSrchTrkConstraint.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/RadarSrchTrkConstraint.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/RainLossModel.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/RainLossModel.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/ReceiverModel.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/ReceiverModel.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PluginScripts/VbScript/TransmitterModel.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PluginScripts/VbScript/TransmitterModel.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Batch/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Batch/pps_simple.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Batch/pps_simple.bat -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Perl/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Perl/pps_LLAPos2GA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Perl/pps_LLAPos2GA.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Perl/pps_Ordered_Lighting_Times.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Perl/pps_Ordered_Lighting_Times.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Perl/pps_TimeLLA-to-ephemeris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Perl/pps_TimeLLA-to-ephemeris.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Perl/pps_simple.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Perl/pps_simple.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Python/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/Python/pps_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/Python/pps_simple.py -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/vbScript/AccelHist.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/vbScript/AccelHist.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/vbScript/AccessDurationPerDay.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/vbScript/AccessDurationPerDay.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/vbScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/vbScript/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/PostProcessing/vbScript/pps_simple.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/PostProcessing/vbScript/pps_simple.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/Example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/Example1.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/Example1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/Example1.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/Example1.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/Example1.rgs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/Resource.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/stdafx.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CPP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CPP/stdafx.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CSharp/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CSharp/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CSharp/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CSharp/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/CSharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/CSharp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterGeometry/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterGeometry/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/Example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/Example1.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/Example1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/Example1.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/Example1.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/Example1.rgs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/Resource.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/stdafx.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CPP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CPP/stdafx.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CSharp/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CSharp/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CSharp/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CSharp/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/CSharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/CSharp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/ClutterMap/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/ClutterMap/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.def -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.idl -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.rc -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Agi.Radar.RCS.CPP.Example.rgs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Example1.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Example1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Example1.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Example1.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Example1.rgs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/Resource.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/stdafx.cpp -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CPP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CPP/stdafx.h -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CSharp/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CSharp/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CSharp/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CSharp/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/CSharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/CSharp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/WSC/Agi.Radar.RCS.WSC.Example.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/WSC/Agi.Radar.RCS.WSC.Example.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/WSC/Agi.Radar.RCS.WSC.Example.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/WSC/Agi.Radar.RCS.WSC.Example.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/RCS/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/RCS/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/Radar Clutter Geometry Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/Radar Clutter Geometry Plugins.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/Radar Clutter Map Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/Radar Clutter Map Plugins.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Radar/Radar RCS Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Radar/Radar RCS Plugins.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/SRP.LightReflection/CSharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/SRP.LightReflection/CSharp/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/SRP.LightReflection/SRP.LightReflection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/SRP.LightReflection/SRP.LightReflection.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/Scalar/CSharp/External Data Static FOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/Scalar/CSharp/External Data Static FOM/README.md -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Axes/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Axes/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Axes/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Axes/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Axes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Axes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Axes/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Axes/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/CalcScalar/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/CalcScalar/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/CalcScalar/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/CalcScalar/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/CalcScalar/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/CalcScalar/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Point/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Point/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Point/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Point/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Point/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Point/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Point/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Point/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Vector/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Vector/Example1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Vector/IExample1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Vector/IExample1.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Vector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Vector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/CSharp/Vector/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/CSharp/Vector/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/Example1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/Example1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/IExample1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/IExample1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Axes/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/Example1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/Example1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/IExample1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/IExample1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/CalcScalar/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Point/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Point/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Point/Example1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Point/Example1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Point/IExample1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Point/IExample1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Point/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Point/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/AssemblyInfo.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/Example1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/Example1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/IExample1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/IExample1.vb -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VB.NET/Vector/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/VGT Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/VGT Plugins.xml -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/ReadMe.txt -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.JScript.Example1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.JScript.Example1.js -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.JScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.JScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.Perl.Example1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.Perl.Example1.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.Perl.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.Perl.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.VBScript.Example1.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.VBScript.Example1.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.VBScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Axes.VBScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.JScript.Example1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.JScript.Example1.js -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.JScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.JScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.Perl.Example1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.Perl.Example1.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.Perl.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.Perl.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.VBScript.Example1.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.VBScript.Example1.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.VBScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.CalcScalar.VBScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.JScript.Example1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.JScript.Example1.js -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.JScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.JScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.Perl.Example1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.Perl.Example1.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.Perl.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.Perl.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.VBScript.Example1.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.VBScript.Example1.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.VBScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Point.VBScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.JScript.Example1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.JScript.Example1.js -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.JScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.JScript.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.Perl.Example1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.Perl.Example1.pl -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.Perl.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.Perl.Example1.wsc -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.VBScript.Example1.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.VBScript.Example1.vbs -------------------------------------------------------------------------------- /StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.VBScript.Example1.wsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkExtensionPlugins/VGT.Plugins/WSC/VGT.Vector.VBScript.Example1.wsc -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/AstroDynUi/Stk12.AstroDynUi/AstroDynUi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/AstroDynUi/Stk12.AstroDynUi/AstroDynUi.sln -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/AstroDynUi/Stk12.AstroDynUi/AstroDynUi/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/AstroDynUi/Stk12.AstroDynUi/AstroDynUi/Setup.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/CameraControlAutomator/CameraControlAutomator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/CameraControlAutomator/CameraControlAutomator.xml -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/DataImporter/Freq.csc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/DataImporter/Freq.csc -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/DataImporter/Freq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/DataImporter/Freq.csv -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/DataImporter/Stk12.DataImporter/DataImporter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/DataImporter/Stk12.DataImporter/DataImporter.sln -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/DataImporter/Stk12.DataImporter/DataImporter/STK.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/DataImporter/Stk12.DataImporter/DataImporter/STK.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/DataImporter/Test_LLA_YPR_Heading.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/DataImporter/Test_LLA_YPR_Heading.csv -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/DataImporter/sampleData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/DataImporter/sampleData.txt -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/ExternalCoverageData/CoverageDefinitionFromFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/ExternalCoverageData/CoverageDefinitionFromFile.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/ExternalCoverageData/ExternalCoverageDataPlugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/ExternalCoverageData/ExternalCoverageDataPlugins.md -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/ExternalCoverageData/TestData10deg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/ExternalCoverageData/TestData10deg.csv -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/CustomConfigPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/CustomConfigPage.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/CustomConfigPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/CustomConfigPage.resx -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/CustomUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/CustomUserInterface.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MTO.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MTO.bmp -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.csproj -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.sln -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/MoveMtoTime.xml -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/OlePictureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/MoveMtoTime/Stk12.MoveMtoTime/OlePictureHelper.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/ObjectModelTutorial/UIPluginOMTutorial.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/ObjectModelTutorial/UIPluginOMTutorial.JPG -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/CSharpPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/CSharpPlugin.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/CustomConfigPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/CustomConfigPage.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/CustomConfigPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/CustomConfigPage.resx -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUiPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUiPlugin.sln -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUiPlugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUiPlugin.xml -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUserPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUserPage.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUserPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitTunerUserPage.resx -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/OrbitWizard.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/STK - Copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/STK - Copy.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/STK.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/STK.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/STKHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/STKHelper.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/Wizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk11.OrbitTuner/Wizard.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/CSharpPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/CSharpPlugin.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/CustomConfigPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/CustomConfigPage.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/CustomConfigPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/CustomConfigPage.resx -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUiPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUiPlugin.sln -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUiPlugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUiPlugin.xml -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUserPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUserPage.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUserPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/OrbitTunerUserPage.resx -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/STK.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/STK.ico -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/STKHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/Stk12.OrbitTuner/STKHelper.cs -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/OrbitTuner/oirbitTunerUi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/OrbitTuner/oirbitTunerUi.png -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/PlanetsToggle/Stk10.PlanetsToggle/PlanetsToggle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/PlanetsToggle/Stk10.PlanetsToggle/PlanetsToggle.xml -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/README.md -------------------------------------------------------------------------------- /StkUiPlugins/CSharp/SimGEN_UMTExporter/README.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/CSharp/SimGEN_UMTExporter/README.docx -------------------------------------------------------------------------------- /StkUiPlugins/VB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/VB/README.md -------------------------------------------------------------------------------- /StkUiPlugins/VB/ReentryHeatingPlugin/Reentry_Heating_Plugin_README.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/VB/ReentryHeatingPlugin/Reentry_Heating_Plugin_README.doc -------------------------------------------------------------------------------- /StkUiPlugins/VB/ReentryHeatingPlugin/Reentry_Heating_Plugin_README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/VB/ReentryHeatingPlugin/Reentry_Heating_Plugin_README.pdf -------------------------------------------------------------------------------- /StkUiPlugins/VB/ReentryHeatingPlugin/Stk12.ReentryHeatingPlugin/STK.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/StkUiPlugins/VB/ReentryHeatingPlugin/Stk12.ReentryHeatingPlugin/STK.ico -------------------------------------------------------------------------------- /SupportingScenarios/DynamicSenAzElMask.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/DynamicSenAzElMask.zip -------------------------------------------------------------------------------- /SupportingScenarios/EOIR_Clouds_AirToAir.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/EOIR_Clouds_AirToAir.vdf -------------------------------------------------------------------------------- /SupportingScenarios/MarsSatSTM.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/MarsSatSTM.vdf -------------------------------------------------------------------------------- /SupportingScenarios/NetworkExampleScenarios.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/NetworkExampleScenarios.zip -------------------------------------------------------------------------------- /SupportingScenarios/QuiverExample.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/QuiverExample.vdf -------------------------------------------------------------------------------- /SupportingScenarios/SimulinkAttitudeControlLoop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/SimulinkAttitudeControlLoop.zip -------------------------------------------------------------------------------- /SupportingScenarios/SingaporeLOSplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/SingaporeLOSplugin.zip -------------------------------------------------------------------------------- /SupportingScenarios/TransponderLB.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/SupportingScenarios/TransponderLB.vdf -------------------------------------------------------------------------------- /icons/AGI-Logo_2C-K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/icons/AGI-Logo_2C-K.svg -------------------------------------------------------------------------------- /icons/AGI-Logo_2C-W.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/icons/AGI-Logo_2C-W.svg -------------------------------------------------------------------------------- /icons/STK-on-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/icons/STK-on-black.svg -------------------------------------------------------------------------------- /icons/STK-on-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalyticalGraphicsInc/STKCodeExamples/HEAD/icons/STK-on-white.svg --------------------------------------------------------------------------------