<?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[How-To : Offline Unav maps]]></title><description><![CDATA[<h1>A quick how-to on getting offline maps for Unav.</h1>
<p dir="auto">Recently i needed to update my offline map and everytime it's quit a mess to setup an OpenstreetMap local server, lost of hours lost on that. I recently found a docker instance perfect for our needs.</p>
<h3>What we need in this how-to</h3>
<ul>
<li>A linux computer (of-course) with disk space</li>
<li>Snap of Jtiledownloader installed</li>
<li><a href="http://docker.io" rel="nofollow ugc">docker.io</a> installed</li>
</ul>
<h3>Optional</h3>
<ul>
<li>A nextcloud instance</li>
<li>desktop nextcloud sync software</li>
<li>Ubsync.</li>
</ul>
<h2><strong>First of all :</strong> setting up tile server.</h2>
<p dir="auto">Not much to say, except follow the work of this great Github repository :<br />
<a href="https://github.com/Overv/openstreetmap-tile-server" rel="nofollow ugc">https://github.com/Overv/openstreetmap-tile-server</a></p>
<pre><code>docker volume create openstreetmap-data
</code></pre>
<pre><code>git clone https://github.com/Overv/openstreetmap-tile-server.git
</code></pre>
<pre><code>cd openstreetmap-tile-server/
</code></pre>
<p dir="auto">What i've done :<br />
docker volume create openstreetmap-data<br />
download the appropriate pbf there : <a href="http://download.geofabrik.de/" rel="nofollow ugc">http://download.geofabrik.de/</a></p>
<pre><code>docker run -v /absolute/path/to/luxembourg.osm.pbf:/data.osm.pbf -v openstreetmap-data:/var/lib/postgresql/10/main overv/openstreetmap-tile-server import
</code></pre>
<p dir="auto">If lucky enough then</p>
<pre><code>docker run -p 80:80 -v openstreetmap-data:/var/lib/postgresql/10/main -d overv/openstreetmap-tile-server run
</code></pre>
<p dir="auto">Std output :</p>
<pre><code>root@T450s:/home/ernest# docker run -v /home/ernest/Documents/texas-latest.osm.pbf:/data.osm.pbf -v openstreetmap-data:/var/lib/postgresql/10/main overv/openstreetmap-tile-server import
Unable to find image 'overv/openstreetmap-tile-server:latest' locally
latest: Pulling from overv/openstreetmap-tile-server
898c46f3b1a1: Pull complete 
63366dfa0a50: Pull complete 
041d4cd74a92: Pull complete 
6e1bee0f8701: Pull complete 
b3d49b2dd661: Pull complete 
7f7fd75ed7c3: Pull complete 
ee5c945e49f2: Pull complete 
808e9c0fdf3b: Pull complete 
d780496bb933: Pull complete 
52ddc01564c5: Pull complete 
98df30b28f52: Pull complete 
6806a290c5cc: Pull complete 
fe5da1ed6f5d: Pull complete 
c2b03f1243c3: Pull complete 
892f03c6da75: Pull complete 
60740ad09b89: Pull complete 
510cf260d67d: Pull complete 
e5cf11ef9535: Pull complete 
327759077133: Pull complete 
29fd64d01acc: Pull complete 
6529fd3cf6e4: Pull complete 
7b31de690592: Pull complete 
42ed3f4d774a: Pull complete 
8c1ac07d887f: Pull complete 
9a8a920e2d77: Pull complete 
e8e3c66eb441: Pull complete 
8bcaa423208c: Pull complete 
a64871ac5a50: Pull complete 
Digest: sha256:f8c58ef99819eb73adfaee91401b7f23a878f29122fae285734912657f5082da
Status: Downloaded newer image for overv/openstreetmap-tile-server:latest
+ '[' 1 -ne 1 ']'
+ '[' import = import ']'
+ CreatePostgressqlConfig
+ cp /etc/postgresql/10/main/postgresql.custom.conf.tmpl /etc/postgresql/10/main/postgresql.custom.conf
+ sudo -u postgres echo 'autovacuum = on'
+ cat /etc/postgresql/10/main/postgresql.custom.conf
# Suggested minimal settings from
# https://ircama.github.io/osm-carto-tutorials/tile-server-ubuntu/

shared_buffers = 128MB
min_wal_size = 1GB
max_wal_size = 2GB
maintenance_work_mem = 256MB

# Suggested settings from
# https://github.com/openstreetmap/chef/blob/master/roles/tile.rb#L38-L45

max_connections = 250
temp_buffers = 32MB
work_mem = 128MB
wal_buffers = 1024kB
wal_writer_delay = 500ms
commit_delay = 10000
# checkpoint_segments = 60 # unrecognized in psql 10.7.1
max_wal_size = 2880MB
random_page_cost = 1.1
track_activity_query_size = 16384
autovacuum_vacuum_scale_factor = 0.05
autovacuum_analyze_scale_factor = 0.02
autovacuum = on
+ service postgresql start
 * Starting PostgreSQL 10 database server
   ...done.
+ sudo -u postgres createuser renderer
+ sudo -u postgres createdb -E UTF8 -O renderer gis
+ sudo -u postgres psql -d gis -c 'CREATE EXTENSION postgis;'
CREATE EXTENSION
+ sudo -u postgres psql -d gis -c 'CREATE EXTENSION hstore;'
CREATE EXTENSION
+ sudo -u postgres psql -d gis -c 'ALTER TABLE geometry_columns OWNER TO renderer;'
ALTER TABLE
+ sudo -u postgres psql -d gis -c 'ALTER TABLE spatial_ref_sys OWNER TO renderer;'
ALTER TABLE
+ '[' '!' -f /data.osm.pbf ']'
+ sudo -u renderer osm2pgsql -d gis --create --slim -G --hstore --tag-transform-script /home/renderer/src/openstreetmap-carto/openstreetmap-carto.lua -C 2048 --number-processes 4 -S /home/renderer/src/openstreetmap-carto/openstreetmap-carto.style /data.osm.pbf
osm2pgsql version 0.96.0 (64 bit id space)

Allocating memory for dense node cache
Allocating dense node cache in one big chunk
Allocating memory for sparse node cache
Sharing dense sparse
Node-cache: cache=2048MB, maxblocks=32768*65536, allocation method=11
Mid: pgsql, cache=2048
Setting up table: planet_osm_nodes
Setting up table: planet_osm_ways
Setting up table: planet_osm_rels
Using lua based tag processing pipeline with script /home/renderer/src/openstreetmap-carto/openstreetmap-carto.lua
Using projection SRS 3857 (Spherical Mercator)
Setting up table: planet_osm_point
Setting up table: planet_osm_line
Setting up table: planet_osm_polygon
Setting up table: planet_osm_roads

Reading in file: /data.osm.pbf
Using PBF parser.
Processing: Node(44188k 237.6k/s) Way(4610k 12.36k/s) Relation(26670 952.50/s)  parse time: 587s
Node stats: total(44188377), max(6434488285) in 186s
Way stats: total(4610012), max(686484151) in 373s
Relation stats: total(26922), max(9523915) in 28s
Sorting data and creating indexes for planet_osm_point
Sorting data and creating indexes for planet_osm_line
Sorting data and creating indexes for planet_osm_polygon
Sorting data and creating indexes for planet_osm_roads
Copying planet_osm_roads to cluster by geometry finished
Creating geometry index on planet_osm_roads
Copying planet_osm_point to cluster by geometry finished
Creating geometry index on planet_osm_point
Creating osm_id index on planet_osm_roads
Creating indexes on planet_osm_roads finished
All indexes on planet_osm_roads created in 20s
Completed planet_osm_roads
Stopping table: planet_osm_nodes
Stopped table: planet_osm_nodes in 0s
Stopping table: planet_osm_ways
Building index on table: planet_osm_ways
Creating osm_id index on planet_osm_point
Creating indexes on planet_osm_point finished
All indexes on planet_osm_point created in 75s
Completed planet_osm_point
Stopping table: planet_osm_rels
Building index on table: planet_osm_rels
Stopped table: planet_osm_rels in 4s
Copying planet_osm_line to cluster by geometry finished
Creating geometry index on planet_osm_line
Creating osm_id index on planet_osm_line
Creating indexes on planet_osm_line finished
All indexes on planet_osm_line created in 218s
Completed planet_osm_line
Copying planet_osm_polygon to cluster by geometry finished
Creating geometry index on planet_osm_polygon
Creating osm_id index on planet_osm_polygon
Creating indexes on planet_osm_polygon finished
All indexes on planet_osm_polygon created in 344s
Completed planet_osm_polygon
Stopped table: planet_osm_ways in 385s

Osm2pgsql took 993s overall
node cache: stored: 44188377(100.00%), storage efficiency: 57.43% (dense blocks: 3386, sparse nodes: 24604874), hit rate: 100.00%
+ service postgresql stop
 * Stopping PostgreSQL 10 database server
   ...done.
+ exit 0
root@T450s:/home/ernest# sudo docker run -p 80:80 -v openstreetmap-data:/var/lib/postgresql/10/main -d overv/openstreetmap-tile-server run

</code></pre>
<p dir="auto">and open in your browser : <a href="http://localhost/" rel="nofollow ugc">http://localhost/</a> done you have a tile server running.<br />
<img src="/assets/uploads/files/1556573871550-8414b7e9-a729-4dd4-bd1e-f3a7ea8cd23e-image.png" alt="8414b7e9-a729-4dd4-bd1e-f3a7ea8cd23e-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I'm not sure how long the docker instance last and may need to be regenerated each time, fine for me I'm using it every 6 month. Please see the github info, if you want to have an docker instance lasting.</p>
<h2><strong>Second step :</strong> downloading the tile, for that you need Jtiledownloader</h2>
<p dir="auto">See : <a href="http://unav.me/offline/" rel="nofollow ugc">http://unav.me/offline/</a> and the snap store<br />
<img src="/assets/uploads/files/1556574002655-a191d9e2-2ca7-4800-aa70-36e2f098256c-image.png" alt="a191d9e2-2ca7-4800-aa70-36e2f098256c-image.png" class=" img-fluid img-markdown" /><br />
<img src="/assets/uploads/files/1556573650742-f2fb655c-e491-4e00-a266-0888ab5bece1-image.png" alt="f2fb655c-e491-4e00-a266-0888ab5bece1-image.png" class=" img-fluid img-markdown" /><br />
The configuration is pretty simple : as server enter  <a href="http://localhost:80/tile" rel="nofollow ugc">http://localhost:80/tile</a>. then open "slippy map chooser" you should see the map.<br />
Then select the area of interest (defined with left click), set tile zoom level to 10,11,12,13,14,15,16,17 and click download and wait.<br />
<img src="/assets/uploads/files/1556573668879-56f8c977-2c75-4cea-b2e8-ab139068b2ad-image.png" alt="56f8c977-2c75-4cea-b2e8-ab139068b2ad-image.png" class=" img-fluid img-markdown" /></p>
<h2><strong>Third step :</strong></h2>
<p dir="auto">transfert to the phone... this is up to you, define as the step 6 there : <a href="http://unav.me/offline/" rel="nofollow ugc">http://unav.me/offline/</a><br />
I'm suggesting to zip the folder and extract it in the phone.<br />
Personnally, i'm synchronizing my Jtiledownload folder archive to my nextcloud instance and then this instance to my utouch folder, it's longer but "automatic" update.</p>
<p dir="auto">I hope it will help to reduce your data consumption <img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=60240fe800f" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
<h1>Restart from scratch</h1>
<p dir="auto">Following thise link to cleanup docker image, container and volume<br />
<a href="https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes" rel="nofollow ugc">https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes</a></p>
]]></description><link>https://forums.ubports.com/topic/2653/how-to-offline-unav-maps</link><generator>RSS for Node</generator><lastBuildDate>Sat, 14 Mar 2026 09:13:48 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/2653.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 29 Apr 2019 21:42:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How-To : Offline Unav maps on Mon, 17 Feb 2020 14:15:16 GMT]]></title><description><![CDATA[<p dir="auto">Just for the record: Offline Maping is possible with Pure Maps by installing OMS Scout Server.</p>
]]></description><link>https://forums.ubports.com/post/28638</link><guid isPermaLink="true">https://forums.ubports.com/post/28638</guid><dc:creator><![CDATA[jonius]]></dc:creator><pubDate>Mon, 17 Feb 2020 14:15:16 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Wed, 29 May 2019 17:04:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guru" aria-label="Profile: guru">@<bdi>guru</bdi></a> good, I've seen your explanation but I see it very complicated I in this of many commands I'm lost, my question would be: could do all Spain or otherwise as would be done by parts.I currently according to the site I want to go under me tiles by jtiledownloader and then I pass them to the cell phone but it is a huge job, if you could give me a hand I would thank you.</p>
]]></description><link>https://forums.ubports.com/post/20340</link><guid isPermaLink="true">https://forums.ubports.com/post/20340</guid><dc:creator><![CDATA[ricardo65]]></dc:creator><pubDate>Wed, 29 May 2019 17:04:35 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Sat, 25 May 2019 14:45:27 GMT]]></title><description><![CDATA[<p dir="auto">Part 2:</p>
<ol start="2">
<li>The modifications in the phone</li>
</ol>
<p dir="auto">We start with copy over the file Havana.tgz to the phone and unpack it there:</p>
<pre><code>    scp -p Havana.tar.gz phablet@192.168.2.102:.
    ssh phablet@192.168.2.102

    ls /media/phablet/
    9CC0-D6CE
    mkdir /media/phablet/9CC0-D6CE/Maps
    cd /media/phablet/9CC0-D6CE/Maps
    tar xzf ~/Havana.tar.gz
