Index: trunk/extensions/gis/transversemercator.php |
— | — | @@ -264,9 +264,11 @@ |
265 | 265 | + (5 - 18*$T + pow($T,2) + 72*$C |
266 | 266 | - 58 * $e_prime_sq)*pow($A,5)/120 ); |
267 | 267 | |
268 | | - # FIXME: Uze zone_letter |
| 268 | + # FIXME: Use zone_letter |
269 | 269 | # if (ord($zone_letter) < ord('N')) |
270 | | - if ($latitude < 0) $northing += $this->$Northing_Offset_South; |
| 270 | + if ( $latitude < 0 ) { |
| 271 | + $northing += $this->Northing_Offset_South; |
| 272 | + } |
271 | 273 | |
272 | 274 | $this->Northing = $northing; |
273 | 275 | $this->Easting = $easting; |
— | — | @@ -274,5 +276,3 @@ |
275 | 277 | return true; |
276 | 278 | } |
277 | 279 | } |
278 | | - |
279 | | - |