<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>2014/11/07 on Yano&#39;s digital garage</title>
    <link>https://www.bravotouring.com/~yano/archives/2014/11/07/</link>
    <description>Recent content in 2014/11/07 on Yano&#39;s digital garage</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 07 Nov 2014 22:56:39 +0900</lastBuildDate>
    <atom:link href="https://www.bravotouring.com/~yano/archives/2014/11/07/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>igotu2gpx</title>
      <link>https://www.bravotouring.com/~yano/diary/it/20141107igotu2gpx.htm</link>
      <pubDate>Fri, 07 Nov 2014 22:56:39 +0900</pubDate>
      <guid>https://www.bravotouring.com/~yano/diary/it/20141107igotu2gpx.htm</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://www.bravotouring.com/~yano/diary/it/20140630gt600.htm&#34;&gt;6月に調達&lt;/a&gt;した&lt;a href=&#34;http://www.i-gotu.jp/?page_id=56&#34;&gt;i-gotU GT-600&lt;/a&gt;。&lt;/p&gt;&#xA;&lt;table align=&#34;right&#34; class=&#34;Landscape&#34;&gt;&#xA;&lt;tr&gt;&#xA;&lt;td&gt;&lt;img alt=&#34;A320機内(PB035347.JPG)&#34; src=&#34;https://www.bravotouring.com/~yano/images/2014/20141103gps.jpg&#34;/&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr&gt;&#xA;&lt;td class=&#34;PhotoMemo&#34;&gt;11/03 18:06 SFJ A320機内にて&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;データの吸い上げは&lt;a href=&#34;https://www.bravotouring.com/~yano/diary/it/20090131gt120.htm&#34;&gt;5年前のi-gotU GT-120&lt;/a&gt;以来、Windows版の＠TripPC頼みだったのだが、とある徳の高いお方からMac OSやLinuxにも対応した&lt;a href=&#34;https://launchpad.net/igotu2gpx&#34;&gt;igotu2gpx&lt;/a&gt;を教えて貰ったので、早速インストールした。&lt;/p&gt;&#xA;&lt;p&gt;&lt;blockquote class=&#34;Log&#34;&gt;yano@GT110b:~$ sudo apt-get install qtchooser qt4-default libboost-program-options-dev libusb-dev&lt;br/&gt;yano@GT110b:~$ wget https://launchpad.net/igotu2gpx/0.3/0.3.0/+download/igotu2gpx-0.3.0.tar.gz&lt;br/&gt;yano@GT110b:~$ tar xvf igotu2gpx-0.3.0.tar.gz&lt;br/&gt;yano@GT110b:~$ cd igotu2gpx-0.3.0&lt;br/&gt;yano@GT110b:~/igotu2gpx-0.3.0$ qmake &amp;&amp; make &amp;&amp; sudo make install&lt;/blockquote&gt;&#xA;&lt;blockquote class=&#34;Log&#34;&gt;ld: &lt;span class=&#34;Warning&#34;&gt;library not found&lt;/span&gt; for -lboost_program_options-mt&lt;br/&gt;&#xA;&lt;br/&gt;yano@GT110b:~/igotu2gpx-0.3.0$ sudo ln -s /usr/lib/x86_64-linux-gnu/libboost_program_options.so /usr/lib/x86_64-linux-gnu/libboost_program_options-mt.so&lt;/blockquote&gt;libboost_program_options-mtが無いという事で&lt;span class=&#34;Warning&#34;&gt;library not found&lt;/span&gt;が出たが、代替ライブラリは無さそうなのでlibboost_program_options.soにシンボリックリンクを張って&lt;span class=&#34;Strike&#34;&gt;暫定対処&lt;/span&gt;。【追記】&lt;a href=&#34;http://askubuntu.com/questions/486006/cannot-find-boost-thread-mt-library&#34;&gt;Ask Ubuntu&lt;/a&gt;によると&lt;blockquote cite=&#34;http://askubuntu.com/questions/486006/cannot-find-boost-thread-mt-library&#34;&gt;The -mt suffix had been removed. The installed Boost libraries are multi-threading safe.&lt;/blockquote&gt;という事なので「シンボリックリンクを張る」が正解のようだ。&lt;/p&gt;&#xA;&lt;p&gt;機能的には以下のような感じ。&lt;blockquote class=&#34;Log&#34;&gt;&#xA;yano@GT110b:~/igotu2gpx-0.3.0$ igotu2gpx --help&lt;br/&gt;Usage: igotu2gpx info|dump|clear|diff [OPTIONS...]&lt;br/&gt;&lt;br/&gt;Options:&lt;br/&gt;&#xA;  --action arg          info: show GPS tracker configuration&lt;br/&gt;&#xA;                        dump: output trackpoints&lt;br/&gt;&#xA;                        clear: clear memory of the GPS tracker&lt;br/&gt;&#xA;                        diff: show configuration differences relative to an&lt;br/&gt;&#xA;                        image file&lt;br/&gt;&#xA;  -d [ --device ] arg   connect to the specified device (usb:&lt;vendor&gt;:&lt;product&gt;&lt;br/&gt;&#xA;                        (Unix) or serial:&lt;n&gt; (Windows))&lt;br/&gt;&#xA;  -i [ --image ] arg    read memory contents from file (saved by &#34;dump --raw&#34;)&lt;br/&gt;&#xA;  --gpx                 output in GPX format (this is the default)&lt;br/&gt;&#xA;  --details             output a detailed representation of all trackpoints&lt;br/&gt;&#xA;  --raw                 output the memory contents of the GPS tracker (be sure&lt;br/&gt;&#xA;                        to redirect output to a file)&lt;br/&gt;&#xA;  --segments            for output in GPX format, group trackpoints into&lt;br/&gt;&#xA;                        segments instead of tracks&lt;br/&gt;&#xA;  --utc-offset arg      time zone offset in seconds&lt;br/&gt;&#xA;  --help                output this help and exit&lt;br/&gt;&#xA;  --version             output version information and exit&lt;br/&gt;&#xA;  -v [ --verbose ]      increase verbosity&lt;/blockquote&gt;&#xA;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