</code></pre>
<p dir="auto">Note: the dir <code>9CC0-D6CE</code> may vary depending on the SD type. Change this to the name in your phone and later in the start script for the Python web server too. Unpacking the tar archive should give:</p>
<pre><code>    ls /media/phablet/9CC0-D6CE/Maps/
    osm
    ls /media/phablet/9CC0-D6CE/Maps/osm
    10  11  12  13  14  15  16  17  18  9

</code></pre>
<p dir="auto">i.e. the tiles in their sub-dirs <code>9 ... 18</code>.</p>
<p dir="auto">To start our special <code>uNav-osm</code> app we need a new desktop entry as <code>~/.local/share/applications/unav-osm.desktop</code> which must contain the following lines:</p>
<pre><code>    [Desktop Entry]
    Name=unav-osm
    Type=Application
    Exec=/usr/bin/nohup /home/phablet/unav.sh
    Icon=/userdata/system-data/opt/click.ubuntu.com/navigator.costales/current/icon.png
    Terminal=false
    X-Ubuntu-Touch=true
</code></pre>
<p dir="auto">As you see it will not execute the <code>uNav</code> app directly, but a small shell script <code>/home/phablet/unav.sh</code>. This script starts upfront the Python web service and then the <code>uNav</code> app itself. It has the folling few lines.</p>
<pre><code>    #!/bin/sh
    #
    cd /media/phablet/9CC0-D6CE/Maps
    python3 -m http.server 8888 &amp;
    #
    cd /userdata/system-data/opt/click.ubuntu.com/navigator.costales/current
    qmlscene %u qml/Main.qml &gt; /dev/null 2&gt; /dev/null
