This repository has been archived on 2022-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
apiOld/old/astronomy/hour_angle/api.php
2021-01-01 15:48:55 +08:00

13 lines
292 B
PHP

<?php
$command="python api_core.py";
if($_GET['stamp']!=""){
$command=$command." --stamp ".strval($_GET['stamp'])." ";
}
if($_GET['lon']!=""){
$command=$command." --lon ".$_GET['lon']." ";
}
if($_GET['zone']!=""){
$command=$command." --zone ".$_GET['zone']." ";
}
@os.system($command);
?>