@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | foreach ($adjacent as $adjHash) { |
117 | 117 | if (is_array($this->spatial_idx)) { |
118 | 118 | foreach ($this->spatial_idx as $_geohash => $_docIds) { |
119 | - if (strpos($_geohash, (string) $adjHash) !== false) { |
|
119 | + if (strpos($_geohash, ( string ) $adjHash) !== false) { |
|
120 | 120 | // dbglog ( "Found adjacent geo hash: $adjHash in $_geohash" ); |
121 | 121 | // if $adjHash similar to geohash |
122 | 122 | $docIds = array_merge($docIds, $_docIds); |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | $point |
144 | 144 | ] |
145 | 145 | ); |
146 | - $media [] = ['id' => $id, 'distance' => (int) ($line->greatCircleLength()), 'lat' => $point->y(), 'lon' => $point->x()]; |
|
146 | + $media [] = ['id' => $id, 'distance' => ( int ) ($line->greatCircleLength()), 'lat' => $point->y(), 'lon' => $point->x()]; |
|
147 | 147 | } |
148 | 148 | } elseif (auth_quickaclcheck($id) >= /*AUTH_READ*/ 1) { |
149 | 149 | $geotags = p_get_metadata($id, 'geo'); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $point |
155 | 155 | ] |
156 | 156 | ); |
157 | - $pages [] = ['id' => $id, 'distance' => (int) ($line->greatCircleLength()), 'description' => p_get_metadata($id, 'description')['abstract'], 'lat' => $geotags ['lat'], 'lon' => $geotags ['lon']]; |
|
157 | + $pages [] = ['id' => $id, 'distance' => ( int ) ($line->greatCircleLength()), 'description' => p_get_metadata($id, 'description')['abstract'], 'lat' => $geotags ['lat'], 'lon' => $geotags ['lon']]; |
|
158 | 158 | } |
159 | 159 | } |
160 | 160 |
@@ -256,11 +256,11 @@ |
||
256 | 256 | */ |
257 | 257 | private function printHTML(array $searchresults, bool $showMedia = true): void |
258 | 258 | { |
259 | - $pages = (array)($searchresults ['pages']); |
|
260 | - $media = (array)$searchresults ['media']; |
|
261 | - $lat = (float)$searchresults ['lat']; |
|
262 | - $lon = (float)$searchresults ['lon']; |
|
263 | - $geohash = (string)$searchresults ['geohash']; |
|
259 | + $pages = ( array ) ($searchresults ['pages']); |
|
260 | + $media = ( array ) $searchresults ['media']; |
|
261 | + $lat = ( float ) $searchresults ['lat']; |
|
262 | + $lon = ( float ) $searchresults ['lon']; |
|
263 | + $geohash = ( string ) $searchresults ['geohash']; |
|
264 | 264 | |
265 | 265 | if (isset($searchresults ['error'])) { |
266 | 266 | echo '<div class="level1"><p>' . hsc($searchresults ['error']) . '</p></div>'; |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | * @return Point|false |
237 | 237 | * @throws Exception |
238 | 238 | */ |
239 | - final public function getCoordsFromExif(string $id): Point|false |
|
239 | + final public function getCoordsFromExif(string $id): Point | false |
|
240 | 240 | { |
241 | 241 | $exif = exif_read_data(mediaFN($id), 0, true); |
242 | 242 | if (empty($exif ['GPS'])) { |
@@ -277,11 +277,11 @@ discard block |
||
277 | 277 | { |
278 | 278 | // rational64u |
279 | 279 | $nums = explode('/', $param); |
280 | - if ((int)$nums[1] > 0) { |
|
281 | - return (float)$nums[0] / (int)$nums[1]; |
|
280 | + if (( int ) $nums[1] > 0) { |
|
281 | + return ( float ) $nums[0] / ( int ) $nums[1]; |
|
282 | 282 | } |
283 | 283 | |
284 | - return (float)$nums[0]; |
|
284 | + return ( float ) $nums[0]; |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | /** |