</code></pre>
<p dir="auto">Create this script <code>/home/phablet/unav.sh</code> with <code>vi</code> and make it executable:</p>
<pre><code>    vi /home/phablet/unav.sh
    chmod 0755 /home/phablet/unav.sh
</code></pre>
<p dir="auto">Last action is to make a small modification in <code>uNav</code> itself. At the time of writing it is the version 2.3 and the fix must be done in this file: <code>/userdata/system-data/opt/click.ubuntu.com/navigator.costales/current/nav/index.html</code><br />
What to change is best visible in this diff:</p>
<pre><code>    cd /userdata/system-data/opt/click.ubuntu.com/navigator.costales/current/nav
    diff index.html index.html.orig
210c210
&lt; 		source: new ol.source.OSM({url: 'http://localhost:8888/osm/{z}/{x}/{y}.png'}),
---
&gt; 		source: new ol.source.OSM({url: 'http://{a-c}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}.png'}),

</code></pre>
<p dir="auto">The file must be modified as root and it's a good idea to make a copy (like I did):</p>
<pre><code>    sudo su
    cd /userdata/system-data/opt/click.ubuntu.com/navigator.costales/current/nav
    cp -p index.html index.html.orig
    vi index.html
</code></pre>
<p dir="auto">Note: the URL <code>http://{a-c}.basemaps.cartocdn.com/rastertiles/...</code> appears three times in the file. Change only the first location for <code>/voyager/....</code> because this is also<br />
what you want to pick-up in the <code>Settings</code> menu of <code>uNav</code> for the value:</p>
<pre><code>    Mode
    Online

    Online style
    Carto Voyager        &lt;---------------
