1 | <?php |
||
16 | class SRTM4Provider extends AbstractGeoTIFFProvider |
||
17 | { |
||
18 | /** @var int */ |
||
19 | const MAX_LATITUDE = 60; |
||
20 | |||
21 | /** @var int */ |
||
22 | const MAX_LONGITUDE = 180; |
||
23 | |||
24 | /** @var float */ |
||
25 | const DEGREES_PER_TILE = 5.0; |
||
26 | |||
27 | /** @var float */ |
||
28 | protected $CurrentTileHorizontalReference; |
||
29 | |||
30 | /** @var float */ |
||
31 | protected $CurrentTileVerticalReference; |
||
32 | |||
33 | /** @var float top left latitude */ |
||
34 | protected $CurrentTileLatitude; |
||
35 | |||
36 | /** @var float top left longitude */ |
||
37 | protected $CurrentTileLongitude; |
||
38 | |||
39 | /** @var string */ |
||
40 | protected $FilenameFormat = 'srtm_%02d_%02d.tif'; |
||
41 | |||
42 | /** @var GeoTIFFReader */ |
||
43 | protected $ResourceReader; |
||
44 | |||
45 | 13 | public function initResourceReader() |
|
49 | |||
50 | /** |
||
51 | * @param $format |
||
52 | */ |
||
53 | 1 | public function setFilenameFormat($format) |
|
54 | { |
||
55 | 1 | $this->FilenameFormat = $format; |
|
56 | 1 | } |
|
57 | |||
58 | /** |
||
59 | * @param float $latitude |
||
60 | * @param float $longitude |
||
61 | * @return string |
||
62 | * @throws InvalidArgumentException |
||
63 | */ |
||
64 | 11 | protected function getFilenameFor($latitude, $longitude) |
|
70 | |||
71 | /** |
||
72 | * @param float $latitude |
||
73 | * @param float $longitude |
||
74 | */ |
||
75 | 11 | protected function loadTileReferencesFor($latitude, $longitude) |
|
76 | { |
||
77 | 11 | if (fmod($latitude, static::DEGREES_PER_TILE) === 0.0) { |
|
78 | 1 | $this->CurrentTileVerticalReference = (static::MAX_LATITUDE - $latitude) / static::DEGREES_PER_TILE + 1; |
|
79 | 1 | } else { |
|
80 | 11 | $this->CurrentTileVerticalReference = ceil((static::MAX_LATITUDE - $latitude) / static::DEGREES_PER_TILE); |
|
81 | } |
||
82 | |||
83 | 11 | if (fmod($longitude, static::DEGREES_PER_TILE) === 0.0) { |
|
84 | 1 | $this->CurrentTileHorizontalReference = (static::MAX_LONGITUDE + $longitude) / static::DEGREES_PER_TILE + 1; |
|
85 | 1 | } else { |
|
86 | 11 | $this->CurrentTileHorizontalReference = ceil((static::MAX_LONGITUDE + $longitude) / static::DEGREES_PER_TILE); |
|
87 | } |
||
88 | |||
89 | 11 | $this->CurrentTileLatitude = static::MAX_LATITUDE - (($this->CurrentTileVerticalReference - 1) * static::DEGREES_PER_TILE); |
|
90 | 11 | $this->CurrentTileLongitude = (($this->CurrentTileHorizontalReference - 1) * static::DEGREES_PER_TILE) - static::MAX_LONGITUDE; |
|
91 | |||
92 | 11 | if ($latitude < 0) { |
|
93 | 3 | $this->CurrentTileLatitude = -$this->CurrentTileLatitude; |
|
|
|||
94 | 3 | } |
|
95 | 11 | } |
|
96 | |||
97 | /** |
||
98 | * @param float $latitude |
||
99 | * @param float $longitude |
||
100 | * @return float[] array(row, col) |
||
101 | */ |
||
102 | 7 | protected function getExactRowAndColFor($latitude, $longitude) |
|
109 | } |
||
110 |
This check looks for assignments to scalar types that may be of the wrong type.
To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.