<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <br>
    Ich habe mit OpenSeaMap gearbeitet und das gefunden:<br>
    <br>
    <a class="moz-txt-link-freetext"
href="http://wiki.openstreetmap.org/wiki/DE:OpenSeaMap_and_Garmin_nautical_chart_plotter">http://wiki.openstreetmap.org/wiki/DE:OpenSeaMap_and_Garmin_nautical_chart_plotter</a><br>
    <br>
    .. also nur 10MB <br>
    <br>
    <br>
    und mal dies gebastelt:<br>
    &nbsp;<br>
    <div class="section">Openseamap</div>
    <div class="subsection">Custom Map on etrex Venture HC</div>
    <p> Thus the only and internal Memory is limited to rougly 24MB, I
      was lucky getting two tiles on my etrex Venture HC. </p>
    <ul>
      <li>I downloaded Openseamap (Version: MS for Mapsource) here: <a
href="ftp://ftp5.gwdg.de/pub/misc/openstreetmap/openseamap/garmin/"
          title="ftp://ftp5.gwdg.de/pub/misc/openstreetmap/openseamap/garmin/"
alt="ftp://ftp5.gwdg.de/pub/misc/openstreetmap/openseamap/garmin/">ftp://ftp5.gwdg.de/pub/misc/openstreetmap/openseamap/garmin/</a>
      </li>
      <li>This map file was opened in Mapsource. </li>
      <li>In Mapsource, View-&gt;Change Product-&gt;openseamap was
        selected. </li>
      <li>The Map-Tool (yellow polygon) was used in order to determine
        the active tiles (that are displayed on the left bottom incl.
        file size) </li>
      <li>The Garmin device was connected to the Computer via USB and
        power was switched on. </li>
      <li>"Send to device"-Option starts the copy process. </li>
    </ul>
    <div class="subsection">Importing your GPS-Data from etrex Venture
      HC (no mass-storage!) via GPSbabel</div>
    <p> I wrote a DOS-Batchfile in order to timestamp my import files.
      It saves waypoints, routes and tracks in one file. Here's the
      code: </p>
    <pre style="padding:5mm;border: 1px solid #a0a0a0;">@echo off 
cls
echo ImportTrack.bat [2013/05/23] Copyright (C) 2013 C. Vogel (TeXnicer)
echo This program comes with ABSOLUTELY NO WARRANTY; 
echo This is free software, and you are welcome to redistribute it
echo under certain conditions; for details see:
echo <a class="moz-txt-link-freetext" href="http://www.gnu.org/licenses/gpl-3.0.en.html">http://www.gnu.org/licenses/gpl-3.0.en.html</a>
SET HOUR=%time:~0,2%
if %time:~0,2% LSS 10 SET HOUR=0%time:~1,1%
set ImportFile=%date:~6,4%%date:~3,2%%date:~0,2%-%HOUR%%time:~3,2%-etrex.gpx
echo.
echo ------------------------------------------------------------------------
echo Importing Track-, Route-, Waypointdata from GARMIN(tm) at USB.
echo Writing into %ImportFile%
gpsbabel -p "" -t -r -w -i garmin -f usb: -o gpx -F %ImportFile%
echo.
echo Done. Done?
echo ------------------------------------------------------------------------
echo.
</pre>
    <br>
  </body>
</html>