</code></pre>
<p dir="auto">That's it as changes.</p>
<p dir="auto">One final note: You have only offline tiles for small places and not the world between. So, you can't slide over the world, for example from Munich to Havana. If you leave your location of offline tiles you will see only a white map in <code>uNav</code>.<br />
The way to move is configure in <code>Settings</code> some other <code>Online style</code>, for example <code>Mapbox</code>. Or configure locations as <code>Favourites</code> to jump over the Ocean.</p>
<p dir="auto">For questions just ping me or write me to <a href="mailto:guru@unixarea.de" rel="nofollow ugc">guru@unixarea.de</a></p>
<p dir="auto">Matthias</p>
]]></description><link>https://forums.ubports.com/post/20246</link><guid isPermaLink="true">https://forums.ubports.com/post/20246</guid><dc:creator><![CDATA[guru]]></dc:creator><pubDate>Sat, 25 May 2019 14:45:27 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Fri, 24 May 2019 18:48:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/giiba" aria-label="Profile: Giiba">@<bdi>Giiba</bdi></a> said in <a href="/post/20204">How-To : Offline Unav maps</a>:</p>
<blockquote>
<p dir="auto">I'm curious if there's a reason to use a web server vs a symlink to the storage location...</p>
<p dir="auto">ie.<br />
I symlinked foxtrotgps to download to ~/Downloads/maps<br />
and symlinked uNav to read from ~/Downloads/maps/OSM</p>
<p dir="auto">This seems simpler with no overhead to me, but I've no idea what the advantages of a tile server might be.</p>
</blockquote>
<p dir="auto">The big advantage is that the change in <code>uNav</code> is one single line: substituting the URL of the original web server by <code>http://localhost:8000</code> and al is done once you have the tiles fetched.</p>
<p dir="auto">And, fetching tiles with <code>foxtrotgps</code>, i.e. by hand when visiting the place with <code>foxtrotgps</code> is not a solution for the problem when you need tiles and have no Internet connection.</p>
]]></description><link>https://forums.ubports.com/post/20231</link><guid isPermaLink="true">https://forums.ubports.com/post/20231</guid><dc:creator><![CDATA[guru]]></dc:creator><pubDate>Fri, 24 May 2019 18:48:22 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Fri, 24 May 2019 18:42:59 GMT]]></title><description><![CDATA[<p dir="auto">OK, here comes the first part of the howto:</p>
<p dir="auto">How To Use OSM Tiles Offline with uNav<br />
<a href="mailto:guru@unixarea.de" rel="nofollow ugc">guru@unixarea.de</a></p>
<p dir="auto">The problem</p>
<p dir="auto">The app for UbuntuTouch "uNav" works only with Internet connection when presenting maps and locations. Sometimes Internet is not reliable or over data mobile even expensive and the idea to workaround is having the maps' tiles prefetched and stored in the Ubuntu phone. Here is the tool chain so solve this.</p>
<ol>
<li>Prefetching OSM tiles for a given area of interest and</li>
</ol>
<p dir="auto">There is a C-written tool 'osmtiles' to be fetched an compiled<br />
on your Linux or FreeBSD workstation: <a href="http://www.millions.ca/~stacy/osmtiles.tgz" rel="nofollow ugc">http://www.millions.ca/~stacy/osmtiles.tgz</a><br />
Compilation is simple (see its README):</p>
<pre><code>    tar xzf osmtiles.tgz
    cd osmtiles
    cc -o osmtiles osmtiles.c -lm
