Completed
Push — master ( e17801...597a61 )
by Yannick
25:55
created
require/libs/geoPHP/lib/adapters/GeoJSON.class.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     if ($type == 'GeometryCollection') {
51 51
       return $this->objToGeometryCollection($obj);
52 52
     }
53
-    $method = 'arrayTo' . $type;
53
+    $method = 'arrayTo'.$type;
54 54
     return $this->$method($obj->coordinates);
55 55
   }
56 56
 
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/adapters/WKB.class.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@  discard block
 block discarded – undo
30 30
    */
31 31
   public function read($wkb, $is_hex_string = FALSE) {
32 32
     if ($is_hex_string) {
33
-      $wkb = pack('H*',$wkb);
33
+      $wkb = pack('H*', $wkb);
34 34
     }
35 35
 
36 36
     if (empty($wkb)) {
37
-      throw new Exception('Cannot read empty WKB geometry. Found ' . gettype($wkb));
37
+      throw new Exception('Cannot read empty WKB geometry. Found '.gettype($wkb));
38 38
     }
39 39
 
40 40
     $mem = fopen('php://memory', 'r+');
@@ -74,37 +74,37 @@  discard block
 block discarded – undo
74 74
       case 3:
75 75
         return $this->getPolygon($mem);
76 76
       case 4:
77
-        return $this->getMulti($mem,'point');
77
+        return $this->getMulti($mem, 'point');
78 78
       case 5:
79
-        return $this->getMulti($mem,'line');
79
+        return $this->getMulti($mem, 'line');
80 80
       case 6:
81
-        return $this->getMulti($mem,'polygon');
81
+        return $this->getMulti($mem, 'polygon');
82 82
       case 7:
83
-        return $this->getMulti($mem,'geometry');
83
+        return $this->getMulti($mem, 'geometry');
84 84
     }
85 85
   }
86 86
 
87 87
   function getPoint(&$mem) {
88
-    $point_coords = unpack("d*", fread($mem,$this->dimension*8));
89
-    return new Point($point_coords[1],$point_coords[2]);
88
+    $point_coords = unpack("d*", fread($mem, $this->dimension*8));
89
+    return new Point($point_coords[1], $point_coords[2]);
90 90
   }
91 91
 
