removed deprecated JS

completed import of 3rd party dependencies

added url to README.md

init GitHub version "Hermes 1.0b"
This commit is contained in:
Sublunar Space 2018-12-09 13:02:46 +01:00
parent abc4fb2c21
commit b16fa60929
81 changed files with 65818 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];
?>