makeOrbitsList.php
2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
83
<?php
/*
* Executable to make Orbits.xml with the description for all Ephemeris parameters
* Uses LocalParams.xml and AMDA params descriptions
*/
$AMDA_IHM = getenv('AMDA_IHM');
error_reporting(E_ERROR);
if (!isset($AMDA_IHM))
require_once __DIR__."/config.php";
else
require_once $AMDA_IHM."/php/config.php";
if (!defined('orbitsXml'))
exit("orbitsXml is not defined in config.php".PHP_EOL);
$pairs = array("-" => "_" );
$amdaXml = new DomDocument("1.0");
$amdaXml->load(DATAPATH."LocalData/LocalParams.xml");
$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);
?>