Blame view

php/makeOrbitsList.php 2.7 KB
bf74fc2d   Elena.Budnik   IMPEX
1
2
3
4
5
<?php
/*
*  Executable to make Orbits.xml with the description for all Ephemeris parameters 
*  Uses LocalParams.xml and AMDA params descriptions
*/
9c0d113f   Elena.Budnik   IMPEX final
6

f417c762   Elena.Budnik   correcte path
7
		$AMDA_IHM = getenv('AMDA_IHM');
9c0d113f   Elena.Budnik   IMPEX final
8
      
f417c762   Elena.Budnik   correcte path
9
10
11
12
		if (!isset($AMDA_IHM)) 
			require_once __DIR__."/config.php";      
		else 
			require_once $AMDA_IHM."/php/config.php"; 
bf74fc2d   Elena.Budnik   IMPEX
13
      
f417c762   Elena.Budnik   correcte path
14
		if (!defined('orbitsXml'))
bf74fc2d   Elena.Budnik   IMPEX
15
16
17
18
19
			exit("orbitsXml is not defined in config.php".PHP_EOL);
            
		$pairs = array("-" => "_" );  	
	
		$amdaXml = new DomDocument("1.0");
941e6524   Elena.Budnik   new location of L...
20
		$amdaXml->load(DATAPATH."LocalData/LocalParams.xml");
bf74fc2d   Elena.Budnik   IMPEX
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
		
		$xpath = new DOMXpath($amdaXml);
		
		$amdaParamDir = DATAPATH."newKernelDDBase";

		$orbitsXml =  new DomDocument("1.0");
		$orbitsXml->formatOutput = TRUE;
		$orbitsXml->preserveWhiteSpace = FALSE;
		
		$orbitsRoot = $orbitsXml->createElement('orbitesList');
		$orbitsXml->appendChild($orbitsRoot);
		
		$nodesAmda = $xpath->query('//*[@target]');
		
		foreach ($nodesAmda as $node)
		{
			$target = $node->getAttribute('target');
			
			if ( (($node->tagName == 'mission' && $node->getElementsByTagName('observatory')->length == 0) ||
  				 ($node->tagName == 'observatory') ) && $node->getAttribute('name') != $target )
			{
				$instruments =  $node->getElementsByTagName('instrument');
				foreach ($instruments as $ins)
				{
					if ($ins->getAttribute('name') != 'Ephemeris') continue;
					$parameters = $ins->getElementsByTagName('parameter');
					foreach ($parameters as $parameter)
					{
						if ($parameter->hasAttribute('size') && $parameter->getAttribute('size') == '3')
						{
							$param_file = $amdaParamDir."/".$parameter->getAttribute('xml:id').".xml";
							if (file_exists($param_file))
							{
								$paramXml = simplexml_load_file($param_file);

								$orbitNode = $orbitsXml->createElement('orbites');
								$dsId = strtr($paramXml->info->dataset_id,$pairs);
								$orbitNode->setAttribute('xml:id',$parameter->getAttribute('xml:id'));
								$orbitNode->setAttribute('coordinate_system', $paramXml->info->coordinates_system);
								$orbitNode->setAttribute('units', $paramXml->info->units);
								$orbitNode->setAttribute('mission', $node->getAttribute('name'));
								
								if ( $node->tagName == 'observatory' )
									$orbitNode->setAttribute('missionGroup',$node->parentNode->getAttribute('name'));
									
								$orbitNode->setAttribute('dataset', $dsId);
								$ds = $amdaXml->getElementById($paramXml->info->dataset_id);
								if ($ds->hasAttribute('target'))
									$orbitNode->setAttribute('target', $ds->getAttribute('target'));
								else
									$orbitNode->setAttribute('target', $target);
								
								$orbitsRoot->appendChild($orbitNode);
							}
						}
					}
				}
			}
		}
		
		$orbitsXml->save(orbitsXml);
?>