Created
February 10, 2018 19:44
-
-
Save tihoho/b9f9ce17a3e261a973c019ee581e5bbe to your computer and use it in GitHub Desktop.
Search a Earth back-side by lat-lon point
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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