Ejemplo n.º 1
0
 public function testGK()
 {
     $coord = new coordinate(51.52775, -120.8972);
     $gk = $coord->getGK();
     $this->assertEquals('R -39562771 H 5710022', $gk);
     $coord = new coordinate(-8.81687, 13.24057);
     $gk = $coord->getGK();
     $this->assertEquals('R 4636588 H -975608', $gk);
     $coord = new coordinate(52.67578, 6.773);
     $gk = $coord->getGK();
     $this->assertEquals('R 2552325 H 5838386', $gk);
     $coord = new coordinate(60.63367, 4.81313);
     $gk = $coord->getGK();
     $this->assertEquals('R 2435086 H 6724824', $gk);
 }
Ejemplo n.º 2
0
$lat_float = 0;
if (isset($_REQUEST['lat'])) {
    $lat_float += $_REQUEST['lat'];
}
$lon_float = 0;
if (isset($_REQUEST['lon'])) {
    $lon_float += $_REQUEST['lon'];
}
$cache_country = isset($_REQUEST['country']) ? $_REQUEST['country'] : false;
$cache_desclang = isset($_REQUEST['desclang']) ? $_REQUEST['desclang'] : false;
$coord = new coordinate($lat_float, $lon_float);
$tpl->assign('coordDeg', $coord->getDecimal());
$tpl->assign('coordDegMin', $coord->getDecimalMinutes());
$tpl->assign('coordDegMinSec', $coord->getDecimalMinutesSeconds());
$tpl->assign('coordUTM', $coord->getUTM());
$tpl->assign('coordGK', $coord->getGK());
$tpl->assign('coordRD', $coord->getRD());
$tpl->assign('showRD', $coord->nLat >= 45 && $coord->nLat <= 57 && $coord->nLon >= 0 && $coord->nLon <= 15);
$tpl->assign('coordQTH', $coord->getQTH());
$tpl->assign('coordSwissGrid', $coord->getSwissGrid());
// build priority list of W3W languages to display
// 1. current page locale
$w3w_langs = array();
if ($opt['locale'][$opt['template']['locale']]['what3words']) {
    $w3w_langs[] = $opt['template']['locale'];
}
// 2. language of the cache description
if ($cache_desclang && !in_array($cache_desclang, $w3w_langs)) {
    $w3w_langs[] = $cache_desclang;
}
// 3. primary language of the cache's country
Ejemplo n.º 3
0
 /**
  * @group unit-tests
  * @covers       \coordinate::getGK()
  * @dataProvider gkProvider
  *
  * @return void
  */
 public function testGK($lat, $lon, $expectedGK)
 {
     $coord = new \coordinate($lat, $lon);
     $gk = $coord->getGK();
     self::assertEquals($expectedGK, $gk);
 }