</code></pre>
<p dir="auto">The tool 'osmtiles' allows to make a list of all OSM tiles of a given GPS coordinates of an area, for example:</p>
<pre><code>     osmtiles -z 9 -Z 18                \
        23.178555 -82.462692            \
        23.050039 -82.288628            \
        &gt; havana.txt 
</code></pre>
<p dir="auto"><code>-z 9</code> and <code>-Z 18</code> give the nivel of the tiles, from 9 to 18. The above region <code>(23.178555 -82.462692)</code> x <code>(23.050039 -82.288628)</code> are the GPS coordinates of a rectangle of the capital of Cuba, Havana. The output of the tool is a list file like this:</p>
<pre><code>    9/138/222.png
    10/277/444.png
    11/554/888.png
    11/554/889.png
    11/555/888.png
    11/555/889.png
    12/1109/1776.png
    ...
</code></pre>
<p dir="auto">Some ~18.000 lines, i.e. tiles to fetch. This list is stored for fetch (and later updates) in a file, let's say havana.txt. I have a bunch of such files for the places I visit.</p>
<p dir="auto">Based on this list I have a shell script which in principle does for any of the files in the list:</p>
<pre><code>    while read name ; do
        fetch the MD5 sum from the server for the file http://tile.openstreetmap.org/$name
	if the MD5 is different from what I have
	    fetch the file http://tile.openstreetmap.org/$name
    done &lt; havana.txt
