kq_funclib.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. <?php
  2. function queyGpsRouteListByimei( $imei, $start_time, $end_time ){
  3. $dsnV2 = C('DB_DSN_V2');
  4. //地图无分页,占用内存大
  5. if(!$start_time){
  6. $start_time=date('Y-m-d').' 00:00:00';
  7. }
  8. if(!$end_time){
  9. $end_time=date('Y-m-d').' 23:59:59';
  10. }
  11. ini_set('memory_limit', '512M');
  12. $startTime = strtotime($start_time);
  13. $endTime = strtotime($end_time);
  14. $device_number = $imei;
  15. $where = array(
  16. 'DeviceNumber' => trim($device_number),
  17. 'Timestamp' => array('between', array($startTime, $endTime)),
  18. );
  19. $option['table_name'] = 'wxt_route_gps';
  20. $model = new \OtsModel($option['table_name']);
  21. if(!$model){
  22. $this->errmsg = 'failed to init otsmodel ' . $tableName;
  23. return false;
  24. }
  25. $option['pagesize'] = 4000;
  26. $option['sort'] = 'desc';
  27. $data = $model->limit($option['pagesize'])->order($option['sort'])->where($where)->select();
  28. foreach($data as &$val){
  29. $val['OnlineTime']=date('Y-m-d H:i:s',$val['Timestamp']);
  30. }
  31. return $data;
  32. }
  33. function analyzeRouteInfoWayzBatch( $list, $route_type ){
  34. if(!$list){
  35. return array();
  36. }
  37. $macLength=0;
  38. foreach($list as $item){
  39. if(isset($item['WifiMacs']) && $item['WifiMacs'] !=''){
  40. $macLength++;
  41. }
  42. }
  43. $lngLatAlter = new \Jms\Algo\Geometry();
  44. $arr= [];
  45. $preTime=0;
  46. $filter=0;//默认不过滤
  47. $wifiPreTime=0;
  48. $wifiFilter=0;//默认不过滤
  49. $batch_wifi=array();
  50. foreach($list as $k=> $v){
  51. if($filter>0){//gps点过多时间也过滤部分
  52. $interval=abs($v['Timestamp']-$preTime);
  53. if( $interval < $filter){
  54. continue;
  55. }
  56. }
  57. if(isset($v['WifiMacs']) && $v['WifiMacs'] !=''){
  58. $wifiInterval=abs($v['Timestamp']-$wifiPreTime);
  59. if( $wifiInterval < $wifiFilter){
  60. continue;
  61. }
  62. if($route_type=='GPS'){
  63. continue;
  64. }
  65. $batch_wifi[$k]=$v;
  66. if(count($batch_wifi)==16 || $k==($count-1)){
  67. $wifiRes =requestWifiLBS_wayz_batch($batch_wifi);
  68. foreach($wifiRes as $key=>$value){
  69. if($value['success']){
  70. if($value['data']['lon'] == '' || is_null($value['data']['lat'])){
  71. continue;
  72. }
  73. $list[$key]['Latitude'] = $value['data']['lat'];
  74. $list[$key]['Longitude'] = $value['data']['lon'];
  75. $list[$key]['SignalType'] = 'WiFi';
  76. // $list[$key]['WifiAddress'] = $value['data']['address'];
  77. if(isset($value['data']['address'])){
  78. $list[$key]['WifiAddress'] = $value['data']['address'];
  79. }
  80. $arr[$key]=$list[$key];
  81. //array_push($arr, $list[$k]);
  82. }else{
  83. continue;
  84. }
  85. }
  86. $batch_wifi=array();
  87. }
  88. $wifiPreTime=$v['Timestamp'];
  89. }else{
  90. if($route_type=='WiFi'){
  91. continue;
  92. }
  93. if($v['Altitude']=='0.003' || $v['Altitude']=='3'){
  94. continue;
  95. }
  96. if( !isset($v['Latitude']) || !isset($v['Longitude']) || $v['Latitude']<0.065 || $v['Longitude']<0.065){
  97. continue;
  98. }
  99. $latLng = $lngLatAlter->convertBd09ToGcj02($v['Latitude'], $v['Longitude']);
  100. $list[$k]['Latitude'] = $latLng['lat'];
  101. $list[$k]['Longitude'] = $latLng['lng'];
  102. $list[$k]['SignalType'] = 'GPS';
  103. $arr[$k]=$list[$k];
  104. //array_push($arr, $list[$k]);
  105. }
  106. $preTime=$v['Timestamp'];
  107. }
  108. //防止最后剩余wifi点未更新
  109. if($batch_wifi){
  110. $wifiRes =requestWifiLBS_wayz_batch($batch_wifi);
  111. foreach($wifiRes as $key=>$value){
  112. if($value['success']){
  113. if($value['data']['lon'] == '' || is_null($value['data']['lat'])){
  114. continue;
  115. }
  116. $list[$key]['Latitude'] = $value['data']['lat'];
  117. $list[$key]['Longitude'] = $value['data']['lon'];
  118. $list[$key]['SignalType'] = 'WiFi';
  119. // $list[$key]['WifiAddress'] = $value['data']['address'];
  120. if(isset($value['data']['address'])){
  121. $list[$key]['WifiAddress'] = $value['data']['address'];
  122. }
  123. $arr[$key]=$list[$key];
  124. //array_push($arr, $list[$k]);
  125. }else{
  126. continue;
  127. }
  128. }
  129. $batch_wifi=array();
  130. }
  131. ksort($arr);
  132. $response_data=[];
  133. foreach($arr as $item){
  134. array_push($response_data, $item);
  135. }
  136. return $response_data;
  137. }
  138. function bmapFilterOutliers( $rows ){
  139. if(!$rows){
  140. return array();
  141. }
  142. $response_data=[];
  143. $point1=[];
  144. $speedArr=[];
  145. $timestamp=0;
  146. $geometry = new \Jms\Algo\Geometry();
  147. for($i=0;$i<count($rows);$i++){
  148. if($i==0){
  149. //当前最新的一个定位保留
  150. $timestamp=$rows[$i]['Timestamp'];
  151. array_push($response_data, $rows[$i]);
  152. $point1=['lng'=>$rows[$i]['Longitude'],'lat'=>$rows[$i]['Latitude']];
  153. continue;
  154. }
  155. $point2=['lng'=>$rows[$i]['Longitude'],'lat'=>$rows[$i]['Latitude']];
  156. $distance = $geometry->distanceBetween2BdPoints($point1,$point2);
  157. $time=($timestamp-$rows[$i]['Timestamp'])/3600;//单位h
  158. $speed=$distance/$time;//计算速度 超过130的默认为异常点
  159. $speedArr[]=$speed;
  160. if($rows[$i]['SignalType']=='WiFi'){
  161. $length=count($speedArr);
  162. if($length>=5){
  163. $filterSpeed=($speedArr[$length-1]+$speedArr[$length-2]+$speedArr[$length-3]+$speedArr[$length-4]+$speedArr[$length-5])/5*1.5;//超过平均速度 1.5倍
  164. }else{
  165. $filterSpeed=50;
  166. }
  167. if($filterSpeed<10){
  168. $filterSpeed=10;
  169. }
  170. if($speed<$filterSpeed){
  171. $timestamp=$rows[$i]['Timestamp'];
  172. $point1=$point2;
  173. array_push($response_data, $rows[$i]);
  174. }else{
  175. array_pop($speedArr);//去除无效速度
  176. }
  177. }else{
  178. $timestamp=$rows[$i]['Timestamp'];
  179. $point1=$point2;
  180. //只有wifi点需要过滤 gps点不过滤
  181. array_push($response_data, $rows[$i]);
  182. }
  183. }
  184. return $response_data;
  185. return bmapReverseFilterOutliers($response_data);
  186. }
  187. function bmapReverseFilterOutliers( $rows ){
  188. if(!$rows){
  189. return array();
  190. }
  191. $response_data=[];
  192. $point1=[];
  193. $speedArr=[];
  194. $timestamp=0;
  195. $geometry = new \Jms\Algo\Geometry();
  196. for($i=count($rows)-1;$i>=0;$i--){
  197. if($i==count($rows)-1){
  198. //当前最新的一个定位保留
  199. array_push($response_data, $rows[$i]);
  200. $timestamp=$rows[$i]['Timestamp'];
  201. $point1=['lng'=>$rows[$i]['Longitude'],'lat'=>$rows[$i]['Latitude']];
  202. continue;
  203. }
  204. $point2=['lng'=>$rows[$i]['Longitude'],'lat'=>$rows[$i]['Latitude']];
  205. $distance = $geometry->distanceBetween2BdPoints($point1,$point2);
  206. $time=($rows[$i]['Timestamp']-$timestamp)/3600;//单位h
  207. $speed=$distance/$time;//计算速度 超过130的默认为异常点
  208. $speedArr[]=$speed;
  209. if($rows[$i]['SignalType']=='WiFi'){
  210. $length=count($speedArr);
  211. if($length>=5){
  212. $filterSpeed=($speedArr[$length-1]+$speedArr[$length-2]+$speedArr[$length-3]+$speedArr[$length-4]+$speedArr[$length-5])/5*1.5;//超过平均速度 1.5倍
  213. }else{
  214. $filterSpeed=50;
  215. }
  216. // test_log('filt_map','['.$rows[$i]['PassTime'].'] filterSpeed: '. $filterSpeed.'speed: '. $speed.' time: '. $time);
  217. if($filterSpeed<10){
  218. $filterSpeed=10;
  219. }
  220. if($speed<$filterSpeed){
  221. $point1=$point2;
  222. $timestamp=$rows[$i]['Timestamp'];
  223. array_push($response_data, $rows[$i]);
  224. }else{
  225. array_pop($speedArr);//去除无效速度
  226. }
  227. }else{
  228. $point1=$point2;
  229. $timestamp=$rows[$i]['Timestamp'];
  230. //只有wifi点需要过滤 gps点不过滤
  231. array_push($response_data, $rows[$i]);
  232. }
  233. }
  234. $res_data=[];
  235. for($i=0;$i<count($response_data)-1;$i++){
  236. array_push($res_data, $response_data[$i]);
  237. }
  238. return $res_data;
  239. }
  240. function requestWifiLBS_wayz_batch( $routeArr ){
  241. if(!$routeArr){
  242. return array(
  243. 'success' => false,
  244. 'msg' => '空数据'
  245. );
  246. }
  247. //当前毫秒时间戳
  248. list($msec, $sec) = explode(' ', microtime());
  249. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
  250. //鉴权方式 采用 access_key 的方式,在 URL 的 Query Param 中添加 access_key。
  251. $access_key = 'VOiuxRnGhlJsAzVzhaU2Hen24zvwuWck';
  252. $post_data=array();
  253. $batch_keys=array();
  254. $isFilter=true;//
  255. $filterSignal=85;//过滤信号强度
  256. $filterTotal=5;//wifi个数大于次数才开始过滤
  257. foreach($routeArr as $k=>$routeInfo){
  258. $asset = array(
  259. "id"=>date('YmdHis'),
  260. "manufacturer"=>"hzrl",
  261. "model"=>"校园卡",
  262. "imeiMd5"=> md5($routeInfo['DeviceNumber']),
  263. "macAddress"=>$routeInfo['DeviceNumber'],
  264. "serialNumber"=> "",
  265. "uniqueId"=> $routeInfo['DeviceNumber'],
  266. /*"os"=>array(
  267. "type"=> "",
  268. "version"=> ""
  269. )*/
  270. );
  271. //处理WiFi信息
  272. $WifiMacs = $routeInfo['WifiMacs'];
  273. $WifiMacs = explode('|',$WifiMacs);
  274. $wifis = [];
  275. $countWifi=count($WifiMacs);
  276. $total=0;//wifimacs上报 默认按强度排序 可直接计算不过滤前$filterTotal个
  277. foreach($WifiMacs as $v){
  278. $total++;
  279. $w = explode(',',$v);
  280. $wifi = array(
  281. "timestamp"=> intval($msectime),
  282. "signalStrength"=> abs($w[1]),
  283. "macAddress"=> $w[0],
  284. );
  285. //判断是否需要过滤
  286. if( $isFilter && ($total>$filterTotal) && ($wifi['signalStrength'] > $filterSignal )){
  287. continue;
  288. }
  289. array_push($wifis,$wifi);
  290. }
  291. if(count($wifis)<=3){
  292. continue;
  293. }
  294. $data = array(
  295. 'timestamp'=>intval($msectime),
  296. 'id'=>date('YmdHis'),
  297. 'asset'=>$asset,
  298. 'location'=>array(
  299. "wifis"=>$wifis
  300. )
  301. );
  302. //$post_data[$k]=$data;
  303. array_push($post_data,$data);
  304. array_push($batch_keys,$k);
  305. }
  306. $url = "https://api.newayz.com/location/hub/v1/track_points?batch=true&access_key=".$access_key."&field_masks=location.position,location.address,location.place";
  307. //var_dump($url);
  308. //发送数据data
  309. $post_data = json_encode( $post_data );
  310. $curl = curl_init();
  311. curl_setopt($curl, CURLOPT_URL, $url);
  312. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  313. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  314. curl_setopt($curl, CURLOPT_POST, 1);
  315. curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
  316. curl_setopt($curl, CURLOPT_HEADER, 0);
  317. curl_setopt($curl, CURLOPT_HTTPHEADER,
  318. array(
  319. 'Content-Type: application/json; charset=utf-8',
  320. 'Content-Length:' . strlen($post_data)
  321. )
  322. );
  323. // curl_setopt($curl, CURLOPT_HTTPHEADER, array('Accept-Encoding: gzip, deflate'));
  324. // curl_setopt($curl, CURLOPT_ENCODING, "gzip");
  325. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  326. $response = curl_exec($curl);
  327. $errorno = curl_errno($curl);
  328. if ($errorno) {
  329. return array('success' => false, 'data' => $errorno);
  330. }
  331. curl_close($curl);
  332. if(count($batch_keys)==1){
  333. $response = [json_decode($response, true)];
  334. }else{
  335. $response = json_decode($response, true);
  336. }
  337. $response_data=array();
  338. foreach($response as $key=>$value){
  339. $response_key=$batch_keys[$key];
  340. $item=[];
  341. // var_dump($value);
  342. if(!isset($value['location']) ){
  343. $item=array(
  344. 'success' => false,
  345. 'msg' => '定位信息解析失败'
  346. );
  347. }else{
  348. $location = $value['location'];
  349. if(!isset($location['position']) ){
  350. $item=array(
  351. 'success' => false,
  352. 'msg' =>'定位信息解析失败'
  353. );
  354. }else{
  355. $position = $location['position'];
  356. $point = $position['point'];
  357. $address = array(
  358. 'lon' => $point['longitude'],
  359. 'lat' => $point['latitude'],
  360. // 'address' => $location['address']['name']
  361. );
  362. if(isset($location['address']['name'])){
  363. $address['address']=$location['address']['name'];
  364. }
  365. $item=array(
  366. 'success' => true,
  367. 'data' => $address
  368. );
  369. }
  370. }
  371. $response_data[$response_key]=$item;
  372. }
  373. return $response_data;
  374. }
  375. function requestWifiLBS_wayz( $routeInfo ){
  376. if(!$routeInfo){
  377. return array(
  378. 'success' => false,
  379. 'msg' => '空数据'
  380. );
  381. }
  382. if(!isset( $routeInfo['WifiMacs']) ){
  383. return array(
  384. 'success' => false,
  385. 'msg' => '无wifi信息'
  386. );
  387. }
  388. //当前毫秒时间戳
  389. list($msec, $sec) = explode(' ', microtime());
  390. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
  391. //鉴权方式 采用 access_key 的方式,在 URL 的 Query Param 中添加 access_key。
  392. $access_key = 'VOiuxRnGhlJsAzVzhaU2Hen24zvwuWck';
  393. //处理WiFi信息
  394. $WifiMacs = $routeInfo['WifiMacs'];
  395. $WifiMacs = explode('|',$WifiMacs);
  396. $wifis = [];
  397. foreach($WifiMacs as $v){
  398. $w = explode(',',$v);
  399. $wifi = array(
  400. "timestamp"=> intval($msectime),
  401. "signalStrength"=> abs($w[1]),
  402. "macAddress"=> $w[0],
  403. //"ssid"=> "AiMap",
  404. //"frequency"=> 0,
  405. //"channel"=> 0,
  406. //"connected"=> true
  407. );
  408. array_push($wifis,$wifi);
  409. }
  410. $asset = array(
  411. "id"=>date('YmdHis'),
  412. "manufacturer"=>"hzrl",
  413. "model"=>"校园卡",
  414. "imeiMd5"=> md5($routeInfo['DeviceNumber']),
  415. "macAddress"=>$routeInfo['DeviceNumber'],
  416. "serialNumber"=> "",
  417. "uniqueId"=> $routeInfo['DeviceNumber'],
  418. /*"os"=>array(
  419. "type"=> "",
  420. "version"=> ""
  421. )*/
  422. );
  423. $url = "https://api.newayz.com/location/hub/v1/track_points?access_key=".$access_key."&field_masks=location.position,location.address,location.place";
  424. //var_dump($url);
  425. //发送数据data
  426. $data = array(
  427. 'timestamp'=>intval($msectime),
  428. 'id'=>date('YmdHis'),
  429. 'asset'=>$asset,
  430. 'location'=>array(
  431. "wifis"=>$wifis
  432. )
  433. );
  434. $data = json_encode( $data );
  435. debug_log('wayz_wifi_data',$routeInfo['DeviceNumber']."发送数据:".$data);
  436. $curl = curl_init();
  437. curl_setopt($curl, CURLOPT_URL, $url);
  438. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  439. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  440. curl_setopt($curl, CURLOPT_POST, 1);
  441. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  442. curl_setopt($curl, CURLOPT_HEADER, 0);
  443. curl_setopt($curl, CURLOPT_HTTPHEADER,
  444. array(
  445. 'Content-Type: application/json; charset=utf-8',
  446. 'Content-Length:' . strlen($data)
  447. )
  448. );
  449. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  450. $response = curl_exec($curl);
  451. $errorno = curl_errno($curl);
  452. if ($errorno) {
  453. return array('success' => false, 'data' => $errorno);
  454. }
  455. debug_log('wayz_wifi_res',$routeInfo['DeviceNumber']."返回结果".$response);
  456. curl_close($curl);
  457. $response = json_decode($response, true);
  458. //echo '-------way ---------';
  459. //var_dump($response);
  460. //var_dump($response);
  461. /*if($response['info'] != 'OK' || count($response['result']) <2 ){
  462. return array(
  463. 'success' => false,
  464. 'msg' => $response['info']
  465. );
  466. }*/
  467. $location = $response['location'];
  468. $position = $location['position'];
  469. $point = $position['point'];
  470. $geometry = new \Jms\Algo\Geometry();
  471. $lngLat = $geometry->convertGcj02ToBd09($point['latitude'],$point['longitude']);
  472. $response = array(
  473. 'lon' => $lngLat['lng'],
  474. 'lat' => $lngLat['lat'],
  475. 'address' => $location['address']['name']
  476. );
  477. debug_log('wayz_wifi_res',$routeInfo['DeviceNumber']."转换坐标后:".json_encode($response,JSON_UNESCAPED_UNICODE));
  478. //var_dump($response);
  479. //echo '--------way end---------';
  480. return array(
  481. 'success' => true,
  482. 'data' => $response
  483. );
  484. }
  485. function requestWifiLBS_gaode( $routeInfo ){
  486. if(!$routeInfo){
  487. return array(
  488. 'success' => false,
  489. 'msg' => '空数据'
  490. );
  491. }
  492. if(!isset( $routeInfo['WifiMacs']) ){
  493. return array(
  494. 'success' => false,
  495. 'msg' => '无wifi信息'
  496. );
  497. }
  498. $WifiMacs = $routeInfo['WifiMacs'];
  499. $userKey = '';
  500. if(!$userKey){
  501. $userKey = 'f107b0b3a513e6e37c6fb0424bed6633';
  502. }
  503. //$url = 'http://api.cellocation.com:81/loc/?wl=' . $WifiMacs .'&output=json&coord=gcj02';
  504. $url = 'http://apilocate.amap.com/position?accesstype=1&imei=' . $routeInfo['DeviceNumber'] . '&macs=' . $WifiMacs . '&key=' . $userKey;
  505. $curl = curl_init($url);
  506. curl_setopt($curl, CURLOPT_TIMEOUT, 3);
  507. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  508. $response = curl_exec($curl);
  509. if (curl_errno($curl)) {
  510. $errmsg = curl_error($curl);
  511. curl_close($curl);
  512. return array(
  513. 'success' => false,
  514. 'msg' => $errmsg
  515. );
  516. }
  517. curl_close($curl);
  518. $response = json_decode($response, true);
  519. if($response['info'] != 'OK' || count($response['result']) <2 ){
  520. return array(
  521. 'success' => false,
  522. 'msg' => $response['info']
  523. );
  524. }
  525. $result = $response['result'];
  526. $location = $response['result']['location'];
  527. $location = explode(',', $location);
  528. $geometry = new \Jms\Algo\Geometry();
  529. $lngLat = $geometry->convertGcj02ToBd09($location[1],$location[0]);
  530. $response = array(
  531. 'lon' => $lngLat['lng'],
  532. 'lat' => $lngLat['lat'],
  533. 'address' => $result['desc']
  534. );
  535. return array(
  536. 'success' => true,
  537. 'data' => $response
  538. );
  539. }
  540. function requestWifiLBS( $routeInfo ){
  541. if(C('IS_USE_WIFI_WAYZ_API')){
  542. return requestWifiLBS_wayz($routeInfo);
  543. }
  544. if(!$routeInfo){
  545. return array(
  546. 'success' => false,
  547. 'msg' => '空数据'
  548. );
  549. }
  550. if(!isset( $routeInfo['WifiMacs']) ){
  551. return array(
  552. 'success' => false,
  553. 'msg' => '无wifi信息'
  554. );
  555. }
  556. $WifiMacs = $routeInfo['WifiMacs'];
  557. $userKey = '';
  558. if(!$userKey){
  559. $userKey = 'f107b0b3a513e6e37c6fb0424bed6633';
  560. }
  561. //$url = 'http://api.cellocation.com:81/loc/?wl=' . $WifiMacs .'&output=json&coord=gcj02';
  562. $url = 'http://apilocate.amap.com/position?accesstype=1&imei=' . $routeInfo['DeviceNumber'] . '&macs=' . $WifiMacs . '&key=' . $userKey;
  563. $curl = curl_init($url);
  564. curl_setopt($curl, CURLOPT_TIMEOUT, 3);
  565. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  566. $response = curl_exec($curl);
  567. if (curl_errno($curl)) {
  568. $errmsg = curl_error($curl);
  569. curl_close($curl);
  570. return array(
  571. 'success' => false,
  572. 'msg' => $errmsg
  573. );
  574. }
  575. curl_close($curl);
  576. $response = json_decode($response, true);
  577. if($response['info'] != 'OK' || count($response['result']) <2 ){
  578. return array(
  579. 'success' => false,
  580. 'msg' => $response['info']
  581. );
  582. }
  583. $result = $response['result'];
  584. $location = $response['result']['location'];
  585. $location = explode(',', $location);
  586. $geometry = new \Jms\Algo\Geometry();
  587. $lngLat = $geometry->convertGcj02ToBd09($location[1],$location[0]);
  588. $response = array(
  589. 'lon' => $lngLat['lng'],
  590. 'lat' => $lngLat['lat'],
  591. 'address' => $result['desc']
  592. );
  593. return array(
  594. 'success' => true,
  595. 'data' => $response
  596. );
  597. }
  598. function requestWifiLBS_gaode_batch( $routeArr ){
  599. if(!$routeArr){
  600. return array(
  601. 'success' => false,
  602. 'msg' => '空数据'
  603. );
  604. }
  605. $mh = curl_multi_init();
  606. $curlArray = array();
  607. $t1=microtime(true);
  608. foreach($routeArr as $key=>$routeInfo){
  609. if(!isset( $routeInfo['WifiMacs'])){
  610. continue;
  611. }
  612. $WifiMacs = $routeInfo['WifiMacs'];
  613. $userKey = 'f107b0b3a513e6e37c6fb0424bed6633';
  614. $ch = curl_init();
  615. $url = 'http://apilocate.amap.com/position?accesstype=1&imei=' . $routeInfo['DeviceNumber'] . '&macs=' . $WifiMacs . '&key=' . $userKey;
  616. curl_setopt($ch, CURLOPT_URL, $url);
  617. curl_setopt($ch, CURLOPT_TIMEOUT, 3);
  618. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  619. curl_multi_add_handle($mh, $ch);
  620. $curlArray[$key] = $ch;
  621. }
  622. // echo count($curlArray);
  623. //debug_log('gaode_wifi_lbs','count:--'. (count($curlArray)));
  624. $running = NULL;
  625. do {
  626. // usleep(10000);
  627. curl_multi_exec($mh,$running);
  628. } while($running > 0);
  629. $response_data=array();
  630. $success=0;
  631. $fail=0;
  632. foreach($curlArray as $key => $info) {
  633. // $res[$key] = curl_multi_getcontent($curlArray[$key]);
  634. $result = curl_multi_getcontent($curlArray[$key]);
  635. $response = json_decode($result,true);
  636. if($response['info'] != 'OK' || count($response['result']) < 2 ){
  637. $fail++;
  638. $item=array(
  639. 'success' => false,
  640. 'msg' => '定位信息解析失败'
  641. );
  642. }else{
  643. $success++;
  644. $result = $response['result'];
  645. $location = $result['location'];
  646. $location = explode(',', $location);
  647. $address = array(
  648. 'lon' => $location[0],
  649. 'lat' => $location[1],
  650. 'address' => $result['desc']
  651. );
  652. $item=array(
  653. 'success' => true,
  654. 'data' => $address
  655. );
  656. }
  657. $response_data[$key]=$item;
  658. }
  659. debug_log('gaode_wifi_lbs','result:---success:--'.$success.'--fail:--'. $fail);
  660. foreach($curlArray as $key => $info){
  661. curl_multi_remove_handle($mh, $curlArray[$key]);
  662. }
  663. curl_multi_close($mh);
  664. $t3=microtime(true);
  665. debug_log('gaode_wifi_lbs','t3:---'. ($t3-$t1));
  666. // echo 't3:---'. ($t3-$t2).PHP_EOL;
  667. return $response_data;
  668. }
  669. function analyzeRouteInfoGaodeBatch( $list, $route_type = All ){
  670. if(!$list){
  671. return array();
  672. }
  673. $macLength=0;
  674. foreach($list as $item){
  675. if(isset($item['WifiMacs']) && $item['WifiMacs'] !=''){
  676. $macLength++;
  677. }
  678. }
  679. $lngLatAlter = new \Jms\Algo\Geometry();
  680. $arr= [];
  681. $preTime=0;
  682. $filter=0;//默认不过滤
  683. $wifiPreTime=0;
  684. $wifiFilter=0;//默认不过滤
  685. $count=count($list);
  686. $batch_wifi=array();
  687. foreach($list as $k=> $v){
  688. if($filter>0){//gps点过多时间也过滤部分
  689. $interval=abs($v['Timestamp']-$preTime);
  690. if( $interval < $filter){
  691. continue;
  692. }
  693. }
  694. if(isset($v['WifiMacs']) && $v['WifiMacs'] !=''){
  695. $wifiInterval=abs($v['Timestamp']-$wifiPreTime);
  696. if( $wifiInterval < $wifiFilter){
  697. continue;
  698. }
  699. if($route_type=='GPS'){
  700. continue;
  701. }
  702. $batch_wifi[$k]=$v;
  703. if(count($batch_wifi)==8|| $k==($count-1)){
  704. $wifiRes =requestWifiLBS_gaode_batch($batch_wifi);
  705. foreach($wifiRes as $key=>$value){
  706. if($value['success']){
  707. if($value['data']['lon'] == '' || is_null($value['data']['lat'])){
  708. continue;
  709. }
  710. $list[$key]['Latitude'] = $value['data']['lat'];
  711. $list[$key]['Longitude'] = $value['data']['lon'];
  712. $list[$key]['SignalType'] = 'WiFi';
  713. $list[$key]['WifiAddress'] = $value['data']['address'];
  714. $arr[$key]=$list[$key];
  715. //array_push($arr, $list[$k]);
  716. }else{
  717. continue;
  718. }
  719. }
  720. $batch_wifi=array();
  721. }
  722. $wifiPreTime=$v['Timestamp'];
  723. }else{
  724. if($route_type=='WiFi'){
  725. continue;
  726. }
  727. if($v['Altitude']=='0.003' || $v['Altitude']=='3'){
  728. continue;
  729. }
  730. if( !isset($v['Latitude']) || !isset($v['Longitude']) || $v['Latitude']<0.065 || $v['Longitude']<0.065){
  731. continue;
  732. }
  733. $latLng = $lngLatAlter->convertBd09ToGcj02($v['Latitude'], $v['Longitude']);
  734. $list[$k]['Latitude'] = $latLng['lat'];
  735. $list[$k]['Longitude'] = $latLng['lng'];
  736. $list[$k]['SignalType'] = 'GPS';
  737. $arr[$k]=$list[$k];
  738. //array_push($arr, $list[$k]);
  739. }
  740. $preTime=$v['Timestamp'];
  741. }
  742. //防止最后剩余wifi点未更新
  743. if($batch_wifi){
  744. $wifiRes =requestWifiLBS_gaode_batch($batch_wifi);
  745. foreach($wifiRes as $key=>$value){
  746. if($value['success']){
  747. if($value['data']['lon'] == '' || is_null($value['data']['lat'])){
  748. continue;
  749. }
  750. $list[$key]['Latitude'] = $value['data']['lat'];
  751. $list[$key]['Longitude'] = $value['data']['lon'];
  752. $list[$key]['SignalType'] = 'WiFi';
  753. $list[$key]['WifiAddress'] = $value['data']['address'];
  754. $arr[$key]=$list[$key];
  755. //array_push($arr, $list[$k]);
  756. }else{
  757. continue;
  758. }
  759. }
  760. $batch_wifi=array();
  761. }
  762. $response_data=[];
  763. ksort($arr);
  764. foreach($arr as $key=>$item){
  765. array_push($response_data, $item);
  766. }
  767. return $response_data;
  768. }
  769. function pb_abs_url( $url ){
  770. if(strpos($url,'http://') === 0)
  771. return $url;
  772. if(strpos($url,'https://') === 0)
  773. return $url;
  774. return 'http://'.$_SERVER['HTTP_HOST'] . U($url);
  775. }
  776. function hex2str( $hex ){
  777. $string="";
  778. for($i=0;$i<strlen($hex)-1;$i+=2)
  779. $string.=chr(hexdec($hex[$i].$hex[$i+1]));
  780. return $string;
  781. }
  782. function str2hex( $string ){
  783. $hex="";
  784. for($i=0;$i<strlen($string);$i++)
  785. $hex.=dechex(ord($string[$i]));
  786. $hex=strtoupper($hex);
  787. return $hex;
  788. }
  789. function wx_token_cache( $appid, $access_token, $expire_time ){
  790. $key = 'access_token_'.$appid;
  791. if(!$expire_time || $expire_time < 0)
  792. $expire_time = 3600;
  793. if($access_token){
  794. S($key,$access_token,$expire_time);
  795. }
  796. else{
  797. return S($key);
  798. }
  799. }
  800. function create_log( $message, $filename = 'error_log' ){
  801. //要创建的多级目录
  802. if(defined('SOLUTION_LOG_PATH')){
  803. $log_dir = SOLUTION_LOG_PATH .'/xskq/'.date('Y-m-d').'/';
  804. }else{
  805. $log_dir = './log/xskq/'.date('Y-m-d').'/';
  806. }
  807. //判断目录存在否,不存在则创建目录
  808. if (!is_dir($log_dir)){
  809. //第三个参数是“true”表示能创建多级目录
  810. $res=mkdir($log_dir,0777,true);
  811. exec("chmod -R 777 $log_dir ");
  812. if (!$res){
  813. $content = "目录 ". $log_dir." 创建失败";
  814. if(APP_DEBUG){
  815. echo $content;
  816. }
  817. return array('success'=>false,'message'=>$content);
  818. }
  819. }
  820. $file_path = $log_dir .$filename. '.log';//要写入文件的文件名(可以是任意文件名),如果文件不存在,将会创建一个
  821. $content = '['.date('Y-m-d H:i:s') .'] ' .json_encode($message,JSON_UNESCAPED_UNICODE) . PHP_EOL;
  822. if(APP_DEBUG){
  823. echo $content;
  824. }
  825. if(!file_put_contents($file_path, $content,FILE_APPEND)){// 这个函数支持版本(PHP 5)
  826. $content = "日志写入失败".PHP_EOL;
  827. if(APP_DEBUG){
  828. echo $content;
  829. }
  830. return array('success'=>false,'message'=>$content);
  831. }
  832. return array('success'=>true,'message'=>'add log success');
  833. }