<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图]]></title><description><![CDATA[<p dir="auto">谷歌cartographer_ros请参考<a href="http://community.bwbot.org/topic/136/google%E6%BF%80%E5%85%89%E9%9B%B7%E8%BE%BEslam%E7%AE%97%E6%B3%95cartographer%E7%9A%84%E5%AE%89%E8%A3%85%E5%8F%8Abag%E5%8C%85demo%E6%B5%8B%E8%AF%95">这篇安装教程</a>：http://community.bwbot.org/topic/136/google激光雷达slam算法cartographer的安装及bag包demo测试。2020年之后购买的小强用户可以跳过安装步骤，车载主机已经配置好。</p>
<h3>1. 数据包准备</h3>
<p dir="auto">使用cartographer_ros进行3d建图，需要三维点云数据和IMU数据，三维点云由速腾聚创3d激光雷达提供，IMU数据则由小强xq5开发平台提供。<br />
rosbag数据包的详细制作过程，请参考<a href="https://community.bwbot.org/topic/522/%E4%BD%BF%E7%94%A8rosbag%E5%BD%95%E5%88%B6%E5%92%8C%E5%9B%9E%E6%94%BE3d%E6%BF%80%E5%85%89%E9%9B%B7%E8%BE%BE%E6%95%B0%E6%8D%AE%E5%92%8C%E5%B0%8F%E5%BC%BAros%E5%BC%80%E5%8F%91%E5%B9%B3%E5%8F%B0%E7%9A%84%E9%87%8C%E7%A8%8B%E8%AE%A1imu%E6%95%B0%E6%8D%AE" target="_blank" rel="noopener noreferrer">这篇教程</a>: https://community.bwbot.org/topic/522/使用rosbag录制和回放3d激光雷达数据和小强ros开发平台的里程计imu数据<br />
下文教程将以蓝鲸机器人录制的bag包为例，演示如何建立三维地图。<a href="https://pan.baidu.com/s/1rBWFRS90lB9_3_OTLUaCxA" target="_blank" rel="noopener noreferrer">bag包百度云下载地址</a></p>
<h3>2. 配置cartographer_ros</h3>
<p dir="auto">蓝鲸机器人github上的cartographer_ros已经配置好了所有文件，对于加装速腾聚创小强xq5开发平台采集的数据包，cartographer_ros需要使用的是下列文件，简略的说明在下文。cartographer_ros的详细文档可以参考<a href="https://google-cartographer-ros.readthedocs.io/en/latest/" target="_blank" rel="noopener noreferrer">官方wiki</a></p>
<pre><code>cartographer_ros/launch/demo_xiaoqiang_3d.launch #建图时启动的launch文件，负责启动xiaoqiang_3d.launch文件和rviz

cartographer_ros/launch/xiaoqiang_3d.launch #用来加载cartographer_ros主要的启动节点和参数文件，话题数据名字的remap也在这个文件设定。

cartographer_ros/launch/assets_writer_xiaoqiang_3d.launch #用来将demo_xiaoqiang_3d.launch输出的pbstreamfile转换成ply点云数据

cartographer_ros/urdf/rslidar_2d.urd #模型文件，用来发布3d激光雷达、小车里程计、IMU、小车本体之间的tf关系

cartographer_ros/configuration_files/xiaoqiang_3d.lua #cartographer_ros算法参数配置文件，优化建图效果需要调整的参数就是这个文件。
</code></pre>
<p dir="auto">ros中坐标系的设置，请参考<a href="https://community.bwbot.org/topic/227/ros%E5%9D%90%E6%A0%87%E7%B3%BB%E7%BB%9F-%E5%B8%B8%E8%A7%81%E7%9A%84%E5%9D%90%E6%A0%87%E7%B3%BB%E5%92%8C%E5%85%B6%E5%90%AB%E4%B9%89" target="_blank" rel="noopener noreferrer">这篇教程</a>，小强xq5平台的base_link原点设置在两个主动轮轴中间位置。</p>
<pre><code># cartographer_ros)/urdf/rslidar_2d.urd文件需要调整的参数是3d雷达相对base_link的安装位置，laserbase_link等价于base_link
&lt;joint name="horizontal_laser_link_joint" type="fixed"&gt;
    &lt;parent link="laserbase_link" /&gt;
    &lt;child link="rslidar" /&gt;
    &lt;origin xyz="0 0 0.4" rpy="0 0 0" /&gt;
  &lt;/joint&gt;

#小强用户速腾聚创雷达按上面设置即可
#小强用户北科天绘雷达需要把角度反转180度
&lt;joint name="horizontal_laser_link_joint" type="fixed"&gt;
    &lt;parent link="laserbase_link" /&gt;
    &lt;child link="rslidar" /&gt;
    &lt;origin xyz="0 0 0.4" rpy="0 0 3.1415926" /&gt;
  &lt;/joint&gt;
</code></pre>
<h3>3. 启动cartographer_ros，播放rosbag数据包，开始建图</h3>
<pre><code>#先关闭小车的ros启动节点
#在小车主机上新开一个命令终端
sudo service startup stop
roscore
</code></pre>
<pre><code>#启动cartographer
#在小车主机上新开一个命令终端
roslaunch cartographer_ros demo_xiaoqiang_3d.launch
</code></pre>
<pre><code>#播放bag数据
#在小车主机上新开一个命令终端
rosbag play  --clock  2018-08-11-13-20-34.bag
</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1534126257398-screenshot-from-2018-08-12-18-20-35-resized.png" alt="0_1534126256505_Screenshot from 2018-08-12 18-20-35.png" class=" img-responsive img-markdown" /><br />
<img src="/assets/uploads/files/1534129187259-screenshot-from-2018-08-12-21-55-29-resized.png" alt="0_1534129179226_Screenshot from 2018-08-12 21-55-29.png" class=" img-responsive img-markdown" /></p>
<h3>4. bag播放完成后，使用rosservice保存cartographer_ros建图结果，用于后续地图输出。</h3>
<pre><code>#打开ros service调用工具
#在小车主机上新开一个命令终端
rosrun rqt_service_caller rqt_service_caller
#先调用/finish_trajectory服务结束建图
#接着调用/write_state服务，将cartographer_ros建图结果保存为pbstream文件，test_3d.pbfile。保存成功后，文件可以在～/.ros/目录找到
</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1534127016734-screenshot-from-2018-08-12-20-42-30-resized.png" alt="0_1534127015499_Screenshot from 2018-08-12 20-42-30.png" class=" img-responsive img-markdown" /><br />
<img src="/assets/uploads/files/1534127030082-screenshot-from-2018-08-12-20-42-57-resized.png" alt="0_1534127029035_Screenshot from 2018-08-12 20-42-57.png" class=" img-responsive img-markdown" /><br />
关闭cartographer_ros，建图部分完成，下文继续处理pbstream文件得到点云地图文件</p>
<h3>5.用assets_writer_xiaoqiang_3d.launch将pbstream文件转换成ply点云文件</h3>
<pre><code>#在小车主机上新开一个命令终端，下面是一条命令，假设bag文件和pbstream文件保存在了home目录
roslaunch cartographer_ros assets_writer_xiaoqiang_3d.launch    bag_filenames:=${HOME}/2018-08-11-13-20-34.bag    pose_graph_filename:=${HOME}/test_3d.pbfile
</code></pre>
<p dir="auto">等待一段时间，处理完成后命令会自动退出，此时在bag文件旁边会生成一个.bag_points.ply后缀文件，这个就是点云文件。<br />
<img src="/assets/uploads/files/1534127989523-2018-08-11-13-20-34.bag_xray_xy_all-resized.png" alt="0_1534127988119_2018-08-11-13-20-34.bag_xray_xy_all.png" class=" img-responsive img-markdown" /></p>
<h3>6.使用pcl工具将ply文件转换成pcd文件</h3>
<pre><code>#在小车主机上新开一个命令终端，假设ply文件在home目录
pcl_ply2pcd 2018-08-11-13-20-34.bag_points.ply test_3d.pcd
</code></pre>
<p dir="auto">转换成功后就可以得到tes_3d.pcd文件，可以直接用pcl可视化工具查看</p>
<pre><code>pcl_viewer test_3d.pcd
</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1534127875927-3d_1-resized.png" alt="0_1534127875497_3d_1.png" class=" img-responsive img-markdown" /></p>
]]></description><link>http://community.bwbot.org/topic/523/谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Jul 2026 03:59:10 GMT</lastBuildDate><atom:link href="http://community.bwbot.org/topic/523.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 13 Aug 2018 02:40:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Thu, 24 Dec 2020 01:43:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/1088">@星之卡比</a> 您好，您这个问题解决了吗，我查看了很多教程，也发现都是用bag包进行处理的，所以很困惑。</p>
]]></description><link>http://community.bwbot.org/post/4111</link><guid isPermaLink="true">http://community.bwbot.org/post/4111</guid><dc:creator><![CDATA[gychen-n]]></dc:creator><pubDate>Thu, 24 Dec 2020 01:43:37 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Fri, 24 Jul 2020 05:24:30 GMT]]></title><description><![CDATA[<p dir="auto">贴主你好，请问你这里可以实现实时3D建图吗？还是说必须使用bag数据集回放才行？</p>
]]></description><link>http://community.bwbot.org/post/3885</link><guid isPermaLink="true">http://community.bwbot.org/post/3885</guid><dc:creator><![CDATA[wjjjjyourFA]]></dc:creator><pubDate>Fri, 24 Jul 2020 05:24:30 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Mon, 06 Jul 2020 08:45:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/671">@GaHoo</a> 请问一下，我也遇到了rqtservce找不到finishtrajectory这个问题，报了一堆蓝字，也有红错，请问您是怎么解决的呢？</p>
]]></description><link>http://community.bwbot.org/post/3863</link><guid isPermaLink="true">http://community.bwbot.org/post/3863</guid><dc:creator><![CDATA[星之卡比]]></dc:creator><pubDate>Mon, 06 Jul 2020 08:45:06 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Wed, 12 Jun 2019 01:24:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 老师，我在使用cartographer建图过程中感觉没有进行闭环，建出的图还是斜的，请问应该怎样操作？</p>
]]></description><link>http://community.bwbot.org/post/1328</link><guid isPermaLink="true">http://community.bwbot.org/post/1328</guid><dc:creator><![CDATA[li]]></dc:creator><pubDate>Wed, 12 Jun 2019 01:24:30 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Tue, 21 May 2019 01:11:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/902">@li</a> move base也有3d的插件，但是我没用过。你可以自己研究一下 https://github.com/ros-planning/3d_navigation</p>
]]></description><link>http://community.bwbot.org/post/1273</link><guid isPermaLink="true">http://community.bwbot.org/post/1273</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Tue, 21 May 2019 01:11:09 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Mon, 20 May 2019 08:26:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 谢谢老师，这样建出来的二维地图在使用过程中是不是就缺少了很多三维特征？那使用多线的雷达进行定位导航的效果是不是就和使用单线的雷达一样了？</p>
]]></description><link>http://community.bwbot.org/post/1270</link><guid isPermaLink="true">http://community.bwbot.org/post/1270</guid><dc:creator><![CDATA[li]]></dc:creator><pubDate>Mon, 20 May 2019 08:26:44 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Fri, 17 May 2019 01:03:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/902">@li</a> pcd是不行的要保存成pgm格式。可以参考<a href="https://community.bwbot.org/topic/525" target="_blank" rel="noopener noreferrer">这里</a></p>
]]></description><link>http://community.bwbot.org/post/1261</link><guid isPermaLink="true">http://community.bwbot.org/post/1261</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Fri, 17 May 2019 01:03:03 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Thu, 16 May 2019 13:09:05 GMT]]></title><description><![CDATA[<p dir="auto">老师，这样建的地图是这种pcd格式，能直接用于amcl和move_base两个包的定位导航吗？如果不能应该怎样修改</p>
]]></description><link>http://community.bwbot.org/post/1260</link><guid isPermaLink="true">http://community.bwbot.org/post/1260</guid><dc:creator><![CDATA[li]]></dc:creator><pubDate>Thu, 16 May 2019 13:09:05 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Wed, 15 May 2019 03:15:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/793">@Duke-Allen</a> 我也遇到了图一相同的问题，请问您是怎么解决的</p>
]]></description><link>http://community.bwbot.org/post/1257</link><guid isPermaLink="true">http://community.bwbot.org/post/1257</guid><dc:creator><![CDATA[LDZ]]></dc:creator><pubDate>Wed, 15 May 2019 03:15:47 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Sat, 09 Mar 2019 12:12:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a><br />
请问一下小强机器人的IMU数据经过处理了吗？我用的IMU是MPU6050，是否需要将三轴加速度、陀螺值进行处理再传入呢？还有我看cartographer官方指南中说使用IMU的话，tracking_frame必须与IMU的frame一致，laserbase_link与小强所用IMU的帧一致吗？</p>
]]></description><link>http://community.bwbot.org/post/1117</link><guid isPermaLink="true">http://community.bwbot.org/post/1117</guid><dc:creator><![CDATA[Duke-Allen]]></dc:creator><pubDate>Sat, 09 Mar 2019 12:12:03 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Fri, 22 Feb 2019 05:26:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a> <a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a><br />
先运行的cartographer然后打开的数据包，终端显示这种错误<br />
<img src="/assets/uploads/files/1550805404771-2019-02-22-11-16-04%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE.png" alt="2019-02-22 11-16-04屏幕截图.png" class=" img-responsive img-markdown" /><br />
rviz中<br />
<img src="/assets/uploads/files/1550805928065-2019-02-22-11-21-46%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE.png" alt="2019-02-22 11-21-46屏幕截图.png" class=" img-responsive img-markdown" /><br />
我录的数据集是<img src="/assets/uploads/files/1550806018952-2019-02-21-11-40-49%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE.png" alt="2019-02-21 11-40-49屏幕截图.png" class=" img-responsive img-markdown" /><br />
但是rviz中没有显示建图<br />
请问这是什么情况呢？该怎么解决呢？</p>
]]></description><link>http://community.bwbot.org/post/1101</link><guid isPermaLink="true">http://community.bwbot.org/post/1101</guid><dc:creator><![CDATA[Duke-Allen]]></dc:creator><pubDate>Fri, 22 Feb 2019 05:26:31 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Fri, 22 Feb 2019 03:15:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/793">@Duke-Allen</a> cartographer还没有正常工作，没有开始建图所以没有发布map相关的tf。先让 cartographer正常工作，开始建图后就有了</p>
]]></description><link>http://community.bwbot.org/post/1100</link><guid isPermaLink="true">http://community.bwbot.org/post/1100</guid><dc:creator><![CDATA[xiaoqiang]]></dc:creator><pubDate>Fri, 22 Feb 2019 03:15:28 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Fri, 22 Feb 2019 02:58:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> <a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a> 为什么打开rviz后显示"No tf data.Actual error: [map] does not exist"，但我的机器人模型单独是可以发布tf的，而且机器人的模型也有错误，好几个link显示：No tranform from [] to [map]？请问应该怎么解决呢</p>
]]></description><link>http://community.bwbot.org/post/1099</link><guid isPermaLink="true">http://community.bwbot.org/post/1099</guid><dc:creator><![CDATA[Duke-Allen]]></dc:creator><pubDate>Fri, 22 Feb 2019 02:58:23 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Sat, 05 Jan 2019 08:17:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a> 你好，我这边没有生成.ply文件，倒是生成了很多.png文件，请问这是什么原因？要怎么解决？谢谢！</p>
]]></description><link>http://community.bwbot.org/post/1038</link><guid isPermaLink="true">http://community.bwbot.org/post/1038</guid><dc:creator><![CDATA[Jaccica]]></dc:creator><pubDate>Sat, 05 Jan 2019 08:17:07 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Sat, 05 Jan 2019 08:04:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/744">@fgy4010</a> 我也没生成.ply文件，反而生成的是.png文件，不知道怎么回事？请问怎么解决？</p>
]]></description><link>http://community.bwbot.org/post/1036</link><guid isPermaLink="true">http://community.bwbot.org/post/1036</guid><dc:creator><![CDATA[Jaccica]]></dc:creator><pubDate>Sat, 05 Jan 2019 08:04:58 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Wed, 12 Dec 2018 10:10:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/767">@ReubenY</a> 在 <a href="/post/1003">谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图</a> 中说：</p>
<blockquote>
<p dir="auto">有用车的轮式里程计的信息。就是我现在已经得到准确的里程计，然后用这个算法建图可以么</p>
</blockquote>
<p dir="auto">可以</p>
]]></description><link>http://community.bwbot.org/post/1004</link><guid isPermaLink="true">http://community.bwbot.org/post/1004</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Wed, 12 Dec 2018 10:10:38 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Wed, 12 Dec 2018 07:30:40 GMT]]></title><description><![CDATA[<p dir="auto">请教下这个例程里有没有用车的轮式里程计的信息。就是我现在已经得到准确的里程计，然后用这个算法建图可以么。</p>
]]></description><link>http://community.bwbot.org/post/1003</link><guid isPermaLink="true">http://community.bwbot.org/post/1003</guid><dc:creator><![CDATA[ReubenY]]></dc:creator><pubDate>Wed, 12 Dec 2018 07:30:40 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Mon, 26 Nov 2018 07:33:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/744">@fgy4010</a> 在 <a href="/post/981">谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图</a> 中说：</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/671">@gahoo</a> 我现在按流程走一遍，没有生成ply文件，您遇到过这种情况吗？</p>
</blockquote>
<p dir="auto">我过程中都没有报错。</p>
]]></description><link>http://community.bwbot.org/post/982</link><guid isPermaLink="true">http://community.bwbot.org/post/982</guid><dc:creator><![CDATA[fgy4010]]></dc:creator><pubDate>Mon, 26 Nov 2018 07:33:08 GMT</pubDate></item><item><title><![CDATA[Reply to 谷歌cartographer使用速腾聚创3d激光雷达数据进行三维建图 on Mon, 26 Nov 2018 07:32:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/671">@gahoo</a> 我现在按流程走一遍，没有生成ply文件，您遇到过这种情况吗？</p>
]]></description><link>http://community.bwbot.org/post/981</link><guid isPermaLink="true">http://community.bwbot.org/post/981</guid><dc:creator><![CDATA[fgy4010]]></dc:creator><pubDate>Mon, 26 Nov 2018 07:32:42 GMT</pubDate></item></channel></rss>