</code></pre>
<p dir="auto">This way, later on updates, only modified tiles will be fetched.<br />
I can share this script, no problem, if you promise not to blame<br />
me, but send patches for it.</p>
<p dir="auto">Next step is making, again based on the file of the place to visit, a tar archive:</p>
<pre><code>    cd osm
    tar --files-from=../Havana.lst -czf ../Havana.tgz
    ls -lh ../Havana.tgz
    -rw-r--r--  1 guru  wheel    93M 24 may.  16:58 ../Havana.tgz
</code></pre>
<p dir="auto">i.e. such a file is around 100 MByte in size.</p>
<p dir="auto">Move these file(s) to the phone with SCP or ADB and unpack them on the SD card to some directory which will later be served by a small Python web server.</p>
<ol start="2">
<li>The modifications in the phone</li>
</ol>
<p dir="auto">(TO BE CONTINUED)</p>
]]></description><link>https://forums.ubports.com/post/20230</link><guid isPermaLink="true">https://forums.ubports.com/post/20230</guid><dc:creator><![CDATA[guru]]></dc:creator><pubDate>Fri, 24 May 2019 18:42:59 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Thu, 23 May 2019 17:37:49 GMT]]></title><description><![CDATA[<p dir="auto">I'm curious if there's a reason to use a web server vs a symlink to the storage location...</p>
<p dir="auto">ie.<br />
I symlinked foxtrotgps to download to ~/Downloads/maps<br />
and symlinked uNav to read from ~/Downloads/maps/OSM</p>
<p dir="auto">This seems simpler with no overhead to me, but I've no idea what the advantages of a tile server might be.</p>
]]></description><link>https://forums.ubports.com/post/20204</link><guid isPermaLink="true">https://forums.ubports.com/post/20204</guid><dc:creator><![CDATA[Giiba]]></dc:creator><pubDate>Thu, 23 May 2019 17:37:49 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Thu, 23 May 2019 15:30:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guru" aria-label="Profile: guru">@<bdi>guru</bdi></a> said in <a href="/post/20180">How-To : Offline Unav maps</a>:</p>
<blockquote>
<p dir="auto">I download Openstreetmap tiles in advance for my interested regions (Munich and Havana) with the resolution 11-18 to my laptop and update them there from time to time, tar+SCP copy them to the SD of my BQ E4.5, start a small local Python web server in the phone and have a patched <code>uNav</code> app which ask this local webserver and not the Internet for the tiles. I can post the exact details if someone is interested.</p>
</blockquote>
<p dir="auto">Please do.  This sounds extremely useful.</p>
]]></description><link>https://forums.ubports.com/post/20197</link><guid isPermaLink="true">https://forums.ubports.com/post/20197</guid><dc:creator><![CDATA[trainailleur]]></dc:creator><pubDate>Thu, 23 May 2019 15:30:17 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Thu, 23 May 2019 05:57:36 GMT]]></title><description><![CDATA[<p dir="auto">I download Openstreetmap tiles in advance for my interested regions (Munich and Havana) with the resolution 11-18 to my laptop and update them there from time to time, tar+SCP copy them to the SD of my BQ E4.5, start a small local Python web server in the phone and have a patched <code>uNav</code> app which ask this local webserver and not the Internet for the tiles. I can post the exact details if someone is interested.</p>
<p dir="auto">Matthias</p>
]]></description><link>https://forums.ubports.com/post/20180</link><guid isPermaLink="true">https://forums.ubports.com/post/20180</guid><dc:creator><![CDATA[guru]]></dc:creator><pubDate>Thu, 23 May 2019 05:57:36 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Thu, 23 May 2019 03:25:42 GMT]]></title><description><![CDATA[<p dir="auto">I recently found that foxtrotgps runs fine in a Libertine shell, and more importantly the files are compatible with uNav.</p>
<p dir="auto">This can all be done on the phone, or just using foxtrot on a pc.</p>
<p dir="auto">I think the better question is why does uNav <strong>not</strong> cache downloaded tiles? If that happened most users would be fine downloading tiles on-the-go; the current arrangement eats mobile data unnecessarily.</p>
]]></description><link>https://forums.ubports.com/post/20178</link><guid isPermaLink="true">https://forums.ubports.com/post/20178</guid><dc:creator><![CDATA[Giiba]]></dc:creator><pubDate>Thu, 23 May 2019 03:25:42 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Wed, 22 May 2019 21:41:43 GMT]]></title><description><![CDATA[<p dir="auto">Could you help me install the one in Spain?</p>
]]></description><link>https://forums.ubports.com/post/20175</link><guid isPermaLink="true">https://forums.ubports.com/post/20175</guid><dc:creator><![CDATA[ricardo65]]></dc:creator><pubDate>Wed, 22 May 2019 21:41:43 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Wed, 22 May 2019 21:34:27 GMT]]></title><description><![CDATA[<p dir="auto">I want to install the docker and I get this:<img src="/assets/uploads/files/1558560841733-captura-de-pantalla-de-2019-05-22-23-28-49.png" alt="Captura de pantalla de 2019-05-22 23-28-49.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forums.ubports.com/post/20174</link><guid isPermaLink="true">https://forums.ubports.com/post/20174</guid><dc:creator><![CDATA[ricardo65]]></dc:creator><pubDate>Wed, 22 May 2019 21:34:27 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Thu, 02 May 2019 01:10:54 GMT]]></title><description><![CDATA[<p dir="auto">I've added two steps to clone the git repository.</p>
<p dir="auto">Nothing happens because you were missing the git most likely.</p>
]]></description><link>https://forums.ubports.com/post/19529</link><guid isPermaLink="true">https://forums.ubports.com/post/19529</guid><dc:creator><![CDATA[ernest]]></dc:creator><pubDate>Thu, 02 May 2019 01:10:54 GMT</pubDate></item><item><title><![CDATA[Reply to How-To : Offline Unav maps on Wed, 01 May 2019 19:27:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ernest" aria-label="Profile: ernest">@<bdi>ernest</bdi></a> Good evening, I'm trying to install unav offline the first step and nothing comes out. I could have a hand. I have it installed, but only my city since the download by jtiledownloader takes a lot and it takes a long time to download it.</p>
]]></description><link>https://forums.ubports.com/post/19526</link><guid isPermaLink="true">https://forums.ubports.com/post/19526</guid><dc:creator><![CDATA[ricardo65]]></dc:creator><pubDate>Wed, 01 May 2019 19:27:11 GMT</pubDate></item></channel></rss>