runalyze/dem-reader
最新稳定版本:1.2.0
Composer 安装命令:
composer require runalyze/dem-reader
包简介
Read digital elevation files such as GeoTIFF files for srtm data or similar.
README 文档
README
Library to read digital elevation models, such as GeoTIFF files for SRTM. The GeoTIFF reader itself is originally based on Bob Osola's SRTMGeoTIFFReader.
Usage
use Runalyze\DEM\Reader; use Runalyze\DEM\Provider\GeoTIFF\SRTM4Provider; $Provider = new SRTM4Provider('path/to/srtm/files'); $Reader = new Reader($Provider); $elevations = $Reader->getElevations($latitudes, $longitudes);
To give you some more details: Each provider is valid for its own. You can just ignore the general reader and use your favorite provider:
use Runalyze\DEM\Provider\GeoTIFF\SRTM4Provider; $Provider = new SRTM4Provider('path/to/srtm/files'); $elevations = $Provider->getElevations($latitudes, $longitudes);
But you may have more than one provider available or different paths where your dem files are located. You can attach as many providers as you want to the reader. Each of them will be checked if it can handle the given elevation data (in the order they were attached) and the wirst one that does will be used.
use Runalyze\DEM\Reader; use Runalyze\DEM\Provider\GeoTIFF\SRTM4Provider; $Reader = new Reader(); $Reader->addProvider(new SRTM4Provider('path/to/europe/srtm/files')); $Reader->addProvider(new SRTM4Provider('path/to/america/srtm/files')); $europeElevations = $Reader->getElevations($europeLatitudes, $europeLongitudes); $americaElevations = $Reader->getElevations($americaLatitudes, $americaLongitudes);
License
Code released under the MIT license.
统计信息
- 总下载量: 22.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-26