我将主要数据从OSM转换为表格,这是我的osm的主要数据 以下是我在数据库中的数据 总线的gps数据还有另外一个数据,我每隔20秒收集一次总线数据,现在保存在我的数据库中。 问题是我应该怎么做才能使用js或php在osm中绘制路径。 我已经设计了算法,但是没有用,因为它需要很长时间。
我应该做的是通过我的数据库表方式和表节点的osm数据来纠正路由。
我的3张桌子 node from osm
[来自osm的方式] [2]
非常感谢你能帮助我
<meta http-equiv="content-type" content="text/html; charset=utf-8">
$mysql_server_name='localhost'; //改成自己的mysql数据库服务器
$mysql_username='root'; //改成自己的mysql数据库用户名
$mysql_password=''; //改成自己的mysql数据库密码
$mysql_database='goxml'; //改成自己的mysql数据库名
$conn=mysql_connect($mysql_server_name,$mysql_username,$mysql_password) or die("error connecting") ; //连接数据库
mysql_query("set names 'utf8'"); //数据库输出编码 应该与你的数据库编码保持一致.南昌网站建设公司百恒网络PHP工程师建议用UTF-8 国际标准编码.
mysql_select_db($mysql_database); //打开数据库
$sql_getstop ="SELECT RouteId,NameZh,Latitude,Longitude,GoBack FROM getstop; "; //SQL语句
$result_getstop = mysql_query($sql_getstop,$conn); //查询
$arr_getstop=array(array());
while($row1 = mysql_fetch_array($result_getstop))
{
//$arr[]=$row1['Latitude'];
$arr_getstop[]=$row1;
}
echo $arr_getstop[1]['Latitude'];
echo $arr_getstop[9]['Latitude'];
//////////
$arr_test2 ="SELECT RouteID,BusID,Goback,Longitude,Latitude FROM test2 where RouteID='1' ;"; //SQL语句
$result_test2 = mysql_query($arr_test2,$conn); //查询
$arr_test2=array(array());
while($row2 = mysql_fetch_array($result_test2))
{
//$arr[]=$row1['Latitude'];
$arr_test2[]=$row2;
}
for($j=1;$j<count($arr_test2);$j++)
{
echo $arr_test2[$j]['Latitude'];
echo $arr_test2[$j]['Longitude'];
echo "<br/>";
}
/*
//////////////////////////////输出所有的node
$arr_node ="SELECT ID,Lat,Lon FROM node where Lat>25.0883588 and Lon>121.4257346 and Lat <25.1883598 and Lon>121.4257316 ;"; //SQL语句
$result_node = mysql_query($arr_node,$conn); //查询
$arr_node=array(array());
while($row3 = mysql_fetch_array($result_node))
{
//$arr[]=$row1['Latitude'];
$arr_node[]=$row3;
}
echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%";
for($j=1;$j<count($arr_node);$j++)
{
echo $arr_node[$j]['Lat'];
echo $arr_node[$j]['Lon'];
echo "<br/>";
} */
///////////////////////超级运算
echo "result is +++++++++++++++++++++++++++++++++++++++++++++++++";
for($j=0;$j<count($arr_test2);$j++)
{
$node_Lon1=$arr_test2[$j]['Longitude']+0.000117;
$node_Lon2=$arr_test2[$j]['Longitude']-0.000117;
$node_Lat1=$arr_test2[$j]['Latitude']+0.000117;
$node_Lat2=$arr_test2[$j]['Latitude']-0.000117;
$arr_node ="SELECT ID,Lat,Lon FROM node where Lat<$node_Lat1 and Lat>$node_Lat2 and Lon <$node_Lon1 and Lon>$node_Lon2 ;";
$result_node = mysql_query($arr_node,$conn); //查询
$arr_node=array(array());
while($row3 = mysql_fetch_array($result_node))
{
//$arr[]=$row1['Latitude'];
$arr_node[]=$row3;
}
for($m=1;$m<count($arr_node);$m++)
{
echo $arr_node[$m]['Lat'];
echo $arr_node[$m]['Lon'];
echo "<br/>";
}
}
&GT; enter code here
代码运行时间超过了服务时间,无法显示结果