Skip to content

Instantly share code, notes, and snippets.

@tihoho
Created February 10, 2018 19:44
Show Gist options
  • Save tihoho/b9f9ce17a3e261a973c019ee581e5bbe to your computer and use it in GitHub Desktop.
Save tihoho/b9f9ce17a3e261a973c019ee581e5bbe to your computer and use it in GitHub Desktop.
Search a Earth back-side by lat-lon point
<?php
function backSide($lat, $lon) {
$lat *= -1;
$lon = $lon < 0 ? $lon + 180 : $lon - 180;
return [$lat, $lon];
}
// Usage:
print_r(
baskSide(-58.603671, -130.343008)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment