我将OSM的主要数据转换为表,这是osm的主要数据
以下是我来自数据库的数据
总线的gps数据还有另一个数据,我每20秒收集一次总线数据,现在已将其保存在数据库中。
问题是我应该怎么做才能使用js或php在osm中绘制路径。
我已经设计了算法,但由于需要很长时间而无法使用。
我应该做的是通过数据库表方式和表节点中的osm数据纠正路由。
我的3张桌子
node from osm
[来自osm] [2]
gps lat lon every 20 secons
非常感谢您可以帮助我
<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/>";
}
}
?>
enter code here
该代码运行了超过实际时间,无法显示结果
最佳答案
似乎您正在对Map Matching问题感到困惑。
OSM有多种解决方案:
graphhopper/map-matching
TrackMatching
另请在gis.stackexchange.com上阅读有关问题的答案:
Different approaches for map matching
Algorithms for matching segments
关于javascript - OSM如何获取最近的节点,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32983681/