@@ -123,6 +123,9 @@ discard block |
||
| 123 | 123 | return new Polygon($components); |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | + /** |
|
| 127 | + * @param string $type |
|
| 128 | + */ |
|
| 126 | 129 | function getMulti(&$mem, $type) {
|
| 127 | 130 | // Get the number of items expected in this multi out of the first 4 bytes |
| 128 | 131 | $multi_length = unpack('L',fread($mem,4));
|
@@ -196,6 +199,9 @@ discard block |
||
| 196 | 199 | } |
| 197 | 200 | } |
| 198 | 201 | |
| 202 | + /** |
|
| 203 | + * @param Geometry $point |
|
| 204 | + */ |
|
| 199 | 205 | function writePoint($point) {
|
| 200 | 206 | // Set the coords |
| 201 | 207 | $wkb = pack('dd',$point->x(), $point->y());
|
@@ -215,6 +221,9 @@ discard block |
||
| 215 | 221 | return $wkb; |
| 216 | 222 | } |
| 217 | 223 | |
| 224 | + /** |
|
| 225 | + * @param Geometry $poly |
|
| 226 | + */ |
|
| 218 | 227 | function writePolygon($poly) {
|
| 219 | 228 | // Set the number of lines in this poly |
| 220 | 229 | $wkb = pack('L',$poly->numGeometries());
|
@@ -227,6 +236,9 @@ discard block |
||
| 227 | 236 | return $wkb; |
| 228 | 237 | } |
| 229 | 238 | |
| 239 | + /** |
|
| 240 | + * @param Geometry $geometry |
|
| 241 | + */ |
|
| 230 | 242 | function writeMulti($geometry) {
|
| 231 | 243 | // Set the number of components |
| 232 | 244 | $wkb = pack('L',$geometry->numGeometries());
|
@@ -8,7 +8,6 @@ discard block |
||
| 8 | 8 | /** |
| 9 | 9 | * Read WKT string into geometry objects |
| 10 | 10 | * |
| 11 | - * @param string $WKT A WKT string |
|
| 12 | 11 | * |
| 13 | 12 | * @return Geometry |
| 14 | 13 | */ |
@@ -184,11 +183,17 @@ discard block |
||
| 184 | 183 | else return $str; |
| 185 | 184 | } |
| 186 | 185 | |
| 186 | + /** |
|
| 187 | + * @param string $char |
|
| 188 | + */ |
|
| 187 | 189 | protected function beginsWith($str, $char) { |
| 188 | 190 | if (substr($str,0,strlen($char)) == $char) return TRUE; |
| 189 | 191 | else return FALSE; |
| 190 | 192 | } |
| 191 | 193 | |
| 194 | + /** |
|
| 195 | + * @param string $char |
|
| 196 | + */ |
|
| 192 | 197 | protected function endsWith($str, $char) { |
| 193 | 198 | if (substr($str,(0 - strlen($char))) == $char) return TRUE; |
| 194 | 199 | else return FALSE; |
@@ -193,6 +193,9 @@ |
||
| 193 | 193 | } |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | + /** |
|
| 197 | + * @param Point $point |
|
| 198 | + */ |
|
| 196 | 199 | public function pointOnVertex($point) { |
| 197 | 200 | foreach($this->getPoints() as $vertex) { |
| 198 | 201 | if ($point->equals($vertex)) { |
@@ -41,6 +41,10 @@ |
||
| 41 | 41 | print "Testing Done!"; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | +/** |
|
| 45 | + * @param resource $connection |
|
| 46 | + * @param string $format |
|
| 47 | + */ |
|
| 44 | 48 | function test_postgis($name, $type, $geom, $connection, $format) { |
| 45 | 49 | global $table; |
| 46 | 50 | |
@@ -112,6 +112,9 @@ discard block |
||
| 112 | 112 | $geometry->m(); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | +/** |
|
| 116 | + * @param string $input |
|
| 117 | + */ |
|
| 115 | 118 | function test_adapters($geometry, $format, $input) { |
| 116 | 119 | // Test adapter output and input. Do a round-trip and re-test |
| 117 | 120 | foreach (geoPHP::getAdapterMap() as $adapter_key => $adapter_class) { |
@@ -234,6 +237,9 @@ discard block |
||
| 234 | 237 | } |
| 235 | 238 | } |
| 236 | 239 | |
| 240 | +/** |
|
| 241 | + * @param string $value |
|
| 242 | + */ |
|
| 237 | 243 | function test_detection($value, $format, $file) { |
| 238 | 244 | $detected = geoPHP::detectFormat($value); |
| 239 | 245 | if ($detected != $format) { |
@@ -58,6 +58,10 @@ |
||
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | + /** |
|
| 62 | + * @param string $method_name |
|
| 63 | + * @param string|null $argument |
|
| 64 | + */ |
|
| 61 | 65 | function _methods_tester($geometry, $method_name, $argument) { |
| 62 | 66 | |
| 63 | 67 | if (!method_exists($geometry, $method_name)) { |
@@ -122,6 +122,9 @@ |
||
| 122 | 122 | return self::array_random( empty( $lang ) ? self::$languages : $lang ); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | + /** |
|
| 126 | + * @param string $os |
|
| 127 | + */ |
|
| 125 | 128 | private static function get_processor( $os ) |
| 126 | 129 | { |
| 127 | 130 | return self::array_random( self::$processors[$os] ); |
@@ -319,6 +319,9 @@ |
||
| 319 | 319 | return false; |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | + /** |
|
| 323 | + * @param string $aircraft_icao |
|
| 324 | + */ |
|
| 322 | 325 | public function fromIvaoMtl($aircraft_icao,$airline_icao) { |
| 323 | 326 | $Common = new Common(); |
| 324 | 327 | //echo "\n".'SEARCH IMAGE : http://mtlcatalog.ivao.aero/images/aircraft/'.$aircraft_icao.$airline_icao.'.jpg'; |
@@ -10,6 +10,9 @@ discard block |
||
| 10 | 10 | class update_db { |
| 11 | 11 | public static $db_sqlite; |
| 12 | 12 | |
| 13 | + /** |
|
| 14 | + * @param string $file |
|
| 15 | + */ |
|
| 13 | 16 | public static function download($url, $file, $referer = '') { |
| 14 | 17 | $fp = fopen($file, 'w+'); |
| 15 | 18 | $ch = curl_init(); |
@@ -24,6 +27,9 @@ discard block |
||
| 24 | 27 | fclose($fp); |
| 25 | 28 | } |
| 26 | 29 | |
| 30 | + /** |
|
| 31 | + * @param string $in_file |
|
| 32 | + */ |
|
| 27 | 33 | public static function gunzip($in_file,$out_file_name = '') { |
| 28 | 34 | //echo $in_file.' -> '.$out_file_name."\n"; |
| 29 | 35 | $buffer_size = 4096; // read 4kb at a time |
@@ -45,6 +51,9 @@ discard block |
||
| 45 | 51 | } |
| 46 | 52 | } |
| 47 | 53 | |
| 54 | + /** |
|
| 55 | + * @param string $in_file |
|
| 56 | + */ |
|
| 48 | 57 | public static function unzip($in_file) { |
| 49 | 58 | if ($in_file != '' && file_exists($in_file)) { |
| 50 | 59 | $path = pathinfo(realpath($in_file), PATHINFO_DIRNAME); |
@@ -66,6 +75,9 @@ discard block |
||
| 66 | 75 | } |
| 67 | 76 | } |
| 68 | 77 | |
| 78 | + /** |
|
| 79 | + * @param string $database_file |
|
| 80 | + */ |
|
| 69 | 81 | public static function retrieve_route_sqlite_to_dest($database_file) { |
| 70 | 82 | global $globalDebug, $globalTransaction; |
| 71 | 83 | //$query = 'TRUNCATE TABLE routes'; |
@@ -108,6 +120,10 @@ discard block |
||
| 108 | 120 | } |
| 109 | 121 | return ''; |
| 110 | 122 | } |
| 123 | + |
|
| 124 | + /** |
|
| 125 | + * @param string $database_file |
|
| 126 | + */ |
|
| 111 | 127 | public static function retrieve_route_oneworld($database_file) { |
| 112 | 128 | global $globalDebug, $globalTransaction; |
| 113 | 129 | //$query = 'TRUNCATE TABLE routes'; |
@@ -147,6 +163,9 @@ discard block |
||
| 147 | 163 | return ''; |
| 148 | 164 | } |
| 149 | 165 | |
| 166 | + /** |
|
| 167 | + * @param string $database_file |
|
| 168 | + */ |
|
| 150 | 169 | public static function retrieve_route_skyteam($database_file) { |
| 151 | 170 | global $globalDebug, $globalTransaction; |
| 152 | 171 | //$query = 'TRUNCATE TABLE routes'; |
@@ -186,6 +205,10 @@ discard block |
||
| 186 | 205 | } |
| 187 | 206 | return ''; |
| 188 | 207 | } |
| 208 | + |
|
| 209 | + /** |
|
| 210 | + * @param string $database_file |
|
| 211 | + */ |
|
| 189 | 212 | public static function retrieve_modes_sqlite_to_dest($database_file) { |
| 190 | 213 | global $globalTransaction; |
| 191 | 214 | //$query = 'TRUNCATE TABLE aircraft_modes'; |
@@ -251,6 +274,9 @@ discard block |
||
| 251 | 274 | return ''; |
| 252 | 275 | } |
| 253 | 276 | |
| 277 | + /** |
|
| 278 | + * @param string $database_file |
|
| 279 | + */ |
|
| 254 | 280 | public static function retrieve_modes_flarmnet($database_file) { |
| 255 | 281 | global $globalTransaction; |
| 256 | 282 | $Common = new Common(); |
@@ -321,6 +347,9 @@ discard block |
||
| 321 | 347 | return ''; |
| 322 | 348 | } |
| 323 | 349 | |
| 350 | + /** |
|
| 351 | + * @param string $database_file |
|
| 352 | + */ |
|
| 324 | 353 | public static function retrieve_modes_ogn($database_file) { |
| 325 | 354 | global $globalTransaction; |
| 326 | 355 | //$query = 'TRUNCATE TABLE aircraft_modes'; |
@@ -389,6 +418,9 @@ discard block |
||
| 389 | 418 | return ''; |
| 390 | 419 | } |
| 391 | 420 | |
| 421 | + /** |
|
| 422 | + * @param string $database_file |
|
| 423 | + */ |
|
| 392 | 424 | public static function retrieve_owner($database_file,$country = 'F') { |
| 393 | 425 | global $globalTransaction; |
| 394 | 426 | //$query = 'TRUNCATE TABLE aircraft_modes'; |
@@ -939,6 +971,10 @@ discard block |
||
| 939 | 971 | return ''; |
| 940 | 972 | } |
| 941 | 973 | |
| 974 | + /** |
|
| 975 | + * @param string $filename |
|
| 976 | + * @param string $tletype |
|
| 977 | + */ |
|
| 942 | 978 | public static function tle($filename,$tletype) { |
| 943 | 979 | require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 944 | 980 | global $tmp_dir, $globalTransaction; |
@@ -1071,6 +1107,9 @@ discard block |
||
| 1071 | 1107 | |
| 1072 | 1108 | } |
| 1073 | 1109 | */ |
| 1110 | + /** |
|
| 1111 | + * @param string $filename |
|
| 1112 | + */ |
|
| 1074 | 1113 | public static function waypoints($filename) { |
| 1075 | 1114 | //require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 1076 | 1115 | global $tmp_dir, $globalTransaction; |
@@ -1118,6 +1157,9 @@ discard block |
||
| 1118 | 1157 | return ''; |
| 1119 | 1158 | } |
| 1120 | 1159 | |
| 1160 | + /** |
|
| 1161 | + * @param string $filename |
|
| 1162 | + */ |
|
| 1121 | 1163 | public static function ivao_airlines($filename) { |
| 1122 | 1164 | //require_once(dirname(__FILE__).'/../require/class.Spotter.php'); |
| 1123 | 1165 | global $tmp_dir, $globalTransaction; |