Skip to content

Instantly share code, notes, and snippets.

@andrekeher
Created March 7, 2023 15:44
Show Gist options
  • Save andrekeher/5cedf1218f1515d8c89bc60afc757845 to your computer and use it in GitHub Desktop.
Save andrekeher/5cedf1218f1515d8c89bc60afc757845 to your computer and use it in GitHub Desktop.
<?php
//Definindo variáveis para armazenar as coordenadas
$latitude = -22.9000;
$longitude = -43.2290;
//Definindo os limites do território brasileiro
$limite_lat_min = -33.7472;
$limite_lat_max = 5.2790;
$limite_long_min = -74.2910;
$limite_long_max = -34.8014;
//Verificando se a coordenada está dentro dos limites
if($latitude > $limite_lat_min && $latitude < $limite_lat_max &&
$longitude > $limite_long_min && $longitude < $limite_long_max){
echo 'Coordenada localizada no Brasil';
} else {
echo 'Coordenada não localizada no Brasil';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment