makeOrbits.php
427 Bytes
<?php
require_once "config.php";
$locBasesDom = new DomDocument("1.0");
$locBasesDom->load(missionXml);
$locBases = $locBasesDom->getElementsByTagName("MissionID");
$postProcessing = new PostProcessing();
$postProcessing->createOrbites(paramXml);
$postProcessing->createOrbites(LocalDataParam.'InternalParams.xml');
$postProcessing->createOrbitesInfoFiles($locBases);
?>