init GitHub version "Hermes 1.0b"

This commit is contained in:
Kiritan Flux 2018-12-09 13:02:46 +01:00
parent abc4fb2c21
commit 1e06ba1042
59 changed files with 380125 additions and 0 deletions

18
pmom.php Normal file
View file

@ -0,0 +1,18 @@
<?php
/**
* @preserve Copyright (c) 2018 T. F. Raaion, www.sublunar.space
* License MIT: http://www.opensource.org/licenses/MIT
*/
header('Content-type: application/json');
$ts = $_GET['ts'];
$lon = $_GET['lon'];
$lat = $_GET['lat'];
$days = $_GET['days'];
exec ("lib/sweph/pmom $days $ts $lat $lon", $output);
echo $output[0];
?>