Wallogit.com
2017 © Pedro Peláez
Require this package with Composer, (*1)
$ composer require sleepcat/laravel-hgt-reader
your config/app.php, (*2)
'providers' => [
SleepCat\LaravelHgtReader\ReaderServiceProvider::class,
]
Add the facade to your config/app.php file:, (*3)
'aliases' => array( //... 'HgtReader' => SleepCat\LaravelHgtReader\Facades\HgtReader::class, ),
use HgtReader; // Set Hgt files path in /storage $hgtPath = "/hgt"; HgtReader::init($hgtPath, 3); // Get elevation $el = HgtReader::getElevation($lat, $lon);
Here, (*4)
Download xxx.hgt to storage/hgt, (*5)