92 92
   function getLinstring(&$mem) {
93 93
     // Get the number of points expected in this string out of the first 4 bytes
94
-    $line_length = unpack('L',fread($mem,4));
94
+    $line_length = unpack('L', fread($mem, 4));
95 95
 
96 96
     // Return an empty linestring if there is no line-length
97 97
     if (!$line_length[1]) return new LineString();
98 98
 
99 99
     // Read the nubmer of points x2 (each point is two coords) into decimal-floats
100
-    $line_coords = unpack('d*', fread($mem,$line_length[1]*$this->dimension*8));
100
+    $line_coords = unpack('d*', fread($mem, $line_length[1]*$this->dimension*8));
101 101
 
102 102
     // We have our coords, build up the linestring
103 103
     $components = array();
104 104
     $i = 1;
105 105
     $num_coords = count($line_coords);
106 106
     while ($i <= $num_coords) {
107
-      $components[] = new Point($line_coords[$i],$line_coords[$i+1]);
107
+      $components[] = new Point($line_coords[$i], $line_coords[$i + 1]);
108 108
       $i += 2;
109 109
     }
110 110
     return new LineString($components);
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
   function getPolygon(&$mem) {
114 114
     // Get the number of linestring expected in this poly out of the first 4 bytes
115
-    $poly_length = unpack('L',fread($mem,4));
115
+    $poly_length = unpack('L', fread($mem, 4));
116 116
 
117 117
     $components = array();
118 118
     $i = 1;
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
   function getMulti(&$mem, $type) {
127 127
     // Get the number of items expected in this multi out of the first 4 bytes
128
-    $multi_length = unpack('L',fread($mem,4));
128
+    $multi_length = unpack('L', fread($mem, 4));
129 129
 
130 130
     $components = array();
131 131
     $i = 1;
@@ -154,41 +154,41 @@  discard block
 block discarded – undo
154 154
    */
155 155
   public function write(Geometry $geometry, $write_as_hex = FALSE) {
156 156
     // We always write into NDR (little endian)
157
-    $wkb = pack('c',1);
157
+    $wkb = pack('c', 1);
158 158
 
159 159
     switch ($geometry->getGeomType()) {
160 160
       case 'Point';
161
-        $wkb .= pack('L',1);
161
+        $wkb .= pack('L', 1);
162 162
         $wkb .= $this->writePoint($geometry);
163 163
         break;
164 164
       case 'LineString';
165
-        $wkb .= pack('L',2);
165
+        $wkb .= pack('L', 2);
166 166
         $wkb .= $this->writeLineString($geometry);
167 167
         break;
168 168
       case 'Polygon';
169
-        $wkb .= pack('L',3);
169
+        $wkb .= pack('L', 3);
170 170
         $wkb .= $this->writePolygon($geometry);
171 171
         break;
172 172
       case 'MultiPoint';
173
-        $wkb .= pack('L',4);
173
+        $wkb .= pack('L', 4);
174 174
         $wkb .= $this->writeMulti($geometry);
175 175
         break;
176 176
       case 'MultiLineString';
177
-        $wkb .= pack('L',5);
177
+        $wkb .= pack('L', 5);
178 178
         $wkb .= $this->writeMulti($geometry);
179 179
         break;
180 180
       case 'MultiPolygon';
181
-        $wkb .= pack('L',6);
181
+        $wkb .= pack('L', 6);
182 182
         $wkb .= $this->writeMulti($geometry);
183 183
         break;
184 184
       case 'GeometryCollection';
185
-        $wkb .= pack('L',7);
185
+        $wkb .= pack('L', 7);
186 186
         $wkb .= $this->writeMulti($geometry);
187 187
         break;
188 188
     }
189 189
 
190 190
     if ($write_as_hex) {
191
-      $unpacked = unpack('H*',$wkb);
191
+      $unpacked = unpack('H*', $wkb);
192 192
       return $unpacked[1];
193 193
     }
194 194
     else {
@@ -198,18 +198,18 @@  discard block
 block discarded – undo
198 198
 
199 199
   function writePoint($point) {
200 200
     // Set the coords
201
-    $wkb = pack('dd',$point->x(), $point->y());
201
+    $wkb = pack('dd', $point->x(), $point->y());
202 202
 
203 203
     return $wkb;
204 204
   }
205 205
 
206 206
   function writeLineString($line) {
207 207
     // Set the number of points in this line
208
-    $wkb = pack('L',$line->numPoints());
208
+    $wkb = pack('L', $line->numPoints());
209 209
 
210 210
     // Set the coords
211 211
     foreach ($line->getComponents() as $point) {
212
-      $wkb .= pack('dd',$point->x(), $point->y());
212
+      $wkb .= pack('dd', $point->x(), $point->y());
213 213
     }
214 214
 
215 215
     return $wkb;
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 
218 218
   function writePolygon($poly) {
219 219
     // Set the number of lines in this poly
220
-    $wkb = pack('L',$poly->numGeometries());
220
+    $wkb = pack('L', $poly->numGeometries());
221 221
 
222 222
     // Write the lines
223 223
     foreach ($poly->getComponents() as $line) {
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
   function writeMulti($geometry) {
231 231
     // Set the number of components
232
-    $wkb = pack('L',$geometry->numGeometries());
232
+    $wkb = pack('L', $geometry->numGeometries());
233 233
 
234 234
     // Write the components
235 235
     foreach ($geometry->getComponents() as $component) {
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/adapters/KML.class.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -53,21 +53,21 @@  discard block
 block discarded – undo
53 53
 
54 54
     // Change to lower-case and strip all CDATA
55 55
     $text = mb_strtolower($text, mb_detect_encoding($text));
56
-    $text = preg_replace('/<!\[cdata\[(.*?)\]\]>/s','',$text);
56
+    $text = preg_replace('/<!\[cdata\[(.*?)\]\]>/s', '', $text);
57 57
 
58 58
     // Load into DOMDOcument
59 59
     $xmlobj = new DOMDocument();
60 60
     @$xmlobj->loadXML($text);
61 61
     if ($xmlobj === false) {
62
-      throw new Exception("Invalid KML: ". $text);
62
+      throw new Exception("Invalid KML: ".$text);
63 63
     }
64 64
 
65 65
     $this->xmlobj = $xmlobj;
66 66
     try {
67 67
       $geom = $this->geomFromXML();
68
-    } catch(InvalidText $e) {
69
-        throw new Exception("Cannot Read Geometry From KML: ". $text);
70
-    } catch(Exception $e) {
68
+    } catch (InvalidText $e) {
69
+        throw new Exception("Cannot Read Geometry From KML: ".$text);
70
+    } catch (Exception $e) {
71 71
         throw $e;
72 72
     }
73 73
 
@@ -115,14 +115,14 @@  discard block
 block discarded – undo
115 115
 
116 116
   protected function parsePoint($xml) {
117 117
     $coordinates = $this->_extractCoordinates($xml);
118
-    return new Point($coordinates[0][0],$coordinates[0][1]);
118
+    return new Point($coordinates[0][0], $coordinates[0][1]);
119 119
   }
120 120
 
121 121
   protected function parseLineString($xml) {
122 122
     $coordinates = $this->_extractCoordinates($xml);
123 123
     $point_array = array();
124 124
     foreach ($coordinates as $set) {
125
-      $point_array[] = new Point($set[0],$set[1]);
125
+      $point_array[] = new Point($set[0], $set[1]);
126 126
     }
127 127
     return new LineString($point_array);
128 128
   }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
       foreach ($coord_sets as $set_string) {
174 174
         $set_string = trim($set_string);
175 175
         if ($set_string) {
176
-          $set_array = explode(',',$set_string);
176
+          $set_array = explode(',', $set_string);
177 177
           if (count($set_array) >= 2) {
178 178
             $coordinates[] = $set_array;
179 179
           }
@@ -214,21 +214,21 @@  discard block
 block discarded – undo
214 214
       $type = $geom->getGeomType();
215 215
     }
216 216
 
217
-    $str = '<'.$this->nss . $type .'>';
217
+    $str = '<'.$this->nss.$type.'>';
218 218
 
219 219
     if (!$geom->isEmpty()) {
220 220
       $str .= '<'.$this->nss.'coordinates>';
221
-      $i=0;
221
+      $i = 0;
222 222
       foreach ($geom->getComponents() as $comp) {
223 223
         if ($i != 0) $str .= ' ';
224
-        $str .= $comp->getX() .','. $comp->getY();
224
+        $str .= $comp->getX().','.$comp->getY();
225 225
         $i++;
226 226
       }
227 227
 
228 228
       $str .= '</'.$this->nss.'coordinates>';
229 229
     }
230 230
 
231
-    $str .= '</'. $this->nss . $type .'>';
231
+    $str .= '</'.$this->nss.$type.'>';
232 232
 
233 233
     return $str;
234 234
   }
@@ -236,13 +236,13 @@  discard block
 block discarded – undo
236 236
   public function polygonToKML($geom) {
237 237
     $components = $geom->getComponents();
238 238
     if (!empty($components)) {
239
-      $str = '<'.$this->nss.'outerBoundaryIs>' . $this->linestringToKML($components[0], 'LinearRing') . '</'.$this->nss.'outerBoundaryIs>';
239
+      $str = '<'.$this->nss.'outerBoundaryIs>'.$this->linestringToKML($components[0], 'LinearRing').'</'.$this->nss.'outerBoundaryIs>';
240 240
       foreach (array_slice($components, 1) as $comp) {
241
-        $str .= '<'.$this->nss.'innerBoundaryIs>' . $this->linestringToKML($comp) . '</'.$this->nss.'innerBoundaryIs>';
241
+        $str .= '<'.$this->nss.'innerBoundaryIs>'.$this->linestringToKML($comp).'</'.$this->nss.'innerBoundaryIs>';
242 242
       }
243 243
     }
244 244
 
245
-    return '<'.$this->nss.'Polygon>'. $str .'</'.$this->nss.'Polygon>';
245
+    return '<'.$this->nss.'Polygon>'.$str.'</'.$this->nss.'Polygon>';
246 246
   }
247 247
 
248 248
   public function collectionToKML($geom) {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
       $str .= $sub_adapter->write($comp);
254 254
     }
255 255
 
256
-    return $str .'</'.$this->nss.'MultiGeometry>';
256
+    return $str.'</'.$this->nss.'MultiGeometry>';
257 257
   }
258 258
 
259 259
 }
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/geometry/Polygon.class.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -19,15 +19,15 @@  discard block
 block discarded – undo
19 19
     $pts = $exterior_ring->getComponents();
20 20
     
21 21
     $c = count($pts);
22
-    if((int)$c == '0') return NULL;
22
+    if ((int) $c == '0') return NULL;
23 23
     $a = '0';
24
-    foreach($pts as $k => $p){
25
-      $j = ($k + 1) % $c;
26
-      $a = $a + ($p->getX() * $pts[$j]->getY()) - ($p->getY() * $pts[$j]->getX());
24
+    foreach ($pts as $k => $p) {
25
+      $j = ($k + 1)%$c;
26
+      $a = $a + ($p->getX()*$pts[$j]->getY()) - ($p->getY()*$pts[$j]->getX());
27 27
     }
28 28
     
29
-    if ($signed) $area = ($a / 2);
30
-    else $area = abs(($a / 2));
29
+    if ($signed) $area = ($a/2);
30
+    else $area = abs(($a/2));
31 31
     
32 32
     if ($exterior_only == TRUE) {
33 33
       return $area;
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     $pts = $exterior_ring->getComponents();
53 53
     
54 54
     $c = count($pts);
55
-    if((int)$c == '0') return NULL;
55
+    if ((int) $c == '0') return NULL;
56 56
     $cn = array('x' => '0', 'y' => '0');
57 57
     $a = $this->area(TRUE, TRUE);
58 58
     
@@ -61,15 +61,15 @@  discard block
 block discarded – undo
61 61
       return $this->exteriorRing()->pointN(1);
62 62
     }
63 63
     
64
-    foreach($pts as $k => $p){
65
-      $j = ($k + 1) % $c;
66
-      $P = ($p->getX() * $pts[$j]->getY()) - ($p->getY() * $pts[$j]->getX());
67
-      $cn['x'] = $cn['x'] + ($p->getX() + $pts[$j]->getX()) * $P;
68
-      $cn['y'] = $cn['y'] + ($p->getY() + $pts[$j]->getY()) * $P;
64
+    foreach ($pts as $k => $p) {
65
+      $j = ($k + 1)%$c;
66
+      $P = ($p->getX()*$pts[$j]->getY()) - ($p->getY()*$pts[$j]->getX());
67
+      $cn['x'] = $cn['x'] + ($p->getX() + $pts[$j]->getX())*$P;
68
+      $cn['y'] = $cn['y'] + ($p->getY() + $pts[$j]->getY())*$P;
69 69
     }
70 70
     
71
-    $cn['x'] = $cn['x'] / ( 6 * $a);
72
-    $cn['y'] = $cn['y'] / ( 6 * $a);
71
+    $cn['x'] = $cn['x']/(6*$a);
72
+    $cn['y'] = $cn['y']/(6*$a);
73 73
     
74 74
     $centroid = new Point($cn['x'], $cn['y']);
75 75
     return $centroid;
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
 
86 86
 		$max = array('length' => 0, 'point' => null);
87 87
 
88
-		foreach($this->getPoints() as $point) {
88
+		foreach ($this->getPoints() as $point) {
89 89
 			$lineString = new LineString(array($centroid, $point));
90 90
 
91
-			if($lineString->length() > $max['length']) {
91
+			if ($lineString->length() > $max['length']) {
92 92
 				$max['length'] = $lineString->length();
93 93
 				$max['point'] = $point;
94 94
 			}
@@ -104,11 +104,11 @@  discard block
 block discarded – undo
104 104
   
105 105
   public function numInteriorRings() {
106 106
     if ($this->isEmpty()) return 0;
107
-    return $this->numGeometries()-1;
107
+    return $this->numGeometries() - 1;
108 108
   }
109 109
   
110 110
   public function interiorRingN($n) {
111
-    return $this->geometryN($n+1);
111
+    return $this->geometryN($n + 1);
112 112
   }
113 113
   
114 114
   public function dimension() {
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
     $intersections = 0; 
158 158
     $vertices_count = count($vertices);
159 159
 
160
-    for ($i=1; $i < $vertices_count; $i++) {
161
-      $vertex1 = $vertices[$i-1]; 
160
+    for ($i = 1; $i < $vertices_count; $i++) {
161
+      $vertex1 = $vertices[$i - 1]; 
162 162
       $vertex2 = $vertices[$i];
163 163
       if ($vertex1->y() == $vertex2->y() 
164 164
       && $vertex1->y() == $point->y() 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
       && $point->x() <= max($vertex1->x(), $vertex2->x())
173 173
       && $vertex1->y() != $vertex2->y()) {
174 174
         $xinters = 
175
-          ($point->y() - $vertex1->y()) * ($vertex2->x() - $vertex1->x())
175
+          ($point->y() - $vertex1->y())*($vertex2->x() - $vertex1->x())
176 176
           / ($vertex2->y() - $vertex1->y()) 
177 177
           + $vertex1->x();
178 178
         if ($xinters == $point->x()) {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
       } 
186 186
     } 
187 187
     // If the number of edges we passed through is even, then it's in the polygon.
188
-    if ($intersections % 2 != 0) {
188
+    if ($intersections%2 != 0) {
189 189
       return TRUE;
190 190
     }
191 191
     else {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
   }
195 195
   
196 196
   public function pointOnVertex($point) {
197
-    foreach($this->getPoints() as $vertex) {
197
+    foreach ($this->getPoints() as $vertex) {
198 198
       if ($point->equals($vertex)) {
199 199
         return true;
200 200
       }
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/geometry/Point.class.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -139,17 +139,17 @@
 block discarded – undo
139 139
   }
140 140
 
141 141
   // Not valid for this geometry type
142
-  public function numGeometries()    { return NULL; }
143
-  public function geometryN($n)      { return NULL; }
144
-  public function startPoint()       { return NULL; }
145
-  public function endPoint()         { return NULL; }
146
-  public function isRing()           { return NULL; }
147
-  public function isClosed()         { return NULL; }
148
-  public function pointN($n)         { return NULL; }
149
-  public function exteriorRing()     { return NULL; }
142
+  public function numGeometries() { return NULL; }
143
+  public function geometryN($n) { return NULL; }
144
+  public function startPoint() { return NULL; }
145
+  public function endPoint() { return NULL; }
146
+  public function isRing() { return NULL; }
147
+  public function isClosed() { return NULL; }
148
+  public function pointN($n) { return NULL; }
149
+  public function exteriorRing() { return NULL; }
150 150
   public function numInteriorRings() { return NULL; }
151
-  public function interiorRingN($n)  { return NULL; }
152
-  public function pointOnSurface()   { return NULL; }
153
-  public function explode()          { return NULL; }
151
+  public function interiorRingN($n) { return NULL; }
152
+  public function pointOnSurface() { return NULL; }
153
+  public function explode() { return NULL; }
154 154
 }
155 155
 
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/geometry/Collection.class.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -147,8 +147,8 @@  discard block
 block discarded – undo
147 147
   // Note that the standard is 1 based indexing
148 148
   public function geometryN($n) {
149 149
     $n = intval($n);
150
-    if (array_key_exists($n-1, $this->components)) {
151
-      return $this->components[$n-1];
150
+    if (array_key_exists($n - 1, $this->components)) {
151
+      return $this->components[$n - 1];
152 152
     }
153 153
     else {
154 154
       return NULL;
@@ -279,16 +279,16 @@  discard block
 block discarded – undo
279 279
 
280 280
   // Not valid for this geometry type
281 281
   // --------------------------------
282
-  public function x()                { return NULL; }
283
-  public function y()                { return NULL; }
284
-  public function startPoint()       { return NULL; }
285
-  public function endPoint()         { return NULL; }
286
-  public function isRing()           { return NULL; }
287
-  public function isClosed()         { return NULL; }
288
-  public function pointN($n)         { return NULL; }
289
-  public function exteriorRing()     { return NULL; }
282
+  public function x() { return NULL; }
283
+  public function y() { return NULL; }
284
+  public function startPoint() { return NULL; }
285
+  public function endPoint() { return NULL; }
286
+  public function isRing() { return NULL; }
287
+  public function isClosed() { return NULL; }
288
+  public function pointN($n) { return NULL; }
289
+  public function exteriorRing() { return NULL; }
290 290
   public function numInteriorRings() { return NULL; }
291
-  public function interiorRingN($n)  { return NULL; }
292
-  public function pointOnSurface()   { return NULL; }
291
+  public function interiorRingN($n) { return NULL; }
292
+  public function pointOnSurface() { return NULL; }
293 293
 }
294 294
 
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/geometry/LineString.class.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     foreach ($this->getPoints() as $delta => $point) {
71 71
       $previous_point = $this->geometryN($delta);
72 72
       if ($previous_point) {
73
-        $length += sqrt(pow(($previous_point->getX() - $point->getX()), 2) + pow(($previous_point->getY()- $point->getY()), 2));
73
+        $length += sqrt(pow(($previous_point->getX() - $point->getX()), 2) + pow(($previous_point->getY() - $point->getY()), 2));
74 74
       }
75 75
     }
76 76
     return $length;
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
   public function greatCircleLength($radius = 6378137) {
80 80
     $length = 0;
81 81
     $points = $this->getPoints();
82
-    for($i=0; $i<$this->numPoints()-1; $i++) {
82
+    for ($i = 0; $i < $this->numPoints() - 1; $i++) {
83 83
       $point = $points[$i];
84
-      $next_point = $points[$i+1];
85
-      if (!is_object($next_point)) {continue;}
84
+      $next_point = $points[$i + 1];
85
+      if (!is_object($next_point)) {continue; }
86 86
       // Great circle method
87 87
       $lat1 = deg2rad($point->getY());
88 88
       $lat2 = deg2rad($next_point->getY());
@@ -90,15 +90,15 @@  discard block
 block discarded – undo
90 90
       $lon2 = deg2rad($next_point->getX());
91 91
       $dlon = $lon2 - $lon1;
92 92
       $length +=
93
-        $radius *
93
+        $radius*
94 94
           atan2(
95 95
             sqrt(
96
-              pow(cos($lat2) * sin($dlon), 2) +
97
-                pow(cos($lat1) * sin($lat2) - sin($lat1) * cos($lat2) * cos($dlon), 2)
96
+              pow(cos($lat2)*sin($dlon), 2) +
97
+                pow(cos($lat1)*sin($lat2) - sin($lat1)*cos($lat2)*cos($dlon), 2)
98 98
             )
99 99
             ,
100
-            sin($lat1) * sin($lat2) +
101
-              cos($lat1) * cos($lat2) * cos($dlon)
100
+            sin($lat1)*sin($lat2) +
101
+              cos($lat1)*cos($lat2)*cos($dlon)
102 102
           );
103 103
     }
104 104
     // Returns length in meters.
@@ -108,14 +108,14 @@  discard block
 block discarded – undo
108 108
   public function haversineLength() {
109 109
     $degrees = 0;
110 110
     $points = $this->getPoints();
111
-    for($i=0; $i<$this->numPoints()-1; $i++) {
111
+    for ($i = 0; $i < $this->numPoints() - 1; $i++) {
112 112
       $point = $points[$i];
113
-      $next_point = $points[$i+1];
114
-      if (!is_object($next_point)) {continue;}
113
+      $next_point = $points[$i + 1];
114
+      if (!is_object($next_point)) {continue; }
115 115
       $degree = rad2deg(
116 116
         acos(
117
-          sin(deg2rad($point->getY())) * sin(deg2rad($next_point->getY())) +
118
-            cos(deg2rad($point->getY())) * cos(deg2rad($next_point->getY())) *
117
+          sin(deg2rad($point->getY()))*sin(deg2rad($next_point->getY())) +
118
+            cos(deg2rad($point->getY()))*cos(deg2rad($next_point->getY()))*
119 119
               cos(deg2rad(abs($point->getX() - $next_point->getX())))
120 120
         )
121 121
       );
@@ -130,8 +130,8 @@  discard block
 block discarded – undo
130 130
     $points = $this->getPoints();
131 131
 
132 132
     foreach ($points as $i => $point) {
133
-      if (isset($points[$i+1])) {
134
-        $parts[] = new LineString(array($point, $points[$i+1]));
133
+      if (isset($points[$i + 1])) {
134
+        $parts[] = new LineString(array($point, $points[$i + 1]));
135 135
       }
136 136
     }
137 137
     return $parts;
@@ -168,18 +168,18 @@  discard block
 block discarded – undo
168 168
     $p3_x = $segment->endPoint()->x();
169 169
     $p3_y = $segment->endPoint()->y();
170 170
 
171
-    $s1_x = $p1_x - $p0_x;     $s1_y = $p1_y - $p0_y;
172
-    $s2_x = $p3_x - $p2_x;     $s2_y = $p3_y - $p2_y;
171
+    $s1_x = $p1_x - $p0_x; $s1_y = $p1_y - $p0_y;
172
+    $s2_x = $p3_x - $p2_x; $s2_y = $p3_y - $p2_y;
173 173
 
174
-    $fps = (-$s2_x * $s1_y) + ($s1_x * $s2_y);
175
-    $fpt = (-$s2_x * $s1_y) + ($s1_x * $s2_y);
174
+    $fps = (-$s2_x*$s1_y) + ($s1_x*$s2_y);
175
+    $fpt = (-$s2_x*$s1_y) + ($s1_x*$s2_y);
176 176
 
177 177
     if ($fps == 0 || $fpt == 0) {
178 178
       return FALSE;
179 179
     }
180 180
 
181
-    $s = (-$s1_y * ($p0_x - $p2_x) + $s1_x * ($p0_y - $p2_y)) / $fps;
182
-    $t = ( $s2_x * ($p0_y - $p2_y) - $s2_y * ($p0_x - $p2_x)) / $fpt;
181
+    $s = (-$s1_y*($p0_x - $p2_x) + $s1_x*($p0_y - $p2_y))/$fps;
182
+    $t = ($s2_x*($p0_y - $p2_y) - $s2_y*($p0_x - $p2_x))/$fpt;
183 183
 
184 184
     if ($s > 0 && $s < 1 && $t > 0 && $t < 1) {
185 185
       // Collision detected
Please login to merge, or discard this patch.
require/libs/geoPHP/lib/geometry/Geometry.class.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
   abstract public function geometryN($n);
22 22
   abstract public function startPoint();
23 23
   abstract public function endPoint();
24
-  abstract public function isRing();            // Mssing dependancy
25
-  abstract public function isClosed();          // Missing dependancy
24
+  abstract public function isRing(); // Mssing dependancy
25
+  abstract public function isClosed(); // Missing dependancy
26 26
   abstract public function numPoints();
27 27
   abstract public function pointN($n);
28 28
   abstract public function exteriorRing();
@@ -64,12 +64,12 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
     $bbox = $this->getBBox();
67
-    $points = array (
68
-      new Point($bbox['maxx'],$bbox['miny']),
69
-      new Point($bbox['maxx'],$bbox['maxy']),
70
-      new Point($bbox['minx'],$bbox['maxy']),
71
-      new Point($bbox['minx'],$bbox['miny']),
72
-      new Point($bbox['maxx'],$bbox['miny']),
67
+    $points = array(
68
+      new Point($bbox['maxx'], $bbox['miny']),
69
+      new Point($bbox['maxx'], $bbox['maxy']),
70
+      new Point($bbox['minx'], $bbox['maxy']),
71
+      new Point($bbox['minx'], $bbox['miny']),
72
+      new Point($bbox['maxx'], $bbox['miny']),
73 73
     );
74 74
 
75 75
     $outer_boundary = new LineString($points);
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     // It hasn't been set yet, generate it
148 148
     if (geoPHP::geosInstalled()) {
149 149
       $reader = new GEOSWKBReader();
150
-      $this->geos = $reader->readHEX($this->out('wkb',TRUE));
150
+      $this->geos = $reader->readHEX($this->out('wkb', TRUE));
151 151
     }
152 152
     else {
153 153
       $this->geos = FALSE;
Please login to merge, or discard this patch.
require/libs/geoPHP/geoPHP.inc 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
   }
92 92
 
93 93
   static function getAdapterMap() {
94
-    return array (
94
+    return array(
95 95
       'wkt' =>  'WKT',
96 96
       'ewkt' => 'EWKT',
97 97
       'wkb' =>  'WKB',
@@ -154,8 +154,8 @@  discard block
 block discarded – undo
154 154
 
155 155
     // If the geometry cannot even theoretically be reduced more, then pass it back
156 156
     if (gettype($geometry) == 'object') {
157
-      $passbacks = array('Point','LineString','Polygon');
158
-      if (in_array($geometry->geometryType(),$passbacks)) {
157
+      $passbacks = array('Point', 'LineString', 'Polygon');
158
+      if (in_array($geometry->geometryType(), $passbacks)) {
159 159
         return $geometry;
160 160
       }
161 161
     }
@@ -163,8 +163,8 @@  discard block
 block discarded – undo
163 163
     // If it is a mutlti-geometry, check to see if it just has one member
164 164
     // If it does, then pass the member, if not, then just pass back the geometry
165 165
     if (gettype($geometry) == 'object') {
166
-      $simple_collections = array('MultiPoint','MultiLineString','MultiPolygon');
167
-      if (in_array(get_class($geometry),$passbacks)) {
166
+      $simple_collections = array('MultiPoint', 'MultiLineString', 'MultiPolygon');
167
+      if (in_array(get_class($geometry), $passbacks)) {
168 168
         $components = $geometry->getComponents();
169 169
         if (count($components) == 1) {
170 170
           return $components[0];
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     $geometries = array();
184 184
     $geom_types = array();
185 185
 
186
-    $collections = array('MultiPoint','MultiLineString','MultiPolygon','GeometryCollection');
186
+    $collections = array('MultiPoint', 'MultiLineString', 'MultiPolygon', 'GeometryCollection');
187 187
 
188 188
     foreach ($geometry as $item) {
189 189
       if ($item) {
Please login to merge, or discard this patch.